diff --git a/.gitattributes b/.gitattributes index 7713762ee973dd21c0c5890c135d35e9f45b1539..268dcd55160d47390508c1a80b185c0714636497 100644 --- a/.gitattributes +++ b/.gitattributes @@ -90,3 +90,4 @@ toolbench/toolenv/tools/Sports/sofasport.json filter=lfs diff=lfs merge=lfs -tex toolbench/toolenv/tools/Sports/sportscore.json filter=lfs diff=lfs merge=lfs -text toolbench/toolenv/tools/Sports/surebets_2.json filter=lfs diff=lfs merge=lfs -text toolbench/toolenv/tools/Sports/transfermarkt_db.json filter=lfs diff=lfs merge=lfs -text +toolbench/toolenv/tools/Transportation/travel_advisor.json filter=lfs diff=lfs merge=lfs -text diff --git a/toolbench/toolenv/tools/Tools/qr_code_wizard.json b/toolbench/toolenv/tools/Tools/qr_code_wizard.json new file mode 100644 index 0000000000000000000000000000000000000000..1ee1ce5b51f0b6163adf617bbbd314576a979cdd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_code_wizard.json @@ -0,0 +1,37 @@ +{ + "tool_name":"QR Code Wizard", + "tool_description":"Generate QR codes with ease via API", + "title":"QR Code Wizard", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1096, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/francanete/api/qr-code-wizard/", + "host":"qr-code-wizard.p.rapidapi.com", + "api_list":[ + { + "name":"Generate QR", + "url":"https://qr-code-wizard.p.rapidapi.com/qr-code", + "description":"Generate QR codes with ease via API", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qr-code-wizard.p.rapidapi.com/qr-code\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-code-wizard.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_codes.json b/toolbench/toolenv/tools/Tools/qr_codes.json new file mode 100644 index 0000000000000000000000000000000000000000..0068a51915c1f0b0fcfbc2ecee824315a0db125b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_codes.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR CODES", + "tool_description":"This API allows you to generate a QR code for any URL you want, just pass the URL as a parameter in the query string and the API will return a QR code image that you can download or scan.", + "title":"QR CODES", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/iaevan008/api/qr-codes1/", + "host":"qr-codes1.p.rapidapi.com", + "api_list":[ + { + "name":"QR code Image", + "url":"https://qr-codes1.p.rapidapi.com/qr", + "description":"It takes an url as its get request and responds with a png image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"Google.com" + } + ], + "code":"import requests\n\nurl = \"https://qr-codes1.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-codes1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_codes/api.py b/toolbench/toolenv/tools/Tools/qr_codes/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c00034a4dc1e251e14911c968119f443af05da84 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_codes/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image(url: str='Google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "It takes an url as its get request and responds with a png image" + + """ + url = f"https://qr-codes1.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-codes1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_decoder.json b/toolbench/toolenv/tools/Tools/qr_decoder.json new file mode 100644 index 0000000000000000000000000000000000000000..6a22901e10b973348269ef8d959488a41f4f8a50 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_decoder.json @@ -0,0 +1,50 @@ +{ + "product_id": "api_03255244-aef7-4822-a9ef-e0ac00c5ac06", + "tool_description": "Decode QRCodes from an image or PDF.\nReturns an array of decoded messages.", + "home_url": "https://rapidapi.com/jgmorais/api/qr-decoder/", + "name": "QR Decoder", + "title": "QR Decoder", + "pricing": "FREEMIUM", + "tool_name": "QR Decoder", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3386, + "avgSuccessRate": 50, + "popularityScore": 6.4, + "__typename": "Score" + }, + "host": "qr-decoder.p.rapidapi.com", + "api_list": [ + { + "name": "QRDecoder", + "url": "https://qr-decoder.p.rapidapi.com/getQRCodesFromPDForImage", + "description": "Returns the QRCode message from an image or PDF file with embeded QR codes.\n\nFiles must be publicly accessible via the web and the src input parm expects a direct link to the file. Html pages with embeded images or pdfs are not valid and will return empty.", + "method": "GET", + "required_parameters": [ + { + "name": "src", + "type": "STRING", + "description": "", + "default": "https://www.pdfscripting.com/public/FreeStuff/PDFSamples/QRCodeFieldExamples.pdf" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-decoder.p.rapidapi.com/getQRCodesFromPDForImage\"\nquerystring = {\"src\": \"https://www.pdfscripting.com/public/FreeStuff/PDFSamples/QRCodeFieldExamples.pdf\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-decoder.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qr-decoder.p.rapidapi.com/getQRCodesFromPDForImage\"\nquerystring = {\"src\": \"https://www.pdfscripting.com/public/FreeStuff/PDFSamples/QRCodeFieldExamples.pdf\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-decoder.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + ], + "standardized_name": "qr_decoder" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_decoder/api.py b/toolbench/toolenv/tools/Tools/qr_decoder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4d7e02e30c66af740ff9102fb5a9d4ef14657102 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_decoder/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrdecoder(src: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the QRCode message from an image or PDF file with embeded QR codes. + + Files must be publicly accessible via the web and the src input parm expects a direct link to the file. Html pages with embeded images or pdfs are not valid and will return empty." + + """ + url = f"https://qr-decoder.p.rapidapi.com/getqrcodesfrompdforimage" + querystring = {'src': src, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-decoder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_generation.json b/toolbench/toolenv/tools/Tools/qr_generation.json new file mode 100644 index 0000000000000000000000000000000000000000..e28a97e79dc637d51c43c3c5f4c468bd86e926c7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_generation.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR Generation", + "tool_description":"Create QR Code from String", + "title":"QR Generation", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/unitAI/api/qr-generation1/", + "host":"qr-generation1.p.rapidapi.com", + "api_list":[ + { + "name":"Generate QR Code", + "url":"https://qr-generation1.p.rapidapi.com/qr", + "description":"Generates QR Code from String", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qr-generation1.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generation1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_generation/api.py b/toolbench/toolenv/tools/Tools/qr_generation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..aecbc365ffa485b4e89b0fe92d8c415f79fe6c10 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_generation/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_qr_code(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates QR Code from String" + + """ + url = f"https://qr-generation1.p.rapidapi.com/qr" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-generation1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_generator/api.py b/toolbench/toolenv/tools/Tools/qr_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..56eccc0585b4603cb8a2f1b673ba820c638678c5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_generator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point take a 'GET' request with URL/string as a parameter and returns QR code image" + + """ + url = f"https://qr-generator8.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['URL'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-generator8.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_generator_api.json b/toolbench/toolenv/tools/Tools/qr_generator_api.json new file mode 100644 index 0000000000000000000000000000000000000000..cd68f3b6bec1a3e42ae4ec85d9a09df00038165d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_generator_api.json @@ -0,0 +1,267 @@ +{ + "tool_name": "QR-Generator-Api", + "tool_description": "Generate HTML image-tag with base64-image-string OR generate image-file stream as QR code of input text.", + "title": "QR-Generator-Api", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2024, + "avgSuccessRate": 98, + "popularityScore": 9.1, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/ezzatelbadrawy/api/qr-generator-api/", + "host": "qr-generator-api.p.rapidapi.com", + "api_list": [ + { + "name": "Generate", + "url": "https://qr-generator-api.p.rapidapi.com/api/qrcode/generate", + "description": "Generate HTML image-tag with base64-image-string as QR code of input text (Query Parameter)", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "QR Code Text Content", + "default": "enter-your-text-here" + } + ], + "optional_parameters": [ + { + "name": "pixelsPerModule", + "type": "NUMBER", + "description": "(Optional) The pixel size each b/w module is drawn (Default: 10)", + "default": "10" + }, + { + "name": "backColor", + "type": "STRING", + "description": "(Optional) Background color in hexadecimal value (Default: White = #ffffff). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#ffffff" + }, + { + "name": "foreColor", + "type": "STRING", + "description": "(Optional) Foreground color in hexadecimal value (Default: Black = #000000). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#000000" + } + ], + "code": "import requests\n\nurl = \"https://qr-generator-api.p.rapidapi.com/api/qrcode/generate\"\nquerystring = {\"pixelsPerModule\": pixelspermodule, \"backColor\": backcolor, \"foreColor\": forecolor, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "status": "Success", + "result": "" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ] + }, + "result": { + "type": [ + "string", + "null" + ] + } + }, + "additionalProperties": false + } + }, + { + "name": "Generate Invoice VAT QR", + "url": "https://qr-generator-api.p.rapidapi.com/api/qrcode/generateinvoicevatqr", + "description": "Generate Invoice VAT QR image file stream (KSA VAT Format).", + "method": "GET", + "required_parameters": [ + { + "name": "date", + "type": "DATE (YYYY-MM-DD)", + "description": "Invoice Date (format: yyyy-mm-dd)", + "default": "" + }, + { + "name": "tax", + "type": "NUMBER", + "description": "Invoice VAT Tax", + "default": "" + }, + { + "name": "vatNo", + "type": "STRING", + "description": "Seller VAT Number", + "default": "seller-vatNo" + }, + { + "name": "seller", + "type": "STRING", + "description": "Seller Name", + "default": "seller-name" + }, + { + "name": "total", + "type": "NUMBER", + "description": "Invoice Total", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "pixelsPerModule", + "type": "NUMBER", + "description": "(Optional) The pixel size each b/w module is drawn (Default: 5)", + "default": "5" + } + ], + "code": "import requests\n\nurl = \"https://qr-generator-api.p.rapidapi.com/api/qrcode/generateinvoicevatqr\"\nquerystring = {\"date\": date, \"tax\": tax, \"vatNo\": vatno, \"pixelsPerModule\": pixelspermodule, \"seller\": seller, \"total\": total}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Generate File", + "url": "https://qr-generator-api.p.rapidapi.com/api/qrcode/generatefile", + "description": "Generate image file stream as QR code of input text (Query Parameter)", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "QR Code Text Content.", + "default": "enter-your-text-here" + } + ], + "optional_parameters": [ + { + "name": "backColor", + "type": "STRING", + "description": "(Optional) Background color in hexadecimal value (Default: White = #ffffff). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#ffffff" + }, + { + "name": "pixelsPerModule", + "type": "NUMBER", + "description": "(Optional) The pixel size each b/w module is drawn (Default: 10)", + "default": "10" + }, + { + "name": "foreColor", + "type": "STRING", + "description": "(Optional) Foreground color in hexadecimal value (Default: Black = #000000). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#000000" + } + ], + "code": "import requests\n\nurl = \"https://qr-generator-api.p.rapidapi.com/api/qrcode/generatefile\"\nquerystring = {\"backColor\": backcolor, \"pixelsPerModule\": pixelspermodule, \"text\": text, \"foreColor\": forecolor}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Generate", + "url": "https://qr-generator-api.p.rapidapi.com/api/qrcode/generate", + "description": "Generate HTML image-tag with base64-image-string as QR code of input text (Post Body)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "foreColor", + "type": "STRING", + "description": "(Optional) Foreground color in hexadecimal value (Default: Black = #000000). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#000000" + }, + { + "name": "backColor", + "type": "STRING", + "description": "(Optional) Background color in hexadecimal value (Default: White = #ffffff). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#ffffff" + }, + { + "name": "pixelsPerModule", + "type": "NUMBER", + "description": "(Optional) The pixel size each b/w module is drawn (Default: 10)", + "default": "10" + } + ], + "code": "import requests\n\nurl = \"https://qr-generator-api.p.rapidapi.com/api/qrcode/generate\"\nquerystring = {\"foreColor\": forecolor, \"backColor\": backcolor, \"pixelsPerModule\": pixelspermodule}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "status": "Success", + "result": "" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ] + }, + "result": { + "type": [ + "string", + "null" + ] + } + }, + "additionalProperties": false + } + }, + { + "name": "Generate", + "url": "https://qr-generator-api.p.rapidapi.com/api/qrcode/generate", + "description": "Generate HTML image-tag with base64-image-string as QR code of input text (Post Body)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "foreColor", + "type": "STRING", + "description": "(Optional) Foreground color in hexadecimal value (Default: Black = #000000). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#000000" + }, + { + "name": "backColor", + "type": "STRING", + "description": "(Optional) Background color in hexadecimal value (Default: White = #ffffff). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits.", + "default": "#ffffff" + }, + { + "name": "pixelsPerModule", + "type": "NUMBER", + "description": "(Optional) The pixel size each b/w module is drawn (Default: 10)", + "default": "10" + } + ], + "code": "import requests\n\nurl = \"https://qr-generator-api.p.rapidapi.com/api/qrcode/generate\"\nquerystring = {\"foreColor\": \"#000000\", \"backColor\": \"#ffffff\", \"pixelsPerModule\": \"10\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qr-generator-api.p.rapidapi.com/api/qrcode/generate\"\nquerystring = {\"foreColor\": \"#000000\", \"backColor\": \"#ffffff\", \"pixelsPerModule\": \"10\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ] + }, + "result": { + "type": [ + "string", + "null" + ] + } + }, + "additionalProperties": false + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_generator_api/api.py b/toolbench/toolenv/tools/Tools/qr_generator_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8dbb84fe8bd82981ad8da5d3c2d82b11cae6fd51 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_generator_api/api.py @@ -0,0 +1,99 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate(text: str, pixelspermodule: int=10, backcolor: str='#ffffff', forecolor: str='#000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate HTML image-tag with base64-image-string as QR code of input text (Query Parameter)" + text: QR Code Text Content + pixelspermodule: (Optional) The pixel size each b/w module is drawn (Default: 10) + backcolor: (Optional) Background color in hexadecimal value (Default: White = #ffffff). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits. + forecolor: (Optional) Foreground color in hexadecimal value (Default: Black = #000000). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits. + + """ + url = f"https://qr-generator-api.p.rapidapi.com/api/qrcode/generate" + querystring = {'text': text, } + if pixelspermodule: + querystring['pixelsPerModule'] = pixelspermodule + if backcolor: + querystring['backColor'] = backcolor + if forecolor: + querystring['foreColor'] = forecolor + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-generator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def generate_invoice_vat_qr(date: str, tax: int, vatno: str, seller: str, total: int, pixelspermodule: int=5, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate Invoice VAT QR image file stream (KSA VAT Format)." + date: Invoice Date (format: yyyy-mm-dd) + tax: Invoice VAT Tax + vatno: Seller VAT Number + seller: Seller Name + total: Invoice Total + pixelspermodule: (Optional) The pixel size each b/w module is drawn (Default: 5) + + """ + url = f"https://qr-generator-api.p.rapidapi.com/api/qrcode/generateinvoicevatqr" + querystring = {'date': date, 'tax': tax, 'vatNo': vatno, 'seller': seller, 'total': total, } + if pixelspermodule: + querystring['pixelsPerModule'] = pixelspermodule + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-generator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def generate_file(text: str, backcolor: str='#ffffff', pixelspermodule: int=10, forecolor: str='#000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate image file stream as QR code of input text (Query Parameter)" + text: QR Code Text Content. + backcolor: (Optional) Background color in hexadecimal value (Default: White = #ffffff). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits. + pixelspermodule: (Optional) The pixel size each b/w module is drawn (Default: 10) + forecolor: (Optional) Foreground color in hexadecimal value (Default: Black = #000000). Note: Should start with # prefix, and each basic-color (red, green, blue) should has two hex-digits. + + """ + url = f"https://qr-generator-api.p.rapidapi.com/api/qrcode/generatefile" + querystring = {'text': text, } + if backcolor: + querystring['backColor'] = backcolor + if pixelspermodule: + querystring['pixelsPerModule'] = pixelspermodule + if forecolor: + querystring['foreColor'] = forecolor + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-generator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_generator_generator_with_logo.json b/toolbench/toolenv/tools/Tools/qr_generator_generator_with_logo.json new file mode 100644 index 0000000000000000000000000000000000000000..967a0291e4fd34dd58729f4aa6e9af05b103b67f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_generator_generator_with_logo.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_046f24b7-3d24-4200-b5c7-230a8426e638", + "tool_description": "Generate QR code images using this API for any text and a custom logo image.", + "home_url": "https://rapidapi.com/carrasquel.nelson/api/qr-generator-generator-with-logo/", + "name": "QR Generator Generator with Logo", + "title": "QR Generator Generator with Logo", + "pricing": "PAID", + "tool_name": "QR Generator Generator with Logo", + "score": null, + "host": "qr-generator-generator-with-logo.p.rapidapi.com", + "api_list": [ + { + "name": "QR Code Generator", + "url": "https://qr-generator-generator-with-logo.p.rapidapi.com/api/qr/generate", + "description": "Generate the QR Code for the given payload with data and logo image in base64. Returns a base64 image", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-generator-generator-with-logo.p.rapidapi.com/api/qr/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-generator-with-logo.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qr-generator-generator-with-logo.p.rapidapi.com/api/qr/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-generator-generator-with-logo.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_magic_pro.json b/toolbench/toolenv/tools/Tools/qr_magic_pro.json new file mode 100644 index 0000000000000000000000000000000000000000..0a682597f603c2379227dc661163045c70367ab1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_magic_pro.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR Magic Pro", + "tool_description":"Introducing \"QR Magic Pro\", the ultimate QR code generation API for individuals and businesses looking for a fast, easy and reliable way to create professional-grade QR codes. The API allows you to quickly and easily generate QR codes for any URL, with just a few simple steps. ", + "title":"QR Magic Pro", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/JuCuAcc/api/qr-magic-pro/", + "host":"qr-magic-pro.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Picture", + "url":"https://qr-magic-pro.p.rapidapi.com/qr", + "description":"Send a request with a URL and get a QR code picture in response.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://qr-magic-pro.p.rapidapi.com/qr\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-magic-pro.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_magic_pro/api.py b/toolbench/toolenv/tools/Tools/qr_magic_pro/api.py new file mode 100644 index 0000000000000000000000000000000000000000..96bfceb5dcf6dc01fe3c23490ed4892d8047d46d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_magic_pro/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_picture(url: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Send a request with a URL and get a QR code picture in response." + + """ + url = f"https://qr-magic-pro.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-magic-pro.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_maker_api.json b/toolbench/toolenv/tools/Tools/qr_maker_api.json new file mode 100644 index 0000000000000000000000000000000000000000..5108985571b0b3221d61d2e8fa3575cab75cbf66 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_maker_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR Maker API", + "tool_description":"Any URL can be transformed into a QR code with the help of the straightforward QR Maker API. Utilize it to quickly create QR codes for your marketing materials or website.\nWhat is the acronym QR?\nThe term \"Quick Response\" stands for It is a kind of two-dimensional barcode that mobile devices can scan to quickly get to information like website URLs, product details, and contact information.\n\nIf you want to learn how to use this API, go to the /qrgen url/endpoint, add the url parameter, and ent...", + "title":"QR Maker API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/hamidahjamiatul/api/qr-maker-api/", + "host":"qr-maker-api.p.rapidapi.com", + "api_list":[ + { + "name":"GET QRCode", + "url":"https://qr-maker-api.p.rapidapi.com/qrgen", + "description":"Gets QR Code", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.example.com" + } + ], + "code":"import requests\n\nurl = \"https://qr-maker-api.p.rapidapi.com/qrgen\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-maker-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_maker_api/api.py b/toolbench/toolenv/tools/Tools/qr_maker_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..07db7adb45b92ff5c8d791663e23b9469bf768c6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_maker_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_qrcode(url: str='www.example.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets QR Code" + + """ + url = f"https://qr-maker-api.p.rapidapi.com/qrgen" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-maker-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_scanner_api.json b/toolbench/toolenv/tools/Tools/qr_scanner_api.json new file mode 100644 index 0000000000000000000000000000000000000000..8cfb65894ac4700fc35035ea2e5e4b4b0f35759b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_scanner_api.json @@ -0,0 +1,260 @@ +{ + "tool_name": "QR-Scanner-Api", + "tool_description": "Scan QR & Barcode images from files or URLs and return the equivalent QR-Text or Barcode-Number plus code format.", + "title": "QR-Scanner-Api", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2910, + "avgSuccessRate": 100, + "popularityScore": 9.3, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/ezzatelbadrawy/api/qr-scanner-api/", + "host": "qr-scanner-api.p.rapidapi.com", + "api_list": [ + { + "name": "ScanImageUrl", + "url": "https://qr-scanner-api.p.rapidapi.com/api/QR/scanimageurl", + "description": "Scan image from URL and return QR text or Barcode number.", + "method": "GET", + "required_parameters": [ + { + "name": "imageUrl", + "type": "STRING", + "description": "Image URL which you want to scan", + "default": "set-your-image-URL-here (ex: https://drive.google.com/uc?id=1Bqpyxu5gZbmzyre-bVMMpod9qItPma9w)" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-scanner-api.p.rapidapi.com/api/QR/scanimageurl\"\nquerystring = {\"imageUrl\": imageurl}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-scanner-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": "{\n\t\"status\": \"\",\n\t\"result\": \"\",\n\t\"format\": \"\"\n}", + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ], + "description": "Response Status : Success/Failure" + }, + "result": { + "type": [ + "string", + "null" + ], + "description": "Respons Result : Expected output with 'Success' status OR error description with 'Failure' status" + }, + "format": { + "type": [ + "string", + "null" + ], + "description": "QR/Barcode Format" + } + }, + "additionalProperties": false, + "description": "Custom Response Object" + } + }, + { + "name": "ScanImageUrl", + "url": "https://qr-scanner-api.p.rapidapi.com/api/QR/scanimageurl", + "description": "Scan image from URL and return QR text or Barcode number.", + "method": "GET", + "required_parameters": [ + { + "name": "imageUrl", + "type": "STRING", + "description": "Image URL which you want to scan", + "default": "set-your-image-URL-here (ex: https://drive.google.com/uc?id=1Bqpyxu5gZbmzyre-bVMMpod9qItPma9w)" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-scanner-api.p.rapidapi.com/api/QR/scanimageurl\"\nquerystring = {\"imageUrl\": imageurl}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-scanner-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "status": "Success", + "result": "QR-Text or Barcode-Number", + "format": "code-format" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ], + "description": "Response Status : Success/Failure" + }, + "result": { + "type": [ + "string", + "null" + ], + "description": "Respons Result : Expected output with 'Success' status OR error description with 'Failure' status" + }, + "format": { + "type": [ + "string", + "null" + ], + "description": "QR/Barcode Format" + } + }, + "additionalProperties": false, + "description": "Custom Response Object" + } + }, + { + "name": "ScanImageFile", + "url": "https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile", + "description": "Scan image file and return QR text or Barcode number.", + "method": "POST", + "required_parameters": [ + { + "name": "imagefile", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile\"\nquerystring = {\"imagefile\": imagefile}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-scanner-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": "{\n\t\"status\": \"\",\n\t\"result\": \"\",\n\t\"format\": \"\"\n}", + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ], + "description": "Response Status : Success/Failure" + }, + "result": { + "type": [ + "string", + "null" + ], + "description": "Respons Result : Expected output with 'Success' status OR error description with 'Failure' status" + }, + "format": { + "type": [ + "string", + "null" + ], + "description": "QR/Barcode Format" + } + }, + "additionalProperties": false, + "description": "Custom Response Object" + } + }, + { + "name": "ScanImageFile", + "url": "https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile", + "description": "Scan image file and return QR text or Barcode number.", + "method": "POST", + "required_parameters": [ + { + "name": "imagefile", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile\"\nquerystring = {\"imagefile\": imagefile}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-scanner-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "status": "Success", + "result": "QR-Text or Barcode-Number", + "format": "code-format" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ], + "description": "Response Status : Success/Failure" + }, + "result": { + "type": [ + "string", + "null" + ], + "description": "Respons Result : Expected output with 'Success' status OR error description with 'Failure' status" + }, + "format": { + "type": [ + "string", + "null" + ], + "description": "QR/Barcode Format" + } + }, + "additionalProperties": false, + "description": "Custom Response Object" + } + }, + { + "name": "ScanImageFile", + "url": "https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile", + "description": "Scan image file and return QR text or Barcode number.", + "method": "POST", + "required_parameters": [ + { + "name": "imagefile", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile\"\nquerystring = {\"imagefile\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-scanner-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qr-scanner-api.p.rapidapi.com/api/QR/scanimagefile\"\nquerystring = {\"imagefile\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-scanner-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "status": { + "type": [ + "string", + "null" + ], + "description": "Response Status : Success/Failure" + }, + "result": { + "type": [ + "string", + "null" + ], + "description": "Respons Result : Expected output with 'Success' status OR error description with 'Failure' status" + }, + "format": { + "type": [ + "string", + "null" + ], + "description": "QR/Barcode Format" + } + }, + "additionalProperties": false, + "description": "Custom Response Object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_scanner_api/api.py b/toolbench/toolenv/tools/Tools/qr_scanner_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..160b401d46a77b46fef7656de25866829a5e594a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_scanner_api/api.py @@ -0,0 +1,52 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def scanimageurl(imageurl: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Scan image from URL and return QR text or Barcode number." + imageurl: Image URL which you want to scan + + """ + url = f"https://qr-scanner-api.p.rapidapi.com/api/qr/scanimageurl" + querystring = {'imageUrl': imageurl, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-scanner-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def scanimageurl(imageurl: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Scan image from URL and return QR text or Barcode number." + imageurl: Image URL which you want to scan + + """ + url = f"https://qr-scanner-api.p.rapidapi.com/api/qr/scanimageurl" + querystring = {'imageUrl': imageurl, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-scanner-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_supreme.json b/toolbench/toolenv/tools/Tools/qr_supreme.json new file mode 100644 index 0000000000000000000000000000000000000000..ea51e93d85df123c690c819b561d44608245dd30 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_supreme.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR Supreme", + "tool_description":"This API takes URL or string and returns the QR code Image", + "title":"QR Supreme", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/roalex507/api/qr-supreme/", + "host":"qr-supreme.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_copy", + "url":"https://qr-supreme.p.rapidapi.com/generate_qr", + "description":"This end point takes a 'GET' request with url / string as a parameter and returns qr code image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://qr-supreme.p.rapidapi.com/generate_qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-supreme.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_supreme/api.py b/toolbench/toolenv/tools/Tools/qr_supreme/api.py new file mode 100644 index 0000000000000000000000000000000000000000..05e97eb1e1b6dbfb821695f4edebb0b954877237 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_supreme/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url / string as a parameter and returns qr code image." + + """ + url = f"https://qr-supreme.p.rapidapi.com/generate_qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-supreme.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_url/api.py b/toolbench/toolenv/tools/Tools/qr_url/api.py new file mode 100644 index 0000000000000000000000000000000000000000..00b34003e95fb87b6bb0467398d6bdd97d334878 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_url/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_a_qr_image_from_a_web_page(url: str='www.outlook.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a "GET" request with url / string as a parameter and return qr download image (.png)" + + """ + url = f"https://qr-url1.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-url1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_vcard_generator.json b/toolbench/toolenv/tools/Tools/qr_vcard_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..482404fccdf427ae41e6f2122eb7d6cf7b1bb50c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_vcard_generator.json @@ -0,0 +1,89 @@ +{ + "tool_name":"QR VCARD Generator", + "tool_description":"API to generate VCARD and text QR codes", + "title":"QR VCARD Generator", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/hpro252/api/qr-vcard-generator/", + "host":"qr-vcard-generator.p.rapidapi.com", + "api_list":[ + { + "name":"VCARD QR Code", + "url":"https://qr-vcard-generator.p.rapidapi.com/vcard", + "description":"Generates VCARD QR Code", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"STRING", + "description":"", + "default":"+1-202-555-0152" + }, + { + "name":"name", + "type":"STRING", + "description":"", + "default":"John Doe" + }, + { + "name":"email", + "type":"STRING", + "description":"", + "default":"info@example.com" + } + ], + "optional_parameters":[ + { + "name":"size", + "type":"NUMBER", + "description":"", + "default":"20" + }, + { + "name":"border", + "type":"NUMBER", + "description":"", + "default":"2" + } + ], + "code":"import requests\n\nurl = \"https://qr-vcard-generator.p.rapidapi.com/vcard\"\nquerystring = {\"size\": size, \"border\": border, \"phone\": phone, \"name\": name, \"email\": email}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-vcard-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Text QR Code Generator", + "url":"https://qr-vcard-generator.p.rapidapi.com/qrcode", + "description":"Generates Text/URL QR Code", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"Hello World" + } + ], + "optional_parameters":[ + { + "name":"border", + "type":"NUMBER", + "description":"", + "default":"3" + }, + { + "name":"size", + "type":"NUMBER", + "description":"", + "default":"15" + } + ], + "code":"import requests\n\nurl = \"https://qr-vcard-generator.p.rapidapi.com/qrcode\"\nquerystring = {\"border\": border, \"size\": size, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-vcard-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_vcard_generator/api.py b/toolbench/toolenv/tools/Tools/qr_vcard_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..178cded23fd3a77fed2d10ba7f95277a19c4aa9a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_vcard_generator/api.py @@ -0,0 +1,58 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def vcard_qr_code(phone: str, name: str, email: str, size: int=20, border: int=2, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates VCARD QR Code" + + """ + url = f"https://qr-vcard-generator.p.rapidapi.com/vcard" + querystring = {'phone': phone, 'name': name, 'email': email, } + if size: + querystring['size'] = size + if border: + querystring['border'] = border + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-vcard-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def text_qr_code_generator(text: str, border: int=3, size: int=15, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates Text/URL QR Code" + + """ + url = f"https://qr-vcard-generator.p.rapidapi.com/qrcode" + querystring = {'text': text, } + if border: + querystring['border'] = border + if size: + querystring['size'] = size + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-vcard-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qr_web_url_downloader.json b/toolbench/toolenv/tools/Tools/qr_web_url_downloader.json new file mode 100644 index 0000000000000000000000000000000000000000..5fdd02ba932cdf3bc1ecf484a11473d267481999 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_web_url_downloader.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR web URL downloader", + "tool_description":"The API take URL as String and return the QR code image", + "title":"QR web URL downloader", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sijok47/api/qr-web-url-downloader/", + "host":"qr-web-url-downloader.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_download", + "url":"https://qr-web-url-downloader.p.rapidapi.com/qr", + "description":"This end point take a 'GET' request with URL/string parameter and\nreturn qr code image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://qr-web-url-downloader.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-web-url-downloader.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qr_web_url_downloader/api.py b/toolbench/toolenv/tools/Tools/qr_web_url_downloader/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1dd92c17f3108006c4f1426a241a7c4014291fa7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qr_web_url_downloader/api.py @@ -0,0 +1,32 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_download(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point take a 'GET' request with URL/string parameter and + return qr code image" + + """ + url = f"https://qr-web-url-downloader.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-web-url-downloader.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode.json b/toolbench/toolenv/tools/Tools/qrcode.json new file mode 100644 index 0000000000000000000000000000000000000000..2bb39db40ae41a4c801e42ca94caafec42c769b2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode.json @@ -0,0 +1,621 @@ +{ + "product_id": "api_656631bd-6847-4a50-9522-a47ff8cc0c08", + "tool_description": "Customisable QR Codes. Support for styles, images and more! Bare metal engine gives it incredible speed. Full documentation can be found at: https://linqr.app/docs", + "home_url": "https://rapidapi.com/linqr-linqr-default/api/qrcode3/", + "name": "QRCode", + "title": "QRCode", + "pricing": "FREEMIUM", + "tool_name": "QRCode", + "score": { + "avgServiceLevel": 100, + "avgLatency": 203, + "avgSuccessRate": 100, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "qrcode3.p.rapidapi.com", + "api_list": [ + { + "name": "List image", + "url": "https://qrcode3.p.rapidapi.com/images/{id}", + "description": "This endpoint allows you to list single image hosted in the LinQR storage.", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/images/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/images/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "This endpoint is disabled for your subscription" + }, + "statuscode": 200, + "schema": { + "title": "ImageMetadata", + "required": [ + "id", + "source", + "size", + "created" + ], + "type": "object", + "properties": { + "id": { + "title": "Id", + "type": "string", + "description": "Image identifier.", + "format": "uuid4" + }, + "source": { + "title": "Source", + "type": "string", + "description": "Source file name." + }, + "size": { + "title": "Size", + "type": "integer", + "description": "Size of the source file in bytes" + }, + "created": { + "title": "Created", + "type": "string", + "description": "The creation time of the image.", + "format": "date-time" + } + }, + "additionalProperties": false + } + }, + { + "name": "List all images", + "url": "https://qrcode3.p.rapidapi.com/images", + "description": "This endpoint allows you to list images hosted in the LinQR storage. If there are no images hosted, an empty array is returned.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/images\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/images\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "This endpoint is disabled for your subscription" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "Text QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/text", + "description": "This endpoint allows you to create a QR Code containing any text, in particular, an URL that may redirect the user to the website. After QR code is scanned, website will be displayed to the user.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": "{\"data\":\"https://linqr.app\",\"image\":{\"modules\":true},\"style\":{\"module\":{\"color\":\"black\",\"shape\":\"default\"},\"inner_eye\":{\"shape\":\"default\"},\"outer_eye\":{\"shape\":\"default\"},\"background\":{}},\"size\":{\"width\":200,\"quiet_zone\":4},\"output\":{\"filename\":\"qrcode\",\"format\":\"svg\"}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/text\"\nquerystring = {\"image\": \"\", \"metadata\": \"{\\\"data\\\":\\\"https://linqr.app\\\",\\\"image\\\":{\\\"modules\\\":true},\\\"style\\\":{\\\"module\\\":{\\\"color\\\":\\\"black\\\",\\\"shape\\\":\\\"default\\\"},\\\"inner_eye\\\":{\\\"shape\\\":\\\"default\\\"},\\\"outer_eye\\\":{\\\"shape\\\":\\\"default\\\"},\\\"background\\\":{}},\\\"size\\\":{\\\"width\\\":200,\\\"quiet_zone\\\":4},\\\"output\\\":{\\\"filename\\\":\\\"qrcode\\\",\\\"format\\\":\\\"svg\\\"}}\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/text\"\nquerystring = {\"image\": \"\", \"metadata\": \"{\\\"data\\\":\\\"https://linqr.app\\\",\\\"image\\\":{\\\"modules\\\":true},\\\"style\\\":{\\\"module\\\":{\\\"color\\\":\\\"black\\\",\\\"shape\\\":\\\"default\\\"},\\\"inner_eye\\\":{\\\"shape\\\":\\\"default\\\"},\\\"outer_eye\\\":{\\\"shape\\\":\\\"default\\\"},\\\"background\\\":{}},\\\"size\\\":{\\\"width\\\":200,\\\"quiet_zone\\\":4},\\\"output\\\":{\\\"filename\\\":\\\"qrcode\\\",\\\"format\\\":\\\"svg\\\"}}\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Upload image", + "url": "https://qrcode3.p.rapidapi.com/images", + "description": "This endpoint allows you to upload images to LinQR storage. In the response, metadata of the submitted image is sent, including the identifier used by other endpoints from the `Image management` group for image identification.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "Binary file to be uploaded into LinQR storage. Maximum single file size is 1MiB (1,048,576 bytes).", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/images\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/images\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Contact QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/contact", + "description": "This endpoint allows you to create a QR Code that allows user to quickly add contact information to the phone book. The code contains an appropriately encoded electronic business card. After scanning, the device prompts to save the contact in the phone book.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "encoding": "vcard", + "last_name": "Doe", + "first_name": "John", + "display_name": "John Doe", + "photo": "Base64String...", + "organization": "My Organization", + "title": "Assistant", + "email": "user@example.com", + "phone": "+1-555-3863-999", + "cell_phone": "+1-453-5825-364", + "home_phone": "+1-342-5647-234", + "work_phone": "+1-234-7745-789", + "fax": "+1-601-5559-098", + "videophone": "+617-403-5552-419", + "memo": "Some note", + "nickname": "JohnD", + "birthday": "2019-08-24", + "url": "http://example.com", + "po_box": "12", + "street": "Cambridge St", + "city": "Philadelphia", + "region": "Philadelphia", + "zip_code": "22313", + "country": "Japan", + "latitude": 39.97121, + "longitude": -75.1605564, + "revision": "2019-08-24", + "source": "http://example.com" + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/contact\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"encoding\": \"vcard\", \"last_name\": \"Doe\", \"first_name\": \"John\", \"display_name\": \"John Doe\", \"photo\": \"Base64String...\", \"organization\": \"My Organization\", \"title\": \"Assistant\", \"email\": \"user@example.com\", \"phone\": \"+1-555-3863-999\", \"cell_phone\": \"+1-453-5825-364\", \"home_phone\": \"+1-342-5647-234\", \"work_phone\": \"+1-234-7745-789\", \"fax\": \"+1-601-5559-098\", \"videophone\": \"+617-403-5552-419\", \"memo\": \"Some note\", \"nickname\": \"JohnD\", \"birthday\": \"2019-08-24\", \"url\": \"http://example.com\", \"po_box\": \"12\", \"street\": \"Cambridge St\", \"city\": \"Philadelphia\", \"region\": \"Philadelphia\", \"zip_code\": \"22313\", \"country\": \"Japan\", \"latitude\": 39.97121, \"longitude\": -75.1605564, \"revision\": \"2019-08-24\", \"source\": \"http://example.com\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/contact\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"encoding\": \"vcard\", \"last_name\": \"Doe\", \"first_name\": \"John\", \"display_name\": \"John Doe\", \"photo\": \"Base64String...\", \"organization\": \"My Organization\", \"title\": \"Assistant\", \"email\": \"user@example.com\", \"phone\": \"+1-555-3863-999\", \"cell_phone\": \"+1-453-5825-364\", \"home_phone\": \"+1-342-5647-234\", \"work_phone\": \"+1-234-7745-789\", \"fax\": \"+1-601-5559-098\", \"videophone\": \"+617-403-5552-419\", \"memo\": \"Some note\", \"nickname\": \"JohnD\", \"birthday\": \"2019-08-24\", \"url\": \"http://example.com\", \"po_box\": \"12\", \"street\": \"Cambridge St\", \"city\": \"Philadelphia\", \"region\": \"Philadelphia\", \"zip_code\": \"22313\", \"country\": \"Japan\", \"latitude\": 39.97121, \"longitude\": -75.1605564, \"revision\": \"2019-08-24\", \"source\": \"http://example.com\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Geolocation QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/geo", + "description": "This endpoint allows you to create a QR Code that allows to share location with the user. The code contains appropriately encoded geographic coordinates. After scanning the code, device maps application is invoked, pointing to the selected location (address).", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "latitude": 40.689274, + "longitude": -74.044586, + "format": "rfc5870" + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/geo\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"latitude\": 40.689274, \"longitude\": -74.044586, \"format\": \"rfc5870\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/geo\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"latitude\": 40.689274, \"longitude\": -74.044586, \"format\": \"rfc5870\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Telephone QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/phone", + "description": "This endpoint allows you to create a QR Code that allows user to make quick telephone call. The code contains appropriately encoded telephone number. After scanning the code, device dialer is invoked with prefilled phone number. To make a call, the user only needs to press the green phone key.", + "method": "POST", + "required_parameters": [ + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "phone": "+1-701-5554-303" + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + }, + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/phone\"\nquerystring = {\"metadata\": {\"data\": {\"phone\": \"+1-701-5554-303\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}, \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/phone\"\nquerystring = {\"metadata\": {\"data\": {\"phone\": \"+1-701-5554-303\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}, \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Cryptocurrency payment QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/crypto", + "description": "This endpoint allows you to create a QR Code that allows user to make a quick cryptocurrency transfer. The code contains appropriately encoded data for the payment. After scanning the code, the cryptocurrency wallet application asks user to perform the transfer without rewriting all necessary data.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "currency": "bitcoin", + "address": "1KXi...", + "label": "John Doe", + "amount": 0.001, + "message": "Some message" + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/crypto\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"currency\": \"bitcoin\", \"address\": \"1KXi...\", \"label\": \"John Doe\", \"amount\": 0.001, \"message\": \"Some message\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/crypto\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"currency\": \"bitcoin\", \"address\": \"1KXi...\", \"label\": \"John Doe\", \"amount\": 0.001, \"message\": \"Some message\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "SMS QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/sms", + "description": "This endpoint allows you to create a QR Code that allows user to quickly send SMS. The code contains appropriately encoded recipient number and message template. After scanning the code, device message application is invoked with prefilled phone number and text, ready to be sent. To send a SMS, the user only needs to press *Send* button.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "to": "+1-602-5552-149", + "message": "Hey! Sent by LinQR" + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/sms\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"to\": \"+1-602-5552-149\", \"message\": \"Hey! Sent by LinQR\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/sms\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"to\": \"+1-602-5552-149\", \"message\": \"Hey! Sent by LinQR\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "WiFi QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/wifi", + "description": "This endpoint allows you to create a QR Code that allows user to quickly connect to a WiFi network. The code contains properly encoded network credentials. After scanning, the device can automatically connect to the network without having to enter the password manually.", + "method": "POST", + "required_parameters": [ + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "ssid": "My WiFi network name", + "password": "Pass!&#^@#*@", + "security": "WPA", + "hidden": false + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + }, + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/wifi\"\nquerystring = {\"metadata\": {\"data\": {\"ssid\": \"My WiFi network name\", \"password\": \"Pass!&#^@#*@\", \"security\": \"WPA\", \"hidden\": false}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}, \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/wifi\"\nquerystring = {\"metadata\": {\"data\": {\"ssid\": \"My WiFi network name\", \"password\": \"Pass!&#^@#*@\", \"security\": \"WPA\", \"hidden\": false}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}, \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Arbitrary data type QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode", + "description": "This endpoint aggregates the functionality of all other endpoints in the group. The data type in the `data` field is recognized automatically and the data is encoded in an appropriate way.", + "method": "POST", + "required_parameters": [ + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": "https://linqr.app", + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + }, + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode\"\nquerystring = {\"metadata\": {\"data\": \"https://linqr.app\", \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}, \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode\"\nquerystring = {\"metadata\": {\"data\": \"https://linqr.app\", \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}, \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Email QR Code", + "url": "https://qrcode3.p.rapidapi.com/qrcode/email", + "description": "This endpoint allows the creation of a QR Code allowing the user to quickly send an email. The code contains an appropriately encoded message template. After scanning, the device starts the e-mail client with pre-filled specified fields.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "metadata", + "type": "OBJECT", + "description": "", + "default": { + "data": { + "to": "user@example.com", + "cc": "user@example.com", + "bcc": "user@example.com", + "subject": "Example subject", + "body": "Example message body for Email QRCode.\n\nRegards,\nLinQR" + }, + "image": { + "modules": true + }, + "style": { + "module": { + "color": "black", + "shape": "default" + }, + "inner_eye": { + "shape": "default" + }, + "outer_eye": { + "shape": "default" + }, + "background": {} + }, + "size": { + "width": 200, + "quiet_zone": 4 + }, + "output": { + "filename": "qrcode", + "format": "svg" + } + } + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/email\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"to\": \"user@example.com\", \"cc\": \"user@example.com\", \"bcc\": \"user@example.com\", \"subject\": \"Example subject\", \"body\": \"Example message body for Email QRCode.\\n\\nRegards,\\nLinQR\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/qrcode/email\"\nquerystring = {\"image\": \"\", \"metadata\": {\"data\": {\"to\": \"user@example.com\", \"cc\": \"user@example.com\", \"bcc\": \"user@example.com\", \"subject\": \"Example subject\", \"body\": \"Example message body for Email QRCode.\\n\\nRegards,\\nLinQR\"}, \"image\": {\"modules\": true}, \"style\": {\"module\": {\"color\": \"black\", \"shape\": \"default\"}, \"inner_eye\": {\"shape\": \"default\"}, \"outer_eye\": {\"shape\": \"default\"}, \"background\": {}}, \"size\": {\"width\": 200, \"quiet_zone\": 4}, \"output\": {\"filename\": \"qrcode\", \"format\": \"svg\"}}}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "QR Code Batch", + "url": "https://qrcode3.p.rapidapi.com/batch/qrcode", + "description": "This endpoint allows you to generate an archive containing multiple QR Codes with a single request. The endpoint response is the archive containing the generated image files and `items.json` file which is a record of the specifications of each of the files in the archive.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/batch/qrcode\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode3.p.rapidapi.com/batch/qrcode\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "qrcode" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcode/api.py b/toolbench/toolenv/tools/Tools/qrcode/api.py new file mode 100644 index 0000000000000000000000000000000000000000..27bde52ec5ccb3e70ec8029be596717053fa0476 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_image(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint allows you to list single image hosted in the LinQR storage." + + """ + url = f"https://qrcode3.p.rapidapi.com/images/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_all_images(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint allows you to list images hosted in the LinQR storage. If there are no images hosted, an empty array is returned." + + """ + url = f"https://qrcode3.p.rapidapi.com/images" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_api/api.py b/toolbench/toolenv/tools/Tools/qrcode_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2cfe5aded1f60d8adec9e1b4fa944f394a40226a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcode_image_copy(data: str='www.youtube.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "GET request to qr code image" + + """ + url = f"https://qrcode-api7.p.rapidapi.com/qr_code" + querystring = {} + if data: + querystring['data'] = data + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-api7.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_api_a_powerful_tool_for_generating_qr_codes_from_urls.json b/toolbench/toolenv/tools/Tools/qrcode_api_a_powerful_tool_for_generating_qr_codes_from_urls.json new file mode 100644 index 0000000000000000000000000000000000000000..9998b4c3d709e59a16285c56f896195bfc178195 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_api_a_powerful_tool_for_generating_qr_codes_from_urls.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QRCode API - A Powerful Tool for Generating QR Codes from URLs", + "tool_description":"A simple and efficient tool for generating QR codes from URLs. With just a GET request, you can turn any URL into a QR code image for use in marketing materials, websites, and more. Built using Node.js, the API is fast, reliable, and easy for developers of all levels to use. Streamline your QR code generation process and simplify your marketing strategies with the QR Code API.", + "title":"QRCode API - A Powerful Tool for Generating QR Codes from URLs", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/quangit8888/api/qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls/", + "host":"qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls.p.rapidapi.com", + "api_list":[ + { + "name":"Generate QR Code", + "url":"https://qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls.p.rapidapi.com/qr-code", + "description":"The API endpoint is a simple GET request. The URL to encode should be passed as a parameter to the endpoint.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://rapidapi.com/" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls.p.rapidapi.com/qr-code\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcode_api_a_powerful_tool_for_generating_qr_codes_from_urls/api.py b/toolbench/toolenv/tools/Tools/qrcode_api_a_powerful_tool_for_generating_qr_codes_from_urls/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d42390e451f306b373e40bd27f17e64de474c744 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_api_a_powerful_tool_for_generating_qr_codes_from_urls/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_qr_code(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The API endpoint is a simple GET request. The URL to encode should be passed as a parameter to the endpoint." + + """ + url = f"https://qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls.p.rapidapi.com/qr-code" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-api-a-powerful-tool-for-generating-qr-codes-from-urls.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_api_v2/api.py b/toolbench/toolenv/tools/Tools/qrcode_api_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5d0f60fce546136e75ace2991e6f64d5c62ce52a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_api_v2/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_convert_api(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "QR Code convert api to string" + + """ + url = f"https://qrcode-api9.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-api9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_api_v3/api.py b/toolbench/toolenv/tools/Tools/qrcode_api_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7bd25a42100559447315118f026f4ba9fd868c89 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_api_v3/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def create_qrcode_image_and_dowload(url: str='https://www.google.com/', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Create a QRcode image and Dowload that image" + + """ + url = f"https://qrcode-api6.p.rapidapi.com/" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-api6.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_generator.json b/toolbench/toolenv/tools/Tools/qrcode_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..6a4641b177874c8edc7a8f1a5d8b860b35ebd800 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_generator.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_58249fc6-1c8a-4bbc-a5b8-9c154bb4fef1", + "tool_description": "This API allows you to generate QR codes from a provided URL or text content. You can customize the appearance of the QR code by specifying options such as margin, background color, and foreground color. The API accepts both GET and POST requests.", + "home_url": "https://rapidapi.com/afilummer/api/qrcode-generator22/", + "name": "Qrcode Generator", + "title": "Qrcode Generator", + "pricing": "FREEMIUM", + "tool_name": "Qrcode Generator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2042, + "avgSuccessRate": 100, + "popularityScore": 8.1, + "__typename": "Score" + }, + "host": "qrcode-generator22.p.rapidapi.com", + "api_list": [ + { + "name": "Create Qrcode with custom content and colour", + "url": "https://qrcode-generator22.p.rapidapi.com/", + "description": "Create QR codes with the given content and color.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcode-generator22.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-generator22.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode-generator22.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-generator22.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcode_generator_base64.json b/toolbench/toolenv/tools/Tools/qrcode_generator_base64.json new file mode 100644 index 0000000000000000000000000000000000000000..4343d50a25d8bd12aa916ffd4013582c394c28c6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_generator_base64.json @@ -0,0 +1,37 @@ +{ + "tool_name":"qrcode-generator-base64", + "tool_description":"Our QR code generator API allows you to generate QR codes for various types of data, including text, URLs, phone numbers, SMS messages, and email addresses. The API returns a base64-encoded image of the QR code, which can be easily decoded and displayed in any web or mobile application. With our API, you can quickly and easily integrate QR code generation into your application, allowing your users to create and scan QR codes on the go. Sign up for our API today and start generating high-quali...", + "title":"qrcode-generator-base64", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":302, + "avgSuccessRate":63, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/dev.balmuda/api/qrcode-generator-base64/", + "host":"qrcode-generator-base64.p.rapidapi.com", + "api_list":[ + { + "name":"qrcode", + "url":"https://qrcode-generator-base64.p.rapidapi.com/qrcode", + "description":"qrcode to genrate base64 qrcode image", + "method":"GET", + "required_parameters":[ + { + "name":"name", + "type":"STRING", + "description":"", + "default":"name" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qrcode-generator-base64.p.rapidapi.com/qrcode\"\nquerystring = {\"name\": name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-generator-base64.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcode_generator_base64/api.py b/toolbench/toolenv/tools/Tools/qrcode_generator_base64/api.py new file mode 100644 index 0000000000000000000000000000000000000000..07cbc8023a4395e91b6ed8d4c8360ecf6b458d3f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_generator_base64/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcode(name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "qrcode to genrate base64 qrcode image" + + """ + url = f"https://qrcode-generator-base64.p.rapidapi.com/qrcode" + querystring = {'name': name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-generator-base64.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_generator_v2/api.py b/toolbench/toolenv/tools/Tools/qrcode_generator_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..540ff44e16898287275651a722ca452c81db834b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_generator_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcode_creator(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "convert string to qrcode" + + """ + url = f"https://qrcode-generator18.p.rapidapi.com/qrcode" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-generator18.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_generator_v3/api.py b/toolbench/toolenv/tools/Tools/qrcode_generator_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5862f685c795f6510a0fb637d326147f665525ea --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_generator_v3/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_qrcode(data: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate Qrcode by passing data to generate QRcode" + + """ + url = f"https://qrcode-generator12.p.rapidapi.com/v1/qrcode/{data}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-generator12.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_supercharged.json b/toolbench/toolenv/tools/Tools/qrcode_supercharged.json new file mode 100644 index 0000000000000000000000000000000000000000..846701774edf4b771cdeb243cb2c316b4be0de44 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_supercharged.json @@ -0,0 +1,314 @@ +{ + "tool_name": "qrcode-supercharged", + "tool_description": "QR code builder, with full SVG & gradient support, logo rendering, and automated error check. GUI builder using this API: https://qrcode-builder.apiroad.net Each QR code is validated automatically on the server before final output, so you will never download broken QR code!", + "title": "qrcode-supercharged", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 85, + "avgLatency": 13589, + "avgSuccessRate": 85, + "popularityScore": 8.7, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/restyler/api/qrcode-supercharged/", + "host": "qrcode-supercharged.p.rapidapi.com", + "api_list": [ + { + "name": "Generate QR code with external logo URL", + "url": "https://qrcode-supercharged.p.rapidapi.com/", + "description": "Generate QR code with logo url specified in GET param. Very convenient for quick testing.\nWARNING: RapidAPI preview is not working properly for binary API output! Use \"Code snippets\" to properly test the API.", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "https://rapidapi.com" + } + ], + "optional_parameters": [ + { + "name": "size", + "type": "NUMBER", + "description": "QR code size", + "default": "400" + }, + { + "name": "eye_style", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "block_style", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "bg_color", + "type": "STRING", + "description": "", + "default": "FFFFFF" + }, + { + "name": "validate", + "type": "NUMBER", + "description": "Validate QR code after generation to avoid broken codes due to too large logo or low contrast.", + "default": "1" + }, + { + "name": "gradient_color_end", + "type": "STRING", + "description": "", + "default": "00FF00" + }, + { + "name": "gradient", + "type": "NUMBER", + "description": "Set to 0 to disable gradient.", + "default": "1" + }, + { + "name": "gradient_color_start", + "type": "STRING", + "description": "", + "default": "FF0000" + }, + { + "name": "gradient_type", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "logo_size", + "type": "NUMBER", + "description": "", + "default": "0.22" + }, + { + "name": "fg_color", + "type": "STRING", + "description": "QR code foreground color in HEX. This is ignored if gradient mode is active.", + "default": "FF0000" + }, + { + "name": "format", + "type": "ENUM", + "description": "QR code output format.", + "default": "" + }, + { + "name": "logo_url", + "type": "STRING", + "description": "URL to svg, png or jpg image, which will be used as logo in the QR code center.", + "default": "https://cdn.auth0.com/blog/symfony-blog/logo.png" + } + ], + "code": "import requests\n\nurl = \"https://qrcode-supercharged.p.rapidapi.com/\"\nquerystring = {\"size\": size, \"bg_color\": bg_color, \"text\": text, \"validate\": validate, \"gradient_color_end\": gradient_color_end, \"gradient\": gradient, \"gradient_color_start\": gradient_color_start, \"logo_size\": logo_size, \"fg_color\": fg_color, \"logo_url\": logo_url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-supercharged.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "binary": "file. Use code snippets because RapidAPI preview cannot render QR code image here properly!" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Generate QR code with logo upload", + "url": "https://qrcode-supercharged.p.rapidapi.com/", + "description": "QR code generation via multipart POST request, for convenient file uploads", + "method": "POST", + "required_parameters": [ + { + "name": "logo_upload", + "type": "BINARY", + "description": "Upload svg, jpg or png logo. ", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "https://rapidapi.com" + } + ], + "optional_parameters": [ + { + "name": "gradient_color_end", + "type": "STRING", + "description": "", + "default": "00FF00" + }, + { + "name": "format", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "fg_color", + "type": "STRING", + "description": "", + "default": "FF0000" + }, + { + "name": "logo_size", + "type": "NUMBER", + "description": "", + "default": "0.22" + }, + { + "name": "eye_style", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "validate", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "gradient", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "gradient_type", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "bg_color", + "type": "STRING", + "description": "", + "default": "FFFFFF" + }, + { + "name": "size", + "type": "NUMBER", + "description": "", + "default": "400" + }, + { + "name": "gradient_color_start", + "type": "STRING", + "description": "", + "default": "FF0000" + }, + { + "name": "block_style", + "type": "ENUM", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://qrcode-supercharged.p.rapidapi.com/\"\nquerystring = {\"logo_upload\": logo_upload, \"gradient_color_end\": gradient_color_end, \"fg_color\": fg_color, \"logo_size\": logo_size, \"validate\": validate, \"gradient\": gradient, \"text\": text, \"bg_color\": bg_color, \"size\": size, \"gradient_color_start\": gradient_color_start}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-supercharged.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Generate QR code with logo upload", + "url": "https://qrcode-supercharged.p.rapidapi.com/", + "description": "QR code generation via multipart POST request, for convenient file uploads", + "method": "POST", + "required_parameters": [ + { + "name": "logo_upload", + "type": "BINARY", + "description": "Upload svg, jpg or png logo. ", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "https://rapidapi.com" + } + ], + "optional_parameters": [ + { + "name": "gradient_color_end", + "type": "STRING", + "description": "", + "default": "00FF00" + }, + { + "name": "format", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "fg_color", + "type": "STRING", + "description": "", + "default": "FF0000" + }, + { + "name": "logo_size", + "type": "NUMBER", + "description": "", + "default": "0.22" + }, + { + "name": "eye_style", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "validate", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "gradient", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "gradient_type", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "bg_color", + "type": "STRING", + "description": "", + "default": "FFFFFF" + }, + { + "name": "size", + "type": "NUMBER", + "description": "", + "default": "400" + }, + { + "name": "gradient_color_start", + "type": "STRING", + "description": "", + "default": "FF0000" + }, + { + "name": "block_style", + "type": "ENUM", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://qrcode-supercharged.p.rapidapi.com/\"\nquerystring = {\"logo_upload\": \"\", \"gradient_color_end\": \"00FF00\", \"format\": \"\", \"fg_color\": \"FF0000\", \"logo_size\": \"0.22\", \"eye_style\": \"\", \"validate\": \"1\", \"gradient\": \"1\", \"text\": \"https://rapidapi.com\", \"gradient_type\": \"\", \"bg_color\": \"FFFFFF\", \"size\": \"400\", \"gradient_color_start\": \"FF0000\", \"block_style\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-supercharged.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcode-supercharged.p.rapidapi.com/\"\nquerystring = {\"logo_upload\": \"\", \"gradient_color_end\": \"00FF00\", \"format\": \"\", \"fg_color\": \"FF0000\", \"logo_size\": \"0.22\", \"eye_style\": \"\", \"validate\": \"1\", \"gradient\": \"1\", \"text\": \"https://rapidapi.com\", \"gradient_type\": \"\", \"bg_color\": \"FFFFFF\", \"size\": \"400\", \"gradient_color_start\": \"FF0000\", \"block_style\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcode-supercharged.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcode_supercharged/api.py b/toolbench/toolenv/tools/Tools/qrcode_supercharged/api.py new file mode 100644 index 0000000000000000000000000000000000000000..653548a6e845bc90d5cae5f64dd59577e77e7957 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_supercharged/api.py @@ -0,0 +1,62 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_qr_code_with_external_logo_url(text: str, size: int=400, eye_style: str=None, block_style: str=None, bg_color: str='FFFFFF', validate: int=1, gradient_color_end: str='00FF00', gradient: int=1, gradient_color_start: str='FF0000', gradient_type: str=None, logo_size: int=0, fg_color: str='FF0000', format: str=None, logo_url: str='https://cdn.auth0.com/blog/symfony-blog/logo.png', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate QR code with logo url specified in GET param. Very convenient for quick testing. + WARNING: RapidAPI preview is not working properly for binary API output! Use "Code snippets" to properly test the API." + size: QR code size + validate: Validate QR code after generation to avoid broken codes due to too large logo or low contrast. + gradient: Set to 0 to disable gradient. + fg_color: QR code foreground color in HEX. This is ignored if gradient mode is active. + format: QR code output format. + logo_url: URL to svg, png or jpg image, which will be used as logo in the QR code center. + + """ + url = f"https://qrcode-supercharged.p.rapidapi.com/" + querystring = {'text': text, } + if size: + querystring['size'] = size + if eye_style: + querystring['eye_style'] = eye_style + if block_style: + querystring['block_style'] = block_style + if bg_color: + querystring['bg_color'] = bg_color + if validate: + querystring['validate'] = validate + if gradient_color_end: + querystring['gradient_color_end'] = gradient_color_end + if gradient: + querystring['gradient'] = gradient + if gradient_color_start: + querystring['gradient_color_start'] = gradient_color_start + if gradient_type: + querystring['gradient_type'] = gradient_type + if logo_size: + querystring['logo_size'] = logo_size + if fg_color: + querystring['fg_color'] = fg_color + if format: + querystring['format'] = format + if logo_url: + querystring['logo_url'] = logo_url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode-supercharged.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_v2/api.py b/toolbench/toolenv/tools/Tools/qrcode_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ad27b022d22c088dba456ab85f2bfdbd02d1b7e1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcode_creator(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Convert string to QrCode" + + """ + url = f"https://qrcode51.p.rapidapi.com/qr" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode51.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcode_v3/api.py b/toolbench/toolenv/tools/Tools/qrcode_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..03be930e0923de9bff8fb6ef05fe0b80b17d5b36 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcode_v3/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "qrcode" + + """ + url = f"https://qrcode46.p.rapidapi.com/api/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcode46.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcodegenapi.json b/toolbench/toolenv/tools/Tools/qrcodegenapi.json new file mode 100644 index 0000000000000000000000000000000000000000..568fb807d80e941d85cf40f3e69a7d43ad36c298 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodegenapi.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QRCodeGenAPI", + "tool_description":"Generates QR code for any URL. \nThe API takes URL as String and returns QR code image.\n\n\n ", + "title":"QRCodeGenAPI", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/akshatshukla175/api/qrcodegenapi/", + "host":"qrcodegenapi.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Generator GET", + "url":"https://qrcodegenapi.p.rapidapi.com/qr", + "description":"This end point takes a 'GET' request with url as string parameter and returns a qr code image", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qrcodegenapi.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodegenapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcodegenapi/api.py b/toolbench/toolenv/tools/Tools/qrcodegenapi/api.py new file mode 100644 index 0000000000000000000000000000000000000000..836e84fdae1587d69554e95b82de34e0f52d6e0f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodegenapi/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_generator_get(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url as string parameter and returns a qr code image" + + """ + url = f"https://qrcodegenapi.p.rapidapi.com/qr" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcodegenapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcodegenerator.json b/toolbench/toolenv/tools/Tools/qrcodegenerator.json new file mode 100644 index 0000000000000000000000000000000000000000..a74017ef4c14b9952ec31d1966b6755483dc84fd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodegenerator.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QRCodeGenerator", + "tool_description":"This API takes URL and converts to QR image and returns back.\nThis API runs with Python Flask Server and it is super fast.\nYou have to just send URL and you will receive QR Code image in response with download.", + "title":"QRCodeGenerator", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/ashishnikumbh/api/qrcodegenerator4/", + "host":"qrcodegenerator4.p.rapidapi.com", + "api_list":[ + { + "name":"QRCodeImage", + "url":"https://qrcodegenerator4.p.rapidapi.com/qr", + "description":"This endpoint takes a 'GET' request with url/string as a parameter and returns qr code image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://qrcodegenerator4.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodegenerator4.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcodegenerator/api.py b/toolbench/toolenv/tools/Tools/qrcodegenerator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6623b4a15df93f68b0195f30fa263bbe453fa94b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodegenerator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcodeimage(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a 'GET' request with url/string as a parameter and returns qr code image" + + """ + url = f"https://qrcodegenerator4.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcodegenerator4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcodegenie_your_qr_code_companion.json b/toolbench/toolenv/tools/Tools/qrcodegenie_your_qr_code_companion.json new file mode 100644 index 0000000000000000000000000000000000000000..56b025b9788a0d17543b831d7f9dbaa547c5a723 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodegenie_your_qr_code_companion.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QRCodeGenie: Your QR Code Companion", + "tool_description":"Unlock the potential of QR codes with our user-friendly Flask app, QRCodeGenie. Our innovative app generates custom QR codes for any string you provide, making it easy to share information, links, and more. Businesses can use QRCodeGenie to improve customer interactions and streamline processes, while individuals can use it to share contact information with ease. With QRCodeGenie, creating and sharing QR codes has never been simpler. Try it today and experience the convenience for yourself.", + "title":"QRCodeGenie: Your QR Code Companion", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/vivekgpt107/api/qrcodegenie-your-qr-code-companion/", + "host":"qrcodegenie-your-qr-code-companion.p.rapidapi.com", + "api_list":[ + { + "name":"QRCodeGenie: Your QR Code Companion", + "url":"https://qrcodegenie-your-qr-code-companion.p.rapidapi.com/qr", + "description":"Unlock the potential of QR codes with our user-friendly Flask app, QRCodeGenie. Our innovative app generates custom QR codes for any string you provide, making it easy to share information, links, and more. Businesses can use QRCodeGenie to improve customer interactions and streamline processes, while individuals can use it to share contact information with ease. With QRCodeGenie, creating and sharing QR codes has never been simpler. Try it today and experience the convenience for yourself.", + "method":"GET", + "required_parameters":[ + { + "name":"m", + "type":"STRING", + "description":"", + "default":"www.example.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qrcodegenie-your-qr-code-companion.p.rapidapi.com/qr\"\nquerystring = {\"m\": m}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodegenie-your-qr-code-companion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcodegenie_your_qr_code_companion/api.py b/toolbench/toolenv/tools/Tools/qrcodegenie_your_qr_code_companion/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c372c14179096b0136ec1a4dfa0e5e679f3cd8f0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodegenie_your_qr_code_companion/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcodegenie_your_qr_code_companion(m: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Unlock the potential of QR codes with our user-friendly Flask app, QRCodeGenie. Our innovative app generates custom QR codes for any string you provide, making it easy to share information, links, and more. Businesses can use QRCodeGenie to improve customer interactions and streamline processes, while individuals can use it to share contact information with ease. With QRCodeGenie, creating and sharing QR codes has never been simpler. Try it today and experience the convenience for yourself." + + """ + url = f"https://qrcodegenie-your-qr-code-companion.p.rapidapi.com/qr" + querystring = {'m': m, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcodegenie-your-qr-code-companion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrcodestyleapi.json b/toolbench/toolenv/tools/Tools/qrcodestyleapi.json new file mode 100644 index 0000000000000000000000000000000000000000..3a496eb66a995a97cc0db76a72bc3ef2fcd0a1a7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodestyleapi.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_c96406d9-b987-4b7b-9f86-4dfa55beb242", + "tool_description": "QR Code Style Generator Api. Give life to your QR Code with colors and custom graphics. PNG&SVG and data raw format", + "home_url": "https://rapidapi.com/auysal60-IwQqyLOPzS/api/qrcodestyleapi/", + "name": "QRCodeStyleApi", + "title": "QRCodeStyleApi", + "pricing": "FREEMIUM", + "tool_name": "QRCodeStyleApi", + "score": { + "avgServiceLevel": 100, + "avgLatency": 777, + "avgSuccessRate": 100, + "popularityScore": 8.5, + "__typename": "Score" + }, + "host": "qrcodestyleapi.p.rapidapi.com", + "api_list": [ + { + "name": "QRCodeStyleApi", + "url": "https://qrcodestyleapi.p.rapidapi.com/generate", + "description": "QRCode Create", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrcodestyleapi.p.rapidapi.com/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodestyleapi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcodestyleapi.p.rapidapi.com/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodestyleapi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcodeutils.json b/toolbench/toolenv/tools/Tools/qrcodeutils.json new file mode 100644 index 0000000000000000000000000000000000000000..902f952733096484a919a26c0e630918c5867fe6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodeutils.json @@ -0,0 +1,136 @@ +{ + "product_id": "api_71c32a5c-8e28-4cf1-9832-017f3f077d9a", + "tool_description": "QR Code Generator API. The API will return directly QR Code image. For more details please visit https://www.qrcodeutils.com", + "home_url": "https://rapidapi.com/digicatech/api/qrcodeutils/", + "name": "qrcodeutils", + "title": "qrcodeutils", + "pricing": "FREEMIUM", + "tool_name": "qrcodeutils", + "score": { + "avgServiceLevel": 94, + "avgLatency": 612, + "avgSuccessRate": 94, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "qrcodeutils.p.rapidapi.com", + "api_list": [ + { + "name": "qrcodefree", + "url": "https://qrcodeutils.p.rapidapi.com/qrcodefree", + "description": "Free QR Code Barcode Generator", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Barcode text", + "default": "https://www.digicatech.com" + } + ], + "optional_parameters": [ + { + "name": "validate", + "type": "BOOLEAN", + "description": "true / false . Default true", + "default": true + }, + { + "name": "size", + "type": "NUMBER", + "description": "Size of the output image in pixels. Max: 250 Default: 150", + "default": "150" + }, + { + "name": "type", + "type": "STRING", + "description": "Warning: the parameter must be named lowercase png,svg or eps", + "default": "svg" + }, + { + "name": "level", + "type": "STRING", + "description": "Correction Level L (Low) 7% of codewords can be restored. Level M (Medium) 15% of codewords can be restored. Level Q (Quartile)[39] 25% of codewords can be restored. Level H (High) 30% of codewords can be restored. H,L,Q,M . Default M", + "default": "M" + } + ], + "code": "import requests\n\nurl = \"https://qrcodeutils.p.rapidapi.com/qrcodefree\"\nquerystring = {\"validate\": true, \"text\": \"https://www.digicatech.com\", \"size\": \"150\", \"type\": \"svg\", \"level\": \"M\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodeutils.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcodeutils.p.rapidapi.com/qrcodefree\"\nquerystring = {\"validate\": true, \"text\": \"https://www.digicatech.com\", \"size\": \"150\", \"type\": \"svg\", \"level\": \"M\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodeutils.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "qrcodepro", + "url": "https://qrcodeutils.p.rapidapi.com/qrcodepro", + "description": "Pro QR Code Barcode Generator", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Barcode text", + "default": "https://www.digicatech.com" + } + ], + "optional_parameters": [ + { + "name": "validate", + "type": "BOOLEAN", + "description": "true / false . Default true", + "default": true + }, + { + "name": "setlabel", + "type": "BOOLEAN", + "description": "true / false . Default false", + "default": false + }, + { + "name": "forecolor", + "type": "STRING", + "description": "Foreground color in Hexadecimal value. Note: Please do not enter the # prefix", + "default": "000000" + }, + { + "name": "type", + "type": "STRING", + "description": "Warning: the parameter must be named lowercase png,svg or eps", + "default": "svg" + }, + { + "name": "labeltext", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "size", + "type": "NUMBER", + "description": "Size of the output image in pixels. Max: 4000 Default: 150", + "default": "150" + }, + { + "name": "labelalign", + "type": "STRING", + "description": "left , right and center. Default center", + "default": "center" + }, + { + "name": "backcolor", + "type": "STRING", + "description": "Background color in Hexadecimal value. Note: Please do not enter the # prefix", + "default": "FFFFFF" + }, + { + "name": "level", + "type": "STRING", + "description": "Correction Level L (Low) 7% of codewords can be restored. Level M (Medium) 15% of codewords can be restored. Level Q (Quartile)[39] 25% of codewords can be restored. Level H (High) 30% of codewords can be restored. H,L,Q,M . Default M. H,L,Q,M . Default M", + "default": "M" + } + ], + "code": "import requests\n\nurl = \"https://qrcodeutils.p.rapidapi.com/qrcodepro\"\nquerystring = {\"validate\": true, \"setlabel\": false, \"text\": \"https://www.digicatech.com\", \"forecolor\": \"000000\", \"type\": \"svg\", \"labeltext\": \"\", \"size\": \"150\", \"labelalign\": \"center\", \"backcolor\": \"FFFFFF\", \"level\": \"M\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodeutils.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrcodeutils.p.rapidapi.com/qrcodepro\"\nquerystring = {\"validate\": true, \"setlabel\": false, \"text\": \"https://www.digicatech.com\", \"forecolor\": \"000000\", \"type\": \"svg\", \"labeltext\": \"\", \"size\": \"150\", \"labelalign\": \"center\", \"backcolor\": \"FFFFFF\", \"level\": \"M\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrcodeutils.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "qrcodeutils" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrcodeutils/api.py b/toolbench/toolenv/tools/Tools/qrcodeutils/api.py new file mode 100644 index 0000000000000000000000000000000000000000..045d5e0caa8b673c89edc576e2501548ac7b0952 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrcodeutils/api.py @@ -0,0 +1,90 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrcodefree(text: str, validate: bool=None, size: int=150, type: str='svg', level: str='M', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Free QR Code Barcode Generator" + text: Barcode text + validate: true / false . Default true + size: Size of the output image in pixels. Max: 250 Default: 150 + type: Warning: the parameter must be named lowercase png,svg or eps + level: Correction Level L (Low) 7% of codewords can be restored. Level M (Medium) 15% of codewords can be restored. Level Q (Quartile)[39] 25% of codewords can be restored. Level H (High) 30% of codewords can be restored. H,L,Q,M . Default M + + """ + url = f"https://qrcodeutils.p.rapidapi.com/qrcodefree" + querystring = {'text': text, } + if validate: + querystring['validate'] = validate + if size: + querystring['size'] = size + if type: + querystring['type'] = type + if level: + querystring['level'] = level + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcodeutils.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def qrcodepro(text: str, validate: bool=None, setlabel: bool=None, forecolor: str='000000', type: str='svg', labeltext: str=None, size: int=150, labelalign: str='center', backcolor: str='FFFFFF', level: str='M', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pro QR Code Barcode Generator" + text: Barcode text + validate: true / false . Default true + setlabel: true / false . Default false + forecolor: Foreground color in Hexadecimal value. Note: Please do not enter the # prefix + type: Warning: the parameter must be named lowercase png,svg or eps + size: Size of the output image in pixels. Max: 4000 Default: 150 + labelalign: left , right and center. Default center + backcolor: Background color in Hexadecimal value. Note: Please do not enter the # prefix + level: Correction Level L (Low) 7% of codewords can be restored. Level M (Medium) 15% of codewords can be restored. Level Q (Quartile)[39] 25% of codewords can be restored. Level H (High) 30% of codewords can be restored. H,L,Q,M . Default M. H,L,Q,M . Default M + + """ + url = f"https://qrcodeutils.p.rapidapi.com/qrcodepro" + querystring = {'text': text, } + if validate: + querystring['validate'] = validate + if setlabel: + querystring['setlabel'] = setlabel + if forecolor: + querystring['forecolor'] = forecolor + if type: + querystring['type'] = type + if labeltext: + querystring['labeltext'] = labeltext + if size: + querystring['size'] = size + if labelalign: + querystring['labelalign'] = labelalign + if backcolor: + querystring['backcolor'] = backcolor + if level: + querystring['level'] = level + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrcodeutils.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrd.json b/toolbench/toolenv/tools/Tools/qrd.json new file mode 100644 index 0000000000000000000000000000000000000000..a3c2524661bf68616d866a96e9bf9998de68e6bb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrd.json @@ -0,0 +1,56 @@ +{ + "tool_name":"QRD", + "tool_description":"This API takes the URL and returns the correspondent QR code image.", + "title":"QRD", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":97, + "avgLatency":934, + "avgSuccessRate":96, + "popularityScore":9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/chri89b/api/qrd1/", + "host":"qrd1.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code generation parameters", + "url":"https://qrd1.p.rapidapi.com/qr/{url}/{foreground}/{background}", + "description":"Endpoint necessary to pass the parameters via a GET request in order to convert the URL to a QR Code", + "method":"GET", + "required_parameters":[ + { + "name":"background", + "type":"string", + "description":"", + "default":"black" + }, + { + "name":"foreground", + "type":"string", + "description":"", + "default":"yellow" + }, + { + "name":"url", + "type":"string", + "description":"", + "default":"www.google.com" + } + ], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://qrd1.p.rapidapi.com/qr/{url}/{foreground}/{background}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrd1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrd/api.py b/toolbench/toolenv/tools/Tools/qrd/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fb5d399f913ae603d099e3876fd433909717761e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrd/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_generation_parameters(background: str, foreground: str, url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Endpoint necessary to pass the parameters via a GET request in order to convert the URL to a QR Code" + + """ + url = f"https://qrd1.p.rapidapi.com/qr/{url}/{foreground}/{background}" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrd1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrickit_qr_code_qreator.json b/toolbench/toolenv/tools/Tools/qrickit_qr_code_qreator.json new file mode 100644 index 0000000000000000000000000000000000000000..2bac25f778877043321855ce534745614531135c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrickit_qr_code_qreator.json @@ -0,0 +1,92 @@ +{ + "tool_name":"QRickit QR Code QReator", + "tool_description":"Dynamically generate QR Codes (URL, Calendar Events, Contact, Text, Email, etc,) for integration in your own website, applications, and other business or personal usage.", + "title":"QRickit QR Code QReator", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2405, + "avgSuccessRate":100, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/qrickit/api/qrickit-qr-code-qreator/", + "host":"qrickit-qr-code-qreator.p.rapidapi.com", + "api_list":[ + { + "name":"Generate a QR Code image", + "url":"https://qrickit-qr-code-qreator.p.rapidapi.com/api/qrickit.php", + "description":"Format of GET request to generate QR Code image. See documentation at https://qrickit.com/qrickit_apps/qrickit_api.php", + "method":"GET", + "required_parameters":[ + { + "name":"d", + "type":"STRING", + "description":"Data for QR Code (e.g. URL, text, vCard data, iCal data, etc.) See documentation at https://qrickit.com/qrickit_apps/qrickit_api.php for instructions.", + "default":"YourData" + } + ], + "optional_parameters":[ + { + "name":"logotext", + "type":"STRING", + "description":"Header Text: logotext=Any text about 15 to 35 characters maximum depending on the size of your QR Code. Color of header text is the same as QR Code color (fgdcolor). In cases where data is very large, text will not fit and should not be used. Text can be urlencoded to avoid problems with special characters. ", + "default":"" + }, + { + "name":"t", + "type":"STRING", + "description":"Type of generated image. p = png (default). j = jpg. g = gif.", + "default":"" + }, + { + "name":"fgdcolor", + "type":"STRING", + "description":"QR Code Color: fgdcolor=The color of your QR Code expressed in HTML Hex# (i.e. FFFFFF for white, 000000 for black, etc.). If nothing is specified, the default is black (000000).", + "default":"" + }, + { + "name":"qrsize", + "type":"NUMBER", + "description":"Size of image in pixels. Default = 150 (i.e. 150 pixel square) . Min = 80. Max = 1480.", + "default":"" + }, + { + "name":"lang", + "type":"STRING", + "description":"Set to \"jp\" if your optional footer text (addtext) uses Japanese characters. Otherwise leave blank.", + "default":"" + }, + { + "name":"e", + "type":"STRING", + "description":"Error Correction: e=The level of error correction capability. The choices are L (Low) 7%, M (Medium) 15%, Q (Quartile) 25%, and H (High) 30% represented as l, m, q, and h respectively. If nothing is specified, the default error correction level is M (Medium). The higher the error correction means more of the QR Code can still be read if it is damaged (or covered/hidden). However, the higher the error correction, the less data the QR Code can hold. Usually you don't have to specify anything here unless you have a lot of data to fit in the QR Code. Then you can choose e=L (Low).", + "default":"" + }, + { + "name":"addtext", + "type":"STRING", + "description":"Footer Text: addtext=Any text about 15 to 60 characters maximum depending on the size of your QR Code. In cases where data is very large, text will not fit an d should not be used. Text can be urlencoded to avoid problems with special characters. If using Japanese characters please set \"lang\" parameter to \"jp\" (i.e. lang=jp). Otherwise leave \"lang\" blank.", + "default":"" + }, + { + "name":"txtcolor", + "type":"STRING", + "description":"Footer Text Color: txtcolor=The color of your optional footer text expressed in HTML Hex# (i.e. FFFFFF for white, 000000 for black, etc.). If nothing is specified, the default is black (000000). ", + "default":"" + }, + { + "name":"bgdcolor", + "type":"STRING", + "description":"Background Color: bgdcolor=The color of the background expressed in HTML Hex# (i.e. FFFFFF for white, 000000 for black, etc.). If nothing is specified, the default is white (FFFFFF).", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://qrickit-qr-code-qreator.p.rapidapi.com/api/qrickit.php\"\nquerystring = {\"d\": d}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrickit-qr-code-qreator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrickit_qr_code_qreator/api.py b/toolbench/toolenv/tools/Tools/qrickit_qr_code_qreator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1408d87ad55bf54212ad94ee4afce86a257800fa --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrickit_qr_code_qreator/api.py @@ -0,0 +1,57 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_a_qr_code_image(d: str, logotext: str=None, t: str=None, fgdcolor: str=None, qrsize: int=None, lang: str=None, e: str=None, addtext: str=None, txtcolor: str=None, bgdcolor: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Format of GET request to generate QR Code image. See documentation at https://qrickit.com/qrickit_apps/qrickit_api.php" + d: Data for QR Code (e.g. URL, text, vCard data, iCal data, etc.) See documentation at https://qrickit.com/qrickit_apps/qrickit_api.php for instructions. + logotext: Header Text: logotext=Any text about 15 to 35 characters maximum depending on the size of your QR Code. Color of header text is the same as QR Code color (fgdcolor). In cases where data is very large, text will not fit and should not be used. Text can be urlencoded to avoid problems with special characters. + t: Type of generated image. p = png (default). j = jpg. g = gif. + fgdcolor: QR Code Color: fgdcolor=The color of your QR Code expressed in HTML Hex# (i.e. FFFFFF for white, 000000 for black, etc.). If nothing is specified, the default is black (000000). + qrsize: Size of image in pixels. Default = 150 (i.e. 150 pixel square) . Min = 80. Max = 1480. + lang: Set to "jp" if your optional footer text (addtext) uses Japanese characters. Otherwise leave blank. + e: Error Correction: e=The level of error correction capability. The choices are L (Low) 7%, M (Medium) 15%, Q (Quartile) 25%, and H (High) 30% represented as l, m, q, and h respectively. If nothing is specified, the default error correction level is M (Medium). The higher the error correction means more of the QR Code can still be read if it is damaged (or covered/hidden). However, the higher the error correction, the less data the QR Code can hold. Usually you don't have to specify anything here unless you have a lot of data to fit in the QR Code. Then you can choose e=L (Low). + addtext: Footer Text: addtext=Any text about 15 to 60 characters maximum depending on the size of your QR Code. In cases where data is very large, text will not fit an d should not be used. Text can be urlencoded to avoid problems with special characters. If using Japanese characters please set "lang" parameter to "jp" (i.e. lang=jp). Otherwise leave "lang" blank. + txtcolor: Footer Text Color: txtcolor=The color of your optional footer text expressed in HTML Hex# (i.e. FFFFFF for white, 000000 for black, etc.). If nothing is specified, the default is black (000000). + bgdcolor: Background Color: bgdcolor=The color of the background expressed in HTML Hex# (i.e. FFFFFF for white, 000000 for black, etc.). If nothing is specified, the default is white (FFFFFF). + + """ + url = f"https://qrickit-qr-code-qreator.p.rapidapi.com/api/qrickit.php" + querystring = {'d': d, } + if logotext: + querystring['logotext'] = logotext + if t: + querystring['t'] = t + if fgdcolor: + querystring['fgdcolor'] = fgdcolor + if qrsize: + querystring['qrsize'] = qrsize + if lang: + querystring['lang'] = lang + if e: + querystring['e'] = e + if addtext: + querystring['addtext'] = addtext + if txtcolor: + querystring['txtcolor'] = txtcolor + if bgdcolor: + querystring['bgdcolor'] = bgdcolor + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrickit-qr-code-qreator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrify_code_generator.json b/toolbench/toolenv/tools/Tools/qrify_code_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..f1c77b22944941b6eb2179c8bb134e36f54698eb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrify_code_generator.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QRify Code Generator", + "tool_description":"This project is a simple Flask based API that generates QR code images from a given URL. It uses the qrcode package to generate QR code images and the flask package to create a simple REST API.", + "title":"QRify Code Generator", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/chineduozurumba1988/api/qrify-code-generator1/", + "host":"qrify-code-generator1.p.rapidapi.com", + "api_list":[ + { + "name":"QRify Code URL to Image Generator", + "url":"https://qrify-code-generator1.p.rapidapi.com/qr", + "description":"This project is a simple Flask based API that generates QR code images from a given URL. It uses the QRcode package to generate QR code images and the Flask package to create a simple REST API.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.ozurumbachinedu.com" + } + ], + "code":"import requests\n\nurl = \"https://qrify-code-generator1.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrify-code-generator1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrify_code_generator/api.py b/toolbench/toolenv/tools/Tools/qrify_code_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..15dabf9923f7a69681c9086a4f79ee0c0b367ca9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrify_code_generator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qrify_code_url_to_image_generator(url: str='www.ozurumbachinedu.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This project is a simple Flask based API that generates QR code images from a given URL. It uses the QRcode package to generate QR code images and the Flask package to create a simple REST API." + + """ + url = f"https://qrify-code-generator1.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrify-code-generator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrkit_a_smart_and_stylish_qr_code_generator.json b/toolbench/toolenv/tools/Tools/qrkit_a_smart_and_stylish_qr_code_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..8beea61907e34632e360931e91dd098b4bdaadfd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrkit_a_smart_and_stylish_qr_code_generator.json @@ -0,0 +1,74 @@ +{ + "product_id": "api_23a930a6-f657-4667-a9fd-1250cd982d86", + "tool_description": "QRKit is a QR code generator that lets you create custom QR codes with your own logo, colors, and frames. QRKit is smart because it allows you to create your QR codes anytime, for businesses, contact infos, for wifi sharing, and integrate them with third-party APIs. QRKit is stylish because it offers you a variety of design options to make your QR codes stand out from the crowd. Whether you want to link to a URL, a contact, a file, an app, an email, a phone number, or a text, QRKit can help y...", + "home_url": "https://rapidapi.com/YossefDawoad/api/qrkit-a-smart-and-stylish-qr-code-generator/", + "name": "QRKit - A Smart and Stylish QR Code Generator", + "title": "QRKit - A Smart and Stylish QR Code Generator", + "pricing": "FREEMIUM", + "tool_name": "QRKit - A Smart and Stylish QR Code Generator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 5514, + "avgSuccessRate": 100, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com", + "api_list": [ + { + "name": "Generate Geo Location Info as QRCode", + "url": "https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/geo", + "description": "# Geo Sharing QRCode\nA **geo location** is a set of coordinates that specifies the position of a point on the Earth's surface. By generating a geo location info as a **QRCode**, you can easily **share your location** with others without typing or sending it. You can also scan other people's geo location QRCode to see where they are on a map or get directions to them. This is a convenient and accurate way to communicate and navigate with anyone.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/geo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/geo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Generate WiFi Connect Info as QRCode", + "url": "https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/wifi", + "description": "allow you to easily join a WiFi network without typing or remembering the network name and password. You can also share your WiFi QRCode with others to let them connect to your network without revealing your credentials. This is a convenient and secure way to access and share WiFi networks with anyone.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/wifi\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/wifi\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Generate vCard Contact Info as QRCode", + "url": "https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/vcard", + "description": "# vCard QRCode\n\nA **vCard** is a file format that stores contact information such as name, phone number, email address, and more. By generating a vCard contact info as a **QRCode**, you can easily share your contact details with others without typing or printing them. You can also scan other people's vCard QRCode to add them to your contacts list. This is a convenient and efficient way to exchange contact information with anyone.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/vcard\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/pro/qrcode/generate/vcard\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Generate a QR code Data URI", + "url": "https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/qrcode/generate-uri", + "description": "Generate a QR code as PNG Data URI for the given data,\nwhy generating a QR code as PNG Data URI are:\n\n- You can save bandwidth and loading time by avoiding an extra HTTP request for the image file.\n- You can avoid cross-domain issues or broken links if the image file is hosted on a different server or domain than the web page or email.\n- You can create dynamic QR codes that can change their content or appearance based on user input or other variables, without having to generate a new image file every time.\n- You can ensure that your QR code image is always available and accessible, even if the user is offline or has a slow connection.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/qrcode/generate-uri\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/qrcode/generate-uri\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Generate a QR code image", + "url": "https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/qrcode/generate", + "description": "this will generate an actual qrcode image as streaming response unlike `/generate-uri` which is more efficient sending only the string metadata about the image.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/qrcode/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com/qrcode/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrkit-a-smart-and-stylish-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrlink_api.json b/toolbench/toolenv/tools/Tools/qrlink_api.json new file mode 100644 index 0000000000000000000000000000000000000000..5d13be6366212df0f2a09d224e18de98ab39e571 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrlink_api.json @@ -0,0 +1,38 @@ +{ + "product_id": "api_c354592b-f527-4d51-87f8-4b534b36d66c", + "tool_description": "Introducing a powerful and efficient API that transforms URLs into high-quality QR codes (Quick Response codes). QR codes are advanced 2D barcodes that can be scanned with a smartphone or a QR code reader, enabling quick access to information. Whether you're looking to enhance your marketing efforts or streamline your business processes, our API is the perfect solution for all your QR code needs.", + "home_url": "https://rapidapi.com/arnasgrigaliunas8/api/qrlink-api/", + "name": "QRLink API", + "title": "QRLink API", + "pricing": "FREEMIUM", + "tool_name": "QRLink API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2967, + "avgSuccessRate": 100, + "popularityScore": 7.1, + "__typename": "Score" + }, + "host": "qrlink-api.p.rapidapi.com", + "api_list": [ + { + "name": "URL to QR code", + "url": "https://qrlink-api.p.rapidapi.com/qr-code", + "description": "This endpoint is a GET request that takes a single parameter \"url\" which specifies the website URL. The endpoint generates a QR code image using the input URL and the response is downloadable.", + "method": "GET", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "www.google.com" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://qrlink-api.p.rapidapi.com/qr-code\"\nquerystring = {\"url\": \"www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrlink-api.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://qrlink-api.p.rapidapi.com/qr-code\"\nquerystring = {\"url\": \"www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrlink-api.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "qrlink_api" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrlink_api/api.py b/toolbench/toolenv/tools/Tools/qrlink_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..554220fa25b6b11a6d86e67aa8db350a3eaef6c1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrlink_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def url_to_qr_code(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint is a GET request that takes a single parameter "url" which specifies the website URL. The endpoint generates a QR code image using the input URL and the response is downloadable." + + """ + url = f"https://qrlink-api.p.rapidapi.com/qr-code" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrlink-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrlogo.json b/toolbench/toolenv/tools/Tools/qrlogo.json new file mode 100644 index 0000000000000000000000000000000000000000..321a5f6ad60d17d16586fab63351d90edb09a33d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrlogo.json @@ -0,0 +1,47 @@ +{ + "tool_name":"QRLogo", + "tool_description":"QRLogo is a powerful and easy-to-use API that enables you to generate custom QR codes with a logo in the center.", + "title":"QRLogo", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/wilmer19427/api/qrlogo/", + "host":"qrlogo.p.rapidapi.com", + "api_list":[ + { + "name":"Get QR code", + "url":"https://qrlogo.p.rapidapi.com/qr-code", + "description":"This endpoint returns a QR code with a logo (optional) in the center of the code. The logo can be provided in the form of a URL. The color of the QR code can be customized by providing a hexadecimal color code. The response is in PNG format.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"https://rapidapi.com/wilmer19427/api/qrlogo" + } + ], + "optional_parameters":[ + { + "name":"color", + "type":"STRING", + "description":"", + "default":"000000" + }, + { + "name":"logo", + "type":"STRING", + "description":"", + "default":"https://png.pngtree.com/png-vector/20221018/ourmid/pngtree-instagram-icon-png-image_6315974.png" + } + ], + "code":"import requests\n\nurl = \"https://qrlogo.p.rapidapi.com/qr-code\"\nquerystring = {\"color\": color, \"logo\": logo, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrlogo.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrlogo/api.py b/toolbench/toolenv/tools/Tools/qrlogo/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f8c6a33c4c3811e5852d03aa71ba4179a0ba9f45 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrlogo/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_qr_code(text: str, color: str='000000', logo: str='https://png.pngtree.com/png-vector/20221018/ourmid/pngtree-instagram-icon-png-image_6315974.png', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a QR code with a logo (optional) in the center of the code. The logo can be provided in the form of a URL. The color of the QR code can be customized by providing a hexadecimal color code. The response is in PNG format." + + """ + url = f"https://qrlogo.p.rapidapi.com/qr-code" + querystring = {'text': text, } + if color: + querystring['color'] = color + if logo: + querystring['logo'] = logo + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrlogo.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrnow.json b/toolbench/toolenv/tools/Tools/qrnow.json new file mode 100644 index 0000000000000000000000000000000000000000..d7a3158ba958879c2467150176db5f0d14f8fbba --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrnow.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QRNow", + "tool_description":"QRNow is an easy-to-use tool designed to quickly and easily create your QR codes. Create custom QR codes that reflect your brand and connect with your customers.", + "title":"QRNow", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/mertdagistan/api/qrnow/", + "host":"qrnow.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code", + "url":"https://qrnow.p.rapidapi.com/", + "description":"The QR Code endpoint is the API endpoint where QR codes are generated. This endpoint accepts HTTP GET requests and requires the link for the QR code to be generated as a URL parameter. The QR code is returned as a PNG image in the response.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qrnow.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrnow.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrnow/api.py b/toolbench/toolenv/tools/Tools/qrnow/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7ee86273acba9ad47578d02f921e4fd9c7fece2a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrnow/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The QR Code endpoint is the API endpoint where QR codes are generated. This endpoint accepts HTTP GET requests and requires the link for the QR code to be generated as a URL parameter. The QR code is returned as a PNG image in the response." + + """ + url = f"https://qrnow.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrnow.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrondemand.json b/toolbench/toolenv/tools/Tools/qrondemand.json new file mode 100644 index 0000000000000000000000000000000000000000..a3022afa963a093e885cbac96715b13a2986cee6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrondemand.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QrOnDemand", + "tool_description":"This API get a URL as a parameter and returns QR code for the relevant URL", + "title":"QrOnDemand", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sergeyalh1/api/qrondemand/", + "host":"qrondemand.p.rapidapi.com", + "api_list":[ + { + "name":"QR png From URL parameter", + "url":"https://qrondemand.p.rapidapi.com/qr", + "description":"This api will receive url parameter (url) and return downloadable Image (PNG file) of the Relevant URL QR code", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.example.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://qrondemand.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrondemand.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrondemand/api.py b/toolbench/toolenv/tools/Tools/qrondemand/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f5e9f7d73b78a5cdff1812a10489f9814220f790 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrondemand/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_png_from_url_parameter(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This api will receive url parameter (url) and return downloadable Image (PNG file) of the Relevant URL QR code" + + """ + url = f"https://qrondemand.p.rapidapi.com/qr" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrondemand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/qrx1.json b/toolbench/toolenv/tools/Tools/qrx1.json new file mode 100644 index 0000000000000000000000000000000000000000..b6afcb95f26f3538ebd0baee3bb584234fb772f4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrx1.json @@ -0,0 +1,62 @@ +{ + "tool_name":"QRx1", + "tool_description":"Generate one time use QR-codes.", + "title":"QRx1", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/Pingu1337/api/qrx1/", + "host":"qrx1.p.rapidapi.com", + "api_list":[ + { + "name":"Generate QR Code", + "url":"https://qrx1.p.rapidapi.com/qr", + "description":"## Generates a QR code that can only be used once.\n\n - If the QR code is not used within 3minutes it will be invalidated.\n - Timeout can be altered with the timeout parameter (maximum lifetime is 60minutes).\n - Fully customizable", + "method":"GET", + "required_parameters":[ + { + "name":"data", + "type":"STRING", + "description":"the URL content of the QR code", + "default":"https://wikipedia.org" + } + ], + "optional_parameters":[ + { + "name":"margin", + "type":"NUMBER", + "description":"margin from the QR code to the edge of the image", + "default":"3" + }, + { + "name":"light", + "type":"STRING", + "description":"hex color of the light parts of the QR code (the background)", + "default":"fff" + }, + { + "name":"width", + "type":"NUMBER", + "description":"width of QR image in pixels", + "default":"500" + }, + { + "name":"quality", + "type":"NUMBER", + "description":"Image Quality (range from 0 - 1)", + "default":"1" + }, + { + "name":"dark", + "type":"STRING", + "description":"hex color of the dark parts of the QR code (the dots/squares)", + "default":"000000" + } + ], + "code":"import requests\n\nurl = \"https://qrx1.p.rapidapi.com/qr\"\nquerystring = {\"margin\": margin, \"light\": light, \"width\": width, \"quality\": quality, \"dark\": dark, \"data\": data}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qrx1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/qrx1/api.py b/toolbench/toolenv/tools/Tools/qrx1/api.py new file mode 100644 index 0000000000000000000000000000000000000000..594ba2c71c3020d0300a8fe777533f98a1498808 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/qrx1/api.py @@ -0,0 +1,49 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_qr_code(data: str, margin: int=3, light: str='fff', width: int=500, quality: int=1, dark: str='000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "## Generates a QR code that can only be used once. + + - If the QR code is not used within 3minutes it will be invalidated. + - Timeout can be altered with the timeout parameter (maximum lifetime is 60minutes). + - Fully customizable" + data: the URL content of the QR code + margin: margin from the QR code to the edge of the image + light: hex color of the light parts of the QR code (the background) + width: width of QR image in pixels + quality: Image Quality (range from 0 - 1) + dark: hex color of the dark parts of the QR code (the dots/squares) + + """ + url = f"https://qrx1.p.rapidapi.com/qr" + querystring = {'data': data, } + if margin: + querystring['margin'] = margin + if light: + querystring['light'] = light + if width: + querystring['width'] = width + if quality: + querystring['quality'] = quality + if dark: + querystring['dark'] = dark + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qrx1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quatity_words.json b/toolbench/toolenv/tools/Tools/quatity_words.json new file mode 100644 index 0000000000000000000000000000000000000000..cb3fafc454b8c8dc76c96e7d8aa4b6412fe14f09 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quatity_words.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Quatity Words", + "tool_description":"API return random words, quatity of your choice", + "title":"Quatity Words", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/judithwickstrom170/api/quatity-words/", + "host":"quatity-words.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://quatity-words.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://quatity-words.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quatity-words.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quatity_words/api.py b/toolbench/toolenv/tools/Tools/quatity_words/api.py new file mode 100644 index 0000000000000000000000000000000000000000..922547ef8e01dfba9bfda3735408b63ad4d25eaf --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quatity_words/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://quatity-words.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "quatity-words.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/question_explorer.json b/toolbench/toolenv/tools/Tools/question_explorer.json new file mode 100644 index 0000000000000000000000000000000000000000..9f4f01c2e532ccb719da3943545c8140fa128918 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/question_explorer.json @@ -0,0 +1,3600 @@ +{ + "tool_name":"Question Explorer", + "tool_description":"Question Explorer", + "title":"Question Explorer", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":79, + "avgLatency":93543, + "avgSuccessRate":79, + "popularityScore":8.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ramcharangoodboy-rd27go0ww30/api/question-explorer3/", + "host":"question-explorer3.p.rapidapi.com", + "api_list":[ + { + "name":"full data", + "url":"https://question-explorer3.p.rapidapi.com/general/{keyword}", + "description":"full data", + "method":"GET", + "required_parameters":[ + { + "name":"keyword", + "type":"string", + "description":"", + "default":"email marketing" + } + ], + "optional_parameters":[ + { + "name":"FullData", + "type":"STRING", + "description":"", + "default":"digital marketing" + } + ], + "code":"import requests\n\nurl = \"https://question-explorer3.p.rapidapi.com/general/{keyword}\"\nquerystring = {\"FullData\": fulldata}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"question-explorer3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + [ + "what: ", + { + "Suggestion":"what email marketing", + "Url":"https://google.com/search?q=what email marketing" + }, + { + "Suggestion":"what email marketing service is best", + "Url":"https://google.com/search?q=what email marketing service is best" + }, + { + "Suggestion":"what email marketing do", + "Url":"https://google.com/search?q=what email marketing do" + }, + { + "Suggestion":"what email marketing techniques is this business using", + "Url":"https://google.com/search?q=what email marketing techniques is this business using" + }, + { + "Suggestion":"what email marketing is all about", + "Url":"https://google.com/search?q=what email marketing is all about" + }, + { + "Suggestion":"what email marketing to use", + "Url":"https://google.com/search?q=what email marketing to use" + }, + { + "Suggestion":"what email marketing is best", + "Url":"https://google.com/search?q=what email marketing is best" + }, + { + "Suggestion":"what's e marketing", + "Url":"https://google.com/search?q=what's e marketing" + }, + { + "Suggestion":"how email marketing works", + "Url":"https://google.com/search?q=how email marketing works" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + } + ], + [ + "why: ", + { + "Suggestion":"why email marketing is important", + "Url":"https://google.com/search?q=why email marketing is important" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"why email marketing is important for small business", + "Url":"https://google.com/search?q=why email marketing is important for small business" + }, + { + "Suggestion":"why email marketing is important in 2023", + "Url":"https://google.com/search?q=why email marketing is important in 2023" + }, + { + "Suggestion":"why email marketing is not effective", + "Url":"https://google.com/search?q=why email marketing is not effective" + }, + { + "Suggestion":"why email marketing is used", + "Url":"https://google.com/search?q=why email marketing is used" + }, + { + "Suggestion":"why email marketing is so important", + "Url":"https://google.com/search?q=why email marketing is so important" + }, + { + "Suggestion":"why is email marketing effective", + "Url":"https://google.com/search?q=why is email marketing effective" + }, + { + "Suggestion":"purpose of email marketing", + "Url":"https://google.com/search?q=purpose of email marketing" + } + ], + [ + "when : ", + { + "Suggestion":"an email marketing system", + "Url":"https://google.com/search?q=an email marketing system" + }, + { + "Suggestion":"an email marketing tool", + "Url":"https://google.com/search?q=an email marketing tool" + }, + { + "Suggestion":"an email marketing definition", + "Url":"https://google.com/search?q=an email marketing definition" + }, + { + "Suggestion":"an email marketing agency", + "Url":"https://google.com/search?q=an email marketing agency" + }, + { + "Suggestion":"of e-marketing", + "Url":"https://google.com/search?q=of e-marketing" + }, + { + "Suggestion":"email for marketing example", + "Url":"https://google.com/search?q=email for marketing example" + }, + { + "Suggestion":"email for marketing template", + "Url":"https://google.com/search?q=email for marketing template" + }, + { + "Suggestion":"email for marketing company", + "Url":"https://google.com/search?q=email for marketing company" + }, + { + "Suggestion":"when to use email marketing", + "Url":"https://google.com/search?q=when to use email marketing" + }, + { + "Suggestion":"how long should a marketing email be", + "Url":"https://google.com/search?q=how long should a marketing email be" + } + ], + [ + "where : ", + { + "Suggestion":"which email marketing service is the best", + "Url":"https://google.com/search?q=which email marketing service is the best" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + }, + { + "Suggestion":"which email marketing to use", + "Url":"https://google.com/search?q=which email marketing to use" + }, + { + "Suggestion":"which email marketing software", + "Url":"https://google.com/search?q=which email marketing software" + }, + { + "Suggestion":"which marketing email is best", + "Url":"https://google.com/search?q=which marketing email is best" + }, + { + "Suggestion":"where to learn email marketing", + "Url":"https://google.com/search?q=where to learn email marketing" + }, + { + "Suggestion":"where to start email marketing", + "Url":"https://google.com/search?q=where to start email marketing" + }, + { + "Suggestion":"what companies use email marketing", + "Url":"https://google.com/search?q=what companies use email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is marketing emails", + "Url":"https://google.com/search?q=what is marketing emails" + } + ], + [ + "who : ", + { + "Suggestion":"which email marketing service is the best", + "Url":"https://google.com/search?q=which email marketing service is the best" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + }, + { + "Suggestion":"which email marketing to use", + "Url":"https://google.com/search?q=which email marketing to use" + }, + { + "Suggestion":"which email marketing software", + "Url":"https://google.com/search?q=which email marketing software" + }, + { + "Suggestion":"who is email marketing guru", + "Url":"https://google.com/search?q=who is email marketing guru" + }, + { + "Suggestion":"which marketing email is best", + "Url":"https://google.com/search?q=which marketing email is best" + }, + { + "Suggestion":"who are e-marketing", + "Url":"https://google.com/search?q=who are e-marketing" + }, + { + "Suggestion":"what companies use email marketing", + "Url":"https://google.com/search?q=what companies use email marketing" + }, + { + "Suggestion":"who is an email marketer", + "Url":"https://google.com/search?q=who is an email marketer" + } + ], + [ + "which : ", + { + "Suggestion":"which email marketing service is the best", + "Url":"https://google.com/search?q=which email marketing service is the best" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + }, + { + "Suggestion":"which email marketing tools are you familiar with", + "Url":"https://google.com/search?q=which email marketing tools are you familiar with" + }, + { + "Suggestion":"which email marketing to use", + "Url":"https://google.com/search?q=which email marketing to use" + }, + { + "Suggestion":"which email marketing software", + "Url":"https://google.com/search?q=which email marketing software" + }, + { + "Suggestion":"which marketing email is best", + "Url":"https://google.com/search?q=which marketing email is best" + }, + { + "Suggestion":"what's email marketing", + "Url":"https://google.com/search?q=what's email marketing" + }, + { + "Suggestion":"what comes under email marketing", + "Url":"https://google.com/search?q=what comes under email marketing" + }, + { + "Suggestion":"what companies use email marketing", + "Url":"https://google.com/search?q=what companies use email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + } + ], + [ + "will: ", + { + "Suggestion":"will email marketing die", + "Url":"https://google.com/search?q=will email marketing die" + }, + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing free", + "Url":"https://google.com/search?q=is email marketing free" + }, + { + "Suggestion":"is email marketing profitable", + "Url":"https://google.com/search?q=is email marketing profitable" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"is email marketing still effective in 2023", + "Url":"https://google.com/search?q=is email marketing still effective in 2023" + }, + { + "Suggestion":"is email marketing inbound or outbound", + "Url":"https://google.com/search?q=is email marketing inbound or outbound" + } + ], + [ + "was: ", + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing free", + "Url":"https://google.com/search?q=is email marketing free" + }, + { + "Suggestion":"is email marketing copywriting", + "Url":"https://google.com/search?q=is email marketing copywriting" + }, + { + "Suggestion":"is email marketing important", + "Url":"https://google.com/search?q=is email marketing important" + }, + { + "Suggestion":"is email marketing crm", + "Url":"https://google.com/search?q=is email marketing crm" + }, + { + "Suggestion":"is email marketing outbound", + "Url":"https://google.com/search?q=is email marketing outbound" + }, + { + "Suggestion":"is email marketing the best", + "Url":"https://google.com/search?q=is email marketing the best" + }, + { + "Suggestion":"is email marketing advertising", + "Url":"https://google.com/search?q=is email marketing advertising" + } + ], + [ + "is: ", + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing worth it", + "Url":"https://google.com/search?q=is email marketing worth it" + }, + { + "Suggestion":"is email marketing digital marketing", + "Url":"https://google.com/search?q=is email marketing digital marketing" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing dead 2023", + "Url":"https://google.com/search?q=is email marketing dead 2023" + }, + { + "Suggestion":"is email marketing legal", + "Url":"https://google.com/search?q=is email marketing legal" + }, + { + "Suggestion":"is email marketing inbound or outbound", + "Url":"https://google.com/search?q=is email marketing inbound or outbound" + }, + { + "Suggestion":"is email marketing owned media", + "Url":"https://google.com/search?q=is email marketing owned media" + }, + { + "Suggestion":"is email marketing profitable", + "Url":"https://google.com/search?q=is email marketing profitable" + } + ], + [ + "did: ", + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"does email marketing cost money", + "Url":"https://google.com/search?q=does email marketing cost money" + }, + { + "Suggestion":"does email marketing work in 2022", + "Url":"https://google.com/search?q=does email marketing work in 2022" + }, + { + "Suggestion":"does email marketing work in 2023", + "Url":"https://google.com/search?q=does email marketing work in 2023" + }, + { + "Suggestion":"does email marketing work in india", + "Url":"https://google.com/search?q=does email marketing work in india" + }, + { + "Suggestion":"does email marketing increase sales", + "Url":"https://google.com/search?q=does email marketing increase sales" + }, + { + "Suggestion":"does email marketing really work", + "Url":"https://google.com/search?q=does email marketing really work" + }, + { + "Suggestion":"does email marketing work reddit", + "Url":"https://google.com/search?q=does email marketing work reddit" + }, + { + "Suggestion":"does email marketing work in nigeria", + "Url":"https://google.com/search?q=does email marketing work in nigeria" + } + ], + [ + "does: ", + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"does email marketing work in 2023", + "Url":"https://google.com/search?q=does email marketing work in 2023" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"does email marketing cost money", + "Url":"https://google.com/search?q=does email marketing cost money" + }, + { + "Suggestion":"does email marketing really work", + "Url":"https://google.com/search?q=does email marketing really work" + }, + { + "Suggestion":"does email marketing actually work", + "Url":"https://google.com/search?q=does email marketing actually work" + }, + { + "Suggestion":"does email marketing work reddit", + "Url":"https://google.com/search?q=does email marketing work reddit" + }, + { + "Suggestion":"does email marketing work in india", + "Url":"https://google.com/search?q=does email marketing work in india" + }, + { + "Suggestion":"does email marketing increase sales", + "Url":"https://google.com/search?q=does email marketing increase sales" + }, + { + "Suggestion":"does email marketing still work 2023", + "Url":"https://google.com/search?q=does email marketing still work 2023" + } + ], + [ + "do: ", + { + "Suggestion":"do email marketing campaigns work", + "Url":"https://google.com/search?q=do email marketing campaigns work" + }, + { + "Suggestion":"do email marketing", + "Url":"https://google.com/search?q=do email marketing" + }, + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"does email marketing cost money", + "Url":"https://google.com/search?q=does email marketing cost money" + }, + { + "Suggestion":"does email marketing work in 2022", + "Url":"https://google.com/search?q=does email marketing work in 2022" + }, + { + "Suggestion":"does email marketing work in 2023", + "Url":"https://google.com/search?q=does email marketing work in 2023" + }, + { + "Suggestion":"does email marketing work in india", + "Url":"https://google.com/search?q=does email marketing work in india" + }, + { + "Suggestion":"does email marketing increase sales", + "Url":"https://google.com/search?q=does email marketing increase sales" + }, + { + "Suggestion":"does email marketing really work", + "Url":"https://google.com/search?q=does email marketing really work" + } + ], + [ + "has: ", + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing free", + "Url":"https://google.com/search?q=is email marketing free" + }, + { + "Suggestion":"is email marketing profitable", + "Url":"https://google.com/search?q=is email marketing profitable" + }, + { + "Suggestion":"is email marketing still effective in 2023", + "Url":"https://google.com/search?q=is email marketing still effective in 2023" + }, + { + "Suggestion":"is email marketing inbound or outbound", + "Url":"https://google.com/search?q=is email marketing inbound or outbound" + }, + { + "Suggestion":"is email marketing still effective in 2022", + "Url":"https://google.com/search?q=is email marketing still effective in 2022" + }, + { + "Suggestion":"is email marketing hard", + "Url":"https://google.com/search?q=is email marketing hard" + }, + { + "Suggestion":"is email marketing worth it", + "Url":"https://google.com/search?q=is email marketing worth it" + } + ], + [ + "have: ", + { + "Suggestion":"use email marketing", + "Url":"https://google.com/search?q=use email marketing" + }, + { + "Suggestion":"need email marketing", + "Url":"https://google.com/search?q=need email marketing" + }, + { + "Suggestion":"must have email marketing tools", + "Url":"https://google.com/search?q=must have email marketing tools" + }, + { + "Suggestion":"must have email marketing", + "Url":"https://google.com/search?q=must have email marketing" + }, + { + "Suggestion":"does shopify have email marketing", + "Url":"https://google.com/search?q=does shopify have email marketing" + }, + { + "Suggestion":"does wix have email marketing", + "Url":"https://google.com/search?q=does wix have email marketing" + }, + { + "Suggestion":"does squarespace have email marketing", + "Url":"https://google.com/search?q=does squarespace have email marketing" + }, + { + "Suggestion":"does clickfunnels have email marketing", + "Url":"https://google.com/search?q=does clickfunnels have email marketing" + }, + { + "Suggestion":"does thinkific have email marketing", + "Url":"https://google.com/search?q=does thinkific have email marketing" + }, + { + "Suggestion":"does wordpress have email marketing", + "Url":"https://google.com/search?q=does wordpress have email marketing" + } + ], + [ + "and : " + ], + [ + "vs : " + ], + [ + "General : ", + { + "Suggestion":"email marketing is dead", + "Url":"https://google.com/search?q=email marketing is dead" + }, + { + "Suggestion":"email marketing is not dead", + "Url":"https://google.com/search?q=email marketing is not dead" + }, + { + "Suggestion":"email marketing is also called", + "Url":"https://google.com/search?q=email marketing is also called" + }, + { + "Suggestion":"email marketing is", + "Url":"https://google.com/search?q=email marketing is" + }, + { + "Suggestion":"email marketing is a form of digital marketing", + "Url":"https://google.com/search?q=email marketing is a form of digital marketing" + }, + { + "Suggestion":"email marketing is a form of traditional marketing", + "Url":"https://google.com/search?q=email marketing is a form of traditional marketing" + }, + { + "Suggestion":"email marketing is a type of", + "Url":"https://google.com/search?q=email marketing is a type of" + }, + { + "Suggestion":"email marketing is inbound or outbound", + "Url":"https://google.com/search?q=email marketing is inbound or outbound" + }, + { + "Suggestion":"email marketing is typically performed", + "Url":"https://google.com/search?q=email marketing is typically performed" + }, + { + "Suggestion":"email marketing is an effective technique because", + "Url":"https://google.com/search?q=email marketing is an effective technique because" + } + ], + [ + "or : " + ], + [ + "could : " + ], + [ + "Genera1 Type 1 : ", + { + "Suggestion":"email marketing", + "Url":"https://google.com/search?q=email marketing" + }, + { + "Suggestion":"email marketing jobs", + "Url":"https://google.com/search?q=email marketing jobs" + }, + { + "Suggestion":"email marketing platforms", + "Url":"https://google.com/search?q=email marketing platforms" + }, + { + "Suggestion":"email marketing jobs remote", + "Url":"https://google.com/search?q=email marketing jobs remote" + }, + { + "Suggestion":"email marketing tools", + "Url":"https://google.com/search?q=email marketing tools" + }, + { + "Suggestion":"email marketing examples", + "Url":"https://google.com/search?q=email marketing examples" + }, + { + "Suggestion":"email marketing software", + "Url":"https://google.com/search?q=email marketing software" + }, + { + "Suggestion":"email marketing templates", + "Url":"https://google.com/search?q=email marketing templates" + }, + { + "Suggestion":"email marketing specialist", + "Url":"https://google.com/search?q=email marketing specialist" + }, + { + "Suggestion":"email marketing campaign", + "Url":"https://google.com/search?q=email marketing campaign" + } + ] + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7f0ba983af42a131-SIN", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 03 Aug 2023 04:01:56 GMT", + "etag":"W/\"4869-EnHDtI7R1ilVsYFYuh5R+luSrmk\"", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8", + "x-render-origin-server":"Render" + }, + "schema":{} + }, + { + "name":"data", + "url":"https://question-explorer3.p.rapidapi.com/{keyword}", + "description":"full Data", + "method":"GET", + "required_parameters":[ + { + "name":"keyword", + "type":"string", + "description":"", + "default":"Email marketing" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://question-explorer3.p.rapidapi.com/{keyword}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"question-explorer3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + [ + [ + "what: ", + { + "Suggestion":"what email marketing", + "Url":"https://google.com/search?q=what email marketing" + }, + { + "Suggestion":"what email marketing service is best", + "Url":"https://google.com/search?q=what email marketing service is best" + }, + { + "Suggestion":"what email marketing do", + "Url":"https://google.com/search?q=what email marketing do" + }, + { + "Suggestion":"what email marketing techniques is this business using", + "Url":"https://google.com/search?q=what email marketing techniques is this business using" + }, + { + "Suggestion":"what email marketing is all about", + "Url":"https://google.com/search?q=what email marketing is all about" + }, + { + "Suggestion":"what email marketing to use", + "Url":"https://google.com/search?q=what email marketing to use" + }, + { + "Suggestion":"what email marketing is best", + "Url":"https://google.com/search?q=what email marketing is best" + }, + { + "Suggestion":"what's e marketing", + "Url":"https://google.com/search?q=what's e marketing" + }, + { + "Suggestion":"how email marketing works", + "Url":"https://google.com/search?q=how email marketing works" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + } + ], + "More Suggestions On What ", + [ + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing automation", + "Url":"https://google.com/search?q=what is email marketing automation" + }, + { + "Suggestion":"what is email marketing all about", + "Url":"https://google.com/search?q=what is email marketing all about" + }, + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + }, + { + "Suggestion":"what is email marketing advantages and disadvantages", + "Url":"https://google.com/search?q=what is email marketing advantages and disadvantages" + }, + { + "Suggestion":"what is email marketing and example", + "Url":"https://google.com/search?q=what is email marketing and example" + }, + { + "Suggestion":"what is email marketing and types", + "Url":"https://google.com/search?q=what is email marketing and types" + }, + { + "Suggestion":"what is email marketing agency", + "Url":"https://google.com/search?q=what is email marketing agency" + }, + { + "Suggestion":"what is email marketing analytics", + "Url":"https://google.com/search?q=what is email marketing analytics" + }, + { + "Suggestion":"what is email marketing autoresponder", + "Url":"https://google.com/search?q=what is email marketing autoresponder" + }, + { + "Suggestion":"what is email marketing apps", + "Url":"https://google.com/search?q=what is email marketing apps" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing called", + "Url":"https://google.com/search?q=what is email marketing called" + }, + { + "Suggestion":"what is email marketing course", + "Url":"https://google.com/search?q=what is email marketing course" + }, + { + "Suggestion":"what is email marketing content", + "Url":"https://google.com/search?q=what is email marketing content" + }, + { + "Suggestion":"what email marketing can do", + "Url":"https://google.com/search?q=what email marketing can do" + }, + { + "Suggestion":"what is email marketing calendar", + "Url":"https://google.com/search?q=what is email marketing calendar" + }, + { + "Suggestion":"what is email marketing clients", + "Url":"https://google.com/search?q=what is email marketing clients" + }, + { + "Suggestion":"what is email marketing checklist", + "Url":"https://google.com/search?q=what is email marketing checklist" + }, + { + "Suggestion":"what does email marketing consist of", + "Url":"https://google.com/search?q=what does email marketing consist of" + }, + { + "Suggestion":"what is email marketing and crm", + "Url":"https://google.com/search?q=what is email marketing and crm" + }, + { + "Suggestion":"what is cold email marketing", + "Url":"https://google.com/search?q=what is cold email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing bangla", + "Url":"https://google.com/search?q=what is email marketing bangla" + }, + { + "Suggestion":"what is email marketing business", + "Url":"https://google.com/search?q=what is email marketing business" + }, + { + "Suggestion":"what is email blast marketing", + "Url":"https://google.com/search?q=what is email blast marketing" + }, + { + "Suggestion":"how is email marketing beneficial", + "Url":"https://google.com/search?q=how is email marketing beneficial" + }, + { + "Suggestion":"what email marketing is best", + "Url":"https://google.com/search?q=what email marketing is best" + }, + { + "Suggestion":"what comes under email marketing", + "Url":"https://google.com/search?q=what comes under email marketing" + }, + { + "Suggestion":"what is email marketing templates", + "Url":"https://google.com/search?q=what is email marketing templates" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing called", + "Url":"https://google.com/search?q=what is email marketing called" + }, + { + "Suggestion":"what is email marketing course", + "Url":"https://google.com/search?q=what is email marketing course" + }, + { + "Suggestion":"what is email marketing content", + "Url":"https://google.com/search?q=what is email marketing content" + }, + { + "Suggestion":"what email marketing can do", + "Url":"https://google.com/search?q=what email marketing can do" + }, + { + "Suggestion":"what is email marketing calendar", + "Url":"https://google.com/search?q=what is email marketing calendar" + }, + { + "Suggestion":"what is email marketing clients", + "Url":"https://google.com/search?q=what is email marketing clients" + }, + { + "Suggestion":"what is email marketing checklist", + "Url":"https://google.com/search?q=what is email marketing checklist" + }, + { + "Suggestion":"what does email marketing consist of", + "Url":"https://google.com/search?q=what does email marketing consist of" + }, + { + "Suggestion":"what is email marketing and crm", + "Url":"https://google.com/search?q=what is email marketing and crm" + }, + { + "Suggestion":"what is cold email marketing", + "Url":"https://google.com/search?q=what is cold email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing", + "Url":"https://google.com/search?q=what is email marketing" + }, + { + "Suggestion":"what is email marketing job", + "Url":"https://google.com/search?q=what is email marketing job" + }, + { + "Suggestion":"what is email marketing with example", + "Url":"https://google.com/search?q=what is email marketing with example" + }, + { + "Suggestion":"what is email marketing in hindi", + "Url":"https://google.com/search?q=what is email marketing in hindi" + }, + { + "Suggestion":"what is email marketing strategy", + "Url":"https://google.com/search?q=what is email marketing strategy" + }, + { + "Suggestion":"what is email marketing automation", + "Url":"https://google.com/search?q=what is email marketing automation" + }, + { + "Suggestion":"what is email marketing software", + "Url":"https://google.com/search?q=what is email marketing software" + }, + { + "Suggestion":"what is email marketing tools", + "Url":"https://google.com/search?q=what is email marketing tools" + }, + { + "Suggestion":"what is email marketing bangla", + "Url":"https://google.com/search?q=what is email marketing bangla" + }, + { + "Suggestion":"what is email marketing service provider", + "Url":"https://google.com/search?q=what is email marketing service provider" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing funnel", + "Url":"https://google.com/search?q=what is email marketing funnel" + }, + { + "Suggestion":"what is email marketing for", + "Url":"https://google.com/search?q=what is email marketing for" + }, + { + "Suggestion":"what is email marketing for real estate", + "Url":"https://google.com/search?q=what is email marketing for real estate" + }, + { + "Suggestion":"what is email marketing used for", + "Url":"https://google.com/search?q=what is email marketing used for" + }, + { + "Suggestion":"what is email marketing good for", + "Url":"https://google.com/search?q=what is email marketing good for" + }, + { + "Suggestion":"is email marketing legal", + "Url":"https://google.com/search?q=is email marketing legal" + }, + { + "Suggestion":"is email marketing social media", + "Url":"https://google.com/search?q=is email marketing social media" + }, + { + "Suggestion":"what comes under email marketing", + "Url":"https://google.com/search?q=what comes under email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing godaddy", + "Url":"https://google.com/search?q=what is email marketing godaddy" + }, + { + "Suggestion":"what is email marketing good for", + "Url":"https://google.com/search?q=what is email marketing good for" + }, + { + "Suggestion":"what is email marketing getresponse", + "Url":"https://google.com/search?q=what is email marketing getresponse" + }, + { + "Suggestion":"what is email marketing guru", + "Url":"https://google.com/search?q=what is email marketing guru" + }, + { + "Suggestion":"what comes under email marketing", + "Url":"https://google.com/search?q=what comes under email marketing" + }, + { + "Suggestion":"what are marketing emails called", + "Url":"https://google.com/search?q=what are marketing emails called" + }, + { + "Suggestion":"is email marketing legal", + "Url":"https://google.com/search?q=is email marketing legal" + }, + { + "Suggestion":"what are the 4 types of marketing emails", + "Url":"https://google.com/search?q=what are the 4 types of marketing emails" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing in hindi", + "Url":"https://google.com/search?q=what is email marketing in hindi" + }, + { + "Suggestion":"what is email marketing in hotel", + "Url":"https://google.com/search?q=what is email marketing in hotel" + }, + { + "Suggestion":"what is cold email marketing", + "Url":"https://google.com/search?q=what is cold email marketing" + }, + { + "Suggestion":"does newsletter marketing work", + "Url":"https://google.com/search?q=does newsletter marketing work" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing in hindi", + "Url":"https://google.com/search?q=what is email marketing in hindi" + }, + { + "Suggestion":"what email marketing is all about", + "Url":"https://google.com/search?q=what email marketing is all about" + }, + { + "Suggestion":"what is email marketing in bangla", + "Url":"https://google.com/search?q=what is email marketing in bangla" + }, + { + "Suggestion":"what is email marketing in ecommerce", + "Url":"https://google.com/search?q=what is email marketing in ecommerce" + }, + { + "Suggestion":"what is email marketing in odoo", + "Url":"https://google.com/search?q=what is email marketing in odoo" + }, + { + "Suggestion":"what email marketing is best", + "Url":"https://google.com/search?q=what email marketing is best" + }, + { + "Suggestion":"how email marketing is effective", + "Url":"https://google.com/search?q=how email marketing is effective" + }, + { + "Suggestion":"what is email services in salesforce", + "Url":"https://google.com/search?q=what is email services in salesforce" + }, + { + "Suggestion":"what is email marketing job", + "Url":"https://google.com/search?q=what is email marketing job" + }, + { + "Suggestion":"what is email marketing with example", + "Url":"https://google.com/search?q=what is email marketing with example" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing job", + "Url":"https://google.com/search?q=what is email marketing job" + }, + { + "Suggestion":"what is cold email marketing", + "Url":"https://google.com/search?q=what is cold email marketing" + }, + { + "Suggestion":"what are marketing emails called", + "Url":"https://google.com/search?q=what are marketing emails called" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is klaviyo email marketing", + "Url":"https://google.com/search?q=what is klaviyo email marketing" + }, + { + "Suggestion":"what is kpi in email marketing", + "Url":"https://google.com/search?q=what is kpi in email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is email.marketing", + "Url":"https://google.com/search?q=what is email.marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing list", + "Url":"https://google.com/search?q=what is email marketing list" + }, + { + "Suggestion":"what is lifecycle email marketing", + "Url":"https://google.com/search?q=what is lifecycle email marketing" + }, + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing legal", + "Url":"https://google.com/search?q=is email marketing legal" + }, + { + "Suggestion":"what is lead in email marketing", + "Url":"https://google.com/search?q=what is lead in email marketing" + }, + { + "Suggestion":"what is email.marketing", + "Url":"https://google.com/search?q=what is email.marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing meaning", + "Url":"https://google.com/search?q=what is email marketing meaning" + }, + { + "Suggestion":"what is e marketing mix", + "Url":"https://google.com/search?q=what is e marketing mix" + }, + { + "Suggestion":"what is e-marketing meaning", + "Url":"https://google.com/search?q=what is e-marketing meaning" + }, + { + "Suggestion":"what is email campaign manager", + "Url":"https://google.com/search?q=what is email campaign manager" + }, + { + "Suggestion":"what is an email marketing manager", + "Url":"https://google.com/search?q=what is an email marketing manager" + }, + { + "Suggestion":"what are email marketing metrics", + "Url":"https://google.com/search?q=what are email marketing metrics" + }, + { + "Suggestion":"what is mailchimp email marketing", + "Url":"https://google.com/search?q=what is mailchimp email marketing" + }, + { + "Suggestion":"what is e marketing in marketing", + "Url":"https://google.com/search?q=what is e marketing in marketing" + }, + { + "Suggestion":"what is email marketing and how to earn money from it technical miraj", + "Url":"https://google.com/search?q=what is email marketing and how to earn money from it technical miraj" + }, + { + "Suggestion":"what type of marketing is email marketing", + "Url":"https://google.com/search?q=what type of marketing is email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing newsletter", + "Url":"https://google.com/search?q=what is email marketing newsletter" + }, + { + "Suggestion":"what is email marketing and how does it work", + "Url":"https://google.com/search?q=what is email marketing and how does it work" + }, + { + "Suggestion":"what is email marketing and how to earn money from it technical miraj", + "Url":"https://google.com/search?q=what is email marketing and how to earn money from it technical miraj" + }, + { + "Suggestion":"what is email marketing and its benefits", + "Url":"https://google.com/search?q=what is email marketing and its benefits" + }, + { + "Suggestion":"what is email marketing and its types", + "Url":"https://google.com/search?q=what is email marketing and its types" + }, + { + "Suggestion":"what is email marketing and example", + "Url":"https://google.com/search?q=what is email marketing and example" + }, + { + "Suggestion":"what is email marketing and how it works", + "Url":"https://google.com/search?q=what is email marketing and how it works" + }, + { + "Suggestion":"what is email marketing and crm", + "Url":"https://google.com/search?q=what is email marketing and crm" + }, + { + "Suggestion":"what is e marketing and its advantages", + "Url":"https://google.com/search?q=what is e marketing and its advantages" + }, + { + "Suggestion":"what is e marketing and its benefits", + "Url":"https://google.com/search?q=what is e marketing and its benefits" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing on godaddy", + "Url":"https://google.com/search?q=what is email marketing on godaddy" + }, + { + "Suggestion":"what is email marketing online", + "Url":"https://google.com/search?q=what is email marketing online" + }, + { + "Suggestion":"what is email marketing in odoo", + "Url":"https://google.com/search?q=what is email marketing in odoo" + }, + { + "Suggestion":"what is a good email marketing open rate", + "Url":"https://google.com/search?q=what is a good email marketing open rate" + }, + { + "Suggestion":"what is outbound email marketing", + "Url":"https://google.com/search?q=what is outbound email marketing" + }, + { + "Suggestion":"is email marketing organic", + "Url":"https://google.com/search?q=is email marketing organic" + }, + { + "Suggestion":"what is opt in email marketing", + "Url":"https://google.com/search?q=what is opt in email marketing" + }, + { + "Suggestion":"what is open rate email marketing", + "Url":"https://google.com/search?q=what is open rate email marketing" + }, + { + "Suggestion":"what is opt out email marketing", + "Url":"https://google.com/search?q=what is opt out email marketing" + }, + { + "Suggestion":"what is meaning of email marketing", + "Url":"https://google.com/search?q=what is meaning of email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing platform", + "Url":"https://google.com/search?q=what is email marketing platform" + }, + { + "Suggestion":"what is email marketing pdf", + "Url":"https://google.com/search?q=what is email marketing pdf" + }, + { + "Suggestion":"what is email marketing process", + "Url":"https://google.com/search?q=what is email marketing process" + }, + { + "Suggestion":"what is email marketing plan", + "Url":"https://google.com/search?q=what is email marketing plan" + }, + { + "Suggestion":"what is e marketing pdf", + "Url":"https://google.com/search?q=what is e marketing pdf" + }, + { + "Suggestion":"what is e marketing plan", + "Url":"https://google.com/search?q=what is e marketing plan" + }, + { + "Suggestion":"what is email marketing service provider", + "Url":"https://google.com/search?q=what is email marketing service provider" + }, + { + "Suggestion":"what is bad email marketing practice", + "Url":"https://google.com/search?q=what is bad email marketing practice" + }, + { + "Suggestion":"what is email marketing starter plan godaddy", + "Url":"https://google.com/search?q=what is email marketing starter plan godaddy" + }, + { + "Suggestion":"what is e-commerce marketing pdf", + "Url":"https://google.com/search?q=what is e-commerce marketing pdf" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing quora", + "Url":"https://google.com/search?q=what is email marketing quora" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is considered a marketing email", + "Url":"https://google.com/search?q=what is considered a marketing email" + }, + { + "Suggestion":"what is an email marketing strategy", + "Url":"https://google.com/search?q=what is an email marketing strategy" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing reddit", + "Url":"https://google.com/search?q=what is email marketing reddit" + }, + { + "Suggestion":"what is e marketing research", + "Url":"https://google.com/search?q=what is e marketing research" + }, + { + "Suggestion":"what is email relationship marketing", + "Url":"https://google.com/search?q=what is email relationship marketing" + }, + { + "Suggestion":"what is email marketing for real estate", + "Url":"https://google.com/search?q=what is email marketing for real estate" + }, + { + "Suggestion":"what is the email marketing rate", + "Url":"https://google.com/search?q=what is the email marketing rate" + }, + { + "Suggestion":"what is a email marketing bounce rate", + "Url":"https://google.com/search?q=what is a email marketing bounce rate" + }, + { + "Suggestion":"is email marketing real", + "Url":"https://google.com/search?q=is email marketing real" + }, + { + "Suggestion":"what is a good email marketing open rate", + "Url":"https://google.com/search?q=what is a good email marketing open rate" + }, + { + "Suggestion":"what is a good email marketing conversion rate", + "Url":"https://google.com/search?q=what is a good email marketing conversion rate" + }, + { + "Suggestion":"what is open rate email marketing", + "Url":"https://google.com/search?q=what is open rate email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing software", + "Url":"https://google.com/search?q=what is email marketing software" + }, + { + "Suggestion":"what is email marketing specialist", + "Url":"https://google.com/search?q=what is email marketing specialist" + }, + { + "Suggestion":"what is email marketing starter plan godaddy", + "Url":"https://google.com/search?q=what is email marketing starter plan godaddy" + }, + { + "Suggestion":"what is email marketing services", + "Url":"https://google.com/search?q=what is email marketing services" + }, + { + "Suggestion":"what is email marketing strategy", + "Url":"https://google.com/search?q=what is email marketing strategy" + }, + { + "Suggestion":"what is email marketing side hustle", + "Url":"https://google.com/search?q=what is email marketing side hustle" + }, + { + "Suggestion":"what is email marketing skills", + "Url":"https://google.com/search?q=what is email marketing skills" + }, + { + "Suggestion":"what is e-marketing strategy", + "Url":"https://google.com/search?q=what is e-marketing strategy" + }, + { + "Suggestion":"what is email marketing in simple words", + "Url":"https://google.com/search?q=what is email marketing in simple words" + }, + { + "Suggestion":"what is an email marketing solution", + "Url":"https://google.com/search?q=what is an email marketing solution" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing tool", + "Url":"https://google.com/search?q=what is email marketing tool" + }, + { + "Suggestion":"what is email marketing templates", + "Url":"https://google.com/search?q=what is email marketing templates" + }, + { + "Suggestion":"what is e marketing tools", + "Url":"https://google.com/search?q=what is e marketing tools" + }, + { + "Suggestion":"what is e marketing techniques", + "Url":"https://google.com/search?q=what is e marketing techniques" + }, + { + "Suggestion":"what is email marketing and types", + "Url":"https://google.com/search?q=what is email marketing and types" + }, + { + "Suggestion":"what is email marketing multivariate testing", + "Url":"https://google.com/search?q=what is email marketing multivariate testing" + }, + { + "Suggestion":"what email marketing to use", + "Url":"https://google.com/search?q=what email marketing to use" + }, + { + "Suggestion":"what is email marketing and how to earn money from it technical miraj", + "Url":"https://google.com/search?q=what is email marketing and how to earn money from it technical miraj" + }, + { + "Suggestion":"what is the email marketing", + "Url":"https://google.com/search?q=what is the email marketing" + }, + { + "Suggestion":"what is triggered email marketing", + "Url":"https://google.com/search?q=what is triggered email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing used for", + "Url":"https://google.com/search?q=what is email marketing used for" + }, + { + "Suggestion":"what is email marketing in urdu", + "Url":"https://google.com/search?q=what is email marketing in urdu" + }, + { + "Suggestion":"what is use email marketing", + "Url":"https://google.com/search?q=what is use email marketing" + }, + { + "Suggestion":"what is unique clicks in email marketing", + "Url":"https://google.com/search?q=what is unique clicks in email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is email.marketing", + "Url":"https://google.com/search?q=what is email.marketing" + }, + { + "Suggestion":"what is considered a marketing email", + "Url":"https://google.com/search?q=what is considered a marketing email" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing with example", + "Url":"https://google.com/search?q=what is email marketing with example" + }, + { + "Suggestion":"what is email marketing work", + "Url":"https://google.com/search?q=what is email marketing work" + }, + { + "Suggestion":"what is email marketing websites", + "Url":"https://google.com/search?q=what is email marketing websites" + }, + { + "Suggestion":"what is email marketing worth", + "Url":"https://google.com/search?q=what is email marketing worth" + }, + { + "Suggestion":"what is e marketing with examples", + "Url":"https://google.com/search?q=what is e marketing with examples" + }, + { + "Suggestion":"what is e marketing wikipedia", + "Url":"https://google.com/search?q=what is e marketing wikipedia" + }, + { + "Suggestion":"what is email workflow marketing", + "Url":"https://google.com/search?q=what is email workflow marketing" + }, + { + "Suggestion":"what is email marketing in simple words", + "Url":"https://google.com/search?q=what is email marketing in simple words" + }, + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + }, + { + "Suggestion":"what is email marketing how does it work", + "Url":"https://google.com/search?q=what is email marketing how does it work" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing", + "Url":"https://google.com/search?q=what is email marketing" + }, + { + "Suggestion":"what is email marketing and how does it work", + "Url":"https://google.com/search?q=what is email marketing and how does it work" + }, + { + "Suggestion":"what is email marketing job", + "Url":"https://google.com/search?q=what is email marketing job" + }, + { + "Suggestion":"what is email marketing with example", + "Url":"https://google.com/search?q=what is email marketing with example" + }, + { + "Suggestion":"what is email marketing in hindi", + "Url":"https://google.com/search?q=what is email marketing in hindi" + }, + { + "Suggestion":"what is email marketing strategy", + "Url":"https://google.com/search?q=what is email marketing strategy" + }, + { + "Suggestion":"what is email marketing and how to earn money from it technical miraj", + "Url":"https://google.com/search?q=what is email marketing and how to earn money from it technical miraj" + }, + { + "Suggestion":"what is email marketing automation", + "Url":"https://google.com/search?q=what is email marketing automation" + }, + { + "Suggestion":"what is email marketing software", + "Url":"https://google.com/search?q=what is email marketing software" + }, + { + "Suggestion":"what is email marketing tools", + "Url":"https://google.com/search?q=what is email marketing tools" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"what is as email marketing", + "Url":"https://google.com/search?q=what is as email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what comes under email marketing", + "Url":"https://google.com/search?q=what comes under email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing used for", + "Url":"https://google.com/search?q=what is email marketing used for" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing for", + "Url":"https://google.com/search?q=what is email marketing for" + }, + { + "Suggestion":"what is email marketing for real estate", + "Url":"https://google.com/search?q=what is email marketing for real estate" + }, + { + "Suggestion":"what is email marketing in hindi", + "Url":"https://google.com/search?q=what is email marketing in hindi" + }, + { + "Suggestion":"what is email marketing in bangla", + "Url":"https://google.com/search?q=what is email marketing in bangla" + }, + { + "Suggestion":"what is email marketing in ecommerce", + "Url":"https://google.com/search?q=what is email marketing in ecommerce" + }, + { + "Suggestion":"what is email marketing in odoo", + "Url":"https://google.com/search?q=what is email marketing in odoo" + }, + { + "Suggestion":"what email marketing to use", + "Url":"https://google.com/search?q=what email marketing to use" + }, + { + "Suggestion":"what is the best email marketing app for shopify", + "Url":"https://google.com/search?q=what is the best email marketing app for shopify" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + }, + { + "Suggestion":"what is email marketing and its benefits", + "Url":"https://google.com/search?q=what is email marketing and its benefits" + }, + { + "Suggestion":"what is email.marketing", + "Url":"https://google.com/search?q=what is email.marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is the difference between email marketing and email copywriting", + "Url":"https://google.com/search?q=what is the difference between email marketing and email copywriting" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is email.marketing", + "Url":"https://google.com/search?q=what is email.marketing" + }, + { + "Suggestion":"what is email marketing and types", + "Url":"https://google.com/search?q=what is email marketing and types" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing advantages and disadvantages", + "Url":"https://google.com/search?q=what is email marketing advantages and disadvantages" + }, + { + "Suggestion":"what is email and marketing automation", + "Url":"https://google.com/search?q=what is email and marketing automation" + }, + { + "Suggestion":"what is e marketing advantages and disadvantages", + "Url":"https://google.com/search?q=what is e marketing advantages and disadvantages" + }, + { + "Suggestion":"what is email marketing agency", + "Url":"https://google.com/search?q=what is email marketing agency" + }, + { + "Suggestion":"what is email marketing analytics", + "Url":"https://google.com/search?q=what is email marketing analytics" + }, + { + "Suggestion":"what is email marketing apps", + "Url":"https://google.com/search?q=what is email marketing apps" + }, + { + "Suggestion":"what is marketing email about", + "Url":"https://google.com/search?q=what is marketing email about" + }, + { + "Suggestion":"what is email marketing advertising", + "Url":"https://google.com/search?q=what is email marketing advertising" + }, + { + "Suggestion":"what is an email marketing specialist", + "Url":"https://google.com/search?q=what is an email marketing specialist" + }, + { + "Suggestion":"what is email affiliate marketing", + "Url":"https://google.com/search?q=what is email affiliate marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what is email marketing and how does it work", + "Url":"https://google.com/search?q=what is email marketing and how does it work" + }, + { + "Suggestion":"what is email marketing advantages and disadvantages", + "Url":"https://google.com/search?q=what is email marketing advantages and disadvantages" + }, + { + "Suggestion":"what is email marketing definition", + "Url":"https://google.com/search?q=what is email marketing definition" + }, + { + "Suggestion":"what is e marketing advantages and disadvantages", + "Url":"https://google.com/search?q=what is e marketing advantages and disadvantages" + }, + { + "Suggestion":"what is email marketing do", + "Url":"https://google.com/search?q=what is email marketing do" + }, + { + "Suggestion":"what is e-marketing definition", + "Url":"https://google.com/search?q=what is e-marketing definition" + }, + { + "Suggestion":"what is an email marketing database", + "Url":"https://google.com/search?q=what is an email marketing database" + }, + { + "Suggestion":"what is e-commerce marketing definition", + "Url":"https://google.com/search?q=what is e-commerce marketing definition" + }, + { + "Suggestion":"what is direct email marketing", + "Url":"https://google.com/search?q=what is direct email marketing" + }, + { + "Suggestion":"what is drip email marketing", + "Url":"https://google.com/search?q=what is drip email marketing" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"what was email marketing", + "Url":"https://google.com/search?q=what was email marketing" + }, + { + "Suggestion":"what email marketing service is best", + "Url":"https://google.com/search?q=what email marketing service is best" + }, + { + "Suggestion":"what email marketing to use", + "Url":"https://google.com/search?q=what email marketing to use" + }, + { + "Suggestion":"what email marketing is best", + "Url":"https://google.com/search?q=what email marketing is best" + }, + { + "Suggestion":"what's e marketing", + "Url":"https://google.com/search?q=what's e marketing" + }, + { + "Suggestion":"what is email marketing and how does it work", + "Url":"https://google.com/search?q=what is email marketing and how does it work" + }, + { + "Suggestion":"what is email marketing job", + "Url":"https://google.com/search?q=what is email marketing job" + }, + { + "Suggestion":"what is email marketing with example", + "Url":"https://google.com/search?q=what is email marketing with example" + }, + { + "Suggestion":"what is email marketing in hindi", + "Url":"https://google.com/search?q=what is email marketing in hindi" + }, + { + "Suggestion":"what is email marketing strategy", + "Url":"https://google.com/search?q=what is email marketing strategy" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what does email marketing mean", + "Url":"https://google.com/search?q=what does email marketing mean" + }, + { + "Suggestion":"what does email marketing entail", + "Url":"https://google.com/search?q=what does email marketing entail" + }, + { + "Suggestion":"how does email marketing work", + "Url":"https://google.com/search?q=how does email marketing work" + }, + { + "Suggestion":"how does email marketing help businesses", + "Url":"https://google.com/search?q=how does email marketing help businesses" + }, + { + "Suggestion":"why do email marketing", + "Url":"https://google.com/search?q=why do email marketing" + }, + { + "Suggestion":"how does email marketing make money", + "Url":"https://google.com/search?q=how does email marketing make money" + }, + { + "Suggestion":"how does email marketing increase brand awareness", + "Url":"https://google.com/search?q=how does email marketing increase brand awareness" + }, + { + "Suggestion":"how do email marketing companies make money", + "Url":"https://google.com/search?q=how do email marketing companies make money" + }, + { + "Suggestion":"how does email marketing work step by step", + "Url":"https://google.com/search?q=how does email marketing work step by step" + }, + { + "Suggestion":"what does a email marketing look like", + "Url":"https://google.com/search?q=what does a email marketing look like" + } + ] + ], + "More suggestion On What :-- Type - 2 [This API gives this type of suggestions based on keyword only.]", + [ + "Suggestion : ", + { + "Suggestion":"what are email marketing used for", + "Url":"https://google.com/search?q=what are email marketing used for" + }, + { + "Suggestion":"what basic marketing questions are answered in a marketing plan", + "Url":"https://google.com/search?q=what basic marketing questions are answered in a marketing plan" + }, + { + "Suggestion":"what are good marketing questions", + "Url":"https://google.com/search?q=what are good marketing questions" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what are email marketing in business", + "Url":"https://google.com/search?q=what are email marketing in business" + }, + { + "Suggestion":"what is marketing code", + "Url":"https://google.com/search?q=what is marketing code" + }, + { + "Suggestion":"what basic marketing questions are answered in a marketing plan", + "Url":"https://google.com/search?q=what basic marketing questions are answered in a marketing plan" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what are email marketing campaigns", + "Url":"https://google.com/search?q=what are email marketing campaigns" + }, + { + "Suggestion":"what are good marketing questions", + "Url":"https://google.com/search?q=what are good marketing questions" + }, + { + "Suggestion":"what to eat at commonwealth market", + "Url":"https://google.com/search?q=what to eat at commonwealth market" + }, + { + "Suggestion":"what are the basic marketing questions", + "Url":"https://google.com/search?q=what are the basic marketing questions" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what are email marketing used for", + "Url":"https://google.com/search?q=what are email marketing used for" + }, + { + "Suggestion":"what are email services used for", + "Url":"https://google.com/search?q=what are email services used for" + }, + { + "Suggestion":"what are good marketing questions", + "Url":"https://google.com/search?q=what are good marketing questions" + }, + { + "Suggestion":"what basic marketing questions are answered in a marketing plan", + "Url":"https://google.com/search?q=what basic marketing questions are answered in a marketing plan" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"what are email hosting services", + "Url":"https://google.com/search?q=what are email hosting services" + }, + { + "Suggestion":"what are good marketing questions", + "Url":"https://google.com/search?q=what are good marketing questions" + }, + { + "Suggestion":"what basic marketing questions are answered in a marketing plan", + "Url":"https://google.com/search?q=what basic marketing questions are answered in a marketing plan" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what are email marketing in business", + "Url":"https://google.com/search?q=what are email marketing in business" + }, + { + "Suggestion":"what are email services in salesforce", + "Url":"https://google.com/search?q=what are email services in salesforce" + }, + { + "Suggestion":"what are email services in networking", + "Url":"https://google.com/search?q=what are email services in networking" + }, + { + "Suggestion":"what is market list", + "Url":"https://google.com/search?q=what is market list" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"what are email marketing jobs", + "Url":"https://google.com/search?q=what are email marketing jobs" + } + ], + [ + "Suggestion : " + ] + ], + [ + [ + "why: ", + { + "Suggestion":"why email marketing is important", + "Url":"https://google.com/search?q=why email marketing is important" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"why email marketing is important for small business", + "Url":"https://google.com/search?q=why email marketing is important for small business" + }, + { + "Suggestion":"why email marketing is important in 2023", + "Url":"https://google.com/search?q=why email marketing is important in 2023" + }, + { + "Suggestion":"why email marketing is not effective", + "Url":"https://google.com/search?q=why email marketing is not effective" + }, + { + "Suggestion":"why email marketing is used", + "Url":"https://google.com/search?q=why email marketing is used" + }, + { + "Suggestion":"why email marketing is so important", + "Url":"https://google.com/search?q=why email marketing is so important" + }, + { + "Suggestion":"why is email marketing effective", + "Url":"https://google.com/search?q=why is email marketing effective" + }, + { + "Suggestion":"purpose of email marketing", + "Url":"https://google.com/search?q=purpose of email marketing" + } + ], + "More Suggestions On Why [This API gives this type of suggestions based on keyword only.] ", + [ + [ + "Suggestion : ", + { + "Suggestion":"why email campaigns are important", + "Url":"https://google.com/search?q=why email campaigns are important" + }, + { + "Suggestion":"what is performance marketing in holistic marketing", + "Url":"https://google.com/search?q=what is performance marketing in holistic marketing" + }, + { + "Suggestion":"what is marketing in principles of marketing", + "Url":"https://google.com/search?q=what is marketing in principles of marketing" + }, + { + "Suggestion":"what is marcom in marketing", + "Url":"https://google.com/search?q=what is marcom in marketing" + }, + { + "Suggestion":"attracting is the role of marketing", + "Url":"https://google.com/search?q=attracting is the role of marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is the future", + "Url":"https://google.com/search?q=why email marketing is the future" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"why is email marketing effective", + "Url":"https://google.com/search?q=why is email marketing effective" + }, + { + "Suggestion":"purpose of email marketing", + "Url":"https://google.com/search?q=purpose of email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is better than social media", + "Url":"https://google.com/search?q=why email marketing is better than social media" + }, + { + "Suggestion":"why email marketing is bad", + "Url":"https://google.com/search?q=why email marketing is bad" + }, + { + "Suggestion":"what is marketing/marketing management", + "Url":"https://google.com/search?q=what is marketing/marketing management" + }, + { + "Suggestion":"what is marketing in principles of marketing", + "Url":"https://google.com/search?q=what is marketing in principles of marketing" + }, + { + "Suggestion":"what is green marketing in marketing management", + "Url":"https://google.com/search?q=what is green marketing in marketing management" + }, + { + "Suggestion":"what are the marketing strategies in marketing", + "Url":"https://google.com/search?q=what are the marketing strategies in marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is better than social media", + "Url":"https://google.com/search?q=why email marketing is better than social media" + }, + { + "Suggestion":"why email marketing is bad", + "Url":"https://google.com/search?q=why email marketing is bad" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"purpose of email marketing", + "Url":"https://google.com/search?q=purpose of email marketing" + }, + { + "Suggestion":"why is email marketing effective", + "Url":"https://google.com/search?q=why is email marketing effective" + }, + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is considered as very efficient", + "Url":"https://google.com/search?q=why email marketing is considered as very efficient" + }, + { + "Suggestion":"what is marketing cim", + "Url":"https://google.com/search?q=what is marketing cim" + }, + { + "Suggestion":"what is marcom in marketing", + "Url":"https://google.com/search?q=what is marcom in marketing" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing doesn't work", + "Url":"https://google.com/search?q=why email marketing doesn't work" + }, + { + "Suggestion":"what is marketing in principles of marketing", + "Url":"https://google.com/search?q=what is marketing in principles of marketing" + }, + { + "Suggestion":"what is marketing/marketing management", + "Url":"https://google.com/search?q=what is marketing/marketing management" + }, + { + "Suggestion":"what is marketing in detail", + "Url":"https://google.com/search?q=what is marketing in detail" + }, + { + "Suggestion":"define marketing data", + "Url":"https://google.com/search?q=define marketing data" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is important", + "Url":"https://google.com/search?q=why email marketing is important" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"why email marketing is effective", + "Url":"https://google.com/search?q=why email marketing is effective" + }, + { + "Suggestion":"why email marketing is important for small business", + "Url":"https://google.com/search?q=why email marketing is important for small business" + }, + { + "Suggestion":"why email marketing is the future", + "Url":"https://google.com/search?q=why email marketing is the future" + }, + { + "Suggestion":"why email marketing plan", + "Url":"https://google.com/search?q=why email marketing plan" + }, + { + "Suggestion":"why use email marketing", + "Url":"https://google.com/search?q=why use email marketing" + }, + { + "Suggestion":"why do email marketing", + "Url":"https://google.com/search?q=why do email marketing" + }, + { + "Suggestion":"why does email marketing work", + "Url":"https://google.com/search?q=why does email marketing work" + }, + { + "Suggestion":"is email marketing worth it", + "Url":"https://google.com/search?q=is email marketing worth it" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"why email marketing is important", + "Url":"https://google.com/search?q=why email marketing is important" + }, + { + "Suggestion":"why email marketing is effective", + "Url":"https://google.com/search?q=why email marketing is effective" + }, + { + "Suggestion":"why email marketing is important for small business", + "Url":"https://google.com/search?q=why email marketing is important for small business" + }, + { + "Suggestion":"why email marketing is not effective", + "Url":"https://google.com/search?q=why email marketing is not effective" + }, + { + "Suggestion":"why email marketing is important in 2022", + "Url":"https://google.com/search?q=why email marketing is important in 2022" + }, + { + "Suggestion":"why email marketing is important for ecommerce", + "Url":"https://google.com/search?q=why email marketing is important for ecommerce" + }, + { + "Suggestion":"why email marketing is important in 2023", + "Url":"https://google.com/search?q=why email marketing is important in 2023" + }, + { + "Suggestion":"why email marketing is still important", + "Url":"https://google.com/search?q=why email marketing is still important" + }, + { + "Suggestion":"why email marketing is so important", + "Url":"https://google.com/search?q=why email marketing is so important" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is important for small business", + "Url":"https://google.com/search?q=why email marketing is important for small business" + }, + { + "Suggestion":"why email marketing is important for business", + "Url":"https://google.com/search?q=why email marketing is important for business" + }, + { + "Suggestion":"why email marketing is the future", + "Url":"https://google.com/search?q=why email marketing is the future" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"purpose of email marketing", + "Url":"https://google.com/search?q=purpose of email marketing" + }, + { + "Suggestion":"why is email marketing effective", + "Url":"https://google.com/search?q=why is email marketing effective" + }, + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is good", + "Url":"https://google.com/search?q=why email marketing is good" + }, + { + "Suggestion":"what is green marketing in marketing management", + "Url":"https://google.com/search?q=what is green marketing in marketing management" + }, + { + "Suggestion":"stages of global marketing", + "Url":"https://google.com/search?q=stages of global marketing" + }, + { + "Suggestion":"features of global marketing", + "Url":"https://google.com/search?q=features of global marketing" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"why email marketing is important", + "Url":"https://google.com/search?q=why email marketing is important" + }, + { + "Suggestion":"why email marketing is important for small business", + "Url":"https://google.com/search?q=why email marketing is important for small business" + }, + { + "Suggestion":"why email marketing is important in 2023", + "Url":"https://google.com/search?q=why email marketing is important in 2023" + }, + { + "Suggestion":"why email marketing is not effective", + "Url":"https://google.com/search?q=why email marketing is not effective" + }, + { + "Suggestion":"why email marketing is used", + "Url":"https://google.com/search?q=why email marketing is used" + }, + { + "Suggestion":"why email marketing is so important", + "Url":"https://google.com/search?q=why email marketing is so important" + }, + { + "Suggestion":"why email marketing", + "Url":"https://google.com/search?q=why email marketing" + }, + { + "Suggestion":"purpose of email marketing", + "Url":"https://google.com/search?q=purpose of email marketing" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ] + ] + ], + [ + "when : ", + { + "Suggestion":"an email marketing system", + "Url":"https://google.com/search?q=an email marketing system" + }, + { + "Suggestion":"an email marketing tool", + "Url":"https://google.com/search?q=an email marketing tool" + }, + { + "Suggestion":"an email marketing definition", + "Url":"https://google.com/search?q=an email marketing definition" + }, + { + "Suggestion":"an email marketing agency", + "Url":"https://google.com/search?q=an email marketing agency" + }, + { + "Suggestion":"of e-marketing", + "Url":"https://google.com/search?q=of e-marketing" + }, + { + "Suggestion":"email for marketing example", + "Url":"https://google.com/search?q=email for marketing example" + }, + { + "Suggestion":"email for marketing template", + "Url":"https://google.com/search?q=email for marketing template" + }, + { + "Suggestion":"email for marketing company", + "Url":"https://google.com/search?q=email for marketing company" + }, + { + "Suggestion":"when to use email marketing", + "Url":"https://google.com/search?q=when to use email marketing" + }, + { + "Suggestion":"how long should a marketing email be", + "Url":"https://google.com/search?q=how long should a marketing email be" + } + ], + [ + "where : ", + { + "Suggestion":"which email marketing service is the best", + "Url":"https://google.com/search?q=which email marketing service is the best" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + }, + { + "Suggestion":"which email marketing to use", + "Url":"https://google.com/search?q=which email marketing to use" + }, + { + "Suggestion":"which email marketing software", + "Url":"https://google.com/search?q=which email marketing software" + }, + { + "Suggestion":"which marketing email is best", + "Url":"https://google.com/search?q=which marketing email is best" + }, + { + "Suggestion":"where to learn email marketing", + "Url":"https://google.com/search?q=where to learn email marketing" + }, + { + "Suggestion":"where to start email marketing", + "Url":"https://google.com/search?q=where to start email marketing" + }, + { + "Suggestion":"what companies use email marketing", + "Url":"https://google.com/search?q=what companies use email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + }, + { + "Suggestion":"what is marketing emails", + "Url":"https://google.com/search?q=what is marketing emails" + } + ], + [ + "who : ", + { + "Suggestion":"which email marketing service is the best", + "Url":"https://google.com/search?q=which email marketing service is the best" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + }, + { + "Suggestion":"which email marketing to use", + "Url":"https://google.com/search?q=which email marketing to use" + }, + { + "Suggestion":"which email marketing software", + "Url":"https://google.com/search?q=which email marketing software" + }, + { + "Suggestion":"who is email marketing guru", + "Url":"https://google.com/search?q=who is email marketing guru" + }, + { + "Suggestion":"which marketing email is best", + "Url":"https://google.com/search?q=which marketing email is best" + }, + { + "Suggestion":"who are e-marketing", + "Url":"https://google.com/search?q=who are e-marketing" + }, + { + "Suggestion":"what companies use email marketing", + "Url":"https://google.com/search?q=what companies use email marketing" + }, + { + "Suggestion":"who is an email marketer", + "Url":"https://google.com/search?q=who is an email marketer" + } + ], + [ + "which : ", + { + "Suggestion":"which email marketing service is the best", + "Url":"https://google.com/search?q=which email marketing service is the best" + }, + { + "Suggestion":"which email marketing software is best", + "Url":"https://google.com/search?q=which email marketing software is best" + }, + { + "Suggestion":"which email marketing tools are you familiar with", + "Url":"https://google.com/search?q=which email marketing tools are you familiar with" + }, + { + "Suggestion":"which email marketing to use", + "Url":"https://google.com/search?q=which email marketing to use" + }, + { + "Suggestion":"which email marketing software", + "Url":"https://google.com/search?q=which email marketing software" + }, + { + "Suggestion":"which marketing email is best", + "Url":"https://google.com/search?q=which marketing email is best" + }, + { + "Suggestion":"what's email marketing", + "Url":"https://google.com/search?q=what's email marketing" + }, + { + "Suggestion":"what comes under email marketing", + "Url":"https://google.com/search?q=what comes under email marketing" + }, + { + "Suggestion":"what companies use email marketing", + "Url":"https://google.com/search?q=what companies use email marketing" + }, + { + "Suggestion":"what is email marketing examples", + "Url":"https://google.com/search?q=what is email marketing examples" + } + ], + [ + "will: ", + { + "Suggestion":"will email marketing die", + "Url":"https://google.com/search?q=will email marketing die" + }, + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing free", + "Url":"https://google.com/search?q=is email marketing free" + }, + { + "Suggestion":"is email marketing profitable", + "Url":"https://google.com/search?q=is email marketing profitable" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"is email marketing still effective in 2023", + "Url":"https://google.com/search?q=is email marketing still effective in 2023" + }, + { + "Suggestion":"is email marketing inbound or outbound", + "Url":"https://google.com/search?q=is email marketing inbound or outbound" + } + ], + [ + "was: ", + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing free", + "Url":"https://google.com/search?q=is email marketing free" + }, + { + "Suggestion":"is email marketing copywriting", + "Url":"https://google.com/search?q=is email marketing copywriting" + }, + { + "Suggestion":"is email marketing important", + "Url":"https://google.com/search?q=is email marketing important" + }, + { + "Suggestion":"is email marketing crm", + "Url":"https://google.com/search?q=is email marketing crm" + }, + { + "Suggestion":"is email marketing outbound", + "Url":"https://google.com/search?q=is email marketing outbound" + }, + { + "Suggestion":"is email marketing the best", + "Url":"https://google.com/search?q=is email marketing the best" + }, + { + "Suggestion":"is email marketing advertising", + "Url":"https://google.com/search?q=is email marketing advertising" + } + ], + [ + "is: ", + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing worth it", + "Url":"https://google.com/search?q=is email marketing worth it" + }, + { + "Suggestion":"is email marketing digital marketing", + "Url":"https://google.com/search?q=is email marketing digital marketing" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing dead 2023", + "Url":"https://google.com/search?q=is email marketing dead 2023" + }, + { + "Suggestion":"is email marketing legal", + "Url":"https://google.com/search?q=is email marketing legal" + }, + { + "Suggestion":"is email marketing inbound or outbound", + "Url":"https://google.com/search?q=is email marketing inbound or outbound" + }, + { + "Suggestion":"is email marketing owned media", + "Url":"https://google.com/search?q=is email marketing owned media" + }, + { + "Suggestion":"is email marketing profitable", + "Url":"https://google.com/search?q=is email marketing profitable" + } + ], + [ + "did: ", + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"does email marketing cost money", + "Url":"https://google.com/search?q=does email marketing cost money" + }, + { + "Suggestion":"does email marketing work in 2022", + "Url":"https://google.com/search?q=does email marketing work in 2022" + }, + { + "Suggestion":"does email marketing work in 2023", + "Url":"https://google.com/search?q=does email marketing work in 2023" + }, + { + "Suggestion":"does email marketing work in india", + "Url":"https://google.com/search?q=does email marketing work in india" + }, + { + "Suggestion":"does email marketing increase sales", + "Url":"https://google.com/search?q=does email marketing increase sales" + }, + { + "Suggestion":"does email marketing really work", + "Url":"https://google.com/search?q=does email marketing really work" + }, + { + "Suggestion":"does email marketing work reddit", + "Url":"https://google.com/search?q=does email marketing work reddit" + }, + { + "Suggestion":"does email marketing work in nigeria", + "Url":"https://google.com/search?q=does email marketing work in nigeria" + } + ], + [ + "does: ", + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"does email marketing work in 2023", + "Url":"https://google.com/search?q=does email marketing work in 2023" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"does email marketing cost money", + "Url":"https://google.com/search?q=does email marketing cost money" + }, + { + "Suggestion":"does email marketing really work", + "Url":"https://google.com/search?q=does email marketing really work" + }, + { + "Suggestion":"does email marketing actually work", + "Url":"https://google.com/search?q=does email marketing actually work" + }, + { + "Suggestion":"does email marketing work reddit", + "Url":"https://google.com/search?q=does email marketing work reddit" + }, + { + "Suggestion":"does email marketing work in india", + "Url":"https://google.com/search?q=does email marketing work in india" + }, + { + "Suggestion":"does email marketing increase sales", + "Url":"https://google.com/search?q=does email marketing increase sales" + }, + { + "Suggestion":"does email marketing still work 2023", + "Url":"https://google.com/search?q=does email marketing still work 2023" + } + ], + [ + "do: ", + { + "Suggestion":"do email marketing campaigns work", + "Url":"https://google.com/search?q=do email marketing campaigns work" + }, + { + "Suggestion":"do email marketing", + "Url":"https://google.com/search?q=do email marketing" + }, + { + "Suggestion":"does email marketing work", + "Url":"https://google.com/search?q=does email marketing work" + }, + { + "Suggestion":"does email marketing still work", + "Url":"https://google.com/search?q=does email marketing still work" + }, + { + "Suggestion":"does email marketing cost money", + "Url":"https://google.com/search?q=does email marketing cost money" + }, + { + "Suggestion":"does email marketing work in 2022", + "Url":"https://google.com/search?q=does email marketing work in 2022" + }, + { + "Suggestion":"does email marketing work in 2023", + "Url":"https://google.com/search?q=does email marketing work in 2023" + }, + { + "Suggestion":"does email marketing work in india", + "Url":"https://google.com/search?q=does email marketing work in india" + }, + { + "Suggestion":"does email marketing increase sales", + "Url":"https://google.com/search?q=does email marketing increase sales" + }, + { + "Suggestion":"does email marketing really work", + "Url":"https://google.com/search?q=does email marketing really work" + } + ], + [ + "has: ", + { + "Suggestion":"is email marketing legit", + "Url":"https://google.com/search?q=is email marketing legit" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing a good career", + "Url":"https://google.com/search?q=is email marketing a good career" + }, + { + "Suggestion":"is email marketing free", + "Url":"https://google.com/search?q=is email marketing free" + }, + { + "Suggestion":"is email marketing profitable", + "Url":"https://google.com/search?q=is email marketing profitable" + }, + { + "Suggestion":"is email marketing still effective in 2023", + "Url":"https://google.com/search?q=is email marketing still effective in 2023" + }, + { + "Suggestion":"is email marketing inbound or outbound", + "Url":"https://google.com/search?q=is email marketing inbound or outbound" + }, + { + "Suggestion":"is email marketing still effective in 2022", + "Url":"https://google.com/search?q=is email marketing still effective in 2022" + }, + { + "Suggestion":"is email marketing hard", + "Url":"https://google.com/search?q=is email marketing hard" + }, + { + "Suggestion":"is email marketing worth it", + "Url":"https://google.com/search?q=is email marketing worth it" + } + ], + [ + "have: ", + { + "Suggestion":"use email marketing", + "Url":"https://google.com/search?q=use email marketing" + }, + { + "Suggestion":"need email marketing", + "Url":"https://google.com/search?q=need email marketing" + }, + { + "Suggestion":"must have email marketing tools", + "Url":"https://google.com/search?q=must have email marketing tools" + }, + { + "Suggestion":"must have email marketing", + "Url":"https://google.com/search?q=must have email marketing" + }, + { + "Suggestion":"does shopify have email marketing", + "Url":"https://google.com/search?q=does shopify have email marketing" + }, + { + "Suggestion":"does wix have email marketing", + "Url":"https://google.com/search?q=does wix have email marketing" + }, + { + "Suggestion":"does squarespace have email marketing", + "Url":"https://google.com/search?q=does squarespace have email marketing" + }, + { + "Suggestion":"does clickfunnels have email marketing", + "Url":"https://google.com/search?q=does clickfunnels have email marketing" + }, + { + "Suggestion":"does thinkific have email marketing", + "Url":"https://google.com/search?q=does thinkific have email marketing" + }, + { + "Suggestion":"does wordpress have email marketing", + "Url":"https://google.com/search?q=does wordpress have email marketing" + } + ], + [ + "and : ", + { + "Suggestion":"email marketing and ai", + "Url":"https://google.com/search?q=email marketing and ai" + }, + { + "Suggestion":"email marketing and crm", + "Url":"https://google.com/search?q=email marketing and crm" + }, + { + "Suggestion":"email marketing and landing pages", + "Url":"https://google.com/search?q=email marketing and landing pages" + }, + { + "Suggestion":"email marketing and affiliate programs", + "Url":"https://google.com/search?q=email marketing and affiliate programs" + }, + { + "Suggestion":"email marketing and sms", + "Url":"https://google.com/search?q=email marketing and sms" + }, + { + "Suggestion":"email marketing and seo", + "Url":"https://google.com/search?q=email marketing and seo" + }, + { + "Suggestion":"email marketing and lead generation", + "Url":"https://google.com/search?q=email marketing and lead generation" + }, + { + "Suggestion":"email marketing and social media marketing", + "Url":"https://google.com/search?q=email marketing and social media marketing" + }, + { + "Suggestion":"email marketing and its types", + "Url":"https://google.com/search?q=email marketing and its types" + }, + { + "Suggestion":"email marketing and copywriting", + "Url":"https://google.com/search?q=email marketing and copywriting" + } + ], + [ + "vs : ", + { + "Suggestion":"email marketing vs social media", + "Url":"https://google.com/search?q=email marketing vs social media" + }, + { + "Suggestion":"email marketing vs direct mail", + "Url":"https://google.com/search?q=email marketing vs direct mail" + }, + { + "Suggestion":"email marketing vs text marketing", + "Url":"https://google.com/search?q=email marketing vs text marketing" + }, + { + "Suggestion":"email marketing vs newsletter", + "Url":"https://google.com/search?q=email marketing vs newsletter" + }, + { + "Suggestion":"email marketing vs sms marketing", + "Url":"https://google.com/search?q=email marketing vs sms marketing" + }, + { + "Suggestion":"email marketing vs copywriting", + "Url":"https://google.com/search?q=email marketing vs copywriting" + }, + { + "Suggestion":"email marketing vs facebook ads", + "Url":"https://google.com/search?q=email marketing vs facebook ads" + }, + { + "Suggestion":"email marketing vs marketing automation", + "Url":"https://google.com/search?q=email marketing vs marketing automation" + }, + { + "Suggestion":"email marketing vs cold calling", + "Url":"https://google.com/search?q=email marketing vs cold calling" + }, + { + "Suggestion":"email marketing vs affiliate marketing", + "Url":"https://google.com/search?q=email marketing vs affiliate marketing" + } + ], + [ + "General : ", + { + "Suggestion":"email marketing is dead", + "Url":"https://google.com/search?q=email marketing is dead" + }, + { + "Suggestion":"email marketing is not dead", + "Url":"https://google.com/search?q=email marketing is not dead" + }, + { + "Suggestion":"email marketing is also called", + "Url":"https://google.com/search?q=email marketing is also called" + }, + { + "Suggestion":"email marketing is", + "Url":"https://google.com/search?q=email marketing is" + }, + { + "Suggestion":"email marketing is a form of digital marketing", + "Url":"https://google.com/search?q=email marketing is a form of digital marketing" + }, + { + "Suggestion":"email marketing is a form of traditional marketing", + "Url":"https://google.com/search?q=email marketing is a form of traditional marketing" + }, + { + "Suggestion":"email marketing is a type of", + "Url":"https://google.com/search?q=email marketing is a type of" + }, + { + "Suggestion":"email marketing is inbound or outbound", + "Url":"https://google.com/search?q=email marketing is inbound or outbound" + }, + { + "Suggestion":"email marketing is typically performed", + "Url":"https://google.com/search?q=email marketing is typically performed" + }, + { + "Suggestion":"email marketing is an effective technique because", + "Url":"https://google.com/search?q=email marketing is an effective technique because" + } + ], + [ + "or : ", + { + "Suggestion":"email marketing or esp", + "Url":"https://google.com/search?q=email marketing or esp" + }, + { + "Suggestion":"email or marketing automation", + "Url":"https://google.com/search?q=email or marketing automation" + }, + { + "Suggestion":"marketing email or", + "Url":"https://google.com/search?q=marketing email or" + }, + { + "Suggestion":"email marketing and crm", + "Url":"https://google.com/search?q=email marketing and crm" + }, + { + "Suggestion":"email marketing and gdpr", + "Url":"https://google.com/search?q=email marketing and gdpr" + }, + { + "Suggestion":"email marketing and ai", + "Url":"https://google.com/search?q=email marketing and ai" + }, + { + "Suggestion":"email marketing and copywriting", + "Url":"https://google.com/search?q=email marketing and copywriting" + }, + { + "Suggestion":"email marketing and sms", + "Url":"https://google.com/search?q=email marketing and sms" + }, + { + "Suggestion":"email marketing and affiliate programs", + "Url":"https://google.com/search?q=email marketing and affiliate programs" + }, + { + "Suggestion":"email marketing and segmentation", + "Url":"https://google.com/search?q=email marketing and segmentation" + } + ], + [ + "could : ", + { + "Suggestion":"will email marketing die", + "Url":"https://google.com/search?q=will email marketing die" + }, + { + "Suggestion":"is email marketing legal", + "Url":"https://google.com/search?q=is email marketing legal" + }, + { + "Suggestion":"is email marketing still effective", + "Url":"https://google.com/search?q=is email marketing still effective" + }, + { + "Suggestion":"is email marketing worth it", + "Url":"https://google.com/search?q=is email marketing worth it" + }, + { + "Suggestion":"is email marketing hard", + "Url":"https://google.com/search?q=is email marketing hard" + } + ], + [ + "Genera1 Type 1 : ", + { + "Suggestion":"email marketing", + "Url":"https://google.com/search?q=email marketing" + }, + { + "Suggestion":"email marketing jobs", + "Url":"https://google.com/search?q=email marketing jobs" + }, + { + "Suggestion":"email marketing platforms", + "Url":"https://google.com/search?q=email marketing platforms" + }, + { + "Suggestion":"email marketing jobs remote", + "Url":"https://google.com/search?q=email marketing jobs remote" + }, + { + "Suggestion":"email marketing tools", + "Url":"https://google.com/search?q=email marketing tools" + }, + { + "Suggestion":"email marketing examples", + "Url":"https://google.com/search?q=email marketing examples" + }, + { + "Suggestion":"email marketing software", + "Url":"https://google.com/search?q=email marketing software" + }, + { + "Suggestion":"email marketing templates", + "Url":"https://google.com/search?q=email marketing templates" + }, + { + "Suggestion":"email marketing specialist", + "Url":"https://google.com/search?q=email marketing specialist" + }, + { + "Suggestion":"email marketing campaign", + "Url":"https://google.com/search?q=email marketing campaign" + } + ], + [ + [ + "How to : ", + { + "Suggestion":"how to email marketing", + "Url":"https://google.com/search?q=how to email marketing" + }, + { + "Suggestion":"how to email marketing campaign", + "Url":"https://google.com/search?q=how to email marketing campaign" + }, + { + "Suggestion":"how to email marketing free", + "Url":"https://google.com/search?q=how to email marketing free" + }, + { + "Suggestion":"how to email marketing tutorial", + "Url":"https://google.com/search?q=how to email marketing tutorial" + }, + { + "Suggestion":"how to email marketing images", + "Url":"https://google.com/search?q=how to email marketing images" + }, + { + "Suggestion":"how to email marketing bangla", + "Url":"https://google.com/search?q=how to email marketing bangla" + }, + { + "Suggestion":"how to email marketing blogs", + "Url":"https://google.com/search?q=how to email marketing blogs" + }, + { + "Suggestion":"how to marketing e-commerce", + "Url":"https://google.com/search?q=how to marketing e-commerce" + }, + { + "Suggestion":"how to do email marketing", + "Url":"https://google.com/search?q=how to do email marketing" + }, + { + "Suggestion":"how to start email marketing", + "Url":"https://google.com/search?q=how to start email marketing" + } + ], + "More Suggestions On How to [This API gives this type of suggestions based on keyword only.] ", + [ + [ + "Suggestion : ", + { + "Suggestion":"how to email a marketing", + "Url":"https://google.com/search?q=how to email a marketing" + }, + { + "Suggestion":"how to start email marketing agency", + "Url":"https://google.com/search?q=how to start email marketing agency" + }, + { + "Suggestion":"how to email a campaign", + "Url":"https://google.com/search?q=how to email a campaign" + }, + { + "Suggestion":"how to do email marketing for free", + "Url":"https://google.com/search?q=how to do email marketing for free" + }, + { + "Suggestion":"how to write an email for marketing", + "Url":"https://google.com/search?q=how to write an email for marketing" + }, + { + "Suggestion":"how to email for promotion", + "Url":"https://google.com/search?q=how to email for promotion" + }, + { + "Suggestion":"how to email asking for promotion", + "Url":"https://google.com/search?q=how to email asking for promotion" + }, + { + "Suggestion":"what is email marketing automation", + "Url":"https://google.com/search?q=what is email marketing automation" + }, + { + "Suggestion":"what is email marketing and why is it important", + "Url":"https://google.com/search?q=what is email marketing and why is it important" + }, + { + "Suggestion":"what is email marketing advantages and disadvantages", + "Url":"https://google.com/search?q=what is email marketing advantages and disadvantages" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"how to email marketing bangla", + "Url":"https://google.com/search?q=how to email marketing bangla" + }, + { + "Suggestion":"how to email marketing bangla tutorial", + "Url":"https://google.com/search?q=how to email marketing bangla tutorial" + }, + { + "Suggestion":"how to email marketing blogs", + "Url":"https://google.com/search?q=how to email marketing blogs" + }, + { + "Suggestion":"how to start email marketing business", + "Url":"https://google.com/search?q=how to start email marketing business" + }, + { + "Suggestion":"how to start email marketing business for beginners", + "Url":"https://google.com/search?q=how to start email marketing business for beginners" + }, + { + "Suggestion":"how to become email marketing specialist", + "Url":"https://google.com/search?q=how to become email marketing specialist" + }, + { + "Suggestion":"how to do email marketing step by step", + "Url":"https://google.com/search?q=how to do email marketing step by step" + }, + { + "Suggestion":"how to build email marketing list", + "Url":"https://google.com/search?q=how to build email marketing list" + }, + { + "Suggestion":"how to use email marketing for business", + "Url":"https://google.com/search?q=how to use email marketing for business" + }, + { + "Suggestion":"how to build email marketing software", + "Url":"https://google.com/search?q=how to build email marketing software" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"how to email marketing campaign", + "Url":"https://google.com/search?q=how to email marketing campaign" + }, + { + "Suggestion":"how to marketing e-commerce", + "Url":"https://google.com/search?q=how to marketing e-commerce" + }, + { + "Suggestion":"how to write email marketing content", + "Url":"https://google.com/search?q=how to write email marketing content" + }, + { + "Suggestion":"how to get email marketing clients", + "Url":"https://google.com/search?q=how to get email marketing clients" + }, + { + "Suggestion":"how to find email marketing clients", + "Url":"https://google.com/search?q=how to find email marketing clients" + }, + { + "Suggestion":"how much email marketing cost", + "Url":"https://google.com/search?q=how much email marketing cost" + }, + { + "Suggestion":"how to create email marketing", + "Url":"https://google.com/search?q=how to create email marketing" + }, + { + "Suggestion":"how to do email marketing for clients", + "Url":"https://google.com/search?q=how to do email marketing for clients" + }, + { + "Suggestion":"how to create email marketing templates", + "Url":"https://google.com/search?q=how to create email marketing templates" + }, + { + "Suggestion":"how to create email marketing strategy", + "Url":"https://google.com/search?q=how to create email marketing strategy" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"how to email digital marketing", + "Url":"https://google.com/search?q=how to email digital marketing" + }, + { + "Suggestion":"how is email marketing done", + "Url":"https://google.com/search?q=how is email marketing done" + }, + { + "Suggestion":"how to do email marketing", + "Url":"https://google.com/search?q=how to do email marketing" + }, + { + "Suggestion":"how to do email marketing for free", + "Url":"https://google.com/search?q=how to do email marketing for free" + }, + { + "Suggestion":"how to do email marketing for clients", + "Url":"https://google.com/search?q=how to do email marketing for clients" + }, + { + "Suggestion":"how to do email marketing with gmail", + "Url":"https://google.com/search?q=how to do email marketing with gmail" + }, + { + "Suggestion":"how to do email marketing step by step", + "Url":"https://google.com/search?q=how to do email marketing step by step" + }, + { + "Suggestion":"how to design email marketing", + "Url":"https://google.com/search?q=how to design email marketing" + }, + { + "Suggestion":"how to design email marketing template", + "Url":"https://google.com/search?q=how to design email marketing template" + }, + { + "Suggestion":"what is email marketing disadvantages", + "Url":"https://google.com/search?q=what is email marketing disadvantages" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"how to email marketing", + "Url":"https://google.com/search?q=how to email marketing" + }, + { + "Suggestion":"how to email marketing tutorial", + "Url":"https://google.com/search?q=how to email marketing tutorial" + }, + { + "Suggestion":"how to email marketing free", + "Url":"https://google.com/search?q=how to email marketing free" + }, + { + "Suggestion":"how to email marketing images", + "Url":"https://google.com/search?q=how to email marketing images" + }, + { + "Suggestion":"how to email marketing bangla", + "Url":"https://google.com/search?q=how to email marketing bangla" + }, + { + "Suggestion":"how to email marketing blogs", + "Url":"https://google.com/search?q=how to email marketing blogs" + }, + { + "Suggestion":"how to email campaign", + "Url":"https://google.com/search?q=how to email campaign" + }, + { + "Suggestion":"how to email promotion", + "Url":"https://google.com/search?q=how to email promotion" + }, + { + "Suggestion":"how to do email marketing", + "Url":"https://google.com/search?q=how to do email marketing" + }, + { + "Suggestion":"how to start email marketing", + "Url":"https://google.com/search?q=how to start email marketing" + } + ], + [ + "Suggestion : ", + { + "Suggestion":"how to email marketing free", + "Url":"https://google.com/search?q=how to email marketing free" + }, + { + "Suggestion":"how to do email marketing for free", + "Url":"https://google.com/search?q=how to do email marketing for free" + }, + { + "Suggestion":"how to do email marketing for clients", + "Url":"https://google.com/search?q=how to do email marketing for clients" + }, + { + "Suggestion":"how to learn email marketing for free", + "Url":"https://google.com/search?q=how to learn email marketing for free" + }, + { + "Suggestion":"how to email for promotion", + "Url":"https://google.com/search?q=how to email for promotion" + }, + { + "Suggestion":"how to write email for marketing", + "Url":"https://google.com/search?q=how to write email for marketing" + }, + { + "Suggestion":"how to create an email marketing funnel", + "Url":"https://google.com/search?q=how to create an email marketing funnel" + }, + { + "Suggestion":"how to use email for marketing", + "Url":"https://google.com/search?q=how to use email for marketing" + }, + { + "Suggestion":"how much email marketing freelance", + "Url":"https://google.com/search?q=how much email marketing freelance" + }, + { + "Suggestion":"how to start email marketing business for beginners", + "Url":"https://google.com/search?q=how to start email marketing business for beginners" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"how to use hubspot email marketing", + "Url":"https://google.com/search?q=how to use hubspot email marketing" + }, + { + "Suggestion":"how to email marketing campaign", + "Url":"https://google.com/search?q=how to email marketing campaign" + }, + { + "Suggestion":"how long should a marketing email be", + "Url":"https://google.com/search?q=how long should a marketing email be" + }, + { + "Suggestion":"how to build a marketing email", + "Url":"https://google.com/search?q=how to build a marketing email" + } + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : " + ], + [ + "Suggestion : ", + { + "Suggestion":"how to improve email marketing performance", + "Url":"https://google.com/search?q=how to improve email marketing performance" + }, + { + "Suggestion":"how to create an email marketing portfolio", + "Url":"https://google.com/search?q=how to create an email marketing portfolio" + }, + { + "Suggestion":"how to check email marketing campaign performance", + "Url":"https://google.com/search?q=how to check email marketing campaign performance" + }, + { + "Suggestion":"how to price email marketing services", + "Url":"https://google.com/search?q=how to price email marketing services" + }, + { + "Suggestion":"how to price email marketing", + "Url":"https://google.com/search?q=how to price email marketing" + }, + { + "Suggestion":"how to products email marketing", + "Url":"https://google.com/search?q=how to products email marketing" + }, + { + "Suggestion":"how much does email marketing pay", + "Url":"https://google.com/search?q=how much does email marketing pay" + }, + { + "Suggestion":"how to plan e-marketing", + "Url":"https://google.com/search?q=how to plan e-marketing" + }, + { + "Suggestion":"what is email marketing pdf", + "Url":"https://google.com/search?q=what is email marketing pdf" + }, + { + "Suggestion":"what are email marketing platforms", + "Url":"https://google.com/search?q=what are email marketing platforms" + } + ] + ] + ] + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7f0ba7393bed9f6b-SIN", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 03 Aug 2023 04:01:06 GMT", + "etag":"W/\"12c0c-Mu0mNqKnopimNl51BS+Vcwag8R4\"", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8", + "x-render-origin-server":"Render" + }, + "schema":{ + "type":"array", + "items":{ + "type":"array" + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/question_explorer/api.py b/toolbench/toolenv/tools/Tools/question_explorer/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b9c46e5c75d7be08e8060a9e02217a819a4f448c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/question_explorer/api.py @@ -0,0 +1,52 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def full_data(keyword: str, fulldata: str='digital marketing', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "full data" + + """ + url = f"https://question-explorer3.p.rapidapi.com/general/{keyword}" + querystring = {} + if fulldata: + querystring['FullData'] = fulldata + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "question-explorer3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def data(keyword: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "full Data" + + """ + url = f"https://question-explorer3.p.rapidapi.com/{keyword}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "question-explorer3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quick_qr.json b/toolbench/toolenv/tools/Tools/quick_qr.json new file mode 100644 index 0000000000000000000000000000000000000000..aee313d07bf4ad9ff0c9a72cc00563f5e1f62460 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Quick QR", + "tool_description":"\"Quick QR\" is a simple and efficient API for generating QR codes quickly and easily. It allows users to convert any URL into a QR code image with just one GET request. The API is lightweight and fast, making it perfect for use in mobile apps, websites, and other applications where quick and easy QR code generation is needed. The API is user-friendly and easy to integrate, making it a great choice for developers of all skill levels. With \"Quick QR\", creating QR codes has never been easier, you...", + "title":"Quick QR", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/suryakantu8/api/quick-qr/", + "host":"quick-qr.p.rapidapi.com", + "api_list":[ + { + "name":"Qr Code Image", + "url":"https://quick-qr.p.rapidapi.com/qr", + "description":"Thanks", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"Hlo.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://quick-qr.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-qr.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quick_qr/api.py b/toolbench/toolenv/tools/Tools/quick_qr/api.py new file mode 100644 index 0000000000000000000000000000000000000000..30ab656b55d04c1d22fdc6ea9d86aee5a1c654e9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Thanks" + + """ + url = f"https://quick-qr.p.rapidapi.com/qr" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "quick-qr.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quick_qr_api.json b/toolbench/toolenv/tools/Tools/quick_qr_api.json new file mode 100644 index 0000000000000000000000000000000000000000..25843a4ebe5c906bc1b79de09d757856dc730dfb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Quick QR API", + "tool_description":"The API take an URL and/or String and returns an QR code image pronto.", + "title":"Quick QR API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/SPQR/api/quick-qr-api/", + "host":"quick-qr-api.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_copy", + "url":"https://quick-qr-api.p.rapidapi.com/qr", + "description":"This end point takes a 'GET' request with URL/string as a parameter and returns qr code image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://quick-qr-api.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-qr-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quick_qr_api/api.py b/toolbench/toolenv/tools/Tools/quick_qr_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..676253ae104864c32e5526fec100f0126a18873b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with URL/string as a parameter and returns qr code image." + + """ + url = f"https://quick-qr-api.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "quick-qr-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quick_qr_code_api.json b/toolbench/toolenv/tools/Tools/quick_qr_code_api.json new file mode 100644 index 0000000000000000000000000000000000000000..1ed81d49ed21f70c9a03f6b6d73854681207264a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr_code_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Quick QR Code API", + "tool_description":"This API takes URL (Uniform Resource Locator) or string and return QR code....! \nQuickQR is a fast and easy-to-use QR code API (Application Programming Interface) builder that allows you to generate QR codes for your business needs. With QuickQR, you can easily create QR codes for your website, product, service, or event. Simply provide the necessary information, and QuickQR will generate a high-quality QR code that you can use an...", + "title":"Quick QR Code API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/pankajshirbhate1990/api/quick-qr-code-api/", + "host":"quick-qr-code-api.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_copy", + "url":"https://quick-qr-code-api.p.rapidapi.com/qrcode", + "description":"This end point takes a 'GET' request with url / string as a parameter and returns qr code image.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://quick-qr-code-api.p.rapidapi.com/qrcode\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-qr-code-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quick_qr_code_api/api.py b/toolbench/toolenv/tools/Tools/quick_qr_code_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2c2ccb45ce92483ec86b5ec0ca1a0edc1994f30d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr_code_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url / string as a parameter and returns qr code image." + + """ + url = f"https://quick-qr-code-api.p.rapidapi.com/qrcode" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "quick-qr-code-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quick_qr_code_generator.json b/toolbench/toolenv/tools/Tools/quick_qr_code_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..bc071cc2e32352c87fba959c20b6593315c8fec9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr_code_generator.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Quick QR Code Generator", + "tool_description":"Generate QR code", + "title":"Quick QR Code Generator", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/gaomengen-06ta1_CzQ2U/api/quick-qr-code-generator/", + "host":"quick-qr-code-generator.p.rapidapi.com", + "api_list":[ + { + "name":"hello", + "url":"https://quick-qr-code-generator.p.rapidapi.com/hello", + "description":"test hello endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://quick-qr-code-generator.p.rapidapi.com/hello\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-qr-code-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quick_qr_code_generator/api.py b/toolbench/toolenv/tools/Tools/quick_qr_code_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8f500efb61934fb4e0e7cbe2f4fe1a56a070c032 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_qr_code_generator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def hello(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "test hello endpoint" + + """ + url = f"https://quick-qr-code-generator.p.rapidapi.com/hello" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "quick-qr-code-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quick_summary_and_readtime.json b/toolbench/toolenv/tools/Tools/quick_summary_and_readtime.json new file mode 100644 index 0000000000000000000000000000000000000000..12cdb6b4620d2e36d25525af99f49e74add6ecbc --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_summary_and_readtime.json @@ -0,0 +1,47 @@ +{ + "product_id": "api_7d786fba-d86b-437f-80f0-2a3227edbb16", + "tool_description": "An API that allows will calculate how long it will take to read some text, or to create summary of a larger amount of text (e.g. TLDR)", + "home_url": "https://rapidapi.com/Panda123a/api/quick-summary-and-readtime/", + "name": "Quick Summary and Readtime", + "title": "Quick Summary and Readtime", + "pricing": "FREEMIUM", + "tool_name": "Quick Summary and Readtime", + "score": null, + "host": "quick-summary-and-readtime.p.rapidapi.com", + "api_list": [ + { + "name": "Summarization", + "url": "https://quick-summary-and-readtime.p.rapidapi.com/summary/", + "description": "Makes a summary of your article/blog or other text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quick-summary-and-readtime.p.rapidapi.com/summary/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-summary-and-readtime.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quick-summary-and-readtime.p.rapidapi.com/summary/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-summary-and-readtime.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Read Time", + "url": "https://quick-summary-and-readtime.p.rapidapi.com/readtime/", + "description": "Determine how long it will take to read an article", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quick-summary-and-readtime.p.rapidapi.com/readtime/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-summary-and-readtime.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quick-summary-and-readtime.p.rapidapi.com/readtime/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-summary-and-readtime.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "time": { + "type": "integer" + }, + "time_string": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quick_translate.json b/toolbench/toolenv/tools/Tools/quick_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..50c0dafd8e7f879a109d468ecbfc4eed4387fe4d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quick_translate.json @@ -0,0 +1,35 @@ +{ + "product_id": "api_c4c8666e-eb13-4f56-9c5b-4270845b0294", + "tool_description": "Quickly translate any text using Google Translate", + "home_url": "https://rapidapi.com/tannn143/api/quick-translate/", + "name": "Quick Translate", + "title": "Quick Translate", + "pricing": "FREEMIUM", + "tool_name": "Quick Translate", + "score": null, + "host": "quick-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Translate (Return the single result)", + "url": "https://quick-translate.p.rapidapi.com/translate-single", + "description": "Translate any text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quick-translate.p.rapidapi.com/translate-single\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quick-translate.p.rapidapi.com/translate-single\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Translate (Return the fastest result)", + "url": "https://quick-translate.p.rapidapi.com/translate", + "description": "Translate any text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quick-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quick-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quick-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quickmocker.json b/toolbench/toolenv/tools/Tools/quickmocker.json new file mode 100644 index 0000000000000000000000000000000000000000..2d40191d568e7804fab1748a05c70a209854d2dd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quickmocker.json @@ -0,0 +1,80 @@ +{ + "tool_name": "QuickMocker", + "tool_description": "Online API mocking tool to create a fake web services, intercept and debug requests in live mode, forward requests to any URL including localhost.", + "title": "QuickMocker", + "pricing": "FREE", + "score": { + "avgServiceLevel": 100, + "avgLatency": 733, + "avgSuccessRate": 100, + "popularityScore": 8.4, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/nostop8/api/quickmocker/", + "host": "quickmocker.p.rapidapi.com", + "api_list": [ + { + "name": "Sample user read", + "url": "https://quickmocker.p.rapidapi.com/user/12345", + "description": "Sample user read", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quickmocker.p.rapidapi.com/user/12345\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quickmocker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Sample user create", + "url": "https://quickmocker.p.rapidapi.com/user", + "description": "Sample user create", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quickmocker.p.rapidapi.com/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quickmocker.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Sample user update", + "url": "https://quickmocker.p.rapidapi.com/user/54321", + "description": "Sample user update", + "method": "PUT", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quickmocker.p.rapidapi.com/user/54321\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quickmocker.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Sample user delete", + "url": "https://quickmocker.p.rapidapi.com/user/89123", + "description": "Sample user delete", + "method": "DELETE", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quickmocker.p.rapidapi.com/user/89123\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quickmocker.p.rapidapi.com\"\n}\n\nresponse = requests.delete(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Sample user create", + "url": "https://quickmocker.p.rapidapi.com/user", + "description": "Sample user create", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quickmocker.p.rapidapi.com/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quickmocker.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quickmocker.p.rapidapi.com/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quickmocker.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/quickmocker/api.py b/toolbench/toolenv/tools/Tools/quickmocker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a2092a95542c2272fd4a4d08703c9897146fd04c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quickmocker/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def sample_user_read(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Sample user read" + + """ + url = f"https://quickmocker.p.rapidapi.com/user/12345" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "quickmocker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/quikrun.json b/toolbench/toolenv/tools/Tools/quikrun.json new file mode 100644 index 0000000000000000000000000000000000000000..7767bcc803113d62cf010a5cc9cfe6f3c04c8630 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/quikrun.json @@ -0,0 +1,167 @@ +{ + "product_id": "api_88de6840-f4f8-41c0-8886-8461d6b9c244", + "tool_description": "QuikRun: Your Code's wingman in the Cloud! Compile, Share, and Test code with ease. Say Goodbye to Hassles, Hello to QuikRun's streamlined coding power!\n\n", + "home_url": "https://rapidapi.com/nparashar150/api/quikrun/", + "name": "QuikRun", + "title": "QuikRun", + "pricing": "FREEMIUM", + "tool_name": "QuikRun", + "score": null, + "host": "quikrun.p.rapidapi.com", + "api_list": [ + { + "name": "Create Submission", + "url": "https://quikrun.p.rapidapi.com/submissions/create", + "description": "Paste your code snippet inside body to compile code via API.", + "method": "POST", + "required_parameters": [ + { + "name": "token_type", + "type": "STRING", + "description": "", + "default": "refresh_token" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/submissions/create\"\nquerystring = {\"token_type\": \"refresh_token\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/submissions/create\"\nquerystring = {\"token_type\": \"refresh_token\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "Exchange Token", + "url": "https://quikrun.p.rapidapi.com/user/exchange-token", + "description": "Get access token from refresh token", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/user/exchange-token\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/user/exchange-token\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "Create Submission by Snippet Id", + "url": "https://quikrun.p.rapidapi.com/submissions/create-by-id", + "description": "Paste your QuikRun snippet id and the rest will be handled by API.", + "method": "POST", + "required_parameters": [ + { + "name": "token_type", + "type": "STRING", + "description": "", + "default": "refresh_token" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/submissions/create-by-id\"\nquerystring = {\"token_type\": \"refresh_token\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/submissions/create-by-id\"\nquerystring = {\"token_type\": \"refresh_token\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "Login User", + "url": "https://quikrun.p.rapidapi.com/user/login", + "description": "Login user via email and password", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/user/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://quikrun.p.rapidapi.com/user/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"quikrun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/radar_chart.json b/toolbench/toolenv/tools/Tools/radar_chart.json new file mode 100644 index 0000000000000000000000000000000000000000..e9aed7b6c592afc4d9a795a19d9586434b765ed3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/radar_chart.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_b315e58a-7a89-430d-9df1-66e226c09b66", + "tool_description": "Generate custom radar plots (spider charts) on-the-fly with our API. Input your data and get a downloadable chart image instantly.", + "home_url": "https://rapidapi.com/vikasvimal90/api/radar-chart/", + "name": "Radar Chart", + "title": "Radar Chart", + "pricing": "FREEMIUM", + "tool_name": "Radar Chart", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3082, + "avgSuccessRate": 93, + "popularityScore": 9, + "__typename": "Score" + }, + "host": "radar-chart.p.rapidapi.com", + "api_list": [ + { + "name": "GCF", + "url": "https://radar-chart.p.rapidapi.com/vv90-cfs1", + "description": "This Endpoint takes data points and generates a Radar Chart as an output.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://radar-chart.p.rapidapi.com/vv90-cfs1\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radar-chart.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://radar-chart.p.rapidapi.com/vv90-cfs1\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radar-chart.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/rafa.json b/toolbench/toolenv/tools/Tools/rafa.json new file mode 100644 index 0000000000000000000000000000000000000000..ebcc87d7185a1dc0771f3369ad95e495ce735f9e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rafa.json @@ -0,0 +1,24 @@ +{ + "tool_name":"rafa", + "tool_description":"API return a random fact", + "title":"rafa", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sylvesterbradford808/api/rafa2/", + "host":"rafa2.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://rafa2.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rafa2.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rafa2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/rafa/api.py b/toolbench/toolenv/tools/Tools/rafa/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e660b50b059bdd0ab262f562d1193d59e2931bdb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rafa/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://rafa2.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rafa2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_avatar_api/api.py b/toolbench/toolenv/tools/Tools/random_avatar_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6de875eb92937ddb1972ff5ad2d3823540b7382e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_avatar_api/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def avatar_url(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "AI Generated Human avatar Image URL" + + """ + url = f"https://random-avatar-api.p.rapidapi.com/avatarurl" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-avatar-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random_ai_avatar(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Randomly Generated AI Avatars" + + """ + url = f"https://random-avatar-api.p.rapidapi.com/avatar" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-avatar-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_password_generator.json b/toolbench/toolenv/tools/Tools/random_password_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..cfe9de886d4222b9e885aee22d80064401db7478 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_password_generator.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_71800870-ea67-4f95-be7b-26d824d8d1c0", + "tool_description": "Introducing the Secure Password Generator API, the ultimate solution for creating strong and unique passwords for your personal and professional use. With this API, you can easily generate random passwords with a customizable length and character set, including numbers, letters, uppercase letters, and special characters.", + "home_url": "https://rapidapi.com/pgarciamaurino/api/random-password-generator3/", + "name": "Random Password Generator", + "title": "Random Password Generator", + "pricing": "FREEMIUM", + "tool_name": "Random Password Generator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 230, + "avgSuccessRate": 100, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "random-password-generator3.p.rapidapi.com", + "api_list": [ + { + "name": "Generate Password", + "url": "https://random-password-generator3.p.rapidapi.com/generatepassword", + "description": "The /generatepassword endpoint of our Secure Password Generator API allows you to easily generate a strong, randomized password that meets your specific security requirements. You can specify the password length and the types of characters to include, such as numbers, lowercase letters, uppercase letters, and special characters. This ensures that you get a unique and secure password every time.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://random-password-generator3.p.rapidapi.com/generatepassword\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-password-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://random-password-generator3.p.rapidapi.com/generatepassword\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-password-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/random_qr_code_generator.json b/toolbench/toolenv/tools/Tools/random_qr_code_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..1a2153d30c17453943e2db25b2cdd5655a987e39 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_qr_code_generator.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Random QR Code Generator", + "tool_description":"This is a powerful and efficient QR code generation API that allows you to quickly and easily create QR codes for any URL. Whether you're looking to promote a website, a social media profile, or any other online presence, our API makes it easy to create high-quality QR codes that can be shared and scanned with ease. With a user-friendly interface and a fast and reliable API, generating QR codes has never been easier. Our API is built using the Python Flask framework and uses the qrcode librar...", + "title":"Random QR Code Generator", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/ajiteshsaranath/api/random-qr-code-generator/", + "host":"random-qr-code-generator.p.rapidapi.com", + "api_list":[ + { + "name":"QR_Code Image Copy", + "url":"https://random-qr-code-generator.p.rapidapi.com/qr", + "description":"This endpoint gets a 'GET' request with url /string as a parameter and returns QR Code Image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://random-qr-code-generator.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-qr-code-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/random_qr_code_generator/api.py b/toolbench/toolenv/tools/Tools/random_qr_code_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2a84064d8479fecd56c752ceab424dc3ddec1f1f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_qr_code_generator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint gets a 'GET' request with url /string as a parameter and returns QR Code Image." + + """ + url = f"https://random-qr-code-generator.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-qr-code-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_string_generator.json b/toolbench/toolenv/tools/Tools/random_string_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..947952e82445987f046953da86bd09541ace5c5c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_string_generator.json @@ -0,0 +1,65 @@ +{ + "tool_name":"Random String Generator", + "tool_description":"Generate a completely random string.", + "title":"Random String Generator", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/ExoWatts/api/random-string-generator2/", + "host":"random-string-generator2.p.rapidapi.com", + "api_list":[ + { + "name":"generate", + "url":"https://random-string-generator2.p.rapidapi.com/", + "description":"Generate a completely random string.", + "method":"GET", + "required_parameters":[ + { + "name":"length", + "type":"NUMBER", + "description":"Max: 100", + "default":"25" + } + ], + "optional_parameters":[ + { + "name":"symbols", + "type":"ENUM", + "description":"Include symbols.\nDefault: True", + "default":"" + }, + { + "name":"uppercase", + "type":"ENUM", + "description":"Include uppercase letters.\nDefault: True", + "default":"" + }, + { + "name":"numbers", + "type":"ENUM", + "description":"Include numbers.\nDefault: True", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://random-string-generator2.p.rapidapi.com/\"\nquerystring = {\"length\": length}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-string-generator2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "string":"f%#pcMEZwA^3&nwJjSUU7UWd#" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7618b32facfc8227-IAD", + "content-type":"application/json; charset=UTF-8", + "date":"Sat, 29 Oct 2022 03:07:15 GMT", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zv99rMqAHMuoYc5fSO%2BzMBgrLnwXe1KonfJ%2FXvuJyALyWfWIh5GIZqPnV31zxn%2F%2B05lQlbrVqLAwhdYIo%2FIrkgAuT9bdttrID14O0dJ%2BGutH8%2BSQcgTfujhImj3a8n3T6mZY\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/random_string_generator/api.py b/toolbench/toolenv/tools/Tools/random_string_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4434c022d76179f3ed8a152197d8a354ca46c12e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_string_generator/api.py @@ -0,0 +1,42 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate(length: int, symbols: str=None, uppercase: str=None, numbers: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a completely random string." + length: Max: 100 + symbols: Include symbols. +Default: True + uppercase: Include uppercase letters. +Default: True + numbers: Include numbers. +Default: True + + """ + url = f"https://random-string-generator2.p.rapidapi.com/" + querystring = {'length': length, } + if symbols: + querystring['symbols'] = symbols + if uppercase: + querystring['uppercase'] = uppercase + if numbers: + querystring['numbers'] = numbers + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-string-generator2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_strings.json b/toolbench/toolenv/tools/Tools/random_strings.json new file mode 100644 index 0000000000000000000000000000000000000000..506e7d8e75928cb8d56144a3ebe7d961d16a8562 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_strings.json @@ -0,0 +1,70 @@ +{ + "tool_name":"Random Strings", + "tool_description":"Generates various types of random strings including cryptographically strong strings.", + "title":"Random Strings", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/tstep916/api/random-strings/", + "host":"random-strings.p.rapidapi.com", + "api_list":[ + { + "name":"UUID", + "url":"https://random-strings.p.rapidapi.com/v1/uuid", + "description":"Generates a random version 4 UUID.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://random-strings.p.rapidapi.com/v1/uuid\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-strings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":"7ffb3609-9c05-4f3b-8884-f6c0102e3aef", + "headers":{}, + "schema":{} + }, + { + "name":"Random String", + "url":"https://random-strings.p.rapidapi.com/v1/string", + "description":"This endpoint generates a random string.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"type", + "type":"STRING", + "description":"Can be alphabetic, alphanumeric, hex, or base64.", + "default":"alphabetic" + }, + { + "name":"length", + "type":"NUMBER", + "description":"Can be any number between 1 and 100.", + "default":"10" + } + ], + "code":"import requests\n\nurl = \"https://random-strings.p.rapidapi.com/v1/string\"\nquerystring = {\"type\": type, \"length\": length}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-strings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Random Words", + "url":"https://random-strings.p.rapidapi.com/v1/words", + "description":"Generates a sentence of random words.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"words", + "type":"NUMBER", + "description":"Can be any number between 1 and 20.", + "default":"2" + } + ], + "code":"import requests\n\nurl = \"https://random-strings.p.rapidapi.com/v1/words\"\nquerystring = {\"words\": words}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-strings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/random_strings/api.py b/toolbench/toolenv/tools/Tools/random_strings/api.py new file mode 100644 index 0000000000000000000000000000000000000000..287a29dbd8fa3b8d9b0e2bdf60f2a806500517b9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_strings/api.py @@ -0,0 +1,80 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def uuid(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates a random version 4 UUID." + + """ + url = f"https://random-strings.p.rapidapi.com/v1/uuid" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-strings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random_string(type: str='alphabetic', length: int=10, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint generates a random string." + type: Can be alphabetic, alphanumeric, hex, or base64. + length: Can be any number between 1 and 100. + + """ + url = f"https://random-strings.p.rapidapi.com/v1/string" + querystring = {} + if type: + querystring['type'] = type + if length: + querystring['length'] = length + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-strings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random_words(words: int=2, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates a sentence of random words." + words: Can be any number between 1 and 20. + + """ + url = f"https://random-strings.p.rapidapi.com/v1/words" + querystring = {} + if words: + querystring['words'] = words + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-strings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_username_daddy.json b/toolbench/toolenv/tools/Tools/random_username_daddy.json new file mode 100644 index 0000000000000000000000000000000000000000..49f39efd7bda60756e04846f31c6b86ec35ee750 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_username_daddy.json @@ -0,0 +1,30 @@ +{ + "tool_name":"🔴 RANDOM USERNAME 🔴 Daddy", + "tool_description":"Generates unique, random, human-like usernames. Billions of possible beautiful human-like usernames. ", + "title":"🔴 RANDOM USERNAME 🔴 Daddy", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":172, + "avgSuccessRate":100, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/DaddyApi/api/random-username-daddy/", + "host":"random-username-daddy.p.rapidapi.com", + "api_list":[ + { + "name":"Random Username", + "url":"https://random-username-daddy.p.rapidapi.com/rnd", + "description":"Generates random username", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://random-username-daddy.p.rapidapi.com/rnd\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"random-username-daddy.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/random_username_daddy/api.py b/toolbench/toolenv/tools/Tools/random_username_daddy/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b57c85b0308f519f17f3c4674e3b6673af42d557 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_username_daddy/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def random_username(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates random username" + + """ + url = f"https://random-username-daddy.p.rapidapi.com/rnd" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-username-daddy.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_word_generator_v2/api.py b/toolbench/toolenv/tools/Tools/random_word_generator_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..88b943f564cb370b736a7f38faeaab8eeaacb55d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_word_generator_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def random(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "random word" + + """ + url = f"https://random-word-generator1.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-word-generator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/random_words/api.py b/toolbench/toolenv/tools/Tools/random_words/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8008e27f6085318020e6598429653ba21bfd7f9a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/random_words/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://random-words9.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "random-words9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/randomcreditcardapi.json b/toolbench/toolenv/tools/Tools/randomcreditcardapi.json new file mode 100644 index 0000000000000000000000000000000000000000..38be688ab96a4430e16d7ca82cace54c2695f009 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/randomcreditcardapi.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_52ae10fb-1060-4b8f-9835-54ace1030a24", + "tool_description": "RandomCreditCardAPI is a versatile API for generating random credit card numbers, allowing you to include a vendor or leave it blank based on your needs. It's a flexible solution for testing, development, and various applications that require random credit card data.", + "home_url": "https://rapidapi.com/canadypanutax/api/randomcreditcardapi/", + "name": "RandomCreditCardAPI", + "title": "RandomCreditCardAPI", + "pricing": "PAID", + "tool_name": "RandomCreditCardAPI", + "score": { + "avgServiceLevel": 100, + "avgLatency": 553, + "avgSuccessRate": 100, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "randomcreditcardapi.p.rapidapi.com", + "api_list": [ + { + "name": "postPayment", + "url": "https://randomcreditcardapi.p.rapidapi.com/api/payment", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://randomcreditcardapi.p.rapidapi.com/api/payment\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"randomcreditcardapi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://randomcreditcardapi.p.rapidapi.com/api/payment\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"randomcreditcardapi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ranking_world_golfers.json b/toolbench/toolenv/tools/Tools/ranking_world_golfers.json new file mode 100644 index 0000000000000000000000000000000000000000..0d38446864a526f266d55d82f9d0bef8c4331529 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ranking_world_golfers.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Ranking World Golfers", + "tool_description":"World golfers ranking", + "title":"Ranking World Golfers", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/lopezvaleska7416/api/ranking-world-golfers/", + "host":"ranking-world-golfers.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://ranking-world-golfers.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ranking-world-golfers.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ranking-world-golfers.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ranking_world_golfers/api.py b/toolbench/toolenv/tools/Tools/ranking_world_golfers/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e241dc6c41f1b302c378c2159bcb1bce412259de --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ranking_world_golfers/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://ranking-world-golfers.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ranking-world-golfers.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/rawo.json b/toolbench/toolenv/tools/Tools/rawo.json new file mode 100644 index 0000000000000000000000000000000000000000..d192d89e682729f9dab02e59848b48aecb0e7217 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rawo.json @@ -0,0 +1,24 @@ +{ + "tool_name":"rawo", + "tool_description":"API return random words, quatity of your choice", + "title":"rawo", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sylvesterbradford808/api/rawo/", + "host":"rawo.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://rawo.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rawo.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rawo.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/rawo/api.py b/toolbench/toolenv/tools/Tools/rawo/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3f1c8ef7f3a4597306b34346afc67db7af4cbf06 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rawo/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://rawo.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rawo.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/read_qr_codes.json b/toolbench/toolenv/tools/Tools/read_qr_codes.json new file mode 100644 index 0000000000000000000000000000000000000000..8a576a199507d64adee14220ab2337be7d423a25 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/read_qr_codes.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_c9014453-86bb-46f1-b986-ead1e172ee3d", + "tool_description": "The QR code reader from URL API is a service that enables you to extract information from QR codes by providing the URL of the image containing the QR code. It automates the process of decoding QR codes and retrieving the encoded data, eliminating the need for manual scanning. The API returns the extracted information in a structured format, allowing for easy integration into various applications and systems.", + "home_url": "https://rapidapi.com/nanonetsocr-nanonetsocr-default/api/read-qr-codes/", + "name": "Read QR Codes", + "title": "Read QR Codes", + "pricing": "FREEMIUM", + "tool_name": "Read QR Codes", + "score": null, + "host": "read-qr-codes.p.rapidapi.com", + "api_list": [ + { + "name": "Read QR Codes", + "url": "https://read-qr-codes.p.rapidapi.com/qr_code_combined_m", + "description": "Read/decode QR code from the image", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://read-qr-codes.p.rapidapi.com/qr_code_combined_m\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"read-qr-codes.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://read-qr-codes.p.rapidapi.com/qr_code_combined_m\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"read-qr-codes.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/reca.json b/toolbench/toolenv/tools/Tools/reca.json new file mode 100644 index 0000000000000000000000000000000000000000..2c2324527d74a491174a0a0b16a4a75331920aa2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reca.json @@ -0,0 +1,24 @@ +{ + "tool_name":"reca", + "tool_description":"API that calculate rectangle area", + "title":"reca", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sylvesterbradford808/api/reca/", + "host":"reca.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://reca.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://reca.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reca.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/reca/api.py b/toolbench/toolenv/tools/Tools/reca/api.py new file mode 100644 index 0000000000000000000000000000000000000000..28f146001d37e81b9c5a24c2985f688f1924215f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reca/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://reca.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reca.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/recipebase.json b/toolbench/toolenv/tools/Tools/recipebase.json new file mode 100644 index 0000000000000000000000000000000000000000..9d4a3c402d94ebe7a937d07bb98976f8a2d671e9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/recipebase.json @@ -0,0 +1,24 @@ +{ + "tool_name":"recipeBase", + "tool_description":"API returnmany recipe for sugestion", + "title":"recipeBase", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/rogerdaledowney430/api/recipebase/", + "host":"recipebase.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://recipebase.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://recipebase.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"recipebase.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/recipebase/api.py b/toolbench/toolenv/tools/Tools/recipebase/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4c95b6c2d4fa3c4dc12177ef1c5c4e3d069733ef --- /dev/null +++ b/toolbench/toolenv/tools/Tools/recipebase/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://recipebase.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "recipebase.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/recipes_to_grocery_store/api.py b/toolbench/toolenv/tools/Tools/recipes_to_grocery_store/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a5bbbb2e21666e0295773e4aad4f53a84e2259a6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/recipes_to_grocery_store/api.py @@ -0,0 +1,549 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getrecipe(recipeid: str, servings: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the details for a specific recipe." + recipeid: The id of the recipe to get data for. + servings: Number of servings. Use "0" to obtain default servings used when this recipe was created. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'RecipeId': recipeid, 'Servings': servings, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcategories(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets a list of all categories." + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def setfavoriterecipe(method: str, deviceid: str, userid: int, recipeid: int, isfavorite: bool, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Sets a user favorite recipe." + method: The method to call on the server. + deviceid: The unique id of the client calling the method. + userid: The id of the user. + recipeid: The id of the recipe to flag for favorite. + isfavorite: Should the recipe be flagged as a favorite, 0 for false, 1 for true. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'method': method, 'DeviceId': deviceid, 'UserId': userid, 'RecipeId': recipeid, 'IsFavorite': isfavorite, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmealboxcategories(targetstoreid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets all categories for meal boxes." + targetstoreid: Identifies the categories to use for this request. If no recipes attached to a category, category will not be included in the result returned. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'targetstoreid': targetstoreid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getfavoriterecipes(method: str, userid: int, deviceid: str, pageindex: int=0, pagesize: int=10, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the recipes the user has flagged as favorites." + method: The name of the method to call. + userid: The id of the user requesting the data. + deviceid: The unique id of the device requesting the data. + pageindex: The page index to get data for. + pagesize: The number of recipes to return pr. page. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'method': method, 'UserId': userid, 'deviceid': deviceid, } + if pageindex: + querystring['PageIndex'] = pageindex + if pagesize: + querystring['PageSize'] = pagesize + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcollectedrecipes(rnd: str, weektoken: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the recipes the user has added to his meal plan." + rnd: A random string to ensure you do not get a cached version from somewhere. + weektoken: Can be used to automatic add recipes from some custom logic to this users meal plan before retrieving the collected recipes. Leave it blank. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'rnd': rnd, } + if weektoken: + querystring['WeekToken'] = weektoken + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def setmealdate(collectid: int, mealdate: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Set the date and time for a recipe on the meal plan." + collectid: The id of the record to make the change to. + mealdate: the date and time in the format yyyy-MM-ddTHH:mm + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'CollectId': collectid, 'mealdate': mealdate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getlistsofvalues(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets list of values to be used with drop downs." + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getrecipesbyfreetext(q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets a list of recipes. Max number of recipes returned is limited to 50." + q: The text to search for in the recipes. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def addrecipetomealplan(servings: int, mealdate: str, recipeid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Adds a recipe to the users meal plan." + servings: The amount of servings to add. + mealdate: Use "0" to add to next free slot, or use format 2014-11-05T13:15:30. + recipeid: The id of the recipe to add to the meal plan. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'Servings': servings, 'MealDate': mealdate, 'recipeid': recipeid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gettabrecipes(pagesize: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get 3 sets of recipe data (popular, new and recommended)" + pagesize: The number of recipes to return in each dataset. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'PageSize': pagesize, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def removecollectedrecipes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Removes all recipes form the meal plan." + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getdefaultsuppliermappingbyrecipe(recipeid: str, servings: int, departmentid: int, supplierid: int, supplierpriceconfiguration: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets a list of products that if purchased matches the ingredients attached to the recipe." + recipeid: The id of the recipe to get the mapping for. + servings: The amount of servings to calculate product mappings for. If 0, we use recipe default. + departmentid: If the supplier has multiple departments for delivering groceries, this will identify the department. + supplierid: The supplier to get the mapping for. This is only an option if the system you build should be connected to an online supermarket. + supplierpriceconfiguration: The products to display for this recipe if multiple products have been attached to each ingredient. Possible values at the moment are: DefaultSelection = 0, CheapestPossible = 1, Organic = 2. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'RecipeId': recipeid, 'Servings': servings, 'DepartmentId': departmentid, 'supplierid': supplierid, 'supplierpriceconfiguration': supplierpriceconfiguration, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getrecipesincategory(mealcatid: int, pageindex: int, pagesize: int=10, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the recipes for a specific category. TODO: Add current page and total number of pages to response." + mealcatid: The id of the category to get the recipes for. + pageindex: The page to retrieve from the server. + pagesize: The number of recipes per page. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'MealCatId': mealcatid, 'PageIndex': pageindex, } + if pagesize: + querystring['PageSize'] = pagesize + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def setconfirmitemsreceivedatsupplier(orderiddraft: int, draftkey: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Supermarket must call this method just after meal plan was transferred to basket from foreign domain." + orderiddraft: The draft id created when converting the meal plan to a basket. + draftkey: A uniqueidentifier in the format DF452C8E-DE33-425A-8958-77E697384928. This identifier is generated when meal plan is converted to ingredients. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'OrderIdDraft': orderiddraft, 'DraftKey': draftkey, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmealboxrecipes(mealboxid: int, log: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets a list of recipes for a specific meal box." + mealboxid: The id of the meal box to get the recipes for. + log: Should the request be logged and data used in analytics such as most viewed meal boxes. Default is 0. Possible values 0 or 1. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'MealBoxId': mealboxid, 'log': log, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def removerecipefrommealplan(collectid: int, recipeid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Removes a recipe form the meal plan." + collectid: The id representing the row to delete in the DB. + recipeid: The id of the recipe to remove from the meal plan. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'CollectId': collectid, 'RecipeId': recipeid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def setconfirmorderfromsupplier(orderiddraft: int, transactionid: str, supplierordertotalprice: int, suppliernewcustomer: bool, draftkey: str, supplierorderid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Confirms that a meal plan was converted to an order and payment accepted." + orderiddraft: An id generated when the meal plan is converted to ingredients, but before receiving payment. + transactionid: The transaction id for the payment, used for tracking back. + supplierordertotalprice: The total amount of the basket, which was paid in the transaction. + suppliernewcustomer: A value indicating if this was the first order the customer placed at the online supermarket. + draftkey: A uniqueidentifier in the format DF452C8E-DE33-425A-8958-77E697384928. This identifier is generated when meal plan is converted to ingredients. + supplierorderid: The order id this transaction was given at the online supermarket. Used for tracking and linking data. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'OrderIdDraft': orderiddraft, 'TransactionId': transactionid, 'SupplierOrderTotalPrice': supplierordertotalprice, 'SupplierNewCustomer': suppliernewcustomer, 'draftkey': draftkey, 'supplierorderid': supplierorderid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getgrocerylistbyuserid(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the sum of grocery list for the current user. If UserId is 0, data stored on DeviceId is used in stead. If UserId > 0 we check if DeviceId is associated with UserId on backend." + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def setrecipecollectservings(collectid: int, servings: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Sets the number of servings on the meal plan for a given recipe." + collectid: The id in the DB to update data for. + servings: The number of servings to set for the recipe on the meal plan. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'CollectId': collectid, 'Servings': servings, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmealboxesbycategoryid(targetstoreid: str, mealboxcategoryid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the meal boxes attached to a specific category." + targetstoreid: The id of the store to get the list of meal boxes for. + mealboxcategoryid: The id of the category to get the meal boxes for. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'TargetStoreId': targetstoreid, 'MealBoxCategoryId': mealboxcategoryid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getlistofingredientsusedinrecipes(q: str='kartof', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets a complete list of ingredients used in recipes." + q: A text used in a like filter on the ingredients to return. Leave empty to return all ingredients. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {} + if q: + querystring['q'] = q + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getweeklymealplan(weeklyid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the recipes for a specific weekly meal plan." + weeklyid: The id of the meal plan to get the recipes for. Use 0 for current week. + + """ + url = f"https://dp.p.rapidapi.com/" + querystring = {'WeeklyId': weeklyid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/rectangle_calculate.json b/toolbench/toolenv/tools/Tools/rectangle_calculate.json new file mode 100644 index 0000000000000000000000000000000000000000..92aef52b7b38287afc9a5f84dc408aee95d531d5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rectangle_calculate.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Rectangle Calculate", + "tool_description":"API that calculate rectangle area", + "title":"Rectangle Calculate", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/kevinrouer950/api/rectangle-calculate/", + "host":"rectangle-calculate.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://rectangle-calculate.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rectangle-calculate.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rectangle-calculate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/rectangle_calculate/api.py b/toolbench/toolenv/tools/Tools/rectangle_calculate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a1e92fe6f3d3e2ac173384c2d6100334e5f4dae0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rectangle_calculate/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://rectangle-calculate.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rectangle-calculate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/reels_qr_code.json b/toolbench/toolenv/tools/Tools/reels_qr_code.json new file mode 100644 index 0000000000000000000000000000000000000000..60933e0a1758e12e15b58474035c26f456bc83b8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reels_qr_code.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Reels QR Code", + "tool_description":"This API takes URL of Reels video and returns the QR code Image.", + "title":"Reels QR Code", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/kiraztbrian/api/reels-qr-code/", + "host":"reels-qr-code.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_copy", + "url":"https://reels-qr-code.p.rapidapi.com/", + "description":"this end point takes a 'GET' request with url / string as a parameter and returns qr code image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.instagram.com/p/CXDGR2EACpu/?hl=en" + } + ], + "code":"import requests\n\nurl = \"https://reels-qr-code.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reels-qr-code.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/reels_qr_code/api.py b/toolbench/toolenv/tools/Tools/reels_qr_code/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1aaa3266de96665a6354016d12b14bc36ae619d8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reels_qr_code/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='https://www.instagram.com/p/CXDGR2EACpu/?hl=en', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "this end point takes a 'GET' request with url / string as a parameter and returns qr code image" + + """ + url = f"https://reels-qr-code.p.rapidapi.com/" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reels-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/referral_domain_checker_api.json b/toolbench/toolenv/tools/Tools/referral_domain_checker_api.json new file mode 100644 index 0000000000000000000000000000000000000000..fb11e668a6a82f2a1f493c6af847853c737457ae --- /dev/null +++ b/toolbench/toolenv/tools/Tools/referral_domain_checker_api.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Referral Domain checker API", + "tool_description":"Get Referral Domains of a website, backlink counts , ranks etc ", + "title":"Referral Domain checker API", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":7681, + "avgSuccessRate":100, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ajithjojo1230/api/referral-domain-checker-api/", + "host":"referral-domain-checker-api.p.rapidapi.com", + "api_list":[ + { + "name":"Get Referral Domains", + "url":"https://referral-domain-checker-api.p.rapidapi.com/referraldomains.php", + "description":"Get Referral Domains List", + "method":"GET", + "required_parameters":[ + { + "name":"domain", + "type":"STRING", + "description":"", + "default":"getecz.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://referral-domain-checker-api.p.rapidapi.com/referraldomains.php\"\nquerystring = {\"domain\": domain}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"referral-domain-checker-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/referral_domain_checker_api/api.py b/toolbench/toolenv/tools/Tools/referral_domain_checker_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f851c5d70b5fc8336700aa4a6c3325d3e06c1c1d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/referral_domain_checker_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_referral_domains(domain: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Referral Domains List" + + """ + url = f"https://referral-domain-checker-api.p.rapidapi.com/referraldomains.php" + querystring = {'domain': domain, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "referral-domain-checker-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/residential_proxies/api.py b/toolbench/toolenv/tools/Tools/residential_proxies/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7e3ded84b0411fb6a9d9566107ecb4e3ccbbcc72 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/residential_proxies/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def countries(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list of country" + + """ + url = f"https://residential-proxies.p.rapidapi.com/api/countries" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "residential-proxies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def proxies(countryid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list of proxy" + + """ + url = f"https://residential-proxies.p.rapidapi.com/api/proxies" + querystring = {'countryId': countryid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "residential-proxies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/residentialproxies.json b/toolbench/toolenv/tools/Tools/residentialproxies.json new file mode 100644 index 0000000000000000000000000000000000000000..60e87c684cb2c431ef64a012bb532087da2ae4cc --- /dev/null +++ b/toolbench/toolenv/tools/Tools/residentialproxies.json @@ -0,0 +1,90 @@ +{ + "product_id": "api_66700ccf-d71e-40e4-87cd-01ca8c4fcbff", + "tool_description": "Get resources, from anywhere, no headhaches", + "home_url": "https://rapidapi.com/ajitsharma/api/residentialproxies/", + "name": "ResidentialProxies", + "title": "ResidentialProxies", + "pricing": "FREEMIUM", + "tool_name": "ResidentialProxies", + "score": null, + "host": "residentialproxies.p.rapidapi.com", + "api_list": [ + { + "name": "get content, all options", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover\n- select proxy country\n- accept & reusing cookie, when requested by the server\n- force proxy switch (not only automation)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get content, switch proxy manually", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover\n- force proxy switch (not only automation)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get content", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get content, check excluded content", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover\n- if checked content is in the answer, try again", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get content, accepting cookie double query", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover\n- accept & reusing cookie, when requested by the server", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get content, from selected country", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover\n- select proxy country", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get content, check matching content", + "url": "https://residentialproxies.p.rapidapi.com/proxy", + "description": "Get http content, with:\n- rotated residential proxies\n- automated failover\n- if checked content is not in the answer, try again", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://residentialproxies.p.rapidapi.com/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"residentialproxies.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/return_fact.json b/toolbench/toolenv/tools/Tools/return_fact.json new file mode 100644 index 0000000000000000000000000000000000000000..f20ee6df66a950836f401e3838bcdf5639aec734 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/return_fact.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Return Fact", + "tool_description":"API return a random fact", + "title":"Return Fact", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/melissaspicer1286/api/return-fact/", + "host":"return-fact.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://return-fact.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://return-fact.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"return-fact.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/return_fact/api.py b/toolbench/toolenv/tools/Tools/return_fact/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4ba185e3c8f641f8d3423fcf6d539dcf8869d0ac --- /dev/null +++ b/toolbench/toolenv/tools/Tools/return_fact/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://return-fact.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "return-fact.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/return_universal.json b/toolbench/toolenv/tools/Tools/return_universal.json new file mode 100644 index 0000000000000000000000000000000000000000..10c4ebd103333ebc13171c73b5af7c7c7bbd17d3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/return_universal.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Return Universal", + "tool_description":"API return universal time", + "title":"Return Universal", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sayderalberto4791/api/return-universal/", + "host":"return-universal.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://return-universal.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://return-universal.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"return-universal.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/return_universal/api.py b/toolbench/toolenv/tools/Tools/return_universal/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c66039fbb47714edb995fbe52925aab043134f6c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/return_universal/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://return-universal.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "return-universal.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/reverse.json b/toolbench/toolenv/tools/Tools/reverse.json new file mode 100644 index 0000000000000000000000000000000000000000..927cdd238e32d2f49705b641f91b32b6c02d19ee --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reverse.json @@ -0,0 +1,24 @@ +{ + "tool_name":"reverse", + "tool_description":"API theat return the string in reversed", + "title":"reverse", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/yudelkaeamirez3121/api/reverse5/", + "host":"reverse5.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://reverse5.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://reverse5.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reverse5.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/reverse/api.py b/toolbench/toolenv/tools/Tools/reverse/api.py new file mode 100644 index 0000000000000000000000000000000000000000..194cf69ed6646075afb449086cc54a26dff1862e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reverse/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://reverse5.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reverse5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/reverse_id_lookup_website_owner_research/api.py b/toolbench/toolenv/tools/Tools/reverse_id_lookup_website_owner_research/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1bf75bcf03f3888107cf32d1727d7668748be993 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reverse_id_lookup_website_owner_research/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def analyze(platform: str, value: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Reverse lookup ID" + platform: Which platform to search for. Options: domain, adsense, googleanalytics, amazon_affiliate, email, addthis, sharethis, clickbank_affiliate, commissionjunction_affiliate, doubleclick, linkshare_affiliate, facebook_app, ip, nameserver, registrar, amazon_product, clickbank_product, commissionjunction_product, linkshare_product. + value: The ID to search from the specific platform. + + """ + url = f"https://dait-reverse-website-lookup-v1.p.rapidapi.com/analyze" + querystring = {'platform': platform, 'value': value, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dait-reverse-website-lookup-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/reword_pdf.json b/toolbench/toolenv/tools/Tools/reword_pdf.json new file mode 100644 index 0000000000000000000000000000000000000000..eba91542fd35bfd9f4df055048fe824c12830987 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reword_pdf.json @@ -0,0 +1,267 @@ +{ + "product_id": "api_381da40e-fd08-4da2-a464-7f0886b99e3a", + "tool_description": "Reword PDF is a pdf editor tool. \nCapabilities:\n- Extract text in a pdf\n- Replace any of these given texts in the pdf.", + "home_url": "https://rapidapi.com/brunorib/api/reword-pdf1/", + "name": "Reword PDF", + "title": "Reword PDF", + "pricing": "FREEMIUM", + "tool_name": "Reword PDF", + "score": { + "avgServiceLevel": 100, + "avgLatency": 85, + "avgSuccessRate": 84, + "popularityScore": 6.6, + "__typename": "Score" + }, + "host": "reword-pdf1.p.rapidapi.com", + "api_list": [ + { + "name": "download", + "url": "https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/download", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "pdfId", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/download\"\nquerystring = {\"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/download\"\nquerystring = {\"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "getPdf", + "url": "https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "pdfId", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}\"\nquerystring = {\"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}\"\nquerystring = {\"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "getTask", + "url": "https://reword-pdf1.p.rapidapi.com/v1/tasks/{taskId}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "taskId", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/tasks/{taskId}\"\nquerystring = {\"taskId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/tasks/{taskId}\"\nquerystring = {\"taskId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "getById", + "url": "https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts/{textId}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "textId", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "pdfId", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts/{textId}\"\nquerystring = {\"textId\": \"\", \"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts/{textId}\"\nquerystring = {\"textId\": \"\", \"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "pageNum": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "id": { + "type": "string" + }, + "text": { + "type": "string" + }, + "fontSize": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "x": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "y": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + } + } + } + }, + { + "name": "getAll", + "url": "https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "pdfId", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts\"\nquerystring = {\"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts\"\nquerystring = {\"pdfId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "pageNum": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "id": { + "type": "string" + }, + "text": { + "type": "string" + }, + "fontSize": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "x": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "y": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + } + } + } + } + }, + { + "name": "getInPage", + "url": "https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts/page/{pageNum}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "pdfId", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "pageNum", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts/page/{pageNum}\"\nquerystring = {\"pdfId\": \"\", \"pageNum\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfId}/texts/page/{pageNum}\"\nquerystring = {\"pdfId\": \"\", \"pageNum\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"reword-pdf1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "pageNum": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "id": { + "type": "string" + }, + "text": { + "type": "string" + }, + "fontSize": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "x": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "y": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + } + } + } + } + } + ], + "standardized_name": "reword_pdf" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/reword_pdf/api.py b/toolbench/toolenv/tools/Tools/reword_pdf/api.py new file mode 100644 index 0000000000000000000000000000000000000000..298b373642c31359d2d8c571f596ad5de91b7d10 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/reword_pdf/api.py @@ -0,0 +1,134 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def download(pdfid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfid}/download" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reword-pdf1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getpdf(pdfid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reword-pdf1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gettask(taskid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://reword-pdf1.p.rapidapi.com/v1/tasks/{taskid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reword-pdf1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getbyid(textid: str, pdfid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfid}/texts/{textid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reword-pdf1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getall(pdfid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfid}/texts" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reword-pdf1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getinpage(pdfid: str, pagenum: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://reword-pdf1.p.rapidapi.com/v1/pdfs/{pdfid}/texts/page/{pagenum}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "reword-pdf1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/rfc_generator_mexico/api.py b/toolbench/toolenv/tools/Tools/rfc_generator_mexico/api.py new file mode 100644 index 0000000000000000000000000000000000000000..60cbe25959c46adc9f3348d75965169048c8556a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rfc_generator_mexico/api.py @@ -0,0 +1,40 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_rfc(apellido_materno: str, apellido_paterno: str, fecha: str, nombre: str, solo_homoclave: int=1, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Regresa el RFC con homoclave, o sólo la homoclave." + apellido_materno: El apellido materno de la persona física + apellido_paterno: El apellido paterno de la persona física + fecha: La fecha de nacimiento de la persona física en formato +aaaa-mm-dd ó yyyy-mm-dd + nombre: El nombre de la persona física + solo_homoclave: Si sólo quiere calcular la homoclave, o todo el rfc + +1 => Calcúla sólo la homoclave => LS4 +0 => Regresa todo el rfc => HEGJ880317LS4 + + """ + url = f"https://jfhe88-rfc-generator-mexico.p.rapidapi.com/rest1/rfc/get" + querystring = {'apellido_materno': apellido_materno, 'apellido_paterno': apellido_paterno, 'fecha': fecha, 'nombre': nombre, } + if solo_homoclave: + querystring['solo_homoclave'] = solo_homoclave + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "jfhe88-rfc-generator-mexico.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/rgbk_qrcode.json b/toolbench/toolenv/tools/Tools/rgbk_qrcode.json new file mode 100644 index 0000000000000000000000000000000000000000..7af49475a57ff622b1c6eff4efe8732960df588c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rgbk_qrcode.json @@ -0,0 +1,91 @@ +{ + "tool_name":"RGBK QRcode", + "tool_description":"This is fast and easy QR Code generator in different color. You will get the output result as PNG format.", + "title":"RGBK QRcode", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/dizaraj/api/rgbk-qrcode/", + "host":"rgbk-qrcode.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Green", + "url":"https://rgbk-qrcode.p.rapidapi.com/qr-green/{data}", + "description":"This end point will generate Green QR Codes", + "method":"GET", + "required_parameters":[ + { + "name":"DATA", + "type":"string", + "description":"", + "default":"www.tutofian.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rgbk-qrcode.p.rapidapi.com/qr-green/{data}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rgbk-qrcode.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"QR Code Red", + "url":"https://rgbk-qrcode.p.rapidapi.com/qr-red/{data}", + "description":"This end point will generate Red QR Codes", + "method":"GET", + "required_parameters":[ + { + "name":"DATA", + "type":"string", + "description":"", + "default":"www.tutofian.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rgbk-qrcode.p.rapidapi.com/qr-red/{data}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rgbk-qrcode.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"QR Code Blue", + "url":"https://rgbk-qrcode.p.rapidapi.com/qr-blue/{data}", + "description":"This end point will generate Blue QR Codes", + "method":"GET", + "required_parameters":[ + { + "name":"DATA", + "type":"string", + "description":"", + "default":"www.tutofian.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rgbk-qrcode.p.rapidapi.com/qr-blue/{data}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rgbk-qrcode.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"QR Code Default", + "url":"https://rgbk-qrcode.p.rapidapi.com/qr-code/{data}", + "description":"QR Code Default will generate Black QR Codes", + "method":"GET", + "required_parameters":[ + { + "name":"DATA", + "type":"string", + "description":"", + "default":"www.tutofian.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rgbk-qrcode.p.rapidapi.com/qr-code/{data}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rgbk-qrcode.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/rgbk_qrcode/api.py b/toolbench/toolenv/tools/Tools/rgbk_qrcode/api.py new file mode 100644 index 0000000000000000000000000000000000000000..03763d5ca55bdd91047dbc5d437845d3f63d3710 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rgbk_qrcode/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_green(data: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point will generate Green QR Codes" + + """ + url = f"https://rgbk-qrcode.p.rapidapi.com/qr-green/{data}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rgbk-qrcode.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def qr_code_red(data: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point will generate Red QR Codes" + + """ + url = f"https://rgbk-qrcode.p.rapidapi.com/qr-red/{data}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rgbk-qrcode.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def qr_code_blue(data: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point will generate Blue QR Codes" + + """ + url = f"https://rgbk-qrcode.p.rapidapi.com/qr-blue/{data}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rgbk-qrcode.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def qr_code_default(data: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "QR Code Default will generate Black QR Codes" + + """ + url = f"https://rgbk-qrcode.p.rapidapi.com/qr-code/{data}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rgbk-qrcode.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/rolldice.json b/toolbench/toolenv/tools/Tools/rolldice.json new file mode 100644 index 0000000000000000000000000000000000000000..a402ebec04e7714abd6c5de4cbb15fea14a647c7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rolldice.json @@ -0,0 +1,24 @@ +{ + "tool_name":"rolldice", + "tool_description":"API help you simulately roll a dice", + "title":"rolldice", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/cleosatkins1061/api/rolldice1/", + "host":"rolldice1.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://rolldice1.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://rolldice1.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rolldice1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/rolldice/api.py b/toolbench/toolenv/tools/Tools/rolldice/api.py new file mode 100644 index 0000000000000000000000000000000000000000..65d71b84114db7a49fd2ebbc700ef9bdb4399bcb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/rolldice/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://rolldice1.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rolldice1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/ruby_code_compiler.json b/toolbench/toolenv/tools/Tools/ruby_code_compiler.json new file mode 100644 index 0000000000000000000000000000000000000000..fbedaa7751349aadde1b789bbc14781c14db0f2e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ruby_code_compiler.json @@ -0,0 +1,99 @@ +{ + "tool_name": "Ruby Code Compiler", + "tool_description": "Ruby Code Compiler API", + "title": "Ruby Code Compiler", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 550, + "avgSuccessRate": 100, + "popularityScore": 8.4, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/UnlimitedAPI/api/ruby-code-compiler/", + "host": "ruby-code-compiler.p.rapidapi.com", + "api_list": [ + { + "name": "Ruby Versions", + "url": "https://ruby-code-compiler.p.rapidapi.com/versions/", + "description": "Ruby Versions", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ruby-code-compiler.p.rapidapi.com/versions/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ruby-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": [ + { + "id": 0, + "version": "2.2.4" + }, + { + "id": 1, + "version": "2.4.2p198" + }, + { + "id": 2, + "version": "2.5.1p57" + }, + { + "id": 3, + "version": "2.6.5" + }, + { + "id": 4, + "version": "3.0.2" + } + ], + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Mon, 22 Aug 2022 14:16:17 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Ruby Code Compiler", + "url": "https://ruby-code-compiler.p.rapidapi.com/", + "description": "Ruby Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ruby-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ruby-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "cpuTime": "0.05", + "memory": "13528", + "output": "Hello, World!" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Mon, 22 Aug 2022 14:16:52 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Ruby Code Compiler", + "url": "https://ruby-code-compiler.p.rapidapi.com/", + "description": "Ruby Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ruby-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ruby-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ruby-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ruby-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ruby_code_compiler/api.py b/toolbench/toolenv/tools/Tools/ruby_code_compiler/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6d07f9a94ef553488e923939b1ed3fee6870dc0a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ruby_code_compiler/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def ruby_versions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Ruby Versions" + + """ + url = f"https://ruby-code-compiler.p.rapidapi.com/versions/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ruby-code-compiler.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/runit_api.json b/toolbench/toolenv/tools/Tools/runit_api.json new file mode 100644 index 0000000000000000000000000000000000000000..527bdef7554e648a11e369a7c1369c6570111ee8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/runit_api.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_69b3b964-2b75-4410-a64a-97d5063f279d", + "tool_description": "Online code sandbox API to run your code in 200+ languages.", + "home_url": "https://rapidapi.com/vietnameseenderbot/api/runit-api/", + "name": "RunIt API", + "title": "RunIt API", + "pricing": "FREEMIUM", + "tool_name": "RunIt API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1512, + "avgSuccessRate": 78, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "runit-api.p.rapidapi.com", + "api_list": [ + { + "name": "Execute Code", + "url": "https://runit-api.p.rapidapi.com/execute", + "description": "Runs your code in a sandboxed environment.\n\n**Parameters:**\n\n- code: Code to run (string) **(required)**\n- input: Value of stdin (user input) (string or null) (optional)\n- lang: Language id (from /languages endpoint) (string) **(required)**", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://runit-api.p.rapidapi.com/execute\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"runit-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://runit-api.p.rapidapi.com/execute\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"runit-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/salary_job/api.py b/toolbench/toolenv/tools/Tools/salary_job/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fea6583b2b2bea4166da19e9e025614b6c8d8ed7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/salary_job/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://salary-job.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "salary-job.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/scala_code_compiler.json b/toolbench/toolenv/tools/Tools/scala_code_compiler.json new file mode 100644 index 0000000000000000000000000000000000000000..439d9dd6ad8721321c28fb87a315c543b757ffe7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scala_code_compiler.json @@ -0,0 +1,99 @@ +{ + "tool_name": "Scala Code Compiler", + "tool_description": "Scala Code Compiler API", + "title": "Scala Code Compiler", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 542, + "avgSuccessRate": 100, + "popularityScore": 8, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/UnlimitedAPI/api/scala-code-compiler/", + "host": "scala-code-compiler.p.rapidapi.com", + "api_list": [ + { + "name": "Scala Versions", + "url": "https://scala-code-compiler.p.rapidapi.com/versions/", + "description": "Scala Versions", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scala-code-compiler.p.rapidapi.com/versions/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scala-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": [ + { + "id": 0, + "version": "2.12.0" + }, + { + "id": 1, + "version": "2.12.4" + }, + { + "id": 2, + "version": "2.12.5" + }, + { + "id": 3, + "version": "2.13.0" + }, + { + "id": 4, + "version": "2.13.6" + } + ], + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Thu, 25 Aug 2022 16:56:16 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Scala Code Compiler", + "url": "https://scala-code-compiler.p.rapidapi.com/", + "description": "Scala Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scala-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scala-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "cpuTime": "5.68", + "memory": "166156", + "output": "Hello, World!\nwarning: 1 deprecation (since 2.13.0); re-run with -deprecation for details" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Thu, 25 Aug 2022 16:58:34 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Scala Code Compiler", + "url": "https://scala-code-compiler.p.rapidapi.com/", + "description": "Scala Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scala-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scala-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scala-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scala-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/scala_code_compiler/api.py b/toolbench/toolenv/tools/Tools/scala_code_compiler/api.py new file mode 100644 index 0000000000000000000000000000000000000000..be5cdcf8759e9bac86854c866b8146122edc3909 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scala_code_compiler/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def scala_versions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Scala Versions" + + """ + url = f"https://scala-code-compiler.p.rapidapi.com/versions/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scala-code-compiler.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/scanova_qr_code.json b/toolbench/toolenv/tools/Tools/scanova_qr_code.json new file mode 100644 index 0000000000000000000000000000000000000000..c24c7505e8bc81e3b46631167dc8ab99fb3834a5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scanova_qr_code.json @@ -0,0 +1,669 @@ +{ + "product_id": "api_525393c1-eb50-4809-8121-1ba6b6429ef2", + "tool_description": "Scanova QR Code API lets you generate custom-designed Branded QR Codes in bulk programmatically in your own mobile application or information system within few minutes.", + "home_url": "https://rapidapi.com/aashisachdeva/api/scanova-qr-code/", + "name": "Scanova QR Code", + "title": "Scanova QR Code", + "pricing": "FREE", + "tool_name": "Scanova QR Code", + "score": { + "avgServiceLevel": 100, + "avgLatency": 719, + "avgSuccessRate": 51, + "popularityScore": 8.5, + "__typename": "Score" + }, + "host": "scanova-qr-code.p.rapidapi.com", + "api_list": [ + { + "name": "SMS QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/SMS", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with the recipient phone number and pre-loaded message. When scanned, the QR Code will prompt the scanning device to 'send SMS' pre-loaded with the recipient number and message.", + "method": "GET", + "required_parameters": [ + { + "name": "phone_no", + "type": "STRING", + "description": "", + "default": "9123456789" + }, + { + "name": "message", + "type": "STRING", + "description": "", + "default": "Welcome to QR Code World!" + } + ], + "optional_parameters": [ + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + }, + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/SMS\"\nquerystring = {\"data_gradient_start_color\": \"#000000\", \"eye_color_outer\": \"#000000\", \"data_gradient_style\": \"None\", \"size\": \"m\", \"background_color\": \"#FFFFFF\", \"data_gradient_end_color\": \"#000000\", \"phone_no\": \"9123456789\", \"eye_pattern\": \"RECT_RECT\", \"data_pattern\": \"RECT\", \"error_correction\": \"M\", \"eye_color_inner\": \"#000000\", \"message\": \"Welcome to QR Code World!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/SMS\"\nquerystring = {\"data_gradient_start_color\": \"#000000\", \"eye_color_outer\": \"#000000\", \"data_gradient_style\": \"None\", \"size\": \"m\", \"background_color\": \"#FFFFFF\", \"data_gradient_end_color\": \"#000000\", \"phone_no\": \"9123456789\", \"eye_pattern\": \"RECT_RECT\", \"data_pattern\": \"RECT\", \"error_correction\": \"M\", \"eye_color_inner\": \"#000000\", \"message\": \"Welcome to QR Code World!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Email QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/email", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with the email address. When scanned, the QR Code will prompt the user to 'send an email' to the specified email address.", + "method": "GET", + "required_parameters": [ + { + "name": "address", + "type": "STRING", + "description": "", + "default": "marketing@scanova.io" + } + ], + "optional_parameters": [ + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/email\"\nquerystring = {\"background_color\": \"#FFFFFF\", \"eye_pattern\": \"RECT_RECT\", \"error_correction\": \"M\", \"size\": \"m\", \"address\": \"marketing@scanova.io\", \"data_gradient_start_color\": \"#000000\", \"data_gradient_style\": \"None\", \"data_pattern\": \"RECT\", \"eye_color_outer\": \"#000000\", \"data_gradient_end_color\": \"#000000\", \"eye_color_inner\": \"#000000\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/email\"\nquerystring = {\"background_color\": \"#FFFFFF\", \"eye_pattern\": \"RECT_RECT\", \"error_correction\": \"M\", \"size\": \"m\", \"address\": \"marketing@scanova.io\", \"data_gradient_start_color\": \"#000000\", \"data_gradient_style\": \"None\", \"data_pattern\": \"RECT\", \"eye_color_outer\": \"#000000\", \"data_gradient_end_color\": \"#000000\", \"eye_color_inner\": \"#000000\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Phone Call QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/phonecall", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with the phone number. When scanned, the QR Code will prompt the scanning device to 'dial the number'.", + "method": "GET", + "required_parameters": [ + { + "name": "number", + "type": "STRING", + "description": "", + "default": "9123456789" + } + ], + "optional_parameters": [ + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + }, + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/phonecall\"\nquerystring = {\"data_gradient_style\": \"None\", \"number\": \"9123456789\", \"eye_pattern\": \"RECT_RECT\", \"data_gradient_start_color\": \"#000000\", \"error_correction\": \"M\", \"eye_color_inner\": \"#000000\", \"data_pattern\": \"RECT\", \"background_color\": \"#FFFFFF\", \"data_gradient_end_color\": \"#000000\", \"eye_color_outer\": \"#000000\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/phonecall\"\nquerystring = {\"data_gradient_style\": \"None\", \"number\": \"9123456789\", \"eye_pattern\": \"RECT_RECT\", \"data_gradient_start_color\": \"#000000\", \"error_correction\": \"M\", \"eye_color_inner\": \"#000000\", \"data_pattern\": \"RECT\", \"background_color\": \"#FFFFFF\", \"data_gradient_end_color\": \"#000000\", \"eye_color_outer\": \"#000000\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Google Map QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/googlemaps", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with a Google Maps URL linked to specified map coordinates. When scanned, the QR Code prompts the scanning device to open the URL in a mobile browser or Google Maps mobile application (if installed)", + "method": "GET", + "required_parameters": [ + { + "name": "longitude", + "type": "STRING", + "description": "", + "default": "77.0364" + }, + { + "name": "latitude", + "type": "STRING", + "description": "", + "default": "38.8951" + } + ], + "optional_parameters": [ + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/googlemaps\"\nquerystring = {\"eye_color_inner\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"data_gradient_end_color\": \"#000000\", \"longitude\": \"77.0364\", \"latitude\": \"38.8951\", \"data_gradient_style\": \"None\", \"data_gradient_start_color\": \"#000000\", \"size\": \"m\", \"data_pattern\": \"RECT\", \"eye_color_outer\": \"#000000\", \"error_correction\": \"M\", \"background_color\": \"#FFFFFF\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/googlemaps\"\nquerystring = {\"eye_color_inner\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"data_gradient_end_color\": \"#000000\", \"longitude\": \"77.0364\", \"latitude\": \"38.8951\", \"data_gradient_style\": \"None\", \"data_gradient_start_color\": \"#000000\", \"size\": \"m\", \"data_pattern\": \"RECT\", \"eye_color_outer\": \"#000000\", \"error_correction\": \"M\", \"background_color\": \"#FFFFFF\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Wifi QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/wifi", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with WiFi network details. When scanned, the QR Code prompts the scanning device to 'Join the Network'. Note that this QR Code works only for Android devices. iPhones do not allow automatic joining of WiFi networks and will display network details as text.", + "method": "GET", + "required_parameters": [ + { + "name": "authentication", + "type": "STRING", + "description": "", + "default": "unencrypted" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + }, + { + "name": "ssid", + "type": "STRING", + "description": "", + "default": "Office-Office" + } + ], + "optional_parameters": [ + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/wifi\"\nquerystring = {\"authentication\": \"unencrypted\", \"data_gradient_end_color\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"error_correction\": \"M\", \"eye_color_inner\": \"#000000\", \"eye_color_outer\": \"#000000\", \"size\": \"m\", \"ssid\": \"Office-Office\", \"data_gradient_style\": \"None\", \"background_color\": \"#FFFFFF\", \"data_pattern\": \"RECT\", \"data_gradient_start_color\": \"#000000\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/wifi\"\nquerystring = {\"authentication\": \"unencrypted\", \"data_gradient_end_color\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"error_correction\": \"M\", \"eye_color_inner\": \"#000000\", \"eye_color_outer\": \"#000000\", \"size\": \"m\", \"ssid\": \"Office-Office\", \"data_gradient_style\": \"None\", \"background_color\": \"#FFFFFF\", \"data_pattern\": \"RECT\", \"data_gradient_start_color\": \"#000000\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Text QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/text", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with specified text. When scanned, the QR Code prompts the scanning device to display the text.", + "method": "GET", + "required_parameters": [ + { + "name": "data", + "type": "STRING", + "description": "", + "default": "Word" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + } + ], + "optional_parameters": [ + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/text\"\nquerystring = {\"data_gradient_end_color\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"data_pattern\": \"RECT\", \"data\": \"Word\", \"data_gradient_start_color\": \"#000000\", \"error_correction\": \"M\", \"data_gradient_style\": \"None\", \"eye_color_inner\": \"#000000\", \"eye_color_outer\": \"#000000\", \"background_color\": \"#FFFFFF\", \"size\": \"m\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/text\"\nquerystring = {\"data_gradient_end_color\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"data_pattern\": \"RECT\", \"data\": \"Word\", \"data_gradient_start_color\": \"#000000\", \"error_correction\": \"M\", \"data_gradient_style\": \"None\", \"eye_color_inner\": \"#000000\", \"eye_color_outer\": \"#000000\", \"background_color\": \"#FFFFFF\", \"size\": \"m\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "V-Card QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/vcard", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with specified contact information. When scanned, the QR Code prompts the scanning device to 'Save as Contact'.", + "method": "GET", + "required_parameters": [ + { + "name": "uname", + "type": "STRING", + "description": "", + "default": "Tanisha" + } + ], + "optional_parameters": [ + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "M" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/vcard\"\nquerystring = {\"error_correction\": \"M\", \"data_gradient_start_color\": \"#000000\", \"eye_color_inner\": \"#000000\", \"data_gradient_style\": \"None\", \"data_gradient_end_color\": \"#000000\", \"background_color\": \"#FFFFFF\", \"eye_color_outer\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"size\": \"m\", \"data_pattern\": \"RECT\", \"uname\": \"Tanisha\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/vcard\"\nquerystring = {\"error_correction\": \"M\", \"data_gradient_start_color\": \"#000000\", \"eye_color_inner\": \"#000000\", \"data_gradient_style\": \"None\", \"data_gradient_end_color\": \"#000000\", \"background_color\": \"#FFFFFF\", \"eye_color_outer\": \"#000000\", \"eye_pattern\": \"RECT_RECT\", \"size\": \"m\", \"data_pattern\": \"RECT\", \"uname\": \"Tanisha\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Website URL QR Code", + "url": "https://scanova-qr-code.p.rapidapi.com/v2/qrcode/url", + "description": "This request returns a Static QR Code (standard or custom-designed) encoded with a specified URL", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "error_correction", + "type": "STRING", + "description": "", + "default": "H" + }, + { + "name": "eye_pattern", + "type": "STRING", + "description": "", + "default": "RECT_RECT" + }, + { + "name": "data_gradient_style", + "type": "STRING", + "description": "", + "default": "None" + }, + { + "name": "format", + "type": "STRING", + "description": "", + "default": "png" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "m" + }, + { + "name": "eye_color_outer", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_end_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "data_gradient_start_color", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "eye_color_inner", + "type": "STRING", + "description": "", + "default": "#000000" + }, + { + "name": "url", + "type": "STRING", + "description": "", + "default": "https://scanova.io" + }, + { + "name": "data_pattern", + "type": "STRING", + "description": "", + "default": "RECT" + }, + { + "name": "background_color", + "type": "STRING", + "description": "", + "default": "#FFFFFF" + } + ], + "code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/url\"\nquerystring = {\"error_correction\": \"H\", \"eye_pattern\": \"RECT_RECT\", \"data_gradient_style\": \"None\", \"format\": \"png\", \"size\": \"m\", \"eye_color_outer\": \"#000000\", \"data_gradient_end_color\": \"#000000\", \"data_gradient_start_color\": \"#000000\", \"eye_color_inner\": \"#000000\", \"url\": \"https://scanova.io\", \"data_pattern\": \"RECT\", \"background_color\": \"#FFFFFF\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/url\"\nquerystring = {\"error_correction\": \"H\", \"eye_pattern\": \"RECT_RECT\", \"data_gradient_style\": \"None\", \"format\": \"png\", \"size\": \"m\", \"eye_color_outer\": \"#000000\", \"data_gradient_end_color\": \"#000000\", \"data_gradient_start_color\": \"#000000\", \"eye_color_inner\": \"#000000\", \"url\": \"https://scanova.io\", \"data_pattern\": \"RECT\", \"background_color\": \"#FFFFFF\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scanova-qr-code.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "scanova_qr_code" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/scanova_qr_code/api.py b/toolbench/toolenv/tools/Tools/scanova_qr_code/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2f51a1ef98da0fe90d84f3274691eea73f03a8a7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scanova_qr_code/api.py @@ -0,0 +1,334 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def sms_qr_code(phone_no: str, message: str, data_gradient_start_color: str='#000000', eye_color_outer: str='#000000', data_gradient_style: str='None', size: str='m', background_color: str='#FFFFFF', data_gradient_end_color: str='#000000', eye_pattern: str='RECT_RECT', data_pattern: str='RECT', error_correction: str='M', eye_color_inner: str='#000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with the recipient phone number and pre-loaded message. When scanned, the QR Code will prompt the scanning device to 'send SMS' pre-loaded with the recipient number and message." + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/sms" + querystring = {'phone_no': phone_no, 'message': message, } + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if size: + querystring['size'] = size + if background_color: + querystring['background_color'] = background_color + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if data_pattern: + querystring['data_pattern'] = data_pattern + if error_correction: + querystring['error_correction'] = error_correction + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def email_qr_code(address: str, background_color: str='#FFFFFF', eye_pattern: str='RECT_RECT', error_correction: str='M', size: str='m', data_gradient_start_color: str='#000000', data_gradient_style: str='None', data_pattern: str='RECT', eye_color_outer: str='#000000', data_gradient_end_color: str='#000000', eye_color_inner: str='#000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with the email address. When scanned, the QR Code will prompt the user to 'send an email' to the specified email address." + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/email" + querystring = {'address': address, } + if background_color: + querystring['background_color'] = background_color + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if error_correction: + querystring['error_correction'] = error_correction + if size: + querystring['size'] = size + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if data_pattern: + querystring['data_pattern'] = data_pattern + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def phone_call_qr_code(number: str, data_gradient_style: str='None', eye_pattern: str='RECT_RECT', data_gradient_start_color: str='#000000', error_correction: str='M', eye_color_inner: str='#000000', data_pattern: str='RECT', background_color: str='#FFFFFF', data_gradient_end_color: str='#000000', eye_color_outer: str='#000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with the phone number. When scanned, the QR Code will prompt the scanning device to 'dial the number'." + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/phonecall" + querystring = {'number': number, } + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if error_correction: + querystring['error_correction'] = error_correction + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + if data_pattern: + querystring['data_pattern'] = data_pattern + if background_color: + querystring['background_color'] = background_color + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def google_map_qr_code(longitude: str, latitude: str, eye_color_inner: str='#000000', eye_pattern: str='RECT_RECT', data_gradient_end_color: str='#000000', data_gradient_style: str='None', data_gradient_start_color: str='#000000', size: str='m', data_pattern: str='RECT', eye_color_outer: str='#000000', error_correction: str='M', background_color: str='#FFFFFF', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with a Google Maps URL linked to specified map coordinates. When scanned, the QR Code prompts the scanning device to open the URL in a mobile browser or Google Maps mobile application (if installed)" + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/googlemaps" + querystring = {'longitude': longitude, 'latitude': latitude, } + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if size: + querystring['size'] = size + if data_pattern: + querystring['data_pattern'] = data_pattern + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if error_correction: + querystring['error_correction'] = error_correction + if background_color: + querystring['background_color'] = background_color + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def wifi_qr_code(authentication: str, size: str, ssid: str, data_gradient_end_color: str='#000000', eye_pattern: str='RECT_RECT', error_correction: str='M', eye_color_inner: str='#000000', eye_color_outer: str='#000000', data_gradient_style: str='None', background_color: str='#FFFFFF', data_pattern: str='RECT', data_gradient_start_color: str='#000000', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with WiFi network details. When scanned, the QR Code prompts the scanning device to 'Join the Network'. Note that this QR Code works only for Android devices. iPhones do not allow automatic joining of WiFi networks and will display network details as text." + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/wifi" + querystring = {'authentication': authentication, 'size': size, 'ssid': ssid, } + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if error_correction: + querystring['error_correction'] = error_correction + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if background_color: + querystring['background_color'] = background_color + if data_pattern: + querystring['data_pattern'] = data_pattern + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def text_qr_code(data: str, size: str, data_gradient_end_color: str='#000000', eye_pattern: str='RECT_RECT', data_pattern: str='RECT', data_gradient_start_color: str='#000000', error_correction: str='M', data_gradient_style: str='None', eye_color_inner: str='#000000', eye_color_outer: str='#000000', background_color: str='#FFFFFF', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with specified text. When scanned, the QR Code prompts the scanning device to display the text." + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/text" + querystring = {'data': data, 'size': size, } + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if data_pattern: + querystring['data_pattern'] = data_pattern + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if error_correction: + querystring['error_correction'] = error_correction + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if background_color: + querystring['background_color'] = background_color + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def v_card_qr_code(uname: str, error_correction: str='M', data_gradient_start_color: str='#000000', eye_color_inner: str='#000000', data_gradient_style: str='None', data_gradient_end_color: str='#000000', background_color: str='#FFFFFF', eye_color_outer: str='#000000', eye_pattern: str='RECT_RECT', size: str='m', data_pattern: str='RECT', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with specified contact information. When scanned, the QR Code prompts the scanning device to 'Save as Contact'." + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/vcard" + querystring = {'uname': uname, } + if error_correction: + querystring['error_correction'] = error_correction + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if background_color: + querystring['background_color'] = background_color + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if size: + querystring['size'] = size + if data_pattern: + querystring['data_pattern'] = data_pattern + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def website_url_qr_code(error_correction: str='H', eye_pattern: str='RECT_RECT', data_gradient_style: str='None', format: str='png', size: str='m', eye_color_outer: str='#000000', data_gradient_end_color: str='#000000', data_gradient_start_color: str='#000000', eye_color_inner: str='#000000', url: str='https://scanova.io', data_pattern: str='RECT', background_color: str='#FFFFFF', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This request returns a Static QR Code (standard or custom-designed) encoded with a specified URL" + + """ + url = f"https://scanova-qr-code.p.rapidapi.com/v2/qrcode/url" + querystring = {} + if error_correction: + querystring['error_correction'] = error_correction + if eye_pattern: + querystring['eye_pattern'] = eye_pattern + if data_gradient_style: + querystring['data_gradient_style'] = data_gradient_style + if format: + querystring['format'] = format + if size: + querystring['size'] = size + if eye_color_outer: + querystring['eye_color_outer'] = eye_color_outer + if data_gradient_end_color: + querystring['data_gradient_end_color'] = data_gradient_end_color + if data_gradient_start_color: + querystring['data_gradient_start_color'] = data_gradient_start_color + if eye_color_inner: + querystring['eye_color_inner'] = eye_color_inner + if url: + querystring['url'] = url + if data_pattern: + querystring['data_pattern'] = data_pattern + if background_color: + querystring['background_color'] = background_color + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scanova-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/scheduler_rest.json b/toolbench/toolenv/tools/Tools/scheduler_rest.json new file mode 100644 index 0000000000000000000000000000000000000000..0798cb2704f921e94d73b98c5389ae284ba8315e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scheduler_rest.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_683ab388-e7d3-4cf2-af52-50169f78e6a8", + "tool_description": "Schedule REST webhooks at a given time or specified delay interval", + "home_url": "https://rapidapi.com/SchedulerRest/api/scheduler-rest/", + "name": "Scheduler.Rest", + "title": "Scheduler.Rest", + "pricing": "FREEMIUM", + "tool_name": "Scheduler.Rest", + "score": null, + "host": "scheduler-rest.p.rapidapi.com", + "api_list": [ + { + "name": "Create Scheduled/Delayed Webhook", + "url": "https://scheduler-rest.p.rapidapi.com/", + "description": "Create a webhook that will be called at a scheduled time or delayed by a specified interval. Headers and body may be specified for webhook.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scheduler-rest.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scheduler-rest.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scheduler-rest.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scheduler-rest.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/scrape_for_me.json b/toolbench/toolenv/tools/Tools/scrape_for_me.json new file mode 100644 index 0000000000000000000000000000000000000000..44ebb8f31904ba232f1feb869650f6581f99a938 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scrape_for_me.json @@ -0,0 +1,151 @@ +{ + "product_id": "api_2b911f13-ce28-45b4-ad23-d07ea3617108", + "tool_description": "scrape remotely for me through python server;\nany website instead of making the execution on your device , \nserver code is using requests & beautifulsoup\nmake sure your scripts are legal and did write it currectly", + "home_url": "https://rapidapi.com/yousuf001/api/scrape-for-me/", + "name": "scrape for me", + "title": "scrape for me", + "pricing": "FREEMIUM", + "tool_name": "scrape for me", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3681, + "avgSuccessRate": 100, + "popularityScore": 8.5, + "__typename": "Score" + }, + "host": "scrape-for-me.p.rapidapi.com", + "api_list": [ + { + "name": "post request", + "url": "https://scrape-for-me.p.rapidapi.com/post", + "description": "only post data to a website", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get and use headers", + "url": "https://scrape-for-me.p.rapidapi.com/get/h", + "description": "add the header dict to the json data", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/h\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/h\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "simple get", + "url": "https://scrape-for-me.p.rapidapi.com/get", + "description": "make only get request", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 post use find_all no headers", + "url": "https://scrape-for-me.p.rapidapi.com/post/bs4/find_all", + "description": "if you do not need headers", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 post use find_all", + "url": "https://scrape-for-me.p.rapidapi.com/post/h/bs4/find_all", + "description": "if you do not need headers remove `/h`", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/h/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/h/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "add headers", + "url": "https://scrape-for-me.p.rapidapi.com/post/h", + "description": "to post headers only add `/h` after `/post`", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/h\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/h\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 find_all", + "url": "https://scrape-for-me.p.rapidapi.com/get/h/bs4/find_all", + "description": "as the previous but with `find_all`\nif you dont want to use headers remove **/h** from the **rapidurl**", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/h/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/h/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 find_all no headers", + "url": "https://scrape-for-me.p.rapidapi.com/get/bs4/find_all", + "description": "No headers needed", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/bs4/find_all\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 find", + "url": "https://scrape-for-me.p.rapidapi.com/get/h/bs4/find", + "description": "if you want to make beautifulsoup command to get exact tags or one tag \nif you want to use `find_all` replace find in the end of url\nwhen you use bs4 add to `/get` or `get/h` \nadd `/bs4/find ` or `/bs4/find_all`", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/h/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/h/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 find no headers", + "url": "https://scrape-for-me.p.rapidapi.com/get/bs4/find", + "description": "No headers needed", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/get/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 post use find no headers", + "url": "https://scrape-for-me.p.rapidapi.com/post/bs4/find", + "description": "if you do not need headers", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "bs4 post use find", + "url": "https://scrape-for-me.p.rapidapi.com/post/h/bs4/find", + "description": "if you do not need headers remove `/h`", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/h/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://scrape-for-me.p.rapidapi.com/post/h/bs4/find\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrape-for-me.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/scrapey_link_scraper.json b/toolbench/toolenv/tools/Tools/scrapey_link_scraper.json new file mode 100644 index 0000000000000000000000000000000000000000..84d5b82e189bbb6b33512591f5c80c0a9ce209ef --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scrapey_link_scraper.json @@ -0,0 +1,167 @@ +{ + "tool_name":"Scrapey - Link Scraper", + "tool_description":"Powerful tool that enables you to extract and scrape links from web pages quickly and efficiently. With this API, you can automate the process of collecting URLs, facilitating tasks such as web crawling, data extraction, link analysis, and more.", + "title":"Scrapey - Link Scraper", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":98, + "avgLatency":979, + "avgSuccessRate":98, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/evlar-evlar-default/api/scrapey-link-scraper/", + "host":"scrapey-link-scraper.p.rapidapi.com", + "api_list":[ + { + "name":"Scrape Links", + "url":"https://scrapey-link-scraper.p.rapidapi.com/v1/scrapelinks/", + "description":"Scrape all links from URL", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"amazon.com" + } + ], + "optional_parameters":[ + { + "name":"maxlinks", + "type":"NUMBER", + "description":"", + "default":"10" + }, + { + "name":"includequery", + "type":"BOOLEAN", + "description":"", + "default":"true" + } + ], + "code":"import requests\n\nurl = \"https://scrapey-link-scraper.p.rapidapi.com/v1/scrapelinks/\"\nquerystring = {\"maxlinks\": maxlinks, \"includequery\": includequery, \"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"scrapey-link-scraper.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":"ok", + "error":null, + "data":[ + { + "text":"Amazon", + "href":"/ref=nav_bb_logo" + }, + { + "text":"Your Account", + "href":"/gp/css/homepage.html/ref=nav_bb_ya" + }, + { + "text":"Help", + "href":"/gp/help/customer/display.html/ref=nav_bb_help" + }, + { + "text":"Cart", + "href":"/gp/cart/view.html/ref=nav_bb_cart" + }, + { + "text":"", + "href":"/b/?ie=UTF8&node=2102313011&ref_=ods_gw_eng_fallback_d_h1_xpl_xpl_050122&pd_rd_w=28dmK&content-id=amzn1.sym.6f257b9d-ff82-4bf8-857f-be180a43c542&pf_rd_p=6f257b9d-ff82-4bf8-857f-be180a43c542&pf_rd_r=RMD7414DMRFKAHTCM9J5&pd_rd_wg=MXra4&pd_rd_r=4a69e134-27ae-4b35-b841-2849fe64d869" + }, + { + "text":"", + "href":"/s?i=fashion-womens&bbn=16334314011&rh=n%3A7141123011%2Cn%3A16334314011%2Cn%3A7147440011%2Cn%3A1040660%2Cn%3A1045024%2Cp_89%3ADaily+Ritual&dc&qid=1595545753&rnid=2528832011l&ref=af_gw_spb_topcatcard_sum_DR_dress" + }, + { + "text":"Shop Daily Ritual's dresses", + "href":"/s?i=fashion-womens&bbn=16334314011&rh=n%3A7141123011%2Cn%3A16334314011%2Cn%3A7147440011%2Cn%3A1040660%2Cn%3A1045024%2Cp_89%3ADaily+Ritual&dc&qid=1595545753&rnid=2528832011l&ref=af_gw_spb_topcatcard_sum_DR_dress" + }, + { + "text":"", + "href":"/events/epicdeals?deals-widget=%257B%2522presetId%2522:%2522deals-collection-TB%2522%257D" + }, + { + "text":"See more", + "href":"/events/epicdeals?deals-widget=%257B%2522presetId%2522:%2522deals-collection-TB%2522%257D" + }, + { + "text":"Women's fashion", + "href":"/gp/browse.html?node=19277531011&ref_=af_gw_quadtopcard_f_july_xcat_cml_1" + }, + { + "text":"Men's fashion", + "href":"/gp/browse.html?node=19781749011&ref_=af_gw_quadtopcard_f_july_xcat_cml_2" + }, + { + "text":"Beauty", + "href":"/gp/browse.html?node=20853252011&ref_=af_gw_quadtopcard_f_july_xcat_cml_3" + }, + { + "text":"Home", + "href":"/gp/browse.html?node=20853249011&ref_=af_gw_quadtopcard_f_july_xcat_cml_4" + }, + { + "text":"Discover items with 4+ stars", + "href":"/gp/browse.html?node=20850246011&ref_=af_gw_quadtopcard_f_july_xcat_cml" + }, + { + "text":"", + "href":"/b/ref=OUT_BS_DSC_D_EN_US?node=17900676011" + }, + { + "text":"Shop now", + "href":"/b/ref=OUT_BS_DSC_D_EN_US?node=17900676011" + }, + { + "text":"", + "href":"/gp/browse.html?node=21385226011&ref_=0824_smallspaces" + }, + { + "text":"Shop small space furniture & décor", + "href":"/gp/browse.html?node=21385226011&ref_=0824_smallspaces" + }, + { + "text":"", + "href":"/gp/browse.html?node=8497978011&ref_=ods_gw_refurb_d_xpl_evrgn" + }, + { + "text":"See all pre-owned devices", + "href":"/gp/browse.html?node=8497978011&ref_=ods_gw_refurb_d_xpl_evrgn" + }, + { + "text":"", + "href":"/gp/browse.html?node=20933248011&ref_=0713_plantsandplanters" + }, + { + "text":"Shop plants, plant care & pots", + "href":"/gp/browse.html?node=20933248011&ref_=0713_plantsandplanters" + }, + { + "text":"", + "href":"/stores/page/2712FB81-2E38-404F-ADE3-2858C4903F3A?channel=SB_gway&ref=sb_w_i_ctcdx_tshrt" + }, + { + "text":"See the full edit from Shopbop", + "href":"/stores/page/2712FB81-2E38-404F-ADE3-2858C4903F3A?channel=SB_gway&ref=sb_w_i_ctcdx_tshrt" + }, + { + "text":"", + "href":"/ref=nav_bb_footer_logo" + }, + { + "text":"Conditions of Use", + "href":"/gp/help/customer/display.html?ie=UTF8&nodeId=508088&ref_=footer_cou" + }, + { + "text":"Privacy Notice", + "href":"/gp/help/customer/display.html?ie=UTF8&nodeId=468496&ref_=footer_privacy" + }, + { + "text":"Interest-Based Ads", + "href":"/interestbasedads/ref=footer_iba" + } + ] + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/scrapey_link_scraper/api.py b/toolbench/toolenv/tools/Tools/scrapey_link_scraper/api.py new file mode 100644 index 0000000000000000000000000000000000000000..85dbe233e046c4b0d71ff45648a0850a1b7c75c8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/scrapey_link_scraper/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def scrape_links(url: str, maxlinks: int=10, includequery: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Scrape all links from URL" + + """ + url = f"https://scrapey-link-scraper.p.rapidapi.com/v1/scrapelinks/" + querystring = {'url': url, } + if maxlinks: + querystring['maxlinks'] = maxlinks + if includequery: + querystring['includequery'] = includequery + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "scrapey-link-scraper.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/screenshotapi_net.json b/toolbench/toolenv/tools/Tools/screenshotapi_net.json new file mode 100644 index 0000000000000000000000000000000000000000..2995fedece04149ba95080d5fa6e5e447704cb91 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/screenshotapi_net.json @@ -0,0 +1,166 @@ +{ + "tool_name":"ScreenshotAPI.net", + "tool_description":"Generate beautiful website screenshots using our fast website screenshot API.", + "title":"ScreenshotAPI.net", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/StableAPI/api/screenshotapi-net1/", + "host":"screenshotapi-net1.p.rapidapi.com", + "api_list":[ + { + "name":"Screenshot", + "url":"https://screenshotapi-net1.p.rapidapi.com/", + "description":"Generate beautiful website screenshots using our fast website screenshot API.", + "method":"GET", + "required_parameters":[ + { + "name":"output", + "type":"ENUM", + "description":"", + "default":"" + }, + { + "name":"token", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"url", + "type":"STRING", + "description":"", + "default":"github.com" + } + ], + "optional_parameters":[ + { + "name":"width", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"css_url", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"fresh", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"css", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"full_page", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"cookies", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"selector", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"accept_languages", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"delay", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"thumbnail_width", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"height", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"user_agent", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"ttl", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://screenshotapi-net1.p.rapidapi.com/\"\nquerystring = {\"output\": output, \"token\": token, \"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"screenshotapi-net1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "screenshot":"https://screenshot-api-net.storage.googleapis.com/github_com-zr56bq6f1uwk.png", + "url":"github.com", + "created_at":"2020-04-23 00:57:37", + "is_fresh":false + }, + "headers":{ + "cache-control":"private, must-revalidate", + "content-type":"application/json", + "date":"Sun, 26 Apr 2020 03:20:43 GMT", + "expires":"-1", + "pragma":"no-cache", + "server":"RapidAPI-1.1.0", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"SAMEORIGIN", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.1.0", + "x-ratelimit-limit":"1000", + "x-ratelimit-remaining":"997", + "x-xss-protection":"1; mode=block", + "content-length":"190", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/screenshotapi_net/api.py b/toolbench/toolenv/tools/Tools/screenshotapi_net/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e0e7ed44c05bf39a8914a4475ca46a4199b42657 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/screenshotapi_net/api.py @@ -0,0 +1,55 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def screenshot(output: str, token: str, url: str, width: int=None, css_url: str=None, fresh: bool=None, css: str=None, full_page: bool=None, cookies: str=None, selector: str=None, accept_languages: str=None, delay: int=None, thumbnail_width: int=None, height: int=None, user_agent: str=None, ttl: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate beautiful website screenshots using our fast website screenshot API." + + """ + url = f"https://screenshotapi-net1.p.rapidapi.com/" + querystring = {'output': output, 'token': token, 'url': url, } + if width: + querystring['width'] = width + if css_url: + querystring['css_url'] = css_url + if fresh: + querystring['fresh'] = fresh + if css: + querystring['css'] = css + if full_page: + querystring['full_page'] = full_page + if cookies: + querystring['cookies'] = cookies + if selector: + querystring['selector'] = selector + if accept_languages: + querystring['accept_languages'] = accept_languages + if delay: + querystring['delay'] = delay + if thumbnail_width: + querystring['thumbnail_width'] = thumbnail_width + if height: + querystring['height'] = height + if user_agent: + querystring['user_agent'] = user_agent + if ttl: + querystring['ttl'] = ttl + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "screenshotapi-net1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/secret_text.json b/toolbench/toolenv/tools/Tools/secret_text.json new file mode 100644 index 0000000000000000000000000000000000000000..98130616cdbd53e7e5722f75c767cba9de7a00bc --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secret_text.json @@ -0,0 +1,96 @@ +{ + "tool_name": "Secret Text", + "tool_description": "Convert and Reverse Text that dont let your wife,husband,BF and GF know, the Secret Text in integer format and token keep change every day which mean the text can be reversed today only", + "title": "Secret Text", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/rokkvk001/api/secret-text/", + "host": "secret-text.p.rapidapi.com", + "api_list": [ + { + "name": "reverse", + "url": "https://secret-text.p.rapidapi.com/reverse", + "description": "reverse the Secret Text to Text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/reverse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": "free tonight", + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-length": "43", + "content-type": "text/html; charset=utf-8", + "date": "Fri, 10 Feb 2023 14:17:45 GMT", + "server": "RapidAPI-1.2.8", + "x-clacks-overhead": "GNU Terry Pratchett", + "x-rapidapi-region": "AWS - ap-northeast-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "convert", + "url": "https://secret-text.p.rapidapi.com/convert", + "description": "convert the text to Secret Text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": "text example!", + "headers": {}, + "schema": {} + }, + { + "name": "now", + "url": "https://secret-text.p.rapidapi.com/now", + "description": "Get the date of server", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/now\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": "10/02/23", + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-length": "8", + "content-type": "text/html; charset=utf-8", + "date": "Fri, 10 Feb 2023 14:14:17 GMT", + "server": "RapidAPI-1.2.8", + "x-clacks-overhead": "GNU Terry Pratchett", + "x-rapidapi-region": "AWS - ap-northeast-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "reverse", + "url": "https://secret-text.p.rapidapi.com/reverse", + "description": "reverse the Secret Text to Text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/reverse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/reverse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "convert", + "url": "https://secret-text.p.rapidapi.com/convert", + "description": "convert the text to Secret Text", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://secret-text.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secret-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/secret_text/api.py b/toolbench/toolenv/tools/Tools/secret_text/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e3ee4eaef85cda51f93a4c82d754c1c7cf989c0b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secret_text/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def now(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the date of server" + + """ + url = f"https://secret-text.p.rapidapi.com/now" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "secret-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/secure_password.json b/toolbench/toolenv/tools/Tools/secure_password.json new file mode 100644 index 0000000000000000000000000000000000000000..50ff08aa5f3e7feea12ca2c332a8668b72e33ec8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secure_password.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Secure password", + "tool_description":"You provide simple easy to remember password as input and you got long and secure password as output", + "title":"Secure password", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sinke100/api/secure-password/", + "host":"secure-password.p.rapidapi.com", + "api_list":[ + { + "name":"secure password", + "url":"https://secure-password.p.rapidapi.com/enc-pass", + "description":"Takes a simple password and makes it secure", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"pass", + "type":"STRING", + "description":"", + "default":"yourpassword" + } + ], + "code":"import requests\n\nurl = \"https://secure-password.p.rapidapi.com/enc-pass\"\nquerystring = {\"pass\": pass}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secure-password.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/secure_password/api.py b/toolbench/toolenv/tools/Tools/secure_password/api.py new file mode 100644 index 0000000000000000000000000000000000000000..158f230c2fc5dcbbd0956dd313dc9b5c4639e471 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secure_password/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def secure_password(pass: str='yourpassword', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Takes a simple password and makes it secure" + + """ + url = f"https://secure-password.p.rapidapi.com/enc-pass" + querystring = {} + if pass: + querystring['pass'] = pass + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "secure-password.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/secure_password_generator.json b/toolbench/toolenv/tools/Tools/secure_password_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..0b9a0e1224efd97e7d7399c5081a1bc896137a6f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secure_password_generator.json @@ -0,0 +1,65 @@ +{ + "tool_name":"Secure Password Generator", + "tool_description":"Quickly generate a secure password.", + "title":"Secure Password Generator", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/ExoWatts/api/secure-password-generator1/", + "host":"secure-password-generator1.p.rapidapi.com", + "api_list":[ + { + "name":"generate", + "url":"https://secure-password-generator1.p.rapidapi.com/", + "description":"Quickly generate a secure password.", + "method":"GET", + "required_parameters":[ + { + "name":"length", + "type":"NUMBER", + "description":"Max: 100", + "default":"16" + } + ], + "optional_parameters":[ + { + "name":"symbols", + "type":"ENUM", + "description":"Include symbols.\nDefault: True", + "default":"" + }, + { + "name":"uppercase", + "type":"ENUM", + "description":"Include uppercase letters.\nDefault: True", + "default":"" + }, + { + "name":"numbers", + "type":"ENUM", + "description":"Include numbers.\nDefault: True", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://secure-password-generator1.p.rapidapi.com/\"\nquerystring = {\"length\": length}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secure-password-generator1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "password":"wY*RYte5G^Z#gTtH" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7618b3d7b9549c5b-IAD", + "content-type":"application/json; charset=UTF-8", + "date":"Sat, 29 Oct 2022 03:07:42 GMT", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BAyhU1XJMoSgr2MexKc5HVXYuOr6nicmDylugyZ5ebYBqr%2FAEwSb3tOfQy41UdqrPj0iA8VKx7%2FLmc%2FJbvffXKvm8eULg0m9FLqLNYvI8S5ckerYL%2FtO9f53%2FmZN1FJcYz32\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/secure_password_generator/api.py b/toolbench/toolenv/tools/Tools/secure_password_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..070d4a6408e80d2025ada1dc56f4d155243e236b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secure_password_generator/api.py @@ -0,0 +1,42 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate(length: int, symbols: str=None, uppercase: str=None, numbers: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Quickly generate a secure password." + length: Max: 100 + symbols: Include symbols. +Default: True + uppercase: Include uppercase letters. +Default: True + numbers: Include numbers. +Default: True + + """ + url = f"https://secure-password-generator1.p.rapidapi.com/" + querystring = {'length': length, } + if symbols: + querystring['symbols'] = symbols + if uppercase: + querystring['uppercase'] = uppercase + if numbers: + querystring['numbers'] = numbers + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "secure-password-generator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/secure_web_app.json b/toolbench/toolenv/tools/Tools/secure_web_app.json new file mode 100644 index 0000000000000000000000000000000000000000..8737abd68229afb0a362435568e21dd75fb9e18c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secure_web_app.json @@ -0,0 +1,46 @@ +{ + "tool_name":"Secure Web App", + "tool_description":"With This API you can enter a URL and the API will let you know if it is secure.", + "title":"Secure Web App", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/businessangelsunited/api/secure-web-app/", + "host":"secure-web-app.p.rapidapi.com", + "api_list":[ + { + "name":"url", + "url":"https://secure-web-app.p.rapidapi.com/url", + "description":"Use this endpoint to check if a site is on a secure connection", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"This endpoint will check websites and let you know if the site is secure.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://secure-web-app.p.rapidapi.com/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"secure-web-app.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{ + "A-IM":"Good" + }, + "schema":{ + "type":"object", + "properties":{ + "key1":{ + "type":"string" + }, + "key2":{ + "type":"string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/secure_web_app/api.py b/toolbench/toolenv/tools/Tools/secure_web_app/api.py new file mode 100644 index 0000000000000000000000000000000000000000..45efe1a3cdaafa88239b37eb2a99f6dcbff5cde2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/secure_web_app/api.py @@ -0,0 +1,32 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def url(url: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint to check if a site is on a secure connection" + url: This endpoint will check websites and let you know if the site is secure. + + """ + url = f"https://secure-web-app.p.rapidapi.com/url" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "secure-web-app.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/securepass_by_api_base_a_strong_random_password_generator_api.json b/toolbench/toolenv/tools/Tools/securepass_by_api_base_a_strong_random_password_generator_api.json new file mode 100644 index 0000000000000000000000000000000000000000..f5af76acecbc905c5a245a5d165172236d697571 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/securepass_by_api_base_a_strong_random_password_generator_api.json @@ -0,0 +1,24 @@ +{ + "tool_name":"SecurePass by API BASE a Strong Random Password Generator API", + "tool_description":"SecurePass by API BASE is a powerful and easy-to-use password generator API that allows developers to create highly secure and customizable passwords for their applications. With a range of options for password length, character sets, and complexity levels, SecurePass is the ideal solution for any application that requires secure password generation.", + "title":"SecurePass by API BASE a Strong Random Password Generator API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/asifzaheer158/api/securepass-by-api-base-a-strong-random-password-generator-api/", + "host":"securepass-by-api-base-a-strong-random-password-generator-api.p.rapidapi.com", + "api_list":[ + { + "name":"Generate Password", + "url":"https://securepass-by-api-base-a-strong-random-password-generator-api.p.rapidapi.com/generate_password", + "description":"The SecurePass API offers a single endpoint ( generate_password )for generating strong and secure passwords. The endpoint is designed to provide developers with an easy-to-use interface for generating custom passwords with different complexity levels, lengths, and character sets.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://securepass-by-api-base-a-strong-random-password-generator-api.p.rapidapi.com/generate_password\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"securepass-by-api-base-a-strong-random-password-generator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/securepass_by_api_base_a_strong_random_password_generator_api/api.py b/toolbench/toolenv/tools/Tools/securepass_by_api_base_a_strong_random_password_generator_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3d04f01e4ad507d0bfae1aaeca2826fbe617c8fa --- /dev/null +++ b/toolbench/toolenv/tools/Tools/securepass_by_api_base_a_strong_random_password_generator_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_password(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The SecurePass API offers a single endpoint ( generate_password )for generating strong and secure passwords. The endpoint is designed to provide developers with an easy-to-use interface for generating custom passwords with different complexity levels, lengths, and character sets." + + """ + url = f"https://securepass-by-api-base-a-strong-random-password-generator-api.p.rapidapi.com/generate_password" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "securepass-by-api-base-a-strong-random-password-generator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seedy_random_number_generator/api.py b/toolbench/toolenv/tools/Tools/seedy_random_number_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ba6d137e40f274c177ec21670ee8336fdb39cc7a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seedy_random_number_generator/api.py @@ -0,0 +1,93 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def random_matrix_2d(min: int=1000, size: str='9x9', seed: str='anything', max: int=9999, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a 2D random numbers matrix with range, seed and size." + + """ + url = f"https://seedy-random-number-generator.p.rapidapi.com/random/matrix" + querystring = {} + if min: + querystring['min'] = min + if size: + querystring['size'] = size + if seed: + querystring['seed'] = seed + if max: + querystring['max'] = max + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seedy-random-number-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random_list(min: int=1000, size: int=9, max: int=9999, seed: str='anything', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a list or array of random numbers with range, seed and size." + + """ + url = f"https://seedy-random-number-generator.p.rapidapi.com/random/list" + querystring = {} + if min: + querystring['min'] = min + if size: + querystring['size'] = size + if max: + querystring['max'] = max + if seed: + querystring['seed'] = seed + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seedy-random-number-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random_number(max: int=9999, min: int=1111, seed: str='anything', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a single random number with range and seed." + + """ + url = f"https://seedy-random-number-generator.p.rapidapi.com/random" + querystring = {} + if max: + querystring['max'] = max + if min: + querystring['min'] = min + if seed: + querystring['seed'] = seed + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seedy-random-number-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/semrush_magic_tool.json b/toolbench/toolenv/tools/Tools/semrush_magic_tool.json new file mode 100644 index 0000000000000000000000000000000000000000..94815ed5b28ae3243c920da0c3df3e99eb67513b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/semrush_magic_tool.json @@ -0,0 +1,19254 @@ +{ + "tool_name":"Semrush Magic Tool", + "tool_description":"Keyword Magic Tool. Find millions of keyword suggestions for your SEO. ", + "title":"Semrush Magic Tool", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":26211, + "avgSuccessRate":100, + "popularityScore":8.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ramcharangoodboy-rd27go0ww30/api/semrush-magic-tool/", + "host":"semrush-magic-tool.p.rapidapi.com", + "api_list":[ + { + "name":"keyword", + "url":"https://semrush-magic-tool.p.rapidapi.com/get_keyword_data", + "description":"Find long-tail keywords up to 10000. find Keyword, Volume, CPC (USD), Intent, Keyword Difficulty, SERP Features, Trend.", + "method":"GET", + "required_parameters":[ + { + "name":"keyword", + "type":"STRING", + "description":"", + "default":"pincode" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://semrush-magic-tool.p.rapidapi.com/get_keyword_data\"\nquerystring = {\"keyword\": keyword}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"semrush-magic-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Total Keywords":2121, + "matching_data":[ + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Intent":"Informational", + "Keyword":"pincode of ashok nagar", + "Keyword Difficulty":26, + "Number of Results":3150000, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tilak nagar", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of maraimalai nagar", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of west patel nagar", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of himayat nagar", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of roop nagar jammu", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of adarsh nagar", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bapu nagar jaipur", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of karve nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mohan nagar", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nehru nagar", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sas nagar mohali", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of viman nagar", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ambedkar nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ashok nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of balaji nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of dd nagar gwalior", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gautam nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of jawahar nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kamla nagar agra", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kanpur nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kirti nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of moti nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mp nagar bhopal", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of pragathi nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sanath nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sant kabir nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sarojini nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of siddharth nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sr nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of subhash nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of t nagar chennai", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tilak nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of uttam nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vasanth nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vigyan nagar kota", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of yamuna nagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode jp nagar of banglore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of a.k nagar nellore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ad nagar agartala", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of afs viman nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of agar nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of amala nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of amreepet sr nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of anand nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of anand nagar apad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ananth nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of anna nagar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ara nagar nigam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of arjun nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of asha nagar mulund", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ashok nagar eluru", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of avanthi nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of avtar nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ayurvigyan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of azad nagar kanpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of b.b nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of b.n.reddy nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bekrai nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bhadvat nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bhekrai nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bhilai nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bhopal mp nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bima nagar indore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of birsa nagar one", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of bv nagar chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of chakan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of chandan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of csa nagar lucknow", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of dada nagar kanpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of delhi gtb nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of delhi patel nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of delhi raj nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of deshabandu nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of devi nagar sodala", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of east azad nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of fatehpur nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of fatima nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of g b nagar up", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gandhi nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gandi nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gaus nagar bokaro", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gb nagar noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gonda nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gondave nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gtb nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of gtb nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of hanuman nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of hanumantha nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of hardoi azad nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of himayath nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of hisar prem nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of idpl adarsh nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ie nagar kottayam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ilak nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of indira nagar lko", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of indra nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of j k nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of j.d.nagar vja", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of j.p.nagar mysuru", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of jangalram nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of jb nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of jc nagar shimoga", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of k k nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kaleborate nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kaliket nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kalinga nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kalyani nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kamla nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kanakadas nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of karve nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kisan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kk nagar chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kk nagar trichy", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of kota vigyan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of krishna nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of lajpat nagar 3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of lajpath nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of lata nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of madhura nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of maharashtra nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mahu malvi nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mariyam nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mgr nagar chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mhan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of milind nagar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of mukherjee nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nabin nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nandan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nehru nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nehru nagar gzb", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nehru nagar patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of netaji nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of new maruthi nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of new multan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of new sunder nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nirala nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nirman nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of noble nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of nsk nagar chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of padma rao nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of padmarao nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of panduranga nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of parwana nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of patel nagar bpl", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of patel nagar patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of paten nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of patna nagar nigam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of patna sk nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of periyer nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of pradhan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of prasad nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of prasanth nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of pratap nagar agra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of preet nagar jammu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of prem nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of pune viman nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of puran nagar jammu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of r k nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rachna nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of raghuvir nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of raj nagar mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rajeev nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rajiv nagar patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ram nagar wardha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ramesh nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ranjeet nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ranjit nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rashmi nagar agra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ravi nagar nagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ravindra nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rehmath nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rihand nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of roorke gang nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rr nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of rt nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of saket nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sama nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sama nagar thane", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sanjay nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sant nagar area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sant nagar burari", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sant nagar burri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sant nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of santosh nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of santoshima nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of saroor nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of shant nagar jammu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of shashtri nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of shastri nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of shiv nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sln vivek nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sri ganga nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of ss nagar mysore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sujatha nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of surya nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of sv patel nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of swaroop nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tezpur nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tingre nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tri nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tri nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of trikuta nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of tt nagar bhopal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of up ambedkar nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of uttam nagar east", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of uttam nagar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vallathol nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vedpura g b nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vengal rao nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vidhyadhar nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vidya nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vidyadhar nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vigyan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vijay nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vijay nagar agra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vijay nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vikas nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of virgo nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vishal nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vishwas nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vivekananda nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vv nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of vv nagar bigbazar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of warje atul nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of west vinod nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincode of yadagiri nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"nagar", + "Keyword":"pincodes of sankeshwar nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Intent":"Informational", + "Keyword":"pincode of kolar road bhopal", + "Keyword Difficulty":24, + "Number of Results":73, + "SERP Features":[], + "Trend":[], + "Volume":210 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of vip road zirakpur", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of bannerghatta road", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of abu road", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ajmer road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of lodhi road", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mg road bangalore", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mg road gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mi road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of nasik road", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ring road surat", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sarjapur road", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sirsi road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of tonk road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"patna pincode of boring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincod of nanasad road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of 24 convent road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of 29 kurtia road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of a t road tinsukia", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ajmer road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of akbar road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of alembic road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of amer road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of arekere main road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of atladara road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of b.h road chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of badripur road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of bailey road patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of barakhamba road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of barpeta road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of bavla road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of beltha road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of benad road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of bhalej road anand", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of bhatar road surat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of boring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of boring road patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of boyce road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of chalakudy iq road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of chilla road banda", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of cms kanpur road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of cnk road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of curry road lalbag", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of devri road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of dharuapuram road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of east avenue road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ecr road chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of gaya tekari road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of gb road palakkad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ghodbunder road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of gotri bhayli road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of gotri road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of gotri vasna road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of grand road puri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of grant road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of gurugram mg road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of harding road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of harlur road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of hatiara road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of hosa road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of iim road lucknow", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of j m road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of j p road andheri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of j p road mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jail road nashik", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jaipur tong road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jajpur k road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jajpur road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jalna mantha road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jawpur road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jc road bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jkc college road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jms road dehra5", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of jodimetla x roads", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of kadodra road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of kalina kurla road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of kalyani road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of kanke road ranchi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of karve road pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of kazi road gangtok", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of khasa attari road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of kphb road no 4", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of krs road mysore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of laxmi road pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of lb road chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of lohara road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of m g road kochi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of m.g.road nashik", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of maal road indore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of madan gari road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mahanadu road vja", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mahanirban road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of main road shahada", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mall road kknapur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mavoor road area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of maynaguri road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mg road indore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mg road kolkata", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mg road malapuram", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mg road thrissur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of midc road no.20", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mira road mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mkn road guindy", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mount road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mugu road puthige", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mukyaprana road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of mysore road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of naraina ring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of naroli road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of nashik peth road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of nasik road camp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of necklace road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of new balmatta road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of nikol road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of niloufer road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of old airport road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of old madras road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of p.road kanpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of padi road chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of pal road jodhpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of pantheon road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of parai road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of parai road 700017", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of parola road dhule", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of pashan sus road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of patna boring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of piathan link road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of pjr enclave road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of pm road mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of pune tilk road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of r a kidwai road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of railway road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of raiya road rajkot", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of rampally x road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ranchi court road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ranchi ratu road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of rania road sirsa", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ratu road ranchi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of rc road calicut", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of rd road calicut", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of relief road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of richmond road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ring road indore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ring road mysuru", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of road no.20 midc", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of rs road chalakudy", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sa road ernakulam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sagar ring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sama savli road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of santhipura road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sb road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sd road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of seeder road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sh zayed road f3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of shankar seth road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of shivam road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sikar road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sinhgad road pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sjp road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of sohna road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ss road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of station road bbsr", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of steel plant road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of surat ring road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of t.h road chennai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of tank road delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of td road ernakulam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of tollygune road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of town kotha road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of uchat road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of vadsar road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of vasna road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of vayang gola road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of ved road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of vip road guwahati", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of vt road jaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of wardha karla road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of zoo road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"road", + "Keyword":"pincode of zoo road tiniali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Intent":"Informational", + "Keyword":"pincode of noida sector 62", + "Keyword Difficulty":25, + "Number of Results":1660000, + "SERP Features":[], + "Trend":[], + "Volume":390 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of bokaro sector 4", + "SERP Features":[], + "Trend":[], + "Volume":170 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Intent":"Informational", + "Keyword":"pincode of sector 46 gurgaon", + "Keyword Difficulty":4, + "Number of Results":72, + "SERP Features":[], + "Trend":[], + "Volume":140 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Intent":"Informational", + "Keyword":"pincode of noida sector 76", + "Keyword Difficulty":17, + "Number of Results":56, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Intent":"Informational", + "Keyword":"pincode of rohini sector 7", + "Keyword Difficulty":19, + "Number of Results":380000, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Intent":"Informational", + "Keyword":"pincode of sector 47 gurgaon", + "Keyword Difficulty":12, + "Number of Results":53, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Intent":"Informational", + "Keyword":"pincode of sector 57 gurgaon", + "Keyword Difficulty":8, + "Number of Results":65, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 21", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 56", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 50", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 39 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 31 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 43 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 69", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 137", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 22 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 23 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 78 mohali", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of vashi sector 17", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 7", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 12", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 121", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 135", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 51", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 61", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 16", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 137 noida", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 18 noida", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 43", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 71", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 15 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 88 mohali", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 13", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 14", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 15", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 23", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 49", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 67", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 68", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 11", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 120", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 125", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 126", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 134", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 15", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 16", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 18", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 19", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 20", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 22", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 41", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 44", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 52", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 63", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 70", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 74", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 75", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 78", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 13", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 18", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 3", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 100 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 21 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 22 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 38 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 44 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 50 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 50 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 51 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 56 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 62 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 63 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 67 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 68 mohali", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 70 mohali", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 74 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 75 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 76 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 78 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 80 mohali", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 91 mohali", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sohana sector 78", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of ulwe sector 19", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincod of gurgaon sector 96", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincod of sector 28b", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of a sector 62 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of airoli sector 20", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of airoli sector 8", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of bhilai sector 10", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of bhilai sector 9", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of charkopp sector 3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 18a", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 21", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 23", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 24", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarka sector 9", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of dwarks sector 8", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of ghansoli sector 4", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 18", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 19", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 22", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 24", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 25", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 31", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 32", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 38", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 4", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 40", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 46", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 47", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 48", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 50", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 51", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 52", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 54", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 55", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 57", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgaon sector 69", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of gurgoan sector 55", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of haryana sector 15", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of hsr 6th sector", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of hsr sector 1", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of kamothe sector 22", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of kamothe sector 9", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of kharghar sector 2", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of kharghar sector 5", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of manesar sector 1", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 106", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 115", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 126", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 127", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 52", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 59", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 61", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 66", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 77", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sector 79", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of mohali sectors", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of moods sector 107", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of nerul sector 44", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of nerul sector 46 a", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida 121 sector", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 110", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 122", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 128", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 142", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 143", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 168", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 23", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 25", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 26", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 29", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 40", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 45", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 47", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 49", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 53", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 57", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 6", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 60", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 64", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 66", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 67", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 7", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 71", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 73", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector 8", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of noida sector-1", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of pachkula sector-6", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of parwanoo sector 1", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of phase 7 sector 61", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 17", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 24", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 26", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 28", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 29", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 35", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 6", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector 8", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohini sector-15", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rohtak sector 4", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of rourkela sector 5", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 1 rourkela", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 10", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 10 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 106 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 107 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 108 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 10d", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 11 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 110 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 117 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 12 pkl", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 123 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 125", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 125 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 125 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 13 rohini", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 132 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 14", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 14 karnal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 144 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 15 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 15 part 2", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 15 vashi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 16", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 16 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 16 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 16 pkl", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 19", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 19 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 2 nerul", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 20", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 22 dwarka", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 22 rohini", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 22a", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 27", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 27 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 27 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 29", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 30 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 312 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 32", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 32d", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 33", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 33 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 34 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 35 chd", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 37 ggn", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 38", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 38 west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 39", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 4 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 4 rohtak", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 4 udaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 40 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 40 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 41 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 43-b", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 44", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 44 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 45", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 45 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 47", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 48 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 48 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 49 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 5 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 5 rohini", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 53 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 54 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 55 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 56", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 58 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 6 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 61 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 62", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 62 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 63 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 64 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 65 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 66", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 66 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 66 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 66 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 66gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 69 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 7", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 7 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 7 jasola", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 7 jharjar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 7 rourkela", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 70 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 71 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 71 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 73 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 74 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 75", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 75 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 77 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 77 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 79 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 7c", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 8 bhilai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 8 manesar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 80", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 82 mohali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 85 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 9 rohini", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 92 gurhaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 98 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 9a gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector 9eco green", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector chandigarh", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector v kolkata", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-12 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-14 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-14 hisar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-15 sonipat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-16 rohini", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-18 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-20 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-21 rohini", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-32 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-35a", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-37 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-52 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of sector-81 gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of ulwe sector 18", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of ulwe sector 2", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of ulwe sector 8", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of ulwe sector 9", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of vashi sector 27", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"sector", + "Keyword":"pincode of vatika sector 83", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of medical college", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"college pincode of dbatu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"college pincode of ku", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of aitam college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of alphonsa college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of am college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of ayurvedha college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of bn college patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of cipt college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of city college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of college means", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of darrang college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of dkv college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of doranda college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of esec college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of farook college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of gaya college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of ils law college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of jb college jorhat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of jkc college road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of kalladi college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of law college kiit", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of pn colleg", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of ravenshaw college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of sathaye college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of talcher college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of tezpur college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of uc college aluva", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"college", + "Keyword":"pincode of vitam college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Intent":"Informational", + "Keyword":"pincode of angul district", + "Keyword Difficulty":31, + "Number of Results":69, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of parbhani district", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of medchal district", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of erode district", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of pulwama district", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of ajmer district", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of madurai district", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of namakkal district", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of sikar district", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of ballia district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of beed district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of dindigul district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of districts of up", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of keonjhar district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of kollam district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of nagpur district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of palghar district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of thane district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of tirupur district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of trichy district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of udupi district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of vadodara district", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"637003 pincode of district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of colombia pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 110003", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 110043", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 500018", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 500085", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 500089", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 560062", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 560095", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 600045", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 700060", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 700102", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode 700107", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode-207123", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of pincode-207213", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"district of ropar pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"districts pincode of jk", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"list of up district pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of 500081 district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of all district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of araria district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of balasore district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of bharwa district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of buldana district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of buxar district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of cuddapah district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of dhalai district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of dimapur district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of district bhadhohi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of district etah", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of district etha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of districts jk", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of gadag district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of haryana districts", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of jammu district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of jk districts list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of jorhat district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of karur district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of kashmir districts", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of kolkata district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of kulgam district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of mandya district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of nainital district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of nalanda district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of parappur district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of raigad district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of rewa district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of saloni district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of sirmaur district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of sonipat district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of suryapet district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of wayanad district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of yadadri district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincode of yavatmal district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"district", + "Keyword":"pincodes of bargarh district", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Intent":"Informational", + "Keyword":"pincode of new delhi", + "Keyword Difficulty":38, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":880 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of munirka new delhi", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi list", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of patparganj delhi", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0.02, + "Group":"delhi", + "Keyword":"pincode map of delhi", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of alipur delhi", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of burari delhi", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of aiims new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of ashok nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of azadpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of badarpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of bawana delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of chhatarpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of dwarka new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of east delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of iit delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of khanpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of kirti nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of mangolpuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of mehrauli delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of model town delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nangloi delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of north delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of palam new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of rani bagh delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of rohini delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of rohini new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shahdara delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shakarpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of sultanpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of tilak nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of uttam nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of west delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"university of delhi pincode", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"all pincode area of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"all pincode list of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"all pincode of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"all pincodes of delhi ncr", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"area pincode of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"delhi no of pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"delhi pincode of cp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"delhi pincode of nagarshadi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"delhi pincode of near noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"gazipur of pincode delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"get pincode list of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"list of delhi pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"list of pincodes with delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"map of delhi pincode wise", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"maps with pincode of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"number of pincode in delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"number of pincodes in delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincod of patparganj delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode 110040 of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode 7204 of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode 7240 of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of aiims delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of anad vihar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of anand vihar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of arjun nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of ashok park delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of badli delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of bamnlol delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of begampur delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of bharatnagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of brahmanpuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of brahmapuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of brij puri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of burari new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of bvce new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of centeral delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of central delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of chanakapuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of chattrpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of chirag delhi rto", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of civil lines delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of cp in delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of dasghara delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi 110031", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi 110048", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi 110051", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi 110081", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi east zone", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi gtb nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi mandawli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi palam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi palampur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi patel nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi raj nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi shakerpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of delhi west mundka", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of dsssb delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of fsi delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of govindpuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of green park delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of gtb nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of gurgaon delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of ignou delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of ito delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of jagatpuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of jankpuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of julena gaon delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of kalkaji delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of kamla nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of lahori gate delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of laxminagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of maglam delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of mamac new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of mohipalpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of mundka delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of muzaffarpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of naraina delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nawada delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of naya bazar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nehru nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of new delhi 42", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of new delhi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of new delhi ho", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of new kondli delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nift delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nizammudin delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of noida delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nort h delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of nsp delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of okhla mandi delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of okhla new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of orn new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of padawnagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of patel chowk delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of paten nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of pilli kothi delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of pmo new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of pratap bagh delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of race course delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of roopnagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shadara delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shadipur in delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shahadar in delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shaktinagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of shastri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of sonia vihar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of south delhi iit", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of southex delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of sri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of sukhliya delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of sultanpuri delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of tank road delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of tees hazari delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of timarpur delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of tri nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of vijay nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of vijay park delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of vikas nagar delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincode of wazirabad delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincodes of delhi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"delhi", + "Keyword":"pincodes of east delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"ao code of pincode 802209", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"area code of pincode 411060", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pin code of pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code no of ayur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of adat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of amangunj mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of amarpatan mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of anandhapuram", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of arthat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of attoor", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of b n kandriga", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of barh patna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of barodameo", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of chak kalan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of chak vendal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of chalakudy", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of chavakkad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of chembra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of chengalllor", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of cherppu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of churhar mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of danapur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of devipatnam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of dheriya", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of doraha mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of elinjipra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of eravue", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of eyyal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of fatuha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of guruvayur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of igmc nagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of irinjalakuda", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of itki bero", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of jaitwara mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of jspm wagholi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kadalur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kadalur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kallur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kanjirassery", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of karalam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of katoor", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kechery", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of khamlanagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kodaly", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kodaly pady", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kolazhy", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of koppam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kothi mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kottiyur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kumaranellur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of kurichira", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of m g kavu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of mahal nagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of maihar mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of majhgawan mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of mokama", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of moti bagh 1", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of mundur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of muringoor", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of muvattupuzha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of nainwa bundi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of namanangad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of narsinghpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of nedupuzha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of nellankara", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of nellikkunnu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of nuapada", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of padali darya", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of palakkad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pannithadam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of parappur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pardi nagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pattom", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of peruvanam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pinglen", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pirarar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pudurkara", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of pulwama", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of punkunnam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of r v puram", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of raebareli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of rajavommangi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of ramnagar mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of samarlakota", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of shornur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of sonpur bihar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of thalikulam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of thamalakkal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of thana qila", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of thane west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of thiruvathra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of unchera mp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of valapad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of vallachira", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of velluthur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of venkidangue", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of venkidangve", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of vettukad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode code of waidhan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"code", + "Keyword":"pincode of mahoba diet code", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of aderapura village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of azamgarh village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of behal village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of bundi villages", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of deoli village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of dulheri village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of eco urban village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of gotlam village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of gowraram village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of harlur village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of jasdan village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of jesarva village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of kakrola village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of kallakal village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of kasarsai village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of keezhmad village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of kilsevur village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of kodathi village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of lawb village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of lawbah village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of manvi village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of marripali village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of medchal village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of nancharla village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of nayakallu village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of nayur village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of pasupila village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of pulwama villages", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of rajdhani village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of rc puram village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of rcpuram village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of sathu village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of utukuru village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village asgoli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village bankual", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village baralota", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village baskushla", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village bhituna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village deagal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village dhakia", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village dhanbad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village dhighal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village dighal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village farmana", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village ital", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village kakoshi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village kalwari", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village khokhari", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village khudian", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village kiloi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village machrouli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village mahinanal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village manakody", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village mundali", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village nangola", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village naya gaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village nuhu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village pabri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village palsora", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village singhdaha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of village vpo moga", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"village", + "Keyword":"pincode of waghodia village", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of srinagar colony", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of d d colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of friends colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of gwalior rp colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of hagadur colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of happy colony dhar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of hmt colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of hoc colony panvel", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of idukki colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of jakkariya colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of kalindi colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of keb colony btm", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of khora colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of laxmipuri colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of lda colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of lodhi colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of m s n colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of mvp colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of old gupta colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of paramount colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of parmeshwar colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of rambagh colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of rtc colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of rtc colony guntur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of s.t colony pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of sainik colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of samrai colony jal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of shahumil colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of simhapuri colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of telangana colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode of telecom colony", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"colony", + "Keyword":"pincode.of mhada colony pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Intent":"Informational", + "Keyword":"pincode of jaipur city", + "Keyword Difficulty":31, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":210 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Intent":"Informational", + "Keyword":"pincode of gaur city 2", + "Keyword Difficulty":14, + "Number of Results":81, + "SERP Features":[], + "Trend":[], + "Volume":170 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Intent":"Informational", + "Keyword":"pincode of pune city", + "Keyword Difficulty":32, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":170 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Intent":"Informational", + "Keyword":"pincode of patna city", + "Keyword Difficulty":30, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":140 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of ludhiana city", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of udaipur city", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of amritsar city", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of hitech city", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of bathinda city", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0.07, + "Group":"city", + "Keyword":"pincode of kannur city", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of thrissur city", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of panipat city", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of ahmedabad city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of aurangabad city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of bikaner city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of calicut city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of chennai city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of dehradun city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of guntur city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of indian cities", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of indore city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of jammu city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of jodhpur city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of kanpur city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of kota city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of lucknow city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of magarpatta city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of mysore city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of nanded city pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of nasik city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of new york city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of palava city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of patiala city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of raipur city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"10 pincode of kharghar city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"10001 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"123121 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"123678 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"143001 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"202390 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"205301 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"207123 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"207223 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"388110 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"629202 pincode of city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"635809 which city of pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"687457 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"751024 pincode of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"all cities of india pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city name of pincode 306022", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city name of pincode 481776", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city name of pincode 786540", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city name of pincode-682301", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city name of pincode-825421", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city of pincode 507130", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city of pincode 516429 china", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city of pincode 841301", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city of this pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city of this pincode 637405", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city pincode of france", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"city town of pincode 841301", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"list of chennai city pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"list of trichy city pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"online pincode of cities", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pa of city pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode 411023 of which city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode code of kadalur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode map of baroda city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode no of faridabad city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of 5 city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of 5 city in haryana", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of a city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of almere city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of amravati city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of auraiya city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of barwa city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of barwa city doha", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of barwa city qatar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of beawar city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of chakan city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of chd city karnal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of cities of punjab", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city 171226", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city 173024", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city college", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city etawah", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city light surat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city mall kota", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city of punjab", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of city shimla", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of coimbatore city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of datia city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of dlf city gurgaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of eco city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of famous cities", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of five big cities", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of gaur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of gaur city 2 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of gaur city noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of haldwani city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of hardoi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of hoshiarpur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of india cities", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of jalgaon city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of jalna city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of jhunjhunu city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of keshod city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of kozhikode city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of krishnanagar city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of kurukshetra city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of leh city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of miraj city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of mundra city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of new delhi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of noida city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of noida gaur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of old city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of para city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of pathankot city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of pimpari pune city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of poonch city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of punjab cities", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of raipur ps city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of ramanujam it city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of ramojifilm city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of ratnagiri city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of rudrapur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of saharanpur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of sangli city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of shillong city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of shimoga city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of sie city ranchi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of silicon city rau", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of sirhind city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of spine city mall", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of sun city mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of sushant golf city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of tamil nadu cities", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of telecom city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of the city mysore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of trichy city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of wagholi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincode of yavatmal city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincodes of delhi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincodes of ernakulam city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincodes of faridabad city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincodes of ghaziabad city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincodes of gorakhpur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"city", + "Keyword":"pincodes of noida city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Intent":"Informational", + "Keyword":"pincode list of india", + "Keyword Difficulty":39, + "Number of Results":54600000, + "SERP Features":[], + "Trend":[], + "Volume":210 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of tamil nadu", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of karnataka", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode of delhi list", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of surat", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0.01, + "Group":"list", + "Keyword":"all pincode list of india", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of mumbai", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of ahmedabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of india pdf", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of kerala", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of lucknow", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of mp", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of nagpur", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"32 pincode list of lucknow", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"all pincode list of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"chennai list of pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"download pincode list of up", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"excell list of pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"get pincode list of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"gujarat list of pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"in excel list of pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of ap pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of areas in a pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of chennai city pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of chitradurga pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of delhi pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of gurugram pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of indirapuram pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of jaipur pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of jammu area pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of madurai pincode list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of muvatupuzha pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of panchkula pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode 799288", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode from 600202", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in america", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in assam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in bihar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in gulbarga", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in honavar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in kanpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in kerala", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in rajkot", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in raxaul", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in rohtak", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode in vellore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode number", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode of goa", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode of jammu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode of kmc area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode of mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode of taluka", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincode of uk", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in durgapur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in florida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in france", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in indore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in kolar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in kollam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in malad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in mald", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in medak", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in ncr", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in punjab", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in srinagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in ta", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes in tamilna", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes nuzvid", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes of mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes of pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of pincodes with delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of post pincode 391761", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of rangareddy pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of taluk pincode darwad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of taluk pincode dricks", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of tamilnadu pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of trichy city pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list of up district pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"list pincode of selam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"maps of india pincode list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"new pincode list of nagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of agra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of assam 2018", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of china", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of coochbehar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of gurugram", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of hassan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of idar taluka", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of jammu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of rohtak", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of salem", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of sehore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of tamil", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of up east", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of vizag", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of vizag pdf", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode list of world", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode of india list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode of jk districts list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode of kolkata list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincode of mangalore list", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincodes list of carlow", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"list", + "Keyword":"pincodes list of us", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"dcp office of pincode 110048", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of ag office gwalior", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of aligarh ig office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of cm office lucknow", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of drm office nanded", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of etah ssp office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of habra post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of haltu post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of jalna post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of khunti ddc office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of kolar rto office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of konni post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of lucknow it office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of manit post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of mirzapur office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of muthi post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of narela mcd office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of nios head office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of pakur post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of post office naity", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of sasaram dm office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of sp office darrang", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of sp office jorhat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"pincode of ssp office noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"office", + "Keyword":"post office pincode of odisa", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Intent":"Commercial", + "Keyword":"pincode of my area", + "Keyword Difficulty":49, + "Number of Results":407000000, + "SERP Features":[], + "Trend":[], + "Volume":8100 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Intent":"Commercial", + "Keyword":"area pincode of my location", + "Keyword Difficulty":46, + "Number of Results":24800000, + "SERP Features":[], + "Trend":[], + "Volume":590 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of area", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"what is pincode of my area", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"find pincode of area", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"whats the pincode of my area", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"110014 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"122015 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"142105 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"205135 pincode of ehich area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"224123 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"226023 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"380051 pincode of area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"396230 pincode of this area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"412403 area of this pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"422209 pincode of what area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"560103 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"605010 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"605110 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"680121 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"688582 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"700046 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"750303 pincode of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"all pincode area of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area code of pincode 411060", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area for pincode of 560099", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area name of pincode 1100084", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area name of pincode 500013", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of 400037 pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of bombay 70 pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of chennai with pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 140806", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 382421", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 500060", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 570020", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 585401", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 691507", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 712706", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode 799009", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area of pincode no 700114", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of agartala", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of ahmedabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of banka", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of bhuj bhachau", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of ch pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of indore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of jaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of lucknow", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of nalhati", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of patiala", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of ranchi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of sec 1 rohtak", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"area pincode of surat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"how to write area of pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"kerala pincode of flood area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"list of areas in a pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"list of jammu area pincodes", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"list of pincode of kmc area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"lower area pincode of mumbai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"new area pincode of chinahat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode 500034 of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode 754141 of which area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode area of 201014", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode area of 395002", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode area of 395007", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode area of 522502", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode no of panchpara area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of action area 1 a", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of ahmedabad areas", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of all area in korba", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of area 416237", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of area 571812", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of area near me", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of area near nh44", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of area wise ranchi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of bagalkot area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of butibori area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of chennai areas", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of dibrugarh area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of fazilka area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of gaya area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of hanumangarh area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of hardoi area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of hurbour area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of jamshedpur area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of jharsuguda area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of kanpur area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of kathua area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of katni area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of kollam area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of ludhiana area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of mavoor road area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of muy area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of my current area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of mysore area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of mysore areas", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of new area morabadi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of porsche area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of pune with area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of rajgarh area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of sant nagar area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of the area m in", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of vki area jaipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode of whitefield area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincode wise area of latur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"area", + "Keyword":"pincodes of gujrat area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Intent":"Informational", + "Keyword":"pincode of bangalore airport", + "Keyword Difficulty":21, + "Number of Results":6130000, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode list of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of ejipura bangalore", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of mg road bangalore", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of ulsoor bangalore", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"560044 pincode of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"all pincodes of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"new pincodes of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincod of varthur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode numbers of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of agrani bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bagalur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bangalore 29", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bangalore 560100", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bangalore chikpet", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bangalore osborne", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bangalore rural", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bidadi bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of bnmit bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of cipet bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of dinnur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of hbr bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of hebbal bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of hennur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of jc road bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of kadur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of kengeri bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of kidwai bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of lalbaug bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of nall bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of peenya bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of thugani bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of unisoft bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of yemalur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"pincode of yemlur bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"bangalore", + "Keyword":"postal pincode of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Intent":"Informational", + "Keyword":"pincode of new delhi", + "Keyword Difficulty":38, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":880 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of munirka new delhi", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new ranip", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of supreme court", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of aiims new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of dwarka new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new maninagar", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new sangvi pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new town kolkata", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new york city", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of palam new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of rohini new delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"example of new york pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new area pincode of chinahat", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode list of nagpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of alipur unnao", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of bhiwandi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of kanhangad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of nalanchira", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of nani kadi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of parliament", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincode of vijapur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"new pincodes of bangalore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of abhilasa new sama", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of azeekkal new mahe", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of burari new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of bvce new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of dwarka new delhu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of itarsi new yard", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of kv new cantt", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of mamac new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new area morabadi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new balmatta road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new barrackpore", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new bowenpally", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new delhi 42", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new delhi city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new delhi ho", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new gidc navsari", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new hafeezpet", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new hydrabad lko", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new kondli delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new mahe", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new mahe kannur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new market bhopal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new maruthi nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new multan nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new nangal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new nashik", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new panvel sec 18", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new raipur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new sachivalaya", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new sangvi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new sunder nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new vatva", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new yard itarsi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new york us", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of new zealand", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of okhla new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of orn new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"new", + "Keyword":"pincode of pmo new delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Intent":"Informational", + "Keyword":"pincode of andheri west", + "Keyword Difficulty":21, + "Number of Results":1480000, + "SERP Features":[], + "Trend":[], + "Volume":260 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of imphal west", + "SERP Features":[], + "Trend":[], + "Volume":260 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Intent":"Informational", + "Keyword":"pincode of thane west", + "Keyword Difficulty":30, + "Number of Results":6430000, + "SERP Features":[], + "Trend":[], + "Volume":260 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Intent":"Informational", + "Keyword":"pincode of dombivali west", + "Keyword Difficulty":16, + "Number of Results":73, + "SERP Features":[], + "Trend":[], + "Volume":170 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Intent":"Informational", + "Keyword":"pincode of kalyan west", + "Keyword Difficulty":23, + "Number of Results":4700000, + "SERP Features":[], + "Trend":[], + "Volume":170 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Intent":"Informational", + "Keyword":"pincode of ghatkopar west", + "Keyword Difficulty":21, + "Number of Results":442000, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of bhandup west", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of kurla west", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of santacruz west", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of badlapur west", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west patel nagar", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of nallasopara west", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of khar west", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of vasai west", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west godavari", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of bhayander west", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of dahisar west", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of jogeshwari west", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of mahim west", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of nadia west bengal", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of thane west mumbai", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west delhi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode code of thane west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode example of itvi west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode no of kalyan west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of anna nagar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of bhayandar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of dcp west jodhpur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of delhi west mundka", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of fathehganj west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of goregain west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of govandi west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of jalahalli west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of kakkanad west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of kalwa west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of kopar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of mahi west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of malnad west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of matunga west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of milind nagar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of mulnad west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of mumbai west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of nalsopara west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of nathuwala west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of nerul west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of ponniyam west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of sector 38 west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of south west dehli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of sp imphal west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of thane west balkum", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of thane west upvan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of uttam nagar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of vidyavihar west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of virar west bolinj", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west champaran", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west hill", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west jaintia hill", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west jalpaigudi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west janakpuri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west kadungalloor", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west kallada", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west karol bagh", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west khasi hills", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west mambalam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west marredpally", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west siang", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west sikkim", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west tambaram", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west tripura", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of west vinod nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"pincode of wynnum west qld", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"west", + "Keyword":"prabhadevi pincode of west", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"what is the pincode of pune", + "Keyword Difficulty":37, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":590 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of kharadi pune", + "Keyword Difficulty":20, + "Number of Results":66, + "SERP Features":[], + "Trend":[], + "Volume":320 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of pune city", + "Keyword Difficulty":32, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":170 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of narhe pune", + "Keyword Difficulty":13, + "Number of Results":47, + "SERP Features":[], + "Trend":[], + "Volume":140 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of wakad pune", + "Keyword Difficulty":20, + "Number of Results":98, + "SERP Features":[], + "Trend":[], + "Volume":140 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of balewadi pune", + "Keyword Difficulty":11, + "Number of Results":46, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of baner pune", + "Keyword Difficulty":23, + "Number of Results":98, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of kondhwa pune", + "Keyword Difficulty":17, + "Number of Results":68, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of undri pune", + "Keyword Difficulty":8, + "Number of Results":42, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Intent":"Informational", + "Keyword":"pincode of wagholi pune", + "Keyword Difficulty":17, + "Number of Results":64, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune station", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of nigdi pune", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of ghorpadi pune", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of shivane pune", + "SERP Features":[], + "Trend":[], + "Volume":50 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pimple gurav pune", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of karve nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of akurdi pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of aundh pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of balaji nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of bavdhan pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of bhosari pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of bibwewadi pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of chakan pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of chikhali pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of chinchwad pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of hinjewadi pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of karvenagar pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of katraj pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of lohegaon pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of manjari pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of moshi pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of nanded city pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of new sangvi pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune aundh", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune baner", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune hinjewadi", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of shivajinagar pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of thergaon pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of yerwada pune", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"all pincode of pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"area pincode of ch pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"list of pincode in pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"list of pincodes of pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincod of pune mh", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode liat of pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode liat of pune 411057", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode no of baner pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode no of pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode number of khed pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of aaukardi in pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of ait pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of ambegaon bk pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of aundh gaon pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of baner gaon pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of bhavani peth pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of bhugaon pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of bopodi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of chandannagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of dehuroad pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of dhanori pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of dighi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of fatima nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of gonda nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of hadapar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of hadpsar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of handewadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of kal bhor pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of kalwad vasti pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of karadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of karve road pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of kasba peth pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of khanapur pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of khed pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of kolhewadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of kurkumbh pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of laxmi road pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of loni kalbhor pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of mahalunge pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of maharashtra pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of mamurdi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of manchar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of market yard pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of midc bhosari pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of mulshi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of narayangaon pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of nashik pata pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of nashikopata pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of nehrunagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of nigadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of parvati pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of phursungi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pimpari pune city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune 411027", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune 411057", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune 412210", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune bavdhan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune cam", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune camp", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune chinchwad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune hinjewadhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune kharadi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune kondhwa", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune lohegaon", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune morwadi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune narhe", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune nigdi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune pashan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune pimpri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune pisoli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune ravivar peth", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune tilk road", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune university", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune viman nagar", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune wagholi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune wan", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune wasdai", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune with area", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of pune with name", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of rahatani pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of rahatni pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of rajur pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of s.t colony pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of sahakarnagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of sanaswadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of sant nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of saras bag pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of satavnagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of shivaipark pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of sinhgad road pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of somatane pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of suncity pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of susgaon pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of swargate pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of tal haveli pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of talawade pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of tathawade pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of tathwada pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of udapur in pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of vadgaon bk pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of vadgaon pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of varsha park pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of vidya nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of vishal nagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of wakdewadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of wakkad pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of wanowrie pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of wanwadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of warje naka pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of wipro pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of yamunanagar pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode of yewalewadi pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode pune of gusri", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"pune", + "Keyword":"pincode.of mhada colony pune", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"gujrat pincode all post of", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"list of post pincode 391761", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of ariyallur post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of arumanai post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of beenachi post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of habra post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of haltu post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of idar post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of india post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of indian post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of jagalur post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of jalna post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of kanagamuthu post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of kaniyapuram post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of karnoor post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of konni post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of manit post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of movvar post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of muthi post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of nagasandra post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of nellicode post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of nellikkode post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of nellikode post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of oorupoika post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of pakur post office", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of pallippuram post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of patiala dcw post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post abhaypur", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post arvi rajura", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post jaddu pipra", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post mukkattukara", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post office naity", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post pandhakal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of post yachuli", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of sasthavattom post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of thomas town post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"pincode of vishwaneedam post", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"post offce of pincode 691533", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"post", + "Keyword":"post office pincode of odisa", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of abids hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of meerpet hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode list of hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of bhel hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of jntu hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of koti hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of moulali hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of nagole hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of uppal hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"hyderabad pincodes of", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode map of hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of adikmet hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of balmrai hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of bits hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of cas hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of gvk one hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of hyderabad abidas", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of hyderabad iiit", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of hyderabad uppal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of hyderabad upppal", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of karwan hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of khilwat hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of mgbs hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of nagaram hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of nift hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of suncity hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of suraram hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"hyderabad", + "Keyword":"pincode of tadban hyderabad", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Intent":"Informational", + "Keyword":"pincode of noida", + "Keyword Difficulty":37, + "Number of Results":0, + "SERP Features":[], + "Trend":[], + "Volume":1600 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Intent":"Informational", + "Keyword":"pincode of noida sector 62", + "Keyword Difficulty":25, + "Number of Results":1660000, + "SERP Features":[], + "Trend":[], + "Volume":390 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Intent":"Informational", + "Keyword":"pincode of noida sector 76", + "Keyword Difficulty":17, + "Number of Results":56, + "SERP Features":[], + "Trend":[], + "Volume":110 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida up", + "SERP Features":[], + "Trend":[], + "Volume":90 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida phase 2", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 50", + "SERP Features":[], + "Trend":[], + "Volume":70 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 137", + "SERP Features":[], + "Trend":[], + "Volume":40 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 12", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 121", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 135", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 51", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 61", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 137 noida", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 18 noida", + "SERP Features":[], + "Trend":[], + "Volume":30 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 62", + "SERP Features":[], + "Trend":[], + "Volume":20 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida extension", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 63", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 11", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 120", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 125", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 126", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 134", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 15", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 16", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 18", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 19", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 20", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 22", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 41", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 44", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 52", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 63", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 70", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 74", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 75", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 78", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 100 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 22 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 44 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 50 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 62 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 63 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 74 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 75 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 76 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 78 noida", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"delhi pincode of near noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"number of pincodes in noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of a sector 62 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of b-121 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of bhangal noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of eta greater noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of gaur city 2 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of gaur city noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of gb nagar noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of geater noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of gijhore noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of gratter noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of greater noida p4", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of greter noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of greter noida xu 2", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of khora gaun noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of kothari noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of labor chouk noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 121 sector", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 50", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 53", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 59", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 63 g block", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 76", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida 93a", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida delhi", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida extensionn", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida extention", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida gaur city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida indrapuram", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida se 12", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 121", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 125", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 137", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 143", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 15", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 16", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 49", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 54", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 61", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 64", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 71", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec 76", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec sec22", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sec-41", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sectoe 35", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 110", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 122", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 128", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 142", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 143", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 168", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 23", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 25", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 26", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 29", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 3", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 40", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 45", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 47", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 49", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 53", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 57", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 6", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 60", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 64", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 66", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 67", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 7", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 71", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 73", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector 8", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector-1", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of noida sector56", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of round about noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sec 141 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sec 53 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sec 60 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sec 66 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sec 78 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sectoe 159 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 107 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 11 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 110 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 123 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 125 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 132 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 144 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 15 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 16 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 19 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 27 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 40 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 48 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 58 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 64 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 65 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 66 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 70 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 71 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 73 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 77 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector 98 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sector-20 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of sharfabbad noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of srctor 7 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of ssp office noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincode of techzone 4 noida", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"noida", + "Keyword":"pincodes of noida city", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"institute", + "Keyword":"institute pincode of nios", + "SERP Features":[], + "Trend":[], + "Volume":10 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"institute", + "Keyword":"institute of science pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"institute", + "Keyword":"institute pincode of tmbu", + "SERP Features":[], + "Trend":[], + "Volume":0 + }, + { + "CPC (USD)":0, + "Competitive Density":0, + "Group":"institute", + "Keyword":"meaning of institute pincode", + "SERP Features":[], + "Trend":[], + "Volume":0 + } + ] + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7f2bb5f9adf787f3-SIN", + "content-type":"application/json", + "date":"Mon, 07 Aug 2023 01:22:54 GMT", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8", + "x-render-origin-server":"gunicorn" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/semrush_magic_tool/api.py b/toolbench/toolenv/tools/Tools/semrush_magic_tool/api.py new file mode 100644 index 0000000000000000000000000000000000000000..491030203476e58ca070535c81e945d2fcbc632d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/semrush_magic_tool/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def keyword(keyword: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find long-tail keywords up to 10000. find Keyword, Volume, CPC (USD), Intent, Keyword Difficulty, SERP Features, Trend." + + """ + url = f"https://semrush-magic-tool.p.rapidapi.com/get_keyword_data" + querystring = {'keyword': keyword, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "semrush-magic-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/send_ecards.json b/toolbench/toolenv/tools/Tools/send_ecards.json new file mode 100644 index 0000000000000000000000000000000000000000..425594cfa328497fa6b4882d71fba1d0cfccc778 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/send_ecards.json @@ -0,0 +1,70 @@ +{ + "product_id": "53aa509be4b07e1f4ebeb4a1", + "tool_description": "Send timely thank you, birthday, happy holidays and other high-quality, creative e-cards to your customers and business partners.", + "home_url": "https://rapidapi.com/arik/api/send-ecards/", + "name": "Send ECards", + "title": "Send ECards", + "pricing": "FREEMIUM", + "tool_name": "Send ECards", + "score": null, + "host": "arik-e-cards.p.rapidapi.com", + "api_list": [ + { + "name": "Send Card", + "url": "https://arik-e-cards.p.rapidapi.com/", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "The name of the sender", + "default": "Joe" + }, + { + "name": "fromAddress", + "type": "STRING", + "description": "The email address of the sender", + "default": "joe@example.com" + }, + { + "name": "to", + "type": "STRING", + "description": "The name of the receiver", + "default": "Mary" + }, + { + "name": "toAddress", + "type": "STRING", + "description": "The email address of the receiver", + "default": "mary@example.com" + }, + { + "name": "message", + "type": "STRING", + "description": "Your personalized message", + "default": "Happy Birthday!" + }, + { + "name": "cardTemplateId", + "type": "STRING", + "description": "The ECard Tempalte ID (See list at http://thousandwordscards.com/api/listCards/)", + "default": "3309" + } + ], + "optional_parameters": [ + { + "name": "subject", + "type": "STRING", + "description": "", + "default": "Happy Birthday Joe!" + } + ], + "code": "import requests\n\nurl = \"https://arik-e-cards.p.rapidapi.com/\"\nquerystring = {\"from\": \"Joe\", \"fromAddress\": \"joe@example.com\", \"to\": \"Mary\", \"toAddress\": \"mary@example.com\", \"message\": \"Happy Birthday!\", \"cardTemplateId\": \"3309\", \"subject\": \"Happy Birthday Joe!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"arik-e-cards.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://arik-e-cards.p.rapidapi.com/\"\nquerystring = {\"from\": \"Joe\", \"fromAddress\": \"joe@example.com\", \"to\": \"Mary\", \"toAddress\": \"mary@example.com\", \"message\": \"Happy Birthday!\", \"cardTemplateId\": \"3309\", \"subject\": \"Happy Birthday Joe!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"arik-e-cards.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/sentence_case_converter_by_capitalize_my_title.json b/toolbench/toolenv/tools/Tools/sentence_case_converter_by_capitalize_my_title.json new file mode 100644 index 0000000000000000000000000000000000000000..16b6917b8536d802ef76748b89812275d39accd2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sentence_case_converter_by_capitalize_my_title.json @@ -0,0 +1,134 @@ +{ + "tool_name": "Sentence Case Converter by Capitalize My Title", + "tool_description": "Converts text into sentence case, taking proper nouns into account.", + "title": "Sentence Case Converter by Capitalize My Title", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/capitalize-my-title-cmt/api/sentence-case-converter-by-capitalize-my-title/", + "host": "sentence-case-converter-by-capitalize-my-title.p.rapidapi.com", + "api_list": [ + { + "name": "Sentence Case", + "url": "https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/", + "description": "Converts multiple provided titles to sentence case.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sentence-case-converter-by-capitalize-my-title.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "type": "array", + "items": { + "type": "array" + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + { + "name": "Sentence Case", + "url": "https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/{title}", + "description": "Converts text to sentence case. See the \"About\" tab for a detailed description of the parameters.", + "method": "GET", + "required_parameters": [ + { + "name": "title", + "type": "string", + "description": "", + "default": "capitalize this title now" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/{title}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sentence-case-converter-by-capitalize-my-title.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "status": { + "type": "string" + }, + "code": { + "type": "integer" + }, + "message": { + "type": "string" + }, + "data": { + "type": "object", + "properties": { + "input": { + "type": "string" + }, + "output": { + "type": "string" + }, + "style": { + "type": "string" + }, + "word-count": { + "type": "integer" + }, + "char-count": { + "type": "integer" + } + } + } + } + } + }, + { + "name": "Sentence Case", + "url": "https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/", + "description": "Converts multiple provided titles to sentence case.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sentence-case-converter-by-capitalize-my-title.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sentence-case-converter-by-capitalize-my-title.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "type": "array", + "items": { + "type": "array" + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/sentence_case_converter_by_capitalize_my_title/api.py b/toolbench/toolenv/tools/Tools/sentence_case_converter_by_capitalize_my_title/api.py new file mode 100644 index 0000000000000000000000000000000000000000..94f0ef3a97f35dd009a79d9511747950179593e2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sentence_case_converter_by_capitalize_my_title/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def sentence_case(title: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Converts text to sentence case. See the "About" tab for a detailed description of the parameters." + + """ + url = f"https://sentence-case-converter-by-capitalize-my-title.p.rapidapi.com/{title}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "sentence-case-converter-by-capitalize-my-title.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/sentence_case_converter_truecaser.json b/toolbench/toolenv/tools/Tools/sentence_case_converter_truecaser.json new file mode 100644 index 0000000000000000000000000000000000000000..fff8a486c8b4a643e26e5b4f378dd7d0feea96ac --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sentence_case_converter_truecaser.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_e6e061b0-c0ba-4a04-9e31-03c47343b980", + "tool_description": "Corrects/restores the capitalization of text, taking proper nouns into account.", + "home_url": "https://rapidapi.com/Matt11/api/sentence-case-converter-truecaser/", + "name": "Sentence Case Converter - Truecaser", + "title": "Sentence Case Converter - Truecaser", + "pricing": "FREEMIUM", + "tool_name": "Sentence Case Converter - Truecaser", + "score": { + "avgServiceLevel": 100, + "avgLatency": 136, + "avgSuccessRate": 100, + "popularityScore": 9.5, + "__typename": "Score" + }, + "host": "sentence-case-converter-truecaser.p.rapidapi.com", + "api_list": [ + { + "name": "Sentence Case", + "url": "https://sentence-case-converter-truecaser.p.rapidapi.com/v1/SentenceCase", + "description": "Converts text to sentence case. See the \"About\" tab for a detailed description of the parameters. Please note that the unit for your quota is characters, not requests.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sentence-case-converter-truecaser.p.rapidapi.com/v1/SentenceCase\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sentence-case-converter-truecaser.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://sentence-case-converter-truecaser.p.rapidapi.com/v1/SentenceCase\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sentence-case-converter-truecaser.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_audit.json b/toolbench/toolenv/tools/Tools/seo_audit.json new file mode 100644 index 0000000000000000000000000000000000000000..fef3a509d528a10526afb7a9f66b12e83eba490f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_audit.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_5e75ce5b-72c2-4601-978d-c9e541bfda91", + "tool_description": "The best SEO extraction tool | Investigates any webpage and generates a comprehensive SEO report | (read the docs for more info)", + "home_url": "https://rapidapi.com/shishir3324kumar-sKDnKH8uNpZ/api/seo-audit1/", + "name": "SEO Audit", + "title": "SEO Audit", + "pricing": "FREEMIUM", + "tool_name": "SEO Audit", + "score": { + "avgServiceLevel": 100, + "avgLatency": 605, + "avgSuccessRate": 89, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "seo-audit1.p.rapidapi.com", + "api_list": [ + { + "name": "audit", + "url": "https://seo-audit1.p.rapidapi.com/audit", + "description": "**Examines a webpage and creates an in-depth SEO report**", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://seo-audit1.p.rapidapi.com/audit\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-audit1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://seo-audit1.p.rapidapi.com/audit\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-audit1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_checker.json b/toolbench/toolenv/tools/Tools/seo_checker.json new file mode 100644 index 0000000000000000000000000000000000000000..5225d397a536a3473285fedcd91ca1ab1e630f89 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_checker.json @@ -0,0 +1,112 @@ +{ + "tool_name":"SEO Checker", + "tool_description":"SEO Website Checker, Extraction and Analyze/Analytic Tools Report\nI'm on telegram chat me if there a problem/request\nhttps://t.me/iiyann25", + "title":"SEO Checker", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":10637, + "avgSuccessRate":97, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/mohamadnurdiansyah25/api/seo-checker2/", + "host":"seo-checker2.p.rapidapi.com", + "api_list":[ + { + "name":"Analyze V2", + "url":"https://seo-checker2.p.rapidapi.com/analyze-v2", + "description":"analyze page speed with more results information", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://google.com" + } + ], + "optional_parameters":[ + { + "name":"category", + "type":"STRING", + "description":"the options: **accessibility, best-practices, performance, seo, pwa**. default: performance ", + "default":"" + }, + { + "name":"strategy", + "type":"STRING", + "description":"the options: **desktop, mobile** default: empty", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://seo-checker2.p.rapidapi.com/analyze-v2\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-checker2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Analyze", + "url":"https://seo-checker2.p.rapidapi.com/analyze", + "description":"analyze page speed", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://google.com" + } + ], + "optional_parameters":[ + { + "name":"strategy", + "type":"STRING", + "description":"the options: **desktop, mobile** default: empty", + "default":"" + }, + { + "name":"category", + "type":"STRING", + "description":"the options: **accessibility, best-practices, performance, seo, pwa**. default: performance ", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://seo-checker2.p.rapidapi.com/analyze\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-checker2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Summary", + "url":"https://seo-checker2.p.rapidapi.com/summary", + "description":"Summary SEO", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-checker2.p.rapidapi.com/summary\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-checker2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_checker/api.py b/toolbench/toolenv/tools/Tools/seo_checker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d5fa4a2f141578ff45a4bf9ff2b43dd1407c7bba --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_checker/api.py @@ -0,0 +1,83 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def analyze_v2(url: str, category: str=None, strategy: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "analyze page speed with more results information" + category: the options: **accessibility, best-practices, performance, seo, pwa**. default: performance + strategy: the options: **desktop, mobile** default: empty + + """ + url = f"https://seo-checker2.p.rapidapi.com/analyze-v2" + querystring = {'url': url, } + if category: + querystring['category'] = category + if strategy: + querystring['strategy'] = strategy + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-checker2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def analyze(url: str, strategy: str=None, category: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "analyze page speed" + strategy: the options: **desktop, mobile** default: empty + category: the options: **accessibility, best-practices, performance, seo, pwa**. default: performance + + """ + url = f"https://seo-checker2.p.rapidapi.com/analyze" + querystring = {'url': url, } + if strategy: + querystring['strategy'] = strategy + if category: + querystring['category'] = category + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-checker2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def summary(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Summary SEO" + + """ + url = f"https://seo-checker2.p.rapidapi.com/summary" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-checker2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seo_count_website_pages_in_google_index.json b/toolbench/toolenv/tools/Tools/seo_count_website_pages_in_google_index.json new file mode 100644 index 0000000000000000000000000000000000000000..54fdc99766b3ea289a61dbd25643ca401526f447 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_count_website_pages_in_google_index.json @@ -0,0 +1,37 @@ +{ + "tool_name":"SEO - Count website pages in Google index", + "tool_description":"API allows quickly and easily determine the number of pages from a particular website that are indexed in Google's", + "title":"SEO - Count website pages in Google index", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":788, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/barvanet-barvanet-default/api/seo-count-website-pages-in-google-index/", + "host":"seo-count-website-pages-in-google-index.p.rapidapi.com", + "api_list":[ + { + "name":"countPages", + "url":"https://seo-count-website-pages-in-google-index.p.rapidapi.com/", + "description":"Count website pages in Google index", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-count-website-pages-in-google-index.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-count-website-pages-in-google-index.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_count_website_pages_in_google_index/api.py b/toolbench/toolenv/tools/Tools/seo_count_website_pages_in_google_index/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c7e80c0196509e75c4655d9fa56d3ded65797fc4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_count_website_pages_in_google_index/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def countpages(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Count website pages in Google index" + + """ + url = f"https://seo-count-website-pages-in-google-index.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-count-website-pages-in-google-index.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seo_extraction.json b/toolbench/toolenv/tools/Tools/seo_extraction.json new file mode 100644 index 0000000000000000000000000000000000000000..eaf43971eb03c82c97108669d8312ce18c861eca --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_extraction.json @@ -0,0 +1,79 @@ +{ + "product_id": "586534c3e4b01243afa5ebd0", + "tool_description": "Extract from an URL the major SEO tags : title, description, H1, H2, H3, and links.", + "home_url": "https://rapidapi.com/Canssens/api/seo-extraction/", + "name": "SEO extraction", + "title": "SEO extraction", + "pricing": "FREEMIUM", + "tool_name": "SEO extraction", + "score": { + "avgServiceLevel": 99, + "avgLatency": 2537, + "avgSuccessRate": 98, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "canssens-seo-extraction-v1.p.rapidapi.com", + "api_list": [ + { + "name": "/seo/api/", + "url": "https://canssens-seo-extraction-v1.p.rapidapi.com/seo/api/", + "description": "Extract some SEO data from a website", + "method": "POST", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "The url of the website", + "default": "www.google.com" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://canssens-seo-extraction-v1.p.rapidapi.com/seo/api/\"\nquerystring = {\"url\": \"www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canssens-seo-extraction-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://canssens-seo-extraction-v1.p.rapidapi.com/seo/api/\"\nquerystring = {\"url\": \"www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canssens-seo-extraction-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "properties": { + "description": { + "type": "string" + }, + "h1": { + "items": { + "type": "string" + }, + "type": "array" + }, + "h2": { + "type": "array" + }, + "h3": { + "items": { + "type": "string" + }, + "type": "array" + }, + "keywords": { + "type": "string" + }, + "links": { + "items": { + "type": "string" + }, + "type": "array" + }, + "og_description": { + "type": "string" + }, + "title": { + "type": "string" + }, + "url": { + "type": "string" + } + }, + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_extraction/api.py b/toolbench/toolenv/tools/Tools/seo_extraction/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f21189a2e380f90caf19cb5813d6776528322d0f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_extraction/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def api_seo(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Extract some SEO data from a website." + + """ + url = f"https://seo-extraction1.p.rapidapi.com/seo" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-extraction1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seo_extraction_v2/api.py b/toolbench/toolenv/tools/Tools/seo_extraction_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f21189a2e380f90caf19cb5813d6776528322d0f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_extraction_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def api_seo(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Extract some SEO data from a website." + + """ + url = f"https://seo-extraction1.p.rapidapi.com/seo" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-extraction1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seo_fast_audit.json b/toolbench/toolenv/tools/Tools/seo_fast_audit.json new file mode 100644 index 0000000000000000000000000000000000000000..cfda0bb02631d1d8d91d001c3a7650250d56d7ea --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_fast_audit.json @@ -0,0 +1,364 @@ +{ + "tool_name":"SEO Fast Audit", + "tool_description":"One click onpage SEO audit API : Analyse the content from an URL the major SEO tags : title, description, H1, img, and links. insanely fast < 200ms", + "title":"SEO Fast Audit", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":97, + "avgLatency":1284, + "avgSuccessRate":97, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/DocteurSEO/api/seo-fast-audit/", + "host":"seo-fast-audit.p.rapidapi.com", + "api_list":[ + { + "name":"Scraper", + "url":"https://seo-fast-audit.p.rapidapi.com/scraper", + "description":"Gets the text of any html selector", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://docteurseo.fr/" + }, + { + "name":"selector", + "type":"STRING", + "description":"", + "default":"h1" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-fast-audit.p.rapidapi.com/scraper\"\nquerystring = {\"url\": url, \"selector\": selector}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-fast-audit.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Analysis", + "url":"https://seo-fast-audit.p.rapidapi.com/", + "description":"Analyse the content from URL", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://docteurseo.fr/" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-fast-audit.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-fast-audit.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "result":{ + "type":"object", + "properties":{ + "wordsCounts":{ + "type":"integer" + }, + "googleAnalytics":{ + "type":"boolean" + }, + "facebookPixel":{ + "type":"boolean" + }, + "wordpress":{ + "type":"boolean" + }, + "shopify":{ + "type":"boolean" + }, + "prestashop":{ + "type":"boolean" + }, + "title":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "words":{ + "type":"integer" + } + } + } + } + } + }, + "h1":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "words":{ + "type":"integer" + } + } + } + } + } + }, + "a":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "href":{ + "type":"string" + }, + "text":{ + "type":"string" + }, + "words":{ + "type":"integer" + } + } + } + } + } + }, + "img":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + }, + "meta":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + }, + "b":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + }, + "strong":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + }, + "h2":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "words":{ + "type":"integer" + } + } + } + } + } + }, + "h3":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "words":{ + "type":"integer" + } + } + } + } + } + }, + "h4":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + }, + "h5":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + }, + "h6":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + }, + "div":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "words":{ + "type":"integer" + } + } + } + } + } + }, + "html":{ + "type":"object", + "properties":{ + "tag":{ + "type":"string" + }, + "counts":{ + "type":"integer" + }, + "data":{ + "type":"array" + } + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_fast_audit/api.py b/toolbench/toolenv/tools/Tools/seo_fast_audit/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ceed631a947bcddd6da38df2b7e30d6b9529ab0c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_fast_audit/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def scraper(url: str, selector: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the text of any html selector" + + """ + url = f"https://seo-fast-audit.p.rapidapi.com/scraper" + querystring = {'url': url, 'selector': selector, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-fast-audit.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def analysis(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Analyse the content from URL" + + """ + url = f"https://seo-fast-audit.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-fast-audit.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seo_keyword_research.json b/toolbench/toolenv/tools/Tools/seo_keyword_research.json new file mode 100644 index 0000000000000000000000000000000000000000..40d559e46f9488174a202e761802492064e3e34e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_keyword_research.json @@ -0,0 +1,63 @@ +{ + "tool_name":"SEO Keyword Research", + "tool_description":"Keyword Research helps to analyze keywords and related keywords competitions , search volume (google) and CPC. For private plans, custom plans, custom billing contact : info@getecz.com", + "title":"SEO Keyword Research", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1409, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ajithjojo1230/api/seo-keyword-research/", + "host":"seo-keyword-research.p.rapidapi.com", + "api_list":[ + { + "name":"Keyword Research API", + "url":"https://seo-keyword-research.p.rapidapi.com/keynew.php", + "description":"Keyword Research API", + "method":"GET", + "required_parameters":[ + { + "name":"keyword", + "type":"STRING", + "description":"", + "default":"email marketing" + }, + { + "name":"country", + "type":"STRING", + "description":"", + "default":"in" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-keyword-research.p.rapidapi.com/keynew.php\"\nquerystring = {\"keyword\": keyword, \"country\": country}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-keyword-research.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Global Result (single)", + "url":"https://seo-keyword-research.p.rapidapi.com/global.php", + "description":"Keyword Research API", + "method":"GET", + "required_parameters":[ + { + "name":"keyword", + "type":"STRING", + "description":"", + "default":"email marketing" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-keyword-research.p.rapidapi.com/global.php\"\nquerystring = {\"keyword\": keyword}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-keyword-research.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_keyword_research/api.py b/toolbench/toolenv/tools/Tools/seo_keyword_research/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2889dbf9d0a4a0e769d9c78f4852931967c0cd45 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_keyword_research/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def keyword_research_api(keyword: str, country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Keyword Research API" + + """ + url = f"https://seo-keyword-research.p.rapidapi.com/keynew.php" + querystring = {'keyword': keyword, 'country': country, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-keyword-research.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def global_result_single(keyword: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Keyword Research API" + + """ + url = f"https://seo-keyword-research.p.rapidapi.com/global.php" + querystring = {'keyword': keyword, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-keyword-research.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/seo_meta_tag_search.json b/toolbench/toolenv/tools/Tools/seo_meta_tag_search.json new file mode 100644 index 0000000000000000000000000000000000000000..0ba843d969478e13883de7469a2561df235a6923 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_meta_tag_search.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Seo Meta Tag Search", + "tool_description":"Enter a site URL and extract its meta tags, social media tags, h content, and body content as text. Also provides a SEO Score based on meta tags included or missing. If a tag is missing it will return the result none for that tag.", + "title":"Seo Meta Tag Search", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/vanderzone/api/seo-meta-tag-search/", + "host":"seo-meta-tag-search.p.rapidapi.com", + "api_list":[ + { + "name":"Import URL", + "url":"https://seo-meta-tag-search.p.rapidapi.com/", + "description":"Pass in the url to be imported and meta tags extracted, e.g: https://bing.com/ Must contain the http or https and be a valid url or will return null. This data will be cached unless force is passed in.", + "method":"GET", + "required_parameters":[ + { + "name":"import_url", + "type":"STRING", + "description":"", + "default":"https://bing.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://seo-meta-tag-search.p.rapidapi.com/\"\nquerystring = {\"import_url\": import_url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"seo-meta-tag-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/seo_meta_tag_search/api.py b/toolbench/toolenv/tools/Tools/seo_meta_tag_search/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9c0a96e62615d627580797faa50aaeeacbd7b792 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/seo_meta_tag_search/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def import_url(import_url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass in the url to be imported and meta tags extracted, e.g: https://bing.com/ Must contain the http or https and be a valid url or will return null. This data will be cached unless force is passed in." + + """ + url = f"https://seo-meta-tag-search.p.rapidapi.com/" + querystring = {'import_url': import_url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "seo-meta-tag-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/serpstat.json b/toolbench/toolenv/tools/Tools/serpstat.json new file mode 100644 index 0000000000000000000000000000000000000000..af1ed3fb7edd5554e69694dac07dc8b0c0a9d1ce --- /dev/null +++ b/toolbench/toolenv/tools/Tools/serpstat.json @@ -0,0 +1,52 @@ +{ + "product_id": "591d6a0be4b02134673d6e62", + "tool_description": "This API can be used by SEO and PPC specialists to access keyword research and domain analysis data.", + "home_url": "https://rapidapi.com/di_ry/api/serpstat/", + "name": "Serpstat", + "title": "Serpstat", + "pricing": "FREE", + "tool_name": "Serpstat", + "score": null, + "host": "di_ry-serpstat-v1.p.rapidapi.com", + "api_list": [ + { + "name": "General", + "url": "https://di_ry-serpstat-v1.p.rapidapi.com/v3/{api_method}?query={domain-com}&token={token}&se={se}", + "description": "Basic request", + "method": "GET", + "required_parameters": [ + { + "name": "api_method", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "domain-com", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "token", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "se", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://di_ry-serpstat-v1.p.rapidapi.com/v3/{api_method}?query={domain-com}&token={token}&se={se}\"\nquerystring = {\"api_method\": \"\", \"domain-com\": \"\", \"token\": \"\", \"se\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"di_ry-serpstat-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://di_ry-serpstat-v1.p.rapidapi.com/v3/{api_method}?query={domain-com}&token={token}&se={se}\"\nquerystring = {\"api_method\": \"\", \"domain-com\": \"\", \"token\": \"\", \"se\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"di_ry-serpstat-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "serpstat" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/serpstat/api.py b/toolbench/toolenv/tools/Tools/serpstat/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f1beff456b692cf2e31759f544ad27827a1d467a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/serpstat/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def general(api_method: str, domain_com: str, token: str, se: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Basic request" + + """ + url = f"https://di_ry-serpstat-v1.p.rapidapi.com/v3/{api_method}?query={domain_com}&token={token}&se={se}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "di_ry-serpstat-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/sesno_labs_auth.json b/toolbench/toolenv/tools/Tools/sesno_labs_auth.json new file mode 100644 index 0000000000000000000000000000000000000000..2aaf28c6e60ef3f8ded6e0ecfad332ab9a959715 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sesno_labs_auth.json @@ -0,0 +1,37 @@ +{ + "tool_name":"SESNO Labs auth", + "tool_description":"Full access to SESNO Labs APIs suite", + "title":"SESNO Labs auth", + "pricing":"PAID", + "score":{ + "avgServiceLevel":100, + "avgLatency":81, + "avgSuccessRate":100, + "popularityScore":8.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/sesno-labs-sesno-labs-default/api/sesno-labs-auth/", + "host":"sesno-labs-auth.p.rapidapi.com", + "api_list":[ + { + "name":"Auth", + "url":"https://sesno-labs-auth.p.rapidapi.com/v1/auth/rapidapi", + "description":"Authentication", + "method":"GET", + "required_parameters":[ + { + "name":"organizationName", + "type":"STRING", + "description":"", + "default":"YourCompanyName" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://sesno-labs-auth.p.rapidapi.com/v1/auth/rapidapi\"\nquerystring = {\"organizationName\": organizationname}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sesno-labs-auth.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/sesno_labs_auth/api.py b/toolbench/toolenv/tools/Tools/sesno_labs_auth/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2f5d69ebe34c60ef400e1e8a9d12b48d5f0a867e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sesno_labs_auth/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def auth(organizationname: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Authentication" + + """ + url = f"https://sesno-labs-auth.p.rapidapi.com/v1/auth/rapidapi" + querystring = {'organizationName': organizationname, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "sesno-labs-auth.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/sex_gender_lists.json b/toolbench/toolenv/tools/Tools/sex_gender_lists.json new file mode 100644 index 0000000000000000000000000000000000000000..444fa035d6eaaa75a689ab070238af3e3faeedf4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sex_gender_lists.json @@ -0,0 +1,120 @@ +{ + "tool_name":"Sex Gender Lists", + "tool_description":"The latest gender and pronoun lists based on different sources.", + "title":"Sex Gender Lists", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/markoberkes-ORweRKa0ubF/api/sex-gender-lists/", + "host":"sex-gender-lists.p.rapidapi.com", + "api_list":[ + { + "name":"Get Genders By Source", + "url":"https://sex-gender-lists.p.rapidapi.com/genders/{sourceid}", + "description":"Get Genders By Source Name. \nIn order to use this endpoint copy a source **name** from the source list into **sourceId**", + "method":"GET", + "required_parameters":[ + { + "name":"sourceId", + "type":"string", + "description":"", + "default":"pronouns" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://sex-gender-lists.p.rapidapi.com/genders/{sourceid}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sex-gender-lists.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "title":"he" + }, + { + "title":"she" + }, + { + "title":"they" + }, + { + "title":"ey" + }, + { + "title":"per" + }, + { + "title":"sie" + }, + { + "title":"ve" + }, + { + "title":"zie" + } + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"127", + "content-type":"application/json; charset=utf-8", + "date":"Fri, 26 Nov 2021 19:43:26 GMT", + "etag":"W/\"7f-Mz7p0Kp+T7gwIaQTiGd0c+fJDRU\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"Get Sources", + "url":"https://sex-gender-lists.p.rapidapi.com/sources", + "description":"Get Available Gender List Sources", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://sex-gender-lists.p.rapidapi.com/sources\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sex-gender-lists.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "id":"0", + "name":"healthline", + "address":"https://www.healthline.com/health/different-genders#why-it-matters", + "base":"" + }, + { + "id":"1", + "name":"womenshealthmag", + "address":"https://www.womenshealthmag.com/relationships/a36395721/gender-identity-list/", + "base":"" + }, + { + "id":"2", + "name":"pronouns" + }, + { + "id":"3", + "name":"pronounsShort" + }, + { + "id":"4", + "name":"pronounsBinary" + } + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"355", + "content-type":"application/json; charset=utf-8", + "date":"Fri, 26 Nov 2021 19:43:57 GMT", + "etag":"W/\"163-1XfMM4wg2wsrNCNSan0nln1JmdQ\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/sex_gender_lists/api.py b/toolbench/toolenv/tools/Tools/sex_gender_lists/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e812d6b14422f610ad03b0e7f2c13e2ab71115bd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sex_gender_lists/api.py @@ -0,0 +1,51 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_genders_by_source(sourceid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Genders By Source Name. + In order to use this endpoint copy a source **name** from the source list into **sourceId**" + + """ + url = f"https://sex-gender-lists.p.rapidapi.com/genders/{sourceid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "sex-gender-lists.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_sources(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Available Gender List Sources" + + """ + url = f"https://sex-gender-lists.p.rapidapi.com/sources" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "sex-gender-lists.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/shakespeare_translator.json b/toolbench/toolenv/tools/Tools/shakespeare_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..2dd5c83c00ec758c2705cf2494d5fcc704cdbe3d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shakespeare_translator.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Shakespeare Translator", + "tool_description":"Convert your modern day English phrases into Shakespeare style old English. Thou shalt try this API!", + "title":"Shakespeare Translator", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":350, + "avgSuccessRate":100, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/orthosie/api/shakespeare-translator/", + "host":"shakespeare.p.rapidapi.com", + "api_list":[ + { + "name":"shakespeare", + "url":"https://shakespeare.p.rapidapi.com/shakespeare.json", + "description":"Shakespeare Translator", + "method":"GET", + "required_parameters":[ + { + "name":"X-FunTranslations-Api-Secret", + "type":"STRING", + "description":"API Key ( Get yours here http://funtranslations.com/api/shakespeare )", + "default":"" + }, + { + "name":"text", + "type":"STRING", + "description":"Text to convert to Shakespeare style English.", + "default":"You asked Mr. Weasely to do magic!" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://shakespeare.p.rapidapi.com/shakespeare.json\"\nquerystring = {\"X-FunTranslations-Api-Secret\": x_funtranslations_api_secret, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"shakespeare.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/shakespeare_translator/api.py b/toolbench/toolenv/tools/Tools/shakespeare_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..757db0c2135885a6ab005edb725fa1ef5591460d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shakespeare_translator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def shakespeare(x_funtranslations_api_secret: str, text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Shakespeare Translator" + x_funtranslations_api_secret: API Key ( Get yours here http://funtranslations.com/api/shakespeare ) + text: Text to convert to Shakespeare style English. + + """ + url = f"https://shakespeare.p.rapidapi.com/shakespeare.json" + querystring = {'X-FunTranslations-Api-Secret': x_funtranslations_api_secret, 'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "shakespeare.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/shifting_character.json b/toolbench/toolenv/tools/Tools/shifting_character.json new file mode 100644 index 0000000000000000000000000000000000000000..4f02466d05ce775e816e948c558955917e4e7da1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shifting_character.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Shifting Character", + "tool_description":"API that encrypt text input by shifting character by step", + "title":"Shifting Character", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/caseymitchell194/api/shifting-character/", + "host":"shifting-character.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://shifting-character.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://shifting-character.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"shifting-character.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/shifting_character/api.py b/toolbench/toolenv/tools/Tools/shifting_character/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f9496f18db4571e1abe8a4b5fac14a5bb74d7cf4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shifting_character/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://shifting-character.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "shifting-character.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/shifting_text.json b/toolbench/toolenv/tools/Tools/shifting_text.json new file mode 100644 index 0000000000000000000000000000000000000000..98ba4e9685e4f5d644ba9df92632e5d3a164438c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shifting_text.json @@ -0,0 +1,24 @@ +{ + "tool_name":"shifting text", + "tool_description":"API that encrypt text input by shifting character by step", + "title":"shifting text", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/carolweston14406/api/shifting-text/", + "host":"shifting-text.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://shifting-text.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://shifting-text.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"shifting-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/shifting_text/api.py b/toolbench/toolenv/tools/Tools/shifting_text/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b0f8f4d2342dbf6219c4158a650fbdeffa6e4d98 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shifting_text/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://shifting-text.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "shifting-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/short_a_single_url.json b/toolbench/toolenv/tools/Tools/short_a_single_url.json new file mode 100644 index 0000000000000000000000000000000000000000..ef7e1739879772770547e22a11977e8d252888f0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/short_a_single_url.json @@ -0,0 +1,113 @@ +{ + "product_id": "api_19056bae-1788-4df2-a1a7-e239afff9809", + "tool_description": "A SPRL \"Short a Single URL\" API helps you to create a shorten url for your long, wide url.", + "home_url": "https://rapidapi.com/sprl-sprl-default/api/short-a-single-url/", + "name": "Short a Single URL", + "title": "Short a Single URL", + "pricing": "FREE", + "tool_name": "Short a Single URL", + "score": null, + "host": "short-a-single-url.p.rapidapi.com", + "api_list": [ + { + "name": "Bulk URL(s) Short", + "url": "https://short-a-single-url.p.rapidapi.com/api/url/bulk-short-url", + "description": "You can call \"Bulk URL(s) Short\" API to programmatically create thousands of shorten URLs for longer URLs by calling a single API request. You can use your own branded domain or SPRL default domain and also you can set the expiry date for the campaign.", + "method": "POST", + "required_parameters": [ + { + "name": "urls", + "type": "STRING", + "description": "", + "default": "[\"https://www.google.com\",\"https://www.sunprograms.com/mypage.html\"]" + }, + { + "name": "client_id", + "type": "STRING", + "description": "Generate API Authorization keys: https://youtu.be/aq90lnkF8cE", + "default": "Csprl_TXJKN5QHBWFPS0W" + } + ], + "optional_parameters": [ + { + "name": "response_mode", + "type": "STRING", + "description": "", + "default": "plain" + }, + { + "name": "domain", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "slug_prefix", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "expiry_date", + "type": "STRING", + "description": "", + "default": "31-05-2022" + } + ], + "code": "import requests\n\nurl = \"https://short-a-single-url.p.rapidapi.com/api/url/bulk-short-url\"\nquerystring = {\"response_mode\": \"plain\", \"domain\": \"\", \"urls\": \"[\\\"https://www.google.com\\\",\\\"https://www.sunprograms.com/mypage.html\\\"]\", \"client_id\": \"Csprl_TXJKN5QHBWFPS0W\", \"slug_prefix\": \"\", \"expiry_date\": \"31-05-2022\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"short-a-single-url.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://short-a-single-url.p.rapidapi.com/api/url/bulk-short-url\"\nquerystring = {\"response_mode\": \"plain\", \"domain\": \"\", \"urls\": \"[\\\"https://www.google.com\\\",\\\"https://www.sunprograms.com/mypage.html\\\"]\", \"client_id\": \"Csprl_TXJKN5QHBWFPS0W\", \"slug_prefix\": \"\", \"expiry_date\": \"31-05-2022\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"short-a-single-url.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Short a Single URL", + "url": "https://short-a-single-url.p.rapidapi.com/api/url/get-short-url", + "description": "Get a short url in response", + "method": "POST", + "required_parameters": [ + { + "name": "long_url", + "type": "STRING", + "description": "", + "default": "https://www.sunprograms.com/blog/post/Thanks-to-the-increase-popularity-of-internet-the-need-for-social-marketing-is-also-increasing" + }, + { + "name": "tag_type", + "type": "STRING", + "description": "", + "default": "random" + }, + { + "name": "client_id", + "type": "STRING", + "description": "Generate API Authorization keys: https://youtu.be/aq90lnkF8cE", + "default": "Csprl_TXJKN5QHBWFPS0W" + } + ], + "optional_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "expiry_date", + "type": "STRING", + "description": "", + "default": "31-05-2022" + }, + { + "name": "tag_keyword", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://short-a-single-url.p.rapidapi.com/api/url/get-short-url\"\nquerystring = {\"long_url\": \"https://www.sunprograms.com/blog/post/Thanks-to-the-increase-popularity-of-internet-the-need-for-social-marketing-is-also-increasing\", \"domain\": \"\", \"tag_type\": \"random\", \"client_id\": \"Csprl_TXJKN5QHBWFPS0W\", \"expiry_date\": \"31-05-2022\", \"tag_keyword\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"short-a-single-url.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://short-a-single-url.p.rapidapi.com/api/url/get-short-url\"\nquerystring = {\"long_url\": \"https://www.sunprograms.com/blog/post/Thanks-to-the-increase-popularity-of-internet-the-need-for-social-marketing-is-also-increasing\", \"domain\": \"\", \"tag_type\": \"random\", \"client_id\": \"Csprl_TXJKN5QHBWFPS0W\", \"expiry_date\": \"31-05-2022\", \"tag_keyword\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"short-a-single-url.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/short_link_ad_link_resolver/api.py b/toolbench/toolenv/tools/Tools/short_link_ad_link_resolver/api.py new file mode 100644 index 0000000000000000000000000000000000000000..522950931fac99b7620919293dbbbcd78ac8077f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/short_link_ad_link_resolver/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def bypass(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This is the main endpoint of the API. Here, you can submit a shortened URL to resolve it into the destination URL. If there is a chain of shortened URLs, it will recursively resolve them to reach the destination. Note that each resolve counts towards your quota." + + """ + url = f"https://short-link-ad-link-resolver.p.rapidapi.com/bypass" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "short-link-ad-link-resolver.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/short_linkad_link_resolver/api.py b/toolbench/toolenv/tools/Tools/short_linkad_link_resolver/api.py new file mode 100644 index 0000000000000000000000000000000000000000..522950931fac99b7620919293dbbbcd78ac8077f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/short_linkad_link_resolver/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def bypass(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This is the main endpoint of the API. Here, you can submit a shortened URL to resolve it into the destination URL. If there is a chain of shortened URLs, it will recursively resolve them to reach the destination. Note that each resolve counts towards your quota." + + """ + url = f"https://short-link-ad-link-resolver.p.rapidapi.com/bypass" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "short-link-ad-link-resolver.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/short_url_deocder.json b/toolbench/toolenv/tools/Tools/short_url_deocder.json new file mode 100644 index 0000000000000000000000000000000000000000..d5cfdf614dbbc5d2b2d0c6cfc7dc5333a2b3ebef --- /dev/null +++ b/toolbench/toolenv/tools/Tools/short_url_deocder.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Short Url Deocder", + "tool_description":"Use this api for short url decoding and find the original url without going though the url", + "title":"Short Url Deocder", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/airing-pvt-ltd-airing-pvt-ltd-default/api/short-url-deocder/", + "host":"short-url-deocder.p.rapidapi.com", + "api_list":[ + { + "name":"Get Proxies", + "url":"https://short-url-deocder.p.rapidapi.com/api/proxy", + "description":"Get active proxy list", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://short-url-deocder.p.rapidapi.com/api/proxy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"short-url-deocder.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Providers", + "url":"https://short-url-deocder.p.rapidapi.com/api/providers", + "description":"To fetch supported provider or Url shortner provider", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://short-url-deocder.p.rapidapi.com/api/providers\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"short-url-deocder.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/short_url_deocder/api.py b/toolbench/toolenv/tools/Tools/short_url_deocder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c3d349e3a642fbe8aa84ce514db390e070be8eb3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/short_url_deocder/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_proxies(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get active proxy list" + + """ + url = f"https://short-url-deocder.p.rapidapi.com/api/proxy" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "short-url-deocder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_providers(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To fetch supported provider or Url shortner provider" + + """ + url = f"https://short-url-deocder.p.rapidapi.com/api/providers" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "short-url-deocder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/shortadlink_shorten_urls_and_earn_money.json b/toolbench/toolenv/tools/Tools/shortadlink_shorten_urls_and_earn_money.json new file mode 100644 index 0000000000000000000000000000000000000000..b446f0c9ae67cac84d9ef106939307933b4c955f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shortadlink_shorten_urls_and_earn_money.json @@ -0,0 +1,57 @@ +{ + "product_id": "api_bceb7917-23d6-4691-87b4-cabb3cd8785f", + "tool_description": "ShortAdLink - Earn money on shorten links. Make short links and earn the biggest money", + "home_url": "https://rapidapi.com/fahadboss10/api/shortadlink-shorten-urls-and-earn-money/", + "name": "ShortAdLink - Shorten URLs and Earn Money", + "title": "ShortAdLink - Shorten URLs and Earn Money", + "pricing": "FREE", + "tool_name": "ShortAdLink - Shorten URLs and Earn Money", + "score": null, + "host": "shortadlink-shorten-urls-and-earn-money.p.rapidapi.com", + "api_list": [ + { + "name": "Shorten URL", + "url": "https://shortadlink-shorten-urls-and-earn-money.p.rapidapi.com/api?", + "description": "Primary method for shortening URL with custom alias.", + "method": "GET", + "required_parameters": [ + { + "name": "api", + "type": "STRING", + "description": "You can get your API key by registering on [ShortAdLink](https://shortad.link/)", + "default": "4e1c3d8de1b1ae400cb0defb2945ec402742cb6e" + }, + { + "name": "url", + "type": "STRING", + "description": "Enter your long URL link that you want to shorten.", + "default": "yourdestinationlink.com" + } + ], + "optional_parameters": [ + { + "name": "format", + "type": "STRING", + "description": "Default response is in **JSON** format. No need to type anything.\nYou can also get response in text format. Just type **text** in format field.", + "default": "" + }, + { + "name": "type", + "type": "STRING", + "description": "Default advertisement type is banner.\nFormats available:\n\n> **Default**: Banner (No need to type anything)\n> **0**: No advertisement\n> **1**: Interstitial advertisement", + "default": "" + }, + { + "name": "alias", + "type": "STRING", + "description": "You can set custom name for your shortened URL.\nAlias **min.** length: 4\nAlias **max** length: 12", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://shortadlink-shorten-urls-and-earn-money.p.rapidapi.com/api?\"\nquerystring = {\"api\": \"4e1c3d8de1b1ae400cb0defb2945ec402742cb6e\", \"format\": \"\", \"type\": \"\", \"alias\": \"\", \"url\": \"yourdestinationlink.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"shortadlink-shorten-urls-and-earn-money.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://shortadlink-shorten-urls-and-earn-money.p.rapidapi.com/api?\"\nquerystring = {\"api\": \"4e1c3d8de1b1ae400cb0defb2945ec402742cb6e\", \"format\": \"\", \"type\": \"\", \"alias\": \"\", \"url\": \"yourdestinationlink.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"shortadlink-shorten-urls-and-earn-money.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "shortadlink_shorten_urls_and_earn_money" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/shortadlink_shorten_urls_and_earn_money/api.py b/toolbench/toolenv/tools/Tools/shortadlink_shorten_urls_and_earn_money/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3240ac3034ac4b150f9b1fa26d6ddf98831963df --- /dev/null +++ b/toolbench/toolenv/tools/Tools/shortadlink_shorten_urls_and_earn_money/api.py @@ -0,0 +1,48 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def shorten_url(api: str, url: str, format: str=None, type: str=None, alias: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Primary method for shortening URL with custom alias." + api: You can get your API key by registering on [ShortAdLink](https://shortad.link/) + url: Enter your long URL link that you want to shorten. + format: Default response is in **JSON** format. No need to type anything. +You can also get response in text format. Just type **text** in format field. + type: Default advertisement type is banner. +Formats available: + +> **Default**: Banner (No need to type anything) +> **0**: No advertisement +> **1**: Interstitial advertisement + alias: You can set custom name for your shortened URL. +Alias **min.** length: 4 +Alias **max** length: 12 + + """ + url = f"https://shortadlink-shorten-urls-and-earn-money.p.rapidapi.com/api?" + querystring = {'api': api, 'url': url, } + if format: + querystring['format'] = format + if type: + querystring['type'] = type + if alias: + querystring['alias'] = alias + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "shortadlink-shorten-urls-and-earn-money.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/similarity_compare.json b/toolbench/toolenv/tools/Tools/similarity_compare.json new file mode 100644 index 0000000000000000000000000000000000000000..95bfe02b431ce9c4ea040f8e8758c0d63133a05b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/similarity_compare.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Similarity Compare", + "tool_description":"compare two text and return the similarity rate", + "title":"Similarity Compare", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/meganhavicus745/api/similarity-compare/", + "host":"similarity-compare.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://similarity-compare.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://similarity-compare.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"similarity-compare.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/similarity_compare/api.py b/toolbench/toolenv/tools/Tools/similarity_compare/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b506b92e9fc9c4b2e45c250686d13774357063b5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/similarity_compare/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://similarity-compare.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "similarity-compare.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simple_cheap_qr_code_generator.json b/toolbench/toolenv/tools/Tools/simple_cheap_qr_code_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..437d5ae0c1629b60ff119942396cbbba6a041562 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_cheap_qr_code_generator.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Simple & Cheap QR CODE GENERATOR", + "tool_description":"Send a string, get a QR CODE - As simple as it gets", + "title":"Simple & Cheap QR CODE GENERATOR", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2822, + "avgSuccessRate":100, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/wirecryptocontact-h9qCX5pYMlJ/api/simple-cheap-qr-code-generator/", + "host":"simple-cheap-qr-code-generator.p.rapidapi.com", + "api_list":[ + { + "name":"Qr Code Gen", + "url":"https://simple-cheap-qr-code-generator.p.rapidapi.com/qr-code", + "description":"This endpoint takes a \"GET\" request with the \"url\" query parameter and returns a QR code image associated with the text passed.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://simple-cheap-qr-code-generator.p.rapidapi.com/qr-code\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-cheap-qr-code-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/simple_cheap_qr_code_generator/api.py b/toolbench/toolenv/tools/Tools/simple_cheap_qr_code_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..52d750668f54cb65a348db820862d7eb6138fe3d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_cheap_qr_code_generator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_gen(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a "GET" request with the "url" query parameter and returns a QR code image associated with the text passed." + + """ + url = f"https://simple-cheap-qr-code-generator.p.rapidapi.com/qr-code" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simple-cheap-qr-code-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simple_encryption_daddy.json b/toolbench/toolenv/tools/Tools/simple_encryption_daddy.json new file mode 100644 index 0000000000000000000000000000000000000000..c3f0775f820366caf34d508928b7498f6e8ad476 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_encryption_daddy.json @@ -0,0 +1,99 @@ +{ + "product_id": "api_16f09564-40cd-4dce-ba48-866c22ec16d4", + "tool_description": "Simple Caesar, Morse, and Numeric encryption", + "home_url": "https://rapidapi.com/DaddyApi/api/simple-encryption-daddy/", + "name": "\ud83d\udd34 SIMPLE ENCRYPTION \ud83d\udd34 Daddy", + "title": "\ud83d\udd34 SIMPLE ENCRYPTION \ud83d\udd34 Daddy", + "pricing": "FREEMIUM", + "tool_name": "\ud83d\udd34 SIMPLE ENCRYPTION \ud83d\udd34 Daddy", + "score": { + "avgServiceLevel": 100, + "avgLatency": 168, + "avgSuccessRate": 100, + "popularityScore": 8.8, + "__typename": "Score" + }, + "host": "simple-encryption-daddy.p.rapidapi.com", + "api_list": [ + { + "name": "Reverse Numeric", + "url": "https://simple-encryption-daddy.p.rapidapi.com/reversenumeric", + "description": "Encrypts plain text with reverse Numeric encryption (A=26 ...) \nAccepts plainText as POST data", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/reversenumeric\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/reversenumeric\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "cypherText": { + "type": "string" + } + } + } + }, + { + "name": "Numeric", + "url": "https://simple-encryption-daddy.p.rapidapi.com/numeric", + "description": "Encrypts plain text with Numeric encryption (A=1 ...) \nAccepts plainText as POST data", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/numeric\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/numeric\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "cypherText": { + "type": "string" + } + } + } + }, + { + "name": "Morse", + "url": "https://simple-encryption-daddy.p.rapidapi.com/morse", + "description": "Encrypts plain text with Morse code \nAccepts plainText as POST data", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/morse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/morse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "cypherText": { + "type": "string" + } + } + } + }, + { + "name": "Caesar", + "url": "https://simple-encryption-daddy.p.rapidapi.com/caesar", + "description": "Encrypts plain text with Caesar cipher \nAccepts plain text and shift parameter as POST data", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/caesar\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://simple-encryption-daddy.p.rapidapi.com/caesar\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-encryption-daddy.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "cypherText": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/simple_qr_code_api/api.py b/toolbench/toolenv/tools/Tools/simple_qr_code_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..acd1ec3ddac97feb083fbf5361326aaf93b73cb9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_qr_code_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url / string as parameter and returns a qr code image." + + """ + url = f"https://simple-qr-code-api.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simple-qr-code-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simple_qr_code_api_v2/api.py b/toolbench/toolenv/tools/Tools/simple_qr_code_api_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ab4013bfd0ff90e5c0468d7a3cd18873269542a1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_qr_code_api_v2/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url / string as a parameter and returns qr code image" + + """ + url = f"https://simple-qr-code-api1.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simple-qr-code-api1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simple_qr_code_generator.json b/toolbench/toolenv/tools/Tools/simple_qr_code_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..8ee879c7111b11c53587d4ba0f92c655f10730b5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_qr_code_generator.json @@ -0,0 +1,40 @@ +{ + "product_id": "api_65c9912b-ffbc-4dd9-b116-9c5f684900a4", + "tool_description": "Fast and simple QR Code Generator", + "home_url": "https://rapidapi.com/fabienplongeron/api/simple-qr-code-generator/", + "name": "Simple QR Code Generator", + "title": "Simple QR Code Generator", + "pricing": "FREEMIUM", + "tool_name": "Simple QR Code Generator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1626, + "avgSuccessRate": 100, + "popularityScore": 6.7, + "__typename": "Score" + }, + "host": "simple-qr-code-generator.p.rapidapi.com", + "api_list": [ + { + "name": "Get", + "url": "https://simple-qr-code-generator.p.rapidapi.com/httptriggerqrcodesingle", + "description": "Simple Get endpoint to retrieve a QR code as a Jpeg file. \nSend the parameter **link ** as a query string parameter.\nReturn content-type is application/octet-stream.", + "method": "GET", + "required_parameters": [ + { + "name": "link", + "type": "STRING", + "description": "", + "default": "https://rapidapi.com" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://simple-qr-code-generator.p.rapidapi.com/httptriggerqrcodesingle\"\nquerystring = {\"link\": \"https://rapidapi.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://simple-qr-code-generator.p.rapidapi.com/httptriggerqrcodesingle\"\nquerystring = {\"link\": \"https://rapidapi.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-qr-code-generator.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "simple_qr_code_generator" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/simple_qr_code_generator/api.py b/toolbench/toolenv/tools/Tools/simple_qr_code_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..230651ac7b6c8cbc707bf486204328850574d4d9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_qr_code_generator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get(link: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Simple Get endpoint to retrieve a QR code as a Jpeg file. + Send the parameter **link ** as a query string parameter. + Return content-type is application/octet-stream." + + """ + url = f"https://simple-qr-code-generator.p.rapidapi.com/httptriggerqrcodesingle" + querystring = {'link': link, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simple-qr-code-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simple_qr_code_generator_v2/api.py b/toolbench/toolenv/tools/Tools/simple_qr_code_generator_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..698b12a7b582ef6045b17ff37c588faa7039c7a8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simple_qr_code_generator_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_endpoint(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "/generate_qr_code" + + """ + url = f"https://simple-qr-code-generator3.p.rapidapi.com/generate_qr_code" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simple-qr-code-generator3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simpleecho.json b/toolbench/toolenv/tools/Tools/simpleecho.json new file mode 100644 index 0000000000000000000000000000000000000000..189ae72a6c7fc7318ddc1f840bdb897522ca1131 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simpleecho.json @@ -0,0 +1,37 @@ +{ + "tool_name":"SimpleEcho", + "tool_description":"Return the request as the response.", + "title":"SimpleEcho", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/yonixw-u2ABRcM-CKN/api/simpleecho/", + "host":"simpleecho.p.rapidapi.com", + "api_list":[ + { + "name":"Echo", + "url":"https://simpleecho.p.rapidapi.com/api/echo", + "description":"Send a GET request to the Echo", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"header1", + "type":"STRING", + "description":"", + "default":"1" + }, + { + "name":"query2", + "type":"STRING", + "description":"", + "default":"2" + } + ], + "code":"import requests\n\nurl = \"https://simpleecho.p.rapidapi.com/api/echo\"\nquerystring = {\"header1\": header1, \"query2\": query2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simpleecho.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/simpleecho/api.py b/toolbench/toolenv/tools/Tools/simpleecho/api.py new file mode 100644 index 0000000000000000000000000000000000000000..566b0ca72da65cc8828bd111450be8ad683effc6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simpleecho/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def echo(header1: str='1', query2: str='2', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Send a GET request to the Echo" + + """ + url = f"https://simpleecho.p.rapidapi.com/api/echo" + querystring = {} + if header1: + querystring['header1'] = header1 + if query2: + querystring['query2'] = query2 + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simpleecho.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simulately_roll.json b/toolbench/toolenv/tools/Tools/simulately_roll.json new file mode 100644 index 0000000000000000000000000000000000000000..c64c7f4e1f4727173c81773fa9acb45b282d805a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simulately_roll.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Simulately Roll", + "tool_description":"API help you simulately roll a dice", + "title":"Simulately Roll", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/grangerchristopher417/api/simulately-roll/", + "host":"simulately-roll.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://simulately-roll.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://simulately-roll.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simulately-roll.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/simulately_roll/api.py b/toolbench/toolenv/tools/Tools/simulately_roll/api.py new file mode 100644 index 0000000000000000000000000000000000000000..863b437a3503582d4874ad17a08815d12c598747 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simulately_roll/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://simulately-roll.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simulately-roll.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/simulately_roll_dice.json b/toolbench/toolenv/tools/Tools/simulately_roll_dice.json new file mode 100644 index 0000000000000000000000000000000000000000..5aceb5741ac468ac4cf47c615fb784a19a870e9c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simulately_roll_dice.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Simulately Roll Dice", + "tool_description":"API help you simulately roll a dice", + "title":"Simulately Roll Dice", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/JUANCERVANTES6132/api/simulately-roll-dice/", + "host":"simulately-roll-dice.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://simulately-roll-dice.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://simulately-roll-dice.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simulately-roll-dice.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/simulately_roll_dice/api.py b/toolbench/toolenv/tools/Tools/simulately_roll_dice/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b18ca522e04e2bda9654ff609b117186a00f4bad --- /dev/null +++ b/toolbench/toolenv/tools/Tools/simulately_roll_dice/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://simulately-roll-dice.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simulately-roll-dice.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/slug_generator.json b/toolbench/toolenv/tools/Tools/slug_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..b81854c9072bd6df349adfc2f220295bb6e1a4e8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/slug_generator.json @@ -0,0 +1,47 @@ +{ + "tool_name":"Slug Generator", + "tool_description":"Generate slugs for your URL or database.", + "title":"Slug Generator", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/ExoWatts/api/slug-generator/", + "host":"slug-generator.p.rapidapi.com", + "api_list":[ + { + "name":"generate", + "url":"https://slug-generator.p.rapidapi.com/", + "description":"Generate slugs for your URL or database.", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"this is a test string" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://slug-generator.p.rapidapi.com/\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"slug-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "slug":"this-is-a-test-string", + "string":"this is a test string" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"763d32f0fecc5746-IAD", + "content-type":"application/json; charset=UTF-8", + "date":"Wed, 02 Nov 2022 13:25:56 GMT", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oV8%2BGfQgZkO1i%2FtiZoJs3M5F67Quf8cOI3i%2FteLbRMpjw%2B3ui1BKG%2FlHu%2F3HXQf%2FhpDZElrbVeOgM7jUTm81Y%2BEY8IXXi1R09NJIJKKfiIhW4PjRMpgiKKCLqwfem5aV0Fnp\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/slug_generator/api.py b/toolbench/toolenv/tools/Tools/slug_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..94ce7782a5ff1ded457f2e46cf0f98e00bbf312d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/slug_generator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate slugs for your URL or database." + + """ + url = f"https://slug-generator.p.rapidapi.com/" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "slug-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/slugger.json b/toolbench/toolenv/tools/Tools/slugger.json new file mode 100644 index 0000000000000000000000000000000000000000..c241c13028b3324b7917251aeabcdea2bfa5f28b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/slugger.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_77d35dd2-8499-4fb3-8565-7047ad656990", + "tool_description": "Slugify your text with different languages ", + "home_url": "https://rapidapi.com/zmaumevicius-Hhcge5XigyK/api/slugger/", + "name": "Slugger", + "title": "Slugger", + "pricing": "FREEMIUM", + "tool_name": "Slugger", + "score": null, + "host": "slugger.p.rapidapi.com", + "api_list": [ + { + "name": "Create slug", + "url": "https://slugger.p.rapidapi.com/slugify", + "description": "Endpoint creates slug from provided text. API has ability to provide different slugs for different languages as example:\n\nEnglish: \n `This & that` \n -> \n `this-and-that`\n\nGerman:\n `Das & Der` \n -> \n `das-und-der`\n\nSlugs are url friendly can be used:\n * websites in order to get better SEO, \n * databases", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://slugger.p.rapidapi.com/slugify\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"slugger.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://slugger.p.rapidapi.com/slugify\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"slugger.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/song_by_name_artist.json b/toolbench/toolenv/tools/Tools/song_by_name_artist.json new file mode 100644 index 0000000000000000000000000000000000000000..31903c79ad490c51f2c210044a1d5512727272cd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/song_by_name_artist.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Song by Name Artist", + "tool_description":"API provide search of song by name or artist/singer", + "title":"Song by Name Artist", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/patrickwelch6480/api/song-by-name-artist/", + "host":"song-by-name-artist.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://song-by-name-artist.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://song-by-name-artist.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"song-by-name-artist.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/song_by_name_artist/api.py b/toolbench/toolenv/tools/Tools/song_by_name_artist/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ad9b4b7f1230e909b4c704ecf7cff0c23ef12bb3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/song_by_name_artist/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://song-by-name-artist.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "song-by-name-artist.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/sort.json b/toolbench/toolenv/tools/Tools/sort.json new file mode 100644 index 0000000000000000000000000000000000000000..5ff3e80719110a768b3fb7f6896dd5652b61f430 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sort.json @@ -0,0 +1,24 @@ +{ + "tool_name":"sort", + "tool_description":"API that sort the number array in asc or desc order", + "title":"sort", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/yudelkaeamirez3121/api/sort3/", + "host":"sort3.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://sort3.p.rapidapi.com/", + "description":"default Endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://sort3.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sort3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/sort/api.py b/toolbench/toolenv/tools/Tools/sort/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bce6e20478175f6251564f41842942c65de14be6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sort/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default Endpoint" + + """ + url = f"https://sort3.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "sort3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/south_african_id_number_validation.json b/toolbench/toolenv/tools/Tools/south_african_id_number_validation.json new file mode 100644 index 0000000000000000000000000000000000000000..5a2ff3f67ad3cdc010358fc5fe00524c5f46fc3f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/south_african_id_number_validation.json @@ -0,0 +1,50 @@ +{ + "tool_name":"South African ID Number Validation", + "tool_description":"An API to validate a South African ID numbers", + "title":"South African ID Number Validation", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/AnnupKapur/api/south-african-id-number-validation/", + "host":"south-african-id-number-validation.p.rapidapi.com", + "api_list":[ + { + "name":"ID to validator", + "url":"https://south-african-id-number-validation.p.rapidapi.com/{id}", + "description":"This endpoint will validate a South African ID number", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"", + "default":"8907125800083" + }, + { + "name":"id", + "type":"string", + "description":"", + "default":"8907125800083" + } + ], + "optional_parameters":[ + { + "name":"gender", + "type":"STRING", + "description":"", + "default":"male" + }, + { + "name":"dob", + "type":"STRING", + "description":"", + "default":"890712" + } + ], + "code":"import requests\n\nurl = \"https://south-african-id-number-validation.p.rapidapi.com/{id}\"\nquerystring = {\"gender\": gender, \"dob\": dob}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"south-african-id-number-validation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/south_african_id_number_validation/api.py b/toolbench/toolenv/tools/Tools/south_african_id_number_validation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..813467a3e5c29d61dfce0c775e30fb7743bbdfb3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/south_african_id_number_validation/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def id_to_validator(is_id: str, gender: str='male', dob: str='890712', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will validate a South African ID number" + + """ + url = f"https://south-african-id-number-validation.p.rapidapi.com/{is_id}" + querystring = {} + if gender: + querystring['gender'] = gender + if dob: + querystring['dob'] = dob + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "south-african-id-number-validation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/spinner.json b/toolbench/toolenv/tools/Tools/spinner.json new file mode 100644 index 0000000000000000000000000000000000000000..973a3247df51c4fb159b82809b9a5b2c7a729299 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/spinner.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Spinner", + "tool_description":"Article spinning", + "title":"Spinner", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/archubbuck/api/spinner1/", + "host":"spinner1.p.rapidapi.com", + "api_list":[ + { + "name":"Spinner", + "url":"https://spinner1.p.rapidapi.com/Spinner", + "description":"Main endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://spinner1.p.rapidapi.com/Spinner\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spinner1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/spinner/api.py b/toolbench/toolenv/tools/Tools/spinner/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8cb65bee01eeeef37ecd627227c7fc5016945575 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/spinner/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def spinner(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Main endpoint" + + """ + url = f"https://spinner1.p.rapidapi.com/spinner" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spinner1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/spotify_downloader.json b/toolbench/toolenv/tools/Tools/spotify_downloader.json new file mode 100644 index 0000000000000000000000000000000000000000..ec749c339cd5cfd365c041fca12c2d321f328c9a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/spotify_downloader.json @@ -0,0 +1,685 @@ +{ + "tool_name":"Spotify Downloader", + "tool_description":"Download tracks, albums and playlists from Spotify! The best and most reliable Spotify Downloader API on RapidAPI!", + "title":"Spotify Downloader", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":95, + "avgLatency":1983, + "avgSuccessRate":91, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/tokcount-tokcount-default/api/spotify-downloader1/", + "host":"spotify-downloader1.p.rapidapi.com", + "api_list":[ + { + "name":"Track List - Album", + "url":"https://spotify-downloader1.p.rapidapi.com/trackList/album/{id}", + "description":"Get track list from album", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"6lggWd5q9Rh66OkDE1eNDr" + } + ], + "optional_parameters":[ + { + "name":"offset", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://spotify-downloader1.p.rapidapi.com/trackList/album/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spotify-downloader1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "success":true, + "nextOffset":null, + "trackList":[ + { + "id":"3to5UxKsozb4T6CfwHuhLJ", + "title":"Kamikaze", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"548QZtKCO7l8A6Lv3M1Huc", + "title":"Fu shit", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"7zLYKWcXnYeHHWidalz7rj", + "title":"Noticed", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"6k4Yu26JgigTt7ghkP1FDb", + "title":"Rarri", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"576YycSx0m7YmiN1TGteWe", + "title":"Pull Up", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"3fB96InfRUB2DCjbrfzKUt", + "title":"Burberry Headband", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"0xNDvMqlGkOLEH66Z45FCL", + "title":"Greet Her", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"1MFGfpG1LH1hSPKvjYLYEq", + "title":"That's My Bitch", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"1PgBYvG7wziTSmZdDLYIvn", + "title":"Yoppa (with BlocBoy JB)", + "artists":"Lil Mosey, BlocBoy JB", + "cover":null + }, + { + "id":"1h4nOgOv7cMZtjpyJm083Y", + "title":"Boof Pack", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"1Xi7FC0nwseWUBlBDPLnWI", + "title":"Trapstar", + "artists":"Lil Mosey", + "cover":null + }, + { + "id":"3BLRBTDYZI6zPWGZA7ZvGT", + "title":"Bust Down Cartier", + "artists":"Lil Mosey", + "cover":null + } + ] + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7a108b69581c9ba1-FRA", + "content-length":"1128", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 01 Mar 2023 09:58:58 GMT", + "etag":"W/\"468-3+pXvWZ/6mX5TLmM7VlNrtj6QjY\"", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rwhkKLD9miwK0%2FJRYMy0t5mMZmJuvoVDXcQjXvg9DoNnkDQBnqDQ0L4UrejknMrzyP6sOveAHMhQ5f96DkctrZR1K0t1y6EoYMoD5icEiCsRZFe73RwamgE%2B8CjsroRAzasoTjAe\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"Track List - Playlist", + "url":"https://spotify-downloader1.p.rapidapi.com/trackList/playlist/{id}", + "description":"Get Track List from Playlist", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"37i9dQZF1DX0XUsuxWHRQd" + } + ], + "optional_parameters":[ + { + "name":"offset", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://spotify-downloader1.p.rapidapi.com/trackList/playlist/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spotify-downloader1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "success":true, + "nextOffset":null, + "trackList":[ + { + "id":"0FA4wrjDJvJTTU8AepZTup", + "title":"Watch This - ARIZONATEARS Pluggnb Remix", + "artists":"Lil Uzi Vert, sped up nightcore, ARIZONATEARS", + "cover":"https://i.scdn.co/image/ab67616d00001e021e28b92ccb915b5307a7eb02", + "album":"Watch This (ARIZONATEARS Pluggnb Remix)" + }, + { + "id":"52NGJPcLUzQq5w7uv4e5gf", + "title":"Private Landing (feat. Justin Bieber & Future)", + "artists":"Don Toliver, Justin Bieber, Future", + "cover":"https://i.scdn.co/image/ab67616d00001e02feeff698e6090e6b02f21ec0", + "album":"Love Sick" + }, + { + "id":"7oLKoGzQVwjZ91AzCn560T", + "title":"PAINTING PICTURES", + "artists":"Superstar Pride", + "cover":"https://i.scdn.co/image/ab67616d00001e02d2c898fb3f092fb12e5132d5", + "album":"5LBS OF PRESSURE" + }, + { + "id":"2eN0rxTtgxKkmVCNgizayr", + "title":"Greatness", + "artists":"Quavo", + "cover":"https://i.scdn.co/image/ab67616d00001e0274c78dff462a08d1cfc58c7e", + "album":"Greatness" + }, + { + "id":"0vjeOZ3Ft5jvAi9SBFJm1j", + "title":"Superhero (Heroes & Villains) [with Future & Chris Brown]", + "artists":"Metro Boomin, Future, Chris Brown", + "cover":"https://i.scdn.co/image/ab67616d00001e0213e54d6687e65678d60466c2", + "album":"HEROES & VILLAINS" + }, + { + "id":"5BbdKBZO0TH0GhfxUfyhL9", + "title":"Freestyle", + "artists":"Lil Baby", + "cover":"https://i.scdn.co/image/ab67616d00001e025067cc9332e2fdc69ea7b7a9", + "album":"Too Hard" + }, + { + "id":"4FyesJzVpA39hbYvcseO2d", + "title":"Just Wanna Rock", + "artists":"Lil Uzi Vert", + "cover":"https://i.scdn.co/image/ab67616d00001e020e34fd68e8ff04e4515eb72a", + "album":"Just Wanna Rock" + }, + { + "id":"1bDbXMyjaUIooNwFE9wn0N", + "title":"Rich Flex", + "artists":"Drake, 21 Savage", + "cover":"https://i.scdn.co/image/ab67616d00001e0202854a7060fccc1a66a4b5ad", + "album":"Her Loss" + }, + { + "id":"4MUlNqSrMeFAHA6VpJKMo8", + "title":"No Time Wasted (feat. Future)", + "artists":"Polo G, Future", + "cover":"https://i.scdn.co/image/ab67616d00001e020e6d03ec271c536f7e13f031", + "album":"No Time Wasted (feat. Future)" + }, + { + "id":"5ht9obvnnWeW4eoRtPAoQD", + "title":"Fact (feat. Lil Uzi Vert)", + "artists":"Ghostluvme, Lil Uzi Vert", + "cover":"https://i.scdn.co/image/ab67616d00001e028e5377bae9150f933567bb8b", + "album":"Fact (feat. Lil Uzi Vert)" + }, + { + "id":"4WuOWVnAqvEQxgSRrspBgt", + "title":"Niagara Falls (Foot or 2) [with Travis Scott & 21 Savage]", + "artists":"Metro Boomin, Travis Scott, 21 Savage", + "cover":"https://i.scdn.co/image/ab67616d00001e0213e54d6687e65678d60466c2", + "album":"HEROES & VILLAINS" + }, + { + "id":"1T4k0sw0HldDg004Kw4Oct", + "title":"Forever (feat. Fridayy)", + "artists":"Lil Baby, Fridayy", + "cover":"https://i.scdn.co/image/ab67616d00001e0266b04b41fa6f8908dce86695", + "album":"It's Only Me" + }, + { + "id":"2ehLKvUsJq3EUAPpvT5GOM", + "title":"Kant Nobody (feat. DMX)", + "artists":"Lil Wayne, DMX", + "cover":"https://i.scdn.co/image/ab67616d00001e021e725a85985f8279f466ccab", + "album":"Kant Nobody" + }, + { + "id":"1iQxvF3AQ7Bs3RTBuXqZOA", + "title":"Dirt", + "artists":"Key Glock", + "cover":"https://i.scdn.co/image/ab67616d00001e0240cf27e72badc27f9f278fa7", + "album":"Dirt" + }, + { + "id":"2fpTRcMLt4aKlqULOwuXUP", + "title":"Shmunk (feat. YoungBoy Never Broke Again)", + "artists":"Yeat, YoungBoy Never Broke Again", + "cover":"https://i.scdn.co/image/ab67616d00001e023f560650c583444498c214f0", + "album":"AftërLyfe" + }, + { + "id":"2Qr5PWUt8XycAAv338LicY", + "title":"Go Down (feat. TisaKorean)", + "artists":"Don Toliver, TisaKorean", + "cover":"https://i.scdn.co/image/ab67616d00001e02feeff698e6090e6b02f21ec0", + "album":"Love Sick" + }, + { + "id":"6UN73IYd0hZxLi8wFPMQij", + "title":"Players", + "artists":"Coi Leray", + "cover":"https://i.scdn.co/image/ab67616d00001e021cf7cf4446b496525e423465", + "album":"Players" + }, + { + "id":"68Dni7IE4VyPkTOH9mRWHr", + "title":"No Role Modelz", + "artists":"J. Cole", + "cover":"https://i.scdn.co/image/ab67616d00001e02c6e0948bbb0681ff29cdbae8", + "album":"2014 Forest Hills Drive" + }, + { + "id":"5BmB3OaQyYXCqRyN8iR2Yi", + "title":"Slut Me Out", + "artists":"NLE Choppa", + "cover":"https://i.scdn.co/image/ab67616d00001e0249a4f6c9a637e02252a0076d", + "album":"Slut Me Out" + }, + { + "id":"0yUaLqhsVsguBpoOPL4cO7", + "title":"In Ha Mood", + "artists":"Ice Spice", + "cover":"https://i.scdn.co/image/ab67616d00001e02cf9b9ac12129c2d73a788caf", + "album":"In Ha Mood" + }, + { + "id":"2i2qDe3dnTl6maUE31FO7c", + "title":"Mad Max", + "artists":"Lil Durk, Future", + "cover":"https://i.scdn.co/image/ab67616d00001e02ae7a96d9d5107992d40d94c5", + "album":"Lil Durk Presents: Loyal Bros 2" + }, + { + "id":"3HqGDrSOZ6LbBfX5EsiaAj", + "title":"Split", + "artists":"Yeat", + "cover":"https://i.scdn.co/image/ab67616d00001e023f560650c583444498c214f0", + "album":"AftërLyfe" + }, + { + "id":"0LHbGkO5BhmwzeDT8MDdpe", + "title":"Undefeated", + "artists":"EST Gee", + "cover":"https://i.scdn.co/image/ab67616d00001e02e983ae1f4004830b0a7c1ab4", + "album":"Undefeated" + }, + { + "id":"0T0vseuNB4KC8opkrCLNbc", + "title":"23", + "artists":"NLE Choppa", + "cover":"https://i.scdn.co/image/ab67616d00001e02daef156501770550d3ace0a0", + "album":"23" + }, + { + "id":"0UMqDSXk4xvoCNRrIEPf7T", + "title":"King Snipe", + "artists":"Gucci Mane, Kodak Black", + "cover":"https://i.scdn.co/image/ab67616d00001e02f9f04e8e66ec696308f53021", + "album":"King Snipe" + }, + { + "id":"2Hh3ETdQKrmSI3QS0hme7g", + "title":"Too Many Nights (feat. Don Toliver & with Future)", + "artists":"Metro Boomin, Future, Don Toliver", + "cover":"https://i.scdn.co/image/ab67616d00001e0213e54d6687e65678d60466c2", + "album":"HEROES & VILLAINS" + }, + { + "id":"5JS1gz9zP4GTy0LZYvSeUK", + "title":"2 Million Up", + "artists":"Peezy", + "cover":"https://i.scdn.co/image/ab67616d00001e02572c22d7397e3302afbe7488", + "album":"ONLY BUILT 4 DIAMOND LINKS" + }, + { + "id":"1a7tOEheXeaSNathZW4Gzk", + "title":"Hanging With Wolves", + "artists":"Lil Durk", + "cover":"https://i.scdn.co/image/ab67616d00001e02ed05a91d503057cce752e8dc", + "album":"Hanging With Wolves" + }, + { + "id":"6i5wxOzIv91jvGwi4gofGn", + "title":"Raining (feat. Yung Bleu & Murda Beatz)", + "artists":"G Herbo, Yung Bleu, Murda Beatz", + "cover":"https://i.scdn.co/image/ab67616d00001e0218b39d199a11efd52653b226", + "album":"Raining" + }, + { + "id":"3RKjTYlQrtLXCq5ncswBPp", + "title":"Hey, Mickey!", + "artists":"Baby Tate", + "cover":"https://i.scdn.co/image/ab67616d00001e022571034f34b381958f8cc727", + "album":"Hey, Mickey!" + }, + { + "id":"7CpXFEjLntpr4GdOhTtFEv", + "title":"One Mic, One Gun", + "artists":"Nas, 21 Savage", + "cover":"https://i.scdn.co/image/ab67616d00001e02bc34741d70d23f4f20d4a2a5", + "album":"One Mic, One Gun" + }, + { + "id":"3084aAzars6DR26nCWO9Ep", + "title":"Quickie", + "artists":"Moneybagg Yo", + "cover":"https://i.scdn.co/image/ab67616d00001e026214de134a99b890047a161e", + "album":"Quickie" + }, + { + "id":"1SRw5p2lVAi7RGlHEmZg66", + "title":"Favorite Song", + "artists":"Toosii", + "cover":"https://i.scdn.co/image/ab67616d00001e02083c41df2fbc4cf8c54c7858", + "album":"Favorite Song" + }, + { + "id":"2UQ2oUbHiB8wWYCE42JX0k", + "title":"My All", + "artists":"Polo G", + "cover":"https://i.scdn.co/image/ab67616d00001e0285a1396e27ffc1d8c9bbe7e1", + "album":"My All" + }, + { + "id":"1CJ8e0zc8uvAmkqdeXrq4u", + "title":"Leave The Club (feat. Lil Durk & GloRilla)", + "artists":"Don Toliver, Lil Durk, GloRilla", + "cover":"https://i.scdn.co/image/ab67616d00001e02f2729776fad51de67c185ce0", + "album":"Leave The Club (feat. Lil Durk & GloRilla)" + }, + { + "id":"3QHGfxhjexLaMKGHXagfRs", + "title":"Hell Yeah", + "artists":"SoFaygo, Ken Carson", + "cover":"https://i.scdn.co/image/ab67616d00001e02f5d35bf91a2b5f0009b010d4", + "album":"Pink Heartz" + }, + { + "id":"6yDPFrHZLQbQa9Itd2J4Gp", + "title":"Water (Drowning Pt. 2) [feat. Kodak Black]", + "artists":"A Boogie Wit da Hoodie, Kodak Black", + "cover":"https://i.scdn.co/image/ab67616d00001e02ae2f0d991f29376c4de3f6eb", + "album":"Me vs. Myself" + }, + { + "id":"5c2IvJeaFx4m2DmOR1iryD", + "title":"Internet Trolls", + "artists":"GloRilla, Hitkidd", + "cover":"https://i.scdn.co/image/ab67616d00001e025ab70bfb9fb622a344142fed", + "album":"Internet Trolls" + }, + { + "id":"7k5lDslyLbcykzUOPGEdKR", + "title":"Love For The Streets", + "artists":"Young Dolph", + "cover":"https://i.scdn.co/image/ab67616d00001e025283becb004310d5a5025bcd", + "album":"Paper Route Frank" + }, + { + "id":"53acd3PVcgGCux58YABBr5", + "title":"Conceited (feat. Lola Brooke & Maiya The Don)", + "artists":"Flo Milli, Lola Brooke, Maiya The Don", + "cover":"https://i.scdn.co/image/ab67616d00001e02c39864b0a6ac36e96efda277", + "album":"Conceited (feat. Lola Brooke & Maiya The Don)" + }, + { + "id":"6aGpM4DXts4pdRhVKbRYuk", + "title":"Don't Play With It (feat. Billy B)", + "artists":"Lola Brooke, Billy B", + "cover":"https://i.scdn.co/image/ab67616d00001e02119c9a81f62fe2e00b2bfbe5", + "album":"Don't Play With It (feat. Billy B)" + }, + { + "id":"0sKJExQWRKxd76gSSwrsaI", + "title":"Let's Ride (feat. YG, Ty Dolla $ign, Lambo4oe) - Trailer Anthem", + "artists":"YG, The Notorious B.I.G., Bone Thugs-N-Harmony, Ty Dolla $ign, Lambo4oe", + "cover":"https://i.scdn.co/image/ab67616d00001e0223240f142e334c5b4b0029fc", + "album":"Let's Ride (feat. YG, Ty Dolla $ign, Lambo4oe) [Trailer Anthem]" + }, + { + "id":"4lxTmHPgoRWwM9QisWobJL", + "title":"FTCU (feat. GloRilla & Gangsta Boo)", + "artists":"Latto, GloRilla, Gangsta Boo", + "cover":"https://i.scdn.co/image/ab67616d00001e0237df84cf0611962781f24516", + "album":"FTCU (feat. GloRilla & Gangsta Boo)" + }, + { + "id":"4ZyivnzrvDWRjihgqxvXK8", + "title":"JOC IN '06", + "artists":"DaBaby", + "cover":"https://i.scdn.co/image/ab67616d00001e025f8f0d058f9ec3accefd9a19", + "album":"JOC IN '06" + }, + { + "id":"7hrcHfHWaLhooHzGltlCYB", + "title":"HO4ME", + "artists":"DJ Drama, Lil Baby, A Boogie Wit da Hoodie", + "cover":"https://i.scdn.co/image/ab67616d00001e0214379a931f678c070c6dbdcd", + "album":"HO4ME" + }, + { + "id":"3fNMgjG8yXaSam46swhz7w", + "title":"KNIGHT CRAWLER (feat. Juice WRLD)", + "artists":"Trippie Redd, Juice WRLD", + "cover":"https://i.scdn.co/image/ab67616d00001e02bbdaebbe96beb77e38781def", + "album":"MANSION MUSIK" + }, + { + "id":"7E68rHH6CrKbBYPfpiCLiQ", + "title":"No 808’s (feat. Vory)", + "artists":"A Boogie Wit da Hoodie, Vory", + "cover":"https://i.scdn.co/image/ab67616d00001e02b98044556b17964043251c1f", + "album":"No 808’s (feat. Vory)" + }, + { + "id":"12Us8e6NFesdkXKf4StU1I", + "title":"Me & You", + "artists":"Central Cee", + "cover":"https://i.scdn.co/image/ab67616d00001e02f123270da0f999b3ba015beb", + "album":"Me & You" + }, + { + "id":"5ObUmPrfvyC7IEOe3n8Z3J", + "title":"Way Too Petty", + "artists":"DDG", + "cover":"https://i.scdn.co/image/ab67616d00001e02406f2131b760ac98d125665d", + "album":"Way Too Petty" + }, + { + "id":"5xsr3QA0kvK4VFADzbUhUt", + "title":"Out of State", + "artists":"Finesse2tymes", + "cover":"https://i.scdn.co/image/ab67616d00001e028100ef4ea2b0cbe5fa615b97", + "album":"Out of State" + } + ] + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7a108aaefb399bfb-FRA", + "content-length":"10022", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 01 Mar 2023 09:58:29 GMT", + "etag":"W/\"2726-LvBSQzQuxxZ3272OtKtAIoXCZZg\"", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Zajkqs8fN7srWVgIRQqbT%2FO%2FMzysW8I4u8hbhhc2UyH9tbtTRS24eKjS88ok8qAcsRIPI419krpjvK3%2F44GXWDjfANHWS8YemMeK3t6Zqi%2B%2BjYfslVtP4ZR4j%2FMoL2O6vbhgOPZX\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"Metadata - Album", + "url":"https://spotify-downloader1.p.rapidapi.com/metadata/album/{id}", + "description":"Get metadata about album", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"6lggWd5q9Rh66OkDE1eNDr" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://spotify-downloader1.p.rapidapi.com/metadata/album/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spotify-downloader1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "success":true, + "artists":"Lil Mosey", + "title":"Northsbest (Extended)", + "cover":"https://i.scdn.co/image/ab67616d0000b273db953460d6de87c6d6788cb5" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7a1089cf4cc62bf1-FRA", + "content-length":"145", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 01 Mar 2023 09:57:53 GMT", + "etag":"W/\"91-eQsAhVCGlRHDEpIv26GVBMjGdk8\"", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qQ7IrLW7mc9dzHFnDSkRvnmMM%2BoqQmFV84tCJRYR2iLjfnjDFHFnKx9BwNcZNUJuDdbl7dFsNgBuphQCJjGK%2BnGsVoqz%2FoEcQPt2WMzt7JhihfyLagOjdfBz%2BceKB9ZZ27aSpkvP\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"Metadata - Track", + "url":"https://spotify-downloader1.p.rapidapi.com/metadata/track/{id}", + "description":"Get metadata about track", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"22LAwLoDA5b4AaGSkg6bKW" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://spotify-downloader1.p.rapidapi.com/metadata/track/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spotify-downloader1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Download Song", + "url":"https://spotify-downloader1.p.rapidapi.com/download/{id}", + "description":"Download a song by spotify's song ID", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"22LAwLoDA5b4AaGSkg6bKW" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://spotify-downloader1.p.rapidapi.com/download/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spotify-downloader1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "success":true, + "metadata":{ + "id":"22LAwLoDA5b4AaGSkg6bKW", + "artists":"Lil Mosey", + "title":"Blueberry Faygo", + "cover":"https://i.scdn.co/image/ab67616d0000b2730824105a6282782aaabb0584", + "album":"Certified Hitmaker" + }, + "link":"https://api.spotifydown.com/dl/22LAwLoDA5b4AaGSkg6bKW.mp3", + "expiresAt":1677665216210 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7a108846cc4e30e2-FRA", + "content-length":"304", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 01 Mar 2023 09:56:56 GMT", + "etag":"W/\"130-Qaei/QYg4RBHmKRR6oYPfKzQIBI\"", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0z4%2Fdw7woAZpR83JgigM%2BeqA9atd%2FNtmLciWPcDMGMHkmQ%2FPxYUKtKO7FmqCB3EvibgGDp1mywpCcXLAWaXNQT6KeiIFpqqzkrfeD%2BM5SRZdtgrew7bU4%2FbM6aUmI19MkHrDy6wg\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"Metadata - Playlist", + "url":"https://spotify-downloader1.p.rapidapi.com/metadata/playlist/{id}", + "description":"Get metadata about playlist", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"37i9dQZF1DX0XUsuxWHRQd" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://spotify-downloader1.p.rapidapi.com/metadata/playlist/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"spotify-downloader1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "cache":true, + "success":true, + "artists":"Spotify", + "title":"RapCaviar", + "cover":"https://i.scdn.co/image/ab67706f00000003f1e7e4bbcfda11ee7a321e4c" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7a108a36e9215bf9-FRA", + "content-length":"144", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 01 Mar 2023 09:58:09 GMT", + "etag":"W/\"90-YHh0Zzogzv8NSsDXYPeaCeUVNeg\"", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=82XRDsSnSOmjKIDLv7dtZObr4LAnaxRIMWg2d5H%2B5tJuN1RVvYB2s%2BIwazcvtrFjbb7B3I%2BzvDEUViEI8chMMnjGkBcT2shTQsMqCcCOJjpztyb1MBH6hOa25WjX938%2FSWtXyVYi\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/spotify_downloader/api.py b/toolbench/toolenv/tools/Tools/spotify_downloader/api.py new file mode 100644 index 0000000000000000000000000000000000000000..103bdeefd69d5c347f557d4af897ce674a445624 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/spotify_downloader/api.py @@ -0,0 +1,138 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def track_list_album(is_id: str, offset: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get track list from album" + + """ + url = f"https://spotify-downloader1.p.rapidapi.com/tracklist/album/{is_id}" + querystring = {} + if offset: + querystring['offset'] = offset + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spotify-downloader1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def track_list_playlist(is_id: str, offset: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Track List from Playlist" + + """ + url = f"https://spotify-downloader1.p.rapidapi.com/tracklist/playlist/{is_id}" + querystring = {} + if offset: + querystring['offset'] = offset + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spotify-downloader1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def metadata_album(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get metadata about album" + + """ + url = f"https://spotify-downloader1.p.rapidapi.com/metadata/album/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spotify-downloader1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def metadata_track(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get metadata about track" + + """ + url = f"https://spotify-downloader1.p.rapidapi.com/metadata/track/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spotify-downloader1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def download_song(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Download a song by spotify's song ID" + + """ + url = f"https://spotify-downloader1.p.rapidapi.com/download/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spotify-downloader1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def metadata_playlist(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get metadata about playlist" + + """ + url = f"https://spotify-downloader1.p.rapidapi.com/metadata/playlist/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "spotify-downloader1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/sql_code_compiler.json b/toolbench/toolenv/tools/Tools/sql_code_compiler.json new file mode 100644 index 0000000000000000000000000000000000000000..40db40328e0eaf4adfe93ea7200d53e0933308d8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sql_code_compiler.json @@ -0,0 +1,99 @@ +{ + "tool_name": "SQL Code Compiler", + "tool_description": "SQL Code Compiler API", + "title": "SQL Code Compiler", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1513, + "avgSuccessRate": 89, + "popularityScore": 9.5, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/UnlimitedAPI/api/sql-code-compiler/", + "host": "sql-code-compiler.p.rapidapi.com", + "api_list": [ + { + "name": "SQL Versions", + "url": "https://sql-code-compiler.p.rapidapi.com/versions/", + "description": "SQL Versions", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sql-code-compiler.p.rapidapi.com/versions/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sql-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": [ + { + "id": 0, + "version": "SQLite 3.9.2" + }, + { + "id": 1, + "version": "SQLite 3.21.0" + }, + { + "id": 2, + "version": "SQLite 3.23.1" + }, + { + "id": 3, + "version": "SQLite 3.29.0" + }, + { + "id": 4, + "version": "SQLite 3.37.0" + } + ], + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Thu, 25 Aug 2022 17:56:20 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "SQL Code Compiler", + "url": "https://sql-code-compiler.p.rapidapi.com/", + "description": "SQL Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sql-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sql-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "cpuTime": "0.00", + "memory": "4204", + "output": "Hello|World!\n" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Thu, 25 Aug 2022 17:58:04 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "SQL Code Compiler", + "url": "https://sql-code-compiler.p.rapidapi.com/", + "description": "SQL Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://sql-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sql-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://sql-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"sql-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/sql_code_compiler/api.py b/toolbench/toolenv/tools/Tools/sql_code_compiler/api.py new file mode 100644 index 0000000000000000000000000000000000000000..347cb67d2fe65987f7641f5ffef7d6202a5f0eaa --- /dev/null +++ b/toolbench/toolenv/tools/Tools/sql_code_compiler/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def sql_versions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "SQL Versions" + + """ + url = f"https://sql-code-compiler.p.rapidapi.com/versions/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "sql-code-compiler.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/srtn_me_url_shortener.json b/toolbench/toolenv/tools/Tools/srtn_me_url_shortener.json new file mode 100644 index 0000000000000000000000000000000000000000..a3e98923d4483093b11f0aecab66c31b0b0927fd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/srtn_me_url_shortener.json @@ -0,0 +1,49 @@ +{ + "product_id": "api_65f87ace-c0ce-4a24-8380-52c71ca858a2", + "tool_description": "Shorten URLs using the srtn.me service", + "home_url": "https://rapidapi.com/redgalaxy-redgalaxy-default/api/srtn-me-url-shortener/", + "name": "Srtn.me URL Shortener", + "title": "Srtn.me URL Shortener", + "pricing": "FREEMIUM", + "tool_name": "Srtn.me URL Shortener", + "score": null, + "host": "srtn-me-url-shortener.p.rapidapi.com", + "api_list": [ + { + "name": "ShortenURL", + "url": "https://srtn-me-url-shortener.p.rapidapi.com/api/shorten", + "description": "Submit a URL and get a shortened URL returned.", + "method": "POST", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "https://www.google.com" + } + ], + "optional_parameters": [ + { + "name": "description", + "type": "STRING", + "description": "", + "default": "Google homepage" + } + ], + "code": "import requests\n\nurl = \"https://srtn-me-url-shortener.p.rapidapi.com/api/shorten\"\nquerystring = {\"description\": \"Google homepage\", \"url\": \"https://www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"srtn-me-url-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://srtn-me-url-shortener.p.rapidapi.com/api/shorten\"\nquerystring = {\"description\": \"Google homepage\", \"url\": \"https://www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"srtn-me-url-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "url": { + "type": "string", + "description": "", + "default": "https://srtn.me/6vw9xv" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ssl_certificate_checker.json b/toolbench/toolenv/tools/Tools/ssl_certificate_checker.json new file mode 100644 index 0000000000000000000000000000000000000000..99a45b052982e0ebcf27138ebb56d41246eb6b7e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ssl_certificate_checker.json @@ -0,0 +1,56 @@ +{ + "tool_name":"SSL Certificate Checker", + "tool_description":"This API returns full information about SSL certificate used by a host.", + "title":"SSL Certificate Checker", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":99, + "avgLatency":1285, + "avgSuccessRate":96, + "popularityScore":9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/almann/api/ssl-certificate-checker2/", + "host":"ssl-certificate-checker2.p.rapidapi.com", + "api_list":[ + { + "name":"/ssl-certificate-checker/check", + "url":"https://ssl-certificate-checker2.p.rapidapi.com/ssl-certificate-checker/check", + "description":"Check the validity of an SSL certificate, returns certificate information.", + "method":"GET", + "required_parameters":[ + { + "name":"host", + "type":"STRING", + "description":"", + "default":"google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ssl-certificate-checker2.p.rapidapi.com/ssl-certificate-checker/check\"\nquerystring = {\"host\": host}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ssl-certificate-checker2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"/ssl-certificate-checker/health", + "url":"https://ssl-certificate-checker2.p.rapidapi.com/ssl-certificate-checker/health", + "description":"Return the health status of the API. Returns current UTC time.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ssl-certificate-checker2.p.rapidapi.com/ssl-certificate-checker/health\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ssl-certificate-checker2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ssl_certificate_checker/api.py b/toolbench/toolenv/tools/Tools/ssl_certificate_checker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6f50e015595aa9cab8886d3f215ebc1b887c96ce --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ssl_certificate_checker/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def ssl_certificate_checker_check(host: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Check the validity of an SSL certificate, returns certificate information." + + """ + url = f"https://ssl-certificate-checker2.p.rapidapi.com/ssl-certificate-checker/check" + querystring = {'host': host, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ssl-certificate-checker2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def ssl_certificate_checker_health(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return the health status of the API. Returns current UTC time." + + """ + url = f"https://ssl-certificate-checker2.p.rapidapi.com/ssl-certificate-checker/health" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ssl-certificate-checker2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/stackfinder.json b/toolbench/toolenv/tools/Tools/stackfinder.json new file mode 100644 index 0000000000000000000000000000000000000000..2b210a1be42f703384a9383bb6200c3117b9b0cd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/stackfinder.json @@ -0,0 +1,31 @@ +{ + "tool_name":"StackFinder", + "tool_description":"StackFinder is a powerful tool designed to identify the technology stack used by a given URL. ", + "title":"StackFinder", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/srprakash016/api/stackfinder/", + "host":"stackfinder.p.rapidapi.com", + "api_list":[ + { + "name":"Get TechStack data", + "url":"https://stackfinder.p.rapidapi.com/api/lookup", + "description":"This API endpoint allows you to retrieve tech information about a website by providing its URL.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://tesla.com" + } + ], + "code":"import requests\n\nurl = \"https://stackfinder.p.rapidapi.com/api/lookup\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"stackfinder.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/stackfinder/api.py b/toolbench/toolenv/tools/Tools/stackfinder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0086c2ab42f6ed0338b4a08c450e2030bbb6017e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/stackfinder/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_techstack_data(url: str='https://tesla.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This API endpoint allows you to retrieve tech information about a website by providing its URL." + + """ + url = f"https://stackfinder.p.rapidapi.com/api/lookup" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "stackfinder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/standard_qr_code_api.json b/toolbench/toolenv/tools/Tools/standard_qr_code_api.json new file mode 100644 index 0000000000000000000000000000000000000000..a6898890f62b4ef20716378e4721eccbeb99bee2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/standard_qr_code_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Standard QR Code API", + "tool_description":"This API takes URL and returns QR Code Image / Esta API toma la URL y devuelve la imagen del código QR", + "title":"Standard QR Code API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/julifa/api/standard-qr-code-api/", + "host":"standard-qr-code-api.p.rapidapi.com", + "api_list":[ + { + "name":"QR Url Code", + "url":"https://standard-qr-code-api.p.rapidapi.com/qr", + "description":"This end point takes a 'GET' request with url string as a parameter and returns qr code image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://standard-qr-code-api.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"standard-qr-code-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/standard_qr_code_api/api.py b/toolbench/toolenv/tools/Tools/standard_qr_code_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..10808aa78c9ef5493e6fc580f62d307c95baf06c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/standard_qr_code_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_url_code(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url string as a parameter and returns qr code image." + + """ + url = f"https://standard-qr-code-api.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "standard-qr-code-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/starline_telematics.json b/toolbench/toolenv/tools/Tools/starline_telematics.json new file mode 100644 index 0000000000000000000000000000000000000000..f349d5204bf89dcdc4588d3e7f249cfe4369bfe7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/starline_telematics.json @@ -0,0 +1,7870 @@ +{ + "product_id": "api_93a0d66e-87b9-463b-bfca-3041c6aec72e", + "tool_description": "\u041e\u0442\u043a\u0440\u044b\u0442\u043e\u0435 StarLine API \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430\u043c \u043e\u0445\u0440\u0430\u043d\u043d\u044b\u0445 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u0432 StarLine \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0438\u043c\u0438 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u044f\u043c\u0438.", + "home_url": "https://rapidapi.com/starline-starline-default/api/starline-telematics/", + "name": "Starline Telematics", + "title": "Starline Telematics", + "pricing": "FREE", + "tool_name": "Starline Telematics", + "score": { + "avgServiceLevel": 97, + "avgLatency": 47530, + "avgSuccessRate": 91, + "popularityScore": 7, + "__typename": "Score" + }, + "host": "starline-telematics.p.rapidapi.com", + "api_list": [ + { + "name": "UserInfoV2", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/user/1116/user_info", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438. \u041e\u0442\u0432\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043f\u043e\u043b\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u0414\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f user_id \u0438 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/user/{user_id}/data. \u0412 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Python-\u0441\u043a\u0440\u0438\u043f\u0442 get_user_info.py \u0438\u0437 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f gitlab.com/starline/openapi. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u043e\u0442\u0432\u0435\u0442 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/user/1116/user_info\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "user_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 SLNet", + "default": 1116 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/user/1116/user_info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/user/{user_id}/user_info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "Bad user id" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "devices", + "shared_devices", + "code", + "codestring" + ], + "properties": { + "devices": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e", + "items": { + "type": "object", + "required": [ + "alias", + "device_id", + "imei", + "phone", + "type", + "fw_version", + "car_state", + "car_alr_state", + "position", + "functions", + "battery", + "gps_lvl", + "mayak_temp", + "mon_type", + "status", + "ts_activity" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "imei": { + "type": "string", + "description": "IMEI GSM-\u043c\u043e\u0434\u0443\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "phone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "fw_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "car_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u0430\u043a\u0442\u0438\u0432\u043d\u043e, false \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "car_alr_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0442\u0440\u0435\u0432\u043e\u0433\u0430: \u0437\u043e\u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0430, false \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + } + } + }, + "balance": { + "type": "object", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 \u0441\u0447\u0435\u0442\u0430 SIM-\u043a\u0430\u0440\u0442\u044b \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "required": [ + "active" + ], + "properties": { + "active": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + }, + "standby": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + } + } + }, + "functions": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)", + "items": { + "type": "string", + "enum": [ + "adv_controls", + "adv_guard", + "ble", + "controls", + "events", + "info", + "mon_cfg", + "offless_hijack", + "position", + "push", + "rstart_cfg", + "shock_cfg", + "scoring", + "state", + "tracking" + ] + } + }, + "controls": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (\u043f\u0435\u0440\u0435\u0434\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0435\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 UserAgent != SLON)", + "items": { + "type": "object", + "properties": { + "position": { + "type": "integer", + "description": "\u041f\u043e\u0437\u0438\u0446\u0438\u044f \u043a\u043d\u043e\u043f\u043a\u0438" + }, + "type": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438" + } + } + } + }, + "partners": { + "type": "array", + "description": "\u0414\u043e\u0433\u043e\u0432\u043e\u0440\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0437\u0430\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u0441 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u043a\u0438\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438. \u0412 \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u043f\u043e \u0434\u0430\u043d\u043d\u043e\u043c\u0443 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 \u043d\u0435\u0442 \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430, \u0442\u043e \u043c\u0430\u0441\u0441\u0438\u0432 partners \u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442", + "items": { + "type": "object", + "properties": { + "key": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430" + } + } + } + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "mon_type": { + "type": "integer", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u0440\u0435\u0436\u0438\u043c\u0430 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "ts_activity": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "interval": { + "type": "integer", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "ts_wakeup": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0433\u043d\u043e\u0437\u0438\u0440\u0443\u0435\u043c\u0430\u044f \u043c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u043c\u0430\u044f\u043a\u0430 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043c\u0435\u0442\u043a\u0438, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.2012 \u043f\u043e UTC" + } + } + } + }, + "shared_devices": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438", + "items": { + "type": "object", + "required": [ + "alias", + "device_id", + "imei", + "phone", + "type", + "fw_version", + "car_state", + "car_alr_state", + "position", + "functions", + "roles", + "battery", + "gps_lvl", + "mayak_temp", + "mon_type", + "status", + "ts_activity" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "imei": { + "type": "string", + "description": "IMEI GSM-\u043c\u043e\u0434\u0443\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "phone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "fw_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "car_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u0430\u043a\u0442\u0438\u0432\u043d\u043e, false \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "car_alr_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0442\u0440\u0435\u0432\u043e\u0433\u0430: \u0437\u043e\u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0430, false \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + } + } + }, + "balance": { + "type": "object", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 \u0441\u0447\u0435\u0442\u0430 SIM-\u043a\u0430\u0440\u0442\u044b \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "required": [ + "active" + ], + "properties": { + "active": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + }, + "standby": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + } + } + }, + "functions": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)", + "items": { + "type": "string", + "enum": [ + "adv_controls", + "adv_guard", + "ble", + "controls", + "events", + "info", + "mon_cfg", + "offless_hijack", + "position", + "push", + "rstart_cfg", + "shock_cfg", + "scoring", + "state", + "tracking" + ] + } + }, + "roles": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u0430\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043e\u0431\u043b\u0430\u0434\u0430\u0435\u0442 \u043f\u0440\u0438 \u0440\u0430\u0431\u043e\u0442\u0435 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c", + "items": { + "type": "string", + "enum": [ + "user_restricted", + "dealer", + "support" + ] + } + }, + "rpl_channel": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u0430\u043d\u0430\u043b\u0430 Realplexor" + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "mon_type": { + "type": "integer", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u0440\u0435\u0436\u0438\u043c\u0430 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "ts_activity": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "interval": { + "type": "integer", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "ts_wakeup": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0433\u043d\u043e\u0437\u0438\u0440\u0443\u0435\u043c\u0430\u044f \u043c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u043c\u0430\u044f\u043a\u0430 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043c\u0435\u0442\u043a\u0438, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.2012 \u043f\u043e UTC" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 500 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "LibraryEvents", + "url": "https://starline-telematics.p.rapidapi.com/json/v3/library/events", + "description": "\u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u043f\u0440\u0438\u0445\u043e\u0434\u044f\u0442 \u0432\u0441\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0441 \u043f\u043e\u043b\u043d\u044b\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v3/library/events\"\n", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/library/events\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/library/events\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "\u00d0\u0092\u00d0\u00bd\u00d1\u0083\u00d1\u0082\u00d1\u0080\u00d0\u00b5\u00d0\u00bd\u00d0\u00bd\u00d1\u008f\u00d1\u008f \u00d0\u00be\u00d1\u0088\u00d0\u00b8\u00d0\u00b1\u00d0\u00ba\u00d0\u00b0 \u00d1\u0081\u00d0\u00b5\u00d1\u0080\u00d0\u00b2\u00d0\u00b5\u00d1\u0080\u00d0\u00b0" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "eventDescriptions", + "code", + "codestring" + ], + "properties": { + "eventDescriptions": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u0431\u044b\u0442\u0438\u0439", + "items": { + "type": "object", + "required": [ + "code", + "group_id", + "desc" + ], + "properties": { + "code": { + "type": "number", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + }, + "group_id": { + "type": "number", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0433\u0440\u0443\u043f\u043f\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439" + }, + "desc": { + "type": "string", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438: 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "UserInfo", + "url": "https://starline-telematics.p.rapidapi.com/json/user/1116/user_info", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438. \u041e\u0442\u0432\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043f\u043e\u043b\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/user/{user_id}/data. \u0412 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Python-\u0441\u043a\u0440\u0438\u043f\u0442 get_user_info.py \u0438\u0437 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f gitlab.com/starline/openapi. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u043e\u0442\u0432\u0435\u0442 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/user/4568857/user_info\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "user_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 SLNet", + "default": 1116 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/user/1116/user_info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/user/{user_id}/user_info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 403, + "codestring": "Bad user id" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "devices", + "shared_devices", + "code", + "codestring" + ], + "properties": { + "devices": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e", + "items": { + "type": "object", + "required": [ + "alias", + "device_id", + "imei", + "phone", + "type", + "fw_version", + "car_state", + "car_alr_state", + "position", + "battery", + "gps_lvl", + "mayak_temp", + "mon_type", + "status", + "ts_activity" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "imei": { + "type": "string", + "description": "IMEI GSM-\u043c\u043e\u0434\u0443\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "phone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "fw_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "reg": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "car_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u0430\u043a\u0442\u0438\u0432\u043d\u043e, 2 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430" + }, + "arm": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bypass": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bypass": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "car_alr_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: 1 \u2013 \u0442\u0440\u0435\u0432\u043e\u0433\u0430: \u0437\u043e\u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0430, 2 \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "properties": { + "add_h": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "pbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + } + } + }, + "balance": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 \u0441\u0447\u0435\u0442\u0430 SIM-\u043a\u0430\u0440\u0442\u044b \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0434\u043b\u044f \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u0432 \u0441 \u041f\u041e \u0422\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 2 \u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "rpl_channel": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u0430\u043d\u0430\u043b\u0430 Realplexor" + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "mon_type": { + "type": "integer", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u0440\u0435\u0436\u0438\u043c\u0430 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "ts_activity": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "interval": { + "type": "integer", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "ts_wakeup": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0433\u043d\u043e\u0437\u0438\u0440\u0443\u0435\u043c\u0430\u044f \u043c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u043c\u0430\u044f\u043a\u0430 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043c\u0435\u0442\u043a\u0438, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.2012 \u043f\u043e UTC" + } + } + } + }, + "shared_devices": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438", + "items": { + "type": "object", + "required": [ + "alias", + "device_id", + "imei", + "phone", + "type", + "fw_version", + "car_state", + "car_alr_state", + "position", + "roles", + "battery", + "gps_lvl", + "mayak_temp", + "mon_type", + "status", + "ts_activity" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "imei": { + "type": "string", + "description": "IMEI GSM-\u043c\u043e\u0434\u0443\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "phone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "fw_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "car_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u0430\u043a\u0442\u0438\u0432\u043d\u043e, 2 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430" + }, + "arm": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bypass": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bypass": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "car_alr_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: 1 \u2013 \u0442\u0440\u0435\u0432\u043e\u0433\u0430: \u0437\u043e\u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0430, 2 \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "properties": { + "add_h": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "pbrake": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + } + } + }, + "balance": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 \u0441\u0447\u0435\u0442\u0430 SIM-\u043a\u0430\u0440\u0442\u044b \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0434\u043b\u044f \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u0432 \u0441 \u041f\u041e \u0422\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 2 \u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "roles": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u0430\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043e\u0431\u043b\u0430\u0434\u0430\u0435\u0442 \u043f\u0440\u0438 \u0440\u0430\u0431\u043e\u0442\u0435 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c", + "items": { + "type": "string", + "enum": [ + "user_restricted", + "dealer", + "support" + ] + } + }, + "rpl_channel": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u0430\u043d\u0430\u043b\u0430 Realplexor" + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "mon_type": { + "type": "integer", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u0440\u0435\u0436\u0438\u043c\u0430 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "ts_activity": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "interval": { + "type": "integer", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "ts_wakeup": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0433\u043d\u043e\u0437\u0438\u0440\u0443\u0435\u043c\u0430\u044f \u043c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u043c\u0430\u044f\u043a\u0430 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043c\u0435\u0442\u043a\u0438, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.2012 \u043f\u043e UTC" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceOBDParams", + "url": "https://starline-telematics.p.rapidapi.com/json/device/45657/obd_params", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0445 \u043e\u0442 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u044f \u0438 \u0445\u0440\u0430\u043d\u044f\u0449\u0438\u0445\u0441\u044f \u0432 \u043a\u0435\u0448\u0435. \u041b\u044e\u0431\u043e\u0439 \u0438\u0437 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u043c\u044b\u0445 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 (fuel, errors, mileage) \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c null. \u042d\u0442\u043e \u0437\u043d\u0430\u0447\u0438\u0442, \u0447\u0442\u043e \u043b\u0438\u0431\u043e \u043e\u043d \u0435\u0449\u0435 \u043d\u0435 \u0441\u0447\u0438\u0442\u0430\u043d \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439 \u0441 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u044f, \u043b\u0438\u0431\u043e \u0434\u0430\u043d\u043d\u043e\u0435 \u0422\u0421 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439 CAN \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438, \u043b\u0438\u0431\u043e \u0434\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u0447\u0438\u0442\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 CAN. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/obd_params\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/device/45657/obd_params\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/device/{device_id}/obd_params\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "user not found" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "requirements", + "code", + "codestring" + ], + "properties": { + "requirements": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a \u043f\u0440\u043e\u0448\u0438\u0432\u043a\u0435", + "required": [ + "min_version" + ], + "properties": { + "min_version": { + "type": "string", + "description": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u043f\u0440\u043e\u0448\u0438\u0432\u043a\u0438" + } + } + }, + "obd_params": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 OBD \u0438\u0437 \u043a\u0435\u0448\u0430", + "properties": { + "fuel": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u0442\u043e\u043f\u043b\u0438\u0432\u0435", + "properties": { + "val": { + "type": "number", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0442\u043e\u043f\u043b\u0438\u0432\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445 \u0438\u043b\u0438 \u0432 \u043b\u0438\u0442\u0440\u0430\u0445)" + }, + "type": { + "type": "string", + "enum": [ + "percents", + "liters", + "unknown" + ], + "description": "\u0422\u0438\u043f \u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u0442\u043e\u043f\u043b\u0438\u0432\u0435: \u043b\u0438\u0431\u043e \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u044b, \u043b\u0438\u0431\u043e \u043b\u0438\u0442\u0440\u044b" + }, + "ts": { + "type": "number", + "description": "\u041a\u043e\u0433\u0434\u0430 \u0431\u044b\u043b\u043e \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0440\u043e\u0432\u043d\u044f \u0442\u043e\u043f\u043b\u0438\u0432\u0430 (Unix Timestamp UTC)" + } + } + }, + "errors": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0431 \u043e\u0448\u0438\u0431\u043a\u0430\u0445", + "properties": { + "val": { + "type": "number", + "description": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043e\u0448\u0438\u0431\u043e\u043a, \u0441\u0447\u0438\u0442\u0430\u043d\u043d\u044b\u0445 \u0441 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0438 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u044f" + }, + "ts": { + "type": "number", + "description": "\u041a\u043e\u0433\u0434\u0430 \u0431\u044b\u043b\u043e \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 (Unix Timestamp UTC)" + } + } + }, + "mileage": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u043f\u0440\u043e\u0431\u0435\u0433\u0435", + "properties": { + "val": { + "type": "number", + "description": "\u041f\u0440\u043e\u0431\u0435\u0433 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u044f \u0432 \u043a\u0438\u043b\u043e\u043c\u0435\u0442\u0440\u0430\u0445" + }, + "ts": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f, \u043a\u043e\u0433\u0434\u0430 \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u0440\u043e\u0431\u0435\u0433 (Unix Timestamp UTC)" + } + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "LibraryEventsId", + "url": "https://starline-telematics.p.rapidapi.com/json/v3/library/events/307", + "description": "\u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442 \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u0441 \u043f\u043e\u043b\u043d\u044b\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v3/library/events/307\"\n", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043e\u0431\u044b\u0442\u0438\u044f", + "default": 307 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/library/events/307\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/library/events/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "eventDescriptions": [ + { + "code": 307, + "desc": "\u00d0\u00a2\u00d1\u0080\u00d0\u00b5\u00d0\u00b2\u00d0\u00be\u00d0\u00b3\u00d0\u00b0 \u00d0\u00bf\u00d0\u00be \u00d0\u00b4\u00d0\u00b0\u00d1\u0082\u00d1\u0087\u00d0\u00b8\u00d0\u00ba\u00d1\u0083 \u00d1\u0080\u00d1\u0083\u00d1\u0087\u00d0\u00bd\u00d0\u00be\u00d0\u00b3\u00d0\u00be \u00d1\u0082\u00d0\u00be\u00d1\u0080\u00d0\u00bc\u00d0\u00be\u00d0\u00b7\u00d0\u00b0", + "group_id": 2 + } + ], + "code": 200, + "codestring": "OK" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "eventDescriptions", + "code", + "codestring" + ], + "properties": { + "eventDescriptions": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u0431\u044b\u0442\u0438\u0439", + "items": { + "type": "object", + "required": [ + "code", + "group_id", + "desc" + ], + "properties": { + "code": { + "type": "number", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + }, + "group_id": { + "type": "number", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0433\u0440\u0443\u043f\u043f\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439" + }, + "desc": { + "type": "string", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438: 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "UserDevices", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/user/1116/devices", + "description": "\u041e\u0442\u0432\u0435\u0442 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043e \u043a\u0430\u0436\u0434\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/user/{user_id}/data. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/user/1116/devices\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "user_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 SLNet", + "default": 1116 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/user/1116/devices\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/user/{user_id}/devices\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 403, + "codestring": "Bad user id" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "devices", + "code", + "codestring" + ], + "properties": { + "devices": { + "type": "array", + "description": "\u0411\u043b\u043e\u043a \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0431 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", + "items": { + "type": "object", + "properties": { + "activity": { + "type": "string", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438" + }, + "device_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "has_alarms": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0410\u0432\u0430\u0440\u0438\u0439\u043d\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "name": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "online": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0435\u0442\u0435\u0432\u043e\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "type": { + "type": "string", + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "typename": { + "type": "string", + "description": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceOBDErrors", + "url": "https://starline-telematics.p.rapidapi.com/json/device/45657/obd_errors", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0431 \u043e\u0448\u0438\u0431\u043a\u0430\u0445 OBD, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0445 \u043e\u0442 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u044f \u0438 \u0445\u0440\u0430\u043d\u044f\u0449\u0438\u0445\u0441\u044f \u0432 \u043a\u0435\u0448\u0435. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/obd_errors\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/device/45657/obd_errors\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/device/{device_id}/obd_errors\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "user not found" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "obd_errors", + "code", + "codestring" + ], + "properties": { + "obd_errors": { + "type": "array", + "description": "\u0411\u043b\u043e\u043a OBD \u043e\u0448\u0438\u0431\u043e\u043a", + "items": { + "type": "object", + "properties": { + "error": { + "type": "string", + "description": "\u041a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438" + }, + "error_ts": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f, \u043a\u043e\u0433\u0434\u0430 \u0431\u044b\u043b\u0430 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 (Unix Timestamp UTC)" + }, + "descriptions": { + "type": "object", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438", + "properties": { + "ru": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u043f\u043e-\u0440\u0443\u0441\u0441\u043a\u0438" + }, + "en": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u043f\u043e-\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438" + } + } + }, + "warning_level": { + "type": "number", + "enum": [ + 0, + 10, + 30, + 50, + 70, + 80, + 90, + 100 + ], + "description": "\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0441\u0435\u0440\u044c\u0435\u0437\u043d\u043e\u0441\u0442\u0438 \u043e\u0448\u0438\u0431\u043a\u0438" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "Device", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u0443\u043c\u043c\u0430\u0440\u043d\u043e\u0433\u043e \u043e\u0442\u0447\u0435\u0442\u0430 \u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/device/{device_id}/data. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/356306052111516\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 405, + "codestring": "device is not allowed for user -1" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "device", + "code", + "codestring" + ], + "properties": { + "device": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "alias", + "device_id", + "imei", + "phone", + "type", + "typename", + "fw_version", + "car_state", + "car_alr_state", + "position", + "functions", + "battery", + "gps_lvl", + "mayak_temp", + "mon_type", + "status", + "ts_activity" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "imei": { + "type": "string", + "description": "IMEI GSM-\u043c\u043e\u0434\u0443\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "phone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "typename": { + "type": "string", + "description": "\u0418\u043c\u044f \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "fw_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "car_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u0430\u043a\u0442\u0438\u0432\u043d\u043e, false \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "car_alr_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0442\u0440\u0435\u0432\u043e\u0433\u0430: \u0437\u043e\u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0430, false \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + } + } + }, + "balance": { + "type": "object", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 \u0441\u0447\u0435\u0442\u0430 SIM-\u043a\u0430\u0440\u0442\u044b \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "required": [ + "active" + ], + "properties": { + "active": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + }, + "standby": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + } + } + }, + "functions": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)", + "items": { + "type": "string", + "enum": [ + "adv_controls", + "adv_guard", + "ble", + "controls", + "events", + "info", + "mon_cfg", + "offless_hijack", + "position", + "push", + "rstart_cfg", + "shock_cfg", + "scoring", + "state", + "tracking" + ] + } + }, + "controls": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (\u043f\u0435\u0440\u0435\u0434\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0435\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 UserAgent != SLON)", + "items": { + "type": "object", + "properties": { + "position": { + "type": "integer", + "description": "\u041f\u043e\u0437\u0438\u0446\u0438\u044f \u043a\u043d\u043e\u043f\u043a\u0438" + }, + "type": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438" + } + } + } + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "mon_type": { + "type": "integer", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u0440\u0435\u0436\u0438\u043c\u0430 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "ts_activity": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "interval": { + "type": "integer", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0430\u044f\u043a\u0430" + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "Digest_Authentication", + "url": "https://starline-telematics.p.rapidapi.com/any_api_method", + "description": "\u0422\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 StarLineID. \u041f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e\u0433\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b cookie \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043c\u0435\u0442\u043e\u0434\u0430\u0445 WebAPI \u0434\u043b\u044f \u043f\u0440\u043e\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438. \u0414\u043b\u044f \u0442\u043e\u0433\u043e \u0447\u0442\u043e\u0431\u044b \u0441\u0435\u0440\u0432\u0435\u0440 \u043f\u043e\u043d\u0438\u043c\u0430\u043b, \u0447\u0442\u043e \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c digest \u043c\u0435\u0442\u043e\u0434\u043e\u043c, \u043a\u043b\u0438\u0435\u043d\u0442 \u0434\u043e\u043b\u0436\u0435\u043d \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0432 \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 'DigestAuth:true'. username \u2013 slid-token, password \u2013 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0430 StarLineID \u0441\u0435\u0440\u0432\u0435\u0440\u0435 (slid user_id). \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v3/device/357803045497365/data\" -v --digest -u '418db3fe902abe4eb4a6d92ad37ab7a7_276388:276388' -H 'DigestAuth:true'\n", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/any_api_method\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/any_api_method\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 401 \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 StarLineID / \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0435 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438" + } + } + } + }, + { + "name": "UserData", + "url": "https://starline-telematics.p.rapidapi.com/json/v3/user/1116/data", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043b\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438. \u041e\u0442\u0432\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043f\u043e\u043b\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u0414\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f user_id \u0438 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v3/user/1116/data\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "user_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 SLNet", + "default": 1116 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/user/1116/data\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/user/{user_id}/data\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 401, + "codestring": "Authenticated failed." + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "user_data", + "code", + "codestring" + ], + "properties": { + "user_data": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043f\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", + "required": [ + "shared_devices", + "devices" + ], + "properties": { + "shared_devices": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u0440\u0430\u0441\u0448\u0430\u0440\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e", + "items": { + "type": "object", + "description": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435", + "required": [ + "alias", + "type", + "telephone", + "status", + "typename", + "device_id", + "activity_ts", + "firmware_version", + "position", + "common", + "obd", + "state" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "telephone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "typename": { + "type": "string", + "description": "\u0418\u043c\u044f \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "activity_ts": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "firmware_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + }, + "is_move": { + "type": "integer", + "enum": [ + 0, + 1 + ], + "description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f" + } + } + }, + "common": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "gps_lvl", + "mayak_temp", + "battery", + "ts" + ], + "properties": { + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "balance": { + "type": "array", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441", + "items": { + "type": "object", + "required": [ + "state", + "operator", + "currency", + "ts" + ], + "properties": { + "key": { + "type": "string", + "enum": [ + "active", + "standby" + ], + "description": "\u0422\u0438\u043f SIM-\u043a\u0430\u0440\u0442\u044b (\u0430\u043a\u0442\u0438\u0432\u043d\u0430\u044f \u0438\u043b\u0438 \u0437\u0430\u043f\u0430\u0441\u043d\u0430\u044f)" + }, + "state": { + "type": "integer", + "enum": [ + 0, + 1 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (0 \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, 1 \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "operator": { + "type": "string", + "description": "\u041e\u043f\u0435\u0440\u0430\u0442\u043e\u0440 SIM-\u043a\u0430\u0440\u0442\u044b" + }, + "currency": { + "type": "string", + "description": "\u0412\u0430\u043b\u044e\u0442\u0430 (\u043f\u0435\u0440\u0435\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0434\u043d\u043e\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432\u0430\u043b\u044e\u0442\u044b)" + }, + "value": { + "type": "number", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + } + }, + "obd": { + "type": "object", + "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b OBD", + "required": [ + "fuel_litres", + "fuel_percent", + "mileage", + "ts" + ], + "properties": { + "fuel_litres": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u043b\u0438\u0442\u0440\u044b" + }, + "fuel_percent": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u044b" + }, + "mileage": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0431\u0435\u0433" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "r_start_timer": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "webasto_timer": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "alarm_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0433\u0438", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "events": { + "type": "object", + "description": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0432\u0430\u0436\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435", + "properties": { + "type": { + "type": "integer", + "description": "\u0422\u0438\u043f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0432\u0430\u0436\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + }, + "timestamp": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "r_start": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "temp": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0435", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0435" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "battery": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044e \u0410\u041a\u0411", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044e \u0410\u041a\u0411" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044f \u0410\u041a\u0411 \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + } + } + }, + "period": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0432 \u0447\u0430\u0441\u0430\u0445" + } + } + }, + "cron": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0430 (Unix Timestamp UTC)" + } + } + }, + "wakeup_ts": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443 (\u0438\u043b\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0443)" + } + } + } + } + } + }, + "devices": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e", + "items": { + "type": "object", + "description": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435", + "required": [ + "alias", + "type", + "telephone", + "status", + "typename", + "device_id", + "activity_ts", + "firmware_version", + "position", + "common", + "obd", + "state" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "telephone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "typename": { + "type": "string", + "description": "\u0418\u043c\u044f \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "activity_ts": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "firmware_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + }, + "is_move": { + "type": "integer", + "enum": [ + 0, + 1 + ], + "description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f" + } + } + }, + "common": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "gps_lvl", + "mayak_temp", + "battery", + "ts" + ], + "properties": { + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "balance": { + "type": "array", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441", + "items": { + "type": "object", + "required": [ + "state", + "operator", + "currency", + "ts" + ], + "properties": { + "key": { + "type": "string", + "enum": [ + "active", + "standby" + ], + "description": "\u0422\u0438\u043f SIM-\u043a\u0430\u0440\u0442\u044b (\u0430\u043a\u0442\u0438\u0432\u043d\u0430\u044f \u0438\u043b\u0438 \u0437\u0430\u043f\u0430\u0441\u043d\u0430\u044f)" + }, + "state": { + "type": "integer", + "enum": [ + 0, + 1 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (0 \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, 1 \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "operator": { + "type": "string", + "description": "\u041e\u043f\u0435\u0440\u0430\u0442\u043e\u0440 SIM-\u043a\u0430\u0440\u0442\u044b" + }, + "currency": { + "type": "string", + "description": "\u0412\u0430\u043b\u044e\u0442\u0430 (\u043f\u0435\u0440\u0435\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0434\u043d\u043e\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432\u0430\u043b\u044e\u0442\u044b)" + }, + "value": { + "type": "number", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + } + }, + "obd": { + "type": "object", + "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b OBD", + "required": [ + "fuel_litres", + "fuel_percent", + "mileage", + "ts" + ], + "properties": { + "fuel_litres": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u043b\u0438\u0442\u0440\u044b" + }, + "fuel_percent": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u044b" + }, + "mileage": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0431\u0435\u0433" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "r_start_timer": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "webasto_timer": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "alarm_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0433\u0438", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "events": { + "type": "object", + "description": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0432\u0430\u0436\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435", + "properties": { + "type": { + "type": "integer", + "description": "\u0422\u0438\u043f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0432\u0430\u0436\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + }, + "timestamp": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "r_start": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "temp": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0435", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0435" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "battery": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044e \u0410\u041a\u0411", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044e \u0410\u041a\u0411" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044f \u0410\u041a\u0411 \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + } + } + }, + "period": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0432 \u0447\u0430\u0441\u0430\u0445" + } + } + }, + "cron": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0430 (Unix Timestamp UTC)" + } + } + }, + "wakeup_ts": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443 (\u0438\u043b\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0443)" + } + } + } + } + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 401 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "UserMobileDevices", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/user/1116/mobile_devices", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/user/1116/mobile_devices\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "user_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 SLNet", + "default": 1116 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/user/1116/mobile_devices\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/user/{user_id}/mobile_devices\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 403, + "codestring": "Bad user id" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "type", + "mobiles", + "code", + "codestring" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "user_mobiles" + ], + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "mobiles": { + "type": "array", + "description": "\u0411\u043b\u043e\u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432", + "items": { + "type": "object", + "properties": { + "app_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f" + }, + "language": { + "type": "string", + "description": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u044f\u0437\u044b\u043a \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "os_type": { + "type": "string", + "description": "\u0422\u0438\u043f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "os_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "model": { + "type": "string", + "description": "\u041c\u043e\u0434\u0435\u043b\u044c \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "ser_num": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "token": { + "type": "string", + "description": "Push \u0442\u043e\u043a\u0435\u043d \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceData", + "url": "https://starline-telematics.p.rapidapi.com/json/v3/device/45657/data", + "description": "\u041e\u0442\u0432\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043f\u043e\u043b\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u0414\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 device_id \u0438 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v3/device/357976061290482/data\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/device/45657/data\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/device/{device_id}/data\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 401, + "codestring": "Authenticated failed." + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "data", + "code", + "codestring" + ], + "properties": { + "data": { + "type": "object", + "description": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435", + "required": [ + "alias", + "type", + "telephone", + "status", + "typename", + "device_id", + "activity_ts", + "firmware_version", + "position", + "common", + "obd", + "state" + ], + "properties": { + "alias": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435 \u044d\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0438\u0438" + }, + "type": { + "type": "integer", + "minimum": 1, + "maximum": 20, + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "telephone": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "typename": { + "type": "string", + "description": "\u0418\u043c\u044f \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438)" + }, + "device_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "activity_ts": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "firmware_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + }, + "is_move": { + "type": "integer", + "enum": [ + 0, + 1 + ], + "description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f" + } + } + }, + "common": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "gps_lvl", + "mayak_temp", + "battery", + "ts" + ], + "properties": { + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "balance": { + "type": "array", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441", + "items": { + "type": "object", + "required": [ + "state", + "operator", + "currency", + "ts" + ], + "properties": { + "key": { + "type": "string", + "enum": [ + "active", + "standby" + ], + "description": "\u0422\u0438\u043f SIM-\u043a\u0430\u0440\u0442\u044b (\u0430\u043a\u0442\u0438\u0432\u043d\u0430\u044f \u0438\u043b\u0438 \u0437\u0430\u043f\u0430\u0441\u043d\u0430\u044f)" + }, + "state": { + "type": "integer", + "enum": [ + 0, + 1 + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (0 \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, 1 \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "operator": { + "type": "string", + "description": "\u041e\u043f\u0435\u0440\u0430\u0442\u043e\u0440 SIM-\u043a\u0430\u0440\u0442\u044b" + }, + "currency": { + "type": "string", + "description": "\u0412\u0430\u043b\u044e\u0442\u0430 (\u043f\u0435\u0440\u0435\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0434\u043d\u043e\u0441\u0438\u043c\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432\u0430\u043b\u044e\u0442\u044b)" + }, + "value": { + "type": "number", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + } + }, + "obd": { + "type": "object", + "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b OBD", + "required": [ + "fuel_litres", + "fuel_percent", + "mileage", + "ts" + ], + "properties": { + "fuel_litres": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u043b\u0438\u0442\u0440\u044b" + }, + "fuel_percent": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0442\u043e\u043f\u043b\u0438\u0432\u0430, \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u044b" + }, + "mileage": { + "type": "integer", + "description": "\u041f\u0440\u043e\u0431\u0435\u0433" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "r_start_timer": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "webasto_timer": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "alarm_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0433\u0438", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "events": { + "type": "object", + "description": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0432\u0430\u0436\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435", + "properties": { + "type": { + "type": "integer", + "description": "\u0422\u0438\u043f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0432\u0430\u0436\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + }, + "timestamp": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445" + } + } + }, + "r_start": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "temp": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0435", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0435" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "battery": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044e \u0410\u041a\u0411", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044e \u0410\u041a\u0411" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u044f \u0410\u041a\u0411 \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + } + } + }, + "period": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0432 \u0447\u0430\u0441\u0430\u0445" + } + } + }, + "cron": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443", + "properties": { + "has": { + "type": "boolean", + "description": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443" + }, + "value": { + "type": "integer", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0433\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0430 (Unix Timestamp UTC)" + } + } + }, + "wakeup_ts": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u0434\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u043e \u0431\u0443\u0434\u0438\u043b\u044c\u043d\u0438\u043a\u0443 (\u0438\u043b\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0443)" + } + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 401 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DevicePosition", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/position", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0434\u0430\u043d\u043d\u044b\u0445, \u043e \u0442\u0435\u043a\u0443\u0449\u0435\u043c (\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u043c \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c) \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0412 \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u0432 \u0431\u0430\u0437\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0435\u0442 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0431\u043b\u043e\u043a position \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d \u043f\u0443\u0441\u0442\u044b\u043c. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/device/{device_id}/data. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/position\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/position\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/position\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "user not found" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "device", + "code", + "codestring" + ], + "properties": { + "device": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u0441 \u043e\u0442\u0432\u0435\u0442\u043e\u043c \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441", + "required": [ + "position" + ], + "properties": { + "position": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u043e \u043c\u0435\u0441\u0442\u043e\u043d\u0430\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "properties": { + "lat": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "lon": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "string", + "description": "\u0412\u0440\u0435\u043c\u044f, \u043a\u043e\u0433\u0434\u0430 \u0431\u044b\u043b\u0430 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u044f" + }, + "pres": { + "type": "string", + "description": "\u041f\u043e\u0433\u0440\u0435\u0448\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u043c\u0435\u0442\u0440\u0430\u0445" + } + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceState", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657/state", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/device/{device_id}/data. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/356306052111516/state\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657/state\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/state\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "messages": "The API is unreachable, please contact the API provider", + "info": "Your Client (working) ---> Gateway (working) ---> API (not working)" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "state", + "code", + "codestring" + ], + "properties": { + "state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "car_state", + "car_alr_state", + "position", + "battery", + "mon_type", + "status", + "ts_activity" + ], + "properties": { + "car_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u0430\u043a\u0442\u0438\u0432\u043d\u043e, false \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e/\u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", + "required": [ + "add_sens_bpass", + "alarm", + "arm", + "door", + "hbrake", + "hijack", + "hood", + "run", + "out", + "r_start", + "ign", + "shock_bpass", + "tilt_bpass", + "trunk", + "valet" + ], + "properties": { + "add_sens_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "alarm": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "arm_moving_pb": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438 (\u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 6-\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f)" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "boolean", + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "r_start": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_bpass": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "valet": { + "type": "boolean", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "car_alr_state": { + "type": "object", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0442\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c: true \u2013 \u0442\u0440\u0435\u0432\u043e\u0433\u0430: \u0437\u043e\u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0430, false \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "properties": { + "add_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "add_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + }, + "door": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "hbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hijack": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "pbrake": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "shock_h": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_l": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "trunk": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "position": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "required": [ + "x", + "y", + "ts", + "sat_qty" + ], + "properties": { + "x": { + "type": "string", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430" + }, + "y": { + "type": "string", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430" + }, + "ts": { + "type": "integer", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u0438 \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "s": { + "type": "integer", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043c/\u0447" + }, + "dir": { + "type": "integer", + "minimum": 0, + "maximum": 360, + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445 (0 \u2013 \u0421\u0435\u0432\u0435\u0440, 180 \u2013 \u042e\u0433)" + }, + "sat_qty": { + "type": "integer", + "description": "\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "r": { + "type": "integer", + "description": "\u0422\u043e\u0447\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043f\u0440\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u043e \u0431\u0430\u0437\u043e\u0432\u044b\u043c \u0441\u0442\u0430\u043d\u0446\u0438\u044f\u043c GSM)" + } + } + }, + "balance": { + "type": "object", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 \u0441\u0447\u0435\u0442\u0430 SIM-\u043a\u0430\u0440\u0442\u044b \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "required": [ + "active" + ], + "properties": { + "active": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + }, + "standby": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0439 SIM-\u043a\u0430\u0440\u0442\u044b", + "required": [ + "state", + "value" + ], + "properties": { + "state": { + "type": "string", + "enum": [ + "normal", + "low_balance" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM-\u043a\u0430\u0440\u0442\u044b (\"low_balance\" \u2013 \u043d\u0438\u0437\u043a\u0438\u0439, \"normal\" \u2013 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439)" + }, + "value": { + "type": "integer", + "description": "\u0411\u0430\u043b\u0430\u043d\u0441 SIM-\u043a\u0430\u0440\u0442\u044b" + } + } + } + } + }, + "battery": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 (\u0432\u043e\u043b\u044c\u0442\u044b) \u0438\u043b\u0438 \u0437\u0430\u0440\u044f\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0438 \u043c\u0430\u044f\u043a\u0430 (\u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445)" + }, + "ctemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0441\u0430\u043b\u043e\u043d\u0430" + }, + "etemp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "gps_lvl": { + "type": "integer", + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GPS \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GPS" + }, + "gsm_lvl": { + "type": "integer", + "minimum": 1, + "maximum": 30, + "description": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u0438\u0451\u043c\u0430 GSM \u0441\u0438\u0433\u043d\u0430\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0432\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u0443 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432 GSM" + }, + "mayak_temp": { + "type": "integer", + "description": "\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430 \u043c\u0430\u044f\u043a\u0430" + }, + "mon_type": { + "type": "integer", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u0440\u0435\u0436\u0438\u043c\u0430 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "status": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c (1 \u2013 online, 2 \u2013 offline)" + }, + "ts_activity": { + "type": "integer", + "description": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0447\u0438\u0441\u043b\u043e \u0441\u0435\u043a\u0443\u043d\u0434 \u043f\u0440\u043e\u0448\u0435\u0434\u0448\u0438\u0445 \u0441 01.01.1970 \u043f\u043e UTC" + }, + "interval": { + "type": "integer", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0430\u044f\u043a\u0430" + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "Controls_library", + "url": "https://starline-telematics.p.rapidapi.com/json/device/45657/ctrls_library", + "description": "\u041c\u0435\u0442\u043e\u0434 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0432\u0441\u0435\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0445 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u0441\u043f\u0438\u0441\u043e\u043a \u043a\u043d\u043e\u043f\u043e\u043a \u0441 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c \u0438\u0445 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f. \u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u044f\u0437\u044b\u043a\u0435, \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c \u0432 \u043b\u0438\u0447\u043d\u043e\u043c \u043a\u0430\u0431\u0438\u043d\u0435\u0442\u0435 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u043d\u043e\u043c \u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0445 \u0434\u0430\u043d\u043d\u043e\u0439 \u0441\u0435\u0441\u0441\u0438\u0438. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/device/45657/ctrls_library\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/device/45657/ctrls_library\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/device/{device_id}/ctrls_library\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "user not found" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "controls", + "code", + "codestring" + ], + "properties": { + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + }, + "controls": { + "type": "object", + "description": "\u041e\u0431\u044a\u0435\u043a\u0442 \u0441 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f", + "properties": { + "ign": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u0437\u0430\u043f\u0443\u0441\u043a-\u043e\u0441\u0442\u0430\u043d\u043e\u0432)", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "ign_start": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "ign_stop": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + } + } + }, + "arm": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + } + } + }, + "arm_start": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u044b", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u044b" + } + } + }, + "arm_stop": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u044b", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u044b" + } + } + }, + "hijack": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0430\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u044f", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0430\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u044f" + } + } + }, + "valet": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + } + } + }, + "poke": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \"\u0421\u0438\u0433\u043d\u0430\u043b\"", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \"\u0421\u0438\u0433\u043d\u0430\u043b\"" + } + } + }, + "call": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \"\u0417\u0432\u043e\u043d\u043e\u043a\"", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \"\u0417\u0432\u043e\u043d\u043e\u043a\"" + } + } + }, + "hfree": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043e\u043c \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043e\u043c \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + } + } + }, + "disarm_trunk": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + } + } + }, + "panic": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0442\u0440\u0435\u0432\u043e\u0433\u0438", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0442\u0440\u0435\u0432\u043e\u0433\u0438" + } + } + }, + "getbalance": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM \u043a\u0430\u0440\u0442\u044b", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 SIM \u043a\u0430\u0440\u0442\u044b" + } + } + }, + "shock_bpass": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + } + } + }, + "tilt_bpass": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + } + } + }, + "add_sens_bpass": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430" + } + } + }, + "webasto": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u044b\u043c \u043d\u0430\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u0435\u043c", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u044b\u043c \u043d\u0430\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u0435\u043c" + } + } + }, + "out": { + "type": "object", + "description": "Alias \u043a\u043d\u043e\u043f\u043a\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043a\u0430\u043d\u0430\u043b\u043e\u043c", + "properties": { + "title": { + "type": "string", + "description": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0430 \u043a\u043d\u043e\u043f\u043a\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043a\u0430\u043d\u0430\u043b\u043e\u043c" + } + } + } + } + } + } + } + }, + { + "name": "DeviceInfoGET", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/info", + "description": "\u041c\u0435\u0442\u043e\u0434 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/device/{device_id}/data. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/info\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 500, + "codestring": "user not found" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "has_alarms", + "online", + "functions", + "controls", + "tel", + "name", + "type", + "device_id", + "owner_tel", + "frm_version", + "typename", + "sn", + "code", + "codestring" + ], + "properties": { + "has_alarms": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0410\u0432\u0430\u0440\u0438\u0439\u043d\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "online": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c" + }, + "functions": { + "type": "array", + "description": "\u0424\u0443\u043d\u043a\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "items": { + "type": "string", + "enum": [ + "adv_controls", + "adv_guard", + "adv_state", + "controls", + "eng_sensor", + "events", + "gsm", + "info", + "int_sensor", + "position", + "push", + "rstart_cfg", + "shock_cfg", + "state", + "ble", + "mon_cfg", + "offless_hijack", + "scoring", + "tracking" + ] + } + }, + "controls": { + "type": "array", + "description": "\u041e\u0431\u044a\u0435\u043a\u0442 \u0441 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f", + "items": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ] + } + }, + "tel": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "name": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438" + }, + "type": { + "type": "string", + "enum": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20" + ], + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "device_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "owner_tel": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "frm_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "typename": { + "type": "string", + "description": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet, \u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceAsyncGet", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657/async/AEVXNX0QLGMQRLVOW66HYAB6OYIWO6WW", + "description": "\u041c\u0435\u0442\u043e\u0434 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u044b\u043b\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0430 \u0440\u0430\u043d\u0435\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043c\u0435\u0442\u043e\u0434\u0430 /json/v2/device/{device_id}/async. \u0414\u043b\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 device_id, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u0430\u043d\u0434\u044b cmd_id \u0438 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/9854082/async/AEVXNX0QLGMQRLVOW66HYAB6OYIWO6WW\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + }, + { + "name": "cmd_id", + "type": "STRING", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f", + "default": "AEVXNX0QLGMQRLVOW66HYAB6OYIWO6WW" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657/async/AEVXNX0QLGMQRLVOW66HYAB6OYIWO6WW\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/async/{cmd_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 401, + "codestring": "Authenticated failed." + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "status", + "code", + "codestring" + ], + "properties": { + "cmd_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u0430\u043d\u0434\u044b (32 \u0441\u0438\u043c\u0432\u043e\u043b\u0430)" + }, + "type": { + "type": "string", + "enum": [ + "arm", + "ign", + "hijack", + "out", + "valet", + "shock_bpass", + "add_sens_bpass", + "tilt_bpass", + "webasto", + "poke", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "update_info", + "update_position" + ], + "description": "\u0422\u0438\u043f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430), \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435" + }, + "value": { + "type": "number", + "enum": [ + 0, + 1 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u043e\u0439 \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435 (0 \u2013 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435)" + }, + "status": { + "type": "number", + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b (1 \u2013 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f, 2 \u2013 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e, 3 \u2013 \u043e\u0448\u0438\u0431\u043a\u0430 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, 4 \u2013 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0435 \u0432 \u0441\u0435\u0442\u0438, 5 \u2013 \u0438\u0441\u0442\u0435\u043a\u043b\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043e\u0442\u0432\u0435\u0442\u0430 \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, 6 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u043b\u0441\u044f \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u0430\u0432\u043d\u043e \u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043e \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u0443\u0436\u0435 \u0441\u0442\u0435\u0440\u0442\u044b \u0438\u0437 \u043f\u0430\u043c\u044f\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430)" + }, + "device_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "time_start": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 (\u0444\u043e\u0440\u043c\u0430\u0442 \u2013 Unix Timestamp)" + }, + "time_stop": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u0442\u0430\u0439\u043c\u0430\u0443\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u2013 \u0432\u0440\u0435\u043c\u044f, \u043f\u043e\u0441\u043b\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043c\u043e\u0436\u043d\u043e \u0441\u0447\u0438\u0442\u0430\u0442\u044c \u043d\u0435\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u043e\u0439" + }, + "now": { + "type": "number", + "description": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 401 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438, \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 cookie\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "getAppCode", + "url": "https://starline-telematics.p.rapidapi.com/apiV3/application/getCode", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u0434\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0442\u043e\u043a\u0435\u043d\u0430. \u0421\u0440\u043e\u043a \u0433\u043e\u0434\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u0434\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u2013 1 \u0447\u0430\u0441. \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043f\u0430\u0440\u043e\u043b\u044c \u043c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0432 \u043b\u0438\u0447\u043d\u043e\u043c \u043a\u0430\u0431\u0438\u043d\u0435\u0442\u0435 \u0432 \u0440\u0430\u0437\u0434\u0435\u043b\u0435 \"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u043c\" \u043d\u0430 my.starline.ru. \u0412 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Python-\u0441\u043a\u0440\u0438\u043f\u0442 get_app_code.py \u0438\u0437 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f gitlab.com/starline/openapi. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u043a\u043e\u0434 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://id.starline.ru/apiV3/application/getCode?appId=2&secret=d1e0c6cbd6c93999e5072cee4deed9c9\" -i\n", + "method": "GET", + "required_parameters": [ + { + "name": "secret", + "type": "STRING", + "description": "MD5 \u043e\u0442 \u043f\u0430\u0440\u043e\u043b\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", + "default": "d1e0c6cbd6c93999e5072cee4deed9c9" + }, + { + "name": "appId", + "type": "STRING", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", + "default": 2 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/apiV3/application/getCode\"\nquerystring = {\"secret\": \"d1e0c6cbd6c93999e5072cee4deed9c9\", \"appId\": 2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/apiV3/application/getCode\"\nquerystring = {\"secret\": \"d1e0c6cbd6c93999e5072cee4deed9c9\", \"appId\": 2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "oneOf": [ + { + "type": "object", + "description": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441", + "required": [ + "state", + "desc" + ], + "properties": { + "state": { + "type": "integer", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: 1 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e" + }, + "desc": { + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430", + "type": "object", + "required": [ + "code" + ], + "properties": { + "code": { + "type": "string", + "description": "\u041a\u043e\u0434, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0439 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0442\u043e\u043a\u0435\u043d\u0430" + } + } + } + } + }, + { + "type": "object", + "description": "\u041e\u0448\u0438\u0431\u043a\u0430", + "required": [ + "state", + "desc" + ], + "properties": { + "state": { + "type": "integer", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: 1 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e" + }, + "desc": { + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430", + "type": "object", + "required": [ + "message" + ], + "properties": { + "message": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438:\n * \"App not found\" \u2013 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u043c appId \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e,\n * \"Error secret\" \u2013 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f,\n * \"Invalid request\" \u2013 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0440\u043e\u0441\u0430\n" + } + } + } + } + } + ] + } + }, + { + "name": "getAppToken", + "url": "https://starline-telematics.p.rapidapi.com/apiV3/application/getToken", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0439 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438. \u0412\u0440\u0435\u043c\u044f \u0436\u0438\u0437\u043d\u0438 \u0442\u043e\u043a\u0435\u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u2013 4 \u0447\u0430\u0441\u0430. \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043f\u0430\u0440\u043e\u043b\u044c \u043c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0432 \u043b\u0438\u0447\u043d\u043e\u043c \u043a\u0430\u0431\u0438\u043d\u0435\u0442\u0435 \u0432 \u0440\u0430\u0437\u0434\u0435\u043b\u0435 \"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u043c\" \u043d\u0430 my.starline.ru. \u0412 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Python-\u0441\u043a\u0440\u0438\u043f\u0442 get_app_token.py \u0438\u0437 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f gitlab.com/starline/openapi. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u0442\u043e\u043a\u0435\u043d \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://id.starline.ru/apiV3/application/getToken?appId=2&secret=2646398c5a7bb70b7f4eadca7c4f62cb\" -i\n", + "method": "GET", + "required_parameters": [ + { + "name": "secret", + "type": "STRING", + "description": "MD5 \u043e\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u043a\u043e\u043d\u043a\u0430\u0442\u0435\u043d\u0430\u0446\u0438\u0438 \u043f\u0430\u0440\u043e\u043b\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u0434\u0430, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0447\u0435\u0440\u0435\u0437 /application/getCode", + "default": "2646398c5a7bb70b7f4eadca7c4f62cb" + }, + { + "name": "appId", + "type": "STRING", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", + "default": 2 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/apiV3/application/getToken\"\nquerystring = {\"secret\": \"2646398c5a7bb70b7f4eadca7c4f62cb\", \"appId\": 2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/apiV3/application/getToken\"\nquerystring = {\"secret\": \"2646398c5a7bb70b7f4eadca7c4f62cb\", \"appId\": 2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "oneOf": [ + { + "type": "object", + "description": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441", + "required": [ + "state", + "desc" + ], + "properties": { + "state": { + "type": "integer", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: 1 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e" + }, + "desc": { + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430", + "type": "object", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "\u0422\u043e\u043a\u0435\u043d \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f" + } + } + } + } + }, + { + "type": "object", + "description": "\u041e\u0448\u0438\u0431\u043a\u0430", + "required": [ + "state", + "desc" + ], + "properties": { + "state": { + "type": "integer", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: 1 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e" + }, + "desc": { + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430", + "type": "object", + "required": [ + "message" + ], + "properties": { + "message": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438:\n * \"Invalid code\" \u2013 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 appId \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f,\n * \"Invalid request\" \u2013 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0440\u043e\u0441\u0430\n" + } + } + } + } + } + ] + } + }, + { + "name": "SettingsSettings", + "url": "https://starline-telematics.p.rapidapi.com/json/v3/device/45657/settings", + "description": "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 3-5 \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f. \u0414\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 id \u0438 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v3/device/4568857/settings\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168'\n", + "method": "GET", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/device/45657/settings\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v3/device/{device_id}/settings\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "code": 405, + "codestring": "settings? is not allowed for user -1" + }, + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "device_id", + "general", + "code", + "codestring" + ], + "properties": { + "device_id": { + "type": "string", + "description": "ID \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "general": { + "type": "object", + "description": "\u041e\u0431\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", + "required": [ + "tel", + "name", + "imei", + "fw_version" + ], + "properties": { + "tel": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "name": { + "type": "string", + "description": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 (alias) \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "imei": { + "type": "string", + "description": "IMEI \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "fw_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u043f\u0440\u043e\u0448\u0438\u0432\u043a\u0438" + } + } + }, + "webasto": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f", + "properties": { + "webasto": { + "type": "boolean", + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "is_exists": { + "type": "boolean", + "description": "\u0415\u0441\u0442\u044c \u043b\u0438 \u0432 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0439 \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044c" + } + } + }, + "monitoring": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430", + "properties": { + "type": { + "type": "number", + "enum": [ + 1, + 2, + 3 + ], + "description": "\u0422\u0438\u043f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430: 1 \u2013 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0435 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433, 2 \u2013 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0443\u0442\u0435\u0432\u044b\u0435 \u0442\u043e\u0447\u043a\u0438, 3 \u2013 \u0440\u0435\u0436\u0438\u043c \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430" + }, + "period": { + "type": "number", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445" + } + } + }, + "shock_sens": { + "type": "object", + "description": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043e\u0440\u043e\u0433\u043e\u0432 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430\u043c \u0443\u0434\u0430\u0440\u0430 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043e\u0445\u0440\u0430\u043d\u044b", + "properties": { + "shock_light": { + "type": "number", + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_heavy": { + "type": "number", + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430" + }, + "tilt_sens": { + "type": "number", + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + } + } + }, + "remote_start": { + "type": "object", + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "period_start": { + "type": "number", + "description": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0447\u0430\u0441\u043e\u0432, \u0447\u0435\u0440\u0435\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u043c \u0437\u0430\u043f\u0443\u0441\u043a\u0435)" + }, + "temp_start": { + "type": "number", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0435 \u043e\u0442 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b)" + }, + "battery_start": { + "type": "number", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0440\u044f\u0434\u0430 \u0410\u041a\u0411, \u043f\u0440\u0438 \u0440\u0430\u0437\u0440\u044f\u0434\u0435 \u0410\u041a\u0411 \u043d\u0438\u0436\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "battery_start_min": { + "type": "number", + "description": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430 \u0437\u0430\u0440\u044f\u0434\u0430 \u0410\u041a\u0411, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + }, + "battery_start_max": { + "type": "number", + "description": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0440\u044f\u0434\u0430 \u0410\u041a\u0411, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + }, + "warm_up": { + "type": "number", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "enabled": { + "type": "boolean", + "description": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d \u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a \u0432 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435" + }, + "is_exist": { + "type": "boolean", + "description": "\u0415\u0441\u0442\u044c \u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a \u0432 \u0430\u0432\u0442\u043e\u043c\u043e\u0431\u0438\u043b\u0435" + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceEvents", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657/events", + "description": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0414\u043b\u044f \u0442\u043e\u0433\u043e \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0438\u0441\u0442\u043e\u0440\u0438\u044e \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0434\u0430\u0442\u044b \u043d\u0430\u0447\u0430\u043b\u0430 \u0438 \u043a\u043e\u043d\u0446\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430, \u0437\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f (\u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 Unix Timestamp UTC). \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/356306056285332/events\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' -d '{\"period_start\": 1564693200, \"period_end\": 1564779600}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "period_start", + "type": "NUMBER", + "description": "\u041d\u0430\u0447\u0430\u043b\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430, \u0441 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u0439 (Unix Timestamp UTC)", + "default": 1564693200 + }, + { + "name": "period_end", + "type": "NUMBER", + "description": "\u041a\u043e\u043d\u0435\u0446 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 (Unix Timestamp UTC)", + "default": 1564779600 + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657/events\"\nquerystring = {\"period_start\": 1564693200, \"period_end\": 1564779600}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/events\"\nquerystring = {\"period_start\": 1564693200, \"period_end\": 1564779600}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "events", + "code", + "codestring" + ], + "properties": { + "events": { + "type": "array", + "description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u0431\u044b\u0442\u0438\u0439", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "number", + "description": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u043e\u0431\u044b\u0442\u0438\u044f (Unix Timestamp UTC)" + }, + "groupId": { + "type": "number", + "description": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + }, + "type": { + "type": "number", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043e\u0431\u044b\u0442\u0438\u044f" + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0440\u043e\u0441\u0430\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "SettingsWebasto", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/settings/webasto", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a webasto. \u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0432\u043d\u043e\u0432\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/settings/webasto\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' -d '{\"period\": 10}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "period", + "type": "NUMBER", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445", + "default": 10 + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/settings/webasto\"\nquerystring = {\"period\": 10}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/settings/webasto\"\nquerystring = {\"period\": 10}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "period", + "code", + "codestring" + ], + "properties": { + "period": { + "type": "number", + "description": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0430\u0439\u043c\u0435\u0440\u0430" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 400 \u2013 \u043f\u0443\u0441\u0442\u043e\u0439 \u0431\u043b\u043e\u043a \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c\u0438,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "SettingsShockSens", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/settings/shock_sens", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 device_id, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0434\u0430\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0430\u043a\u043b\u043e\u043d\u0430, \u0443\u0434\u0430\u0440\u0430 \u0438 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0438\u0440\u0435\u043d\u044b \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u0443\u0434\u0430\u0440\u0430. \u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0432\u043d\u043e\u0432\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/357803045512270/settings/shock_sens\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' -d '{\"tilt_sens\": 1, \"shock_heavy\": 5, \"shock_light\": 5}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [ + { + "name": "shock_heavy", + "type": "NUMBER", + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u0443\u0434\u0430\u0440\u0430", + "default": "" + }, + { + "name": "shock_light", + "type": "NUMBER", + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0438\u0440\u0435\u043d\u044b \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u0443\u0434\u0430\u0440\u0430", + "default": "" + }, + { + "name": "tilt_sens", + "type": "NUMBER", + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u043d\u0430\u043a\u043b\u043e\u043d\u0430", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/settings/shock_sens\"\nquerystring = {\"shock_heavy\": \"\", \"shock_light\": \"\", \"tilt_sens\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/settings/shock_sens\"\nquerystring = {\"shock_heavy\": \"\", \"shock_light\": \"\", \"tilt_sens\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "shock_heavy", + "tilt_sens", + "shock_light", + "type", + "code", + "codestring" + ], + "properties": { + "tilt_sens": { + "type": "number", + "minimum": 0, + "maximum": 255, + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u043d\u0430\u043a\u043b\u043e\u043d\u0430" + }, + "shock_heavy": { + "type": "number", + "minimum": 0, + "maximum": 255, + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u0443\u0434\u0430\u0440\u0430" + }, + "shock_light": { + "type": "number", + "minimum": 0, + "maximum": 255, + "description": "\u041f\u043e\u0440\u043e\u0433 \u0441\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0438\u0440\u0435\u043d\u044b \u043f\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0443 \u0443\u0434\u0430\u0440\u0430" + }, + "valet": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0435\u0440\u0432\u0438\u0441\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "out": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043a\u0430\u043d\u0430\u043b\u043e\u043c (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "pbrake": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "arm": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "shock_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "ign": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "poke": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0433\u0443\u0434\u043a\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "tilt_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "trunk": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "add_sens_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0434\u0430\u0442\u0447\u0438\u043a (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "hijack": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\" (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "hood": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "run": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "door": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "alarm": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043e\u0445\u0440\u0430\u043d\u044b (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "r_start": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "hbrake": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "type": { + "type": "string", + "enum": [ + "inprocess", + "command_reply" + ], + "description": "\u0422\u0438\u043f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u043e\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (inprocess \u2013 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e, command_reply \u2013 \u043e\u0442\u0432\u0435\u0442 \u043f\u0440\u0438\u0434\u0435\u0442 \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435)" + }, + "reply_code": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u041e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u043a\u043e\u0434" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c / \u043f\u0443\u0441\u0442\u043e\u0439 \u0431\u043b\u043e\u043a \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "Controls_list_set", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657/controls", + "description": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u043a\u043e\u043c\u0430\u043d\u0434 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/45657/controls\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' -d '{\"1\": \"ign\", \"2\": \"arm\", \"3\": \"poke\", \"4\": \"hijack\", \"5\": \"out\", \"6\": \"call\"}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "3", + "type": "STRING", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 3", + "default": "\"ign\"" + }, + { + "name": "5", + "type": "STRING", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 5", + "default": "\"ign\"" + }, + { + "name": "6", + "type": "STRING", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 6", + "default": "\"ign\"" + }, + { + "name": "2", + "type": "STRING", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 2", + "default": "\"ign\"" + }, + { + "name": "1", + "type": "STRING", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 1", + "default": "\"ign\"" + }, + { + "name": "4", + "type": "STRING", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 4", + "default": "\"ign\"" + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657/controls\"\nquerystring = {\"3\": \"\\\"ign\\\"\", \"5\": \"\\\"ign\\\"\", \"6\": \"\\\"ign\\\"\", \"2\": \"\\\"ign\\\"\", \"1\": \"\\\"ign\\\"\", \"4\": \"\\\"ign\\\"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/controls\"\nquerystring = {\"3\": \"\\\"ign\\\"\", \"5\": \"\\\"ign\\\"\", \"6\": \"\\\"ign\\\"\", \"2\": \"\\\"ign\\\"\", \"1\": \"\\\"ign\\\"\", \"4\": \"\\\"ign\\\"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "controls", + "code", + "codestring" + ], + "properties": { + "controls": { + "type": "object", + "description": "\u041e\u0431\u044a\u0435\u043a\u0442 \u0441 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f", + "properties": { + "1": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 1" + }, + "2": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 2" + }, + "3": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 3" + }, + "4": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 4" + }, + "5": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 5" + }, + "6": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ], + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 6" + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 401 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438, \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 cookie\n * 1009 \u2013 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u043a\u043e\u043c\u0430\u043d\u0434 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceAsyncPost", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657/async", + "description": "\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u043c \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c \u0432 \u043d\u0435\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u044e\u0449\u0435\u043c \u0440\u0435\u0436\u0438\u043c\u0435 (\u043e\u0442\u0432\u0435\u0442 \u043e\u0442 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u0441\u0440\u0430\u0437\u0443, \u0430 \u043d\u0435 \u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430). \u041f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0441\u0435\u0440\u0432\u0435\u0440 \u0434\u0430\u0441\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 \u043d\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0431\u0443\u0434\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c\u0441\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u0430\u043d\u0434\u044b. \u042d\u0442\u043e\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043d\u0443\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043c\u0435\u0442\u043e\u0434\u0435 /json/v2/device/{device_id}/async/{cmd_id} \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b. \u041f\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044e \u0441 \u043c\u0435\u0442\u043e\u0434\u043e\u043c /json/v1/device/{device_id}/set_param \u0442\u0430\u043a\u0430\u044f \u0441\u0445\u0435\u043c\u0430 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441 API \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043e\u0442\u043b\u0438\u0447\u0438\u0442\u044c \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043a\u0438 \u043d\u0430 \u0441\u0435\u0442\u0438 \u043c\u0435\u0436\u0434\u0443 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u043c API \u043e\u0442 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u044f \u043e\u0431\u0440\u0430\u0442\u043d\u043e\u0439 \u0441\u0432\u044f\u0437\u0438 \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0438\u0439 \u0442\u0430\u0439\u043c\u0430\u0443\u0442 \u043d\u0430 \u0441\u043e\u043a\u0435\u0442 \u043f\u0440\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u043a API. \u0415\u0441\u043b\u0438 \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0443\u0436\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0434\u0440\u0443\u0433\u0430\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u0442\u043e \u0432 \u043e\u0442\u0432\u0435\u0442\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c\u0441\u044f \u0434\u0430\u043d\u043d\u044b\u0435 \u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u043e\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u0435, \u0430 \u043d\u0435 \u043e \u0442\u043e\u0439, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u0437\u0430\u043f\u0440\u043e\u0441. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u043f\u043e\u043b\u0435 type \u0438 value \u0432 \u043e\u0442\u0432\u0435\u0442\u0435. \u0414\u043b\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 device_id \u0438 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/45657/async\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' -d '{\"type\": \"arm\", \"value\": 0}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "type", + "type": "STRING", + "description": "\u0422\u0438\u043f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430), \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435", + "default": "arm" + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [ + { + "name": "value", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0440\u0435\u0436\u0438\u043c \u0440\u0430\u0431\u043e\u0442\u044b (0 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, 1 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e)", + "default": 0 + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657/async\"\nquerystring = {\"type\": \"arm\", \"value\": 0}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/async\"\nquerystring = {\"type\": \"arm\", \"value\": 0}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "status", + "code", + "codestring" + ], + "properties": { + "cmd_id": { + "type": "string", + "description": "\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u0430\u043d\u0434\u044b (32 \u0441\u0438\u043c\u0432\u043e\u043b\u0430)" + }, + "type": { + "type": "string", + "enum": [ + "arm", + "ign", + "hijack", + "out", + "valet", + "shock_bpass", + "add_sens_bpass", + "tilt_bpass", + "webasto", + "poke", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "update_info", + "update_position" + ], + "description": "\u0422\u0438\u043f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430), \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435" + }, + "value": { + "type": "number", + "enum": [ + 0, + 1 + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u043e\u0439 \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435 (0 \u2013 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435)" + }, + "status": { + "type": "number", + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b (1 \u2013 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f, 2 \u2013 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e, 3 \u2013 \u043e\u0448\u0438\u0431\u043a\u0430 \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, 4 \u2013 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0435 \u0432 \u0441\u0435\u0442\u0438, 5 \u2013 \u0438\u0441\u0442\u0435\u043a\u043b\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043e\u0442\u0432\u0435\u0442\u0430 \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, 6 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u043b\u0441\u044f \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0434\u0430\u0432\u043d\u043e \u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043e \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u0443\u0436\u0435 \u0441\u0442\u0435\u0440\u0442\u044b \u0438\u0437 \u043f\u0430\u043c\u044f\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430)" + }, + "device_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "time_start": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 (\u0444\u043e\u0440\u043c\u0430\u0442 \u2013 Unix Timestamp)" + }, + "time_stop": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u0442\u0430\u0439\u043c\u0430\u0443\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u2013 \u0432\u0440\u0435\u043c\u044f, \u043f\u043e\u0441\u043b\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043c\u043e\u0436\u043d\u043e \u0441\u0447\u0438\u0442\u0430\u0442\u044c \u043d\u0435\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u043e\u0439" + }, + "now": { + "type": "number", + "description": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 401 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438, \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 cookie\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "SetParam", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/set_param", + "description": "\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u043c \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u043c. \u041f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0441\u0435\u0440\u0432\u0435\u0440 \u0434\u0430\u0441\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 \u043d\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438, \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u0441\u0435\u0440\u0432\u0435\u0440 \u0432\u0435\u0440\u043d\u0435\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0438 \u0442\u0435\u043a\u0443\u0449\u0435\u0435 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/45657/set_param\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' -d '{\"type\": \"arm\", \"arm\": 0}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "type", + "type": "STRING", + "description": "\u0422\u0438\u043f \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430), \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435", + "default": "\"arm\"" + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [ + { + "name": "hfree", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\": 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", + "default": "" + }, + { + "name": "disarm_trunk", + "type": "NUMBER", + "description": "\u0421\u043d\u044f\u0442\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b \u0441 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430", + "default": "" + }, + { + "name": "panic", + "type": "NUMBER", + "description": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u041f\u0430\u043d\u0438\u043a\u0430\" (\u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f X96)", + "default": "" + }, + { + "name": "poke", + "type": "NUMBER", + "description": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0441\u0438\u0433\u043d\u0430\u043b\u0430", + "default": "" + }, + { + "name": "tilt_bpass", + "type": "NUMBER", + "description": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430", + "default": "" + }, + { + "name": "hijack", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\": 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", + "default": "" + }, + { + "name": "getbalance", + "type": "NUMBER", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0431\u0430\u043b\u0430\u043d\u0441\u0430 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "default": "" + }, + { + "name": "webasto", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f: 1 \u2013 \u0437\u0430\u043f\u0443\u0441\u043a, 0 \u2013 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430", + "default": "" + }, + { + "name": "add_sens_bpass", + "type": "NUMBER", + "description": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430", + "default": "" + }, + { + "name": "ign_start", + "type": "NUMBER", + "description": "\u0417\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f", + "default": "" + }, + { + "name": "valet", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430: 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", + "default": "" + }, + { + "name": "shock_bpass", + "type": "NUMBER", + "description": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430", + "default": "" + }, + { + "name": "update_position", + "type": "NUMBER", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "default": "" + }, + { + "name": "arm_start", + "type": "NUMBER", + "description": "\u041f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 \u043d\u0430 \u043e\u0445\u0440\u0430\u043d\u0443", + "default": "" + }, + { + "name": "arm", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u043e\u0445\u0440\u0430\u043d\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430: 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", + "default": "" + }, + { + "name": "ign", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f: 1 \u2013 \u0437\u0430\u043f\u0443\u0441\u043a, 0 \u2013 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430", + "default": "" + }, + { + "name": "ign_stop", + "type": "NUMBER", + "description": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f", + "default": "" + }, + { + "name": "arm_stop", + "type": "NUMBER", + "description": "\u0421\u043d\u044f\u0442\u0438\u0435 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 \u0441 \u043e\u0445\u0440\u0430\u043d\u044b", + "default": "" + }, + { + "name": "update_info", + "type": "NUMBER", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b \u0438 \u0437\u0430\u0440\u044f\u0434\u0430 \u0410\u041a\u0411 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430", + "default": "" + }, + { + "name": "out", + "type": "NUMBER", + "description": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430: 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435, 0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/set_param\"\nquerystring = {\"hfree\": \"\", \"disarm_trunk\": \"\", \"panic\": \"\", \"poke\": \"\", \"tilt_bpass\": \"\", \"hijack\": \"\", \"getbalance\": \"\", \"webasto\": \"\", \"add_sens_bpass\": \"\", \"ign_start\": \"\", \"valet\": \"\", \"shock_bpass\": \"\", \"update_position\": \"\", \"arm_start\": \"\", \"arm\": \"\", \"ign\": \"\", \"ign_stop\": \"\", \"arm_stop\": \"\", \"type\": \"\\\"arm\\\"\", \"update_info\": \"\", \"out\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/set_param\"\nquerystring = {\"hfree\": \"\", \"disarm_trunk\": \"\", \"panic\": \"\", \"poke\": \"\", \"tilt_bpass\": \"\", \"hijack\": \"\", \"getbalance\": \"\", \"webasto\": \"\", \"add_sens_bpass\": \"\", \"ign_start\": \"\", \"valet\": \"\", \"shock_bpass\": \"\", \"update_position\": \"\", \"arm_start\": \"\", \"arm\": \"\", \"ign\": \"\", \"ign_stop\": \"\", \"arm_stop\": \"\", \"type\": \"\\\"arm\\\"\", \"update_info\": \"\", \"out\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "alarm", + "arm", + "hijack", + "ign", + "out", + "poke", + "type", + "code", + "codestring" + ], + "properties": { + "add_sens_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0442\u0447\u0438\u043a\u0430: 0 \u2013 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e, 1 \u2013 \u0430\u043a\u0442\u0438\u0432\u043d\u043e" + }, + "alarm": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430" + }, + "arm": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b" + }, + "arm_auth_wait": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438" + }, + "arm_moving_pb": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u0437\u0430\u043f\u0440\u0435\u0442\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0438" + }, + "disarm_trunk": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043d\u044f\u0442\u0438\u0435 \u0441 \u043e\u0445\u0440\u0430\u043d\u044b \u0437\u043e\u043d\u044b \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "door": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439" + }, + "getbalance": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0431\u0430\u043b\u0430\u043d\u0441\u0430" + }, + "hbrake": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "hfree": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0440\u0443\u043a\u0438\"" + }, + "hijack": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\"" + }, + "hood": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430" + }, + "ign": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "neutral": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u0438" + }, + "out": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430" + }, + "panic": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u041f\u0430\u043d\u0438\u043a\u0430\"" + }, + "pbrake": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "poke": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430" + }, + "reply_code": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u041e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u043a\u043e\u0434" + }, + "r_start": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430" + }, + "run": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f" + }, + "shock_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430: 0 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d" + }, + "tilt_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430: 0 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d" + }, + "trunk": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430" + }, + "type": { + "type": "string", + "enum": [ + "inprocess", + "command_reply" + ], + "description": "\u0422\u0438\u043f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u043e\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (inprocess \u2013 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e, command_reply \u2013 \u043e\u0442\u0432\u0435\u0442 \u043f\u0440\u0438\u0434\u0435\u0442 \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435)" + }, + "valet": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0438\u0441\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430" + }, + "webasto": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u043f\u0440\u0435\u0434\u043f\u0443\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u0434\u043e\u0433\u0440\u0435\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "r_start_remained": { + "type": "number", + "description": "\u041e\u0441\u0442\u0430\u0432\u0448\u0435\u0435\u0441\u044f \u0432\u0440\u0435\u043c\u044f \u0434\u043e \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445" + }, + "r_start_begin_ts": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 (Unix Timestamp)" + }, + "r_start_end_ts": { + "type": "number", + "description": "\u0420\u0430\u0441\u0447\u0435\u0442\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 (Unix Timestamp)" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 403 \u2013 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "SettingsMonitoring", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/settings/monitoring", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 cookie, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 device_id \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430. \u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0432\u043d\u043e\u0432\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/357803045512270/settings/monitoring\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' -d '{\"period\": 10}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "period", + "type": "NUMBER", + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445", + "default": 10 + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/settings/monitoring\"\nquerystring = {\"period\": 10}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/settings/monitoring\"\nquerystring = {\"period\": 10}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "period", + "state", + "type", + "code", + "codestring" + ], + "properties": { + "period": { + "type": "number", + "minimum": 0, + "maximum": 300, + "description": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445" + }, + "state": { + "type": "number", + "enum": [ + 0, + 1 + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c" + }, + "type": { + "type": "string", + "enum": [ + "inprocess", + "command_reply" + ], + "description": "\u0422\u0438\u043f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u043e\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f (inprocess \u2013 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e, command_reply \u2013 \u043e\u0442\u0432\u0435\u0442 \u043f\u0440\u0438\u0434\u0435\u0442 \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435)" + }, + "valet": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0435\u0440\u0432\u0438\u0441\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "out": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043a\u0430\u043d\u0430\u043b\u043e\u043c (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "pbrake": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u0435\u0434\u0430\u043b\u0438 \u0442\u043e\u0440\u043c\u043e\u0437\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "arm": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \u043e\u0445\u0440\u0430\u043d\u044b (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "shock_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u0443\u0434\u0430\u0440\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "ign": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "poke": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0433\u0443\u0434\u043a\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "tilt_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u0447\u0438\u043a\u0430 \u043d\u0430\u043a\u043b\u043e\u043d\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "trunk": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0431\u0430\u0433\u0430\u0436\u043d\u0438\u043a\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "add_sens_bpass": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0434\u0430\u0442\u0447\u0438\u043a (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "hijack": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0436\u0438\u043c\u0430 \"\u0410\u043d\u0442\u0438\u043e\u0433\u0440\u0430\u0431\u043b\u0435\u043d\u0438\u0435\" (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "hood": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043a\u0430\u043f\u043e\u0442\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "run": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0437\u0430\u0436\u0438\u0433\u0430\u043d\u0438\u044f (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "door": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u0432\u0435\u0440\u0435\u0439 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "alarm": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0442\u0440\u0435\u0432\u043e\u0433\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043e\u0445\u0440\u0430\u043d\u044b (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "r_start": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "hbrake": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0442\u043e\u0440\u043c\u043e\u0437\u0430 (0 \u2013 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d, 1 \u2013 \u0432\u043a\u043b\u044e\u0447\u0435\u043d)" + }, + "reply_code": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u041e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u043a\u043e\u0434" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 400 \u2013 \u043f\u0443\u0441\u0442\u043e\u0439 \u0431\u043b\u043e\u043a \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c\u0438,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceInfoPost", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/info", + "description": "\u041c\u0435\u0442\u043e\u0434 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 \u0438 \u0438\u043c\u0435\u043d\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442\u0441\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u043d\u043e\u0432\u044b\u0435 \u0442\u0435\u043b\u0435\u0444\u043e\u043d \u0438 \u0438\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0414\u0430\u043d\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0443\u0441\u0442\u0430\u0440\u0435\u043b, \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c /json/v3/device/{device_id}/data. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/info\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' -d '{\"name\": \"example\", \"tel\": \"71111111111\"}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [ + { + "name": "tel", + "type": "STRING", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "default": 71111111111 + }, + { + "name": "name", + "type": "STRING", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c", + "default": "example" + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/info\"\nquerystring = {\"tel\": 71111111111, \"name\": \"example\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/info\"\nquerystring = {\"tel\": 71111111111, \"name\": \"example\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "has_alarms", + "online", + "functions", + "controls", + "tel", + "name", + "type", + "device_id", + "owner_tel", + "frm_version", + "typename", + "sn", + "code", + "codestring" + ], + "properties": { + "has_alarms": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0410\u0432\u0430\u0440\u0438\u0439\u043d\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "online": { + "type": "string", + "enum": [ + "0", + "1" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c" + }, + "functions": { + "type": "array", + "description": "\u0424\u0443\u043d\u043a\u0446\u0438\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", + "items": { + "type": "string", + "enum": [ + "adv_controls", + "adv_guard", + "adv_state", + "controls", + "eng_sensor", + "events", + "gsm", + "info", + "int_sensor", + "position", + "push", + "rstart_cfg", + "shock_cfg", + "state", + "ble", + "mon_cfg", + "offless_hijack", + "scoring", + "tracking" + ] + } + }, + "controls": { + "type": "array", + "description": "\u041e\u0431\u044a\u0435\u043a\u0442 \u0441 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043c \u043a\u043d\u043e\u043f\u043e\u043a \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f", + "items": { + "type": "string", + "enum": [ + "ign", + "ign_start", + "ign_stop", + "arm", + "arm_start", + "arm_stop", + "hijack", + "valet", + "poke", + "call", + "hfree", + "disarm_trunk", + "panic", + "getbalance", + "shock_bpass", + "tilt_bpass", + "add_sens_bpass", + "webasto", + "out" + ] + } + }, + "tel": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 SIM-\u043a\u0430\u0440\u0442\u044b \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "name": { + "type": "string", + "description": "\u0418\u043c\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438" + }, + "type": { + "type": "string", + "enum": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20" + ], + "description": "\u0422\u0438\u043f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "device_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet" + }, + "owner_tel": { + "type": "string", + "description": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "frm_version": { + "type": "string", + "description": "\u0412\u0435\u0440\u0441\u0438\u044f \u041f\u041e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "typename": { + "type": "string", + "description": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet, \u0441\u043c. \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 cookie \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "SettingsRemoteStart", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/device/45657/settings/remote_start", + "description": "\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430. \u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0432\u043d\u043e\u0432\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/device/357803045512270/settings/remote_start\" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' -d '{\"period_start\": 2, \"warm_up\": 2, \"temp_start\": -27, \"battery_start\": 11.9}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [ + { + "name": "temp_start", + "type": "NUMBER", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0435 \u043e\u0442 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b)", + "default": -27 + }, + { + "name": "warm_up", + "type": "NUMBER", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f", + "default": 2 + }, + { + "name": "period_start", + "type": "NUMBER", + "description": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0447\u0430\u0441\u043e\u0432, \u0447\u0435\u0440\u0435\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u043c \u0437\u0430\u043f\u0443\u0441\u043a\u0435)", + "default": 2 + }, + { + "name": "clock_start", + "type": "NUMBER", + "description": "\u0422\u0430\u0439\u043c\u0435\u0440 \u0437\u0430\u043f\u0443\u0441\u043a\u0430, \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0438\u043d\u0443\u0442 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044c \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d", + "default": 0 + }, + { + "name": "battery_start", + "type": "NUMBER", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f", + "default": 11.9 + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/45657/settings/remote_start\"\nquerystring = {\"temp_start\": -27, \"warm_up\": 2, \"period_start\": 2, \"clock_start\": 0, \"battery_start\": 11.9}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/settings/remote_start\"\nquerystring = {\"temp_start\": -27, \"warm_up\": 2, \"period_start\": 2, \"clock_start\": 0, \"battery_start\": 11.9}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "remote_start", + "code", + "codestring" + ], + "properties": { + "remote_start": { + "type": "object", + "description": "\u0411\u043b\u043e\u043a \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a\u0430", + "properties": { + "period_start": { + "type": "number", + "description": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0447\u0430\u0441\u043e\u0432, \u0447\u0435\u0440\u0435\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u043e\u043c \u0437\u0430\u043f\u0443\u0441\u043a\u0435)" + }, + "temp_start": { + "type": "number", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0435 \u043e\u0442 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b)" + }, + "warm_up": { + "type": "number", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b, \u0434\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043f\u0440\u043e\u0433\u0440\u0435\u0432 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f (\u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0435 \u043e\u0442 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b)" + }, + "battery_start": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0410\u041a\u0411, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044f" + }, + "battery_start_min": { + "type": "number", + "description": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430 \u0437\u0430\u0440\u044f\u0434\u0430 \u0410\u041a\u0411, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + }, + "battery_start_max": { + "type": "number", + "description": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0440\u044f\u0434\u0430 \u0410\u041a\u0411, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a" + }, + "clock_start": { + "type": "number", + "minimum": 0, + "maximum": 1440, + "description": "\u0422\u0430\u0439\u043c\u0435\u0440 \u0437\u0430\u043f\u0443\u0441\u043a\u0430, \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0438\u043d\u0443\u0442 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u044c \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d" + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 500 \u2013 \u043f\u0443\u0441\u0442\u043e\u0439 \u0431\u043b\u043e\u043a \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c\u0438,\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "DeviceWays", + "url": "https://starline-telematics.p.rapidapi.com/json/v1/device/45657/ways", + "description": "\u0412 \u043e\u0442\u0432\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u044b \u0442\u0440\u0435\u043a\u0430, \u043f\u0440\u043e\u0431\u0435\u0433, \u0432\u0440\u0435\u043c\u044f, \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c \u0432 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438. \u0412 \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u043c\u0435\u0442\u043a\u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043d\u0430\u0447\u0430\u043b\u0430 \u0438 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430, \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u043f\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u043c\u0438. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v1/device/4568857/ways\" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' -d '{\"begin\": 1498424400, \"end\": 1498510799, \"split_way\": true, \"short_parking\": 5, \"long_parking\": 30, \"dt_max\": 2, \"div_days\": true, \"time_shift\": 180, \"tz\": true, \"filtering\": true}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "end", + "type": "NUMBER", + "description": "\u0414\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 (Unix Timestamp UTC)", + "default": 1498510799 + }, + { + "name": "begin", + "type": "NUMBER", + "description": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430 \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 (Unix Timestamp UTC)", + "default": 1498424400 + }, + { + "name": "device_id", + "type": "NUMBER", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 SLNet", + "default": 45657 + } + ], + "optional_parameters": [ + { + "name": "dt_max", + "type": "NUMBER", + "description": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0440\u0430\u0437\u043d\u0438\u0446\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043c\u0435\u0436\u0434\u0443 \u0442\u043e\u0447\u043a\u0430\u043c\u0438 \u0432 \u0442\u0440\u0435\u043a\u0435, \u043c\u0438\u043d", + "default": 2 + }, + { + "name": "short_parking", + "type": "NUMBER", + "description": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0439 \u0441\u0442\u043e\u044f\u043d\u043a\u0438, \u043c\u0438\u043d", + "default": 5 + }, + { + "name": "long_parking", + "type": "NUMBER", + "description": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0434\u043e\u043b\u0433\u043e\u0439 \u0441\u0442\u043e\u044f\u043d\u043a\u0438, \u043c\u0438\u043d", + "default": 30 + }, + { + "name": "div_days", + "type": "BOOLEAN", + "description": "\u041d\u0443\u0436\u043d\u043e \u043b\u0438 \u0440\u0430\u0437\u0431\u0438\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u043a, \u0435\u0441\u043b\u0438 \u043e\u043d \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0441\u0442\u044b\u043a\u0435 \u0434\u0432\u0443\u0445 \u0434\u043d\u0435\u0439", + "default": true + }, + { + "name": "split_way", + "type": "BOOLEAN", + "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442, \u0440\u0430\u0437\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u0438 \u0442\u0440\u0435\u043a \u043d\u0430 \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0435 \u0438 \u0434\u043b\u0438\u043d\u043d\u044b\u0435 \u0441\u0442\u043e\u044f\u043d\u043a\u0438. \u0415\u0441\u043b\u0438 \u0442\u0440\u0435\u043a \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0443\u0442\u0435\u0432\u044b\u0445 \u0442\u043e\u0447\u0435\u043a, \u0442\u043e \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u0434\u0430\u0432\u0430\u0442\u044c split_way \u0440\u0430\u0432\u043d\u044b\u043c False (\u0432 \u044d\u0442\u043e\u043c \u0441\u043b\u0443\u0447\u0430\u0435 \u0437\u0430\u0434\u0430\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f short_parking \u0438 long_parking \u043d\u0435 \u043d\u0443\u0436\u043d\u043e)", + "default": true + }, + { + "name": "filtering", + "type": "BOOLEAN", + "description": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043b\u0438 \u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u043a \u043e\u0442 \u0448\u0443\u043c\u043e\u0432", + "default": true + }, + { + "name": "time_shift", + "type": "NUMBER", + "description": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0441\u0434\u0432\u0438\u0433, \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0440\u0430\u0432\u0435\u043d 0", + "default": 180 + }, + { + "name": "tz", + "type": "BOOLEAN", + "description": "\u0415\u0441\u043b\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 \u0440\u0430\u0432\u043d\u043e true, \u0442\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0441\u0434\u0432\u0438\u0433 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e TZ \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 time_shift \u043d\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f", + "default": true + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/45657/ways\"\nquerystring = {\"end\": 1498510799, \"dt_max\": 2, \"short_parking\": 5, \"begin\": 1498424400, \"long_parking\": 30, \"div_days\": true, \"split_way\": true, \"filtering\": true, \"time_shift\": 180, \"tz\": true}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/ways\"\nquerystring = {\"end\": 1498510799, \"dt_max\": 2, \"short_parking\": 5, \"begin\": 1498424400, \"long_parking\": 30, \"div_days\": true, \"split_way\": true, \"filtering\": true, \"time_shift\": 180, \"tz\": true}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "mileage", + "waiting_time", + "way", + "code", + "codestring" + ], + "properties": { + "mileage": { + "type": "number", + "description": "\u041f\u0440\u043e\u0431\u0435\u0433 \u0432\u0441\u0435\u0433\u043e \u043f\u0443\u0442\u0438, \u043c" + }, + "moving_time": { + "type": "number", + "description": "\u041e\u0431\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0432 \u043f\u0443\u0442\u0438, \u0441" + }, + "travel_time": { + "type": "number", + "description": "\u041e\u0431\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0432 \u043f\u0443\u0442\u0438, \u0441" + }, + "waiting_time": { + "type": "number", + "description": "\u041e\u0431\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0432\u0441\u0435\u0445 \u0441\u0442\u043e\u044f\u043d\u043e\u043a, \u0441" + }, + "way": { + "type": "array", + "description": "\u041e\u0431\u044a\u0435\u043a\u0442 \u0441 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043e \u0442\u0440\u0435\u043a\u0435", + "items": { + "type": "object", + "required": [ + "type", + "time_shift", + "mileage", + "moving_time", + "nodes", + "waiting_time", + "t", + "x", + "y" + ], + "properties": { + "offset": { + "type": "string", + "description": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0441\u0434\u0432\u0438\u0433 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 tzdata (\u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442, \u0435\u0441\u043b\u0438 \u043d\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f TZ \u0441\u0435\u0440\u0432\u0435\u0440)" + }, + "time_shift": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0441\u0434\u0432\u0438\u0433 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445" + }, + "name": { + "type": "string", + "description": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0437\u043e\u043d\u044b (\u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442, \u0435\u0441\u043b\u0438 \u043d\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f TZ \u0441\u0435\u0440\u0432\u0435\u0440)" + }, + "mileage": { + "type": "number", + "description": "\u041f\u0440\u043e\u0431\u0435\u0433 \u0437\u0430 \u043f\u043e\u0435\u0437\u0434\u043a\u0443, \u043c" + }, + "moving_time": { + "type": "number", + "description": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u0435\u0437\u0434\u043a\u0438, \u0441" + }, + "nodes": { + "type": "array", + "description": "\u041c\u0430\u0441\u0441\u0438\u0432 \u0442\u043e\u0447\u0435\u043a \u0442\u0440\u0435\u043a\u0430", + "items": { + "type": "object", + "required": [ + "t", + "x", + "y", + "ins_data" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "POINT" + ], + "description": "\u0422\u0438\u043f \u043e\u0431\u044a\u0435\u043a\u0442\u0430, \u0442\u043e\u0447\u043a\u0430" + }, + "t": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u044b (Unix Timestamp UTC)" + }, + "x": { + "type": "number", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430, \u0433\u0440\u0430\u0434." + }, + "y": { + "type": "number", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430, \u0433\u0440\u0430\u0434." + }, + "z": { + "type": "number", + "description": "\u0412\u044b\u0441\u043e\u0442\u0430, \u043c" + }, + "s": { + "type": "number", + "description": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c, \u043a\u043c/\u0447" + }, + "d": { + "type": "number", + "description": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u0433\u0440\u0430\u0434." + }, + "sat_qty": { + "type": "number", + "description": "\u0427\u0438\u0441\u043b\u043e \u0432\u0438\u0434\u0438\u043c\u044b\u0445 \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432" + }, + "ignition": { + "type": "number", + "enum": [ + 0, + 1 + ], + "description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430: 1 \u2013 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432 \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438, 0 \u2013 \u043c\u0430\u0448\u0438\u043d\u0430 \u043d\u0435 \u0434\u0432\u0438\u0433\u0430\u0435\u0442\u0441\u044f" + }, + "ins_data": { + "type": "object", + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043c\u0430\u043d\u0435\u0440\u044b \u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u0432 \u0442\u043e\u0447\u043a\u0435", + "required": [ + "side", + "max", + "avg" + ], + "properties": { + "side": { + "type": "number", + "description": "\u0421\u0442\u043e\u0440\u043e\u043d\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0435\u043d\u0438\u044f \u043f\u043e\u0440\u043e\u0433\u0430 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f" + }, + "max": { + "type": "number", + "description": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f" + }, + "avg": { + "type": "number", + "description": "\u0421\u0440\u0435\u0434\u043d\u0435\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f" + } + } + } + } + } + }, + "waiting_time": { + "type": "number", + "description": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0442\u043e\u044f\u043d\u043a\u0438, \u0441" + }, + "t": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u0442\u043e\u044f\u043d\u043a\u0438 (Unix Timestamp UTC)" + }, + "x": { + "type": "number", + "description": "\u0428\u0438\u0440\u043e\u0442\u0430, \u0433\u0440\u0430\u0434." + }, + "y": { + "type": "number", + "description": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430, \u0433\u0440\u0430\u0434." + }, + "z": { + "type": "number", + "description": "\u0412\u044b\u0441\u043e\u0442\u0430, \u043c" + }, + "sat_qty": { + "type": "number", + "description": "\u0427\u0438\u0441\u043b\u043e \u0441\u043f\u0443\u0442\u043d\u0438\u043a\u043e\u0432" + }, + "travel_time": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u0432 \u043f\u0443\u0442\u0438, \u0441" + }, + "remotes": { + "type": "array", + "description": "\u041c\u0430\u0441\u0441\u0438\u0432 \u043c\u0435\u0442\u043e\u043a \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u0432", + "items": { + "type": "object", + "required": [ + "id", + "sn" + ], + "properties": { + "id": { + "type": "number", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043c\u0435\u0442\u043a\u0438 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430" + }, + "sn": { + "type": "string", + "description": "\u0421\u0435\u0440\u0438\u0439\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043c\u0435\u0442\u043a\u0438 \u043e\u0445\u0440\u0430\u043d\u043d\u043e-\u0442\u0435\u043b\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "TZ", + "TRACK", + "STOP", + "NO_SIGNAL" + ], + "description": "\u0422\u0438\u043f \u043e\u0431\u044a\u0435\u043a\u0442\u0430. TZ \u2013 timezone, \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0441\u0434\u0432\u0438\u0433 \u0432 \u0447\u0430\u0441\u0430\u0445 (\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f TZ \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c). \u0415\u0441\u043b\u0438 \u0432 \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 tz \u0440\u0430\u0432\u0435\u043d False, \u0442\u043e\u0433\u0434\u0430 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044f \u0440\u0430\u0432\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 time_shift. TRACK \u2013 \u043e\u0431\u044a\u0435\u043a\u0442 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u043e \u043f\u043e\u0435\u0437\u0434\u043a\u0435. STOP \u2013 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430. NO_SIGNAL \u2013 \u0432 \u044d\u0442\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u043f\u0443\u0442\u0438 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u043b\u043e\u0441\u044c \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435." + } + } + } + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441,\n * 405 \u2013 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438,\n * 429 \u2013 \u0437\u0430\u043f\u0440\u043e\u0441 \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0442\u043e\u0434\u0443,\n * 500 \u2013 \u043d\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u043e \u043e\u0434\u043d\u043e \u0438\u0437 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u043b\u0435\u0439 / \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0442\u0438\u043f\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 boolean, \u0430 \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u043e string / \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u043e \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441" + } + } + } + }, + { + "name": "UserLogin", + "url": "https://starline-telematics.p.rapidapi.com/apiV3/user/login", + "description": "\u0410\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u043b\u043e\u0433\u0438\u043d\u0443 \u0438 \u043f\u0430\u0440\u043e\u043b\u044e. \u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0447\u0430\u0441\u0442\u043e\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0441 \u043e\u0434\u043d\u043e\u0433\u043e IP-\u0430\u0434\u0440\u0435\u0441\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u043a\u0430\u043f\u0447\u0438. \u0414\u043b\u044f \u0442\u043e\u0433\u043e \u0447\u0442\u043e\u0431\u044b \u0441\u0435\u0440\u0432\u0435\u0440 SLID \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043b \u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438\u0439 IP, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0440\u043e\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0435 user_ip. \u0412 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u043e\u043c \u0441\u043b\u0443\u0447\u0430\u0435 \u0432\u0441\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0431\u0443\u0434\u0443\u0442 \u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f IP-\u0430\u0434\u0440\u0435\u0441\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0447\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u0442 \u043a \u0447\u0430\u0441\u0442\u043e\u043c\u0443 \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u044e \u043a\u0430\u043f\u0447\u0438. \u0412 \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f, \u0442\u043e \u0432 \u043e\u0442\u0432\u0435\u0442\u0435 \u043f\u0440\u0438\u0434\u0435\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \"Need confirmation\". \u0412\u0430\u043c \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u043f\u0438\u0441\u0430\u0442\u044c \u043a\u043e\u0434 \u0438\u0437 \u0441\u043c\u0441 \u0438\u0437 \u0432\u0430\u0448\u0435\u0433\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 \u0432 \u043f\u043e\u043b\u0435 smsCode, \u043f\u043e\u0441\u043b\u0435 \u0447\u0435\u0433\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441. \u0412 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Python-\u0441\u043a\u0440\u0438\u043f\u0442 get_slid_user_token.py \u0438\u0437 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f gitlab.com/starline/openapi. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c StarLineID token. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://id.starline.ru/apiV3/user/login\" -i -H 'token:6517f62f5241c310ff5012360cd09e26b71395c2c068b566d641d07ccdde70d1' -F login=yokozuna@yandex.ru -F pass=7c4a8d09ca3762af61e59520943dc26494f8941b -F smsCode=3454\n", + "method": "POST", + "required_parameters": [ + { + "name": "pass", + "type": "STRING", + "description": "SHA1 \u043e\u0442 \u043f\u0430\u0440\u043e\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", + "default": "7c4a8d09ca3762af61e59520943dc26494f8941b" + }, + { + "name": "login", + "type": "STRING", + "description": "\u041b\u043e\u0433\u0438\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u043b\u044e\u0431\u043e\u0439 \u0438\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u044b\u0445 email-\u043e\u0432", + "default": "yokozuna@yandex.ru" + } + ], + "optional_parameters": [ + { + "name": "smsCode", + "type": "STRING", + "description": "\u041a\u043e\u0434 \u0438\u0437 \u0441\u043c\u0441, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u043e\u0439 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u043e\u0439 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438", + "default": 3454 + }, + { + "name": "captchaSid", + "type": "STRING", + "description": "\u0417\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0432 \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u0432 \u043e\u0442\u0432\u0435\u0442 \u043d\u0430 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0431\u044b\u043b\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 'Captcha needed' \u0438\u0437 \u043e\u0434\u043d\u043e\u0438\u043c\u0435\u043d\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 \u043e\u0442\u0432\u0435\u0442\u0430", + "default": "3a66999c97aea6099732748c4c0790fb" + }, + { + "name": "user_ip", + "type": "STRING", + "description": "IP-\u0430\u0434\u0440\u0435\u0441 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", + "default": "0.0.0.0" + }, + { + "name": "captchaCode", + "type": "STRING", + "description": "\u0417\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0432 \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u0432 \u043e\u0442\u0432\u0435\u0442 \u043d\u0430 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0431\u044b\u043b\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 'Captcha needed'. \u0414\u043e\u043b\u0436\u0435\u043d \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u0434\u0430 \u0441 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438", + "default": 3054 + } + ], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/apiV3/user/login\"\nquerystring = {\"smsCode\": 3454, \"captchaSid\": \"3a66999c97aea6099732748c4c0790fb\", \"pass\": \"7c4a8d09ca3762af61e59520943dc26494f8941b\", \"login\": \"yokozuna@yandex.ru\", \"user_ip\": \"0.0.0.0\", \"captchaCode\": 3054}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/apiV3/user/login\"\nquerystring = {\"smsCode\": 3454, \"captchaSid\": \"3a66999c97aea6099732748c4c0790fb\", \"pass\": \"7c4a8d09ca3762af61e59520943dc26494f8941b\", \"login\": \"yokozuna@yandex.ru\", \"user_ip\": \"0.0.0.0\", \"captchaCode\": 3054}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "oneOf": [ + { + "type": "object", + "description": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441", + "required": [ + "state", + "desc" + ], + "properties": { + "state": { + "type": "integer", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: 1 \u2013 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0431\u044b\u043b\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e" + }, + "desc": { + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430", + "type": "object", + "required": [ + "id", + "login", + "state", + "first_name", + "last_name", + "middle_name", + "company_name", + "sex", + "lang", + "gmt", + "avatar", + "date_register", + "contacts", + "auth_contact_id", + "user_token" + ], + "properties": { + "id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "login": { + "type": "string", + "description": "\u041b\u043e\u0433\u0438\u043d. \u041b\u043e\u0433\u0438\u043d \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0441\u0442\u043e\u044f\u0442\u044c \u0438\u0437 \u0431\u0443\u043a\u0432 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430, \u0446\u0438\u0444\u0440, \u0442\u043e\u0447\u043a\u0438, \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u00ab-\u00bb, \u00ab_\u00bb, \u00ab@\u00bb, \u0434\u043b\u0438\u043d\u0430 \u2013 \u043e\u0442 5 \u0434\u043e 50 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432" + }, + "state": { + "type": "string", + "enum": [ + "ACTIVE", + "BLOCKED", + "DELETED" + ], + "description": "\u0421\u0442\u0430\u0442\u0443\u0441" + }, + "first_name": { + "type": "string", + "description": "\u0418\u043c\u044f, \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c 250 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432" + }, + "last_name": { + "type": "string", + "description": "\u0424\u0430\u043c\u0438\u043b\u0438\u044f, \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c 250 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432" + }, + "middle_name": { + "type": "string", + "description": "\u041e\u0442\u0447\u0435\u0441\u0442\u0432\u043e, \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c 250 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432" + }, + "company_name": { + "type": "string", + "description": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c 250 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432" + }, + "sex": { + "type": "string", + "description": "\u041f\u043e\u043b" + }, + "lang": { + "type": "string", + "description": "\u042f\u0437\u044b\u043a" + }, + "gmt": { + "type": "string", + "description": "\u0427\u0430\u0441\u043e\u0432\u043e\u0439 \u043f\u043e\u044f\u0441" + }, + "avatar": { + "type": "string", + "description": "\u0418\u043c\u044f \u0444\u0430\u0439\u043b\u0430 \u0441 \u0430\u0432\u0430\u0442\u0430\u0440\u043a\u043e\u0439. \u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0430\u043c /avatar/x.thumbnail (\u043d\u0435 \u0431\u043e\u043b\u0435\u0435 64px \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435 \u0438 \u0432\u044b\u0441\u043e\u0442\u0435) \u0438 /avatar/x.standart (\u043d\u0435 \u0431\u043e\u043b\u0435\u0435 128px \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435 \u0438 \u0432\u044b\u0441\u043e\u0442\u0435), \u0433\u0434\u0435 x \u2013 \u0438\u043c\u044f \u0444\u0430\u0439\u043b\u0430" + }, + "date_register": { + "type": "string", + "description": "\u0414\u0430\u0442\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 \u0413\u0413\u0413\u0413-\u041c\u041c-\u0414\u0414 \u0427\u0427:\u041c\u041c:\u0421\u0421" + }, + "contacts": { + "type": "array", + "description": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430" + }, + "type": { + "type": "string", + "enum": [ + "email", + "phone", + "push" + ], + "description": "\u0422\u0438\u043f \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430" + }, + "value": { + "type": "string", + "description": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430. \u0414\u043b\u044f email \u0438 phone \u2013 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f. \u0414\u043b\u044f push \u2013 JSON \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430." + }, + "confirmed": { + "type": "string", + "description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430: 1 \u2013 \u043a\u043e\u043d\u0442\u0430\u043a\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d" + }, + "token": { + "type": "string", + "description": "\u0422\u043e\u043a\u0435\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430" + } + } + } + }, + "auth_contact_id": { + "type": "string", + "description": "ID \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430 \u0434\u043b\u044f \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u043e\u0439 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438" + }, + "user_token": { + "type": "string", + "description": "\u0422\u043e\u043a\u0435\u043d, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0439 \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u0414\u0430\u043d\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0432 WebAPI" + } + } + } + } + }, + { + "type": "object", + "description": "\u041e\u0448\u0438\u0431\u043a\u0430", + "required": [ + "state", + "desc" + ], + "properties": { + "state": { + "type": "integer", + "description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: 0 \u2013 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430, 2 \u2013 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 (\u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438)", + "enum": [ + 0, + 2 + ] + }, + "desc": { + "description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430", + "type": "object", + "required": [ + "message" + ], + "properties": { + "message": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438:\n * \"Login cannot be blank\" \u2013 \u043f\u0443\u0441\u0442\u043e\u0439 \u043b\u043e\u0433\u0438\u043d. \u041b\u043e\u0433\u0438\u043d \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0441\u0442\u043e\u044f\u0442\u044c \u0438\u0437 \u0431\u0443\u043a\u0432 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430, \u0446\u0438\u0444\u0440, \u0442\u043e\u0447\u043a\u0438, \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u00ab-\u00bb, \u00ab_\u00bb, \u00ab@\u00bb, \u0434\u043b\u0438\u043d\u0430 \u2013 \u043e\u0442 5 \u0434\u043e 50 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432,\n * \"Pass cannot be blank\" \u2013 \u043f\u0443\u0441\u0442\u043e\u0439 \u043f\u0430\u0440\u043e\u043b\u044c,\n * \"Incorrect username or password\" \u2013 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043b\u043e\u0433\u0438\u043d \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c. \u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e 3 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438, \u0437\u0430\u0442\u0435\u043c \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0432\u043e\u0434 \u043a\u0430\u043f\u0447\u0438,\n * \"Unauthorized\" \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d,\n * \"Token missed\" \u2013 \u0432 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0442\u043e\u043a\u0435\u043d,\n * \"Your request is invalid\" \u2013 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u043b\u043e\u0433\u0438\u043d \u0438 \u043f\u0430\u0440\u043e\u043b\u044c,\n * \"Captcha needed\" \u2013 \u0434\u043b\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0432\u0435\u0441\u0442\u0438 \u043a\u043e\u0434 \u0441 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438,\n * \"Need confirmation\" \u2013 \u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f\n" + }, + "phone": { + "type": "string", + "description": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043a\u043e\u0434 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u043e\u0439 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 (\u0432 \u0441\u043b\u0443\u0447\u0430\u0435 state = 2)" + }, + "contactId": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043a\u043e\u0434 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u043e\u0439 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 (\u0432 \u0441\u043b\u0443\u0447\u0430\u0435 state = 2)" + }, + "TTL": { + "type": "number", + "description": "\u0412\u0440\u0435\u043c\u044f \u0436\u0438\u0437\u043d\u0438 \u043a\u043e\u0434\u0430 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u043e\u0439 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 (\u0432 \u0441\u043b\u0443\u0447\u0430\u0435 state = 2)" + }, + "captchaSid": { + "type": "string", + "description": "\u0412 \u0441\u043b\u0443\u0447\u0430\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043a\u0430\u043f\u0447\u0438" + }, + "captchaImg": { + "type": "string", + "description": "IP-\u0430\u0434\u0440\u0435\u0441 \u043a\u0430\u043f\u0447\u0438" + } + } + } + } + } + ] + } + }, + { + "name": "userSLNETAuth", + "url": "https://starline-telematics.p.rapidapi.com/json/v2/auth.slid", + "description": "\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e \u0442\u043e\u043a\u0435\u043d\u0443 StarLineID. \u0422\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 StarLineID. \u041f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e\u0433\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u044b cookie \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043c\u0435\u0442\u043e\u0434\u0430\u0445 WebAPI. \u0412 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Python-\u0441\u043a\u0440\u0438\u043f\u0442 get_slnet_token.py \u0438\u0437 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f gitlab.com/starline/openapi. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u0438\u043f\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c slnet token. \u0414\u0430\u043d\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u0435\u043d 24 \u0447\u0430\u0441\u0430. \u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e curl:

curl \"https://developer.starline.ru/json/v2/auth.slid\" -v -d '{\"slid_token\": \"f6e706e17d41ce781b5166f09e782fd0:1663\"}'\n", + "method": "POST", + "required_parameters": [ + { + "name": "slid_token", + "type": "STRING", + "description": "\u0422\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 StarLineID", + "default": "f6e706e17d41ce781b5166f09e782fd0:1663" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/auth.slid\"\nquerystring = {\"slid_token\": \"f6e706e17d41ce781b5166f09e782fd0:1663\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://starline-telematics.p.rapidapi.com/json/v2/auth.slid\"\nquerystring = {\"slid_token\": \"f6e706e17d41ce781b5166f09e782fd0:1663\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"starline-telematics.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "required": [ + "user_id", + "code", + "codestring" + ], + "properties": { + "realplexor_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u0430\u043d\u0430\u043b\u0430 Realplexor" + }, + "user_id": { + "type": "string", + "description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" + }, + "code": { + "type": "number", + "description": "HTTP-\u043a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438:\n * 200 \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u0430\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f,\n * 401 \u2013 \u0442\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 StarLineID \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d,\n * 422 \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 (\u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442),\n * 500 \u2013 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438\n" + }, + "codestring": { + "type": "string", + "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 HTTP-\u043a\u043e\u0434\u0430 \u043e\u0448\u0438\u0431\u043a\u0438: \"OK\" \u2013 \u0443\u0441\u043f\u0435\u0448\u043d\u0430\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f" + } + } + } + } + ], + "standardized_name": "starline_telematics" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/starline_telematics/api.py b/toolbench/toolenv/tools/Tools/starline_telematics/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7ac7541a36741c59c9be091b9649621a19b8a896 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/starline_telematics/api.py @@ -0,0 +1,469 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def userinfov2(user_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение списка устройств, принадлежащих пользователю или устройств, доступ к которым предоставлен пользователю другими пользователями. Ответ содержит полное состояние устройства для обновление текущего состояния устройств. Для получения данных устройства необходимо передать идентификатор пользователя user_id и cookie, полученный при авторизации пользователя. Данный метод устарел, желательно использовать /json/v3/user/{user_id}/data. В качестве примера можно использовать Python-скрипт get_user_info.py из репозитория gitlab.com/starline/openapi. В результате выполнения скрипт выводит в консоль ответ на запрос. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v2/user/1116/user_info" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + user_id: Идентификатор пользователя в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v2/user/{user_id}/user_info" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def libraryevents(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "В ответе на запрос приходят все существующие события с полным описанием. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v3/library/events" + " + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v3/library/events" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def userinfo(user_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение списка устройств, принадлежащих пользователю или устройств, доступ к которым предоставлен пользователю другими пользователями. Ответ содержит полное состояние устройств. Данный метод устарел, желательно использовать /json/v3/user/{user_id}/data. В качестве примера можно использовать Python-скрипт get_user_info.py из репозитория gitlab.com/starline/openapi. В результате выполнения скрипт выводит в консоль ответ на запрос. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/user/4568857/user_info" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + user_id: Идентификатор пользователя в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/user/{user_id}/user_info" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deviceobdparams(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Запрос данных, полученных от автомобиля и хранящихся в кеше. Любой из возвращаемых параметров (fuel, errors, mileage) может быть null. Это значит, что либо он еще не считан системой с автомобиля, либо данное ТС не поддерживается установленной версией CAN библиотеки, либо данные невозможно считать через CAN. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v1/device/4568857/obd_params" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/device/{device_id}/obd_params" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def libraryeventsid(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "В ответе на запрос приходит событие с полным описанием. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v3/library/events/307" + " + id: Идентификатор события + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v3/library/events/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def userdevices(user_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Ответ на запрос содержит список устройств пользователя, а также данные о каждом устройстве. Данный метод устарел, желательно использовать /json/v3/user/{user_id}/data. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v1/user/1116/devices" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + user_id: Идентификатор пользователя в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v1/user/{user_id}/devices" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deviceobderrors(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Запрос данных об ошибках OBD, полученных от автомобиля и хранящихся в кеше. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v1/device/4568857/obd_errors" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/device/{device_id}/obd_errors" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def device(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение суммарного отчета о состоянии устройства. Данный метод устарел, желательно использовать /json/v3/device/{device_id}/data. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v2/device/356306052111516" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def digest_authentication(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Токен авторизации предварительно необходимо получить на сервере StarLineID. Полученный в результате успешного выполнения команды cookie необходимо использовать в методах WebAPI для прохождения авторизации. Для того чтобы сервер понимал, что аутентификацию следует выполнять digest методом, клиент должен передать в запросе заголовок 'DigestAuth:true'. username – slid-token, password – идентификатор пользователя на StarLineID сервере (slid user_id). Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v3/device/357803045497365/data" -v --digest -u '418db3fe902abe4eb4a6d92ad37ab7a7_276388:276388' -H 'DigestAuth:true' + " + + """ + url = f"https://starline-telematics.p.rapidapi.com/any_api_method" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def userdata(user_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение списка устройств, принадлежащих пользователю или устройств, доступ к которым предоставлен пользователю другими пользователями. Ответ содержит полное состояние устройства для обновление текущего состояния устройств. Для получения данных устройства необходимо передать идентификатор пользователя user_id и cookie, полученный при авторизации пользователя. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v3/user/1116/data" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + user_id: Идентификатор пользователя в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v3/user/{user_id}/data" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def usermobiledevices(user_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Запрос на получение информации о мобильных устройствах пользователя. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v1/user/1116/mobile_devices" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + user_id: Идентификатор пользователя в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v1/user/{user_id}/mobile_devices" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def devicedata(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Ответ содержит полное состояние устройства для обновления текущего состояния устройств. Для получения данных устройства необходимо передать идентификатор устройства device_id и cookie, полученный при авторизации пользователя. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v3/device/357976061290482/data" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v3/device/{device_id}/data" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deviceposition(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Запрос данных, о текущем (последнем зафиксированном) местоположении устройства. В случае, если в базе данных нет информации о местоположении устройства, блок position будет возвращен пустым. Данный метод устарел, желательно использовать /json/v3/device/{device_id}/data. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v1/device/4568857/position" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/position" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def devicestate(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение текущего состояния устройства или последнего известного состояния устройства. Данный метод устарел, желательно использовать /json/v3/device/{device_id}/data. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v2/device/356306052111516/state" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/state" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def controls_library(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Метод используется для получения всех возможных для данного типа устройств кнопок управления. Возвращается список кнопок с текстовым описанием их предназначения. Текстовое описание выводится на языке, выбранном в личном кабинете или переданном в параметрах данной сессии. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/device/45657/ctrls_library" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/device/{device_id}/ctrls_library" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deviceinfoget(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Метод для получения состояния устройства. Данный метод устарел, желательно использовать /json/v3/device/{device_id}/data. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v1/device/4568857/info" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v1/device/{device_id}/info" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deviceasyncget(device_id: int, cmd_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Метод предназначен для получения статуса выполнения команды, которая была отправлена ранее с помощью метода /json/v2/device/{device_id}/async. Для запроса необходимо передать идентификатор устройства device_id, идентификатор команды cmd_id и cookie, полученный при авторизации пользователя. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v2/device/9854082/async/AEVXNX0QLGMQRLVOW66HYAB6OYIWO6WW" --cookie 'slnet=15CFA19BFD3E8884C716FFA4E39AF866' + " + device_id: Идентификатор устройства в SLNet + cmd_id: Идентификатор команды управления + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v2/device/{device_id}/async/{cmd_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getappcode(secret: str, appid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение кода приложения для дальнейшего получения токена. Срок годности кода приложения – 1 час. Идентификатор приложения и пароль можно получить в личном кабинете в разделе "Разработчикам" на my.starline.ru. В качестве примера можно использовать Python-скрипт get_app_code.py из репозитория gitlab.com/starline/openapi. В результате выполнения скрипт выводит в консоль код приложения. Пример выполнения запроса с помощью curl:

curl "https://id.starline.ru/apiV3/application/getCode?appId=2&secret=d1e0c6cbd6c93999e5072cee4deed9c9" -i + " + secret: MD5 от пароля приложения + appid: Идентификатор приложения + + """ + url = f"https://starline-telematics.p.rapidapi.com/apiv3/application/getcode" + querystring = {'secret': secret, 'appId': appid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getapptoken(secret: str, appid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение токена приложения для дальнейшей авторизации. Время жизни токена приложения – 4 часа. Идентификатор приложения и пароль можно получить в личном кабинете в разделе "Разработчикам" на my.starline.ru. В качестве примера можно использовать Python-скрипт get_app_token.py из репозитория gitlab.com/starline/openapi. В результате выполнения скрипт выводит в консоль токен приложения. Пример выполнения запроса с помощью curl:

curl "https://id.starline.ru/apiV3/application/getToken?appId=2&secret=2646398c5a7bb70b7f4eadca7c4f62cb" -i + " + secret: MD5 от результата конкатенации пароля приложения и кода, полученного через /application/getCode + appid: Идентификатор приложения + + """ + url = f"https://starline-telematics.p.rapidapi.com/apiv3/application/gettoken" + querystring = {'secret': secret, 'appId': appid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def settingssettings(device_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Получение текущего списка настроек или последнего известного списка настроек устройств 3-5 поколения. Для получения данных устройства необходимо передать идентификатор устройства id и cookie, полученный при авторизации пользователя. Пример выполнения запроса с помощью curl:

curl "https://developer.starline.ru/json/v3/device/4568857/settings" --cookie 'slnet=780D719C7F54465FB281B4DD65498168' + " + device_id: Идентификатор устройства в SLNet + + """ + url = f"https://starline-telematics.p.rapidapi.com/json/v3/device/{device_id}/settings" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "starline-telematics.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/stl_slicer.json b/toolbench/toolenv/tools/Tools/stl_slicer.json new file mode 100644 index 0000000000000000000000000000000000000000..4bedbc2df6cdfcb6c91a9f3819f991663be5aefe --- /dev/null +++ b/toolbench/toolenv/tools/Tools/stl_slicer.json @@ -0,0 +1,31 @@ +{ + "product_id": "api_3a466b45-fdf4-4e38-8a48-0593d53f63e5", + "tool_description": "Slices an stl file and return basic information about the print", + "home_url": "https://rapidapi.com/madspedersen/api/stl-slicer/", + "name": "STL slicer", + "title": "STL slicer", + "pricing": "FREEMIUM", + "tool_name": "STL slicer", + "score": null, + "host": "stl-slicer.p.rapidapi.com", + "api_list": [ + { + "name": "Get information on STL file", + "url": "https://stl-slicer.p.rapidapi.com/", + "description": "Post an stl file in the body using form-data and recieve basic information regarding the 3D print. Try it out in Postman, as it does not work with a binary post (a regular file post is not supported in the RapidAPI UI).\nThere is also a working example in Python in the about/README section.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "file", + "type": "STRING", + "description": "Try it out in Postman or the Python Example in the About/README section, as it does not work with a binary post (a regular file post is not supported in the RapidAPI UI).", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://stl-slicer.p.rapidapi.com/\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"stl-slicer.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://stl-slicer.p.rapidapi.com/\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"stl-slicer.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/stock_malaysia/api.py b/toolbench/toolenv/tools/Tools/stock_malaysia/api.py new file mode 100644 index 0000000000000000000000000000000000000000..477ffc0ee24b729fcfea9faddeda746e2a7f4c8e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/stock_malaysia/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def stock(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "provide info name, price, change, change percentage" + + """ + url = f"https://stock-malaysia.p.rapidapi.com/stock" + querystring = {'code': code, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "stock-malaysia.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/story.json b/toolbench/toolenv/tools/Tools/story.json new file mode 100644 index 0000000000000000000000000000000000000000..2efbe3c71fbfbdcea4a6117043ba47a91e98421f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/story.json @@ -0,0 +1,30 @@ +{ + "tool_name":"story", + "tool_description":"story", + "title":"story", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":133, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/prasanth-sreedharan-prasanth-sreedharan-default/api/story3/", + "host":"story3.p.rapidapi.com", + "api_list":[ + { + "name":"end point", + "url":"https://story3.p.rapidapi.com/", + "description":"end point", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://story3.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"story3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/story/api.py b/toolbench/toolenv/tools/Tools/story/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ab23257ac522e9ded4908546f786505623d85399 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/story/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def end_point(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "end point" + + """ + url = f"https://story3.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "story3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/streaminfo.json b/toolbench/toolenv/tools/Tools/streaminfo.json new file mode 100644 index 0000000000000000000000000000000000000000..376ad8630713f07f172e6150739b1142fb0fe5f2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/streaminfo.json @@ -0,0 +1,64 @@ +{ + "product_id": "api_09b46c26-f81c-44b2-adb7-017469ef41fd", + "tool_description": "RTMP/HLS Stream information API", + "home_url": "https://rapidapi.com/bitfocus-as-bitfocus-as-default/api/streaminfo/", + "name": "streaminfo", + "title": "streaminfo", + "pricing": "FREEMIUM", + "tool_name": "streaminfo", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3937, + "avgSuccessRate": 100, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "streaminfo.p.rapidapi.com", + "api_list": [ + { + "name": "Stream probe", + "url": "https://streaminfo.p.rapidapi.com/probeStream", + "description": "Request stream information from the specified RTMP or HLS url.\n\nIt will return the currently present audio and video codecs, and the bitrate, framerate, etc.\n\nThis endpoint is nice to check that the resolution or frame rate is correct. But could also be used to check if the stream is up and alive, if put in an automated environment.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://streaminfo.p.rapidapi.com/probeStream\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"streaminfo.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://streaminfo.p.rapidapi.com/probeStream\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"streaminfo.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "codec_name": "string", + "codec_long_name": "string", + "codec_type": "string", + "avg_frame_rate": "string", + "bit_rate": "string", + "profile": "string", + "width": "integer", + "height": "integer", + "pix_fmt": "string" + } + } + } + } + } + }, + { + "name": "Stream thumbnail generator", + "url": "https://streaminfo.p.rapidapi.com/preview", + "description": "Returns a jpeg image representation of the current stream in binary form.\n\nYou can choose the output size of the image using the `width` and `height` parameters, as well as changing the jpeg quality using the `quality` parameter, which expects a value between 0-100.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://streaminfo.p.rapidapi.com/preview\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"streaminfo.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://streaminfo.p.rapidapi.com/preview\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"streaminfo.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_in_reversed.json b/toolbench/toolenv/tools/Tools/string_in_reversed.json new file mode 100644 index 0000000000000000000000000000000000000000..c11e9d7a0f3a0e7253d35f66efe17640e4fb6b61 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_in_reversed.json @@ -0,0 +1,24 @@ +{ + "tool_name":"String in Reversed", + "tool_description":"API theat return the string in reversed", + "title":"String in Reversed", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/roachheather17463/api/string-in-reversed/", + "host":"string-in-reversed.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://string-in-reversed.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://string-in-reversed.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-in-reversed.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_in_reversed/api.py b/toolbench/toolenv/tools/Tools/string_in_reversed/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0c9009974cc8419dc27ce3d4eb87ead934f056ee --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_in_reversed/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://string-in-reversed.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "string-in-reversed.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/string_methods_and_functions_manipulate_text.json b/toolbench/toolenv/tools/Tools/string_methods_and_functions_manipulate_text.json new file mode 100644 index 0000000000000000000000000000000000000000..7830e2e250a1759c8c7188cb961c0f786cfeabd3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_methods_and_functions_manipulate_text.json @@ -0,0 +1,686 @@ +{ + "product_id": "api_67ebbf67-cdf3-4e5e-b306-9bcf0970e7ce", + "tool_description": "Empower your applications with a collection of powerful string manipulation functions and methods. Perform actions such as string formatting, searching, trimming, case conversions, URL parsing, and more. Streamline your string handling tasks with this comprehensive set of tools designed to make your development process smoother and more efficient.\"", + "home_url": "https://rapidapi.com/nathancox90/api/string-methods-and-functions-manipulate-text/", + "name": "String Methods and Functions - Manipulate text", + "title": "String Methods and Functions - Manipulate text", + "pricing": "FREEMIUM", + "tool_name": "String Methods and Functions - Manipulate text", + "score": { + "avgServiceLevel": 100, + "avgLatency": 247, + "avgSuccessRate": 99, + "popularityScore": 9.3, + "__typename": "Score" + }, + "host": "string-methods-and-functions-manipulate-text.p.rapidapi.com", + "api_list": [ + { + "name": "/string/rtrim", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/rtrim", + "description": "The /rtrim API endpoint trims the trailing whitespace from a given text, provided as the text parameter. It removes any spaces, tabs, or other whitespace characters at the end (right side) of the text.\n\nThe endpoint does not modify the text in any other way apart from removing trailing whitespace. It ensures that the resulting trimmed text retains its original content without any changes to letter casing or other characters.\n\nThe /rtrim endpoint is useful when you need to eliminate trailing whitespace from a text, improving its readability and ensuring consistent formatting. It helps to remove any unintended whitespace that may affect the visual presentation or processing of the text.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/rtrim\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/rtrim\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/string/url_hasarg", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_hasarg", + "description": "The /url_hasarg API endpoint checks whether a specific query parameter exists in a given URL provided as the text parameter. It requires an additional input key, which represents the name of the query parameter to check.\n\nUsing the provided inputs, the endpoint examines the URL to determine if the query parameter specified by the key is present. It returns a boolean value of true if the query parameter exists in the URL, and false otherwise.\n\nThis endpoint is useful when you need to verify the presence of a specific query parameter in a URL. It allows you to perform conditional operations or validations based on the existence of certain query parameters, ensuring that your application responds appropriately to the presence or absence of expected parameters in the URL.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "key", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_hasarg\"\nquerystring = {\"text\": \"\", \"key\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_hasarg\"\nquerystring = {\"text\": \"\", \"key\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/string/to_lower", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/to_lower", + "description": "The /to_lower API endpoint converts the characters in a given text, provided as the text parameter, to lowercase. It transforms any uppercase letters in the text to their corresponding lowercase forms while leaving any lowercase letters unchanged.\n\nThe /to_lower endpoint is useful when you need to standardize the letter casing of a text or perform case-insensitive comparisons. It helps ensure consistent handling of text regardless of the original letter casing, facilitating accurate matching, sorting, or processing of textual data.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/to_lower\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/to_lower\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/to_upper", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/to_upper", + "description": "The /to_upper API endpoint converts the characters in a given text, provided as the text parameter, to uppercase. It transforms any lowercase letters in the text to their corresponding uppercase forms while leaving any uppercase letters unchanged.\n\nThe /to_upper endpoint is useful when you need to standardize the letter casing of a text or perform case-insensitive operations. It helps ensure consistent handling of text regardless of the original letter casing, facilitating accurate matching, sorting, or processing of textual data in uppercase format.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/to_upper\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/to_upper\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/starts_with", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/starts_with", + "description": "The /starts_with API endpoint allows you to check if a given text, provided as the text parameter, starts with a specific search term, provided as the search parameter.\n\nThis endpoint performs a case-sensitive search, meaning it considers the letter casing when comparing the beginning of the text with the search term. It returns a boolean value of true if the text starts with the search term, and false otherwise.\n\nThe /starts_with endpoint is particularly useful when you need to determine if a certain search term is found at the beginning of a given text, considering the exact letter casing. It helps you identify specific patterns or prefixes within the text accurately.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/starts_with\"\nquerystring = {\"text\": \"\", \"search\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/starts_with\"\nquerystring = {\"text\": \"\", \"search\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/strip_html", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strip_html", + "description": "The /strip_html API endpoint removes HTML tags and entities from a given text provided as the text parameter. It cleanses the text by removing any HTML markup, such as

,

, .\n\nThis endpoint is useful when you need to extract plain text content from HTML documents or sanitize user-generated input to prevent potential security vulnerabilities or undesired display of HTML tags in your application.\n\nBy utilizing the /strip_html endpoint, you can obtain the raw textual content without any HTML formatting or entities, making it easier to process, analyze, or display the text as desired.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strip_html\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strip_html\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/querystring_parse", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/querystring_parse", + "description": "The /querystring_parse API endpoint parses a URL's query string parameters and returns them as key-value pairs in an object format. For example an input of 'https://example.com/search?keyword=test&category=books&page=1' would be come {\n keyword: \"test\",\n category: \"books\",\n page: \"1\"\n}\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/querystring_parse\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/querystring_parse\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/string/icontains", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/icontains", + "description": "The /icontains API endpoint functions similarly to the /contains endpoint but with a case-insensitive search. It takes two input parameters, text and search, and returns true if the search term is found within the text, regardless of letter casing.\n\nThis endpoint is especially useful when you need to perform a case-insensitive search, allowing you to efficiently determine if a specific term exists within a given text, regardless of whether the letter casing matches exactly or not. The /icontains endpoint helps simplify and enhance your search and filtering capabilities by disregarding case sensitivity.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/icontains\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/icontains\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/istarts_with", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/istarts_with", + "description": "The /istarts_with API endpoint allows you to check if a given text, provided as the text parameter, starts with a specific search term, provided as the search parameter.\n\nThis endpoint performs a case-insensitive search, meaning it disregards the letter casing when comparing the beginning of the text with the search term. It returns a boolean value of true if the text starts with the search term, and false otherwise.\n\nThe /istarts_with endpoint is particularly useful when you need to determine if a certain search term is found at the beginning of a given text, without considering the letter casing. It simplifies the process of checking for specific starting patterns, enabling you to efficiently handle various search and matching scenarios.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/istarts_with\"\nquerystring = {\"text\": \"\", \"search\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/istarts_with\"\nquerystring = {\"text\": \"\", \"search\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/strlen", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strlen", + "description": "The /strlen API endpoint calculates the length of a given text provided as the text parameter. It returns the number of characters in the text, including spaces, punctuation, and special characters.\n\nThe /strlen endpoint is useful when you need to determine the length of a text string programmatically. It helps you retrieve the character count, which can be utilized for various purposes such as validation, string manipulation, or displaying character limits.\n\nFor example, if the input text is \"Hello, World!\", the /strlen endpoint will return the value 13, indicating that the text contains 13 characters.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strlen\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strlen\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/iindex", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/iindex", + "description": "The /iindex API endpoint allows you to find the index position of a case-insensitive expression within a given text. It takes two input parameters, text and search, and returns the index position where the expression is found within the text. If the expression cannot be found, the endpoint returns false.\n\nThis endpoint performs a case-insensitive search, meaning it disregards the letter casing when searching for the expression within the text. It helps you locate the position of a specific expression within the text, regardless of the letter casing used.\n\nThe /iindex endpoint is useful when you need to determine the index position of a case-insensitive expression in a given text, providing flexibility and convenience for various search and indexing tasks.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/iindex\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/iindex\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/string/replace", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/replace", + "description": "The /replace API endpoint allows you to replace occurrences of a specific search term, provided as the search parameter, with a replacement text, provided as the replacement parameter, within a given text, provided as the text parameter.\n\nBy specifying the text input, you provide the original text in which you want to perform the replacement. The /replace endpoint searches for all instances of the search term within the text and replaces them with the specified replacement text.\n\nThis endpoint is useful when you need to perform find-and-replace operations within a text, enabling you to substitute specific patterns or occurrences with desired replacements. It provides a convenient way to modify and transform text content based on your requirements.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "replacement", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/replace\"\nquerystring = {\"replacement\": \"\", \"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/replace\"\nquerystring = {\"replacement\": \"\", \"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/split", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/split", + "description": "The /split API endpoint takes a text input, specified as the text parameter, and a separator input, specified as the separator parameter. Additionally, it includes a boolean parameter space which, when set to true, uses a single space as the separator.\n\nThe endpoint splits the given text into an array of substrings based on the provided separator. If the space parameter is set to true, a single space is used as the separator. Otherwise, the specified separator text is used for splitting.\n\nThis endpoint is useful when you need to split a text into distinct segments based on a separator, giving you the flexibility to choose between using a specific separator or a space. It allows you to easily break down a text into meaningful chunks or extract individual elements for further processing or analysis.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "separator", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "space", + "type": "BOOLEAN", + "description": "", + "default": "true" + } + ], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/split\"\nquerystring = {\"separator\": \"\", \"space\": \"true\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/split\"\nquerystring = {\"separator\": \"\", \"space\": \"true\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/contains", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/contains", + "description": "The /contains endpoint is a web service that checks whether a given input text contains another specified string. This endpoint takes two string inputs: text, which represents the main text to be searched, and contains, which represents the string being searched for. It performs a search operation on the text input to determine if it contains the contains input as a substring. If the text input includes the contains string, the endpoint returns true; otherwise, it returns false. This endpoint is useful for verifying the presence of a specific substring within a larger text, enabling efficient searching and conditional logic based on the existence of the desired string.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "contains", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/contains\"\nquerystring = {\"text\": \"\", \"contains\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/contains\"\nquerystring = {\"text\": \"\", \"contains\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/index", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/index", + "description": "The /index API endpoint allows you to find the index position of a case-sensitive expression within a given text. It takes two input parameters, text and search, and returns the index position where the expression is found within the text. If the expression cannot be found, the endpoint returns false.\n\nThis endpoint performs a case-sensitive search, meaning it considers the letter casing when searching for the expression within the text. It helps you locate the position of a specific expression within the text, ensuring an exact match in terms of letter casing.\n\nThe /index endpoint is useful when you need to determine the index position of a case-sensitive expression in a given text, providing precision and accuracy for various search and indexing tasks.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/index\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/index\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/url_getarg", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_getarg", + "description": "The /url_getarg API endpoint retrieves the value of a specific query parameter from a given URL provided as the text parameter. It requires an additional input key, which represents the name of the query parameter to retrieve.\n\nUsing the provided inputs, the endpoint searches for the query parameter specified by the key in the URL and returns its corresponding value. If the query parameter is found, the endpoint returns the value as a result. If the query parameter is not found, the endpoint returns null or an appropriate indicator to denote the absence of the query parameter.\n\nThis endpoint is useful when you need to extract and retrieve specific query parameters from a URL. It enables you to programmatically access and utilize the values of query parameters for various purposes, such as processing URL parameters in API calls, extracting filtering criteria, or performing dynamic operations based on the URL parameters.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "key", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_getarg\"\nquerystring = {\"key\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_getarg\"\nquerystring = {\"key\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/strip_accents", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strip_accents", + "description": "The /strip_accents API endpoint performs accent stripping or normalization on a given text provided as the text parameter. It removes or replaces accented characters in the text with their non-accented counterparts.\n\nAccented characters are often found in languages with diacritical marks, such as \u00e9, \u00e0, \u00fc, etc. The /strip_accents endpoint removes or replaces these accents to produce a normalized version of the text where accented characters are represented in their base form.\n\nThis endpoint is useful when you need to process or compare text that may contain accented characters. It helps to ensure consistency and compatibility by transforming accented characters into their base forms, facilitating accurate text matching, searching, or analysis across different languages or systems.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strip_accents\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/strip_accents\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/url_delarg", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_delarg", + "description": "The /url_delarg API endpoint removes a specific query parameter from a given URL provided as the text parameter. It requires an additional input key, which represents the name of the query parameter to be removed.\n\nUsing the provided inputs, the endpoint identifies the query parameter specified by the key and removes it from the URL. The endpoint does not consider encoding or decoding of the parameter values.\n\nThis endpoint is useful when you need to programmatically remove a specific query parameter from a URL. It allows you to modify URLs dynamically by eliminating unwanted or unnecessary query parameters, providing flexibility in managing URL parameters for various purposes, such as optimizing URLs for SEO or removing sensitive information from shared URLs.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "key", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_delarg\"\nquerystring = {\"text\": \"\", \"key\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_delarg\"\nquerystring = {\"text\": \"\", \"key\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/ltrim", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/ltrim", + "description": "The /ltrim API endpoint trims the leading whitespace from a given text, provided as the text parameter. It removes any spaces, tabs, or other whitespace characters at the beginning (left side) of the text.\n\nThe endpoint does not modify the letter casing or make any changes to the text other than removing leading whitespace. It ensures that the resulting trimmed text retains its original casing.\n\nThe /ltrim endpoint is useful when you need to eliminate leading whitespace from a text, improving its readability and ensuring consistent formatting.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/ltrim\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/ltrim\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/string/concat", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/concat", + "description": "The /concat API endpoint allows you to concatenate two strings, text1 and text2, with the option to specify a separator and whether to include a space.\n\nBy providing the separator parameter as a string, you can choose the specific separator you want to use between the two strings. Alternatively, if you set the space parameter to true, a single space will be used as the separator.\n\nThis endpoint is useful when you need to combine two strings together while controlling the separator between them, whether it's a space or a custom text.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text1", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text2", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "separator", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "space", + "type": "BOOLEAN", + "description": "", + "default": "true" + } + ], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/concat\"\nquerystring = {\"text1\": \"\", \"text2\": \"\", \"separator\": \"\", \"space\": \"true\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/concat\"\nquerystring = {\"text1\": \"\", \"text2\": \"\", \"separator\": \"\", \"space\": \"true\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "/string/url_parse", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_parse", + "description": "The /url_parse API endpoint parses a given URL into its individual components. For example, when providing the URL https://news.google.com/home?hl=en-US&gl=US&ceid=US:en, the resulting parsed components would be: {\n scheme: \"https\",\n host: \"news.google.com\",\n path: \"/home\",\n query: \"hl=en-US&gl=US&ceid=US:en\"\n}. The parsed components include:\n\nscheme: The URL scheme or protocol, which in this case is \"https\".\nhost: The host name or domain, which is \"news.google.com\".\npath: The path component of the URL, which is \"/home\".\nquery: The query string portion of the URL, which is \"hl=en-US&gl=US&ceid=US:en\".\nThe /url_parse endpoint is useful when you need to extract and analyze the individual components of a URL, allowing you to access and utilize them for various purposes, such as building customized URLs, extracting specific query parameters, or performing targeted operations based on the URL components.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_parse\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_parse\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/url_addarg", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_addarg", + "description": "The /url_addarg API endpoint adds a query parameter to a given URL provided as the text parameter. It takes additional inputs such as key (the name of the query parameter), value (the value of the query parameter), and ENCODING_RFC3986 (a boolean flag indicating whether the values should be encoded using the RFC 3986 standard).\n\nUsing the provided inputs, the endpoint adds the query parameter to the URL by appending it with the correct encoding. If the ENCODING_RFC3986 flag is set to true, the values will be encoded according to the RFC 3986 standard. If it is set to false, the values will be added as is, without encoding.\n\nThis endpoint is useful when you need to dynamically add query parameters to a URL, allowing you to modify and customize URLs for various purposes, such as constructing dynamic links or generating URLs with specific query parameters for API calls or web requests.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "value", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "key", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "ENCODING_RFC3986", + "type": "BOOLEAN", + "description": "", + "default": "true" + } + ], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_addarg\"\nquerystring = {\"ENCODING_RFC3986\": \"true\", \"value\": \"\", \"text\": \"\", \"key\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/url_addarg\"\nquerystring = {\"ENCODING_RFC3986\": \"true\", \"value\": \"\", \"text\": \"\", \"key\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/iends_with", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/iends_with", + "description": "The /iends_with API endpoint allows you to check if a given text, provided as the text parameter, ends with a specific search term, provided as the search parameter.\n\nThis endpoint performs a case-insensitive search, meaning it disregards the letter casing when comparing the end of the text with the search term. It returns a boolean value of true if the text ends with the search term, and false otherwise.\n\nThe /iends_with endpoint is particularly useful when you need to determine if a certain search term is found at the end of a given text, without considering the letter casing. It simplifies the process of checking for specific endings, enabling you to efficiently handle various search and matching scenarios.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "search", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/iends_with\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/iends_with\"\nquerystring = {\"search\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/string/capitalize", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/capitalize", + "description": "The /capitalize endpoint is a web service that performs text transformation by converting the input text to title case. Title case, sometimes known as capital case, is a formatting style where the first letter of each major word in a sentence or phrase is capitalized, while the remaining letters are in lowercase. This endpoint takes in a string of text as input and applies the title case formatting to it, resulting in an output string with the first letter of each word capitalized. It is a useful tool for ensuring consistent and visually appealing capitalization in titles, headings, or any text where title case is desired.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/capitalize\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/capitalize\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/string/trim", + "url": "https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/trim", + "description": "The /trim API endpoint trims both the leading and trailing whitespace from a given text, provided as the text parameter. It removes any spaces, tabs, or other whitespace characters at the beginning (left side) and end (right side) of the text.\n\nThe /trim endpoint does not modify the text in any other way apart from removing leading and trailing whitespace. It ensures that the resulting trimmed text retains its original content without any changes to letter casing or other characters.\n\nThe /trim endpoint is useful when you need to eliminate both leading and trailing whitespace from a text, improving its readability and ensuring consistent formatting. It helps to remove any unintended whitespace that may affect the visual presentation or processing of the text.\n

\nAuthentication: not required", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/trim\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-methods-and-functions-manipulate-text.p.rapidapi.com/string/trim\"\nquerystring = {\"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-methods-and-functions-manipulate-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_of_motivation.json b/toolbench/toolenv/tools/Tools/string_of_motivation.json new file mode 100644 index 0000000000000000000000000000000000000000..e73d9a548ee1bc5000172c5d15455498f21a0cb2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_of_motivation.json @@ -0,0 +1,24 @@ +{ + "tool_name":"String of Motivation", + "tool_description":"API return a string of motivation quote", + "title":"String of Motivation", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/EDWINCANIZALEZ4097/api/string-of-motivation/", + "host":"string-of-motivation.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://string-of-motivation.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://string-of-motivation.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-of-motivation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_of_motivation/api.py b/toolbench/toolenv/tools/Tools/string_of_motivation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2c6a9cdd6eaa07e867e907a0aa15659f627a51d6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_of_motivation/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://string-of-motivation.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "string-of-motivation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/string_to_md5_converter.json b/toolbench/toolenv/tools/Tools/string_to_md5_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..a6e0cbd917ebb355fef6448cc01147b71adf6655 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_to_md5_converter.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_4beb248d-ce03-4c05-8de0-80ec17e9eb52", + "tool_description": "This API endpoint allows you to convert a given string into its MD5 hash representation. The server takes the input string from the request body, processes it, and responds with the MD5 hash as a JSON object. To use this API, send a POST request to the /convert endpoint with a JSON body containing the \"string\" field with the string you want to convert", + "home_url": "https://rapidapi.com/owunnakerjew/api/string-to-md5-converter/", + "name": "String to MD5 Converter", + "title": "String to MD5 Converter", + "pricing": "FREEMIUM", + "tool_name": "String to MD5 Converter", + "score": { + "avgServiceLevel": 100, + "avgLatency": 433, + "avgSuccessRate": 100, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "string-to-md5-converter.p.rapidapi.com", + "api_list": [ + { + "name": "postStringToMd5", + "url": "https://string-to-md5-converter.p.rapidapi.com/api/convert", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-to-md5-converter.p.rapidapi.com/api/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-to-md5-converter.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-to-md5-converter.p.rapidapi.com/api/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-to-md5-converter.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_to_sha_1.json b/toolbench/toolenv/tools/Tools/string_to_sha_1.json new file mode 100644 index 0000000000000000000000000000000000000000..1e7331eae1782afb7c9c2b8fca14c9215d7dd942 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_to_sha_1.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_2b6f1386-ef00-4410-98df-63bc4351186a", + "tool_description": "This API endpoint allows you to convert a given string into its SHA-1 hash representation. The server takes the input string from the request body, processes it, and responds with the SHA-1 hash as a JSON object. To use this API, send a POST request to the /convert endpoint with a JSON body containing the \"string\" field with the string you want to convert. The response will contain the SHA-1 hash of the input string. SHA-1 (Secure Hash Algorithm 1) is a cryptographic hash function commonly ...", + "home_url": "https://rapidapi.com/mousutmador/api/string-to-sha-1/", + "name": "string to sha-1", + "title": "string to sha-1", + "pricing": "FREEMIUM", + "tool_name": "string to sha-1", + "score": { + "avgServiceLevel": 100, + "avgLatency": 442, + "avgSuccessRate": 100, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "string-to-sha-1.p.rapidapi.com", + "api_list": [ + { + "name": "getSha1", + "url": "https://string-to-sha-1.p.rapidapi.com/api/convert", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-to-sha-1.p.rapidapi.com/api/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-to-sha-1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-to-sha-1.p.rapidapi.com/api/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-to-sha-1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_to_sha_256_converter.json b/toolbench/toolenv/tools/Tools/string_to_sha_256_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..51f636056f34d77d9530352dd6568659ad3ab05d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_to_sha_256_converter.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_f34467bd-8be4-4c6d-a8a8-6b0854ca463a", + "tool_description": "This API endpoint allows you to convert a given string into its SHA-256 hash representation. The server takes the input string from the request body, processes it, and responds with the SHA-256 hash as a JSON object. To use this API, send a POST request to the /convert endpoint with a JSON body containing the \"string\" field with the string you want to convert. The response will contain the SHA-256 hash of the input string. SHA-256 (Secure Hash Algorithm 256-bit) is a widely used cryptograph...", + "home_url": "https://rapidapi.com/pritznattaf/api/string-to-sha-256-converter/", + "name": "String to SHA-256 Converter", + "title": "String to SHA-256 Converter", + "pricing": "FREEMIUM", + "tool_name": "String to SHA-256 Converter", + "score": { + "avgServiceLevel": 100, + "avgLatency": 430, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "string-to-sha-256-converter.p.rapidapi.com", + "api_list": [ + { + "name": "postString", + "url": "https://string-to-sha-256-converter.p.rapidapi.com/api/convert", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://string-to-sha-256-converter.p.rapidapi.com/api/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-to-sha-256-converter.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://string-to-sha-256-converter.p.rapidapi.com/api/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-to-sha-256-converter.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_upper_case.json b/toolbench/toolenv/tools/Tools/string_upper_case.json new file mode 100644 index 0000000000000000000000000000000000000000..e111a46e7503e017fe046d91a8545eea5d151eba --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_upper_case.json @@ -0,0 +1,31 @@ +{ + "tool_name":"String upper case", + "tool_description":"Upper all characters in your string", + "title":"String upper case", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/tamtit722/api/string-upper-case/", + "host":"string-upper-case.p.rapidapi.com", + "api_list":[ + { + "name":"Upper case", + "url":"https://string-upper-case.p.rapidapi.com/", + "description":"Upper your string", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"put string here" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://string-upper-case.p.rapidapi.com/\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"string-upper-case.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/string_upper_case/api.py b/toolbench/toolenv/tools/Tools/string_upper_case/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b77ad51b79bb2c5410ec0d7f0b0849a612898bce --- /dev/null +++ b/toolbench/toolenv/tools/Tools/string_upper_case/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def upper_case(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Upper your string" + + """ + url = f"https://string-upper-case.p.rapidapi.com/" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "string-upper-case.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/subdomain_scan.json b/toolbench/toolenv/tools/Tools/subdomain_scan.json new file mode 100644 index 0000000000000000000000000000000000000000..2cd99f4b93f8dae7ec691403ea2ffeb4b6cf0f6d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/subdomain_scan.json @@ -0,0 +1,129 @@ +{ + "tool_name":"Subdomain Scan", + "tool_description":"Enter a domain here and we'll check all subdomains and return it in a JSON format for you.", + "title":"Subdomain Scan", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":10220, + "avgSuccessRate":100, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/sedrakpc/api/subdomain-scan1/", + "host":"subdomain-scan1.p.rapidapi.com", + "api_list":[ + { + "name":"Get Subdomains", + "url":"https://subdomain-scan1.p.rapidapi.com/", + "description":"Enter a domain here and we'll check and return all subdomains in a JSON format for you.", + "method":"GET", + "required_parameters":[ + { + "name":"domain", + "type":"STRING", + "description":"", + "default":"rapidapi.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://subdomain-scan1.p.rapidapi.com/\"\nquerystring = {\"domain\": domain}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"subdomain-scan1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + "ajith-messages.p.rapidapi.com", + "amp.rapidapi.com", + "api.rapidapi.com", + "blog.rapidapi.com", + "bravenewcoin.p.rapidapi.com", + "bufferover-run-tls.p.rapidapi.com", + "cadastral-situation-of-the-brazilian-cpf-numbers.p.rapidapi.com", + "cdn.rapidapi.com", + "community-open-weather-map.p.rapidapi.com", + "coronavirus-monitor.p.rapidapi.com", + "coronavirus-smartable.p.rapidapi.com", + "covid-19-coronavirus-statistics.p.rapidapi.com", + "covid-19-data.p.rapidapi.com", + "covid-193.p.rapidapi.com", + "dashboard.rapidapi.com", + "directory-proxy.rapidapi.com", + "docs.rapidapi.com", + "em.rapidapi.com", + "engineering.rapidapi.com", + "enterprise-docs.rapidapi.com", + "fixer-fixer-currency-v1.p.rapidapi.com", + "get.rapidapi.com", + "go.rapidapi.com", + "googlesheets.rapidapi.com", + "groove.rapidapi.com", + "guides.rapidapi.com", + "hello.rapidapi.com", + "hub-eu.rapidapi.com", + "hub-us.rapidapi.com", + "hub.rapidapi.com", + "imgur-apiv3.p.rapidapi.com", + "infotrie-company-search-v1.p.rapidapi.com", + "jobs.rapidapi.com", + "learn.rapidapi.com", + "lms.rapidapi.com", + "mail.rapidapi.com", + "nlp-translation.p.rapidapi.com", + "nutritionix-api.p.rapidapi.com", + "okinatako.rapidapi.com", + "p-aws-ap-northeast-1.rapidapi.com", + "p-aws-ap-south-1.rapidapi.com", + "p-aws-ap-southeast-1.rapidapi.com", + "p-aws-ap-southeast-2.rapidapi.com", + "p-aws-eu-central-1.rapidapi.com", + "p-aws-eu-west-1.rapidapi.com", + "p-aws-sa-east-1.rapidapi.com", + "p-aws-us-west-2.rapidapi.com", + "p-ca.rapidapi.com", + "p-eu.rapidapi.com", + "p-us.rapidapi.com", + "p.rapidapi.com", + "pexelsdimasv1.p.rapidapi.com", + "pointsdb-bulk-whois-v1.p.rapidapi.com", + "privatix-temp-mail-v1.p.rapidapi.com", + "rapidapi.p.rapidapi.com", + "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com", + "stacks.rapidapi.com", + "staging.rapidapi.com", + "systran-systran-platform-for-language-processing-v1.p.rapidapi.com", + "test.rapidapi.com", + "textvis-word-cloud-v1.p.rapidapi.com", + "threads.rapidapi.com", + "tiktok-without-watermark.p.rapidapi.com", + "url-shortener-service.p.rapidapi.com", + "webhooks.rapidapi.com", + "website.rapidapi.com", + "wft-geo-db.p.rapidapi.com", + "wordsapiv1.p.rapidapi.com", + "world-clock.p.rapidapi.com", + "wp.rapidapi.com", + "www.guides.rapidapi.com", + "www.learn.rapidapi.com", + "www.lms.rapidapi.com", + "www.rapidapi.com", + "www.stacks.rapidapi.com", + "yahoo-weather5.p.rapidapi.com", + "youtube-search1.p.rapidapi.com", + "youtube-to-mp32.p.rapidapi.com", + "youtube-v31.p.rapidapi.com" + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"2384", + "content-type":"application/json", + "date":"Wed, 29 Jun 2022 06:17:03 GMT", + "server":"RapidAPI-1.2.8", + "x-amzn-requestid":"c92cffae-fe78-45b2-9f6a-b7cff467fbae", + "x-amzn-trace-id":"root=1-62bbeddc-017a82470141c6ea38925860;sampled=0", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/subdomain_scan/api.py b/toolbench/toolenv/tools/Tools/subdomain_scan/api.py new file mode 100644 index 0000000000000000000000000000000000000000..74ea0f5ad26703afa899c6a014e4cb0ff9d35188 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/subdomain_scan/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_subdomains(domain: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter a domain here and we'll check and return all subdomains in a JSON format for you." + + """ + url = f"https://subdomain-scan1.p.rapidapi.com/" + querystring = {'domain': domain, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "subdomain-scan1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/suggest_the_book.json b/toolbench/toolenv/tools/Tools/suggest_the_book.json new file mode 100644 index 0000000000000000000000000000000000000000..aa448f8703f6ae2dc80cc36d93ea8c2ea0cf8f62 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/suggest_the_book.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Suggest the Book", + "tool_description":"API that suggest the book you may want to read", + "title":"Suggest the Book", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/amberdieterichgibson929/api/suggest-the-book/", + "host":"suggest-the-book.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://suggest-the-book.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://suggest-the-book.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"suggest-the-book.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/suggest_the_book/api.py b/toolbench/toolenv/tools/Tools/suggest_the_book/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1c77cc33fa88f1e2f39ee8e37bfda458b56c8228 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/suggest_the_book/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://suggest-the-book.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "suggest-the-book.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/taggun.json b/toolbench/toolenv/tools/Tools/taggun.json new file mode 100644 index 0000000000000000000000000000000000000000..47c44ac8e46aff19506a29d29c794c3680113ad4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/taggun.json @@ -0,0 +1,143 @@ +{ + "product_id": "58e61993e4b0d070d50a0d39", + "tool_description": "Got a project that needs OCR and data extraction? Taggun API performs image transcription in real-time. Given a photo of a receipt, it recognizes key information like total amount, tax amount, date of purchase, merchant information, and line item amounts. It achieves this with 82.26% accuracy under 2.76 seconds.", + "home_url": "https://rapidapi.com/Taggun/api/taggun/", + "name": "Taggun", + "title": "Taggun", + "pricing": "FREEMIUM", + "tool_name": "Taggun", + "score": null, + "host": "taggun.p.rapidapi.com", + "api_list": [ + { + "name": "/api/receipt/v1/simple/url", + "url": "https://taggun.p.rapidapi.com/api/receipt/v1/simple/url", + "description": "transcribe a receipt from URL", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/simple/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/simple/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/receipt/v1/verbose/url", + "url": "https://taggun.p.rapidapi.com/api/receipt/v1/verbose/url", + "description": "transcribe a receipt from URL and return detailed result", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/verbose/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/verbose/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/receipt/v1/simple/encoded", + "url": "https://taggun.p.rapidapi.com/api/receipt/v1/simple/encoded", + "description": "transcribe a receipt using base64 encoded image in json payload", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/simple/encoded\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/simple/encoded\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/receipt/v1/verbose/file", + "url": "https://taggun.p.rapidapi.com/api/receipt/v1/verbose/file", + "description": "transcribe a receipt by uploading an image file and return detailed result", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "file less than 20MB. Accepted file types: PDF, JPG, PNG, GIF", + "default": "file" + } + ], + "optional_parameters": [ + { + "name": "refresh", + "type": "BOOLEAN", + "description": "Set true to force re-process image transcription if the receipt is already in storage", + "default": "" + }, + { + "name": "incognito", + "type": "STRING", + "description": "Set true to avoid saving the receipt in storage", + "default": "" + }, + { + "name": "ipAddress", + "type": "STRING", + "description": "IP Address of the end user", + "default": "34.2.2.223" + } + ], + "code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/verbose/file\"\nquerystring = {\"refresh\": \"\", \"incognito\": \"\", \"ipAddress\": \"34.2.2.223\", \"file\": \"file\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/verbose/file\"\nquerystring = {\"refresh\": \"\", \"incognito\": \"\", \"ipAddress\": \"34.2.2.223\", \"file\": \"file\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/receipt/v1/simple/file", + "url": "https://taggun.p.rapidapi.com/api/receipt/v1/simple/file", + "description": "transcribe a receipt by uploading an image file", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "file less than 20MB. Accepted file types: PDF, JPG, PNG, GIF", + "default": "file" + } + ], + "optional_parameters": [ + { + "name": "ipAddress", + "type": "STRING", + "description": "IP Address of the end user", + "default": "34.2.2.223" + }, + { + "name": "refresh", + "type": "BOOLEAN", + "description": "Set true to force re-process image transcription if the receipt is already in storage", + "default": "" + }, + { + "name": "incognito", + "type": "STRING", + "description": "Set true to avoid saving the receipt in storage", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/simple/file\"\nquerystring = {\"file\": \"file\", \"ipAddress\": \"34.2.2.223\", \"refresh\": \"\", \"incognito\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/simple/file\"\nquerystring = {\"file\": \"file\", \"ipAddress\": \"34.2.2.223\", \"refresh\": \"\", \"incognito\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/receipt/v1/verbose/encoded", + "url": "https://taggun.p.rapidapi.com/api/receipt/v1/verbose/encoded", + "description": "transcribe a receipt using base64 encoded image in JSON payload and return detailed result.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/verbose/encoded\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://taggun.p.rapidapi.com/api/receipt/v1/verbose/encoded\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taggun.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/task_manager_api.json b/toolbench/toolenv/tools/Tools/task_manager_api.json new file mode 100644 index 0000000000000000000000000000000000000000..8fdb2eddb6af041e398acd3b3fa333be928c923c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/task_manager_api.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_fd6eb1c3-070b-4e4d-93bf-d7df48f05b94", + "tool_description": "Supercharge your projects with our Task Manager API! Perfect for personal endeavors and seamlessly integrable with your own developments, our API empowers you to create customized task management solutions. Organize, prioritize, and conquer your to-do lists with ease. Boost productivity, streamline workflows, and take control of your tasks. Get started today and make tasks a breeze with our easy-to-use, flexible, and robust API, tailored for both personal and integrated project needs.", + "home_url": "https://rapidapi.com/fabriciomf72/api/task-manager-api3/", + "name": "Task Manager API", + "title": "Task Manager API", + "pricing": "FREEMIUM", + "tool_name": "Task Manager API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 442, + "avgSuccessRate": 100, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "task-manager-api3.p.rapidapi.com", + "api_list": [ + { + "name": "createTask", + "url": "https://task-manager-api3.p.rapidapi.com/", + "description": "With this endpoint you will be able to create a new task", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://task-manager-api3.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"task-manager-api3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://task-manager-api3.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"task-manager-api3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/teamriverbubbles_random_utilities.json b/toolbench/toolenv/tools/Tools/teamriverbubbles_random_utilities.json new file mode 100644 index 0000000000000000000000000000000000000000..1ac1fc6080ac618ef8de05bbff883d59474047a6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/teamriverbubbles_random_utilities.json @@ -0,0 +1,169 @@ +{ + "product_id": "api_809b9622-3a96-4378-880b-87a1093df227", + "tool_description": "random utilities you may use", + "home_url": "https://rapidapi.com/teamriverbubbles/api/teamriverbubbles-random-utilities1/", + "name": "teamriverbubbles random utilities", + "title": "teamriverbubbles random utilities", + "pricing": "FREEMIUM", + "tool_name": "teamriverbubbles random utilities", + "score": { + "avgServiceLevel": 100, + "avgLatency": 490, + "avgSuccessRate": 100, + "popularityScore": 6, + "__typename": "Score" + }, + "host": "teamriverbubbles-random-utilities1.p.rapidapi.com", + "api_list": [ + { + "name": "is prime", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/math/prime", + "description": "checks if a number is prime", + "method": "GET", + "required_parameters": [ + { + "name": "number", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/math/prime\"\nquerystring = {\"number\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/math/prime\"\nquerystring = {\"number\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Error in validating the request is not valid value for number" + } + }, + { + "name": "kda calculator", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kda", + "description": "Calculates a kd (kill + assists death ratio)", + "method": "GET", + "required_parameters": [ + { + "name": "deaths", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "assists", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "kills", + "type": "NUMBER", + "description": "", + "default": "1" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kda\"\nquerystring = {\"deaths\": \"1\", \"assists\": \"\", \"kills\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kda\"\nquerystring = {\"deaths\": \"1\", \"assists\": \"\", \"kills\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Error in validating the request is not valid value for number" + } + }, + { + "name": "kd calculator", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kd", + "description": "Calculates a kd (kill death ratio)", + "method": "GET", + "required_parameters": [ + { + "name": "kills", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "deaths", + "type": "NUMBER", + "description": "", + "default": "1" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kd\"\nquerystring = {\"kills\": \"1\", \"deaths\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kd\"\nquerystring = {\"kills\": \"1\", \"deaths\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": 1 + }, + { + "name": "random uuid", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/random/uuid", + "description": "creates a random uuid v4", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/random/uuid\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/random/uuid\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "get skin from uuid", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/skin/{uuid}", + "description": "gets a skin from a uuid", + "method": "GET", + "required_parameters": [ + { + "name": "uuid", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/skin/{uuid}\"\nquerystring = {\"uuid\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/skin/{uuid}\"\nquerystring = {\"uuid\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "path": "/session/minecraft/profile/{uuid}", + "errorMessage": "Not a valid UUID: {uuid}" + } + }, + { + "name": "uuid to username", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/username/{uuid}", + "description": "turns a uuid into a username", + "method": "GET", + "required_parameters": [ + { + "name": "uuid", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/username/{uuid}\"\nquerystring = {\"uuid\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/username/{uuid}\"\nquerystring = {\"uuid\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "error": "Not Found", + "errorMessage": "The server has not found anything matching the request URI" + } + }, + { + "name": "username to uuid", + "url": "https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/uuid/{username}", + "description": "turns a username into a uuid", + "method": "GET", + "required_parameters": [ + { + "name": "username", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/uuid/{username}\"\nquerystring = {\"username\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/uuid/{username}\"\nquerystring = {\"username\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"teamriverbubbles-random-utilities1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "path": "/users/profiles/minecraft/{username}" + } + } + ], + "standardized_name": "teamriverbubbles_random_utilities" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/teamriverbubbles_random_utilities/api.py b/toolbench/toolenv/tools/Tools/teamriverbubbles_random_utilities/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1e96b6fc0f32ebc7ce21e1de16cce8307f3c3021 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/teamriverbubbles_random_utilities/api.py @@ -0,0 +1,155 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def is_prime(number: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "checks if a number is prime" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/math/prime" + querystring = {'number': number, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def kda_calculator(deaths: int, assists: int, kills: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Calculates a kd (kill + assists death ratio)" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kda" + querystring = {'deaths': deaths, 'assists': assists, 'kills': kills, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def kd_calculator(kills: int, deaths: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Calculates a kd (kill death ratio)" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/vgts/kd" + querystring = {'kills': kills, 'deaths': deaths, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random_uuid(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "creates a random uuid v4" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/random/uuid" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_skin_from_uuid(uuid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "gets a skin from a uuid" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/skin/{uuid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def uuid_to_username(uuid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "turns a uuid into a username" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/username/{uuid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def username_to_uuid(username: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "turns a username into a uuid" + + """ + url = f"https://teamriverbubbles-random-utilities1.p.rapidapi.com/minecraft/uuid/{username}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "teamriverbubbles-random-utilities1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tech4leap_qr_code_api.json b/toolbench/toolenv/tools/Tools/tech4leap_qr_code_api.json new file mode 100644 index 0000000000000000000000000000000000000000..f81a5a4da727ecaa3834c7d6826a233cf279089a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tech4leap_qr_code_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Tech4Leap QR Code API", + "tool_description":"The api takes URL and return QR code image", + "title":"Tech4Leap QR Code API", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/tech4leap/api/tech4leap-qr-code-api/", + "host":"tech4leap-qr-code-api.p.rapidapi.com", + "api_list":[ + { + "name":"QR code image_copy", + "url":"https://tech4leap-qr-code-api.p.rapidapi.com/qr", + "description":"The endpoint takes 'GET ' request with url / string as a parameter and returns qr code image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://tech4leap-qr-code-api.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tech4leap-qr-code-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tech4leap_qr_code_api/api.py b/toolbench/toolenv/tools/Tools/tech4leap_qr_code_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e99aece30fb918483344aeed69c272b4d1dc7385 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tech4leap_qr_code_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The endpoint takes 'GET ' request with url / string as a parameter and returns qr code image" + + """ + url = f"https://tech4leap-qr-code-api.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tech4leap-qr-code-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/temp_email.json b/toolbench/toolenv/tools/Tools/temp_email.json new file mode 100644 index 0000000000000000000000000000000000000000..ac6585db54f8ddd21e2b1f0cd5804fed76695428 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temp_email.json @@ -0,0 +1,232 @@ +{ + "tool_name": "Temp Email", + "tool_description": "The Temp mail API provides users with the ability to generate temporary, disposable email addresses swiftly and securely. This tool is ideal for protecting personal email accounts from spam, testing, signing up for services, and more. With various endpoints offering functionalities like email creation, inbox retrieval, and message extraction, the Temp email API ensures you have full control over your disposable emails. Its integration via RapidAPI guarantees a smooth, quick, and secure develo...", + "title": "Temp Email", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 99, + "avgLatency": 722, + "avgSuccessRate": 58, + "popularityScore": 9.6, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/highfx786/api/temp-email9/", + "host": "temp-email9.p.rapidapi.com", + "api_list": [ + { + "name": "Create Email", + "url": "https://temp-email9.p.rapidapi.com/email/create", + "description": "Generate a unique email", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/create\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Fetch ALL Emails", + "url": "https://temp-email9.p.rapidapi.com/messages/{email_token}", + "description": "Get email messages of the provided Email Token", + "method": "GET", + "required_parameters": [ + { + "name": "email_token", + "type": "string", + "description": "", + "default": "Get email messages of the provided Email Token" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/messages/{email_token}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Delete Email", + "url": "https://temp-email9.p.rapidapi.com/email/delete/{email_token}", + "description": "Delete the current email and create a new one", + "method": "POST", + "required_parameters": [ + { + "name": "email_token", + "type": "string", + "description": "", + "default": "The email token you want to delete" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/delete/{email_token}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "List Domains", + "url": "https://temp-email9.p.rapidapi.com/domains/", + "description": "List of Domains for email", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/domains/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Delete Message", + "url": "https://temp-email9.p.rapidapi.com/message/delete/{message_id}", + "description": "Delete a specific email message by message ID", + "method": "POST", + "required_parameters": [ + { + "name": "message_id", + "type": "string", + "description": "", + "default": "The ID of the message you want to Detele" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/message/delete/{message_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Fetch Message", + "url": "https://temp-email9.p.rapidapi.com/message/{message_id}", + "description": "Get message of the provided message ID", + "method": "GET", + "required_parameters": [ + { + "name": "message_id", + "type": "string", + "description": "", + "default": "The ID of the message you want to fetch" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/message/{message_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Change Email", + "url": "https://temp-email9.p.rapidapi.com/email/change/{email_token}/{username}/{domain}", + "description": "Generate a custom email", + "method": "POST", + "required_parameters": [ + { + "name": "domain", + "type": "string", + "description": "", + "default": "Your custom domain" + }, + { + "name": "email_token", + "type": "string", + "description": "", + "default": "OLD Email you want to Change" + }, + { + "name": "username", + "type": "string", + "description": "", + "default": "Your custom username or email ID" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/change/{email_token}/{username}/{domain}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Create Email", + "url": "https://temp-email9.p.rapidapi.com/email/create", + "description": "Generate a unique email", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/create\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/create\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Delete Email", + "url": "https://temp-email9.p.rapidapi.com/email/delete/The email token you want to delete", + "description": "Delete the current email and create a new one", + "method": "POST", + "required_parameters": [ + { + "name": "email_token", + "type": "string", + "description": "", + "default": "The email token you want to delete" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/delete/The email token you want to delete\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/delete/{email_token}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Delete Message", + "url": "https://temp-email9.p.rapidapi.com/message/delete/The ID of the message you want to Detele", + "description": "Delete a specific email message by message ID", + "method": "POST", + "required_parameters": [ + { + "name": "message_id", + "type": "string", + "description": "", + "default": "The ID of the message you want to Detele" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/message/delete/The ID of the message you want to Detele\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/message/delete/{message_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Change Email", + "url": "https://temp-email9.p.rapidapi.com/email/change/OLD Email you want to Change/Your custom username or email ID/Your custom domain", + "description": "Generate a custom email", + "method": "POST", + "required_parameters": [ + { + "name": "domain", + "type": "string", + "description": "", + "default": "Your custom domain" + }, + { + "name": "email_token", + "type": "string", + "description": "", + "default": "OLD Email you want to Change" + }, + { + "name": "username", + "type": "string", + "description": "", + "default": "Your custom username or email ID" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/change/OLD Email you want to Change/Your custom username or email ID/Your custom domain\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://temp-email9.p.rapidapi.com/email/change/{email_token}/{username}/{domain}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temp-email9.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/temp_email/api.py b/toolbench/toolenv/tools/Tools/temp_email/api.py new file mode 100644 index 0000000000000000000000000000000000000000..27f6a6d2771aa733a6652ef8da98ae4fbdf4a3df --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temp_email/api.py @@ -0,0 +1,71 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def fetch_all_emails(email_token: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get email messages of the provided Email Token" + + """ + url = f"https://temp-email9.p.rapidapi.com/messages/{email_token}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "temp-email9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_domains(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List of Domains for email" + + """ + url = f"https://temp-email9.p.rapidapi.com/domains/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "temp-email9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def fetch_message(message_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get message of the provided message ID" + + """ + url = f"https://temp-email9.p.rapidapi.com/message/{message_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "temp-email9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/temp_mail/api.py b/toolbench/toolenv/tools/Tools/temp_mail/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7bca296c767b5832a4bd04502e40d4d472b4aa7e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temp_mail/api.py @@ -0,0 +1,178 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def delete_message(mail_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Delete message, where mail_id unique identifier assigned by the system." + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/delete/id/{mail_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def source_message(mail_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get message source by mail_id" + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/source/id/{mail_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_message_attachments_legacy(mail_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get message attachments by message id" + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/attachments/id/{mail_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_one_message(mail_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get one message by id" + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/one_mail/id/{mail_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_one_attachment(atid: str, mail_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get one message attachments by message id and attachment id from attachments list. Content response field encoded in base64 RFC 4648." + atid: attachment id from attachments list + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/one_attachment/id/{mail_id}/{atid}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_message_attachments(mail_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get message attachments by message id. Content response field encoded in base64 RFC 4648." + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/atchmnts/id/{mail_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_emails(md5: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Check and get a list of emails for a mailbox" + md5: email address hash + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/mail/id/{md5}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def domains_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get domains list" + + """ + url = f"https://privatix-temp-mail-v1.p.rapidapi.com/request/domains/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "privatix-temp-mail-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/temporary_email.json b/toolbench/toolenv/tools/Tools/temporary_email.json new file mode 100644 index 0000000000000000000000000000000000000000..c48c878ee7be656571ec5a2ea16d99c71aec09ff --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temporary_email.json @@ -0,0 +1,50 @@ +{ + "tool_name":"Temporary Email", + "tool_description":"Temporary Email is a revolutionary service that has made the lives of many people easier. With the increase in the use of email as a primary mode of communication, the problem of spam or unsolicited email has become more prevalent. This unwanted email can be frustrating and time-consuming to sift through, which is why Temporary Email services have gained popularity.\n\nThe fast and easy API for Temporary Email is one such service that enables you to receive email at a temporary address that sel...", + "title":"Temporary Email", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":514, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/Chetan11dev/api/temporary-email4/", + "host":"temporary-email4.p.rapidapi.com", + "api_list":[ + { + "name":"Get Email", + "url":"https://temporary-email4.p.rapidapi.com/backend/emails/get-email/", + "description":"Get Email", + "method":"GET", + "required_parameters":[ + { + "name":"email", + "type":"STRING", + "description":"", + "default":"ram.tripathi@bheps.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://temporary-email4.p.rapidapi.com/backend/emails/get-email/\"\nquerystring = {\"email\": email}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temporary-email4.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Domains list", + "url":"https://temporary-email4.p.rapidapi.com/backend/emails/get-domains/", + "description":"Get domains list", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://temporary-email4.p.rapidapi.com/backend/emails/get-domains/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temporary-email4.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/temporary_email/api.py b/toolbench/toolenv/tools/Tools/temporary_email/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5323dce7d1e5e406d6ce9113bfa4b1e7cfb83dda --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temporary_email/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_email(email: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Email" + + """ + url = f"https://temporary-email4.p.rapidapi.com/backend/emails/get-email/" + querystring = {'email': email, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "temporary-email4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def domains_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get domains list" + + """ + url = f"https://temporary-email4.p.rapidapi.com/backend/emails/get-domains/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "temporary-email4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/temporary_mail_api.json b/toolbench/toolenv/tools/Tools/temporary_mail_api.json new file mode 100644 index 0000000000000000000000000000000000000000..f0c58d8168bda897299052f4c2bb431d6f5e32f2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temporary_mail_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Temporary Mail API", + "tool_description":"This API generates email which is valid for 10 minutes", + "title":"Temporary Mail API", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/owcawaleczna/api/temporary-mail-api/", + "host":"temporary-mail-api.p.rapidapi.com", + "api_list":[ + { + "name":"Temporary Mail generator", + "url":"https://temporary-mail-api.p.rapidapi.com/generate_email", + "description":"This end point takes a 'GET' request and returns generated mail.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"generate_email", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://temporary-mail-api.p.rapidapi.com/generate_email\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"temporary-mail-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/temporary_mail_api/api.py b/toolbench/toolenv/tools/Tools/temporary_mail_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..26db34ef25b0c7007f18f3aa15332fceddd4a651 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/temporary_mail_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def temporary_mail_generator(generate_email: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request and returns generated mail." + + """ + url = f"https://temporary-mail-api.p.rapidapi.com/generate_email" + querystring = {} + if generate_email: + querystring['generate_email'] = generate_email + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "temporary-mail-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/terrode.json b/toolbench/toolenv/tools/Tools/terrode.json new file mode 100644 index 0000000000000000000000000000000000000000..e258bfc7984eff767389067ea866d4ef5ea8b6c9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/terrode.json @@ -0,0 +1,24 @@ +{ + "tool_name":"terrode", + "tool_description":"detect grammar error in a sentence", + "title":"terrode", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/karenlouiserichardson4907/api/terrode/", + "host":"terrode.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://terrode.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://terrode.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"terrode.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/terrode/api.py b/toolbench/toolenv/tools/Tools/terrode/api.py new file mode 100644 index 0000000000000000000000000000000000000000..66e39ad571ed4248f56b35f910b73a471dd30a57 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/terrode/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://terrode.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "terrode.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/test/api.py b/toolbench/toolenv/tools/Tools/test/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e89fd8171f231386054e875da773111b8b742184 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/test/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def bhajans_copy(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "sample bhajan list" + + """ + url = f"https://test2209.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "test2209.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def bhajans(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "sample bhajan list" + + """ + url = f"https://test2209.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "test2209.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/testapi.json b/toolbench/toolenv/tools/Tools/testapi.json new file mode 100644 index 0000000000000000000000000000000000000000..dfac3def5f247fe88f5da39e8832166892ab8d63 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/testapi.json @@ -0,0 +1,24 @@ +{ + "tool_name":"testapi", + "tool_description":"shortdescription", + "title":"testapi", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/dqkwdmqkmdkq/api/testapi571/", + "host":"testapi571.p.rapidapi.com", + "api_list":[ + { + "name":"posts", + "url":"https://testapi571.p.rapidapi.com/posts", + "description":"posts", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://testapi571.p.rapidapi.com/posts\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"testapi571.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/testapi/api.py b/toolbench/toolenv/tools/Tools/testapi/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3382131e4c5e479110b6b351de8618e3a21c0427 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/testapi/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def posts(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "posts" + + """ + url = f"https://testapi571.p.rapidapi.com/posts" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "testapi571.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/testing_pet_store.json b/toolbench/toolenv/tools/Tools/testing_pet_store.json new file mode 100644 index 0000000000000000000000000000000000000000..7536303d7da5a1dc065c1335eb3ddb08b374ae98 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/testing_pet_store.json @@ -0,0 +1,48 @@ +{ + "product_id": "api_ffc92c5d-9211-47aa-abdd-fa74e01eea63", + "tool_description": "Testing a pet store", + "home_url": "https://rapidapi.com/azatakhunov/api/testing-pet-store/", + "name": "Testing PET Store", + "title": "Testing PET Store", + "pricing": "FREE", + "tool_name": "Testing PET Store", + "score": null, + "host": "testing-pet-store.p.rapidapi.com", + "api_list": [ + { + "name": "createPets", + "url": "https://testing-pet-store.p.rapidapi.com/pets", + "description": "Create a pet", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://testing-pet-store.p.rapidapi.com/pets\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"testing-pet-store.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://testing-pet-store.p.rapidapi.com/pets\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"testing-pet-store.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 201, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/testing_pet_store/api.py b/toolbench/toolenv/tools/Tools/testing_pet_store/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ce73e34e0c38dd1c06b1d6c1ef8ae3e0c0576308 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/testing_pet_store/api.py @@ -0,0 +1,54 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def showpetbyid(petid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Info for a specific pet" + petid: The id of the pet to retrieve + + """ + url = f"https://testing-pet-store.p.rapidapi.com/pets/{petid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "testing-pet-store.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listpets(limit: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List all pets" + limit: How many items to return at one time (max 100) + + """ + url = f"https://testing-pet-store.p.rapidapi.com/pets" + querystring = {} + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "testing-pet-store.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text2image.json b/toolbench/toolenv/tools/Tools/text2image.json new file mode 100644 index 0000000000000000000000000000000000000000..2a86ad1304d2a0a7f09cf4f26b3a4aeecb893762 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text2image.json @@ -0,0 +1,56 @@ +{ + "tool_name":"Text2Image", + "tool_description":"Generate images using SOTA text 2 image model.", + "title":"Text2Image", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":4357, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/LoveAI/api/text2image6/", + "host":"text2image6.p.rapidapi.com", + "api_list":[ + { + "name":"text to image", + "url":"https://text2image6.p.rapidapi.com/text2image", + "description":"Generate image using input text.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"Daring treasure hunter, map and compass, standing in desolate desert, adventurous, detailed, high detail, portrait" + } + ], + "optional_parameters":[ + { + "name":"style", + "type":"STRING", + "description":"preset style, should be in this list:\n'3d-model',\n 'analog-film',\n 'anime',\n 'cinematic',\n 'comic-book',\n 'digital-art',\n 'enhance',\n 'fantasy-art',\n 'isometric',\n 'line-art',\n 'low-poly',\n 'modeling-compound',\n 'neon-punk',\n 'origami',\n 'photographic',\n 'pixel-art',\n 'tile-texture',", + "default":"enhance" + } + ], + "code":"import requests\n\nurl = \"https://text2image6.p.rapidapi.com/text2image\"\nquerystring = {\"style\": style, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text2image6.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":"ok", + "url":"https://ai-image-result.s3.amazonaws.com/2023-05-18/1684400259776.png" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"93", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 18 May 2023 08:57:43 GMT", + "server":"RapidAPI-1.2.8", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text2image/api.py b/toolbench/toolenv/tools/Tools/text2image/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e81b4de7e7a80cfd93a7e29192b8f6b36282f2b1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text2image/api.py @@ -0,0 +1,49 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def text_to_image(text: str, style: str='enhance', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate image using input text." + style: preset style, should be in this list: +'3d-model', + 'analog-film', + 'anime', + 'cinematic', + 'comic-book', + 'digital-art', + 'enhance', + 'fantasy-art', + 'isometric', + 'line-art', + 'low-poly', + 'modeling-compound', + 'neon-punk', + 'origami', + 'photographic', + 'pixel-art', + 'tile-texture', + + """ + url = f"https://text2image6.p.rapidapi.com/text2image" + querystring = {'text': text, } + if style: + querystring['style'] = style + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text2image6.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_sentiment_analysis_method.json b/toolbench/toolenv/tools/Tools/text_sentiment_analysis_method.json new file mode 100644 index 0000000000000000000000000000000000000000..7a8c049b3b7e26c5c00fd9e150964e882209e676 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_sentiment_analysis_method.json @@ -0,0 +1,39 @@ +{ + "product_id": "53aa6093e4b008bb2ef87979", + "tool_description": "Analysing text sentiment by passing text or paragraphs, in single line or multiple lines, and get back with the sentiment analysis report, to get how many of lines be analysed, how many positive, negative, middle sentiment for the lines of text.", + "home_url": "https://rapidapi.com/fyhao/api/text-sentiment-analysis-method/", + "name": "Text Sentiment Analysis Method", + "title": "Text Sentiment Analysis Method", + "pricing": "FREEMIUM", + "tool_name": "Text Sentiment Analysis Method", + "score": { + "avgServiceLevel": 100, + "avgLatency": 437, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "text-sentiment.p.rapidapi.com", + "api_list": [ + { + "name": "analyze", + "url": "https://text-sentiment.p.rapidapi.com/analyze", + "description": "Analyze the sentiment of a text by passing in a text or paragraphs.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "The text or paragraphs want to analyze.", + "default": "I am not really happy" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-sentiment.p.rapidapi.com/analyze\"\nquerystring = {\"text\": \"I am not really happy\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-sentiment.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-sentiment.p.rapidapi.com/analyze\"\nquerystring = {\"text\": \"I am not really happy\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-sentiment.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_sentiment_api.json b/toolbench/toolenv/tools/Tools/text_sentiment_api.json new file mode 100644 index 0000000000000000000000000000000000000000..d6a9dfbea8f0b6da67ae9f17d3cb4cbe2a48197b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_sentiment_api.json @@ -0,0 +1,57 @@ +{ + "product_id": "api_32079a0d-acd3-4406-af7c-8ecffcbf6dc5", + "tool_description": "An API that returns the sentiment and subjectivity of a given text in JSON", + "home_url": "https://rapidapi.com/yavuzuragun/api/text-sentiment-api2/", + "name": "Text Sentiment API", + "title": "Text Sentiment API", + "pricing": "FREEMIUM", + "tool_name": "Text Sentiment API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 11240, + "avgSuccessRate": 100, + "popularityScore": 7, + "__typename": "Score" + }, + "host": "text-sentiment-api2.p.rapidapi.com", + "api_list": [ + { + "name": "Sentiment Analysis", + "url": "https://text-sentiment-api2.p.rapidapi.com/sentiment", + "description": "This endpoint takes a GET request with a string as a parameter and returns the sentiment scores (polarity and subjectivity) of the text as well as the 'Full Text', 'Language', 'Entities', 'Keywords', 'Sentiment Label' and 'Subjectivity Label'.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Renewable energy in Australia is a growing industry which is good" + } + ], + "code": "import requests\n\nurl = \"https://text-sentiment-api2.p.rapidapi.com/sentiment\"\nquerystring = {\"text\": \"Renewable energy in Australia is a growing industry which is good\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-sentiment-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-sentiment-api2.p.rapidapi.com/sentiment\"\nquerystring = {\"text\": \"Renewable energy in Australia is a growing industry which is good\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-sentiment-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "Entities": [ + { + "label": "GPE", + "text": "Australia" + } + ], + "Full Text": "Renewable energy in Australia is a growing industry which is good", + "Keywords": [ + "renewable energy", + "growing industry", + "good", + "australia" + ], + "Language": "en", + "Sentiment": "Very Positive", + "Sentiment Score": 0.7, + "Subjectivity": "Subjective", + "Subjectivity Score": 0.6 + } + } + ], + "standardized_name": "text_sentiment_api" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_sentiment_api/api.py b/toolbench/toolenv/tools/Tools/text_sentiment_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..01c2b2966e0b9c673f20f3c441e07160ba57640b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_sentiment_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def sentiment_analysis(text: str='Renewable energy in Australia is a growing industry which is good', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a GET request with a string as a parameter and returns the sentiment scores (polarity and subjectivity) of the text as well as the 'Full Text', 'Language', 'Entities', 'Keywords', 'Sentiment Label' and 'Subjectivity Label'." + + """ + url = f"https://text-sentiment-api2.p.rapidapi.com/sentiment" + querystring = {} + if text: + querystring['text'] = text + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-sentiment-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_to_anything.json b/toolbench/toolenv/tools/Tools/text_to_anything.json new file mode 100644 index 0000000000000000000000000000000000000000..2893b8e45f4a47fdc56329b1b284cfc4012f076f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_anything.json @@ -0,0 +1,106 @@ +{ + "tool_name": "Text to anything", + "tool_description": "This API will turn the provided text into QRcodes, barcodes, images or PDF`s.", + "title": "Text to anything", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/Attacler/api/text-to-anything/", + "host": "text-to-anything.p.rapidapi.com", + "api_list": [ + { + "name": "Generate PDF", + "url": "https://text-to-anything.p.rapidapi.com/generatePDF", + "description": "Generate PDF files based on the HTML send.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-anything.p.rapidapi.com/generatePDF\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-anything.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Generate Barcode", + "url": "https://text-to-anything.p.rapidapi.com/generateBarcode", + "description": "Generate a barcode based on the given parameters", + "method": "GET", + "required_parameters": [ + { + "name": "content", + "type": "STRING", + "description": "", + "default": "0123456789" + } + ], + "optional_parameters": [ + { + "name": "includetext", + "type": "BOOLEAN", + "description": "", + "default": "true" + }, + { + "name": "scale", + "type": "NUMBER", + "description": "", + "default": "3" + }, + { + "name": "height", + "type": "NUMBER", + "description": "", + "default": "10" + }, + { + "name": "type", + "type": "STRING", + "description": "Defaults to code128", + "default": "code128" + }, + { + "name": "getTypes", + "type": "BOOLEAN", + "description": "Indicates whether to return all types available.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://text-to-anything.p.rapidapi.com/generateBarcode\"\nquerystring = {\"includetext\": includetext, \"scale\": scale, \"height\": height, \"type\": type, \"content\": content}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-anything.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Generate QRcode", + "url": "https://text-to-anything.p.rapidapi.com/generateQR", + "description": "Generate a QRcode based on the given parameters", + "method": "GET", + "required_parameters": [ + { + "name": "content", + "type": "STRING", + "description": "", + "default": "https://google.nl" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-anything.p.rapidapi.com/generateQR\"\nquerystring = {\"content\": content}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-anything.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Generate PDF", + "url": "https://text-to-anything.p.rapidapi.com/generatePDF", + "description": "Generate PDF files based on the HTML send.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-anything.p.rapidapi.com/generatePDF\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-anything.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-anything.p.rapidapi.com/generatePDF\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-anything.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_anything/api.py b/toolbench/toolenv/tools/Tools/text_to_anything/api.py new file mode 100644 index 0000000000000000000000000000000000000000..08135d667a6985d35fd93e298ccdb18858f0c4c1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_anything/api.py @@ -0,0 +1,62 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_barcode(content: str, includetext: bool=None, scale: int=3, height: int=10, type: str='code128', gettypes: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a barcode based on the given parameters" + type: Defaults to code128 + gettypes: Indicates whether to return all types available. + + """ + url = f"https://text-to-anything.p.rapidapi.com/generatebarcode" + querystring = {'content': content, } + if includetext: + querystring['includetext'] = includetext + if scale: + querystring['scale'] = scale + if height: + querystring['height'] = height + if type: + querystring['type'] = type + if gettypes: + querystring['getTypes'] = gettypes + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-to-anything.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def generate_qrcode(content: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a QRcode based on the given parameters" + + """ + url = f"https://text-to-anything.p.rapidapi.com/generateqr" + querystring = {'content': content, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-to-anything.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_to_qrcode.json b/toolbench/toolenv/tools/Tools/text_to_qrcode.json new file mode 100644 index 0000000000000000000000000000000000000000..1fdcf779d676981830da2b00b82be37eed804e4b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_qrcode.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_7bc226ae-ad73-4baf-8b19-ea2542212ff6", + "tool_description": "A simple yet fast QR code generator. It simpy asks for text and it will convert to QR code.", + "home_url": "https://rapidapi.com/ejlungay/api/text-to-qrcode/", + "name": "Text to QRCODE", + "title": "Text to QRCODE", + "pricing": "PAID", + "tool_name": "Text to QRCODE", + "score": null, + "host": "text-to-qrcode.p.rapidapi.com", + "api_list": [ + { + "name": "text to qr", + "url": "https://text-to-qrcode.p.rapidapi.com/qrcode-converter", + "description": "Converts text to qr code", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-qrcode.p.rapidapi.com/qrcode-converter\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-qrcode.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-qrcode.p.rapidapi.com/qrcode-converter\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-qrcode.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speach_api.json b/toolbench/toolenv/tools/Tools/text_to_speach_api.json new file mode 100644 index 0000000000000000000000000000000000000000..2d1a4b32d35eacfcf1056799f79431b033079026 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speach_api.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_b39901be-b36b-4cd8-a30d-5966e893e577", + "tool_description": "The Text-to-Speech API is a powerful tool that converts written text into natural-sounding speech, allowing applications and devices to communicate with users through spoken language.", + "home_url": "https://rapidapi.com/elisbushaj2/api/text-to-speach-api/", + "name": "Text To Speach API", + "title": "Text To Speach API", + "pricing": "FREEMIUM", + "tool_name": "Text To Speach API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 241, + "avgSuccessRate": 100, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "text-to-speach-api.p.rapidapi.com", + "api_list": [ + { + "name": "Text To Speech", + "url": "https://text-to-speach-api.p.rapidapi.com/text-to-speech", + "description": "The \"Text-to-Speech\" endpoint enables users to convert textual input into high-quality, human-like speech, facilitating seamless integration of spoken content into applications, devices, or services.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-speach-api.p.rapidapi.com/text-to-speech\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speach-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-speach-api.p.rapidapi.com/text-to-speech\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speach-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speech.json b/toolbench/toolenv/tools/Tools/text_to_speech.json new file mode 100644 index 0000000000000000000000000000000000000000..93a5f4243205db3b64427a7729405c23f416895b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech.json @@ -0,0 +1,108 @@ +{ + "product_id": "api_a319bf58-67ac-4675-bb4a-7a8250cdd6b8", + "tool_description": "A text to speech endpoint to steam output", + "home_url": "https://rapidapi.com/kelvin2go/api/text-to-speech27/", + "name": "Text to speech", + "title": "Text to speech", + "pricing": "FREEMIUM", + "tool_name": "Text to speech", + "score": { + "avgServiceLevel": 97, + "avgLatency": 286, + "avgSuccessRate": 96, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "text-to-speech27.p.rapidapi.com", + "api_list": [ + { + "name": "get language", + "url": "https://text-to-speech27.p.rapidapi.com/speech/lang", + "description": "get list of available language for text to speech", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-speech27.p.rapidapi.com/speech/lang\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech27.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-speech27.p.rapidapi.com/speech/lang\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech27.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "af": "Afrikaans", + "sq": "Albanian", + "ar": "Arabic", + "hy": "Armenian", + "ca": "Catalan", + "zh": "Chinese", + "zh-cn": "Chinese (Mandarin/China)", + "zh-tw": "Chinese (Mandarin/Taiwan)", + "zh-yue": "Chinese (Cantonese)", + "hr": "Croatian", + "cs": "Czech", + "da": "Danish", + "nl": "Dutch", + "en": "English", + "en-au": "English (Australia)", + "en-uk": "English (United Kingdom)", + "en-us": "English (United States)", + "eo": "Esperanto", + "fi": "Finnish", + "fr": "French", + "de": "German", + "el": "Greek", + "ht": "Haitian Creole", + "hi": "Hindi", + "hu": "Hungarian", + "is": "Icelandic", + "id": "Indonesian", + "it": "Italian", + "ja": "Japanese", + "ko": "Korean", + "la": "Latin", + "lv": "Latvian", + "mk": "Macedonian", + "no": "Norwegian", + "pl": "Polish", + "pt": "Portuguese", + "pt-br": "Portuguese (Brazil)", + "ro": "Romanian", + "ru": "Russian", + "sr": "Serbian", + "sk": "Slovak", + "es": "Spanish", + "es-es": "Spanish (Spain)", + "es-us": "Spanish (United States)", + "sw": "Swahili", + "sv": "Swedish", + "ta": "Tamil", + "th": "Thai", + "tr": "Turkish", + "vi": "Vietnamese", + "cy": "Welsh" + } + }, + { + "name": "send text to speech stream", + "url": "https://text-to-speech27.p.rapidapi.com/speech", + "description": "text to speech \n\ntext = the text you want to speak\n\nlanguage = default en , get the list of supported language for get /tts/speech/lang\n\n\n```\nconsole.log(response);\n audio.pause();\n audio.src = URL.createObjectURL(response.data);\n audio.play();\n\n```", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "hello world" + } + ], + "optional_parameters": [ + { + "name": "lang", + "type": "STRING", + "description": "default is en-us\nlist can be get by /speech/lang\n\ne.g. zh-tw", + "default": "en-us" + } + ], + "code": "import requests\n\nurl = \"https://text-to-speech27.p.rapidapi.com/speech\"\nquerystring = {\"text\": \"hello world\", \"lang\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech27.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-speech27.p.rapidapi.com/speech\"\nquerystring = {\"text\": \"hello world\", \"lang\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech27.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "text_to_speech" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speech/api.py b/toolbench/toolenv/tools/Tools/text_to_speech/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a6ae6ecf33e6f127920de4968f2eab69aa68ce9a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech/api.py @@ -0,0 +1,69 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_language(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "get list of available language for text to speech" + + """ + url = f"https://text-to-speech27.p.rapidapi.com/speech/lang" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-to-speech27.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def send_text_to_speech_stream(text: str, lang: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "text to speech + + text = the text you want to speak + + language = default en , get the list of supported language for get /tts/speech/lang + + + ``` + console.log(response); + audio.pause(); + audio.src = URL.createObjectURL(response.data); + audio.play(); + + ```" + lang: default is en-us +list can be get by /speech/lang + +e.g. zh-tw + + """ + url = f"https://text-to-speech27.p.rapidapi.com/speech" + querystring = {'text': text, } + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-to-speech27.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_to_speech_api.json b/toolbench/toolenv/tools/Tools/text_to_speech_api.json new file mode 100644 index 0000000000000000000000000000000000000000..787f8aa0afcee72d8d76f84755747f32fbcf3ea1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech_api.json @@ -0,0 +1,44 @@ +{ + "tool_name":"Text To Speech API", + "tool_description":"This API takes text and languages code and return speech voice", + "title":"Text To Speech API", + "pricing":"FREE", + "score":{ + "avgServiceLevel":94, + "avgLatency":3637, + "avgSuccessRate":92, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/mallailqadrillah43/api/text-to-speech-api3/", + "host":"text-to-speech-api3.p.rapidapi.com", + "api_list":[ + { + "name":"TTS", + "url":"https://text-to-speech-api3.p.rapidapi.com/speak", + "description":"takes text & languages code and returns as **.mp3** format", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"hello world!" + } + ], + "optional_parameters":[ + { + "name":"lang", + "type":"STRING", + "description":"", + "default":"en" + } + ], + "code":"import requests\n\nurl = \"https://text-to-speech-api3.p.rapidapi.com/speak\"\nquerystring = {\"text\": text, \"lang\": lang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech-api3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speech_api/api.py b/toolbench/toolenv/tools/Tools/text_to_speech_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..865bd54844f4d2aeb4eddcf6925e6d56871cbca5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def tts(text: str, lang: str='en', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "takes text & languages code and returns as **.mp3** format" + + """ + url = f"https://text-to-speech-api3.p.rapidapi.com/speak" + querystring = {'text': text, } + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-to-speech-api3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_to_speech_urdu.json b/toolbench/toolenv/tools/Tools/text_to_speech_urdu.json new file mode 100644 index 0000000000000000000000000000000000000000..33d141ebb533b246ad3d87a315ddb92c210e7473 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech_urdu.json @@ -0,0 +1,48 @@ +{ + "product_id": "api_506d906c-22a8-4cea-b800-4a53fe74d96f", + "tool_description": "Text to Speech Urdu specially designed for Urdu language.", + "home_url": "https://rapidapi.com/devstar/api/text-to-speech-urdu2/", + "name": "Text to Speech Urdu", + "title": "Text to Speech Urdu", + "pricing": "FREEMIUM", + "tool_name": "Text to Speech Urdu", + "score": null, + "host": "text-to-speech-urdu2.p.rapidapi.com", + "api_list": [ + { + "name": "Generate Audio", + "url": "https://text-to-speech-urdu2.p.rapidapi.com/api/texttospeech/generate", + "description": "This endpoint is used to generate audio request from the provided text data....", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-speech-urdu2.p.rapidapi.com/api/texttospeech/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech-urdu2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-speech-urdu2.p.rapidapi.com/api/texttospeech/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech-urdu2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speech_us_accent.json b/toolbench/toolenv/tools/Tools/text_to_speech_us_accent.json new file mode 100644 index 0000000000000000000000000000000000000000..4e687e73b2c0b7fce4f534c62b22de156db7442c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech_us_accent.json @@ -0,0 +1,48 @@ +{ + "product_id": "api_aa68536b-ee68-435a-a3d8-dea24bc957d6", + "tool_description": "Text to Speech specially designed for US accent...", + "home_url": "https://rapidapi.com/devstar/api/text-to-speech-us-accent1/", + "name": "Text to Speech - US Accent", + "title": "Text to Speech - US Accent", + "pricing": "FREEMIUM", + "tool_name": "Text to Speech - US Accent", + "score": null, + "host": "text-to-speech-us-accent1.p.rapidapi.com", + "api_list": [ + { + "name": "Generate Audio", + "url": "https://text-to-speech-us-accent1.p.rapidapi.com/api/texttospeech/generateenglish", + "description": "This endpoint is used to generate audio request from the provided text data....", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-speech-us-accent1.p.rapidapi.com/api/texttospeech/generateenglish\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech-us-accent1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-speech-us-accent1.p.rapidapi.com/api/texttospeech/generateenglish\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech-us-accent1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speech_v2.json b/toolbench/toolenv/tools/Tools/text_to_speech_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..7cfe93ee44f00e5c6a80a5adb7af7acdff5adfd2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech_v2.json @@ -0,0 +1,57 @@ +{ + "product_id": "api_f6b83a13-e594-4d0f-a7b4-2588ba80056f", + "tool_description": "Text to Speech Voice Reader", + "home_url": "https://rapidapi.com/herosAPI/api/text-to-speech48/", + "name": "Text to Speech_v2", + "title": "Text to Speech", + "pricing": "FREEMIUM", + "tool_name": "Text to Speech_v2", + "score": { + "avgServiceLevel": 98, + "avgLatency": 143, + "avgSuccessRate": 91, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "text-to-speech48.p.rapidapi.com", + "api_list": [ + { + "name": "Text to Speech", + "url": "https://text-to-speech48.p.rapidapi.com/synthesize", + "description": "Text to Speech Voice Reader", + "method": "GET", + "required_parameters": [ + { + "name": "lang", + "type": "STRING", + "description": "Speech Language", + "default": "en" + } + ], + "optional_parameters": [ + { + "name": "speed", + "type": "STRING", + "description": "between `0.1` and `1.0`", + "default": "0.5" + }, + { + "name": "text", + "type": "STRING", + "description": "Text", + "default": "How are you?" + }, + { + "name": "ssml", + "type": "STRING", + "description": "SSML\n\n*At least one of the `text` or `ssml` parameters is required.*", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://text-to-speech48.p.rapidapi.com/synthesize\"\nquerystring = {\"speed\": \"0.5\", \"text\": \"How are you?\", \"ssml\": \"\", \"lang\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech48.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-speech48.p.rapidapi.com/synthesize\"\nquerystring = {\"speed\": \"0.5\", \"text\": \"How are you?\", \"ssml\": \"\", \"lang\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-speech48.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "text_to_speech_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_to_speech_v2/api.py b/toolbench/toolenv/tools/Tools/text_to_speech_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..209f1d3630fec86ba73f74190db707c633c0b79a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_to_speech_v2/api.py @@ -0,0 +1,41 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def text_to_speech(lang: str, speed: str='0.5', text: str='How are you?', ssml: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Text to Speech Voice Reader" + lang: Speech Language + speed: between `0.1` and `1.0` + text: Text + ssml: SSML + +*At least one of the `text` or `ssml` parameters is required.* + + """ + url = f"https://text-to-speech48.p.rapidapi.com/synthesize" + querystring = {'lang': lang, } + if speed: + querystring['speed'] = speed + if text: + querystring['text'] = text + if ssml: + querystring['ssml'] = ssml + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-to-speech48.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_tools/api.py b/toolbench/toolenv/tools/Tools/text_tools/api.py new file mode 100644 index 0000000000000000000000000000000000000000..eca33467bf115a70e38cd68f09f510f70d69b648 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_tools/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_encodings(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List encodings supported for encoding conversion" + + """ + url = f"https://text.p.rapidapi.com/list_encodings" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_translate.json b/toolbench/toolenv/tools/Tools/text_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..ae5293a0db9d2fa5232797c677b22c44ba697d25 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_translate.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Text Translate", + "tool_description":"Our Translate API allows developers to easily integrate language translation functionality into their applications. With support for over 100 languages, our API can quickly and accurately translate text, making it perfect for a wide range of use cases, from e-commerce and customer service to language learning and localization. Our API is easy to use and requires no additional software or libraries to be installed. Simply send a request to our API endpoint with the text and target language, an...", + "title":"Text Translate", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/mrjester016/api/text-translate4/", + "host":"text-translate4.p.rapidapi.com", + "api_list":[ + { + "name":"translate", + "url":"https://text-translate4.p.rapidapi.com/translate", + "description":"text = \"text that you want to translate\"\nlang=\"language\"", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"lang", + "type":"STRING", + "description":"", + "default":"ja" + }, + { + "name":"text", + "type":"STRING", + "description":"", + "default":"hello" + } + ], + "code":"import requests\n\nurl = \"https://text-translate4.p.rapidapi.com/translate\"\nquerystring = {\"lang\": lang, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translate4.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/text_translate/api.py b/toolbench/toolenv/tools/Tools/text_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..247c118bc23dfa2ca0b39dee21d477195638eba0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_translate/api.py @@ -0,0 +1,34 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(lang: str='ja', text: str='hello', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "text = "text that you want to translate" + lang="language"" + + """ + url = f"https://text-translate4.p.rapidapi.com/translate" + querystring = {} + if lang: + querystring['lang'] = lang + if text: + querystring['text'] = text + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-translate4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/text_width.json b/toolbench/toolenv/tools/Tools/text_width.json new file mode 100644 index 0000000000000000000000000000000000000000..b626bac89665a63afa83461431d938c60a0e32fa --- /dev/null +++ b/toolbench/toolenv/tools/Tools/text_width.json @@ -0,0 +1,394 @@ +{ + "product_id": "api_963a4a09-7d58-4488-a77f-12ab7e44aab8", + "tool_description": "Measure the width of a string or split a string into multiple lines given a max line length.", + "home_url": "https://rapidapi.com/softwarepinguin/api/text-width/", + "name": "Text Width", + "title": "Text Width", + "pricing": "FREEMIUM", + "tool_name": "Text Width", + "score": { + "avgServiceLevel": 100, + "avgLatency": 45, + "avgSuccessRate": 100, + "popularityScore": 8.7, + "__typename": "Score" + }, + "host": "text-width.p.rapidapi.com", + "api_list": [ + { + "name": "Split Text into Multiple Lines (bulk)", + "url": "https://text-width.p.rapidapi.com/split-lines/bulk", + "description": "Split many texts (bulk) into multiple lines with a maximum length (in px). Words longer than the maximum line length are not split.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/split-lines/bulk\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/split-lines/bulk\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "description": "", + "x-examples": { + "example-1": { + "texts": [ + { + "id": "1", + "lines": [ + "Loremt,", + "ipsum", + "eeeedhholor", + "swdu u uuuit", + "ammet" + ] + }, + { + "lines": [ + "hello world" + ] + } + ], + "fontFamily": "Poppins", + "fontSize": 12, + "maxLineWidth": 80 + } + }, + "allOf": [ + { + "title": "BaseRequest", + "type": "object", + "properties": { + "fontFamily": { + "type": "string", + "enum": [ + "Alex Brush", + "Arial", + "Calibri", + "Cambria", + "Franklin Gothic Book", + "Garamond", + "Lato", + "Mohave", + "Montserrat", + "Noto Sans", + "Open Sans", + "Oswald", + "Poppins", + "Raleway", + "Roboto Mono", + "Roboto", + "Rockwell", + "Times New Roman", + "Ubuntu", + "Verdana" + ] + }, + "fontSize": { + "type": "integer", + "minimum": 6, + "maximum": 40 + } + }, + "required": [ + "fontFamily", + "fontSize" + ] + }, + { + "type": "object", + "properties": { + "maxLineWidth": { + "type": "number" + }, + "texts": { + "type": "array", + "uniqueItems": false, + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "lines": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "lines" + ] + } + } + }, + "required": [ + "maxLineWidth", + "texts" + ] + } + ] + } + }, + { + "name": "Split Text into Multiple Lines", + "url": "https://text-width.p.rapidapi.com/split-lines", + "description": "Split text into multiple lines with a maximum length (in px). Words longer than the maximum line length are not split.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/split-lines\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/split-lines\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "description": "", + "x-examples": { + "example-1": { + "lines": [ + "Lorem ipsum", + "dolor sit amet" + ], + "fontFamily": "Arial", + "fontSize": 12 + } + }, + "allOf": [ + { + "title": "BaseRequest", + "type": "object", + "properties": { + "fontFamily": { + "type": "string", + "enum": [ + "Alex Brush", + "Arial", + "Calibri", + "Cambria", + "Franklin Gothic Book", + "Garamond", + "Lato", + "Mohave", + "Montserrat", + "Noto Sans", + "Open Sans", + "Oswald", + "Poppins", + "Raleway", + "Roboto Mono", + "Roboto", + "Rockwell", + "Times New Roman", + "Ubuntu", + "Verdana" + ] + }, + "fontSize": { + "type": "integer", + "minimum": 6, + "maximum": 40 + } + }, + "required": [ + "fontFamily", + "fontSize" + ] + }, + { + "type": "object", + "properties": { + "lines": { + "type": "array", + "description": "each line will contain at least one word", + "items": { + "type": "string" + } + } + }, + "required": [ + "lines" + ] + } + ] + } + }, + { + "name": "Measure Text Width", + "url": "https://text-width.p.rapidapi.com/text-width", + "description": "Measure the length of a given text in pixels.\n\nThe text width is based on measurements in Google Chrome (desktop). The deviation is between 0.3 and 1.7 pixels per 1000 pixels of text (about 200 characters) if the text is not measured in Google Chrome (e.g. Firefox or on mobile). Since browsers like vivaldi or edge use the same rendering engine as google chrome, the text widths are the same. The difference between google chrome desktop and mobile is 1.7 pixels per 1000 pixels of normal text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/text-width\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/text-width\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "description": "", + "x-examples": { + "example-1": { + "width": 144.722, + "fontFamily": "Arial", + "fontSize": 12 + } + }, + "allOf": [ + { + "title": "BaseRequest", + "type": "object", + "properties": { + "fontFamily": { + "type": "string", + "enum": [ + "Alex Brush", + "Arial", + "Calibri", + "Cambria", + "Franklin Gothic Book", + "Garamond", + "Lato", + "Mohave", + "Montserrat", + "Noto Sans", + "Open Sans", + "Oswald", + "Poppins", + "Raleway", + "Roboto Mono", + "Roboto", + "Rockwell", + "Times New Roman", + "Ubuntu", + "Verdana" + ] + }, + "fontSize": { + "type": "integer", + "minimum": 6, + "maximum": 40 + } + }, + "required": [ + "fontFamily", + "fontSize" + ] + }, + { + "type": "object", + "properties": { + "width": { + "type": "number", + "minimum": 0, + "multipleOf": 0.001 + } + }, + "required": [ + "width" + ] + } + ] + } + }, + { + "name": "Measure Text Width (bulk)", + "url": "https://text-width.p.rapidapi.com/text-width/bulk", + "description": "Measure the length of many texts (bulk) in pixels.\n\nThe text width is based on measurements in Google Chrome (desktop). The deviation is between 0.3 and 1.7 pixels per 1000 pixels of text (about 200 characters) if the text is not measured in Google Chrome (e.g. Firefox or on mobile). Since browsers like vivaldi or edge use the same rendering engine as google chrome, the text widths are the same. The difference between google chrome desktop and mobile is 1.7 pixels per 1000 pixels of normal text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/text-width/bulk\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-width.p.rapidapi.com/text-width/bulk\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-width.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "description": "", + "x-examples": { + "example-1": { + "widths": [ + { + "id": "1", + "width": 144.722 + }, + { + "width": 57.364 + } + ], + "fontFamily": "Arial", + "fontSize": 12 + } + }, + "allOf": [ + { + "title": "BaseRequest", + "type": "object", + "properties": { + "fontFamily": { + "type": "string", + "enum": [ + "Alex Brush", + "Arial", + "Calibri", + "Cambria", + "Franklin Gothic Book", + "Garamond", + "Lato", + "Mohave", + "Montserrat", + "Noto Sans", + "Open Sans", + "Oswald", + "Poppins", + "Raleway", + "Roboto Mono", + "Roboto", + "Rockwell", + "Times New Roman", + "Ubuntu", + "Verdana" + ] + }, + "fontSize": { + "type": "integer", + "minimum": 6, + "maximum": 40 + } + }, + "required": [ + "fontFamily", + "fontSize" + ] + }, + { + "type": "object", + "properties": { + "widths": { + "type": "array", + "uniqueItems": false, + "description": "the order inside this array is the same like in \"texts\" of the request", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "width": { + "type": "number", + "minimum": 0, + "multipleOf": 0.001 + } + }, + "required": [ + "width" + ] + } + } + }, + "required": [ + "widths" + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/textanalysis.json b/toolbench/toolenv/tools/Tools/textanalysis.json new file mode 100644 index 0000000000000000000000000000000000000000..f24a2044f19e68068e72c6f753f1430bd148625c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/textanalysis.json @@ -0,0 +1,846 @@ +{ + "product_id": "53aa5d96e4b00287471a2969", + "tool_description": "TextAnalysis API provides customized Text Analysis,Text Mining and Text Processing Services like Text Summarization, Language Detection, Text Classification, Sentiment Analysis, Word Tokenize, Part-of-Speech(POS) Tagging, Named Entity Recognition(NER), Stemmer, Lemmatizer, Chunker, Parser, Key Phrase Extraction(Noun Phrase Extraction), Sentence Segmentation(Sentence Boundary Detection), Grammar Checker and other Text Analysis Tasks. It stands on the giant shoulders of NLP Tools, such as NLTK...", + "home_url": "https://rapidapi.com/textanalysis/api/textanalysis/", + "name": "TextAnalysis", + "title": "TextAnalysis", + "pricing": "FREEMIUM", + "tool_name": "TextAnalysis", + "score": { + "avgServiceLevel": 100, + "avgLatency": 322, + "avgSuccessRate": 100, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "textanalysis.p.rapidapi.com", + "api_list": [ + { + "name": "MBSP POS Tagging", + "url": "https://textanalysis.p.rapidapi.com/mbsp-pos-tagging", + "description": "POS Tagging by MBSP", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by MBSP POS Tagger", + "default": "This is english pos tagger test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "MBSP Parse", + "url": "https://textanalysis.p.rapidapi.com/mbsp-parse", + "description": "Parse by MBSP", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by MBSP Parser", + "default": "This is english parser test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-parse\"\nquerystring = {\"text\": \"This is english parser test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-parse\"\nquerystring = {\"text\": \"This is english parser test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "MBSP Word Lemmatize", + "url": "https://textanalysis.p.rapidapi.com/mbsp-word-lemmatize", + "description": "Word Lemmatize by MBSP", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be lemmatized by MBSP Word Lemmatizer", + "default": "this is word lemmatize test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-word-lemmatize\"\nquerystring = {\"text\": \"this is word lemmatize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-word-lemmatize\"\nquerystring = {\"text\": \"this is word lemmatize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "MBSP Word Tokenize", + "url": "https://textanalysis.p.rapidapi.com/mbsp-word-tokenize", + "description": "Word Tokenize by MBSP", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by MBSP Word Tokenize", + "default": "this's english word tokenize test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-word-tokenize\"\nquerystring = {\"text\": \"this's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-word-tokenize\"\nquerystring = {\"text\": \"this's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "MBSP Chunk", + "url": "https://textanalysis.p.rapidapi.com/mbsp-chunk", + "description": "Chunk by MBSP", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by MBSP Chunker", + "default": "this is english chunk test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-chunk\"\nquerystring = {\"text\": \"this is english chunk test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/mbsp-chunk\"\nquerystring = {\"text\": \"this is english chunk test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Pos Tagging", + "url": "https://textanalysis.p.rapidapi.com/nltk-pos-tagging", + "description": "Pos Tagging by NLTK", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by NLTK POS Tagger", + "default": "This is english pos tagger test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Porter Stemmer", + "url": "https://textanalysis.p.rapidapi.com/nltk-porter-stemmer", + "description": "Porter Stemmer by NLTK", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by NLTK Porter Stemmer", + "default": "this is english stemming test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-porter-stemmer\"\nquerystring = {\"text\": \"this is english stemming test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-porter-stemmer\"\nquerystring = {\"text\": \"this is english stemming test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "LangId Language Detection", + "url": "https://textanalysis.p.rapidapi.com/langid-language-detection", + "description": "Support about 100 languages (ISO 639-1 codes) , demo: http://textanalysisonline.com/langid-language-detection", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be identified by language detector", + "default": "this is english text" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/langid-language-detection\"\nquerystring = {\"text\": \"this is english text\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/langid-language-detection\"\nquerystring = {\"text\": \"this is english text\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Lancaster Stemmer", + "url": "https://textanalysis.p.rapidapi.com/nltk-lancaster-stemmer", + "description": "Lancaster Stemmer by NLTK", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by NLTK Lancaster Stemmer", + "default": "this is english stemmer test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-lancaster-stemmer\"\nquerystring = {\"text\": \"this is english stemmer test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-lancaster-stemmer\"\nquerystring = {\"text\": \"this is english stemmer test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Sentence Segmentation", + "url": "https://textanalysis.p.rapidapi.com/nltk-sentence-segmentation", + "description": "Sentence Segmentation or Sentence Boundary Detection by NLTK", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by NLTK Sentence Segmenter", + "default": "Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Snowball Stemmer", + "url": "https://textanalysis.p.rapidapi.com/nltk-snowball-stemmer", + "description": "Snowball Stemmer by NLTK", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by NLTK Snowball Stemmer", + "default": "this is english word stemming test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-snowball-stemmer\"\nquerystring = {\"text\": \"this is english word stemming test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-snowball-stemmer\"\nquerystring = {\"text\": \"this is english word stemming test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Wordnet Lemmatizer", + "url": "https://textanalysis.p.rapidapi.com/nltk-wordnet-lemmatizer", + "description": "Wordnet Lemmatizer by NLTK", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by NLTK Word Lemmatizer", + "default": "this is word lemmatize test" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-wordnet-lemmatizer\"\nquerystring = {\"text\": \"this is word lemmatize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-wordnet-lemmatizer\"\nquerystring = {\"text\": \"this is word lemmatize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Modality", + "url": "https://textanalysis.p.rapidapi.com/pattern-modality", + "description": "Modality by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern Modality", + "default": "this is english modality test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-modality\"\nquerystring = {\"text\": \"this is english modality test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-modality\"\nquerystring = {\"text\": \"this is english modality test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Indefinite Article", + "url": "https://textanalysis.p.rapidapi.com/pattern-indefinite-article", + "description": "Indefinite Article by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Word to be processed by Pattern Indefinite Article", + "default": "apple" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-indefinite-article\"\nquerystring = {\"text\": \"apple\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-indefinite-article\"\nquerystring = {\"text\": \"apple\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern POS Tagging", + "url": "https://textanalysis.p.rapidapi.com/pattern-pos-tagging", + "description": "Pos Tagging by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern POS Tagger", + "default": "This is english pos tagger test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Sentence Segmentation", + "url": "https://textanalysis.p.rapidapi.com/pattern-sentence-segmentation", + "description": "Sentence Segmentation by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern Sentence Segmenter", + "default": "Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Word Tokenize", + "url": "https://textanalysis.p.rapidapi.com/nltk-word-tokenize", + "description": "Word Tokenize by NLTK", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "text to be tokenized by NLTK word tokenizer", + "default": "this's english text test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-word-tokenize\"\nquerystring = {\"text\": \"this's english text test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-word-tokenize\"\nquerystring = {\"text\": \"this's english text test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Parse", + "url": "https://textanalysis.p.rapidapi.com/pattern-parse", + "description": "Parse by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern Parser", + "default": "This is english parser test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-parse\"\nquerystring = {\"text\": \"This is english parser test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-parse\"\nquerystring = {\"text\": \"This is english parser test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Sentiment Analysis", + "url": "https://textanalysis.p.rapidapi.com/pattern-sentiment-analysis", + "description": "Sentiment Analysis by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern Sentiment Analysis", + "default": "This is the best book I have ever seen" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-sentiment-analysis\"\nquerystring = {\"text\": \"This is the best book I have ever seen\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-sentiment-analysis\"\nquerystring = {\"text\": \"This is the best book I have ever seen\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Word Comparative", + "url": "https://textanalysis.p.rapidapi.com/pattern-word-comparative", + "description": "Word Comparative by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Word to be processed by Pattern Word Comparative", + "default": "big" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-comparative\"\nquerystring = {\"text\": \"big\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-comparative\"\nquerystring = {\"text\": \"big\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Word Singularize", + "url": "https://textanalysis.p.rapidapi.com/pattern-word-singularize", + "description": "Word Singularize by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern Word Sigularize", + "default": "books" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-singularize\"\nquerystring = {\"text\": \"books\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-singularize\"\nquerystring = {\"text\": \"books\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Word Superlative", + "url": "https://textanalysis.p.rapidapi.com/pattern-word-superlative", + "description": "Word Superlative", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Word to be processed by Pattern Word Superlative", + "default": "big" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-superlative\"\nquerystring = {\"text\": \"big\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-superlative\"\nquerystring = {\"text\": \"big\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Word Tokenize", + "url": "https://textanalysis.p.rapidapi.com/pattern-word-tokenize", + "description": "Word Tokenize by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by Pattern Word Tokenize", + "default": "This's english word tokenize test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-tokenize\"\nquerystring = {\"text\": \"This's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-tokenize\"\nquerystring = {\"text\": \"This's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Noun Phrase Extraction", + "url": "https://textanalysis.p.rapidapi.com/textblob-noun-phrase-extraction", + "description": "Noun Phrase Extraction by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob Noun Phrase Extractor", + "default": "Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-noun-phrase-extraction\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-noun-phrase-extraction\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob POS Tagging", + "url": "https://textanalysis.p.rapidapi.com/textblob-pos-tagging", + "description": "Pos Tagging by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob POS Tagger", + "default": "This is english pos tagger test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Sentence Segmentation", + "url": "https://textanalysis.p.rapidapi.com/textblob-sentence-segmentation", + "description": "Sentence Segmentation or Sentence Boundary Detection by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob Sentence Segmenter", + "default": "Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Parse", + "url": "https://textanalysis.p.rapidapi.com/textblob-parse", + "description": "Parse by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob Parser", + "default": "This is english parser test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-parse\"\nquerystring = {\"text\": \"This is english parser test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-parse\"\nquerystring = {\"text\": \"This is english parser test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Sentiment Analysis", + "url": "https://textanalysis.p.rapidapi.com/textblob-sentiment-analysis", + "description": "Sentiment Analysis by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob Sentiment Analysis", + "default": "This is the best book I have ever seen" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-sentiment-analysis\"\nquerystring = {\"text\": \"This is the best book I have ever seen\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-sentiment-analysis\"\nquerystring = {\"text\": \"This is the best book I have ever seen\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Spelling Correction", + "url": "https://textanalysis.p.rapidapi.com/textblob-spelling-correction", + "description": "Spelling Correction by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob Spelling Correction", + "default": "This is speling cheker test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-spelling-correction\"\nquerystring = {\"text\": \"This is speling cheker test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-spelling-correction\"\nquerystring = {\"text\": \"This is speling cheker test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Word Singularize", + "url": "https://textanalysis.p.rapidapi.com/textblob-word-singularize", + "description": "Word Singularize by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Word to be processed by TextBlob Word Singularize", + "default": "books" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-word-singularize\"\nquerystring = {\"text\": \"books\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-word-singularize\"\nquerystring = {\"text\": \"books\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Word Tokenize", + "url": "https://textanalysis.p.rapidapi.com/textblob-word-tokenize", + "description": "Word Tokenize by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by TextBlob Word Tokenize", + "default": "This's english word tokenize test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-word-tokenize\"\nquerystring = {\"text\": \"This's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-word-tokenize\"\nquerystring = {\"text\": \"This's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "TextBlob Word Pluralize", + "url": "https://textanalysis.p.rapidapi.com/textblob-word-pluralize", + "description": "Word Pluralize by TextBlob", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Word to be processed by TextBlob Word Pluralize", + "default": "book" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-word-pluralize\"\nquerystring = {\"text\": \"book\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/textblob-word-pluralize\"\nquerystring = {\"text\": \"book\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "NLTK Wordnet Word Lemmatizer", + "url": "https://textanalysis.p.rapidapi.com/nltk-wordnet-word-lemmatizer", + "description": "NLTK wordnet word lemmatizer only for english word with pos tag", + "method": "POST", + "required_parameters": [ + { + "name": "word", + "type": "STRING", + "description": "English word to be lemmatized", + "default": "are" + } + ], + "optional_parameters": [ + { + "name": "pos", + "type": "STRING", + "description": "Pos Tag user specified, only support 'v', 'a', 'r', 'n', other tags will set to default 'n'", + "default": "v" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-wordnet-word-lemmatizer\"\nquerystring = {\"word\": \"are\", \"pos\": \"v\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/nltk-wordnet-word-lemmatizer\"\nquerystring = {\"word\": \"are\", \"pos\": \"v\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "spaCy Word Lemmatize", + "url": "https://textanalysis.p.rapidapi.com/spacy-word-lemmatize", + "description": "Word Lemmatize by spaCy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be lemmatized by spaCy Word Lemmatizer", + "default": "this is word lemmatize test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-word-lemmatize\"\nquerystring = {\"text\": \"this is word lemmatize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-word-lemmatize\"\nquerystring = {\"text\": \"this is word lemmatize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "spaCy Word Tokenize", + "url": "https://textanalysis.p.rapidapi.com/spacy-word-tokenize", + "description": "Word tokenizer by spaCy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by spaCy Word Tokenizer", + "default": "this's english word tokenize test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-word-tokenize\"\nquerystring = {\"text\": \"this's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-word-tokenize\"\nquerystring = {\"text\": \"this's english word tokenize test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "spaCy POS Tagging", + "url": "https://textanalysis.p.rapidapi.com/spacy-pos-tagging", + "description": "POS Tagging by spaCy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by spaCy POS Tagger", + "default": "This is english pos tagger test" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-pos-tagging\"\nquerystring = {\"text\": \"This is english pos tagger test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "spaCy Sentence Segmentation", + "url": "https://textanalysis.p.rapidapi.com/spacy-sentence-segmentation", + "description": "Sentence Segmentation or Sentence Boundary Detection by spaCy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by spaCy Sentence Segmenter", + "default": "Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-sentence-segmentation\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "spaCy Noun Chunks Extraction", + "url": "https://textanalysis.p.rapidapi.com/spacy-noun-chunks-extraction", + "description": "Noun Chunks Extraction by spaCy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by spaCy Noun Chunks Extractor", + "default": "Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-noun-chunks-extraction\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-noun-chunks-extraction\"\nquerystring = {\"text\": \"Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "spaCy Named Entity Recognition", + "url": "https://textanalysis.p.rapidapi.com/spacy-named-entity-recognition-ner", + "description": "Named Entity Recognition by spaCy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be processed by spaCy NER", + "default": "Rami Eid is studying at Stony Brook University in New York" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-named-entity-recognition-ner\"\nquerystring = {\"text\": \"Rami Eid is studying at Stony Brook University in New York\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/spacy-named-entity-recognition-ner\"\nquerystring = {\"text\": \"Rami Eid is studying at Stony Brook University in New York\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Chinese Word Segmenter", + "url": "https://textanalysis.p.rapidapi.com/segmenter", + "description": "Chinese word segmenter", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be segmented by Chinese Word Segementer", + "default": "\u8fd9\u662f\u4e2d\u6587\u5206\u8bcd\u6d4b\u8bd5" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/segmenter\"\nquerystring = {\"text\": \"\u8fd9\u662f\u4e2d\u6587\u5206\u8bcd\u6d4b\u8bd5\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/segmenter\"\nquerystring = {\"text\": \"\u8fd9\u662f\u4e2d\u6587\u5206\u8bcd\u6d4b\u8bd5\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Pattern Word Pluralize", + "url": "https://textanalysis.p.rapidapi.com/pattern-word-pluralize", + "description": "Word Pluralize by Pattern", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Word to be processed by Pattern Word Pluralize", + "default": "book" + } + ], + "code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-pluralize\"\nquerystring = {\"text\": \"book\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textanalysis.p.rapidapi.com/pattern-word-pluralize\"\nquerystring = {\"text\": \"book\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textanalysis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/textmaster.json b/toolbench/toolenv/tools/Tools/textmaster.json new file mode 100644 index 0000000000000000000000000000000000000000..5d8f1aafc4c58f1a70936eeb868b62e145768948 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/textmaster.json @@ -0,0 +1,159 @@ +{ + "product_id": "api_09602ea2-e45a-499d-a02a-2da35db4f96c", + "tool_description": "The TextMaster is a suite of text manipulation services that can be used in your applications. It provides functionalities such as reversing text, converting text to uppercase or lowercase, counting words, counting characters, counting sentences, and generating a text summary.", + "home_url": "https://rapidapi.com/sadasdasdlukedev/api/textmaster/", + "name": "TextMaster", + "title": "TextMaster", + "pricing": "FREEMIUM", + "tool_name": "TextMaster", + "score": { + "avgServiceLevel": 100, + "avgLatency": 506, + "avgSuccessRate": 100, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "textmaster.p.rapidapi.com", + "api_list": [ + { + "name": "/reverse", + "url": "https://textmaster.p.rapidapi.com/reverse", + "description": "This endpoint takes a string as input and returns the string in reverse order. Useful for various text processing and manipulation tasks.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/reverse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/reverse\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/uppercase", + "url": "https://textmaster.p.rapidapi.com/uppercase", + "description": "This endpoint receives a string and transforms all characters to uppercase. Ideal for uniform text formatting or case-insensitive operations.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/uppercase\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/uppercase\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/lowercase", + "url": "https://textmaster.p.rapidapi.com/lowercase", + "description": "This endpoint gets a string as input and converts all characters to lowercase. Useful for uniform text formatting or case-insensitive operations.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/lowercase\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/lowercase\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + }, + { + "name": "/charcount", + "url": "https://textmaster.p.rapidapi.com/charcount", + "description": "This endpoint counts the total number of characters in a provided string. Helpful for understanding text length or limiting the size of input.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/charcount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/charcount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "integer" + } + } + } + }, + { + "name": "/wordcount", + "url": "https://textmaster.p.rapidapi.com/wordcount", + "description": "This endpoint calculates the number of words in a given string. Beneficial for text analysis, readability scoring, and more.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/wordcount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/wordcount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "integer" + } + } + } + }, + { + "name": "/sentencecount", + "url": "https://textmaster.p.rapidapi.com/sentencecount", + "description": "This endpoint calculates the number of sentences in a provided string. It can be helpful for text analysis, evaluating readability, or generating document statistics.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/sentencecount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/sentencecount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "integer" + } + } + } + }, + { + "name": "/summary", + "url": "https://textmaster.p.rapidapi.com/summary", + "description": "This endpoint receives a string and generates a brief summary based on its content. It's a handy tool for content management, text analysis, and summarizing large amounts of text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/summary\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://textmaster.p.rapidapi.com/summary\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"textmaster.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/the_content_monitoring_api.json b/toolbench/toolenv/tools/Tools/the_content_monitoring_api.json new file mode 100644 index 0000000000000000000000000000000000000000..59dda5d5768dd4adbf87ca7aec6384954aacfe51 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/the_content_monitoring_api.json @@ -0,0 +1,222 @@ +{ + "product_id": "api_6bdbbffe-762d-4b4a-88e2-657a6b1c5868", + "tool_description": "The Content Monitoring API is a powerful tool designed for developers who need to monitor changes in website content. This API allows developers to register detectors that periodically scrape the provided URL, analyze the change with the help of ChatGPT and notify the API consumer on the significance of the detected change. \n**The API reference:** https://apitrends.stoplight.io/docs/changedetector/", + "home_url": "https://rapidapi.com/apitrendsteo/api/the-content-monitoring-api/", + "name": "The Content Monitoring API", + "title": "The Content Monitoring API", + "pricing": "FREEMIUM", + "tool_name": "The Content Monitoring API", + "score": null, + "host": "the-content-monitoring-api.p.rapidapi.com", + "api_list": [ + { + "name": "create_detector", + "url": "https://the-content-monitoring-api.p.rapidapi.com/detector", + "description": "Add a new detector. If added correctly, the scheduler immediately adds the detector as a runable job.\nIn order for the first url snapshot to be taken as fast as possible, detectInterval.startDate should be set to **current datetime - detectInterval + 1 minute**.\n\n**Important!** The price of the API directly depends on the frequency of detector activations (detectInterval) when the provided URL is scraped for the content.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-content-monitoring-api.p.rapidapi.com/detector\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-content-monitoring-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-content-monitoring-api.p.rapidapi.com/detector\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-content-monitoring-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "title": "Detector", + "type": "object", + "x-examples": { + "Example 1": { + "dtAdded": "2023-03-12T10:10:01.737167+00:00", + "status": "active", + "keywords": [ + "price", + "meubelen" + ], + "detectInterval": { + "endDate": "2024-03-03T10:00:00+00:00", + "hours": 0, + "days": 0, + "minutes": 16, + "startDate": "2023-03-07T08:13:15+00:00", + "weeks": 0 + }, + "urlParams": { + "evaluateJS": false, + "unexpectedTexts": [], + "method": "GET", + "headers": { + "accept-language": "en-US,en;q=0.9", + "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br", + "cookie": "testcookie" + }, + "data": "", + "expectedStatuses": [ + 200 + ], + "url": "https://www.lumz.nl/kasten/dressoirs/bepurehome-draw-dressoir-mangohout-walnoot", + "retries": 3, + "timeout": 10 + }, + "name": "tv stand", + "userId": "1", + "extractText": true + } + }, + "description": "A detector object that stores all the config parameters which describe frequency and the logic for the provided URL to be monitored for a change.", + "properties": { + "id": { + "type": "string", + "description": "Unique id generated by the server for further reference." + }, + "name": { + "maxLength": 50, + "type": "string", + "description": "Short description of an object" + }, + "userId": { + "maxLength": 50, + "type": "string", + "description": "Identifies a user who requested for the URL monitoring. Can be used to segregate the data by application users." + }, + "keywords": { + "maxItems": 10, + "type": "array", + "items": { + "maxLength": 30, + "type": "string" + } + }, + "status": { + "type": "string", + "default": "active", + "enum": [ + "active", + "paused" + ] + }, + "dtAdded": { + "type": "string", + "format": "date-time", + "description": "Date-time when object was created." + }, + "dtUpdated": { + "type": "string", + "format": "date-time", + "description": "Date-time when object was last updated." + }, + "detectInterval": { + "type": "object", + "title": "Detection interval", + "description": "Defines frequency for scheduler to ativate the detector.", + "properties": { + "minutes": { + "maximum": 59, + "minimum": 0, + "type": "integer" + }, + "hours": { + "maximum": 24, + "minimum": 0, + "type": "integer" + }, + "days": { + "maximum": 366, + "minimum": 0, + "type": "integer" + }, + "weeks": { + "maximum": 55, + "minimum": 0, + "type": "integer" + }, + "startDate": { + "type": "string", + "format": "date-time", + "description": "Date-time from which the scheduler calculates intervals for detector activation. " + }, + "endDate": { + "type": "string", + "format": "date-time", + "description": "Date-time for scheduler to stop detector's activations. If not defined the detector will be activated perioadically as defined by interval indefinetly." + } + }, + "required": [ + "startDate" + ] + }, + "extractText": { + "type": "boolean", + "default": true, + "description": "Forces text extraction from HTML content before difference calculation." + }, + "urlParams": { + "type": "object", + "title": "URL parameters", + "description": "Parameterization for content scraping.", + "properties": { + "url": { + "type": "string" + }, + "method": { + "type": "string", + "default": "GET", + "enum": [ + "GET", + "POST", + "PATCH", + "PUT" + ] + }, + "retries": { + "maximum": 5, + "minimum": 0, + "type": "integer", + "default": 2 + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer", + "default": 10 + }, + "evaluateJS": { + "type": "boolean", + "default": true, + "description": "Launches real browser. Significantly slower and more expensive. Only GET requests are supported with JS evaluation." + }, + "unexpectedTexts": { + "maxItems": 5, + "type": "array", + "description": "If the provided text is found in the response, the response is treated as failed. For example captcha is requested before content is provided in the response.", + "items": { + "maxLength": 100, + "type": "string" + } + }, + "expectedStatuses": { + "maxItems": 10, + "type": "array", + "description": "A list of expected status. Normally 200, 201, etc.", + "items": { + "maximum": 999, + "type": "integer", + "default": 200 + } + }, + "headers": { + "maxProperties": 30, + "type": "object", + "description": "A list of headers to be sent with the request." + }, + "data": { + "maxLength": 1000, + "type": "string", + "description": "Payload to be sent with the request." + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/the_content_monitoring_api/api.py b/toolbench/toolenv/tools/Tools/the_content_monitoring_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..288f267233a76c84112587292b2a6f7aeee277a0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/the_content_monitoring_api/api.py @@ -0,0 +1,105 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_detectors(limit: int, name: str=None, orderby: str='name', endat: str=None, userid: str=None, startat: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve a list of all active and paused detectors. " + limit: A required field specifying maxim number of items to retrieve. + name: Filter by a name of a detector. + orderby: Order by a specific field. + endat: Cursor for pagination. Specifies the item id to end a window of list of items to retrieve. startAt and endAt can not be provided simultaneously. If neither of two is provided a list is started from the first item in the order. + userid: Filter by a user id. + startat: Cursor for pagination. Specifies the item id to start a window of list of items to retrieve. startAt and endAt can not be provided simultaneously. If neither of two is provided a list is started from the first item in the order. + + """ + url = f"https://the-content-monitoring-api.p.rapidapi.com/detector" + querystring = {'limit': limit, } + if name: + querystring['name'] = name + if orderby: + querystring['orderby'] = orderby + if endat: + querystring['endAt'] = endat + if userid: + querystring['userId'] = userid + if startat: + querystring['startAt'] = startat + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-content-monitoring-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_changes(limit: int, detectorid: str=None, endat: str=None, startat: str=None, orderby: str='userId', userid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve a list of all changes as per the provided filters. To get the details including AI comment and the calculated difference between the corresponding content snapshots, it is required to request the data for each item individually. + + Not every detector activaton leads to a change being detected. The change won't be stored if the snapshots are identical, it is an initial snapshot (nothing to compare to), previous url request failed." + limit: A required field specifying maxim number of items to retrieve. + detectorid: Filter by a detector id. + endat: Cursor for pagination. Specifies the item id to end a window of list of items to retrieve. startAt and endAt can not be provided simultaneously. If neither of two is provided a list is started from the first item in the order. + startat: Cursor for pagination. Specifies the item id to start a window of list of items to retrieve. startAt and endAt can not be provided simultaneously. If neither of two is provided a list is started from the first item in the order. + orderby: Order by a specific field. + userid: Filter by a user id. + + """ + url = f"https://the-content-monitoring-api.p.rapidapi.com/change" + querystring = {'limit': limit, } + if detectorid: + querystring['detectorId'] = detectorid + if endat: + querystring['endAt'] = endat + if startat: + querystring['startAt'] = startat + if orderby: + querystring['orderby'] = orderby + if userid: + querystring['userId'] = userid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-content-monitoring-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_change(changeid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detailed information about a specified change including the content snapshots difference and an AI comment." + + """ + url = f"https://the-content-monitoring-api.p.rapidapi.com/change/{changeid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-content-monitoring-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/the_emoji_api.json b/toolbench/toolenv/tools/Tools/the_emoji_api.json new file mode 100644 index 0000000000000000000000000000000000000000..c753fa05d1b646d1002d71a17ddf3b8ea21f932d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/the_emoji_api.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_83f2d6b8-3cc6-4eff-b008-d66b8f59b551", + "tool_description": "Search, autocomplete, and render emojis in SVG and PNG files.", + "home_url": "https://rapidapi.com/hck/api/the-emoji-api/", + "name": "The Emoji API", + "title": "The Emoji API", + "pricing": "FREEMIUM", + "tool_name": "The Emoji API", + "score": { + "avgServiceLevel": 97, + "avgLatency": 90, + "avgSuccessRate": 95, + "popularityScore": 8.7, + "__typename": "Score" + }, + "host": "the-emoji-api.p.rapidapi.com", + "api_list": [ + { + "name": "Replace emoji short code in a string with Unicode emoji.", + "url": "https://the-emoji-api.p.rapidapi.com/short_code/unicodify", + "description": "Send this endpoint a string and it will replace all short code with Unicode emoji.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-emoji-api.p.rapidapi.com/short_code/unicodify\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-emoji-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-emoji-api.p.rapidapi.com/short_code/unicodify\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-emoji-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/the_numerology_api.json b/toolbench/toolenv/tools/Tools/the_numerology_api.json new file mode 100644 index 0000000000000000000000000000000000000000..8db968e4da0ed7f7ab53d8291d6224baca834051 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/the_numerology_api.json @@ -0,0 +1,792 @@ +{ + "tool_name": "The Numerology API", + "tool_description": "The Numerology API allows you to calculate information about; Attitude/Sun Number, Balance Number, Challenge Number, Karmic Debt Number, Karmic Lesson Numbers, Life Period Cycle Numbers, Lucky Numbers, Personality Number, Personal Year Number, Rational Thought Number, Soul Expression/Destiny Number, Soul Urge Number, Analyze a person's phone number, and determine the Life Path based on a person's date of birth. The API supports the Pythagorean numerology method. ", + "title": "The Numerology API", + "pricing": "PAID", + "score": { + "avgServiceLevel": 100, + "avgLatency": 546, + "avgSuccessRate": 100, + "popularityScore": 8.5, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/kidddevs/api/the-numerology-api/", + "host": "the-numerology-api.p.rapidapi.com", + "api_list": [ + { + "name": "Rational Thought Number", + "url": "https://the-numerology-api.p.rapidapi.com/thought_number", + "description": "The Rational Thought Number endpoint calculates the Rational Thought Number based on the Pythagorean numerology method. The Rational Thought Number represents the thought patterns and mental tendencies of an individual, providing insights into their decision-making processes and approach to problem-solving.", + "method": "GET", + "required_parameters": [ + { + "name": "first_name", + "type": "STRING", + "description": "The full first name of the person for whom the Rational Thought Number is to be calculated.", + "default": "John" + }, + { + "name": "birth_day", + "type": "NUMBER", + "description": "The day of the month the person was born.", + "default": "15" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/thought_number\"\nquerystring = {\"first_name\": first_name, \"birth_day\": birth_day}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Subconscious Self Number", + "url": "https://the-numerology-api.p.rapidapi.com/subconscious_number", + "description": "The Subconscious Self Number endpoint calculates the subconscious self number based on the Pythagorean numerology method. The subconscious self number represents the quantity of represented numbers in a given name, indicating an individual's capabilities and tendencies in dealing with various situations.", + "method": "GET", + "required_parameters": [ + { + "name": "name", + "type": "STRING", + "description": "The name used to calculate the subconscious self number.", + "default": "John Robert Doe" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/subconscious_number\"\nquerystring = {\"name\": name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Heart's Desire/Soul Urge Number", + "url": "https://the-numerology-api.p.rapidapi.com/heart_desire", + "description": "The Heart's Desire Number endpoint calculates the Heart's Desire Number based on the vowels in a person's full name at birth. The Soul Urge Number reflects the innermost desires and motivations of an individual.", + "method": "GET", + "required_parameters": [ + { + "name": "first_name", + "type": "STRING", + "description": "**(required)**: The first name of the person.", + "default": "John" + }, + { + "name": "last_name", + "type": "STRING", + "description": "**(required)**: The last name of the person.", + "default": "Doe" + }, + { + "name": "middle_name", + "type": "STRING", + "description": "**(required)**: The middle name of the person.", + "default": "Robert" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/heart_desire\"\nquerystring = {\"first_name\": first_name, \"last_name\": last_name, \"middle_name\": middle_name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Expression/Destiny Number Calculator (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/destiny_number/post", + "description": "The Expression/Destiny Number Calculator endpoint calculates the Destiny Number based on a person's first name, middle name, and last name. It also provides information about the Destiny Number.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/destiny_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Expression/Destiny Number Calculator", + "url": "https://the-numerology-api.p.rapidapi.com/destiny_number", + "description": "The Expression/Destiny Number Calculator endpoint calculates the Destiny Number based on a person's first name, middle name, and last name. It also provides information about the Destiny Number.", + "method": "GET", + "required_parameters": [ + { + "name": "last_name", + "type": "STRING", + "description": "The last name of the person.", + "default": "Smith" + }, + { + "name": "first_name", + "type": "STRING", + "description": "The first name of the person.", + "default": "John" + } + ], + "optional_parameters": [ + { + "name": "middle_name", + "type": "STRING", + "description": "The middle name of the person **(optional)**.", + "default": "Doe" + } + ], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/destiny_number\"\nquerystring = {\"last_name\": last_name, \"first_name\": first_name, \"middle_name\": middle_name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Phone Number Analyzer (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/analyze_phone/post", + "description": "The Phone Number Analyzer endpoint analyzes a person's phone number and calculates its vibration energy based on numerology. It provides information about the overall vibration of the phone number and the minor numbers that make up the number.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/analyze_phone/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Phone Number Analyzer", + "url": "https://the-numerology-api.p.rapidapi.com/analyze_phone", + "description": "The Phone Number Analyzer endpoint analyzes a person's phone number and calculates its vibration energy based on numerology. It provides information about the overall vibration of the phone number and the minor numbers that make up the number.", + "method": "GET", + "required_parameters": [ + { + "name": "phone_number", + "type": "NUMBER", + "description": "The phone number to analyze.", + "default": "12066852344" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/analyze_phone\"\nquerystring = {\"phone_number\": phone_number}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Personality Number Calculator (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/personality_number/post", + "description": "The Personality Number Calculator endpoint calculates the Personality Number based on the consonants in a person's full name at birth. The Personality Number reflects certain personality traits and characteristics of an individual.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personality_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Personal Year Number", + "url": "https://the-numerology-api.p.rapidapi.com/personal_year", + "description": "The Personal Year Number Calculator endpoint calculates the personal year number based on the provided date of birth and prediction year. The personal year number provides insights into the energies and experiences that may influence an individual during a particular year. By understanding the personal year number, users can gain awareness and make informed decisions in various aspects of their lives.", + "method": "GET", + "required_parameters": [ + { + "name": "prediction_year", + "type": "NUMBER", + "description": "**(integer)**: The year for which the personal year number is calculated.", + "default": "2023" + }, + { + "name": "birth_month", + "type": "NUMBER", + "description": "**(integer)**: The month of birth of the person.", + "default": "12" + }, + { + "name": "birth_day", + "type": "NUMBER", + "description": "**(integer)**: The day of birth of the person.\n", + "default": "3" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personal_year\"\nquerystring = {\"prediction_year\": prediction_year, \"birth_month\": birth_month, \"birth_day\": birth_day}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Personality Number Calculator", + "url": "https://the-numerology-api.p.rapidapi.com/personality_number", + "description": "The Personality Number Calculator endpoint calculates the Personality Number based on the consonants in a person's full name at birth. The Personality Number reflects certain personality traits and characteristics of an individual.", + "method": "GET", + "required_parameters": [ + { + "name": "first_name", + "type": "STRING", + "description": "**(required)**: The first name of the person.", + "default": "John" + }, + { + "name": "middle_name", + "type": "STRING", + "description": "**(required)**: The middle name of the person.", + "default": "Robert" + }, + { + "name": "last_name", + "type": "STRING", + "description": "**(required)**: The last name of the person.", + "default": "Doe" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personality_number\"\nquerystring = {\"first_name\": first_name, \"middle_name\": middle_name, \"last_name\": last_name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Lucky Numbers (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/lucky_numbers/post", + "description": "The Lucky Numbers endpoint generates a set of lucky numbers based on a person's birthdate and name. These lucky numbers are derived using the Pythagorean numerology method and can be used for various purposes such as lottery or decision-making. The API calculates six different lucky numbers based on different aspects of the person's birthdate and name.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/lucky_numbers/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Lucky Numbers", + "url": "https://the-numerology-api.p.rapidapi.com/lucky_numbers", + "description": "The Lucky Numbers endpoint generates a set of lucky numbers based on a person's birthdate and name. These lucky numbers are derived using the Pythagorean numerology method and can be used for various purposes such as lottery or decision-making. The API calculates six different lucky numbers based on different aspects of the person's birthdate and name.", + "method": "GET", + "required_parameters": [ + { + "name": "birthdate", + "type": "STRING", + "description": " (string): The birthdate of the person in the format '**YYYY-MM-DD**'.", + "default": "1990-05-15" + }, + { + "name": "full_name", + "type": "STRING", + "description": "(string): The full name of the person.", + "default": "John Robert Doe" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/lucky_numbers\"\nquerystring = {\"birthdate\": birthdate, \"full_name\": full_name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Karmic Lessons Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/karmic_lessons/post", + "description": "This endpoint calculates the karmic lessons based on the provided full name. Karmic lessons represent the missing numbers in the name and provide insights into areas of personal growth and development. The endpoint returns the list of karmic lessons and their corresponding summaries.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_lessons/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Karmic Lessons Numbers", + "url": "https://the-numerology-api.p.rapidapi.com/karmic_lessons", + "description": "This endpoint calculates the karmic lessons based on the provided full name. Karmic lessons represent the missing numbers in the name and provide insights into areas of personal growth and development. The endpoint returns the list of karmic lessons and their corresponding summaries.", + "method": "GET", + "required_parameters": [ + { + "name": "full_name", + "type": "STRING", + "description": "The full name to analyze for karmic lessons.", + "default": "John Doe Smith" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_lessons\"\nquerystring = {\"full_name\": full_name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Karmic Debt Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/karmic_debt/post", + "description": "Calculates the Karmic Debt Number based on the provided birth date. Accepts query parameters for birth year, month, and day.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_debt/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Attitude/Sun Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/attitude_number/post", + "description": "The Attitude/Sun Number endpoint calculates the Attitude Number, also known as the Sun Number, which represents the initial impression or appearance we portray to others when they first meet us.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/attitude_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Attitude/Sun Number", + "url": "https://the-numerology-api.p.rapidapi.com/attitude_number", + "description": "The Attitude/Sun Number endpoint calculates the Attitude Number, also known as the Sun Number, which represents the initial impression or appearance we portray to others when they first meet us.", + "method": "GET", + "required_parameters": [ + { + "name": "birth_month", + "type": "NUMBER", + "description": "The numeric value of the birth month **(1-12)**", + "default": "3" + }, + { + "name": "birth_day", + "type": "NUMBER", + "description": "The numeric value of the birth day **(1-31)**", + "default": "14" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/attitude_number\"\nquerystring = {\"birth_month\": birth_month, \"birth_day\": birth_day}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Life Period Cycle Numbers (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/period_cycles/post", + "description": "The Life Period Cycle Numbers endpoint calculates the period cycle numbers based on the date of birth and provides meaningful descriptions for each period. It helps individuals gain insights into different phases of their lives and understand where to focus their attention during specific periods.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/period_cycles/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Life Period Cycle Numbers", + "url": "https://the-numerology-api.p.rapidapi.com/period_cycles", + "description": "The Life Period Cycle Numbers endpoint calculates the period cycle numbers based on the date of birth and provides meaningful descriptions for each period. It helps individuals gain insights into different phases of their lives and understand where to focus their attention during specific periods.", + "method": "GET", + "required_parameters": [ + { + "name": "birth_day", + "type": "NUMBER", + "description": "The day of birth (1-31).", + "default": "15" + }, + { + "name": "birth_month", + "type": "NUMBER", + "description": "The month of birth (1-12).", + "default": "5" + }, + { + "name": "birth_year", + "type": "NUMBER", + "description": "The four-digit year of birth.", + "default": "1990" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/period_cycles\"\nquerystring = {\"birth_day\": birth_day, \"birth_month\": birth_month, \"birth_year\": birth_year}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Rational Thought Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/thought_number/post", + "description": "The Rational Thought Number endpoint calculates the Rational Thought Number based on the Pythagorean numerology method. The Rational Thought Number represents the thought patterns and mental tendencies of an individual, providing insights into their decision-making processes and approach to problem-solving.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/thought_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Balance Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/balance_number/post", + "description": "Welcome to the Balance Number endpoint! This endpoint allows you to calculate the Balance Number based on the initials of a person's name, providing insights into their abilities, talents, imperfections, and shortcomings. The Balance Number represents a minor influence in their life and can help them maintain balance during times of emotional upheaval.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/balance_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Balance Number", + "url": "https://the-numerology-api.p.rapidapi.com/balance_number", + "description": "Welcome to the Balance Number endpoint! This endpoint allows you to calculate the Balance Number based on the initials of a person's name, providing insights into their abilities, talents, imperfections, and shortcomings. The Balance Number represents a minor influence in their life and can help them maintain balance during times of emotional upheaval.", + "method": "GET", + "required_parameters": [ + { + "name": "initials", + "type": "STRING", + "description": "The initials of the name.\nExample: **JRD** for John Robert Doe", + "default": "JRD" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/balance_number\"\nquerystring = {\"initials\": initials}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Subconscious Self Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/subconscious_number/post", + "description": "The Subconscious Self Number endpoint calculates the subconscious self number based on the Pythagorean numerology method. The subconscious self number represents the quantity of represented numbers in a given name, indicating an individual's capabilities and tendencies in dealing with various situations.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/subconscious_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Challenge Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/challenge_number/post", + "description": "The Challenge Number Calculator endpoint allows you to calculate various challenge numbers based on a given birth date. The challenge numbers represent specific aspects or challenges that an individual may face in their life.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/challenge_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Challenge Number", + "url": "https://the-numerology-api.p.rapidapi.com/challenge_number", + "description": "The Challenge Number Calculator endpoint allows you to calculate various challenge numbers based on a given birth date. The challenge numbers represent specific aspects or challenges that an individual may face in their life.", + "method": "GET", + "required_parameters": [ + { + "name": "birth_year", + "type": "NUMBER", + "description": "The year of birth (integer)", + "default": "1990" + }, + { + "name": "birth_month", + "type": "NUMBER", + "description": "The month of birth (integer)", + "default": "5" + }, + { + "name": "birth_day", + "type": "NUMBER", + "description": "The day of birth (integer)", + "default": "15" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/challenge_number\"\nquerystring = {\"birth_year\": birth_year, \"birth_month\": birth_month, \"birth_day\": birth_day}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Heart's Desire/Soul Urge Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/heart_desire/post", + "description": "The Heart's Desire Number endpoint calculates the Heart's Desire Number based on the vowels in a person's full name at birth. The Soul Urge Number reflects the innermost desires and motivations of an individual.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/heart_desire/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Personal Year Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/personal_year/post", + "description": "The Personal Year Number Calculator endpoint calculates the personal year number based on the provided date of birth and prediction year. The personal year number provides insights into the energies and experiences that may influence an individual during a particular year. By understanding the personal year number, users can gain awareness and make informed decisions in various aspects of their lives.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personal_year/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Karmic Debt Number", + "url": "https://the-numerology-api.p.rapidapi.com/karmic_debt", + "description": "Calculates the Karmic Debt Number based on the provided birth date. Accepts query parameters for birth year, month, and day.", + "method": "GET", + "required_parameters": [ + { + "name": "day", + "type": "NUMBER", + "description": "**(integer)**: The day of birth.", + "default": "28" + }, + { + "name": "year", + "type": "NUMBER", + "description": "**(integer)**: The year of birth.", + "default": "2023" + }, + { + "name": "month", + "type": "NUMBER", + "description": "**(integer)**: The month of birth.", + "default": "6" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_debt\"\nquerystring = {\"day\": day, \"year\": year, \"month\": month}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Calculate Life Path Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/life_path/post", + "description": "Calculates the numerology number and provides information about the life path based on the given name and date of birth.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/life_path/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Calculate Life Path Number (GET)", + "url": "https://the-numerology-api.p.rapidapi.com/life_path", + "description": "Calculates the numerology number and provides information about the life path based on the given name and date of birth.", + "method": "GET", + "required_parameters": [ + { + "name": "month", + "type": "NUMBER", + "description": "**(integer)**: The month of birth.", + "default": "5" + }, + { + "name": "year", + "type": "NUMBER", + "description": "**(integer)**: The year of birth.", + "default": "1990" + }, + { + "name": "day", + "type": "NUMBER", + "description": "**(integer)**: The day of birth.", + "default": "12" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/life_path\"\nquerystring = {\"month\": month, \"year\": year, \"day\": day}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Expression/Destiny Number Calculator (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/destiny_number/post", + "description": "The Expression/Destiny Number Calculator endpoint calculates the Destiny Number based on a person's first name, middle name, and last name. It also provides information about the Destiny Number.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/destiny_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/destiny_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Phone Number Analyzer (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/analyze_phone/post", + "description": "The Phone Number Analyzer endpoint analyzes a person's phone number and calculates its vibration energy based on numerology. It provides information about the overall vibration of the phone number and the minor numbers that make up the number.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/analyze_phone/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/analyze_phone/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Personality Number Calculator (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/personality_number/post", + "description": "The Personality Number Calculator endpoint calculates the Personality Number based on the consonants in a person's full name at birth. The Personality Number reflects certain personality traits and characteristics of an individual.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personality_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personality_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Lucky Numbers (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/lucky_numbers/post", + "description": "The Lucky Numbers endpoint generates a set of lucky numbers based on a person's birthdate and name. These lucky numbers are derived using the Pythagorean numerology method and can be used for various purposes such as lottery or decision-making. The API calculates six different lucky numbers based on different aspects of the person's birthdate and name.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/lucky_numbers/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/lucky_numbers/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Karmic Lessons Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/karmic_lessons/post", + "description": "This endpoint calculates the karmic lessons based on the provided full name. Karmic lessons represent the missing numbers in the name and provide insights into areas of personal growth and development. The endpoint returns the list of karmic lessons and their corresponding summaries.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_lessons/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_lessons/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Karmic Debt Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/karmic_debt/post", + "description": "Calculates the Karmic Debt Number based on the provided birth date. Accepts query parameters for birth year, month, and day.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_debt/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/karmic_debt/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Attitude/Sun Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/attitude_number/post", + "description": "The Attitude/Sun Number endpoint calculates the Attitude Number, also known as the Sun Number, which represents the initial impression or appearance we portray to others when they first meet us.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/attitude_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/attitude_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Life Period Cycle Numbers (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/period_cycles/post", + "description": "The Life Period Cycle Numbers endpoint calculates the period cycle numbers based on the date of birth and provides meaningful descriptions for each period. It helps individuals gain insights into different phases of their lives and understand where to focus their attention during specific periods.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/period_cycles/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/period_cycles/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Rational Thought Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/thought_number/post", + "description": "The Rational Thought Number endpoint calculates the Rational Thought Number based on the Pythagorean numerology method. The Rational Thought Number represents the thought patterns and mental tendencies of an individual, providing insights into their decision-making processes and approach to problem-solving.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/thought_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/thought_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Balance Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/balance_number/post", + "description": "Welcome to the Balance Number endpoint! This endpoint allows you to calculate the Balance Number based on the initials of a person's name, providing insights into their abilities, talents, imperfections, and shortcomings. The Balance Number represents a minor influence in their life and can help them maintain balance during times of emotional upheaval.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/balance_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/balance_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Subconscious Self Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/subconscious_number/post", + "description": "The Subconscious Self Number endpoint calculates the subconscious self number based on the Pythagorean numerology method. The subconscious self number represents the quantity of represented numbers in a given name, indicating an individual's capabilities and tendencies in dealing with various situations.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/subconscious_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/subconscious_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Challenge Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/challenge_number/post", + "description": "The Challenge Number Calculator endpoint allows you to calculate various challenge numbers based on a given birth date. The challenge numbers represent specific aspects or challenges that an individual may face in their life.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/challenge_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/challenge_number/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Heart's Desire/Soul Urge Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/heart_desire/post", + "description": "The Heart's Desire Number endpoint calculates the Heart's Desire Number based on the vowels in a person's full name at birth. The Soul Urge Number reflects the innermost desires and motivations of an individual.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/heart_desire/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/heart_desire/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Personal Year Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/personal_year/post", + "description": "The Personal Year Number Calculator endpoint calculates the personal year number based on the provided date of birth and prediction year. The personal year number provides insights into the energies and experiences that may influence an individual during a particular year. By understanding the personal year number, users can gain awareness and make informed decisions in various aspects of their lives.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personal_year/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/personal_year/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Calculate Life Path Number (POST)", + "url": "https://the-numerology-api.p.rapidapi.com/life_path/post", + "description": "Calculates the numerology number and provides information about the life path based on the given name and date of birth.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/life_path/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-numerology-api.p.rapidapi.com/life_path/post\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-numerology-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/the_numerology_api/api.py b/toolbench/toolenv/tools/Tools/the_numerology_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..777eab503e42258297892985d5fd3f5efcbf5e4b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/the_numerology_api/api.py @@ -0,0 +1,361 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def rational_thought_number(first_name: str, birth_day: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Rational Thought Number endpoint calculates the Rational Thought Number based on the Pythagorean numerology method. The Rational Thought Number represents the thought patterns and mental tendencies of an individual, providing insights into their decision-making processes and approach to problem-solving." + first_name: The full first name of the person for whom the Rational Thought Number is to be calculated. + birth_day: The day of the month the person was born. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/thought_number" + querystring = {'first_name': first_name, 'birth_day': birth_day, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def subconscious_self_number(name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Subconscious Self Number endpoint calculates the subconscious self number based on the Pythagorean numerology method. The subconscious self number represents the quantity of represented numbers in a given name, indicating an individual's capabilities and tendencies in dealing with various situations." + name: The name used to calculate the subconscious self number. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/subconscious_number" + querystring = {'name': name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def heart_s_desire_soul_urge_number(first_name: str, last_name: str, middle_name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Heart's Desire Number endpoint calculates the Heart's Desire Number based on the vowels in a person's full name at birth. The Soul Urge Number reflects the innermost desires and motivations of an individual." + first_name: **(required)**: The first name of the person. + last_name: **(required)**: The last name of the person. + middle_name: **(required)**: The middle name of the person. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/heart_desire" + querystring = {'first_name': first_name, 'last_name': last_name, 'middle_name': middle_name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def expression_destiny_number_calculator(last_name: str, first_name: str, middle_name: str='Doe', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Expression/Destiny Number Calculator endpoint calculates the Destiny Number based on a person's first name, middle name, and last name. It also provides information about the Destiny Number." + last_name: The last name of the person. + first_name: The first name of the person. + middle_name: The middle name of the person **(optional)**. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/destiny_number" + querystring = {'last_name': last_name, 'first_name': first_name, } + if middle_name: + querystring['middle_name'] = middle_name + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def phone_number_analyzer(phone_number: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Phone Number Analyzer endpoint analyzes a person's phone number and calculates its vibration energy based on numerology. It provides information about the overall vibration of the phone number and the minor numbers that make up the number." + phone_number: The phone number to analyze. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/analyze_phone" + querystring = {'phone_number': phone_number, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def personal_year_number(prediction_year: int, birth_month: int, birth_day: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Personal Year Number Calculator endpoint calculates the personal year number based on the provided date of birth and prediction year. The personal year number provides insights into the energies and experiences that may influence an individual during a particular year. By understanding the personal year number, users can gain awareness and make informed decisions in various aspects of their lives." + prediction_year: **(integer)**: The year for which the personal year number is calculated. + birth_month: **(integer)**: The month of birth of the person. + birth_day: **(integer)**: The day of birth of the person. + + + """ + url = f"https://the-numerology-api.p.rapidapi.com/personal_year" + querystring = {'prediction_year': prediction_year, 'birth_month': birth_month, 'birth_day': birth_day, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def personality_number_calculator(first_name: str, middle_name: str, last_name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Personality Number Calculator endpoint calculates the Personality Number based on the consonants in a person's full name at birth. The Personality Number reflects certain personality traits and characteristics of an individual." + first_name: **(required)**: The first name of the person. + middle_name: **(required)**: The middle name of the person. + last_name: **(required)**: The last name of the person. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/personality_number" + querystring = {'first_name': first_name, 'middle_name': middle_name, 'last_name': last_name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def lucky_numbers(birthdate: str, full_name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Lucky Numbers endpoint generates a set of lucky numbers based on a person's birthdate and name. These lucky numbers are derived using the Pythagorean numerology method and can be used for various purposes such as lottery or decision-making. The API calculates six different lucky numbers based on different aspects of the person's birthdate and name." + birthdate: (string): The birthdate of the person in the format '**YYYY-MM-DD**'. + full_name: (string): The full name of the person. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/lucky_numbers" + querystring = {'birthdate': birthdate, 'full_name': full_name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def karmic_lessons_numbers(full_name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint calculates the karmic lessons based on the provided full name. Karmic lessons represent the missing numbers in the name and provide insights into areas of personal growth and development. The endpoint returns the list of karmic lessons and their corresponding summaries." + full_name: The full name to analyze for karmic lessons. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/karmic_lessons" + querystring = {'full_name': full_name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def attitude_sun_number(birth_month: int, birth_day: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Attitude/Sun Number endpoint calculates the Attitude Number, also known as the Sun Number, which represents the initial impression or appearance we portray to others when they first meet us." + birth_month: The numeric value of the birth month **(1-12)** + birth_day: The numeric value of the birth day **(1-31)** + + """ + url = f"https://the-numerology-api.p.rapidapi.com/attitude_number" + querystring = {'birth_month': birth_month, 'birth_day': birth_day, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def life_period_cycle_numbers(birth_day: int, birth_month: int, birth_year: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Life Period Cycle Numbers endpoint calculates the period cycle numbers based on the date of birth and provides meaningful descriptions for each period. It helps individuals gain insights into different phases of their lives and understand where to focus their attention during specific periods." + birth_day: The day of birth (1-31). + birth_month: The month of birth (1-12). + birth_year: The four-digit year of birth. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/period_cycles" + querystring = {'birth_day': birth_day, 'birth_month': birth_month, 'birth_year': birth_year, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def balance_number(initials: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Welcome to the Balance Number endpoint! This endpoint allows you to calculate the Balance Number based on the initials of a person's name, providing insights into their abilities, talents, imperfections, and shortcomings. The Balance Number represents a minor influence in their life and can help them maintain balance during times of emotional upheaval." + initials: The initials of the name. +Example: **JRD** for John Robert Doe + + """ + url = f"https://the-numerology-api.p.rapidapi.com/balance_number" + querystring = {'initials': initials, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def challenge_number(birth_year: int, birth_month: int, birth_day: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Challenge Number Calculator endpoint allows you to calculate various challenge numbers based on a given birth date. The challenge numbers represent specific aspects or challenges that an individual may face in their life." + birth_year: The year of birth (integer) + birth_month: The month of birth (integer) + birth_day: The day of birth (integer) + + """ + url = f"https://the-numerology-api.p.rapidapi.com/challenge_number" + querystring = {'birth_year': birth_year, 'birth_month': birth_month, 'birth_day': birth_day, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def karmic_debt_number(day: int, year: int, month: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Calculates the Karmic Debt Number based on the provided birth date. Accepts query parameters for birth year, month, and day." + day: **(integer)**: The day of birth. + year: **(integer)**: The year of birth. + month: **(integer)**: The month of birth. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/karmic_debt" + querystring = {'day': day, 'year': year, 'month': month, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def calculate_life_path_number_get(month: int, year: int, day: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Calculates the numerology number and provides information about the life path based on the given name and date of birth." + month: **(integer)**: The month of birth. + year: **(integer)**: The year of birth. + day: **(integer)**: The day of birth. + + """ + url = f"https://the-numerology-api.p.rapidapi.com/life_path" + querystring = {'month': month, 'year': year, 'day': day, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "the-numerology-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/the_ocr_conversion_api.json b/toolbench/toolenv/tools/Tools/the_ocr_conversion_api.json new file mode 100644 index 0000000000000000000000000000000000000000..faec3e13d9e58d136e4dd22b362bc1b2138430c2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/the_ocr_conversion_api.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_80af9bf8-1ae4-4db3-b927-6a90e8abe575", + "tool_description": "The OCR Conversion API is a powerful tool that enables the conversion of non-OCR (Optical Character Recognition) PDF files and images into OCR-enabled PDF documents. With this API, developers can integrate OCR capabilities into their applications, allowing users to easily extract text from scanned documents or images.", + "home_url": "https://rapidapi.com/nanonetsocr-nanonetsocr-default/api/the-ocr-conversion-api/", + "name": "The OCR Conversion API", + "title": "The OCR Conversion API", + "pricing": "FREEMIUM", + "tool_name": "The OCR Conversion API", + "score": null, + "host": "the-ocr-conversion-api.p.rapidapi.com", + "api_list": [ + { + "name": "OCR Converter", + "url": "https://the-ocr-conversion-api.p.rapidapi.com/ocr", + "description": "The OCR Conversion API is a powerful tool that enables the conversion of non-OCR (Optical Character Recognition) PDF files and images into OCR-enabled PDF documents. With this API, developers can integrate OCR capabilities into their applications, allowing users to easily extract text from scanned documents or images.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://the-ocr-conversion-api.p.rapidapi.com/ocr\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-ocr-conversion-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://the-ocr-conversion-api.p.rapidapi.com/ocr\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"the-ocr-conversion-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/thentic.json b/toolbench/toolenv/tools/Tools/thentic.json new file mode 100644 index 0000000000000000000000000000000000000000..f01e0430db34bc154b873cfdb42c195eef5a178e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/thentic.json @@ -0,0 +1,84 @@ +{ + "product_id": "api_152e2c60-3c32-4f8f-bb9e-9ad4e8f55709", + "tool_description": "API for NFT-commerce. Mint and trade NFTs on 250+ blockchains with simple REST API", + "home_url": "https://rapidapi.com/thentic-thentic-default/api/thentic/", + "name": "Thentic", + "title": "Thentic", + "pricing": "FREE", + "tool_name": "Thentic", + "score": { + "avgServiceLevel": 100, + "avgLatency": 793, + "avgSuccessRate": 100, + "popularityScore": 8.3, + "__typename": "Score" + }, + "host": "thentic.p.rapidapi.com", + "api_list": [ + { + "name": "New Wallet", + "url": "https://thentic.p.rapidapi.com/wallets/new", + "description": "Create new wallet for every EVM Blockchain.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/wallets/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/wallets/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Create Invoice", + "url": "https://thentic.p.rapidapi.com/invoices/new", + "description": "Create Invoices to receive payments in network's native token.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/invoices/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/invoices/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Transfer NFT", + "url": "https://thentic.p.rapidapi.com/nfts/transfer", + "description": "Transfer NFTs using existing NFT contract - must be NFT owner to transfer.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/nfts/transfer\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/nfts/transfer\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "New NFT contract", + "url": "https://thentic.p.rapidapi.com/nfts/contract", + "description": "Create new NFT contract to mint and trade NFTs.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/nfts/contract\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/nfts/contract\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Mint NFT", + "url": "https://thentic.p.rapidapi.com/nfts/mint", + "description": "Mint unique NFTs using existing NFT contract.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/nfts/mint\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://thentic.p.rapidapi.com/nfts/mint\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thentic.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tiktok_no_watermark.json b/toolbench/toolenv/tools/Tools/tiktok_no_watermark.json new file mode 100644 index 0000000000000000000000000000000000000000..c8573eeeae210fd9639d8034708b86306157463b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_no_watermark.json @@ -0,0 +1,48 @@ +{ + "tool_name":"tiktok no watermark", + "tool_description":"get tiktok no watermark video", + "title":"tiktok no watermark", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":4493, + "avgSuccessRate":100, + "popularityScore":8.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/LoveAI/api/tiktok-no-watermark5/", + "host":"tiktok-no-watermark5.p.rapidapi.com", + "api_list":[ + { + "name":"Video no watermark", + "url":"https://tiktok-no-watermark5.p.rapidapi.com/video/no_watermark", + "description":"Get no watermark video.", + "method":"GET", + "required_parameters":[ + { + "name":"video_url", + "type":"STRING", + "description":"", + "default":"https://www.tiktok.com/@tiktok/video/7173042191730740523" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tiktok-no-watermark5.p.rapidapi.com/video/no_watermark\"\nquerystring = {\"video_url\": video_url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tiktok-no-watermark5.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "no_watermark":"https://v16m-default.tiktokcdn-us.com/70430a43d7b35ef0a225ff8ae50cbd50/638c6fc8/video/tos/useast5/tos-useast5-ve-0068c004-tx/0abca91516d0421ab5e225e598deeeda/?a=0&ch=0&cr=0&dr=0&lr=all&cd=0%7C0%7C0%7C0&cv=1&br=2070&bt=1035&cs=0&ds=6&ft=_G6uMBnZqZHmo0PiRF6BkVQLK~DsHKJ&mime_type=video_mp4&qs=0&rc=ODhpOjk3NTg8aDxoOmU7OEBpajdlbjU6ZjV2aDMzZzczNEAvYjIvLWE2NTYxLV40YTM2YSNpc2lkcjQwNDJgLS1kMS9zcw%3D%3D&l=202212040400080006BD02BAA4460528A0" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"452", + "content-type":"application/json; charset=utf-8", + "date":"Sun, 04 Dec 2022 04:00:08 GMT", + "server":"RapidAPI-1.2.8", + "x-rapidapi-region":"AWS - ap-northeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tiktok_no_watermark/api.py b/toolbench/toolenv/tools/Tools/tiktok_no_watermark/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2c8534fc8657a0c344ab689bc0d2d18766bd7747 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_no_watermark/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def video_no_watermark(video_url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get no watermark video." + + """ + url = f"https://tiktok-no-watermark5.p.rapidapi.com/video/no_watermark" + querystring = {'video_url': video_url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tiktok-no-watermark5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tiktok_qr_code.json b/toolbench/toolenv/tools/Tools/tiktok_qr_code.json new file mode 100644 index 0000000000000000000000000000000000000000..b520248900e92586eb88607e6a94788d6ea7020c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_qr_code.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Tiktok QR Code", + "tool_description":"This API takes URL of Tiktok video and returns the QR code Image.", + "title":"Tiktok QR Code", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/kiraztbrian/api/tiktok-qr-code/", + "host":"tiktok-qr-code.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_copy", + "url":"https://tiktok-qr-code.p.rapidapi.com/", + "description":"this end point takes a 'GET' request with url / string as a parameter and returns qr code image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.tiktok.com/@0kaydxraa/video/7095227114454027521?q=rick%20roll&t=1673972016644" + } + ], + "code":"import requests\n\nurl = \"https://tiktok-qr-code.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tiktok-qr-code.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tiktok_qr_code/api.py b/toolbench/toolenv/tools/Tools/tiktok_qr_code/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fcec069b2729ecf78310f6d61851df51a9119786 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_qr_code/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='https://www.tiktok.com/@0kaydxraa/video/7095227114454027521?q=rick%20roll&t=1673972016644', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "this end point takes a 'GET' request with url / string as a parameter and returns qr code image" + + """ + url = f"https://tiktok-qr-code.p.rapidapi.com/" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tiktok-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tiktok_video_downloader.json b/toolbench/toolenv/tools/Tools/tiktok_video_downloader.json new file mode 100644 index 0000000000000000000000000000000000000000..d958b67d32c6c80620db8aa21261c30049133ff3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_video_downloader.json @@ -0,0 +1,40 @@ +{ + "tool_name":"Tiktok Video Downloader", + "tool_description":"download tiktok videos ,music , thumbnail without watermark as well as access user info", + "title":"Tiktok Video Downloader", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":60, + "avgLatency":2534, + "avgSuccessRate":60, + "popularityScore":8.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/sparkdev19/api/tiktok-video-downloader10/", + "host":"tiktok-video-downloader10.p.rapidapi.com", + "api_list":[ + { + "name":"Tiktok Video Downloader", + "url":"https://tiktok-video-downloader10.p.rapidapi.com/", + "description":"get user info ,audio links, video links , user id and thumbnail", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tiktok-video-downloader10.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tiktok-video-downloader10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tiktok_video_downloader/api.py b/toolbench/toolenv/tools/Tools/tiktok_video_downloader/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fc3c9a20e8261f32f65b66e8f91f0a747db0ee72 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_video_downloader/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def tiktok_video_downloader(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "get user info ,audio links, video links , user id and thumbnail" + + """ + url = f"https://tiktok-video-downloader10.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tiktok-video-downloader10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tiktok_web_api.json b/toolbench/toolenv/tools/Tools/tiktok_web_api.json new file mode 100644 index 0000000000000000000000000000000000000000..2190db4d5587e6b8c55ba137696819fcafe43a1a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_web_api.json @@ -0,0 +1,69 @@ +{ + "tool_name":"TikTok Web API", + "tool_description":"The fastest TikTok Web API on the planet! Get useful information like user info, video info and so on!", + "title":"TikTok Web API", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":952, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/tokcount-tokcount-default/api/tiktok-web-api/", + "host":"tiktok-web-api.p.rapidapi.com", + "api_list":[ + { + "name":"User Info", + "url":"https://tiktok-web-api.p.rapidapi.com/", + "description":"Get all information about user (avatar, userId, followerCount and so on)", + "method":"GET", + "required_parameters":[ + { + "name":"type", + "type":"STRING", + "description":"", + "default":"rapidapi-userinfo" + }, + { + "name":"username", + "type":"STRING", + "description":"", + "default":"khaby.lame" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tiktok-web-api.p.rapidapi.com/\"\nquerystring = {\"type\": type, \"username\": username}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tiktok-web-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Video Info", + "url":"https://tiktok-web-api.p.rapidapi.com/", + "description":"Get all information about video (cover, download URL and so on)", + "method":"GET", + "required_parameters":[ + { + "name":"username", + "type":"NUMBER", + "description":"", + "default":"7141091649597279493" + }, + { + "name":"type", + "type":"STRING", + "description":"", + "default":"rapidapi-videoinfo" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tiktok-web-api.p.rapidapi.com/\"\nquerystring = {\"username\": username, \"type\": type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tiktok-web-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tiktok_web_api/api.py b/toolbench/toolenv/tools/Tools/tiktok_web_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6278e35e107484ef3ca24ed01a35370d61aec5cd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tiktok_web_api/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def user_info(type: str, username: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all information about user (avatar, userId, followerCount and so on)" + + """ + url = f"https://tiktok-web-api.p.rapidapi.com/" + querystring = {'type': type, 'username': username, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tiktok-web-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def video_info(username: int, type: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all information about video (cover, download URL and so on)" + + """ + url = f"https://tiktok-web-api.p.rapidapi.com/" + querystring = {'username': username, 'type': type, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tiktok-web-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/time_converter.json b/toolbench/toolenv/tools/Tools/time_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..6c9be119ff01b28cf8dea7024b5f2ea60d948a54 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/time_converter.json @@ -0,0 +1,62 @@ +{ + "tool_name":"Time Converter", + "tool_description":"Time converter API is here to help you to convert any time from any timezone to any other timezones time", + "title":"Time Converter", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":67, + "avgLatency":277, + "avgSuccessRate":67, + "popularityScore":8.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ASHFAQSOLANGI/api/time-converter1/", + "host":"time-converter1.p.rapidapi.com", + "api_list":[ + { + "name":"Convert Time", + "url":"https://time-converter1.p.rapidapi.com/convert/", + "description":"This endpoint can convert input time and to any output timezone's time", + "method":"GET", + "required_parameters":[ + { + "name":"input_tz", + "type":"STRING", + "description":"", + "default":"Asia/Karachi" + }, + { + "name":"output_tz", + "type":"STRING", + "description":"", + "default":"Asia/Dubai" + }, + { + "name":"input_time", + "type":"STRING", + "description":"", + "default":"2023-04-19 8:52:00" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://time-converter1.p.rapidapi.com/convert/\"\nquerystring = {\"input_tz\": input_tz, \"output_tz\": output_tz, \"input_time\": input_time}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"time-converter1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get List of timezones", + "url":"https://time-converter1.p.rapidapi.com/timezones/", + "description":"Get List of all global timezones", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://time-converter1.p.rapidapi.com/timezones/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"time-converter1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/time_converter/api.py b/toolbench/toolenv/tools/Tools/time_converter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bad3e7186f606cbaa3740b016dad04f677da01c2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/time_converter/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def convert_time(input_tz: str, output_tz: str, input_time: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint can convert input time and to any output timezone's time" + + """ + url = f"https://time-converter1.p.rapidapi.com/convert/" + querystring = {'input_tz': input_tz, 'output_tz': output_tz, 'input_time': input_time, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "time-converter1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_list_of_timezones(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get List of all global timezones" + + """ + url = f"https://time-converter1.p.rapidapi.com/timezones/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "time-converter1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/timet.json b/toolbench/toolenv/tools/Tools/timet.json new file mode 100644 index 0000000000000000000000000000000000000000..c3afe107ff81fc9c752ba7615c68211710808ad7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/timet.json @@ -0,0 +1,24 @@ +{ + "tool_name":"timet", + "tool_description":"API calculate time travel base on velocity and distance", + "title":"timet", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/jetaiyahill325/api/timet/", + "host":"timet.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://timet.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://timet.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timet.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/timet/api.py b/toolbench/toolenv/tools/Tools/timet/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f5fbc51a27d590f998bfd272a3a0b8b3100c75c4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/timet/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://timet.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timet.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tin_check.json b/toolbench/toolenv/tools/Tools/tin_check.json new file mode 100644 index 0000000000000000000000000000000000000000..63021c69e26f94b0f5a61aad650ef4301af6f2d2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tin_check.json @@ -0,0 +1,85 @@ +{ + "tool_name": "TIN Check", + "tool_description": "TIN-check.com is a validation service for TIN numbers all around the world. This service allows you to search, discover, consult company TINs and even validate any TIN for the selected country. The Tax Identification Number (TIN) can assume different designations and format accordingly with the legislation of each country. Tax Number validation is available for more than 100 countries.", + "title": "TIN Check", + "pricing": "FREE", + "score": null, + "home_url": "https://rapidapi.com/deltasys/api/tin-check/", + "host": "tin-check.p.rapidapi.com", + "api_list": [ + { + "name": "Get Token", + "url": "https://tin-check.p.rapidapi.com/api.php?op=gt", + "description": "This operation returns a token so that it can make requests to the tin number validation api", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=gt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "TIN Lookup", + "url": "https://tin-check.p.rapidapi.com/api.php?op=tl&tn=999999990&ca=pt&tk=required", + "description": "Through this operation you know if the tin number is valid or not and more information", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=tl&tn=999999990&ca=pt&tk=required\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "TIN Check", + "url": "https://tin-check.p.rapidapi.com/api.php?op=tc&tn=999999990&ca=pt&tk=required", + "description": "Through this operation you know if the tin number is valid or not", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=tc&tn=999999990&ca=pt&tk=required\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "New Token", + "url": "https://tin-check.p.rapidapi.com/api.php?op=nt", + "description": "This operation returns a token so that it can make requests to the tin number validation api", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=nt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Get Token", + "url": "https://tin-check.p.rapidapi.com/api.php?op=gt", + "description": "This operation returns a token so that it can make requests to the tin number validation api", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=gt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=gt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "New Token", + "url": "https://tin-check.p.rapidapi.com/api.php?op=nt", + "description": "This operation returns a token so that it can make requests to the tin number validation api", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=nt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tin-check.p.rapidapi.com/api.php?op=nt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tin-check.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tin_check/api.py b/toolbench/toolenv/tools/Tools/tin_check/api.py new file mode 100644 index 0000000000000000000000000000000000000000..672368637df50b2564d53d053e4d6d354cec373d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tin_check/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def tin_lookup(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Through this operation you know if the tin number is valid or not and more information" + + """ + url = f"https://tin-check.p.rapidapi.com/api.php?op=tl&tn=999999990&ca=pt&tk=required" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tin-check.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def tin_check(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Through this operation you know if the tin number is valid or not" + + """ + url = f"https://tin-check.p.rapidapi.com/api.php?op=tc&tn=999999990&ca=pt&tk=required" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tin-check.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tldp.json b/toolbench/toolenv/tools/Tools/tldp.json new file mode 100644 index 0000000000000000000000000000000000000000..623d119ed89a32a36739857de48b4c1d1aefa968 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tldp.json @@ -0,0 +1,907 @@ +{ + "tool_name":"tldp", + "tool_description":"This API allow you to get the compiled TLD, Top Level Domain prices from serveral Registrars.", + "title":"tldp", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/augcampos/api/tldp/", + "host":"tldp.p.rapidapi.com", + "api_list":[ + { + "name":"List Registrars", + "url":"https://tldp.p.rapidapi.com/registrar", + "description":"Get the list of the Registrars\n\n> Only some Registrars are available for now, new ones will be added in the future", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + }, + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/registrar\"\nquerystring = {\"limit\": limit, \"skip\": skip}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":1, + "registrar":"amen.pt" + }, + { + "id":2, + "registrar":"dominios.pt" + }, + { + "id":3, + "registrar":"dreamhost.com" + }, + { + "id":4, + "registrar":"gandi.net" + }, + { + "id":5, + "registrar":"hetzner.com" + }, + { + "id":6, + "registrar":"namecheap.com" + }, + { + "id":7, + "registrar":"ovh.pt" + }, + { + "id":8, + "registrar":"porkbun.com" + }, + { + "id":9, + "registrar":"ptisp.pt" + }, + { + "id":10, + "registrar":"sav.com" + } + ], + "limits":{ + "take":25, + "skip":0 + }, + "count":10 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"388", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 22:23:34 GMT", + "etag":"\"151zaixfxvcas\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/registrar", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::cvlpg-1662071011734-2ab2391811f8" + }, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"integer" + }, + "registrar":{ + "type":"string" + } + } + } + }, + "limits":{ + "type":"object", + "properties":{ + "take":{ + "type":"integer" + }, + "skip":{ + "type":"integer" + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"Get all Registrar by Id", + "url":"https://tldp.p.rapidapi.com/registrar/{id}", + "description":"Get the info for a particular Registrar", + "method":"GET", + "required_parameters":[ + { + "name":"Id", + "type":"NUMBER", + "description":"", + "default":"3" + } + ], + "optional_parameters":[ + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/registrar/{id}\"\nquerystring = {\"skip\": skip, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":3, + "registrar":"dreamhost.com" + } + ], + "count":1 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"57", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 22:52:14 GMT", + "etag":"\"nuf2eop4v11l\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/registrar/[id]", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::jqc5j-1662072733781-c17190cb8cd0" + }, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"integer" + }, + "registrar":{ + "type":"string" + } + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"Get all Registrar by Name", + "url":"https://tldp.p.rapidapi.com/registrar/{name}", + "description":"Get the info for a particular Registrar", + "method":"GET", + "required_parameters":[ + { + "name":"Name", + "type":"string", + "description":"", + "default":"dreamhost.com" + } + ], + "optional_parameters":[ + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/registrar/{name}\"\nquerystring = {\"skip\": skip, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":3, + "registrar":"dreamhost.com" + } + ], + "count":1 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"57", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 22:49:56 GMT", + "etag":"\"nuf2eop4v11l\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/registrar/[id]", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::w2ww5-1662072593702-d2e2de525938" + }, + "schema":{} + }, + { + "name":"List TLDs", + "url":"https://tldp.p.rapidapi.com/tld", + "description":"Get the list of the TLDs, Top Level Domain", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + }, + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/tld\"\nquerystring = {\"limit\": limit, \"skip\": skip}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":1, + "tld":".slupsk.pl" + }, + { + "id":2, + "tld":".it" + }, + { + "id":3, + "tld":".com.sc" + }, + { + "id":4, + "tld":".taxi" + }, + { + "id":5, + "tld":".doctor" + }, + { + "id":6, + "tld":".spa" + }, + { + "id":7, + "tld":".reisen" + }, + { + "id":8, + "tld":".八卦" + }, + { + "id":9, + "tld":".hiphop" + }, + { + "id":10, + "tld":".melbourne" + }, + { + "id":11, + "tld":".mobi" + }, + { + "id":12, + "tld":".black" + }, + { + "id":13, + "tld":".univ.sn" + }, + { + "id":14, + "tld":".okinawa" + }, + { + "id":15, + "tld":".travel.pl" + }, + { + "id":16, + "tld":".net.hn" + }, + { + "id":17, + "tld":".voyage" + }, + { + "id":18, + "tld":".tube" + }, + { + "id":19, + "tld":".kalisz.pl" + }, + { + "id":20, + "tld":".pictures" + }, + { + "id":21, + "tld":".ht" + }, + { + "id":22, + "tld":".perso.tn" + }, + { + "id":23, + "tld":".ovh" + }, + { + "id":24, + "tld":".construction" + }, + { + "id":25, + "tld":".kutno.pl" + } + ], + "limits":{ + "take":25, + "skip":0 + }, + "count":25 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"697", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 20:56:13 GMT", + "etag":"\"3u8bmjwlvfj9\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/tld", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::s9cmz-1662065772817-ce64d4b07b2e" + }, + "schema":{} + }, + { + "name":"List Registrar Prices", + "url":"https://tldp.p.rapidapi.com/price/registrar/{name}", + "description":"Get the list of the Registrars\n\n> Only some Registrars are available for now, new ones will be added in the future", + "method":"GET", + "required_parameters":[ + { + "name":"Name", + "type":"string", + "description":"", + "default":"dreamhost.com" + } + ], + "optional_parameters":[ + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/price/registrar/{name}\"\nquerystring = {\"skip\": skip, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":1, + "registrar":"amen.pt" + }, + { + "id":2, + "registrar":"dominios.pt" + }, + { + "id":3, + "registrar":"dreamhost.com" + }, + { + "id":4, + "registrar":"gandi.net" + }, + { + "id":5, + "registrar":"hetzner.com" + }, + { + "id":6, + "registrar":"namecheap.com" + }, + { + "id":7, + "registrar":"ovh.pt" + }, + { + "id":8, + "registrar":"porkbun.com" + }, + { + "id":9, + "registrar":"ptisp.pt" + }, + { + "id":10, + "registrar":"sav.com" + } + ], + "limits":{ + "take":25, + "skip":0 + }, + "count":10 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"388", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 22:23:34 GMT", + "etag":"\"151zaixfxvcas\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/registrar", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::cvlpg-1662071011734-2ab2391811f8" + }, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"integer" + }, + "registrar":{ + "type":"string" + } + } + } + }, + "limits":{ + "type":"object", + "properties":{ + "take":{ + "type":"integer" + }, + "skip":{ + "type":"integer" + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"List TLD Prices", + "url":"https://tldp.p.rapidapi.com/price/tld/{name}", + "description":"Get the list of the Registrars\n\n> Only some Registrars are available for now, new ones will be added in the future", + "method":"GET", + "required_parameters":[ + { + "name":"Name", + "type":"string", + "description":"", + "default":".pt" + } + ], + "optional_parameters":[ + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/price/tld/{name}\"\nquerystring = {\"skip\": skip, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":1, + "registrar":"amen.pt" + }, + { + "id":2, + "registrar":"dominios.pt" + }, + { + "id":3, + "registrar":"dreamhost.com" + }, + { + "id":4, + "registrar":"gandi.net" + }, + { + "id":5, + "registrar":"hetzner.com" + }, + { + "id":6, + "registrar":"namecheap.com" + }, + { + "id":7, + "registrar":"ovh.pt" + }, + { + "id":8, + "registrar":"porkbun.com" + }, + { + "id":9, + "registrar":"ptisp.pt" + }, + { + "id":10, + "registrar":"sav.com" + } + ], + "limits":{ + "take":25, + "skip":0 + }, + "count":10 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"388", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 22:23:34 GMT", + "etag":"\"151zaixfxvcas\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/registrar", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::cvlpg-1662071011734-2ab2391811f8" + }, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"integer" + }, + "registrar":{ + "type":"string" + } + } + } + }, + "limits":{ + "type":"object", + "properties":{ + "take":{ + "type":"integer" + }, + "skip":{ + "type":"integer" + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"List Prices", + "url":"https://tldp.p.rapidapi.com/price", + "description":"Get the list of the Registrars\n\n> Only some Registrars are available for now, new ones will be added in the future", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + }, + { + "name":"skip", + "type":"NUMBER", + "description":"", + "default":"0" + } + ], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/price\"\nquerystring = {\"limit\": limit, \"skip\": skip}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":1, + "registrar":"amen.pt" + }, + { + "id":2, + "registrar":"dominios.pt" + }, + { + "id":3, + "registrar":"dreamhost.com" + }, + { + "id":4, + "registrar":"gandi.net" + }, + { + "id":5, + "registrar":"hetzner.com" + }, + { + "id":6, + "registrar":"namecheap.com" + }, + { + "id":7, + "registrar":"ovh.pt" + }, + { + "id":8, + "registrar":"porkbun.com" + }, + { + "id":9, + "registrar":"ptisp.pt" + }, + { + "id":10, + "registrar":"sav.com" + } + ], + "limits":{ + "take":25, + "skip":0 + }, + "count":10 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"388", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 22:23:34 GMT", + "etag":"\"151zaixfxvcas\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/registrar", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::cvlpg-1662071011734-2ab2391811f8" + }, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"integer" + }, + "registrar":{ + "type":"string" + } + } + } + }, + "limits":{ + "type":"object", + "properties":{ + "take":{ + "type":"integer" + }, + "skip":{ + "type":"integer" + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"Get TLD by Name", + "url":"https://tldp.p.rapidapi.com/tld/{name}", + "description":"Get the info for a particular Registrar", + "method":"GET", + "required_parameters":[ + { + "name":"Name", + "type":"string", + "description":"Please make sure it starts with a dot ex: **.**pt", + "default":".pt" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/tld/{name}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":562, + "tld":".pt" + } + ], + "count":1 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"43", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 21:01:18 GMT", + "etag":"\"12bosj7srtc17\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/tld/[id]", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::jqc5j-1662066078453-a3a4acabb352" + }, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"integer" + }, + "tld":{ + "type":"string" + } + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"Get TLD by Id", + "url":"https://tldp.p.rapidapi.com/tld/{id}", + "description":"Get the info for a particular Registrar", + "method":"GET", + "required_parameters":[ + { + "name":"Id", + "type":"NUMBER", + "description":"", + "default":"9" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tldp.p.rapidapi.com/tld/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tldp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "id":9, + "tld":".hiphop" + } + ], + "count":1 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-length":"45", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 01 Sep 2022 20:55:30 GMT", + "etag":"\"dguu0v88hv19\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "x-matched-path":"/api/tld/[id]", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-id":"dub1::iad1::2t7tt-1662065729355-f58f2f36ff95" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tldp/api.py b/toolbench/toolenv/tools/Tools/tldp/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e8e907b8c1e5032f4aedced161c638b5425e336d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tldp/api.py @@ -0,0 +1,234 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_registrars(limit: int=25, skip: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of the Registrars + + > Only some Registrars are available for now, new ones will be added in the future" + + """ + url = f"https://tldp.p.rapidapi.com/registrar" + querystring = {} + if limit: + querystring['limit'] = limit + if skip: + querystring['skip'] = skip + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_registrar_by_id(is_id: int, skip: int=0, limit: int=25, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the info for a particular Registrar" + + """ + url = f"https://tldp.p.rapidapi.com/registrar/{is_id}" + querystring = {} + if skip: + querystring['skip'] = skip + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_registrar_by_name(name: str, skip: int=0, limit: int=25, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the info for a particular Registrar" + + """ + url = f"https://tldp.p.rapidapi.com/registrar/{name}" + querystring = {} + if skip: + querystring['skip'] = skip + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_tlds(limit: int=25, skip: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of the TLDs, Top Level Domain" + + """ + url = f"https://tldp.p.rapidapi.com/tld" + querystring = {} + if limit: + querystring['limit'] = limit + if skip: + querystring['skip'] = skip + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_registrar_prices(name: str, skip: int=0, limit: int=25, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of the Registrars + + > Only some Registrars are available for now, new ones will be added in the future" + + """ + url = f"https://tldp.p.rapidapi.com/price/registrar/{name}" + querystring = {} + if skip: + querystring['skip'] = skip + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_tld_prices(name: str, skip: int=0, limit: int=25, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of the Registrars + + > Only some Registrars are available for now, new ones will be added in the future" + + """ + url = f"https://tldp.p.rapidapi.com/price/tld/{name}" + querystring = {} + if skip: + querystring['skip'] = skip + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_prices(limit: int=25, skip: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of the Registrars + + > Only some Registrars are available for now, new ones will be added in the future" + + """ + url = f"https://tldp.p.rapidapi.com/price" + querystring = {} + if limit: + querystring['limit'] = limit + if skip: + querystring['skip'] = skip + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_tld_by_name(name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the info for a particular Registrar" + name: Please make sure it starts with a dot ex: **.**pt + + """ + url = f"https://tldp.p.rapidapi.com/tld/{name}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_tld_by_id(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the info for a particular Registrar" + + """ + url = f"https://tldp.p.rapidapi.com/tld/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tldp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tly_link_shortener.json b/toolbench/toolenv/tools/Tools/tly_link_shortener.json new file mode 100644 index 0000000000000000000000000000000000000000..41b4bcda4357c93a9bb45d2ccd40655fb4618018 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tly_link_shortener.json @@ -0,0 +1,247 @@ +{ + "tool_name": "TLY Link Shortener", + "tool_description": "URL Shortener, Custom Domain & Link Management", + "title": "TLY Link Shortener", + "pricing": "FREE", + "score": { + "avgServiceLevel": 100, + "avgLatency": 176, + "avgSuccessRate": 100, + "popularityScore": 8.2, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/linkshortenextension/api/tly-link-shortener/", + "host": "tly-link-shortener.p.rapidapi.com", + "api_list": [ + { + "name": "Update", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link", + "description": "", + "method": "PUT", + "required_parameters": [ + { + "name": "long_url", + "type": "STRING", + "description": "", + "default": "https://t.ly/OYXL" + }, + { + "name": "short_url", + "type": "STRING", + "description": "", + "default": "https://t.ly/OYXL" + }, + { + "name": "expire_at_time", + "type": "STRING", + "description": "", + "default": "2018-10-06 20:14:45" + }, + { + "name": "api_token", + "type": "STRING", + "description": "", + "default": "xxxxxxxxx" + }, + { + "name": "expire_at_views", + "type": "STRING", + "description": "", + "default": "9" + }, + { + "name": "Accept", + "type": "STRING", + "description": "", + "default": "\"application/json\"" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link\"\nquerystring = {\"long_url\": long_url, \"short_url\": short_url, \"expire_at_time\": expire_at_time, \"api_token\": api_token, \"expire_at_views\": expire_at_views, \"Accept\": accept}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Shorten", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link/shorten", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "long_url", + "type": "STRING", + "description": "", + "default": "http://example.com/" + }, + { + "name": "api_token", + "type": "STRING", + "description": "", + "default": "xxxxxxxxx" + }, + { + "name": "domain", + "type": "STRING", + "description": "", + "default": "https://t.ly/" + }, + { + "name": "Accept", + "type": "STRING", + "description": "", + "default": "\"application/json\"" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/shorten\"\nquerystring = {\"long_url\": long_url, \"api_token\": api_token, \"domain\": domain, \"Accept\": accept}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Stats", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link/stats?short_url=https%3A%2F%2Ft.ly%2FOYXL&api_token=xxxxxxxxx", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "Accept", + "type": "STRING", + "description": "", + "default": "\"application/json\"" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/stats?short_url=https%3A%2F%2Ft.ly%2FOYXL&api_token=xxxxxxxxx\"\nquerystring = {\"Accept\": accept}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Delete", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link", + "description": "", + "method": "DELETE", + "required_parameters": [ + { + "name": "Accept", + "type": "STRING", + "description": "", + "default": "\"application/json\"" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link\"\nquerystring = {\"Accept\": accept}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.delete(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Expand", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link/expand", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "api_token", + "type": "STRING", + "description": "", + "default": "xxxxxxxxx" + }, + { + "name": "password", + "type": "STRING", + "description": "", + "default": "password123" + }, + { + "name": "short_url", + "type": "STRING", + "description": "", + "default": "https://t.ly/OYXL" + }, + { + "name": "Accept", + "type": "STRING", + "description": "", + "default": "\"application/json\"" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/expand\"\nquerystring = {\"api_token\": api_token, \"password\": password, \"short_url\": short_url, \"Accept\": accept}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Shorten", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link/shorten", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "long_url", + "type": "STRING", + "description": "", + "default": "http://example.com/" + }, + { + "name": "api_token", + "type": "STRING", + "description": "", + "default": "xxxxxxxxx" + }, + { + "name": "domain", + "type": "STRING", + "description": "", + "default": "https://t.ly/" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/shorten\"\nquerystring = {\"long_url\": \"http://example.com/\", \"api_token\": \"xxxxxxxxx\", \"domain\": \"https://t.ly/\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/shorten\"\nquerystring = {\"long_url\": \"http://example.com/\", \"api_token\": \"xxxxxxxxx\", \"domain\": \"https://t.ly/\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Expand", + "url": "https://tly-link-shortener.p.rapidapi.com/api/v1/link/expand", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "api_token", + "type": "STRING", + "description": "", + "default": "xxxxxxxxx" + }, + { + "name": "password", + "type": "STRING", + "description": "", + "default": "password123" + }, + { + "name": "short_url", + "type": "STRING", + "description": "", + "default": "https://t.ly/OYXL" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/expand\"\nquerystring = {\"api_token\": \"xxxxxxxxx\", \"password\": \"password123\", \"short_url\": \"https://t.ly/OYXL\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tly-link-shortener.p.rapidapi.com/api/v1/link/expand\"\nquerystring = {\"api_token\": \"xxxxxxxxx\", \"password\": \"password123\", \"short_url\": \"https://t.ly/OYXL\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tly-link-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tly_link_shortener/api.py b/toolbench/toolenv/tools/Tools/tly_link_shortener/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7b4e808e4343a492e2c01a9a7ed5978ff96a2c4d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tly_link_shortener/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def stats(accept: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://tly-link-shortener.p.rapidapi.com/api/v1/link/stats?short_url=https%3a%2f%2ft.ly%2foyxl&api_token=xxxxxxxxx" + querystring = {'Accept': accept, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tly-link-shortener.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tmail.json b/toolbench/toolenv/tools/Tools/tmail.json new file mode 100644 index 0000000000000000000000000000000000000000..83128bed9b72931d38cc3fa1f0cf3f7ad2e74bb0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tmail.json @@ -0,0 +1,76 @@ +{ + "tool_name":"Tmail", + "tool_description":"Temporary Disposable Email Address | Disposable email is a service that allows to receive email at a temporary address that self-destructed after a certain time elapses.", + "title":"Tmail", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":247, + "avgSuccessRate":86, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/sdc14359-6xmESRqt8eH/api/tmail2/", + "host":"tmail2.p.rapidapi.com", + "api_list":[ + { + "name":"View message", + "url":"https://tmail2.p.rapidapi.com/messages/{id}", + "description":"View a particular message by id\nUse the token received from /mailbox as authorization header & message id received from /messages as path parameter.", + "method":"GET", + "required_parameters":[ + { + "name":"Authorization", + "type":"STRING", + "description":"", + "default":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1dWlkIjoiMmY4ZjhkNDJiMTk0NDcwZWEzMjRhZTNmN2IwOTRjZDciLCJtYWlsYm94IjoiZmVqZXdvMzgzMEB4eHl4aS5jb20iLCJpYXQiOjE2NDEwNTk0MzF9.Ry72OYwVlv0Az2XMiETXVOSV1o7yPCt66UZ-L5se5r" + }, + { + "name":"id", + "type":"string", + "description":"", + "default":"61d096c5d9aaba03c45cd012" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tmail2.p.rapidapi.com/messages/{id}\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tmail2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Messages", + "url":"https://tmail2.p.rapidapi.com/messages", + "description":"Get all the messages received by email\nUse the token received from email as authorization header.", + "method":"GET", + "required_parameters":[ + { + "name":"Authorization", + "type":"STRING", + "description":"", + "default":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1dWlkIjoiNGExYmQwMmE3NzIyNGViYThiNWQ1MjI3NTRlNWI0M2EiLCJtYWlsYm94IjoiamVob2tvdDUyNEB2ZWI2NS5jb20iLCJpYXQiOjE2NDEwNjI5NjN9.YBMTdmS6aH7TDpTdH-tbaENWxh0JZJrg3Q9KTi7wNb" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tmail2.p.rapidapi.com/messages\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tmail2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Email ID", + "url":"https://tmail2.p.rapidapi.com/mailbox", + "description":"Get Email ID for Mailbox", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://tmail2.p.rapidapi.com/mailbox\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tmail2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tmail/api.py b/toolbench/toolenv/tools/Tools/tmail/api.py new file mode 100644 index 0000000000000000000000000000000000000000..849192de54c91ccfceb38549c78e1703013ef81e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tmail/api.py @@ -0,0 +1,73 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def view_message(authorization: str, is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "View a particular message by id + Use the token received from /mailbox as authorization header & message id received from /messages as path parameter." + + """ + url = f"https://tmail2.p.rapidapi.com/messages/{is_id}" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tmail2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_messages(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all the messages received by email + Use the token received from email as authorization header." + + """ + url = f"https://tmail2.p.rapidapi.com/messages" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tmail2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_email_id(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Email ID for Mailbox" + + """ + url = f"https://tmail2.p.rapidapi.com/mailbox" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tmail2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/todo.json b/toolbench/toolenv/tools/Tools/todo.json new file mode 100644 index 0000000000000000000000000000000000000000..be4448995faf29ebb8797029b2a3ff543972387c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/todo.json @@ -0,0 +1,40 @@ +{ + "product_id": "api_860f60d5-45a8-489c-97d8-112bf331229c", + "tool_description": "REST API for managing todo list applications. \n\nCreate, search, delete and update operations are implemented.", + "home_url": "https://rapidapi.com/marcocollatina/api/todo42/", + "name": "Todo", + "title": "Todo", + "pricing": "FREEMIUM", + "tool_name": "Todo", + "score": { + "avgServiceLevel": 64, + "avgLatency": 327, + "avgSuccessRate": 48, + "popularityScore": 8.3, + "__typename": "Score" + }, + "host": "todo42.p.rapidapi.com", + "api_list": [ + { + "name": "getTodoUsingGET", + "url": "https://todo42.p.rapidapi.com/todo/{id}", + "description": "Get todo from id", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "id", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://todo42.p.rapidapi.com/todo/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"todo42.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://todo42.p.rapidapi.com/todo/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"todo42.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "todo" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/todo/api.py b/toolbench/toolenv/tools/Tools/todo/api.py new file mode 100644 index 0000000000000000000000000000000000000000..df3f6cb6594c7bfacf91f5eabb355409d6789f15 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/todo/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def gettodousingget(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get todo from id" + id: id + + """ + url = f"https://todo42.p.rapidapi.com/todo/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "todo42.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/todo_api.json b/toolbench/toolenv/tools/Tools/todo_api.json new file mode 100644 index 0000000000000000000000000000000000000000..5a1db67f318da7a30a7a6bbbe14c071f78671fa9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/todo_api.json @@ -0,0 +1,48 @@ +{ + "product_id": "api_2a5b9c3e-9f3e-46c9-8115-93cab96b0bd7", + "tool_description": "Todo application for API lovers", + "home_url": "https://rapidapi.com/taunovich452/api/todo-api7/", + "name": "todo-api", + "title": "todo-api", + "pricing": "FREEMIUM", + "tool_name": "todo-api", + "score": null, + "host": "todo-api7.p.rapidapi.com", + "api_list": [ + { + "name": "CreateaTask", + "url": "https://todo-api7.p.rapidapi.com/tasks", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://todo-api7.p.rapidapi.com/tasks\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"todo-api7.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://todo-api7.p.rapidapi.com/tasks\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"todo-api7.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/token_api.json b/toolbench/toolenv/tools/Tools/token_api.json new file mode 100644 index 0000000000000000000000000000000000000000..37d3adde485250d6ca1c89e15f3bbf8352e39f39 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/token_api.json @@ -0,0 +1,30 @@ +{ + "tool_name":"Token API", + "tool_description":"Generate a new token for Unlimited Language API. Token is only valid for ~5 minuts, so it has to be generated frequently", + "title":"Token API", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":38, + "avgSuccessRate":100, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/opensorted/api/token-api/", + "host":"token-api.p.rapidapi.com", + "api_list":[ + { + "name":"generate", + "url":"https://token-api.p.rapidapi.com/", + "description":"Generate a new token for Language API", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://token-api.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"token-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/token_api/api.py b/toolbench/toolenv/tools/Tools/token_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6effd5efc225ae4a35ffc198882f621fcc216ccd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/token_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a new token for Language API" + + """ + url = f"https://token-api.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "token-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/tools_town.json b/toolbench/toolenv/tools/Tools/tools_town.json new file mode 100644 index 0000000000000000000000000000000000000000..8e48bfec833d561881ce8563e39ad02081c93adf --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tools_town.json @@ -0,0 +1,62 @@ +{ + "product_id": "api_a42fa0a5-4a6c-4885-8d26-c7d4475fe813", + "tool_description": "The API which provide an amazing endpoints for the personal profestional and business needs.", + "home_url": "https://rapidapi.com/surror/api/tools-town/", + "name": "Tools.Town", + "title": "Tools.Town", + "pricing": "PAID", + "tool_name": "Tools.Town", + "score": null, + "host": "tools-town.p.rapidapi.com", + "api_list": [ + { + "name": "Face Crop from Image", + "url": "https://tools-town.p.rapidapi.com/face-crop-from-image", + "description": "Extract the face from the image of single person.", + "method": "POST", + "required_parameters": [ + { + "name": "base64", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "format", + "type": "STRING", + "description": "", + "default": "jpeg" + }, + { + "name": "height", + "type": "NUMBER", + "description": "", + "default": "250" + }, + { + "name": "zoom", + "type": "NUMBER", + "description": "", + "default": "0.7" + }, + { + "name": "width", + "type": "NUMBER", + "description": "", + "default": "250" + }, + { + "name": "quality", + "type": "NUMBER", + "description": "", + "default": "100" + } + ], + "code": "import requests\n\nurl = \"https://tools-town.p.rapidapi.com/face-crop-from-image\"\nquerystring = {\"format\": \"jpeg\", \"height\": \"250\", \"zoom\": \"0.7\", \"width\": \"250\", \"quality\": \"100\", \"base64\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tools-town.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tools-town.p.rapidapi.com/face-crop-from-image\"\nquerystring = {\"format\": \"jpeg\", \"height\": \"250\", \"zoom\": \"0.7\", \"width\": \"250\", \"quality\": \"100\", \"base64\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tools-town.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tools_town_v2/api.py b/toolbench/toolenv/tools/Tools/tools_town_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..78b03bc0b969ad930a1bb08b8ec90174dfde7d08 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tools_town_v2/api.py @@ -0,0 +1,94 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def shayari_generator(category: str, language: str='Marathi', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate the Shayari in English, Hindi, Marathi, Telugu, Kannada, and other + languages." + + """ + url = f"https://tools-town.p.rapidapi.com/shayari-generator/" + querystring = {'category': category, } + if language: + querystring['language'] = language + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tools-town.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def compress_image(url: str, height: int=1000, width: int=1000, format: str=' webp', quality: int=80, download: str='yes', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Compress the image on fly. + + Use the quality, height, width, and format and get the optimized image as you want. + + - url - (required) The image URL. + - quality - (optional) The image quality from 0 to 100. Default 80. + - format - (optional) auto, jpg, jpeg, webp, avif, or png. Default auto. + - width - (optional) The image max width. Default auto. + - height - (optional) The image max height. Default auto. + - download - (optional) Download the image or just get the image data as response. Use download=yes to download the optimized image. Default ''" + + """ + url = f"https://tools-town.p.rapidapi.com/compress-image" + querystring = {'url': url, } + if height: + querystring['height'] = height + if width: + querystring['width'] = width + if format: + querystring['format'] = format + if quality: + querystring['quality'] = quality + if download: + querystring['download'] = download + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tools-town.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def extract_images_from_website(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Do you want to extract the images from the websites? + Then, Use our API which allow you to fetch the images from the 3rd party website." + + """ + url = f"https://tools-town.p.rapidapi.com/extract-images-from-website" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tools-town.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/top_keywords_of_a_website.json b/toolbench/toolenv/tools/Tools/top_keywords_of_a_website.json new file mode 100644 index 0000000000000000000000000000000000000000..4a54b6f9e24f27ae1a31e46b72dc1b078216c646 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/top_keywords_of_a_website.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Top Keywords of a website", + "tool_description":"Find the top perfoming keywords of a website. Get Keywords, Country, Rank, Volume, etc", + "title":"Top Keywords of a website", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":4242, + "avgSuccessRate":100, + "popularityScore":8.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ajithjojo1230/api/top-keywords-of-a-website/", + "host":"top-keywords-of-a-website.p.rapidapi.com", + "api_list":[ + { + "name":"Get Keywords", + "url":"https://top-keywords-of-a-website.p.rapidapi.com/topsearchkeywords.php", + "description":"Get top performing keywords of a domain name", + "method":"GET", + "required_parameters":[ + { + "name":"domain", + "type":"STRING", + "description":"", + "default":"codeconia.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://top-keywords-of-a-website.p.rapidapi.com/topsearchkeywords.php\"\nquerystring = {\"domain\": domain}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"top-keywords-of-a-website.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/top_keywords_of_a_website/api.py b/toolbench/toolenv/tools/Tools/top_keywords_of_a_website/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4efbbd588fa0beaddfa12cf2db6f91b956baa8e4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/top_keywords_of_a_website/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_keywords(domain: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get top performing keywords of a domain name" + + """ + url = f"https://top-keywords-of-a-website.p.rapidapi.com/topsearchkeywords.php" + querystring = {'domain': domain, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "top-keywords-of-a-website.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/top_radio.json b/toolbench/toolenv/tools/Tools/top_radio.json new file mode 100644 index 0000000000000000000000000000000000000000..e9f0c5b467a0c12171385da82373ccbfe7ecea76 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/top_radio.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Top Radio", + "tool_description":"API retrun top radio channel by country", + "title":"Top Radio", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/kubowzachary809/api/top-radio/", + "host":"top-radio.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://top-radio.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://top-radio.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"top-radio.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/top_radio/api.py b/toolbench/toolenv/tools/Tools/top_radio/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0ae89c5df897e0d4e57f6d4d530ea563b3bbfc7a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/top_radio/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://top-radio.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "top-radio.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/topic_word_definition.json b/toolbench/toolenv/tools/Tools/topic_word_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..f6511c56d9aa395a0bd2b3bfb35be8d5c5be159b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/topic_word_definition.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Topic Word Definition", + "tool_description":"word definition and related word in topic", + "title":"Topic Word Definition", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/tommieleemiller135/api/topic-word-definition/", + "host":"topic-word-definition.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://topic-word-definition.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://topic-word-definition.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"topic-word-definition.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/topic_word_definition/api.py b/toolbench/toolenv/tools/Tools/topic_word_definition/api.py new file mode 100644 index 0000000000000000000000000000000000000000..edd2ee7ea53c35f8510d9845fde287045fb85db3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/topic_word_definition/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://topic-word-definition.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "topic-word-definition.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/torrent_search.json b/toolbench/toolenv/tools/Tools/torrent_search.json new file mode 100644 index 0000000000000000000000000000000000000000..5fb33464cc7bf8867697ca945e84aaad40dd91ad --- /dev/null +++ b/toolbench/toolenv/tools/Tools/torrent_search.json @@ -0,0 +1,1227 @@ +{ + "product_id": "api_169b4f15-fd18-47f1-a9d8-10e6f29d3faf", + "tool_description": "This script is a JavaScript code that uses the @dil5han/torrent-api module to create a server that can search multiple torrent websites and return the results to the client in JSON format.", + "home_url": "https://rapidapi.com/bravindudilshan/api/torrent-search3/", + "name": "Torrent-Search", + "title": "Torrent-Search", + "pricing": "FREEMIUM", + "tool_name": "Torrent-Search", + "score": { + "avgServiceLevel": 100, + "avgLatency": 35237, + "avgSuccessRate": 100, + "popularityScore": 8.1, + "__typename": "Score" + }, + "host": "torrent-search3.p.rapidapi.com", + "api_list": [ + { + "name": "Get from piratebay", + "url": "https://torrent-search3.p.rapidapi.com/torrent/piratebay/{searchtopic}", + "description": "for piratebay", + "method": "GET", + "required_parameters": [ + { + "name": "searchtopic", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/piratebay/{searchtopic}\"\nquerystring = {\"searchtopic\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/piratebay/{searchtopic}\"\nquerystring = {\"searchtopic\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "error": "No search result available for query ({searchtopic})" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "Get from eztv", + "url": "https://torrent-search3.p.rapidapi.com/torrent/yts/cars", + "description": "can use this for search eztv", + "method": "GET", + "required_parameters": [ + { + "name": "searchtopic", + "type": "string", + "description": "", + "default": "cars" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/yts/cars\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/yts/{searchtopic}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": [ + { + "Name": "Mater's Tall Tales", + "ReleasedDate": "2008", + "Genre": "Action / Adventure / Animation / Comedy / Family / Sport", + "Rating": "\u2b50", + "Likes": "25", + "Runtime": "12 hr 35 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/maters-tall-tales-2008", + "Poster": "https://img.yts.mx/assets/images/movies/maters_tall_tales_2008/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "327.65 MB", + "Torrent": "https://yts.mx/torrent/download/16281324647D4603F9D5E589833038BBEB88D7CC", + "Magnet": "magnet:?xt=urn:btih:16281324647D4603F9D5E589833038BBEB88D7CC&dn=Mater%27s+Tall+Tales+%282008%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "673.11 MB", + "Torrent": "https://yts.mx/torrent/download/CFA84DA72D739163660A358455C6EDC103483BFF", + "Magnet": "magnet:?xt=urn:btih:CFA84DA72D739163660A358455C6EDC103483BFF&dn=Mater%27s+Tall+Tales+%282008%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "The Midnight Patrol", + "ReleasedDate": "1933", + "Genre": "Comedy", + "Rating": "\u2b50", + "Likes": "7", + "Runtime": "12 hr 19 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/the-midnight-patrol-1933", + "Poster": "https://img.yts.mx/assets/images/movies/the_midnight_patrol_1933/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "181.36 MB", + "Torrent": "https://yts.mx/torrent/download/07D46C2EC1068E3C2DCBF2B7C5637D2B22806646", + "Magnet": "magnet:?xt=urn:btih:07D46C2EC1068E3C2DCBF2B7C5637D2B22806646&dn=The+Midnight+Patrol+%281933%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "336.9 MB", + "Torrent": "https://yts.mx/torrent/download/4D4C60BE3570FEF64F29C8BD7CBE65C56E74D11F", + "Magnet": "magnet:?xt=urn:btih:4D4C60BE3570FEF64F29C8BD7CBE65C56E74D11F&dn=The+Midnight+Patrol+%281933%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Planes", + "ReleasedDate": "2013", + "Genre": "Action / Adventure / Animation / Comedy / Family / Sport", + "Rating": "5.7 \u2b50", + "Likes": "64", + "Runtime": "1 hr 31 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/planes-2013", + "Poster": "https://img.yts.mx/assets/images/movies/Planes_2013/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.44 GB", + "Torrent": "https://yts.mx/torrent/download/DEDD04B4FC2CBF4E0CEC18525AA992A7C8E6E9F8", + "Magnet": "magnet:?xt=urn:btih:DEDD04B4FC2CBF4E0CEC18525AA992A7C8E6E9F8&dn=Planes+%282013%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "751.66 MB", + "Torrent": "https://yts.mx/torrent/download/1B9E3F9FEBAABC71E2A68ABA812CC9ED7DDA967D", + "Magnet": "magnet:?xt=urn:btih:1B9E3F9FEBAABC71E2A68ABA812CC9ED7DDA967D&dn=Planes+%282013%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.44 GB", + "Torrent": "https://yts.mx/torrent/download/39C768263C2C6611DD4035E0146E811EFD6A12FE", + "Magnet": "magnet:?xt=urn:btih:39C768263C2C6611DD4035E0146E811EFD6A12FE&dn=Planes+%282013%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars Without a Home", + "ReleasedDate": "1959 [CZECH]", + "Genre": "Action", + "Rating": "\u2b50", + "Likes": "3", + "Runtime": "12 hr 6 min", + "Language": "Czech 2.0", + "Url": "https://yts.mx/movies/cars-without-a-home-1959", + "Poster": "https://img.yts.mx/assets/images/movies/cars_without_a_home_1959/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "60.94 MB", + "Torrent": "https://yts.mx/torrent/download/BC501BC52641268458306A9E8AE896BE6B4E2A40", + "Magnet": "magnet:?xt=urn:btih:BC501BC52641268458306A9E8AE896BE6B4E2A40&dn=Cars+Without+a+Home+%281959%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "113.1 MB", + "Torrent": "https://yts.mx/torrent/download/37F98E0B48C3A2CA1806A5A0C3A85D11F7A22630", + "Magnet": "magnet:?xt=urn:btih:37F98E0B48C3A2CA1806A5A0C3A85D11F7A22630&dn=Cars+Without+a+Home+%281959%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars of the Revolution", + "ReleasedDate": "2008 [TURKISH]", + "Genre": "Action / Drama", + "Rating": "\u2b50", + "Likes": "5", + "Runtime": "2 hr 0 min", + "Language": "Turkish 2.0", + "Url": "https://yts.mx/movies/cars-of-the-revolution-2008", + "Poster": "https://img.yts.mx/assets/images/movies/cars_of_the_revolution_2008/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "WEB ", + "Size": "1.08 GB", + "Torrent": "https://yts.mx/torrent/download/52B1ECC527D9DA00E8D3F14DA509D2434EEFBD70", + "Magnet": "magnet:?xt=urn:btih:52B1ECC527D9DA00E8D3F14DA509D2434EEFBD70&dn=Cars+of+the+Revolution+%282008%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Flying Cars", + "ReleasedDate": "2019", + "Genre": "Action / Adventure / Drama", + "Rating": "\u2b50", + "Likes": "15", + "Runtime": "1 hr 27 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/flying-cars-2019", + "Poster": "https://img.yts.mx/assets/images/movies/flying_cars_2019/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "WEB ", + "Size": "807.3 MB", + "Torrent": "https://yts.mx/torrent/download/67D54F935A8CD503834FE3838C2AE46864380BAC", + "Magnet": "magnet:?xt=urn:btih:67D54F935A8CD503834FE3838C2AE46864380BAC&dn=Flying+Cars+%282019%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "WEB ", + "Size": "1.62 GB", + "Torrent": "https://yts.mx/torrent/download/C9C77CE2197B9F6B6787B9C5F7A8D0266B462858", + "Magnet": "magnet:?xt=urn:btih:C9C77CE2197B9F6B6787B9C5F7A8D0266B462858&dn=Flying+Cars+%282019%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Riding in Cars with Boys", + "ReleasedDate": "2001", + "Genre": "Action / Biography / Comedy / Drama", + "Rating": "\u2b50", + "Likes": "8", + "Runtime": "2 hr 11 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/riding-in-cars-with-boys-2001", + "Poster": "https://img.yts.mx/assets/images/movies/riding_in_cars_with_boys_2001/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "1.18 GB", + "Torrent": "https://yts.mx/torrent/download/A165603BA1660405BD27DC47EF6FE369B0F2BF41", + "Magnet": "magnet:?xt=urn:btih:A165603BA1660405BD27DC47EF6FE369B0F2BF41&dn=Riding+in+Cars+with+Boys+%282001%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "2.19 GB", + "Torrent": "https://yts.mx/torrent/download/B42899DCD62D3D92AE9365F0EB9DD9E9E43747B3", + "Magnet": "magnet:?xt=urn:btih:B42899DCD62D3D92AE9365F0EB9DD9E9E43747B3&dn=Riding+in+Cars+with+Boys+%282001%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Used Cars", + "ReleasedDate": "1980", + "Genre": "Action / Comedy", + "Rating": "6.7 \u2b50", + "Likes": "18", + "Runtime": "1 hr 53 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/used-cars-1980", + "Poster": "https://img.yts.mx/assets/images/movies/Used_Cars_1980/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "815.78 MB", + "Torrent": "https://yts.mx/torrent/download/E64CBD2948E7B9DE62B3C881B1587B112FF47E5B", + "Magnet": "magnet:?xt=urn:btih:E64CBD2948E7B9DE62B3C881B1587B112FF47E5B&dn=Used+Cars+%281980%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.65 GB", + "Torrent": "https://yts.mx/torrent/download/B8ADED979C99B2F5A38C73EA09DA4165C4C4E974", + "Magnet": "magnet:?xt=urn:btih:B8ADED979C99B2F5A38C73EA09DA4165C4C4E974&dn=Used+Cars+%281980%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Eating Cars", + "ReleasedDate": "2021", + "Genre": "Action / Comedy / Crime / Drama / Fantasy", + "Rating": "\u2b50", + "Likes": "", + "Runtime": "1 hr 28 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/eating-cars-2021", + "Poster": "https://img.yts.mx/assets/images/movies/eating_cars_2021/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "WEB ", + "Size": "808.74 MB", + "Torrent": "https://yts.mx/torrent/download/DAA992C6DC57A4A6B30F47893881CC1F4663B0CB", + "Magnet": "magnet:?xt=urn:btih:DAA992C6DC57A4A6B30F47893881CC1F4663B0CB&dn=Eating+Cars+%282021%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "WEB ", + "Size": "1.47 GB", + "Torrent": "https://yts.mx/torrent/download/F7D5D1A56FBB7660444860A9642F60E443B4AEC8", + "Magnet": "magnet:?xt=urn:btih:F7D5D1A56FBB7660444860A9642F60E443B4AEC8&dn=Eating+Cars+%282021%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Monster Trucks", + "ReleasedDate": "2016", + "Genre": "Action / Adventure / Animation / Comedy / Family / Fantasy / Sci-Fi", + "Rating": "5.6 \u2b50", + "Likes": "196", + "Runtime": "1 hr 44 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/monster-trucks-2016", + "Poster": "https://img.yts.mx/assets/images/movies/monster_trucks_2016/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "770.79 MB", + "Torrent": "https://yts.mx/torrent/download/E314D977D6C17DF00AB7C00A65609D2A33176F53", + "Magnet": "magnet:?xt=urn:btih:E314D977D6C17DF00AB7C00A65609D2A33176F53&dn=Monster+Trucks+%282016%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.59 GB", + "Torrent": "https://yts.mx/torrent/download/ACB605D542596C61EDCFA88E23FC60A6E3764745", + "Magnet": "magnet:?xt=urn:btih:ACB605D542596C61EDCFA88E23FC60A6E3764745&dn=Monster+Trucks+%282016%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars", + "ReleasedDate": "2006", + "Genre": "Action / Adventure / Animation / Comedy / Family / Fantasy / Sport", + "Rating": "7.2 \u2b50", + "Likes": "233", + "Runtime": "1 hr 57 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/cars-2006", + "Poster": "https://img.yts.mx/assets/images/movies/Cars_2006/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.78 GB", + "Torrent": "https://yts.mx/torrent/download/BC8973E7F59AB0444D2E7A90950B2F4FEFC4A0D7", + "Magnet": "magnet:?xt=urn:btih:BC8973E7F59AB0444D2E7A90950B2F4FEFC4A0D7&dn=Cars+%282006%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "601.71 MB", + "Torrent": "https://yts.mx/torrent/download/532A821CD3E4A31594B661DE2C9E8622546C4655", + "Magnet": "magnet:?xt=urn:btih:532A821CD3E4A31594B661DE2C9E8622546C4655&dn=Cars+%282006%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.78 GB", + "Torrent": "https://yts.mx/torrent/download/BEE9B68B74F66881066968A58D4F7F08A797A75A", + "Magnet": "magnet:?xt=urn:btih:BEE9B68B74F66881066968A58D4F7F08A797A75A&dn=Cars+%282006%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "2160p", + "Type": "BluRay.x265.10bit ", + "Size": "5.25 GB", + "Torrent": "https://yts.mx/torrent/download/189BF88E31C8F7D3246E3FE6FD40D1F4CE00EE3E", + "Magnet": "magnet:?xt=urn:btih:189BF88E31C8F7D3246E3FE6FD40D1F4CE00EE3E&dn=Cars+%282006%29+%5B2160p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars 2", + "ReleasedDate": "2011", + "Genre": "Action / Adventure / Animation / Comedy / Crime / Family / Mystery / Sci-Fi / Sport", + "Rating": "6.2 \u2b50", + "Likes": "179", + "Runtime": "1 hr 46 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/cars-2-2011", + "Poster": "https://img.yts.mx/assets/images/movies/Cars_2_2011/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.60 GB", + "Torrent": "https://yts.mx/torrent/download/FC298302E7C23AB430EB1891D6E0E914CC47D8E3", + "Magnet": "magnet:?xt=urn:btih:FC298302E7C23AB430EB1891D6E0E914CC47D8E3&dn=Cars+2+%282011%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "651.79 MB", + "Torrent": "https://yts.mx/torrent/download/F20F9496F3F94C6C8C8BEAEE396B9A918ECC5D51", + "Magnet": "magnet:?xt=urn:btih:F20F9496F3F94C6C8C8BEAEE396B9A918ECC5D51&dn=Cars+2+%282011%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.61 GB", + "Torrent": "https://yts.mx/torrent/download/FEF40D29587E784355F205E76BDD945EF5A1EBE4", + "Magnet": "magnet:?xt=urn:btih:FEF40D29587E784355F205E76BDD945EF5A1EBE4&dn=Cars+2+%282011%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars 3", + "ReleasedDate": "2017", + "Genre": "Action / Adventure / Animation / Comedy / Family / Sport", + "Rating": "6.7 \u2b50", + "Likes": "621", + "Runtime": "1 hr 42 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/cars-3-2017", + "Poster": "https://img.yts.mx/assets/images/movies/cars_3_2017/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.63 GB", + "Torrent": "https://yts.mx/torrent/download/4C2856F18699C8C7C8687B35A01BB6F446287DDE", + "Magnet": "magnet:?xt=urn:btih:4C2856F18699C8C7C8687B35A01BB6F446287DDE&dn=Cars+3+%282017%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "742.87 MB", + "Torrent": "https://yts.mx/torrent/download/022590C8889C7DBFBD73697532221693692A0967", + "Magnet": "magnet:?xt=urn:btih:022590C8889C7DBFBD73697532221693692A0967&dn=Cars+3+%282017%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.55 GB", + "Torrent": "https://yts.mx/torrent/download/F20D4989E9E0984135720708ABC75246CDCB25B8", + "Magnet": "magnet:?xt=urn:btih:F20D4989E9E0984135720708ABC75246CDCB25B8&dn=Cars+3+%282017%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Gamle m\u00e6nd i nye biler", + "ReleasedDate": "2002 [DANISH]", + "Genre": "Action / Comedy / Crime", + "Rating": "\u2b50", + "Likes": "8", + "Runtime": "1 hr 35 min", + "Language": "Danish 2.0", + "Url": "https://yts.mx/movies/gamle-maend-i-nye-biler-2002", + "Poster": "https://img.yts.mx/assets/images/movies/old_men_in_new_cars_in_china_they_eat_dogs_ii_2002/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "854.02 MB", + "Torrent": "https://yts.mx/torrent/download/EBCCF79990F164C135462E7B54BDA0D577349DEE", + "Magnet": "magnet:?xt=urn:btih:EBCCF79990F164C135462E7B54BDA0D577349DEE&dn=Gamle+m%C3%A6nd+i+nye+biler+%282002%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.51 GB", + "Torrent": "https://yts.mx/torrent/download/172A2125D9FE8A81177C53AC0C5D81CAE3450D6A", + "Magnet": "magnet:?xt=urn:btih:172A2125D9FE8A81177C53AC0C5D81CAE3450D6A&dn=Gamle+m%C3%A6nd+i+nye+biler+%282002%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + } + ], + "statuscode": 200, + "schema": {} + }, + { + "name": "Get from yts", + "url": "https://torrent-search3.p.rapidapi.com/torrent/yts/cars", + "description": "You can use this for moive search", + "method": "GET", + "required_parameters": [ + { + "name": "searchtopic", + "type": "string", + "description": "", + "default": "cars" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/yts/cars\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/yts/{searchtopic}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": [ + { + "Name": "Flying Cars", + "ReleasedDate": "2019", + "Genre": "Action / Adventure / Drama", + "Rating": "\u2b50", + "Likes": "15", + "Runtime": "1 hr 27 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/flying-cars-2019", + "Poster": "https://img.yts.mx/assets/images/movies/flying_cars_2019/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "WEB ", + "Size": "807.3 MB", + "Torrent": "https://yts.mx/torrent/download/67D54F935A8CD503834FE3838C2AE46864380BAC", + "Magnet": "magnet:?xt=urn:btih:67D54F935A8CD503834FE3838C2AE46864380BAC&dn=Flying+Cars+%282019%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "WEB ", + "Size": "1.62 GB", + "Torrent": "https://yts.mx/torrent/download/C9C77CE2197B9F6B6787B9C5F7A8D0266B462858", + "Magnet": "magnet:?xt=urn:btih:C9C77CE2197B9F6B6787B9C5F7A8D0266B462858&dn=Flying+Cars+%282019%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Mater's Tall Tales", + "ReleasedDate": "2008", + "Genre": "Action / Adventure / Animation / Comedy / Family / Sport", + "Rating": "\u2b50", + "Likes": "25", + "Runtime": "12 hr 35 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/maters-tall-tales-2008", + "Poster": "https://img.yts.mx/assets/images/movies/maters_tall_tales_2008/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "327.65 MB", + "Torrent": "https://yts.mx/torrent/download/16281324647D4603F9D5E589833038BBEB88D7CC", + "Magnet": "magnet:?xt=urn:btih:16281324647D4603F9D5E589833038BBEB88D7CC&dn=Mater%27s+Tall+Tales+%282008%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "673.11 MB", + "Torrent": "https://yts.mx/torrent/download/CFA84DA72D739163660A358455C6EDC103483BFF", + "Magnet": "magnet:?xt=urn:btih:CFA84DA72D739163660A358455C6EDC103483BFF&dn=Mater%27s+Tall+Tales+%282008%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Eating Cars", + "ReleasedDate": "2021", + "Genre": "Action / Comedy / Crime / Drama / Fantasy", + "Rating": "\u2b50", + "Likes": "", + "Runtime": "1 hr 28 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/eating-cars-2021", + "Poster": "https://img.yts.mx/assets/images/movies/eating_cars_2021/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "WEB ", + "Size": "808.74 MB", + "Torrent": "https://yts.mx/torrent/download/DAA992C6DC57A4A6B30F47893881CC1F4663B0CB", + "Magnet": "magnet:?xt=urn:btih:DAA992C6DC57A4A6B30F47893881CC1F4663B0CB&dn=Eating+Cars+%282021%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "WEB ", + "Size": "1.47 GB", + "Torrent": "https://yts.mx/torrent/download/F7D5D1A56FBB7660444860A9642F60E443B4AEC8", + "Magnet": "magnet:?xt=urn:btih:F7D5D1A56FBB7660444860A9642F60E443B4AEC8&dn=Eating+Cars+%282021%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars 2", + "ReleasedDate": "2011", + "Genre": "Action / Adventure / Animation / Comedy / Crime / Family / Mystery / Sci-Fi / Sport", + "Rating": "6.2 \u2b50", + "Likes": "179", + "Runtime": "1 hr 46 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/cars-2-2011", + "Poster": "https://img.yts.mx/assets/images/movies/Cars_2_2011/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.60 GB", + "Torrent": "https://yts.mx/torrent/download/FC298302E7C23AB430EB1891D6E0E914CC47D8E3", + "Magnet": "magnet:?xt=urn:btih:FC298302E7C23AB430EB1891D6E0E914CC47D8E3&dn=Cars+2+%282011%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "651.79 MB", + "Torrent": "https://yts.mx/torrent/download/F20F9496F3F94C6C8C8BEAEE396B9A918ECC5D51", + "Magnet": "magnet:?xt=urn:btih:F20F9496F3F94C6C8C8BEAEE396B9A918ECC5D51&dn=Cars+2+%282011%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.61 GB", + "Torrent": "https://yts.mx/torrent/download/FEF40D29587E784355F205E76BDD945EF5A1EBE4", + "Magnet": "magnet:?xt=urn:btih:FEF40D29587E784355F205E76BDD945EF5A1EBE4&dn=Cars+2+%282011%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Gamle m\u00e6nd i nye biler", + "ReleasedDate": "2002 [DANISH]", + "Genre": "Action / Comedy / Crime", + "Rating": "\u2b50", + "Likes": "8", + "Runtime": "1 hr 35 min", + "Language": "Danish 2.0", + "Url": "https://yts.mx/movies/gamle-maend-i-nye-biler-2002", + "Poster": "https://img.yts.mx/assets/images/movies/old_men_in_new_cars_in_china_they_eat_dogs_ii_2002/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "854.02 MB", + "Torrent": "https://yts.mx/torrent/download/EBCCF79990F164C135462E7B54BDA0D577349DEE", + "Magnet": "magnet:?xt=urn:btih:EBCCF79990F164C135462E7B54BDA0D577349DEE&dn=Gamle+m%C3%A6nd+i+nye+biler+%282002%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.51 GB", + "Torrent": "https://yts.mx/torrent/download/172A2125D9FE8A81177C53AC0C5D81CAE3450D6A", + "Magnet": "magnet:?xt=urn:btih:172A2125D9FE8A81177C53AC0C5D81CAE3450D6A&dn=Gamle+m%C3%A6nd+i+nye+biler+%282002%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Planes", + "ReleasedDate": "2013", + "Genre": "Action / Adventure / Animation / Comedy / Family / Sport", + "Rating": "5.7 \u2b50", + "Likes": "64", + "Runtime": "1 hr 31 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/planes-2013", + "Poster": "https://img.yts.mx/assets/images/movies/Planes_2013/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.44 GB", + "Torrent": "https://yts.mx/torrent/download/DEDD04B4FC2CBF4E0CEC18525AA992A7C8E6E9F8", + "Magnet": "magnet:?xt=urn:btih:DEDD04B4FC2CBF4E0CEC18525AA992A7C8E6E9F8&dn=Planes+%282013%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "751.66 MB", + "Torrent": "https://yts.mx/torrent/download/1B9E3F9FEBAABC71E2A68ABA812CC9ED7DDA967D", + "Magnet": "magnet:?xt=urn:btih:1B9E3F9FEBAABC71E2A68ABA812CC9ED7DDA967D&dn=Planes+%282013%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.44 GB", + "Torrent": "https://yts.mx/torrent/download/39C768263C2C6611DD4035E0146E811EFD6A12FE", + "Magnet": "magnet:?xt=urn:btih:39C768263C2C6611DD4035E0146E811EFD6A12FE&dn=Planes+%282013%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars Without a Home", + "ReleasedDate": "1959 [CZECH]", + "Genre": "Action", + "Rating": "\u2b50", + "Likes": "3", + "Runtime": "12 hr 6 min", + "Language": "Czech 2.0", + "Url": "https://yts.mx/movies/cars-without-a-home-1959", + "Poster": "https://img.yts.mx/assets/images/movies/cars_without_a_home_1959/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "60.94 MB", + "Torrent": "https://yts.mx/torrent/download/BC501BC52641268458306A9E8AE896BE6B4E2A40", + "Magnet": "magnet:?xt=urn:btih:BC501BC52641268458306A9E8AE896BE6B4E2A40&dn=Cars+Without+a+Home+%281959%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "113.1 MB", + "Torrent": "https://yts.mx/torrent/download/37F98E0B48C3A2CA1806A5A0C3A85D11F7A22630", + "Magnet": "magnet:?xt=urn:btih:37F98E0B48C3A2CA1806A5A0C3A85D11F7A22630&dn=Cars+Without+a+Home+%281959%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Riding in Cars with Boys", + "ReleasedDate": "2001", + "Genre": "Action / Biography / Comedy / Drama", + "Rating": "\u2b50", + "Likes": "8", + "Runtime": "2 hr 11 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/riding-in-cars-with-boys-2001", + "Poster": "https://img.yts.mx/assets/images/movies/riding_in_cars_with_boys_2001/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "1.18 GB", + "Torrent": "https://yts.mx/torrent/download/A165603BA1660405BD27DC47EF6FE369B0F2BF41", + "Magnet": "magnet:?xt=urn:btih:A165603BA1660405BD27DC47EF6FE369B0F2BF41&dn=Riding+in+Cars+with+Boys+%282001%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "2.19 GB", + "Torrent": "https://yts.mx/torrent/download/B42899DCD62D3D92AE9365F0EB9DD9E9E43747B3", + "Magnet": "magnet:?xt=urn:btih:B42899DCD62D3D92AE9365F0EB9DD9E9E43747B3&dn=Riding+in+Cars+with+Boys+%282001%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars of the Revolution", + "ReleasedDate": "2008 [TURKISH]", + "Genre": "Action / Drama", + "Rating": "\u2b50", + "Likes": "5", + "Runtime": "2 hr 0 min", + "Language": "Turkish 2.0", + "Url": "https://yts.mx/movies/cars-of-the-revolution-2008", + "Poster": "https://img.yts.mx/assets/images/movies/cars_of_the_revolution_2008/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "WEB ", + "Size": "1.08 GB", + "Torrent": "https://yts.mx/torrent/download/52B1ECC527D9DA00E8D3F14DA509D2434EEFBD70", + "Magnet": "magnet:?xt=urn:btih:52B1ECC527D9DA00E8D3F14DA509D2434EEFBD70&dn=Cars+of+the+Revolution+%282008%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "The Midnight Patrol", + "ReleasedDate": "1933", + "Genre": "Comedy", + "Rating": "\u2b50", + "Likes": "7", + "Runtime": "12 hr 19 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/the-midnight-patrol-1933", + "Poster": "https://img.yts.mx/assets/images/movies/the_midnight_patrol_1933/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "181.36 MB", + "Torrent": "https://yts.mx/torrent/download/07D46C2EC1068E3C2DCBF2B7C5637D2B22806646", + "Magnet": "magnet:?xt=urn:btih:07D46C2EC1068E3C2DCBF2B7C5637D2B22806646&dn=The+Midnight+Patrol+%281933%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "336.9 MB", + "Torrent": "https://yts.mx/torrent/download/4D4C60BE3570FEF64F29C8BD7CBE65C56E74D11F", + "Magnet": "magnet:?xt=urn:btih:4D4C60BE3570FEF64F29C8BD7CBE65C56E74D11F&dn=The+Midnight+Patrol+%281933%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars", + "ReleasedDate": "2006", + "Genre": "Action / Adventure / Animation / Comedy / Family / Fantasy / Sport", + "Rating": "7.2 \u2b50", + "Likes": "233", + "Runtime": "1 hr 57 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/cars-2006", + "Poster": "https://img.yts.mx/assets/images/movies/Cars_2006/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.78 GB", + "Torrent": "https://yts.mx/torrent/download/BC8973E7F59AB0444D2E7A90950B2F4FEFC4A0D7", + "Magnet": "magnet:?xt=urn:btih:BC8973E7F59AB0444D2E7A90950B2F4FEFC4A0D7&dn=Cars+%282006%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "601.71 MB", + "Torrent": "https://yts.mx/torrent/download/532A821CD3E4A31594B661DE2C9E8622546C4655", + "Magnet": "magnet:?xt=urn:btih:532A821CD3E4A31594B661DE2C9E8622546C4655&dn=Cars+%282006%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.78 GB", + "Torrent": "https://yts.mx/torrent/download/BEE9B68B74F66881066968A58D4F7F08A797A75A", + "Magnet": "magnet:?xt=urn:btih:BEE9B68B74F66881066968A58D4F7F08A797A75A&dn=Cars+%282006%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "2160p", + "Type": "BluRay.x265.10bit ", + "Size": "5.25 GB", + "Torrent": "https://yts.mx/torrent/download/189BF88E31C8F7D3246E3FE6FD40D1F4CE00EE3E", + "Magnet": "magnet:?xt=urn:btih:189BF88E31C8F7D3246E3FE6FD40D1F4CE00EE3E&dn=Cars+%282006%29+%5B2160p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Cars 3", + "ReleasedDate": "2017", + "Genre": "Action / Adventure / Animation / Comedy / Family / Sport", + "Rating": "6.7 \u2b50", + "Likes": "621", + "Runtime": "1 hr 42 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/cars-3-2017", + "Poster": "https://img.yts.mx/assets/images/movies/cars_3_2017/medium-cover.jpg", + "Files": [ + { + "Quality": "3D", + "Type": "BluRay ", + "Size": "1.63 GB", + "Torrent": "https://yts.mx/torrent/download/4C2856F18699C8C7C8687B35A01BB6F446287DDE", + "Magnet": "magnet:?xt=urn:btih:4C2856F18699C8C7C8687B35A01BB6F446287DDE&dn=Cars+3+%282017%29+%5B3D%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "742.87 MB", + "Torrent": "https://yts.mx/torrent/download/022590C8889C7DBFBD73697532221693692A0967", + "Magnet": "magnet:?xt=urn:btih:022590C8889C7DBFBD73697532221693692A0967&dn=Cars+3+%282017%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.55 GB", + "Torrent": "https://yts.mx/torrent/download/F20D4989E9E0984135720708ABC75246CDCB25B8", + "Magnet": "magnet:?xt=urn:btih:F20D4989E9E0984135720708ABC75246CDCB25B8&dn=Cars+3+%282017%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Used Cars", + "ReleasedDate": "1980", + "Genre": "Action / Comedy", + "Rating": "6.7 \u2b50", + "Likes": "18", + "Runtime": "1 hr 53 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/used-cars-1980", + "Poster": "https://img.yts.mx/assets/images/movies/Used_Cars_1980/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "815.78 MB", + "Torrent": "https://yts.mx/torrent/download/E64CBD2948E7B9DE62B3C881B1587B112FF47E5B", + "Magnet": "magnet:?xt=urn:btih:E64CBD2948E7B9DE62B3C881B1587B112FF47E5B&dn=Used+Cars+%281980%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.65 GB", + "Torrent": "https://yts.mx/torrent/download/B8ADED979C99B2F5A38C73EA09DA4165C4C4E974", + "Magnet": "magnet:?xt=urn:btih:B8ADED979C99B2F5A38C73EA09DA4165C4C4E974&dn=Used+Cars+%281980%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + }, + { + "Name": "Monster Trucks", + "ReleasedDate": "2016", + "Genre": "Action / Adventure / Animation / Comedy / Family / Fantasy / Sci-Fi", + "Rating": "5.6 \u2b50", + "Likes": "196", + "Runtime": "1 hr 44 min", + "Language": "English 2.0", + "Url": "https://yts.mx/movies/monster-trucks-2016", + "Poster": "https://img.yts.mx/assets/images/movies/monster_trucks_2016/medium-cover.jpg", + "Files": [ + { + "Quality": "720p", + "Type": "BluRay ", + "Size": "770.79 MB", + "Torrent": "https://yts.mx/torrent/download/E314D977D6C17DF00AB7C00A65609D2A33176F53", + "Magnet": "magnet:?xt=urn:btih:E314D977D6C17DF00AB7C00A65609D2A33176F53&dn=Monster+Trucks+%282016%29+%5B720p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + }, + { + "Quality": "1080p", + "Type": "BluRay ", + "Size": "1.59 GB", + "Torrent": "https://yts.mx/torrent/download/ACB605D542596C61EDCFA88E23FC60A6E3764745", + "Magnet": "magnet:?xt=urn:btih:ACB605D542596C61EDCFA88E23FC60A6E3764745&dn=Monster+Trucks+%282016%29+%5B1080p%5D+%5BYTS.MX%5D&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.tracker.cl%3A1337%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=https%3A%2F%2Fopentracker.i2p.rocks%3A443%2Fannounce" + } + ] + } + ], + "statuscode": 200, + "schema": {} + }, + { + "name": "Get from 1337.x", + "url": "https://torrent-search3.p.rapidapi.com/torrent/1337x/cars", + "description": "scrape data from various torrent websites such as 1337x", + "method": "GET", + "required_parameters": [ + { + "name": "searchtopic", + "type": "string", + "description": "", + "default": "cars" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/1337x/cars\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://torrent-search3.p.rapidapi.com/torrent/1337x/{searchtopic}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"torrent-search3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": [ + { + "Name": "Project CARS 3 (v1.0.0.0.0705 + 5 DLCs, MULTi13) [FitGirl FIXED Repack]", + "Magnet": "magnet:?xt=urn:btih:748DDBE9C1832223EEFB61E6A775BD74997B7340&dn=Project+CARS+3+%28v1.0.0.0.0705+%2B+5+DLCs%2C+MULTi13%29+%5BFitGirl+FIXED+Repack%5D&tr=udp%3A%2F%2F46.148.18.250%3A2710&tr=udp%3A%2F%2Fopentor.org%3A2710&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2730%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2770%2Fannounce&tr=udp%3A%2F%2Ftracker.pirateparty.gr%3A6969%2Fannounce&tr=http%3A%2F%2Fretracker.local%2Fannounce&tr=http%3A%2F%2Fretracker.ip.ncnet.ru%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce", + "Poster": "", + "Category": "Games", + "Type": "PC Game", + "Language": "English", + "Size": "19.9 GB", + "UploadedBy": "FitGirl", + "Downloads": "1354", + "LastChecked": "May. 10th '21", + "DateUploaded": "May. 08th '21", + "Seeders": "260", + "Leechers": "109", + "Url": "https://1337xx.to/torrent/4859680/Project-CARS-3-v1-0-0-0-0705-5-DLCs-MULTi13-FitGirl-FIXED-Repack/" + }, + { + "Name": "Cars 3 (2017) [1080p] [YTS] [YIFY]", + "Magnet": "/download/Cars 3 (2017) [1080p] [YTS] [YIFY]", + "Poster": "https:/img/movie/Cars-3-2017.jpg", + "Category": "Movies", + "Type": "HD", + "Language": "English", + "Size": "1.5 GB", + "UploadedBy": "YTSAGx", + "Downloads": "9858", + "LastChecked": "Apr. 29th '19", + "DateUploaded": "Apr. 29th '18", + "Seeders": "227", + "Leechers": "19", + "Url": "https://1337xx.to/torrent/2631852/Cars-3-2017-1080p-YTS-YIFY/" + }, + { + "Name": "Cars, Trains, Ships & Planes - A Visual Encyclopedia of Every Vehicle By DK", + "Magnet": "magnet:?xt=urn:btih:A954F0378ACB5F948CBBEC68CFCAFD918DFFEC69&dn=Cars%2C+Trains%2C+Ships+%26amp%3B+Planes+-+A+Visual+Encyclopedia+of+Every+Vehicle+By+DK&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Fexplodie.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.moeking.me%3A6969%2Fannounce&tr=udp%3A%2F%2Fopentor.org%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce", + "Poster": "", + "Category": "Other", + "Type": "E-Books", + "Language": "English", + "Size": "66.7 MB", + "UploadedBy": "spy1984", + "Downloads": "214", + "LastChecked": "Mar. 19th '22", + "DateUploaded": "Mar. 18th '22", + "Seeders": "169", + "Leechers": "23", + "Url": "https://1337xx.to/torrent/5186958/Cars-Trains-Ships-Planes-A-Visual-Encyclopedia-of-Every-Vehicle-By-DK/" + }, + { + "Name": "Cars - Trains - Ships And Planes - A Visual Encyclopedia Of Every Vehicle", + "Magnet": "magnet:?xt=urn:btih:01A05368EB36553B8AB04C54DF460B0B5D7D9749&dn=Cars+-+Trains+-+Ships+And+Planes+-+A+Visual+Encyclopedia+Of+Every+Vehicle&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.open-internet.nl%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2850%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2720%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2810%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2890%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.trackerfix.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.fatkhoala.org%3A13790%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce", + "Poster": "", + "Category": "Other", + "Type": "E-Books", + "Language": "English", + "Size": "66.9 MB", + "UploadedBy": "CJDanVamme", + "Downloads": "12", + "LastChecked": "Apr. 29th '22", + "DateUploaded": "Apr. 29th '22", + "Seeders": "278", + "Leechers": "53", + "Url": "https://1337xx.to/torrent/5233954/Cars-Trains-Ships-And-Planes-A-Visual-Encyclopedia-Of-Every-Vehicle/" + }, + { + "Name": "Project CARS 3 (+ 2 DLCs, MULTi13) [FitGirl Repack]", + "Magnet": "magnet:?xt=urn:btih:A52FFF7F5465E2DAF10BF5E1271711845790CDC2&dn=Project+CARS+3+%28%2B+2+DLCs%2C+MULTi13%29+%5BFitGirl+Repack%5D&tr=udp%3A%2F%2F46.148.18.250%3A2710&tr=udp%3A%2F%2Fopentor.org%3A2710&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2730%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2770%2Fannounce&tr=udp%3A%2F%2Ftracker.pirateparty.gr%3A6969%2Fannounce&tr=http%3A%2F%2Fretracker.local%2Fannounce&tr=http%3A%2F%2Fretracker.ip.ncnet.ru%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce", + "Poster": "", + "Category": "Games", + "Type": "PC Game", + "Language": "English", + "Size": "18.9 GB", + "UploadedBy": "FitGirl", + "Downloads": "4441", + "LastChecked": "Sep. 01st '20", + "DateUploaded": "Aug. 27th '20", + "Seeders": "194", + "Leechers": "106", + "Url": "https://1337xx.to/torrent/4605677/Project-CARS-3-2-DLCs-MULTi13-FitGirl-Repack/" + }, + { + "Name": "", + "Magnet": "", + "Poster": "", + "Url": "https://1337xx.to/torrent/4607523/Project-CARS-3-CODEX/" + }, + { + "Name": "+++ SABA-567 cherry boy I have! The challenge\u30fbdesign\u30fbthe Radiator Springs cars, tuner cars, spy cars, or international racers! Full app! Shame the brush down! Fingered wet OMA\u25cfu to the surrounding becomes pure-white in the play null and pussy. Super", + "Magnet": "/download/+++ SABA-567 cherry boy I have! The challenge\u30fbdesign\u30fbthe Radiator Springs cars, tuner cars, spy cars, or international racers! Full app! Shame the brush down! Fingered wet OMA\u25cfu to the surrounding becomes pure-white in the play null and pussy. Super", + "Poster": "", + "Category": "XXX", + "Type": "Video", + "Language": "Japanese", + "Size": "6.1 GB", + "UploadedBy": "offkab", + "Downloads": "39", + "LastChecked": "Nov. 01st '19", + "DateUploaded": "Nov. 01st '19", + "Seeders": "158", + "Leechers": "107", + "Url": "https://1337xx.to/torrent/4061287/SABA-567-cherry-boy-I-have-The-challenge-design-the-Radiator-Springs-cars-tuner-cars-spy-cars-or-international-racers-Full-app-Shame-the-brush-down-Fingered-wet-OMA-u-to-the-surrounding-becomes-pure-white-in-the-play-null-and-pussy-Super/" + }, + { + "Name": "Cars 3 (2017) [720p] [YTS] [YIFY]", + "Magnet": "/download/Cars 3 (2017) [720p] [YTS] [YIFY]", + "Poster": "https:/img/movie/Cars-3-2017.jpg", + "Category": "Movies", + "Type": "HD", + "Language": "English", + "Size": "742.9 MB", + "UploadedBy": "YTSAGx", + "Downloads": "3010", + "LastChecked": "Apr. 29th '19", + "DateUploaded": "Apr. 29th '18", + "Seeders": "260", + "Leechers": "27", + "Url": "https://1337xx.to/torrent/2631846/Cars-3-2017-720p-YTS-YIFY/" + }, + { + "Name": "Cars 3 (2017) [720p] [YTS] [YIFY]", + "Magnet": "/download/Cars 3 (2017) [720p] [YTS] [YIFY]", + "Poster": "https:/img/movie/Cars-3-2017.jpg", + "Category": "Movies", + "Type": "HD", + "Language": "English", + "Size": "741.4 MB", + "UploadedBy": "YTSAGx", + "Downloads": "73530", + "LastChecked": "Apr. 29th '19", + "DateUploaded": "Apr. 29th '18", + "Seeders": "535", + "Leechers": "44", + "Url": "https://1337xx.to/torrent/2545577/Cars-3-2017-720p-YTS-YIFY/" + }, + { + "Name": "[HD] SSNI-328 Female College Student Strong \u00b7 System \u00b7 Consecutive \u00b7 Embarrassed And Continue To Be Caught All Day Without Being Able To Speak Vacant Molested Cars Nichinan Hatsune", + "Magnet": "/download/[HD] SSNI-328 Female College Student Strong \u00b7 System \u00b7 Consecutive \u00b7 Embarrassed And Continue To Be Caught All Day Without Being Able To Speak Vacant Molested Cars Nichinan Hatsune", + "Poster": "", + "Category": "XXX", + "Type": "Video", + "Language": "English", + "Size": "4.3 GB", + "UploadedBy": "offkab", + "Downloads": "705", + "LastChecked": "Apr. 29th '19", + "DateUploaded": "Apr. 29th '19", + "Seeders": "376", + "Leechers": "288", + "Url": "https://1337xx.to/torrent/3305675/HD-SSNI-328-Female-College-Student-Strong-System-Consecutive-Embarrassed-And-Continue-To-Be-Caught-All-Day-Without-Being-Able-To-Speak-Vacant-Molested-Cars-Nichinan-Hatsune/" + }, + { + "Name": "Cars - Trains - Ships And Planes - A Visual Encyclopedia Of Every Vehicle", + "Magnet": "magnet:?xt=urn:btih:01A05368EB36553B8AB04C54DF460B0B5D7D9749&dn=Cars+-+Trains+-+Ships+And+Planes+-+A+Visual+Encyclopedia+Of+Every+Vehicle&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.open-internet.nl%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2850%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2720%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2810%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2890%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.trackerfix.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.fatkhoala.org%3A13790%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce", + "Poster": "", + "Category": "Other", + "Type": "E-Books", + "Language": "English", + "Size": "66.9 MB", + "UploadedBy": "CJDanVamme", + "Downloads": "0", + "LastChecked": "Apr. 29th '22", + "DateUploaded": "Apr. 29th '22", + "Seeders": "153", + "Leechers": "15", + "Url": "https://1337xx.to/torrent/5235002/Cars-Trains-Ships-And-Planes-A-Visual-Encyclopedia-Of-Every-Vehicle/" + }, + { + "Name": "Cars 3 (2017) [BluRay] [3D] [YTS] [YIFY]", + "Magnet": "/download/Cars 3 (2017) [BluRay] [3D] [YTS] [YIFY]", + "Poster": "", + "Category": "Movies", + "Type": "3D", + "Language": "English", + "Size": "1.6 GB", + "UploadedBy": "YTSAGx", + "Downloads": "2602", + "LastChecked": "Apr. 29th '19", + "DateUploaded": "Apr. 29th '19", + "Seeders": "152", + "Leechers": "46", + "Url": "https://1337xx.to/torrent/3163796/Cars-3-2017-BluRay-3D-YTS-YIFY/" + }, + { + "Name": "Electric Cars - The Ultimate Guide", + "Magnet": "magnet:?xt=urn:btih:CDC352D9AB11C96A9BA180D7E4A6C9A6CEF5303B&dn=Electric+Cars+-+The+Ultimate+Guide&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2960%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2870%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2840%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.open-internet.nl%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.trackerfix.com%3A82%2Fannounce&tr=udp%3A%2F%2Fexplodie.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce", + "Poster": "", + "Category": "Other", + "Type": "E-Books", + "Language": "English", + "Size": "5.4 MB", + "UploadedBy": "CJDanVamme", + "Downloads": "33", + "LastChecked": "Jun. 24th '22", + "DateUploaded": "Jun. 24th '22", + "Seeders": "335", + "Leechers": "56", + "Url": "https://1337xx.to/torrent/5300692/Electric-Cars-The-Ultimate-Guide/" + }, + { + "Name": "Cars (2006) 720p BrRip x264 - 600MB - YIFY", + "Magnet": "/download/Cars (2006) 720p BrRip x264 - 600MB - YIFY", + "Poster": "https:/img/movie/Cars-2006.jpg", + "Category": "Movies", + "Type": "h.264/x264", + "Language": "English", + "Size": "601.9 MB", + "UploadedBy": "YIFY", + "Downloads": "39778", + "LastChecked": "Apr. 23rd '19", + "DateUploaded": "Apr. 24th '12", + "Seeders": "296", + "Leechers": "34", + "Url": "https://1337xx.to/torrent/253415/Cars-2006-720p-BrRip-x264-600MB-YIFY/" + }, + { + "Name": "Electric Cars - The Ultimate Guide", + "Magnet": "magnet:?xt=urn:btih:CDC352D9AB11C96A9BA180D7E4A6C9A6CEF5303B&dn=Electric+Cars+-+The+Ultimate+Guide&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2960%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2870%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2840%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.open-internet.nl%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.trackerfix.com%3A82%2Fannounce&tr=udp%3A%2F%2Fexplodie.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce", + "Poster": "", + "Category": "Other", + "Type": "E-Books", + "Language": "English", + "Size": "5.4 MB", + "UploadedBy": "CJDanVamme", + "Downloads": "28", + "LastChecked": "Jun. 24th '22", + "DateUploaded": "Jun. 24th '22", + "Seeders": "195", + "Leechers": "30", + "Url": "https://1337xx.to/torrent/5301483/Electric-Cars-The-Ultimate-Guide/" + }, + { + "Name": "Cars 3 2017 1080P [S143]", + "Magnet": "/download/Cars 3 2017 1080P [S143]", + "Poster": "https:/img/movie/Cars-3-2017.jpg", + "Category": "Movies", + "Type": "HD", + "Language": "English", + "Size": "1.5 GB", + "UploadedBy": "simraan143", + "Downloads": "18683", + "LastChecked": "Apr. 28th '20", + "DateUploaded": "Apr. 29th '18", + "Seeders": "413", + "Leechers": "32", + "Url": "https://1337xx.to/torrent/2568147/Cars-3-2017-1080P-S143/" + }, + { + "Name": "Flying Cars (2019) [720p] [WEBRip] [YTS] [YIFY]", + "Magnet": "magnet:?xt=urn:btih:67D54F935A8CD503834FE3838C2AE46864380BAC&dn=Flying+Cars+%282019%29+%5B720p%5D+%5BWEBRip%5D+%5BYTS%5D+%5BYIFY%5D&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.com%3A2710%2Fannounce&tr=udp%3A%2F%2Fp4p.arenabg.com%3A1337&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce", + "Poster": "", + "Category": "Movies", + "Type": "HD", + "Language": "English", + "Size": "807.3 MB", + "UploadedBy": "YTSAGx", + "Downloads": "224", + "LastChecked": "May. 21st '20", + "DateUploaded": "May. 19th '20", + "Seeders": "195", + "Leechers": "54", + "Url": "https://1337xx.to/torrent/4459814/Flying-Cars-2019-720p-WEBRip-YTS-YIFY/" + }, + { + "Name": "Cars 2 (2011) 720p BrRip x264 - 650MB - YIFY", + "Magnet": "/download/Cars 2 (2011) 720p BrRip x264 - 650MB - YIFY", + "Poster": "https:/img/movie/Cars-2-2011.jpg", + "Category": "Movies", + "Type": "h.264/x264", + "Language": "English", + "Size": "651.9 MB", + "UploadedBy": "YIFY", + "Downloads": "45717", + "LastChecked": "Apr. 23rd '19", + "DateUploaded": "Apr. 24th '12", + "Seeders": "195", + "Leechers": "13", + "Url": "https://1337xx.to/torrent/253428/Cars-2-2011-720p-BrRip-x264-650MB-YIFY/" + }, + { + "Name": "H cup uniform girls strong \u00b7 system \u00b7 consecutive \u00b7 concubine milking rubbish rolling full packed cars Yumeo Aika", + "Magnet": "/download/H cup uniform girls strong \u00b7 system \u00b7 consecutive \u00b7 concubine milking rubbish rolling full packed cars Yumeo Aika", + "Poster": "", + "Category": "XXX", + "Type": "Video", + "Language": "English", + "Size": "4 GB", + "UploadedBy": "Cristie", + "Downloads": "510", + "LastChecked": "Apr. 29th '19", + "DateUploaded": "Apr. 29th '19", + "Seeders": "172", + "Leechers": "271", + "Url": "https://1337xx.to/torrent/3112084/H-cup-uniform-girls-strong-system-consecutive-concubine-milking-rubbish-rolling-full-packed-cars-Yumeo-Aika/" + }, + { + "Name": "Super Toy Cars Offroad (MULTi7) [FitGirl Repack]", + "Magnet": "magnet:?xt=urn:btih:C42273B8E1300BFBF61AE8F468AB0D5115A3DD89&dn=Super+Toy+Cars+Offroad+%28MULTi7%29+%5BFitGirl+Repack%5D&tr=udp%3A%2F%2F46.148.18.250%3A2710&tr=udp%3A%2F%2Fopentor.org%3A2710&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2730%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2770%2Fannounce&tr=udp%3A%2F%2Ftracker.pirateparty.gr%3A6969%2Fannounce&tr=http%3A%2F%2Fretracker.local%2Fannounce&tr=http%3A%2F%2Fretracker.ip.ncnet.ru%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.zer0day.to%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce", + "Poster": "", + "Category": "Games", + "Type": "PC Game", + "Language": "English", + "Size": "2.3 GB", + "UploadedBy": "FitGirl", + "Downloads": "116", + "LastChecked": "Feb. 22nd '22", + "DateUploaded": "Feb. 22nd '22", + "Seeders": "149", + "Leechers": "52", + "Url": "https://1337xx.to/torrent/5156865/Super-Toy-Cars-Offroad-MULTi7-FitGirl-Repack/" + } + ], + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "torrent_search" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/torrent_search/api.py b/toolbench/toolenv/tools/Tools/torrent_search/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a6144ff6e6f57f4fe1e23f6ba585a44adad5ef7f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/torrent_search/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_from_piratebay(searchtopic: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "for piratebay" + + """ + url = f"https://torrent-search3.p.rapidapi.com/torrent/piratebay/{searchtopic}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "torrent-search3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_from_eztv(searchtopic: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "can use this for search eztv" + + """ + url = f"https://torrent-search3.p.rapidapi.com/torrent/yts/{searchtopic}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "torrent-search3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_from_yts(searchtopic: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "You can use this for moive search" + + """ + url = f"https://torrent-search3.p.rapidapi.com/torrent/yts/{searchtopic}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "torrent-search3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_from_1337_x(searchtopic: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "scrape data from various torrent websites such as 1337x" + + """ + url = f"https://torrent-search3.p.rapidapi.com/torrent/1337x/{searchtopic}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "torrent-search3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/trans_lator/api.py b/toolbench/toolenv/tools/Tools/trans_lator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a35f96aacc25fe0cfd7160dcb8e52d783cb37bd1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/trans_lator/api.py @@ -0,0 +1,75 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of the languages which can be used to translate a text" + + """ + url = f"https://gybra-trans-lator.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gybra-trans-lator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def text2speech_file(file: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Download the text2speech audio file in base64 format" + file: the name of the file audio + + """ + url = f"https://gybra-trans-lator.p.rapidapi.com/download/{file}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gybra-trans-lator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translate(is_from: str, to: str, text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate the text from a language to another" + from: the source language of the text will be translated + to: the language of the resultant translate text + text: the text you want to translate + + """ + url = f"https://gybra-trans-lator.p.rapidapi.com/translate/{is_from}/{to}/{text}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gybra-trans-lator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/translate_text_to_any_language.json b/toolbench/toolenv/tools/Tools/translate_text_to_any_language.json new file mode 100644 index 0000000000000000000000000000000000000000..bb1eed72eb5943504923bbf12c0e46a3df4d7bc2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/translate_text_to_any_language.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_c80b02e2-2f3b-4255-9085-a2f3fd21cd4e", + "tool_description": "Translate from any language to another using this simple api", + "home_url": "https://rapidapi.com/wirecryptocontact-h9qCX5pYMlJ/api/translate-text-to-any-language/", + "name": "Translate text to any language", + "title": "Translate text to any language", + "pricing": "FREEMIUM", + "tool_name": "Translate text to any language", + "score": null, + "host": "translate-text-to-any-language.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://translate-text-to-any-language.p.rapidapi.com/translate", + "description": "Send a POST request and get a translation based on the parameters you provide.\n\nExample request:{\n \"translate_to\": \"French\",\n \"content\": \"Where is the best coffee in Paris?\"\n}\n\nExample response: O\u00f9 est le meilleur caf\u00e9 \u00e0 Paris ?", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-text-to-any-language.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-text-to-any-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-text-to-any-language.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-text-to-any-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/travelling_salesman.json b/toolbench/toolenv/tools/Tools/travelling_salesman.json new file mode 100644 index 0000000000000000000000000000000000000000..bae5e82a75ea118e9e6d906ba69ce236a298374b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/travelling_salesman.json @@ -0,0 +1,150 @@ +{ + "product_id": "api_cf0a3eb8-a4c6-489c-ac6f-408d03d367c3", + "tool_description": "Solve the travelling salesman problem for every 2D or 3D problem, and calculate the shortest distance between a list of points.", + "home_url": "https://rapidapi.com/fx-world-softwareentwicklung-fx-world-softwareentwicklung-default/api/travelling-salesman/", + "name": "Travelling Salesman", + "title": "Travelling Salesman", + "pricing": "FREEMIUM", + "tool_name": "Travelling Salesman", + "score": { + "avgServiceLevel": 60, + "avgLatency": 53, + "avgSuccessRate": 40, + "popularityScore": 6.7, + "__typename": "Score" + }, + "host": "travelling-salesman.p.rapidapi.com", + "api_list": [ + { + "name": "exampleProblem", + "url": "https://travelling-salesman.p.rapidapi.com/tsm/exampleProblem", + "description": " ", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "locationCount", + "type": "NUMBER", + "description": "", + "default": 10 + }, + { + "name": "edgeType", + "type": "STRING", + "description": "", + "default": "Euclidean2D" + }, + { + "name": "name", + "type": "STRING", + "description": "", + "default": "ExampleProblem" + } + ], + "code": "import requests\n\nurl = \"https://travelling-salesman.p.rapidapi.com/tsm/exampleProblem\"\nquerystring = {\"locationCount\": 10, \"edgeType\": \"Euclidean2D\", \"name\": \"ExampleProblem\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelling-salesman.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelling-salesman.p.rapidapi.com/tsm/exampleProblem\"\nquerystring = {\"locationCount\": 10, \"edgeType\": \"Euclidean2D\", \"name\": \"ExampleProblem\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelling-salesman.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "locationCount": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "distances": { + "type": "array", + "items": { + "type": "number", + "format": "double", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "locations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "x": { + "type": "number", + "format": "double", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "format": "double", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "format": "double", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + } + } + }, + "edgeType": { + "type": "string", + "enum": [ + "DistanceMatrix", + "Euclidean2D", + "Euclidean3D", + "Manhattan2D", + "Manhattan3D", + "Chebyshev2D", + "Chebyshev3D" + ] + } + } + } + }, + { + "name": "solve", + "url": "https://travelling-salesman.p.rapidapi.com/tsm/solve", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelling-salesman.p.rapidapi.com/tsm/solve\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelling-salesman.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelling-salesman.p.rapidapi.com/tsm/solve\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelling-salesman.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ], + "standardized_name": "travelling_salesman" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/travelling_salesman/api.py b/toolbench/toolenv/tools/Tools/travelling_salesman/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5dfeaaf3610cfcb75adb391353fa34459f4a007c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/travelling_salesman/api.py @@ -0,0 +1,35 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def exampleproblem(locationcount: int=10, edgetype: str='Euclidean2D', name: str='ExampleProblem', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://travelling-salesman.p.rapidapi.com/tsm/exampleproblem" + querystring = {} + if locationcount: + querystring['locationCount'] = locationcount + if edgetype: + querystring['edgeType'] = edgetype + if name: + querystring['name'] = name + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelling-salesman.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/turnstile_captcha_solver.json b/toolbench/toolenv/tools/Tools/turnstile_captcha_solver.json new file mode 100644 index 0000000000000000000000000000000000000000..d23ca93f4c5c212f4dfcdddf83c4de37c8779b3b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/turnstile_captcha_solver.json @@ -0,0 +1,41 @@ +{ + "product_id": "api_c30f9b11-7111-4b1c-885e-48d005470de3", + "tool_description": "Solve Cloudflare's Turnstile CAPTCHA", + "home_url": "https://rapidapi.com/acrogenesis-llc-api/api/turnstile-captcha-solver/", + "name": "Turnstile CAPTCHA Solver", + "title": "Turnstile CAPTCHA Solver", + "pricing": "FREEMIUM", + "tool_name": "Turnstile CAPTCHA Solver", + "score": { + "avgServiceLevel": 93, + "avgLatency": 978, + "avgSuccessRate": 93, + "popularityScore": 9.5, + "__typename": "Score" + }, + "host": "turnstile-captcha-solver.p.rapidapi.com", + "api_list": [ + { + "name": "turnstile getResult", + "url": "https://turnstile-captcha-solver.p.rapidapi.com/get_result", + "description": "Get the `token` for the Cloudflare Turnstille CAPTCHA solver task", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://turnstile-captcha-solver.p.rapidapi.com/get_result\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"turnstile-captcha-solver.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://turnstile-captcha-solver.p.rapidapi.com/get_result\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"turnstile-captcha-solver.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "turnstile createTask", + "url": "https://turnstile-captcha-solver.p.rapidapi.com/turnstile/create_task", + "description": "Create the Cloudflare Turnstille CAPTCHA solver task", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://turnstile-captcha-solver.p.rapidapi.com/turnstile/create_task\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"turnstile-captcha-solver.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://turnstile-captcha-solver.p.rapidapi.com/turnstile/create_task\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"turnstile-captcha-solver.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tvb_qr_code.json b/toolbench/toolenv/tools/Tools/tvb_qr_code.json new file mode 100644 index 0000000000000000000000000000000000000000..6e64ffcdfc1a94c2291f3c3af025c72aa9e81a5e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tvb_qr_code.json @@ -0,0 +1,37 @@ +{ + "tool_name":"TVB QR Code", + "tool_description":"This API takes the URL and returns the image of the QR code.", + "title":"TVB QR Code", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":11947, + "avgSuccessRate":100, + "popularityScore":8.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/techventurebuilder/api/tvb-qr-code/", + "host":"tvb-qr-code.p.rapidapi.com", + "api_list":[ + { + "name":"Get QR Code", + "url":"https://tvb-qr-code.p.rapidapi.com/qr-code", + "description":"/qr-code", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://tvb-qr-code.p.rapidapi.com/qr-code\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tvb-qr-code.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/tvb_qr_code/api.py b/toolbench/toolenv/tools/Tools/tvb_qr_code/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c16e4dd9377c6c5f8410f0e0b2f6c80ab706f07b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/tvb_qr_code/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_qr_code(url: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "/qr-code" + + """ + url = f"https://tvb-qr-code.p.rapidapi.com/qr-code" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tvb-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/twitter.json b/toolbench/toolenv/tools/Tools/twitter.json new file mode 100644 index 0000000000000000000000000000000000000000..b65835c6ea96fa68608a458fc6a80e42c67a9958 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/twitter.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_5d4b2ee8-822f-40f0-aa59-64cc2b9eefb8", + "tool_description": "Download Twitter videos", + "home_url": "https://rapidapi.com/3205/api/twitter65/", + "name": "twitter", + "title": "twitter", + "pricing": "FREEMIUM", + "tool_name": "twitter", + "score": { + "avgServiceLevel": 33, + "avgLatency": 1350, + "avgSuccessRate": 31, + "popularityScore": 9.5, + "__typename": "Score" + }, + "host": "twitter65.p.rapidapi.com", + "api_list": [ + { + "name": "hls", + "url": "https://twitter65.p.rapidapi.com/api/twitter/hls", + "description": "hls => mp4 converter", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://twitter65.p.rapidapi.com/api/twitter/hls\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"twitter65.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://twitter65.p.rapidapi.com/api/twitter/hls\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"twitter65.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "This endpoint is disabled for your subscription" + } + } + ], + "standardized_name": "twitter" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/twitter/api.py b/toolbench/toolenv/tools/Tools/twitter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2462ac05ab2a764dc182fc3ecfc3fec5360ceb31 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/twitter/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def hls(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "hls => mp4 converter" + + """ + url = f"https://twitter65.p.rapidapi.com/api/twitter/hls" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "twitter65.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/unfurl_api_written_in_go.json b/toolbench/toolenv/tools/Tools/unfurl_api_written_in_go.json new file mode 100644 index 0000000000000000000000000000000000000000..17fa0d4c6bf57a20bcdd5710a4f61d1bb1996e9d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unfurl_api_written_in_go.json @@ -0,0 +1,40 @@ +{ + "tool_name":"Unfurl API written in go", + "tool_description":"Simplest API to unfurl URL descriptions, titles, images, and products, from all sites without being blocked. Fast and reliable.", + "title":"Unfurl API written in go", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1004, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/nikolas181492/api/unfurl-api-written-in-go/", + "host":"unfurl-api-written-in-go.p.rapidapi.com", + "api_list":[ + { + "name":"Unfurl", + "url":"https://unfurl-api-written-in-go.p.rapidapi.com/unfurl", + "description":"Send a url as a url param to our API to preview it", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"youtube.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unfurl-api-written-in-go.p.rapidapi.com/unfurl\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unfurl-api-written-in-go.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/unfurl_api_written_in_go/api.py b/toolbench/toolenv/tools/Tools/unfurl_api_written_in_go/api.py new file mode 100644 index 0000000000000000000000000000000000000000..60b726c520cba09a13292e33880808d902febc13 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unfurl_api_written_in_go/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def unfurl(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Send a url as a url param to our API to preview it" + + """ + url = f"https://unfurl-api-written-in-go.p.rapidapi.com/unfurl" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unfurl-api-written-in-go.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/unilink.json b/toolbench/toolenv/tools/Tools/unilink.json new file mode 100644 index 0000000000000000000000000000000000000000..01215bb539df0cba6afbe909aa9946777e418a45 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unilink.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_3e0b6ac7-d391-4c72-82d2-65afd230df35", + "tool_description": "Create one link for Google Play Store or Apple App Store with a default link.", + "home_url": "https://rapidapi.com/encurate/api/unilink/", + "name": "Unilink", + "title": "Unilink", + "pricing": "FREEMIUM", + "tool_name": "Unilink", + "score": null, + "host": "unilink.p.rapidapi.com", + "api_list": [ + { + "name": "Create Unilink", + "url": "https://unilink.p.rapidapi.com/", + "description": "Post `android_playstore`, `apple_appstore` and `fallback_link` to get `unilink `in response.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unilink.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unilink.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unilink.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unilink.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/unit_converter.json b/toolbench/toolenv/tools/Tools/unit_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..a3552f8a56ed83ce568f7568137b95754ba5b73e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unit_converter.json @@ -0,0 +1,370 @@ +{ + "product_id": "api_00971d92-be6f-4172-82d0-914b741051ec", + "tool_description": "Unit Converter API allows developers to easily integrate unit conversion functionality into their applications. It supports a wide range of units across different categories", + "home_url": "https://rapidapi.com/hefesto-technologies-hefesto-technologies-default/api/unit-converter7/", + "name": "unit converter", + "title": "unit converter", + "pricing": "FREEMIUM", + "tool_name": "unit converter", + "score": { + "avgServiceLevel": 100, + "avgLatency": 172, + "avgSuccessRate": 56, + "popularityScore": 8.2, + "__typename": "Score" + }, + "host": "unit-converter7.p.rapidapi.com", + "api_list": [ + { + "name": "Transform Units Using The Get Method", + "url": "https://unit-converter7.p.rapidapi.com/converter", + "description": "Transform Units Using The Get Method", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "Square mile" + }, + { + "name": "type", + "type": "STRING", + "description": "", + "default": "area" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "Square kilometer" + }, + { + "name": "value", + "type": "NUMBER", + "description": "", + "default": "1" + } + ], + "code": "import requests\n\nurl = \"https://unit-converter7.p.rapidapi.com/converter\"\nquerystring = {\"to\": \"Square mile\", \"type\": \"area\", \"from\": \"Square kilometer\", \"value\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-converter7.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unit-converter7.p.rapidapi.com/converter\"\nquerystring = {\"to\": \"Square mile\", \"type\": \"area\", \"from\": \"Square kilometer\", \"value\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-converter7.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "from": "Square kilometer", + "to": "Square mile", + "input": 1, + "result": 0.386102 + }, + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "from": { + "type": "string" + }, + "to": { + "type": "string" + }, + "input": { + "type": "integer" + }, + "result": { + "type": "number" + } + } + } + }, + { + "name": "info", + "url": "https://unit-converter7.p.rapidapi.com/info", + "description": "info", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unit-converter7.p.rapidapi.com/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-converter7.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unit-converter7.p.rapidapi.com/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-converter7.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "area": [ + "square kilometer", + "square meter", + "square mile", + "square yard", + "square foot", + "square inch", + "hectare", + "acre" + ], + "data-transfer-rate": [ + "Bit per second", + "Kilobit per second", + "Kilobyte per second", + "Kibibit per second", + "Megabit per second", + "Megabyte per second", + "Mebibit per second", + "Gigabit per second", + "Gigabyte per second", + "Gibibit per second", + "Terabit per second", + "Terabyte per second", + "Tebibit per second" + ], + "digital-storage": [ + "Bit", + "Kilobit", + "Kibibit", + "Megabit", + "Mebibit", + "Gigabit", + "Gibibit", + "Terabit", + "Tebibit", + "Petabit", + "Pebibit", + "Byte", + "Kilobyte", + "Kibibyte", + "Megabyte", + "Mebibyte", + "Gigabyte", + "Gibibyte", + "Terabyte", + "Tebibyte", + "Petabyte", + "Pebibyte" + ], + "energy": [ + "Joule", + "Kilojoule", + "Gram calorie", + "Kilocalorie", + "Watt hour", + "Kilowatt hour", + "Electronvolt", + "British thermal unit", + "US therm", + "Foot-pound" + ], + "frequency": [ + "Hertz", + "Kilohertz", + "Megahertz", + "Gigahertz" + ], + "fuel-economics": [ + "Miles per gallon", + "Miles per gallon (Imperial)", + "Kilometer per liter", + "Liter per 100 kilometers" + ], + "length": [ + "kilometer", + "meter", + "centimeter", + "millimeter", + "micrometers", + "nanometer", + "mile", + "yard", + "foot", + "inch", + "nautical mile" + ], + "mass": [ + "Tonne", + "Kilogram", + "Gram", + "Milligram", + "Microgram", + "Imperial ton", + "US ton", + "Stone", + "Pound", + "Ounce" + ], + "plane-angle": [ + "Arcsecond", + "Degree", + "Gradian", + "Milliradian", + "Minute of arc", + "Radian" + ], + "pressure": [ + "Bar", + "Pascal", + "Pound per square inch", + "Standard atmosphere", + "Torr" + ], + "speed": [ + "Mile per hour", + "Foot per second", + "Meter per second", + "Kilometer per hour", + "Knot" + ], + "temperature": [ + "Degree Celsius", + "Fahrenheit", + "Kelvin" + ], + "time": [ + "Nanosecond", + "Microsecond", + "Millisecond", + "Second", + "Minute", + "Hour", + "Day", + "Week", + "Month", + "Calendar year", + "Decade", + "Century" + ], + "volume": [ + "us liquid gallon", + "us liquid quart", + "us liquid pint", + "us legal cup", + "fluid ounce", + "us tablespoon", + "us teaspoon", + "cubic meter", + "liter", + "milliliter", + "imperial gallon", + "imperial quart", + "imperial pint", + "imperial cup", + "imp. fluid ounce", + "imperial tablespoon", + "imperial teaspoon", + "cubic foot", + "cubic inch" + ] + }, + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "area": { + "type": "array", + "items": { + "type": "string" + } + }, + "data-transfer-rate": { + "type": "array", + "items": { + "type": "string" + } + }, + "digital-storage": { + "type": "array", + "items": { + "type": "string" + } + }, + "energy": { + "type": "array", + "items": { + "type": "string" + } + }, + "frequency": { + "type": "array", + "items": { + "type": "string" + } + }, + "fuel-economics": { + "type": "array", + "items": { + "type": "string" + } + }, + "length": { + "type": "array", + "items": { + "type": "string" + } + }, + "mass": { + "type": "array", + "items": { + "type": "string" + } + }, + "plane-angle": { + "type": "array", + "items": { + "type": "string" + } + }, + "pressure": { + "type": "array", + "items": { + "type": "string" + } + }, + "speed": { + "type": "array", + "items": { + "type": "string" + } + }, + "temperature": { + "type": "array", + "items": { + "type": "string" + } + }, + "time": { + "type": "array", + "items": { + "type": "string" + } + }, + "volume": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + { + "name": "Transform Units Using The Post Method", + "url": "https://unit-converter7.p.rapidapi.com/converter", + "description": "Transform Units Using The Post Method", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unit-converter7.p.rapidapi.com/converter\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-converter7.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unit-converter7.p.rapidapi.com/converter\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-converter7.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "from": { + "type": "string" + }, + "to": { + "type": "string" + }, + "input": { + "type": "integer" + }, + "result": { + "type": "integer" + } + } + } + } + ], + "standardized_name": "unit_converter" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/unit_converter/api.py b/toolbench/toolenv/tools/Tools/unit_converter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f985cbf76b9189488982453b3ad4a11656852edc --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unit_converter/api.py @@ -0,0 +1,58 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def transform_units_using_the_get_method(to: str='Square mile', type: str='area', is_from: str='Square kilometer', value: int=1, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Transform Units Using The Get Method" + + """ + url = f"https://unit-converter7.p.rapidapi.com/converter" + querystring = {} + if to: + querystring['to'] = to + if type: + querystring['type'] = type + if is_from: + querystring['from'] = is_from + if value: + querystring['value'] = value + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-converter7.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def info(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "info" + + """ + url = f"https://unit-converter7.p.rapidapi.com/info" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-converter7.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/unit_converter_v2/api.py b/toolbench/toolenv/tools/Tools/unit_converter_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d89d91ccf7c32d423419477e9e572a140376afa9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unit_converter_v2/api.py @@ -0,0 +1,112 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_abbreviations_for_quantity(quantity: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the abbreviations of units of measure for a given quantity." + quantity: Quantity to get the units abbreviations for. + +Valid quantity names can be retrieved from the /Quantities endpoint. + + """ + url = f"https://unit-converter2.p.rapidapi.com/quantities/{quantity}/abbreviations" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-converter2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def convert(to: str, value: int, is_from: str, quantity: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint to do the actual conversion." + to: Unit of Measure to convert to. Both abbreviations as well as full names can be used, but from and to should be the same. + +Valid full unit names can be retrieved from the /Quantities/{quantity}/Units endpoint, +Valid abbreviations can be retrieved from the /Quantities/{quantity}/Abbreviations endpoint, + + value: The value to convert from the 'from' unit of measure to the 'to' unit of measure. Please use a decimal point as the decimal separator. + from: Unit of Measure to convert from. Both abbreviations as well as full names can be used. + +Valid full unit names can be retrieved from the /Quantities/{quantity}/Units endpoint, +Valid abbreviations can be retrieved from the /Quantities/{quantity}/Abbreviations endpoint, + + quantity: Quantity to convert. + +Valid quantity names can be retrieved from the /Quantities endpoint. + + """ + url = f"https://unit-converter2.p.rapidapi.com/convert/{quantity}" + querystring = {'to': to, 'value': value, 'from': is_from, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-converter2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_units_for_quantity(quantity: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the full names of units of measure for a given quantity." + quantity: Quantity to get the units full names for. + +Valid quantity names can be retrieved from the /Quantities endpoint. + + """ + url = f"https://unit-converter2.p.rapidapi.com/quantities/{quantity}/units" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-converter2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_quantities(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of available quantities." + + """ + url = f"https://unit-converter2.p.rapidapi.com/quantities" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-converter2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/unit_measurement_conversion.json b/toolbench/toolenv/tools/Tools/unit_measurement_conversion.json new file mode 100644 index 0000000000000000000000000000000000000000..8d87cc56e934a4e0862f2c7c9a6efe9e8ac07dca --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unit_measurement_conversion.json @@ -0,0 +1,68 @@ +{ + "tool_name":"Unit Measurement Conversion", + "tool_description":"Perform accurate and hassle-free conversions between various measurement units for weight, length, area, volume, speed, fuel, pressure, and temperature with our API. It supports local units and returns both the converted value and abbreviation (if available) for quick and easy integration into your projects.", + "title":"Unit Measurement Conversion", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":20737, + "avgSuccessRate":50, + "popularityScore":8.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/rachellau/api/unit-measurement-conversion/", + "host":"unit-measurement-conversion.p.rapidapi.com", + "api_list":[ + { + "name":"Convert a Unit", + "url":"https://unit-measurement-conversion.p.rapidapi.com/convert", + "description":"GET the Unit and Value you want to convert, and get a object with the result and abbreviation (if available).", + "method":"GET", + "required_parameters":[ + { + "name":"fromValue", + "type":"STRING", + "description":"", + "default":"200" + }, + { + "name":"toUnit", + "type":"STRING", + "description":"", + "default":"kilogram" + }, + { + "name":"fromUnit", + "type":"STRING", + "description":"", + "default":"pound" + }, + { + "name":"type", + "type":"STRING", + "description":"", + "default":"weight" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unit-measurement-conversion.p.rapidapi.com/convert\"\nquerystring = {\"fromValue\": fromvalue, \"toUnit\": tounit, \"fromUnit\": fromunit, \"type\": type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-measurement-conversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get a List of All Units", + "url":"https://unit-measurement-conversion.p.rapidapi.com/list", + "description":"This endpoint gets a full list of units available for conversion", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unit-measurement-conversion.p.rapidapi.com/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unit-measurement-conversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/unit_measurement_conversion/api.py b/toolbench/toolenv/tools/Tools/unit_measurement_conversion/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3ce62622ba85eed084b67223bacf4121a186375f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unit_measurement_conversion/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def convert_a_unit(fromvalue: str, tounit: str, fromunit: str, type: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "GET the Unit and Value you want to convert, and get a object with the result and abbreviation (if available)." + + """ + url = f"https://unit-measurement-conversion.p.rapidapi.com/convert" + querystring = {'fromValue': fromvalue, 'toUnit': tounit, 'fromUnit': fromunit, 'type': type, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-measurement-conversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_a_list_of_all_units(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint gets a full list of units available for conversion" + + """ + url = f"https://unit-measurement-conversion.p.rapidapi.com/list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unit-measurement-conversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/unitconversion.json b/toolbench/toolenv/tools/Tools/unitconversion.json new file mode 100644 index 0000000000000000000000000000000000000000..44119010401950ecee7f90edd2b8b3198a34dbf1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unitconversion.json @@ -0,0 +1,1001 @@ +{ + "tool_name":"UnitConversion", + "tool_description":"App to easily convert units", + "title":"UnitConversion", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":239, + "avgSuccessRate":100, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/goforamit16/api/unitconversion/", + "host":"unitconversion.p.rapidapi.com", + "api_list":[ + { + "name":"/info", + "url":"https://unitconversion.p.rapidapi.com/info", + "description":"List all supported units", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "format":"/:unit/:from/:to/:number", + "units":{ + "angle":[ + "radian", + "turn", + "degree", + "gradian" + ], + "area":[ + "square meter", + "square petameter", + "square terameter", + "square gigameter", + "square megameter", + "square kilometer", + "square hectometer", + "square decameter", + "square decimeter", + "square centimeter", + "square millimeter", + "square micrometer", + "square nanometer", + "square picometer", + "square femtometer", + "acre", + "centiare", + "deciare", + "are", + "decare", + "hectare", + "square feet", + "square inch", + "square yard", + "square mile" + ], + "data":[ + "bit", + "pebibit", + "tebibit", + "gibibit", + "mebibit", + "kibibit", + "petabit", + "terabit", + "gigabit", + "megabit", + "kilobit", + "hectobit", + "decabit", + "decibit", + "centibit", + "millibit", + "microbit", + "nanobit", + "picobit", + "femtobit", + "nibble", + "byte", + "pebibyte", + "tebibyte", + "gibibyte", + "mebibyte", + "kibibyte", + "petabyte", + "terabyte", + "gigabyte", + "megabyte", + "kilobyte", + "hectobyte", + "decabyte", + "decibyte", + "centibyte", + "millibyte", + "microbyte", + "nanobyte", + "picobyte", + "femtobyte", + "hextet" + ], + "force":[ + "newton", + "dyne", + "kilogram-force", + "kilopond", + "pound-force", + "poundal" + ], + "length":[ + "meter", + "petameter", + "terameter", + "gigameter", + "megameter", + "kilometer", + "hectometer", + "decameter", + "decimeter", + "centimeter", + "millimeter", + "micrometer", + "nanometer", + "picometer", + "femtometer", + "feet", + "inch", + "yard", + "mile", + "nautical mile" + ], + "mass":[ + "gram", + "petagram", + "teragram", + "gigagram", + "megagram", + "kilogram", + "hectogram", + "decagram", + "decigram", + "centigram", + "milligram", + "microgram", + "nanogram", + "picogram", + "femtogram", + "tonne", + "pound", + "stone", + "ounce", + "short ton", + "US ton", + "long ton" + ], + "pressure":[ + "pascal", + "petapascal", + "terapascal", + "gigapascal", + "megapascal", + "kilopascal", + "hectopascal", + "decapascal", + "decipascal", + "centipascal", + "millipascal", + "micropascal", + "nanopascal", + "picopascal", + "femtopascal", + "bar", + "petabar", + "terabar", + "gigabar", + "megabar", + "kilobar", + "hectobar", + "decabar", + "decibar", + "centibar", + "millibar", + "microbar", + "nanobar", + "picobar", + "femtobar", + "torr", + "millitorr", + "atmosphere" + ], + "temperature":[ + "kelvin", + "petakelvin", + "terakelvin", + "gigakelvin", + "megakelvin", + "kilokelvin", + "hectokelvin", + "decakelvin", + "decikelvin", + "centikelvin", + "millikelvin", + "microkelvin", + "nanokelvin", + "picokelvin", + "femtokelvin", + "fahrenheit", + "celsius", + "rankine" + ], + "time":[ + "second", + "petasecond", + "terasecond", + "gigasecond", + "megasecond", + "kilosecond", + "hectosecond", + "decasecond", + "decisecond", + "centisecond", + "millisecond", + "microsecond", + "nanosecond", + "picosecond", + "femtosecond", + "minute", + "hour", + "milliday", + "day", + "week", + "fortnight", + "month", + "year", + "decade", + "century", + "millennium", + "moment", + "shake", + "time unit", + "svedberg" + ], + "volume":[ + "cubic meter", + "cubic petameter", + "cubic terameter", + "cubic gigameter", + "cubic megameter", + "cubic kilometer", + "cubic hectometer", + "cubic decameter", + "cubic decimeter", + "cubic centimeter", + "cubic millimeter", + "cubic micrometer", + "cubic nanometer", + "cubic picometer", + "cubic femtometer", + "liter", + "petaliter", + "teraliter", + "gigaliter", + "megaliter", + "kiloliter", + "hectoliter", + "decaliter", + "deciliter", + "centiliter", + "milliliter", + "microliter", + "nanoliter", + "picoliter", + "femtoliter", + "cubic mile", + "acre-foot", + "cubic yard", + "cubic foot", + "board foot", + "cubic inch", + "measurement ton", + "imperial barrel", + "imperial bushel", + "imperial peck", + "imperial gallon", + "imperial quart", + "imperial pint", + "imperial fluid ounce", + "teaspoon", + "tablespoon", + "US fluid ounce", + "cup", + "pint", + "quart", + "gallon", + "US bushel", + "US peck", + "US dry gallon", + "US dry barrel", + "US dry quart", + "US dry pint" + ] + } + }, + "headers":{}, + "schema":{} + }, + { + "name":"/volume/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/volume/{is_from}/{to}/{number}", + "description":"Volume unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"to", + "type":"string", + "description":"", + "default":"cubic kilometer" + }, + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"60" + }, + { + "name":"from", + "type":"string", + "description":"", + "default":"cubic meter" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/volume/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"cubic meter", + "to":"cubic kilometer", + "from_symbol":"m³", + "to_symbol":"km³", + "input":60, + "rounded":4, + "result":6.000000000000001e-08, + "roundedResult":6.000000000000001e-08 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/time/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/time/{is_from}/{to}/{number}", + "description":"Temperature unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"from", + "type":"string", + "description":"", + "default":"minute" + }, + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"50" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"second" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/time/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"minute", + "to":"second", + "from_symbol":"min", + "to_symbol":"s", + "input":50, + "rounded":4, + "result":3000, + "roundedResult":3000 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/temperature/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/temperature/{is_from}/{to}/{number}", + "description":"Temperature unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"to", + "type":"string", + "description":"", + "default":"celsius" + }, + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"90" + }, + { + "name":"from", + "type":"string", + "description":"", + "default":"fahrenheit" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/temperature/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"fahrenheit", + "to":"celsius", + "from_symbol":"F", + "to_symbol":"C", + "input":90, + "rounded":4, + "result":32.222222222222285, + "roundedResult":32.2222 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/pressure/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/pressure/{is_from}/{to}/{number}", + "description":"Pressure unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"from", + "type":"string", + "description":"", + "default":"pascal" + }, + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"100" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"decibar" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/pressure/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"pascal", + "to":"decibar", + "from_symbol":"Pa", + "to_symbol":"dbar", + "input":100, + "rounded":4, + "result":0.01, + "roundedResult":0.01 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/mass/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/mass/{is_from}/{to}/{number}", + "description":"Mass unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"100" + }, + { + "name":"from", + "type":"string", + "description":"", + "default":"gram" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"pound" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/mass/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"gram", + "to":"pound", + "from_symbol":"g", + "to_symbol":"lb", + "input":100, + "rounded":4, + "result":0.22046226218487758, + "roundedResult":0.2205 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/force/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/force/{is_from}/{to}/{number}", + "description":"Force unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"from", + "type":"string", + "description":"", + "default":"newton" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"dyne" + }, + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"1000" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/force/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"newton", + "to":"dyne", + "from_symbol":"N", + "to_symbol":"dyn", + "input":1000, + "rounded":4, + "result":99999999.99999999, + "roundedResult":100000000 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/data/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/data/{is_from}/{to}/{number}", + "description":"Data unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"1024" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"byte" + }, + { + "name":"from", + "type":"string", + "description":"", + "default":"bit" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/data/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"bit", + "to":"byte", + "from_symbol":"b", + "to_symbol":"B", + "input":1024, + "rounded":4, + "result":128, + "roundedResult":128 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/area/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/area/{is_from}/{to}/{number}", + "description":"Area unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"from", + "type":"string", + "description":"", + "default":"square feet" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"acre" + }, + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"10" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/area/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"square feet", + "to":"acre", + "from_symbol":"ft²", + "to_symbol":"ac", + "input":10, + "rounded":4, + "result":0.0002295684113865932, + "roundedResult":0.0002 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/angle/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/angle/{is_from}/{to}/{number}", + "description":"Angle unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"10" + }, + { + "name":"from", + "type":"string", + "description":"", + "default":"radian" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"turn" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/angle/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"radian", + "to":"turn", + "from_symbol":"r", + "to_symbol":"tr", + "input":10, + "rounded":4, + "result":1.5915494309189535, + "roundedResult":1.5915 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + }, + { + "name":"/length/:from/:to/:number", + "url":"https://unitconversion.p.rapidapi.com/length/{is_from}/{to}/{number}", + "description":"Length unit conversions", + "method":"GET", + "required_parameters":[ + { + "name":"number", + "type":"NUMBER", + "description":"", + "default":"5" + }, + { + "name":"to", + "type":"string", + "description":"", + "default":"feet" + }, + { + "name":"from", + "type":"string", + "description":"", + "default":"meter" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://unitconversion.p.rapidapi.com/length/{is_from}/{to}/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unitconversion.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"meter", + "to":"feet", + "from_symbol":"m", + "to_symbol":"ft", + "input":5, + "rounded":4, + "result":16.404199475065614, + "roundedResult":16.4042 + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "from_symbol":{ + "type":"string" + }, + "to_symbol":{ + "type":"string" + }, + "input":{ + "type":"integer" + }, + "rounded":{ + "type":"integer" + }, + "result":{ + "type":"number" + }, + "roundedResult":{ + "type":"number" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/unitconversion/api.py b/toolbench/toolenv/tools/Tools/unitconversion/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7e6d2d586ee9a0cb4190a417b1bb2e2c69903014 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unitconversion/api.py @@ -0,0 +1,239 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def info(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List all supported units" + + """ + url = f"https://unitconversion.p.rapidapi.com/info" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def volume_from_to_number(to: str, number: int, is_from: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Volume unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/volume/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def time_from_to_number(is_from: str, number: int, to: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Temperature unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/time/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def temperature_from_to_number(to: str, number: int, is_from: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Temperature unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/temperature/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def pressure_from_to_number(is_from: str, number: int, to: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pressure unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/pressure/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def mass_from_to_number(number: int, is_from: str, to: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Mass unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/mass/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def force_from_to_number(is_from: str, to: str, number: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Force unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/force/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def data_from_to_number(number: int, to: str, is_from: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Data unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/data/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def area_from_to_number(is_from: str, to: str, number: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Area unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/area/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def angle_from_to_number(number: int, is_from: str, to: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Angle unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/angle/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def length_from_to_number(number: int, to: str, is_from: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Length unit conversions" + + """ + url = f"https://unitconversion.p.rapidapi.com/length/{is_from}/{to}/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unitconversion.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/unite_states_city_weather.json b/toolbench/toolenv/tools/Tools/unite_states_city_weather.json new file mode 100644 index 0000000000000000000000000000000000000000..7eac28721b17777cacd919a2b7e889239d0b7c0b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unite_states_city_weather.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Unite States City Weather", + "tool_description":" Route \"/api/weather\" with GET method. take the city name from parameter and return Weather forecast information in the next 15 days. the weather information contains temperature,precipitation,wind,etc", + "title":"Unite States City Weather", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/madexuxian19851111/api/unite-states-city-weather/", + "host":"unite-states-city-weather.p.rapidapi.com", + "api_list":[ + { + "name":"/api/weather", + "url":"https://unite-states-city-weather.p.rapidapi.com/api/weather", + "description":"https://xiaoluoguo.pythonanywhere.com/api/weather?city=New%20York", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"city", + "type":"STRING", + "description":"", + "default":"New York" + } + ], + "code":"import requests\n\nurl = \"https://unite-states-city-weather.p.rapidapi.com/api/weather\"\nquerystring = {\"city\": city}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unite-states-city-weather.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/unite_states_city_weather/api.py b/toolbench/toolenv/tools/Tools/unite_states_city_weather/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8f31ae3889d32fd1605525457b7c23ee1ffc55b6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/unite_states_city_weather/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def api_weather(city: str='New York', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "https://xiaoluoguo.pythonanywhere.com/api/weather?city=New%20York" + + """ + url = f"https://unite-states-city-weather.p.rapidapi.com/api/weather" + querystring = {} + if city: + querystring['city'] = city + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "unite-states-city-weather.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/units_converter.json b/toolbench/toolenv/tools/Tools/units_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..53626657c175191b6e64377ddadc8eff46e9880b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/units_converter.json @@ -0,0 +1,121 @@ +{ + "tool_name":"units converter", + "tool_description":"The Units Converter API allows developers to easily add a unit converter to their applications. This is done by performing HTTP GET requests with the appropriate parameters.", + "title":"units converter", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":213, + "avgSuccessRate":100, + "popularityScore":8.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/bertill/api/units-converter/", + "host":"units-converter.p.rapidapi.com", + "api_list":[ + { + "name":"Convert to all units", + "url":"https://units-converter.p.rapidapi.com/dev/{measurement}/convertall", + "description":"Converts the given quantity of a unit to the equivalent amount of all other units of a given measurement that the API provides conversion between. The legal values for measurement can be obtained from the API call GET: dev/measurements. The legal values for the units can be obtained from the API call GET: dev/{measurement}/allUnits.", + "method":"GET", + "required_parameters":[ + { + "name":"measurement", + "type":"string", + "description":"", + "default":"area" + }, + { + "name":"from", + "type":"STRING", + "description":"", + "default":"barn" + }, + { + "name":"convert", + "type":"NUMBER", + "description":"", + "default":"8" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://units-converter.p.rapidapi.com/dev/{measurement}/convertall\"\nquerystring = {\"from\": is_from, \"convert\": convert}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"units-converter.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get measurements", + "url":"https://units-converter.p.rapidapi.com/dev/measurements", + "description":"Returns an array of all the measurements for which the API provides conversion", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://units-converter.p.rapidapi.com/dev/measurements\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"units-converter.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all the units of a measurement", + "url":"https://units-converter.p.rapidapi.com/dev/{measurement}/allUnits", + "description":"Returns all the units of a measurement that the API provides conversion between. The legal values for measurement can be obtained from the API call GET: dev/measurements.", + "method":"GET", + "required_parameters":[ + { + "name":"measurement", + "type":"string", + "description":"", + "default":"angle" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://units-converter.p.rapidapi.com/dev/{measurement}/allUnits\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"units-converter.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Convert a quantity from one unit to another", + "url":"https://units-converter.p.rapidapi.com/dev/{measurement}", + "description":"Converts the given quantity in one unit to the equivalent quantity in another, for a given measurement, and returns the answer. The legal values for measurement can be obtained from the API call GET: dev/measurements. The legal values for the units can be obtained from the API call GET: dev/{measurement}/allUnits.", + "method":"GET", + "required_parameters":[ + { + "name":"measurement", + "type":"string", + "description":"", + "default":"energy" + }, + { + "name":"from", + "type":"STRING", + "description":"", + "default":"btu-mean" + }, + { + "name":"convert", + "type":"NUMBER", + "description":"", + "default":"3" + } + ], + "optional_parameters":[ + { + "name":"to", + "type":"STRING", + "description":"", + "default":"kilowatt-hour" + } + ], + "code":"import requests\n\nurl = \"https://units-converter.p.rapidapi.com/dev/{measurement}\"\nquerystring = {\"to\": to, \"from\": is_from, \"convert\": convert}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"units-converter.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/units_converter/api.py b/toolbench/toolenv/tools/Tools/units_converter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..797199ed96d13ce28717d7d4b64bb81e1e01bd9e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/units_converter/api.py @@ -0,0 +1,94 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def convert_to_all_units(measurement: str, is_from: str, convert: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Converts the given quantity of a unit to the equivalent amount of all other units of a given measurement that the API provides conversion between. The legal values for measurement can be obtained from the API call GET: dev/measurements. The legal values for the units can be obtained from the API call GET: dev/{measurement}/allUnits." + + """ + url = f"https://units-converter.p.rapidapi.com/dev/{measurement}/convertall" + querystring = {'from': is_from, 'convert': convert, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "units-converter.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_measurements(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns an array of all the measurements for which the API provides conversion" + + """ + url = f"https://units-converter.p.rapidapi.com/dev/measurements" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "units-converter.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_the_units_of_a_measurement(measurement: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all the units of a measurement that the API provides conversion between. The legal values for measurement can be obtained from the API call GET: dev/measurements." + + """ + url = f"https://units-converter.p.rapidapi.com/dev/{measurement}/allunits" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "units-converter.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def convert_a_quantity_from_one_unit_to_another(measurement: str, is_from: str, convert: int, to: str='kilowatt-hour', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Converts the given quantity in one unit to the equivalent quantity in another, for a given measurement, and returns the answer. The legal values for measurement can be obtained from the API call GET: dev/measurements. The legal values for the units can be obtained from the API call GET: dev/{measurement}/allUnits." + + """ + url = f"https://units-converter.p.rapidapi.com/dev/{measurement}" + querystring = {'from': is_from, 'convert': convert, } + if to: + querystring['to'] = to + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "units-converter.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/universal_time.json b/toolbench/toolenv/tools/Tools/universal_time.json new file mode 100644 index 0000000000000000000000000000000000000000..4def2a09ba2633d925d0ee665b1f171bb3402229 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/universal_time.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Universal Time", + "tool_description":"API return universal time", + "title":"Universal Time", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sydneywhittall404/api/universal-time/", + "host":"universal-time.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://universal-time.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://universal-time.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"universal-time.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/universal_time/api.py b/toolbench/toolenv/tools/Tools/universal_time/api.py new file mode 100644 index 0000000000000000000000000000000000000000..940ff5365713c4aa30fdb1cbc6d1e5cdf3591925 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/universal_time/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://universal-time.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "universal-time.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/upload_image_and_return_url_by_thichthicodeteam.json b/toolbench/toolenv/tools/Tools/upload_image_and_return_url_by_thichthicodeteam.json new file mode 100644 index 0000000000000000000000000000000000000000..c8fbb1d94a67babb2f733f297d7f8a301b0dd4ed --- /dev/null +++ b/toolbench/toolenv/tools/Tools/upload_image_and_return_url_by_thichthicodeteam.json @@ -0,0 +1,37 @@ +{ + "product_id": "api_5e3a399e-61eb-4060-b22b-8716920240db", + "tool_description": "In this API you can upload your images with filename extension like (png, jpg, gif,...etc) and you will get the url link of the images it is very suitable to store data in database for developer it will reduce the storage", + "home_url": "https://rapidapi.com/DatTranLK/api/upload-image-and-return-url-by-thichthicodeteam/", + "name": "Upload Image And Return URL by thichthicodeteam", + "title": "Upload Image And Return URL by thichthicodeteam", + "pricing": "FREEMIUM", + "tool_name": "Upload Image And Return URL by thichthicodeteam", + "score": { + "avgServiceLevel": 100, + "avgLatency": 5578, + "avgSuccessRate": 88, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "upload-image-and-return-url-by-thichthicodeteam.p.rapidapi.com", + "api_list": [ + { + "name": "Upload Image And Return URL", + "url": "https://upload-image-and-return-url-by-thichthicodeteam.p.rapidapi.com/api/upload-image", + "description": "The api will receive the image and return the url link image", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://upload-image-and-return-url-by-thichthicodeteam.p.rapidapi.com/api/upload-image\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"upload-image-and-return-url-by-thichthicodeteam.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://upload-image-and-return-url-by-thichthicodeteam.p.rapidapi.com/api/upload-image\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"upload-image-and-return-url-by-thichthicodeteam.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/uptosite_link_shortener.json b/toolbench/toolenv/tools/Tools/uptosite_link_shortener.json new file mode 100644 index 0000000000000000000000000000000000000000..3ce1e5e397c8053611aeb25eb59ea7b3240bc1be --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uptosite_link_shortener.json @@ -0,0 +1,74 @@ +{ + "tool_name": "UptoSite Link Shortener", + "tool_description": "Link Shortener API for developers", + "title": "UptoSite Link Shortener", + "pricing": "FREE", + "score": { + "avgServiceLevel": 100, + "avgLatency": 590, + "avgSuccessRate": 100, + "popularityScore": 9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/MuhammadOvi/api/uptosite-link-shortener/", + "host": "uptosite-link-shortener.p.rapidapi.com", + "api_list": [ + { + "name": "Get Long URL", + "url": "https://uptosite-link-shortener.p.rapidapi.com/long/{slug}", + "description": "Get the actual long URL from shortened URL", + "method": "GET", + "required_parameters": [ + { + "name": "slug", + "type": "string", + "description": "", + "default": "ntt-chrome" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://uptosite-link-shortener.p.rapidapi.com/long/{slug}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uptosite-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "url": "https://chrome.google.com/webstore/detail/newtabtodo/omajchkpfbgdnponeednigfehanaholi" + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": {} + }, + { + "name": "Short URL", + "url": "https://uptosite-link-shortener.p.rapidapi.com/short", + "description": "Short your long URLs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://uptosite-link-shortener.p.rapidapi.com/short\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uptosite-link-shortener.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "long": "http://google.com", + "shortUrl": "https://upto.site/google", + "success": true + }, + "headers": { + "accept": "application/json", + "content-type": "application/json" + }, + "schema": {} + }, + { + "name": "Short URL", + "url": "https://uptosite-link-shortener.p.rapidapi.com/short", + "description": "Short your long URLs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://uptosite-link-shortener.p.rapidapi.com/short\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uptosite-link-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://uptosite-link-shortener.p.rapidapi.com/short\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uptosite-link-shortener.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/uptosite_link_shortener/api.py b/toolbench/toolenv/tools/Tools/uptosite_link_shortener/api.py new file mode 100644 index 0000000000000000000000000000000000000000..599833e8be8564086fed6c89268ffd76945b6502 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uptosite_link_shortener/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_long_url(slug: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the actual long URL from shortened URL" + + """ + url = f"https://uptosite-link-shortener.p.rapidapi.com/long/{slug}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uptosite-link-shortener.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_checker.json b/toolbench/toolenv/tools/Tools/url_checker.json new file mode 100644 index 0000000000000000000000000000000000000000..a79d7c04c335ba9e8014677c0134d398f8bb541d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_checker.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_f2427e5d-7b2e-40fc-a56b-455a731b9765", + "tool_description": "Provide the original URL of each shorten URL that user requests. without accessing it directly on web browsers.", + "home_url": "https://rapidapi.com/quavious/api/url-checker/", + "name": "URL Checker", + "title": "URL Checker", + "pricing": "FREEMIUM", + "tool_name": "URL Checker", + "score": { + "avgServiceLevel": 100, + "avgLatency": 4196, + "avgSuccessRate": 99, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "url-checker.p.rapidapi.com", + "api_list": [ + { + "name": "URL Check", + "url": "https://url-checker.p.rapidapi.com/url", + "description": "Return origin url of each shorten url", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://url-checker.p.rapidapi.com/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-checker.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://url-checker.p.rapidapi.com/url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-checker.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_checker_and_parser.json b/toolbench/toolenv/tools/Tools/url_checker_and_parser.json new file mode 100644 index 0000000000000000000000000000000000000000..f9982c8e1ac287b485e44a89ff8136dd02d76139 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_checker_and_parser.json @@ -0,0 +1,63 @@ +{ + "tool_name":"URL Checker and Parser", + "tool_description":"Check if URL is live or parse and extract site meta data from any website using our free API", + "title":"URL Checker and Parser", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2866, + "avgSuccessRate":100, + "popularityScore":8.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/tanay-GyMpMdn1C/api/url-checker-and-parser/", + "host":"url-checker-and-parser.p.rapidapi.com", + "api_list":[ + { + "name":"parser", + "url":"https://url-checker-and-parser.p.rapidapi.com/parse", + "description":"Parse and extract site meta data from any website - returns title, description, image, author etc.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-checker-and-parser.p.rapidapi.com/parse\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-checker-and-parser.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"checker", + "url":"https://url-checker-and-parser.p.rapidapi.com/check", + "description":"Checks URL for their status - returns status code and message. API can detect broken links. API can be used to check if a web server is up or down", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-checker-and-parser.p.rapidapi.com/check\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-checker-and-parser.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_checker_and_parser/api.py b/toolbench/toolenv/tools/Tools/url_checker_and_parser/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f6fa9cd3488cc3c4aa664859b0be2cb0e35f7247 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_checker_and_parser/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def parser(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Parse and extract site meta data from any website - returns title, description, image, author etc." + + """ + url = f"https://url-checker-and-parser.p.rapidapi.com/parse" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-checker-and-parser.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def checker(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Checks URL for their status - returns status code and message. API can detect broken links. API can be used to check if a web server is up or down" + + """ + url = f"https://url-checker-and-parser.p.rapidapi.com/check" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-checker-and-parser.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_content_extractor.json b/toolbench/toolenv/tools/Tools/url_content_extractor.json new file mode 100644 index 0000000000000000000000000000000000000000..ba5169df9ca3fdc4e2c34ff0d34ff2ee7f484e03 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_content_extractor.json @@ -0,0 +1,70 @@ +{ + "tool_name":"URL Content Extractor", + "tool_description":"Provide a URL and get the content in return", + "title":"URL Content Extractor", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":99, + "avgLatency":818, + "avgSuccessRate":99, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/urlcontentextractor/api/url-content-extractor/", + "host":"url-content-extractor.p.rapidapi.com", + "api_list":[ + { + "name":"Search Content", + "url":"https://url-content-extractor.p.rapidapi.com/search", + "description":"Allows you to search content for content based on a query.", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-content-extractor.p.rapidapi.com/search\"\nquerystring = {\"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-content-extractor.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Trending", + "url":"https://url-content-extractor.p.rapidapi.com/trending", + "description":"This will return a list of news articles that are trending.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-content-extractor.p.rapidapi.com/trending\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-content-extractor.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Content", + "url":"https://url-content-extractor.p.rapidapi.com/content", + "description":"Give a url and it will spit back the content of that url", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.cnbc.com/2022/06/27/three-arrows-capital-crypto-hedge-fund-defaults-on-voyager-loan.html" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-content-extractor.p.rapidapi.com/content\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-content-extractor.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_content_extractor/api.py b/toolbench/toolenv/tools/Tools/url_content_extractor/api.py new file mode 100644 index 0000000000000000000000000000000000000000..543acfcd71316c2dfb4bdff3c5677069a1261417 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_content_extractor/api.py @@ -0,0 +1,71 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_content(query: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Allows you to search content for content based on a query." + + """ + url = f"https://url-content-extractor.p.rapidapi.com/search" + querystring = {'query': query, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-content-extractor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_trending(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This will return a list of news articles that are trending." + + """ + url = f"https://url-content-extractor.p.rapidapi.com/trending" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-content-extractor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_content(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Give a url and it will spit back the content of that url" + + """ + url = f"https://url-content-extractor.p.rapidapi.com/content" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-content-extractor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_ip_finder/api.py b/toolbench/toolenv/tools/Tools/url_ip_finder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1ae1c984342262db98927a14c55472f73162f8cc --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_ip_finder/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def ipfinder(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Shows the user the IP address of a given site" + + """ + url = f"https://url-ip-finder.p.rapidapi.com/api/ipaddress/{url}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-ip-finder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_qr_converter.json b/toolbench/toolenv/tools/Tools/url_qr_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..b3d7c73724065a5afa795e9f9c24cc66df6b6a1f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_qr_converter.json @@ -0,0 +1,31 @@ +{ + "tool_name":"URL QR Converter", + "tool_description":"This API takes a URL or String as parameter and returns a QR code image.", + "title":"URL QR Converter", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/leviskualo/api/url-qr-converter/", + "host":"url-qr-converter.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code Image_copy", + "url":"https://url-qr-converter.p.rapidapi.com/qrcode", + "description":"This end point takes a 'GET' request with URL/String as a parameter and returns a QR downloadable image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"google.com" + } + ], + "code":"import requests\n\nurl = \"https://url-qr-converter.p.rapidapi.com/qrcode\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-qr-converter.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_qr_converter/api.py b/toolbench/toolenv/tools/Tools/url_qr_converter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a886f62ef25a88ea84f4d916105f5b974b683589 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_qr_converter/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with URL/String as a parameter and returns a QR downloadable image." + + """ + url = f"https://url-qr-converter.p.rapidapi.com/qrcode" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-qr-converter.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_qr_generator_api.json b/toolbench/toolenv/tools/Tools/url_qr_generator_api.json new file mode 100644 index 0000000000000000000000000000000000000000..01af5ed490b5f52f4a25a568c41dac73efead17e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_qr_generator_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Url Qr Generator API", + "tool_description":"Takes URL as string and returns QR code image", + "title":"Url Qr Generator API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/AleisterFox/api/url-qr-generator-api/", + "host":"url-qr-generator-api.p.rapidapi.com", + "api_list":[ + { + "name":"QR Image Code", + "url":"https://url-qr-generator-api.p.rapidapi.com/qr", + "description":"Takes a 'GET' request with URL as a parameter and returns the URL qr code image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://url-qr-generator-api.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-qr-generator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_qr_generator_api/api.py b/toolbench/toolenv/tools/Tools/url_qr_generator_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..80e64215ad9444172970001e379c00307be8ef7e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_qr_generator_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_image_code(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Takes a 'GET' request with URL as a parameter and returns the URL qr code image." + + """ + url = f"https://url-qr-generator-api.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-qr-generator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_security.json b/toolbench/toolenv/tools/Tools/url_security.json new file mode 100644 index 0000000000000000000000000000000000000000..69a9f47582db2ea1a2f3108cda069e42e0c19409 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_security.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_63957afc-b4f1-464b-903b-a075757d9ea1", + "tool_description": "The Safe Browsing API is a service that allows users to check URLs for potential security threats. This API interacts with Google's Safe Browsing service to provide real-time information about the safety status of a given URL.", + "home_url": "https://rapidapi.com/gacbaluyot-xGS7b4eP6YL/api/url-security/", + "name": "Url Security", + "title": "Url Security", + "pricing": "FREEMIUM", + "tool_name": "Url Security", + "score": null, + "host": "url-security.p.rapidapi.com", + "api_list": [ + { + "name": "URL Safety Checker API", + "url": "https://url-security.p.rapidapi.com/check-url", + "description": "**URL Safety Checker API\n**\nThe URL Safety Checker API allows you to check the safety of a URL by leveraging the power of the Google Safe Browsing API. It helps you identify potentially harmful websites that may contain malware or engage in social engineering attacks.\n\nKey Features\n\n-** URL Safety Checking**: Submit a URL and receive an indication of whether it is safe or potentially harmful.\n\n-** Integration with Google Safe Browsing**: Utilizes the Google Safe Browsing API to perform comprehensive threat analysis on the provided URL.\n\n\nHow to Use\n\n- Sign up for an account and obtain an API key.\n- Submit a URL to the /check-url endpoint via a POST request.\n- Receive the safety status of the URL, indicating whether it is safe or potentially harmful.\n- Take appropriate actions based on the safety status to protect users or systems from potential threats.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://url-security.p.rapidapi.com/check-url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-security.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://url-security.p.rapidapi.com/check-url\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-security.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_shortener.json b/toolbench/toolenv/tools/Tools/url_shortener.json new file mode 100644 index 0000000000000000000000000000000000000000..e328966870ffdcaf037baa6fd0b7f34f884d45b2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener.json @@ -0,0 +1,73 @@ +{ + "product_id": "api_2e3e6c6d-7c4d-4fbc-b45e-97e23272c15e", + "tool_description": "URL Shortener with free QR Code generation, tracking features and more. Backed by ultra fast CDN and Hosting.", + "home_url": "https://rapidapi.com/api4life/api/url-shortener25/", + "name": "URL Shortener", + "title": "URL Shortener", + "pricing": "FREEMIUM", + "tool_name": "URL Shortener", + "score": { + "avgServiceLevel": 100, + "avgLatency": 628, + "avgSuccessRate": 100, + "popularityScore": 7.8, + "__typename": "Score" + }, + "host": "url-shortener25.p.rapidapi.com", + "api_list": [ + { + "name": "short-urls/{code}/visits", + "url": "https://url-shortener25.p.rapidapi.com/short-urls/j95Aj/visits", + "description": "Shows clicks, referer, etc. for a specific short link.", + "method": "GET", + "required_parameters": [ + { + "name": "code", + "type": "string", + "description": "", + "default": "j95Aj" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://url-shortener25.p.rapidapi.com/short-urls/j95Aj/visits\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener25.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://url-shortener25.p.rapidapi.com/short-urls/{code}/visits\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener25.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "short-urls/{code}", + "url": "https://url-shortener25.p.rapidapi.com/short-urls/U1hAI", + "description": "Shows information about a short link code.", + "method": "GET", + "required_parameters": [ + { + "name": "code", + "type": "string", + "description": "", + "default": "U1hAI" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://url-shortener25.p.rapidapi.com/short-urls/U1hAI\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener25.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://url-shortener25.p.rapidapi.com/short-urls/{code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener25.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "short-urls", + "url": "https://url-shortener25.p.rapidapi.com/short-urls", + "description": "Create a short url", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://url-shortener25.p.rapidapi.com/short-urls\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener25.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://url-shortener25.p.rapidapi.com/short-urls\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener25.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "url_shortener" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_shortener/api.py b/toolbench/toolenv/tools/Tools/url_shortener/api.py new file mode 100644 index 0000000000000000000000000000000000000000..de56e4cd4ff1d3cee0e296050d7692de5ff30bd4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def short_urls_code_visits(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Shows clicks, referer, etc. for a specific short link." + + """ + url = f"https://url-shortener25.p.rapidapi.com/short-urls/{code}/visits" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortener25.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def short_urls_code(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Shows information about a short link code." + + """ + url = f"https://url-shortener25.p.rapidapi.com/short-urls/{code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortener25.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_shortener_and_unshortener.json b/toolbench/toolenv/tools/Tools/url_shortener_and_unshortener.json new file mode 100644 index 0000000000000000000000000000000000000000..92d6512a7444912c8a94a0a477a0612360e30e99 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener_and_unshortener.json @@ -0,0 +1,71 @@ +{ + "tool_name":"URL Shortener and Unshortener", + "tool_description":"REST api to shorten a provided long URL and the vice-a-versa.", + "title":"URL Shortener and Unshortener", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/TekBunny/api/url-shortener-and-unshortener/", + "host":"url-shortener-and-unshortener.p.rapidapi.com", + "api_list":[ + { + "name":"Unshorten Url", + "url":"https://url-shortener-and-unshortener.p.rapidapi.com/v2/unshorten", + "description":"Returns actual URL for a provided Tinyurl.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-shortener-and-unshortener.p.rapidapi.com/v2/unshorten\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener-and-unshortener.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "Response":{ + "type":"string" + } + } + } + }, + { + "name":"Shorten Url", + "url":"https://url-shortener-and-unshortener.p.rapidapi.com/v2/shorten", + "description":"Generates Tinyurl for a provided url", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-shortener-and-unshortener.p.rapidapi.com/v2/shorten\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener-and-unshortener.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "Response":{ + "type":"string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_shortener_and_unshortener/api.py b/toolbench/toolenv/tools/Tools/url_shortener_and_unshortener/api.py new file mode 100644 index 0000000000000000000000000000000000000000..715cca1ad1849ba84bc1f86fbd4e245e4350ffa3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener_and_unshortener/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def unshorten_url(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns actual URL for a provided Tinyurl." + + """ + url = f"https://url-shortener-and-unshortener.p.rapidapi.com/v2/unshorten" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortener-and-unshortener.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def shorten_url(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates Tinyurl for a provided url" + + """ + url = f"https://url-shortener-and-unshortener.p.rapidapi.com/v2/shorten" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortener-and-unshortener.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_shortener_api.json b/toolbench/toolenv/tools/Tools/url_shortener_api.json new file mode 100644 index 0000000000000000000000000000000000000000..7b5d4fa799263747e36a04dc0bdbab2ecd0d729c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"URL Shortener API ", + "tool_description":"This API takes valid URL string as parameter and return the very short URL so that you can share the short URL in message and save money.", + "title":"URL Shortener API ", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/apiuservices/api/url-shortener-api/", + "host":"url-shortener-api.p.rapidapi.com", + "api_list":[ + { + "name":"URL Shortner API", + "url":"https://url-shortener-api.p.rapidapi.com/", + "description":"This API takes valid URL string as parameter and return the very short URL so that you can share the short URL in message and save money.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-shortener-api.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortener-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_shortener_api/api.py b/toolbench/toolenv/tools/Tools/url_shortener_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..496c2671b8f861fe5dfee655c51a72d3d3a985bd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def url_shortner_api(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This API takes valid URL string as parameter and return the very short URL so that you can share the short URL in message and save money." + + """ + url = f"https://url-shortener-api.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortener-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_shortener_v2/api.py b/toolbench/toolenv/tools/Tools/url_shortener_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0f00fba089a5dc8a532e12894c6dae3b75eeb1fd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortener_v2/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def link_shortening(short: str, name: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Link Shortening" + + """ + url = f"https://url-shortener19.p.rapidapi.com/api/api.php" + querystring = {'short': short, } + if name: + querystring['name'] = name + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortener19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_shortner_api.json b/toolbench/toolenv/tools/Tools/url_shortner_api.json new file mode 100644 index 0000000000000000000000000000000000000000..8c4f2938ee9b03318f48352fd4962b5021263e4c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortner_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"URL Shortner API", + "tool_description":"This API takes valid URL string as parameter and return the very short URL so that you can share the short URL in message and save money.", + "title":"URL Shortner API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/neerajguptachatgpt/api/url-shortner-api/", + "host":"url-shortner-api.p.rapidapi.com", + "api_list":[ + { + "name":"URL Shortner API", + "url":"https://url-shortner-api.p.rapidapi.com/", + "description":"This API takes valid URL string as parameter and return the very short URL so that you can share the short URL in message and save money.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://url-shortner-api.p.rapidapi.com/\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-shortner-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_shortner_api/api.py b/toolbench/toolenv/tools/Tools/url_shortner_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a81fc83d29f0b87b1c1675a26ecb209567f4ba71 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_shortner_api/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def url_shortner_api(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This API takes valid URL string as parameter and return the very short URL so that you can share the short URL in message and save money." + + """ + url = f"https://url-shortner-api.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-shortner-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_to_qr_code/api.py b/toolbench/toolenv/tools/Tools/url_to_qr_code/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ec37e1a87ce0b3dca063155e70557e819c8d7270 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_to_qr_code/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def url_to_qr_code(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "it's get request url as string and convert it into image" + + """ + url = f"https://url-to-qr-code3.p.rapidapi.com/qr_code" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-to-qr-code3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_to_qr_code_generator/api.py b/toolbench/toolenv/tools/Tools/url_to_qr_code_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5aed7ec92815c6ee36e862e2e28c8722858197ad --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_to_qr_code_generator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_generation(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a QR downloaded qr code" + + """ + url = f"https://url-to-qr-code-generator1.p.rapidapi.com/qr" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-to-qr-code-generator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_to_qr_code_v2/api.py b/toolbench/toolenv/tools/Tools/url_to_qr_code_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1c16bf897b9f5ff2a9295513799232bf06fac064 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_to_qr_code_v2/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code(url: str='www.example.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point uses 'GET' request for taking URL as a parameter to return a QR code image." + + """ + url = f"https://url-to-qr-code.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-to-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/url_to_qrcode_image_api.json b/toolbench/toolenv/tools/Tools/url_to_qrcode_image_api.json new file mode 100644 index 0000000000000000000000000000000000000000..a8578cd5b966c9ce02cc7fd39babf465a347b808 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_to_qrcode_image_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"URL to QRCode Image API", + "tool_description":"This API takes URL and return as a QR Code image", + "title":"URL to QRCode Image API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/ohidur/api/url-to-qrcode-image-api/", + "host":"url-to-qrcode-image-api.p.rapidapi.com", + "api_list":[ + { + "name":"QR Code image", + "url":"https://url-to-qrcode-image-api.p.rapidapi.com/qr", + "description":"This endpoint takes a 'GET' request with url or string as a parameter and returns QR code image", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://url-to-qrcode-image-api.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"url-to-qrcode-image-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/url_to_qrcode_image_api/api.py b/toolbench/toolenv/tools/Tools/url_to_qrcode_image_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..342137c3080c012bf556dcf77cf644d0df417cf4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/url_to_qrcode_image_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image(url: str='https://www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a 'GET' request with url or string as a parameter and returns QR code image" + + """ + url = f"https://url-to-qrcode-image-api.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "url-to-qrcode-image-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/urlchecker.json b/toolbench/toolenv/tools/Tools/urlchecker.json new file mode 100644 index 0000000000000000000000000000000000000000..8dbdb2f8e5df6ca3baaea32273fd87f041b6cc11 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/urlchecker.json @@ -0,0 +1,118 @@ +{ + "tool_name":"Urlchecker", + "tool_description":"Urlchecker.net is a website tools to help you find out the link want to download still A Live or Dead,get name size and decode encode links", + "title":"Urlchecker", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":243, + "avgSuccessRate":100, + "popularityScore":8.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/phannhatnghi/api/urlchecker/", + "host":"urlchecker.p.rapidapi.com", + "api_list":[ + { + "name":"links", + "url":"https://urlchecker.p.rapidapi.com/", + "description":"single Links ( see list host support from http://urlchecker.net/#hosts) (rapidgator.net,mediafire.com...)", + "method":"GET", + "required_parameters":[ + { + "name":"links", + "type":"STRING", + "description":"single Links ( see list host support from http://urlchecker.net/#hosts) (rapidgator.net,mediafire.com...)", + "default":"http://www.mediafire.com/?wfghxg5x7d159x8<" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://urlchecker.p.rapidapi.com/\"\nquerystring = {\"links\": links}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"urlchecker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"decodelinks", + "url":"https://urlchecker.p.rapidapi.com/", + "description":"Decode multi link or website", + "method":"GET", + "required_parameters":[ + { + "name":"decodelinks", + "type":"STRING", + "description":"Decode multi link or website", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"response_format", + "type":"STRING", + "description":"'xml' ,'txt' or 'json' (default 'xml')", + "default":"json" + } + ], + "code":"import requests\n\nurl = \"https://urlchecker.p.rapidapi.com/\"\nquerystring = {\"decodelinks\": decodelinks, \"response_format\": response_format}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"urlchecker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"decodelink", + "url":"https://urlchecker.p.rapidapi.com/", + "description":"Decode single link only (adf.ly,safelinking.net,bit.ly ...)", + "method":"GET", + "required_parameters":[ + { + "name":"decodelink", + "type":"STRING", + "description":"Decode single link only (adf.ly,safelinking.net,bit.ly ...)", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"response_format", + "type":"STRING", + "description":"'xml' ,'txt' or 'json' (default 'xml')", + "default":"json" + } + ], + "code":"import requests\n\nurl = \"https://urlchecker.p.rapidapi.com/\"\nquerystring = {\"decodelink\": decodelink, \"response_format\": response_format}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"urlchecker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"url", + "url":"https://urlchecker.p.rapidapi.com/", + "description":"website or folder need extract ( extract and check )", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"website or folder need extract ( extract and check )", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"response_format", + "type":"STRING", + "description":"'xml' ,'txt' or 'json' (default 'xml')", + "default":"json" + } + ], + "code":"import requests\n\nurl = \"https://urlchecker.p.rapidapi.com/\"\nquerystring = {\"url\": url, \"response_format\": response_format}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"urlchecker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/urlchecker/api.py b/toolbench/toolenv/tools/Tools/urlchecker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bca598d96f01205300034c9d21fc18fedd79fe81 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/urlchecker/api.py @@ -0,0 +1,105 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def links(links: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "single Links ( see list host support from http://urlchecker.net/#hosts) (rapidgator.net,mediafire.com...)" + links: single Links ( see list host support from http://urlchecker.net/#hosts) (rapidgator.net,mediafire.com...) + + """ + url = f"https://urlchecker.p.rapidapi.com/" + querystring = {'links': links, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "urlchecker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def decodelinks(decodelinks: str, response_format: str='json', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Decode multi link or website" + decodelinks: Decode multi link or website + response_format: 'xml' ,'txt' or 'json' (default 'xml') + + """ + url = f"https://urlchecker.p.rapidapi.com/" + querystring = {'decodelinks': decodelinks, } + if response_format: + querystring['response_format'] = response_format + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "urlchecker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def decodelink(decodelink: str, response_format: str='json', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Decode single link only (adf.ly,safelinking.net,bit.ly ...)" + decodelink: Decode single link only (adf.ly,safelinking.net,bit.ly ...) + response_format: 'xml' ,'txt' or 'json' (default 'xml') + + """ + url = f"https://urlchecker.p.rapidapi.com/" + querystring = {'decodelink': decodelink, } + if response_format: + querystring['response_format'] = response_format + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "urlchecker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def url(url: str, response_format: str='json', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "website or folder need extract ( extract and check )" + url: website or folder need extract ( extract and check ) + response_format: 'xml' ,'txt' or 'json' (default 'xml') + + """ + url = f"https://urlchecker.p.rapidapi.com/" + querystring = {'url': url, } + if response_format: + querystring['response_format'] = response_format + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "urlchecker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/urlshortener.json b/toolbench/toolenv/tools/Tools/urlshortener.json new file mode 100644 index 0000000000000000000000000000000000000000..f77b94d5d433ce7f45043dad222b3e0f8736bad4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/urlshortener.json @@ -0,0 +1,41 @@ +{ + "product_id": "api_6f03e9bf-ed96-4e9c-a1eb-c46d7d5b3eea", + "tool_description": "URL Shortener is a Node.js-based backend project that provides a simple and efficient way to shorten URLs and track click analytics. It offers a RESTful API for creating, managing, and accessing shortened URLs.", + "home_url": "https://rapidapi.com/ritulsingh/api/urlshortener2/", + "name": "URLShortener", + "title": "URLShortener", + "pricing": "FREEMIUM", + "tool_name": "URLShortener", + "score": { + "avgServiceLevel": 100, + "avgLatency": 30965, + "avgSuccessRate": 33, + "popularityScore": 8.8, + "__typename": "Score" + }, + "host": "urlshortener2.p.rapidapi.com", + "api_list": [ + { + "name": "/api/urlShort/shorten", + "url": "https://urlshortener2.p.rapidapi.com/api/urlShort/shorten", + "description": "Shortens a long URL and returns the shortened URL.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://urlshortener2.p.rapidapi.com/api/urlShort/shorten\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"urlshortener2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://urlshortener2.p.rapidapi.com/api/urlShort/shorten\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"urlshortener2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "shortUrl": { + "type": "string", + "format": "uri", + "description": "The shortened URL." + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/usa_jobs_for_it.json b/toolbench/toolenv/tools/Tools/usa_jobs_for_it.json new file mode 100644 index 0000000000000000000000000000000000000000..24be36391d3e874d43e59dd6682aa0396881967e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/usa_jobs_for_it.json @@ -0,0 +1,160 @@ +{ + "tool_name":"USA Jobs for IT", + "tool_description":"An USA Jobs for IT API from different sources", + "title":"USA Jobs for IT", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":138, + "avgSuccessRate":100, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/betoalien/api/usa-jobs-for-it/", + "host":"usa-jobs-for-it.p.rapidapi.com", + "api_list":[ + { + "name":"Full Stack Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/FullStack", + "description":"Full Stack Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/FullStack\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Data Engineer Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/DataEngineer", + "description":"Data Engineer Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/DataEngineer\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Business Intelligence Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/BusinessIntelligence", + "description":"Business Intelligence Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/BusinessIntelligence\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Laravel Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/Laravel", + "description":"Laravel Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/Laravel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"JavaScript Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/JavaScript", + "description":"JavaScript Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/JavaScript\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Java Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/Java", + "description":"Java Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/Java\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"NodeJs Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/NodeJs", + "description":"NodeJs Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/NodeJs\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Data Analyst Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/DataAnalyst", + "description":"Data Analyst Jobs Api", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/DataAnalyst\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"React Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/React", + "description":"React Jobs API", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/React\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Angular Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/Angular", + "description":"Angular Jobs API", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/Angular\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Python Jobs", + "url":"https://usa-jobs-for-it.p.rapidapi.com/Python", + "description":"API for Python Jobs", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-jobs-for-it.p.rapidapi.com/Python\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-jobs-for-it.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/usa_jobs_for_it/api.py b/toolbench/toolenv/tools/Tools/usa_jobs_for_it/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a7e669edbc05f6428e6d9753d2206532297c89df --- /dev/null +++ b/toolbench/toolenv/tools/Tools/usa_jobs_for_it/api.py @@ -0,0 +1,239 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def full_stack_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Full Stack Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/fullstack" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def data_engineer_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Data Engineer Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/dataengineer" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def business_intelligence_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Business Intelligence Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/businessintelligence" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def laravel_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Laravel Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/laravel" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def javascript_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "JavaScript Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/javascript" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def java_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Java Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/java" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def nodejs_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "NodeJs Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/nodejs" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def data_analyst_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Data Analyst Jobs Api" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/dataanalyst" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def react_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "React Jobs API" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/react" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def angular_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Angular Jobs API" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/angular" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def python_jobs(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API for Python Jobs" + + """ + url = f"https://usa-jobs-for-it.p.rapidapi.com/python" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-jobs-for-it.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/usa_routing_number_validation.json b/toolbench/toolenv/tools/Tools/usa_routing_number_validation.json new file mode 100644 index 0000000000000000000000000000000000000000..42f411f1138cdaa04b3a11e605205e421e8eaa21 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/usa_routing_number_validation.json @@ -0,0 +1,49 @@ +{ + "tool_name":"USA Routing Number Validation", + "tool_description":"API checks USA Routing No. for its length & Check Digits by the algorithm required for the validation of USA Routing Numbers. The API ensures, you use correct routing number in financial transactions in order to avoid payment transaction failures. ", + "title":"USA Routing Number Validation", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/sisinfo-sisinfo-default/api/usa-routing-number-validation/", + "host":"usa-routing-number-validation.p.rapidapi.com", + "api_list":[ + { + "name":"USA Routing Numbers Validation", + "url":"https://usa-routing-number-validation.p.rapidapi.com/", + "description":"Validate USA Routing Numbers in order to avoid transactions failure. In USA Routing Numbers are required for domestic payment transactions& international payment receipts.", + "method":"GET", + "required_parameters":[ + { + "name":"rtn", + "type":"STRING", + "description":"", + "default":"021100361" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://usa-routing-number-validation.p.rapidapi.com/\"\nquerystring = {\"rtn\": rtn}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"usa-routing-number-validation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "STATUS":"SUCCESS", + "STATUSCODE":"200", + "MESSAGE":"Routing No. is correct", + "ROUTING_NO":"021100361" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"Origin, Content-Type, Accept, Authorization, X-Request-With", + "access-control-allow-methods":"POST, GET, OPTIONS", + "access-control-allow-origin":"*", + "cache-control":"no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 10 May 2023 08:11:19 GMT", + "pragma":"no-cache", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/usa_routing_number_validation/api.py b/toolbench/toolenv/tools/Tools/usa_routing_number_validation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..cb910f0cd329f152737ec70d9626130bb313c782 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/usa_routing_number_validation/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def usa_routing_numbers_validation(rtn: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Validate USA Routing Numbers in order to avoid transactions failure. In USA Routing Numbers are required for domestic payment transactions& international payment receipts." + + """ + url = f"https://usa-routing-number-validation.p.rapidapi.com/" + querystring = {'rtn': rtn, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-routing-number-validation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/useful_funcs.json b/toolbench/toolenv/tools/Tools/useful_funcs.json new file mode 100644 index 0000000000000000000000000000000000000000..5c4e1e3c8af9b4e2c6b674cde0e6494f473dbe3a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/useful_funcs.json @@ -0,0 +1,233 @@ +{ + "tool_name":"Useful Funcs", + "tool_description":"Useful Funcs is a collection of useful functions.", + "title":"Useful Funcs", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/ACSTRGE/api/useful-funcs/", + "host":"useful-funcs.p.rapidapi.com", + "api_list":[ + { + "name":"get IP address", + "url":"https://useful-funcs.p.rapidapi.com/ip/getipaddress", + "description":"returns the IP address of the client that called the API.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://useful-funcs.p.rapidapi.com/ip/getipaddress\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"useful-funcs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "IP Address":"13.112.233.15" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"is digit?", + "url":"https://useful-funcs.p.rapidapi.com/validation/isdigit", + "description":"checking the string contains only digits", + "method":"GET", + "required_parameters":[ + { + "name":"digitString", + "type":"STRING", + "description":"digit string to check", + "default":"12345" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://useful-funcs.p.rapidapi.com/validation/isdigit\"\nquerystring = {\"digitString\": digitstring}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"useful-funcs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "result":true + }, + "headers":{ + "content-type":"application/json", + "date":"Sat, 11 Jan 2020 20:22:38 GMT", + "server":"RapidAPI-1.0.32", + "via":"1.1 fd95d915cb5f672e4b8b3613a0dde9ea.cloudfront.net (CloudFront)", + "x-amz-apigw-id":"GJw2VFLzoAMFv7w=", + "x-amz-cf-id":"FqBYEdoYNv9z8CAQ96yfmOm4KjxL8JThT4Gx5Ie0uJPu9FfY-cmdbw==", + "x-amz-cf-pop":"NRT12-C2", + "x-amzn-requestid":"1e865ae5-1a37-4b9d-b374-57efee19e4ba", + "x-amzn-trace-id":"Root=1-5e1a2e8e-04004d846c6bc11440e9684a;Sampled=0", + "x-cache":"Miss from cloudfront", + "x-rapidapi-region":"AWS - ap-northeast-1", + "x-rapidapi-version":"1.0.32", + "content-length":"16", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"is alpha?", + "url":"https://useful-funcs.p.rapidapi.com/validation/isalpha", + "description":"checking the string contains only alphabetic characters", + "method":"GET", + "required_parameters":[ + { + "name":"alphaString", + "type":"STRING", + "description":"alpha string to check", + "default":"AbCdEf" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://useful-funcs.p.rapidapi.com/validation/isalpha\"\nquerystring = {\"alphaString\": alphastring}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"useful-funcs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "result":true + }, + "headers":{ + "content-type":"application/json", + "date":"Sun, 12 Jan 2020 15:27:35 GMT", + "server":"RapidAPI-1.0.32", + "via":"1.1 03c0162ff2d0f5b5546378295e839584.cloudfront.net (CloudFront)", + "x-amz-apigw-id":"GMYkKGNNoAMF-WQ=", + "x-amz-cf-id":"Dos5XGk6tq6elSuTm_JJrBsirQmz4PW_3wgJcjnBT7FineVblxK-iw==", + "x-amz-cf-pop":"NRT12-C2", + "x-amzn-requestid":"bc487c6d-c905-4e23-839c-5fd78f13b440", + "x-amzn-trace-id":"Root=1-5e1b3ae7-c23b65fd36fef5b6510a9d2a;Sampled=0", + "x-cache":"Miss from cloudfront", + "x-rapidapi-region":"AWS - ap-northeast-1", + "x-rapidapi-version":"1.0.32", + "content-length":"16", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"character counter", + "url":"https://useful-funcs.p.rapidapi.com/string/charactercount", + "description":"returns the count of characters in the string", + "method":"GET", + "required_parameters":[ + { + "name":"characterString", + "type":"STRING", + "description":"String you want to know the count of characters", + "default":"English" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://useful-funcs.p.rapidapi.com/string/charactercount\"\nquerystring = {\"characterString\": characterstring}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"useful-funcs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "result":{ + "E":1, + "n":1, + "g":1, + "l":1, + "i":1, + "s":1, + "h":1 + } + }, + "headers":{ + "content-type":"application/json", + "date":"Tue, 28 Jan 2020 18:14:51 GMT", + "server":"RapidAPI-1.0.39", + "via":"1.1 0a7f7d7a7c943e0518b13f352cbd40be.cloudfront.net (CloudFront)", + "x-amz-apigw-id":"HBgESGCSIAMFw6w=", + "x-amz-cf-id":"XCfJZzsjoRczwY0BKT639V2Ethnr5aZNKJ5rublBLMhHIhQ6rak1uQ==", + "x-amz-cf-pop":"ICN50", + "x-amzn-requestid":"fb1b2ffd-44e6-485f-a549-738fb9dde757", + "x-amzn-trace-id":"Root=1-5e307a1b-535ca82c66a7a864359ec014;Sampled=0", + "x-cache":"Miss from cloudfront", + "x-rapidapi-region":"AWS - ap-northeast-1", + "x-rapidapi-version":"1.0.39", + "content-length":"68", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/useful_funcs/api.py b/toolbench/toolenv/tools/Tools/useful_funcs/api.py new file mode 100644 index 0000000000000000000000000000000000000000..008bec68a386771ac0374f2a9207fa37fade9b46 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/useful_funcs/api.py @@ -0,0 +1,95 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_ip_address(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "returns the IP address of the client that called the API." + + """ + url = f"https://useful-funcs.p.rapidapi.com/ip/getipaddress" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "useful-funcs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def is_digit(digitstring: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "checking the string contains only digits" + digitstring: digit string to check + + """ + url = f"https://useful-funcs.p.rapidapi.com/validation/isdigit" + querystring = {'digitString': digitstring, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "useful-funcs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def is_alpha(alphastring: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "checking the string contains only alphabetic characters" + alphastring: alpha string to check + + """ + url = f"https://useful-funcs.p.rapidapi.com/validation/isalpha" + querystring = {'alphaString': alphastring, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "useful-funcs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def character_counter(characterstring: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "returns the count of characters in the string" + characterstring: String you want to know the count of characters + + """ + url = f"https://useful-funcs.p.rapidapi.com/string/charactercount" + querystring = {'characterString': characterstring, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "useful-funcs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/user_agent.json b/toolbench/toolenv/tools/Tools/user_agent.json new file mode 100644 index 0000000000000000000000000000000000000000..a776ff0cff22a79693171f9e72a118d336490253 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agent.json @@ -0,0 +1,399 @@ +{ + "tool_name":"User Agent", + "tool_description":"Parses any User-Agent string to detect Browser, Engine, OS, CPU, Device type/model, etc.", + "title":"User Agent", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/api-tier1-apitier-team/api/user-agent3/", + "host":"user-agent3.p.rapidapi.com", + "api_list":[ + { + "name":"/validate", + "url":"https://user-agent3.p.rapidapi.com/v1/validate", + "description":"Validates Given User Agent String", + "method":"GET", + "required_parameters":[ + { + "name":"user_agent", + "type":"STRING", + "description":"", + "default":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agent3.p.rapidapi.com/v1/validate\"\nquerystring = {\"user_agent\": user_agent}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agent3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":200, + "message":"Success", + "result":{ + "isYaBrowser":false, + "isAuthoritative":true, + "isMobile":false, + "isMobileNative":false, + "isTablet":false, + "isiPad":false, + "isiPod":false, + "isiPhone":false, + "isiPhoneNative":false, + "isAndroid":false, + "isAndroidNative":false, + "isBlackberry":false, + "isOpera":false, + "isIE":false, + "isEdge":false, + "isIECompatibilityMode":false, + "isSafari":false, + "isFirefox":false, + "isWebkit":false, + "isChrome":true, + "isKonqueror":false, + "isOmniWeb":false, + "isSeaMonkey":false, + "isFlock":false, + "isAmaya":false, + "isPhantomJS":false, + "isEpiphany":false, + "isDesktop":true, + "isWindows":true, + "isLinux":false, + "isLinux64":false, + "isMac":false, + "isChromeOS":false, + "isBada":false, + "isSamsung":false, + "isRaspberry":false, + "isBot":false, + "isCurl":false, + "isAndroidTablet":false, + "isWinJs":false, + "isKindleFire":false, + "isSilk":false, + "isCaptive":false, + "isSmartTV":false, + "isUC":false, + "isFacebook":false, + "isAlamoFire":false, + "isElectron":false, + "silkAccelerated":false, + "browser":"Chrome", + "version":"101.0.4951.64", + "os":"Windows 10.0", + "platform":"Microsoft Windows", + "geoIp":{}, + "source":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36", + "isWechat":false, + "electronVersion":"" + } + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "message":{ + "type":"string" + }, + "result":{ + "type":"object", + "properties":{ + "appName":{ + "type":"string" + }, + "connection":{ + "type":"object", + "properties":{ + "downlink":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "effectiveType":{ + "type":"string" + }, + "rtt":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + } + } + }, + "platform":{ + "type":"string" + }, + "pluginsLength":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "vendor":{ + "type":"string" + }, + "userAgent":{ + "type":"string" + }, + "viewportHeight":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "viewportWidth":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "deviceCategory":{ + "type":"string" + }, + "screenHeight":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "screenWidth":{ + "type":"integer", + "format":"int32", + "minimum":-2147483648, + "maximum":2147483647 + }, + "weight":{ + "type":"number" + } + } + } + } + } + }, + { + "name":"/generate", + "url":"https://user-agent3.p.rapidapi.com/v1/generate", + "description":"Generate random user agent", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agent3.p.rapidapi.com/v1/generate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agent3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":200, + "message":"Success", + "result":{ + "appName":"Netscape", + "connection":{ + "downlink":10, + "effectiveType":"4g", + "rtt":0 + }, + "platform":"Win32", + "pluginsLength":5, + "vendor":"Google Inc.", + "userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36 Edg/99.0.1150.30", + "viewportHeight":750, + "viewportWidth":1520, + "deviceCategory":"desktop", + "screenHeight":864, + "screenWidth":1536, + "weight":0.00015481857067327896 + } + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"integer" + }, + "message":{ + "type":"string" + }, + "result":{ + "type":"object", + "properties":{ + "isYaBrowser":{ + "type":"boolean" + }, + "isAuthoritative":{ + "type":"boolean" + }, + "isMobile":{ + "type":"boolean" + }, + "isMobileNative":{ + "type":"boolean" + }, + "isTablet":{ + "type":"boolean" + }, + "isiPad":{ + "type":"boolean" + }, + "isiPod":{ + "type":"boolean" + }, + "isiPhone":{ + "type":"boolean" + }, + "isiPhoneNative":{ + "type":"boolean" + }, + "isAndroid":{ + "type":"boolean" + }, + "isAndroidNative":{ + "type":"boolean" + }, + "isBlackberry":{ + "type":"boolean" + }, + "isOpera":{ + "type":"boolean" + }, + "isIE":{ + "type":"boolean" + }, + "isEdge":{ + "type":"boolean" + }, + "isIECompatibilityMode":{ + "type":"boolean" + }, + "isSafari":{ + "type":"boolean" + }, + "isFirefox":{ + "type":"boolean" + }, + "isWebkit":{ + "type":"boolean" + }, + "isChrome":{ + "type":"boolean" + }, + "isKonqueror":{ + "type":"boolean" + }, + "isOmniWeb":{ + "type":"boolean" + }, + "isSeaMonkey":{ + "type":"boolean" + }, + "isFlock":{ + "type":"boolean" + }, + "isAmaya":{ + "type":"boolean" + }, + "isPhantomJS":{ + "type":"boolean" + }, + "isEpiphany":{ + "type":"boolean" + }, + "isDesktop":{ + "type":"boolean" + }, + "isWindows":{ + "type":"boolean" + }, + "isLinux":{ + "type":"boolean" + }, + "isLinux64":{ + "type":"boolean" + }, + "isMac":{ + "type":"boolean" + }, + "isChromeOS":{ + "type":"boolean" + }, + "isBada":{ + "type":"boolean" + }, + "isSamsung":{ + "type":"boolean" + }, + "isRaspberry":{ + "type":"boolean" + }, + "isBot":{ + "type":"boolean" + }, + "isCurl":{ + "type":"boolean" + }, + "isAndroidTablet":{ + "type":"boolean" + }, + "isWinJs":{ + "type":"boolean" + }, + "isKindleFire":{ + "type":"boolean" + }, + "isSilk":{ + "type":"boolean" + }, + "isCaptive":{ + "type":"boolean" + }, + "isSmartTV":{ + "type":"boolean" + }, + "isUC":{ + "type":"boolean" + }, + "isFacebook":{ + "type":"boolean" + }, + "isAlamoFire":{ + "type":"boolean" + }, + "isElectron":{ + "type":"boolean" + }, + "silkAccelerated":{ + "type":"boolean" + }, + "browser":{ + "type":"string" + }, + "version":{ + "type":"string" + }, + "os":{ + "type":"string" + }, + "platform":{ + "type":"string" + }, + "geoIp":{ + "type":"object" + }, + "source":{ + "type":"string" + }, + "isWechat":{ + "type":"boolean" + }, + "electronVersion":{ + "type":"string" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/user_agent/api.py b/toolbench/toolenv/tools/Tools/user_agent/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4a2f1f8907355288d99e12ceab1e3cb8d3666245 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agent/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def validate(user_agent: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Validates Given User Agent String" + + """ + url = f"https://user-agent3.p.rapidapi.com/v1/validate" + querystring = {'user_agent': user_agent, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agent3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def generate(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate random user agent" + + """ + url = f"https://user-agent3.p.rapidapi.com/v1/generate" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agent3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/user_agent_generator.json b/toolbench/toolenv/tools/Tools/user_agent_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..323e7d89879e734492ca0a78b454942975e4f774 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agent_generator.json @@ -0,0 +1,56 @@ +{ + "tool_name":"User Agent Generator", + "tool_description":"Generate unique User Agents for Desktop and Mobile", + "title":"User Agent Generator", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":155, + "avgSuccessRate":100, + "popularityScore":8.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/DaddyApi/api/user-agent-generator/", + "host":"user-agent-generator.p.rapidapi.com", + "api_list":[ + { + "name":"Mobile", + "url":"https://user-agent-generator.p.rapidapi.com/ua/mobile", + "description":"Get random Mobile user agent", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agent-generator.p.rapidapi.com/ua/mobile\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agent-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Desktop", + "url":"https://user-agent-generator.p.rapidapi.com/ua/desktop", + "description":"Get random Desktop user agent", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agent-generator.p.rapidapi.com/ua/desktop\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agent-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Random", + "url":"https://user-agent-generator.p.rapidapi.com/random", + "description":"Get random user agent", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agent-generator.p.rapidapi.com/random\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agent-generator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/user_agent_generator/api.py b/toolbench/toolenv/tools/Tools/user_agent_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..11d52e5ca595484c74d2f9110352c9d9980dc5d6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agent_generator/api.py @@ -0,0 +1,71 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def mobile(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get random Mobile user agent" + + """ + url = f"https://user-agent-generator.p.rapidapi.com/ua/mobile" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agent-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def desktop(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get random Desktop user agent" + + """ + url = f"https://user-agent-generator.p.rapidapi.com/ua/desktop" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agent-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get random user agent" + + """ + url = f"https://user-agent-generator.p.rapidapi.com/random" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agent-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/user_agent_parser/api.py b/toolbench/toolenv/tools/Tools/user_agent_parser/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e8702a0580f70ab6c5453fbcfb945a2065aa4f44 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agent_parser/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def parse(ua: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Detect the browser, device & OS from user agent strings." + + """ + url = f"https://user-agent-parser5.p.rapidapi.com/" + querystring = {'ua': ua, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agent-parser5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/user_agents_daddy.json b/toolbench/toolenv/tools/Tools/user_agents_daddy.json new file mode 100644 index 0000000000000000000000000000000000000000..9fb864d22371d7f0f7a1d3f2466f47c8dc046986 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agents_daddy.json @@ -0,0 +1,81 @@ +{ + "tool_name":"🔴 USER AGENTS 🔴 Daddy", + "tool_description":"Introducing the User Agents API - the ultimate solution for generating authentic and diverse user agents for your website or application. Our API uses advanced algorithms to create user agents that mimic real browsers and devices, ensuring that your requests are not blocked or flagged as suspicious. With a simple API call, you can quickly and easily generate a wide variety of user agents to improve your online presence and protect your business from fraud and scraping. Try it out now and see ...", + "title":"🔴 USER AGENTS 🔴 Daddy", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":544, + "avgSuccessRate":100, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/DaddyApi/api/user-agents-daddy/", + "host":"user-agents-daddy.p.rapidapi.com", + "api_list":[ + { + "name":"Mobile", + "url":"https://user-agents-daddy.p.rapidapi.com/mobile", + "description":"The /mobile endpoint of the User Agent Generator API generates a user agent for a mobile device. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to simulate requests coming from mobile devices. You can use this endpoint to test your website or application's responsiveness on different mobile devices, or to ensure that your server is configured to properly handle requests from mobile devices.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agents-daddy.p.rapidapi.com/mobile\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agents-daddy.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Desktop", + "url":"https://user-agents-daddy.p.rapidapi.com/desktop", + "description":"The /desktop endpoint of the User Agent Generator API generates a user agent for a desktop device. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to simulate requests coming from desktop devices. You can use this endpoint to test your website or application's functionality on different desktop devices, or to ensure that your server is configured to properly handle requests from desktop devices.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agents-daddy.p.rapidapi.com/desktop\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agents-daddy.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Random", + "url":"https://user-agents-daddy.p.rapidapi.com/rnd", + "description":"The /rnd endpoint of the User Agent Generator API generates a random user agent. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to generate a diverse set of user agents to improve your online presence and protect your business from fraud and scraping. For example, you can use this endpoint to rotate through a pool of user agents to avoid detection.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agents-daddy.p.rapidapi.com/rnd\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agents-daddy.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Tablet", + "url":"https://user-agents-daddy.p.rapidapi.com/tablet", + "description":"The /tablet endpoint of the User Agent Generator API generates a user agent for a tablet device. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to simulate requests coming from tablet devices. You can use this endpoint to test your website or application's functionality on different tablet devices, or to ensure that your server is configured to properly handle requests from tablet devices.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://user-agents-daddy.p.rapidapi.com/tablet\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"user-agents-daddy.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/user_agents_daddy/api.py b/toolbench/toolenv/tools/Tools/user_agents_daddy/api.py new file mode 100644 index 0000000000000000000000000000000000000000..02d2a602f1c7f7bcc91da0d102ab94475dc29d6a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/user_agents_daddy/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def mobile(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The /mobile endpoint of the User Agent Generator API generates a user agent for a mobile device. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to simulate requests coming from mobile devices. You can use this endpoint to test your website or application's responsiveness on different mobile devices, or to ensure that your server is configured to properly handle requests from mobile devices." + + """ + url = f"https://user-agents-daddy.p.rapidapi.com/mobile" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agents-daddy.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def desktop(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The /desktop endpoint of the User Agent Generator API generates a user agent for a desktop device. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to simulate requests coming from desktop devices. You can use this endpoint to test your website or application's functionality on different desktop devices, or to ensure that your server is configured to properly handle requests from desktop devices." + + """ + url = f"https://user-agents-daddy.p.rapidapi.com/desktop" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agents-daddy.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def random(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The /rnd endpoint of the User Agent Generator API generates a random user agent. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to generate a diverse set of user agents to improve your online presence and protect your business from fraud and scraping. For example, you can use this endpoint to rotate through a pool of user agents to avoid detection." + + """ + url = f"https://user-agents-daddy.p.rapidapi.com/rnd" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agents-daddy.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def tablet(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The /tablet endpoint of the User Agent Generator API generates a user agent for a tablet device. It returns a JSON object containing the generated user agent string. This endpoint is useful when you want to simulate requests coming from tablet devices. You can use this endpoint to test your website or application's functionality on different tablet devices, or to ensure that your server is configured to properly handle requests from tablet devices." + + """ + url = f"https://user-agents-daddy.p.rapidapi.com/tablet" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "user-agents-daddy.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/username_generator/api.py b/toolbench/toolenv/tools/Tools/username_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9100601788d3c258ceb7a0cb3a7d148e6a57217c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/username_generator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def username(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate username" + + """ + url = f"https://username-generator.p.rapidapi.com/username" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "username-generator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/utile_space.json b/toolbench/toolenv/tools/Tools/utile_space.json new file mode 100644 index 0000000000000000000000000000000000000000..19ade2e046ffe2467e343dd12a4cda64de7ef91e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/utile_space.json @@ -0,0 +1,102 @@ +{ + "product_id": "api_22dfd39c-a38c-423e-b2ff-f8f2f2845e42", + "tool_description": "Misc useful API for software engineers and others.", + "home_url": "https://rapidapi.com/sonny.alvesdias/api/utile-space/", + "name": "utile-space", + "title": "utile-space", + "pricing": "FREE", + "tool_name": "utile-space", + "score": null, + "host": "utile-space.p.rapidapi.com", + "api_list": [ + { + "name": "/health", + "url": "https://utile-space.p.rapidapi.com/health", + "description": "API health information.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://utile-space.p.rapidapi.com/health\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utile-space.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://utile-space.p.rapidapi.com/health\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utile-space.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "string" + } + }, + { + "name": "/dns/{domain}", + "url": "https://utile-space.p.rapidapi.com/dns/{domain}", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://utile-space.p.rapidapi.com/dns/{domain}\"\nquerystring = {\"domain\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utile-space.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://utile-space.p.rapidapi.com/dns/{domain}\"\nquerystring = {\"domain\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utile-space.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "required": [ + "addresses" + ], + "type": "object", + "properties": { + "addresses": { + "type": "array", + "items": { + "type": "string" + }, + "description": "" + } + } + } + }, + { + "name": "/d{die}", + "url": "https://utile-space.p.rapidapi.com/d{die}", + "description": "Roll a die with n faces. With n between 2 and 100.", + "method": "GET", + "required_parameters": [ + { + "name": "die", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://utile-space.p.rapidapi.com/d{die}\"\nquerystring = {\"die\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utile-space.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://utile-space.p.rapidapi.com/d{die}\"\nquerystring = {\"die\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utile-space.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "required": [ + "die", + "result" + ], + "properties": { + "die": { + "type": "integer", + "minimum": 2, + "maximum": 100, + "description": "The number of faces of the die" + }, + "result": { + "type": "integer", + "minimum": 2, + "maximum": 100, + "description": "The value of the rolled die." + } + } + } + } + ], + "standardized_name": "utile_space" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/utile_space/api.py b/toolbench/toolenv/tools/Tools/utile_space/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7c898ce9dd9823619d017c72734d14d964da31b1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/utile_space/api.py @@ -0,0 +1,71 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def health(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API health information." + + """ + url = f"https://utile-space.p.rapidapi.com/health" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "utile-space.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def dns_domain(domain: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://utile-space.p.rapidapi.com/dns/{domain}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "utile-space.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def d_die(die: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Roll a die with n faces. With n between 2 and 100." + + """ + url = f"https://utile-space.p.rapidapi.com/d{die}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "utile-space.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/utils.json b/toolbench/toolenv/tools/Tools/utils.json new file mode 100644 index 0000000000000000000000000000000000000000..e66ea25e560259f006c103923157db8b49468c7d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/utils.json @@ -0,0 +1,47 @@ +{ + "product_id": "api_73ffcd52-d87e-4511-b067-9d5bd8760b34", + "tool_description": "Random Util API(s) used for your application.", + "home_url": "https://rapidapi.com/tangatosh/api/utils4/", + "name": "Utils", + "title": "Utils", + "pricing": "FREEMIUM", + "tool_name": "Utils", + "score": null, + "host": "utils4.p.rapidapi.com", + "api_list": [ + { + "name": "Form Data Insert", + "url": "https://utils4.p.rapidapi.com/v1/forms/data-insert", + "description": "Send over the dataset you want to receive email notification about. Use this endpoint to integrate with your static forms.\n\nEmail, Subject, and Dataset are all required.\nDataset is a dynamic object of the property and values you want to capture based on your application.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://utils4.p.rapidapi.com/v1/forms/data-insert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utils4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://utils4.p.rapidapi.com/v1/forms/data-insert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"utils4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "data": { + "type": "object", + "properties": { + "email": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "dataset": { + "type": "object" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/uuid_generator.json b/toolbench/toolenv/tools/Tools/uuid_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..4ffd945bed978564869158ea8f476c31cb3fb3ed --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uuid_generator.json @@ -0,0 +1,85 @@ +{ + "product_id": "api_b123c9e8-f2ea-45ec-8208-34cd88c6e264", + "tool_description": "UUID generator", + "home_url": "https://rapidapi.com/albertbos850-ocic1n-xXcs/api/uuid-generator3/", + "name": "UUID generator", + "title": "UUID generator", + "pricing": "FREEMIUM", + "tool_name": "UUID generator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 341, + "avgSuccessRate": 100, + "popularityScore": 8.4, + "__typename": "Score" + }, + "host": "uuid-generator3.p.rapidapi.com", + "api_list": [ + { + "name": "UUIDv4 generator", + "url": "https://uuid-generator3.p.rapidapi.com/uuid/v4", + "description": "Generate UUIDv4", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://uuid-generator3.p.rapidapi.com/uuid/v4\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://uuid-generator3.p.rapidapi.com/uuid/v4\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "uuid": "5b92ebbd-c865-4cb4-b048-18aa42fa0f35" + } + }, + { + "name": "UUIDv5 generator", + "url": "https://uuid-generator3.p.rapidapi.com/uuid/v5", + "description": "UUIDv5 generator", + "method": "GET", + "required_parameters": [ + { + "name": "name", + "type": "STRING", + "description": "", + "default": "test" + }, + { + "name": "namespace", + "type": "STRING", + "description": "Allowed values: \n\n- dns\n- url\n- oid\n- x500\n- nil", + "default": "nil" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://uuid-generator3.p.rapidapi.com/uuid/v5\"\nquerystring = {\"name\": \"test\", \"namespace\": \"nil\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://uuid-generator3.p.rapidapi.com/uuid/v5\"\nquerystring = {\"name\": \"test\", \"namespace\": \"nil\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "uuid": "e8b764da-5fe5-51ed-8af8-c5c6eca28d7a" + } + }, + { + "name": "UUIDv3 generator", + "url": "https://uuid-generator3.p.rapidapi.com/uuid/v3", + "description": "UUIDv3 generator", + "method": "GET", + "required_parameters": [ + { + "name": "namespace", + "type": "STRING", + "description": "Allowed values: \n\n- dns\n- url\n- oid\n- x500\n- nil", + "default": "nil" + }, + { + "name": "name", + "type": "STRING", + "description": "", + "default": "test" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://uuid-generator3.p.rapidapi.com/uuid/v3\"\nquerystring = {\"namespace\": \"nil\", \"name\": \"test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://uuid-generator3.p.rapidapi.com/uuid/v3\"\nquerystring = {\"namespace\": \"nil\", \"name\": \"test\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator3.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + } + ], + "standardized_name": "uuid_generator" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/uuid_generator/api.py b/toolbench/toolenv/tools/Tools/uuid_generator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..da9c1d183ac30ef7774985e91980244c1abc3554 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uuid_generator/api.py @@ -0,0 +1,85 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def uuidv4_generator(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate UUIDv4" + + """ + url = f"https://uuid-generator3.p.rapidapi.com/uuid/v4" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uuid-generator3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def uuidv5_generator(name: str, namespace: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "UUIDv5 generator" + namespace: Allowed values: + +- dns +- url +- oid +- x500 +- nil + + """ + url = f"https://uuid-generator3.p.rapidapi.com/uuid/v5" + querystring = {'name': name, 'namespace': namespace, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uuid-generator3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def uuidv3_generator(namespace: str, name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "UUIDv3 generator" + namespace: Allowed values: + +- dns +- url +- oid +- x500 +- nil + + """ + url = f"https://uuid-generator3.p.rapidapi.com/uuid/v3" + querystring = {'namespace': namespace, 'name': name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uuid-generator3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/uuid_generator_v2.json b/toolbench/toolenv/tools/Tools/uuid_generator_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..f826fee51d65476411cfd02f702835d5defe2601 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uuid_generator_v2.json @@ -0,0 +1,38 @@ +{ + "product_id": "api_e2d2a156-c90f-4b82-acd7-4dc757c8a8bf", + "tool_description": "Why do it yourself?", + "home_url": "https://rapidapi.com/wirecryptocontact-h9qCX5pYMlJ/api/uuid-generator5/", + "name": "UUID Generator_v2", + "title": "UUID Generator", + "pricing": "FREEMIUM", + "tool_name": "UUID Generator_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 708, + "avgSuccessRate": 100, + "popularityScore": 5.4, + "__typename": "Score" + }, + "host": "uuid-generator5.p.rapidapi.com", + "api_list": [ + { + "name": "Generate UUID", + "url": "https://uuid-generator5.p.rapidapi.com/random-uuid", + "description": "Generates a UUID and returns to client", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "quantity", + "type": "STRING", + "description": "Used to determine how many UUIDs you want in the response. Maximum of 50 uuids per request.", + "default": "25" + } + ], + "code": "import requests\n\nurl = \"https://uuid-generator5.p.rapidapi.com/random-uuid\"\nquerystring = {\"quantity\": \"25\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator5.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://uuid-generator5.p.rapidapi.com/random-uuid\"\nquerystring = {\"quantity\": \"25\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"uuid-generator5.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "uuid_generator_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/uuid_generator_v2/api.py b/toolbench/toolenv/tools/Tools/uuid_generator_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0813425791fc2b4565bb8323da612b22aaa2773c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uuid_generator_v2/api.py @@ -0,0 +1,32 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def generate_uuid(quantity: str='25', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generates a UUID and returns to client" + quantity: Used to determine how many UUIDs you want in the response. Maximum of 50 uuids per request. + + """ + url = f"https://uuid-generator5.p.rapidapi.com/random-uuid" + querystring = {} + if quantity: + querystring['quantity'] = quantity + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uuid-generator5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/uuid_generator_v3/api.py b/toolbench/toolenv/tools/Tools/uuid_generator_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..40fe3201ebe77b16aeb4e75988cb764f235fd294 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/uuid_generator_v3/api.py @@ -0,0 +1,63 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def uuid_version_version(version: int, type: str=None, text: str=None, count: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a random UUID (v4)." + version: Version of the UUID spec to use. (0-5), Use '0' for nil (00000000-0000-0000-0000-000000000000) UUID. + type: For v3 and v5 of UUID Spec you can supply the type (dns/url/oid/x500/nil). + text: For v3 and v5 of UUID Spec supply the text value for the type specified dns/url/oid/x500/nil. For example specify a dns/domain string if the type is "dns" + count: Number of UUID's to generate (defaults to 1) + + """ + url = f"https://uuid-generator2.p.rapidapi.com/uuid/version/{version}" + querystring = {} + if type: + querystring['type'] = type + if text: + querystring['text'] = text + if count: + querystring['count'] = count + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uuid-generator2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def uuid(count: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Generate a random UUID (v4)." + count: Number of UUID's to generate (defaults to 1) + + """ + url = f"https://uuid-generator2.p.rapidapi.com/uuid" + querystring = {} + if count: + querystring['count'] = count + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "uuid-generator2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/valley_girl_or_valspeak_translator.json b/toolbench/toolenv/tools/Tools/valley_girl_or_valspeak_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..55474888191f1ff43f269b7bea70816a99c26912 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/valley_girl_or_valspeak_translator.json @@ -0,0 +1,37 @@ +{ + "product_id": "56098cc7e4b02f22200928e1", + "tool_description": "Convert from English to Valley Girl speak or Valspeak.", + "home_url": "https://rapidapi.com/orthosie/api/valley-girl-or-valspeak-translator/", + "name": "Valley Girl or Valspeak Translator", + "title": "Valley Girl or Valspeak Translator", + "pricing": "FREEMIUM", + "tool_name": "Valley Girl or Valspeak Translator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 243, + "avgSuccessRate": 100, + "popularityScore": 8.9, + "__typename": "Score" + }, + "host": "valspeak.p.rapidapi.com", + "api_list": [ + { + "name": "Valspeak Translator", + "url": "https://valspeak.p.rapidapi.com/valspeak.json", + "description": "Translate from English to Valspeak", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to convert to valspeak.", + "default": "Good Morning. Come on man, just saying!" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://valspeak.p.rapidapi.com/valspeak.json\"\nquerystring = {\"text\": \"Good Morning. Come on man, just saying!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"valspeak.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://valspeak.p.rapidapi.com/valspeak.json\"\nquerystring = {\"text\": \"Good Morning. Come on man, just saying!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"valspeak.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/variable_size_qr_code_api.json b/toolbench/toolenv/tools/Tools/variable_size_qr_code_api.json new file mode 100644 index 0000000000000000000000000000000000000000..67b44462c6bb8fa96b21945b8419e5f0ab6cf785 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/variable_size_qr_code_api.json @@ -0,0 +1,44 @@ +{ + "product_id": "api_ff748095-9224-435b-868d-99f4df15a846", + "tool_description": "This api takes a URL and the desired size of the QR Code and returns the QR Code image.", + "home_url": "https://rapidapi.com/nextridgedesigns/api/variable-size-qr-code-api/", + "name": "Variable Size QR Code API", + "title": "Variable Size QR Code API", + "pricing": "FREEMIUM", + "tool_name": "Variable Size QR Code API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3120, + "avgSuccessRate": 100, + "popularityScore": 6.9, + "__typename": "Score" + }, + "host": "variable-size-qr-code-api.p.rapidapi.com", + "api_list": [ + { + "name": "QR Code Image", + "url": "https://variable-size-qr-code-api.p.rapidapi.com/qr", + "description": "this end point takes a 'GET' request with url / string and an size / integer as parameters and returns a QR Code image of the desired size.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "size", + "type": "NUMBER", + "description": "", + "default": "5" + }, + { + "name": "url", + "type": "STRING", + "description": "", + "default": "www.google.com" + } + ], + "code": "import requests\n\nurl = \"https://variable-size-qr-code-api.p.rapidapi.com/qr\"\nquerystring = {\"size\": \"5\", \"url\": \"www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"variable-size-qr-code-api.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://variable-size-qr-code-api.p.rapidapi.com/qr\"\nquerystring = {\"size\": \"5\", \"url\": \"www.google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"variable-size-qr-code-api.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "variable_size_qr_code_api" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/variable_size_qr_code_api/api.py b/toolbench/toolenv/tools/Tools/variable_size_qr_code_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..93c1cedbff6af1343edfa9c685e4c5ad4a6c8aea --- /dev/null +++ b/toolbench/toolenv/tools/Tools/variable_size_qr_code_api/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image(size: int=5, url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "this end point takes a 'GET' request with url / string and an size / integer as parameters and returns a QR Code image of the desired size." + + """ + url = f"https://variable-size-qr-code-api.p.rapidapi.com/qr" + querystring = {} + if size: + querystring['size'] = size + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "variable-size-qr-code-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/verify_email/api.py b/toolbench/toolenv/tools/Tools/verify_email/api.py new file mode 100644 index 0000000000000000000000000000000000000000..708094d588a3aa61da1409bf7fe3c376a8c226d2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/verify_email/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def verify(email: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Verify if an email address exists" + email: The email address to check + + """ + url = f"https://verifyemail.p.rapidapi.com/verify/{email}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "verifyemail.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/vies_vat_validation_and_business_details_extraction.json b/toolbench/toolenv/tools/Tools/vies_vat_validation_and_business_details_extraction.json new file mode 100644 index 0000000000000000000000000000000000000000..335a323a042792507c6cd6ed8b8e4107aa6271ad --- /dev/null +++ b/toolbench/toolenv/tools/Tools/vies_vat_validation_and_business_details_extraction.json @@ -0,0 +1,37 @@ +{ + "product_id": "api_f399966e-9d63-4cb6-9732-8158ac953e9d", + "tool_description": "Validate a VAT number or identifier, process and extract company information from the VIES database. This may be the most sophisticated validator as it provides multi server check, internal multi method backup requests, advanced caching and AI features.", + "home_url": "https://rapidapi.com/noecis-ltd-tools/api/vies-vat-validation-and-business-details-extraction/", + "name": "VIES VAT Validation and Business Details Extraction", + "title": "VIES VAT Validation and Business Details Extraction", + "pricing": "FREEMIUM", + "tool_name": "VIES VAT Validation and Business Details Extraction", + "score": { + "avgServiceLevel": 100, + "avgLatency": 425, + "avgSuccessRate": 100, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "vies-vat-validation-and-business-details-extraction.p.rapidapi.com", + "api_list": [ + { + "name": "Input", + "url": "https://vies-vat-validation-and-business-details-extraction.p.rapidapi.com/", + "description": "## Input\n**ID**: a VIES registered VAT number or identifier containing the country prefix with or without spaces\n\n## Response\nAn array with **Success** or **Failure** as Keys and values the achieved processing level, on success a **Data** array key containing processing results and also on success, a **Request** array key, containing input passed to the API, as well as processing information. On failure an **Errors** array key will have value a short description of the processing or validation error scope. The API will return success if existence check was complete. The Status subkey of the Data array will reveal its current status.", + "method": "POST", + "required_parameters": [ + { + "name": "ID", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vies-vat-validation-and-business-details-extraction.p.rapidapi.com/\"\nquerystring = {\"ID\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vies-vat-validation-and-business-details-extraction.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vies-vat-validation-and-business-details-extraction.p.rapidapi.com/\"\nquerystring = {\"ID\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vies-vat-validation-and-business-details-extraction.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/viewdns.json b/toolbench/toolenv/tools/Tools/viewdns.json new file mode 100644 index 0000000000000000000000000000000000000000..c9936436b9a2a6a623953653f4e3d7702506145b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/viewdns.json @@ -0,0 +1,391 @@ +{ + "product_id": "53aa582ae4b051a76d240f9d", + "tool_description": "Your one source for DNS related tools! dns, info, reverse ip, pagerank, portscan, port scan, lookup, records, whois, ipwhois, dnstools, web hosting, hosting, traceroute, dns report, dnsreport, ip location, ip location finder, spam, spam database, dnsbl, propagation, dns propagation checker, checker, china, chinese, firewall, great firewall, is my site down, is site down, site down, down, dns propagate", + "home_url": "https://rapidapi.com/community/api/viewdns/", + "name": "ViewDNS", + "title": "ViewDNS", + "pricing": "FREE", + "tool_name": "ViewDNS", + "score": { + "avgServiceLevel": 100, + "avgLatency": 388, + "avgSuccessRate": 100, + "popularityScore": 5.3, + "__typename": "Score" + }, + "host": "community-viewdns.p.rapidapi.com", + "api_list": [ + { + "name": "Whois", + "url": "https://community-viewdns.p.rapidapi.com/whois", + "description": "Displays owner/contact information for a domain name. Can also be used to determine if a domain name is registered or not. This tool is not available to free API key users. Access is restricted to paid API keys only.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain to perform a whois lookup on", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/whois\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/whois\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Port Scanner", + "url": "https://community-viewdns.p.rapidapi.com/portscan", + "description": "This web based port scanner will test whether common ports are open on a server. Useful in determining if a specific service (e.g. HTTP) is up or down on a specific server. Ports scanned are: 21, 22, 23, 25, 80, 110, 139, 143, 445, 1433, 1521, 3306 and 3389", + "method": "GET", + "required_parameters": [ + { + "name": "host", + "type": "STRING", + "description": "the host to perform the port scanner on (domain or IP address)", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/portscan\"\nquerystring = {\"host\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/portscan\"\nquerystring = {\"host\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Traceroute", + "url": "https://community-viewdns.p.rapidapi.com/traceroute", + "description": "Determines the series of servers that data traverses from the ViewDNS server to the specified domain name or IP address.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain or IP address to perform a traceroute on", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/traceroute\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/traceroute\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "DNS Record Lookup", + "url": "https://community-viewdns.p.rapidapi.com/dnsrecord", + "description": "View all configured DNS records (A, MX, CNAME etc.) for a specified domain name.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain name to lookup DNS records for", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "recordtype", + "type": "STRING", + "description": "the type of DNS record you wish to retrieve (default 'ANY')", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/dnsrecord\"\nquerystring = {\"domain\": \"\", \"recordtype\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/dnsrecord\"\nquerystring = {\"domain\": \"\", \"recordtype\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Ping", + "url": "https://community-viewdns.p.rapidapi.com/ping", + "description": "Test how long a response from remote system takes to reach the ViewDNS server. Useful for detecting latency issues on network connections.", + "method": "GET", + "required_parameters": [ + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + }, + { + "name": "host", + "type": "STRING", + "description": "the domain or IP address to perform a ping on", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/ping\"\nquerystring = {\"output\": \"\", \"host\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/ping\"\nquerystring = {\"output\": \"\", \"host\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "IP Location Finder", + "url": "https://community-viewdns.p.rapidapi.com/iplocation", + "description": "This tool will display geographic information about a supplied IP address including city, country, latitude, longitude and more.", + "method": "GET", + "required_parameters": [ + { + "name": "ip", + "type": "STRING", + "description": "the ip address to find the location of", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/iplocation\"\nquerystring = {\"ip\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/iplocation\"\nquerystring = {\"ip\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Chinese Firewall Test", + "url": "https://community-viewdns.p.rapidapi.com/chinesefirewall", + "description": "Checks whether a site is blocked by the Great Firewall of China. This test checks across a number of servers from various locations in mainland China to determine if access to the site provided is possible from behind the Great Firewall of China. This test checks for symptoms of DNS poisoning, one of the more common methods used by the Chinese government to block access to websites.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain name to test", + "default": "mashape.com" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/chinesefirewall\"\nquerystring = {\"domain\": \"mashape.com\", \"output\": \"json\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/chinesefirewall\"\nquerystring = {\"domain\": \"mashape.com\", \"output\": \"json\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Spam Database Lookup", + "url": "https://community-viewdns.p.rapidapi.com/spamdblookup", + "description": "Find out if your mail server is listed in any spam databases.", + "method": "GET", + "required_parameters": [ + { + "name": "ip", + "type": "STRING", + "description": "the IP address to test for spam blacklisting", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/spamdblookup\"\nquerystring = {\"ip\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/spamdblookup\"\nquerystring = {\"ip\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Free Email Lookup", + "url": "https://community-viewdns.p.rapidapi.com/freeemail", + "description": "Find out if a domain name provides free email addresses. Search is performed on a custom made list of thousands of known free email hosts.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain name to test for free email services", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/freeemail\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/freeemail\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "MAC Address Lookup", + "url": "https://community-viewdns.p.rapidapi.com/maclookup", + "description": "This tool will display the name of the company that manufactured a specific network device based on its MAC Address.", + "method": "GET", + "required_parameters": [ + { + "name": "mac", + "type": "STRING", + "description": "the MAC address to lookup", + "default": "00-05-02-34-56-78" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/maclookup\"\nquerystring = {\"mac\": \"00-05-02-34-56-78\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/maclookup\"\nquerystring = {\"mac\": \"00-05-02-34-56-78\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Abuse Contact Lookup", + "url": "https://community-viewdns.p.rapidapi.com/abuselookup", + "description": "Used to find the abuse contact address for a domain name. This is where you would send complaints about spam originating from that domain.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain name to find the abuse contact for", + "default": "twitter.com" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/abuselookup\"\nquerystring = {\"domain\": \"twitter.com\", \"output\": \"json\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/abuselookup\"\nquerystring = {\"domain\": \"twitter.com\", \"output\": \"json\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "DNS Propagation Checker", + "url": "https://community-viewdns.p.rapidapi.com/propagation", + "description": "Check whether recent changes to DNS entries have propagated to DNS servers all over the world. Useful in troubleshooting DNS issues that appear to be isolated to one geographic region. Provides a status report on DNS propagation globally.", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "STRING", + "description": "the domain name to test", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/propagation\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/propagation\"\nquerystring = {\"domain\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Iran Firewall Test", + "url": "https://community-viewdns.p.rapidapi.com/iranfirewall", + "description": "Test if any website is accessible using the Internet in Iran in real-time.", + "method": "GET", + "required_parameters": [ + { + "name": "siteurl", + "type": "STRING", + "description": "the URL to test", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/iranfirewall\"\nquerystring = {\"siteurl\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/iranfirewall\"\nquerystring = {\"siteurl\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Reverse DNS Lookup", + "url": "https://community-viewdns.p.rapidapi.com/reversedns", + "description": "Find the reverse DNS entry (PTR) for a given IP. This is generally the server or host name.", + "method": "GET", + "required_parameters": [ + { + "name": "ip", + "type": "STRING", + "description": "the IP address to retrieve the reverse DNS record for", + "default": "" + }, + { + "name": "output", + "type": "STRING", + "description": "the output format required ('xml' or 'json')", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/reversedns\"\nquerystring = {\"ip\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-viewdns.p.rapidapi.com/reversedns\"\nquerystring = {\"ip\": \"\", \"output\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-viewdns.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "viewdns" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/viewdns/api.py b/toolbench/toolenv/tools/Tools/viewdns/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e59c010507aa6e115c60d9d1f765a8d4d89e642c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/viewdns/api.py @@ -0,0 +1,333 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def whois(domain: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Displays owner/contact information for a domain name. Can also be used to determine if a domain name is registered or not. This tool is not available to free API key users. Access is restricted to paid API keys only." + domain: the domain to perform a whois lookup on + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/whois" + querystring = {'domain': domain, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def port_scanner(host: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This web based port scanner will test whether common ports are open on a server. Useful in determining if a specific service (e.g. HTTP) is up or down on a specific server. Ports scanned are: 21, 22, 23, 25, 80, 110, 139, 143, 445, 1433, 1521, 3306 and 3389" + host: the host to perform the port scanner on (domain or IP address) + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/portscan" + querystring = {'host': host, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def traceroute(domain: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Determines the series of servers that data traverses from the ViewDNS server to the specified domain name or IP address." + domain: the domain or IP address to perform a traceroute on + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/traceroute" + querystring = {'domain': domain, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def dns_record_lookup(domain: str, output: str, recordtype: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "View all configured DNS records (A, MX, CNAME etc.) for a specified domain name." + domain: the domain name to lookup DNS records for + output: the output format required ('xml' or 'json') + recordtype: the type of DNS record you wish to retrieve (default 'ANY') + + """ + url = f"https://community-viewdns.p.rapidapi.com/dnsrecord" + querystring = {'domain': domain, 'output': output, } + if recordtype: + querystring['recordtype'] = recordtype + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def ping(output: str, host: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Test how long a response from remote system takes to reach the ViewDNS server. Useful for detecting latency issues on network connections." + output: the output format required ('xml' or 'json') + host: the domain or IP address to perform a ping on + + """ + url = f"https://community-viewdns.p.rapidapi.com/ping" + querystring = {'output': output, 'host': host, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def ip_location_finder(ip: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This tool will display geographic information about a supplied IP address including city, country, latitude, longitude and more." + ip: the ip address to find the location of + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/iplocation" + querystring = {'ip': ip, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def chinese_firewall_test(domain: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Checks whether a site is blocked by the Great Firewall of China. This test checks across a number of servers from various locations in mainland China to determine if access to the site provided is possible from behind the Great Firewall of China. This test checks for symptoms of DNS poisoning, one of the more common methods used by the Chinese government to block access to websites." + domain: the domain name to test + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/chinesefirewall" + querystring = {'domain': domain, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def spam_database_lookup(ip: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find out if your mail server is listed in any spam databases." + ip: the IP address to test for spam blacklisting + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/spamdblookup" + querystring = {'ip': ip, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def free_email_lookup(domain: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find out if a domain name provides free email addresses. Search is performed on a custom made list of thousands of known free email hosts." + domain: the domain name to test for free email services + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/freeemail" + querystring = {'domain': domain, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def mac_address_lookup(mac: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This tool will display the name of the company that manufactured a specific network device based on its MAC Address." + mac: the MAC address to lookup + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/maclookup" + querystring = {'mac': mac, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def abuse_contact_lookup(domain: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Used to find the abuse contact address for a domain name. This is where you would send complaints about spam originating from that domain." + domain: the domain name to find the abuse contact for + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/abuselookup" + querystring = {'domain': domain, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def dns_propagation_checker(domain: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Check whether recent changes to DNS entries have propagated to DNS servers all over the world. Useful in troubleshooting DNS issues that appear to be isolated to one geographic region. Provides a status report on DNS propagation globally." + domain: the domain name to test + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/propagation" + querystring = {'domain': domain, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def iran_firewall_test(siteurl: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Test if any website is accessible using the Internet in Iran in real-time." + siteurl: the URL to test + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/iranfirewall" + querystring = {'siteurl': siteurl, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reverse_dns_lookup(ip: str, output: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find the reverse DNS entry (PTR) for a given IP. This is generally the server or host name." + ip: the IP address to retrieve the reverse DNS record for + output: the output format required ('xml' or 'json') + + """ + url = f"https://community-viewdns.p.rapidapi.com/reversedns" + querystring = {'ip': ip, 'output': output, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-viewdns.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/visual_basic_code_compiler.json b/toolbench/toolenv/tools/Tools/visual_basic_code_compiler.json new file mode 100644 index 0000000000000000000000000000000000000000..708d7c4b86debefeae01d9114c1583d091799530 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/visual_basic_code_compiler.json @@ -0,0 +1,93 @@ +{ + "tool_name": "Visual Basic Code Compiler", + "tool_description": "Visual Basic Code Compiler API", + "title": "Visual Basic Code Compiler", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/UnlimitedAPI/api/visual-basic-code-compiler/", + "host": "visual-basic-code-compiler.p.rapidapi.com", + "api_list": [ + { + "name": "Visual Basic Versions", + "url": "https://visual-basic-code-compiler.p.rapidapi.com/versions/", + "description": "Visual Basic Versions", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://visual-basic-code-compiler.p.rapidapi.com/versions/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"visual-basic-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": [ + { + "id": 0, + "version": "mono 4.0.1" + }, + { + "id": 1, + "version": "mono 4.6" + }, + { + "id": 2, + "version": "mono 5.10.1" + }, + { + "id": 3, + "version": "mono 6.0.0" + }, + { + "id": 4, + "version": "mono 6.12.0" + } + ], + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Thu, 25 Aug 2022 18:18:09 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Visual Basic Code Compiler", + "url": "https://visual-basic-code-compiler.p.rapidapi.com/", + "description": "Visual Basic Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://visual-basic-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"visual-basic-code-compiler.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "cpuTime": "0.02", + "memory": "16040", + "output": "Visual Basic.Net Compiler version 0.0.0.5943 (Mono 4.8 - makepkg/e31cb702)\nCopyright (C) 2004-2010 Rolf Bjarne Kvinge. All rights reserved.\n\nAssembly 'unlimitedapi, Version=0.0, Culture=neutral, PublicKeyToken=null' saved successfully to '/home/unlimitedapi.exe'.\r\nCompilation successful\r\nCompilation took 00:00:00.7259430\nHello, World!" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-type": "application/json", + "date": "Thu, 25 Aug 2022 18:23:04 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 vegur", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Visual Basic Code Compiler", + "url": "https://visual-basic-code-compiler.p.rapidapi.com/", + "description": "Visual Basic Code Compiler", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://visual-basic-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"visual-basic-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://visual-basic-code-compiler.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"visual-basic-code-compiler.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/visual_basic_code_compiler/api.py b/toolbench/toolenv/tools/Tools/visual_basic_code_compiler/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d4fc169f8042b16df3c8fc2fedeaa844c63d580c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/visual_basic_code_compiler/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def visual_basic_versions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Visual Basic Versions" + + """ + url = f"https://visual-basic-code-compiler.p.rapidapi.com/versions/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "visual-basic-code-compiler.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/vof.json b/toolbench/toolenv/tools/Tools/vof.json new file mode 100644 index 0000000000000000000000000000000000000000..2e44e47d3ffc91e4d0c32fd43ed994368956cb38 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/vof.json @@ -0,0 +1,24 @@ +{ + "tool_name":"vof", + "tool_description":"API calculate the velocity of a falling object from specific height", + "title":"vof", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/jetaiyahill325/api/vof/", + "host":"vof.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://vof.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vof.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vof.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/vof/api.py b/toolbench/toolenv/tools/Tools/vof/api.py new file mode 100644 index 0000000000000000000000000000000000000000..56a26e3296693152d990128518366b1496395a78 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/vof/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://vof.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vof.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/voice_processing.json b/toolbench/toolenv/tools/Tools/voice_processing.json new file mode 100644 index 0000000000000000000000000000000000000000..33321ace118ff6667f22ebdfeb17b7e0fd55edd5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/voice_processing.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_a8a2dced-03ed-4a88-8b05-5c0c240f7006", + "tool_description": "Analysing Audio Files with human voice content", + "home_url": "https://rapidapi.com/glappajs/api/voice-processing/", + "name": "Voice Processing", + "title": "Voice Processing", + "pricing": "FREEMIUM", + "tool_name": "Voice Processing", + "score": null, + "host": "voice-processing.p.rapidapi.com", + "api_list": [ + { + "name": "extract_keywords", + "url": "https://voice-processing.p.rapidapi.com/extract_keywords", + "description": "Extract keywords from a audio file containing voice. Currently only supported for the english language.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://voice-processing.p.rapidapi.com/extract_keywords\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"voice-processing.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://voice-processing.p.rapidapi.com/extract_keywords\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"voice-processing.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "keyword": { + "type": "string" + }, + "weight": { + "type": "number" + } + } + } + }, + "error": { + "type": "null" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/vps_nester.json b/toolbench/toolenv/tools/Tools/vps_nester.json new file mode 100644 index 0000000000000000000000000000000000000000..4506e5582803806d5d8f88e5fa5921a418048aad --- /dev/null +++ b/toolbench/toolenv/tools/Tools/vps_nester.json @@ -0,0 +1,24 @@ +{ + "tool_name":"VPS Nester", + "tool_description":"Learn more about it at - https://www.einsstark.tech", + "title":"VPS Nester", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/nasa21ae/api/vps-nester/", + "host":"vps-nester.p.rapidapi.com", + "api_list":[ + { + "name":"VPS Tester", + "url":"https://vps-nester.p.rapidapi.com/", + "description":"Learn more about it at - [https://www.einsstark.tech](url)", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vps-nester.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vps-nester.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/vps_nester/api.py b/toolbench/toolenv/tools/Tools/vps_nester/api.py new file mode 100644 index 0000000000000000000000000000000000000000..07ebd62a74a34932e7fa98ad529382e722a68814 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/vps_nester/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def vps_tester(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Learn more about it at - [https://www.einsstark.tech](url)" + + """ + url = f"https://vps-nester.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vps-nester.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/waktu_solat.json b/toolbench/toolenv/tools/Tools/waktu_solat.json new file mode 100644 index 0000000000000000000000000000000000000000..838df903f80f7dc63cf525fe14944d973cd4a50b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/waktu_solat.json @@ -0,0 +1,166 @@ +{ + "product_id": "api_34ebf50f-585c-4395-b02b-f2d26ebeea0e", + "tool_description": "Information on prayer times in Malaysia. Sources of information from e-solat.gov.my", + "home_url": "https://rapidapi.com/UekiChinos1/api/waktu-solat4/", + "name": "Waktu Solat", + "title": "Waktu Solat", + "pricing": "FREEMIUM", + "tool_name": "Waktu Solat", + "score": { + "avgServiceLevel": 96, + "avgLatency": 357, + "avgSuccessRate": 96, + "popularityScore": 8.9, + "__typename": "Score" + }, + "host": "waktu-solat4.p.rapidapi.com", + "api_list": [ + { + "name": "/solat/time", + "url": "https://waktu-solat4.p.rapidapi.com/solat/time", + "description": "Display the prayer time based on selected zone.\nData in json format.", + "method": "GET", + "required_parameters": [ + { + "name": "code", + "type": "STRING", + "description": "zone code, get from API /solat/list", + "default": "SWK07" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://waktu-solat4.p.rapidapi.com/solat/time\"\nquerystring = {\"code\": \"SWK07\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waktu-solat4.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://waktu-solat4.p.rapidapi.com/solat/time\"\nquerystring = {\"code\": \"SWK07\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waktu-solat4.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": [ + { + "title": "Imsak", + "description": "05:08:00" + }, + { + "title": "Subuh", + "description": "05:18:00" + }, + { + "title": "Syuruk", + "description": "06:32:00" + }, + { + "title": "Zohor", + "description": "12:40:00" + }, + { + "title": "Asar", + "description": "16:06:00" + }, + { + "title": "Maghrib", + "description": "18:46:00" + }, + { + "title": "Isyak", + "description": "20:01:00" + } + ] + }, + { + "name": "/solat/list", + "url": "https://waktu-solat4.p.rapidapi.com/solat/list", + "description": "List of zones in each state along with the zone code.\nData in json format.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://waktu-solat4.p.rapidapi.com/solat/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waktu-solat4.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://waktu-solat4.p.rapidapi.com/solat/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waktu-solat4.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "Johor": { + "JHR01": "Pulau Aur dan Pulau Pemanggil", + "JHR02": "Johor Bahru, Kota Tinggi, Mersing, Kulai", + "JHR03": "Kluang, Pontian", + "JHR04": "Batu Pahat, Muar, Segamat, Gemas Johor, Tangkak" + }, + "Kedah": { + "KDH01": "Kota Setar, Kubang Pasu, Pokok Sena (Daerah Kecil)", + "KDH02": "Kuala Muda, Yan, Pendang", + "KDH03": "Padang Terap, Sik", + "KDH04": "Baling", + "KDH05": "Bandar Baharu, Kulim", + "KDH06": "Langkawi", + "KDH07": "Puncak Gunung Jerai" + }, + "Kelantan": { + "KTN01": "Bachok, Kota Bharu, Machang, Pasir Mas, Pasir Puteh, Tanah Merah, Tumpat, Kuala Krai, Mukim Chiku", + "KTN02": "Gua Musang (Daerah Galas Dan Bertam), Jeli, Jajahan Kecil Lojing" + }, + "Melaka": { + "MLK01": "Seluruh Negeri Melaka" + }, + "Negeri Sembilan": { + "NGS01": "Tampin, Jempol", + "NGS02": "Jelebu, Kuala Pilah, Rembau", + "NGS03": "Port Dickson, Seremban" + }, + "Pahang": { + "PHG01": "Pulau Tioman", + "PHG02": "Kuantan, Pekan, Rompin, Muadzam Shah", + "PHG03": "Jerantut, Temerloh, Maran, Bera, Chenor, Jengka", + "PHG04": "Bentong, Lipis, Raub", + "PHG05": "Genting Sempah, Janda Baik, Bukit Tinggi", + "PHG06": "Cameron Highlands, Genting Higlands, Bukit Fraser" + }, + "Perlis": { + "PLS01": "Kangar, Padang Besar, Arau" + }, + "Pulau Pinang": { + "PNG01": "Seluruh Negeri Pulau Pinang" + }, + "Perak": { + "PRK01": "Tapah, Slim River, Tanjung Malim", + "PRK02": "Kuala Kangsar, Sg. Siput , Ipoh, Batu Gajah, Kampar", + "PRK03": "Lenggong, Pengkalan Hulu, Grik", + "PRK04": "Temengor, Belum", + "PRK05": "Kg Gajah, Teluk Intan, Bagan Datuk, Seri Iskandar, Beruas, Parit, Lumut, Sitiawan, Pulau Pangkor", + "PRK06": "Selama, Taiping, Bagan Serai, Parit Buntar", + "PRK07": "Bukit Larut" + }, + "Sabah": { + "SBH01": "Bahagian Sandakan (Timur), Bukit Garam, Semawang, Temanggong, Tambisan, Bandar Sandakan, Sukau", + "SBH02": "Beluran, Telupid, Pinangah, Terusan, Kuamut, Bahagian Sandakan (Barat)", + "SBH03": "Lahad Datu, Silabukan, Kunak, Sahabat, Semporna, Tungku, Bahagian Tawau (Timur)", + "SBH04": "Bandar Tawau, Balong, Merotai, Kalabakan, Bahagian Tawau (Barat)", + "SBH05": "Kudat, Kota Marudu, Pitas, Pulau Banggi, Bahagian Kudat", + "SBH06": "Gunung Kinabalu", + "SBH07": "Kota Kinabalu, Ranau, Kota Belud, Tuaran, Penampang, Papar, Putatan, Bahagian Pantai Barat", + "SBH08": "Pensiangan, Keningau, Tambunan, Nabawan, Bahagian Pendalaman (Atas)", + "SBH09": "Beaufort, Kuala Penyu, Sipitang, Tenom, Long Pasia, Membakut, Weston, Bahagian Pendalaman (Bawah)" + }, + "Selangor": { + "SGR01": "Gombak, Petaling, Sepang, Hulu Langat, Hulu Selangor, S.Alam", + "SGR02": "Kuala Selangor, Sabak Bernam", + "SGR03": "Klang, Kuala Langat" + }, + "Sarawak": { + "SWK01": "Limbang, Lawas, Sundar, Trusan", + "SWK02": "Miri, Niah, Bekenu, Sibuti, Marudi", + "SWK03": "Pandan, Belaga, Suai, Tatau, Sebauh, Bintulu", + "SWK04": "Sibu, Mukah, Dalat, Song, Igan, Oya, Balingian, Kanowit, Kapit", + "SWK05": "Sarikei, Matu, Julau, Rajang, Daro, Bintangor, Belawai", + "SWK06": "Lubok Antu, Sri Aman, Roban, Debak, Kabong, Lingga, Engkelili, Betong, Spaoh, Pusa, Saratok", + "SWK07": "Serian, Simunjan, Samarahan, Sebuyau, Meludam", + "SWK08": "Kuching, Bau, Lundu, Sematan", + "SWK09": "Zon Khas (Kampung Patarikan)" + }, + "Terengganu": { + "TRG01": "Kuala Terengganu, Marang, Kuala Nerus", + "TRG02": "Besut, Setiu", + "TRG03": "Hulu Terengganu", + "TRG04": "Dungun, Kemaman" + }, + "Wilayah Persekutuan": { + "WLY01": "Kuala Lumpur, Putrajaya", + "WLY02": "Labuan" + } + } + } + ], + "standardized_name": "waktu_solat" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/waktu_solat/api.py b/toolbench/toolenv/tools/Tools/waktu_solat/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ed4c6f4768110159884003e9c1db0092451828cb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/waktu_solat/api.py @@ -0,0 +1,53 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def solat_time(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Display the prayer time based on selected zone. + Data in json format." + code: zone code, get from API /solat/list + + """ + url = f"https://waktu-solat4.p.rapidapi.com/solat/time" + querystring = {'code': code, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "waktu-solat4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def solat_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List of zones in each state along with the zone code. + Data in json format." + + """ + url = f"https://waktu-solat4.p.rapidapi.com/solat/list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "waktu-solat4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/wayback_machine.json b/toolbench/toolenv/tools/Tools/wayback_machine.json new file mode 100644 index 0000000000000000000000000000000000000000..5778f78d26f7c3b6c1fa050c2b35235584fda799 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/wayback_machine.json @@ -0,0 +1,64 @@ +{ + "product_id": "53aa5793e4b0a705fcc31e6d", + "tool_description": "The Internet Archive Wayback Machine supports a number of different APIs to make it easier for developers to retrieve information about Wayback capture data.", + "home_url": "https://rapidapi.com/community/api/wayback-machine/", + "name": "Wayback Machine", + "title": "Wayback Machine", + "pricing": "FREE", + "tool_name": "Wayback Machine", + "score": { + "avgServiceLevel": 100, + "avgLatency": 436, + "avgSuccessRate": 100, + "popularityScore": 6.7, + "__typename": "Score" + }, + "host": "community-wayback-machine.p.rapidapi.com", + "api_list": [ + { + "name": "Availability", + "url": "https://community-wayback-machine.p.rapidapi.com/available", + "description": "This simple API for Wayback is a test to see if a given url is archived and currenlty accessible in the Wayback Machine. This API is useful for providing a 404 or other error handler which checks Wayback to see if it has an archived copy ready to display. The API can be used as follows:", + "method": "GET", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "http://mashape.com" + } + ], + "optional_parameters": [ + { + "name": "timestamp", + "type": "STRING", + "description": "timestamp is the timestamp to look up in Wayback. If not specified, the most recenty available capture in Wayback is returned. The format of the timestamp is 1-14 digits (YYYYMMDDhhmmss)", + "default": "20090101" + }, + { + "name": "callback", + "type": "STRING", + "description": "callback is an optional callback which may be specified to produce a JSONP response.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://community-wayback-machine.p.rapidapi.com/available\"\nquerystring = {\"url\": \"http://mashape.com\", \"timestamp\": \"20090101\", \"callback\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-wayback-machine.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-wayback-machine.p.rapidapi.com/available\"\nquerystring = {\"url\": \"http://mashape.com\", \"timestamp\": \"20090101\", \"callback\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-wayback-machine.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "url": "http://mashape.com", + "archived_snapshots": { + "closest": { + "status": "200", + "available": true, + "url": "http://web.archive.org/web/20090515105210/http://mashape.com:80/", + "timestamp": "20090515105210" + } + }, + "timestamp": "20090101" + }, + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "wayback_machine" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/wayback_machine/api.py b/toolbench/toolenv/tools/Tools/wayback_machine/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ed08d88d8680f98e1e4c094b7ea7e638efcfc77a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/wayback_machine/api.py @@ -0,0 +1,35 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def availability(url: str, timestamp: str='20090101', callback: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This simple API for Wayback is a test to see if a given url is archived and currenlty accessible in the Wayback Machine. This API is useful for providing a 404 or other error handler which checks Wayback to see if it has an archived copy ready to display. The API can be used as follows:" + timestamp: timestamp is the timestamp to look up in Wayback. If not specified, the most recenty available capture in Wayback is returned. The format of the timestamp is 1-14 digits (YYYYMMDDhhmmss) + callback: callback is an optional callback which may be specified to produce a JSONP response. + + """ + url = f"https://community-wayback-machine.p.rapidapi.com/available" + querystring = {'url': url, } + if timestamp: + querystring['timestamp'] = timestamp + if callback: + querystring['callback'] = callback + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-wayback-machine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/weather_api.json b/toolbench/toolenv/tools/Tools/weather_api.json new file mode 100644 index 0000000000000000000000000000000000000000..5935dbe0f2cec5a3276e4cbea36d095c1766cf18 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/weather_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"WEATHER API", + "tool_description":"A weather API is an Application Programming Interface that allows weather data to be queried from scripts and code.", + "title":"WEATHER API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/aakking786/api/weather-api73/", + "host":"weather-api73.p.rapidapi.com", + "api_list":[ + { + "name":"WEATHER API", + "url":"https://weather-api73.p.rapidapi.com/weather", + "description":"A weather API is an Application Programming Interface that allows weather data to be queried from scripts and code.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"city", + "type":"STRING", + "description":"", + "default":"lahore" + } + ], + "code":"import requests\n\nurl = \"https://weather-api73.p.rapidapi.com/weather\"\nquerystring = {\"city\": city}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"weather-api73.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/weather_api/api.py b/toolbench/toolenv/tools/Tools/weather_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2121258358abd9f804522922e8b30bff511a2b99 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/weather_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def weather_api(city: str='lahore', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "A weather API is an Application Programming Interface that allows weather data to be queried from scripts and code." + + """ + url = f"https://weather-api73.p.rapidapi.com/weather" + querystring = {} + if city: + querystring['city'] = city + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "weather-api73.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/web_scrapper.json b/toolbench/toolenv/tools/Tools/web_scrapper.json new file mode 100644 index 0000000000000000000000000000000000000000..bdae8f44801b32b760301cba10ff9aa7468ae5c2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/web_scrapper.json @@ -0,0 +1,44 @@ +{ + "tool_name":"Web Scrapper", + "tool_description":"HTML Web Scrapper & Parser. \nFetch HTML page & return exctracted data by selectors (if specified). \n\nDefinitions: \n - url: https://wikipedia.org (required)\n - s: .class1, class2, div, a, img, #id\n\n\n", + "title":"Web Scrapper", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":6080, + "avgSuccessRate":100, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/zilinskivan/api/web-scrapper3/", + "host":"web-scrapper3.p.rapidapi.com", + "api_list":[ + { + "name":"go", + "url":"https://web-scrapper3.p.rapidapi.com/", + "description":"Fetch & parse HTML page", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://wikipedia.org" + } + ], + "optional_parameters":[ + { + "name":"s", + "type":"STRING", + "description":"", + "default":".jsl10n" + } + ], + "code":"import requests\n\nurl = \"https://web-scrapper3.p.rapidapi.com/\"\nquerystring = {\"s\": s, \"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"web-scrapper3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/web_scrapper/api.py b/toolbench/toolenv/tools/Tools/web_scrapper/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1b5cd5ca1b7861842965e49a97418d5d152eb7bf --- /dev/null +++ b/toolbench/toolenv/tools/Tools/web_scrapper/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def go(url: str, s: str='.jsl10n', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch & parse HTML page" + + """ + url = f"https://web-scrapper3.p.rapidapi.com/" + querystring = {'url': url, } + if s: + querystring['s'] = s + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "web-scrapper3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/webpage_screenshot.json b/toolbench/toolenv/tools/Tools/webpage_screenshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f3adc9f9c84fa9ac31ba7257952de149f0623cca --- /dev/null +++ b/toolbench/toolenv/tools/Tools/webpage_screenshot.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_88a719a8-69e8-4b11-9bce-f953c4a41a14", + "tool_description": "This API allows you to capture screenshots of webpages. It provides endpoints to generate webpage screenshots based on provided URL, width, and height parameters", + "home_url": "https://rapidapi.com/thanhbeo5n/api/webpage-screenshot/", + "name": "Webpage screenshot", + "title": "Webpage screenshot", + "pricing": "FREE", + "tool_name": "Webpage screenshot", + "score": { + "avgServiceLevel": 97, + "avgLatency": 15494, + "avgSuccessRate": 92, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "webpage-screenshot.p.rapidapi.com", + "api_list": [ + { + "name": "Take screenshot", + "url": "https://webpage-screenshot.p.rapidapi.com/capture_screenshot/", + "description": "Take screenshot of web page from url", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webpage-screenshot.p.rapidapi.com/capture_screenshot/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webpage-screenshot.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webpage-screenshot.p.rapidapi.com/capture_screenshot/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webpage-screenshot.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/website_content_parser.json b/toolbench/toolenv/tools/Tools/website_content_parser.json new file mode 100644 index 0000000000000000000000000000000000000000..bca7a0056c9eca8eba60d0a76b27335792712abd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_content_parser.json @@ -0,0 +1,80 @@ +{ + "tool_name":"Website Content Parser", + "tool_description":"Our API allows you to effortlessly extract content from any website by simply passing its URL. Get the data you need in seconds, hassle-free.", + "title":"Website Content Parser", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/uniquekeylab/api/website-content-parser/", + "host":"website-content-parser.p.rapidapi.com", + "api_list":[ + { + "name":"Content Parser", + "url":"https://website-content-parser.p.rapidapi.com/parser", + "description":"Just pass the URL and get the parsed content in readable json format.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://website-content-parser.p.rapidapi.com/parser\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-content-parser.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "title":{ + "type":"string" + }, + "author":{ + "type":"null" + }, + "date_published":{ + "type":"null" + }, + "dek":{ + "type":"null" + }, + "lead_image_url":{ + "type":"string" + }, + "content":{ + "type":"string" + }, + "next_page_url":{ + "type":"null" + }, + "url":{ + "type":"string" + }, + "domain":{ + "type":"string" + }, + "excerpt":{ + "type":"string" + }, + "word_count":{ + "type":"integer" + }, + "direction":{ + "type":"string" + }, + "total_pages":{ + "type":"integer" + }, + "rendered_pages":{ + "type":"integer" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/website_content_parser/api.py b/toolbench/toolenv/tools/Tools/website_content_parser/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c3f4c8cf4202999547a8b6d08657f7d9cd1a6830 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_content_parser/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def content_parser(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Just pass the URL and get the parsed content in readable json format." + + """ + url = f"https://website-content-parser.p.rapidapi.com/parser" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "website-content-parser.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/website_image_surveillance.json b/toolbench/toolenv/tools/Tools/website_image_surveillance.json new file mode 100644 index 0000000000000000000000000000000000000000..f4f6d9697153b3444153d4c83d521443574090c3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_image_surveillance.json @@ -0,0 +1,44 @@ +{ + "tool_name":"Website Image Surveillance", + "tool_description":"Website Image Surveillance API allows you to validate the image source and status of each image in a given URL. API returns the data for each image and an email notification is sent if the image is not available. \n\nIn case you have specific requirements or would like to have custom API then => https://www.entamatrix.tech", + "title":"Website Image Surveillance", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1107, + "avgSuccessRate":100, + "popularityScore":8.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/xored/api/website-image-surveillance/", + "host":"website-image-surveillance.p.rapidapi.com", + "api_list":[ + { + "name":"imagesurveillance", + "url":"https://website-image-surveillance.p.rapidapi.com/api/imagesurveillance", + "description":"Monitor website images", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.google.com" + } + ], + "optional_parameters":[ + { + "name":"email", + "type":"STRING", + "description":"", + "default":"image@not.found" + } + ], + "code":"import requests\n\nurl = \"https://website-image-surveillance.p.rapidapi.com/api/imagesurveillance\"\nquerystring = {\"url\": url, \"email\": email}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-image-surveillance.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/website_image_surveillance/api.py b/toolbench/toolenv/tools/Tools/website_image_surveillance/api.py new file mode 100644 index 0000000000000000000000000000000000000000..41beeef28b9e63bc52a697b82c1cd37c41d8b2f3 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_image_surveillance/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def imagesurveillance(url: str, email: str='image@not.found', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Monitor website images" + + """ + url = f"https://website-image-surveillance.p.rapidapi.com/api/imagesurveillance" + querystring = {'url': url, } + if email: + querystring['email'] = email + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "website-image-surveillance.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/website_oracle.json b/toolbench/toolenv/tools/Tools/website_oracle.json new file mode 100644 index 0000000000000000000000000000000000000000..4d97775267993465e3cfbcff3af25f66fe0ba07c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_oracle.json @@ -0,0 +1,58 @@ +{ + "product_id": "api_cb3d7e5e-7a96-4fab-83a3-6ee571135dbc", + "tool_description": "Versatile Website Analysis API capable of comprehensively analyzing and handling various aspects related to websites.", + "home_url": "https://rapidapi.com/cadmus-labs-cadmus-labs-admin/api/website-oracle/", + "name": "Website Oracle", + "title": "Website Oracle", + "pricing": "FREEMIUM", + "tool_name": "Website Oracle", + "score": { + "avgServiceLevel": 100, + "avgLatency": 902, + "avgSuccessRate": 100, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "website-oracle.p.rapidapi.com", + "api_list": [ + { + "name": "getContent", + "url": "https://website-oracle.p.rapidapi.com/content", + "description": "Get the content of a website for analyzing", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://website-oracle.p.rapidapi.com/content\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-oracle.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://website-oracle.p.rapidapi.com/content\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-oracle.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "getCertificate", + "url": "https://website-oracle.p.rapidapi.com/certificate", + "description": "Get the certificate details of a website for checking the validity and other details of the certificate", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://website-oracle.p.rapidapi.com/certificate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-oracle.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://website-oracle.p.rapidapi.com/certificate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-oracle.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "getDependencies", + "url": "https://website-oracle.p.rapidapi.com/dependencies", + "description": "Get the dependency links of a website for ensuring that none of the URLs are broken", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://website-oracle.p.rapidapi.com/dependencies\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-oracle.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://website-oracle.p.rapidapi.com/dependencies\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"website-oracle.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/website_screenshoot_capture_and_thumbnails/api.py b/toolbench/toolenv/tools/Tools/website_screenshoot_capture_and_thumbnails/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1d5f991f55fe6b789675dc1e0476ffd585a0ec7e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_screenshoot_capture_and_thumbnails/api.py @@ -0,0 +1,43 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def screenshoot(url: str, viewport: str='1440x900', file_name: str='myscreenshoot', full_page: str='true', inline: str='json', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Screenshot full page or thumbnail" + url: The full URL (including the HTTP & HTTPS Protocol) of the website you want to take a screenshot of. https://gizipp.com + viewport: Specify your preferred viewport dimensions in pixels. default 1440x900 + file_name: Specify an image name of up to 180 characters. + full_page: Set true if you want to take a full-page screenshot. + + inline: set to show to display screenshot, download to download screenshot & json to get JSON response with image URL + + """ + url = f"https://website-screenshoot-capture-and-thumbnails.p.rapidapi.com/" + querystring = {'url': url, } + if viewport: + querystring['viewport'] = viewport + if file_name: + querystring['file_name'] = file_name + if full_page: + querystring['full_page'] = full_page + if inline: + querystring['inline'] = inline + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "website-screenshoot-capture-and-thumbnails.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/website_screenshot_or_thumbnail.json b/toolbench/toolenv/tools/Tools/website_screenshot_or_thumbnail.json new file mode 100644 index 0000000000000000000000000000000000000000..6429bdc0a5505f674d0648308da577299fdc1bb0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_screenshot_or_thumbnail.json @@ -0,0 +1,172 @@ +{ + "product_id": "592541cbe4b0bba971fec0d1", + "tool_description": "Take pixel-perfect screenshots or thumbnails of any website. Restpack Screenshot API is an easy to use RESTful web service that can capture screenshots of live web pages and deliver the results in several formats. The service sits on a fully functional browser rendering engine with rich html / css / js capabilities.", + "home_url": "https://rapidapi.com/restpack/api/website-screenshot-or-thumbnail/", + "name": "Website Screenshot or Thumbnail", + "title": "Website Screenshot or Thumbnail", + "pricing": "FREE", + "tool_name": "Website Screenshot or Thumbnail", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2218, + "avgSuccessRate": 99, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "restpack-restpack-screenshot-v2.p.rapidapi.com", + "api_list": [ + { + "name": "/capture", + "url": "https://restpack-restpack-screenshot-v2.p.rapidapi.com/capture", + "description": "Capture screenshot from any URL or Raw HTML. POST method is also available. Please take a look https://restpack.io/screenshot/docs", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "html", + "type": "STRING", + "description": "Raw HTML string of a page that you want to capture. Example:

Test

", + "default": "" + }, + { + "name": "json", + "type": "BOOLEAN", + "description": "Return a JSON response with the resulting image's URL instead of the image itself. Default: false", + "default": "" + }, + { + "name": "mode", + "type": "STRING", + "description": "Capturing mode. Please see below for details. Default: fullpage Pattern: fullpage | viewport | element", + "default": "" + }, + { + "name": "format", + "type": "STRING", + "description": "Preferred image output format. If you need a raw html string you can pass html as format Default: png Pattern: jpg | png | pdf | html", + "default": "" + }, + { + "name": "width", + "type": "NUMBER", + "description": "Preferred viewport width in pixels. Default: 1280 Min: 320 Max: 2000", + "default": "" + }, + { + "name": "height", + "type": "NUMBER", + "description": "Preferred viewport height in pixels. Default: 1024 Min: 160", + "default": "" + }, + { + "name": "thumbnail_width", + "type": "NUMBER", + "description": "In case you want a thumbnail image, provide a preferred width. Min: 10 Max: 3000", + "default": "" + }, + { + "name": "thumbnail_height", + "type": "NUMBER", + "description": "Preferred thumbnail height, requires thumbnail_width to be set, unbounded if omitted. Min: 10 Max: 3000", + "default": "" + }, + { + "name": "css", + "type": "STRING", + "description": "Additional CSS string to be injected into the page before render.", + "default": "" + }, + { + "name": "js", + "type": "STRING", + "description": "Additional JS string to be injected into the page before render.", + "default": "" + }, + { + "name": "prescroll", + "type": "BOOLEAN", + "description": "Force scrolling the webpage before capture. Might help with dynamic loading assets.", + "default": "" + }, + { + "name": "delay", + "type": "NUMBER", + "description": "Time in milliseconds to delay capture after page load. Default: 2000 Max: 10000", + "default": "" + }, + { + "name": "ttl", + "type": "NUMBER", + "description": "Time in milliseconds for the resulting image to be cached for further requests. Default: 1 day Max: 1 week", + "default": "" + }, + { + "name": "fresh", + "type": "BOOLEAN", + "description": "Force rendering a new screenshot disregarding the cache status. Default: false", + "default": "" + }, + { + "name": "user_agent", + "type": "STRING", + "description": "Custom user-agent header string for the web request. Default: Chrome Compatible User Agent", + "default": "" + }, + { + "name": "accept_language", + "type": "STRING", + "description": "Custom accept-language header string for the web request.", + "default": "" + }, + { + "name": "element_selector", + "type": "STRING", + "description": "A CSS selector to be used with element rendering mode.", + "default": "" + }, + { + "name": "headers", + "type": "STRING", + "description": "Additional headers seperated with newline Example: X-Test: header\\nAccept-Type: html", + "default": "" + }, + { + "name": "retina", + "type": "BOOLEAN", + "description": "Generate retina sized screen capture (2x device pixel ratio). Default: false", + "default": "" + }, + { + "name": "base64", + "type": "BOOLEAN", + "description": "Serialize response file to base64", + "default": "" + }, + { + "name": "access_token", + "type": "STRING", + "description": "You can provide your token via querystring instead of header.", + "default": "" + }, + { + "name": "url", + "type": "STRING", + "description": "The URL of web page, including the protocol that you want to capture.", + "default": "http://google.com" + } + ], + "code": "import requests\n\nurl = \"https://restpack-restpack-screenshot-v2.p.rapidapi.com/capture\"\nquerystring = {\"html\": \"\", \"json\": \"\", \"mode\": \"\", \"format\": \"\", \"width\": \"\", \"height\": \"\", \"thumbnail_width\": \"\", \"thumbnail_height\": \"\", \"css\": \"\", \"js\": \"\", \"prescroll\": \"\", \"delay\": \"\", \"ttl\": \"\", \"fresh\": \"\", \"user_agent\": \"\", \"accept_language\": \"\", \"element_selector\": \"\", \"headers\": \"\", \"retina\": \"\", \"base64\": \"\", \"access_token\": \"\", \"url\": \"http://google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"restpack-restpack-screenshot-v2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://restpack-restpack-screenshot-v2.p.rapidapi.com/capture\"\nquerystring = {\"html\": \"\", \"json\": \"\", \"mode\": \"\", \"format\": \"\", \"width\": \"\", \"height\": \"\", \"thumbnail_width\": \"\", \"thumbnail_height\": \"\", \"css\": \"\", \"js\": \"\", \"prescroll\": \"\", \"delay\": \"\", \"ttl\": \"\", \"fresh\": \"\", \"user_agent\": \"\", \"accept_language\": \"\", \"element_selector\": \"\", \"headers\": \"\", \"retina\": \"\", \"base64\": \"\", \"access_token\": \"\", \"url\": \"http://google.com\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"restpack-restpack-screenshot-v2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "error": "No access token provided. Please register and obtain an access token at https://restpack.io/console. You can append the token to querystring as ?access_token=TOK.", + "extensions": { + "code": "NoAccessToken", + "status": 401 + } + }, + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "website_screenshot_or_thumbnail" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/website_screenshot_or_thumbnail/api.py b/toolbench/toolenv/tools/Tools/website_screenshot_or_thumbnail/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a8334792d5e63b590455fe69986961726b3476da --- /dev/null +++ b/toolbench/toolenv/tools/Tools/website_screenshot_or_thumbnail/api.py @@ -0,0 +1,95 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def capture(html: str=None, json: bool=None, mode: str=None, format: str=None, width: int=None, height: int=None, thumbnail_width: int=None, thumbnail_height: int=None, css: str=None, js: str=None, prescroll: bool=None, delay: int=None, ttl: int=None, fresh: bool=None, user_agent: str=None, accept_language: str=None, element_selector: str=None, headers: str=None, retina: bool=None, base64: bool=None, access_token: str=None, url: str='http://google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Capture screenshot from any URL or Raw HTML. POST method is also available. Please take a look https://restpack.io/screenshot/docs" + html: Raw HTML string of a page that you want to capture. Example:

Test

+ json: Return a JSON response with the resulting image's URL instead of the image itself. Default: false + mode: Capturing mode. Please see below for details. Default: fullpage Pattern: fullpage | viewport | element + format: Preferred image output format. If you need a raw html string you can pass html as format Default: png Pattern: jpg | png | pdf | html + width: Preferred viewport width in pixels. Default: 1280 Min: 320 Max: 2000 + height: Preferred viewport height in pixels. Default: 1024 Min: 160 + thumbnail_width: In case you want a thumbnail image, provide a preferred width. Min: 10 Max: 3000 + thumbnail_height: Preferred thumbnail height, requires thumbnail_width to be set, unbounded if omitted. Min: 10 Max: 3000 + css: Additional CSS string to be injected into the page before render. + js: Additional JS string to be injected into the page before render. + prescroll: Force scrolling the webpage before capture. Might help with dynamic loading assets. + delay: Time in milliseconds to delay capture after page load. Default: 2000 Max: 10000 + ttl: Time in milliseconds for the resulting image to be cached for further requests. Default: 1 day Max: 1 week + fresh: Force rendering a new screenshot disregarding the cache status. Default: false + user_agent: Custom user-agent header string for the web request. Default: Chrome Compatible User Agent + accept_language: Custom accept-language header string for the web request. + element_selector: A CSS selector to be used with element rendering mode. + headers: Additional headers seperated with newline Example: X-Test: header\nAccept-Type: html + retina: Generate retina sized screen capture (2x device pixel ratio). Default: false + base64: Serialize response file to base64 + access_token: You can provide your token via querystring instead of header. + url: The URL of web page, including the protocol that you want to capture. + + """ + url = f"https://restpack-restpack-screenshot-v2.p.rapidapi.com/capture" + querystring = {} + if html: + querystring['html'] = html + if json: + querystring['json'] = json + if mode: + querystring['mode'] = mode + if format: + querystring['format'] = format + if width: + querystring['width'] = width + if height: + querystring['height'] = height + if thumbnail_width: + querystring['thumbnail_width'] = thumbnail_width + if thumbnail_height: + querystring['thumbnail_height'] = thumbnail_height + if css: + querystring['css'] = css + if js: + querystring['js'] = js + if prescroll: + querystring['prescroll'] = prescroll + if delay: + querystring['delay'] = delay + if ttl: + querystring['ttl'] = ttl + if fresh: + querystring['fresh'] = fresh + if user_agent: + querystring['user_agent'] = user_agent + if accept_language: + querystring['accept_language'] = accept_language + if element_selector: + querystring['element_selector'] = element_selector + if headers: + querystring['headers'] = headers + if retina: + querystring['retina'] = retina + if base64: + querystring['base64'] = base64 + if access_token: + querystring['access_token'] = access_token + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "restpack-restpack-screenshot-v2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/websitestatus.json b/toolbench/toolenv/tools/Tools/websitestatus.json new file mode 100644 index 0000000000000000000000000000000000000000..f416b28bc9e33e7262f2ccc50988068d8092da49 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/websitestatus.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_aabff9c6-d6e9-422d-8cfa-ad6e7c48239b", + "tool_description": "Check if a website is available or not", + "home_url": "https://rapidapi.com/sowhatdoyoudoofficial/api/websitestatus/", + "name": "WebsiteStatus", + "title": "WebsiteStatus", + "pricing": "FREEMIUM", + "tool_name": "WebsiteStatus", + "score": null, + "host": "websitestatus.p.rapidapi.com", + "api_list": [ + { + "name": "WebsiteStatus", + "url": "https://websitestatus.p.rapidapi.com/websiteStatus", + "description": "Returns availability of website.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://websitestatus.p.rapidapi.com/websiteStatus\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"websitestatus.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://websitestatus.p.rapidapi.com/websiteStatus\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"websitestatus.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "isAvailable": { + "type": "boolean" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/webtor.json b/toolbench/toolenv/tools/Tools/webtor.json new file mode 100644 index 0000000000000000000000000000000000000000..2535e1bd98b33c8a3d005e553325a205c56e947e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/webtor.json @@ -0,0 +1,132 @@ +{ + "tool_name": "Webtor", + "tool_description": "Webtor API allows you to instantly download and stream torrent content without use of BitTorrent client.", + "title": "Webtor", + "pricing": "PAID", + "score": { + "avgServiceLevel": 98, + "avgLatency": 144, + "avgSuccessRate": 98, + "popularityScore": 9.4, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/paveltatarsky-Dx4aX7s_XBt/api/webtor/", + "host": "webtor.p.rapidapi.com", + "api_list": [ + { + "name": "Export Resource Content", + "url": "https://webtor.p.rapidapi.com/resource/{resource_id}/export/{content_id}", + "description": "Exports resource content.\nProvide urls to consume torrent content for download and streaming.", + "method": "GET", + "required_parameters": [ + { + "name": "resource_id", + "type": "string", + "description": "", + "default": "08ada5a7a6183aae1e09d831df6748d566095a10" + }, + { + "name": "content_id", + "type": "string", + "description": "", + "default": "ca2453df3e7691c28934eebed5a253ee0aabd29f" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webtor.p.rapidapi.com/resource/{resource_id}/export/{content_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webtor.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "List Resource Contents", + "url": "https://webtor.p.rapidapi.com/resource/{resource_id}/list", + "description": "Lists files and directories of specific resource.\nAll ids in response can be used for export.", + "method": "GET", + "required_parameters": [ + { + "name": "resource_id", + "type": "string", + "description": "", + "default": "08ada5a7a6183aae1e09d831df6748d566095a10" + } + ], + "optional_parameters": [ + { + "name": "output", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "offset", + "type": "NUMBER", + "description": "", + "default": "0" + }, + { + "name": "path", + "type": "STRING", + "description": "", + "default": "/" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "10" + } + ], + "code": "import requests\n\nurl = \"https://webtor.p.rapidapi.com/resource/{resource_id}/list\"\nquerystring = {\"offset\": offset, \"path\": path, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webtor.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Get Resource", + "url": "https://webtor.p.rapidapi.com/resource/{resource_id}", + "description": "Receives resource id and returns resource.", + "method": "GET", + "required_parameters": [ + { + "name": "resource_id", + "type": "string", + "description": "", + "default": "08ada5a7a6183aae1e09d831df6748d566095a10" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webtor.p.rapidapi.com/resource/{resource_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webtor.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Store Resource", + "url": "https://webtor.p.rapidapi.com/resource", + "description": "Receives torrent or magnet-uri in request body.\nIf magnet-uri provided instead of torrent, then it tries to fetch torrent from BitTorrent network (timeout 3 minutes).", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webtor.p.rapidapi.com/resource\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webtor.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Store Resource", + "url": "https://webtor.p.rapidapi.com/resource", + "description": "Receives torrent or magnet-uri in request body.\nIf magnet-uri provided instead of torrent, then it tries to fetch torrent from BitTorrent network (timeout 3 minutes).", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webtor.p.rapidapi.com/resource\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webtor.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webtor.p.rapidapi.com/resource\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webtor.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/webtor/api.py b/toolbench/toolenv/tools/Tools/webtor/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fc907d545c1e25b56ec2f82a8b49f2b1d724d4df --- /dev/null +++ b/toolbench/toolenv/tools/Tools/webtor/api.py @@ -0,0 +1,81 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def export_resource_content(resource_id: str, content_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Exports resource content. + Provide urls to consume torrent content for download and streaming." + + """ + url = f"https://webtor.p.rapidapi.com/resource/{resource_id}/export/{content_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webtor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_resource_contents(resource_id: str, output: str=None, offset: int=0, path: str='/', limit: int=10, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lists files and directories of specific resource. + All ids in response can be used for export." + + """ + url = f"https://webtor.p.rapidapi.com/resource/{resource_id}/list" + querystring = {} + if output: + querystring['output'] = output + if offset: + querystring['offset'] = offset + if path: + querystring['path'] = path + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webtor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_resource(resource_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Receives resource id and returns resource." + + """ + url = f"https://webtor.p.rapidapi.com/resource/{resource_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webtor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/whatsapp_number_checker.json b/toolbench/toolenv/tools/Tools/whatsapp_number_checker.json new file mode 100644 index 0000000000000000000000000000000000000000..023d33210b5f14bc1b3b262cd86fa27e2f9adc89 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_number_checker.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Whatsapp Number checker", + "tool_description":"This is free whatsapp unoffical api to check weather number is whatsapp or not.Please check live working demo on below link. https://proweblook.com/whatsapp-number-checker", + "title":"Whatsapp Number checker", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":1187, + "avgSuccessRate":100, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/proweblook-proweblook-default/api/whatsapp-number-checker/", + "host":"whatsapp-number-checker.p.rapidapi.com", + "api_list":[ + { + "name":"WhatsappNumberchecker", + "url":"https://whatsapp-number-checker.p.rapidapi.com/api/v1/checkwanumber", + "description":" ", + "method":"GET", + "required_parameters":[ + { + "name":"number", + "type":"STRING", + "description":"", + "default":"Number with country code" + }, + { + "name":"api_key", + "type":"STRING", + "description":"", + "default":"your proweblook api key" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-number-checker.p.rapidapi.com/api/v1/checkwanumber\"\nquerystring = {\"number\": number, \"api_key\": api_key}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-checker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whatsapp_number_checker/api.py b/toolbench/toolenv/tools/Tools/whatsapp_number_checker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bf5830a39054ba3f524a50653ff2ad9615078629 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_number_checker/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def whatsappnumberchecker(number: str, api_key: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://whatsapp-number-checker.p.rapidapi.com/api/v1/checkwanumber" + querystring = {'number': number, 'api_key': api_key, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-number-checker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/whatsapp_number_validators.json b/toolbench/toolenv/tools/Tools/whatsapp_number_validators.json new file mode 100644 index 0000000000000000000000000000000000000000..ecdc65e197efeed335c3a0ad56e459b76bf59245 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_number_validators.json @@ -0,0 +1,52 @@ +{ + "product_id": "api_bd0b4a82-0f0f-45e0-b4e8-378c6913d0c7", + "tool_description": "Enhance the effectiveness of your WhatsApp Marketing by utilizing our API to validate WhatsApp numbers in bulk validation or single validation call.", + "home_url": "https://rapidapi.com/domainskbgroup/api/whatsapp-number-validators/", + "name": "WhatsApp Number Validators", + "title": "WhatsApp Number Validators", + "pricing": "FREEMIUM", + "tool_name": "WhatsApp Number Validators", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2068, + "avgSuccessRate": 98, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "whatsapp-number-validators.p.rapidapi.com", + "api_list": [ + { + "name": "Validate Single Number (via POST Request)", + "url": "https://whatsapp-number-validators.p.rapidapi.com/v1/validate/wa_id", + "description": "Verify whether a given number is registered on WhatsApp and determine if it belongs to WhatsApp Business. To obtain the status of a particular number, please provide the number along with the corresponding country code.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://whatsapp-number-validators.p.rapidapi.com/v1/validate/wa_id\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-validators.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://whatsapp-number-validators.p.rapidapi.com/v1/validate/wa_id\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-validators.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Bulk Validation", + "url": "https://whatsapp-number-validators.p.rapidapi.com/v1/bulk_validate/wa_id", + "description": "Verify up to 25 numbers in once call. For each number, verify whether this number is registered on WhatsApp and determine if it belongs to WhatsApp Business. To obtain the status of these numbers, please provide all numbers along with the corresponding country code.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://whatsapp-number-validators.p.rapidapi.com/v1/bulk_validate/wa_id\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-validators.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://whatsapp-number-validators.p.rapidapi.com/v1/bulk_validate/wa_id\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-validators.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Phone Number Validation (via POST Request)", + "url": "https://whatsapp-number-validators.p.rapidapi.com/v1/validate/phone", + "description": "You can utilize a phone number validator to verify the validity of a given number. In case the number is invalid, the validator will provide alternative valid phone numbers for different countries associated with the given number.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://whatsapp-number-validators.p.rapidapi.com/v1/validate/phone\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-validators.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://whatsapp-number-validators.p.rapidapi.com/v1/validate/phone\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-number-validators.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whatsapp_profile_pic.json b/toolbench/toolenv/tools/Tools/whatsapp_profile_pic.json new file mode 100644 index 0000000000000000000000000000000000000000..25e690212d1e5aebabde2ded4323ee8d7f7aabff --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_profile_pic.json @@ -0,0 +1,210 @@ +{ + "tool_name":"Whatsapp Profile Pic", + "tool_description":"Fetch and download the profile picture of any whatsapp number.", + "title":"Whatsapp Profile Pic", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":345, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/inutil-inutil-default/api/whatsapp-profile-pic/", + "host":"whatsapp-profile-pic.p.rapidapi.com", + "api_list":[ + { + "name":"Picture uri", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/wspic/uri", + "description":"Returns a whatsapp number profile picture as url encoded data uri", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed.\nExamples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany).\nTIPS:\n Do NOT include '+' before your countrycode,\n Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number.\n If you do not know which is your country code check this: https://countrycode.org/", + "default":"34631428039" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/wspic/uri\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Picture jpg", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/wspic/png", + "description":"Get the whatsapp's number profile picture as a jpg file.\nLearn how to use it on this [video](https://youtu.be/fJPgOvEMdOQ).", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed.\nExamples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany).\nTIPS:\n Do NOT include '+' before your countrycode,\n Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number.\n If you do not know which is your country code check this: https://countrycode.org/", + "default":"34631428039" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/wspic/png\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Picture url", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/wspic/url", + "description":"Url of a whatsapp number profile picture. \nLearn how to use it on this [video]( https://youtu.be/jtjK6e7huQ0).", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed.\nExamples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany).\nTIPS:\n Do NOT include '+' before your countrycode,\n Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number.\n If you do not know which is your country code check this: https://countrycode.org/", + "default":"34631428039" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/wspic/url\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Business info", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/bizinfo", + "description":"Fetchs: `description`, `website`, `email`, `business hours`, `address` and `category`; if the number is a whatsapp for business account.", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The phone number must be written as a number (including countrycode); \ndo **NOT** include: any non-number character, spaces, or anything which is not a number; do **NOT** add zeros (0) at the beginning.", + "default":"34655719560" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/bizinfo\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Is a business?", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/isbiz", + "description":"Requests to this endpoint will return `true` if the number is a **Whatsapp for Business** account, or `false` if it is not.", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: `countrycode` and `number`; do NOT include any non-number character, spaces, or anything which is not a number.\nExamples: of correct numbers are: `34123456789` (for spain) or `491234567890` (for Germany).\nCountry codes can be checked here: https://countrycode.org/", + "default":"34655719560" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/isbiz\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"About", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/about", + "description":"Gather user's own about description.", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed.\nExamples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany).\nTIPS:\n Do NOT include '+' before your countrycode,\n Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number.\n If you do not know which is your country code check this: https://countrycode.org/", + "default":"34605797764" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/about\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"whatsapp number checker", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/wchk", + "description":"Enter the number you want to validate if it exists on the whatsapp network.", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed.\nExamples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany).\nTIPS:\n Do NOT include '+' before your countrycode,\n Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number.\n If you do not know which is your country code check this: https://countrycode.org/", + "default":"34666777888" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/wchk\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Picture with options", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/wspicture", + "description":"Fetch the whatsapp number profile picture, you can select its resolution (`high` or `low`) and the response format: `png` file, `url` or `base64` encoded file.", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The phone number must be written as a number (including countrycode); \ndo **NOT** include: any non-number character, spaces, or anything which is not a number; do **NOT** add zeros (0) at the beginning.", + "default":"34631428039" + } + ], + "optional_parameters":[ + { + "name":"quality", + "type":"ENUM", + "description":"Quality of the Picture: `High` or `Low` resolution. Defaults to `High`.", + "default":"" + }, + { + "name":"pictype", + "type":"ENUM", + "description":"The response file type: `url` , `jpg` or `base64`. Defaults to `url`.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/wspicture\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Picture base64", + "url":"https://whatsapp-profile-pic.p.rapidapi.com/wspic/b64", + "description":"Get the base64 encoded file of a whatsapp number profile picture.", + "method":"GET", + "required_parameters":[ + { + "name":"phone", + "type":"NUMBER", + "description":"The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed.\nExamples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany).\nTIPS:\n Do NOT include '+' before your countrycode,\n Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number.\n If you do not know which is your country code check this: https://countrycode.org/", + "default":"34631428039" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whatsapp-profile-pic.p.rapidapi.com/wspic/b64\"\nquerystring = {\"phone\": phone}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-profile-pic.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whatsapp_profile_pic/api.py b/toolbench/toolenv/tools/Tools/whatsapp_profile_pic/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f8f58985c83c7c894423a66eeaaae8dfc484b123 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_profile_pic/api.py @@ -0,0 +1,248 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def picture_uri(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a whatsapp number profile picture as url encoded data uri" + phone: The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed. +Examples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany). +TIPS: + Do NOT include '+' before your countrycode, + Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number. + If you do not know which is your country code check this: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/wspic/uri" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def picture_jpg(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the whatsapp's number profile picture as a jpg file. + Learn how to use it on this [video](https://youtu.be/fJPgOvEMdOQ)." + phone: The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed. +Examples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany). +TIPS: + Do NOT include '+' before your countrycode, + Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number. + If you do not know which is your country code check this: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/wspic/png" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def picture_url(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Url of a whatsapp number profile picture. + Learn how to use it on this [video]( https://youtu.be/jtjK6e7huQ0)." + phone: The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed. +Examples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany). +TIPS: + Do NOT include '+' before your countrycode, + Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number. + If you do not know which is your country code check this: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/wspic/url" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def business_info(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetchs: `description`, `website`, `email`, `business hours`, `address` and `category`; if the number is a whatsapp for business account." + phone: The phone number must be written as a number (including countrycode); +do **NOT** include: any non-number character, spaces, or anything which is not a number; do **NOT** add zeros (0) at the beginning. + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/bizinfo" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def is_a_business(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Requests to this endpoint will return `true` if the number is a **Whatsapp for Business** account, or `false` if it is not." + phone: The whatsapp number must be written as: `countrycode` and `number`; do NOT include any non-number character, spaces, or anything which is not a number. +Examples: of correct numbers are: `34123456789` (for spain) or `491234567890` (for Germany). +Country codes can be checked here: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/isbiz" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def about(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gather user's own about description." + phone: The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed. +Examples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany). +TIPS: + Do NOT include '+' before your countrycode, + Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number. + If you do not know which is your country code check this: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/about" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def whatsapp_number_checker(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter the number you want to validate if it exists on the whatsapp network." + phone: The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed. +Examples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany). +TIPS: + Do NOT include '+' before your countrycode, + Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number. + If you do not know which is your country code check this: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/wchk" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def picture_with_options(phone: int, quality: str=None, pictype: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch the whatsapp number profile picture, you can select its resolution (`high` or `low`) and the response format: `png` file, `url` or `base64` encoded file." + phone: The phone number must be written as a number (including countrycode); +do **NOT** include: any non-number character, spaces, or anything which is not a number; do **NOT** add zeros (0) at the beginning. + quality: Quality of the Picture: `High` or `Low` resolution. Defaults to `High`. + pictype: The response file type: `url` , `jpg` or `base64`. Defaults to `url`. + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/wspicture" + querystring = {'phone': phone, } + if quality: + querystring['quality'] = quality + if pictype: + querystring['pictype'] = pictype + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def picture_base64(phone: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the base64 encoded file of a whatsapp number profile picture." + phone: The whatsapp number must be written as: countrycode and number; do **NOT** include any non-number character, spaces, or anything which is not a number. Otherwise, the request will not be processed. +Examples: of correct numbers are: 34123456789 (for spain) or 491234567890 (for Germany). +TIPS: + Do NOT include '+' before your countrycode, + Do NOT include a '-', or any other character or space (anything which is not a number) as part of your phone number. + If you do not know which is your country code check this: https://countrycode.org/ + + """ + url = f"https://whatsapp-profile-pic.p.rapidapi.com/wspic/b64" + querystring = {'phone': phone, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-profile-pic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/whatsapp_qr.json b/toolbench/toolenv/tools/Tools/whatsapp_qr.json new file mode 100644 index 0000000000000000000000000000000000000000..cbd9020e543c21d36230288defdfdb7bb6b46163 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_qr.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Whatsapp QR", + "tool_description":"Send and receive messages from WhatsApp via QR Code is a simple and yet powerful endpoint that allows you to creates an extensive range of QR formats for a wide range of applications such as Text, URL, WhatsApp, WiFi Access, Bitcoin Address, Giroconto, and many more in various image formats, SVG, and ASCII.", + "title":"Whatsapp QR", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/uazdacia/api/whatsapp-qr/", + "host":"whatsapp-qr.p.rapidapi.com", + "api_list":[ + { + "name":"WhatsApp QR Code Image_copy", + "url":"https://whatsapp-qr.p.rapidapi.com/generate_qr", + "description":"This end point takes a 'GET' request with URL / strings as parameter and returns WhatsApp QR Code Image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://whatsapp-qr.p.rapidapi.com/generate_qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whatsapp-qr.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whatsapp_qr/api.py b/toolbench/toolenv/tools/Tools/whatsapp_qr/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5a061426f6470a18fb6d33d6f2936c6750172b9c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whatsapp_qr/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def whatsapp_qr_code_image_copy(url: str='www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with URL / strings as parameter and returns WhatsApp QR Code Image." + + """ + url = f"https://whatsapp-qr.p.rapidapi.com/generate_qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whatsapp-qr.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/where_is_it_up.json b/toolbench/toolenv/tools/Tools/where_is_it_up.json new file mode 100644 index 0000000000000000000000000000000000000000..724c5b99c2605344e440c37fa7cd9d023af3d05f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/where_is_it_up.json @@ -0,0 +1,45 @@ +{ + "product_id": "53aa37c0e4b059614033f7f0", + "tool_description": "Our API exposes site monitoring tools in 89 cities across 47 different countries on 6 continents.\r\n\r\nThrough our global network we expose five types of monitoring tools:\r\n\r\n**HTTP** - We make an HTTP request against the specified URL, returning the response code, size, and basic timing information for the request. Easily confirm site accessibility from global locations.\r\n\r\ndig - Leveraging this foundational DNS tool we return global results on the requested domain. Confirm and monitor your global hosting, and anycast DNS solutions. \r\n\r\ntrace - Returns the full traceroute from any of our locations to your server, providing useful monitoring information, and critical data when diagnosing an outage.\r\n\r\nping - Obtain basic timing information from any of our cities to your server, useful in capacity planning, and ensuring consistent results in the global marketplace.\r\n\r\nfast - Through a headless webkit browser we'll load the requested page, and return detailed timing information.", + "home_url": "https://rapidapi.com/wondernetwork/api/where-is-it-up/", + "name": "Where is it Up", + "title": "Where is it Up", + "pricing": "FREEMIUM", + "tool_name": "Where is it Up", + "score": null, + "host": "wheresitup.p.rapidapi.com", + "api_list": [ + { + "name": "1. submit", + "url": "https://wheresitup.p.rapidapi.com/submit", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "uri", + "type": "STRING", + "description": "The URI you wish to test. For Dig, and Trace and Ping services it will be converted to a domain only.", + "default": "http://www.mashape.com" + }, + { + "name": "services[]", + "type": "STRING", + "description": "http, dig, trace, ping", + "default": "trace" + }, + { + "name": "sources[]", + "type": "STRING", + "description": "A list of source cities to test from. Reference the /sources call for possible options", + "default": "cairo" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://wheresitup.p.rapidapi.com/submit\"\nquerystring = {\"uri\": \"http://www.mashape.com\", \"services[]\": \"trace\", \"sources[]\": \"cairo\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wheresitup.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://wheresitup.p.rapidapi.com/submit\"\nquerystring = {\"uri\": \"http://www.mashape.com\", \"services[]\": \"trace\", \"sources[]\": \"cairo\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wheresitup.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/where_is_it_up/api.py b/toolbench/toolenv/tools/Tools/where_is_it_up/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fdce3ce5999fc7906400a5d76ba10cbfcd4c33fc --- /dev/null +++ b/toolbench/toolenv/tools/Tools/where_is_it_up/api.py @@ -0,0 +1,51 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_0_sources(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list of possible cities to launch tests from" + + """ + url = f"https://wheresitup.p.rapidapi.com/sources" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "wheresitup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_2_retrieve(job_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Reports can only be collected for jobs your account submitted. The jobID returned when the job was submitted will be critical in this instance. Jobs may take a while to perform, depending on the source location and test type. A traceroute from South Africa to Vancouver for example will take a while." + job_id: Job ID of the test run + + """ + url = f"https://wheresitup.p.rapidapi.com/retrieve/{job_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "wheresitup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/whois.json b/toolbench/toolenv/tools/Tools/whois.json new file mode 100644 index 0000000000000000000000000000000000000000..78c60a9a74e1f8b6bc14d7986bba38bf63ccb391 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whois.json @@ -0,0 +1,82 @@ +{ + "tool_name":"Whois ", + "tool_description":"A 100% free and easy to use API for WHOIS Lookup", + "title":"Whois ", + "pricing":"FREE", + "score":{ + "avgServiceLevel":98, + "avgLatency":1354, + "avgSuccessRate":97, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/devXprite/api/whois40/", + "host":"whois40.p.rapidapi.com", + "api_list":[ + { + "name":"whois", + "url":"https://whois40.p.rapidapi.com/whois", + "description":"Use this endpoint for fetch whois data", + "method":"GET", + "required_parameters":[ + { + "name":"q", + "type":"STRING", + "description":"", + "default":"google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whois40.p.rapidapi.com/whois\"\nquerystring = {\"q\": q}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whois40.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "domainName":"google.com", + "registryDomainId":"2138514_DOMAIN_COM-VRSN", + "registrarWhoisServer":"whois.markmonitor.com", + "registrarUrl":"http://www.markmonitor.com", + "updatedDate":"2019-09-09T15:39:04+0000", + "creationDate":"1997-09-15T07:00:00+0000", + "registrarRegistrationExpirationDate":"2028-09-13T07:00:00+0000", + "registrar":"MarkMonitor, Inc.", + "registrarIanaId":"292", + "registrarAbuseContactEmail":"abusecomplaints@markmonitor.com", + "registrarAbuseContactPhone":"+1.2086851750", + "domainStatus":"clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited) clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited) clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited) serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited) serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited) serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)", + "registrantOrganization":"Google LLC", + "registrantStateProvince":"CA", + "registrantCountry":"US", + "registrantEmail":"Select Request Email Form at https://domains.markmonitor.com/whois/google.com", + "adminOrganization":"Google LLC", + "adminStateProvince":"CA", + "adminCountry":"US", + "adminEmail":"Select Request Email Form at https://domains.markmonitor.com/whois/google.com", + "techOrganization":"Google LLC", + "techStateProvince":"CA", + "techCountry":"US", + "techEmail":"Select Request Email Form at https://domains.markmonitor.com/whois/google.com", + "nameServer":"ns1.google.com ns4.google.com ns2.google.com ns3.google.com", + "dnssec":"unsigned", + "urlOfTheIcannWhoisDataProblemReportingSystem":"http://wdprs.internic.net/", + "lastUpdateOfWhoisDatabase":"2023-02-02T15:17:34+0000 <<<" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"1", + "cache-control":"no-cache", + "content-length":"1706", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 02 Feb 2023 15:23:02 GMT", + "etag":"\"3jwggb6i201be\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=31536000; includeSubDomains; preload", + "vary":"Accept-Encoding", + "x-nf-render-mode":"ssr", + "x-nf-request-id":"01GR9BJNN9BFFNYYK385Z237XQ", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whois/api.py b/toolbench/toolenv/tools/Tools/whois/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8fde312ad75b70d9b2dafb92fef2f40f7d6ef4fe --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whois/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def whois(q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint for fetch whois data" + + """ + url = f"https://whois40.p.rapidapi.com/whois" + querystring = {'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whois40.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/whois_by_api_ninjas.json b/toolbench/toolenv/tools/Tools/whois_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..ad9c305f3c9b0a67cad7eded6a0b70e367180477 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whois_by_api_ninjas.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Whois by API-Ninjas", + "tool_description":"Look up domain registry information using WHOIS protocol for any domain. See more info at https://api-ninjas.com/api/whois.", + "title":"Whois by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":92, + "avgLatency":635, + "avgSuccessRate":90, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/whois-by-api-ninjas/", + "host":"whois-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/whois", + "url":"https://whois-by-api-ninjas.p.rapidapi.com/v1/whois", + "description":"API Ninjas Whois API endpoint. Returns domain registration details (e.g. registrar, contact information, expiration date, name servers) about a particular domain name.", + "method":"GET", + "required_parameters":[ + { + "name":"domain", + "type":"STRING", + "description":"valid domain to check.", + "default":"example.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whois-by-api-ninjas.p.rapidapi.com/v1/whois\"\nquerystring = {\"domain\": domain}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whois-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whois_by_api_ninjas/api.py b/toolbench/toolenv/tools/Tools/whois_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3263650c3a759f0fba37fc62b01d7312bb2e6c61 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whois_by_api_ninjas/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_whois(domain: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Whois API endpoint. Returns domain registration details (e.g. registrar, contact information, expiration date, name servers) about a particular domain name." + domain: valid domain to check. + + """ + url = f"https://whois-by-api-ninjas.p.rapidapi.com/v1/whois" + querystring = {'domain': domain, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whois-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/whois_lookup_service.json b/toolbench/toolenv/tools/Tools/whois_lookup_service.json new file mode 100644 index 0000000000000000000000000000000000000000..ce6ed440f3369af6e65c321c69cd6814e51411aa --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whois_lookup_service.json @@ -0,0 +1,550 @@ +{ + "tool_name":"WHOIS Lookup Service", + "tool_description":"WHOIS Lookup retrieves detailed registration information for domain names, IP addresses, or autonomous system numbers (ASNs). With this API, you can programmatically access WHOIS data, enabling you to obtain valuable insights about domain ownership, registration dates, contact details, and more.", + "title":"WHOIS Lookup Service", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1863, + "avgSuccessRate":100, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/evlar-evlar-default/api/whois-lookup-service/", + "host":"whois-lookup-service.p.rapidapi.com", + "api_list":[ + { + "name":"WHOIS ASN Lookup", + "url":"https://whois-lookup-service.p.rapidapi.com/v1/getwhoisasn", + "description":"Lookup WHOIS data by ASN Number", + "method":"GET", + "required_parameters":[ + { + "name":"asn", + "type":"STRING", + "description":"", + "default":"AS15193" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whois-lookup-service.p.rapidapi.com/v1/getwhoisasn\"\nquerystring = {\"asn\": asn}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whois-lookup-service.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "error":{ + "type":"null" + }, + "data":{ + "type":"object", + "properties":{ + "ASNumber":{ + "type":"string" + }, + "ASName":{ + "type":"string" + }, + "ASHandle":{ + "type":"string" + }, + "RegDate":{ + "type":"string" + }, + "Updated":{ + "type":"string" + }, + "Ref":{ + "type":"string" + }, + "organisation":{ + "type":"object", + "properties":{ + "OrgName":{ + "type":"string" + }, + "OrgId":{ + "type":"string" + }, + "Address":{ + "type":"string" + }, + "City":{ + "type":"string" + }, + "StateProv":{ + "type":"string" + }, + "PostalCode":{ + "type":"string" + }, + "Country":{ + "type":"string" + }, + "RegDate":{ + "type":"string" + }, + "Updated":{ + "type":"string" + }, + "Ref":{ + "type":"string" + } + } + }, + "contactAbuse":{ + "type":"object", + "properties":{ + "OrgAbuseHandle":{ + "type":"string" + }, + "OrgAbuseName":{ + "type":"string" + }, + "OrgAbusePhone":{ + "type":"string" + }, + "OrgAbuseEmail":{ + "type":"string" + }, + "OrgAbuseRef":{ + "type":"string" + } + } + }, + "contactNoc":{ + "type":"object", + "properties":{ + "OrgNOCHandle":{ + "type":"string" + }, + "OrgNOCName":{ + "type":"string" + }, + "OrgNOCPhone":{ + "type":"string" + }, + "OrgNOCEmail":{ + "type":"string" + }, + "OrgNOCRef":{ + "type":"string" + } + } + }, + "contactTechnical":{ + "type":"object", + "properties":{ + "OrgTechHandle":{ + "type":"string" + }, + "OrgTechName":{ + "type":"string" + }, + "OrgTechPhone":{ + "type":"string" + }, + "OrgTechEmail":{ + "type":"string" + }, + "OrgTechRef":{ + "type":"string" + } + } + }, + "text":{ + "type":"array", + "items":{ + "type":"string" + } + } + } + } + } + } + }, + { + "name":"WHOIS IP Lookup", + "url":"https://whois-lookup-service.p.rapidapi.com/v1/getwhoisip", + "description":"Lookup WHOIS data using the domain IP Address", + "method":"GET", + "required_parameters":[ + { + "name":"ip", + "type":"STRING", + "description":"", + "default":"98.137.27.103" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whois-lookup-service.p.rapidapi.com/v1/getwhoisip\"\nquerystring = {\"ip\": ip}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whois-lookup-service.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "error":{ + "type":"null" + }, + "data":{ + "type":"object", + "properties":{ + "range":{ + "type":"string" + }, + "route":{ + "type":"string" + }, + "NetName":{ + "type":"string" + }, + "NetHandle":{ + "type":"string" + }, + "Parent":{ + "type":"string" + }, + "NetType":{ + "type":"string" + }, + "asn":{ + "type":"string" + }, + "Organization":{ + "type":"string" + }, + "RegDate":{ + "type":"string" + }, + "Updated":{ + "type":"string" + }, + "Ref":{ + "type":"string" + }, + "organisation":{ + "type":"object", + "properties":{ + "OrgName":{ + "type":"string" + }, + "OrgId":{ + "type":"string" + }, + "Address":{ + "type":"string" + }, + "City":{ + "type":"string" + }, + "StateProv":{ + "type":"string" + }, + "PostalCode":{ + "type":"string" + }, + "Country":{ + "type":"string" + }, + "RegDate":{ + "type":"string" + }, + "Updated":{ + "type":"string" + }, + "Ref":{ + "type":"string" + } + } + }, + "contactNoc":{ + "type":"object", + "properties":{ + "OrgNOCHandle":{ + "type":"string" + }, + "OrgNOCName":{ + "type":"string" + }, + "OrgNOCPhone":{ + "type":"string" + }, + "OrgNOCEmail":{ + "type":"string" + }, + "OrgNOCRef":{ + "type":"string" + } + } + }, + "contactAbuse":{ + "type":"object", + "properties":{ + "OrgAbuseHandle":{ + "type":"string" + }, + "OrgAbuseName":{ + "type":"string" + }, + "OrgAbusePhone":{ + "type":"string" + }, + "OrgAbuseEmail":{ + "type":"string" + }, + "OrgAbuseRef":{ + "type":"string" + } + } + }, + "contactTechnical":{ + "type":"object", + "properties":{ + "OrgTechHandle":{ + "type":"string" + }, + "OrgTechName":{ + "type":"string" + }, + "OrgTechPhone":{ + "type":"string" + }, + "OrgTechEmail":{ + "type":"string" + }, + "OrgTechRef":{ + "type":"string" + } + } + }, + "text":{ + "type":"array", + "items":{ + "type":"string" + } + } + } + } + } + } + }, + { + "name":"WHOIS Domain Lookup", + "url":"https://whois-lookup-service.p.rapidapi.com/v1/getwhois", + "description":"Lookup WHOIS data by Domain Name", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"Enter the base URL only. **Do not use the http:// in the domain name**", + "default":"google.com" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://whois-lookup-service.p.rapidapi.com/v1/getwhois\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"whois-lookup-service.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "error":{ + "type":"null" + }, + "data":{ + "type":"object", + "properties":{ + "whois.verisign-grs.com":{ + "type":"object", + "properties":{ + "Domain Status":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "Name Server":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "Domain Name":{ + "type":"string" + }, + "Registry Domain ID":{ + "type":"string" + }, + "Registrar WHOIS Server":{ + "type":"string" + }, + "Registrar URL":{ + "type":"string" + }, + "Updated Date":{ + "type":"string" + }, + "Created Date":{ + "type":"string" + }, + "Expiry Date":{ + "type":"string" + }, + "Registrar":{ + "type":"string" + }, + "Registrar IANA ID":{ + "type":"string" + }, + "Registrar Abuse Contact Email":{ + "type":"string" + }, + "Registrar Abuse Contact Phone":{ + "type":"string" + }, + "DNSSEC":{ + "type":"string" + }, + "URL of the ICANN Whois Inaccuracy Complaint Form":{ + "type":"string" + }, + ">>> Last update of whois database":{ + "type":"string" + }, + "text":{ + "type":"array", + "items":{ + "type":"string" + } + } + } + }, + "whois.markmonitor.com":{ + "type":"object", + "properties":{ + "Domain Status":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "Name Server":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "Domain Name":{ + "type":"string" + }, + "Registry Domain ID":{ + "type":"string" + }, + "Registrar WHOIS Server":{ + "type":"string" + }, + "Registrar URL":{ + "type":"string" + }, + "Updated Date":{ + "type":"string" + }, + "Created Date":{ + "type":"string" + }, + "Expiry Date":{ + "type":"string" + }, + "Registrar":{ + "type":"string" + }, + "Registrar IANA ID":{ + "type":"string" + }, + "Registrar Abuse Contact Email":{ + "type":"string" + }, + "Registrar Abuse Contact Phone":{ + "type":"string" + }, + "Registrant Organization":{ + "type":"string" + }, + "Registrant State/Province":{ + "type":"string" + }, + "Registrant Country":{ + "type":"string" + }, + "Registrant Email":{ + "type":"string" + }, + "Admin Organization":{ + "type":"string" + }, + "Admin State/Province":{ + "type":"string" + }, + "Admin Country":{ + "type":"string" + }, + "Admin Email":{ + "type":"string" + }, + "Tech Organization":{ + "type":"string" + }, + "Tech State/Province":{ + "type":"string" + }, + "Tech Country":{ + "type":"string" + }, + "Tech Email":{ + "type":"string" + }, + "DNSSEC":{ + "type":"string" + }, + "URL of the ICANN WHOIS Data Problem Reporting System":{ + "type":"string" + }, + ">>> Last update of WHOIS database":{ + "type":"string" + }, + "text":{ + "type":"array", + "items":{ + "type":"string" + } + } + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/whois_lookup_service/api.py b/toolbench/toolenv/tools/Tools/whois_lookup_service/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f70fcf8e96b851f17baf7a0d89a2665fd33e28e6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/whois_lookup_service/api.py @@ -0,0 +1,72 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def whois_asn_lookup(asn: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lookup WHOIS data by ASN Number" + + """ + url = f"https://whois-lookup-service.p.rapidapi.com/v1/getwhoisasn" + querystring = {'asn': asn, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whois-lookup-service.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def whois_ip_lookup(ip: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lookup WHOIS data using the domain IP Address" + + """ + url = f"https://whois-lookup-service.p.rapidapi.com/v1/getwhoisip" + querystring = {'ip': ip, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whois-lookup-service.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def whois_domain_lookup(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lookup WHOIS data by Domain Name" + url: Enter the base URL only. **Do not use the http:// in the domain name** + + """ + url = f"https://whois-lookup-service.p.rapidapi.com/v1/getwhois" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "whois-lookup-service.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/wikipedia_infobox.json b/toolbench/toolenv/tools/Tools/wikipedia_infobox.json new file mode 100644 index 0000000000000000000000000000000000000000..a0dbd4583a5d8deca27ef0b9f8c482291e36a671 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/wikipedia_infobox.json @@ -0,0 +1,47 @@ +{ + "tool_name":"Wikipedia Infobox", + "tool_description":"An Api to serve the infoboxes that accompanies so many wikipedia entries.\nUse it for learning, use it for funfacts, use it for gaining knowledge. \n", + "title":"Wikipedia Infobox", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":95, + "avgLatency":931, + "avgSuccessRate":95, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/AndyNorDevelop/api/wikipedia-infobox/", + "host":"wikipedia-infobox.p.rapidapi.com", + "api_list":[ + { + "name":"InfoBox", + "url":"https://wikipedia-infobox.p.rapidapi.com/infobox", + "description":"returns a json object representation of the provided wikipedia entry", + "method":"GET", + "required_parameters":[ + { + "name":"wikiurl", + "type":"STRING", + "description":"", + "default":"https://en.wikipedia.org/wiki/James_Bond" + } + ], + "optional_parameters":[ + { + "name":"withname", + "type":"BOOLEAN", + "description":"", + "default":"false" + } + ], + "code":"import requests\n\nurl = \"https://wikipedia-infobox.p.rapidapi.com/infobox\"\nquerystring = {\"withname\": withname, \"wikiurl\": wikiurl}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wikipedia-infobox.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/wikipedia_infobox/api.py b/toolbench/toolenv/tools/Tools/wikipedia_infobox/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f278b75a67ed603e13fc6806eca897accfaec2b1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/wikipedia_infobox/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def infobox(wikiurl: str, withname: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "returns a json object representation of the provided wikipedia entry" + + """ + url = f"https://wikipedia-infobox.p.rapidapi.com/infobox" + querystring = {'wikiurl': wikiurl, } + if withname: + querystring['withname'] = withname + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "wikipedia-infobox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/windypdf.json b/toolbench/toolenv/tools/Tools/windypdf.json new file mode 100644 index 0000000000000000000000000000000000000000..628bebe55fdbad2bcd6f720ec5397b667eec79f7 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/windypdf.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_de2da689-3f7c-4d99-a89f-ecbcdfe8863a", + "tool_description": "Fastest HTML to PDF generator with full TailwindCSS support.", + "home_url": "https://rapidapi.com/instreammedia-instreammedia-default/api/windypdf/", + "name": "WindyPDF", + "title": "WindyPDF", + "pricing": "FREEMIUM", + "tool_name": "WindyPDF", + "score": { + "avgServiceLevel": 100, + "avgLatency": 378, + "avgSuccessRate": 100, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "windypdf.p.rapidapi.com", + "api_list": [ + { + "name": "Convert", + "url": "https://windypdf.p.rapidapi.com/convert", + "description": "Convert Html into a pdf with the full functionality of HTML and Tailwind", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://windypdf.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"windypdf.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://windypdf.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"windypdf.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/word_associations.json b/toolbench/toolenv/tools/Tools/word_associations.json new file mode 100644 index 0000000000000000000000000000000000000000..08ea430ae3354a6ad24fc4b613ef55feaa0855fd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_associations.json @@ -0,0 +1,70 @@ +{ + "product_id": "5a48074be4b038fa76c0be46", + "tool_description": "The Word Associations Network API allows developers to embed the ability to find associations for a word or phrase into their mobile apps or web services. Words are grouped by semantics, meaning, and psychological perception. The Word Associations Network API currently supports English, French, Spanish, German, Italian, Portuguese, and Russian vocabulary.", + "home_url": "https://rapidapi.com/wordassociations/api/word-associations/", + "name": "Word Associations", + "title": "Word Associations", + "pricing": "FREEMIUM", + "tool_name": "Word Associations", + "score": { + "avgServiceLevel": 100, + "avgLatency": 395, + "avgSuccessRate": 100, + "popularityScore": 8.4, + "__typename": "Score" + }, + "host": "wordassociations-word-associations-v1.p.rapidapi.com", + "api_list": [ + { + "name": "Word Associations (POST)", + "url": "https://wordassociations-word-associations-v1.p.rapidapi.com/json/search", + "description": "Gets associations with the given word or phrase.", + "method": "POST", + "required_parameters": [ + { + "name": "lang", + "type": "STRING", + "description": "Query language. Use language code for the language of the text: de - German; en - English; es - Spanish; fr - French; it - Italian; pt - Portuguese; ru - Russian;", + "default": "en" + }, + { + "name": "text", + "type": "STRING", + "description": "Word or phrase to find associations with. Tip. You can use multiple parameters 'text' in a request (from 1 to 10 inclusive). This way you can get associations for several input words or phrases in one response. Restriction: regardless of the size of the text association lookup is always performed by the first 10 words of the text.", + "default": "Light" + } + ], + "optional_parameters": [ + { + "name": "indent", + "type": "STRING", + "description": "Indentation switch for pretty printing of JSON response.Allows to either turn on or off space indentation for a response.The following values are allowed: yes - turns indentation with spaces on; no - turn indentation with spaces off;", + "default": "yes" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "Maximum number of results to return. Allows to limit the number of results (associations) in response. The value of this parameter is an integer number from 1 to 300 inclusive.", + "default": "50" + }, + { + "name": "pos", + "type": "STRING", + "description": "Parts of speech to return. Allows to limit results by specified parts of speech. The value of this parameter is a list of parts of speech separated by comma.The following parts of speech codes are supported: noun, adjective, verb, adverb.", + "default": "noun,adjective,verb,adverb" + }, + { + "name": "type", + "type": "STRING", + "description": "Type of result. Possible values: 'stimulus' - an input data (the text parameter) is considered as a response word. The service returns a list of stimuli words, which evoke a given response word; 'response' - an input data (the text parameter) is considered as a stimulus word. The service returns a list of response words, which come to mind for a given stimulus word.", + "default": "stimulus" + } + ], + "code": "import requests\n\nurl = \"https://wordassociations-word-associations-v1.p.rapidapi.com/json/search\"\nquerystring = {\"indent\": \"yes\", \"lang\": \"en\", \"limit\": \"50\", \"pos\": \"noun,adjective,verb,adverb\", \"text\": \"Light\", \"type\": \"stimulus\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wordassociations-word-associations-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://wordassociations-word-associations-v1.p.rapidapi.com/json/search\"\nquerystring = {\"indent\": \"yes\", \"lang\": \"en\", \"limit\": \"50\", \"pos\": \"noun,adjective,verb,adverb\", \"text\": \"Light\", \"type\": \"stimulus\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wordassociations-word-associations-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/word_associations/api.py b/toolbench/toolenv/tools/Tools/word_associations/api.py new file mode 100644 index 0000000000000000000000000000000000000000..89839a758152f62abd998b567b41d79062126b3f --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_associations/api.py @@ -0,0 +1,47 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def word_associations_get(lang: str, text: str, limit: int=50, indent: str='yes', pos: str='noun,adjective,verb,adverb', type: str='stimulus', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets associations with the given word or phrase." + lang: Query language. Use language code for the language of the text: de - German; en - English; es - Spanish; fr - French; it - Italian; pt - Portuguese; ru - Russian; + text: Word or phrase to find associations with. +Tip. You can use multiple parameters 'text' in a request (from 1 to 10 inclusive). This way you can get associations for several input words or phrases in one response. +Restriction: regardless of the size of the text association lookup is always performed by the first 10 words of the text. + limit: Maximum number of results to return. +Allows to limit the number of results (associations) in response. +The value of this parameter is an integer number from 1 to 300 inclusive. + indent: Indentation switch for pretty printing of JSON response.Allows to either turn on or off space indentation for a response.The following values are allowed: yes - turns indentation with spaces on; no - turn indentation with spaces off; + pos: Parts of speech to return. Allows to limit results by specified parts of speech. The value of this parameter is a list of parts of speech separated by comma.The following parts of speech codes are supported: noun, adjective, verb, adverb. + type: Type of result.Possible values: 'stimulus' - an input data (the text parameter) is considered as a response word. The service returns a list of stimuli words, which evoke a given response word; 'response' - an input data (the text parameter) is considered as a stimulus word. The service returns a list of response words, which come to mind for a given stimulus word. + + """ + url = f"https://wordassociations-word-associations-v1.p.rapidapi.com/json/search" + querystring = {'lang': lang, 'text': text, } + if limit: + querystring['limit'] = limit + if indent: + querystring['indent'] = indent + if pos: + querystring['pos'] = pos + if type: + querystring['type'] = type + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "wordassociations-word-associations-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/word_cloud_generator.json b/toolbench/toolenv/tools/Tools/word_cloud_generator.json new file mode 100644 index 0000000000000000000000000000000000000000..97d4f054ce57c91a719406cb32b765a70e1ab001 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_cloud_generator.json @@ -0,0 +1,45 @@ +{ + "product_id": "55458f05e4b03a4c998bfa72", + "tool_description": "Generate Word Clouds from text. Multi color and different sizes and easily output to jpg, png or pdf.", + "home_url": "https://rapidapi.com/teamtempapp/api/word-cloud-generator/", + "name": "Word Cloud Generator", + "title": "Word Cloud Generator", + "pricing": "FREEMIUM", + "tool_name": "Word Cloud Generator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 4129, + "avgSuccessRate": 100, + "popularityScore": 8.7, + "__typename": "Score" + }, + "host": "wordcloudservice.p.rapidapi.com", + "api_list": [ + { + "name": "Word Cloud", + "url": "https://wordcloudservice.p.rapidapi.com/generate_wc", + "description": "", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://wordcloudservice.p.rapidapi.com/generate_wc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wordcloudservice.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://wordcloudservice.p.rapidapi.com/generate_wc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wordcloudservice.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Word Cloud by URL", + "url": "https://wordcloudservice.p.rapidapi.com/generate_wc", + "description": "Generate a Word Cloud using a web page content by URL as input source words.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://wordcloudservice.p.rapidapi.com/generate_wc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wordcloudservice.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://wordcloudservice.p.rapidapi.com/generate_wc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"wordcloudservice.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/word_count_api.json b/toolbench/toolenv/tools/Tools/word_count_api.json new file mode 100644 index 0000000000000000000000000000000000000000..67891806cc9270ba402d2a85913436f877a8b896 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_count_api.json @@ -0,0 +1,129 @@ +{ + "tool_name": "Word Count API", + "tool_description": "The Word Count API is a powerful and easy-to-use tool that allows developers to perform word counting operations on text input. Whether you need to count the number of words in a document, analyze content length, or implement word-related features in your application, this API provides a seamless solution.", + "title": "Word Count API", + "pricing": "PAID", + "score": { + "avgServiceLevel": 100, + "avgLatency": 431, + "avgSuccessRate": 100, + "popularityScore": 9.5, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/malhnoubom/api/word-count-api2/", + "host": "word-count-api2.p.rapidapi.com", + "api_list": [ + { + "name": "getWordCount", + "url": "https://word-count-api2.p.rapidapi.com/api/count-words", + "description": " ", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "This%20is%20a%20simple%20example.\n" + } + ], + "code": "import requests\n\nurl = \"https://word-count-api2.p.rapidapi.com/api/count-words\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-count-api2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "postWordCount", + "url": "https://word-count-api2.p.rapidapi.com/api/count-words", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://word-count-api2.p.rapidapi.com/api/count-words\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-count-api2.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "postWordCount", + "url": "https://word-count-api2.p.rapidapi.com/api/count-words", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://word-count-api2.p.rapidapi.com/api/count-words\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-count-api2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://word-count-api2.p.rapidapi.com/api/count-words\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-count-api2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/word_count_api/api.py b/toolbench/toolenv/tools/Tools/word_count_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b3177eb9b203f3d88f0302163cb9e5568ddfaaed --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_count_api/api.py @@ -0,0 +1,32 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getwordcount(text: str='This%20is%20a%20simple%20example. +', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://word-count-api2.p.rapidapi.com/api/count-words" + querystring = {} + if text: + querystring['text'] = text + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-count-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/word_definition.json b/toolbench/toolenv/tools/Tools/word_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..2b549bd8fbda5be8dd2ef674302d7b7ed4a3045c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_definition.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Word Definition", + "tool_description":"word definition and related word in topic", + "title":"Word Definition", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/genelehto1012/api/word-definition1/", + "host":"word-definition1.p.rapidapi.com", + "api_list":[ + { + "name":"default", + "url":"https://word-definition1.p.rapidapi.com/", + "description":"default endpoint", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-definition1.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-definition1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/word_definition/api.py b/toolbench/toolenv/tools/Tools/word_definition/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9af358e3434ef9a1211ce3f23b3e2cffb62fb3e6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_definition/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def default(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "default endpoint" + + """ + url = f"https://word-definition1.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-definition1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/word_wizard_api.json b/toolbench/toolenv/tools/Tools/word_wizard_api.json new file mode 100644 index 0000000000000000000000000000000000000000..86b88176dccce7747435990595809ab7e00c7db4 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_wizard_api.json @@ -0,0 +1,137 @@ +{ + "tool_name":"Word Wizard API", + "tool_description":"The \"Word Wizard API\" is a powerful and versatile tool for text processing and manipulation. With its wide range of features, developers can easily perform tasks such as string reversal, capitalization, word counting, anagram checking and palindrome checking. Whether you are working on a text-based algorithm or need to process and analyze large amounts of text data, this API is the perfect tool for the job. From simple string manipulation to advanced text analysis, the Word Wizard API has got...", + "title":"Word Wizard API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/depneuma/api/word-wizard-api/", + "host":"word-wizard-api.p.rapidapi.com", + "api_list":[ + { + "name":"Palindrome Check", + "url":"https://word-wizard-api.p.rapidapi.com/palindrome", + "description":"This endpoint takes a GET request with a query parameter \"string\" and returns a JSON object that includes the result whether the string is palindrome or not.", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"awesome wizard" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-wizard-api.p.rapidapi.com/palindrome\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-wizard-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Anagram Check", + "url":"https://word-wizard-api.p.rapidapi.com/anagram", + "description":"This endpoint takes two GET request with query parameter \"word1\" and \"word2\" and returns a JSON object that includes the result whether the two words are anagram or not.", + "method":"GET", + "required_parameters":[ + { + "name":"word1", + "type":"STRING", + "description":"", + "default":"awesome" + }, + { + "name":"word2", + "type":"STRING", + "description":"", + "default":"wizard" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-wizard-api.p.rapidapi.com/anagram\"\nquerystring = {\"word1\": word1, \"word2\": word2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-wizard-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Word Stats", + "url":"https://word-wizard-api.p.rapidapi.com/wordstats", + "description":"This endpoint takes a GET request with a query parameter \"string\" and returns a JSON object that includes the count of the each unique word in the string", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"awesome wizard" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-wizard-api.p.rapidapi.com/wordstats\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-wizard-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Word Count", + "url":"https://word-wizard-api.p.rapidapi.com/wordcount", + "description":"This endpoint takes a GET request with a query parameter \"string\" and returns the number of words in the string.", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"awesome wizard" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-wizard-api.p.rapidapi.com/wordcount\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-wizard-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Capitalize String", + "url":"https://word-wizard-api.p.rapidapi.com/capitalize", + "description":"This endpoint takes a GET request with a query parameter \"string\" and returns the capitalized string", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"awesome wizard" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-wizard-api.p.rapidapi.com/capitalize\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-wizard-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Reverse String", + "url":"https://word-wizard-api.p.rapidapi.com/reverse", + "description":"This endpoint takes a GET request with a query parameter \"string\" and returns the reverse of that string", + "method":"GET", + "required_parameters":[ + { + "name":"string", + "type":"STRING", + "description":"", + "default":"awesome wizard" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-wizard-api.p.rapidapi.com/reverse\"\nquerystring = {\"string\": string}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-wizard-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/word_wizard_api/api.py b/toolbench/toolenv/tools/Tools/word_wizard_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6da8f8ae81c2cfd138438bb0ba63bc2339ef4015 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/word_wizard_api/api.py @@ -0,0 +1,134 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def palindrome_check(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a GET request with a query parameter "string" and returns a JSON object that includes the result whether the string is palindrome or not." + + """ + url = f"https://word-wizard-api.p.rapidapi.com/palindrome" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-wizard-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def anagram_check(word1: str, word2: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes two GET request with query parameter "word1" and "word2" and returns a JSON object that includes the result whether the two words are anagram or not." + + """ + url = f"https://word-wizard-api.p.rapidapi.com/anagram" + querystring = {'word1': word1, 'word2': word2, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-wizard-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def word_stats(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a GET request with a query parameter "string" and returns a JSON object that includes the count of the each unique word in the string" + + """ + url = f"https://word-wizard-api.p.rapidapi.com/wordstats" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-wizard-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def word_count(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a GET request with a query parameter "string" and returns the number of words in the string." + + """ + url = f"https://word-wizard-api.p.rapidapi.com/wordcount" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-wizard-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def capitalize_string(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a GET request with a query parameter "string" and returns the capitalized string" + + """ + url = f"https://word-wizard-api.p.rapidapi.com/capitalize" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-wizard-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reverse_string(string: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint takes a GET request with a query parameter "string" and returns the reverse of that string" + + """ + url = f"https://word-wizard-api.p.rapidapi.com/reverse" + querystring = {'string': string, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-wizard-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/wordnet_search.json b/toolbench/toolenv/tools/Tools/wordnet_search.json new file mode 100644 index 0000000000000000000000000000000000000000..ead7676c1ec067c289af2bd23480c3ca9b9d8aa8 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/wordnet_search.json @@ -0,0 +1,36 @@ +{ + "product_id": "57b7a5c4e4b0c56f6cb46652", + "tool_description": "This API will search wordnet for the definition of a word.", + "home_url": "https://rapidapi.com/Aplet123/api/wordnet-search/", + "name": "Wordnet Search", + "title": "Wordnet Search", + "pricing": "FREE", + "tool_name": "Wordnet Search", + "score": null, + "host": "aplet123-wordnet-search-v1.p.rapidapi.com", + "api_list": [ + { + "name": "Define", + "url": "https://aplet123-wordnet-search-v1.p.rapidapi.com/master?word={word}", + "description": "Defines the word", + "method": "GET", + "required_parameters": [ + { + "name": "word", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aplet123-wordnet-search-v1.p.rapidapi.com/master?word={word}\"\nquerystring = {\"word\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aplet123-wordnet-search-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aplet123-wordnet-search-v1.p.rapidapi.com/master?word={word}\"\nquerystring = {\"word\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aplet123-wordnet-search-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Endpoint '/master' does not exist" + }, + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "wordnet_search" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/wordnet_search/api.py b/toolbench/toolenv/tools/Tools/wordnet_search/api.py new file mode 100644 index 0000000000000000000000000000000000000000..872aff5b776c861342926ed65e717900e21eddd0 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/wordnet_search/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def define(word: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Defines the word" + + """ + url = f"https://aplet123-wordnet-search-v1.p.rapidapi.com/master?word={word}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aplet123-wordnet-search-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/words_world.json b/toolbench/toolenv/tools/Tools/words_world.json new file mode 100644 index 0000000000000000000000000000000000000000..d90c404784b2c283f5798999eb1219522d6f84c5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/words_world.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Words World", + "tool_description":"Quote from world people", + "title":"Words World", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":389, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ibnuridho/api/words-world/", + "host":"words-world.p.rapidapi.com", + "api_list":[ + { + "name":"T2G-Kurs-Check", + "url":"https://words-world.p.rapidapi.com/checkkurs", + "description":"Kurs check of IDR to another valuta", + "method":"GET", + "required_parameters":[ + { + "name":"date", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"valuta", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://words-world.p.rapidapi.com/checkkurs\"\nquerystring = {\"date\": date, \"valuta\": valuta}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"words-world.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/words_world/api.py b/toolbench/toolenv/tools/Tools/words_world/api.py new file mode 100644 index 0000000000000000000000000000000000000000..69e864221d57c97a706e460293f856a68a19e89a --- /dev/null +++ b/toolbench/toolenv/tools/Tools/words_world/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def t2g_kurs_check(date: str, valuta: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Kurs check of IDR to another valuta" + + """ + url = f"https://words-world.p.rapidapi.com/checkkurs" + querystring = {'date': date, 'valuta': valuta, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "words-world.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/world_clock.json b/toolbench/toolenv/tools/Tools/world_clock.json new file mode 100644 index 0000000000000000000000000000000000000000..5f63bbd957f8413b2410e64f7ea1279c29f433a5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/world_clock.json @@ -0,0 +1,166 @@ +{ + "tool_name":"World Clock", + "tool_description":"An API to get the current time. REST Services that will return current date/time in JSON for any registered time zone.", + "title":"World Clock", + "pricing":"FREE", + "score":{ + "avgServiceLevel":86, + "avgLatency":6645, + "avgSuccessRate":86, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/theapiguy/api/world-clock/", + "host":"world-clock.p.rapidapi.com", + "api_list":[ + { + "name":"Coordinated Universal Time", + "url":"https://world-clock.p.rapidapi.com/json/utc/now", + "description":"Gets the coordinated universal time", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://world-clock.p.rapidapi.com/json/utc/now\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"world-clock.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "$id":"1", + "currentDateTime":"2019-07-17T23:52Z", + "utcOffset":"00:00:00", + "isDayLightSavingsTime":false, + "dayOfTheWeek":"Wednesday", + "timeZoneName":"UTC", + "currentFileTime":132078811476546220, + "ordinalDate":"2019-198", + "serviceResponse":null + }, + "headers":{ + "cache-control":"no-cache", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 17 Jul 2019 23:52:27 GMT", + "expires":"-1", + "pragma":"no-cache", + "server":"RapidAPI-1.0.20", + "x-aspnet-version":"4.0.30319", + "x-powered-by":"ASP.NET", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.0.20", + "content-length":"235", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"Get Current Time (within a Timezone)", + "url":"https://world-clock.p.rapidapi.com/json/{time_zone}/now", + "description":"Get the Current Time for EST", + "method":"GET", + "required_parameters":[ + { + "name":"time_zone", + "type":"STRING", + "description":"Timezone (see: https://www.timeanddate.com/time/zones/)", + "default":"est" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://world-clock.p.rapidapi.com/json/{time_zone}/now\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"world-clock.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "$id":"1", + "currentDateTime":"2019-07-17T19:55-04:00", + "utcOffset":"-04:00:00", + "isDayLightSavingsTime":true, + "dayOfTheWeek":"Wednesday", + "timeZoneName":"Eastern Standard Time", + "currentFileTime":132078669108644350, + "ordinalDate":"2019-198", + "serviceResponse":null + }, + "headers":{ + "cache-control":"no-cache", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 17 Jul 2019 23:55:10 GMT", + "expires":"-1", + "pragma":"no-cache", + "server":"RapidAPI-1.0.20", + "x-aspnet-version":"4.0.30319", + "x-powered-by":"ASP.NET", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.0.20", + "content-length":"258", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"JSONP", + "url":"https://world-clock.p.rapidapi.com/jsonp/{time_zone}/utc", + "description":"Get current timezone (JSONP)", + "method":"GET", + "required_parameters":[ + { + "name":"time_zone", + "type":"STRING", + "description":"timezone (see:https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations)", + "default":"cet" + }, + { + "name":"callback", + "type":"STRING", + "description":"", + "default":"callback" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://world-clock.p.rapidapi.com/jsonp/{time_zone}/utc\"\nquerystring = {\"callback\": callback}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"world-clock.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/world_clock/api.py b/toolbench/toolenv/tools/Tools/world_clock/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f84a0d4adb6c26e7c347e41b53994255cdc78cc2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/world_clock/api.py @@ -0,0 +1,73 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def coordinated_universal_time(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the coordinated universal time" + + """ + url = f"https://world-clock.p.rapidapi.com/json/utc/now" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "world-clock.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_current_time_within_a_timezone(time_zone: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the Current Time for EST" + time_zone: Timezone (see: https://www.timeanddate.com/time/zones/) + + """ + url = f"https://world-clock.p.rapidapi.com/json/{time_zone}/now" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "world-clock.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def jsonp(time_zone: str, callback: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get current timezone (JSONP)" + time_zone: timezone (see:https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations) + + """ + url = f"https://world-clock.p.rapidapi.com/jsonp/{time_zone}/utc" + querystring = {'callback': callback, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "world-clock.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/xml_to_json.json b/toolbench/toolenv/tools/Tools/xml_to_json.json new file mode 100644 index 0000000000000000000000000000000000000000..eae0abbe4341fa06bf2271b719d4303caa88fec6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/xml_to_json.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_f48638c3-5b7f-4477-9ed5-a2b1d7ac45d2", + "tool_description": "XML to JSON Converter", + "home_url": "https://rapidapi.com/Shadabkazi99/api/xml-to-json2/", + "name": "XML To JSON", + "title": "XML To JSON", + "pricing": "FREEMIUM", + "tool_name": "XML To JSON", + "score": { + "avgServiceLevel": 100, + "avgLatency": 284, + "avgSuccessRate": 83, + "popularityScore": 8.8, + "__typename": "Score" + }, + "host": "xml-to-json2.p.rapidapi.com", + "api_list": [ + { + "name": "XML to JSON Converter", + "url": "https://xml-to-json2.p.rapidapi.com/xmltojson", + "description": "Convert XML String to JSON String", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://xml-to-json2.p.rapidapi.com/xmltojson\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"xml-to-json2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://xml-to-json2.p.rapidapi.com/xmltojson\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"xml-to-json2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/xml_to_json_v2/api.py b/toolbench/toolenv/tools/Tools/xml_to_json_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f6d3f98185b77c8d507d6faebb82af52fc0d9572 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/xml_to_json_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def convert(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Convert XML to JSON." + + """ + url = f"https://xml-to-json1.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "xml-to-json1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube.json b/toolbench/toolenv/tools/Tools/youtube.json new file mode 100644 index 0000000000000000000000000000000000000000..03fc49bef9af6b0db3b19f5a231485a3352e7b99 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_7538e0c1-010e-4d88-a8aa-d6dbe4c87f55", + "tool_description": "Download YouTube videos", + "home_url": "https://rapidapi.com/3205/api/youtube86/", + "name": "youtube", + "title": "youtube", + "pricing": "FREEMIUM", + "tool_name": "youtube", + "score": { + "avgServiceLevel": 75, + "avgLatency": 1667, + "avgSuccessRate": 74, + "popularityScore": 9.3, + "__typename": "Score" + }, + "host": "youtube86.p.rapidapi.com", + "api_list": [ + { + "name": "go", + "url": "https://youtube86.p.rapidapi.com/api/youtube/go", + "description": "Video converter", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://youtube86.p.rapidapi.com/api/youtube/go\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube86.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://youtube86.p.rapidapi.com/api/youtube/go\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube86.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "This endpoint is disabled for your subscription" + } + } + ], + "standardized_name": "youtube" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube/api.py b/toolbench/toolenv/tools/Tools/youtube/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2bf52460ef623f621890495d11af74c2c529480c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def go(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Video converter" + + """ + url = f"https://youtube86.p.rapidapi.com/api/youtube/go" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube86.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_downloader_videos.json b/toolbench/toolenv/tools/Tools/youtube_downloader_videos.json new file mode 100644 index 0000000000000000000000000000000000000000..a75ad3b1e53c27b4dc73240e120cd9941e183107 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_downloader_videos.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Youtube Downloader Videos", + "tool_description":"Youtube Downloader Videos", + "title":"Youtube Downloader Videos", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":7, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ihsanmmi121/api/youtube-downloader-videos/", + "host":"youtube-downloader-videos.p.rapidapi.com", + "api_list":[ + { + "name":"GetVideos", + "url":"https://youtube-downloader-videos.p.rapidapi.com/", + "description":"GetVideos", + "method":"GET", + "required_parameters":[ + { + "name":"quality", + "type":"NUMBER", + "description":"", + "default":"720" + }, + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.youtube.com/watch?v=_N6vSc_mT6I" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-downloader-videos.p.rapidapi.com/\"\nquerystring = {\"quality\": quality, \"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-downloader-videos.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_downloader_videos/api.py b/toolbench/toolenv/tools/Tools/youtube_downloader_videos/api.py new file mode 100644 index 0000000000000000000000000000000000000000..04e53a13e1454367ed56275648f1205ea5410b58 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_downloader_videos/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getvideos(quality: int, url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "GetVideos" + + """ + url = f"https://youtube-downloader-videos.p.rapidapi.com/" + querystring = {'quality': quality, 'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-downloader-videos.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3.json b/toolbench/toolenv/tools/Tools/youtube_mp3.json new file mode 100644 index 0000000000000000000000000000000000000000..ea85ec0479264b0037bfc927302f73445ec362c1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3.json @@ -0,0 +1,66 @@ +{ + "product_id": "api_017f98f1-f1fe-49f1-b2c4-baaf316dfa66", + "tool_description": "Convert Youtube Videos to MP3", + "home_url": "https://rapidapi.com/ytjar/api/youtube-mp36/", + "name": "YouTube MP3", + "title": "YouTube MP3", + "pricing": "FREEMIUM", + "tool_name": "YouTube MP3", + "score": { + "avgServiceLevel": 100, + "avgLatency": 350, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "youtube-mp36.p.rapidapi.com", + "api_list": [ + { + "name": "Get MP3", + "url": "https://youtube-mp36.p.rapidapi.com/dl", + "description": "Convert to MP3 at the default bit rate.\nQuota cost will apply according to the length of the mp3 file.", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "Quota cost will apply according to the length of the mp3 file.\nQuota is calculated as follows:\nif length <= 30 then 1\nif 30 < length <= 60 then 2\nif 60 < length <= 90 then 3\nif 90 < length <= 120 then 4\nif 120 < length <= 150 then 5\nif 150 < length <= 180 then 6", + "default": "UxxajLWwzqY" + } + ], + "optional_parameters": [ + { + "name": "cut", + "type": "NUMBER", + "description": "Cut the mp3 according to the provided sStart and sEnd parameters\nThe value must be provided as 1\nThe quota Cost is +1.", + "default": "" + }, + { + "name": "sStart", + "type": "STRING", + "description": "Starting point for cutting the mp3.\nFormat must be HH:MM:SS\n", + "default": "" + }, + { + "name": "sEnd", + "type": "STRING", + "description": "End point for cutting the mp3.\nFormat must be HH:MM:SS\n", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://youtube-mp36.p.rapidapi.com/dl\"\nquerystring = {\"cut\": \"\", \"sStart\": \"\", \"id\": \"UxxajLWwzqY\", \"sEnd\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-mp36.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://youtube-mp36.p.rapidapi.com/dl\"\nquerystring = {\"cut\": \"\", \"sStart\": \"\", \"id\": \"UxxajLWwzqY\", \"sEnd\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-mp36.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "link": "https://mgamma.123tokyo.xyz/get.php/6/29/UxxajLWwzqY.mp3?cid=MmEwMTo0Zjg6YzAxMDo5ZmE2OjoxfE5BfERF&h=W0FBx2WKZBhMSMCNrl81kw&s=1686940490&n=Icona%20Pop%20-%20I%20Love%20It%20%28feat.%20Charli%20XCX%29%20%5BOFFICIAL%20VIDEO%5D", + "title": "Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]", + "progress": 0, + "duration": 179.98367469363, + "status": "ok", + "msg": "success" + }, + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "youtube_mp3" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3/api.py b/toolbench/toolenv/tools/Tools/youtube_mp3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e11b53105ab31264fd5c1a620b6c5ea0aebc33f5 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3/api.py @@ -0,0 +1,53 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_mp3(is_id: str, cut: int=None, sstart: str=None, send: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Convert to MP3 at the default bit rate. + Quota cost will apply according to the length of the mp3 file." + id: Quota cost will apply according to the length of the mp3 file. +Quota is calculated as follows: +if length <= 30 then 1 +if 30 < length <= 60 then 2 +if 60 < length <= 90 then 3 +if 90 < length <= 120 then 4 +if 120 < length <= 150 then 5 +if 150 < length <= 180 then 6 + cut: Cut the mp3 according to the provided sStart and sEnd parameters +The value must be provided as 1 +The quota Cost is +1. + sstart: Starting point for cutting the mp3. +Format must be HH:MM:SS + + send: End point for cutting the mp3. +Format must be HH:MM:SS + + + """ + url = f"https://youtube-mp36.p.rapidapi.com/dl" + querystring = {'id': is_id, } + if cut: + querystring['cut'] = cut + if sstart: + querystring['sStart'] = sstart + if send: + querystring['sEnd'] = send + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-mp36.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3_download.json b/toolbench/toolenv/tools/Tools/youtube_mp3_download.json new file mode 100644 index 0000000000000000000000000000000000000000..c0e67f26503600b7d930066b8b3bca969612d7e9 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3_download.json @@ -0,0 +1,65 @@ +{ + "tool_name":"Youtube MP3 Download", + "tool_description":"Convert Youtube Videos to MP3. Forever Free Version.", + "title":"Youtube MP3 Download", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":217, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ytjar/api/youtube-mp3-download1/", + "host":"youtube-mp3-download1.p.rapidapi.com", + "api_list":[ + { + "name":"Get MP3", + "url":"https://youtube-mp3-download1.p.rapidapi.com/dl", + "description":"Convert to MP3 at the default bit rate.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"Youtube Video Id", + "default":"UxxajLWwzqY" + } + ], + "optional_parameters":[ + { + "name":"return", + "type":"STRING", + "description":"Enables back button in the download page to enable the user to come back to the source site.\nValue must be `1`", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://youtube-mp3-download1.p.rapidapi.com/dl\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-mp3-download1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "title":"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]", + "link":"https://one.123berlin.xyz/mp3.php?url=J01SJXPeIzhinFkHdutHHKGbokjeus1EG%2FdWHHMRk5EOt8Mj4qKPQGv%2BQhg9DMlJNHGjv1bKfql5iEavrn1UI7XlDi1T33XFAFvEGglqZ4izoXW97P4heqvlmIZWYQhwFGxfbW0%2Fie5ZHMk%2B4YZhh8RFEfiqgoyU7%2F9DquZUtSqM%2FUiGsglaLrw4jAAhOyfRJTeMEq0JNUa1bayV0hNx0rjG6QJ5USOk4L%2BiJHBAzjFw%2BpFmxLU%3D", + "duration":180.03591959124, + "msg":"success", + "status":"ok", + "age":"0", + "progress":0 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"X-Requested-With", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"462", + "content-type":"application/json", + "date":"Wed, 09 Feb 2022 13:23:01 GMT", + "server":"RapidAPI-1.2.8", + "x-powered-by":"PHP/7.0.33", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3_download/api.py b/toolbench/toolenv/tools/Tools/youtube_mp3_download/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3ade11e26b1b3f92d40ce89d9d492e0174e7bfdb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3_download/api.py @@ -0,0 +1,34 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_mp3(is_id: str, is_return: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Convert to MP3 at the default bit rate." + id: Youtube Video Id + is_return: Enables back button in the download page to enable the user to come back to the source site. +Value must be `1` + + """ + url = f"https://youtube-mp3-download1.p.rapidapi.com/dl" + querystring = {'id': is_id, } + if is_return: + querystring['return'] = is_return + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-mp3-download1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3_download_highest_quality.json b/toolbench/toolenv/tools/Tools/youtube_mp3_download_highest_quality.json new file mode 100644 index 0000000000000000000000000000000000000000..43ee9f9021337a102e4ac4967d5cf717dc32a708 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3_download_highest_quality.json @@ -0,0 +1,65 @@ +{ + "tool_name":"YouTube mp3 Download (Highest Quality)", + "tool_description":"Download YouTube video or YT music in highest mp3 audio quality.\nBest audio quality: 320Kbps, 128Kbps, 192Kbps, 256Kbps & 64Kbps.\n(No ads, no wild redirects, only mp3 files)\nUpdated: 31 May 2023. (Now supports Youtu.be links)", + "title":"YouTube mp3 Download (Highest Quality)", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":81, + "avgLatency":30512, + "avgSuccessRate":81, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/420vijay47/api/youtube-mp3-download-highest-quality1/", + "host":"youtube-mp3-download-highest-quality1.p.rapidapi.com", + "api_list":[ + { + "name":"Download YouTube to Mp3", + "url":"https://youtube-mp3-download-highest-quality1.p.rapidapi.com/ytmp3/ytmp3/custom/", + "description":"Get download links in: 320Kbps, 256Kbps, 192, 128 & 64Kbps. (Specify the quality in the field)", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.youtube.com/watch?v=YxWlaYCA8MU" + }, + { + "name":"quality", + "type":"NUMBER", + "description":"Select the audio quality of the output mp3. Allowed values are:\n320\n192\n256\n128\n64", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-mp3-download-highest-quality1.p.rapidapi.com/ytmp3/ytmp3/custom/\"\nquerystring = {\"url\": url, \"quality\": quality}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-mp3-download-highest-quality1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "320kbps":{ + "type":"string" + }, + "256kbps":{ + "type":"string" + }, + "192kbps":{ + "type":"string" + }, + "128kbps":{ + "type":"string" + }, + "64kbps":{ + "type":"string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3_download_highest_quality/api.py b/toolbench/toolenv/tools/Tools/youtube_mp3_download_highest_quality/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9479d51dc6baf374689e9722baec298da5df76e1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3_download_highest_quality/api.py @@ -0,0 +1,35 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def download_youtube_to_mp3(url: str, quality: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get download links in: 320Kbps, 256Kbps, 192, 128 & 64Kbps. (Specify the quality in the field)" + quality: Select the audio quality of the output mp3. Allowed values are: +320 +192 +256 +128 +64 + + """ + url = f"https://youtube-mp3-download-highest-quality1.p.rapidapi.com/ytmp3/ytmp3/custom/" + querystring = {'url': url, 'quality': quality, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-mp3-download-highest-quality1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_mp3_v2/api.py b/toolbench/toolenv/tools/Tools/youtube_mp3_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..204f3e7b73b60ca04381869ce8716ac4accb4b98 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_mp3_v2/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_mp3_link(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Convert Youtube Videos to MP3" + id: Youtube Video ID + + """ + url = f"https://youtube-mp37.p.rapidapi.com/get" + querystring = {'id': is_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-mp37.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_powerfull_api.json b/toolbench/toolenv/tools/Tools/youtube_powerfull_api.json new file mode 100644 index 0000000000000000000000000000000000000000..22bb2a81d73cb9220988f6ce8386645dcc554149 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_powerfull_api.json @@ -0,0 +1,28699 @@ +{ + "tool_name":"YouTube Powerfull API", + "tool_description":"This API provides various endpoints to collect data from youtube such as video complete information, downloading videos, streams, playlist information, channel information, and downloading videos in one go from a channel or a target playlist.", + "title":"YouTube Powerfull API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/mohammadkhalidmomand-Mp03XqK3XfO/api/youtube-powerfull-api/", + "host":"youtube-powerfull-api.p.rapidapi.com", + "api_list":[ + { + "name":"GET Video Keywords", + "url":"https://youtube-powerfull-api.p.rapidapi.com/api/get_video_kewords/{video_id}/", + "description":"By Providing The Video Link You can GET the Video Keywords", + "method":"GET", + "required_parameters":[ + { + "name":"video_id", + "type":"string", + "description":"", + "default":"9t_ufVYBcds" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/api/get_video_kewords/{video_id}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + "side hustle ideas", + "make money online", + "side hustle", + "side hustles to replace your day job", + "side hustles that don't require a college degree", + "best side hustle ideas", + "top side hustle ideas to make money", + "best side hustles", + "how to make money online", + "side hustles for extra money", + "side hustles", + "side hustle ideas 2022", + "side hustle ideas to earn money quickly", + "best side hustle ideas 2022", + "make money from home", + "make money online 2022", + "how to make money", + "joshua mayo" + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "allow":"OPTIONS, GET", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"776a2c78fb99bb61-FRA", + "content-type":"application/json", + "date":"Fri, 09 Dec 2022 02:05:05 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8", + "x-ratelimit-requests-limit":"100", + "x-ratelimit-requests-remaining":"95", + "x-ratelimit-requests-reset":"83775" + }, + "schema":{ + "type":"array", + "items":{ + "type":"string" + } + } + }, + { + "name":"GET Playlist HTML FILE || Provide The Playlist ID", + "url":"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_html_file/{playlist_id}/", + "description":"By giving the target playlist ID yon can get that specific playlist HTML generated file.", + "method":"GET", + "required_parameters":[ + { + "name":"playlist_id", + "type":"string", + "description":"", + "default":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_html_file/{playlist_id}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Full Details":"
AboutPressCopyrightContact usCreatorsAdvertiseDevelopersTermsPrivacyPolicy & SafetyHow YouTube worksTest new features
© 2022 Google LLC
Small Projects - YouTube
" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "allow":"OPTIONS, GET", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7761a70fe9178ff8-FRA", + "content-type":"application/json", + "date":"Thu, 08 Dec 2022 01:15:55 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "Full Details":{ + "type":"string" + } + } + } + }, + { + "name":"GET Playlist Full Details || Provide Playlist ID", + "url":"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_full_details/{playlist_id}/", + "description":"Retrieve Huge data of a given Playlist ID.", + "method":"GET", + "required_parameters":[ + { + "name":"playlist_id", + "type":"string", + "description":"", + "default":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_full_details/{playlist_id}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Full Details":{ + "responseContext":{ + "serviceTrackingParams":[ + { + "service":"GFEEDBACK", + "params":[ + { + "key":"browse_id", + "value":"VLPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + }, + { + "key":"browse_id_prefix", + "value":"" + }, + { + "key":"logged_in", + "value":"0" + }, + { + "key":"e", + "value":"1714248,23804281,23882685,23918597,23934970,23946420,23966208,23983296,23986016,23998056,24001373,24002022,24002025,24004644,24007246,24034168,24036947,24077241,24080738,24120819,24135310,24140247,24161116,24162919,24164186,24166867,24169501,24181174,24187043,24187377,24191629,24197450,24211178,24217535,24219713,24236210,24241378,24255165,24255543,24255545,24262346,24262775,24263796,24265426,24267564,24268142,24269410,24279196,24282722,24283015,24283093,24288043,24288442,24288664,24288912,24290971,24291857,24292955,24296354,24297394,24297748,24390674,24391543,24392364,24392405,24396645,24398983,24398993,24400176,24402891,24404640,24406314,24406327,24407200,24412898,24415864,24415866,24416707,24418788,24419369,24420756,24421162,24423887,24424807,24428902,24431197,24432419,24434571,24590921,24591046,39322504,39322574" + } + ] + }, + { + "service":"GOOGLE_HELP", + "params":[ + { + "key":"browse_id", + "value":"VLPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + }, + { + "key":"browse_id_prefix", + "value":"" + } + ] + }, + { + "service":"CSI", + "params":[ + { + "key":"c", + "value":"WEB" + }, + { + "key":"cver", + "value":"2.20221207.01.00" + }, + { + "key":"yt_li", + "value":"0" + }, + { + "key":"GetPlaylist_rid", + "value":"0x300f3106f1d7a5c9" + } + ] + }, + { + "service":"GUIDED_HELP", + "params":[ + { + "key":"logged_in", + "value":"0" + } + ] + }, + { + "service":"ECATCHER", + "params":[ + { + "key":"client.version", + "value":"2.20221207" + }, + { + "key":"client.name", + "value":"WEB" + }, + { + "key":"client.fexp", + "value":"24428902,24169501,24255165,24398993,24392405,24402891,24241378,24265426,24390674,24002025,39322574,24262346,24296354,24211178,23986016,24400176,24415866,23934970,39322504,24297748,24590921,24267564,24166867,24263796,24002022,24288442,24279196,24591046,24004644,24236210,23998056,24392364,24120819,24255545,24007246,24288912,24424807,24418788,24398983,24423887,24262775,24407200,24421162,24162919,24283093,24404640,24217535,24391543,24164186,24140247,23983296,24187377,24036947,24268142,24406327,24288043,24432419,24431197,23918597,1714248,24187043,24291857,24283015,24219713,24135310,24415864,24080738,24396645,24292955,24161116,24282722,24290971,24191629,24406314,24001373,23882685,24077241,24416707,24420756,24419369,24412898,24197450,23946420,23804281,24255543,24181174,24434571,24288664,24034168,24297394,23966208,24269410" + } + ] + } + ], + "mainAppWebResponseContext":{ + "loggedOut":true + }, + "webResponseContextExtensionData":{ + "ytConfigData":{ + "visitorData":"CgtWdDJhNGdFMjR5TSjM9MScBg%3D%3D", + "rootVisualElementType":5754 + }, + "hasDecorated":true + } + }, + "contents":{ + "twoColumnBrowseResultsRenderer":{ + "tabs":[ + { + "tabRenderer":{ + "selected":true, + "content":{ + "sectionListRenderer":{ + "contents":[ + { + "itemSectionRenderer":{ + "contents":[ + { + "playlistVideoListRenderer":{ + "contents":[ + { + "playlistVideoRenderer":{ + "videoId":"CVClHLwv-4I", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCUx3fzrwZLdpO8G4E4qTaWg_YNpQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCjpIxBhlVVy6Dkevpil-cmhsN27Q", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCawvwukQ23g-Mqx-BOLIkALMX-xw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB0s23gNAv0UjcELWCcqPgKzIU8lg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build Real Time Face Detection With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build Real Time Face Detection With JavaScript by Web Dev Simplified 3 years ago 12 minutes, 45 seconds 1,262,462 views" + } + } + }, + "index":{ + "simpleText":"1" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CO4BEMY0GAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 45 seconds" + } + }, + "simpleText":"12:45" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CO4BEMY0GAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=CVClHLwv-4I&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=1", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"CVClHLwv-4I", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":0, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0950a51cbc2ffb82&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"765", + "trackingParams":"CO4BEMY0GAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CO8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CO8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"CVClHLwv-4I", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CO8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "CVClHLwv-4I" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "CVClHLwv-4I" + ] + } + } + ] + } + }, + "trackingParams":"CO8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CO4BEMY0GAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 45 seconds" + } + }, + "simpleText":"12:45" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"1.2M views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"j59qQ7YWLxw", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/j59qQ7YWLxw/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAwOJNSIA8mwP1J-TsS-Vpy6vg6yw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/j59qQ7YWLxw/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAcf4ZnpYkdlAVqL0IOifArYCS-dg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/j59qQ7YWLxw/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBd7jEr0OAp2uJxRaxNvLTu7sozXw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/j59qQ7YWLxw/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAUHfJVhl4tJoh4mAVZUhT71C5L0A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Calculator With JavaScript Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Calculator With JavaScript Tutorial by Web Dev Simplified 3 years ago 38 minutes 1,231,329 views" + } + } + }, + "index":{ + "simpleText":"2" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COwBEMY0GAEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"38 minutes, 50 seconds" + } + }, + "simpleText":"38:50" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COwBEMY0GAEiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=j59qQ7YWLxw&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=2", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"j59qQ7YWLxw", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":1, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=8f9f6a43b6162f1c&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2330", + "trackingParams":"COwBEMY0GAEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CO0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CO0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"j59qQ7YWLxw", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CO0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "j59qQ7YWLxw" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "j59qQ7YWLxw" + ] + } + } + ] + } + }, + "trackingParams":"CO0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COwBEMY0GAEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"38 minutes, 50 seconds" + } + }, + "simpleText":"38:50" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"1.2M views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"-RCnNyD0L-s", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/-RCnNyD0L-s/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAvd2WXZf8tUG-NqXvex27HOvO3hA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/-RCnNyD0L-s/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD3gS33Vrhpn8ja8mEra1izYbNLCw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/-RCnNyD0L-s/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBdBQNKUHHTAiYC71W-Prp1Xkfo2Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/-RCnNyD0L-s/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAOOOx4fVwSP5ZU5netTJEIyfOBvg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Node.js Passport Login System Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Node.js Passport Login System Tutorial by Web Dev Simplified 3 years ago 36 minutes 846,363 views" + } + } + }, + "index":{ + "simpleText":"3" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COoBEMY0GAIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"36 minutes, 28 seconds" + } + }, + "simpleText":"36:28" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COoBEMY0GAIiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=-RCnNyD0L-s&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=3", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"-RCnNyD0L-s", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":2, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=f910a73720f42feb&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2188", + "trackingParams":"COoBEMY0GAIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"COsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"COsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"-RCnNyD0L-s", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"COsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "-RCnNyD0L-s" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "-RCnNyD0L-s" + ] + } + } + ] + } + }, + "trackingParams":"COsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COoBEMY0GAIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"36 minutes, 28 seconds" + } + }, + "simpleText":"36:28" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"846K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"DvlyzDZDEq4", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/DvlyzDZDEq4/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBMd2nZJxj3x-gzAmgzTJpbnxgXNg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/DvlyzDZDEq4/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD2U6eBHi-ACEZqc9qMSGGoScqzUg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/DvlyzDZDEq4/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBXOOmrX-sFuB39OU0VZj1s-n4ekw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/DvlyzDZDEq4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBAciIh8D9rkjNuQai2bN3Zhmzsgw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A Video Chat App With WebRTC" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A Video Chat App With WebRTC by Web Dev Simplified 2 years ago 28 minutes 755,931 views" + } + } + }, + "index":{ + "simpleText":"4" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COgBEMY0GAMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 53 seconds" + } + }, + "simpleText":"28:53" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COgBEMY0GAMiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=DvlyzDZDEq4&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=4", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"DvlyzDZDEq4", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":3, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0ef972cc364312ae&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1733", + "trackingParams":"COgBEMY0GAMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"COkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"COkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"DvlyzDZDEq4", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"COkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "DvlyzDZDEq4" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "DvlyzDZDEq4" + ] + } + } + ] + } + }, + "trackingParams":"COkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COgBEMY0GAMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 53 seconds" + } + }, + "simpleText":"28:53" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"755K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"mbsmsi7l3r4", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/mbsmsi7l3r4/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCV6Q7URlbcJe8Jzjab5kjeWUpRog", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/mbsmsi7l3r4/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAxPewYkUsXh0b6Q21iJWu6YfGDKg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/mbsmsi7l3r4/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCmMk90g_03MYH3cGWt8qhEGDilRQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/mbsmsi7l3r4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDxecBGLgfKSawXJE5FqNsGy7Uu9A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"JWT Authentication Tutorial - Node.js" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"JWT Authentication Tutorial - Node.js by Web Dev Simplified 3 years ago 27 minutes 702,346 views" + } + } + }, + "index":{ + "simpleText":"5" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COYBEMY0GAQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"27 minutes, 36 seconds" + } + }, + "simpleText":"27:36" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COYBEMY0GAQiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=mbsmsi7l3r4&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=5", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"mbsmsi7l3r4", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":4, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=99bb26b22ee5debe&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1656", + "trackingParams":"COYBEMY0GAQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"COcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"COcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"mbsmsi7l3r4", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"COcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "mbsmsi7l3r4" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "mbsmsi7l3r4" + ] + } + } + ] + } + }, + "trackingParams":"COcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COYBEMY0GAQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"27 minutes, 36 seconds" + } + }, + "simpleText":"27:36" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"702K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"fgTGADljAeg", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/fgTGADljAeg/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAqERRsbNJIqY8JkVM6jVTQww5QOg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/fgTGADljAeg/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDsnHqOjG2giW9tFGd9XcYOAHdOig", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/fgTGADljAeg/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA5Peh58mpZ37s35L80y_y-_4BZaQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/fgTGADljAeg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAkmq1O7IsGBWCN2RwG7Lm_r6sZhQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A REST API With Node.js, Express, & MongoDB - Quick" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A REST API With Node.js, Express, & MongoDB - Quick by Web Dev Simplified 3 years ago 28 minutes 543,023 views" + } + } + }, + "index":{ + "simpleText":"6" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COQBEMY0GAUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 56 seconds" + } + }, + "simpleText":"28:56" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COQBEMY0GAUiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=fgTGADljAeg&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=6", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"fgTGADljAeg", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":5, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=7e04c600396301e8&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1736", + "trackingParams":"COQBEMY0GAUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"COUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"COUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"fgTGADljAeg", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"COUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "fgTGADljAeg" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "fgTGADljAeg" + ] + } + } + ] + } + }, + "trackingParams":"COUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COQBEMY0GAUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 56 seconds" + } + }, + "simpleText":"28:56" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"543K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"PKwu15ldZ7k", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/PKwu15ldZ7k/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLACBkrppuFfvvIRrBeDuiC0uapDbQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/PKwu15ldZ7k/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDZz4zIusx_MNJXzxW0NjT0QLHbtA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/PKwu15ldZ7k/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCGdztjhFAqcu9GsFxwzG9rPX8oKw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/PKwu15ldZ7k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAfryg9R_sUM3rtDl2OiUQ7B0Kj6g", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"React Authentication Crash Course With Firebase And Routing" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"React Authentication Crash Course With Firebase And Routing by Web Dev Simplified 2 years ago 56 minutes 523,540 views" + } + } + }, + "index":{ + "simpleText":"7" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COIBEMY0GAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"56 minutes" + } + }, + "simpleText":"56:00" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COIBEMY0GAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=PKwu15ldZ7k&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=7", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"PKwu15ldZ7k", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":6, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3cac2ed7995d67b9&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3360", + "trackingParams":"COIBEMY0GAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"COMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"COMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"PKwu15ldZ7k", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"COMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "PKwu15ldZ7k" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "PKwu15ldZ7k" + ] + } + } + ] + } + }, + "trackingParams":"COMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COIBEMY0GAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"56 minutes" + } + }, + "simpleText":"56:00" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"523K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"RDLg-p6PdTA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/RDLg-p6PdTA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBK0QNn0q1sErPNNX_5II6mZe73pw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/RDLg-p6PdTA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB8LbPc9cunybq6YiokhUKp-hBsFg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/RDLg-p6PdTA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCX82Zw1HfaSpBL-lMILSpsSh6Fkg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/RDLg-p6PdTA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD0sAC2EAfZYEYKy_gUbfH-D4K25g", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create This Tricky CSS Button Animation?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create This Tricky CSS Button Animation? by Web Dev Simplified 11 months ago 46 minutes 508,926 views" + } + } + }, + "index":{ + "simpleText":"8" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"COABEMY0GAciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 15 seconds" + } + }, + "simpleText":"46:15" + }, + "navigationEndpoint":{ + "clickTrackingParams":"COABEMY0GAciEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=RDLg-p6PdTA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=8", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"RDLg-p6PdTA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":7, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=4432e0fa9e8f7530&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2775", + "trackingParams":"COABEMY0GAciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"COEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"COEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"RDLg-p6PdTA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"COEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "RDLg-p6PdTA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "RDLg-p6PdTA" + ] + } + } + ] + } + }, + "trackingParams":"COEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"COABEMY0GAciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 15 seconds" + } + }, + "simpleText":"46:15" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"508K views" + }, + { + "text":" • " + }, + { + "text":"11 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"rxzOqP9YwmM", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/rxzOqP9YwmM/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBXEbBjYemX-NnXUWCumK6lhunYyg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/rxzOqP9YwmM/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAHb8_rauIs08artD1Rzdv92DFeiQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/rxzOqP9YwmM/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBl4joKQ6RCAOFNxwjLMw2w-k765Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/rxzOqP9YwmM/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLABSlT20aiIkocbo05hmEk8HszJPQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build a Real Time Chat App With Node.js And Socket.io" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build a Real Time Chat App With Node.js And Socket.io by Web Dev Simplified 3 years ago 17 minutes 464,814 views" + } + } + }, + "index":{ + "simpleText":"9" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CN4BEMY0GAgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 12 seconds" + } + }, + "simpleText":"17:12" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CN4BEMY0GAgiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=rxzOqP9YwmM&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=9", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"rxzOqP9YwmM", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":8, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=af1ccea8ff58c263&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1032", + "trackingParams":"CN4BEMY0GAgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CN8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CN8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"rxzOqP9YwmM", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CN8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "rxzOqP9YwmM" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "rxzOqP9YwmM" + ] + } + } + ] + } + }, + "trackingParams":"CN8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CN4BEMY0GAgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 12 seconds" + } + }, + "simpleText":"17:12" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"464K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"riDzcEQbX6k", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/riDzcEQbX6k/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCdhS8gyhoAuTdPsmMDENdC62m2gQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/riDzcEQbX6k/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAleage-g0IRjBCf3BoMHYozZQw3A", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/riDzcEQbX6k/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCtetwZESyJ7n_a24ZTRPLb3Xn6ZA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/riDzcEQbX6k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBwKY3I51mJCETvK2wUw5ZH_JhlQg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Quiz App With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Quiz App With JavaScript by Web Dev Simplified 3 years ago 26 minutes 358,255 views" + } + } + }, + "index":{ + "simpleText":"10" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNwBEMY0GAkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"26 minutes, 59 seconds" + } + }, + "simpleText":"26:59" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNwBEMY0GAkiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=riDzcEQbX6k&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=10", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"riDzcEQbX6k", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":9, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=ae20f370441b5fa9&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1619", + "trackingParams":"CNwBEMY0GAkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CN0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CN0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"riDzcEQbX6k", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CN0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "riDzcEQbX6k" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "riDzcEQbX6k" + ] + } + } + ] + } + }, + "trackingParams":"CN0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNwBEMY0GAkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"26 minutes, 59 seconds" + } + }, + "simpleText":"26:59" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"358K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"1NrHkjlWVhM", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/1NrHkjlWVhM/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDJr7isY3g0yF88WAFX9HiInqMTNQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/1NrHkjlWVhM/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLA84ltQd0rLh4SJo1FX4j583FGEMw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/1NrHkjlWVhM/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBXdyn4i9plYng1bmeExD1IOxcahg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/1NrHkjlWVhM/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB_l89bwYJF73l_czEHchs5b2tObQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Markdown Blog Using Node.js, Express, And MongoDB" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Markdown Blog Using Node.js, Express, And MongoDB by Web Dev Simplified 2 years ago 1 hour, 2 minutes 355,133 views" + } + } + }, + "index":{ + "simpleText":"11" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNoBEMY0GAoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 2 minutes, 28 seconds" + } + }, + "simpleText":"1:02:28" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNoBEMY0GAoiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=1NrHkjlWVhM&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=11", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"1NrHkjlWVhM", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":10, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx5s7n7z.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=d4dac79239565613&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3748", + "trackingParams":"CNoBEMY0GAoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CNsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CNsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"1NrHkjlWVhM", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CNsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "1NrHkjlWVhM" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "1NrHkjlWVhM" + ] + } + } + ] + } + }, + "trackingParams":"CNsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNoBEMY0GAoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 2 minutes, 28 seconds" + } + }, + "simpleText":"1:02:28" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"355K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"S-VeYcOCFZw", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/S-VeYcOCFZw/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAXfU5Q0OeUF_ORliXhBNjhOidfXA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/S-VeYcOCFZw/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAOd_4l32SMRFs_uiPFWF08NnE80g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/S-VeYcOCFZw/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD32QIi9uymyyT38B06SburgrfHeA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/S-VeYcOCFZw/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBhB87zdqWDj0zuX2G-xfF1AH5OlQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create Advanced CSS Dropdown Menus" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create Advanced CSS Dropdown Menus by Web Dev Simplified 1 year ago 16 minutes 341,873 views" + } + } + }, + "index":{ + "simpleText":"12" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNgBEMY0GAsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"16 minutes, 9 seconds" + } + }, + "simpleText":"16:09" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNgBEMY0GAsiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=S-VeYcOCFZw&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=12", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"S-VeYcOCFZw", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":11, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=4be55e61c382159c&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"969", + "trackingParams":"CNgBEMY0GAsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CNkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CNkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"S-VeYcOCFZw", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CNkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "S-VeYcOCFZw" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "S-VeYcOCFZw" + ] + } + } + ] + } + }, + "trackingParams":"CNkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNgBEMY0GAsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"16 minutes, 9 seconds" + } + }, + "simpleText":"16:09" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"341K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Ki0XXrlKlHY", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Ki0XXrlKlHY/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAMs4gyRGOd3FGKNs1--1tiKuMC0A", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Ki0XXrlKlHY/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLADuWkCjz_qwYwYRUR47kG5aevJSA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Ki0XXrlKlHY/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB9HNP465iD1a85jEWDuku9kCrvMA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Ki0XXrlKlHY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAaWh9QRH3x1AeL-41QQDnxvmWsvg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Clock With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Clock With JavaScript by Web Dev Simplified 3 years ago 17 minutes 300,029 views" + } + } + }, + "index":{ + "simpleText":"13" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNYBEMY0GAwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 43 seconds" + } + }, + "simpleText":"17:43" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNYBEMY0GAwiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Ki0XXrlKlHY&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=13", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Ki0XXrlKlHY", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":12, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=2a2d175eb94a9476&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1063", + "trackingParams":"CNYBEMY0GAwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CNcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CNcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Ki0XXrlKlHY", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CNcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Ki0XXrlKlHY" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Ki0XXrlKlHY" + ] + } + } + ] + } + }, + "trackingParams":"CNcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNYBEMY0GAwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 43 seconds" + } + }, + "simpleText":"17:43" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"300K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"QTcIXok9wNY", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/QTcIXok9wNY/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB3E4N05aptjeqlBFWGK5G1UjCjMw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/QTcIXok9wNY/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDoYCrI8cQxUORZXQgS9cemhjDjkA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/QTcIXok9wNY/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAoIYNx-6pCKvfMTF7t_KN2pCrxQw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/QTcIXok9wNY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCzMNOrtHuUtYVkMNCDC_rjIaamSw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Code The Snake Game In Javascript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Code The Snake Game In Javascript by Web Dev Simplified 2 years ago 46 minutes 283,267 views" + } + } + }, + "index":{ + "simpleText":"14" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNQBEMY0GA0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 27 seconds" + } + }, + "simpleText":"46:27" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNQBEMY0GA0iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=QTcIXok9wNY&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=14", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"QTcIXok9wNY", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":13, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=4137085e893dc0d6&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2787", + "trackingParams":"CNQBEMY0GA0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CNUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CNUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"QTcIXok9wNY", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CNUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "QTcIXok9wNY" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "QTcIXok9wNY" + ] + } + } + ] + } + }, + "trackingParams":"CNUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNQBEMY0GA0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 27 seconds" + } + }, + "simpleText":"46:27" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"283K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Y-GkMjUZsmM", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Y-GkMjUZsmM/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBxISO0ZGyOIOHwdqa9SNF53iZmQA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Y-GkMjUZsmM/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCj700KpcizDKxQChIBv1td-mPfBw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Y-GkMjUZsmM/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB8zoKzmzmTt0opzV1UPryiQBeIOQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Y-GkMjUZsmM/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCZxQnuhb5UqWkM1AOahEzm1vWvdg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build Tic Tac Toe With JavaScript - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build Tic Tac Toe With JavaScript - Tutorial by Web Dev Simplified 2 years ago 41 minutes 276,853 views" + } + } + }, + "index":{ + "simpleText":"15" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNIBEMY0GA4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"41 minutes, 46 seconds" + } + }, + "simpleText":"41:46" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNIBEMY0GA4iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Y-GkMjUZsmM&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=15", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Y-GkMjUZsmM", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":14, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=63e1a4323519b263&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2506", + "trackingParams":"CNIBEMY0GA4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CNMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CNMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Y-GkMjUZsmM", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CNMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Y-GkMjUZsmM" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Y-GkMjUZsmM" + ] + } + } + ] + } + }, + "trackingParams":"CNMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNIBEMY0GA4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"41 minutes, 46 seconds" + } + }, + "simpleText":"41:46" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"276K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"MBaw_6cPmAw", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/MBaw_6cPmAw/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC-KeDUFpPpsT3ytPzxTfJ9Kxj69g", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/MBaw_6cPmAw/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBX0rKLJ3GZLWL9GDSs8R20xgn9fA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/MBaw_6cPmAw/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDCYu9-TAE4uBhSUQ7wEJdu0X8PUA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/MBaw_6cPmAw/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB7Pbplbd-B5rOEe8JlTPYB2mLXyg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build a Popup With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build a Popup With JavaScript by Web Dev Simplified 3 years ago 16 minutes 276,754 views" + } + } + }, + "index":{ + "simpleText":"16" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CNABEMY0GA8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"16 minutes, 55 seconds" + } + }, + "simpleText":"16:55" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CNABEMY0GA8iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=MBaw_6cPmAw&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=16", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"MBaw_6cPmAw", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":15, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3016b0ffa70f980c&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1015", + "trackingParams":"CNABEMY0GA8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CNEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CNEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"MBaw_6cPmAw", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CNEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "MBaw_6cPmAw" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "MBaw_6cPmAw" + ] + } + } + ] + } + }, + "trackingParams":"CNEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CNABEMY0GA8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"16 minutes, 55 seconds" + } + }, + "simpleText":"16:55" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"276K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"VdqtdKXxKhM", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/VdqtdKXxKhM/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLASqSrOK6m3mF0V5w73VvMsOTvorw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/VdqtdKXxKhM/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDLtUph70KJ-HpsGe7fhdJnmk99WA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/VdqtdKXxKhM/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCVo5Xp-4LcG7YyImKlPMkxtZ1JBQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/VdqtdKXxKhM/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCPPR9HF-rpOC29S9SOeBdviJ1zMA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create This Complex Animated Multistep Form?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create This Complex Animated Multistep Form? by Web Dev Simplified 9 months ago 39 minutes 256,024 views" + } + } + }, + "index":{ + "simpleText":"17" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CM4BEMY0GBAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 42 seconds" + } + }, + "simpleText":"39:42" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CM4BEMY0GBAiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=VdqtdKXxKhM&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=17", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"VdqtdKXxKhM", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":16, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=55daad74a5f12a13&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2382", + "trackingParams":"CM4BEMY0GBAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CM8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CM8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"VdqtdKXxKhM", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CM8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "VdqtdKXxKhM" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "VdqtdKXxKhM" + ] + } + } + ] + } + }, + "trackingParams":"CM8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CM4BEMY0GBAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 42 seconds" + } + }, + "simpleText":"39:42" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"256K views" + }, + { + "text":" • " + }, + { + "text":"9 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"NZKUirTtxcg", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/NZKUirTtxcg/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBA5-xx_V00po3rPO8SfdKQi6XjpA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/NZKUirTtxcg/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCsN0bp-PCA5KYXyAXwulRNsrnNeA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/NZKUirTtxcg/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDrCEWqrTUUj7K-dU7UUInLg4eu4g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/NZKUirTtxcg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBhSV9avYQXXhULOgA-h0EuVCeSNg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Infinite Scrolling With React - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Infinite Scrolling With React - Tutorial by Web Dev Simplified 3 years ago 25 minutes 251,759 views" + } + } + }, + "index":{ + "simpleText":"18" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMwBEMY0GBEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 28 seconds" + } + }, + "simpleText":"25:28" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMwBEMY0GBEiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=NZKUirTtxcg&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=18", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"NZKUirTtxcg", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":17, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3592948ab4edc5c8&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1528", + "trackingParams":"CMwBEMY0GBEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CM0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CM0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"NZKUirTtxcg", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CM0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "NZKUirTtxcg" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "NZKUirTtxcg" + ] + } + } + ] + } + }, + "trackingParams":"CM0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMwBEMY0GBEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 28 seconds" + } + }, + "simpleText":"25:28" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"251K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Xcet6msf3eE", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Xcet6msf3eE/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC9VfmVXI8frB86QeVAXeFSvH5zSQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Xcet6msf3eE/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDA_72OHvv8HXCR6RLXnOm3RadvUA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Xcet6msf3eE/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBSr4W_cAZ7nqKj2Xj6o2SPKTyVjw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Xcet6msf3eE/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAiI4_SWxNgY9r9-UVcBqBXauBbaA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Better Spotify With React" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Better Spotify With React by Web Dev Simplified 1 year ago 58 minutes 247,994 views" + } + } + }, + "index":{ + "simpleText":"19" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMoBEMY0GBIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"58 minutes, 17 seconds" + } + }, + "simpleText":"58:17" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMoBEMY0GBIiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Xcet6msf3eE&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=19", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Xcet6msf3eE", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":18, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=5dc7adea6b1fdde1&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3497", + "trackingParams":"CMoBEMY0GBIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CMsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CMsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Xcet6msf3eE", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CMsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Xcet6msf3eE" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Xcet6msf3eE" + ] + } + } + ] + } + }, + "trackingParams":"CMsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMoBEMY0GBIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"58 minutes, 17 seconds" + } + }, + "simpleText":"58:17" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"247K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"TlP5WIxVirU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/TlP5WIxVirU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDXeSYq_1EPX_3FiOS4RiM59zhxeQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/TlP5WIxVirU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAV35IZj60Qincp8xt6cH4ydUpTaA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/TlP5WIxVirU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDyKcx9AJya3U08Y34ZqwMcwJUjYg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/TlP5WIxVirU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBBCfzoNCnXIMiOh53xSJAqw7wcnA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A Search Bar In JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A Search Bar In JavaScript by Web Dev Simplified 10 months ago 14 minutes, 28 seconds 241,533 views" + } + } + }, + "index":{ + "simpleText":"20" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMgBEMY0GBMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 28 seconds" + } + }, + "simpleText":"14:28" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMgBEMY0GBMiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=TlP5WIxVirU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=20", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"TlP5WIxVirU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":19, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7s.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=4e53f9588c558ab5&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"868", + "trackingParams":"CMgBEMY0GBMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CMkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CMkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"TlP5WIxVirU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CMkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "TlP5WIxVirU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "TlP5WIxVirU" + ] + } + } + ] + } + }, + "trackingParams":"CMkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMgBEMY0GBMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 28 seconds" + } + }, + "simpleText":"14:28" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"241K views" + }, + { + "text":" • " + }, + { + "text":"10 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"jI4K7L-LI58", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/jI4K7L-LI58/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCqJwplnVgVDeGxrPru01rWmG32qQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/jI4K7L-LI58/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAsGF3c0TDn7-gsN0WhAEm5-Q_V_w", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/jI4K7L-LI58/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCY2XENrvx3yW0GtcoI7WgGSz2-ig", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/jI4K7L-LI58/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDsFaTK9T1FmZqu9OpGjkq4CVBONg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Manage User Roles In Node.js" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Manage User Roles In Node.js by Web Dev Simplified 2 years ago 22 minutes 238,204 views" + } + } + }, + "index":{ + "simpleText":"21" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMYBEMY0GBQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"22 minutes, 45 seconds" + } + }, + "simpleText":"22:45" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMYBEMY0GBQiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=jI4K7L-LI58&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=21", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"jI4K7L-LI58", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":20, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nel.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=8c8e0aecbf8b239f&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1365", + "trackingParams":"CMYBEMY0GBQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CMcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CMcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"jI4K7L-LI58", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CMcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "jI4K7L-LI58" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "jI4K7L-LI58" + ] + } + } + ] + } + }, + "trackingParams":"CMcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMYBEMY0GBQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"22 minutes, 45 seconds" + } + }, + "simpleText":"22:45" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"238K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"jfYWwQrtzzY", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/jfYWwQrtzzY/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCZoFK253Wm43Wd1qkZpfQfEehmfA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/jfYWwQrtzzY/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCCPsRV_wovUFBM-UFCMI7K8dfkIQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/jfYWwQrtzzY/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC7VPXjCnWNFPjx2VkW24Idp--dlA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/jfYWwQrtzzY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCbYFy3kaT4Ro1b3HN0IQZPRWf-aA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build Sortable Drag & Drop With Vanilla Javascript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build Sortable Drag & Drop With Vanilla Javascript by Web Dev Simplified 2 years ago 22 minutes 232,301 views" + } + } + }, + "index":{ + "simpleText":"22" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMQBEMY0GBUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"22 minutes, 22 seconds" + } + }, + "simpleText":"22:22" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMQBEMY0GBUiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=jfYWwQrtzzY&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=22", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"jfYWwQrtzzY", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":21, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=8df616c10aedcf36&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1342", + "trackingParams":"CMQBEMY0GBUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CMUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CMUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"jfYWwQrtzzY", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CMUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "jfYWwQrtzzY" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "jfYWwQrtzzY" + ] + } + } + ] + } + }, + "trackingParams":"CMUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMQBEMY0GBUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"22 minutes, 22 seconds" + } + }, + "simpleText":"22:22" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"232K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"N8BZvfRD_eU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/N8BZvfRD_eU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCyvxrLyYMQ4ta6O1WtxnU_4bCUrQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/N8BZvfRD_eU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDgfWDXmOXTHopoaaX3ehQ0nL686g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/N8BZvfRD_eU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB8VNGfpf9xG3kQgMaRiyLAI8Y-aA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/N8BZvfRD_eU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC_MRsWPSCqg4wT4htBnlHSInyn_Q", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create Accessible CSS Toggle Buttons?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create Accessible CSS Toggle Buttons? by Web Dev Simplified 9 months ago 24 minutes 223,541 views" + } + } + }, + "index":{ + "simpleText":"23" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMIBEMY0GBYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 14 seconds" + } + }, + "simpleText":"24:14" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMIBEMY0GBYiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=N8BZvfRD_eU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=23", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"N8BZvfRD_eU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":22, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=37c059bdf443fde5&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1454", + "trackingParams":"CMIBEMY0GBYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CMMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CMMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"N8BZvfRD_eU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CMMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "N8BZvfRD_eU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "N8BZvfRD_eU" + ] + } + } + ] + } + }, + "trackingParams":"CMMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMIBEMY0GBYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 14 seconds" + } + }, + "simpleText":"24:14" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"223K views" + }, + { + "text":" • " + }, + { + "text":"9 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"mxHoPYFsTuk", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/mxHoPYFsTuk/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBWIKFLiVK2CFBNLMjaExEpvc3R3w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/mxHoPYFsTuk/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCdnBGaGl1MYFoyqMIYIZ-dwHOqPw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/mxHoPYFsTuk/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCOcha2ImGHcyddxCcMyLlR_Xq97g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/mxHoPYFsTuk/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBRK45Y4ckl-fWT7OVAX6QGEz48Xw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"This Simple Trick Makes Your Website 83% Better Looking" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"This Simple Trick Makes Your Website 83% Better Looking by Web Dev Simplified 10 months ago 10 minutes, 57 seconds 214,171 views" + } + } + }, + "index":{ + "simpleText":"24" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CMABEMY0GBciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"10 minutes, 57 seconds" + } + }, + "simpleText":"10:57" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CMABEMY0GBciEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=mxHoPYFsTuk&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=24", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"mxHoPYFsTuk", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":23, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=9b11e83d816c4ee9&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"657", + "trackingParams":"CMABEMY0GBciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CMEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CMEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"mxHoPYFsTuk", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CMEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "mxHoPYFsTuk" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "mxHoPYFsTuk" + ] + } + } + ] + } + }, + "trackingParams":"CMEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CMABEMY0GBciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"10 minutes, 57 seconds" + } + }, + "simpleText":"10:57" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"214K views" + }, + { + "text":" • " + }, + { + "text":"10 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"ZVug65gW-fc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/ZVug65gW-fc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCBLUkDI9mlH6ySvKJQRBwrZiWlXA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/ZVug65gW-fc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDP57nu9hstpOonQy4EJhOyZIW78w", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/ZVug65gW-fc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAin9szA8U1I5MFvBIprCXKznO0SQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/ZVug65gW-fc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAo1urWZWUWhFEzM1T-FffjufK5TA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create Skeleton Loading Animation With CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create Skeleton Loading Animation With CSS by Web Dev Simplified 1 year ago 9 minutes, 59 seconds 210,455 views" + } + } + }, + "index":{ + "simpleText":"25" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CL4BEMY0GBgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"9 minutes, 59 seconds" + } + }, + "simpleText":"9:59" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CL4BEMY0GBgiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=ZVug65gW-fc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=25", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"ZVug65gW-fc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":24, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=655ba0eb9816f9f7&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"599", + "trackingParams":"CL4BEMY0GBgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CL8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CL8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"ZVug65gW-fc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CL8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "ZVug65gW-fc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "ZVug65gW-fc" + ] + } + } + ] + } + }, + "trackingParams":"CL8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CL4BEMY0GBgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"9 minutes, 59 seconds" + } + }, + "simpleText":"9:59" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"210K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"DgRrrOt0Vr8", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/DgRrrOt0Vr8/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCgIgmvw1AO2MIztIPlvndiSV4DVA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/DgRrrOt0Vr8/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBus_-anb6af8e_s0s4ikSP6VDozQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/DgRrrOt0Vr8/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB3sekAdEaW6wucDLQVoAEkdjP0Zg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/DgRrrOt0Vr8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLABW5ak3ayD9_bKU-qYfDf3zSPTUg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"The Perfect Beginner React Project" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"The Perfect Beginner React Project by Web Dev Simplified 1 year ago 31 minutes 193,064 views" + } + } + }, + "index":{ + "simpleText":"26" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLwBEMY0GBkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"31 minutes, 55 seconds" + } + }, + "simpleText":"31:55" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLwBEMY0GBkiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=DgRrrOt0Vr8&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=26", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"DgRrrOt0Vr8", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":25, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0e046baceb7456bf&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1915", + "trackingParams":"CLwBEMY0GBkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CL0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CL0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"DgRrrOt0Vr8", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CL0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "DgRrrOt0Vr8" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "DgRrrOt0Vr8" + ] + } + } + ] + } + }, + "trackingParams":"CL0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLwBEMY0GBkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"31 minutes, 55 seconds" + } + }, + "simpleText":"31:55" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"193K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"eVwH3VL1EsA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/eVwH3VL1EsA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBLmRR0e7vFyEFJDK6095mSaeW8-g", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/eVwH3VL1EsA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDRiv4E3i53dQDwO9iNV70aSw4CAQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/eVwH3VL1EsA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBfLQTImYwrFa8HXOIs_Prsx0-jpA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/eVwH3VL1EsA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD8FXkRTVaqz1WmRZkPlJcJqhFkNg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build Amazing Page Transitions In Only 12 Minutes" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build Amazing Page Transitions In Only 12 Minutes by Web Dev Simplified 3 years ago 12 minutes, 3 seconds 187,759 views" + } + } + }, + "index":{ + "simpleText":"27" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLoBEMY0GBoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 3 seconds" + } + }, + "simpleText":"12:03" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLoBEMY0GBoiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=eVwH3VL1EsA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=27", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"eVwH3VL1EsA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":26, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=795c07dd52f512c0&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"723", + "trackingParams":"CLoBEMY0GBoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CLsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CLsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"eVwH3VL1EsA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CLsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "eVwH3VL1EsA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "eVwH3VL1EsA" + ] + } + } + ] + } + }, + "trackingParams":"CLsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLoBEMY0GBoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 3 seconds" + } + }, + "simpleText":"12:03" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"187K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"3eSNePqRVzs", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/3eSNePqRVzs/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB2KiqMGsPWoiSqhQ_V1AhJvWBolA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/3eSNePqRVzs/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLASC0uQxm8q13JQvGTGBnPQbVl_vQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/3eSNePqRVzs/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC-6p2OYRIpJdmZ49Afw-YV_7eywA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/3eSNePqRVzs/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAn_QoelrCr9cpe5MpatczTtvEJsA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create This Tricky Animated CSS Sidebar?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create This Tricky Animated CSS Sidebar? by Web Dev Simplified 10 months ago 1 hour, 1 minute 182,828 views" + } + } + }, + "index":{ + "simpleText":"28" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLgBEMY0GBsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 37 seconds" + } + }, + "simpleText":"1:01:37" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLgBEMY0GBsiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=3eSNePqRVzs&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=28", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"3eSNePqRVzs", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":27, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=dde48d78fa91573b&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3697", + "trackingParams":"CLgBEMY0GBsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CLkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CLkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"3eSNePqRVzs", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CLkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "3eSNePqRVzs" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "3eSNePqRVzs" + ] + } + } + ] + } + }, + "trackingParams":"CLkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLgBEMY0GBsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 37 seconds" + } + }, + "simpleText":"1:01:37" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"182K views" + }, + { + "text":" • " + }, + { + "text":"10 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"AZ4PdALMqx0", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/AZ4PdALMqx0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBDDc6oQSxKtTu7BwqZ0tbpY5Mknw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/AZ4PdALMqx0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDTeR5hhZE5G4UAa6EcLZgS-4qM9A", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/AZ4PdALMqx0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBP-4dRhC7XOjZzjHpt-J8Oj9IGqQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/AZ4PdALMqx0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDG11em57nwHED-PbQTJTbu_IDy0Q", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Easy Face Recognition Tutorial With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Easy Face Recognition Tutorial With JavaScript by Web Dev Simplified 3 years ago 21 minutes 181,165 views" + } + } + }, + "index":{ + "simpleText":"29" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLYBEMY0GBwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"21 minutes, 52 seconds" + } + }, + "simpleText":"21:52" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLYBEMY0GBwiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=AZ4PdALMqx0&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=29", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"AZ4PdALMqx0", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":28, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=019e0f7402ccab1d&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1312", + "trackingParams":"CLYBEMY0GBwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CLcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CLcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"AZ4PdALMqx0", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CLcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "AZ4PdALMqx0" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "AZ4PdALMqx0" + ] + } + } + ] + } + }, + "trackingParams":"CLcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLYBEMY0GBwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"21 minutes, 52 seconds" + } + }, + "simpleText":"21:52" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"181K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"ZX3qt0UWifc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/ZX3qt0UWifc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCphF3x2vq1TtgnIFPJ8w0_vfMxsQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/ZX3qt0UWifc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBm1THRCOZ9ApoLlaKaas95FgO2ig", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/ZX3qt0UWifc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB3ThqNAvcePkGbfQTPSb8JHH9PHQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/ZX3qt0UWifc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBp7zWD8LuOzM2k__Cj2P03OYAN0g", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Create A Paginated API With Node.js - Complete Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Create A Paginated API With Node.js - Complete Tutorial by Web Dev Simplified 3 years ago 23 minutes 147,854 views" + } + } + }, + "index":{ + "simpleText":"30" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLQBEMY0GB0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"23 minutes, 21 seconds" + } + }, + "simpleText":"23:21" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLQBEMY0GB0iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=ZX3qt0UWifc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=30", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"ZX3qt0UWifc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":29, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=657deab7451689f7&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1401", + "trackingParams":"CLQBEMY0GB0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CLUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CLUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"ZX3qt0UWifc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CLUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "ZX3qt0UWifc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "ZX3qt0UWifc" + ] + } + } + ] + } + }, + "trackingParams":"CLUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLQBEMY0GB0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"23 minutes, 21 seconds" + } + }, + "simpleText":"23:21" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"147K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"lATafp15HWA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/lATafp15HWA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAxFExHWUtlqi5BsCt3SP8Rdc5rbQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/lATafp15HWA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAOTm2S-7LA8LwZMuIS9_VQpItH_Q", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/lATafp15HWA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDOEkhuo0CZ1k4xxhoeTBexh75jgQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/lATafp15HWA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCrsXrgaTDC5Swjy96rbKPMYtUj6A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create An Advanced Shopping Cart With React and TypeScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create An Advanced Shopping Cart With React and TypeScript by Web Dev Simplified 5 months ago 1 hour, 1 minute 148,004 views" + } + } + }, + "index":{ + "simpleText":"31" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLIBEMY0GB4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 38 seconds" + } + }, + "simpleText":"1:01:38" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLIBEMY0GB4iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=lATafp15HWA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=31", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"lATafp15HWA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":30, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=9404da7e9d791d60&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3698", + "trackingParams":"CLIBEMY0GB4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CLMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CLMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"lATafp15HWA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CLMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "lATafp15HWA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "lATafp15HWA" + ] + } + } + ] + } + }, + "trackingParams":"CLMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLIBEMY0GB4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 38 seconds" + } + }, + "simpleText":"1:01:38" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"148K views" + }, + { + "text":" • " + }, + { + "text":"5 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"SLpUKAGnm-g", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/SLpUKAGnm-g/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAuOe7rbkaEcPgrlB-MhaRjOJOH9g", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/SLpUKAGnm-g/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD1zEi-GzWGlrwBIs341y9xNjPhLQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/SLpUKAGnm-g/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAbRuAmJrvsrZ3j8IfDNIFFHE4IzQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/SLpUKAGnm-g/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCT5JVn67sOUGU9f_uUEj3pnsnj_g", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A URL Shortener With Node.js, Express, and MongoDB" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A URL Shortener With Node.js, Express, and MongoDB by Web Dev Simplified 2 years ago 25 minutes 138,171 views" + } + } + }, + "index":{ + "simpleText":"32" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CLABEMY0GB8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 38 seconds" + } + }, + "simpleText":"25:38" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CLABEMY0GB8iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=SLpUKAGnm-g&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=32", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"SLpUKAGnm-g", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":31, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=48ba542801a79be8&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1538", + "trackingParams":"CLABEMY0GB8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CLEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CLEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"SLpUKAGnm-g", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CLEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "SLpUKAGnm-g" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "SLpUKAGnm-g" + ] + } + } + ] + } + }, + "trackingParams":"CLEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CLABEMY0GB8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 38 seconds" + } + }, + "simpleText":"25:38" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"138K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"9HcxHDS2w1s", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/9HcxHDS2w1s/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDczTFtQlReq3zCPcRhyUjXEye2oQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/9HcxHDS2w1s/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAbHqrycN0MGc7Po2y7S1KziO1GeA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/9HcxHDS2w1s/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDczWAaPNUN_WuCBBZLHlXZiry0aw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/9HcxHDS2w1s/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA6syt2L4fD6pK2SZf3PnB8Y7-zag", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create An Animated Image Carousel With CSS/JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create An Animated Image Carousel With CSS/JavaScript by Web Dev Simplified 1 year ago 14 minutes, 10 seconds 134,167 views" + } + } + }, + "index":{ + "simpleText":"33" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CK4BEMY0GCAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 10 seconds" + } + }, + "simpleText":"14:10" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CK4BEMY0GCAiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=9HcxHDS2w1s&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=33", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"9HcxHDS2w1s", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":32, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=f477311c34b6c35b&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"850", + "trackingParams":"CK4BEMY0GCAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CK8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CK8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"9HcxHDS2w1s", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CK8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "9HcxHDS2w1s" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "9HcxHDS2w1s" + ] + } + } + ] + } + }, + "trackingParams":"CK8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CK4BEMY0GCAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 10 seconds" + } + }, + "simpleText":"14:10" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"134K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"o3ZUc7zH8BE", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/o3ZUc7zH8BE/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBEsaU-FoWceXogOuAo6WnKtgTMpg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/o3ZUc7zH8BE/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDswsMiSx5VEZ4rkIijxfGFnKcyIQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/o3ZUc7zH8BE/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAKFXhLj542Ef24SIHG_axM4N0F2A", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/o3ZUc7zH8BE/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB0EPbphnxNtnfV8xgq_1mriAhZtw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Pokémon Application With React - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Pokémon Application With React - Tutorial by Web Dev Simplified 3 years ago 22 minutes 132,711 views" + } + } + }, + "index":{ + "simpleText":"34" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKwBEMY0GCEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"22 minutes, 47 seconds" + } + }, + "simpleText":"22:47" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKwBEMY0GCEiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=o3ZUc7zH8BE&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=34", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"o3ZUc7zH8BE", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":33, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=a3765473bcc7f011&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1367", + "trackingParams":"CKwBEMY0GCEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CK0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CK0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"o3ZUc7zH8BE", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CK0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "o3ZUc7zH8BE" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "o3ZUc7zH8BE" + ] + } + } + ] + } + }, + "trackingParams":"CK0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKwBEMY0GCEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"22 minutes, 47 seconds" + } + }, + "simpleText":"22:47" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"132K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"iRaelG7v0OU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/iRaelG7v0OU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC10a1YdBu-D1rG7aR2MoRaHh6Zvg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/iRaelG7v0OU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCxOqvRLdelvIYwNWRvDx5eWtZc5Q", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/iRaelG7v0OU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDJ8sh5RTpENjAGAUaM_hL2d9S2Bw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/iRaelG7v0OU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBu6KecNvplSQXvlMkanEYEnDm98A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Google Docs Clone With React, Socket.io, and MongoDB" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Google Docs Clone With React, Socket.io, and MongoDB by Web Dev Simplified 1 year ago 46 minutes 128,519 views" + } + } + }, + "index":{ + "simpleText":"35" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKoBEMY0GCIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 52 seconds" + } + }, + "simpleText":"46:52" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKoBEMY0GCIiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=iRaelG7v0OU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=35", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"iRaelG7v0OU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":34, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=89169e946eefd0e5&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2812", + "trackingParams":"CKoBEMY0GCIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CKsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CKsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"iRaelG7v0OU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CKsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "iRaelG7v0OU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "iRaelG7v0OU" + ] + } + } + ] + } + }, + "trackingParams":"CKsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKoBEMY0GCIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 52 seconds" + } + }, + "simpleText":"46:52" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"128K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"SLfhMt5OUPI", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/SLfhMt5OUPI/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCjkbVTOWu8xYibDj97fbt7THWtSg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/SLfhMt5OUPI/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAwTvZ8wed9v6GhpMeMYUFcLcckwA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/SLfhMt5OUPI/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBYgdVjvJv0Hy2MImlIgR9A7nI0SA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/SLfhMt5OUPI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCboWcaNhC49AdeqUitn_fZ-QqjBw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A Navbar In React With Routing" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A Navbar In React With Routing by Web Dev Simplified 6 months ago 19 minutes 129,196 views" + } + } + }, + "index":{ + "simpleText":"36" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKgBEMY0GCMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"19 minutes, 16 seconds" + } + }, + "simpleText":"19:16" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKgBEMY0GCMiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=SLfhMt5OUPI&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=36", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"SLfhMt5OUPI", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":35, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=48b7e132de4e50f2&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1156", + "trackingParams":"CKgBEMY0GCMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CKkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CKkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"SLfhMt5OUPI", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CKkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "SLfhMt5OUPI" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "SLfhMt5OUPI" + ] + } + } + ] + } + }, + "trackingParams":"CKkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKgBEMY0GCMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"19 minutes, 16 seconds" + } + }, + "simpleText":"19:16" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"129K views" + }, + { + "text":" • " + }, + { + "text":"6 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"yz8x71BiGXg", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/yz8x71BiGXg/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDoxtVNkXi0QX56H1q35Pgoa4cHaQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/yz8x71BiGXg/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB31l7E6hSnxW-gE6krRbBnX9_SrQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/yz8x71BiGXg/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCjfclxsSandVkPIbQKeoUtuPeJXw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/yz8x71BiGXg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDmRQJbBjzOWriSyWK38XMe1vcPFw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A Budget App With React" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A Budget App With React by Web Dev Simplified 10 months ago 1 hour 127,681 views" + } + } + }, + "index":{ + "simpleText":"37" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKYBEMY0GCQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 41 seconds" + } + }, + "simpleText":"1:00:41" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKYBEMY0GCQiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=yz8x71BiGXg&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=37", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"yz8x71BiGXg", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":36, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=cb3f31ef50621978&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3641", + "trackingParams":"CKYBEMY0GCQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CKcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CKcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"yz8x71BiGXg", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CKcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "yz8x71BiGXg" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "yz8x71BiGXg" + ] + } + } + ] + } + }, + "trackingParams":"CKcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKYBEMY0GCQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 41 seconds" + } + }, + "simpleText":"1:00:41" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"127K views" + }, + { + "text":" • " + }, + { + "text":"10 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"1r-F3FIONl8", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/1r-F3FIONl8/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLABOqdwsecJba5OoVDDngBBBO9vWQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/1r-F3FIONl8/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAA7ekxdaXwEBAe4FSCZ0NywKs7ig", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/1r-F3FIONl8/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDonREl_lek4jlYksjLH_h866zKgA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/1r-F3FIONl8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBB8N9dv-l6Kd9mCbLyp8i7cXVgWQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Accept Payments With Stripe" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Accept Payments With Stripe by Web Dev Simplified 1 year ago 23 minutes 127,127 views" + } + } + }, + "index":{ + "simpleText":"38" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKQBEMY0GCUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"23 minutes, 5 seconds" + } + }, + "simpleText":"23:05" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKQBEMY0GCUiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=1r-F3FIONl8&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=38", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"1r-F3FIONl8", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":37, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=d6bf85dc520e365f&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1385", + "trackingParams":"CKQBEMY0GCUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CKUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CKUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"1r-F3FIONl8", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CKUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "1r-F3FIONl8" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "1r-F3FIONl8" + ] + } + } + ] + } + }, + "trackingParams":"CKUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKQBEMY0GCUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"23 minutes, 5 seconds" + } + }, + "simpleText":"23:05" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"127K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Fc-oyl31mRI", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Fc-oyl31mRI/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBdTqjG0Q_OpSX3WW_gSp_ueVG_8w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Fc-oyl31mRI/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAcyJzixFAemKJYChoFeVhqIGwJXA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Fc-oyl31mRI/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCsyNSGvPkBBVnvc49wMqPbHTHh1A", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Fc-oyl31mRI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBUTy0PJKgKTxFfo4R1p2sBOwR10g", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"The Perfect Project For Your Portfolio" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"The Perfect Project For Your Portfolio by Web Dev Simplified 1 year ago 48 minutes 126,209 views" + } + } + }, + "index":{ + "simpleText":"39" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKIBEMY0GCYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"48 minutes, 30 seconds" + } + }, + "simpleText":"48:30" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKIBEMY0GCYiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Fc-oyl31mRI&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=39", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Fc-oyl31mRI", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":38, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=15cfa8ca5df59912&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2910", + "trackingParams":"CKIBEMY0GCYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CKMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CKMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Fc-oyl31mRI", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CKMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Fc-oyl31mRI" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Fc-oyl31mRI" + ] + } + } + ] + } + }, + "trackingParams":"CKMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKIBEMY0GCYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"48 minutes, 30 seconds" + } + }, + "simpleText":"48:30" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"126K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"28VfzEiJgy4", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/28VfzEiJgy4/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLA1NzTDbEwrRrGt2b6No_kK644j3Q", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/28VfzEiJgy4/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCbViYytUro1-GYmzvi4U9Nbgv2bQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/28VfzEiJgy4/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCqUaXlr_fk91EuGnHvESNbRH4M6Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/28VfzEiJgy4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDwtleavLR2Egz96mBi6v4k5TGYmw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How to Code a Card Matching Game" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How to Code a Card Matching Game by Web Dev Simplified 4 years ago 39 minutes 125,527 views" + } + } + }, + "index":{ + "simpleText":"40" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CKABEMY0GCciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 59 seconds" + } + }, + "simpleText":"39:59" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CKABEMY0GCciEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=28VfzEiJgy4&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=40", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"28VfzEiJgy4", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":39, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=dbc55fcc4889832e&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2399", + "trackingParams":"CKABEMY0GCciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CKEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CKEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"28VfzEiJgy4", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CKEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "28VfzEiJgy4" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "28VfzEiJgy4" + ] + } + } + ] + } + }, + "trackingParams":"CKEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CKABEMY0GCciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 59 seconds" + } + }, + "simpleText":"39:59" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"125K views" + }, + { + "text":" • " + }, + { + "text":"4 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"W7FaYfuwu70", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/W7FaYfuwu70/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBpNP23pBb07XnAY7DculiCwttiWg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/W7FaYfuwu70/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCEd4BkIhMW3Lmr3NONalvMuqe0YQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/W7FaYfuwu70/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCHuCHrib_vq7_YowuJd94Uxlbagw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/W7FaYfuwu70/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAJncigBvt2lC_vkCR9XFgxV5IweQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How to Code A Better To-Do List - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How to Code A Better To-Do List - Tutorial by Web Dev Simplified 3 years ago 39 minutes 124,982 views" + } + } + }, + "index":{ + "simpleText":"41" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJ4BEMY0GCgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 16 seconds" + } + }, + "simpleText":"39:16" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJ4BEMY0GCgiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=W7FaYfuwu70&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=41", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"W7FaYfuwu70", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":40, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7z.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=5bb15a61fbb0bbbd&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2356", + "trackingParams":"CJ4BEMY0GCgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJ8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJ8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"W7FaYfuwu70", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJ8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "W7FaYfuwu70" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "W7FaYfuwu70" + ] + } + } + ] + } + }, + "trackingParams":"CJ8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJ4BEMY0GCgiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 16 seconds" + } + }, + "simpleText":"39:16" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"124K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"vjco5yKZpU8", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/vjco5yKZpU8/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAMiooFx0QS6OA0TMZSMQL2T7orVw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/vjco5yKZpU8/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCHprFtSYS_2D9wu4xodpG2OzfGfQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/vjco5yKZpU8/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA9iKVMruRnLCZzAmF6Vq_Byo6tkA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/vjco5yKZpU8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDlCbHVpjmLV16QFjlN_Q9a0zg6Hw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Piano With JavaScript - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Piano With JavaScript - Tutorial by Web Dev Simplified 2 years ago 19 minutes 123,699 views" + } + } + }, + "index":{ + "simpleText":"42" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJwBEMY0GCkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"19 minutes, 12 seconds" + } + }, + "simpleText":"19:12" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJwBEMY0GCkiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=vjco5yKZpU8&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=42", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"vjco5yKZpU8", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":41, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7s.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=be3728e72299a54f&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1152", + "trackingParams":"CJwBEMY0GCkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJ0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJ0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"vjco5yKZpU8", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJ0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "vjco5yKZpU8" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "vjco5yKZpU8" + ] + } + } + ] + } + }, + "trackingParams":"CJ0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJwBEMY0GCkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"19 minutes, 12 seconds" + } + }, + "simpleText":"19:12" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"123K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"NxRwIZWjLtE", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/NxRwIZWjLtE/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD75v2qUzmgaBrGUE7UhomjCa_O-g", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/NxRwIZWjLtE/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBU2Hh1Xmqdx3EUaflvbTdXRnbOGQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/NxRwIZWjLtE/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA2V3ypxl8Xrdn4_KyUNSafrw0v9Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/NxRwIZWjLtE/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAs6ssJ9PK9J98lPQBmtbWodul5lw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Simple Card Game With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Simple Card Game With JavaScript by Web Dev Simplified 2 years ago 43 minutes 119,247 views" + } + } + }, + "index":{ + "simpleText":"43" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJoBEMY0GCoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"43 minutes, 4 seconds" + } + }, + "simpleText":"43:04" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJoBEMY0GCoiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=NxRwIZWjLtE&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=43", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"NxRwIZWjLtE", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":42, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3714702195a32ed1&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2584", + "trackingParams":"CJoBEMY0GCoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"NxRwIZWjLtE", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "NxRwIZWjLtE" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "NxRwIZWjLtE" + ] + } + } + ] + } + }, + "trackingParams":"CJsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJoBEMY0GCoiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"43 minutes, 4 seconds" + } + }, + "simpleText":"43:04" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"119K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"AWCCgQMwdik", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/AWCCgQMwdik/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDNNgY-gFdmLRuPrdbl9lZ-oa_OMQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/AWCCgQMwdik/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBhur0VugHfUDsAkh1HCjRZ6wWu1g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/AWCCgQMwdik/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCtNPL6APQ0ZyxolU0yM28PyKwnSQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/AWCCgQMwdik/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB3940xeU4vQW7ZKEVF1giA8Pc_OQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create An Ocean With CSS/JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create An Ocean With CSS/JavaScript by Web Dev Simplified 1 year ago 30 minutes 117,253 views" + } + } + }, + "index":{ + "simpleText":"44" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJgBEMY0GCsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"30 minutes, 4 seconds" + } + }, + "simpleText":"30:04" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJgBEMY0GCsiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=AWCCgQMwdik&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=44", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"AWCCgQMwdik", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":43, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0160828103307629&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1804", + "trackingParams":"CJgBEMY0GCsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"AWCCgQMwdik", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "AWCCgQMwdik" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "AWCCgQMwdik" + ] + } + } + ] + } + }, + "trackingParams":"CJkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJgBEMY0GCsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"30 minutes, 4 seconds" + } + }, + "simpleText":"30:04" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"117K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"m6PDUIF24v4", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/m6PDUIF24v4/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAl-FYaOeVzJEeLiicKzgPxw4RivA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/m6PDUIF24v4/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBvIbJtY_DNQ2mKCEVvxW5cSkPmhA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/m6PDUIF24v4/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA6QgzOYsQmptOgJXjCgmbrijXtIw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/m6PDUIF24v4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCJyc7MnniHaAanvve_loeourX2MQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Learn GSAP In 23 Minutes" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Learn GSAP In 23 Minutes by Web Dev Simplified 2 years ago 23 minutes 113,875 views" + } + } + }, + "index":{ + "simpleText":"45" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJYBEMY0GCwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"23 minutes, 22 seconds" + } + }, + "simpleText":"23:22" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJYBEMY0GCwiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=m6PDUIF24v4&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=45", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"m6PDUIF24v4", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":44, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=9ba3c3508176e2fe&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1402", + "trackingParams":"CJYBEMY0GCwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"m6PDUIF24v4", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "m6PDUIF24v4" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "m6PDUIF24v4" + ] + } + } + ] + } + }, + "trackingParams":"CJcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJYBEMY0GCwiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"23 minutes, 22 seconds" + } + }, + "simpleText":"23:22" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"113K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"6XTRElVAZ9Y", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/6XTRElVAZ9Y/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCu7UI6YK8TVKtQxOSUHi7p_K_dFg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/6XTRElVAZ9Y/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCUKheQIdHx8IWzPKo7YAHk_SXG-g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/6XTRElVAZ9Y/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDa8FOu9Zv4-M-X5zjpb0sZ153P4A", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/6XTRElVAZ9Y/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDzaAmnUsIILgywO9cev3_pZmxp3w", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Google Drive Clone With Firebase" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Google Drive Clone With Firebase by Web Dev Simplified 1 year ago 1 hour, 51 minutes 110,531 views" + } + } + }, + "index":{ + "simpleText":"46" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJQBEMY0GC0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 51 minutes, 41 seconds" + } + }, + "simpleText":"1:51:41" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJQBEMY0GC0iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=6XTRElVAZ9Y&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=46", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"6XTRElVAZ9Y", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":45, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=e974d112554067d6&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"6701", + "trackingParams":"CJQBEMY0GC0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"6XTRElVAZ9Y", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "6XTRElVAZ9Y" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "6XTRElVAZ9Y" + ] + } + } + ] + } + }, + "trackingParams":"CJUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJQBEMY0GC0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 51 minutes, 41 seconds" + } + }, + "simpleText":"1:51:41" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"110K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"pyySPJeRvSo", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/pyySPJeRvSo/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB8v3Atb8-NxkmN7rsULjw0Nb09ng", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/pyySPJeRvSo/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAloE8Jch6aSZkbcjGSsp5KLqq32Q", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/pyySPJeRvSo/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBPcMYlQp3nRetxj9KbX3js7GdnQA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/pyySPJeRvSo/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC14yi1XxkQVT0pbeA5K8Ks-StJ3Q", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create This Simple CSS Hover Animation?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create This Simple CSS Hover Animation? by Web Dev Simplified 9 months ago 41 minutes 110,342 views" + } + } + }, + "index":{ + "simpleText":"47" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJIBEMY0GC4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"41 minutes, 41 seconds" + } + }, + "simpleText":"41:41" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJIBEMY0GC4iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=pyySPJeRvSo&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=47", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"pyySPJeRvSo", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":46, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=a72c923c9791bd2a&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2501", + "trackingParams":"CJIBEMY0GC4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"pyySPJeRvSo", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "pyySPJeRvSo" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "pyySPJeRvSo" + ] + } + } + ] + } + }, + "trackingParams":"CJMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJIBEMY0GC4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"41 minutes, 41 seconds" + } + }, + "simpleText":"41:41" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"110K views" + }, + { + "text":" • " + }, + { + "text":"9 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"yq4BeRtUHbk", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/yq4BeRtUHbk/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDhchhel2qSux2xtYWbc6eISbxLYg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/yq4BeRtUHbk/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCEWn5HLQiAq7RqYyHRsSezpQl9Ew", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/yq4BeRtUHbk/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDTFMpyvtcJ5w9xM_seSAoWa2wp_Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/yq4BeRtUHbk/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBF4UoH1wrXechEKXGbUKCqMGgKIw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create Netflix’s Video Carousel UI?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create Netflix’s Video Carousel UI? by Web Dev Simplified 7 months ago 1 hour, 1 minute 103,476 views" + } + } + }, + "index":{ + "simpleText":"48" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CJABEMY0GC8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 10 seconds" + } + }, + "simpleText":"1:01:10" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CJABEMY0GC8iEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=yq4BeRtUHbk&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=48", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"yq4BeRtUHbk", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":47, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=caae01791b541db9&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3670", + "trackingParams":"CJABEMY0GC8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CJEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CJEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"yq4BeRtUHbk", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CJEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "yq4BeRtUHbk" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "yq4BeRtUHbk" + ] + } + } + ] + } + }, + "trackingParams":"CJEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CJABEMY0GC8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 10 seconds" + } + }, + "simpleText":"1:01:10" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"103K views" + }, + { + "text":" • " + }, + { + "text":"7 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"jBmrduvKl5w", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/jBmrduvKl5w/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCmf4BaFZtTLU49wuRPoriqaVM01w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/jBmrduvKl5w/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCvrJeceVtLPc2oGCwSAOMA7yOGOQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/jBmrduvKl5w/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAfn2H0N8lCdlEZwJu0AFogblickQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/jBmrduvKl5w/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC6J5ETGkK8Pgluq0P78N6o4_uERA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build Your First TypeScript Project - TODO List Application" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build Your First TypeScript Project - TODO List Application by Web Dev Simplified 7 months ago 28 minutes 100,767 views" + } + } + }, + "index":{ + "simpleText":"49" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CI4BEMY0GDAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 30 seconds" + } + }, + "simpleText":"28:30" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CI4BEMY0GDAiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=jBmrduvKl5w&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=49", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"jBmrduvKl5w", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":48, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=8c19ab76ebca979c&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1710", + "trackingParams":"CI4BEMY0GDAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CI8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CI8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"jBmrduvKl5w", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CI8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "jBmrduvKl5w" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "jBmrduvKl5w" + ] + } + } + ] + } + }, + "trackingParams":"CI8BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CI4BEMY0GDAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 30 seconds" + } + }, + "simpleText":"28:30" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"100K views" + }, + { + "text":" • " + }, + { + "text":"7 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"rhPSo4_Tgi0", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/rhPSo4_Tgi0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBJb5MfVUUmfV6nUtWko7n-KVxEcg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/rhPSo4_Tgi0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBqg9R7fgDoYFA4bmJjBLhZbT6Pjg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/rhPSo4_Tgi0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBn8gz1xd4DllaFfBBMKHgE0TM3jw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/rhPSo4_Tgi0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAn9npE0UgN1_-AWQWYHdPsJew_Og", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Design A YouTube Clone With HTML/CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Design A YouTube Clone With HTML/CSS by Web Dev Simplified 2 years ago 36 minutes 99,948 views" + } + } + }, + "index":{ + "simpleText":"50" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIwBEMY0GDEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"36 minutes, 12 seconds" + } + }, + "simpleText":"36:12" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIwBEMY0GDEiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=rhPSo4_Tgi0&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=50", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"rhPSo4_Tgi0", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":49, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=ae13d2a38fd3822d&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2172", + "trackingParams":"CIwBEMY0GDEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CI0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CI0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"rhPSo4_Tgi0", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CI0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "rhPSo4_Tgi0" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "rhPSo4_Tgi0" + ] + } + } + ] + } + }, + "trackingParams":"CI0BEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIwBEMY0GDEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"36 minutes, 12 seconds" + } + }, + "simpleText":"36:12" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"99K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"47eXVRJKdkU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/47eXVRJKdkU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBqOzsrAxe4qIx55gPubdGPPCbLog", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/47eXVRJKdkU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC5TeVpiyp6GrQLmaTak3NfwqxtIw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/47eXVRJKdkU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAXglxkzZijJFOBy3dv5hG21COlag", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/47eXVRJKdkU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLADbdrIF-6OGTNFF-4JAlIEPCXpjw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create Your First Game - JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create Your First Game - JavaScript by Web Dev Simplified 11 months ago 53 minutes 98,683 views" + } + } + }, + "index":{ + "simpleText":"51" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIoBEMY0GDIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"53 minutes, 35 seconds" + } + }, + "simpleText":"53:35" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIoBEMY0GDIiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=47eXVRJKdkU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=51", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"47eXVRJKdkU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":50, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=e3b79755124a7645&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3215", + "trackingParams":"CIoBEMY0GDIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CIsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CIsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"47eXVRJKdkU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CIsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "47eXVRJKdkU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "47eXVRJKdkU" + ] + } + } + ] + } + }, + "trackingParams":"CIsBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIoBEMY0GDIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"53 minutes, 35 seconds" + } + }, + "simpleText":"53:35" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"98K views" + }, + { + "text":" • " + }, + { + "text":"11 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"cH0TC9gWiAg", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/cH0TC9gWiAg/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAiFsq3u6mq0OkQz91FxzGqQTqgaQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/cH0TC9gWiAg/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD89rd3EHJKtV2YZVBhxioYjAm9Pw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/cH0TC9gWiAg/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDDhoUXfrnWIYzyDEV-YIdxu6kAYQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/cH0TC9gWiAg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBWTn1ycdczX44V3yRlvGjlfppBcQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Advanced Button Hover Animations - CSS Only" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Advanced Button Hover Animations - CSS Only by Web Dev Simplified 2 years ago 18 minutes 98,491 views" + } + } + }, + "index":{ + "simpleText":"52" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIgBEMY0GDMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"18 minutes, 22 seconds" + } + }, + "simpleText":"18:22" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIgBEMY0GDMiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=cH0TC9gWiAg&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=52", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"cH0TC9gWiAg", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":51, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=707d130bd8168808&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1102", + "trackingParams":"CIgBEMY0GDMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CIkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CIkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"cH0TC9gWiAg", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CIkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "cH0TC9gWiAg" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "cH0TC9gWiAg" + ] + } + } + ] + } + }, + "trackingParams":"CIkBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIgBEMY0GDMiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"18 minutes, 22 seconds" + } + }, + "simpleText":"18:22" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"98K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"R1S_NhKkvGA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/R1S_NhKkvGA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBiGrVP7a92-Wbm-IDM98JS0Gh4Bg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/R1S_NhKkvGA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBzrwre7-yLx3AzuOMPtIrgNEtLAw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/R1S_NhKkvGA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAjSeV451ZKvQyz5RtOEGx9YRCAlA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/R1S_NhKkvGA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAOf88lZtFoG9rQKqByEObXmGOmLg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Text Adventure Game With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Text Adventure Game With JavaScript by Web Dev Simplified 3 years ago 17 minutes 97,673 views" + } + } + }, + "index":{ + "simpleText":"53" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIYBEMY0GDQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 17 seconds" + } + }, + "simpleText":"17:17" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIYBEMY0GDQiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=R1S_NhKkvGA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=53", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"R1S_NhKkvGA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":52, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=4754bf3612a4bc60&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1037", + "trackingParams":"CIYBEMY0GDQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CIcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CIcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"R1S_NhKkvGA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CIcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "R1S_NhKkvGA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "R1S_NhKkvGA" + ] + } + } + ] + } + }, + "trackingParams":"CIcBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIYBEMY0GDQiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 17 seconds" + } + }, + "simpleText":"17:17" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"97K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"UymGJnv-WsE", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/UymGJnv-WsE/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCtpFyigJf6I40udwrRlsRYqgguVw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/UymGJnv-WsE/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAHv6lnxO7lLbHsR5gdBgE3jnJodQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/UymGJnv-WsE/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC66Wyo5mP1t9v6GYIToVdZb551AQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/UymGJnv-WsE/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCOYCfEEwAHEcjylmZfDGyQzWvz2A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build Real Time Chat Rooms With Node.js And Socket.io" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build Real Time Chat Rooms With Node.js And Socket.io by Web Dev Simplified 3 years ago 24 minutes 97,067 views" + } + } + }, + "index":{ + "simpleText":"54" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIQBEMY0GDUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 25 seconds" + } + }, + "simpleText":"24:25" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIQBEMY0GDUiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=UymGJnv-WsE&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=54", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"UymGJnv-WsE", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":53, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7nel.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=532986267bfe5ac1&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1465", + "trackingParams":"CIQBEMY0GDUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CIUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CIUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"UymGJnv-WsE", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CIUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "UymGJnv-WsE" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "UymGJnv-WsE" + ] + } + } + ] + } + }, + "trackingParams":"CIUBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIQBEMY0GDUiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 25 seconds" + } + }, + "simpleText":"24:25" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"97K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"XN5elYWiSuw", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/XN5elYWiSuw/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCyF6UTlc2Qu1QV6Yc3O468hIA48A", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/XN5elYWiSuw/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDdnfUtWIThCwnyBBPtBd9iRvWx2g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/XN5elYWiSuw/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCjzVGijNrMaZ4aL-LGuEV5cEBXlg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/XN5elYWiSuw/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA6D34CozIN_QupCi4DzkhhZhoYXA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Currency Converter In React" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Currency Converter In React by Web Dev Simplified 2 years ago 26 minutes 96,542 views" + } + } + }, + "index":{ + "simpleText":"55" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIIBEMY0GDYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"26 minutes, 37 seconds" + } + }, + "simpleText":"26:37" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIIBEMY0GDYiEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=XN5elYWiSuw&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=55", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"XN5elYWiSuw", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":54, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=5cde5e9585a24aec&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1597", + "trackingParams":"CIIBEMY0GDYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CIMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CIMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"XN5elYWiSuw", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CIMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "XN5elYWiSuw" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "XN5elYWiSuw" + ] + } + } + ] + } + }, + "trackingParams":"CIMBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIIBEMY0GDYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"26 minutes, 37 seconds" + } + }, + "simpleText":"26:37" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"96K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"ZeNyjnneq_w", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/ZeNyjnneq_w/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCz0hKjkhn2ZCG95uSIDTlhpgIO5w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/ZeNyjnneq_w/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB4I5dXBxr_Qqhr2YC3hF-mTdRmdA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/ZeNyjnneq_w/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD4SEW_bycgQhbejURQ9tvGIsOFgQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/ZeNyjnneq_w/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDkzWoXeSIKFEY4Q97UeBTYTT2XCg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create The YouTube Video Player" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create The YouTube Video Player by Web Dev Simplified 7 months ago 1 hour, 23 minutes 91,809 views" + } + } + }, + "index":{ + "simpleText":"56" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CIABEMY0GDciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 23 minutes, 28 seconds" + } + }, + "simpleText":"1:23:28" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CIABEMY0GDciEwi4_-b-6-j7AhXrwcIEHWSmBF4yCnBscHBfdmlkZW9aJFZMUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rapoBAxD6LA==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=ZeNyjnneq_w&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=56", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"ZeNyjnneq_w", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":55, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=65e3728e79deabfc&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"5008", + "trackingParams":"CIABEMY0GDciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CIEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CIEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"ZeNyjnneq_w", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CIEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "ZeNyjnneq_w" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "ZeNyjnneq_w" + ] + } + } + ] + } + }, + "trackingParams":"CIEBEP6YBBgGIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CIABEMY0GDciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 23 minutes, 28 seconds" + } + }, + "simpleText":"1:23:28" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"91K views" + }, + { + "text":" • " + }, + { + "text":"7 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"E1cklb4aeXA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/E1cklb4aeXA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLA2mqkRJ3v4scFE3ByjFeLLj30s_A", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/E1cklb4aeXA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLClbQ1a107MHc-2C-uArDkFBUgYLg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/E1cklb4aeXA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCFCnomM263cjsLBcGuzHjV4o7npw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/E1cklb4aeXA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDMNS-6d2hNG7dqAbyNliqUr-Aivw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Most Beginner React Developers Do This Wrong" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Most Beginner React Developers Do This Wrong by Web Dev Simplified 1 month ago 13 minutes, 47 seconds 91,707 views" + } + } + }, + "index":{ + "simpleText":"57" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CH4QxjQYOCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"13 minutes, 47 seconds" + } + }, + "simpleText":"13:47" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CH4QxjQYOCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=E1cklb4aeXA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=57", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"E1cklb4aeXA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":56, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=13572495be1a7970&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"827", + "trackingParams":"CH4QxjQYOCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CH8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CH8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"E1cklb4aeXA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CH8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "E1cklb4aeXA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "E1cklb4aeXA" + ] + } + } + ] + } + }, + "trackingParams":"CH8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CH4QxjQYOCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"13 minutes, 47 seconds" + } + }, + "simpleText":"13:47" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"91K views" + }, + { + "text":" • " + }, + { + "text":"1 month ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Wak7iN4JZzU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Wak7iN4JZzU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBz_QpmZ2sHvBSPEiDW7k3iAa-rSA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Wak7iN4JZzU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCpTRBR9rHL6NFIjOfzhglkPgxwrQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Wak7iN4JZzU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDYtwQ4Vv3SA6c9uScszl89gjmJbw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Wak7iN4JZzU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDsTPK5KYoNuSnjft-3AnGB4mhZVQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A 7 Figure Business Idea In One Hour" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A 7 Figure Business Idea In One Hour by Web Dev Simplified 10 months ago 59 minutes 89,444 views" + } + } + }, + "index":{ + "simpleText":"58" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHwQxjQYOSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"59 minutes, 46 seconds" + } + }, + "simpleText":"59:46" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHwQxjQYOSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Wak7iN4JZzU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=58", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Wak7iN4JZzU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":57, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=59a93b88de096735&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3586", + "trackingParams":"CHwQxjQYOSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CH0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CH0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Wak7iN4JZzU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CH0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Wak7iN4JZzU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Wak7iN4JZzU" + ] + } + } + ] + } + }, + "trackingParams":"CH0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHwQxjQYOSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"59 minutes, 46 seconds" + } + }, + "simpleText":"59:46" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"89K views" + }, + { + "text":" • " + }, + { + "text":"10 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"OySigNMXOZU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/OySigNMXOZU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB1kZ63mmhAmebnlwRzLI1wHjJX3w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/OySigNMXOZU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC1AX4OBiepRDPalPa3i-MQwN37Ig", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/OySigNMXOZU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBHgQoE5cFy8CNF84wjKZzw6BYg-A", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/OySigNMXOZU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCavdmsg_FzHASvpkjrYIadKhkpBg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Use Mapbox To Create A Google Maps Clone Quickly" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Use Mapbox To Create A Google Maps Clone Quickly by Web Dev Simplified 2 years ago 12 minutes, 23 seconds 85,187 views" + } + } + }, + "index":{ + "simpleText":"59" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHoQxjQYOiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 23 seconds" + } + }, + "simpleText":"12:23" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHoQxjQYOiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=OySigNMXOZU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=59", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"OySigNMXOZU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":58, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3b24a280d3173995&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"743", + "trackingParams":"CHoQxjQYOiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CHsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CHsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"OySigNMXOZU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CHsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "OySigNMXOZU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "OySigNMXOZU" + ] + } + } + ] + } + }, + "trackingParams":"CHsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHoQxjQYOiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 23 seconds" + } + }, + "simpleText":"12:23" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"85K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"5L6h_MrNvsk", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/5L6h_MrNvsk/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCR8el1eyytV0R_Rms_keGlAUAw_Q", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/5L6h_MrNvsk/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAkZ3pbCjmyZNsiJCoZ9hsVg_Zfhg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/5L6h_MrNvsk/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDeOmOlzQN6i2Lm7x0dxbxXwUOD4A", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/5L6h_MrNvsk/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA9RpiWT6reqIinBdQ7Zo8e28oIbg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build Tabs Using HTML/CSS In Only 12 Minutes" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build Tabs Using HTML/CSS In Only 12 Minutes by Web Dev Simplified 3 years ago 12 minutes, 8 seconds 85,096 views" + } + } + }, + "index":{ + "simpleText":"60" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHgQxjQYOyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 8 seconds" + } + }, + "simpleText":"12:08" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHgQxjQYOyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=5L6h_MrNvsk&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=60", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"5L6h_MrNvsk", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":59, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=e4bea1fccacdbec9&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"728", + "trackingParams":"CHgQxjQYOyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CHkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CHkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"5L6h_MrNvsk", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CHkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "5L6h_MrNvsk" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "5L6h_MrNvsk" + ] + } + } + ] + } + }, + "trackingParams":"CHkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHgQxjQYOyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 8 seconds" + } + }, + "simpleText":"12:08" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"85K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"YaONowiQKW8", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/YaONowiQKW8/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAhtjYS0ZmMCDn6s26fWSWphKHGmg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/YaONowiQKW8/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC00aSWpYB0kdrS3XayXm5nMNpDWQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/YaONowiQKW8/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDjhCMYEkwdzRO2fJUzgUzWBQOlfg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/YaONowiQKW8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDLZSKG-IKKaXPqIwz09L1NRYhlHg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create Online Tutorial’s Magic CSS Indicator?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create Online Tutorial’s Magic CSS Indicator? by Web Dev Simplified 8 months ago 1 hour, 4 minutes 82,137 views" + } + } + }, + "index":{ + "simpleText":"61" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHYQxjQYPCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 4 minutes, 16 seconds" + } + }, + "simpleText":"1:04:16" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHYQxjQYPCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=YaONowiQKW8&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=61", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"YaONowiQKW8", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":60, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=61a38da30890296f&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3856", + "trackingParams":"CHYQxjQYPCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CHcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CHcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"YaONowiQKW8", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CHcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "YaONowiQKW8" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "YaONowiQKW8" + ] + } + } + ] + } + }, + "trackingParams":"CHcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHYQxjQYPCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 4 minutes, 16 seconds" + } + }, + "simpleText":"1:04:16" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"82K views" + }, + { + "text":" • " + }, + { + "text":"8 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"OE7kml0pigw", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/OE7kml0pigw/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB4HDzkOWA8oyzmJE3uteIK0sKM1g", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/OE7kml0pigw/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBFpP8HzB-O6dxzgVrycx4-MCvWfA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/OE7kml0pigw/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDhw_n8bfxbOnBdwQszP7iE5fILwQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/OE7kml0pigw/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCnZWAwIPOL5U8j0Cp4KngV2pSqkQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build a Weather App With JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build a Weather App With JavaScript by Web Dev Simplified 3 years ago 43 minutes 81,701 views" + } + } + }, + "index":{ + "simpleText":"62" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHQQxjQYPSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"43 minutes, 14 seconds" + } + }, + "simpleText":"43:14" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHQQxjQYPSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=OE7kml0pigw&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=62", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"OE7kml0pigw", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":61, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=384ee49a5d298a0c&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2594", + "trackingParams":"CHQQxjQYPSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CHUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CHUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"OE7kml0pigw", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CHUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "OE7kml0pigw" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "OE7kml0pigw" + ] + } + } + ] + } + }, + "trackingParams":"CHUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHQQxjQYPSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"43 minutes, 14 seconds" + } + }, + "simpleText":"43:14" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"81K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"nJ81DFmgHdU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/nJ81DFmgHdU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDOB8OQRZ2qwtc3h-c2YiU5axNarg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/nJ81DFmgHdU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDmfhEerFg27qgHr0SPcZQ2rLwENQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/nJ81DFmgHdU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLB-TndymzbWTScK28eYY4JanE98LA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/nJ81DFmgHdU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCUHZFKl97z9wEmFXAi9pz_iAiWRg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Animate Page Loading With CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Animate Page Loading With CSS by Web Dev Simplified 3 years ago 17 minutes 80,758 views" + } + } + }, + "index":{ + "simpleText":"63" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHIQxjQYPiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 8 seconds" + } + }, + "simpleText":"17:08" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHIQxjQYPiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=nJ81DFmgHdU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=63", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"nJ81DFmgHdU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":62, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx5s7n7z.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=9c9f350c59a01dd5&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1028", + "trackingParams":"CHIQxjQYPiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CHMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CHMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"nJ81DFmgHdU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CHMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "nJ81DFmgHdU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "nJ81DFmgHdU" + ] + } + } + ] + } + }, + "trackingParams":"CHMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHIQxjQYPiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"17 minutes, 8 seconds" + } + }, + "simpleText":"17:08" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"80K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"ujlpzTyJp-M", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/ujlpzTyJp-M/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAoqiByGA-PjKS7qX5CfWKSAeIyqQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/ujlpzTyJp-M/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBGUTd7IvuGf-knvCshNT13zM46-g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/ujlpzTyJp-M/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAxcJO0ZttBOZk3WxfSWePUS23Kvw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/ujlpzTyJp-M/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCks1qMspCRPt3-CCYeFUNZUj-3wg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Make Tooltips With Only CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Make Tooltips With Only CSS by Web Dev Simplified 2 years ago 15 minutes 80,486 views" + } + } + }, + "index":{ + "simpleText":"64" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CHAQxjQYPyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"15 minutes, 5 seconds" + } + }, + "simpleText":"15:05" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CHAQxjQYPyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=ujlpzTyJp-M&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=64", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"ujlpzTyJp-M", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":63, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=ba3969cd3c89a7e3&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"905", + "trackingParams":"CHAQxjQYPyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CHEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CHEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"ujlpzTyJp-M", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CHEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "ujlpzTyJp-M" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "ujlpzTyJp-M" + ] + } + } + ] + } + }, + "trackingParams":"CHEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CHAQxjQYPyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"15 minutes, 5 seconds" + } + }, + "simpleText":"15:05" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"80K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"v_8CmC6cwUs", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/v_8CmC6cwUs/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBTZddCq01ZsVlkdSXLd0b1S82M-A", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/v_8CmC6cwUs/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLA2hkfgt7BIHvbMmWwU9vFf_in3Gw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/v_8CmC6cwUs/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDkTxv5oNqFynmRzS90-MEmKFdmJg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/v_8CmC6cwUs/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAuIngoPmKC6A-wvz2F7WrBWUSr9Q", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create Custom Scrollbar In CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create Custom Scrollbar In CSS by Web Dev Simplified 1 year ago 6 minutes, 30 seconds 78,167 views" + } + } + }, + "index":{ + "simpleText":"65" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CG4QxjQYQCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"6 minutes, 30 seconds" + } + }, + "simpleText":"6:30" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CG4QxjQYQCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=v_8CmC6cwUs&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=65", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"v_8CmC6cwUs", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":64, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7z.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=bfff02982e9cc14b&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"390", + "trackingParams":"CG4QxjQYQCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CG8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CG8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"v_8CmC6cwUs", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CG8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "v_8CmC6cwUs" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "v_8CmC6cwUs" + ] + } + } + ] + } + }, + "trackingParams":"CG8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CG4QxjQYQCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"6 minutes, 30 seconds" + } + }, + "simpleText":"6:30" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"78K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"wcVxX7lu2d4", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/wcVxX7lu2d4/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAi20HZo4_SuLe5WgyVGOgNwlh3zg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/wcVxX7lu2d4/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBQSBN5rRM9B4zvoySD2sfpwOaUoA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/wcVxX7lu2d4/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC40XCYot8TGANhHb6Qqofmd_umJg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/wcVxX7lu2d4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAaG_fiFVc3lfouAkJZb8NXq54C8w", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build CodePen With React" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build CodePen With React by Web Dev Simplified 2 years ago 30 minutes 77,641 views" + } + } + }, + "index":{ + "simpleText":"66" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGwQxjQYQSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"30 minutes, 26 seconds" + } + }, + "simpleText":"30:26" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGwQxjQYQSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=wcVxX7lu2d4&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=66", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"wcVxX7lu2d4", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":65, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=c1c5715fb96ed9de&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1826", + "trackingParams":"CGwQxjQYQSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CG0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CG0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"wcVxX7lu2d4", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CG0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "wcVxX7lu2d4" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "wcVxX7lu2d4" + ] + } + } + ] + } + }, + "trackingParams":"CG0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGwQxjQYQSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"30 minutes, 26 seconds" + } + }, + "simpleText":"30:26" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"77K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"1l4wHWQCCIc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/1l4wHWQCCIc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDLz8-vgQV-CgPds7lWVKm_zFKGTQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/1l4wHWQCCIc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCBjJNXJrDTR2H6OTkGDOrAYUktCw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/1l4wHWQCCIc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA6itGKCjsmXwHF_AA5NWtlqDzeUw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/1l4wHWQCCIc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCatlTV3q9id9VT3O_7qVMnaGVgvw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create Your Own Implementation Of JavaScript Promises" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create Your Own Implementation Of JavaScript Promises by Web Dev Simplified 7 months ago 33 minutes 76,637 views" + } + } + }, + "index":{ + "simpleText":"67" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGoQxjQYQiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"33 minutes, 34 seconds" + } + }, + "simpleText":"33:34" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGoQxjQYQiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=1l4wHWQCCIc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=67", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"1l4wHWQCCIc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":66, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=d65e301d64020887&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2014", + "trackingParams":"CGoQxjQYQiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CGsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CGsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"1l4wHWQCCIc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CGsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "1l4wHWQCCIc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "1l4wHWQCCIc" + ] + } + } + ] + } + }, + "trackingParams":"CGsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGoQxjQYQiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"33 minutes, 34 seconds" + } + }, + "simpleText":"33:34" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"76K views" + }, + { + "text":" • " + }, + { + "text":"7 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"PeY6lXPrPaA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/PeY6lXPrPaA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD91K60vbocSMP_kHnOZIiPYZEdcA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/PeY6lXPrPaA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCVVTN7wxGesR0y8_bKn76dZ6avqg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/PeY6lXPrPaA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBZA4QiTPoBDNxnh_vSetlvqnLk8w", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/PeY6lXPrPaA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC8LFCZ4jhIgz4OpjGkNZf-xVhU4A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Beginner JavaScript Game Dev Project" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Beginner JavaScript Game Dev Project by Web Dev Simplified 1 year ago 39 minutes 75,501 views" + } + } + }, + "index":{ + "simpleText":"68" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGgQxjQYQyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 14 seconds" + } + }, + "simpleText":"39:14" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGgQxjQYQyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=PeY6lXPrPaA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=68", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"PeY6lXPrPaA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":67, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3de63a9573eb3da0&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2354", + "trackingParams":"CGgQxjQYQyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CGkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CGkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"PeY6lXPrPaA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CGkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "PeY6lXPrPaA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "PeY6lXPrPaA" + ] + } + } + ] + } + }, + "trackingParams":"CGkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGgQxjQYQyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"39 minutes, 14 seconds" + } + }, + "simpleText":"39:14" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"75K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"reumU4CvruA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/reumU4CvruA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB81jUPBZeAu-JNnbRHrqzUHQdJAA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/reumU4CvruA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD2ydYH939vEeSd1zJN6fKUp5j5Ag", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/reumU4CvruA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC7omX5LmuQREanpClmo0aeubDm-Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/reumU4CvruA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDNDWId3DCVJB-bCk5ip8XOaVCRCA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Modern Login Screen With Error/Success States" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Modern Login Screen With Error/Success States by Web Dev Simplified 3 months ago 21 minutes 75,236 views" + } + } + }, + "index":{ + "simpleText":"69" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGYQxjQYRCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"21 minutes, 49 seconds" + } + }, + "simpleText":"21:49" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGYQxjQYRCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=reumU4CvruA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=69", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"reumU4CvruA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":68, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=adeba65380afaee0&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1309", + "trackingParams":"CGYQxjQYRCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CGcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CGcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"reumU4CvruA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CGcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "reumU4CvruA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "reumU4CvruA" + ] + } + } + ] + } + }, + "trackingParams":"CGcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGYQxjQYRCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"21 minutes, 49 seconds" + } + }, + "simpleText":"21:49" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"75K views" + }, + { + "text":" • " + }, + { + "text":"3 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"R-7eQIHRszQ", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/R-7eQIHRszQ/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD6TMy1GX4wyPrOhYVL2y-ZV2lXgA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/R-7eQIHRszQ/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCk60ord583GDG9ILpPcc2uHTEnJA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/R-7eQIHRszQ/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCQe0XIjbEdqQk0K9lA8dkqtYtR8Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/R-7eQIHRszQ/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLA1o9oRrfZmnGoOD1IckMKyCjWWnw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Speed Typing Game With JavaScript - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Speed Typing Game With JavaScript - Tutorial by Web Dev Simplified 2 years ago 26 minutes 73,549 views" + } + } + }, + "index":{ + "simpleText":"70" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGQQxjQYRSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"26 minutes, 36 seconds" + } + }, + "simpleText":"26:36" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGQQxjQYRSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=R-7eQIHRszQ&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=70", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"R-7eQIHRszQ", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":69, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nel.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=47eede4081d1b334&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1596", + "trackingParams":"CGQQxjQYRSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CGUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CGUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"R-7eQIHRszQ", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CGUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "R-7eQIHRszQ" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "R-7eQIHRszQ" + ] + } + } + ] + } + }, + "trackingParams":"CGUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGQQxjQYRSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"26 minutes, 36 seconds" + } + }, + "simpleText":"26:36" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"73K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"VxNQqQGOdc8", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/VxNQqQGOdc8/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCOdXiYSIZkQyxAsc-nw7qVLt-_ZQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/VxNQqQGOdc8/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBGGwm0oIgOxl8g4FiyP_bV0z1DVA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/VxNQqQGOdc8/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCX0CBEQTpnYNSZ7FRApi66w4ud5g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/VxNQqQGOdc8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBGQlLUOT6xEsW9bcMxVbYXPVFblw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create This Tricky CSS Vertical Timeline?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create This Tricky CSS Vertical Timeline? by Web Dev Simplified 1 year ago 45 minutes 71,120 views" + } + } + }, + "index":{ + "simpleText":"71" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGIQxjQYRiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"45 minutes, 34 seconds" + } + }, + "simpleText":"45:34" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGIQxjQYRiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=VxNQqQGOdc8&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=71", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"VxNQqQGOdc8", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":70, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=571350a9018e75cf&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2734", + "trackingParams":"CGIQxjQYRiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CGMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CGMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"VxNQqQGOdc8", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CGMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "VxNQqQGOdc8" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "VxNQqQGOdc8" + ] + } + } + ] + } + }, + "trackingParams":"CGMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGIQxjQYRiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"45 minutes, 34 seconds" + } + }, + "simpleText":"45:34" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"71K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"j898RGRw0b4", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/j898RGRw0b4/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD4JD5dTILrRGgR4_j3JFb3g6SSyg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/j898RGRw0b4/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBjQyUj5OfcQfWJJE-kKp7DeXhN-Q", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/j898RGRw0b4/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBq2i9zTtXtleUJgJtVCmLJTxHphQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/j898RGRw0b4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCAoowP_P8ujp7qnvfMaylbDqSV2w", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"The Perfect Advanced React/TypeScript Project - Markdown Supported Note Taking With Categories" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"The Perfect Advanced React/TypeScript Project - Markdown Supported Note Taking With Categories by Web Dev Simplified 3 weeks ago 1 hour, 14 minutes 71,597 views" + } + } + }, + "index":{ + "simpleText":"72" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CGAQxjQYRyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 14 minutes, 9 seconds" + } + }, + "simpleText":"1:14:09" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CGAQxjQYRyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=j898RGRw0b4&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=72", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"j898RGRw0b4", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":71, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=8fcf7c446470d1be&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"4449", + "trackingParams":"CGAQxjQYRyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CGEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CGEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"j898RGRw0b4", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CGEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "j898RGRw0b4" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "j898RGRw0b4" + ] + } + } + ] + } + }, + "trackingParams":"CGEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CGAQxjQYRyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 14 minutes, 9 seconds" + } + }, + "simpleText":"1:14:09" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"71K views" + }, + { + "text":" • " + }, + { + "text":"3 weeks ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"iEPK5fppX8w", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/iEPK5fppX8w/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB9HVTUuzBQTXUzNjL9QM0ca8INxQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/iEPK5fppX8w/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBrWhIKlVJAGu1JdpMJNZlxcKvnSw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/iEPK5fppX8w/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLByrhrMHtDFFEyLz4Vna21jbSjt8g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/iEPK5fppX8w/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLALBlZaCmZxJeBGRHpPIvknJKHPxQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create A Deck Of Cards With CSS?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create A Deck Of Cards With CSS? by Web Dev Simplified 5 months ago 1 hour 69,515 views" + } + } + }, + "index":{ + "simpleText":"73" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CF4QxjQYSCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 40 seconds" + } + }, + "simpleText":"1:00:40" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CF4QxjQYSCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=iEPK5fppX8w&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=73", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"iEPK5fppX8w", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":72, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=8843cae5fa695fcc&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3640", + "trackingParams":"CF4QxjQYSCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CF8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CF8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"iEPK5fppX8w", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CF8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "iEPK5fppX8w" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "iEPK5fppX8w" + ] + } + } + ] + } + }, + "trackingParams":"CF8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CF4QxjQYSCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 40 seconds" + } + }, + "simpleText":"1:00:40" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"69K views" + }, + { + "text":" • " + }, + { + "text":"5 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"hEtZ040fsD8", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/hEtZ040fsD8/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD7ShtjWljLoVoc9LyARRFAE_6_Lg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/hEtZ040fsD8/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB8gMvCAISet-CjKk-bTkRFy7qXoQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/hEtZ040fsD8/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAK_GiRZyOO0Oh9Dojp8JgXcqJgtw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/hEtZ040fsD8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCCfuHt9e4_lz4OE9h3HzLFotT33Q", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Flashcard Quiz With React" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Flashcard Quiz With React by Web Dev Simplified 2 years ago 51 minutes 69,187 views" + } + } + }, + "index":{ + "simpleText":"74" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFwQxjQYSSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"51 minutes, 5 seconds" + } + }, + "simpleText":"51:05" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFwQxjQYSSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=hEtZ040fsD8&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=74", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"hEtZ040fsD8", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":73, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=844b59d38d1fb03f&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3065", + "trackingParams":"CFwQxjQYSSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CF0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CF0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"hEtZ040fsD8", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CF0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "hEtZ040fsD8" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "hEtZ040fsD8" + ] + } + } + ] + } + }, + "trackingParams":"CF0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFwQxjQYSSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"51 minutes, 5 seconds" + } + }, + "simpleText":"51:05" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"69K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"RiWxhm5ZdFM", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/RiWxhm5ZdFM/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCmYNnBOM8qAvF4Ff5j3KBuwy4dAg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/RiWxhm5ZdFM/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLATHqUErHcfwaqRu4I8KFm5iGYp8g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/RiWxhm5ZdFM/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDH5gPA6p23GY9Ilt5FSJRcFU9zNQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/RiWxhm5ZdFM/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD2Lp_Fa0ZTFf04D8pj8OKV4dHiQA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build An Advanced Light/Dark Theme Toggle" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build An Advanced Light/Dark Theme Toggle by Web Dev Simplified 2 years ago 25 minutes 65,118 views" + } + } + }, + "index":{ + "simpleText":"75" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFoQxjQYSiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 46 seconds" + } + }, + "simpleText":"25:46" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFoQxjQYSiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=RiWxhm5ZdFM&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=75", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"RiWxhm5ZdFM", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":74, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=4625b1866e597453&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1546", + "trackingParams":"CFoQxjQYSiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CFsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CFsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"RiWxhm5ZdFM", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CFsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "RiWxhm5ZdFM" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "RiWxhm5ZdFM" + ] + } + } + ] + } + }, + "trackingParams":"CFsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFoQxjQYSiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 46 seconds" + } + }, + "simpleText":"25:46" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"65K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"lyNetvEfvT0", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/lyNetvEfvT0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDhENglXuVs4858c3q_QvfU-daBzw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/lyNetvEfvT0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDk6sEHumbt9HhtJNNbEZXvDcyTDA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/lyNetvEfvT0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCUruP4SgNnwlXJOap_kdtT_jg0hw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/lyNetvEfvT0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCP7azziGcmsHXCnR0qI4xQ8GFfCg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Full Stack Nested Comments System" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Full Stack Nested Comments System by Web Dev Simplified 4 months ago 2 hours, 1 minute 64,982 views" + } + } + }, + "index":{ + "simpleText":"76" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFgQxjQYSyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"2 hours, 1 minute, 48 seconds" + } + }, + "simpleText":"2:01:48" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFgQxjQYSyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=lyNetvEfvT0&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=76", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"lyNetvEfvT0", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":75, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=97235eb6f11fbd3d&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"7308", + "trackingParams":"CFgQxjQYSyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CFkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CFkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"lyNetvEfvT0", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CFkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "lyNetvEfvT0" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "lyNetvEfvT0" + ] + } + } + ] + } + }, + "trackingParams":"CFkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFgQxjQYSyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"2 hours, 1 minute, 48 seconds" + } + }, + "simpleText":"2:01:48" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"64K views" + }, + { + "text":" • " + }, + { + "text":"4 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"1yS-JV4fWqY", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/1yS-JV4fWqY/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC_yq_hpxiJVYsz4Dg2qvjwCmI55Q", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/1yS-JV4fWqY/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB4vDY82oJFF8OtBR8pjQ7EQJkVvA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/1yS-JV4fWqY/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBHVk59TFG0J_-6nUqqHMwRMMoSdQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/1yS-JV4fWqY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBZfUjUQIIAMLi2Cv9vLwkCnq4khw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Code Rock Paper Scissors In JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Code Rock Paper Scissors In JavaScript by Web Dev Simplified 2 years ago 21 minutes 64,317 views" + } + } + }, + "index":{ + "simpleText":"77" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFYQxjQYTCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"21 minutes, 12 seconds" + } + }, + "simpleText":"21:12" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFYQxjQYTCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=1yS-JV4fWqY&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=77", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"1yS-JV4fWqY", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":76, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=d724be255e1f5aa6&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1272", + "trackingParams":"CFYQxjQYTCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CFcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CFcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"1yS-JV4fWqY", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CFcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "1yS-JV4fWqY" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "1yS-JV4fWqY" + ] + } + } + ] + } + }, + "trackingParams":"CFcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFYQxjQYTCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"21 minutes, 12 seconds" + } + }, + "simpleText":"21:12" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"64K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"h2x4YTI6WeE", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/h2x4YTI6WeE/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBQfQRlHkFKZr0DB1VTvrq7MnWN2w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/h2x4YTI6WeE/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBAXsswKWW7csWhXuVEuVqjItliTw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/h2x4YTI6WeE/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCAaC2xGaNzVpUVJT4Qq49YcyTbLw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/h2x4YTI6WeE/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDZaKC0XWHTpDwcT5SzW62tTaqmHA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create Animated CSS Cards" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create Animated CSS Cards by Web Dev Simplified 1 year ago 20 minutes 63,619 views" + } + } + }, + "index":{ + "simpleText":"78" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFQQxjQYTSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"20 minutes, 53 seconds" + } + }, + "simpleText":"20:53" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFQQxjQYTSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=h2x4YTI6WeE&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=78", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"h2x4YTI6WeE", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":77, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynlk.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=876c7861323a59e1&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1253", + "trackingParams":"CFQQxjQYTSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CFUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CFUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"h2x4YTI6WeE", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CFUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "h2x4YTI6WeE" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "h2x4YTI6WeE" + ] + } + } + ] + } + }, + "trackingParams":"CFUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFQQxjQYTSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"20 minutes, 53 seconds" + } + }, + "simpleText":"20:53" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"63K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"uKVVSwXdLr0", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/uKVVSwXdLr0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBdKx9N_UzezmQ8DwzSk80hlFWVUg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/uKVVSwXdLr0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDqbihJVqGn74sRZIDGuO7wA5hDJQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/uKVVSwXdLr0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDzDvklB6PjIlxAw4ZvnTquuXjk8w", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/uKVVSwXdLr0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDShtifRhF6N4rPlTQK1NxZacRl-w", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Simple Image Lightbox Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Simple Image Lightbox Tutorial by Web Dev Simplified 3 years ago 14 minutes, 4 seconds 62,708 views" + } + } + }, + "index":{ + "simpleText":"79" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFIQxjQYTiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 4 seconds" + } + }, + "simpleText":"14:04" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFIQxjQYTiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=uKVVSwXdLr0&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=79", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"uKVVSwXdLr0", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":78, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=b8a5554b05dd2ebd&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"844", + "trackingParams":"CFIQxjQYTiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CFMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CFMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"uKVVSwXdLr0", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CFMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "uKVVSwXdLr0" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "uKVVSwXdLr0" + ] + } + } + ] + } + }, + "trackingParams":"CFMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFIQxjQYTiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 4 seconds" + } + }, + "simpleText":"14:04" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"62K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"J243ncoInNE", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/J243ncoInNE/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC7sTC75jespzp793EC0Bqges0QeQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/J243ncoInNE/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCQ4ruoZG2puXsY9NXCv4mlXJBT_Q", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/J243ncoInNE/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCpJiTMJV1TA-FETCa4lT36OlASGQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/J243ncoInNE/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCM22CBnMzH0CgLL3Fc4FOqG32feQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Photo Editor With React And CSS Filters" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Photo Editor With React And CSS Filters by Web Dev Simplified 2 years ago 31 minutes 61,655 views" + } + } + }, + "index":{ + "simpleText":"80" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CFAQxjQYTyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"31 minutes, 53 seconds" + } + }, + "simpleText":"31:53" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CFAQxjQYTyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=J243ncoInNE&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=80", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"J243ncoInNE", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":79, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=276e379dca089cd1&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1913", + "trackingParams":"CFAQxjQYTyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CFEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CFEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"J243ncoInNE", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CFEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "J243ncoInNE" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "J243ncoInNE" + ] + } + } + ] + } + }, + "trackingParams":"CFEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CFAQxjQYTyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"31 minutes, 53 seconds" + } + }, + "simpleText":"31:53" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"61K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"-ONUyenGnWw", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/-ONUyenGnWw/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAKEXr8RtGdcQ6KEetgksy_bYDyqg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/-ONUyenGnWw/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAMM1u6rWAbPps9I7_NkRZN-dhEGg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/-ONUyenGnWw/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBZ_0tnhhQVZY9pBub4ddibXQfihg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/-ONUyenGnWw/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDQ-AoHPie3OO6zsbXN5-KCLwAv-A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"This Is A Great Beginner React/TypeScript Project" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"This Is A Great Beginner React/TypeScript Project by Web Dev Simplified 1 month ago 44 minutes 58,693 views" + } + } + }, + "index":{ + "simpleText":"81" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CE4QxjQYUCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"44 minutes, 25 seconds" + } + }, + "simpleText":"44:25" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CE4QxjQYUCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=-ONUyenGnWw&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=81", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"-ONUyenGnWw", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":80, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=f8e354c9e9c69d6c&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2665", + "trackingParams":"CE4QxjQYUCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CE8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CE8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"-ONUyenGnWw", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CE8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "-ONUyenGnWw" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "-ONUyenGnWw" + ] + } + } + ] + } + }, + "trackingParams":"CE8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CE4QxjQYUCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"44 minutes, 25 seconds" + } + }, + "simpleText":"44:25" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"58K views" + }, + { + "text":" • " + }, + { + "text":"1 month ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"BiblrzKMllc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/BiblrzKMllc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD2SjPALSbzobVaAKB2PDsQNTZ3vA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/BiblrzKMllc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAPXpvOgK3QLQuRwrC8FkVO-kKZ3w", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/BiblrzKMllc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAQ6WqzN-YzHa8Psi36uH8cAnrGVw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/BiblrzKMllc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD-0tJrELnsvusZ2q-jODOolRO87g", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"You Should Know How To Do This Before Applying For Jobs" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"You Should Know How To Do This Before Applying For Jobs by Web Dev Simplified 6 months ago 14 minutes, 7 seconds 56,352 views" + } + } + }, + "index":{ + "simpleText":"82" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEwQxjQYUSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 7 seconds" + } + }, + "simpleText":"14:07" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEwQxjQYUSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=BiblrzKMllc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=82", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"BiblrzKMllc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":81, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynsl.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0626e5af328c9657&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"847", + "trackingParams":"CEwQxjQYUSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CE0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CE0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"BiblrzKMllc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CE0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "BiblrzKMllc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "BiblrzKMllc" + ] + } + } + ] + } + }, + "trackingParams":"CE0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEwQxjQYUSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 7 seconds" + } + }, + "simpleText":"14:07" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"56K views" + }, + { + "text":" • " + }, + { + "text":"6 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"qQR0mfFGRmo", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/qQR0mfFGRmo/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCkShTdrQ2L2jp7cvWYKoNjeVkS2Q", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/qQR0mfFGRmo/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCzWjcf2SwjPFSgibzkAM6zxqTung", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/qQR0mfFGRmo/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD8UKaMX64bzHs0eKiPAKBlkeIvrQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/qQR0mfFGRmo/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD-pDFDGcskxpM8DUnsv6TAMx_jyw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Stop Using Postman - Create Your Own Postman Instead" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Stop Using Postman - Create Your Own Postman Instead by Web Dev Simplified 1 year ago 43 minutes 55,867 views" + } + } + }, + "index":{ + "simpleText":"83" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEoQxjQYUiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"43 minutes, 11 seconds" + } + }, + "simpleText":"43:11" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEoQxjQYUiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=qQR0mfFGRmo&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=83", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"qQR0mfFGRmo", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":82, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=a9047499f146466a&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2591", + "trackingParams":"CEoQxjQYUiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CEsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CEsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"qQR0mfFGRmo", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CEsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "qQR0mfFGRmo" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "qQR0mfFGRmo" + ] + } + } + ] + } + }, + "trackingParams":"CEsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEoQxjQYUiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"43 minutes, 11 seconds" + } + }, + "simpleText":"43:11" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"55K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"uDCBSnWkuH0", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/uDCBSnWkuH0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAqPoNK7ztygmfzBsXqVtPZxTzPGg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/uDCBSnWkuH0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBnKNCnusgXBW1yZfgwSlN4sK99Ug", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/uDCBSnWkuH0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLARec07F15xT9yZ9c0myM32S9f08g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/uDCBSnWkuH0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBxN8EOOGUs1rJER7WgjKRwtcXlIg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Multistep Form Custom Hook With React And TypeScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Multistep Form Custom Hook With React And TypeScript by Web Dev Simplified 2 months ago 28 minutes 56,068 views" + } + } + }, + "index":{ + "simpleText":"84" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEgQxjQYUyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 23 seconds" + } + }, + "simpleText":"28:23" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEgQxjQYUyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=uDCBSnWkuH0&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=84", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"uDCBSnWkuH0", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":83, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=b830814a75a4b87d&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1703", + "trackingParams":"CEgQxjQYUyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CEkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CEkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"uDCBSnWkuH0", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CEkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "uDCBSnWkuH0" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "uDCBSnWkuH0" + ] + } + } + ] + } + }, + "trackingParams":"CEkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEgQxjQYUyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"28 minutes, 23 seconds" + } + }, + "simpleText":"28:23" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"56K views" + }, + { + "text":" • " + }, + { + "text":"2 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"iKo9pDKKHnc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/iKo9pDKKHnc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCOF42om7icwQozTdSSQdLqOg_5Ow", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/iKo9pDKKHnc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD831E2_RpYy1RQBLrvdVNkHmwmjA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/iKo9pDKKHnc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDZ_WInqFyrNpxnFZhR46hnIY9FaQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/iKo9pDKKHnc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAckhnt5v7WAexkDOUMoOVczkmD8Q", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build A Password Generator With JavaScript - Tutorial" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build A Password Generator With JavaScript - Tutorial by Web Dev Simplified 2 years ago 27 minutes 55,090 views" + } + } + }, + "index":{ + "simpleText":"85" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEYQxjQYVCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"27 minutes, 53 seconds" + } + }, + "simpleText":"27:53" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEYQxjQYVCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=iKo9pDKKHnc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=85", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"iKo9pDKKHnc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":84, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=88aa3da4328a1e77&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1673", + "trackingParams":"CEYQxjQYVCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CEcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CEcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"iKo9pDKKHnc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CEcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "iKo9pDKKHnc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "iKo9pDKKHnc" + ] + } + } + ] + } + }, + "trackingParams":"CEcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEYQxjQYVCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"27 minutes, 53 seconds" + } + }, + "simpleText":"27:53" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"55K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"G6JTM-zt-dQ", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/G6JTM-zt-dQ/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBfHWeRp040G0nyUAh6ywrqGcAJ8Q", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/G6JTM-zt-dQ/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDYFeqdL3J-NaUyh3P-iwL5qmR8dA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/G6JTM-zt-dQ/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBB2sP-4PrJ9NkZBp4g2BAw9y0QlQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/G6JTM-zt-dQ/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDXkmLU_TOro-etml2iS11QvigzBA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build A Battleship Clone" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build A Battleship Clone by Web Dev Simplified 2 years ago 1 hour, 1 minute 54,114 views" + } + } + }, + "index":{ + "simpleText":"86" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEQQxjQYVSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 12 seconds" + } + }, + "simpleText":"1:01:12" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEQQxjQYVSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=G6JTM-zt-dQ&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=86", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"G6JTM-zt-dQ", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":85, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nel.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=1ba25333ecedf9d4&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3672", + "trackingParams":"CEQQxjQYVSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CEUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CEUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"G6JTM-zt-dQ", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CEUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "G6JTM-zt-dQ" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "G6JTM-zt-dQ" + ] + } + } + ] + } + }, + "trackingParams":"CEUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEQQxjQYVSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"1 hour, 1 minute, 12 seconds" + } + }, + "simpleText":"1:01:12" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"54K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"whsYQ9fb64k", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/whsYQ9fb64k/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDjKyOq1rUKVvnLWzQeNA7_7NnqFA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/whsYQ9fb64k/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAYQQIr8D3ykQ5mpkRE9l-NA98YWg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/whsYQ9fb64k/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCQL19adLica2NJxF2n8tt3ydZ65A", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/whsYQ9fb64k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDJ5K_EY974pIZ5ZbyrmY9NMQCDDA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Use Frontity To Create A Headless WordPress Theme With React" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Use Frontity To Create A Headless WordPress Theme With React by Web Dev Simplified 2 years ago 18 minutes 53,089 views" + } + } + }, + "index":{ + "simpleText":"87" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEIQxjQYViITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"18 minutes, 40 seconds" + } + }, + "simpleText":"18:40" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEIQxjQYViITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=whsYQ9fb64k&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=87", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"whsYQ9fb64k", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":86, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=c21b1843d7dbeb89&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1120", + "trackingParams":"CEIQxjQYViITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CEMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CEMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"whsYQ9fb64k", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CEMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "whsYQ9fb64k" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "whsYQ9fb64k" + ] + } + } + ] + } + }, + "trackingParams":"CEMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEIQxjQYViITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"18 minutes, 40 seconds" + } + }, + "simpleText":"18:40" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"53K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"tF3RE5CGt9U", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/tF3RE5CGt9U/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDfC6jySp3OMsGdjRtJvjrgYfsilQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/tF3RE5CGt9U/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBuEkRjtko-xndZpbze2Wqmq0k7SA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/tF3RE5CGt9U/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBtQLv8Iw5LU5Usxz_WaE4ezx6_RA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/tF3RE5CGt9U/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCXRJj0iWISNpodK2zurRTWT1z0uA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create An Image Hover Effect With CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create An Image Hover Effect With CSS by Web Dev Simplified 10 months ago 12 minutes, 39 seconds 52,185 views" + } + } + }, + "index":{ + "simpleText":"88" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CEAQxjQYVyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 39 seconds" + } + }, + "simpleText":"12:39" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CEAQxjQYVyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=tF3RE5CGt9U&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=88", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"tF3RE5CGt9U", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":87, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr1---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=b45dd1139086b7d5&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"759", + "trackingParams":"CEAQxjQYVyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CEEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CEEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"tF3RE5CGt9U", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CEEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "tF3RE5CGt9U" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "tF3RE5CGt9U" + ] + } + } + ] + } + }, + "trackingParams":"CEEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CEAQxjQYVyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 39 seconds" + } + }, + "simpleText":"12:39" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"52K views" + }, + { + "text":" • " + }, + { + "text":"10 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"AHXFMu8xVsc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/AHXFMu8xVsc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLB9vmwtXFGzKMicmjN9kkKjpITZTQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/AHXFMu8xVsc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAftl6UbXIT_FAZ5aScq1X4Nrp21A", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/AHXFMu8xVsc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAfMF9-ZIovoeVd_oeh_9ugL5ILbw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/AHXFMu8xVsc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAQ8wStPmlq7PxwJFAZilbdDqTDeQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A Password Protected File Sharing Site With Node.js, MongoDB, and Express" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A Password Protected File Sharing Site With Node.js, MongoDB, and Express by Web Dev Simplified 5 months ago 32 minutes 50,995 views" + } + } + }, + "index":{ + "simpleText":"89" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CD4QxjQYWCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"32 minutes, 55 seconds" + } + }, + "simpleText":"32:55" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CD4QxjQYWCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=AHXFMu8xVsc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=89", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"AHXFMu8xVsc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":88, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0075c532ef3156c7&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1975", + "trackingParams":"CD4QxjQYWCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CD8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CD8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"AHXFMu8xVsc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CD8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "AHXFMu8xVsc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "AHXFMu8xVsc" + ] + } + } + ] + } + }, + "trackingParams":"CD8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CD4QxjQYWCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"32 minutes, 55 seconds" + } + }, + "simpleText":"32:55" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"50K views" + }, + { + "text":" • " + }, + { + "text":"5 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"p_6IuhmBsfc", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/p_6IuhmBsfc/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDCm7PDTN6P9RrB6N3G5n6-Tt62Gw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/p_6IuhmBsfc/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDSdYnpkMTCSEV9_fcRIbJsDSuPgQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/p_6IuhmBsfc/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAj-AkYbyQ7pU-ifL9P6S4pAbgPvQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/p_6IuhmBsfc/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCN9wivgSuZOkLcDP8aO2wYGySymw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Can I Create This Complex 3D Countdown Timer Animation?" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Can I Create This Complex 3D Countdown Timer Animation? by Web Dev Simplified 7 months ago 55 minutes 50,211 views" + } + } + }, + "index":{ + "simpleText":"90" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDwQxjQYWSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"55 minutes, 4 seconds" + } + }, + "simpleText":"55:04" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDwQxjQYWSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=p_6IuhmBsfc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=90", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"p_6IuhmBsfc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":89, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=a7fe88ba1981b1f7&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3304", + "trackingParams":"CDwQxjQYWSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CD0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CD0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"p_6IuhmBsfc", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CD0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "p_6IuhmBsfc" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "p_6IuhmBsfc" + ] + } + } + ] + } + }, + "trackingParams":"CD0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDwQxjQYWSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"55 minutes, 4 seconds" + } + }, + "simpleText":"55:04" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"50K views" + }, + { + "text":" • " + }, + { + "text":"7 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Jgst0rihJ3o", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Jgst0rihJ3o/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBbceOF3QN-XPEF6WL5GjcGSx-oRA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Jgst0rihJ3o/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCp7i2hCDi1mnOZ_2cE1qxAFhWykQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Jgst0rihJ3o/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAa7DU2wcPObKBDGjJaIdtqTfXm4g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Jgst0rihJ3o/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAv79X3-diI5mqQQerJUqB-tCM-DQ", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Simple JavaScript Game Dev Project" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Simple JavaScript Game Dev Project by Web Dev Simplified 1 year ago 41 minutes 48,861 views" + } + } + }, + "index":{ + "simpleText":"91" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDoQxjQYWiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"41 minutes, 50 seconds" + } + }, + "simpleText":"41:50" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDoQxjQYWiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Jgst0rihJ3o&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=91", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Jgst0rihJ3o", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":90, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynss.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=260b2dd2b8a1277a&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2510", + "trackingParams":"CDoQxjQYWiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CDsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CDsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Jgst0rihJ3o", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CDsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Jgst0rihJ3o" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Jgst0rihJ3o" + ] + } + } + ] + } + }, + "trackingParams":"CDsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDoQxjQYWiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"41 minutes, 50 seconds" + } + }, + "simpleText":"41:50" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"48K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"rymG9UmPuhM", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/rymG9UmPuhM/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAeitQnGN205K8gOr7Yf3obUXmBRw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/rymG9UmPuhM/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBscTeQfmGJgViSq5rYP6wmuqro1g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/rymG9UmPuhM/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDslJfkDaUmOwscNqLJf57GGX-qHQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/rymG9UmPuhM/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDJkASM0qCPtHKdx76KagHFeWqBww", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Build a Coronavirus Blocker Chrome Extension" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Build a Coronavirus Blocker Chrome Extension by Web Dev Simplified 2 years ago 14 minutes, 19 seconds 48,584 views" + } + } + }, + "index":{ + "simpleText":"92" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDgQxjQYWyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 19 seconds" + } + }, + "simpleText":"14:19" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDgQxjQYWyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=rymG9UmPuhM&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=92", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"rymG9UmPuhM", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":91, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nel.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=af2986f5498fba13&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"859", + "trackingParams":"CDgQxjQYWyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CDkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CDkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"rymG9UmPuhM", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CDkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "rymG9UmPuhM" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "rymG9UmPuhM" + ] + } + } + ] + } + }, + "trackingParams":"CDkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDgQxjQYWyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"14 minutes, 19 seconds" + } + }, + "simpleText":"14:19" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"48K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"1BbEfqnCjjQ", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/1BbEfqnCjjQ/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBS405K5fe9wZ5w8FlQKG5i430SMQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/1BbEfqnCjjQ/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLD7XnaWvxBUD2bftdEdRph_B3kZKw", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/1BbEfqnCjjQ/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDMmA4eyjpNaq1XznAnAJKn3zna7Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/1BbEfqnCjjQ/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDIBK4xG2-vDX38gtmw2GeMKVUTjg", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"This Video Has 47,496 Views" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"This Video Has 47,496 Views by Web Dev Simplified 2 years ago 24 minutes 47,496 views" + } + } + }, + "index":{ + "simpleText":"93" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDYQxjQYXCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 26 seconds" + } + }, + "simpleText":"24:26" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDYQxjQYXCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=1BbEfqnCjjQ&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=93", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"1BbEfqnCjjQ", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":92, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=d416c47ea9c28e34&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1466", + "trackingParams":"CDYQxjQYXCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CDcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CDcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"1BbEfqnCjjQ", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CDcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "1BbEfqnCjjQ" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "1BbEfqnCjjQ" + ] + } + } + ] + } + }, + "trackingParams":"CDcQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDYQxjQYXCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 26 seconds" + } + }, + "simpleText":"24:26" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"47K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"qv24S2L1N0k", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/qv24S2L1N0k/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAWgskNTsRueZE9W3GQrAV_imXrig", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/qv24S2L1N0k/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLA-GAhIiYY4-xNt74x1TjQA1sO_xQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/qv24S2L1N0k/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDIBlC2TvNQ8TgXGg66lA5UKgLpeg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/qv24S2L1N0k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD61Ts6IPtZ-PLPU3J8WLpwAz2egA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Build And Deploy Your First Discord Bot" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Build And Deploy Your First Discord Bot by Web Dev Simplified 2 years ago 25 minutes 46,236 views" + } + } + }, + "index":{ + "simpleText":"94" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDQQxjQYXSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 40 seconds" + } + }, + "simpleText":"25:40" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDQQxjQYXSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=qv24S2L1N0k&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=94", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"qv24S2L1N0k", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":93, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx57ynsz.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=aafdb84b62f53749&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1540", + "trackingParams":"CDQQxjQYXSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CDUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CDUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"qv24S2L1N0k", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CDUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "qv24S2L1N0k" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "qv24S2L1N0k" + ] + } + } + ] + } + }, + "trackingParams":"CDUQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDQQxjQYXSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"25 minutes, 40 seconds" + } + }, + "simpleText":"25:40" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"46K views" + }, + { + "text":" • " + }, + { + "text":"2 years ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"5MFnKG15ZfI", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/5MFnKG15ZfI/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDURQ-OhsjbAeoXrQWRe7I1ztFXtA", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/5MFnKG15ZfI/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCP9ZD6zHqDWb5XS8-T2WoAg_wVAg", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/5MFnKG15ZfI/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBsiQnyLJHnTLoSEi62-5eyuMEhMA", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/5MFnKG15ZfI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBfWMELCox9QfBepBNDa81tOe8W6A", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Stop Using jQuery - How To Create Your Own jQuery Clone" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Stop Using jQuery - How To Create Your Own jQuery Clone by Web Dev Simplified 1 year ago 24 minutes 43,222 views" + } + } + }, + "index":{ + "simpleText":"95" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDIQxjQYXiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 4 seconds" + } + }, + "simpleText":"24:04" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDIQxjQYXiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=5MFnKG15ZfI&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=95", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"5MFnKG15ZfI", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":94, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nee.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=e4c167286d7965f2&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"1444", + "trackingParams":"CDIQxjQYXiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CDMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CDMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"5MFnKG15ZfI", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CDMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "5MFnKG15ZfI" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "5MFnKG15ZfI" + ] + } + } + ] + } + }, + "trackingParams":"CDMQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDIQxjQYXiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"24 minutes, 4 seconds" + } + }, + "simpleText":"24:04" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"43K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"IE4lnxXoupg", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/IE4lnxXoupg/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCaAHHXF35jYMcGL4Hs1ZR1TyEJoQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/IE4lnxXoupg/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLAIFkSVrarJq_UdLgLvY1g62FRMqA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/IE4lnxXoupg/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAG8rStvip3iBU66HcQpvoYu72C0Q", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/IE4lnxXoupg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBHmV8ALQy817dgK9S-i4xkuf58aA", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create An Audio Book Reader In JavaScript" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create An Audio Book Reader In JavaScript by Web Dev Simplified 9 months ago 11 minutes, 41 seconds 41,668 views" + } + } + }, + "index":{ + "simpleText":"96" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CDAQxjQYXyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"11 minutes, 41 seconds" + } + }, + "simpleText":"11:41" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CDAQxjQYXyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=IE4lnxXoupg&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=96", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"IE4lnxXoupg", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":95, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=204e259f15e8ba98&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"701", + "trackingParams":"CDAQxjQYXyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CDEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CDEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"IE4lnxXoupg", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CDEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "IE4lnxXoupg" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "IE4lnxXoupg" + ] + } + } + ] + } + }, + "trackingParams":"CDEQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CDAQxjQYXyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"11 minutes, 41 seconds" + } + }, + "simpleText":"11:41" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"41K views" + }, + { + "text":" • " + }, + { + "text":"9 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"cDNejBxZ0hI", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/cDNejBxZ0hI/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDM7FUgoBdRbLtvYG9HFfbqYjuO_w", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/cDNejBxZ0hI/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCE8NekpX-cBLyQClKgIbHUCnf6qQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/cDNejBxZ0hI/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD76K_KCBlMVmI4RVx5qZzm9Jlzbg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/cDNejBxZ0hI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDakehXbxR9cAZxfbz_Tkco9A-XPw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create A Hastebin Clone" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create A Hastebin Clone by Web Dev Simplified 1 year ago 40 minutes 39,860 views" + } + } + }, + "index":{ + "simpleText":"97" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CC4QxjQYYCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"40 minutes, 8 seconds" + } + }, + "simpleText":"40:08" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CC4QxjQYYCITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=cDNejBxZ0hI&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=97", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"cDNejBxZ0hI", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":96, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr2---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=70335e8c1c59d212&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2408", + "trackingParams":"CC4QxjQYYCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CC8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CC8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"cDNejBxZ0hI", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CC8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "cDNejBxZ0hI" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "cDNejBxZ0hI" + ] + } + } + ] + } + }, + "trackingParams":"CC8Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CC4QxjQYYCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"40 minutes, 8 seconds" + } + }, + "simpleText":"40:08" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"39K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"zVfVLBjQuSA", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/zVfVLBjQuSA/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDRWZS-uW3m36jQ61kdO0RdOLHdIg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/zVfVLBjQuSA/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDjxQBYigRfM3lnTt7RwRg_wBVF6g", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/zVfVLBjQuSA/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBwGOQtMzDYHPLhkvrmr28TnTDocw", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/zVfVLBjQuSA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLADWw052OEBRp9NECco4vpmyyNv0w", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Enhance Your Productivity With The Notion API" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Enhance Your Productivity With The Notion API by Web Dev Simplified 1 year ago 51 minutes 39,699 views" + } + } + }, + "index":{ + "simpleText":"98" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CCwQxjQYYSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"51 minutes, 37 seconds" + } + }, + "simpleText":"51:37" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CCwQxjQYYSITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=zVfVLBjQuSA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=98", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"zVfVLBjQuSA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":97, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7d.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=cd57d52c18d0b920&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"3097", + "trackingParams":"CCwQxjQYYSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CC0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CC0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"zVfVLBjQuSA", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CC0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "zVfVLBjQuSA" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "zVfVLBjQuSA" + ] + } + } + ] + } + }, + "trackingParams":"CC0Q_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CCwQxjQYYSITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"51 minutes, 37 seconds" + } + }, + "simpleText":"51:37" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"39K views" + }, + { + "text":" • " + }, + { + "text":"1 year ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"Gx35fMhDPWs", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/Gx35fMhDPWs/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLC7INCaCsKNQDGTTkijLE6gSmHyVQ", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/Gx35fMhDPWs/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLA0sa65SRac0h8Wr1X8YBcIrvAUYQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/Gx35fMhDPWs/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAjqYl8dH2szFsF3tt0UHNrw-u4tQ", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/Gx35fMhDPWs/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAqQH41SvodTR2JUEWnnaiSjd29mw", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"How To Create An Advanced Animated Loading Spinner" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"How To Create An Advanced Animated Loading Spinner by Web Dev Simplified 4 months ago 12 minutes, 53 seconds 38,101 views" + } + } + }, + "index":{ + "simpleText":"99" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CCoQxjQYYiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 53 seconds" + } + }, + "simpleText":"12:53" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CCoQxjQYYiITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=Gx35fMhDPWs&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=99", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"Gx35fMhDPWs", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":98, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7nel.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=1b1df97cc8433d6b&ip=44.227.217.144&initcwndbps=1290000&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"773", + "trackingParams":"CCoQxjQYYiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CCsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CCsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"Gx35fMhDPWs", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CCsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "Gx35fMhDPWs" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "Gx35fMhDPWs" + ] + } + } + ] + } + }, + "trackingParams":"CCsQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CCoQxjQYYiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"12 minutes, 53 seconds" + } + }, + "simpleText":"12:53" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"38K views" + }, + { + "text":" • " + }, + { + "text":"4 months ago" + } + ] + } + } + }, + { + "playlistVideoRenderer":{ + "videoId":"K8BigvW7sZU", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/K8BigvW7sZU/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLCyjRASx4fvbIHQc7fwGMm5wvTllw", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/K8BigvW7sZU/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLDCx8qmZ831Dhy4zaG1AXl29qF3sA", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/K8BigvW7sZU/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCS04rok6qrnTFp0mrHl-wVbv_68g", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/K8BigvW7sZU/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDYvEtN7KEBoLBtz7Pgf2Nq99984w", + "width":336, + "height":188 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Responsive Landing Page Tutorial - HTML/CSS" + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Responsive Landing Page Tutorial - HTML/CSS by Web Dev Simplified 3 years ago 46 minutes 37,825 views" + } + } + }, + "index":{ + "simpleText":"100" + }, + "shortBylineText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CCgQxjQYYyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "lengthText":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 1 second" + } + }, + "simpleText":"46:01" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CCgQxjQYYyITCLj_5v7r6PsCFevBwgQdZKYEXjIKcGxwcF92aWRlb1okVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=K8BigvW7sZU&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&index=100", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"K8BigvW7sZU", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "index":99, + "params":"OAI%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr5---sn-nx5s7n7y.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=2bc06282f5bbb195&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "lengthSeconds":"2761", + "trackingParams":"CCgQxjQYYyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "isPlayable":true, + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuServiceItemRenderer":{ + "text":{ + "runs":[ + { + "text":"Add to queue" + } + ] + }, + "icon":{ + "iconType":"ADD_TO_QUEUE_TAIL" + }, + "serviceEndpoint":{ + "clickTrackingParams":"CCkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CCkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "addToPlaylistCommand":{ + "openMiniplayer":true, + "videoId":"K8BigvW7sZU", + "listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE", + "onCreateListCommand":{ + "clickTrackingParams":"CCkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/playlist/create" + } + }, + "createPlaylistServiceEndpoint":{ + "videoIds":[ + "K8BigvW7sZU" + ], + "params":"CAQ%3D" + } + }, + "videoIds":[ + "K8BigvW7sZU" + ] + } + } + ] + } + }, + "trackingParams":"CCkQ_pgEGAYiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ], + "trackingParams":"CCgQxjQYYyITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlayTimeStatusRenderer":{ + "text":{ + "accessibility":{ + "accessibilityData":{ + "label":"46 minutes, 1 second" + } + }, + "simpleText":"46:01" + }, + "style":"DEFAULT" + } + }, + { + "thumbnailOverlayNowPlayingRenderer":{ + "text":{ + "runs":[ + { + "text":"Now playing" + } + ] + } + } + } + ], + "videoInfo":{ + "runs":[ + { + "text":"37K views" + }, + { + "text":" • " + }, + { + "text":"3 years ago" + } + ] + } + } + }, + { + "continuationItemRenderer":{ + "trigger":"CONTINUATION_TRIGGER_ON_ITEM_SHOWN", + "continuationEndpoint":{ + "clickTrackingParams":"CCcQ7zsYACITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/browse" + } + }, + "continuationCommand":{ + "token":"4qmFsgJhEiRWTFBMWmxBMEdwbl92SDhEV0wxNFd1ZF9tOE5lTk5iWUtPa2oaFENBRjZCbEJVT2tOSFVRJTNEJTNEmgIiUExabEEwR3BuX3ZIOERXTDE0V3VkX204TmVOTmJZS09rag%3D%3D", + "request":"CONTINUATION_REQUEST_TYPE_BROWSE" + } + } + } + } + ], + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "isEditable":false, + "canReorder":false, + "trackingParams":"CCcQ7zsYACITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "targetId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + } + ], + "trackingParams":"CCYQuy8YACITCLj_5v7r6PsCFevBwgQdZKYEXg==" + } + } + ], + "trackingParams":"CCUQui8iEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + }, + "trackingParams":"CCQQ8JMBGAciEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + ] + } + }, + "header":{ + "playlistHeaderRenderer":{ + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "title":{ + "simpleText":"Small Projects" + }, + "numVideosText":{ + "runs":[ + { + "text":"121" + }, + { + "text":" videos" + } + ] + }, + "descriptionText":{}, + "ownerText":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CBsQ8DciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "viewCountText":{ + "simpleText":"281,139 views" + }, + "shareData":{ + "canShare":true + }, + "isEditable":false, + "privacy":"PUBLIC", + "ownerEndpoint":{ + "clickTrackingParams":"CBsQ8DciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + }, + "editableDetails":{ + "canDelete":false + }, + "trackingParams":"CBsQ8DciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "serviceEndpoints":[ + { + "clickTrackingParams":"CBsQ8DciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/browse/edit_playlist" + } + }, + "playlistEditEndpoint":{ + "actions":[ + { + "action":"ACTION_COPY_FROM_PLAYLIST", + "sourcePlaylistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + ] + } + } + ], + "stats":[ + { + "runs":[ + { + "text":"121" + }, + { + "text":" videos" + } + ] + }, + { + "simpleText":"281,139 views" + } + ], + "briefStats":[ + { + "runs":[ + { + "text":"121" + }, + { + "text":" videos" + } + ] + } + ], + "playlistHeaderBanner":{ + "heroPlaylistThumbnailRenderer":{ + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLDGGJ1Lpirgu6TACcDhTLP52Z9FOg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLALg0_XLfs6DruQgRluBFWWFu1wDQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCPYBEIoBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAEOUezXAWs2mMRrfzDtoqWDqXZfg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLARkygXjR7YeBVQW_GaJ5WEveTHeg", + "width":336, + "height":188 + } + ] + }, + "maxRatio":0.5625, + "trackingParams":"CCMQw-wJIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "onTap":{ + "clickTrackingParams":"CCMQw-wJIhMIuP_m_uvo-wIV68HCBB1kpgReWiRWTFBMWmxBMEdwbl92SDhEV0wxNFd1ZF9tOE5lTk5iWUtPa2qaAQMQ-iw=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=CVClHLwv-4I&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"CVClHLwv-4I", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0950a51cbc2ffb82&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "thumbnailOverlays":{ + "thumbnailOverlayHoverTextRenderer":{ + "text":{ + "simpleText":"Play all" + }, + "icon":{ + "iconType":"PLAY_ALL" + } + } + } + } + }, + "saveButton":{ + "toggleButtonRenderer":{ + "style":{ + "styleType":"STYLE_MONO_TONAL_OVERLAY" + }, + "size":{ + "sizeType":"SIZE_DEFAULT" + }, + "isToggled":false, + "isDisabled":false, + "defaultIcon":{ + "iconType":"PLAYLIST_ADD" + }, + "toggledIcon":{ + "iconType":"PLAYLIST_ADD_CHECK" + }, + "trackingParams":"CCEQmE0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "defaultTooltip":"Save playlist", + "toggledTooltip":"Remove from Library", + "toggledStyle":{ + "styleType":"STYLE_MONO_TONAL_OVERLAY" + }, + "defaultNavigationEndpoint":{ + "clickTrackingParams":"CCEQmE0iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "ignoreNavigation":true + } + }, + "modalEndpoint":{ + "modal":{ + "modalWithTitleAndButtonRenderer":{ + "title":{ + "simpleText":"Want to save this playlist?" + }, + "content":{ + "simpleText":"Sign in to save this playlist." + }, + "button":{ + "buttonRenderer":{ + "style":"STYLE_BLUE_TEXT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "simpleText":"Sign in" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CCIQ_IYEIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"https://accounts.google.com/ServiceLogin?service=youtube&uilel=3&passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Den%26next%3D%252Fplaylist%253Flist%253DPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&hl=en&ec=66428", + "webPageType":"WEB_PAGE_TYPE_UNKNOWN", + "rootVe":83769 + } + }, + "signInEndpoint":{ + "nextEndpoint":{ + "clickTrackingParams":"CCIQ_IYEIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_PLAYLIST", + "rootVe":5754, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"VLPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + }, + "idamTag":"66428" + } + }, + "trackingParams":"CCIQ_IYEIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + } + } + } + }, + "accessibilityData":{ + "accessibilityData":{ + "label":"Save playlist" + } + }, + "toggledAccessibilityData":{ + "accessibilityData":{ + "label":"Remove from Library" + } + } + } + }, + "shareButton":{ + "buttonRenderer":{ + "style":"STYLE_MONO_TONAL_OVERLAY", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "serviceEndpoint":{ + "clickTrackingParams":"CB8Q5ZYBIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/share/get_share_panel" + } + }, + "shareEntityServiceEndpoint":{ + "serializedShareEntity":"EiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq", + "commands":[ + { + "clickTrackingParams":"CB8Q5ZYBIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "openPopupAction":{ + "popup":{ + "unifiedSharePanelRenderer":{ + "trackingParams":"CCAQjmIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "showLoadingSpinner":true + } + }, + "popupType":"DIALOG", + "beReused":true + } + } + ] + } + }, + "icon":{ + "iconType":"SHARE" + }, + "tooltip":"Share", + "trackingParams":"CB8Q5ZYBIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "accessibilityData":{ + "accessibilityData":{ + "label":"Share" + } + } + } + }, + "moreActionsMenu":{ + "menuRenderer":{ + "trackingParams":"CBsQ8DciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "playButton":{ + "buttonRenderer":{ + "style":"STYLE_MONO_FILLED_OVERLAY", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "simpleText":"Play all" + }, + "icon":{ + "iconType":"PLAY_ARROW" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CB4Q2M8CIhMIuP_m_uvo-wIV68HCBB1kpgReWiRWTFBMWmxBMEdwbl92SDhEV0wxNFd1ZF9tOE5lTk5iWUtPa2qaAQMQ-iw=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=CVClHLwv-4I&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"CVClHLwv-4I", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0950a51cbc2ffb82&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "trackingParams":"CB4Q2M8CIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + }, + "shufflePlayButton":{ + "buttonRenderer":{ + "style":"STYLE_MONO_TONAL_OVERLAY", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "simpleText":"Shuffle" + }, + "icon":{ + "iconType":"SHUFFLE" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CB0QsssCIhMIuP_m_uvo-wIV68HCBB1kpgReWiRWTFBMWmxBMEdwbl92SDhEV0wxNFd1ZF9tOE5lTk5iWUtPa2qaAQMQ-iw=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=PeY6lXPrPaA&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"PeY6lXPrPaA", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "params":"CPg_IEM%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr3---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=3de63a9573eb3da0&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "trackingParams":"CB0QsssCIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + }, + "onDescriptionTap":{ + "clickTrackingParams":"CBsQ8DciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "openPopupAction":{ + "popup":{ + "fancyDismissibleDialogRenderer":{ + "dialogMessage":{}, + "title":{ + "runs":[ + { + "text":"Description" + } + ] + }, + "confirmLabel":{ + "runs":[ + { + "text":"Close" + } + ] + }, + "trackingParams":"CBwQx1UiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + }, + "popupType":"DIALOG" + } + }, + "cinematicContainer":{ + "cinematicContainerRenderer":{ + "backgroundImageConfig":{ + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLDGGJ1Lpirgu6TACcDhTLP52Z9FOg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLALg0_XLfs6DruQgRluBFWWFu1wDQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCPYBEIoBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAEOUezXAWs2mMRrfzDtoqWDqXZfg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLARkygXjR7YeBVQW_GaJ5WEveTHeg", + "width":336, + "height":188 + } + ] + } + }, + "gradientColorConfig":[ + { + "lightThemeColor":3423684722, + "darkThemeColor":3423684722, + "startLocation":0 + }, + { + "lightThemeColor":1276201074, + "darkThemeColor":1276201074, + "startLocation":0.33000001 + }, + { + "lightThemeColor":3423684722, + "darkThemeColor":4279176975, + "startLocation":1 + } + ], + "config":{ + "lightThemeBackgroundColor":4279322738, + "darkThemeBackgroundColor":4279322738, + "colorSourceSizeMultiplier":2, + "applyClientImageBlur":true + } + } + }, + "byline":[ + { + "playlistBylineRenderer":{ + "text":{ + "runs":[ + { + "text":"121" + }, + { + "text":" videos" + } + ] + } + } + }, + { + "playlistBylineRenderer":{ + "text":{ + "runs":[ + { + "text":"Last updated on " + }, + { + "text":"Nov 14, 2022" + } + ] + } + } + } + ], + "descriptionTapText":{ + "runs":[ + { + "text":"...More" + } + ] + } + } + }, + "metadata":{ + "playlistMetadataRenderer":{ + "title":"Small Projects", + "androidAppindexingLink":"android-app://com.google.android.youtube/http/www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "iosAppindexingLink":"ios-app://544007664/vnd.youtube/www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + }, + "trackingParams":"CAAQhGciEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "topbar":{ + "desktopTopbarRenderer":{ + "logo":{ + "topbarLogoRenderer":{ + "iconImage":{ + "iconType":"YOUTUBE_LOGO" + }, + "tooltipText":{ + "runs":[ + { + "text":"YouTube Home" + } + ] + }, + "endpoint":{ + "clickTrackingParams":"CBoQsV4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/", + "webPageType":"WEB_PAGE_TYPE_BROWSE", + "rootVe":3854, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"FEwhat_to_watch" + } + }, + "trackingParams":"CBoQsV4iEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "overrideEntityKey":"EgZ0b3BiYXIg9QEoAQ%3D%3D" + } + }, + "searchbox":{ + "fusionSearchboxRenderer":{ + "icon":{ + "iconType":"SEARCH" + }, + "placeholderText":{ + "runs":[ + { + "text":"Search" + } + ] + }, + "config":{ + "webSearchboxConfig":{ + "requestLanguage":"en", + "requestDomain":"us", + "hasOnscreenKeyboard":false, + "focusSearchbox":true + } + }, + "trackingParams":"CBgQ7VAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "searchEndpoint":{ + "clickTrackingParams":"CBgQ7VAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/results?search_query=", + "webPageType":"WEB_PAGE_TYPE_SEARCH", + "rootVe":4724 + } + }, + "searchEndpoint":{ + "query":"" + } + }, + "clearButton":{ + "buttonRenderer":{ + "style":"STYLE_DEFAULT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "icon":{ + "iconType":"CLOSE" + }, + "trackingParams":"CBkQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibilityData":{ + "accessibilityData":{ + "label":"Clear search query" + } + } + } + } + } + }, + "trackingParams":"CAwQq6wBIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "topbarButtons":[ + { + "topbarMenuButtonRenderer":{ + "icon":{ + "iconType":"MORE_VERT" + }, + "menuRequest":{ + "clickTrackingParams":"CBYQ_qsBGAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/account/account_menu" + } + }, + "signalServiceEndpoint":{ + "signal":"GET_ACCOUNT_MENU", + "actions":[ + { + "clickTrackingParams":"CBYQ_qsBGAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "openPopupAction":{ + "popup":{ + "multiPageMenuRenderer":{ + "trackingParams":"CBcQ_6sBIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "style":"MULTI_PAGE_MENU_STYLE_TYPE_SYSTEM", + "showLoadingSpinner":true + } + }, + "popupType":"DROPDOWN", + "beReused":true + } + } + ] + } + }, + "trackingParams":"CBYQ_qsBGAAiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "accessibility":{ + "accessibilityData":{ + "label":"Settings" + } + }, + "tooltip":"Settings", + "style":"STYLE_DEFAULT" + } + }, + { + "buttonRenderer":{ + "style":"STYLE_SUGGESTIVE", + "size":"SIZE_SMALL", + "text":{ + "runs":[ + { + "text":"Sign in" + } + ] + }, + "icon":{ + "iconType":"AVATAR_LOGGED_OUT" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CBUQ1IAEGAEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"https://accounts.google.com/ServiceLogin?service=youtube&uilel=3&passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Den%26next%3Dhttps%253A%252F%252Fwww.youtube.com%252Fplaylist%253Flist%253DPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&hl=en&ec=65620", + "webPageType":"WEB_PAGE_TYPE_UNKNOWN", + "rootVe":83769 + } + }, + "signInEndpoint":{ + "idamTag":"65620" + } + }, + "trackingParams":"CBUQ1IAEGAEiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "targetId":"topbar-signin" + } + } + ], + "hotkeyDialog":{ + "hotkeyDialogRenderer":{ + "title":{ + "runs":[ + { + "text":"Keyboard shortcuts" + } + ] + }, + "sections":[ + { + "hotkeyDialogSectionRenderer":{ + "title":{ + "runs":[ + { + "text":"Playback" + } + ] + }, + "options":[ + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Toggle play/pause" + } + ] + }, + "hotkey":"k" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Rewind 10 seconds" + } + ] + }, + "hotkey":"j" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Fast forward 10 seconds" + } + ] + }, + "hotkey":"l" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Previous video" + } + ] + }, + "hotkey":"P (SHIFT+p)" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Next video" + } + ] + }, + "hotkey":"N (SHIFT+n)" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Previous frame (while paused)" + } + ] + }, + "hotkey":",", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Comma" + } + } + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Next frame (while paused)" + } + ] + }, + "hotkey":".", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Period" + } + } + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Decrease playback rate" + } + ] + }, + "hotkey":"< (SHIFT+,)", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Less than or SHIFT + comma" + } + } + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Increase playback rate" + } + ] + }, + "hotkey":"> (SHIFT+.)", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Greater than or SHIFT + period" + } + } + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Seek to specific point in the video (7 advances to 70% of duration)" + } + ] + }, + "hotkey":"0..9" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Seek to previous chapter" + } + ] + }, + "hotkey":"CONTROL + ←" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Seek to next chapter" + } + ] + }, + "hotkey":"CONTROL + →" + } + } + ] + } + }, + { + "hotkeyDialogSectionRenderer":{ + "title":{ + "runs":[ + { + "text":"General" + } + ] + }, + "options":[ + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Toggle full screen" + } + ] + }, + "hotkey":"f" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Toggle theater mode" + } + ] + }, + "hotkey":"t" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Toggle miniplayer" + } + ] + }, + "hotkey":"i" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Close miniplayer or current dialog" + } + ] + }, + "hotkey":"ESCAPE" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Toggle mute" + } + ] + }, + "hotkey":"m" + } + } + ] + } + }, + { + "hotkeyDialogSectionRenderer":{ + "title":{ + "runs":[ + { + "text":"Subtitles and closed captions" + } + ] + }, + "options":[ + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"If the video supports captions, toggle captions ON/OFF" + } + ] + }, + "hotkey":"c" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Rotate through different text opacity levels" + } + ] + }, + "hotkey":"o" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Rotate through different window opacity levels" + } + ] + }, + "hotkey":"w" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Rotate through font sizes (increasing)" + } + ] + }, + "hotkey":"+" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Rotate through font sizes (decreasing)" + } + ] + }, + "hotkey":"-", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Minus" + } + } + } + } + ] + } + }, + { + "hotkeyDialogSectionRenderer":{ + "title":{ + "runs":[ + { + "text":"Spherical Videos" + } + ] + }, + "options":[ + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Pan up" + } + ] + }, + "hotkey":"w" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Pan left" + } + ] + }, + "hotkey":"a" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Pan down" + } + ] + }, + "hotkey":"s" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Pan right" + } + ] + }, + "hotkey":"d" + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Zoom in" + } + ] + }, + "hotkey":"+ on numpad or ]", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Plus on number pad or right bracket" + } + } + } + }, + { + "hotkeyDialogSectionOptionRenderer":{ + "label":{ + "runs":[ + { + "text":"Zoom out" + } + ] + }, + "hotkey":"- on numpad or [", + "hotkeyAccessibilityLabel":{ + "accessibilityData":{ + "label":"Minus on number pad or left bracket" + } + } + } + } + ] + } + } + ], + "dismissButton":{ + "buttonRenderer":{ + "style":"STYLE_BLUE_TEXT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "runs":[ + { + "text":"Dismiss" + } + ] + }, + "trackingParams":"CBQQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + }, + "trackingParams":"CBMQteYDIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + }, + "backButton":{ + "buttonRenderer":{ + "trackingParams":"CBIQvIYDIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "command":{ + "clickTrackingParams":"CBIQvIYDIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CBIQvIYDIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "signalAction":{ + "signal":"HISTORY_BACK" + } + } + ] + } + } + } + }, + "forwardButton":{ + "buttonRenderer":{ + "trackingParams":"CBEQvYYDIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "command":{ + "clickTrackingParams":"CBEQvYYDIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CBEQvYYDIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "signalAction":{ + "signal":"HISTORY_FORWARD" + } + } + ] + } + } + } + }, + "a11ySkipNavigationButton":{ + "buttonRenderer":{ + "style":"STYLE_DEFAULT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "runs":[ + { + "text":"Skip navigation" + } + ] + }, + "trackingParams":"CBAQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "command":{ + "clickTrackingParams":"CBAQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CBAQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "signalAction":{ + "signal":"SKIP_NAVIGATION" + } + } + ] + } + } + } + }, + "voiceSearchButton":{ + "buttonRenderer":{ + "style":"STYLE_DEFAULT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "serviceEndpoint":{ + "clickTrackingParams":"CA0Q7a8FIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true + } + }, + "signalServiceEndpoint":{ + "signal":"CLIENT_SIGNAL", + "actions":[ + { + "clickTrackingParams":"CA0Q7a8FIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "openPopupAction":{ + "popup":{ + "voiceSearchDialogRenderer":{ + "placeholderHeader":{ + "runs":[ + { + "text":"Listening..." + } + ] + }, + "promptHeader":{ + "runs":[ + { + "text":"Didn't hear that. Try again." + } + ] + }, + "exampleQuery1":{ + "runs":[ + { + "text":"\"Play Dua Lipa\"" + } + ] + }, + "exampleQuery2":{ + "runs":[ + { + "text":"\"Show me my subscriptions\"" + } + ] + }, + "promptMicrophoneLabel":{ + "runs":[ + { + "text":"Tap microphone to try again" + } + ] + }, + "loadingHeader":{ + "runs":[ + { + "text":"Working..." + } + ] + }, + "connectionErrorHeader":{ + "runs":[ + { + "text":"No connection" + } + ] + }, + "connectionErrorMicrophoneLabel":{ + "runs":[ + { + "text":"Check your connection and try again" + } + ] + }, + "permissionsHeader":{ + "runs":[ + { + "text":"Waiting for permission" + } + ] + }, + "permissionsSubtext":{ + "runs":[ + { + "text":"Allow microphone access to search with voice" + } + ] + }, + "disabledHeader":{ + "runs":[ + { + "text":"Search with your voice" + } + ] + }, + "disabledSubtext":{ + "runs":[ + { + "text":"To search by voice, go to your browser settings and allow access to microphone" + } + ] + }, + "microphoneButtonAriaLabel":{ + "runs":[ + { + "text":"Cancel" + } + ] + }, + "exitButton":{ + "buttonRenderer":{ + "style":"STYLE_DEFAULT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "icon":{ + "iconType":"CLOSE" + }, + "trackingParams":"CA8Q0LEFIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "accessibilityData":{ + "accessibilityData":{ + "label":"Cancel" + } + } + } + }, + "trackingParams":"CA4Q7q8FIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "microphoneOffPromptHeader":{ + "runs":[ + { + "text":"Microphone off. Try again." + } + ] + } + } + }, + "popupType":"TOP_ALIGNED_DIALOG" + } + } + ] + } + }, + "icon":{ + "iconType":"MICROPHONE_ON" + }, + "tooltip":"Search with your voice", + "trackingParams":"CA0Q7a8FIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "accessibilityData":{ + "accessibilityData":{ + "label":"Search with your voice" + } + } + } + } + } + }, + "microformat":{ + "microformatDataRenderer":{ + "urlCanonical":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "title":"Small Projects", + "description":"", + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLDGGJ1Lpirgu6TACcDhTLP52Z9FOg&days_since_epoch=19334", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLALg0_XLfs6DruQgRluBFWWFu1wDQ&days_since_epoch=19334", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCPYBEIoBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAEOUezXAWs2mMRrfzDtoqWDqXZfg&days_since_epoch=19334", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLARkygXjR7YeBVQW_GaJ5WEveTHeg&days_since_epoch=19334", + "width":336, + "height":188 + } + ] + }, + "siteName":"YouTube", + "appName":"YouTube", + "androidPackage":"com.google.android.youtube", + "iosAppStoreId":"544007664", + "iosAppArguments":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "ogType":"website", + "urlApplinksWeb":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&feature=applinks", + "urlApplinksIos":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&feature=applinks", + "urlApplinksAndroid":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&feature=applinks", + "urlTwitterIos":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&feature=twitter-deep-link", + "urlTwitterAndroid":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&feature=twitter-deep-link", + "twitterCardType":"summary", + "twitterSiteHandle":"@YouTube", + "schemaDotOrgType":"http://schema.org/WebPage", + "noindex":false, + "unlisted":false, + "linkAlternates":[ + { + "hrefUrl":"http://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + }, + { + "hrefUrl":"android-app://com.google.android.youtube/http/youtube.comhttp://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + }, + { + "hrefUrl":"ios-app://544007664/http/youtube.comhttp://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + ] + } + }, + "sidebar":{ + "playlistSidebarRenderer":{ + "items":[ + { + "playlistSidebarPrimaryInfoRenderer":{ + "thumbnailRenderer":{ + "playlistVideoThumbnailRenderer":{ + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLDGGJ1Lpirgu6TACcDhTLP52Z9FOg", + "width":168, + "height":94 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLALg0_XLfs6DruQgRluBFWWFu1wDQ", + "width":196, + "height":110 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCPYBEIoBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAEOUezXAWs2mMRrfzDtoqWDqXZfg", + "width":246, + "height":138 + }, + { + "url":"https://i.ytimg.com/vi/CVClHLwv-4I/hqdefault.jpg?sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLARkygXjR7YeBVQW_GaJ5WEveTHeg", + "width":336, + "height":188 + } + ] + }, + "trackingParams":"CAsQy-wJIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + }, + "title":{ + "runs":[ + { + "text":"Small Projects", + "navigationEndpoint":{ + "clickTrackingParams":"CAEQk-8CIhMIuP_m_uvo-wIV68HCBB1kpgReWiRWTFBMWmxBMEdwbl92SDhEV0wxNFd1ZF9tOE5lTk5iWUtPa2qaAQMQ-iw=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=CVClHLwv-4I&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"CVClHLwv-4I", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0950a51cbc2ffb82&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + } + } + ] + }, + "stats":[ + { + "runs":[ + { + "text":"121" + }, + { + "text":" videos" + } + ] + }, + { + "simpleText":"281,139 views" + }, + { + "runs":[ + { + "text":"Last updated on " + }, + { + "text":"Nov 14, 2022" + } + ] + } + ], + "menu":{ + "menuRenderer":{ + "items":[ + { + "menuNavigationItemRenderer":{ + "text":{ + "simpleText":"Report playlist" + }, + "icon":{ + "iconType":"FLAG" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAEQk-8CIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "ignoreNavigation":true + } + }, + "modalEndpoint":{ + "modal":{ + "modalWithTitleAndButtonRenderer":{ + "title":{ + "simpleText":"Need to report the playlist?" + }, + "content":{ + "simpleText":"Sign in to report inappropriate content." + }, + "button":{ + "buttonRenderer":{ + "style":"STYLE_BRAND", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "runs":[ + { + "text":"Sign in" + } + ] + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAoQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"https://accounts.google.com/ServiceLogin?service=youtube&uilel=3&passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Den%26next%3D%252Fchannel%252FPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&hl=en", + "webPageType":"WEB_PAGE_TYPE_UNKNOWN", + "rootVe":83769 + } + }, + "signInEndpoint":{ + "nextEndpoint":{ + "clickTrackingParams":"CAoQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/channel/PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_BROWSE", + "rootVe":6827, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + } + } + }, + "trackingParams":"CAoQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + } + } + } + }, + "trackingParams":"CAEQk-8CIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + ], + "trackingParams":"CAEQk-8CIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "topLevelButtons":[ + { + "toggleButtonRenderer":{ + "style":{ + "styleType":"STYLE_TEXT" + }, + "size":{ + "sizeType":"SIZE_DEFAULT" + }, + "isToggled":false, + "isDisabled":false, + "defaultIcon":{ + "iconType":"PLAYLIST_ADD" + }, + "toggledIcon":{ + "iconType":"PLAYLIST_ADD_CHECK" + }, + "trackingParams":"CAgQmE0YCCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "defaultTooltip":"Save playlist", + "toggledTooltip":"Remove from Library", + "defaultNavigationEndpoint":{ + "clickTrackingParams":"CAgQmE0YCCITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "ignoreNavigation":true + } + }, + "modalEndpoint":{ + "modal":{ + "modalWithTitleAndButtonRenderer":{ + "title":{ + "simpleText":"Want to save this playlist?" + }, + "content":{ + "simpleText":"Sign in to save this playlist." + }, + "button":{ + "buttonRenderer":{ + "style":"STYLE_BLUE_TEXT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "simpleText":"Sign in" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAkQ_IYEIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"https://accounts.google.com/ServiceLogin?service=youtube&uilel=3&passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Den%26next%3D%252Fplaylist%253Flist%253DPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj&hl=en&ec=66428", + "webPageType":"WEB_PAGE_TYPE_UNKNOWN", + "rootVe":83769 + } + }, + "signInEndpoint":{ + "nextEndpoint":{ + "clickTrackingParams":"CAkQ_IYEIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_PLAYLIST", + "rootVe":5754, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"VLPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + }, + "idamTag":"66428" + } + }, + "trackingParams":"CAkQ_IYEIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + } + } + } + }, + "accessibilityData":{ + "accessibilityData":{ + "label":"Save playlist" + } + }, + "toggledAccessibilityData":{ + "accessibilityData":{ + "label":"Remove from Library" + } + } + } + }, + { + "buttonRenderer":{ + "style":"STYLE_TEXT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "icon":{ + "iconType":"SHUFFLE" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAcQ8FsYCSITCLj_5v7r6PsCFevBwgQdZKYEXlokVkxQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tqmgEDEPos", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=ZVug65gW-fc&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"ZVug65gW-fc", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "params":"CPY8IBg%3D", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx57ynse.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=655ba0eb9816f9f7&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "accessibility":{ + "label":"Shuffle play" + }, + "tooltip":"Shuffle play", + "trackingParams":"CAcQ8FsYCSITCLj_5v7r6PsCFevBwgQdZKYEXg==" + } + }, + { + "buttonRenderer":{ + "style":"STYLE_DEFAULT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "serviceEndpoint":{ + "clickTrackingParams":"CAUQ8FsYCiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "commandMetadata":{ + "webCommandMetadata":{ + "sendPost":true, + "apiUrl":"/youtubei/v1/share/get_share_panel" + } + }, + "shareEntityServiceEndpoint":{ + "serializedShareEntity":"EiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq", + "commands":[ + { + "clickTrackingParams":"CAUQ8FsYCiITCLj_5v7r6PsCFevBwgQdZKYEXg==", + "openPopupAction":{ + "popup":{ + "unifiedSharePanelRenderer":{ + "trackingParams":"CAYQjmIiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "showLoadingSpinner":true + } + }, + "popupType":"DIALOG", + "beReused":true + } + } + ] + } + }, + "icon":{ + "iconType":"SHARE" + }, + "accessibility":{ + "label":"Share" + }, + "tooltip":"Share", + "trackingParams":"CAUQ8FsYCiITCLj_5v7r6PsCFevBwgQdZKYEXg==" + } + } + ], + "accessibility":{ + "accessibilityData":{ + "label":"Action menu" + } + } + } + }, + "thumbnailOverlays":[ + { + "thumbnailOverlaySidePanelRenderer":{ + "text":{ + "simpleText":"PLAY ALL" + }, + "icon":{ + "iconType":"PLAY_ALL" + } + } + } + ], + "navigationEndpoint":{ + "clickTrackingParams":"CAEQk-8CIhMIuP_m_uvo-wIV68HCBB1kpgReWiRWTFBMWmxBMEdwbl92SDhEV0wxNFd1ZF9tOE5lTk5iWUtPa2qaAQMQ-iw=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/watch?v=CVClHLwv-4I&list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_WATCH", + "rootVe":3832 + } + }, + "watchEndpoint":{ + "videoId":"CVClHLwv-4I", + "playlistId":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "loggingContext":{ + "vssLoggingContext":{ + "serializedContextData":"GiJQTFpsQTBHcG5fdkg4RFdMMTRXdWRfbThOZU5OYllLT2tq" + } + }, + "watchEndpointSupportedOnesieConfig":{ + "html5PlaybackOnesieConfig":{ + "commonConfig":{ + "url":"https://rr4---sn-nx5s7n76.googlevideo.com/initplayback?source=youtube&oeis=1&c=WEB&oad=3200&ovd=3200&oaad=11000&oavd=11000&ocs=700&oewis=1&oputc=1&ofpcc=1&msp=1&odepv=1&id=0950a51cbc2ffb82&ip=44.227.217.144&initcwndbps=1257500&mt=1670461272&oweuc=" + } + } + } + } + }, + "description":{}, + "showMoreText":{ + "runs":[ + { + "text":"Show more" + } + ] + } + } + }, + { + "playlistSidebarSecondaryInfoRenderer":{ + "videoOwner":{ + "videoOwnerRenderer":{ + "thumbnail":{ + "thumbnails":[ + { + "url":"https://yt3.ggpht.com/ytc/AMLnZu-PjRc81p0qP-ZPWxv8aY4k-4gFRzGEYs3HWbIQ=s48-c-k-c0x00ffffff-no-rj", + "width":48, + "height":48 + }, + { + "url":"https://yt3.ggpht.com/ytc/AMLnZu-PjRc81p0qP-ZPWxv8aY4k-4gFRzGEYs3HWbIQ=s88-c-k-c0x00ffffff-no-rj", + "width":88, + "height":88 + }, + { + "url":"https://yt3.ggpht.com/ytc/AMLnZu-PjRc81p0qP-ZPWxv8aY4k-4gFRzGEYs3HWbIQ=s176-c-k-c0x00ffffff-no-rj", + "width":176, + "height":176 + } + ] + }, + "title":{ + "runs":[ + { + "text":"Web Dev Simplified", + "navigationEndpoint":{ + "clickTrackingParams":"CAQQ4TkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + } + } + ] + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAQQ4TkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/@WebDevSimplified", + "webPageType":"WEB_PAGE_TYPE_CHANNEL", + "rootVe":3611, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"UCFbNIlppjAuEX4znoulh0Cw", + "canonicalBaseUrl":"/@WebDevSimplified" + } + }, + "trackingParams":"CAQQ4TkiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + }, + "button":{ + "buttonRenderer":{ + "style":"STYLE_DESTRUCTIVE", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "runs":[ + { + "text":"Subscribe" + } + ] + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAIQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=", + "commandMetadata":{ + "webCommandMetadata":{ + "ignoreNavigation":true + } + }, + "modalEndpoint":{ + "modal":{ + "modalWithTitleAndButtonRenderer":{ + "title":{ + "simpleText":"Want to subscribe to this channel?" + }, + "content":{ + "simpleText":"Sign in to subscribe to this channel." + }, + "button":{ + "buttonRenderer":{ + "style":"STYLE_BLUE_TEXT", + "size":"SIZE_DEFAULT", + "isDisabled":false, + "text":{ + "simpleText":"Sign in" + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAMQ_YYEIhMIuP_m_uvo-wIV68HCBB1kpgReMglzdWJzY3JpYmU=", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"https://accounts.google.com/ServiceLogin?service=youtube&uilel=3&passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Den%26next%3D%252Fplaylist%253Flist%253DPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj%26continue_action%3DQUFFLUhqbHBualRzVDRjRnZQanV5bjVZOTM1QlVqVXFXUXxBQ3Jtc0tubDR1eVVmbTNGVmV5LU9NbnFVd21IbUdzQS0xTmp1ejFLRXNEMkdIcUFPS1E0V2lxLXl5QlhRaFpwU2FQWUlfREh4dmRVS2JVRE1hVU5sWXVZYjQ3QkhScWpEV25nTTl1MjBCbE5SeGhwLWpGVXdINHBxQkoxX2F3QnFMQUtodVpSTEZ3dFhobGJCejY5dmRLbEZlWWhBMlpxNFFUQ2JlaGNZak5qNDhfNS1ibDExSEJDYUpBbERuQUlkOGR2anpQajFFM2hNRmlval91ZXUwSjVHb3hnVVBtcnN3&hl=en&ec=66429", + "webPageType":"WEB_PAGE_TYPE_UNKNOWN", + "rootVe":83769 + } + }, + "signInEndpoint":{ + "nextEndpoint":{ + "clickTrackingParams":"CAMQ_YYEIhMIuP_m_uvo-wIV68HCBB1kpgRe", + "commandMetadata":{ + "webCommandMetadata":{ + "url":"/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "webPageType":"WEB_PAGE_TYPE_PLAYLIST", + "rootVe":5754, + "apiUrl":"/youtubei/v1/browse" + } + }, + "browseEndpoint":{ + "browseId":"VLPLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + }, + "continueAction":"QUFFLUhqbHBualRzVDRjRnZQanV5bjVZOTM1QlVqVXFXUXxBQ3Jtc0tubDR1eVVmbTNGVmV5LU9NbnFVd21IbUdzQS0xTmp1ejFLRXNEMkdIcUFPS1E0V2lxLXl5QlhRaFpwU2FQWUlfREh4dmRVS2JVRE1hVU5sWXVZYjQ3QkhScWpEV25nTTl1MjBCbE5SeGhwLWpGVXdINHBxQkoxX2F3QnFMQUtodVpSTEZ3dFhobGJCejY5dmRLbEZlWWhBMlpxNFFUQ2JlaGNZak5qNDhfNS1ibDExSEJDYUpBbERuQUlkOGR2anpQajFFM2hNRmlval91ZXUwSjVHb3hnVVBtcnN3", + "idamTag":"66429" + } + }, + "trackingParams":"CAMQ_YYEIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + } + } + } + }, + "trackingParams":"CAIQ8FsiEwi4_-b-6-j7AhXrwcIEHWSmBF4=" + } + } + } + } + ], + "trackingParams":"CAEQk-8CIhMIuP_m_uvo-wIV68HCBB1kpgRe" + } + } + } + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "allow":"OPTIONS, GET", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7761a3fddd629208-FRA", + "content-type":"application/json", + "date":"Thu, 08 Dec 2022 01:13:52 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "Full Details":{ + "type":"object", + "properties":{ + "responseContext":{ + "type":"object", + "properties":{ + "serviceTrackingParams":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "service":{ + "type":"string" + }, + "params":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "key":{ + "type":"string" + }, + "value":{ + "type":"string" + } + } + } + } + } + } + }, + "mainAppWebResponseContext":{ + "type":"object", + "properties":{ + "loggedOut":{ + "type":"boolean" + } + } + }, + "webResponseContextExtensionData":{ + "type":"object", + "properties":{ + "ytConfigData":{ + "type":"object", + "properties":{ + "visitorData":{ + "type":"string" + }, + "rootVisualElementType":{ + "type":"integer" + } + } + }, + "hasDecorated":{ + "type":"boolean" + } + } + } + } + }, + "contents":{ + "type":"object", + "properties":{ + "twoColumnBrowseResultsRenderer":{ + "type":"object", + "properties":{ + "tabs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "tabRenderer":{ + "type":"object", + "properties":{ + "selected":{ + "type":"boolean" + }, + "content":{ + "type":"object", + "properties":{ + "sectionListRenderer":{ + "type":"object", + "properties":{ + "contents":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "itemSectionRenderer":{ + "type":"object", + "properties":{ + "contents":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "playlistVideoListRenderer":{ + "type":"object", + "properties":{ + "contents":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "playlistId":{ + "type":"string" + }, + "isEditable":{ + "type":"boolean" + }, + "canReorder":{ + "type":"boolean" + }, + "trackingParams":{ + "type":"string" + }, + "targetId":{ + "type":"string" + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + "header":{ + "type":"object", + "properties":{ + "playlistHeaderRenderer":{ + "type":"object", + "properties":{ + "playlistId":{ + "type":"string" + }, + "title":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "numVideosText":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "descriptionText":{ + "type":"object" + }, + "ownerText":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "navigationEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + }, + "apiUrl":{ + "type":"string" + } + } + } + } + }, + "browseEndpoint":{ + "type":"object", + "properties":{ + "browseId":{ + "type":"string" + }, + "canonicalBaseUrl":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + "viewCountText":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "shareData":{ + "type":"object", + "properties":{ + "canShare":{ + "type":"boolean" + } + } + }, + "isEditable":{ + "type":"boolean" + }, + "privacy":{ + "type":"string" + }, + "ownerEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + }, + "apiUrl":{ + "type":"string" + } + } + } + } + }, + "browseEndpoint":{ + "type":"object", + "properties":{ + "browseId":{ + "type":"string" + }, + "canonicalBaseUrl":{ + "type":"string" + } + } + } + } + }, + "editableDetails":{ + "type":"object", + "properties":{ + "canDelete":{ + "type":"boolean" + } + } + }, + "trackingParams":{ + "type":"string" + }, + "serviceEndpoints":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "sendPost":{ + "type":"boolean" + }, + "apiUrl":{ + "type":"string" + } + } + } + } + }, + "playlistEditEndpoint":{ + "type":"object", + "properties":{ + "actions":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "action":{ + "type":"string" + }, + "sourcePlaylistId":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "stats":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "briefStats":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + } + }, + "playlistHeaderBanner":{ + "type":"object", + "properties":{ + "heroPlaylistThumbnailRenderer":{ + "type":"object", + "properties":{ + "thumbnail":{ + "type":"object", + "properties":{ + "thumbnails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "width":{ + "type":"integer" + }, + "height":{ + "type":"integer" + } + } + } + } + } + }, + "maxRatio":{ + "type":"number" + }, + "trackingParams":{ + "type":"string" + }, + "onTap":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + } + } + } + } + }, + "watchEndpoint":{ + "type":"object", + "properties":{ + "videoId":{ + "type":"string" + }, + "playlistId":{ + "type":"string" + }, + "loggingContext":{ + "type":"object", + "properties":{ + "vssLoggingContext":{ + "type":"object", + "properties":{ + "serializedContextData":{ + "type":"string" + } + } + } + } + }, + "watchEndpointSupportedOnesieConfig":{ + "type":"object", + "properties":{ + "html5PlaybackOnesieConfig":{ + "type":"object", + "properties":{ + "commonConfig":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + }, + "thumbnailOverlays":{ + "type":"object", + "properties":{ + "thumbnailOverlayHoverTextRenderer":{ + "type":"object", + "properties":{ + "text":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + }, + "saveButton":{ + "type":"object", + "properties":{ + "toggleButtonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"object", + "properties":{ + "styleType":{ + "type":"string" + } + } + }, + "size":{ + "type":"object", + "properties":{ + "sizeType":{ + "type":"string" + } + } + }, + "isToggled":{ + "type":"boolean" + }, + "isDisabled":{ + "type":"boolean" + }, + "defaultIcon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "toggledIcon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "trackingParams":{ + "type":"string" + }, + "defaultTooltip":{ + "type":"string" + }, + "toggledTooltip":{ + "type":"string" + }, + "toggledStyle":{ + "type":"object", + "properties":{ + "styleType":{ + "type":"string" + } + } + }, + "defaultNavigationEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "ignoreNavigation":{ + "type":"boolean" + } + } + } + } + }, + "modalEndpoint":{ + "type":"object", + "properties":{ + "modal":{ + "type":"object", + "properties":{ + "modalWithTitleAndButtonRenderer":{ + "type":"object", + "properties":{ + "title":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "content":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "button":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "text":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "navigationEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + } + } + } + } + }, + "signInEndpoint":{ + "type":"object", + "properties":{ + "nextEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + }, + "apiUrl":{ + "type":"string" + } + } + } + } + }, + "browseEndpoint":{ + "type":"object", + "properties":{ + "browseId":{ + "type":"string" + } + } + } + } + }, + "idamTag":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "accessibilityData":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + }, + "toggledAccessibilityData":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "shareButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "serviceEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "sendPost":{ + "type":"boolean" + }, + "apiUrl":{ + "type":"string" + } + } + } + } + }, + "shareEntityServiceEndpoint":{ + "type":"object", + "properties":{ + "serializedShareEntity":{ + "type":"string" + }, + "commands":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "openPopupAction":{ + "type":"object", + "properties":{ + "popup":{ + "type":"object", + "properties":{ + "unifiedSharePanelRenderer":{ + "type":"object", + "properties":{ + "trackingParams":{ + "type":"string" + }, + "showLoadingSpinner":{ + "type":"boolean" + } + } + } + } + }, + "popupType":{ + "type":"string" + }, + "beReused":{ + "type":"boolean" + } + } + } + } + } + } + } + } + } + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "tooltip":{ + "type":"string" + }, + "trackingParams":{ + "type":"string" + }, + "accessibilityData":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "moreActionsMenu":{ + "type":"object", + "properties":{ + "menuRenderer":{ + "type":"object", + "properties":{ + "trackingParams":{ + "type":"string" + }, + "accessibility":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "playButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "text":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "navigationEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + } + } + } + } + }, + "watchEndpoint":{ + "type":"object", + "properties":{ + "videoId":{ + "type":"string" + }, + "playlistId":{ + "type":"string" + }, + "loggingContext":{ + "type":"object", + "properties":{ + "vssLoggingContext":{ + "type":"object", + "properties":{ + "serializedContextData":{ + "type":"string" + } + } + } + } + }, + "watchEndpointSupportedOnesieConfig":{ + "type":"object", + "properties":{ + "html5PlaybackOnesieConfig":{ + "type":"object", + "properties":{ + "commonConfig":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "shufflePlayButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "text":{ + "type":"object", + "properties":{ + "simpleText":{ + "type":"string" + } + } + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "navigationEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + } + } + } + } + }, + "watchEndpoint":{ + "type":"object", + "properties":{ + "videoId":{ + "type":"string" + }, + "playlistId":{ + "type":"string" + }, + "params":{ + "type":"string" + }, + "loggingContext":{ + "type":"object", + "properties":{ + "vssLoggingContext":{ + "type":"object", + "properties":{ + "serializedContextData":{ + "type":"string" + } + } + } + } + }, + "watchEndpointSupportedOnesieConfig":{ + "type":"object", + "properties":{ + "html5PlaybackOnesieConfig":{ + "type":"object", + "properties":{ + "commonConfig":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "onDescriptionTap":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "openPopupAction":{ + "type":"object", + "properties":{ + "popup":{ + "type":"object", + "properties":{ + "fancyDismissibleDialogRenderer":{ + "type":"object", + "properties":{ + "dialogMessage":{ + "type":"object" + }, + "title":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "confirmLabel":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "popupType":{ + "type":"string" + } + } + } + } + }, + "cinematicContainer":{ + "type":"object", + "properties":{ + "cinematicContainerRenderer":{ + "type":"object", + "properties":{ + "backgroundImageConfig":{ + "type":"object", + "properties":{ + "thumbnail":{ + "type":"object", + "properties":{ + "thumbnails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "width":{ + "type":"integer" + }, + "height":{ + "type":"integer" + } + } + } + } + } + } + } + }, + "gradientColorConfig":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "lightThemeColor":{ + "type":"integer" + }, + "darkThemeColor":{ + "type":"integer" + }, + "startLocation":{ + "type":"number" + } + } + } + }, + "config":{ + "type":"object", + "properties":{ + "lightThemeBackgroundColor":{ + "type":"integer" + }, + "darkThemeBackgroundColor":{ + "type":"integer" + }, + "colorSourceSizeMultiplier":{ + "type":"integer" + }, + "applyClientImageBlur":{ + "type":"boolean" + } + } + } + } + } + } + }, + "byline":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "playlistBylineRenderer":{ + "type":"object", + "properties":{ + "text":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + }, + "descriptionTapText":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + "metadata":{ + "type":"object", + "properties":{ + "playlistMetadataRenderer":{ + "type":"object", + "properties":{ + "title":{ + "type":"string" + }, + "androidAppindexingLink":{ + "type":"string" + }, + "iosAppindexingLink":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "topbar":{ + "type":"object", + "properties":{ + "desktopTopbarRenderer":{ + "type":"object", + "properties":{ + "logo":{ + "type":"object", + "properties":{ + "topbarLogoRenderer":{ + "type":"object", + "properties":{ + "iconImage":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "tooltipText":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "endpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + }, + "apiUrl":{ + "type":"string" + } + } + } + } + }, + "browseEndpoint":{ + "type":"object", + "properties":{ + "browseId":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "overrideEntityKey":{ + "type":"string" + } + } + } + } + }, + "searchbox":{ + "type":"object", + "properties":{ + "fusionSearchboxRenderer":{ + "type":"object", + "properties":{ + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "placeholderText":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "config":{ + "type":"object", + "properties":{ + "webSearchboxConfig":{ + "type":"object", + "properties":{ + "requestLanguage":{ + "type":"string" + }, + "requestDomain":{ + "type":"string" + }, + "hasOnscreenKeyboard":{ + "type":"boolean" + }, + "focusSearchbox":{ + "type":"boolean" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "searchEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "webPageType":{ + "type":"string" + }, + "rootVe":{ + "type":"integer" + } + } + } + } + }, + "searchEndpoint":{ + "type":"object", + "properties":{ + "query":{ + "type":"string" + } + } + } + } + }, + "clearButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "trackingParams":{ + "type":"string" + }, + "accessibilityData":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "topbarButtons":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "hotkeyDialog":{ + "type":"object", + "properties":{ + "hotkeyDialogRenderer":{ + "type":"object", + "properties":{ + "title":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "sections":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "hotkeyDialogSectionRenderer":{ + "type":"object", + "properties":{ + "title":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "options":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "hotkeyDialogSectionOptionRenderer":{ + "type":"object" + } + } + } + } + } + } + } + } + }, + "dismissButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "text":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "backButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "trackingParams":{ + "type":"string" + }, + "command":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "sendPost":{ + "type":"boolean" + } + } + } + } + }, + "signalServiceEndpoint":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + }, + "actions":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "signalAction":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "forwardButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "trackingParams":{ + "type":"string" + }, + "command":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "sendPost":{ + "type":"boolean" + } + } + } + } + }, + "signalServiceEndpoint":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + }, + "actions":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "signalAction":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "a11ySkipNavigationButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "text":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "command":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "sendPost":{ + "type":"boolean" + } + } + } + } + }, + "signalServiceEndpoint":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + }, + "actions":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "signalAction":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "voiceSearchButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "serviceEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "commandMetadata":{ + "type":"object", + "properties":{ + "webCommandMetadata":{ + "type":"object", + "properties":{ + "sendPost":{ + "type":"boolean" + } + } + } + } + }, + "signalServiceEndpoint":{ + "type":"object", + "properties":{ + "signal":{ + "type":"string" + }, + "actions":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "openPopupAction":{ + "type":"object", + "properties":{ + "popup":{ + "type":"object", + "properties":{ + "voiceSearchDialogRenderer":{ + "type":"object", + "properties":{ + "placeholderHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "promptHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "exampleQuery1":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "exampleQuery2":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "promptMicrophoneLabel":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "loadingHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "connectionErrorHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "connectionErrorMicrophoneLabel":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "permissionsHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "permissionsSubtext":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "disabledHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "disabledSubtext":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "microphoneButtonAriaLabel":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "exitButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "style":{ + "type":"string" + }, + "size":{ + "type":"string" + }, + "isDisabled":{ + "type":"boolean" + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "trackingParams":{ + "type":"string" + }, + "accessibilityData":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "microphoneOffPromptHeader":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + "popupType":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + "icon":{ + "type":"object", + "properties":{ + "iconType":{ + "type":"string" + } + } + }, + "tooltip":{ + "type":"string" + }, + "trackingParams":{ + "type":"string" + }, + "accessibilityData":{ + "type":"object", + "properties":{ + "accessibilityData":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "microformat":{ + "type":"object", + "properties":{ + "microformatDataRenderer":{ + "type":"object", + "properties":{ + "urlCanonical":{ + "type":"string" + }, + "title":{ + "type":"string" + }, + "description":{ + "type":"string" + }, + "thumbnail":{ + "type":"object", + "properties":{ + "thumbnails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "width":{ + "type":"integer" + }, + "height":{ + "type":"integer" + } + } + } + } + } + }, + "siteName":{ + "type":"string" + }, + "appName":{ + "type":"string" + }, + "androidPackage":{ + "type":"string" + }, + "iosAppStoreId":{ + "type":"string" + }, + "iosAppArguments":{ + "type":"string" + }, + "ogType":{ + "type":"string" + }, + "urlApplinksWeb":{ + "type":"string" + }, + "urlApplinksIos":{ + "type":"string" + }, + "urlApplinksAndroid":{ + "type":"string" + }, + "urlTwitterIos":{ + "type":"string" + }, + "urlTwitterAndroid":{ + "type":"string" + }, + "twitterCardType":{ + "type":"string" + }, + "twitterSiteHandle":{ + "type":"string" + }, + "schemaDotOrgType":{ + "type":"string" + }, + "noindex":{ + "type":"boolean" + }, + "unlisted":{ + "type":"boolean" + }, + "linkAlternates":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "hrefUrl":{ + "type":"string" + } + } + } + } + } + } + } + }, + "sidebar":{ + "type":"object", + "properties":{ + "playlistSidebarRenderer":{ + "type":"object", + "properties":{ + "items":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + { + "name":"GET Playlist Basic Details | Provide YouTube Playlist ID", + "url":"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_details/{playlist_id}/", + "description":"Get Basic Information of a playlist by providing the playlist ID.", + "method":"GET", + "required_parameters":[ + { + "name":"playlist_id", + "type":"string", + "description":"", + "default":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_details/{playlist_id}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "ID":"PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "Playlist URL":"https://www.youtube.com/playlist?list=PLZlA0Gpn_vH8DWL14Wud_m8NeNNbYKOkj", + "Title":"Small Projects", + "Total Videos In The List":"121 videos.", + "Views":"281139 || two hundred and eighty-one thousand, one hundred and thirty-nine", + "Playlist Owner":"Web Dev Simplified", + "Owner ID":"UCFbNIlppjAuEX4znoulh0Cw", + "Owner URL":"https://www.youtube.com/channel/UCFbNIlppjAuEX4znoulh0Cw", + "Last_updated":"2022-11-14" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "allow":"OPTIONS, GET", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"7761a07c7bbcbbe3-FRA", + "content-type":"application/json", + "date":"Thu, 08 Dec 2022 01:11:28 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "ID":{ + "type":"string" + }, + "Playlist URL":{ + "type":"string" + }, + "Title":{ + "type":"string" + }, + "Total Videos In The List":{ + "type":"string" + }, + "Views":{ + "type":"string" + }, + "Playlist Owner":{ + "type":"string" + }, + "Owner ID":{ + "type":"string" + }, + "Owner URL":{ + "type":"string" + }, + "Last_updated":{ + "type":"string" + } + } + } + }, + { + "name":"GET Video's Full Details || Provide the Video ID", + "url":"https://youtube-powerfull-api.p.rapidapi.com/api/get_full_video_details/{video_id}/", + "description":"Retrieve full information about a video by simply providing the video ID. \nIf you don't know where to find the video ID ? kindly check the bellow example.\nhttps://www.youtube.com/watch?v=**nu_pCVPKzTk**\nAs you see in the above link a string inside the double stars is the video ID.", + "method":"GET", + "required_parameters":[ + { + "name":"video_id", + "type":"string", + "description":"", + "default":"nu_pCVPKzTk" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/api/get_full_video_details/{video_id}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Details":{ + "responseContext":{ + "visitorData":"CgtGRlVvU2JIR3RxRSin38ScBg%3D%3D", + "serviceTrackingParams":[ + { + "service":"GFEEDBACK", + "params":[ + { + "key":"is_alc_surface", + "value":"false" + }, + { + "key":"ipcc", + "value":"0" + }, + { + "key":"is_viewed_live", + "value":"False" + }, + { + "key":"logged_in", + "value":"0" + }, + { + "key":"e", + "value":"1714249,23882502,23918597,23934970,23946420,23966208,23983296,23998056,24001373,24004644,24007246,24034168,24036948,24074379,24077241,24080738,24117491,24120820,24123943,24135310,24140247,24160836,24161116,24162919,24164186,24169501,24181174,24187043,24187377,24191629,24197450,24207516,24211178,24217535,24219713,24228637,24234976,24241378,24244167,24255165,24255543,24255545,24262346,24262733,24263796,24265426,24265964,24267564,24268142,24272787,24279196,24283015,24283093,24285788,24288043,24288664,24290971,24292955,24294555,24296354,24390675,24391543,24392364,24394397,24400176,24402891,24405623,24406318,24406620,24406861,24407200,24407914,24412126,24412898,24413358,24415128,24415579,24415866,24418781,24418865,24419345,24420756,24421162,24424535,24424806,24425061,24426872,24428902,24429738,24430664,24432417,24570070,24590921,24591047,39322504,39322574" + } + ] + }, + { + "service":"CSI", + "params":[ + { + "key":"yt_ad", + "value":"1" + }, + { + "key":"c", + "value":"ANDROID" + }, + { + "key":"cver", + "value":"16.20" + }, + { + "key":"yt_li", + "value":"0" + }, + { + "key":"GetPlayer_rid", + "value":"0xa3adfd5730b34a07" + } + ] + }, + { + "service":"GUIDED_HELP", + "params":[ + { + "key":"logged_in", + "value":"0" + } + ] + }, + { + "service":"ECATCHER", + "params":[ + { + "key":"client.version", + "value":"16.20" + }, + { + "key":"client.name", + "value":"ANDROID" + }, + { + "key":"client.fexp", + "value":"24234976,24265964,24197450,24074379,24420756,24268142,24077241,24290971,24292955,24285788,24288664,24001373,24228637,24424535,24161116,24034168,23882502,23946420,24255543,24117491,24120820,24412898,24187377,23983296,24413358,24288043,24424806,24391543,24160836,23966208,24140247,24219713,24406861,24419345,24570070,24123943,24080738,24135310,23918597,24187043,24164186,24407914,23998056,24415128,24283015,24207516,24036948,24255545,24430664,24004644,24418865,24394397,24390675,24415866,24267564,24412126,24392364,24263796,24217535,24244167,24407200,24426872,24283093,24262733,24294555,24432417,24265426,24421162,24162919,24007246,24418781,1714249,24415579,24405623,39322574,24272787,24402891,24169501,23934970,24428902,24429738,24255165,24591047,24181174,24191629,24400176,24241378,24211178,24425061,24296354,24590921,24406620,24262346,24406318,24279196,39322504" + } + ] + }, + { + "service":"LISTNR", + "params":[ + { + "key":"e", + "value":"24033252,24286257,24412898,24262372,24253780,24135310,24220751,24265426,24278125,24036948,24288664,24191629,24253784,24283093,24074379,24250570,24390338,24255165,24415866,24034168,24419571,24420756,24268142,24430664,24421162,24412126,24267564,24254870,24024517,24117491,24267539,24262346,24274141,24283015,24290971,24392364,24406318,24405623,24140247,24272787,24263796,24030282,24415579,24253767,24570070,39322504,24181174,24292687,39322574,24234976,24164186" + } + ] + }, + { + "service":"SUGGEST", + "params":[ + { + "key":"sugexp", + "value":"uqap13ncv282,ytpo.bo.me=1,ytposo.bo.me=1,ytpo.bo.ro.csw=0.2,ytpo.bo.ro.vsw=0.8,ytpo.bo.ro.mi=24419658,ytposo.bo.ro.csw=0.8,ytposo.bo.ro.vsw=0.2,ytposo.bo.ro.mi=24419658,cfro=1,ytpo.bo.me=0,ytposo.bo.me=0,ytpo.bo.ro.mi=24419658,ytposo.bo.ro.mi=24419658" + } + ] + } + ] + }, + "playabilityStatus":{ + "status":"OK", + "playableInEmbed":true, + "offlineability":{ + "buttonRenderer":{ + "serviceEndpoint":{ + "clickTrackingParams":"CAcQ6ewBIhMIqu-h6-Ho-wIVSkZMCB0tcQxt", + "ypcGetOfflineUpsellEndpoint":{ + "params":"ChPqqN25AQ0KC251X3BDVlBLelRrIgtudV9wQ1ZQS3pUayoVCAkYAVIPCgtudV9wQ1ZQS3pUayAB" + } + }, + "trackingParams":"CAcQ6ewBIhMIqu-h6-Ho-wIVSkZMCB0tcQxt" + } + }, + "miniplayer":{ + "miniplayerRenderer":{ + "playbackMode":"PLAYBACK_MODE_ALLOW" + } + }, + "contextParams":"Q0FFU0FnZ0M=" + }, + "streamingData":{ + "expiresInSeconds":"21540", + "formats":[ + { + "itag":17, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=17&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2F3gpp&gir=yes&clen=145865853&dur=26951.215&lmt=1670191427694756&mt=1670458878&fvip=2&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIgY9Y1eqMkw_Yl7QMMs7kqdNtu14B-DsGiKDeFrrjramQCIQD972xng_lq4MdwzgczWK8ZzjhNEy3vHcm0nlS78LrtRQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/3gpp; codecs=\"mp4v.20.3, mp4a.40.2\"", + "bitrate":43297, + "width":176, + "height":144, + "lastModified":"1670191427694756", + "contentLength":"145865853", + "quality":"small", + "fps":7, + "qualityLabel":"144p", + "projectionType":"RECTANGULAR", + "audioQuality":"AUDIO_QUALITY_LOW", + "approxDurationMs":"26951215", + "audioSampleRate":"22050", + "audioChannels":1 + }, + { + "itag":18, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=18&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=538934351&ratebypass=yes&dur=26951.192&lmt=1670191463579717&mt=1670458878&fvip=2&fexp=24001373%2C24007246&c=ANDROID&txp=5438434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAIcrezofZvk3rzWfX1iQlQrueTKMdzv8wZv2gbhiqLPfAiBN9EYjg_B7OcUFFywgE4OhcjQxcCLDguwGoZuujyiMbw%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.42001E, mp4a.40.2\"", + "bitrate":159973, + "width":576, + "height":360, + "lastModified":"1670191463579717", + "contentLength":"538934351", + "quality":"medium", + "fps":30, + "qualityLabel":"360p", + "projectionType":"RECTANGULAR", + "audioQuality":"AUDIO_QUALITY_LOW", + "approxDurationMs":"26951192", + "audioSampleRate":"44100", + "audioChannels":2 + }, + { + "itag":22, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=22&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&cnr=14&ratebypass=yes&dur=26951.192&lmt=1670191525560474&mt=1670458878&fvip=2&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Ccnr%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgerRFodZtmsmhjq_mV2OTQjzYY45ok0QdOf4MlsF7MQkCIQC_Emzef-P1O4VGCwQNLf9DD1ttSRWWN-oX0t-dfqhgpA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.64001F, mp4a.40.2\"", + "bitrate":210175, + "width":1152, + "height":720, + "lastModified":"1670191525560474", + "quality":"hd720", + "fps":30, + "qualityLabel":"720p", + "projectionType":"RECTANGULAR", + "audioQuality":"AUDIO_QUALITY_MEDIUM", + "approxDurationMs":"26951192", + "audioSampleRate":"44100", + "audioChannels":2 + } + ], + "adaptiveFormats":[ + { + "itag":315, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=315&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=4712277777&dur=26951.132&lmt=1670192266655823&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIgLwpMNfLXhu6-JD3iJ4wTHsf0heG6EPsOhXyKRLFyuYQCIQCvy9iPdeoKoVJMx4SR5EvzDbhhTsHgDWObLQ5nN2Zr2Q%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":16789065, + "width":2880, + "height":1800, + "initRange":{ + "start":"0", + "end":"223" + }, + "indexRange":{ + "start":"224", + "end":"74409" + }, + "lastModified":"1670192266655823", + "contentLength":"4712277777", + "quality":"hd1440", + "fps":60, + "qualityLabel":"1440p60", + "projectionType":"RECTANGULAR", + "averageBitrate":1398762, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951132" + }, + { + "itag":308, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=308&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=2397555260&dur=26951.132&lmt=1670191647069930&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRAIfdQ6jNpxa14wgUMMWITG6b2vKBw1wuttCBKVaEKXTxAIhAL4gShl3e7wIQ3EPMHJ6yTmHKZIq1uGGBViMbEPebeIx&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":11782938, + "width":2304, + "height":1440, + "initRange":{ + "start":"0", + "end":"223" + }, + "indexRange":{ + "start":"224", + "end":"74150" + }, + "lastModified":"1670191647069930", + "contentLength":"2397555260", + "quality":"hd1440", + "fps":60, + "qualityLabel":"1440p60", + "projectionType":"RECTANGULAR", + "averageBitrate":711674, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951132" + }, + { + "itag":299, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=299&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=638852747&dur=26951.133&lmt=1670191494087138&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRAIgM5_NWuROsRe-6jC-Kr7JqlxBVbBxSaQtFMkb46TLBVcCIBf48WmFvHY9xNLZrwfPKvrNPF02Lbpp-ct72y9or1S5&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.64002a\"", + "bitrate":6190539, + "width":1728, + "height":1080, + "initRange":{ + "start":"0", + "end":"741" + }, + "indexRange":{ + "start":"742", + "end":"49025" + }, + "lastModified":"1670191494087138", + "contentLength":"638852747", + "quality":"hd1080", + "fps":60, + "qualityLabel":"1080p60", + "projectionType":"RECTANGULAR", + "averageBitrate":189632, + "approxDurationMs":"26951133" + }, + { + "itag":303, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=303&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=824947670&dur=26951.132&lmt=1670191598956529&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5437434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAKORpf8WE6LaNUPzTvTsADzuOPa7KgcgME6b6LnAGcUfAiAOLAe9yO3_aMLNCIEvV74pKns2JdvGJjzn_wqEcvcSmg%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":4564982, + "width":1728, + "height":1080, + "initRange":{ + "start":"0", + "end":"223" + }, + "indexRange":{ + "start":"224", + "end":"74139" + }, + "lastModified":"1670191598956529", + "contentLength":"824947670", + "quality":"hd1080", + "fps":60, + "qualityLabel":"1080p60", + "projectionType":"RECTANGULAR", + "averageBitrate":244872, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951132" + }, + { + "itag":298, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=298&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=392511581&dur=26951.133&lmt=1670191581236994&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJVpXIliSMDJgjGv-KablXk9GPCQ5R8T4yT_tyDhd85BAiEAn3_ioyKiw6c_kzq8ehJ8R2KoBg0WapgrI3bYbuWWqaw%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.4d4020\"", + "bitrate":3268998, + "width":1152, + "height":720, + "initRange":{ + "start":"0", + "end":"739" + }, + "indexRange":{ + "start":"740", + "end":"49023" + }, + "lastModified":"1670191581236994", + "contentLength":"392511581", + "quality":"hd720", + "fps":60, + "qualityLabel":"720p60", + "projectionType":"RECTANGULAR", + "averageBitrate":116510, + "approxDurationMs":"26951133" + }, + { + "itag":302, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=302&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=490561373&dur=26951.132&lmt=1670191676247677&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5437434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAKkEzr9IP0Z4WTXT7QeOilSskDWQNqcPJNftBglVFJuXAiEAi_CYejkDLDCZgrArZbjixucs-kcSL2KO5-06KzYCPvU%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":2106057, + "width":1152, + "height":720, + "initRange":{ + "start":"0", + "end":"223" + }, + "indexRange":{ + "start":"224", + "end":"74107" + }, + "lastModified":"1670191676247677", + "contentLength":"490561373", + "quality":"hd720", + "fps":60, + "qualityLabel":"720p60", + "projectionType":"RECTANGULAR", + "averageBitrate":145615, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951132" + }, + { + "itag":135, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=135&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=124409415&dur=26951.133&lmt=1670191423276504&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIgFitgOg8OXOMMiwUWD67kVTuSJIlkT34W-0ss8_FQ0vECIQDgCTCT84DV5gGuvhh1hTiSxa9yBQ68neYvWmnXL5LfIQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.4d401f\"", + "bitrate":560851, + "width":768, + "height":480, + "initRange":{ + "start":"0", + "end":"739" + }, + "indexRange":{ + "start":"740", + "end":"49023" + }, + "lastModified":"1670191423276504", + "contentLength":"124409415", + "quality":"large", + "fps":30, + "qualityLabel":"480p", + "projectionType":"RECTANGULAR", + "averageBitrate":36928, + "approxDurationMs":"26951133" + }, + { + "itag":244, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=244&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=230650017&dur=26951.133&lmt=1670191522578444&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5437434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAMUVRPi1nThiZDIDk-MUTJzfC2Qp-OjicqFZYzgGXXqwAiEAyIP6cc-SYsq0Rj7Fzwe2CyI3uHWeZ8VJ21KlCB8kEAY%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":869604, + "width":768, + "height":480, + "initRange":{ + "start":"0", + "end":"223" + }, + "indexRange":{ + "start":"224", + "end":"73893" + }, + "lastModified":"1670191522578444", + "contentLength":"230650017", + "quality":"large", + "fps":30, + "qualityLabel":"480p", + "projectionType":"RECTANGULAR", + "averageBitrate":68464, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951133" + }, + { + "itag":134, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=134&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=90032116&dur=26951.133&lmt=1670191442776313&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAPpVtNd4IKa96rsTOEXlmNwxpaB6gCgt5H2bDJ47b7vEAiBVDqjgDpvYuqNNt-q4kj4n3jroKEcehAyGyb9t7zzqMA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.4d401e\"", + "bitrate":389961, + "width":576, + "height":360, + "initRange":{ + "start":"0", + "end":"740" + }, + "indexRange":{ + "start":"741", + "end":"49024" + }, + "lastModified":"1670191442776313", + "contentLength":"90032116", + "quality":"medium", + "fps":30, + "qualityLabel":"360p", + "projectionType":"RECTANGULAR", + "averageBitrate":26724, + "highReplication":true, + "approxDurationMs":"26951133" + }, + { + "itag":243, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=243&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=160439384&dur=26951.133&lmt=1670191507302904&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5437434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAKM2P3d-eXo13Wbwks0skB_U0_2Uhd8ABBNxtxFztGQ-AiAfAJgtxzEbEVKPgrPLhszLajAOOXAP9yWDDzZAVo9NYg%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":609297, + "width":576, + "height":360, + "initRange":{ + "start":"0", + "end":"223" + }, + "indexRange":{ + "start":"224", + "end":"73732" + }, + "lastModified":"1670191507302904", + "contentLength":"160439384", + "quality":"medium", + "fps":30, + "qualityLabel":"360p", + "projectionType":"RECTANGULAR", + "averageBitrate":47623, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951133" + }, + { + "itag":133, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=133&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=56405334&dur=26951.133&lmt=1670191560850800&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAM0ttMu6L5MbmtESl9bXMzkb8M1r7Q2rxh5OrVmO7QgjAiBD1nhH0WHp1AhD6MwWIf6rsaSHMdCSd8I68zs6jHe68A%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.4d400d\"", + "bitrate":242724, + "width":384, + "height":240, + "initRange":{ + "start":"0", + "end":"738" + }, + "indexRange":{ + "start":"739", + "end":"49022" + }, + "lastModified":"1670191560850800", + "contentLength":"56405334", + "quality":"small", + "fps":30, + "qualityLabel":"240p", + "projectionType":"RECTANGULAR", + "averageBitrate":16742, + "approxDurationMs":"26951133" + }, + { + "itag":242, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=242&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=84136213&dur=26951.133&lmt=1670191512788290&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5437434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAIIi1G1dIefvpLZ8_IBSf7wulLgK8vwXUQiWg1iw336QAiAthZoAJRF5pB7LgOXqPucwS_E2lzpz_UgYZ0DhbQTV7g%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":355152, + "width":384, + "height":240, + "initRange":{ + "start":"0", + "end":"222" + }, + "indexRange":{ + "start":"223", + "end":"73318" + }, + "lastModified":"1670191512788290", + "contentLength":"84136213", + "quality":"small", + "fps":30, + "qualityLabel":"240p", + "projectionType":"RECTANGULAR", + "averageBitrate":24974, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951133" + }, + { + "itag":160, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=160&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fmp4&gir=yes&clen=35898662&dur=26951.133&lmt=1670191465096516&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALuiT2_3XCuMU2g8YL6FW3niv-35pqQP1aahCLosAcsVAiBS0nOkCFciqp2fjM9w35luYksVRk8HgEHAPilo84fuRg%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/mp4; codecs=\"avc1.4d400c\"", + "bitrate":163770, + "width":230, + "height":144, + "initRange":{ + "start":"0", + "end":"739" + }, + "indexRange":{ + "start":"740", + "end":"49023" + }, + "lastModified":"1670191465096516", + "contentLength":"35898662", + "quality":"tiny", + "fps":30, + "qualityLabel":"144p", + "projectionType":"RECTANGULAR", + "averageBitrate":10655, + "approxDurationMs":"26951133" + }, + { + "itag":278, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=278&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=video%2Fwebm&gir=yes&clen=60827128&dur=26951.133&lmt=1670191509819464&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5437434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRAIgUFfwirdZAeeLA7AAOG2KrhrIxCJpYqd5yANdkILEuU0CID4TnFZTRuGX-dGNu3C_j3Rr6OF3nq7xqR7Lnti81gco&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"video/webm; codecs=\"vp9\"", + "bitrate":256281, + "width":230, + "height":144, + "initRange":{ + "start":"0", + "end":"221" + }, + "indexRange":{ + "start":"222", + "end":"72944" + }, + "lastModified":"1670191509819464", + "contentLength":"60827128", + "quality":"tiny", + "fps":30, + "qualityLabel":"144p", + "projectionType":"RECTANGULAR", + "averageBitrate":18055, + "colorInfo":{ + "primaries":"COLOR_PRIMARIES_BT709", + "transferCharacteristics":"COLOR_TRANSFER_CHARACTERISTICS_BT709", + "matrixCoefficients":"COLOR_MATRIX_COEFFICIENTS_BT709" + }, + "approxDurationMs":"26951133" + }, + { + "itag":139, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=139&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=audio%2Fmp4&gir=yes&clen=164342833&dur=26951.260&lmt=1670185770380716&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIgJfxPSJiijXJSpIE5r-Po85vm2E2Z1qVAAb1IfxVlv2ICIQCO3BnxgzAlBOeRKl9rojYuM_ke9T9DEMysJgdDzhV2yQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"audio/mp4; codecs=\"mp4a.40.5\"", + "bitrate":75648, + "initRange":{ + "start":"0", + "end":"640" + }, + "indexRange":{ + "start":"641", + "end":"33072" + }, + "lastModified":"1670185770380716", + "contentLength":"164342833", + "quality":"tiny", + "projectionType":"RECTANGULAR", + "averageBitrate":48782, + "audioQuality":"AUDIO_QUALITY_LOW", + "approxDurationMs":"26951260", + "audioSampleRate":"22050", + "audioChannels":2 + }, + { + "itag":140, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=140&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=audio%2Fmp4&gir=yes&clen=436175706&dur=26951.191&lmt=1670185770405438&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRAIgYS-rp6R3EHbPbtisl4ZI7ymSGigvJACQPrIBX9Jk6lMCIH4owONGNphFHBX4vGH1ZUXwQoMyCh8B-x3DZs6vP06j&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"audio/mp4; codecs=\"mp4a.40.2\"", + "bitrate":156532, + "initRange":{ + "start":"0", + "end":"631" + }, + "indexRange":{ + "start":"632", + "end":"33063" + }, + "lastModified":"1670185770405438", + "contentLength":"436175706", + "quality":"tiny", + "projectionType":"RECTANGULAR", + "averageBitrate":129471, + "highReplication":true, + "audioQuality":"AUDIO_QUALITY_MEDIUM", + "approxDurationMs":"26951191", + "audioSampleRate":"44100", + "audioChannels":2 + }, + { + "itag":249, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=249&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=audio%2Fwebm&gir=yes&clen=158410586&dur=26951.161&lmt=1670189330292826&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAOmnBQCJYp4dJlN3I_yggTvYMV-oYKZfx40UAHEMbiMpAiBQRcTqx4yEskLt7KqZBf-Dn_ah6HnU5Ny4qTgLjfkgcQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"audio/webm; codecs=\"opus\"", + "bitrate":90791, + "initRange":{ + "start":"0", + "end":"262" + }, + "indexRange":{ + "start":"263", + "end":"49518" + }, + "lastModified":"1670189330292826", + "contentLength":"158410586", + "quality":"tiny", + "projectionType":"RECTANGULAR", + "averageBitrate":47021, + "audioQuality":"AUDIO_QUALITY_LOW", + "approxDurationMs":"26951161", + "audioSampleRate":"48000", + "audioChannels":2 + }, + { + "itag":250, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=250&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=audio%2Fwebm&gir=yes&clen=210763527&dur=26951.161&lmt=1670189330288714&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRAIgJ6CCp8w8WY6bM7iZKHY-wF84vaPjd0KYsEVwTIrO37wCIAoOoK8iFtHLSyx5gMHT270P4OjeEutLlBATNqOOKJRm&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"audio/webm; codecs=\"opus\"", + "bitrate":103963, + "initRange":{ + "start":"0", + "end":"262" + }, + "indexRange":{ + "start":"263", + "end":"49590" + }, + "lastModified":"1670189330288714", + "contentLength":"210763527", + "quality":"tiny", + "projectionType":"RECTANGULAR", + "averageBitrate":62561, + "audioQuality":"AUDIO_QUALITY_LOW", + "approxDurationMs":"26951161", + "audioSampleRate":"48000", + "audioChannels":2 + }, + { + "itag":251, + "url":"https://rr5---sn-nx5s7n7s.googlevideo.com/videoplayback?expire=1670480903&ei=py-RY-r_KcqMsfIPreKx6AY&ip=100.20.92.101&id=o-ABLl6hqv_dEBUoCSbNOrqfQjBltn-R11rokZPhW225dp&itag=251&source=youtube&requiressl=yes&mh=2y&mm=31%2C26&mn=sn-nx5s7n7s%2Csn-a5mekn6s&ms=au%2Conr&mv=m&mvi=5&pl=14&initcwndbps=1215000&vprv=1&mime=audio%2Fwebm&gir=yes&clen=376952013&dur=26951.161&lmt=1670189330496491&mt=1670458878&fvip=2&keepalive=yes&fexp=24001373%2C24007246&c=ANDROID&txp=5432434&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cgir%2Cclen%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAKo0BemW025ai6AQ3HfhV73xOCtf7gf97DEFbKFbgpoZAiA4E4AG9eBEQatUIdUy_Fr7EpIwVIXynGY2ErfqO6ZV1Q%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJQqTyu9zmNvEFnmrNKt0lb3z2eZ2zE-gvgG8O3iHbl0AiEArN6BTbPQRIvIzGsUEOLrLUzM4gXgLhi5_n9KdCAXT0s%3D", + "mimeType":"audio/webm; codecs=\"opus\"", + "bitrate":162146, + "initRange":{ + "start":"0", + "end":"262" + }, + "indexRange":{ + "start":"263", + "end":"49686" + }, + "lastModified":"1670189330496491", + "contentLength":"376952013", + "quality":"tiny", + "projectionType":"RECTANGULAR", + "averageBitrate":111891, + "audioQuality":"AUDIO_QUALITY_MEDIUM", + "approxDurationMs":"26951161", + "audioSampleRate":"48000", + "audioChannels":2 + } + ] + }, + "playbackTracking":{ + "videostatsPlaybackUrl":{ + "baseUrl":"https://s.youtube.com/api/stats/playback?cl=492868396&docid=nu_pCVPKzTk&ei=py-RY-r_KcqMsfIPreKx6AY&fexp=1714249%2C23882502%2C23918597%2C23934970%2C23946420%2C23966208%2C23983296%2C23998056%2C24001373%2C24004644%2C24007246%2C24034168%2C24036948%2C24074379%2C24077241%2C24080738%2C24117491%2C24120820%2C24123943%2C24135310%2C24140247%2C24160836%2C24161116%2C24162919%2C24164186%2C24169501%2C24181174%2C24187043%2C24187377%2C24191629%2C24197450%2C24207516%2C24211178%2C24217535%2C24219713%2C24228637%2C24234976%2C24241378%2C24244167%2C24255165%2C24255543%2C24255545%2C24262346%2C24262733%2C24263796%2C24265426%2C24265964%2C24267564%2C24268142%2C24272787%2C24279196%2C24283015%2C24283093%2C24285788%2C24288043%2C24288664%2C24290971%2C24292955%2C24294555%2C24296354%2C24390675%2C24391543%2C24392364%2C24394397%2C24400176%2C24402891%2C24405623%2C24406318%2C24406620%2C24406861%2C24407200%2C24407914%2C24412126%2C24412898%2C24413358%2C24415128%2C24415579%2C24415866%2C24418781%2C24418865%2C24419345%2C24420756%2C24421162%2C24424535%2C24424806%2C24425061%2C24426872%2C24428902%2C24429738%2C24430664%2C24432417%2C24570070%2C24590921%2C24591047%2C39322504%2C39322574&ns=yt&plid=AAXvRh1pEc8jyci9&el=detailpage&len=26952&of=h6xiEYImXFOJIWj0vSG_4w&vm=CAEQARgEOjJBUEV3RWxSRnFVOFZPMURRbElGOUtCbXlEdUJULS12Z3hHeUt6Z1N2ZTdxRmp2ZjBjQWJTQVBta0tETEdQeWxCb3ZJNmVndUhtMmNqVnRwMjM1Rnk5VGhXcDNWcS1FN0I3LXk3cEl5ZmpuZlFqYXdxVk1fMHl1QVJrOGowdTZHQUdKOEJRN3doAQ", + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + }, + { + "headerType":"PLUS_PAGE_ID" + } + ] + }, + "videostatsDelayplayUrl":{ + "baseUrl":"https://s.youtube.com/api/stats/delayplay?cl=492868396&docid=nu_pCVPKzTk&ei=py-RY-r_KcqMsfIPreKx6AY&fexp=1714249%2C23882502%2C23918597%2C23934970%2C23946420%2C23966208%2C23983296%2C23998056%2C24001373%2C24004644%2C24007246%2C24034168%2C24036948%2C24074379%2C24077241%2C24080738%2C24117491%2C24120820%2C24123943%2C24135310%2C24140247%2C24160836%2C24161116%2C24162919%2C24164186%2C24169501%2C24181174%2C24187043%2C24187377%2C24191629%2C24197450%2C24207516%2C24211178%2C24217535%2C24219713%2C24228637%2C24234976%2C24241378%2C24244167%2C24255165%2C24255543%2C24255545%2C24262346%2C24262733%2C24263796%2C24265426%2C24265964%2C24267564%2C24268142%2C24272787%2C24279196%2C24283015%2C24283093%2C24285788%2C24288043%2C24288664%2C24290971%2C24292955%2C24294555%2C24296354%2C24390675%2C24391543%2C24392364%2C24394397%2C24400176%2C24402891%2C24405623%2C24406318%2C24406620%2C24406861%2C24407200%2C24407914%2C24412126%2C24412898%2C24413358%2C24415128%2C24415579%2C24415866%2C24418781%2C24418865%2C24419345%2C24420756%2C24421162%2C24424535%2C24424806%2C24425061%2C24426872%2C24428902%2C24429738%2C24430664%2C24432417%2C24570070%2C24590921%2C24591047%2C39322504%2C39322574&ns=yt&plid=AAXvRh1pEc8jyci9&el=detailpage&len=26952&of=h6xiEYImXFOJIWj0vSG_4w&vm=CAEQARgEOjJBUEV3RWxSRnFVOFZPMURRbElGOUtCbXlEdUJULS12Z3hHeUt6Z1N2ZTdxRmp2ZjBjQWJTQVBta0tETEdQeWxCb3ZJNmVndUhtMmNqVnRwMjM1Rnk5VGhXcDNWcS1FN0I3LXk3cEl5ZmpuZlFqYXdxVk1fMHl1QVJrOGowdTZHQUdKOEJRN3doAQ", + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + }, + { + "headerType":"PLUS_PAGE_ID" + } + ] + }, + "videostatsWatchtimeUrl":{ + "baseUrl":"https://s.youtube.com/api/stats/watchtime?cl=492868396&docid=nu_pCVPKzTk&ei=py-RY-r_KcqMsfIPreKx6AY&fexp=1714249%2C23882502%2C23918597%2C23934970%2C23946420%2C23966208%2C23983296%2C23998056%2C24001373%2C24004644%2C24007246%2C24034168%2C24036948%2C24074379%2C24077241%2C24080738%2C24117491%2C24120820%2C24123943%2C24135310%2C24140247%2C24160836%2C24161116%2C24162919%2C24164186%2C24169501%2C24181174%2C24187043%2C24187377%2C24191629%2C24197450%2C24207516%2C24211178%2C24217535%2C24219713%2C24228637%2C24234976%2C24241378%2C24244167%2C24255165%2C24255543%2C24255545%2C24262346%2C24262733%2C24263796%2C24265426%2C24265964%2C24267564%2C24268142%2C24272787%2C24279196%2C24283015%2C24283093%2C24285788%2C24288043%2C24288664%2C24290971%2C24292955%2C24294555%2C24296354%2C24390675%2C24391543%2C24392364%2C24394397%2C24400176%2C24402891%2C24405623%2C24406318%2C24406620%2C24406861%2C24407200%2C24407914%2C24412126%2C24412898%2C24413358%2C24415128%2C24415579%2C24415866%2C24418781%2C24418865%2C24419345%2C24420756%2C24421162%2C24424535%2C24424806%2C24425061%2C24426872%2C24428902%2C24429738%2C24430664%2C24432417%2C24570070%2C24590921%2C24591047%2C39322504%2C39322574&ns=yt&plid=AAXvRh1pEc8jyci9&el=detailpage&len=26952&of=h6xiEYImXFOJIWj0vSG_4w&vm=CAEQARgEOjJBUEV3RWxSRnFVOFZPMURRbElGOUtCbXlEdUJULS12Z3hHeUt6Z1N2ZTdxRmp2ZjBjQWJTQVBta0tETEdQeWxCb3ZJNmVndUhtMmNqVnRwMjM1Rnk5VGhXcDNWcS1FN0I3LXk3cEl5ZmpuZlFqYXdxVk1fMHl1QVJrOGowdTZHQUdKOEJRN3doAQ", + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + }, + { + "headerType":"PLUS_PAGE_ID" + } + ] + }, + "ptrackingUrl":{ + "baseUrl":"https://www.youtube.com/ptracking?ei=py-RY-r_KcqMsfIPreKx6AY&oid=u1GcX4H_7_gJdy-Cj4xkJA&plid=AAXvRh1pEc8jyci9&pltype=content&ptchn=8butISFwT-Wl7EV0hUK0BQ&ptk=youtube_single&video_id=nu_pCVPKzTk", + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + }, + { + "headerType":"PLUS_PAGE_ID" + } + ] + }, + "qoeUrl":{ + "baseUrl":"https://s.youtube.com/api/stats/qoe?cl=492868396&docid=nu_pCVPKzTk&ei=py-RY-r_KcqMsfIPreKx6AY&event=streamingstats&fexp=1714249%2C23882502%2C23918597%2C23934970%2C23946420%2C23966208%2C23983296%2C23998056%2C24001373%2C24004644%2C24007246%2C24034168%2C24036948%2C24074379%2C24077241%2C24080738%2C24117491%2C24120820%2C24123943%2C24135310%2C24140247%2C24160836%2C24161116%2C24162919%2C24164186%2C24169501%2C24181174%2C24187043%2C24187377%2C24191629%2C24197450%2C24207516%2C24211178%2C24217535%2C24219713%2C24228637%2C24234976%2C24241378%2C24244167%2C24255165%2C24255543%2C24255545%2C24262346%2C24262733%2C24263796%2C24265426%2C24265964%2C24267564%2C24268142%2C24272787%2C24279196%2C24283015%2C24283093%2C24285788%2C24288043%2C24288664%2C24290971%2C24292955%2C24294555%2C24296354%2C24390675%2C24391543%2C24392364%2C24394397%2C24400176%2C24402891%2C24405623%2C24406318%2C24406620%2C24406861%2C24407200%2C24407914%2C24412126%2C24412898%2C24413358%2C24415128%2C24415579%2C24415866%2C24418781%2C24418865%2C24419345%2C24420756%2C24421162%2C24424535%2C24424806%2C24425061%2C24426872%2C24428902%2C24429738%2C24430664%2C24432417%2C24570070%2C24590921%2C24591047%2C39322504%2C39322574&ns=yt&plid=AAXvRh1pEc8jyci9", + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + }, + { + "headerType":"PLUS_PAGE_ID" + } + ] + }, + "atrUrl":{ + "baseUrl":"https://s.youtube.com/api/stats/atr?docid=nu_pCVPKzTk&ei=py-RY-r_KcqMsfIPreKx6AY&len=26952&ns=yt&plid=AAXvRh1pEc8jyci9&ver=2", + "elapsedMediaTimeSeconds":3, + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + }, + { + "headerType":"PLUS_PAGE_ID" + } + ] + }, + "engageUrl":{ + "baseUrl":"https://s.youtube.com/api/stats/engage?cl=492868396&cmt=%5BVSS_CMT%5D&conn=%5BVSS_CONN%5D&cpn=%5BVSS_CPN%5D&docid=nu_pCVPKzTk&ei=py-RY-r_KcqMsfIPreKx6AY&el=detailpage&fexp=1714249%2C23882502%2C23918597%2C23934970%2C23946420%2C23966208%2C23983296%2C23998056%2C24001373%2C24004644%2C24007246%2C24034168%2C24036948%2C24074379%2C24077241%2C24080738%2C24117491%2C24120820%2C24123943%2C24135310%2C24140247%2C24160836%2C24161116%2C24162919%2C24164186%2C24169501%2C24181174%2C24187043%2C24187377%2C24191629%2C24197450%2C24207516%2C24211178%2C24217535%2C24219713%2C24228637%2C24234976%2C24241378%2C24244167%2C24255165%2C24255543%2C24255545%2C24262346%2C24262733%2C24263796%2C24265426%2C24265964%2C24267564%2C24268142%2C24272787%2C24279196%2C24283015%2C24283093%2C24285788%2C24288043%2C24288664%2C24290971%2C24292955%2C24294555%2C24296354%2C24390675%2C24391543%2C24392364%2C24394397%2C24400176%2C24402891%2C24405623%2C24406318%2C24406620%2C24406861%2C24407200%2C24407914%2C24412126%2C24412898%2C24413358%2C24415128%2C24415579%2C24415866%2C24418781%2C24418865%2C24419345%2C24420756%2C24421162%2C24424535%2C24424806%2C24425061%2C24426872%2C24428902%2C24429738%2C24430664%2C24432417%2C24570070%2C24590921%2C24591047%2C39322504%2C39322574&lact=%5BVSS_LACT%5D&len=26952&ns=yt&of=h6xiEYImXFOJIWj0vSG_4w&plid=AAXvRh1pEc8jyci9&rt=%5BVSS_RT%5D&state=%5BVSS_STATE%5D&vis=%5BVSS_VIS%5D&vm=CAEQARgEOjJBUEV3RWxSRnFVOFZPMURRbElGOUtCbXlEdUJULS12Z3hHeUt6Z1N2ZTdxRmp2ZjBjQWJTQVBta0tETEdQeWxCb3ZJNmVndUhtMmNqVnRwMjM1Rnk5VGhXcDNWcS1FN0I3LXk3cEl5ZmpuZlFqYXdxVk1fMHl1QVJrOGowdTZHQUdKOEJRN3doAQ", + "headers":[ + { + "headerType":"USER_AUTH" + }, + { + "headerType":"VISITOR_ID" + } + ] + }, + "videostatsScheduledFlushWalltimeSeconds":[ + 10, + 20, + 30 + ], + "videostatsDefaultFlushIntervalSeconds":300 + }, + "captions":{ + "playerCaptionsTracklistRenderer":{ + "captionTracks":[ + { + "baseUrl":"https://www.youtube.com/api/timedtext?v=nu_pCVPKzTk&caps=asr&xoaf=5&hl=en&ip=0.0.0.0&ipbits=0&expire=1670484503&sparams=ip,ipbits,expire,v,caps,xoaf&signature=19B172F5CF419D2E2765CBCA0D14EFE68E671148.02F160FA65BFF0DFCBFFD9813DF8E2176B56A113&key=yt8&kind=asr&lang=en&fmt=srv3", + "name":{ + "runs":[ + { + "text":"English (auto-generated)" + } + ] + }, + "vssId":"a.en", + "languageCode":"en", + "kind":"asr", + "isTranslatable":true + } + ], + "audioTracks":[ + { + "captionTrackIndices":[ + 0 + ] + } + ], + "defaultAudioTrackIndex":0 + } + }, + "videoDetails":{ + "videoId":"nu_pCVPKzTk", + "title":"Full Stack Web Development for Beginners (Full Course on HTML, CSS, JavaScript, Node.js, MongoDB)", + "lengthSeconds":"26951", + "channelId":"UC8butISFwT-Wl7EV0hUK0BQ", + "isOwnerViewing":false, + "shortDescription":"Learn full-stack web development in this full course for beginners. First, you will learn the basics of HTML, CSS, and JavaScript. Then, you will learn how to put everything together to create a frontend movie search app. Finally, you will learn how to create a backend API to create movie reviews and connect the frontend to the backend. The backend uses Node.js, Express, and MongoDB.\n\n🔗 Get started with Replit: https://join.replit.com/web-students\n\n✏️ Tomi Tokko and Beau Carnes developed this course. \nTomi's channel: https://www.youtube.com/CodeWithTomi\nBeau's channel: https://www.youtube.com/zizyo\n\n⭐️ Code ⭐️\nJavaScript RPG Starter: https://replit.com/@BeauCarnes/JavaScript-RPG-Starter\nJavaScript RPG Complete: https://replit.com/@BeauCarnes/JavaScript-RPG\n\nFrontend Movie App (and starter for connecting to backend): https://replit.com/@TomiTokko/MoviesApp\nLive demo of frontend app: https://moviesapp.tomitokko.repl.co/ \n\nBackend Reviews API: https://replit.com/@BeauCarnes/review-backend\nFrontend connected to backend: https://replit.com/@BeauCarnes/htmlfrontend\n\n🏗 Replit provided a grant to make this course possible.\n\n⭐️ Course Contents ⭐️\n⌨️ (0:00:00) Introduction\n⌨️ (0:02:42) Learn HTML\n⌨️ (1:26:27) Learn CSS\n⌨️ (3:15:49) Learn JavaScript\n⌨️ (4:52:01) Create Frontend Movie App\n⌨️ (5:44:04) Create Backend Reviews API\n⌨️ (6:49:32) Connect Frontend with Backend\n\n🎉 Thanks to our Champion and Sponsor supporters:\n👾 Nattira Maneerat\n👾 Heather Wcislo\n👾 Serhiy Kalinets\n👾 Erdeniz Unvan\n👾 Justin Hual\n👾 Agustín Kussrow\n👾 Otis Morgan\n\n--\n\nLearn to code for free and get a developer job: https://www.freecodecamp.org\n\nRead hundreds of articles on programming: https://freecodecamp.org/news", + "isCrawlable":true, + "thumbnail":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/vi/nu_pCVPKzTk/default.jpg", + "width":120, + "height":90 + }, + { + "url":"https://i.ytimg.com/vi/nu_pCVPKzTk/mqdefault.jpg", + "width":320, + "height":180 + }, + { + "url":"https://i.ytimg.com/vi/nu_pCVPKzTk/hqdefault.jpg", + "width":480, + "height":360 + }, + { + "url":"https://i.ytimg.com/vi/nu_pCVPKzTk/sddefault.jpg", + "width":640, + "height":480 + } + ] + }, + "allowRatings":true, + "viewCount":"244611", + "author":"freeCodeCamp.org", + "isPrivate":false, + "isUnpluggedCorpus":false, + "isLiveContent":false + }, + "annotations":[ + { + "playerAnnotationsExpandedRenderer":{ + "featuredChannel":{ + "startTimeMs":"5000", + "endTimeMs":"26952000", + "watermark":{ + "thumbnails":[ + { + "url":"https://i.ytimg.com/an/8butISFwT-Wl7EV0hUK0BQ/featured_channel.jpg?v=5ed8f2ed", + "width":40, + "height":40 + } + ] + }, + "trackingParams":"CAYQ8zciEwiq76Hr4ej7AhVKRkwIHS1xDG0=" + }, + "allowSwipeDismiss":true + } + } + ], + "playerConfig":{ + "audioConfig":{ + "loudnessDb":-5.9400005, + "perceptualLoudnessDb":-19.94, + "enablePerFormatLoudness":false + }, + "exoPlayerConfig":{ + "useExoPlayer":true, + "useAdaptiveBitrate":true, + "maxInitialByteRate":91136, + "minDurationForQualityIncreaseMs":12364, + "maxDurationForQualityDecreaseMs":3720, + "minDurationToRetainAfterDiscardMs":21000, + "lowWatermarkMs":15000, + "highWatermarkMs":30000, + "lowPoolLoad":0.8, + "highPoolLoad":0.8, + "sufficientBandwidthOverhead":1, + "bufferChunkSizeKb":50, + "httpConnectTimeoutMs":16000, + "httpReadTimeoutMs":8000, + "numAudioSegmentsPerFetch":1, + "numVideoSegmentsPerFetch":2, + "minDurationForPlaybackStartMs":1600, + "enableExoplayerReuse":false, + "useRadioTypeForInitialQualitySelection":true, + "blacklistFormatOnError":false, + "enableBandaidHttpDataSource":true, + "httpLoadTimeoutMs":18000, + "canPlayHdDrm":true, + "videoBufferSegmentCount":389, + "audioBufferSegmentCount":38, + "useAbruptSplicing":false, + "minRetryCount":10, + "minChunksNeededToPreferOffline":2, + "secondsToMaxAggressiveness":0, + "enableSurfaceviewResizeWorkaround":false, + "enableVp9IfThresholdsPass":false, + "matchQualityToViewportOnUnfullscreen":false, + "lowAudioQualityConnTypes":[ + "MOBILE_CONNECTION_TYPE_CELLULAR_2G", + "MOBILE_CONNECTION_TYPE_CELLULAR_3G" + ], + "useDashForLiveStreams":true, + "enableLibvpxVideoTrackRenderer":false, + "lowAudioQualityBandwidthThresholdBps":786432, + "enableVariableSpeedPlayback":false, + "preferOnesieBufferedFormat":true, + "minimumBandwidthSampleBytes":16384, + "useDashForOtfAndCompletedLiveStreams":true, + "disableCacheAwareVideoFormatEvaluation":false, + "useLiveDvrForDashLiveStreams":true, + "cronetResetTimeoutOnRedirects":true, + "emitVideoDecoderChangeEvents":false, + "onesieVideoBufferLoadTimeoutMs":"0", + "onesieVideoBufferReadTimeoutMs":"0", + "libvpxEnableGl":false, + "enableVp9EncryptedIfThresholdsPass":false, + "enableOpus":false, + "usePredictedBuffer":true, + "maxReadAheadMediaTimeMs":120000, + "useMediaTimeCappedLoadControl":true, + "allowCacheOverrideToLowerQualitiesWithinRange":0, + "allowDroppingUndecodedFrames":true, + "minDurationForPlaybackRestartMs":5000, + "serverProvidedBandwidthHeader":"", + "liveOnlyPegStrategy":"LIVE_ONLY_PEG_STRATEGY_SEEK_ON_REBUFFER_ESTIMATE_DURATION", + "enableRedirectorHostFallback":true, + "enableHighlyAvailableFormatFallbackOnPcr":false, + "recordTrackRendererTimingEvents":true, + "minErrorsForRedirectorHostFallback":0, + "nonHardwareMediaCodecNames":[ + "OMX.ffmpeg.vp9.decoder", + "OMX.google.vp9.decoder", + "c2.android.vp9.decoder", + "OMX.Intel.sw_vd.vp9", + "OMX.MTK.VIDEO.DECODER.SW.VP9", + "c2.mtk.sw.vp9.decoder", + "OMX.google.av1.decoder", + "c2.android.av1.decoder", + "OMX.sprd.av1.decoder" + ], + "enableVp9IfInHardware":false, + "enableVp9EncryptedIfInHardware":true, + "useOpusMedAsLowQualityAudio":false, + "minErrorsForPcrFallback":0, + "useStickyRedirectHttpDataSource":true, + "onlyVideoBandwidth":true, + "useRedirectorOnNetworkChange":false, + "enableMaxReadaheadAbrThreshold":true, + "cacheCheckDirectoryWritabilityOnce":false, + "predictorType":"PREDICTOR_TYPE_POLYNOMIAL", + "slidingPercentile":0.5, + "slidingWindowSize":12, + "maxFrameDropIntervalMs":100, + "ignoreLoadTimeoutForFallback":false, + "serverBweMultiplier":1, + "drmMaxKeyfetchDelayMs":0, + "maxResolutionForWhiteNoise":0, + "whiteNoiseRenderEffectMode":"RENDER_EFFECT_MODE_UNKNOWN", + "enableLibvpxHdr":false, + "enableCacheAwareStreamSelection":true, + "useExoCronetDataSource":true, + "whiteNoiseScale":0, + "whiteNoiseOffset":0, + "preventVideoFrameLaggingWithLibvpx":false, + "enableMediaCodecHdr":true, + "enableMediaCodecSwHdr":false, + "liveOnlyWindowChunks":10, + "bearerMinDurationToRetainAfterDiscardMs":[ + 21000, + 21000, + 21000, + 21000, + 120000, + 120000, + 90000, + 120000 + ], + "forceWidevineL3":false, + "useAverageBitrate":false, + "useMedialibAudioTrackRendererForLive":true, + "useExoPlayerV2":false, + "logMediaRequestEventsToCsi":true, + "onesieFixNonZeroStartTimeFormatSelection":false, + "liveOnlyReadaheadStepSizeChunks":1, + "liveOnlyBufferHealthHalfLifeSeconds":60, + "liveOnlyMinBufferHealthRatio":0.75, + "liveOnlyMinLatencyToSeekRatio":3, + "manifestlessPartialChunkStrategy":"ANDROID_PARTIAL_CHUNK_STRATEGY_RETRY_RANGE_CHECK_LMT", + "ignoreViewportSizeWhenSticky":false, + "enableLibvpxFallback":false, + "disableLibvpxLoopFilter":false, + "enableVpxMediaView":false, + "hdrMinScreenBrightness":0, + "hdrMaxScreenBrightnessThreshold":0, + "onesieDataSourceAboveCacheDataSource":true, + "httpNonplayerLoadTimeoutMs":72000, + "numVideoSegmentsPerFetchStrategy":"NUM_SEGMENTS_PER_FETCH_STRATEGY_LIMITED_DURATION", + "maxVideoDurationPerFetchMs":12000, + "maxVideoEstimatedLoadDurationMs":-1, + "estimatedServerClockHalfLife":5, + "estimatedServerClockStrictOffset":false, + "minReadAheadMediaTimeMs":0, + "readAheadGrowthRate":0, + "useDynamicReadAhead":false, + "useYtVodMediaSourceForV2":false, + "enableV2Gapless":false, + "useLiveHeadTimeMillis":true, + "allowTrackSelectionWithUpdatedVideoItagsForExoV2":false, + "maxAllowableTimeBeforeMediaTimeUpdateSec":15, + "enableDynamicHdr":false, + "v2PerformEarlyStreamSelection":false, + "v2UsePlaybackStreamSelectionResult":false, + "v2MinTimeBetweenAbrReevaluationMs":2000, + "avoidReusePlaybackAcrossLoadvideos":false, + "enableInfiniteNetworkLoadingRetries":true, + "reportExoPlayerStateOnTransition":false, + "manifestlessSequenceMethod":"MANIFESTLESS_SEQUENCE_METHOD_LIVE_HEAD", + "useLiveHeadWindow":true, + "enableDynamicHdrInHardware":false, + "ultralowAudioQualityBandwidthThresholdBps":0, + "retryLiveNetNocontentWithDelay":true, + "ignoreUnneededSeeksToLiveHead":true, + "adaptiveLiveHeadWindow":true, + "drmMetricsQoeLoggingFraction":0.01, + "liveNetNocontentMaximumErrors":-1, + "waitForDrmLicenseBeforeProcessingAndroidStuckBufferfull":true, + "useTimeSeriesBufferPrediction":false, + "slidingPercentileScalar":1 + }, + "playbackStartConfig":{ + "startTimeToleranceBeforeMs":"20000" + }, + "adRequestConfig":{ + "filterTimeEventsOnDelta":10000, + "useCriticalExecOnAdsPrep":true, + "userCriticalExecOnAdsProcessing":true, + "enableCountdownNextToThumbnailAndroid":true, + "preskipScalingFactorAndroid":0.712, + "preskipPaddingAndroid":6 + }, + "networkProtocolConfig":{ + "useQuic":true + }, + "androidNetworkStackConfig":{ + "networkStack":"CRONET", + "androidCronetResponsePriority":{ + "priorityValue":"BACKGROUND_10_THREAD_PRIORITY" + }, + "androidMetadataNetworkConfig":{ + "coalesceRequests":true + } + }, + "lidarSdkConfig":{ + "enableActiveViewReporter":true, + "useMediaTime":true, + "sendTosMetrics":true, + "usePlayerState":false, + "enableIosAppStateCheck":true, + "enableImprovedSizeReportingAndroid":true, + "enableIsAndroidVideoAlwaysMeasurable":true + }, + "androidMedialibConfig":{ + "isItag18MainProfile":true, + "dashManifestVersion":5, + "initialBandwidthEstimates":[ + { + "detailedNetworkType":"DETAILED_NETWORK_TYPE_WIFI", + "bandwidthBps":"921853" + }, + { + "detailedNetworkType":"DETAILED_NETWORK_TYPE_LTE", + "bandwidthBps":"631467" + } + ], + "viewportSizeFraction":0.85, + "selectLowQualityStreamsWithHighBitrates":true, + "enablePrerollPrebuffer":true, + "prebufferOptimizeForViewportSize":true, + "hpqViewportSizeFraction":0.58 + }, + "playerControlsConfig":{ + "showCachedInTimebar":true + }, + "variableSpeedConfig":{ + "showVariableSpeedDisabledDialog":true + }, + "decodeQualityConfig":{ + "maximumVideoDecodeVerticalResolution":2160 + }, + "vrConfig":{ + "allowVr":true, + "allowSubtitles":true, + "showHqButton":true, + "sphericalDirectionLoggingEnabled":true, + "enableAndroidVr180MagicWindow":true, + "enableAndroidMagicWindowEduOverlay":true, + "magicWindowEduOverlayText":"Move device to explore video", + "magicWindowEduOverlayAnimationUrl":"https://youtube.com/img/vr/magic_window_edu_overlay_animation_v2.webp" + }, + "qoeStatsClientConfig":{ + "batchedEntriesPeriodMs":"30000" + }, + "androidPlayerStatsConfig":{ + "usePblForAttestationReporting":false, + "usePblForHeartbeatReporting":false, + "usePblForPlaybacktrackingReporting":false, + "usePblForQoeReporting":true, + "changeCpnOnFatalPlaybackError":true + }, + "stickyQualitySelectionConfig":{ + "stickySelectionType":"DISABLE_STICKY", + "expirationTimeSinceLastManualVideoQualitySelectionMs":"259200000", + "expirationTimeSinceLastPlaybackStartMs":"18000000", + "stickyCeilingOverridesSimpleBitrateCap":true + }, + "adSurveyRequestConfig":{ + "useGetRequests":true + }, + "retryConfig":{ + "retryEligibleErrors":[ + "fmt.decode", + "android.exo.fatal", + "scripted_player.js.fatal", + "android.stuck.bufferfull", + "player.timeout" + ], + "retryUnderSameConditionAttempts":1, + "retryWithNewSurfaceAttempts":1, + "progressiveFallbackOnNonNetworkErrors":true, + "l3FallbackOnDrmErrors":true, + "retryAfterCacheRemoval":true, + "widevineL3EnforcedFallbackOnDrmErrors":true, + "exoProxyableFormatFallback":true, + "maxPlayerRetriesWhenNetworkUnavailable":2, + "retryWithLibvpx":true, + "suppressFatalErrorAfterStop":false, + "fallbackFromHfrToSfrOnFormatDecodeError":true + }, + "cmsPathProbeConfig":{ + "cmsPathProbeDelayMs":7000 + }, + "mediaCommonConfig":{ + "dynamicReadaheadConfig":{ + "maxReadAheadMediaTimeMs":160000, + "minReadAheadMediaTimeMs":15000, + "readAheadGrowthRateMs":300, + "readAheadWatermarkMarginRatio":0, + "minReadAheadWatermarkMarginMs":0, + "maxReadAheadWatermarkMarginMs":0, + "shouldIncorporateNetworkActiveState":false + }, + "mediaUstreamerRequestConfig":{ + "enableVideoPlaybackRequest":true, + "videoPlaybackUstreamerConfig":"CvgCCAAlMZkqPi0AAIA_NT0Klz9YAXjoAoABAaABAagBALUB9ijcP-ABAegBA_ABAfkBAAAAAAAA0D-BAgAAAAAAABhAmALwAaAC6AK4AgDIAgHaAl4QsOoBGKhGIKCcASjYNjCYdXCIJ4AB9APgAQGYAgyoAgGwAgG4AgHAAgHIAgHQAgLgAgHoAgLwAgGAAwKIA4gnmAMBqAMIsAMBuAMBwAMByAMB0AMB-AMBkAQBmAQB-gJFCAwQGBgyIDItAACCQjUAAJZCQAFIAWUAAIBAaMBwzQEAAIA_8AEByAIB2gIFMjA6MDDgAnjoAuADiAQBlQQAQBxG8AQBggMAkAMA4AOQTrAEAbgEAcoERgoTCIDiCRCYdRisAiUAAAAAKAAwABCAqNa5BxjQDyokCgp0Yl9jb3N0XzUwIAgpAAAAAAAAAABdmpmZPmUAAAA_kgEAMAHoBAHwBAH4BAGQBQGoBQHQBQHYBQHgBQHoBQHwBQGIBgGoBoCAAhgBIAEyDAi7AhDP8IqG_-D7AjIMCLQCEOqt0t784PsCMgwIqwIQ4oPZlfzg-wIyDAivAhDx39nH_OD7AjIMCKoCEIKeoL_84PsCMgwIrgIQ_ZzH7Pzg-wIyDAiHARDYi_fz--D7AjIMCPQBEIyApKP84PsCMgwIhgEQ-aGd_fvg-wIyDAjzARD40_-b_OD7AjIMCIUBEPD6w7X84PsCMgwI8gEQwrrOnvzg-wIyDAigARDEyu-H_OD7AjIMCJYCEMigmZ384PsCMgwIiwEQrNu17Obg-wIyDAiMARC-nLfs5uD7AjIMCPkBENrA9Y304PsCMgwI-gEQyqD1jfTg-wIyDAj7ARDr94GO9OD7AjoAkMvTjw4B", + "videoPlaybackPostEmptyBody":false, + "isVideoPlaybackRequestIdempotent":true + }, + "predictedReadaheadConfig":{ + "minReadaheadMs":5000, + "maxReadaheadMs":157000 + }, + "mediaFetchRetryConfig":{ + "initialDelayMs":1000, + "backoffFactor":1.3, + "maximumDelayMs":20000, + "jitterFactor":0.1 + }, + "mediaFetchMaximumServerErrors":10, + "mediaFetchMaximumNetworkErrors":-1, + "mediaFetchMaximumErrors":10, + "serverReadaheadConfig":{ + "enable":true, + "nextRequestPolicy":{ + "targetAudioReadaheadMs":120000, + "targetVideoReadaheadMs":120000 + } + } + }, + "playerGestureConfig":{ + "downAndOutLandscapeAllowed":true, + "downAndOutPortraitAllowed":true + } + }, + "storyboards":{ + "playerStoryboardSpecRenderer":{ + "spec":"https://i.ytimg.com/sb/nu_pCVPKzTk/storyboard3_L$L/$N.jpg?sqp=-oaymwGbA0g48quKqQOSA4gBAZUBAAAEQpgBMqABPKgBBLABELABDbABDLABELABFbABH7ABJrABLbABDrABDrABD7ABErABF7ABK7ABLLABKbABD7ABDrABELABFbABH7ABKrABMrABKbABD7ABEbABFLABGLABJrABPbABOLABLbABEbABFLABHrABKrABMbABS7ABR7ABNrABFbABHLABKbABLrABObABR7ABTbABP7ABJbABLrABN7ABPbABR7ABUrABUbABRbABM7ABQLABQrABQ7ABTLABRLABRrABQ7gBEbgBEbgBFbgBI7gBRLgBQ7gBQ7gBQ7gBEbgBE7gBFrgBL7gBQ7gBQ7gBQ7gBQ7gBFbgBFrgBKbgBQ7gBQ7gBQ7gBQ7gBQ7gBI7gBL7gBQ7gBQ7gBQ7gBQ7gBQ7gBQ7gBRLgBQ7gBQ7gBQ7gBQ7gBQ7gBQrgBQrgBQ7gBQ7gBQ7gBQ7gBQ7gBQrgBQrgBQrgBQ7gBQ7gBQ7gBQ7gBQrgBQrgBQrgBQrgBQ7gBQ7gBQ7gBQrgBQrgBQrgBQrgBQqLzl_8DBgiC4YObBg==|48#27#100#10#10#0#default#rs$AOn4CLCC8Vrr_cR0AQqC6H58GX9SuclJZg|72#45#2697#10#10#10000#M$M#rs$AOn4CLBKbAGm7HCgCiiAx4gvpMePMRpTLQ|144#90#2697#5#5#10000#M$M#rs$AOn4CLBpxsHNjDBbcmwe_C0rSMFmYca13A", + "recommendedLevel":2 + } + }, + "trackingParams":"CAAQu2kiEwiq76Hr4ej7AhVKRkwIHS1xDG0=", + "attestation":{ + "playerAttestationRenderer":{ + "challenge":"a=5&a2=1&b=Yef6y85aUccgxhtOVn6YDnGl1jY&c=1670459303&d=3&e=nu_pCVPKzTk&c5a=1&c5b=yt_player_ias&hh=ZTj_bJknVOFggdkvTk4Bvgyp1tW3lkNQD0H1bhTzw8w" + } + }, + "videoQualityPromoSupportedRenderers":{ + "videoQualityPromoRenderer":{ + "triggerCriteria":{ + "connectionWhitelist":[ + "WIFI" + ], + "joinLatencySeconds":15, + "rebufferTimeSeconds":10, + "watchTimeWindowSeconds":180, + "refractorySeconds":2592000 + }, + "text":{ + "runs":[ + { + "text":"Experiencing interruptions? " + }, + { + "text":"Find out why", + "bold":true + } + ] + }, + "endpoint":{ + "clickTrackingParams":"CAIQ6kUiEwiq76Hr4ej7AhVKRkwIHS1xDG0=", + "urlEndpoint":{ + "url":"https://www.google.com/get/videoqualityreport/m/" + } + }, + "trackingParams":"CAIQ6kUiEwiq76Hr4ej7AhVKRkwIHS1xDG0=", + "closeButton":{ + "videoQualityPromoCloseRenderer":{ + "trackingParams":"CAUQ60UiEwiq76Hr4ej7AhVKRkwIHS1xDG0=" + } + }, + "snackbar":{ + "notificationActionRenderer":{ + "responseText":{ + "runs":[ + { + "text":"Experiencing interruptions?" + } + ] + }, + "actionButton":{ + "buttonRenderer":{ + "text":{ + "runs":[ + { + "text":"Find out why" + } + ] + }, + "navigationEndpoint":{ + "clickTrackingParams":"CAQQ8FsiEwiq76Hr4ej7AhVKRkwIHS1xDG0=", + "urlEndpoint":{ + "url":"https://www.google.com/get/videoqualityreport/m/" + } + }, + "trackingParams":"CAQQ8FsiEwiq76Hr4ej7AhVKRkwIHS1xDG0=" + } + }, + "trackingParams":"CAMQuWoiEwiq76Hr4ej7AhVKRkwIHS1xDG0=" + } + } + } + }, + "adBreakParams":"", + "playerSettingsMenuData":{ + "loggingDirectives":{ + "trackingParams":"CAEQtc4GIhMIqu-h6-Ho-wIVSkZMCB0tcQxt", + "visibility":{ + "types":"12" + }, + "enableDisplayloggerExperiment":true + } + } + } + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "allow":"GET, OPTIONS", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"776161748ea29bd0-FRA", + "content-type":"application/json", + "date":"Thu, 08 Dec 2022 00:28:24 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "Details":{ + "type":"object", + "properties":{ + "responseContext":{ + "type":"object", + "properties":{ + "visitorData":{ + "type":"string" + }, + "serviceTrackingParams":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "service":{ + "type":"string" + }, + "params":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "key":{ + "type":"string" + }, + "value":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "playabilityStatus":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "playableInEmbed":{ + "type":"boolean" + }, + "offlineability":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "serviceEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "ypcGetOfflineUpsellEndpoint":{ + "type":"object", + "properties":{ + "params":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "miniplayer":{ + "type":"object", + "properties":{ + "miniplayerRenderer":{ + "type":"object", + "properties":{ + "playbackMode":{ + "type":"string" + } + } + } + } + }, + "contextParams":{ + "type":"string" + } + } + }, + "streamingData":{ + "type":"object", + "properties":{ + "expiresInSeconds":{ + "type":"string" + }, + "formats":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "adaptiveFormats":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + }, + "playbackTracking":{ + "type":"object", + "properties":{ + "videostatsPlaybackUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "videostatsDelayplayUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "videostatsWatchtimeUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "ptrackingUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "qoeUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "atrUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "elapsedMediaTimeSeconds":{ + "type":"integer" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "engageUrl":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "headers":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "headerType":{ + "type":"string" + } + } + } + } + } + }, + "videostatsScheduledFlushWalltimeSeconds":{ + "type":"array", + "items":{ + "type":"integer" + } + }, + "videostatsDefaultFlushIntervalSeconds":{ + "type":"integer" + } + } + }, + "captions":{ + "type":"object", + "properties":{ + "playerCaptionsTracklistRenderer":{ + "type":"object", + "properties":{ + "captionTracks":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "baseUrl":{ + "type":"string" + }, + "name":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "vssId":{ + "type":"string" + }, + "languageCode":{ + "type":"string" + }, + "kind":{ + "type":"string" + }, + "isTranslatable":{ + "type":"boolean" + } + } + } + }, + "audioTracks":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "captionTrackIndices":{ + "type":"array", + "items":{ + "type":"integer" + } + } + } + } + }, + "defaultAudioTrackIndex":{ + "type":"integer" + } + } + } + } + }, + "videoDetails":{ + "type":"object", + "properties":{ + "videoId":{ + "type":"string" + }, + "title":{ + "type":"string" + }, + "lengthSeconds":{ + "type":"string" + }, + "channelId":{ + "type":"string" + }, + "isOwnerViewing":{ + "type":"boolean" + }, + "shortDescription":{ + "type":"string" + }, + "isCrawlable":{ + "type":"boolean" + }, + "thumbnail":{ + "type":"object", + "properties":{ + "thumbnails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "width":{ + "type":"integer" + }, + "height":{ + "type":"integer" + } + } + } + } + } + }, + "allowRatings":{ + "type":"boolean" + }, + "viewCount":{ + "type":"string" + }, + "author":{ + "type":"string" + }, + "isPrivate":{ + "type":"boolean" + }, + "isUnpluggedCorpus":{ + "type":"boolean" + }, + "isLiveContent":{ + "type":"boolean" + } + } + }, + "annotations":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "playerAnnotationsExpandedRenderer":{ + "type":"object", + "properties":{ + "featuredChannel":{ + "type":"object", + "properties":{ + "startTimeMs":{ + "type":"string" + }, + "endTimeMs":{ + "type":"string" + }, + "watermark":{ + "type":"object", + "properties":{ + "thumbnails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + }, + "width":{ + "type":"integer" + }, + "height":{ + "type":"integer" + } + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + }, + "allowSwipeDismiss":{ + "type":"boolean" + } + } + } + } + } + }, + "playerConfig":{ + "type":"object", + "properties":{ + "audioConfig":{ + "type":"object", + "properties":{ + "loudnessDb":{ + "type":"number" + }, + "perceptualLoudnessDb":{ + "type":"number" + }, + "enablePerFormatLoudness":{ + "type":"boolean" + } + } + }, + "exoPlayerConfig":{ + "type":"object", + "properties":{ + "useExoPlayer":{ + "type":"boolean" + }, + "useAdaptiveBitrate":{ + "type":"boolean" + }, + "maxInitialByteRate":{ + "type":"integer" + }, + "minDurationForQualityIncreaseMs":{ + "type":"integer" + }, + "maxDurationForQualityDecreaseMs":{ + "type":"integer" + }, + "minDurationToRetainAfterDiscardMs":{ + "type":"integer" + }, + "lowWatermarkMs":{ + "type":"integer" + }, + "highWatermarkMs":{ + "type":"integer" + }, + "lowPoolLoad":{ + "type":"number" + }, + "highPoolLoad":{ + "type":"number" + }, + "sufficientBandwidthOverhead":{ + "type":"integer" + }, + "bufferChunkSizeKb":{ + "type":"integer" + }, + "httpConnectTimeoutMs":{ + "type":"integer" + }, + "httpReadTimeoutMs":{ + "type":"integer" + }, + "numAudioSegmentsPerFetch":{ + "type":"integer" + }, + "numVideoSegmentsPerFetch":{ + "type":"integer" + }, + "minDurationForPlaybackStartMs":{ + "type":"integer" + }, + "enableExoplayerReuse":{ + "type":"boolean" + }, + "useRadioTypeForInitialQualitySelection":{ + "type":"boolean" + }, + "blacklistFormatOnError":{ + "type":"boolean" + }, + "enableBandaidHttpDataSource":{ + "type":"boolean" + }, + "httpLoadTimeoutMs":{ + "type":"integer" + }, + "canPlayHdDrm":{ + "type":"boolean" + }, + "videoBufferSegmentCount":{ + "type":"integer" + }, + "audioBufferSegmentCount":{ + "type":"integer" + }, + "useAbruptSplicing":{ + "type":"boolean" + }, + "minRetryCount":{ + "type":"integer" + }, + "minChunksNeededToPreferOffline":{ + "type":"integer" + }, + "secondsToMaxAggressiveness":{ + "type":"integer" + }, + "enableSurfaceviewResizeWorkaround":{ + "type":"boolean" + }, + "enableVp9IfThresholdsPass":{ + "type":"boolean" + }, + "matchQualityToViewportOnUnfullscreen":{ + "type":"boolean" + }, + "lowAudioQualityConnTypes":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "useDashForLiveStreams":{ + "type":"boolean" + }, + "enableLibvpxVideoTrackRenderer":{ + "type":"boolean" + }, + "lowAudioQualityBandwidthThresholdBps":{ + "type":"integer" + }, + "enableVariableSpeedPlayback":{ + "type":"boolean" + }, + "preferOnesieBufferedFormat":{ + "type":"boolean" + }, + "minimumBandwidthSampleBytes":{ + "type":"integer" + }, + "useDashForOtfAndCompletedLiveStreams":{ + "type":"boolean" + }, + "disableCacheAwareVideoFormatEvaluation":{ + "type":"boolean" + }, + "useLiveDvrForDashLiveStreams":{ + "type":"boolean" + }, + "cronetResetTimeoutOnRedirects":{ + "type":"boolean" + }, + "emitVideoDecoderChangeEvents":{ + "type":"boolean" + }, + "onesieVideoBufferLoadTimeoutMs":{ + "type":"string" + }, + "onesieVideoBufferReadTimeoutMs":{ + "type":"string" + }, + "libvpxEnableGl":{ + "type":"boolean" + }, + "enableVp9EncryptedIfThresholdsPass":{ + "type":"boolean" + }, + "enableOpus":{ + "type":"boolean" + }, + "usePredictedBuffer":{ + "type":"boolean" + }, + "maxReadAheadMediaTimeMs":{ + "type":"integer" + }, + "useMediaTimeCappedLoadControl":{ + "type":"boolean" + }, + "allowCacheOverrideToLowerQualitiesWithinRange":{ + "type":"integer" + }, + "allowDroppingUndecodedFrames":{ + "type":"boolean" + }, + "minDurationForPlaybackRestartMs":{ + "type":"integer" + }, + "serverProvidedBandwidthHeader":{ + "type":"string" + }, + "liveOnlyPegStrategy":{ + "type":"string" + }, + "enableRedirectorHostFallback":{ + "type":"boolean" + }, + "enableHighlyAvailableFormatFallbackOnPcr":{ + "type":"boolean" + }, + "recordTrackRendererTimingEvents":{ + "type":"boolean" + }, + "minErrorsForRedirectorHostFallback":{ + "type":"integer" + }, + "nonHardwareMediaCodecNames":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "enableVp9IfInHardware":{ + "type":"boolean" + }, + "enableVp9EncryptedIfInHardware":{ + "type":"boolean" + }, + "useOpusMedAsLowQualityAudio":{ + "type":"boolean" + }, + "minErrorsForPcrFallback":{ + "type":"integer" + }, + "useStickyRedirectHttpDataSource":{ + "type":"boolean" + }, + "onlyVideoBandwidth":{ + "type":"boolean" + }, + "useRedirectorOnNetworkChange":{ + "type":"boolean" + }, + "enableMaxReadaheadAbrThreshold":{ + "type":"boolean" + }, + "cacheCheckDirectoryWritabilityOnce":{ + "type":"boolean" + }, + "predictorType":{ + "type":"string" + }, + "slidingPercentile":{ + "type":"number" + }, + "slidingWindowSize":{ + "type":"integer" + }, + "maxFrameDropIntervalMs":{ + "type":"integer" + }, + "ignoreLoadTimeoutForFallback":{ + "type":"boolean" + }, + "serverBweMultiplier":{ + "type":"integer" + }, + "drmMaxKeyfetchDelayMs":{ + "type":"integer" + }, + "maxResolutionForWhiteNoise":{ + "type":"integer" + }, + "whiteNoiseRenderEffectMode":{ + "type":"string" + }, + "enableLibvpxHdr":{ + "type":"boolean" + }, + "enableCacheAwareStreamSelection":{ + "type":"boolean" + }, + "useExoCronetDataSource":{ + "type":"boolean" + }, + "whiteNoiseScale":{ + "type":"integer" + }, + "whiteNoiseOffset":{ + "type":"integer" + }, + "preventVideoFrameLaggingWithLibvpx":{ + "type":"boolean" + }, + "enableMediaCodecHdr":{ + "type":"boolean" + }, + "enableMediaCodecSwHdr":{ + "type":"boolean" + }, + "liveOnlyWindowChunks":{ + "type":"integer" + }, + "bearerMinDurationToRetainAfterDiscardMs":{ + "type":"array", + "items":{ + "type":"integer" + } + }, + "forceWidevineL3":{ + "type":"boolean" + }, + "useAverageBitrate":{ + "type":"boolean" + }, + "useMedialibAudioTrackRendererForLive":{ + "type":"boolean" + }, + "useExoPlayerV2":{ + "type":"boolean" + }, + "logMediaRequestEventsToCsi":{ + "type":"boolean" + }, + "onesieFixNonZeroStartTimeFormatSelection":{ + "type":"boolean" + }, + "liveOnlyReadaheadStepSizeChunks":{ + "type":"integer" + }, + "liveOnlyBufferHealthHalfLifeSeconds":{ + "type":"integer" + }, + "liveOnlyMinBufferHealthRatio":{ + "type":"number" + }, + "liveOnlyMinLatencyToSeekRatio":{ + "type":"integer" + }, + "manifestlessPartialChunkStrategy":{ + "type":"string" + }, + "ignoreViewportSizeWhenSticky":{ + "type":"boolean" + }, + "enableLibvpxFallback":{ + "type":"boolean" + }, + "disableLibvpxLoopFilter":{ + "type":"boolean" + }, + "enableVpxMediaView":{ + "type":"boolean" + }, + "hdrMinScreenBrightness":{ + "type":"integer" + }, + "hdrMaxScreenBrightnessThreshold":{ + "type":"integer" + }, + "onesieDataSourceAboveCacheDataSource":{ + "type":"boolean" + }, + "httpNonplayerLoadTimeoutMs":{ + "type":"integer" + }, + "numVideoSegmentsPerFetchStrategy":{ + "type":"string" + }, + "maxVideoDurationPerFetchMs":{ + "type":"integer" + }, + "maxVideoEstimatedLoadDurationMs":{ + "type":"integer" + }, + "estimatedServerClockHalfLife":{ + "type":"integer" + }, + "estimatedServerClockStrictOffset":{ + "type":"boolean" + }, + "minReadAheadMediaTimeMs":{ + "type":"integer" + }, + "readAheadGrowthRate":{ + "type":"integer" + }, + "useDynamicReadAhead":{ + "type":"boolean" + }, + "useYtVodMediaSourceForV2":{ + "type":"boolean" + }, + "enableV2Gapless":{ + "type":"boolean" + }, + "useLiveHeadTimeMillis":{ + "type":"boolean" + }, + "allowTrackSelectionWithUpdatedVideoItagsForExoV2":{ + "type":"boolean" + }, + "maxAllowableTimeBeforeMediaTimeUpdateSec":{ + "type":"integer" + }, + "enableDynamicHdr":{ + "type":"boolean" + }, + "v2PerformEarlyStreamSelection":{ + "type":"boolean" + }, + "v2UsePlaybackStreamSelectionResult":{ + "type":"boolean" + }, + "v2MinTimeBetweenAbrReevaluationMs":{ + "type":"integer" + }, + "avoidReusePlaybackAcrossLoadvideos":{ + "type":"boolean" + }, + "enableInfiniteNetworkLoadingRetries":{ + "type":"boolean" + }, + "reportExoPlayerStateOnTransition":{ + "type":"boolean" + }, + "manifestlessSequenceMethod":{ + "type":"string" + }, + "useLiveHeadWindow":{ + "type":"boolean" + }, + "enableDynamicHdrInHardware":{ + "type":"boolean" + }, + "ultralowAudioQualityBandwidthThresholdBps":{ + "type":"integer" + }, + "retryLiveNetNocontentWithDelay":{ + "type":"boolean" + }, + "ignoreUnneededSeeksToLiveHead":{ + "type":"boolean" + }, + "adaptiveLiveHeadWindow":{ + "type":"boolean" + }, + "drmMetricsQoeLoggingFraction":{ + "type":"number" + }, + "liveNetNocontentMaximumErrors":{ + "type":"integer" + }, + "waitForDrmLicenseBeforeProcessingAndroidStuckBufferfull":{ + "type":"boolean" + }, + "useTimeSeriesBufferPrediction":{ + "type":"boolean" + }, + "slidingPercentileScalar":{ + "type":"integer" + } + } + }, + "playbackStartConfig":{ + "type":"object", + "properties":{ + "startTimeToleranceBeforeMs":{ + "type":"string" + } + } + }, + "adRequestConfig":{ + "type":"object", + "properties":{ + "filterTimeEventsOnDelta":{ + "type":"integer" + }, + "useCriticalExecOnAdsPrep":{ + "type":"boolean" + }, + "userCriticalExecOnAdsProcessing":{ + "type":"boolean" + }, + "enableCountdownNextToThumbnailAndroid":{ + "type":"boolean" + }, + "preskipScalingFactorAndroid":{ + "type":"number" + }, + "preskipPaddingAndroid":{ + "type":"integer" + } + } + }, + "networkProtocolConfig":{ + "type":"object", + "properties":{ + "useQuic":{ + "type":"boolean" + } + } + }, + "androidNetworkStackConfig":{ + "type":"object", + "properties":{ + "networkStack":{ + "type":"string" + }, + "androidCronetResponsePriority":{ + "type":"object", + "properties":{ + "priorityValue":{ + "type":"string" + } + } + }, + "androidMetadataNetworkConfig":{ + "type":"object", + "properties":{ + "coalesceRequests":{ + "type":"boolean" + } + } + } + } + }, + "lidarSdkConfig":{ + "type":"object", + "properties":{ + "enableActiveViewReporter":{ + "type":"boolean" + }, + "useMediaTime":{ + "type":"boolean" + }, + "sendTosMetrics":{ + "type":"boolean" + }, + "usePlayerState":{ + "type":"boolean" + }, + "enableIosAppStateCheck":{ + "type":"boolean" + }, + "enableImprovedSizeReportingAndroid":{ + "type":"boolean" + }, + "enableIsAndroidVideoAlwaysMeasurable":{ + "type":"boolean" + } + } + }, + "androidMedialibConfig":{ + "type":"object", + "properties":{ + "isItag18MainProfile":{ + "type":"boolean" + }, + "dashManifestVersion":{ + "type":"integer" + }, + "initialBandwidthEstimates":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "detailedNetworkType":{ + "type":"string" + }, + "bandwidthBps":{ + "type":"string" + } + } + } + }, + "viewportSizeFraction":{ + "type":"number" + }, + "selectLowQualityStreamsWithHighBitrates":{ + "type":"boolean" + }, + "enablePrerollPrebuffer":{ + "type":"boolean" + }, + "prebufferOptimizeForViewportSize":{ + "type":"boolean" + }, + "hpqViewportSizeFraction":{ + "type":"number" + } + } + }, + "playerControlsConfig":{ + "type":"object", + "properties":{ + "showCachedInTimebar":{ + "type":"boolean" + } + } + }, + "variableSpeedConfig":{ + "type":"object", + "properties":{ + "showVariableSpeedDisabledDialog":{ + "type":"boolean" + } + } + }, + "decodeQualityConfig":{ + "type":"object", + "properties":{ + "maximumVideoDecodeVerticalResolution":{ + "type":"integer" + } + } + }, + "vrConfig":{ + "type":"object", + "properties":{ + "allowVr":{ + "type":"boolean" + }, + "allowSubtitles":{ + "type":"boolean" + }, + "showHqButton":{ + "type":"boolean" + }, + "sphericalDirectionLoggingEnabled":{ + "type":"boolean" + }, + "enableAndroidVr180MagicWindow":{ + "type":"boolean" + }, + "enableAndroidMagicWindowEduOverlay":{ + "type":"boolean" + }, + "magicWindowEduOverlayText":{ + "type":"string" + }, + "magicWindowEduOverlayAnimationUrl":{ + "type":"string" + } + } + }, + "qoeStatsClientConfig":{ + "type":"object", + "properties":{ + "batchedEntriesPeriodMs":{ + "type":"string" + } + } + }, + "androidPlayerStatsConfig":{ + "type":"object", + "properties":{ + "usePblForAttestationReporting":{ + "type":"boolean" + }, + "usePblForHeartbeatReporting":{ + "type":"boolean" + }, + "usePblForPlaybacktrackingReporting":{ + "type":"boolean" + }, + "usePblForQoeReporting":{ + "type":"boolean" + }, + "changeCpnOnFatalPlaybackError":{ + "type":"boolean" + } + } + }, + "stickyQualitySelectionConfig":{ + "type":"object", + "properties":{ + "stickySelectionType":{ + "type":"string" + }, + "expirationTimeSinceLastManualVideoQualitySelectionMs":{ + "type":"string" + }, + "expirationTimeSinceLastPlaybackStartMs":{ + "type":"string" + }, + "stickyCeilingOverridesSimpleBitrateCap":{ + "type":"boolean" + } + } + }, + "adSurveyRequestConfig":{ + "type":"object", + "properties":{ + "useGetRequests":{ + "type":"boolean" + } + } + }, + "retryConfig":{ + "type":"object", + "properties":{ + "retryEligibleErrors":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "retryUnderSameConditionAttempts":{ + "type":"integer" + }, + "retryWithNewSurfaceAttempts":{ + "type":"integer" + }, + "progressiveFallbackOnNonNetworkErrors":{ + "type":"boolean" + }, + "l3FallbackOnDrmErrors":{ + "type":"boolean" + }, + "retryAfterCacheRemoval":{ + "type":"boolean" + }, + "widevineL3EnforcedFallbackOnDrmErrors":{ + "type":"boolean" + }, + "exoProxyableFormatFallback":{ + "type":"boolean" + }, + "maxPlayerRetriesWhenNetworkUnavailable":{ + "type":"integer" + }, + "retryWithLibvpx":{ + "type":"boolean" + }, + "suppressFatalErrorAfterStop":{ + "type":"boolean" + }, + "fallbackFromHfrToSfrOnFormatDecodeError":{ + "type":"boolean" + } + } + }, + "cmsPathProbeConfig":{ + "type":"object", + "properties":{ + "cmsPathProbeDelayMs":{ + "type":"integer" + } + } + }, + "mediaCommonConfig":{ + "type":"object", + "properties":{ + "dynamicReadaheadConfig":{ + "type":"object", + "properties":{ + "maxReadAheadMediaTimeMs":{ + "type":"integer" + }, + "minReadAheadMediaTimeMs":{ + "type":"integer" + }, + "readAheadGrowthRateMs":{ + "type":"integer" + }, + "readAheadWatermarkMarginRatio":{ + "type":"integer" + }, + "minReadAheadWatermarkMarginMs":{ + "type":"integer" + }, + "maxReadAheadWatermarkMarginMs":{ + "type":"integer" + }, + "shouldIncorporateNetworkActiveState":{ + "type":"boolean" + } + } + }, + "mediaUstreamerRequestConfig":{ + "type":"object", + "properties":{ + "enableVideoPlaybackRequest":{ + "type":"boolean" + }, + "videoPlaybackUstreamerConfig":{ + "type":"string" + }, + "videoPlaybackPostEmptyBody":{ + "type":"boolean" + }, + "isVideoPlaybackRequestIdempotent":{ + "type":"boolean" + } + } + }, + "predictedReadaheadConfig":{ + "type":"object", + "properties":{ + "minReadaheadMs":{ + "type":"integer" + }, + "maxReadaheadMs":{ + "type":"integer" + } + } + }, + "mediaFetchRetryConfig":{ + "type":"object", + "properties":{ + "initialDelayMs":{ + "type":"integer" + }, + "backoffFactor":{ + "type":"number" + }, + "maximumDelayMs":{ + "type":"integer" + }, + "jitterFactor":{ + "type":"number" + } + } + }, + "mediaFetchMaximumServerErrors":{ + "type":"integer" + }, + "mediaFetchMaximumNetworkErrors":{ + "type":"integer" + }, + "mediaFetchMaximumErrors":{ + "type":"integer" + }, + "serverReadaheadConfig":{ + "type":"object", + "properties":{ + "enable":{ + "type":"boolean" + }, + "nextRequestPolicy":{ + "type":"object", + "properties":{ + "targetAudioReadaheadMs":{ + "type":"integer" + }, + "targetVideoReadaheadMs":{ + "type":"integer" + } + } + } + } + } + } + }, + "playerGestureConfig":{ + "type":"object", + "properties":{ + "downAndOutLandscapeAllowed":{ + "type":"boolean" + }, + "downAndOutPortraitAllowed":{ + "type":"boolean" + } + } + } + } + }, + "storyboards":{ + "type":"object", + "properties":{ + "playerStoryboardSpecRenderer":{ + "type":"object", + "properties":{ + "spec":{ + "type":"string" + }, + "recommendedLevel":{ + "type":"integer" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "attestation":{ + "type":"object", + "properties":{ + "playerAttestationRenderer":{ + "type":"object", + "properties":{ + "challenge":{ + "type":"string" + } + } + } + } + }, + "videoQualityPromoSupportedRenderers":{ + "type":"object", + "properties":{ + "videoQualityPromoRenderer":{ + "type":"object", + "properties":{ + "triggerCriteria":{ + "type":"object", + "properties":{ + "connectionWhitelist":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "joinLatencySeconds":{ + "type":"integer" + }, + "rebufferTimeSeconds":{ + "type":"integer" + }, + "watchTimeWindowSeconds":{ + "type":"integer" + }, + "refractorySeconds":{ + "type":"integer" + } + } + }, + "text":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + }, + "endpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "urlEndpoint":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + }, + "closeButton":{ + "type":"object", + "properties":{ + "videoQualityPromoCloseRenderer":{ + "type":"object", + "properties":{ + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "snackbar":{ + "type":"object", + "properties":{ + "notificationActionRenderer":{ + "type":"object", + "properties":{ + "responseText":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "actionButton":{ + "type":"object", + "properties":{ + "buttonRenderer":{ + "type":"object", + "properties":{ + "text":{ + "type":"object", + "properties":{ + "runs":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + } + } + } + } + } + }, + "navigationEndpoint":{ + "type":"object", + "properties":{ + "clickTrackingParams":{ + "type":"string" + }, + "urlEndpoint":{ + "type":"object", + "properties":{ + "url":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + }, + "trackingParams":{ + "type":"string" + } + } + } + } + } + } + } + } + }, + "adBreakParams":{ + "type":"string" + }, + "playerSettingsMenuData":{ + "type":"object", + "properties":{ + "loggingDirectives":{ + "type":"object", + "properties":{ + "trackingParams":{ + "type":"string" + }, + "visibility":{ + "type":"object", + "properties":{ + "types":{ + "type":"string" + } + } + }, + "enableDisplayloggerExperiment":{ + "type":"boolean" + } + } + } + } + } + } + } + } + } + }, + { + "name":"GET Video's Basic Information || Provide Video ID", + "url":"https://youtube-powerfull-api.p.rapidapi.com/api/get_video_info/{video_id}", + "description":"By simply providing the video ID, Get useful and complete information about the target video.", + "method":"GET", + "required_parameters":[ + { + "name":"video_id", + "type":"string", + "description":"", + "default":"SsvcfbHl2HY" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/api/get_video_info/{video_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Video ID":"SsvcfbHl2HY", + "Video Watch URL":"https://youtube.com/watch?v=SsvcfbHl2HY", + "Title":"The Truth About \"Learning to Code\"", + "Author":"Andy Sterkowitz", + "Views":"9080 || nine thousand and eighty", + "Duration":"10 mintues", + "Thumbnail URL":"https://i.ytimg.com/vi/SsvcfbHl2HY/sddefault.jpg", + "Channel ID":"UCZ9qFEC82qM6Pk-54Q4TVWA", + "Channel URL":"https://www.youtube.com/channel/UCZ9qFEC82qM6Pk-54Q4TVWA", + "Kewoards":[], + "Publish Date":"2022-12-01T00:00:00", + "Rating":null, + "Description":"Learning to code ain't easy. In this video I break down why it's so hard and how it nearly broke me.\n\n🏆 * Coaching Program *\nInterested in joining my coaching program and getting support to get your software development career started? If you consider yourself an action-taker, you're ready to invest in your career and you're committed to putting in the work then book your intake call at https://andysterkowitz.link/call-00079" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "allow":"GET, OPTIONS", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"776137be9c6c5bf9-FRA", + "content-type":"application/json", + "date":"Wed, 07 Dec 2022 23:59:56 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "Video ID":{ + "type":"string" + }, + "Video Watch URL":{ + "type":"string" + }, + "Title":{ + "type":"string" + }, + "Author":{ + "type":"string" + }, + "Views":{ + "type":"string" + }, + "Duration":{ + "type":"string" + }, + "Thumbnail URL":{ + "type":"string" + }, + "Channel ID":{ + "type":"string" + }, + "Channel URL":{ + "type":"string" + }, + "Kewoards":{ + "type":"array" + }, + "Publish Date":{ + "type":"string" + }, + "Rating":{ + "type":"null" + }, + "Description":{ + "type":"string" + } + } + } + }, + { + "name":"Download Single Video || Provide Video ID", + "url":"https://youtube-powerfull-api.p.rapidapi.com/download/single_video/{video_id}/", + "description":"By Providing the video ID simply download any video from YouTube.", + "method":"GET", + "required_parameters":[ + { + "name":"video_id", + "type":"string", + "description":"", + "default":"j6PbonHsqW0" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-powerfull-api.p.rapidapi.com/download/single_video/{video_id}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-powerfull-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_powerfull_api/api.py b/toolbench/toolenv/tools/Tools/youtube_powerfull_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3e02efe637e45e1e4e3ba20aa60c9466e849c5e2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_powerfull_api/api.py @@ -0,0 +1,158 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_video_keywords(video_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "By Providing The Video Link You can GET the Video Keywords" + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/api/get_video_kewords/{video_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_playlist_html_file_provide_the_playlist_id(playlist_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "By giving the target playlist ID yon can get that specific playlist HTML generated file." + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_html_file/{playlist_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_playlist_full_details_provide_playlist_id(playlist_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve Huge data of a given Playlist ID." + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_full_details/{playlist_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_playlist_basic_details_provide_youtube_playlist_id(playlist_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Basic Information of a playlist by providing the playlist ID." + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/api/get_playlist_details/{playlist_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_video_s_full_details_provide_the_video_id(video_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve full information about a video by simply providing the video ID. + If you don't know where to find the video ID ? kindly check the bellow example. + https://www.youtube.com/watch?v=**nu_pCVPKzTk** + As you see in the above link a string inside the double stars is the video ID." + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/api/get_full_video_details/{video_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_video_s_basic_information_provide_video_id(video_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "By simply providing the video ID, Get useful and complete information about the target video." + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/api/get_video_info/{video_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def download_single_video_provide_video_id(video_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "By Providing the video ID simply download any video from YouTube." + + """ + url = f"https://youtube-powerfull-api.p.rapidapi.com/download/single_video/{video_id}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-powerfull-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_qr_code/api.py b/toolbench/toolenv/tools/Tools/youtube_qr_code/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6227e0434e3a47b457c43355e2cded9f37c26b98 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_qr_code/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_code_image_copy(url: str='https://www.youtube.com/watch?v=dQw4w9WgXcQ', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "this end point takes a 'GET' request with url / string as a parameter and returns qr code image" + + """ + url = f"https://youtube-qr-code.p.rapidapi.com/" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-qr-code.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_subtitles_captions_downloader.json b/toolbench/toolenv/tools/Tools/youtube_subtitles_captions_downloader.json new file mode 100644 index 0000000000000000000000000000000000000000..27911dea120cbba084b53f837f74efa4642bab99 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_subtitles_captions_downloader.json @@ -0,0 +1,44 @@ +{ + "tool_name":"YouTube Subtitles & Captions Downloader", + "tool_description":"Download subtitles of YouTube videos in plain text. \nLast updated: 09 October 2023. \nUpdate: Now this API supports auto-generated subtitles as well as supports multiple languages (if available). Just pass the lang parameter like: en, de, fr, etc, Default lang = en.", + "title":"YouTube Subtitles & Captions Downloader", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":99, + "avgLatency":3475, + "avgSuccessRate":99, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/420vijay47/api/youtube-subtitles-captions-downloader/", + "host":"youtube-subtitles-captions-downloader.p.rapidapi.com", + "api_list":[ + { + "name":"Get Subtitles- Plain Text", + "url":"https://youtube-subtitles-captions-downloader.p.rapidapi.com/subtitles/", + "description":"Give the link of any YouTube video which has captions. It will return the subtitles in plain text- no formatting.\n\nUPDATES: Now you get auto-generated titles and subtitles other than default English (en) language. (If available).", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.youtube.com/watch?v=ZI4EJBuEVZo" + } + ], + "optional_parameters":[ + { + "name":"lang", + "type":"STRING", + "description":"", + "default":"en" + } + ], + "code":"import requests\n\nurl = \"https://youtube-subtitles-captions-downloader.p.rapidapi.com/subtitles/\"\nquerystring = {\"lang\": lang, \"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-subtitles-captions-downloader.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_subtitles_captions_downloader/api.py b/toolbench/toolenv/tools/Tools/youtube_subtitles_captions_downloader/api.py new file mode 100644 index 0000000000000000000000000000000000000000..778887cddb13020fd2dc188216e367f7758ac185 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_subtitles_captions_downloader/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_subtitles_plain_text(url: str, lang: str='en', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Give the link of any YouTube video which has captions. It will return the subtitles in plain text- no formatting. + + UPDATES: Now you get auto-generated titles and subtitles other than default English (en) language. (If available)." + + """ + url = f"https://youtube-subtitles-captions-downloader.p.rapidapi.com/subtitles/" + querystring = {'url': url, } + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-subtitles-captions-downloader.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_tag_extractor_extract_youtube_video_tags_in_seconds.json b/toolbench/toolenv/tools/Tools/youtube_tag_extractor_extract_youtube_video_tags_in_seconds.json new file mode 100644 index 0000000000000000000000000000000000000000..70b886aa0bd86560a67d418ee2a36b077e5709bd --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_tag_extractor_extract_youtube_video_tags_in_seconds.json @@ -0,0 +1,39 @@ +{ + "product_id": "api_770c83fa-f982-4ab7-951f-b8636bafa52d", + "tool_description": "Youtube Tag Extractor is a free online tool that helps you extract YouTube video tags in seconds. Simply paste the YouTube video URL into the tool and it will automatically generate a list of tags for you.", + "home_url": "https://rapidapi.com/toolkitsuite/api/youtube-tag-extractor-extract-youtube-video-tags-in-seconds/", + "name": "Youtube Tag Extractor: Extract YouTube video tags in seconds", + "title": "Youtube Tag Extractor: Extract YouTube video tags in seconds", + "pricing": "FREEMIUM", + "tool_name": "Youtube Tag Extractor: Extract YouTube video tags in seconds", + "score": { + "avgServiceLevel": 100, + "avgLatency": 182, + "avgSuccessRate": 100, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "youtube-tag-extractor-extract-youtube-video-tags-in-seconds.p.rapidapi.com", + "api_list": [ + { + "name": "Get Video Tags By URL", + "url": "https://youtube-tag-extractor-extract-youtube-video-tags-in-seconds.p.rapidapi.com/youtube-tag-extractor", + "description": "Get Video Tags By URL", + "method": "POST", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "https://www.youtube.com/watch?v=OcXEd0Qbvj0" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://youtube-tag-extractor-extract-youtube-video-tags-in-seconds.p.rapidapi.com/youtube-tag-extractor\"\nquerystring = {\"url\": \"https://www.youtube.com/watch?v=OcXEd0Qbvj0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-tag-extractor-extract-youtube-video-tags-in-seconds.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://youtube-tag-extractor-extract-youtube-video-tags-in-seconds.p.rapidapi.com/youtube-tag-extractor\"\nquerystring = {\"url\": \"https://www.youtube.com/watch?v=OcXEd0Qbvj0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-tag-extractor-extract-youtube-video-tags-in-seconds.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_to_mp3_converter.json b/toolbench/toolenv/tools/Tools/youtube_to_mp3_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..00b4f6ba1fce34bb768b6cd04df96f3d38088ff6 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_to_mp3_converter.json @@ -0,0 +1,30 @@ +{ + "tool_name":"YouTube to MP3 converter", + "tool_description":"+ It's an API that helps developers add YouTube download buttons (MP3 or MP4) in a simple, secure and free way.\n+ Download button is integrated through the Iframe, which means it will not affect the speed of the website and users will never have to leave your website.", + "title":"YouTube to MP3 converter", + "pricing":"FREE", + "score":{ + "avgServiceLevel":95, + "avgLatency":5338, + "avgSuccessRate":67, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/cybernetwebdesign/api/youtube-to-mp3-converter2/", + "host":"youtube-to-mp3-converter2.p.rapidapi.com", + "api_list":[ + { + "name":"https://api.vevioz.com", + "url":"https://youtube-to-mp3-converter2.p.rapidapi.com/", + "description":"https://api.vevioz.com", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-to-mp3-converter2.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-to-mp3-converter2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_to_mp3_converter/api.py b/toolbench/toolenv/tools/Tools/youtube_to_mp3_converter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..622e2d39ee50846d377be2b907be0f40e6400cb1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_to_mp3_converter/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def https_api_vevioz_com(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "https://api.vevioz.com" + + """ + url = f"https://youtube-to-mp3-converter2.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-to-mp3-converter2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_video_data_extractor.json b/toolbench/toolenv/tools/Tools/youtube_video_data_extractor.json new file mode 100644 index 0000000000000000000000000000000000000000..93506ec40048697b0aa0becacf7c0493df776672 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_data_extractor.json @@ -0,0 +1,49 @@ +{ + "product_id": "api_836a4c19-2b07-43fc-b0fc-203b37a671da", + "tool_description": "It is a simple api used to extract YouTube Video data such as title,description,etc.", + "home_url": "https://rapidapi.com/officialofun-C-wpfpix418/api/youtube-video-data-extractor1/", + "name": "YouTube Video Data Extractor", + "title": "YouTube Video Data Extractor", + "pricing": "FREEMIUM", + "tool_name": "YouTube Video Data Extractor", + "score": null, + "host": "youtube-video-data-extractor1.p.rapidapi.com", + "api_list": [ + { + "name": "Extract Data", + "url": "https://youtube-video-data-extractor1.p.rapidapi.com/", + "description": "Almost all YouTube video urls are supported", + "method": "GET", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "https://www.youtube.com/watch?v=RG9TMn1FJzc" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://youtube-video-data-extractor1.p.rapidapi.com/\"\nquerystring = {\"url\": \"https://www.youtube.com/watch?v=RG9TMn1FJzc\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-data-extractor1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://youtube-video-data-extractor1.p.rapidapi.com/\"\nquerystring = {\"url\": \"https://www.youtube.com/watch?v=RG9TMn1FJzc\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-data-extractor1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "The following headers/query parameters are invalid", + "invalidHeaders": [ + "host", + "x-amzn-trace-id", + "x-forwarded-port", + "x-rapidapi-key", + "x-forwarded-proto", + "x-forwarded-for", + "user-agent", + "accept", + "x-rapidapi-host", + "accept-encoding" + ], + "invalidQueryParams": {} + }, + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "youtube_video_data_extractor" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_video_data_extractor/api.py b/toolbench/toolenv/tools/Tools/youtube_video_data_extractor/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f18343c063d5725e274dc80f63eaba603abf8b63 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_data_extractor/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def extract_data(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Almost all YouTube video urls are supported" + + """ + url = f"https://youtube-video-data-extractor1.p.rapidapi.com/" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-data-extractor1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_video_download_info.json b/toolbench/toolenv/tools/Tools/youtube_video_download_info.json new file mode 100644 index 0000000000000000000000000000000000000000..7b759146ca215a963a978e953fdb10ab21a8cc8d --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_download_info.json @@ -0,0 +1,246 @@ +{ + "tool_name":"Youtube Video Download Info", + "tool_description":"Download YouTube Videos/MP4. Forever Free Version.", + "title":"Youtube Video Download Info", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":71, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ytjar/api/youtube-video-download-info/", + "host":"youtube-video-download-info.p.rapidapi.com", + "api_list":[ + { + "name":"Get Video Info", + "url":"https://youtube-video-download-info.p.rapidapi.com/dl", + "description":"Provides the video download links and other relevant information in the JSON format.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"Youtube Video Id.", + "default":"UxxajLWwzqY" + } + ], + "optional_parameters":[ + { + "name":"geo", + "type":"STRING", + "description":"Country code in ISO 3166 format of the end user.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://youtube-video-download-info.p.rapidapi.com/dl\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-download-info.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "title":"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]", + "thumb":"https://i4.ytimg.com/vi/UxxajLWwzqY/mqdefault.jpg", + "length":"03:00", + "lengthsec":"180", + "keywords":"Icona Pop i love it,sweden,pop music,big beat records,big beat,charli,xcx,charli xcx,girls,hbo,i love it,i don't care,icona,pop,iconic ep,iconic,love,it", + "avg_rating":null, + "author":"Icona Pop", + "channelid":"UC7spdtNtUXp1xVdUS1M2Mxg", + "username":"", + "view_count":"187187703", + "date":"", + "description":"New single 'Next Mistake' available now on all music platforms: https://ffm.to/nextmistake\n\nHi Icons! Follow us on Instagram! 🚀 \n\nhttp://instagram.com/iconapop\n\nI Love It (feat. Charli XCX) \n\nSTREAM 'This Is... Icona Pop': http://smarturl.it/ThisIs_Streaming\n\nDOWNLOAD 'This Is... Icona Pop'\n http://smarturl.it/ThisIs\n\nFOLLOW:\nhttp://iconapop.com\nhttp://facebook.com/iconapop \nhttps://instagram.com/iconapop\nhttp://twitter.com/iconapop\nhttp://soundcloud.com/iconapop", + "category":"", + "link":{ + "17":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh8i0pZLPMdR%2FLa%2BF%2FMuY0YBupFQXEXk9AM8dRju%2BrRHDLCXgUzSOZxLiSkjxzCYeoqilap8lNrf6rRFA0R9RvATiKzHUYQOfK703uS6dUoRM2PrslRGh1TOSxeSm1tme9cAbwsr4c8zYoaZq6%2B34CV7eVGpuRC7XaAtAv6vCFzGJhg6Sc8fDmkCmi9EO5yGBKiZZeliiVYwIzE5WxlQzLby4qmPn9R1ls02LlFvMvrw%2BA5Fx0RlCJIaXGdZ6m0Vr012BK588RAvZ7tLFNsGIJaT7ZlBY4q9urbZaRIKPvorm4ax34u4TylG3nXZSciPZQK1770P%2FksI2udw6sRv4c9HiXxAZTXUdM4CnmfYB1xzxL27DyMV8H0ObFSJN5FmTIiVdXICDdaHBlF1l%2BC%2BIB2Y59JzzPK7xY9os8EZLLtp%2F3IuTIelJu4SUwM7njBy1UTV%2Fcfx3OvBLettHfnshfrCXLyLa653790qsMi36hNh6s7TZe2h5Hiuw8%2FqHJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALilYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BD33%2BmJjfNUxTIgxW%2FbiVPNTr2tDRVqiVrmFhFIg69ILoWt4nzWWtjujNkdKZGdPKQbz4CgSL1f82IdoJmXygDY0xiUERSvC63U7y6JlG71XkPnIGRzTWIbyQ3SswJoTDL0WSktyBe%2FBuSvpVUBJixuiljcu4OcCMEDbyT%2FSezb0qDsX5t2CvOuEAlS5sbrkzBd1Ruh3tJ%2BVVu61Huq%2FGYS4zuwLge2K7t5uMwvj2HxX1SbZXd2Mf8xCz43b%2BZ5zRGu0zKMYglWsMsjTEyGt2xjy8R7W4bFJFSpTgF20xIJZp8QRNf7flG60zr7nxk%2FQOGB7OtFew2JmkZPjU3NdHsNwAP5DlX9KUUBAGqp6tTu2ubZ3rVWW9LBVYb3QGof5OBnRX4plQMCIPPqe6wSqsmttAZfhbTpWA%2FbjCNmlb9TyNc8XTjU8TWPABduhpugy3UQDqplj2dt%2BuWQCBvBwaz7MdvPivzZuHqHxsk8OCFLBuoM%3D&i=17", + "1.67MB", + "small", + "144p", + "video/3gpp; codecs=\"mp4v.20.3, mp4a.40.2\"" + ], + "18":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh8i0pZLPMdR%2FLa%2BF%2FMuY0YBupFQXEXk9AM8dRju%2BrRHDLCXgUzSOZxLiSkjxzCYeoqilap8lNrf6rRFA0R9RvATiKzHUYQOfK703uS6dUoRM2PrslRGh1TOSxeSm1tme9cAbwsr4c8zYoaZq6%2B34CV7eVGpuRC7XaAtAv6vCFzGJhg6Sc8fDmkCmi9EO5yGBKiZZeliiVYwIzE5WxlQzLby4qmPn9R1ls02LlFvMvkw%2BA5Fx0RlCJIaXGdZ6m0Vr012BK588RAvZ7tLFNsGIJaT7ZlBY4q9urbZaRIKPvorm4ax34u4TylG3nXZSciPZQK1770P%2FksI2udw6sRv4c9HiXxAZTXUdM4CnmfYB1xzxL27DyMV8H0ObFSJN5FmTIiVdXICDdaHBlF1l%2BCppcyNd5H1HyO8wBo58ANb%2BHhovzJvTEYk5uuXUpUvTmBhBZUXagW2SH2QPOktnfkpB7vCW2tc%2By12K8t7cYg0KxLgqw5TZK8mdH5pkIzrGAsAGd3ZIVeueoiih7BpzksF0MR%2BuQaKB5EwuWClUYpaN9EwhxuuIB6VrbWGVOWjm54uO%2Bd9dVVKDV7mZHvzn%2FKRNswlrQA5XUq3h2a0BViwR%2B9s9MogUVKuikSZO6GXWumOtR4kx9dt4n52BGnNwapQfNEtZsLlZ9NZkJ%2FaprMHauwPY2a%2FoRk6zkPylmxJnFIvkSkLqsLVRJRH0Jlyx%2FNtxFtXJkrA%2FgqVt7GQvFUrjNvXUnoSMvWsEdHzYkMnHEmnE2F0AqyDyR6DChNWB3W6SI1Llvahr9AOjLl4iJX8D4mcj%2Be%2F2BbqoVAGMhRnsSnZie4EcjqbkLs%2FdlFOMJORi54DOaZhQjWfAp0j1fI%2BAsy%2FI81aVnbyDiaO1fghyURop2gvO7QSg7f85WvzUEuYrhY1p6VZOXRW%2FuDJsnLx9AUhK%2BN4OVubzik7is81i6jM7q4XM1UyJzU0u1RXSqUkaML227BT6%2BFciKL0AefzwjTyIxjHDcti2Tp4dglyrc1Ys%2Bmsw2xkJOSxQmJLU9DZYpf515Nl7D0UQI%2BSOIuM95jtCpcZncHRPFBg2WluqFeqB6upeJhddHBRIrsPzK7UYR1adejAPaK71OvhnN5EeWXdiMJQriXavald9DyLNRMQCovYi3tHoPvzsknhA1YuadF4IpiqwxPUsBTRFPdduKGwSQTctD2six9BT%2B7nL%2FGANiaA6AuXmOdjzbK&i=18", + "13.96MB", + "medium", + "360p", + "video/mp4; codecs=\"avc1.42001E, mp4a.40.2\"" + ], + "22":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m7iYqLGEFq6kAkw61W9Ji5w%2BEzExobg3pCdWjUa66iVqI4lDTop8xe88HhcARcDNYUH4tgUI1q%2F77fJfJlabjr8UNU2j03sm78BHPcZXtqfOoYzLbyG74kLCOVxrAJ6tcqAj3xZJbfGcdgWjKaNAY6lwmpoyGFV4Woe6JNc5o%2BxWR7GsrMQSRRAQxLgB75soJ1Nd1b1HzGrkNgtJ5cJ7C94vfMuzcem47lDA8G6nTH0F0URrwHlzakAbWqs3rgvhf7Wz2obqW6z%2F98po4u26hJhK49TpCqk7Sm5k8yrWYsBXUhbfAp294bqira4Wc6Tw9U9OQaKxpTgqLQwhUHKdYRils1%2FtN5B8jyPjL2gk5Mu6mm7IxEL0Ui2cO8zT75VsYkiaRYpT8ZxQqOgE5TwQXr7bVzshYIizZTc5%2BoXXKieMMJog1Gp5njzVXmB1H%2Bc%2BJYtdtKpZ8FICd6c4%2BHedaCYLW9o9YE%2BRcO%2BTPJD1Z8smC3TZssUQ5DTHJ0yRvUo1Zcdo0aYLAESvD0V%2FJqj1gfYUu9XNCvrlR7zpA8jExiu2iK0DOvJBBxcgxCBT%2FBkWUtYH7yvJp3EQvX73k73zYaWl7OkR5HuPdtf%2BFM1u2PQSj4VojSEQma2tIFettIYEgsNfLT7njHSwsB0X39ozNm95YxMQiSiBXYNVKB2BU%2Bu662g8ykTyewkL%2Bux1FRarlMrJiJOcC2JvHDaKCb8vk0te3VmuZyZBO%2FyhQ01lvZSIP3XNNEq4DO59RtXzSd06k4%2FmT8ScGAYgWh4Wvm1y6S451tT3Byukfpk8YL1uACEaOtkR%2FDvffV5BaaY1tcdpQZ%2F3N8n7OsLGAPV%2FYPVOtehHFWHGhQBvli%2Bxj%2FvOk34SHEzL5TNcnMFtS9YG3gTZFgN82%2FPe%2BA4lDIiUdbRY6IKW9IbJLsZdyJUPCVV%2B11L0JLDjPlX5j60Q%3D%3D&i=22", + "", + "hd720", + "720p", + "video/mp4; codecs=\"avc1.64001F, mp4a.40.2\"" + ], + "133":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q6nN%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7J4AelXLEpFUq8d5VMOvpuPPLvSVBzsnhDQgF7HjF1VQXUeBFkzOhAaf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBr6jZCPisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxHzSXW02hlUoUSXpJRVvrmM%2B1KmTZJQ1y0KLGBhXl%2B%2FY0noXhmyXGfigWWFAJrbmlBASrwrDsWD3DgnYdmBgfa1DBa4UEQRHf8031BxZdfBstLlPyMdC77G7GLVlSLxJoTDL5JfR1%2FBP7NuHfpTlgWoFP98GgAqLtkb22TiFmNS36wzmQirpmo9K%2BuVwrcraWrx1ldZuZ1rNSXfsSlINCvGr2Q6NpXoMHT2co2FmSBxQNIulHcEpOES%2BJh8%2BzP44pHXAurka9y%2Fiz4TLHcZlKR617U7gHX4q18AxRkmib1k%2FYN9%2Fo1EdLa4lW3r%2BWN9jmucxdedKBK1mch1JbjU3NeX%2BYiF%2F1OgHxAUhxKDOQlpTz9q%2F9jvgmfsY5wKJrkCLPPJS%2F3cdZgcJKQMLO77VaNsC9TD8yaL2E0BZHFVfDhUMXyWYkEDWJlXyiKMp3rl%2Bw6hHAp2eQSuNVptQ1odfR2bjHEeZH1ull9GMCBuURWPEg%3D&i=133", + "4.68MB", + "adaptive", + "240p", + "video/mp4; codecs=\"avc1.4d4015\"" + ], + "134":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q6m9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7KoAXnnPFo1Uq8d5VMOvpuPPLvSVBzsnhDQgF7HjF1VQXUeVAnzShB6f083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBr6jZCPisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH%2ByXZ3nZ5S5wrT4k2XPDAL%2BBsmHYeKwi9bdSGiy1m3NEGkVt9oW2DsF2DJSIxfR1JOSuAkyhzM3XKlIQ9AQPu4hs%2F9xc%2BSXLPgWNt%2BIpwael%2BntuvTWjMJNTiXHa%2BkoxkbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYhGC6Q%3D%3D&i=134", + "9.54MB", + "adaptive", + "360p", + "video/mp4; codecs=\"avc1.4d401e\"" + ], + "135":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q6mt%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7Io0clnXGrkRo4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ0VUWUONKkzCnDLe%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALiiYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BD339UF3TIQAEodcDMT3Lud0rD9FW22NUPHcgEZy8Y8J%2BEN5uzeE1jaNMDFqWAdDIT714SsyAkXSuLhnLCLp5CRK8BciGUvM%2Bh5I%2B5ZRFMN57MuREz3tEY%2FYX3mvwJoTDL0WSktyBe%2FBuSvpVUBJixuiljcu4OcCMEDbyT%2FSezb0qDsX5t2CvOuEAlS5sbrkzBd1Ruh3tJ%2BVVu61Huq%2FGYS4zuwLge2K7t5uMwvj2HxX1SbZXd2Mf8xCz43b%2BZ5zRGu0zKMYglWsMsjTEyGt2xjy8R7W4bFJFSpTgF20xIJZp8QRNf7flG60zr7nxk%2FQOGB7OtFew2JmkZPjU3NdHsNwAP5DlX9KUUBAGqp6tTu2ubZ3rVWW9LBVYb3QGof5OBnRX4plQMCIPPqe6wSqsmttAZfhbTpWA%2FbjCNmlb9TyNc8XTjU8TWPABduhpugy3UQDqplj2dt%2BuWQCBvBwaz7MdvPivzZuHqHxsk8OCFKfrcc%3D&i=135", + "13.55MB", + "adaptive", + "480p", + "video/mp4; codecs=\"avc1.4d401e\"" + ], + "136":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q6md%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IYsWlHTAr0Ro4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ0VUWUOZDnTSjBri%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALiiYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BD339WpPbpYNaf85bevxMuF6%2FWZ0cEvodPe4rVNusbEooV5%2FyWy9rCyqET9aWRtDIT7ygA52E3WnnZMjKQjh4wJ4wQsYGVHogUZn6ItRH%2BNb%2BeupVyC%2FAJb4Wg6TwJoTDL0WSktyBe%2FBuSvpVUBJixuiljcu4OcCMEDbyT%2FSezb0qDsX5t2CvOuEAlS5sbrkzBd1Ruh3tJ%2BVVu61Huq%2FGYS4zuwLge2K7t5uMwvj2HxX1SbZXd2Mf8xCz43b%2BZ5zRGu0zKMYglWsMsjTEyGt2xjy8R7W4bFJFSpTgF20xIJZp8QRNf7flG60zr7nxk%2FQOGB7OtFew2JmkZPjU3NdHsNwAP5DlX9KUUBAGqp6tTu2ubZ3rVWW9LBVYb3QGof5OBnRX4plQMCIPPqe6wSqsmttAZfhbTpWA%2FbjCNmlb9TyNc8XTjU8TWPABduhpugy3UQDqplj2dt%2BuWQCBvBwaz7MdvPivzZuHqHxsk8OCFKfrcc%3D&i=136", + "21.77MB", + "adaptive", + "720p", + "video/mp4; codecs=\"avc1.4d401f\"" + ], + "139":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q6lt%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND86gaqNLOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IokXnnjCpFUq8d5VMOTguPrEviVBzsnhDQgF7HjC3V0eUuhCnTGiBKf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBrmjZCPisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH6yXZ9nYcC68hRf5fSYT%2BLuhUiF1ZJ1ygU%2BCUj3JRtNQv%2BGlwyXa7jiO1K0dLZR1JLxjI6RR2GEncmNJyOAbQ4h960jQkWDDM02Au86NObOJtzMGzanHtEYbKax21xM9BOvlIfVBzHrqSiCfpA09njlC15xkutvBzHkOI3k78ZWWvzmQis4Pnve6EQFu7huWB%2FxxdVodnusSXQ8edBd%2FbHaeV%2FuJWsrrp4dpLZGyb5TpFwTH3GtyzbZdB8ZjkpuYyfX6Vk68p9SbLCYTGSQu2913g%2ByPV7ugKThtxnWyF5%2BQspe0zBrKzs3ij1OTW8z%2BfKGMNJKANk2IilbOyBVUBXeYlAaJOlW4VVFVeDqp6pCng%2FZ1PshCO6p1yJ5j0O9nsOyHqTc1deomSNKWi4UnI%2FC9KS%2FDedC9WZ6mBBqfyf9S4CJUXKG9lWWrIWq3JvaVhlgNPtINvx7gFwwZmf5lpZDzAep%2BWtzNVY4Q%3D&i=139", + "1.05MB", + "adaptive", + "OK", + "audio/mp4; codecs=\"mp4a.40.5\"" + ], + "140":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q9n9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND86gaqNLOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IYAfknPBrlUq8d5VMOTguPrPuSVBzsnhDQgF7HjC3V0eUulFnzSiDKf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBrmjZCPisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH%2ByXW02pmZ58yEIlYUt3xKuMF%2BX9GWVCTfO6ZqlRu8YR4uExexG2XjC%2BoKRQ7cwhBAS2HrD49LQbXjZdqASGy%2FiR1%2BCc%2BWXXT4UFl0fQbPv5HyOmWECneOtLXcH6YkoxkbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYhHGvA%3D%3D&i=140", + "2.78MB", + "adaptive", + "OK", + "audio/mp4; codecs=\"mp4a.40.2\"" + ], + "160":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0q%2Fn9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IoAXkHTArlUq8d5VMOvpuPPLvSVBzsnhDQgF7HjF1VQXV%2BlFmjCnBaf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBr6jZCPisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH%2ByXW02kWCqIxRIwrccTbHuBo5E1NekG1adG9klx8wJV8lHd7m3T%2F0CWlC09mehpBAS7Fvw4Nb0vMoZJHBSHS5hdezTQRZzTa32R0r%2FJlPtV1%2Bc6Vd33yPdTZVW6IkoxkbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYhGC6Q%3D%3D&i=160", + "1.9MB", + "adaptive", + "144p", + "video/mp4; codecs=\"avc1.4d400c\"" + ], + "242":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m9nd%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7mMqXtWLUihBRQVPgEunp4JoLo0flnHCpUNo4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ0VceVORLkzOiBLC%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALiiYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BAv3%2BmJkSZYGT44oVt3fBcB%2B%2B1h9eQG9V%2BaKpGNRxb4BrFxQoHfji1CpDE9EdhM5KQb0mCR9Okn01LRnJGPsiDl16CAzEmvFxklH2ZVFP75MzuisdC7BEbH1dgmg%2BdgFe9wDYh5uF%2B3Bpjm5SxUB0X39uH9xhrgveBy9lg%2BaOlCrnXNTgIK3uLjfZBaW57qxyQMhYJIFsPOuSOGmOPGGEaao7dEF2Mf0z%2B9dfQvn0Q5O3kSoPIe2Wexe%2Fr%2BF4Nctcy6%2B%2FNsBhV2mHcf0TSL2zFjT8AfO%2FrRMPCVdiHb2l4Uu9%2BcMEcfKkQ2fvoeUvR2%2FDQ8dYYdswlBFwuGCRQQ8C%2FU3BvpViW1SUlIOEPJw9j3koaUnsxyO8OB6BZr9A5XUBSL8WakybY%2BIOevPx1qMv2UoMNPBKWdWZ%2FbmTOOvMvitV54OU2FhSnKPWrbihPI%2FxgMywpkFs8dnpXplfPR5ZDvMdPaIpVR8EqqRyC4VOxmQsA%3D%3D&i=242", + "3.91MB", + "adaptive", + "240p", + "video/webm; codecs=\"vp9\"" + ], + "243":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m9nN%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7mMqXtWLUihBRQVPgEunp4JoLo4clnPCpEpo4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ0VceVeNHmTWmBba%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALiiYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BC339XReTIQfQak%2BY%2FCLMcxrmUlBZWupK%2BiU%2F0VB65AEoSpiw1CF3lqoUjA7Dg9DISvkqRUMYEPW34p7JyXh%2FWxI%2BxYDSjf8zEVa0osEPvVX48q4Sy%2FmAI%2FpeFD%2F28xQKepEYx4jG%2FeF%2BQnpS1gWoFP%2B8GgAqKZkb22TjVmNS36wgnNTgJ%2Bt9%2FGeTgHHgJHx4ztkYKJkouW%2BSNylANSJZaGy6Mc92dWP9ddNAHnvyy530z%2FIF4%2F5bsor3r3xy5JBBg%2FLwtkB3lasLoLBVw2v60TQxBLs%2FLgJSmhSnXG85%2FE81rUbF9Cq%2BFyyqvyV5hi5PFRpMtdshRVAwaCnFFIaVPc3AewKiXhAB1RHBPA%2BqTzxvPNFnxCX4btpB5X%2FE6a%2BJjzyRJUpUIWTO%2B%2FZ3laT%2BikoKZf9bTwYBZTeCLD4Ide8Hc8SQERsSnTNGN7Spth2nRFBpPRizrgKyQxucv4UezHBcPWGxlkWIIDWkA%3D%3D&i=243", + "6.87MB", + "adaptive", + "360p", + "video/webm; codecs=\"vp9\"" + ], + "244":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m9m9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7mMqXtWLUihBRQVPgEunp4JoLogcl3bOoUJ5osgdc%2BHhofPTtDUdhdGxSAMA6XTC3VEVWeVEmDeiBrKgoSKgtx%2FrCX%2FyKq283aA%2FuIh6maFLkvRrHNPuzZ7it0J7%2Fyc%2BVTY6IIxVq7xk0l3Lpjp4MQlV9%2BYZKhpD17GM8TouCKQ9tg0o9MZhAb6kYiP39QFP7vqX5IUSIGMz3cupjSmIZsw43vV%2B6X1%2FhSyWkQIT5x%2Fs4PdkwyMLljUEIrngBly1OIA%2FuR5XsYj2mAbWAgS%2BRqMfhJMRi5ZNZkJuc5qfCtqQPIGZvpMVzCsUnU7ACX9Q%2FVnoe9U4excELHEt3T7Z20tvd64IQIFZUfaKHbt0iGcbeUyxX8e5mFwk94oJrWh1nln4pDufI0FreSlsKi7YnBBzZGPAp692Czm0yThkyBpeFlbq5G90qYBHK85nleKKFDzHDbTMcFrt%2BNdhbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYguXv54%3D&i=244", + "11.62MB", + "adaptive", + "480p", + "video/webm; codecs=\"vp9\"" + ], + "247":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m9mN%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7mMqXtWLUihBRQVPgEunp4JoLosfn3bPoUt8osgdc%2BHhofPTtDUdhdGxSAMA6XTC3VEVWedLkjWgAbOooSKgtx%2FrCX%2FyKq283aA%2FuIh6maFLkvRrHNPuzZ7it0J7%2Fyc%2BVTY6IIxVq7xk0l3Lpjp4MQlV9%2BYZKhpD17GM8TouCKQ9tg0o9MZhAb6kYiP39QFP7vqX5IUSIGMz3cupjSmIZsw43vV%2B6X1%2FhSyWkQIT5x%2Fs4PdkwyMLljUEIrngBly1OIA%2FuR5XsYj2mAbWAgS%2BRqMfhJMRi5ZNZkJuc5qfCtqQPIGZvpMVzCsUnU7ACX9Q%2FVnoe9U4excELHEt3T7v20tvcYouRLMBF9bHMep3pmcfY2LpcPOP9Vx0yaU5h24ltGqsygqwKkdlRG1RBy7YmB8cNlXc3dFkVGe2ghJmrSBaREfF3h9p0JZDb71Hz9yvRD%2FjOqKPYEiP3e4Fe9wAPSk4GuzQqjjlSw4Zjla15xkuqPBzHkOQ3k78ZWDj2RUMtcrzkvCbTkPIgqauhghvSLILsuvlSsmMKM%2B8AaWRxfczhObYlthJJS6IsxMxwSvfOcj4Udhw3YPk9M05Rzbe44YN7yHfSbmNQleF8GiV1hjR%2F7dQCTNjv2yN1tJao7cyNePmlHukvebP1y3Jc0RqRMkd1kVAhaSHRQQ8CLQSVO1WhHhRWFFSGuQ%2BqS3j6rdupw%2FS%2BaVEINPaN4fgMz%2FKf4duaL%2FaIeeG4lzemGdsDt2aUiUNBfCBar6Gdse8V%2FJIQCI2E2DEEIGkzsM7zloG6Op4wqZpsnYMFod9Yj7DfPnqslETAazwuCUeeTjcqpaPOw%3D%3D&i=247", + "20.96MB", + "adaptive", + "720p", + "video/webm; codecs=\"vp9\"" + ], + "249":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m9lt%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND86gaqNLOY1K7mMqXtWLUihBRQVPgEunp4JoLogelXTGrkJo4NkaPO3nr%2BTEtTILz9CoAQ8H63PJ1l0eUOVGkjGlB7K%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALilYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BC339W1rdo4hE5AOUffUEeRLlkRnQ1OwKcKtnWxwqYIDuVtAlj7j3yf1Ij1dZQtDISnjjzBzPn3kuLJBLRDIwwRX8Ek%2BTFHf8BRtyI8QFOxs1vjJVia9JY%2FcBVf%2F28xQKepEYx4jG%2FeF%2BQnpS1gWoFP%2B8GgAqKZkb22TjVmNS36wgnNTgJ%2Bt9%2FGeTgHHgJHx4ztkYKJkouW%2BSNylANSJZaGy6Mc92dWP9ddNAHnvyy530z%2FIF4%2F5bsor3r3xy5JBBg%2FLwtkB3lasLoLBVw2v60TQxBLs%2FLgJSmhSnXG85%2FE81rUbF9Cq%2BFyyqvyV5hi5PFRpMtdshRVAwaCnFFIaVPc3AewKiXhAB1RHBPA%2BqTzxvPNFnxCX4btpB5X%2FE6a%2BJjzyRJUpUIWTO%2B%2FZ3laT%2BikoKZf9bTwYBZTeCLD4Ide8Hc8SQERsSnTNGN7Spth2nRFBpPRizrgKyQxucv4UezHBcPWGxlkWIIDWkA%3D%3D&i=249", + "1010.92kB", + "adaptive", + "OK", + "audio/webm; codecs=\"opus\"" + ], + "250":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m8n9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND86gaqNLOY1K7mMqXtWLUihBRQVPgEunp4JoLogdkHbArkVo4NkaPO3nr%2BTEtTILz9CoAQ8H63PJ1l0fWOZBkz%2BhA7e%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALilYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BC339UVdaN4KTYUGA9f8JvB5q2JIR1apYOqUhVYg6Yd6lGhXu3OFyiOvUBt1e25DISjBlWJ3YVbLnZgjAGHK6B1o7SFdWVH22wA01ZtxL%2BZw6O2TbSHJOq3pXFf%2F28xQKepEYx4jG%2FeF%2BQnpS1gWoFP%2B8GgAqKZkb22TjVmNS36wgnNTgJ%2Bt9%2FGeTgHHgJHx4ztkYKJkouW%2BSNylANSJZaGy6Mc92dWP9ddNAHnvyy530z%2FIF4%2F5bsor3r3xy5JBBg%2FLwtkB3lasLoLBVw2v60TQxBLs%2FLgJSmhSnXG85%2FE81rUbF9Cq%2BFyyqvyV5hi5PFRpMtdshRVAwaCnFFIaVPc3AewKiXhAB1RHBPA%2BqTzxvPNFnxCX4btpB5X%2FE6a%2BJjzyRJUpUIWTO%2B%2FZ3laT%2BikoKZf9bTwYBZTeCLD4Ide8Hc8SQERsSnTNGN7Spth2nRFBpPRizrgKyQxucv4UezHBcPWGxlkWIIDWkA%3D%3D&i=250", + "1.3MB", + "adaptive", + "OK", + "audio/webm; codecs=\"opus\"" + ], + "251":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m8nt%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND86gaqNLOY1K7mMqXtWLUihBRQVPgEunp4JoLosZlXjPoEJo4NkaPO3nr%2BTEtTILz9CoAQ8H63PJ1l0fWeFFmDWlDbi%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALilYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BC339WJGWZYTeY8EVsTXVsEJ%2FGR6U1a%2FSeKUgFpyx4smvWNklku9jT6LEUBXeTVDIS39tBIlL3T6qolXBAHu1Gw6%2Fx05U1fw835S1rZcIMZK1ry0SC%2FlI4fobE%2F%2F28xQKepEYx4jG%2FeF%2BQnpS1gWoFP%2B8GgAqKZkb22TjVmNS36wgnNTgJ%2Bt9%2FGeTgHHgJHx4ztkYKJkouW%2BSNylANSJZaGy6Mc92dWP9ddNAHnvyy530z%2FIF4%2F5bsor3r3xy5JBBg%2FLwtkB3lasLoLBVw2v60TQxBLs%2FLgJSmhSnXG85%2FE81rUbF9Cq%2BFyyqvyV5hi5PFRpMtdshRVAwaCnFFIaVPc3AewKiXhAB1RHBPA%2BqTzxvPNFnxCX4btpB5X%2FE6a%2BJjzyRJUpUIWTO%2B%2FZ3laT%2BikoKZf9bTwYBZTeCLD4Ide8Hc8SQERsSnTNGN7Spth2nRFBpPRizrgKyQxucv4UezHBcPWGxlkWIIDWkA%3D%3D&i=251", + "2.61MB", + "adaptive", + "OK", + "audio/webm; codecs=\"opus\"" + ], + "278":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0m%2Bl9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7mMqXtWLUihBRQVPgEunp4JoLogWn3XCokto4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ0VceVulDmDekDbC%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALiiYyTw51RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BD339XJACZhsZaghWeHkA8tzuFlkQV2qSuq08Hpd8LA1uE9bqW25uDyeDjs3eBdDIT7ylxR2Z0Ckq5B0BmGz%2BDBbxhsjYWmQ9VVr0p5QPcB5i%2Bu%2BEn24ArLSZ0%2Fr9poTDL0WSktyBe%2FBuSvpVUBJixuiljcu4OcCMEDbyT%2FSezb0qDsX5t2CvOuEAlS5sbrkzBd1Ruh3tJ%2BVVu61Huq%2FGYS4zuwLge2K7t5uMwvj2HxX1SbZXd2Mf8xCz43b%2BZ5zRGu0zKMYglWsMsjTEyGt2xjy8R7W4bFJFSpTgF20xIJZp8QRNf7flG60zr7nxk%2FQOGB7OtFew2JmkZPjU3NdHsNwAP5DlX9KUUBAGqp6tTu2ubZ3rVWW9LBVYb3QGof5OBnRX4plQMCIPPqe6wSqsmttAZfhbTpWA%2FbjCNmlb9TyNc8XTjU8TWPABduhpugy3UQDqplj2dt%2BuWQCBvBwaz7MdvPivzZuHqHxsk8OCFKFuJGA&i=278", + "1.81MB", + "adaptive", + "144p", + "video/webm; codecs=\"vp9\"" + ], + "394":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0iwm9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IowekXnGp1Uq8d5VMOvpuPPLvSVBzsnhDQgF7HjH0VwRUuREmjWrDaf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBrqjZCXisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH%2ByXW029NW7oQZLkmS93mKLFsgT9leXyzf82ht1Yvxbkf%2BFlcgnedqg6lIx5FSThBAS7Ci2IoGVXAhLdbGAbz8jNoyCIkVnfm9Uo0pfFgEP1mi8eXZR%2FbJorVeUyukoxkbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYhGC6Q%3D%3D&i=394", + "1.44MB", + "adaptive", + "144p", + "video/mp4; codecs=\"av01.0.00M.08\"" + ], + "395":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0iwmt%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IIkbkXPAp1Uq8d5VMOvpuPPLvSVBzsnhDQgF7HjH0V0SVuFGnz6nBaf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBrqjZCXisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH%2ByXZ1U9jDqkPVYIEA8LGHMEQozp9dF6dSuurg0davLkBoGIqr3f40gqvBRF1eR1JOSuFrDwPBQT23qFgVCbInTBKrgEdYnbdxBtN86odErRYxMmXYyfFP6zPd0KIkoxkbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYhGC6Q%3D%3D&i=395", + "2.92MB", + "adaptive", + "240p", + "video/mp4; codecs=\"av01.0.00M.08\"" + ], + "396":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0iwmd%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7JYsWknHPpFUq8d5VMOvpuPPLvSVBzsnhDQgF7HjH0VwQWeJLnzSgAKf083LlvBrpDn%2F0Kqyxz%2F9vt44u27oS0fp%2BGM%2Fm15KpqxpxvDJ9SyN%2FYoVXr71n1F3Zp1x4RgtR8OQaLggWzJP%2F9CYlE69ShlMssYJpBrqjZCXisldd7PqI9tUEZXYi38f%2B2k%2FfTIxjuK5NpT8Z3gvax2RI0Bf%2FpKICgg8NiyMTZO6GRnq2KJg4tR9Brt6o%2FkLlBgLpAsVArpMdw8ErM2h7P9r5W%2FWWPsHF2MUj2ntU%2BxDuETRXsk28XacIBDd%2BRUxH%2ByXZ22tFTqsBQKA2WIPrKbVSjXl7ZGK1fvCa6lZj8Y4ZpnZewjCPrQ6tGCJ4aR1JOSvZsGZ2MHfEvq93EmHOhD9V2iU9ZD%2BRgB1FqpJ5b%2BdO38aUECD%2BMqzgV3mukoxkbathKAFtBv7Sqif3GxBMxgzTuDdm95YsMwvMuBHMLSGFhiBE8aysp%2FTIFSWKrfCu0w17HJRxwO%2BJcdeDO%2BmnOK2z1dQOir%2Fy6Pl4FmCItxpD2CC9SKmia%2F5QwbLWqtRwGQGb6bZ19ibXQ5aCZQmGq3%2FV9xnI56hVDBpssWSmlIFd1OcRKMffgX7Hlpb2pFabHHEFIpJL5ERypvf1JBJLaaEkE%2BtSkmRDQFJAVO5mo27luK999xGb4aEUD7f9Gp7yHgLxUoFNP5KVIeKXs3CAvmpiS%2BzecmFQBZSBb%2Fq8fJqQCJAZWT9iTmfVX97JjeEhw0FB2YJ4pMx1q2oScf15azHGfPvv2EtxE6D72F9%2FYhGC6Q%3D%3D&i=396", + "5.99MB", + "adaptive", + "360p", + "video/mp4; codecs=\"av01.0.01M.08\"" + ], + "397":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0iwmN%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IogfkXnBpkRo4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ01AUVOhGnzaqA7S%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALimYyT251RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BD33%2BmJ%2BaIUhUYQ5A8n3KbpqhV9Je1SAKvOZgldj0qUagCpcqWqJiiC%2BVCYzeR1XKQbzsSUpbkv1loN6CTzg0gNFrxwHdzXt7WE6061KM%2B9WwviyTnDFJaCMflCd9poTDL0WSktyBe%2FBuSvpVUBJixuiljcu4OcCMEDbyT%2FSezb0qDsX5t2CvOuEAlS5sbrkzBd1Ruh3tJ%2BVVu61Huq%2FGYS4zuwLge2K7t5uMwvj2HxX1SbZXd2Mf8xCz43b%2BZ5zRGu0zKMYglWsMsjTEyGt2xjy8R7W4bFJFSpTgF20xIJZp8QRNf7flG60zr7nxk%2FQOGB7OtFew2JmkZPjU3NdHsNwAP5DlX9KUUBAGqp6tTu2ubZ3rVWW9LBVYb3QGof5OBnRX4plQMCIPPqe6wSqsmttAZfhbTpWA%2FbjCNmlb9TyNc8XTjU8TWPABduhpugy3UQDqplj2dt%2BuWQCBvBwaz7MdvPivzZuHqHxsk8OCFKfrcc%3D&i=397", + "10.66MB", + "adaptive", + "480p", + "video/mp4; codecs=\"av01.0.04M.08\"" + ], + "398":[ + "https://one.123berlin.xyz/dl.php?url=J01SJXPeIzh9nVgCcO8KWfza%2BEDarMUGBvhFV3EbydwRspx6venYFjTHWxk%2BB%2BZ1fG6qlhHVa6d33Rv%2FoAY3dP%2BZQgEKrV%2B9E1XeXBlIS43yvyifp%2FxXXuu6s%2BFvejtaTi4DFwxsxrsAWtNMsd5qmdoeJ7LNtvrjgY4Cq5wJ7kXluBb8nAQHGaRksTUVYxu9Gh6UEsMEECKBbL6jrBxB6uzD9E5GL0iwl9%2BXAkZ77Bhg1bdX9Y%2B%2BgLUkBx4HmG1UdXeFL7K0A%2Bk9wVqDuYdeo8%2FjZBMtfd0LVIgzHpAp5u2NdfNvdLG05jJkx34u4TylEmfXcy4hYqRE2Oblao8yPXDe3ftBuZwxHWn%2BcMDDSMhnSWKcNgJxmx7ipyWND863dqNHOY1K7nk%2FCJ7KXDMOARlZ1Q6orok7IYgXlXHPo0do4NkaPO3nr%2BTEuzMLz9CoAQ8H63PJ01EeWONGkjSlBrO%2F6jvpuxjpCXj1K6y80L9%2FqJdj1K5f3%2FprCcLjyIHx7wZn6XJ%2BVisybYNTr7xl0FnPsC0JQA9R9%2BEcLBhTku%2Fw%2FjA4FaIw1F8k%2FItoALimYyT251RM%2F%2BmE6JtceH47xNC%2BzT75QMB0yYRU8Cho9Aab0BVizQL55rVzshMXjDIVJPn3d22iLIQjoglBsZe%2Fj3fjBAa6FbRuqpcVg9ZaF2ZgaM2Ie%2FqfNYrSqeIy3SxDij%2FvCGYCqEPmIak2RVZlNwNi%2BC339UV7d9UVTYwbc%2FzXLutcoUtfXQubV%2BXdrF9SzJEmhGJ7nXaghiaIVj9HUTFDISqCjwEvYGOigrVqNwTN3y1mrkAkY0rw%2BltU7vdvI996leWMYTf8OK3SAEH%2F28xQKepEYx4jG%2FeF%2BQnpS1gWoFP%2B8GgAqKZkb22TjVmNS36wgnNTgJ%2Bt9%2FGeTgHHgJHx4ztkYKJkouW%2BSNylANSJZaGy6Mc92dWP9ddNAHnvyy530z%2FIF4%2F5bsor3r3xy5JBBg%2FLwtkB3lasLoLBVw2v60TQxBLs%2FLgJSmhSnXG85%2FE81rUbF9Cq%2BFyyqvyV5hi5PFRpMtdshRVAwaCnFFIaVPc3AewKiXhAB1RHBPA%2BqTzxvPNFnxCX4btpB5X%2FE6a%2BJjzyRJUpUIWTO%2B%2FZ3laT%2BikoKZf9bTwYBZTeCLD4Ide8Hc8SQERsSnTNGN7Spth2nRFBpPRizrgKyQxucv4UezHBcPWGxlkWOpWA&i=398", + "20.91MB", + "adaptive", + "720p", + "video/mp4; codecs=\"av01.0.05M.08\"" + ] + }, + "msg":"", + "status":"ok", + "cleantitle":"Icona_Pop_-_I_Love_It_feat_Charli_XCX_OFFICIAL_VIDEO", + "related":"", + "altserver":"DE", + "lexp":"1644367400", + "age":0 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"X-Requested-With", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status":"DYNAMIC", + "cf-ray":"6da70ae129276c63-SIN", + "connection":"keep-alive", + "content-type":"application/json", + "date":"Tue, 08 Feb 2022 18:50:15 GMT", + "nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2gdvnQrpMq9JWy4Pm%2FKAGE4IPYsDQcR9Mf6pMcz4LYqcCW58myMtOyB3x5k%2B%2BZVVH9UdbXNr4ngoTZRBEMwm8%2BUjbSPwUd%2BVSxtX4dFzoFkHInsFA44WvaQFpmayxBZ937dI%2B0%2Fj9A%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.8", + "transfer-encoding":"chunked", + "x-powered-by":"PHP/7.4.27", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_video_download_info/api.py b/toolbench/toolenv/tools/Tools/youtube_video_download_info/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d4c41945db12fbf8c09fa9708ae793a513eaabcb --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_download_info/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_video_info(is_id: str, geo: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Provides the video download links and other relevant information in the JSON format." + id: Youtube Video Id. + geo: Country code in ISO 3166 format of the end user. + + """ + url = f"https://youtube-video-download-info.p.rapidapi.com/dl" + querystring = {'id': is_id, } + if geo: + querystring['geo'] = geo + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-download-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_video_mp3_downloader_2023/api.py b/toolbench/toolenv/tools/Tools/youtube_video_mp3_downloader_2023/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b21188419d67301eb52afb402ecafef84c830db1 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_mp3_downloader_2023/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_mp3_of_youtube_video(url: str='https://www.youtube.com/watch?v=M2ErSQhfrcE', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint allows developers to fetch the details of a YouTube video by providing a valid YouTube video URL. The API extracts relevant metadata from the video including title, thumbnail, channel, and then* gets the Mp3 of the video* and returns the data in a standardized JSON format. This data can be used by developers to display video information in their applications or to enhance search functionality." + + """ + url = f"https://youtube-video-mp3-downloader-2023.p.rapidapi.com/api/fetch-video" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-mp3-downloader-2023.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_video_summarizer.json b/toolbench/toolenv/tools/Tools/youtube_video_summarizer.json new file mode 100644 index 0000000000000000000000000000000000000000..359f8fd6c5188579d74d460360ccfa7039c45c41 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_summarizer.json @@ -0,0 +1,103 @@ +{ + "product_id": "api_857f4f9f-94ad-4545-9175-809dd37f526c", + "tool_description": "A powerful tool for generating concise summaries of YouTube videos, highlighting the most important points for easy note-taking and referencing.", + "home_url": "https://rapidapi.com/jarle-1hCuYC-s2/api/youtube-video-summarizer1/", + "name": "YouTube Video Summarizer", + "title": "YouTube Video Summarizer", + "pricing": "FREEMIUM", + "tool_name": "YouTube Video Summarizer", + "score": { + "avgServiceLevel": 57, + "avgLatency": 9584, + "avgSuccessRate": 38, + "popularityScore": 9.4, + "__typename": "Score" + }, + "host": "youtube-video-summarizer1.p.rapidapi.com", + "api_list": [ + { + "name": "/v1/youtube/summarizeVideoFromCache", + "url": "https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizeVideoFromCache", + "description": "Return the video summary of a given YouTube video that has already been summarized. The summary is provided in markdown format.", + "method": "GET", + "required_parameters": [ + { + "name": "videoURL", + "type": "STRING", + "description": "The URL of the YouTube video to get from the summary cache.", + "default": "https://www.youtube.com/watch?v=ykY69lSpDdo" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizeVideoFromCache\"\nquerystring = {\"videoURL\": \"https://www.youtube.com/watch?v=ykY69lSpDdo\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-summarizer1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizeVideoFromCache\"\nquerystring = {\"videoURL\": \"https://www.youtube.com/watch?v=ykY69lSpDdo\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-summarizer1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "summary": "# Ray Kurzweil: Singularity, Superintelligence, and Immortality | Lex Fridman Podcast #321\n\n## Introduction [00:00](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h00m00s)\nRay Kurzweil is an author, inventor, and futurist who has an optimistic view of our future as a human civilization. In his 2005 book, The Singularity is Near, he predicted that the onset of singularity will happen in 2045. 18 years later, do we still estimate that the singularity will happen on 2045? \n\n## What is the Singularity? [01:21](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h01m21s)\nThe Singularity is where computers really change our view of what's important and change who we are. A key thing is 2029 when computers will pass the Turing test. There is some controversy around the Turing test, but most people do believe that it is valid. \n\n## Stanford\u2019s Alarm [01:54](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h01m54s)\nIn 1999, Ray Kurzweil made the prediction of 2029 for the Turing test in his book The Age of Spiritual Machines. Stanford got very alarmed and held an international conference of AI experts to assess this view. Most people, 80%, believed it would happen, but not within their lifetimes. \n\n## Polls [02:29](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h02m29s)\nA poll of AI experts worldwide was taken in 1999 and again in 2020. The average prediction was 100 years, but in 2020, the prediction had come down to 2042. Just a few weeks ago, the prediction had come down to 2030. Alan Turing formulated the Turing test, but it wasn\u2019t clear how to administer it. \n\n## Implications [04:02](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h04m02s)\nIf somebody passes the Turing test, what are the implications of that? Does that mean they are sentient and conscious or not? It\u2019s not necessarily clear what the implications are. Ray Kurzweil believes that 2029 is when something will pass the Turing test and it will be a valid Turing test, meaning it goes for hours not just a few minutes.\n## Assessing Computers [05:24](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h05m24s)\n- Assessing a computer's ability involves more than an average engineer in order to get a full understanding of the computer's capabilities. \n- To truly assess a computer, it needs to be tested over several hours by a sophisticated judge to evaluate its common sense reasoning and ability to do certain tasks. \n\n## Language Models [06:41](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h06m41s)\n- Large language models can have conversations and appear quite convincing, though they have difficulty with math, reasoning, and multi-chain reasoning. \n- It would take days or weeks to be convinced that a large language model is truly human. \n\n## Turing Test [07:55](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h07m55s)\n- Myron Raminsky believes that consciousness is not logical or scientific, but Ray Kurzweil believes that a machine that passes the Turing Test would be conscious. \n- Ray believes that consciousness is important, but it cannot be proven, just as one cannot prove that a piece of art is beautiful.\n## Does consciousness have any scientific validity? [10:42](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h10m42s)\n- Ray Kurzweil states that the issue of consciousness, in his opinion, is a philosophical one and not a scientific one. \n- Some people believe that anything that makes decisions is conscious, including a light switch. \n- There are different views on what consciousness is, but if a system passes the Turing test, it does not necessarily mean that it is scientifically conscious. \n- Philosophical issues such as ethics come into play in terms of our obligations to conscious machines.\n\n## What happens in 2029? [11:55](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h11m55s)\n- In the year 2029, a major event will happen that will shake our civilization and force us to consider the role of Artificial Intelligence. \n- One person at Google has claimed that the machine is conscious, but it is not a widely accepted opinion yet. \n- As we eliminate various problems of large language models, more people will accept that they are conscious, which will lead us one step closer to the Singularity.\n\n## How will computers amplify our intelligence? [15:05](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h15m05s)\n- Connecting our neocortex to computers in the 2030s will allow us to amplify our intelligence. \n- Smartphones already have amplified our intelligence and made it easier to access information. \n- By connecting our brains to computers, we will be able to increase our intelligence even further.\n## Brain-Computer Interfaces [15:55](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h15m55s)\n- Ray Kurzweil describes how his most significant information tool was a roll of quarters to feed the copier.\n- He suggests that it would be useful if someone was able to listen to conversations and give relevant information.\n- He believes that it will be possible to connect our brains to the cloud in the 2030s and that it will amplify our capabilities.\n- Neuralink, a brain-computer interface developed by Elon Musk, is an attempt at this technology, but it does not yet have the bandwidth.\n- Kurzweil suggests that this technology would be incredibly helpful to those who cannot communicate.\n- He also suggests that we may be able to communicate with each other without spoken language. \n- He also explains that computers are able to share information instantly and that a trillion bytes may be necessary for language models to be effective. \n- He also further explains that one byte, or one parameter, could be used to determine if something is an elephant or not.\n## Parameters of AI [20:43](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h20m43s)\n- Artificial Intelligence (AI) has 100 billion parameters. \n- These parameters allow AI to deal with complex issues and make distinctions. \n- AI is an emulation of human beings, it acts in the same way, and amplifies our brain.\n\n## Merging of Human and AI Brains [21:46](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h21m46s)\n- Ray Kurzweil believes that there will be an increasing amount of merging between the human brain and AI brain in the 30s. \n- AI brain is an emulation of human beings to amplify our abilities. \n- This will allow us to consume huge amounts of information quickly, like looking up thousands of Wikipedia articles in one take.\n\n## Simulated Biology [22:45](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h22m45s)\n- An example of simulated biology is the Moderna vaccine, which was created by simulating billions of different mRNA sequences. \n- This took two days to create, and 10 months to test. \n- AI will eventually be used to simulate how the body will respond to medications, supplements, drugs, and other things, reducing the amount of time needed to create and test them.\n\n## Alpha Fold [25:20](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h25m20s)\n- Alpha Fold is a solution to protein folding, which is a process of modeling and simulating proteins. \n- This process is used to better understand the human genome and how proteins interact within the human body.\n## Primitive Building Block of Life [25:31](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h25m31s)\n- Proteins have a 3D shape that can be predicted by a neural net.\n- Neural nets can be used to solve chess and AlphaFoam, which are difficult for humans to solve.\n\n## Singularity and the 2030s [26:37](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h26m37s)\n- By the 2030s, humans will be able to amplify their brain with computers directly.\n- Computing power has been exponentially growing since 1939, with no signs of stopping.\n\n## Moore's Law [29:09](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h29m09s)\n- Moore's law is not correct because it was happening before Intel was created.\n- It is an exponential graph of computing power with an x-axis of year from 1935 to 2025, and a y-axis of cost per second constant dollar.\n- Computing power has continued with no signs of stopping, and software gains will multiply the computer gains to increase speed.\n- Every six months, computing power expands by two.\n## Increasing computational power [30:23](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h30m23s)\n- Computational power of neural networks is increasing at a greater investment, doubling every six months.\n- By 2045, this will lead to a \"singularity\" where intelligence is multiplied by many millions-fold, beyond our current level of understanding. \n\n## Noticing the singularity [31:50](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h31m50s)\n- It's possible that the singularity won't be noticed, as cognitive capabilities increase quickly, and people are distracted by other sources of entertainment. \n- We will need people to be aware of the changes and be able to introspect them. \n\n## Digital world, metaverse, and VR [32:54](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h32m54s)\n- Ray Kurzweil predicts something akin to the metaverse, where people will increasingly live online, even if our brains are online. \n- This could lead to meaningful interactions in the virtual world, such as falling in love and making friends. \n\n## Touch sense technology [34:54](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h34m54s)\n- Ray Kurzweil has five patents on technology that allows people to have a sense of touch even when they're separated. \n- This technology can be used to communicate in very subtle ways.\n## Evolution of Information Processing [35:11](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h35m11s)\n- Ray Kurzweil talks about the evolution of information processing in the universe, starting with physics and chemistry and ending with love and creativity. \n- He explains that biology created DNA, which then created brains and, eventually, thumbs and technology. \n- Technology has a memory, which is competing with the scale and scope of human beings, and eventually, humans and machines will merge.\n\n## Merging with AI [39:35](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h39m35s)\n- Ray Kurzweil puts a probability on whether it's more likely that humans merge with AI or AI replaces them. \n- He explains that a lot of people think that machines come along and compete with humans and that's the end of it, but he believes that machines will increase our abilities. \n- He compares the history of work 100 years ago to demonstrate how technology has increased our abilities.\n\n## Automation and Job Loss [40:23](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h40m23s)\n- Automation has been a concern since the 20th century due to fears that it would cause massive unemployment. \n- However, Ray Kurzweil's upcoming book, Singularity's Nearer, shows that even as a percentage of the population, the amount of people that are working has gone up due to machines enhancing our own capabilities as opposed to competing with us. \n- This allows us to consider more parameters when making decisions and become far smarter than we are now. \n\n## Wealth Disparity [43:12](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h43m12s)\n- There is concern that the wealthy will be the first to access new technologies, and this will create a wealth disparity as the rich get richer exponentially faster. \n- However, Kurzweil argues that this has been the case with many other technologies, such as cell phones, and that as technology becomes more accessible, even those with limited resources will have access to it. \n- He believes this will also be true with AI, and that eventually, it will become inexpensive enough for anyone to use. \n## Technology Becoming Cheaper [45:08](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h45m08s)\n- Ray Kurzweil believes that any advanced technology will eventually become cheap and affordable.\n- He would not be the first person to put something in his brain to connect to computers, as he believes it will have limitations, but once perfected it will be affordable.\n\n## Life Getting Better [45:43](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h45m43s)\n- According to a poll, only 1% of people got the right optimistic estimate of how poverty has decreased by 50%.\n- Literacy rates, average years of education and life expectancy have all increased significantly over the past few centuries.\n\n## Spread of Democracy [47:46](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h47m46s)\n- The spread of democracy has gone up, although there have been some cases of democracy going backwards.\n- Superintelligence systems can help with democracy by giving a voice to the populace and having their ideas, beliefs and views represented.\n\n## AI Systems and Misinformation [48:41](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h48m41s)\n- AI systems can spread misinformation on social networks, with dramatic division increasing engagement.\n- Ray Kurzweil has some concerns about this, and there is a chapter in his book about the perils of advanced AI.\n- The most concerning issue is the threat of nuclear power that evolved when he was a child.\n## Biological Dangers [50:24](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h50m24s)\n- Viruses have the potential to be very dangerous and hard to stop, as they can spread without people noticing and have delayed symptoms. \n- Humans exist because viruses that can spread easily and kill don't exist, as otherwise we wouldn't be here.\n- Other biological dangers include nanotechnology, which can be used to communicate with the neocortex and establish a communication channel.\n\n## Nanobots [51:58](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h51m58s)\n- Nanobots are exciting, as they are a way to communicate with the neocortex and connect our brains to AI. \n- They don't need a lot of intelligence, just enough to establish a communication channel. \n- However, nanobots present a great \"goo\" challenge, as it could turn everything into itself and destroy all biological life. \n\n## Nuclear Weapons [53:53](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h53m53s)\n- Ray is optimistic that nuclear warfare won't occur in the 21st century, despite tensions and the seeming forgetting of the destructiveness of nuclear weapons. \n- He believes that we have learned the lessons of history and will avoid a nuclear war. \n- However, he acknowledges that it is a possibility people should be aware of.\n## Artificial Intelligence as a Potential Solution [55:37](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h55m37s)\n- Kurzweil believes that artificial intelligence (AI) will help humans make it out of the current crisis, rather than destroy us. \n- AI has the potential to help humanity by uploading our minds into a computer, transcending the body and allowing us to access more knowledge than ever before. \n\n## Kurzweil's Personal AI Experience [56:17](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h56m17s)\n- Kurzweil has already created a technology that can read and answer questions from 200,000 books. \n- He even created his own book of his father's work, allowing him to have conversations with his father through this AI technology. \n- This AI was able to answer questions about music, composition, and the meaning of life, giving answers that Kurzweil found more interesting than talking to his father in person. \n\n## Life Lessons from Kurzweil's Father [58:49](https://www.youtube.com/watch?v=ykY69lSpDdo&t=00h58m49s)\n- Kurzweil's father was devoted to music and it put him in a different world. \n- He was shy when interacting with people, but when he created music he was a different person. \n- Kurzweil's grandmother was able to create a school in 1868 that provided higher education for girls, which was a revolutionary concept at the time.\n## Early Interest in Technology [01:60:50](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h60m50s)\n- Ray was not initially interested in the story of school his mother was involved in, but was captivated by the manual typewriter and its ability to turn a blank piece of paper into something that looked like it came from a book.\n- Ray was interested in magic, and understood that the magic disappears when you know how it works. However, with technology, the magic remained even if he knew how it worked.\n- Ray began to collect pieces of mechanical objects such as broken radios and bicycles, and was convinced that if he could figure out how to put them together, he could solve any problem.\n\n## Virtual Reality Theater [01:62:07](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h62m07s)\n- Ray created a virtual reality theater in his third grade class, which was all done with mechanical technology. It was a big hit among the students.\n- Ray went on to do things in junior high and high school science fairs, eventually winning the Westinghouse Science Talent Search.\n\n## Thinking Creatively [01:63:39](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h63m39s)\n- Ray sometimes thinks through ideas in his dreams, but the key to thinking creatively is to put yourself in a position where the thing you're trying to create already exists and explain how it works.\n- Ray suggests using the present tense as if the thing already exists, to give himself and others working on the project the confidence to do all the steps necessary to make it actual.\n\n## Timing [01:65:31](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h65m31s)\n- Timing is very important, and this is why Ray got into futurism. He believes that it's important to be at the right place at the right time, but recognizes that his genius also played a role in his success.\n## Timing [01:65:48](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h65m48s)\n- Ray Kurzweil wasn't inherently a futurist but his goal was to figure out when things are feasible through the exponential growth of computing power. \n- He would wait to develop certain products until the right time came, such as his OCR in the 1970s and speech recognition in the 1980s.\n- He developed a muscle of predicting the future, and reflect upon dramatic changes in how humans will live.\n\n## Courage to question assumptions [01:68:10](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h68m10s)\n- Ray Kurzweil emphasizes the importance of having the courage to question assumptions that limit human imagination to solve problems.\n- This is symbolized by taking examples such as Uber, which required changes in the way people work and was not thought to be feasible before.\n- Practical advice he gives in his book is to learn to program, record your life and become a physicist. At the core of this is the belief that one can change the world, and to not let anyone tell you otherwise.\n\n## Uploading your mind [01:70:22](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h70m22s)\n- Ray Kurzweil believes that in the future, we may have avatars that mimic our behavior and appearance, even if we are no longer with us. \n- To do this, we will need some information about them, such as his father who did not have a word processor and wrote very little.\n- He speculates that we may have a future with something called an afterlife, but needs more information to make this possible.\n\n## Memory and Replicants [01:70:54](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h70m54s)\n- When thinking about replicants, our memories of them are not perfect as our memories of loved ones are not perfect. \n- We form connections with loved ones through experiences, not through a strict definition of truth. \n\n## Feasibility and Ethical Challenges of Replicants [01:72:08](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h72m08s)\n- Ray Kurzweil believes that a world of replicants is feasible, though there are ethical challenges around them. \n- If a replicant were to become more successful than the original, there could be feelings of jealousy and feelings of being outdated. \n- However, Ray Kurzweil believes that he would be proud of the replicant as it is based on him. \n\n## Rights of Replicants [01:73:59](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h73m59s)\n- Ray Kurzweil believes that replicants should have the same rights as humans, meaning they cannot be created without their rights. \n- If a replicant is created for a person who is already dead, they need to have the same obligations and agreements that the original person had. \n- Laws will need to be put in place to ensure replicants have the same rights as humans. \n\n## Creation of Multiple Replicants [01:74:47](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h74m47s)\n- If someone is creating multiple replicants, the original person needs to have rights for at least one of them, and the rest can share the rights. \n- It is difficult for humans to conceive when it comes to replicants and their rights.\n## Replication of Loved Ones [01:75:26](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h75m26s)\n- Ray's wife would like to get back her father and does not care about rights to what.\n- Ultimately, it is the loved ones who will determine if replication is accepted or not.\n- Even if it isn't perfect, people who miss someone would love to get something back.\n- As more data is collected, it will be easier to reconstruct a person and allow them to live on.\n\n## AI and Ethical Rules [01:76:20](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h76m20s)\n- AI will be motivated by people who miss someone and want them to live on in some form.\n- There are ethical rules that need to be contended with when it comes to AI.\n- Anything that is data will always be collected, allowing people to live on in the form of their last tweet or language models.\n\n## Multi-Planetary Species [01:78:16](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h78m16s)\n- Ray is not excited about attempts to go to other planetary objects as they are not efficient enough.\n- It is hopeful that when a person passes away, they can be recreated with large language models and continue to communicate.\n- The sixth epic, \"Universe Wakes Up\", is where superintelligence is spread throughout the universe in the form of nanobots instead of humans.\n\n## Alien Civilizations [01:79:29](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h79m29s)\n- Ray's hunch is that there are no intelligent alien civilizations out there, though most people say yes.\n- His analysis of the Drake equation gives either thousands of advanced civilizations in each galaxy or only one.\n- Most analyses are forgetting the exponential growth of computation, which has gone from using ponies to send messages to the advanced civilization we have today.\n## The Speed of Information Transfer [01:80:38](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h80m38s)\n- Ray Kurzweil explains that if we accept his explanation of the speed of information transfer, a few decades could lead to a \"fantastic amount of civilization\" compared to a pony.\n- He continues to explain that other civilizations could be ahead of us or behind us by millions of years, which \"isn't that much\" in comparison to the world's age of 14 billion years.\n\n## The Simulation Hypothesis [01:82:19](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h82m19s)\n- Ray Kurzweil explains that the Simulation Hypothesis states that the universe might be a construction of an alien species, and that we may be living in a video game.\n- He believes the hypothesis is compelling, but that it doesn't necessarily mean that the universe is an experiment by some high school kid in another world.\n\n## What is God? [01:83:26](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h83m26s)\n- Ray Kurzweil believes that God is the fact that we have something \"where love where you can be devoted to someone else and really feel that love\".\n- He believes the old testament was created by several rabbinates and that two of them talk about God as a symbol of love, peace, harmony, etc.\n\n## Cellular Automata [01:85:18](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h85m18s)\n- Ray Kurzweil believes that the emergence of complicated objects in Cellular Automata is beautiful and powerful, and that God is in there too.\n- He goes on to explain that the emergence of love in the seemingly privileged earth of creating a replicant is a necessary part of this process.\n## Emergence from simple rules [01:85:57](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h85m57s)\n- Ray Kurzweil believes that simple rules can create beautiful objects, that is the thing that made us. \n- He believes that by the end of this decade, we will be able to achieve longevity escape velocity, advancing human life expectancy more than a year every year. \n\n## Practical steps to living forever [01:87:49](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h87m49s)\n- Kurzweil suggests practical steps such as exercising and maintaining general health in order to extend life expectancy. \n- Due to his own health issues, Kurzweil spends a lot of time tinkering with his own body to keep it going. \n- He believes that achieving longevity escape velocity will become routine in the near future, and that it should not be a serious problem for people in their 20s and 30s. \n\n## Mortality [01:90:23](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h90m23s)\n- Ray Kurzweil acknowledges the difficulty of the question, but believes that there is a case to be made against living forever. \n- He believes that mortality makes life intensely beautiful, and most people find the death of anyone they care about or love extremely depressing. \n## Life and Death [01:91:13](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h91m13s)\n- People have accepted that life is short and death is something to not celebrate.\n- Ray Kurzweil believes that it is possible to go beyond normal lifetimes and that even if someone lives for 200 years old, we will still love them in return. \n- There is no limit to this trend, and it could provide a greater opportunity for everyone.\n\n## Legacy [01:92:17](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h92m17s)\n- Ray Kurzweil hopes to be around in some version of himself, and believes that the same person is inside him, even though the memories are distorted. \n- He hopes to be remembered by the new realities he creates, and by the optimism that permeates his work.\n\n## Meaning of Life [01:94:13](https://www.youtube.com/watch?v=ykY69lSpDdo&t=01h94m13s)\n- Ray Kurzweil's father said that the meaning of life is love, and he agrees with that. \n- He believes that if there was no love and people didn't care about anyone else, there would be no point in existing. Love is the meaning of life. \n- Finally, he quotes Isaac Asimov, who said that change is the dominant factor in society and that people must take on a science-fictional way of thinking.", + "videoTitle": "Ray Kurzweil: Singularity, Superintelligence, and Immortality | Lex Fridman Podcast #321", + "videoAuthor": "Lex Fridman", + "videoId": "ykY69lSpDdo" + }, + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "summary": { + "type": "string" + }, + "videoTitle": { + "type": "string" + }, + "videoAuthor": { + "type": "string" + }, + "videoId": { + "type": "string" + } + } + } + }, + { + "name": "/v1/youtube/summarizeVideoWithToken", + "url": "https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizeVideoWithToken", + "description": "Create a video summary of a given YouTube video. The summary is provided in markdown format.", + "method": "GET", + "required_parameters": [ + { + "name": "videoURL", + "type": "STRING", + "description": "The URL of the YouTube video to summarize.", + "default": "https://www.youtube.com/watch?v=Yzx7ihtCGBs" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizeVideoWithToken\"\nquerystring = {\"videoURL\": \"https://www.youtube.com/watch?v=Yzx7ihtCGBs\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-summarizer1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizeVideoWithToken\"\nquerystring = {\"videoURL\": \"https://www.youtube.com/watch?v=Yzx7ihtCGBs\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-summarizer1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "OpenAI API key should be passed in the header 'openai-api-key'." + }, + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "summary": { + "type": "string", + "description": "The resulting summary of the given YouTube video." + }, + "videoURL": { + "type": "string", + "description": "The URL of the given YouTube video." + }, + "videoTitle": { + "type": "string", + "description": "The title of the given YouTube video." + }, + "videoAuthor": { + "type": "string", + "description": "The channel where the given YouTube video was posted." + } + } + } + } + ], + "standardized_name": "youtube_video_summarizer" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_video_summarizer/api.py b/toolbench/toolenv/tools/Tools/youtube_video_summarizer/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0f824ca33e373271da5076a939813c6e1dce3378 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_summarizer/api.py @@ -0,0 +1,52 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_youtube_summarizevideofromcache(videourl: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return the video summary of a given YouTube video that has already been summarized. The summary is provided in markdown format." + videourl: The URL of the YouTube video to get from the summary cache. + + """ + url = f"https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizevideofromcache" + querystring = {'videoURL': videourl, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-summarizer1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def v1_youtube_summarizevideowithtoken(videourl: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Create a video summary of a given YouTube video. The summary is provided in markdown format." + videourl: The URL of the YouTube video to summarize. + + """ + url = f"https://youtube-video-summarizer1.p.rapidapi.com/v1/youtube/summarizevideowithtoken" + querystring = {'videoURL': videourl, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-summarizer1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_video_tags.json b/toolbench/toolenv/tools/Tools/youtube_video_tags.json new file mode 100644 index 0000000000000000000000000000000000000000..94c73bb8df08f931062a17a635f8fadc3ff04927 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_tags.json @@ -0,0 +1,37 @@ +{ + "tool_name":"YouTube Video Tags", + "tool_description":"Get the tags used for YouTube video SEO without any youtube data api key.", + "title":"YouTube Video Tags", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":86, + "avgLatency":26492, + "avgSuccessRate":86, + "popularityScore":8.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ashutosh05/api/youtube-video-tags1/", + "host":"youtube-video-tags1.p.rapidapi.com", + "api_list":[ + { + "name":"Get All The Video Tags", + "url":"https://youtube-video-tags1.p.rapidapi.com/Getvideotags", + "description":"This endpoint will return all the tags used for the SEO of a video, with the video title.", + "method":"GET", + "required_parameters":[ + { + "name":"URL", + "type":"STRING", + "description":"", + "default":"https://www.youtube.com/watch?v=OHOJFv4iaMc" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-video-tags1.p.rapidapi.com/Getvideotags\"\nquerystring = {\"URL\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-tags1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_video_tags/api.py b/toolbench/toolenv/tools/Tools/youtube_video_tags/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5e4847f30cadb0003a399b5655a866ba202c7726 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_tags/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_all_the_video_tags(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return all the tags used for the SEO of a video, with the video title." + + """ + url = f"https://youtube-video-tags1.p.rapidapi.com/getvideotags" + querystring = {'URL': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-tags1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/youtube_video_to_mp3.json b/toolbench/toolenv/tools/Tools/youtube_video_to_mp3.json new file mode 100644 index 0000000000000000000000000000000000000000..6f57776eb6f70f06d2dbee1c2f4a7ad5f6e0f2e2 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_to_mp3.json @@ -0,0 +1,48 @@ +{ + "tool_name":"YouTube Video to MP3", + "tool_description":"Our YouTube to MP3 conversion API is the perfect solution for developers who need to quickly and easily convert YouTube videos into high-quality MP3 files. ", + "title":"YouTube Video to MP3", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":93, + "avgLatency":4103, + "avgSuccessRate":93, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/belchiorarkad-FqvHs2EDOtP/api/youtube-video-to-mp31/", + "host":"youtube-video-to-mp31.p.rapidapi.com", + "api_list":[ + { + "name":"Get MP3", + "url":"https://youtube-video-to-mp31.p.rapidapi.com/download", + "description":"This is the main endpoint to convert youtube videos to high quality MP3.", + "method":"GET", + "required_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.youtube.com/watch?v=G7KNmW9a75Y" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://youtube-video-to-mp31.p.rapidapi.com/download\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"youtube-video-to-mp31.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":"\u001aEߣ�B��\u0001B��\u0001B�\u0004B�\bB��webmB��\u0004B��\u0002\u0018S�g\u0001\u0000\u0000\u0000\u00001�\u0014\u0011M�t�M��S��\u0015I�fS��\u0000\u0000\u0000\u0000\u0000\u0000\u0000DM��S��\u0016T�kS��\u0000\u0000\u0000\u0000\u0000\u0000\u0000M��S��\u001cS�kS��\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0015I�f�*ױ�\u000fB@D��HD�@M��google/video-fileWA�google/video-file\u0016T�k֮�ׁ\u0001sŇ+�\u0013�s[���\u0002��\u0000\"���eng��A_OPUSc��OpusHead\u0001\u00028\u0001��\u0000\u0000\u0000\u0000\u0000V��c.�V��\u0004Ĵ\u0000፵�G;�\u0000��\u0002bd�\u0010\u001cS�kA\\����\u0000����\u0001�\u0002<����'\u0011����\u0001�\u0002>{����N!����\u0001�\u0004�\u001a����u1����\u0001�\u0007\u000f\u0002�����A����\u0001�\t�{�����Q����\u0001�\f7k�����a����\u0001�\u000e°����\u0001\u0011q����\u0001�\u00119c����\u00018�����\u0001�\u0013�,����\u0001_�����\u0001�\u0016\u000f经��\u0001������\u0001�\u0018�Q����\u0001������\u0001�\u001bR�����\u0001������\u0001�\u001d������\u0001�ѷ���\u0001� CH����\u0002\"᷈��\u0001�\"�P����\u0002I���\u0001�%7)����\u0002q\u0001����\u0001�'������\u0002�\u0011����\u0001�*1\u000b����\u0002�!����\u0001�,�\u0012����\u0002�1����\u0001�/:�����\u0003\rA����\u0001�1�\u0017\u001fC�u\"<8�\u0000���\u0000\u0000�������\u0000\u0015�������\u0000)�������\u0000=�������\u0000Q�������\u0000e�������\u0000y�������\u0000��������\u0000��������\u0000��������\u0000ɀ������\u0000݀������\u0000�������\u0001\u0005�������\u0001\u0019�������\u0001-�������\u0001A�������\u0001U�������\u0001i�������\u0001}�������\u0001��������\u0001��������\u0001��������\u0001̀������\u0001�������\u0001��������\u0002\t�����AG�\u0002\u001d��}Ǽsy��\r���Y�$�q6}�Q�\u0003��Q�@�\u0002��e��ܣ��a.7�M�17\u0016�\r$\u0005\"�w�5:Y��\u001d\u0002E0&KH��0߁\u00141\b\"�6m�s•\u001eD�i�x�Fd\u0001\u0015�\n\u0007�!;�6�-f�(M��V�ʇ�\u0006�~�L;\u001c���\u0013kW ���\"zd\u001e}\u0014�oq��X05\u0018c@\u001f�G�x�\u001e3�l�Hg�ە��.\rUg'��P�Gr6���_lx+k<��\u000bu�*�R`����#�\b�]�$�VWGN��e�8\u0019�'V��\u000fdz��\u001f\u0013�5��J��E��\u0014ߨH)gT����as����UWdR0==�L��bƿ��k�\u0013\f��J�\u000e��W�w�Z\u001a��q�\u000e�h�i\u0000\u0006xx��h�TP���\\\u000b�A9�\u00021����v�g\u000e_\u0004_nJ\u000b\u0002Ig��\u000b�\u001c��\u001d�v�\u001czc�7\u00063��@\u0001�N��c��\f}Վ��\u001fP��=Oqϊ�Q\u00178F�\u0010�$w+��4fL\u0004��/�q�]��|\u0016�\"�a\r�T��\u000bv�+<��Ka_�ܼ;�IA\u000b7��i�b�U\u0012}��Mf��0��~��������^L[\u0000X�1���\u0005�+Ly��=�?7���t�\u001cK�/����Z�g�@�A��\u0002E��pp��}m���\u0000\t̨AX���lW�\u001f�L�-\u0003����}y�\u000f� �\"�R�Y1j���ģ\"��:q�rg�@'p�= �(/b\u001fRɡ$n�L\u0004��Bc��B���\u001aێ������\u0010�l̒�\u0006�?��I��n��u}�tѳ9}N\u0015��.��+\u001dL珩\u001a|�џs\t�;Pľ�R��\b�\u000e'q\u0012lEa(c��\u000eP��\u0003�����EwJ�����\u0002|���q-����%\u001e�\nyg��+�8|D�M�\u0011h\r�Bn\u001d�G\u001b�7%��N��X�c��\u0012�G�){S\u0013\u0014\u001c�1���f�|�/���N\u001d�I�El��oܠ)�\u000b�e@���R\u0000�\t��6���Q5C���P\u000bI\u001f�w8���+Bͨ�~\fVk\u0007lȋ۪7%<�ܪ,�4^\u0004\t���=��h%E-\u0014�r�\u0010���r��A2�\u0002Y��S��v�%ʞ\u0018�ͫ=p��*��^�sE��_���6�G��-��I�\rU����r\r�����:���������Q����:�Fr�\u001c/F\b\u001c3@�S���`�\u0001+(Z�H�&�4�k6�\u0012B��8�\b�\u0011\b��̘Zď��\u0002h��1���g���B�}�e\u0006\n�������%�����[�����f�[\u0002$Q\u0005���7a:��?�l�\u001c����.��\u0011�_�0>�\r\u000e\u0006Tc��a\u0014\n�5d��F\u00045Vns«\b~�@Aݚ5$��\u0006Ѫ�| �f\u0011H\"0F�8�)y\u0012Ų�:\u0004�\f�\b��cuL\u001f��E��^m}�?�\u0005���\u000f;%G��D�N�l�����A1�\u0002m��R�5�3�\u0017��\u0004�f�mе\u001b���ؽ�o*\u001d��٦�h��R\u000f����&�%'C��C�\u0010rM�CK#\u001f!��^�\u001c\b�\u0018hRĭX����j8�\t1��\u0019�H��\u0017��K�X�\u0002�\u001d�~��*E4T���]}z�\u0004�eɈU�����B�2���d�I�3�!�g��\u0010�Ȫ�ϛ\"�s��d��2�\u0011ͨ��ۂi�����`9j����oU\t\u001b9M��N\u001cv\u0014��Ћ��\u0016O�����4\u0007ؕY�[t��N�W2��2�\u0016H\u000e�\u0007�#/�\u0018�\u0015�[tbR��\u0017��C��\u0018'\n\u0011�EM�-���dvO�P@�;���q~��g�3\u0004��]�A���\u0001�\u0004\u0014�\u0015�N�\u0004�B1�\u0002���yW��\r\n�\u0018��h�$�/�T|�W39)\u001e�\u0005.�9c��$l���\rʘy_�H\u0002}[�[�\u0002C�\u0013\u0004���\u0003ȦUϤ��\"�����c�&3�\u0015\u0010�kw�Z���:5-����\u001d��AD\r\u001c/wo�����\u000e�FPS����\u0001����@����'�ֵ���\r!�{Y?��\t��\u00136���;{\\ y3AgFy���Q-p�h�nۖ\r��Q�J!��\u0000�g̥7��\u001d������\u0011�=��\u0019 ����\u000f�\u0011�x�V\u0003��\u0019�\u0012!�́�S����\\g�$,�v\u0015En\"���Z�\u0002��\u0000\u0000\u0007\tQ�\u001e\u0012'?R�\u0007��\bP��f2\r�\u0018��?\u001c�!RF�r;`�\u0000M�Y,ؒV2��gDq��l�(��gMXl��Nch���\\�\u001a�SB�������o�.�\u0017t�ZH��D\u0014�\u0007�mOx��KXΦ�I\u0006�A�\u0004�n��@=D�8*� Y���Cee�T(ێ-\u0018��H�-�f/�ұ\u0012�\u001fRԓGWO�}�.�lY��'�\u001b��E�e�{Lh�{^�A��\u0002�s�fu\u001d�/�rS�}�M�\nM�.�I�6�gI-\u00048щ�Q\u0013�pP�\u0010\u0002)Ej}گ\u0016��\u00040st�J��\f�Ɉf�J\u0007��ۡ;��!�;�\u0004`\b������^�n�o�4�E�,���A5�\u0002�����H#=x�DF�=�Sd���$z��?��_9��vj�>�G�T��8D%��.�d�\u001b��c\u001b�G�\u0011,�\r�\u000f9�`���I�\rM���^\u000e�ڪQ�Ho�����݉\u0006��Ӑ����hP��t��6!i\b�)0�\u0015����a\u0006\nS\u000b�I�=p!�dR�\u001fg� �\u0018���@\u001e*\u0007}�y�!4OYU�tT�@\u000b��S\u001c�h,֊\u0007o�\u0017���\u001ej\u0018�\nI(�\r��\u00104�#Z�؀Q��C����q��'`��J�\u00014R��0�����MJ\u000b�k\u001c2�\u0003Ց��!�2n\u0013\r�\u0004_9\u0015�q9(��m�aj���Ai7�\u001bv-\u001e#\u0019�\u001a�\u000eɩ}�~T��l�Q��\t9jH詆\n`#o@W��A/�\u0002���B1f�L4��8�.�3X\u0002xX�d�i>���\u001f�\u0003\\\u0005\u0018\u0011��@~p�5:ڙ�+��մ�\u0000�\u001b~��6\f���Pmd�#Kb#P\u0007V�c��$i�\u0016�.\u0001y��.;�J.\u0011��8�_��d�\u0002�;�oz8O�O�`Aq_��\u0019�\u0017w\u001d��%�Q\u0000��\u0001\u0010�.�yod�\u0004�z���i�����T�PG���V��\u000eE�v8\u0014XC�m\u0005��\u001cX��\n70#lsV��/�+����4*\u001a�J�k�B|1���\u001c�@���=L�O��2\u0015,��nw���&#:�l����TPX\u00013�\u001e�\u001e�T�d�`�/A�M|C��\u001f\u0018�f��������.S�GšD�u�铹�$�E��u\u001f��y:܋�\u000e��\u0019��+u��;��H�����\u001e1\u0016A�3XQ�r\u001f�\u0017����)��U�i��0\u000eS\u001e�~\u001bO�\u0005�'_��(Y-���m�/��/\u0001k\u0003�g�0����K��u`\u0004�5�\u001f2���xYz�ixw-\u0015���\u0013���<�GB��f\u0004�1kp��G\u0017<�_'}k�+w\u0019\u0015�b��j��9Q�ќu\u001c��|\b���Fmw�Y�-�c�~\b|�\u0007\u0015�'Vh|���gBf\u0005�\u0018�Bن����ӹ4�Q'�T\u001fpsD��E󣹄�\u001fG��|�.\u0013!�3��Y%n�C�4��JN�\n��3��ʿX�\"T$��qm��I=~\\4\u0010)f�O�:��r�f+�Z~\u0017�E\t�`�\u0002!-\u001d=y\u0018�-UO���4��\u0006Z\u001ce\u0003�;p��,n\u00106�޵��Zv�\u0019\u0016D\u001b�B\u0012�\u0002р�p\u0006u{��v\u0019\u0003X�u�w\u000fft�/\u0005ܮ�`�$vt�(����;�'u���YZ����r\u0012D4��\u000f��R;��Zڧ�q%�ѐ��}\f)��7f@\u0001j\u0004t�x�J:\u000f�\\�տ�@�R]�\u000f�7\\)=NL�\t�P\u001a�-��mZ�\u0011�\u000e�p�{���jj^,m\rΒs�\u0000M}X\u0010f!�\u001eo�M�n�\"#�\u0016�,�oL\u0004e �,�b\u0017\n�\n�%�,�\\j�\u001e0��\u0005\u0002�9^�\u000bBL�w2?�\u000e�_��B�c\u0011�\u0016��\ros�ހe�,\fo�n�LC��ۻ�1]K�\u000e̠A4�K?-\"t�\u0012��R�l\u0016�>��r�����Z5*i����\b'����ED#S+�����!f\u0018\u0012�\u0007�!�-Ƿ�ز����:�O\u001b̨t6?�;�\u0019r���\t��O[�`ֵn?h�l�4�z\u0006�t�&@n߅P\u001eR�������� \t\u001d��.��\u0006\r����v��h�cep�\u001d\u0001�JM��c�74J�1?�\u001f#|��f����y�sw��e�\u0019�:�t;�0!�%<�>ǎ]��Uj��S�$��<��B�:S���\u000f�\u0014��( =\u001c�D��\u001dӾK����0��ZΠ�P�\u0015\u0001������Z�A0�\u0002��A�a�X�2?7��v.,�\t\u001b�큍\n�%��\u0012~\\��t�_`iQ�V\u0015���4�6�ĩ\u0016?ĭ�ƭ�U.�5룞\t�\u0012���\u0002}e��VR�f?\u0007\\\u0015��WО�GeJ\u0007��D�\u0003�\r�m�Q�b5��=@���\\-8��\u0002��ҌjZ��Z�됯\n\u0018��Nq\u0014[,b4�$)*cW�ؽ�`��a\u001cf�l!��{�\u0010a\u0012�\u0003NE�Y��/m��bgR_����0�F�%A4���W�aa�İk$5\u000bۆ��\r�6\u0007\u000b׽�\u0019�!�+�G�.�}fUb#8��7H�mn��\u0010bg�c>�'�\u0014�4�\u0016I&0\"�`��a`�i��)�'o\n����\u0005���^���Z�A0�\u0002�����!�%�Rq�������Q�&\u00073]����8e�T\u00145�{<^�\\\rV�\u001d�L�m�k#+kQ����h\u0013#J=��*�afq�hD\u00168͆wfl�o��\u0011����~��@����M��ogzMj��\u0014�˳3X\u000e~�\u000buV� �Y��qn��fN;DEv�k�� H�锸�ɧ!\u001d\ty\u0003e��u��\u0006թ\u0001@�\u000ftםt��ar�u��#�8�[\u0002�^V�h�[��^,!�����\"\n>�\u001c/��j�\u0017��k�0�vw��\u0015C�9q�-;@\u0018���k\blI���U2��}\u0006Ơ+�\u00177>�\u0019+��8�P�Vm��b��nY��\u0010�\u000b�k3ԧ�;�|�\u000b�E���V��A-�\u0003\r��\u0015��)�Ǧ�%5�\u0016S�y(���g��}\u001a�آB�Q�/V�m�K4\u0010�.�;*�\u0001�U��\u0000G�# ��2�ҡF� ^\u0002�y\u0007\"rb3c\u001b;4j�\u0019S\u0014t�l✙\u0004��\u0001}\u0007�\u0006�a�I\n\u0010�۵~���$��\n�ղ�\u001d�v�h�ɓ`O'JZ�Y�H�$��i�|��\u001d\u0012��#T��`����Y�\t*�d0A\u0006�>�V~���\\��U(�i��}�G&�� �SK�ز�\u0018qaɭ���r�)�m#{g����&��r_>�(��|&�/k2iAP$\f}x��l�&�:�gpw�墁�3\u0007�n�A,�\u0003I��R�:�?�=T�+}5��\u0017��n�\r���\u0006%f,M�Uq���j�!�\tb�H�p\u000bZP\u0010�\r\u0003N{'+��vdS��\u001e�w;�|�S����3;��\u0011����ن\u0004\u001bӋ2�ﷀ�(��\u0018�_\u0019�Ӵl\u000b�k U\\,�C�kf\u001c\u0013Y=��]L�6���\u001b\"�l�Mi\\/%���V�񎿣�uv\u0019\u0003�\nvǛm�B�\t��X�V����� �%\r�ڠX`(|+\u00012ѦE��y5\u000fM�^\u0010��e\u001a��\u0016�d��~�'�Q��\\\u001e2�uk>Z�搫\u0000Z�+��?!$��E�6��\u0019\n]��\b҈\u000b9$7\u001a�c��{\u0001t��509���q>4�,RũXi�\t鏣A)�\u0003]��\u00018�@L�h���\u0011����� >)C�9�+-W�KQ��t,\b#\"��\f����\u001a�D\u0016B\u000b`�I!�\u001fj��y��\t��nK���(a� m*X���ί�J��mA�}��q�w1�^Ռ\u0013��e�Ȝ<��\u00127�\u0007Xyb�QL�KJ�+�{�X�\u000bk���^����CN������6m� �����n�r�M��cr3m\t���'I�s\u0003yh\u001ek��e\u0015�\u0010_��F�x�r@\u0001ó(?\b���\u000e�9�\u0001'��\u001e2A�\u0007�\n��\u0001E\u0012%4N+\u001f�}m\tSw\u001b�xrV%����E����=��ٕF��O���K���܌\"N�9\u0016Ly�Z+��\u001b�A)�\u0003q��\u0001@��rORi�����2����\u0011�\u0002׃����ٮ\u0017�0$\fd���\u001c�\u0002\n�9��\u001d���FW�QS\u0007x���\f\u001e��7��Q\rOGp�Ra���\u001b|�Z�ۮ2i��B�I�e�]����s�[o�\u000f�����y)��g���\u001c\\�\u0015�\n��\u0014�|�M^5?\u0017=��W��֫�DZ�|$�\u000eh\u0019 \u0005���D���P�ߨb\"�C��׊�+�Ë�1`=a!�l��\u0005\u0015%�ۏ8r`=Å<���^|5�\u000fP|91�l}Udh+.�\u0016��˶=��@IkFՉ��\u0004��6�k��v��6��� 1I��@?�)Y;0e�\u0012�B�bi�S!�{��ɵ�7�1[�A%�\u0003���\u0015��K�\u0019\u001c Ċc�\"���\b����������\u0019/��ԕ������w\u001c�%5o�NW�t'\u0014�_9\\c\u000e�C�+B̟�_����]|�l�_�̛��\t�o4�=�N\u001d�/\\��,��^x�m�l}ѧ1����\be4\n̬�\\1|6�\rE&�\u000fl�)�n媈\rp\u001ewb��'�_Yu\u0018kW%��\u0007#\u001d�w5��~���X���\u0012�QG�\u0011��x�2ҏž_��iT\u001e\u0016�\u0015��P7ԗ�!�9 �\u001d�Z~\u001a\u0004 ҅�\n��\u0005%\u0017\u0002G\u0000\u0005\u000eWU1�]C��}\u0011\u0001�{_�\"�����<Ц��\u0005\u0011�9�p\u0002��15���\u001ad,��\u0004!{L�k��A\"�\u0003���\u0001;f�0\u0015.�P���i(�\u000b�A#vI��h�l���k NPXuɊ�\u001f�ڽ�d��+֬���@��q�\u001b\u0003�+��i =�ЬVQ�վ'3�\u001b^��\u0005�i{1�\u0016�\u0011xbe�\u001b'J2\u001c���J=\t�\f?úF�jm�\u0017��N1���0>��\u0006�����\u0018p\u0003Ȩ�M-�\u0006DFi'jD��Ԯ\r�#�/��I��|*�\u0000IA�ֺ�@Ar���Zم=񹐙X\u0014`O\u001e�Z�\u001e\u0003vbg��A\u0017R�B\u001e��\u0019�aQ[5T\u001e�2\n\u0011��y \u0010�:}�\u0018�Sl?�^�1�w}X8t�I��5B�m��?� Kh�\\��%b�ϲY\"\u0004��.\u0010-\u0012�A\"�\u0003���\u0010��*j�^\u0001\u0013`����c��L%�M\u0001�*���\u0019\u0007�Q\u001f��\u000bc\u000f\u0012\u0002r(��څE\u0005��1|�'�\u0000ís�!�\\�!�?!w\u0003]COi�\u0017\u001c\u0016v\u0019���gax8lQ���\u0012K�7�(�\u0002���\\+�}���N��3:�0�X�������\u0011��D��\u0018e�٦�UvT\u001cT�{�� �3@ғ>�\u0019g�� ������H{�&�\u0000�Qm��S���-�6a\f\u0004e\u0018j'�'�$�����($�$Tѩ�0����<|y\fުSk-��\u001d�h�\u0018�\u0000\u001e��z¿���зZ�[H�W\u001b�~�~1�,�!SM\u0001\b\u0010D?b�*$=-@@ާ\u000ff��&\u0002G�Á\u0003���q6�f�U�{��0����jb��\u0004hFft:4\b���\u001d\u0014�M\fuvHQO����L��k����s�*�\u001cR�����\"z��ד\u0019Q{�O�0\u001a�����\t\u0004Œ�Q�3�&�\u0001.\u0015����}�f\"D�uKdO\u0019;�Zz6wM#_�1���\u0018!\u001cCJf�\r͖�\u000eOt�a�\u0003xtom�\u001cyy��\t��\u001e7~��?�5���4�\r&{4ws���\u0002\n�O��qAi_�\u000e\u0014f�k��0\\0�*}хd���C&Ԧ\u0017R���k�\u000e���|l�x�g��1���Y�nax$\u0007׷���z\u0003=�\u001c�\u0005 ;ԝR�_v\u0000\u0002VI�\f��` jw�\\��n\u0006y5j���&�s��\u001cё,�]oₙ���B-=��k��\u00028дA���<�qa!��4���r�\u0012\u0017\u000b��=�/rI�\u001c�v��7ϊ�kj�\u0011-\u0000�x�@�\u0007�i��\u0019$�*֔@���Y���\f�#s���\u0006\b�V��[\u0000\t�:�X7�d\"�f��[�lP*��9k;\u0012�1]�\u00063wSU�]�֑�Kܓᤝ2�7��\u0007�A!�\u0003Հ�\u0013�v�w\u001433�E��^�\u0006��Zl�}�,|'��'�ׄ(\u001d�q���|��0zH\u0014@���C�!9�'�q\u001aF�toIl�]u�A��S�/^[��1��2J\u0010��-�%[fi\u0001�#ڶ�\u0014�\u0016?\u000f\u0017�\f���O�R,\u0015ȹez)#e����\u001a�p��\u0017�](�\u0017\n7�0�������\r��uˆp`!�E�W��,ro�\u000b�+��\u0011�IA�†��\nKIq�.V\u000e/'W�`��2\u0014���\u001aC̺��L�\u001f\u000f\u001b&�\u0013⡇��<\n��\u0001\u0012\u0016�B�Cuq\u00176M�uf6��JA\r&�]\u0000'KmU�R�\u00044-\u0007cu���FTŁ}�zfbW\u000b�AX�\u0003��\u0014O���:Y���\u0002� �LA{\u000b���4Ƕ��ޱ:�r\u0013�<���/�\u001a\u0016Sc5n���()�9_��KM\u0019��p�\b�5��v��\t��2\u00199G�������\u001cmV�0@'Ю4�\u000eG\u0006\u001cj�~��z�hf��]�K\t\u000f;-p�\u0015�ȯ�\u0007�2$��f$~�N�\u0003\u000f\u001f��\u0011���܌\u0019�K˵^\u001c�\u0000�'\u0006X0@V��J0��!�o�o\u0014��V�my�_Vi��J�3\u0003�p\u000b�!Bh��\tI}\u000e�* \u0013�ܰ6zq�X��7~V\u0006_�%|������ |�\u001d9\u0011X\u0014�kf�D6\u0011�\r���S�reg�\u0000\u0011Ӻ�����Qty�ƞW��S�\bl��i>���\u0014��\u001d�X�\u000fO�x7��w�\u001b\u001aTsg)ۏ���TiL;����R�\u0015���D�Q�'�>�A!�\u0003���\u0013�|�`����G��N\u00105SMb�\u0012�'\u0000�Eҁ���I�+�D�C`\u0013\u001a9\u0013�\u0001����=$�-\u001f-\b��\r3��!�wE7\n�(a�\u001aH�#�Q��MXc8�S_�\u00067�3���l�P\u0017B��\fR\u0003-�V�R�/���\rA�kR��\u000e\n��X�\u0018'|L͊md×��\u0014��6�5�fc���G\u001d)}уy(@�QEu\u001b�&@Nvow�L�Kn��\u000fk`�$#ؽ��z�\u0003\u0005n\u0019-�\u0012�;�\u0004��T�\u0019��s;�ij��r���\u0017;�P��W���#3�\u0001��ٰH�z\u000b\u0013�u�>��ֶ\u001f\u0001sL\u000f�\r�VA{�}CR�>�J�\u001a\u0010r5g�r\u0007;��A!�\u0004\u0011��\u0001�̥�~ȴ�\u0006�-��#RB��1B�G�����a�\u0006�\ng��\u0004g�s9P\u0019{\u001d��_w\f�,�*u���=)f\u0011�W\u0001��|���\u00066nᝑ%<��3�;g=�>�\u001d�\u0010�g�d�FI7z�\u0012r�\u0010J��^�\r@ԶV�-\\�\b�\\�`\fcR1��L8�1\u0015\u001a\u0015:A�2H\u000f���YӘ�\u001c��\fu�Ȇ��gJ���c�i\u000b�V�n\r�\u0005\u001cƲU��]1�Α\t>�$\u0004��\u0011��P%�TIb����\u001d�\u0004�\u0011��A.U���Y���|�57�r����Fh��\u000fi\u0018>.\u0005H޼\u0004QX���\u0003A8}9@zx\u001f-jtMp�\t�k{�]@�,�A$�\u0004%�����$\u00160�a�Ki�R��2\u001c���\u0011G��\u001d��7r\u00186\u000ep��,O�\u001b�{ɓ!wU,�z�t�$Wf���Uo\u0014�\f+>�P\u0001ׂG�X\u0010����4FW�q�rCya�\u0018 ��ς�4�|[k����)��\u0018�y��\u0006�4��C9Z\u0010��YUۤ�c$�%��ʎ��;�񦹃��1�Om\u001d���\u001d��\n\u0007�c��\u0003e�\u000b��]��qNf��t���Տ�\u0007���$�Y\u0003{up*��;'��\\ڭ�\u00182_\u0007����j���Op��3�\u00185�4�����o�\u0003F\u0005\u0006��p.�U*�m��t�aY�LH��ڪ��n\u000eԔUl��\u0002��W�A\"�\u00049��\u0001D\u001a&\u0014^V���_��G\u000bG��Mʔ=S��\u0015���U�P��\u000fs͊�6�{�\u0005,\u000f��\u001a��!VW\u0006�\u0005����,��ܚ!\u001f�sU&�l�ƏE\u0013^\f\u0005\u0010���Fӝ��>�\u001d�\u0002�ʪ^�\u0014\u0016\u0012�\u001c��]H�Jb!p\u000f|��śZ�vx\u0007\b\u0015�ƙ�҉A\u00015�\u0002���]>��H3�T�H�Y���\u0018/��\u0000M)�j��P���\u001e�\u0000�f����!�4��梒T�\u0011%N���iF $�^�:�6`\t��8\u000b�\u0013\b�+[��5\u001a��sM��y:y훐����\u000bZ8�\u0014z�y'��ț�(�:�w\u0005xQf�\u0013.�g6��zq)Eh�{ �\u0019r�A$�\u0004M���[B\u0002���K\rb��}[D�`�ؠ�\ny}��\u0002�\u0010�ߧ�Oж�T�g&\u001d�����@��&��V\u0007g�w\nU�\u000e�ʐ&\n{\u0014\u0007\r\u0016\u000b��y6�ܛ�\u0012\u0000�]\u0019��D��\u001bZ�+]Q\u0003S0ğ����D~{�p�M�_f��#�'��\u00116��j��hє\u0001\u0007,���:T�t\u0011\f�,�9����|\u0017�PnA�nb�͑�PW\u0004�{cl3��@�&4۴8��a��X���:'hd�\n�bn�@�Lqt�r\"�典�8@N\n�4J�\t=�U��Q\u0005DK��C��e�Z��͏�z`�J�jaŅ�\u000f��k���ز߳<�5\u0007\u0010��|�Μ0�A\"�\u0004a��\u0012B\rgҏ�5D\u0006ut�\u0014���Щ]�q��%l<\n��O���8�5��|O��.H�\u0019�Zgdm�,���W�!���\u001f�g$i+�DS��\u000e88�W��d%�\"]�̓�%`�\u001f��ܛu�h�s\"��`� |��Gr�Z\u00165�^�!��]�s\u001d�<&�^�˧C�B\u0005\u0012|B�m��T&�\u000b�\u000e\u0004ѵ/�餲�>�\u000f%$�1W\u0010�N����[[��\u001bn)vS[�Ŕ\r�Y�7��sE`\u0006#Dcb���v}K�C\u0010U�`ր֦�.8��\u0012ƭJ(�_��n�W\u0006�!\u0004汶^\u001e�\u0018��.\u0011\u001a��]J�+\u0013���J� ^�0r\u0002v�%iY�&\u0007�A!�\u0004u��\u0001\b��,\r�_��b�;w�\u0004�D�U\u0012g��f\u0014j��â4HD����\\\u0019Xl[o����#�g�F�e\u0014��\u0016�z�\"!���fE�F*��YFb����}��%\u0013�[pRjE\r�#l��y(_u3�\u0011�}�~���\u0005UaOY�������m>Ί��<7DD�Z\u0000��\u001c�a�\u0002�\u000fB�Ō+�7Ur�\u001eR>p([ó(�S�\u0007�ِ_����\u0000�����nW�y��S�_�\u0014���(�<_�C��X�\u001dH�z~�m�}��������m�k��G��+��\u0010١\u001dXz��o��ϸe�T5�A�<�����]�\u001b\u0013LJ�\u001dPBj\u0016�ۣA\"�\u0004���\u0001;�+A\u0019)\u000e�P$��盍��$06��̤˼�5�~w\u0007_�U\u0012v�b�\u0006�*���bj\\@��\u0004C8LZ8�!y\u0016s~��6b{\\1�\u001a\n��)�\u000e�����\u000e\u0015�\b)\u001a*���\u00036\u0001yI��\n\u000fAʳ�\u0019��s�\u0019�D\u001d'\f�(h���u[��G�^�z\u0018~��t\u001c\u001eqH�.z?��\u0007��PM�Q\u0019��\u0011V_zXMj�\u0016�� ��������P�Yvc\"\\k�ڸqNe��l�d\u0012�\u0003n\t�ۄ\u0005퍩�=�B\u0013I\u0006\u000f��\u0012�^8�\u001edZ��^��\u0000XYR�U�'Q\u0010\u0013�-l�&\rs\\�id\r���\b�\u001a�Y��T�%��ʢ\u0013��ӣA\"�\u0004���\u0000|a-t\u001cP�.��1�J$h\u001e=�G��2�+��xVj֮��\u0012�s�\u000e���Y\u00191��\"��\u0003ä��6�D�R�) �c5^��l.4��g�\u0015O��<�HeT\u001a�\n\u0007�\u0002�T��+M�Zdz�����\u0013�m�!\u0013r������\u0010�_\f\u0017%K����B���\u0004�K�\u0007��uXܻ,\u0006�\u0013�T)\u0010�x�\u001eu����N<+H��\u001dg2���kAQ��8\u0012e\u000b�J���&�LH%w.�Z�W���g!E����j׾\u0012\u00102:�\f��\u000fz����F/�h'���s�y�s�\u0013\bE\u000e���,o\f~��N=Ѣ�����i�\u0007����\nխ�\r�́�Y�A#�\u0004���\u0010��\u0003������<~փKi��#!qj�|��b\u001c\u000e\u000b���*�'\"�t�DI(Ļ�}���4�~��5d�x��&a�J�f��D�!-���\u001e�W\"_�\b����*k�h��G5\r0 ��r�\"�v1\u001d�\u001fN���2�e�~\u0019�SӦ��j\u0003�Ae�Af�\u0017\u0005B�Ӯ��\u0011�����˺\u001c|�ˬKBO�0\tU��\u0011�������=\u0004�=�\u0011K�a\u001c�{/�4�9+?%0y��6�I��g�\u0019��\u001a�\u0018�$�����m��\u0003C�l�6��A!�\u0004ŀ�\u0017M��'��\u001c\u001c�EmԦ��g���(P$�\f-b\u0012\u0013��X\u0007��}\u0002��?\t=��\nS�sǙX��\u0000�2\\Z���\u001d};fc\u0012k}\u000f*&\u0003\u0003~C��\b�8��\"��`\u0010����]���h�_�\b^x;��\u000bO/��@��)��W'<&�8I�\u0019Qt>�\u0012\u000b�B��\u0007��Լ�}�\u000b�#(7!E����l\u0007�\f���e�^�\u0014�Jڔ��*�cN\u0016\u001d\r\u000f�!�y�`ا�{ �J�]��\u000b�����\u001d{�\u0004#i#m�\f\u000b���*�a%�@0��\u001d�OP���K���G'2�cn��>�� X�*���>��p\u0000��ȞJ�e4\"$D�U\ffkL��S�\u000f(\u0005��,�uD�<�q\u000eA��j��?�0r���ϔ�\u0012&��a��xk�\bg��E�.�\\�\"fL��0&�d\u0013�r6;<$b��������\u001ax�Wp��\u000f�\u0003xH�\u000f��>�w��p���tO \t[\u001e#�}�?�@\t\\7T\u0001q�b���\u000bo�\u001a@Q֞�o��[\u0017}�����i]���\u0010�V(�Q��v�΃��\u0004�T�_�N߬_dt�ڢwU\n(�ʥn���\u0003\u001d�U+U��+�͹`��\u0010Dí:��r��Ц4F�M��o�����H⟪!��k��-\t���Lk\u001f�\u000b�ć\u0003�Qc����^�>�\u0012�\u0010���A$�\u0005\u0001������z�\u0015�\b2}RIE�ӷ��2����<�7ӫ�o!����\u0017L=\u000b�\u0007��p��\u000b^\u001c\f��?�\u0007O�=��p��\b͊w�O%\u0003����7\f>#�I�\u0015T�����bbu��-\u001e�\u001d�5\u0012n�v�C�\u0010e���\u0015��m�\u0004�\nwo��r��U�|��ckH�ɝ�\"�A�AJj2+\u001c\nN\u0001\u0006\u001d\u0005b��wd�\u001d�$�;=�\u0014�Ƿ������\u0000�\u001d���X\u000b7u\u0017.��\u00119Jhꋹb��\\~;�Nz2���If��1�V٪@��\u0018 ݫ��,�{h_\u001f�t$JYZ��C�.\u001eh_�r�\u0017\u001c`\u0013��ܧ�/8�Y\u0013R�x�\u0012� P����*L0�A#�\u0005\u0015��\u00018&+:�5Ũg5�Y~\t�$�؂X�.y�0z�şO�{V�\u0019n:�\u0019��aL�G��O�a��S�)�]\f\u0019@\u0002?e�\u0010a�̸=+�,GG\u0016\u0004ֲ�\u0003�\u0002�X��Je���\"�r,���ؾ\u0011\u0004���u��.fy6Օ{;V�:\f�\u0001��`;�=HG\fJ�Q�k�4c��.�e\u001c�/��\u000bum:%��\u0002P�1t6�a����(t ;\u0004�]�{�s�E&���5MyM&\u0012��\r�\"�\u0012 ?d�m�S}�`s\u0001� J�\r�\u0015%�|\u0003Y\u001bF3����՜F~Q���w�*�\u0011\u000eV�6�r\b%\b��\u000b�F��i�6�\u0015�2\u0007}�p� ñ�-��I��A�A$�\u0005)����:\\����4�.ݼ#���\u0019��ՍC��w��\u001a�\u0014���'�\b\u0017�1��\u001d�\u0000����ZƳ_\n��[��ܕ��\b�������>vi\"��B7\bul�\u0014U�5�\u0019\u0002��L�\t=Q\u0015>��^Nn>\u001e���\u001e�\u0014Y/�r6(�\fئ}�ð�(wGR�h�3u<�͠w%m\u00076f�\u000b\u000e�~���\u0011�\u000eOț�\u001c���\t0�!���3�߲���\u00144�Yɸ9���\"�s\\\u0019��ŀ�B?�M\u0012V�=B\u00165�����\u0019���$����r\u001b\u001c�-Nv핐��6�8�5\u0002�x�魁�|\u0000��@��2P*�{�)�\u00114šx~�Q����$~�A#�\u0005=��\u0001���֨,�n��DMS�\fJ��ݻ(�\u0000��Y�B�<�\u001e���I\u000f\n\u0015XN�&\b붾B�//��f\u0013\u0006\n��\u0011O�e�\f��nW\u000e)4����I�\b���(�\u0014�q9�o�^��SoJ�ۼۉf¦�V���\u0006����o��\u001e�yi�Ԋ��p�P\u0000�S~�q�1H�\r,2ۗ��\u0018\u001ak0D݂\b�\u0019�\u0017\u0001!\u0000\u001f����\u001d���E��5w&�\u001b��箥�}gF���}K�����#S\u0018�-�\rM�\u0006�_PN�v�v\t�2`h��~\u0016�\"\f��.\u0019󟣉�\u0019�sS\u0001b,�\u001cj2\u0016%~��\u0014�WHwj��ê�MO\u0005\tT��J�BP�\\�A\"�\u0005Q��\u0013����\\t�҃����.���\u001al�\u0016*O�\u0016\r\u00157J\u0001k�R�\u0004�MW\u001ca��\u0013\u0003^�\u00120��o�kE�cRԭ���8��I6�-��2:\u000b��M=m�@VPj\u0014��6�_,�b�}\u0014�#\u0001�xcL�'�%X�䯲.M��\b\r\f��@(��m\u000f�\u0013Ѩb΅��.N(Ā\u001b�x-w�\u0012<�4�\u001a\u000f�\u0004��r�F$�e�\u0010p-��K#Q��\u001eW��\u0017�N\u0013k\u001b��AoV����G��U\u0012@�y=��n�u\u001d����{\u0018�؁�;~\u0017�@�~\u0012�. }d}�\u001c<�n�\u000b�����u�8Ӈ\u001f=\"�.�tϭ�\fG��i/R�u��OM�L̓{��A?�\u0005e��\u0001I��,Ȟ�ȠŒ8e���t�<2�A�&�\u0019q4\u0016\u001a��A�\u0002�p%n�=\tr��<�wU\u0001\u0005�\u000f�ɐ$����3H�\u0017I�`gr�\u0019:�u�a]2�\u001a9�To�_�ֻ׎s�Y�y���gZpb�16e�D���\u0000�������=JЛ\u0015ϓ\u0012��N��I��\u001eD3z�b\"�U�\u0004+�������C\u0013p{�j.A��)I���\u0018�N+['��U��s7�>*\u00180\u000e�=�Y%\u000f2z=L߅56�*��/\r\tB�v�0����Y�%�xD��k���Q�i���d8�]��2�ӒPwr2�\\��d[b؈;v١P��\u0004��\u001c&�w�\t�J�3,w\u0007}���P��'�\u0016x�Ut��`\u0016�������A\"�\u0005y��\u0000d�p���\u0007��zo��]Ĩ\u0018\u000em᫆\u0012h�7��\u001d~���$\u0000�\u001d8��6��:f\u0011`�60�F(d�e�\u001d\u000b)�W��\u0015�L��=�p�������T�^q���U;��g\u0011�d�b\u0018~����\u0019~0@��Z���Ͽ���,�P&�4A�'!��&�򆥶S�\u001e�陚\u000e��:h=ЪXA�3�$'�4#���t<���J��4w2D�\r\\�7�\u0011�\u00154-�.�T'/J�N\">����\u0014q%ok��|b'p��U���-\u0001m��q�����ŋ�9�˿ٱ�\u0018��Jv!B5�P@�\u0000\r&x��\u001dp��zRo\u001a���/�_�ዒ\r#\u001d�\u0013�A!�\u0005���\u0001?��j+ھ��yf�\u0002\u00169�$,�4KO�?=�\u0006\u0016s5�\u0010��\b?��=(�U2��k*m�,q��Et�iZuG���T�̔_��ԗo�/��\u0001\f�c2\u0005�C��Φ�:��\u0018���m\u0012���Ӧ���ì-\u001d\u001d�ݬ%\u0014W\u001b�-\u001cQ��P#C'�\u0012\t�>�hl@�X��\bt���$��\u000e�dHDgo��\u000fg\u000e�\\O\u0011�P��Q—0O�\u0011+�\u0006\n�\u0011�t�7�\n�����U�T�la�e\u000e>\u001d$�&\u0004e���\u0011V��H�r-�\u001c�4\u0000\u001f�\n\u0010\u0007\u0015�o��!���\u000f.\u0012�\r���C�\u0015��[p��\u000b��\u0016�w*6g\u0013�\u0017��\u0004�:l��R�A#�\u0005���\u0000\u0015>��:\f\t����>�##����D��ﴸ<೾��\t� ��Lj\t�^;�\u0005��߃\u000b����w�h\u0019 F�R^\u000e��Ș��)�\u0017�w(m�]4��G��\u0007L�w\fj��\u0007��o`����]_Gq]ثz\u0007B˛\u001d����i��\u0016\u001d��IQ_���6�_���\u0004X�?*�:�鲞m\u000b~<,�\u0010�\u0006��d�\u000e�;H�p(.eˊ\ft/(q�|v�\u0005���]L\u0006b��\u0006�\u001dʷ��\u0010�\u0016r\u0012��΄�] z����<_�\u0015�\u000b��\r����4#ޠ�hH3��\u0000���M�\u0007�\u001f�&��meS\f}��=��5���O]�77N��*�����A\"�\u0005���\u0000\u0015@]�!\bw��\u001c.��hwBF�rp\u001a\t���\u0001+�u_A��\u0006D�4M\u001f�gЧ����l_�a���#��ۛiyo��G�`�_i�\nU�Bg}���ʍ�t��2aCp=��w\u001a�:��)I���\u001f\u000b)v�%̶o���\u0010�\u000fY\u001af&� ��\u0003�\u0007R\u0013O'̔,��:�&�ZZr.}�aKq�v\u0019���8�q#���#{��H\u001e\f���O�l��L-��\u0011�AS\u0012�Pa\u001e\u00006�Blx\u0013�j��eu��H���!$Zj[�`�4W��w��nm��k�'Dr\u0005�~�\u0013<���ӆ�#6�k���7��BƳ�'A|*�sb��ߥ�UY\u0003=r�c�A!�\u0005ɀ�\u00018�4\u000bS��� 1\u0010\u0001ߕMl~s�e�q�\u0005E�5e�Nw�S�?!{9�\u0019��j\u0014�.M-\u000e��Y��\u0012�U�h�չ��_I%\u0012�Ν����}Ӊ�4�h>�}�֕��\u0007�(�$z�Z���2��\u0011M[[Iߡk�����\u001d��\u0015��\\����`(����\r\u0017\f�\u001d\f�\u001c�/�\u0014��\"�h\u0001�%���51C�G\u001f2�����\r������@\u001bN�\u0018�O]�\u001b[u��\u0005\u0005��X�%�\\@ϙ_���ul\u0010�\u0004o�-̤H�\"'�!�\u001d��ʹ��\u0017U��\u0005\u0016n13;QD�x\u001a��tYڡ%&d�l�mD|dA�FY�*-٫-e��4g��\u001c�\u0011�A\"�\u0005݀�\u0001;l�IZ�ӱ�Z���\u0000\u0014b\u001f\u0002�ӻ� \fMd%L`\u000e\u0011�2��C\u0002�\u0001L��~\u001f��\u001dUwp\u000f\r}؈�:���9�!{�4D>\u00177̀=�oL\u000eN�g�Z�S�W�R�\u0018��\u000em�&�\u0018\u001c�\u0012\u001fi�f\u0002�\u001fh�:䠉����X\u0006I\u0017��/��F�\u0019�s����<2�\u0002\br�(�\u0011O���ά\u0002��'�J#�`��\u0014�5�\u001e���U�Y�\u0007\u0015O\u0019\u0007�����H\u0015\u0014\u0018���\u001e��k��]��[*\u0019���~�~�Þ�D~�p�͡��h�j6c������d��H�S�E��{�_�\u000e�\u000b�\u000b.\u001d\u0002l�m�;V\u00036��-�՗��\u0010c���ӣA#�\u0005��\u0001PM�\u0018d�\u0001X41�8ŋj��wjo����2M�5�/�\u001f�\u000f8b;0E.a)\n��\u001eL��0cW�򉵈�B���G�b�\u0003�vс�\u0010liK\u0000P�e\u000e��֩�5=\\\t=k\u001e�\u0013�WW\u0005��jM�}�\u0013�RG\u0003W\nv��\u0004�K\u0011��A��-����xfK��r\u0003R�6��F��yV�Q�ؔȗ��\u0011�*�\u000e�a]3�u��\b\u001c\u000fɳ1��\\��A\u0018����\\\u000f�4\u0010��3�e�ݺ\\H�G�}�H��ՠq\u0013�N�)/�\u00164d\u0001�^\u0017z\u0000\u0006\u0013�^�\u0007\"\u0012\u0003�\u0014�6ӄӊ�S0�\u0004\b\u0000�\u001e]�Te\u0016��;:�e֔IB��w�.^�\u000b٣A\"�\u0006\u0005��\u0001<�\u0016\u0014\u0011��59��v(\u0004��������W7��f_w,��=���!��\u0019t�m�-\u000e�\u0017���}��^�%H�ϭ΁�\n�䉘�\u001e�;�\u0019\\}����͎0\u0005��%W�PKo\u0010l!u�Z��_�\u0001;j��6�O\u0014�\u0003�u�sg`\u0012��=G@>;_\u0015��Cq\u0011\u0003j��*\u0004��\\:8\u0016�Je3\u0006��僲�\u0014}KX�W\u0016:�Y�G� [P�Sj\f�:\u0003\u0015TX�P;V�K�]\u0007u�f�\u001c��\u0006(��\fI\u001b�u���{�-\u001e���xn�*�Q\u0006�Ց�\u0015����\t�\u000bW'M+��4���TT\u0017-\u0014\u001f��\u0004���G�bf��W\rD\u0015�\u0015\u0017��A\"�\u0006\u0019��\u00018\"4+\u0007��u�L\u000fJ�\b�&\u001c\u001d��WH\u0004/��O�F_����\f�8cMЯU\u0017yuK�t�25�hC�Gם|\u0001\tJ��w��p����A���\u001e\u0014��qe��Ҷ����p�+]\u001cw��^��B��:r\t�\\e�a��\u000bȹ��c����\u001c�����\u0005G\u0018>2�\u001c\u000e�6:P2�\u000f�׫��5=8ʴh\u001a�\u0016�!�М�\b\u001b}q֟\u0018ƽ�K)�<��\u0011j\u000bO\u0001�9\u001b�E�_�x8�\u0012X���ki�'���\u0001���\u0002y\u0013�\u0010�\n�d/\u0012=I\u00002�U��\u0005���\u0007̇0g�\u0017Mē\fzq*��\u000e|d\u0004$I��\nXgK2�k,5I�H}Hs�q���A\"�\u0006-��\u0013��߳\n)�;+�qp�\u001a�?�P$(�v���go\u0015)͹8*�x�\fȔ��\u0000���ԛ�^X��ϳCª��_\fhR��hE�M�v���c]\b\u001d\u0004�r���F\t��)\u0004}\u0004\f���.mG�7��\u000b��C\u0002\u000e�����q1�\u00070Ϙ\u0011�l)�p[9\u00119(�\u000eyw�t���4}��\u0003\u001b\u0007���\u001dM\n���5K\u0000B��k�s�ع����mn��\b\u001e\f�\u0005�ЊBB\u001c�Μ�C�\n��\n�\u001f\u0001�s ��\u0005��{�\u0019WJ=T���VN�d�F:Z“��;��\b�\\\u0013h,�B�&\u0002��Mc'zh�?w\u001e���\"�%ӈO6rGos��TѲP��-�A!�\u0006A��\u0000d\\I�\r����C�,\n�1�9cG[+�p;L�mQ�~6�n-\f߸�þ�\u000b\f]@�g��\u001b&��v\u0012���\u0002}\u0016Y�I��\u0016��p�V֌�Az}- V�s�UB�5=������6~\u0002\u001d˨QZ{����nv�S-b�\u0000k��U���\u0005\u0015��w���r-��\u0013��\u0013�M\u0003\u001dO\u001e�8\u001fgXdmY�\f\u0012j��67��C4��\u0005s�\b�\u0001N��>��k/����;9�\u001e�JF��E�,���\u0006s'�Ѓ���6#�sv�c��@3e\u0011�AMZM5���HЅ���ʹDA�Q`�\u0000>\u000e�/�?\u0004�`�\u000e;�5��$t�I�����-�Ag�\u0006i��\u0000=v���C��ݧ3������}B���*�\u0002\nmP!��*}`h{��h\u0012/LYʠ�b�y1�\u0013<`?3ӖY\u0007Z��WЎ�\u001ecy�oI�����%�?z�\u0004F�G:\u001f\u0013\u0013 ��Nb��7^\u0006�+�sH��3m6%E���_��\u0005n��ș]�g!b�G��\n<�戽3\u0015�f�>�Ls�v\u0001�\u0002�\nle��Y�}-)����8�e�J�GL\u001d\u0000�4W\"��dzm�v�V\\H�\u0002�9#\u001f��Vnj���~�7�dU�\u0013��*B�~,�\n�ޱ����B�iB��'7�xm.��k<�Zn@��Z�D�n�p3?��\"�W6W��2\u0010X�\r�I�����\t�u�,�\\����Ĥ\u0014\u0002Ҋ5�A\u00112�\u0005.\u001e7w��\"f��8{nt�\u001f7\u0016uv1;ט��U\n\u0014\u0013WDQ�\u001dȂ�d�A#�\u0006}��\u0013�Ф\u001f��填\u0000�\u001b�\u000f,�\u0019\u000f�7�8`\u001d\u0005�y\u0006M�\u001a3�\u0013T8��j] ��Mm�\u001b_�ط'���\u0019*\u0013�h��m�&\u000f�\u0007+���=9�\u001f0z�\u0006\u000e>�Y���_t@թё�S�\u0017 (\u001c\u0000��k��A�Ff\u0007�Bѽ�p'��Y�B�\u001bI\u001a�\\�W��[�7�9�6��ǫ�\u000b�׫�1i�\u0004VY���O\u0003d镏�$^(\u0007��.ʒ���\u0012\b��\b\r��\u0001W�������Pm\u0006-`���#%�H�����\u0016\u0002)vĿ���.�^ve]�\u0004\u001b~Y}��ѧ\u001d{C��#<�R!ZJq�&U��\u001aW+vȔ�\u0017���\u000b��\u0015\u001f�dTZ��A$�\u0006���\u0000y~.N��BF��DS\u0012����_�\t4\u0001I����F��d\u0004�\u0005ǰ��>����_\u0004�\u000e\u0001��5RK��\u0001\u0017�)T0^R\"�Z�YU���0=\ft��\u0011\u001e�\b��)/��y��x׃� \r�IEZ]���ǻ���(�N��bD��1\u000f�H6�%�xKAw�\u001ex����4b|�.�d�t��}\u0010�7\u001bNZ\u001d�A\"�\u0006���\u0000c��\u0014\b\n\u001d��\u0016/\u0016c��7\n.�\u001f9��j��ǥ�MO�v.B��k�S���̣��V���R��M�K$��%��ȼ0T[=z�_B�ay�)�V�AK��jQ��]{�9J�d��#�\u001c�\u0001;@_0�\b(2�\u001cc��z���\fSŽ�K\u001b\u001a�=�|��s_Fڎ�������9���\b\u0010���\b� �#�\u0014��q����5M�ӓ�y'}�uF�Sx���v8�a{�q���nD9\r�B��6�\u0001\u0006�V�@9]n����S�S\u0013�̌�H*�]f\u0007����\u001f<�N��� .\":�� 'm�t\\\u0013Zp&����vd`ڴs#\\~�\u0019�BN�\u0006���{\u0005Q�^�\u000e��~k�ܕ f�v�\u000e�x}����\r\u001d\u000e24o~�Q�wG�N`�Q\u0003i\u0004���̦��/(�w֛�X�)0�\u0012��\u0011�,��\u001dY>M�=��|NJ\u0001t�$$B8����K�}\")}���B�O�����چo�?�{��ݞ���4���\r���\u0018��u}.�K���\n��\u001b\u000fרlS;��R8\u0019_|��\u000e*�;-)[04k�!w��E2n�L��&^�9Ҧ��*�\u0017��P\u0004��\f�i�%���w����2A>:��߭\u00148���\nÿ�\u0012�a\fU�\u0000�\u0016\u001b��Q�w�5��~u��\r�Mu��B:��\u0004��>,��`��(��s��T\u0000 0[��5A75�\u0012\u0001�d�w1\u000e�8\u00068\u0011�t\\!3rk�\"\u001a�c�G`D\u0017�Y�br���U_�|LZ�$]i_�f��^G�64C\u0006\u0014\u0007/�y$��������֥���7 ˛0ot�}���&L\r\u001e\b}}\n\t�:�:\u000b �f�J\u0000s�c�\u00145y��z�\u001c��\u0015\n���62\b^�\"(�N*؍��\u0016n�%A���\bbr�?��\u0018�\rl\u001dqD�ʄ+SJOדe���6�\\��%�G���|}t�R\tW\u0000�$\u0013U|ї� \u0011\u0004$���\u0017,�\u0004�X�\u0017��&��\u0019�Җ�z��l�d�9w�%ΌPO\u001ac�Źł�:��\t�\u0005��\fNj\u0003���ܮZ��%E1\">�\u0011�A#�\u0006̀�\u0014\fs\u0001o��i#�q\u001dL��\u0010�E�\u0001�b�`F\tv���\n\u0002\u001e��4��ɩ�\u0019�.{\"�(�˖Q'\u0003��ia[N\u00006/�(\u00184��\u0012�48�NS\u001d�\u0010;�%�=V�HʬJ�����ܯ'��Bϊi��a�\u0006�\u0007����L\f0G튁�������N'����`��?|�l9g��\u0000\u0013�9��+hL�1��:2묛Z/�h�\u001394�\u0012V�\u0005�B\u001e\rf\"]\u000f\fh����'���ӣO-\u0003�M�\u0018�\u0016�+\u0005�Q&\u001d��շX�Y��.���윆�\u0005Ƨ'�B�w��ͬ��?M\r�r�]�\u001b��C�X^\u001bb� ��[#\u001c�p�\u0012�hk�ps�R��A#�\u0006��\u0001C,����ˈR)�~��+������˧IU��\u001c�m�\b⸥\b�9�f��a�amS\u001c魎\u001a���8�`j�̫\u0013T��\u0004;��5�>3VC���o:WX�7-\"�q>�\u0013�����b�N�:��6\u0013*�ШF�:B��\\���7�j�.�#� 5&JB�G�/��JY0�\u000b�\u0018h����g��\u0001\u0001���\\\u001f�֌C�\u001cЖ�Pq�̀\"�\u000e����X����Q�\f�#Ṷ�|#\u0019�ݠM��B(�\r\u001c��\u0015u�\u0015��A\u0016b�z�\u0003\u0018\u0001�C\u001dw�C\u0012\u001f�����I�W�pl�������߷E49$�`�٘\u0017�\u00032��7]ۍ�@�?p�fӣA\"�\u0006���\u0013�{��/���ydq\u0001\n�s=���?E~Fp��cX�ڝ%;\u001f�-���\u000b\u000b3�18+GӪSzc�\u000e:\t���s>�/\u0018ܾ����no/uв0�)m;!����s�O\u0013��B*���[\u001dn<����IR\f�,�;ˡi�\u000b�Q\u0000��\u000e����u4\u0016B�?�㽨��C\u0006斿�`��,ݗ��\u000b�6�\u0001ʿ6��b�8((}P��o\u001b��TY�1H`��K��۪\u0010�M]6a$\u0000�0\u0002�2\u001b7�\u001a짞rǁu�\u0000�\u001e�\u0014�w~:��\u0000\u0016�k�\u0005 ��\u0018�\u0004$~�z\n�\u0012�8�0�7�9:\b�q��“=’\u0002�r[5��&#J�\b\u0001�o��A#�\u0007\t��\u0001>�\u001c5\"2�̈́��AH\u0012�(=�L>�h���\u0001�렾[K�����}1y�7�~����cM���\u0017��h� U�\u0007,\u0019�ඳ�\t����Өp5L�0w֛ǣJ��d���.<�?r�\u0015�E�\u0004��|��C�*�~����\u0015\bE�ח��t/\n\n�\u0016�|\rd�Z V ѿF`�]@\\��|�LH���5\u0014_�ζ�]�yS�@�C�;\t�Z�~��s9z5ĩ{��\r^O��\u001fh!o��0�S@�g���\u0015�!�2Z~��\u0002Q�U(S5F�F�\u0019���A\u000e����,8\nb�u`=��~KÐ�`��MDꅦ�\u0016�������\u0015���I��Ac�\u0007\u001d���/�a\u001a������U�\u001c|?\b`\u0003���\u000f��܃��\u0001GZ�2:���[-TSseB��[�鉄ʿ�U\u001e�\rQ\tY�*\u0002\u0017���L�\u001f�ǟ@n\u0011�\u0017���'6c\u0001=#(�\u0002�]����J8�^L\r!��L�*���g�L�2�l\u0015@t��_��V�W6on�i:@'\u001f�e����&��\u0010�mp\u0017\t�\u0004�ۚ;h�kV\fƛ�'\"��pT���9(�\u0012�n&\u001cp\u001f��q��i6�I\u001e�I�@��� �x��x\u0012���;�o�\u0011��ky���I�-�$\u0004�\r���\r�(��mE1M8\u0012*+�o�z�~��W���ȸ��\u0005�Q\u001cq�\u0019VQ���)|��|\u0018R���2h�mcʚ��ʰ����)]O�w��v�*Ŗ<�0\u0014�\u000f�<-v�M�\\l�\nQ��л��0�A!�\u00071��\u000180\u0015���\n\u0000��6\u0001>�eR��\u0014嶫5�\u000bf��Z\u001d�y4�1\u00116]��X�7Z6y>uR����`�&b'\u0012�E��R\n�}K�}\u001c�)G�\n��.�-�x��`��U:hު�-FI�7�f�yr.�����.t\rhc\u0014H�?W�?<2)`�v�\u001a�<�\u0010\f�S����x�2��\u001f#�l >?��-�؛�\u001d\u001c�L|s�3�Vշ�h��n�V+d��(���d�6?\u001ck~v\u0012�E\u0011L�K�\u0000(a\u0015~L��w^�<����3��>�x�<4nb�!�%��W?n�:�\u0001 ���\u0019��\u0001��۵}J��%;�`ض�(KA���\u001b�A!�\u0007E��\u00005����\u0014�,�\u001b��\u001d�ª�j/\u001b�ۓ\u0014�����S ��6��Fu�\n�5#\u0019�P�¬\u000e���KLt��?P���h�):�\u00153\u0007��SQ�L\u0014�0���Q�\u00116�\u0014�X�ɱ�o\u0013�Э\u0019h�Ylym}]^\u0011��4�\u000f�\f���c#򂟛\u0013��#s���`�R�ܯ�m������!VG��\\̩xe߅P\fTU\u0010�x\u001f�En0dG���W9\\ϡ\u000e\u001eG}��RJ�FL\u001f�����w/2�\u0014�P�/�����g�C㼰,���\u0011��~8[���V�i\u0018b��w��\u0004���Fc�_Ş�\u0018\nUv��_\njr�\"IG���*��jҁ�A!�\u0007Y��\u0000}��[� �Q<�h�z��UU��\u0012�8�6d�j���j�̾����i\u0002��O�����\u000b\u001aXZ����M����M\u0007�h��Z\u0016OEy�� �i|��{l�1!���d�H�\u001f�m f��\"'89�n�h�r��U��GҧTދ�W$��^��\u0006fw���y\n�C#�\f�a�I��}\u0013$�W.eoԓ�7�c.~1݇!�r�P\u0019#~\\�\u0018/��LY\u000b\u0014s��|��d\u0007��3R�7ºH�SH���c�(\u0018\u0011#��7h�*�Ӛ\u0006�$[�z\\3_Z�3!�\u0019�\b͙�T\u0003��\u001f�x���l&E�zYL6���nږ}iU�\u001aF\u0007��<\u001a�A#�\u0007m��\u00019&�cjv��3\u001d%t9�\bR?C�1@�)�K.�x\u001a\u0007[y�b���;`\u0006^�ϒUO\u0000�31_!�6�rnW�A���\u0007����1:�`\u00074�'l�Da���ܱ�� \u0012�g��6\u000b���~p�j�\r����`�=6�-�\"\u00193��=��;]�¥�X\u0012�F�\u0018l�F_\u001f\u001f1��H,�(9�B���Z�1�eV\\>=M���v�$E]��\u001biR�\u000b���o�پ\u001bZڕ�=WP\u000f�������e�#\u001a�.�|~��߅���ej����=FS\u0000��n����\u0004Q�������r^��.2\u001da\u0019��f/o6�563�S�o�\u0005V\u001b��l�.`���m�A\"�\u0007���\u0001Prv\t�7/{e\n�1��p�&$�^��\u0011no��!�1�~�s5�]|G�#t/R��!�-B��hR�5�\u001a-\u00062֢S�lO|gX�R�;\tߣVv=|\u001d}L�Y�}i�}v��͟:�Z��v)�`����,\u0004��\u001b���ʍ\"u�S\u001b�/��^�6��\\�EԮ��\u0003��5xT�\u0012\u0007K��xI\u0010Y�V{5.ï���Fqe��\t���٧g1�\u0014\b�H�\u000bi��]U9]\u0015����خ��R�\u0000��u!\u001d�\u0000��F�#����@��dȳv�z�\u000bK\u001d0��h�l��A$�\u0007���\u0002\u001a���u��e��N�����0��̿oz�/p�ưU��%p���۲�6�Q[\u0015���\u00001m'�2c��M�\u001cn��\u0013��K*!�!Gl�j����\u001a:��\u001dZ͇�\u0011�\bV������\u0000{�r\u0004���V�y��X'�3>\u001dD~��\u0012T����K�ϩ\u000f�b� ��!�*�\u001b(�\u001d\"X�r�\u001b�2��`u�X��\\?�\u0005�����aQ5�Ӳ8\\� ��\u0006�T�\u0019;��y������\u0004�\u000e:q\u0018��3��^-=\f�<���]}�q>�Z�\u0002t�Z�g\u001f���D\t\u0002���\r]%��\u0012P?�V԰e�\u001f0\\\u001c��\u0003�\u001a�O2v��Ȳ��\u00077�i�0\u001d�A#�\u0007���\u0001?��\"\u000b-�����Pܓ$\u0012T��;�ώ`<\u0006�\u0018�i�\u0013�9Q��\t�E\bL���\u0003\bf\n��J�Q�J���g�z��C�\u000b\b��G��Q�{\f̈́fI�c\u0014���\u001e���?�hW>\u0019�Cݼ�GQ���R5�q;ʱ�+��<�O\u0010���k���M����Q�K7\u0007�\u0016�5G\"t��\u0012�\u000ec���)�]Y�q\u0000�\u0007�\u00069ꦨ����\u0001\f�CU�TB�8�m\u0005U��m�1Ez~��\u0010�:\u000b��be2�\u0015\f}�1\u0000X�\n�m\u000e��n��[\u0001����z�+� �!�~x\u0002\r�<:Ě����ѷG��Oᘻ�����6�C'������x�;4��A&�\u0007р�\u0002Y��]�AlRz���]����D>C��4a�O���伇Xg-�$˦\u001d��`�\u0010GM�\u0018�$G#,�u'g\u0017���!��6~\"��q�;�O`J㹱���4�\u001f8�\u0010\\\u00143[\u001b�}��Tͧ�[n�'8f�\u001f�Ύ:{\nFx�� �\u001a��CRcL;�?œ���k�,X�,��!�\u0016?�/a\u0019\u0016�ٖ\u001e���\u0011fi��⇻(�[V��+p�iU�CO��XZ\u0010�\"�G�[�\u0017*�\u0018*��C�L\fwl+Q��\u0003�Ln�\u0006�\u0001_!��g\u0012v���o:�?�\u000fV2���e\u0001B���� (v@\n�N-66H�9:UE��~��\f��-� �b�!��v�A&�\u0007���1����6��Vw0�o�p?Γ�v\u000b�@�-�\"n��\u00119�r���h8���\u001d�a�!P,/���W�\u000e����HhsM`���,��\u0012�z�\u001a��ߘ��\u0015\u0001��h�u��\f�j�z�\u000b����gfԩX\u0011�Y��\u001f���\u000e5JԲ_|\\YH,h�۪�f�<=7�-��3igeeo�\t�\u0013�p\u0019�d��M�r\u001b��m?5��\u001c ]�\t� ��\u0016٘Q·������\u0005�?�t\u0004��J!�\u000fIyb*2\u0013��P��5�\u0014i8v�(U\\VN��ǃo�:\u0006��f2c�:B\u001cԃ\n\u001bq�fOK.5v�>�$�fb���\\W�Q�K�j�2�\u000f�A%�\u0007���\u0001<�\u000bb\u001b\n\u0005���\u0012M�\u000f��\u001b��'�y�Ğ����gZV���}?\u001f�z�g!���\u001f��<��&֜��?����S��1�\u001b7��� \u0011�}�\\�!�vzu~�\\�=�\\:���˕M�?��]���<��B����D�CsLzV��r����j9\u0014X�2\\����UtX\u001eK\u0012�D�H�%\b�G\u0012�\u0018\u0013���^�߽�ΝX)�<*�))\u001d��/d��\\��X��Vd��U��%`/�A�ǭ$�zrx���͟����\u0004�\u000f\u0016�4\u0004(6=*96o�:��G�d,�E\u00019�\u0002.e\u000eg�\u0007�BNa��sl\u000e�׫IL�g�����'�����\u0000\bϸ\t{�!\u00187�\f����\u001f)��d�\u000fPL\u000e��\n\u0016Q'b�\u000fG���Z%`˟c����ts-Z�g��F�l%$�4��\u0016��\b�Aq�\b!��2*��\rdž?�k|��,\t <�_.�Wx�\u0007��߁��h��1�q\"/2�`#��\u0005���3w1��) vZxە�eβ\u0017լ��`�*�\u001e\u001ci\u0007I��\u0005�P���\u0010S*\u0001�i:��8���dM��.\u000f\b�Yn\u0010�t<3���20���\u0013�宑\u000fܯ��d\\5�`b\u000eÎ�n��\u000e���\bnr���_�E?��󦾲!\\�ʼnį\u0012�\u0006�C\f��TT���K�\u001c�K�W��\u0004f\u000f\u0004\u0002����\u000f�a�2�a\u0001LB\r2�\u001d$��\u001f����w�OG\u0012�I\u000f\u0004t�G�j%��(K�6��V\u000e\u001dC�·kn�\u0005���\u0012��=�k\b��@��y�m�;��ГN܆�\u00077Q�\u0010�^M���\r#�9)r����\u001f�?9\u0000�Hq���T҄�w�?��CX�\u001b��\u0018��Y۽��\n\u0011�m�OF���=+ȣA#�\b5��\u0014\u001a�ս�3\u0015F�=i��I���IS�c<$��?���M\u0004LA���\r�+��Y%uc�\u0019�V��\u0002έTŠOS5s�9j�[��P�<� ����|�؛�\u0017p�Ã\f���\u001e�k��\u001f��ŧ\u000eA�N�\u001c�oP��\u0001ɋ�V�a\u0010Pμv�(\tD����{��m\nz�64���\u0011���m�fm\u0000I�\u0011Wg@�\u0006F_\u0016s\u0014����\u0010\n�um�%���#\u001b�0�3�\u001b�K\u000e��S�\u0015�=]��X<.\u001b#���_Y��\u001dgC��9\t��Nx_����Ǽ2\u0016�>����aٲX���s0��\u0017��\u001eW���Ջ����ˆ\u0002�ɲ�6z=УA(�\bI��(����A�^�LV�\u0011\"~��Be���B*V��M��ł�o\u0001�\u0007�nz�\n�T�\f\f\n��8G�r.��D����r�P�:\u0001WwOiOs��&��,W\u001a>(����\u001b�AɁ\b���v�����\\�q\u001dlDp��\u001e�l*��#U���lOQ�l\u001c�y���BB\".���JV\u0014�3B��z��F��\u0001�\f׍\u0001����,�\u001b��/0\u0010˰���m\u0000�6��w�,\u000f6h��Ns�:׮G�֎\u0012�\u001a��,�=�]����+�T\f�.��9��5a�2�\u0012�<\\Zz�\u0005�&�ۆ��-�r��vvU�\u000b$�\n���r�B1���\u001d\f\u001f�\u0015��]̜����J��@��c?�:׿�ğdD�8��D�I��/O<��TH׫\\q\u001b��\u000bk��9^x���)RT�\u0013�d�������$���+g�%h��\\]F\u001c�|�5\"��=Z�\u0001��Ċ�@\n�\u001d\f�\u001fv��$M���D�(1B�S�A�\n��M�J\u001cM\u0010,\u0007eR����\u001e�\u001b�y'e�W}\u001c\u000f������}��٤��\u00072���C9{�;�mYI/��\u0000�\ny�U�1sL\u0014U,�`ͽ�����i���z��я�n}K�YҴX^�\u001f \\��`Cz�Y!�R�\\\u0013ڥ������އ����\u001f \u0017��ͪ�A&�\b���\u0002W��%\"�\t�} [>m��ʮ��\b\u0018\u0019��D�͖�d{�\u001b\u0002\u001c=\u0007Q�\t^�2\u0007�Ψ8\u0016\u0018�q^�\u001a}�\t|�*o�݆��\rM�#�S�S\u001c�\u001cB��\u0003�\u0019�\u000b�&&+b<#�\u000eǟ��\r7�m�K\u001d�'�?\u0004[f\u001c,+eFm�mo�\u00113\u0001)_����&���Ȅl�\u001a�3�D�{�5��I��0*\u000bˮO����.�9/�v�%\u001b���8RN�]\u0013X6=1�j���h�|�580\"K^5R)Y����\u0001\u0003��#0�H�)�N�o\u001f�R˗d�F3�&'^����\u00058�7G\n�`�{�K2�����>�\u0007�\u0017 \u0002z��I��[\u0017���)�\u001ep�)R�A#�\b���\u0013��B[e��S��(�Y���\u001a��g�\u0002��0*Nj�B��H{.L�2�N����|W�\u0017\u000e�f�i��Q\"�(�+I��L\u001d��sW�V.\u001d��\u0012-\u0015��{Y�S�V�\u0017�\u001d��-i�^�^�`@\u0003�|�eom�2�a>Dؠk��\r\u0001s��q�A�;b^/4\u0017bd����\\`F\u000b���ٶ���س#.�\"�cr��!�b`ޟN�\r�;�Y}E\u0012\u0012\u001e\u0011\n\u0017v���KI���P�\u0006�)���#u�%\t@p���4�D�\u0005��=\u000e�(���\u0002\u001fi֏�v�'�|�=��a�\u0013��![�d�B\u0006�H��d���]�#퇯.&�@�\u0007�� PsڭK��A#�\b���\u0012�$K���/��\u0004����^3��+�U�\u0019��/\u0017\u001b�ϸ�H\u0016q�j�A���v��Ug\u000e\u0013o��$w\u000eH�jd\u0001J�Zn��?��TF\u001c�����ឱ\u0004P�@6=���u�\u0006Y��E.1��T��ѵ�\u001b�@�\f��&��#��n�͑�\u001d\u0015�_~-��_�\u0016ځ��O/?��[�3���%�Y7�I��,4�;8\u0010x$���o\u0006=�$4����dBHB,e�^�I�g��4+\u0011\r+�#4gSD<�[?���J\t\u0012�\u0017kc�]��_���q\u0003I\"\u0015�U��ؑ���z��)3[�\u000bGn!�97¨�[�Z����kQ'�5�9]\u0004\"�Z>���\u0007�A\"�\bՀ�\u0000y}s�\u000bN���Z)!�\u0011��\t��%�2�6��m��\u0011[E$�\u000b�Z��*}ڼ������ƫ�@��t��8\u0005qc�O�\fP%�\u000f}3\f�S�>�)�C��\r&\u001c���o�v�Z�\t\u0006xj�=�����\u001b��5��T���!^m�\f��\u000e�\u0000�\u0014\n�n��)��\b�\u001b\u001b\u0013%I\u0010����-ԭ�t\b�5\u001f����S{����9�\u0015o-M-l~��b�EM0�.��J\u0011�\u0013\u0017Z\ts�Gx\\.����\u000eѴ��Y\u0016t-��F��B�j����`λ`zT�zM�\u0000�J\u0015�J:\t�#_q'�c�v�\u001e>�K�\u000b�h�-�T��>(��\nм\u0001�A#�\b��\u0001B�;|P+.}��\u0000�����y�*\u0019x?�@>I�\u0004;\u0005�yH�x: \u0015�MW���R&\f��I+����e�F\u001a�H,��\u0011�Ο?Z��y���M\u0000�2��]�r\n����(j�9�\u0003~���J%_�\n�=�Ӻ��d�ڎnŬ3�A��ĸD��x�J�YY/��\u001b`5�g\u0018��\u0004����[��c\u0018\u0000T ��[\u000b�R\r�)U\u0016��2��{\u0005]W�Y�Ճ�\u000f\u001b�a\u0004�/i�Ú�\rJN\u0016�+�����۹\u000epu�15�\u001d��\u0010&�\u0018}\u001c\u0001\u0001\\�����#\u0011��YI��b�@�C�\u0018��Y\u0012���1\u0013\u0007���M�0\u0011�Sw6�n�7<&1&�(<�.�A!�\b���\u0014O���\u0003!O���1�P^�3��P`�\n��\u000e�v/\u001b�̼8l��:vk�\u0015\u0015sx\u0013}\u001a�E�\u001dQ�Ս���.F����$ޅ�C=N�8娾�l8�b#�\u0016W�906;���\f���H�9�~�~b�\r�\u00033��݀�4��K\u0017�6[����T�ځa�C���Jb['�\u0017�x��WF���\f^�fj]J�z��8$\u0014�\u0010\u0004�\f[l%-�٩1�)N��\u001a\u0014z�\u0016\"\u0014([\u0002���ؠq\u0006y�����d��۷+�\t(Ȏ=����\b�\u0002�A!�\t%��\u00018�����q���\u0011��{ws��\u001b��\u0014YxJ��U\u001c3V\u001fo\u000bo��\u001a�O�$�@v/�\u0001�\u0010D.�����X���ǝ*Z\r��S\u0007��pOwB����D\u0019\u0000\u0004L��\u0001\fJ��|+\u0000rH��\u000f���\\s��\u0019x6�J�\u000f©�81� ��`�[�8�}Ӥ����Hgh��z��3�pP�/\u00049+�+/��]P'��oA�B|��E��:\u0013\u000e\u0019&\n\u000f\r�An�tc��=!�E���_\u0007���ܻ\u0002鍿iFU�`�\u0006*�m�Rq�`I-����IǾ\f��u��fKR\u000eU�<��$�\u000b���\u0015i�\u0012��0�\to�i��� ]�a�A�����A!�\t9��\u0013���*^p���\u0003�\u0004Q_5�f�@�\u000b�\f��[[��_dʂ��~�Z�'��{TMSMD�\u001c�\u001fq�n���}��tO�G��5=�sfuI�$�J�)��.C�����9�\u001bRA\u00026�pWܺ�\u0018\u0003k�_&,dP���>�Q�\u001d�吕~M^\u0016Pw,{P!u�>�*$�QjM_g�\\\\\u001a�\u0013*ӶPB�\u0015���\u0011�\u0006���57���-��\u00063�4�P��������B���:C�H\n`\"������\u000b�\nsV\u0015z����Ћ�u��.��)_V\u0017\u0019 G\u001dL�\u0004�#\u0003Y�\u00047\u0019�\u001b�\r�[K��Tj#��a\t����d2y���Z�oI��A\"�\tM��\u0013�\u0017FIq�\u001e�[��tZ�H,`\r��\u000e:U(�\u001d\u000fC��\u0005�j��*\u000fT,3�[\u0018.\u0000\u000b�x��O�O�\u001f���&�T>k7?r\u001d��\u0017D=����!\u001dd�-�l~��W'���\u0003�!Ϯ���[.f9�t�-\u0011L��O=����>��\u0012z�?�`��\n��\u0003\t5'���\n�L$?\u0003WQ,�\u001f�&�F�4jU�b+�Y�O\u000eb���n���[\u001570A���s��J�����R9\u0001�f�\u001bQ�����&U���j3<�\t�fe5S,Ukm\u001dRQ�K��f�\u0019jW^�\u001c�N�Z��� ��[�byGɒ���\u0006:\u0006���>�g��V���'�`\u0003�\u0016�:��A#�\ta��\u0001R9�_\u0017�jG\f\u0013�\n�L��E�\u001bk\t4��n�fpF�Q��m��r�;\u001b�[�#\u0002h\u0017Q3S�2�0\u0000��u�܆ސ�k?�d���\b�K���Ea[\u001b9vK��\u0006g_/q\u001e��\u000bɣA$�\tu��\u00018�Y�l>\u001d!T,��6�}��AȌ>���\u0011��L\u001d_\\x�0��8���:�W����b\u000bnZ���4\"�V����.\u0018^ܗO��p�\u000f_=��1�#�ڵЁ6\u0017p]k\u001d��T\u000f�L�Q=�k\bm~\u0014F-\n�\u0018!��vM\"\nՇ\n����^��Qη]��5o\u0012Uw\n�'x\u001f{]\u000eʏS��\u0018:�\u001c\u0011\u001c\u0004\u001f\b��\u000b\\�t�(1�I�\f\b=`�x��!�\u0017�4>aY�Z������z�\u001b�G\u000b^�h\u0014�1�\u0001�r\u000b\u0002��g\rC�c��us\f�G��5*�����׎��R/\u000fN�|C�\b�\"d�K\u0016�b��곫&�l�U��\t�~\rM�#�A\"�\t���\u00019�:�~2�|�׍\u001e\u001c\u0014{w��\bW�wXC��՚��a���J7v��l�Yל-al�h���!\f`9�:k\u0007�����G\u000f���B%\u001f:wL��-��A�;!\u0010�����\u000e��xw���X�U�\u001b;�\u0002�\u0018jя�d\u0019�\"��\u000e�ˎ1j#@��{�\u0010˽I\"}0\u0017\u001eop)��#�\u0006��*�񝚠F`\u001d��\u0019�^\u0011�(�\u0001�\tA\u0018[�S\t�'Zm)붼\u000f��Mt~0��%�\n۽��#\u0014\u001dc\u000f������Z���T�܄�!�\u0015�\u0012��s�D\u001c5��4{�\rY\u001e�m�#o�x�\b\u001aL\u000f���l[nq�\u000e�=N팟�j�8\u0017�ar��A�c\u0005�й�q��c�\u0003K¤��Љ�Eo�%����\u0001�\\�\u001a�)��'�r�Z���PUN��\u0005���A\"�\tŀ�\u0001R7�_z�f��]A)�GE�<\u0016�\u0014�q��\u000e�\u0000��S&��~\u001d����麟璫\fϤ���N�4�9�\u00166�Q��3��-\"n\t\u0012�+4����k\r�9y\u0011˝t�ʶ\u0006\u0005Y\n��3���3�Ju�]�\u00180�\f,\r<��JF�8��\u000b3�o4<�����ؕ�Ϲ��\u001ap�\u001a5\u0007��ʽ��s��p\fD'�\u0017~��'�_٣\u000b\u0013o�Gȿ\u0004��~_��4x\nB\u001b}\u001a�Šݡ�<�\u0014�D��L;�%a(��g�\u0004\u0017,�꟟�\u0013\\N�.3�\u0016\u000f�?\u000fŻK\u0006\u001c.#\u0014�P�d#���&\t�9�ȳ\u0004r��[�=\u001c��V�rħ\fZҩ�����\r[�A\"�\tـ�\u0004\u001d�\u001d3V��\"�6��G�6�\u0013�y��>�2�?|9f_\u000b�d�݋�I�u\u001ei�\"���l�Z.�KM�7�.A�q\u0011�:�[���@��u7g��H\u0003�-\u000f�0�4�s���O\u0014\u0005�������X�t\\�\ba):����+5\f\u0000\u001b#=\u0007i��1\u0007&�j\u0014�\u0000�\r\u001c�\u001b��ԡ���K -�ߚ\t����\ȑ\u0001x�R>\u001e�^l`L�\u0019�!���WO|�gb��\u0005�2��e\u0017����\u0001�\u0014*A$��`��ޗY�\u0019�Y��H���\\\u0007%���\u0006�L�g�\t͎@�,Es^��K��h�3�*2�Ѥ@ܓ����\u001a�ҫ.�Ys\t�\u0014A+�-K�kp�A$�\t��\u0001P�/\u000b>\u000e�Mei?�\u0016��4[�)��frf�\u0015�\u001a�P\u0019��x\b�ʹ��!:�AU�H�ו�d%����8�\u001a�7h�4{���\u0012��ǿ=�w��e���ˏ\u0018�X+Kd@J?# 7X�\u00121�A\rY,(\u0019�\u0018�5`v��eg��jN��v�,�\b�\u0014y��4!�\u001f¬\u0003Tw ��&�=h�H�Gz���\u0010�\u0018���d�cyi�ѯ��A�э+[��\u0013\u0018�\u000f���{KJ�Q��j2�\u001c^�O�{\u0018]\"�l�6����wA����U���\"E�b�ٓi�˔K�<� ՝��^��\u0004}\u0016T���J�\"��=(��ţ�ă�”H�B\u0005�\n\u0001��v�\u0004�5g\u0003���L{�z�\u0001��\u0006���f��l+�\"��\u001b�c7�\nW�ͱU�\u000bX�����2\u001e�H��\u0011V���\u0013\u0012t#\"���[J�� q���&\nj���XIԂD\u0016:\u0003���'w� �/�#\u0002�$\u0017�\u0006c\u0012�Bzt��+�Z��y\u0010�L��|�M]+2�\u0002^�\n��f���\":8���S���\u0002�\fc7fx���HR�Q���v�\u0019�t�|D\u000b��h�\u0013}][R�f��}\u001d�&o��|\u0012�k�\u000e��r��z�\u0017�R$DI|�Q�ӑq�\u000fc���@qj��A���2h쮲\u0001esg�:j��=G�����YZ���i5�\u0019S����q�Ԍ�,\u000f\u0012�[�,\u0004�-\u000e/��w\u0003�\u001e�9�\u001e�Q��>��\u0005��1u3\u000f,�\u0004�\u0001U����l�(r`BN�6�Y1j\u001d�M�]F�;ܪq�Mi�t]�\b\u000f�\u001f�\t� ��;��G5� �$\u001aR*\u001d�\u000b[�2�\u001cʫ\u0000\u0013\"�����X�|�\u0003�㑵!��t��d��Uv����ĒN�\n�C����K_\u0001\u0002����h�\u0000󧖥3d|_��\\���uj6؃>�]?aP\u0012�s=�\u0006����o&$�IQ8���%�Oms�S]=��A%�\n\u0015��\u0013��0�p\u0000�\u0018hn,���&�B��0��d8�g����v1Z{��\u0001\fw\u0006~}8\t[\u001e�>|�UUl��h���0�Π\u0006�\f\r~.\\�G��!��{�\u001cY*E�,\u000f+8�9�M\"�ۀ�{��S�\u0000���M�Xyj�\u000b3\u0019�.���%D\u001d��\tѽ�cy�eR\u001cq\t���૩W\u0015���%�T�a\u0013���Е��À1����O:�����=\u0014nd�8D�37{^��}���e�\u001b�n��A$�\nQ��\u0001Swh\u001ci\u001c]F\u0003�Ւ�Q�\u001e�\\HJI��yN�p*��!���|KM����]�\u001fո�hK0l�wC��*�}��W���\u0017X�yBq\u0006��L�\f��E�*����\u001eXWL!R\u000bEm\u001d�+&�V�۬����0�P\u0014�V<�\u001fE��s(�ʷ\u0000�$�\u0006x�/=���\u001f1�\u0006w�~2(���p2O�d\u0015�#9\u0013�?��`�8�z�h�\f!\u0014��|�G���9��L~�\f���zq��*=̼����\u0014s�\u001c \u000f�.�P�\u000bie\u001d�;9D0Sz�;��=�\nW��i#�s�a�@fX8�lh0�\u000b\r�Q�Nj�Կ��{���C�a�\u0000\u001a'���\u0003@�Aց\ne��v�m���8��6kRF2��\u001f�$�\u001aO�,\u0007�\u0004{�\u0000�튊z�܇qNXeP��MY3y~\u0011���\u001b��0�z)o\u0019�������EF,��{\u0015���<��(9A\r�!\u0005��;�����r�yʸt\u0007}U\u0010\u0017��s0�gK�u�{3�ӟ�H?�2N^�\u001f�+pa\u001d�`\u000fk&��ٺ�}��P�\u00111E{\r\bM�\u0005\u0011٭����lX��\u0003��MA�v�:�\u0015�@�'���V�X���\u0018tyF��&\u0006����2��H��\u000e#�\u0018�c�\u0017�h��?'Α�ؿ���\"\u000fk��>���ZW��8J��8�q�W8@��q�'j�l}�.b޲�y�1;����oɮ悪�o�D��q��E\u0017�\u001f���ߛ�F�ǖ��?\b\u0006;S-B�K�����hQ��U\u001e��@Q�\u001f&*��\u001d�S��!��\u0013�!���>0\u000f\u0007Cp�\u0001y�#t��f�4�\u000e\u0014d�\u00160>/�\u001bN\u0019�[Q�*I@������`�)=I����7bԐM�I�2X\u0005\u0006s�\u0006=򣩺��\u0010�7|�p\u0006|wߝZ\u0017-2-��H&?�A$�\ny��\u0015ң�KZN`\u0013�\u001eu��Z�?������' fu������8{�&N\tѹ�x%];*�hs��l��ݮ ڇ�u��?���I�^ip��M�j�Z\u0019'k�\u001c;c�{��\u00059K\u001a\u0004\t\u0006����:�p��\u0014���1\t\r��I�\u0013�\u001c\u0010q�S|\u001e\\Ғ�g\u000bH�`�k�Æn\u0010'���8��@t�c�a\r.���蟌N#\u001e\r��\n�+)\u000f1�C���͸�7�\u0019\n�*ɓ\u0013��m�i�\u0001\t��{H��R�@V��Z\u0004\u000f�>\\:U&�{���\u000e�`Nx5=�]����¸���\u001b}$Ȝ�����g2Ȟ.$�,����߲z�\u0003t����T��A%�\n������\u001eSX\b��i�\u00104��=�m��B\\ʫd37z��eg�\r��C�����X��=^��X�\u001d����]���e�?\u0013\u0016����'x9�\b�H��8\u001d�_���KI$k�d?#�<�B{�$g��MN��\u0003�\u000f?��\u0004;��l�\t\u0011Y�\fH�O|yq�K�\\EX�]>:0�6\u001a\u0015�!~�t��FTҞ����Ϩ�]6�\u0002�WSp�c,��DT�\u0000\u0017sN\\���.n��ڡS\u0019\u001d3��je*w�w��\u0002$f�/~(\nq���g���7��*\nE\u0016q\tc^M{5\u0010,�?�[B���\u000e�b��Dƾrᵴ\\��/\u001b\u0002upgn�{\rW\u001bOR��\u001b�^1�q�vcW�p˭\u0011�����\u0005�I�#*bƕh���.��0�>\u0007�A(�\n��\u0000\u0016�^���*��u(�b7O\u0017�)�a��s\u001aL8\r\u0015O+;��*�Q�E\u001bc�h�\r\u0015QG]�\u0005�?�\u001d*\u000f��o�`�%�X�\u000e�0�v��wȈp\u001cx�Dxe�k���*���!\u0006-a��q\u0012����\u0015g�����P�`)N�9��3�{��<\u0010\u0003\u0015�[�\u001c�_\n341�U�zi\u0002��*��_΍�i1.%�\u000bԄ�h2�Da�\u00153��\u0003\n\u0001!yw��?3\u000e�ق2�\u0004��]��Cy3\u001dD������\u0013�J~\u000f�q+�tה�7_E<�t�.`<���ԑR^�5�h��t@7`��\u001f���\u001d@�\r5�'�S6и�T\u0002~���&p\u0014��\n\"c\u000f��A%�\u000b\u0005��\u0001�\u0016_~�t��\u00017�Y͵�\u001a2�*V[��w���p\u0010���$�̊\u0007\u001c��)�\u0000�³k��J�$c1�\u0013:�B|4�[Is��7�4�\u0000;�����&pS\u0016����\u001a>���<2�(�}*2Pc\u0017�y9H��y�L)\u0001�\u0012��\u0000EX�\u0014*�J��]�v$��\r�X��� ���ǩ��$�`�\u001bN\u000e[T��`v5,�[\u0004H��\r�s-3���qt�P\u0017�rK�_E~K\u0016L��6�Ք�Ml�\tP`D'��\u0003�I��=\u001d\b����\u00154\"F�-֛��<'~fvr�&���y\u0002�q~r\u0006����\u0017�\"��Mzߐ0^��\u0005K�f�R�01Q}�F��f\u0016\u0018�]Z�F�씅)@.�A\"�\u000bA��\u00019\u000b�\u0004~�\u001e�\u0000[,N�C\u0001�ҷ���L��ʲ`)��\u001dj�\"\f��K�t���N��G\u0007\u001dy�'�\u0017!�X\u0014�l?�\tF���e�2�M�K�D\u001c�W�DR�H��\u001bH��䤴<�&\u001a��Jg�\u001d\u001dS��dGP\u000f\u0004�\u0019\b\u0013��K���Q<���̉\u0000U8藓�mT\n�f�˗%��9v��(~�3�]��lí5O��&�B\u00176\u0014�#��Iu+\u0014�\nL�x-ڀ���L�\u0002��K$H�P��L[69.HCR�\u0013�\u001d�\u0018��To��J�4�;b�\u0016�Y�\u0012���\u0002�\u0003���Auc\u0007�\u001b{\u0002\u0000�\u000bt�L/�f��i�Sh�l\u0017��!�\u0012���A'�\u000bU��\u0003u\u0011���<�-\u0015Eؾ�x H\u0013)�-�83���0K\u0019M�v��Y��I��@��o��p+n���'��\u0013��2\u001bS�x��-\u000f�\u0004�鳀D\u00125�8�M�p\u001f�\u000f�6̷�\u0000��\\n���2�]VLc�G��g�P\u000b�\u0004Gg;��\\�w�\u0007��|K�����J�\n@-z�Dm���·7\u0002���t��D̓\u001c\b\u0000�\u0016,���Rv��7�\nmi��j�/5p��8K�ee��\n��C��O&g2�d-璊�U\u0016~%\\\f\u001e�Z�ϒ*єM�\t6����Ȕ\u001aG0j3��� ��\u0019'd8�\u0010�떬����e�\u00157o�\u0013��I�.؊팜��S�X�� x�A%�\u000bi��\u00018�r\u0003��QXޚ�A��~\u0015J��\u0018R_,mN�\u0013,����ʍ\u0019]\\?���?�\u001c�-�1k���~$k/\u0014e����G�\u0018�\u000b���寯�~��\u0007����$Ԋ׆�*���\u000e�::I�X��>\u0017�͐5\u0005Ԗ#����`�x\u001f��S<�w�\u000f\u0018t�ٽ\u000b{\u001eu�ߘ7=�O�\u0018�8��\f#\u001a�4�<��ꊞf���q0\u0004�%B\u001d�-��*���<�\b\tL�ΏB~���51ݠH\t�y-���(�\u0002I�\u001bW��`�m[_��v�5>���ՠ<�d\u0018�H\u0017T�\u0011�(��V�\u0004��q�m\u000b�u�j�ο�I�\u001bU\u001d�-�o.\u001eVe�yjֺ�3�-\u0018�A#�\u000b}��\u00018����D0\u000eg,R�@F\u001a�$c�l7\u0010�����\u001cE]��D\u0002��\\�!�-�c\feDq���^���R���2��;\u00052�瀊��>J�lW_}�O��!#�fq\u001f2a���Uz\t��\u0014{��\u00162P�b�P\u0010\u001ah�$���o�Q��\u0002�w��\u001aD��@�t��\f|�Ϭ����kK���cWr�[L��s:�ĵ0>\fΝ���Y��P���6��|D\u0014��o�G�t�w\u001f\u000b��x\f��&�0��\u0012�M�8�^TS���v�3\u001b�a_葋�\u001d�,�\fI��c��5\f��~[ɣ�\u0004�~���ct���-��˹�܌�A�t�Q~\brd�A%�\u000b����\u001eZn�Z��?H�<�i�[\u0011��}�馍�\u000b��罂�\u0005��\u0002�0\u0002cB\u0001���(����\n�ݩPIy?�8d\u0018$�[\u0005\u0005�0��\r��;�4�U��QF��Cǂ\\\u001f@���#+���xn0f�\u0019â�\u001a]�\u0000���\u001d\u001fu]V\u0013�}���[c���k�J����IjiaE*��R��Z�\u0007&O�}:7:�\u000f�!\u001c\u000bw����,\n�7�\u0018�*r���ü1#�Z�AueK|��.\u0007}��5�\u0013�Gg=$���G�m�Lۋ!7C\t~���!Z*\n�\u000e�����H��Z*\u0017��O�\u0006R�\u0016yX1*Y�A�X�Ye)����\n]H�\u0002�:����eP�A&�\u000b���\u0000c��g��^���\u001bL�`҈��:�\u0001}�=����V�)U�����8A1�ĕ�\u001eW\u000ft*�p��\u0010�盒N�����Q\\�\u0005�^�f�X\u0015�_O���\u0004��2���6��\u0010,�D��vrK�_��i�\u0014\u0017\u0005�PߡKC\u0000�5�IA���њ\u001d���ͽ�\r��;\u001f�]��x#�\u0001�r\\�\u0007�W!\"�j�W\u0004�%w��\u000b\u000f檻�4F\u00123�xXAd��\u0017�?\u001c\u0018� \u0000\u0004��-R\u000b\u001f?�\u0000����,���oIf6�\u001ar!��ԑX91��%\r�}A��>�\u0004O���\u001b:��\u0014�C\u001eND�ONx��Bc��+\u0004'��\u001c�����\\\u001f�\u0013B\f\u000baK�\u0005>Y����3r��\nǢ��Xĉ�c��A'�\u000b̀���4!'l\f��y\u0014�E���&ކ@d�����\n�u\\/`֛\u0014ۢ�)��E��+�<0�{�=�\t��\r��\u0016\u0018��\u0011\u0002�!“\u000bsv̛��8��Ke{�-��C�\u0005�I\t�ShE�C_�\u0003�im�S�,@���sj%��\u001e�zU����\"����DŽ̑;x�s_֣�\t���\rG\u0017�Qr��sYn\u001e�2\u0018�[�y�����L}xh��n+���|c�n=�k�0���\u0018���śo\u001e��t��ؕ�\u0016їiB����\u0002���#�iq&���Y9\n�\u001e���\u000f)�V�ib�I\u0015A�`B��I�\u0017\u0013vE�\u0006\"h�\n�g�[�\b\",�\u0014�ke�):\n9G��\u0019^�M0�+�A\"�\u000b���\u00018�s\u0003�Y\u0005�3�*�e\u000f0��\u000e�\u000b\tw��\u0013G\u0010�&��f#Xo-,�\u0016,��iU$��@�\u0006ln�P�:\u0007�\u00107u����5�ډ���Z>r�|�Z��OIC\t\u0000��|gU6�\u0016��\u001f�md\b\n�P\"T\u0015e!��\b4T�\t����I|�F�`\u0000,�evS\u0011pn��\u0006�F���!p�\"��$o&\u0014�\"�Uf�vD)S�֪�\u0006���7�8�#vDfnQ�j$�h\n�Y]ZU��;C\u0018��+#�4��\n���\u0017�1��8�\u0014�[/��o�\u0014m7,z~��ޙ�S�]�7j���.�������\u001e\u001bw\\�\"={Z�I�Fx��N�Xv�U��C;Ox7t��h����r�p���Tē���h�O\u001d��\u0007�3�5N]IP)���^��G�Ū\n�\u0002[��\bs�n8\u0011C�f\u0003\n�����\u0004\u0011�)�n���n\f��~6�ٳ��������\u001a\u0014.so\u0002�����\u001b�\u0016x߆�2����\u001f���WIʢ�Ú)��\u0000��U���荍��T���ܑ0.7\r������\u0001�D�c��?�ʃWk4Ⱥ�:�TC:_\u001d`�%au\u001a��^���8\u0007n޵�Eһ���~X\u0014\b[%�A$�\f\u001d��\u0016[�\u0003�}#��I2\"���.\u0013\n��#���\u0007�E�ϋRM�\t�?�y��-�׬)n'�\u0014\n\u0014e��e��}%�q}(����ּ�:4\u001d�5��ӕ!͵���*�{D-�:�\u0016��\u0014kA��\u0004�:죶\u0006 ]\u000e\u0001�u�A\u0005'��%q��\ry\u0016�>D��)f~���I?�SZ}\u0011�\n\u00031�#�gڣR�e�6�F�����\u0013H\u0016�;�O�}\\y�.�ë�KSMk��\u001b�/~xw�����8�\u0017�rP��u�ntjF)\u0016G����B0�\b�8�W\u001e���)<�k�U���>�)���\f\u0013pD�\u0007�\bf�;.J>o���c�o�\u0016��.���A#�\f1��\u0001>�ў\u000f�k�Z���D��xşG�\t��B���D��\u001a#H��\u0005�\u001dT\u0016X\\սN\u0012?�N\u0000έ�\u0002�XTZ��S\"Z\tM�\t��k\f��\u0010�\u0013X\t[�\u001ech�ozK�,�r�eR\u0012RbW��j̟K�\u0017�(9�S:�U+�u\u0001�\tdCp���\u001e_�\u0017�dXl���;8��������Dr�}mR4\u000e�\rR3�5\u0005�j惻\u0006���b��LUG��|�\u0007�\u001bO\u0002�m�\u000f��TܣB\u0011�U�j�Ǒ��VkՆ�������-1��\n4=0Yէ\u0014ӡ�\u0019iW+��\u0016̍2�{0p{3m�i�a��$�]<�G�߽>�<3\u0017���=�-\u001c�A\"�\fE��\u0014n�\u0007���\u0000����m��s��a\t\u001d�[�jE\">h�ϩhn���\u0012�@\rE-3\u001c�\u0005��9,�=4\u001b��'�&L���>\u0005��-�k\u000e>5f���u���.�C#���\t��\u000e�)\u0013�q\u0015�\u0001���i�\u0018,h��F5��(\n~\u0004\u0014\u001b!�^�+�N�\u001f>�����ƱMR�#��ϳ:�>�Er~NM�\u0011џB%�1h+�])�Z9���S9���B��k�y��J�\u001dg� ��=N�/�\u001e@P�P����n�`]��^��,Wn6��\u00017o�\u0018/\u001a\u0002�%(]\"�9����ux��AQ\u00042��!�qMX�e�\t��\u001e\u0012\u001cl�;֬X\u0014�\u0019��yy�6􊱳Q�bg-wu��,��`�\u0003�rfH��c�m��>�_?�A\"�\fm��\u0014O��sĤ7=\u0014q\u001cլ�[�Uv�ً/zJ�� 9d��G\u0017\"O�Z���vǿ[�/o��d羄P�AG�\u0000\u0011P���\u0002�\u000b����.�tA�����\u0014\u0000�0f,�ڴ����\u00035��_��̖S�U]�P��N�\\$��AO�%k���u%B\u001f�$\u000f74 �Ϳ�`a\u0005=h�a/�N �yᴹ�h�IP/��\u0011��/\u0019�kw����i\u0015\u0012P�DA�\u0006����v��0�w�Bu\u000b\u0010����V�ʧò�x��R��\u0010\u0002\u0015e�)�\b�@�&_a?� �����H+�&ux�A���\u001f�~�\u001fm�\u0016W\b����\u0019\u001a�\u001c��\u0005�\rHy�զ�\f��A\"�\f���\u00019\\>\u0003<\u001c��O�*'?\u001b�g؟��K��9]�\\O�}r�!��(#<���H8\n\u001fs\u000e\u0018;i�s�\f�j�YVu�~œ��/\u001a�L�G��c���\u000f��[c,+BۺQaz�*�Q�g��+{��\u0013ݜ\u001d�p�I%1=b�\u0010,���c\u0000y@�i�W���sZP�D��\u0010E 6r8\u000e5C�|\\��w�q1튦8�U\u0003g�\u0001�:ő�2��d[�wŎ���F��$%�!L��\u0015\f��\u0004Q��J�q�{�A�@�۱Ol3{:rI\u0006(\u0002��/,�O��}a��\u0002fć��\u001b�`�����\u000f�N6��Q[��GjcH���;z��m���R�A\"�\f���\u0001K̮A���\u0017�g�Y�B�`�\\��&c�\u0012l8kX��\u0002de�\u0012H\u0019V�z�-��C՟A�f�A���)�p�ED��e�†�R]��3�\u0007�I��s��ݺ���65�R��,o�\u0000\u0016\u001eSz��:�\\.=��K[�b�\u0019gpWG�-�1����V�(\nyH���\u00030]\u00129bB�a|\f�\u0018�\u0014��T+\u0011se�\u001eG\u0004���׉�)\fN\u0005 wU6o\"����#��V'�k7��+)28ž}��\u001e\u0001\r�9\u0014\u0010)����0��a���Ȇ�o�4)w\fm\u0005�\\��\\�؎��>\u001f�O�U4r�\u0014;=\u0010\u0004\u0000þ���\u0013:\r\u0005���_{j�Q�-�\u001b�A%�\f���>�i�XU��|()����!p�����d\u001f!¹\u0013W�ܸ��\fM\f��4\u0016�7���\u0010\u001e�Xx�\"��&��9��<4{�CL�w�\u0001m\u0015N��;H���ÎF\u0017\u0006���\u0010=���\u001c\\n�G1�\n��\u00018\u001e�W��uM[�aU�;R�\u0005�}���̸\u0014m�l\u0015.�\u001a����Yvn-��)ÓN�I:\t\u000e�D��`�\u0004P0�&\u0019:�H;,�fEO\u0007�h�Z����\u0005z@�\u0002\u0010\u0006�e\u0018W�\u0013�|O\u000bX{;\n1or�M`o�����\u0002T��y\n9.\u000bQ�(�8�3ww`��\u0018<��\u0007��N�\u001cM�\u0017\u001fQLy\u0014<�Ph~8]���-B\u000f\u0015�@��ew\f_�N�A\"�\f���\u00019\u0000ҫ\u0014���� J!�:�wu��$F����\u0003E)0]�N��\"��8w�>Ԙ��(�шW���\u0018���\\+n����R�*e*�+�K�|\u0000�&\u0001��1�[�� �@�I�\u0018͋�Hs�\u0002�\u0018���F}��R�\u0016@�jD>l�/�8iW���~��辁e�V?ّ)\f8��,��3튌I�˪dz��|\u0000Y�%��'�H׫E�'\\�\u0002����>|��WL��7�,�\u0007\u0005�PW�\u0018�\u0003\u000e\f˴�\u001d�\u0003u󃷃\t40q��ф�sd\u0012���Y!��NB;>2c��@x��W��X\\N�*>A���;�z�\u0016�\u0004��=�*��\u000f\f`�\f�����З�X1k\rnI�駣��\u0006i�\u0004lΟ�*2\u001ez��c�\n���\u001fz��g>�:\u00033w��ڶ�O\u0003��A$�\f��\u0016��a�OJ�\u001azx��wh^�S$w��\u0014f9���V6�����0�\u000e?\\6-�1գ@u]����\b��xZ���%a\u001a\u001e�Z�v)���_DzƦa�˖��C�6\u0012#��X��~�R�C\u0007J�o`�]�Ƈ�1�3���x��\u0005�)K��\u001c��>\u0015�\u0013�\u000e�\u0019\u0015'�^����\u0001%k��E@9\u001c�B8y���m���\u0002h$J5�VA\u0004��\u0016{7�H��5�?K�zQ�:-J'\u001bA\n5�69,��kB�Q���\u0015k�⻼\u0000�E-�\\\u001e��n�A�3�_i��.?�|M\u001d�\\�\u001f�.����c�\u001aM�XC�C��\\C���\u001b�\u0016v���o:�6�A&�\f���\u0002XL���\u0001-\u0017��\u0007d-&�,\\�����F�����;�\u000b�'9oQW\u0005\u001f��i7c]�F���Q���a{C[+�fdt�딲\u000e<\u00029w��̀±��-�Q��cMLi�`�Y?\u0018Y�86Ԏ������S��X��W�g�\n��\u0000*mT~1\u00179[1�����\u0005j�R�g����\u001f��\u0015V6���\u0013;������\u0013]�0^��ശ�jnR\u0003�Ѩ���\u001f7`Nb��`D�w�YnWr�\u0011;\u0016�[50k��{�\u0002\f%3�\u001b!�&=\u0012�7�����\u000e\u0016�\\��c�\u0003�n�j<}�|.@U\u0002��L\u0017\u0010�_�\u0000m`j�~�p��1\u0006�#�\u0003trIu�\u0000�A#�\r\r��\u0010���${�m\u0010UB8�e���\u0005|\u0004愕 \u0004-�QSw�\u001fai�����r�HH�\u001d��\u0011`ر�3�]���^����\u0002\\�BV�D�}o�*����8d�\u0019�\u001fا\u0017J�.\t�'n?�sI����x�o\u0017�7u�x��]A@R�\u0012\u001f�$6��0\u001c%\t\n$\u001a\u0000[%h�hF(�^�=7\"���4�{�XF�B��%�8���3Ԑ�F2Cʎur�ji\u000e:\u000f\u0015��y��ExOuO��\u0002��徝\u0019a���04dd\u0016�]c�RR���Q^\u001d\u0015f���\b\u0019\u001c�\u001f��\u001e'j�$� j'�ߑ�\u0013�~�)�]xR��/�ID�\u0014\u0018g����7\u001e��U�)\u001a�F�O�B\u0018�\r!����q�рfY�ƾ>��w���s\u00120�\u001ds��\u0010\u0011�'�\u0014s���Qw�*\\���\u0016&�٫|M��\u0002\u0014F/�9,.��4Egq��|�\u001f��\r�w�'`��\bf/���N\u0005�%S�\u0017?h�$�>\u0012|\u0016px�׎�q:�\t\u00054���\r6�zd������F\u000bS�_�Zb��\u001c����?��9��d��8#�:v��K\u00170�F\u0017i��h\u001a���xi��\u001dU\u001d�/Y~ٍ\u001e�K�\b\u0002�{o�p���de�ޱ ��\r\u0001�e��L��M�ו\u0000\\\u0001�=2�L�|nC�\u000e{�\"�[�O\f� Y'ZW\u0005T�'#�\u001d�R[{\u001e��\r;�����m���S0�\u001c���\u0018hߛv�\u0005�g!�h1��g��8ԣ\u0015�۔����ЌTї��\u001d��x�VV{��\"5�O���m��vG�\u001aS�j�\fJ\u001d�9��\u0005�J�\u0000p`m\u0010K�c<�\u000b��\u0018\u0012�X\u0001�=\u0014����C1Ixi��%����:\u0003��,�ݸ����\u0017n�\\cyCL��|��\u0000\u0010�\b2�\b3�}0�'��|�O���\u0007��c�����VZ*Fy�r�#�\u000fW{\u0001#���G��T����3�I��p�\u0003���Ŀ�\u00116L�kR��?&�uĜ�٩Lb�\u0000\u0014��A$�\r5��A�\u0001\u0012ɬ��_4�\u0010d�\n܆\u0017�ҳ�\u0007��Ɋ\\\tx��#��\u0019���]�v=��\u000e\"�\u0012�rV\u0002K��\u0005�\u000e����-*P�@\"o_\f���*�WC\u001aRhM5�g)��cqh\n9\f���ʣ\u000b\u000b*�{\u0016����1��\u0015��-N ��!�\u0017y�\u001f�\u0001\u0015콀i�h�uP\u0002Hd\t78\u001b�QW�&��[}'��!/w���P\u001b7����\"'\b�\u0007����\u0013\f�=�\u0018\rZ.:H^�ݺ~��f6Uf�\u0016�07�L�\u0001fN�WP(�mb�.cq9��\u000f�*zʥ��®\u0013�0*�'�a�w�#���\u001d�\bs�\u0001\u001eC<͸P���BeL�̏\u0005^穘�߿�A&�\rI���&�U�\u0003\u0005\u000ff�\u001ey�\u0007��\b�>ۍ�vwq�J\t�,\u0010\r�r!���\u001f�AuIK���?���C�\u0011��%\u001c��2��\u001f�>\u001cJe��Y��\u0015\"\f�������ޚ�P�'\u0018�+��S��'�m\u0010��\u0015\u0002�@+ A΀�\u0007�\u0006)j\u000f�0�$$z����\u0006 \u001bXٷ\u0014�\u0011��\n��\u0015�E\u0000]����V\u0000r\u001f�c\u00127Q�rL\u001avL;~�>�\u0000\u000eB�������ϩ�t�\"�pg�[͔\u0019Է��'�������V\u001e�\u001aY}�\u001fLs@>��$�U��<��������\u001b~\"�Q\u0010IZ�-�$2�CU�o��/���e\u00196��<��\u0013\r�\u0000���P�A#�\r]��\u0013��3�6\b�(b\u0014��F{�\u000f���\u0011�w�ۗ�Le���@���F)���4k.v\tܐ���\u0019W���D���-�������OWZjP� �1;�J5ٴ�\u001b\b�fkrӢ^PJ�h\u00000x7@V'\u0016��\u000bH�Ʀ\u0011X�I&\u0017|��4:��6��1���\u000b\t V��D�\u0015`��\u001d\u0002N�\"�Z�7��\n�\u0017�w�\u000e�%ru�\u0007\"f��%G�睃A��8�wd\nb�F1\fI���N-ai�@\u0000���\u0014͛\u000f��\u000e1I�1�{�Տ�\u0013�u;\"D��\"����\n�\u0000\u001b\u001do�ػ���u�7�V�+\r��\u0001ǐ����c\u000ed���:\u0016\u000b�:���<.\u0015���\u001e��3�^�\u0018]�}\u00196��>N\u0016\u000f��\u0017�y����\u0018\u000f?j}����\u000f\f������Q�\u001f����\u001e\b�qu���%WzC�\u001d�+K6��\u0010�-�g�W��&|\u0019��x�F\t�H�K\u0018����>\u0001L�\f`aH��z�Z�`���(_l��\u001c~\u0003{���G?�\r���=��`P�SZ|�\u001a�3k!VA�p�B�1��\u0002\u0004�fc�/\u0017\t��j��\u0013\n�kW9��Z\u0002w\n�SɪQ6��\"\u0015�6�\u0015�9\u0006����ά�\u001f�O���ZL�����A$�\r���\u0015�\u0013�W�@ f��R�3����O���\u0002\u0011�\u0017, @/W�z�\u001d�Ԧβ6�$B�\u001f\"v��9\u001d\u0006h�\fo�ǖz�Z�̸���\u000fE!\u000e1���6���\t���[�x��ĺ\u0017o�0�XH���L��N���(����ܜՅ�\n:�,uN@�ME\nk�G8܄\u000bU�bZ\u0001Þ�/��ͷ��r&\u0003�I!�9�Vt\r6�!�R��v�`�\r�g|���\u0018�\u0016��\u0011J�j� V��� ~��?\"�\u0001;�;�\u0018:�zf�\u0000DS+�s\n\u0015�6ѿ[ұPf'����MQ~(X��\u000f�v�\"�%᧮�����\u001d&5��b���\u0016�����m��\u000f��A#�\r���\u0016�\u001f��� ���\u0001��\u001c�f?\u001e�����{\u001a��e�\u0002�1�J���\u0019ɃC�y��\u001a�n\u000f|\u0010����xFi�\r��\u0000\u0016=B:6��Μ\u000fʢ�[�O\u0010�%k[��\u0012(�(���*�\u0012Q`q��j�\b(�\u001b�����~�i�:����l\f��;��E�T �Q�ǿ��L�y�&��!\n����*��T@����\"4�1Tt��O�pD뫙�\u0001�\u0006�e\u001bLb��7\u0005R\u0004��G�\u0012j�|\u0019�!]3w�%�ʚ�\u000f��B�=�\u001f6\u001d�,�-��(\u000b�\n�\u0006k=�쾼N�\b��c��\u0013��\u0011u�\u0004^\u001bu��3.�ȔTr#�\u001d�\nBl�R������\u001c�A#�\r���\u0001L��\\s�\u001f�\\\u0000֫�-�\t\u0003�l֗�q㶼��\u0018�\u0002��u��\u0004��L�U\t&\u000fU��Ϻ��:��wY\u0012�\u0005�.M�R2iOA+ά%���@a�Q�\u0006�\n\b%;>���s]\u001a�L�C�\fU:5\r�-Y�I1��7�\u001e:���!�(A��p����\u0004��e�\u0005+����\u0014ck�@��M��XŘdBt�u�V�ܳ�\"��}}[Y�\"��G�\u0018\t)�^i$����%�5\u0007*�'�'��I\u0018�Ԗ��`s��s�C��WK��6ٞ�\\��\r��Vpg_�M!@�89���ˢU=����$v��zv\\�6��u��\te���S�A��\rՀ�q6h��ՄJ�u���\u0002�(�7h\u0007��e�_���\u0002$8\u001e�\u0013dU��Rx%�\",\u000e�G���ӆK�z!\u000etΞ��\u001e�7JE\u0018y\n`�L�\\���\u0011����n��)'zK���\u0017t0JCLK��wI����7`�\u0016C��\r@D�\u001chfq\u0013�Wt�\n���\r�� ���S�g��\u0006�٢�2��u�O\u0017���\u0010pO>����m�tEW\u0016hI�H7���R�5�X�u�nցud_�\u0000\u0006R��\u0011ဣA#�\r���\u00018\u001d�g�\u0012ܓ9���\u0003�=?Bl��\u000fx���\u001dL\u001b�\u0018���|���\u0000�\u0004�\u0012;�\"�Tx��i�ݖ��Y�Af6�\u000e��q$�\u001ew�\u0013�����V�J��)�!�]�(�z��\u0000�K�\\\u0011�8H���6(�*�(t�G�Kۛ\fp\u0001��~\u0006���k\u0018�ŖW�\n�.3G�*\u0000�\u0000g�\u0005l\u0018�m�6��և���-uW�3�ݟ��>�\u0010AD��p�\u0011�ݺ��o\u0001n��V�?J\u0017g?�X?\u0016$��R�\u0001N��N����y�zx#=Ll�\u0007�f�GR\u001eaG�=6�u�\r�\t�\u0017\u0013=v\u0017�D����'(lT\u0017�ڐ�E���Z�\u0005�/��-\u0018\u0011��ʏ,�h�3\u0002ٓL����\u0019Ub=�\u0017x��j1L�\u0002��F���\u0003Q��\u0018���iy0܃�\u0014V��\u0012A���FE\u0015\u001d_\u000e�ңA%�\u000eM����X�ٛט)����Ĝ�G\u0013���r9�\u0003\f�#N�ds�S\u0003~��\u0018Zl�(�~b]��\u0006Q���+gڼ�lX�r�g��xN|���\u000b�\u0002 �/<��tg��i�4Ŗ\t�z�H���]U�\u0012\u000eu����MQ�`\u0006�!�O�4v�H�*�y�d'��B��J�8I,(Ў��ب�S��\u0015��o4�\"9z���\u0004�Bz�����\rg\u0016�X�\rAA�c\u001d��ί�����ә�\u0011��_ԩ\u000fG��B��G\u0014P�m4i��\t����P,�\"�;\u000fIx�=TƎ�\u001e��2�Lq�do�\"6�\u0016�\u001b\u0010�\u0005�d1��Vʮ�h���r\u0017?}�A��>\\�A�\u000ea��p�\u0004���\u0007��ê��;Gc\r\u0019j\u0016��6N+bwV��{2S\u001a�\u0018t� ��\u000e#� ��3B�fꖽ�\u001d=ᱢo\u0005�\u001ce\u001c�1�9q���b6G\u00137O��\\\u0007JU�\u001c��f\u001fe�%A�\u000b~q���x\t�O�|\\\r,7\u0001�?]�\u0016�dH\u0016�����T�f\u0004\u0007�^�%(��#�\u001e��p�.P�w\u0012Z)!X\u000f ذ��\u001anroU��_۫��\u001dҭ��/a�Q:H��׵{ οޕ����b�\u0017\u000fI\u0007F.\u0011��{LV*X��{��+� '[�JB�Fސ\u0016���\u0001c϶6\u0016���.��X\u0015AV�6N5�?���'�؟�CY$K9Z�Y$r�Z(\u0013���\u001e�\n�3���<7�g�e�Ō�&-\u0019\u001frVfq�����:/��/�'-i\u001b�W[��\u0017�c����'0���=�(\u0013s4�&�nlHoJ���\u0013Z�}\u0004/\f\rQ�\u001c\u001e\u001e> ��ţ*�O�\u0005Q���p�$˲Nx��.�r\u0016V\t�:%�8y�ٿT'�.��\u0004ƍ\u0018SGh�̶���\u0014K��ٖ!.�^�5�i�p�L눑M :�q�Լ��\u0016\u001b?�'x����3OP4Z \u0016���A%�\u000eu��\u0016T��m\u001a7\\����\u000ex�@��%W�fh(0C���ƭ' ��u\u0017����v\u0002�\u0002�=l�\u0011\u0005KcN��=K���G%�1��5N��2�͆���N���\u001c/i�^^@i�H\u0007�g��\u0012�(�}\\�׹rtS���_�\u001d*\u000fal\"^˵ڎ��t���m\u0007�b��ew�$�z\u001e�G#\u0001��\u0011�T�\u0017��8q�nq�{O\u0015\u000f�(\u0011�F��?���!\u0010\u0017J4�&#���sQ\u0011�#�\u001b��d�\u0010��\u0003������ O�p��@�A!�\u000e���\u0002W��*uU|���{&�\u000bO�R�\t:l(L`�\u000e����\u0015.�D}��Ě[�]Ƞ\u0013��?��\u00135\u0002\b\b�%ua�O��1EJd�@���D�\n\u001cW�_�x3B*T%\u0015\u0007Z�����1,�E�\u0018j\u0002x:��m���L�����F�b��&r���Y��\u000b�\u001aM��d�M��e��Y\u0010FK�\t�\u0003�w7��\u0010ޠ���y�\u0014\u000e�p���=���&�uJSY]��Ry8�^k!�S�!�\u0018k��\u0012\u00174\u001c�\u001d�Wpg�h����*3\u0000��f>��a���TzP�q��šƯ$��\u0019\u0011������A����hr���q͖\u000f\"�~��*Y���{��A��\u000e���u�Y[�\"��W\u0013��ޒ�\f�*B�\u00003��L��������S�LꡫZ}@��)!sa�o�������g�׵�F\u001cʴM<,�M��Ǔ\u000f�1E����|��6����m\u000f'��ܔ\u001f,\u0000��6\u000e\u0003�o��Q\u001f��چ3W\u000fQ����w���٥.h\u0004ٱRq\u0018~%D��v�\u001bjp8�Y��\u001f��JK�c��\u001e\f\u0000�+\u0003��\u000f~\u001c\u0001\u00043{��\t9er\u0010�\u001c�|���\u00030�uŘ�oB\u0015Y%Z\u0019>d�sr\u001f`6��Z�$����\u0016\u0002{��Eș\u0004�����&^k�\u0012R7?�\u0001\n�\u001f̧AuQy�ػ\u001f:�j�\r�}�:ـ�s{�C�tQ;��\u0002���A��ס�p�#Oƛ�i���@+\u001e~\u0004�1ݙX\u001c��Ϋ\u0016�O2Ӱ���\u0015 ��e��\u0013h\u0010YE�l�k\u001e#\u001f�ڰ�\u00187sR���8\u0004��g����Pw�O�]���]9�I8�A!�\u000e���A�ש\u0012�@\t�ה�Ⱦ\u0005��D�m\u0003����\u001d�R��dm\u001b�Qj�+9\u0011yʨ&A�֡�ɲ޶@l�>n\u0007*���Z�bI�^B�^;\u001f;Ϫ7a�\u0013I�\tJ�͝���\u0004�۞�;4��9��{���T�\u001aI��)3�`C\u0011�\u0013kc/$��U\u0016t?\n\u0005\u0019�\u0004ыO>��5�\u0005�z\f��\u0005\u001f�\u00168Ql����\u0005�3`{m}Ӷ2\u0019\u001d,�E�z�g�\tj�1\t\"�yk\u0013�`�*XG�w^\u001e>Ok�x�7䲌:���T�!����\u0002�Y@ޡ��S��m^������W�\u0006b�E;=?����\rs��%\u0004\f\u0003`�_|.w}�\n�\n[��+\u001e\u00074n�\u0001����{\u0016*� H{�����=膏p��d3�A'�\u000f\u0001���Ft����x��O�\u0015Jf�~�b���is�\\j�\u001f�g��\u0014>u���ֲ��\u0000��������5���N*�0\u000f ����5\u001a\u0005�G���V\t[e�����/p�^K4�/�t��p\bO]U+����\u0014>H�\u0002�,��\u001e\u0015Z+�\u0016�.����\u001b�\u0004��\\3}\u0014���F!�_[������\u0005cR��\nBx�@�P�b\u0000\u001d ��4�@#��D��˴\u0015\u00185���{\u000b�Ǖp\fi\u001c���'����f\u0015tܠ�3����F�#��\u001d�h�\u0018\u0002�����e�\u000fn�\"T{��e¿P�&cmTX����4�>��k\u0000���)���X\u0011���+�/���k��I�vr�A#�\u000f\u0015��\u0015��\u000f��]�l�b�E�O�\u0014�β?8�C\u0002PL�>��\u0002n��l�M�-���!� \u0007��QV����[�G'�C�\u001a���ؾ�1PX�2��w\u001cm>�I\\zf�l�\rK\u0005�q�A�4\u0017+reɕ+;�~:���e$�ڜ�waþ�U���6\\1\u0001Oi�M�������I'ib��e7��W�ˏ\u001d� �%��9�W½��S�\u0006�5p�\u000e�.�^�9�n�1x3P\t�-/\"�z�\b>\u0019�\u0019J�\u0006�Fө>)��\u0011\u0002�0ݔ�����\f�ե���\u001f[�B�\u001b�;������\u0011�b�V\u0019؄\u0018RC��KJ�7�1����2FrJ\u001dLR�A!�\u000f)��\u0016ac��'R8[YAjNU��\u0014�B&�nK\u001b5M\u0005a\u0011\u00069���b5��L�\u0002_�v�L��mR��-dYDjF7���ߊ��r�\u00105�\u0010�΂�LS�X�\u0019�v������f���ao��ީ|n\u001bh�A�d�����q�]���\u0011�t,�A����\u0019j���%�_^u[I�}��mh��3i�2�rum,!�͒��p<^��/��\u0014ŷ��V�\u00074� �\u001f\\ aj(*�X��\rUc�1�\u001d\u000eO�.'�\u001fU�R\u0000������Mj�X��v>�\u0007A\n�\rCbIv�\u0007\b=cx����#�\u0003\u0000��!��������\b#�A\u001d�\u000f=��\u0014=W:�h�&�𷮌�\u001dU^�\u0004�x\u0015\u001c�u����L^J�ɗ�Q�g��[2��D\\�\u0007�NV��\u0014lQR��\u0011\u00169�x�˴�g�zK(O_�k���\u000bG}��\u001bE��f��n\u0014�-#~w\u001d�\r_��\u0001=\u0013�\u0007���\u0016��\u0012�׀�}!w\t�s��m�tZ���`X2h�\u001e������N��t0'�ۯ\u0018��qP�\u0003�'�G��s�GT�\t`>��O�i\u001d�dvS�&�n\f�+n2X�4X&��j��\u0002���|\u000eٱ����q���O�~�k��hL6YD�vJ��\u0000H?��u��\u0013R4�Y�\u0003\u0006�I\u001b��#��&TO`jyy�:��,�A\u001e�\u000fQ��\u0014\u001ak�����Z\u0010�\t�@E>[��TR�7��[?u��y\u0014y��~��ϝմ�\u0019���ܿ�\u001e���r~M@���q�}��ƀ�P��<+\u0005=#D\u0010\u0015�.Ge��\u0005^E%M�ۦ���B�w|b-\f�\u0010�����Y�G�(�\\\u0005b)�;J�`\u0007��^b \u0017�d\u0007Fmم��jD�\u0010����Ő̆l����>�U�Гz\nj��\u0018X���K��\u0000�^\u0005����t\u0003��\u0014{��&����֍r\u001f$��L�ȸ#U|(��w�{��\\i�l�\f�\u0014��,�_f�Ֆ���\u0005�i���ڟQR���?�\t^\u0005\u0012�r/��$�F��H�\u000e��\u0002�A �\u000fe��\u0017�J0W�Z�)\u0016\u001dV5x�\u000f���\u0019�bR\u0014�ƽ������&\u001c* �?�<� \nv\u0005U��Ƀ�,8�խ��%��B�N�0#A��d��\u001f�fJ\u0011޴���8����>R�����*�%�\u0018��qwi\u001c鉓x�x\u0002{u�\u001fF���+2k�0.�k\u0018�W�~\u0003\"Xr���c��\u0018����\u0013x\\��\\�\u0010\u001d�M�v�~L4Y�僧�b� ��Q\u0007G�}�ԥ�����E��A\r��BP���\u001b�`,��\u001d�Hk�$4(����\u000b\u000fH���w�k$٬�%\u0010Y=\u0006H��A\u001b�\u000fy��\u0015�\u00105����N\\w�tu\u001d^�\u0000\u001dƜ�#�4�(\u0007\u0013�\fF܂\u000fW��ϐ�5(PK�\u0016$��8_������q\u0006�\u0017K\"��l��R\u001b\\R����\u000er�Lֶn�P\u000f�m�#�-K�]�j\u0016���\u0012ݎ�����Wr3ݨ���\u001e�\u0012��v2���\u000e!�\";��긦\u0003�p7���Y\u001a��l�ǎ�\"p5��'}Ҡ��3k�V��mR���8N\u0019_NX�l�PJW�\u001c�hY��\u0004.���`HX����\u001ftܶ���љ`�r�8q��lUr�UE �L|��\u001f�\r`�\u0006��\u0016QdG�Lk��7�Q1\u001b\u000b�\u001d� v鵱���\u001d�Z H\u0018�c\u001b�\u0011�\u0006 %�\u0003t�P��2ӝ����K;�R\u0018�\u0005n^��&�w�A�q?���o?fd\u0000(�\u000b�\nI5q���ccm\u0010��AӁ\u000f���r�\u0004�)ɳn}����\u0002e�����H-ʰ��\u0019\u000f\u000590�w�y���'���)uG��>�,8�\"�\u0015��\u0003�b�����N��\u001e��$X�ϕ��%Rw�\u001cQp\u000bûON��}��\bNl���\u0018ѵ��\u000f!1!�\u0012�<��uHʜzN{U\b�%b�\u0012_?i\u001c��\u001d��\u0004)p�׊S\u0014�(����\\�\u0004��N�Z�)\u0012�3\u001f\u001e>x}��L�\u0011@IQү+FD&�Q�2\";i���j\u0017p460\b��93��t�y8<>��/\u0012�ݢ;|K��\n7ʸs��`\u0019�sg�0\u0018�\u0003�.1C�.V+p췏�Sj����\r�\b��t�e�R�\u001b]�`���\u0013��p�����j\u0004�u��\u0014���bj0\u000e0&�'6���\u000b�5|%���Lg\u0000\u0011�k\fCp�8;?d�Ԯ�çL�1;�W(�:�}p(��sj{�`�>K<(�@ɖ��\bp��Q\u000bQ��ж�\u0013>=w�� �7o��\u0014V�\b�W{\u0001.6��\u0013��z��\u0007I����\f8rٳ�K\u0000���0l\u001d��OC�^*�\"\u001cfH\b�:�C\u0011�H�A\u0017�\u000f���\u0014�\u0019���ۺ��K��b��c��\f;�\u0003���i��\u001dhK�M���cO�-`>�]mi��Zt�n��\u001f�s\f���.\u0012/b}�\u001b�. ��7}����E��u.^�KM����U�ll���O9�*�\u001c+�S\u0007>;2��i�f��\u0010ômz��U�\u0014D1H\u0017��r�;ݻwN�ڔ�Y$n! �\u001b�E\"0��j��JB�����E��`\u001271�Y�Y\u000fG��b�2�\u001f��yMB�7$+��-�\u001e\u000e\"7�jb/Hq\u000b�m\u000b��a�R\\J\u001e��(���G\u0006��Sd(o�U��}�9���\u0016\u0007\u0007-l/#���\"g��\bf�\u0007\u0018J_\u0006�A$�\u000fɀ�\u0002���<�I\\�e�f���q@U\u001bs�+\t�5���-\u000f����+��qw[nO�\u0003���Ӯ���\fv15����\u000e4 h\b\u0000\u0017�\u0006֕μ�\u0000��u���+�\u0015�eK\u001f����[��B\"ۓ\u001a����7�\u0004\u0014ed�\f�p��\u000e���Js�^'\u001b�&SE�K�I�\u0018�\u0006l��Ϩh��j�Y�ob㯶�oG��L�!K\u0005��\u000bzLSƥ�0<�1+},�}�2��+.\u0010SL�f2l�yNZ��f 7ѣB�S�j֏�K���kN\fY��MP�%`S\u000b�e\u0014Cp%�U�ތH\\H�8M�b�\u001aBɊ[ű\f\u000flhד~ �\\�\r�H�\tm\fv��\u001b�AH�\u000f݀��C\u001f�]B)�Ɠ�ӫ�Zʉ붂�\u0010\t�$\u0010�V�\r^�\u0001�|P��K��^HA�{u;�#:D'�,ɟ�h���bN�~\"6\u0014K@��2Ud\u0010�j%ќ\u001f��IC�ԹV�q\u0012\u0007\"~C�U9���\u0014�8�\f��`h>r\u0018eG�+���\u0002�0�-��J�mt��\n��>�m�EUa�\u000bZ5��QF���Y�Q��/�HX��T�\u0013�\u0013�����@z�XU�\u0015#®�~σ�g\u0003�q��G�1���\u001d&G*�\r�u,\u0018�����\u0005[��HE]${�\u0002\u0003qgw=\">>��\u00067���ar�o\u0011��]6�z�J����C�Wh��\u001c\u0002��0ӽH�A٣���\u000b�4\u0004\u0015��D�\u0006\u000f�I<�fN�\u001b�\u0003��_��\\� %�w�A7�\u000f���\u0002��H��\u001b���\u0007��޲5tc]�,���p�%�\u001d\u0003�u\u0005�ZG6�0\u001e����3su2�˻_;���2ʸ���\u0010���\u001b6G�;o4, |c�\u0001}U:z�8� �E=N�U:\u001bBH@���<�eZ�u\u0001\u0004x��\"�\u001dVvD�\u001dR=#S��U����S׽�\u001ez>����V�ܘ|�{)R>.\u0001��u�/)�P�����\u0004\u0016\u0013��pJ�i�:��x#�ƨ�g(�H��9,���\u00159L\u000e9�b�4XFo�\u0018}\t&�J���V����dk\u0001\u0017\u0018�T\u001f\u001b�\u000bP�B\nr�8教]�\u000e�2�\b\u001b�{\u001d�K\u0018 �v�>.��#�f\\5-\u0018b[\u0012O�a�/\u0002P����\u0013'��\u0019r\u001dm�r�A\"�\u0010\u0005���T�����ն����\u000133���\u001a)�T|�/�KSYu�VD�٫x�)�>�͕i������W�\u0018{/=�zi���FV�ȍ���D�Sn�A'�\u0010\u0019���W�J\u001b$xxX?\u0000�# ���+�y4\u001c7�DO\u001f\u000e\u0007�\u0006�‹\u0013E\u0018\u0011�l�>a�{���b\u0007��L��\u001ct�$�\u0012-�9m�Ci�)�`=�砼z�+\u0017�Cpm;LϬ2��p��v)(���\u0006�+����lͩc-ȉ�\u0006���<2\u000b��c�w��o��\u0015Y@Kw7������\u0001�Ֆ�\u0000���_|l\u0011��v�(�\u0007�p�\u0001%\u0001}\u0013ʳ6Y\u001c��p\b9���M:�u\u0000l�~I^ya���Δ/@,W\u0006�nV����Z\u000e�lu>�\u0017۳1&`�2NCr�3��(ɰe�\u000b>8Z&�0\u0005b^�sو�`��x�~\u001f�ͱE\"[�ǢB2\u0011e��q��\u001bt�A\u0014�\u0010-���G\u001d��󇅈\u001b\u0004�)�Q$����A�ʲa\nU�\u001c�\u0011�\u000f.P\u001dXtS\n�\u000e�躺7V����u9�\u000f�Ā���Q,��aBJ��������r�;8\u0005q��ɦ�=�s\"\u0015�w_��\u0018�s���ڌ�� ��g\u0015���\n+zS4�2��7�Z@\u001d� \u0004W�\u0003��-�_�;�tϤ��/�7C�\f)|�^48Ա�)��Kj\n��C�ޫ,��μa����|\"\u0007�\u0003�$�*[_�:�@4̗!��6@P';�ゆ�M��P\u000bf�5�\\��'�\u0001\u001b�K\u0005\u001e�]��\u0002�:\b\u0002�@UB�\t\tg\u0006(Â\u0005��\u0012j!_h!�q�A\u0014�\u0010A��\u0015�ANٮ\nS,�!���F�5\u0011\u0019\u0015�\u00153`5X0\u0006:���%A�n<������\u001a\u001d�#z�a���$�\u000f5&r�\u000fN\f��\u0014�5 �0���#S�u\u001d\u0001���+\u001e\u0013:\u0012K�J\u0011�޽n���Yp7{��v������ن�� �*����Ԍ�y�Q^�\u001b��n��+�G&V�*�,�\u0013��j<�:��3�\u0014��x��D���u�a��\u0013\u001c�\u0003)����-=�\u0001\u0015\rK��\u0003�|�6P?������K�9\t:��2�\u0016��ejɵ�\u0003���/\\�l\nf\u0013��A��? \u001b[�a��m�.{�q`D앦����?\u001b\u0010�T~�A\u001d�\u0010U��\u0017I��\u001e��(ᖑ�\u0000\u001a\u0007�`���\u0007�ѿ��\u0004`�\u0012 �V\u000bm\n[<��\u0019���`\u0011�`��Js�aS�Z�\u0011H���8uc�/P�֒����\u0004����\u001c\u001fc�f�֖� �Ĥ�\u0000���������\u0016�h|�Gj�\u0019=y\t�!���u�a\u0010�f�%\u000fW!�X�8\u0004)�:�_qs���\b��g~�Ͽ���}�_o�� s������n���\u0011�{,�\u00156\u000b�W��\u0013���s�;\u0006s��+�(�Fb�M=�����\\58~FȒ6A�\u001eg�+�\n+�*�u��9�}+Nd��K�\u001f���/�#�9���\u000e�/�-U���ްw\b�A\f�\u0010i��\u0013�¾�{x�\u0014�r��\u0003��<�OJ\u0017I}j�@M�\n2/gY;߈\u001d\u0004u0\u0019\u0019���\u0004d\u0011��]��3���\u0006АB\u001aE=>�\u0012�:q��|�|�ss~�ޥ>��\\\u000e׾/�\f1͂���h\u0004\u0006zcd��D��1ȗ:�j}\u0014WĶ��܋N\u0004m\u0003Լ���#H�!q\u000bUk'/��\u0016���\u0000��\u001c�rI�J5�X�\u00014� �\u0011`�܍7�\u001f\u0002\u0003���z�t\bmN\t�I\t\t\\TT��6\u0019�Л�\u000bm�-��l�\"��I�c۳!$\u0010\f*`[�\tP�S�\\Q�����\"�R��\"z��bZ\u0000\u0002�\u0016����A*�\u0010}�����sO�����N���٘�+�(+b\u0011��˞k�9�I��0�\u001a���q�$\u0015���j�;�\u0017�{�}+�^Z\u0004��L\u001f\u000fɎ�;N��K]��~��f�>\u0000�/\f��0eΈ�ri�|��\u0003�Ӄ_�ZSÇݥ��\\�#��g�?���X�c\u001c������Ѯ-{\u0013�37\u0004�\u0005 H!@\u001a�%٭w���\u0005\u0017V�Ig0��H�A�P���Y�@w������#\u000fh�6㑝�\u0015b�޸�H�t:;7�\u001b��?�8\u000b)\u001d\u0010Ln�n��Z.�¦��HfѾ\u0006��n�<����N�JAeVux�\u0005����\u0005\u0013�H{9�fMh���\b�8\u0000�����{�L3�k\u001d�)YA�)$\u0011̀\u0019\t㊝�\u0019u��D�خ\u001b�]V��T��AH�\u0010̀���_h�/�)�@�q@���\u0012��#�\\|\t~I���\\�P�\u001a�4��ϐ,\u000b�h��\t\\�E)\u0012!\u001d����� ����\u0019�\u0013\u0007 Q&)ü^vo$v�����%1y��m�q�Y��.��d\u0019�,��}�\tt�7i��P&6�����OI/�V�a(\u001cV\u0013\"�H�]A҄�V��\u0016u,�M��$�-'+�;OE&\u0011\u0012Tp%T\tpm�ֹ\u0002BSÅ�\u001b\r���AH�\u0010���\fK�9[�Mү\u0015\u001a\\�P\\�\u0001qf…��$��w�˿��y�=���\\lQ\u001e�B\u001cR�ڟ��\u000eF�D�׎i�y��\u000b�;b\\�)�|�|�9��SӃ�W'Bcn���M\u0005��`UX�㪲������A�������8�-�y|�+\"#\u0017\u0006��\u0006\u001d_�+)�Z�Pz�K����%����S�G\u0000X2��z%�f]\u0014T�\r^^\u001f�m�aV�\u0014\n��\u000b�TwH\u0003\u0001�j�����3s�����\\�t\u0013�\\�8�\u0019\u0003$t��\u0010L��d���\u0010�^�.}Z�\u000ep�Q^\fo�\r\u0014�dƷ+�p���b��X~\t_�D�Ik��<�\u0012>�\u0002���\u0000o�\f�C#��/u����*\u000fUŭf$��D�\u0018\u000f��k}Rm8�\u0001�AM�\u0010���Ň_(��3���\\����QR,|ď\nҠ��1�\b�\f)\u0006��*n��hBN�����|�Ł\u0006\u001d��O������pHX����/����`����\u0007������N��@�\u0011^�Xh�\u000b� e1@���\u000f\u0011���!�*�\u0016���a�ɝ�,��%4a\u001c���2[\u001c����e�N�M�4\u001aH\u0011�\u001a��duzȇ�H�\b\\��\u0005��@7�1�;��\u001eR��[�\u0014\u0004\u001bAsǀm�\"\u000e�B,t�Y���_����\u0012�-+Μ�\u001aw۫N`�\u0019�}9�.�Y�}D^����$�����Z\u000e\\�Z8 ��\u001c��m\u0003�{���|j�kʋ��\fD}��3V���\u000bM���$\u000ew+sOz'{��ޥ@(T�G�� ����?�\u001d�6g���A6�\u0011\t���*�X��R���\b�.a��c���\"�����C�\u001b�:�\u0007��\u0002\\\u001e��S:yȝ��\u0002��S�]z�\u000f��ޢ�\b;�z���\"�}��X�2�0��\u0002����J'��\u0010�\u0014<�.-cwȥ����+/��s��\f��V�C6\u0002 �ں�\u0013Q1�3�k|ѤN�L�H}cF'�Ms�t\fe�s\u0019�o`��\u00155e\u0002f�N�MJ׮&Ք\f�|}J�ڮtrV��Ncߥ\u001e��\u0012�z8��Edݢx�/�\u0018��}I�\u0003ͩށ4��8�3<�o�\u0005TT*�ݬ�\u0017��\b;4�I)\r_�[�{\u0014Y�\u0005\u000b�O���\u000b�R6���%�\u001e\u0007H�\u0018��������|��+�A�����I>�\u0002I���AE�\u0011\u001d��\u0002�����FؽA�7f�H�\u00172�dJ3e�\u0015�;\u000e�e=��w��0��V�쿫���\\�����\u0018�j%vk\u0000�@kYc�\rЩ\"V\u0003�\r��&\u0012�%mg�9d��\u0014#��\u00072�xW/��?6���\u0015�N��f�e�'�j�/(�A�o�\u00104a\\��\u001d.����\\��;n�d��|W�g��A�On��j�\u0014��}i�\u0002�!\u0004�sT���\u00106—{:oY��\u0019�sS��ˑ�5\u0002�~�}�\u001b�|��\u0018���EEx{@�>[f@p\u0012\u0002�%�·\u0007�\u0007�Ny\u0005\u0006�8iN��ByL�\u000b�\u0004$�,Y�y0U�=���ߟ�\u0018��\u000b�i�4�8�\u0011y҄w�\u001a�D��W\u0005�`�V�D���{\u001e$$��(�[m��6��.�A>�\u00111����\no��s�K<+\u0018�\b�M��\u0019Ck2����u\u000b��k՝\u001a\u0001��/֠�L~\u000be�����ܺs\b�l*��|p�\u000b�cr\u00199\u000f_�\u0000t�\t����Q���9�婫�W���3k��0r\u0004�jY�\n��\u001b���P�+���\u000ev��\u001c}\u0002\u000e\u0002�\u000bU�\u0005��3C�;���5\u0010�\u0011�}��0���K�e�#&�|�ij\u0001�.���~R���:1=\u000ei����=�dג�q��ٝ�\u0003��s�1L�y������y\u0000��|o�\u000fp\u000f��4�2��/Z|�a%�7:��%e���,Ʒ�{>.����p�e7����Z��3�=\u0012۾�H*׏����)A4.�s�ي\u0016�E˫����3�G�噋�@{E�9J�\\3��Y]����ڧ\u0012g���\u000f:�A6�\u0011Y��\u0002\u0017z���K��pp�E�[����\rxA`ړ\u0006�\u0000yU�T��bY230Ђ�\u00073r�<�#�.���9i`�\u0005Z\u0019���,uj�zx�&Q�k�\"��#�4�qD���BV\u001a�if'���7�T��3�t�j�܇��Z �9\u0012C�f�BC��.�5�d%��`cjz��e��y��Y�p�z\n�'�3�z3��Z{V�\u0002�G\u0000�7\u0017���\u0005;��:\u0011������݄�-\u0013R�\u000e�\u0004 ���]<��v�\b�&�Ȍ\\�������\u0000³�u�@�۵�a\\2\u0000J�j���\u000f��v\u0005���10�x�:�j^jk侫ܤ�=��\u001d�GG�\u001a��\u001dТ�\u000fS�$\u0012�WmIN6�_�U\u0004\u0000\u000bm�A�\u0011m��{\u0006�j�\u0006�a�\u001d�^�5�?ߦ\t��\\�\u0006~g%�\t��.^�n�}?@\u0018\t��~yc��\u0011hkF��S��\u000f6V5����\r����\u0004b+`�\u0018��(�\u001b��\n�G[Ԕ\u0011^Ej�ܦ���/�\b�J�GV��'38�V���1\u001b\t�����Ao�aw\u001d;s6\u0017XmBR-\u001f9���kĥ�*�\u0012��µJL�ȔފW�\u0004�1�\u000f�S:�\u0015�>¢ �\u0000��B\b�\u0016\b�E=���I^\u001f\u0018z����x�\u0017�\u0013=�\u0011�\r���M�\u0006��<�\u0004��(�{Dn��W\u0004�+b��D�D�>X\u0007��?�#^oׅ�'\u000e\u0007\u0018�>h\u0000���a�OX��ʑ���Sh�>����-\u0015�\u000f��B��\u001e���ձb�Պe�f�s^�ު\b�`\u001f\u0015���\u0005l}���Iї:�33sb����@`uf��!�m�\u0000�I\u0013�o\u0000\u001a�����|v\u000b\n\u0001����Q�\u0015�+Z�Zwķ��M˸*�Q\u001f�\u0019Z���dr�\u000e��[\u001a9;�{;M_���\u001e�\u001bM�WFV�\u0001��Jw)Q�I�ds��w��\u0018�~Z=kq��*�\u0014\"l�krv! �W;?J@&��A(�\u0011���\u00140̇�,\u0015��e�\u00005��b\u0014,�!�d�h�X��\u0017ǚ|\u0019�\u0018�E�$\u0007�<�M����<,~(�\u001c��IM���iZJ4\u0011m��~��\u001ao)�*���(\u0019�\u0017\u0016x�U5�\u00196�P��a�Ro�\u0007�4e���H�3�Ũ��`I�0\u001d�rt?U�i�\u0005�\u001cj^��$��Ln0ߎ&\u0005r�ӫn�A]~Q�\u000f\u0019Ŗ~7�weg����Rq��/u\u0007�,��S��U\\�\u0007\u000b���\bk����qK�\u001f���ڛQ�7�\u001a\u0004�F�*E&2\u0019�'V)�jq\b�hu�����z�\u0006\u001a=y쌶�\fh��\nk��>\u0015\\B,0,u\f\f�q��x��$�\u0007��9�߃\u0003\nU�I���A$�\u0011����� x\u0018\u000e/t�\b4Mr���c��p�8!��5�d�'$J\u001a��\u001f^��\u0007j�\u001c�\u0007&60��l�<��G5.q>\t\u0019�*�\"�ũ�@h�ډmg�31�����a!9�2��\u0018<8\u0005��q���\u0018J��5�t���2�\u00131\u0004W�p뎪Qm\u0000R\u0014_��\u0002m��\u0002�$�1�}H��Wћ|������Aj�����9M����L�+(\u0001\u0012�Ԗ����VHA�?��Q��٦\u0000z\u000b\u001b%+\u0010��\u00129�Mbo�q�\u0002\u0001��}W\u0003�&_�ZW�\u0004!z�\u001f�\u0018��¹�\b��Εw�7�\u0012�]�13&\u0011�V�r�ѯj�^`U�\\]�~� m�Ub��t�A)�\u0011����S�\tA*\u0019�9BJD�\u0019\u0004@�+X\u001d���I��S��\u0003�\u0015�\u0001c:{�}逭o��\u000eʖ�um�`��\u0002\u0004�f۹M�\u0016\r��I\r��\u0005ht]\t��\u000b�8��a\u0001�1\u000e���L���[�g���\u0011ß��ۓ���Ap\u001c}\u0016�\u000b\u000b,��(UXߎ\t�J0$H\u0019�\u0012�m�:D\u0007��Mt~�Ҙ\u0007&�wç\no��E��ʞ\u0012ϟ�\u0003�\u001c������\u001d�\u0013 \u000f\u0003��/��'�1�r\u001c\u0010b}=|5�\u001dX\u0012��gn�A>���X#\u0017���PTșa�\u000f-���y���DŽ\u0001>�gu\u00048d��w�_g��]Г�\u0005��Yo\u001f��P\u0000�\u0002%K\u0014\u001a�Z�\u0012�o�\u0010\u000f�kt�A8�\u0011���\u0018&cgShƆ\u0018�Eh:��\u0002���\u0013�M|]�7�s����ol��,\u0010��Y��|o�\u0018�o뮊ފ;�܁7iW\u0006ga(y\u001d@����\u000e\"�s�qDž�PN�l��us�5cp�{~���N\u0002�\f�`���8�\u0011��\u001e��k$ș�P\f�dP?8�|\u0002r\u001cg\u0016\u0019�������}5�\\t\u0005����\u00160\u0010e�5brX�\u0011�{*��CǴ̏R Χ1l��J\u00196@:W��9��\u000e$R2?7&�-X=�\u0001\u001c\\\u0002���\u001f�=�\"&�q͗�=Ŷ���j����\t�\u0019�\u000fX�a\u0014t[9go��\"\b=���\u0001z�T��Ȗ׹����b�����8��\u0003��>:Iӵ\u0002W\u001e���� \u0000��\nַv�A0�\u0011р��\u0002\u0014�\u0007K��\"�=�n����\u001b��Z\u0013��W��\bM�[�C��U\u0006�T\f:�}L}Y��9+b|���c���-�����\r�\u001b\u0011���W����\u0004�gfH�zǒƢ�ΐ\u001eS�%�\u001853�\u0017(�\u0003��\u0005�7��e10��\u001f�F�\u000f��ގPD<�\u000e�0\u001e쵫e�j���XҬ�-\u0000��^���S����\u001d�\u0007Ԥ�Ll�>�z����R�v�a�\u0007���\u0011XPS�˂���\nV�,�9�S\u0012������\u001e\u0000��\u0013�\u001ej���C\u0017P`\u001a���Sm�{n�\u0003g��Z��\u000bB��U�\u00104�{��\f���\u0018�o<\u0006=i�ۭ�&\u000e�ǎTI+�\u0012��U�Ԅ���AD�\u0011�������W<��;�纑��<�ϐ�\u0005�~�:E� \u0010\r\u0005�,\u001bf�\u001dͣ\u001c\r$��^3\u001f*�[�*@^M�i�X��O�i>H�h�\u0010\u0017\u000f��-(\u0015Έ~\u0019��ͭ#\u00064�\u0016Y>��-\u000b,둗���\rO��#�jP��6��\u0015B�^�\u00191�d\u001c\u000e����3����|A�$=�V�]�/,\u001e�4z�r�DWi@5�\n\u001c�c�v5�i��\u0019l�,��ʑ\"`\u0003�\u00050�2\u000b��\u001a߅��0��F�\u0000���P\u000fp�%�\n\rV�Pa]�\u0011\n]^�l���8,�xӒ�Z�\u0016�e�\u0017��\u0007�8\u0004�6�eGRN�X���\u0000�\u0002���o�\u001bM\u000f��[��v�%�o���wM��\u001a�0����<�*Sd-����\u001d��ܟ�����\u0003?�A5�\u0011���\u0000]G��.V���C��m ����%�>�w�D\t.\u0017ǓY*�l\u0006j\u0017�@��]�P��t�p4%P���?��\f��RT�?�\u001c����\u001f\"$�5i�DM@KE\u001a4\u001b\u0017�w����\u0010��2R{~e�*�T�nIH�^\u0006���V֢#s�\u0011Us\u000e^�`�n��HCdse�d{��%�㤧��6���S�\f2��/*�\u0015�>,j<�^R��\\�ݫ�I�w��q�5)kk���s�%E���&\u001f��„߈�Y�Z\u0017\u001c\u0005R\u0006/��Z�qm��*7P\f����3\u001a��������7���\u0012L�yn��\u0012����P����F�!�L��\u000e\u000f�kh�T��oi�\u0016��L�t�ϑ�\u0004���\u0012H���A2�\u0012\r��-�\u0000���p�9���f^��!�WӢ���*&�@��\u0006l�}�g�6�weG�% ��f��Wu\u0015�\u000e�AL��mW�I\u0013ɤ[�7��_eL4�\u0004�&rTю��/9\u0003k�qM;G#�\u000f��\rX��\u0004�Si\u0015\u001f�.3Z�\u0017>m�\u0013oy�T�ä\u001b�\u0007�N���P\u001b�V���A�0A\u001b̐1����!��q5��8�)�j�6A�(�~A\u0018B\u0007f\u0006u-���WHԵ\t�\u000bX�o+��Z��#�\u0004��܆����r��\u0013ʢeZ��+�j�\t<#\u000f��ْD�\nG�7SH~YU��]�W{#��d�-e��\f�\u001e�D^�Q=N��vE)�Ⱥ'/��m�Tv�$\nG�C�o�@�A8�\u0012!���\u0005\u000e�Y�\u0012�Hw���\u0012R��\u0004)�<)/&�+��`\u0017�\n��y��ٙ�3Z�p�\u0010{�\u0001�@��3\u001egr��\u0013T�Tm�\"i��,my.�];B{\u001b�8�\u0006\u0003U\u0007��u\u0015�5��ى���d%\u001c-lxg{H��,P�YT�w\u0017�*��V�ꚤ\u0007\u0001a��E��Ka?�V\u0011�\u0003�(xnp/i�I\u0014��j\u0002\u001eH��\u0000e%�l\u0018g�4�I&ߊ\u000b�\u0017�1�\u0010�\u0006\u0004��\u0010�9ݮW�J#��;�@rB�eٓ\u001cJ1��j\u0012�(�d\f.d���_>l��K�3�` Y[-��\u0004�>��\b\u0005T\u0010�\u0019�Vf$�q���NifM��t�m ��\"���P~b�#�l$�앚W�z�\u0019VҲ�Ip�A)�\u00125���t�=���)�q\u001e\r�W���߬�\n��@�[�U �Z�HCKnHށ|�2�&2\u0017S��C(p�.Z�\u0018\u0013��V&�P\u001c��N|h]/�͐iEc��\\&�f�\n-��$�pؤb^� \b����A���\u000eH�sg��\u000f%W?����X\u0011�@����K�6$M��\fd�d�-\u0004��]�\u0015\u0015e��\u0002)�\u0016\u0013���ng\n��%N=HD��T\u001a����YR\u001e0|���\u0014i@#_;��\u0007�)a7���[���s��ѕu*z�͞�5KFQz\u0000�\n}ʦ�\u0003�\u0004͢u�1�7�Uh��a��\u0003��.r�\b$\b�|6\b\u0017L�O��Y&wkKJ���\\��A0�\u0012I��\u0002\u0017�~QyO���2�\u0010�⁷-\u0011�$,\u00113\u0001O�\u0017�\fH͟��\u00074�t�\u0005e;�i����\u0015���\u001a+�����D�_�\u0003`�ϬZ�dž�J)�A��҂�����u���t9�|p��|�#\u0019�\u000f�4W�\u001aY\u0015��y?��ո�=��\f�!\u0016q�o���\u0006g�c\u000f��\r��\u0011��}%\u000b�V�=�d�\u0007\u001f\u00048��z�:�Ӊ���X\u0001��,�v\u0019�+/8��`߾u]��\u0006V����?��\u0002���ϯ\\�8��\u00142���Gq\u0005��8�BRM��\u0005�o���%�<\u0000`\u000f�����+Ov��\u0002v��S���d����;���*\u00062�jX\u0005�G�\u001c��H��۪D�\u0000H�A7�\u0012]���\u00027�\u0016\u001e�\u0011�g\u0002@�ͧ�^ns\n\"�糯\u0003�;���E�\u000f�N�_��.'�4�\u0016\u0002�&�\u0011�\u001a!��\\�IA)Jɾ���\n�-\t�gr%\u001c-�7�,�;�c��A�\u0016�\u0019;W^N�\u0014���ڂ�N�\b�ޥ���3~��\u0004/��l�O�ʘ�|��sC��\u0015��X�|\u000b��=�ECd��-Zy�\u0013�\u0012���4�2��\u001b����\"�\u000ef�!�?ޣ=4�\u0012�{\u0013��(�r�\u000b�y�Y&��%\u001a���~�\u0011��G\u0019K�@���@2f��\u0019E����F�Pz��a\u001e���M�\u0004�^cA\f�\u0002N����T��p��b7*�4T㾽n��Z64-�шG%ǀkhT������A!�\u0012q���ߖۯ\u000e0�C]�wU\u000f�jL�i�\u000f\u0006�W�9�P�\u001e�W��Ge\u00043p�%�$eJ�\u0007\u0012�a\r�a�\u001f-���ɢ�����U�y�\u001c�Cb�^e@J�;p㤍�\u00010yS�/�\u001cU(���s��\"�%�-:\u0017�`Pm\u0000J=�\u001c���_�O^��X\u0016a�s\u00167v�Fo�`x S�(�PD.6���W�S\b\"�B\u0003��ׇZm�\u0002�5\u00014�k\u0019\u0014ӥ�\u001b\u0018����M���B\u0016ˌa�-k��`�8Դ�s�50�,�<7��M�\u0005K�\u0007�\r\u0015�\u0006:f\u0011(х�\u001a�\u001c\u0017KN�u@da��p3MY���\u0017UI��W�\t����+\u001e��)AC�\u001b\u0002��A.�\u0012����K���\u0018BPi�׈&����!�a\u001ak+�t��-�C]�*`����F�����\u0010D\u0017j���YQ\u0005�\u0011C���I\u0018`k>x�.�W�%��X\u001c�\u0019\u000bߢ\b�z�!.��۴\u0010\u0015��Y�|R��3\\$��/�ߜ��\u0017�\u0017WiG\u0017�\u0003�잡K''�퀳�Z�ĉ:\u0017f4sdۼg�\u0004�����iXr��,:���w8Z\u0017�`��ę����nn-*�\u001e��`��:\t^��\u001b\teb��!�\r4�p)�O���P�Q�.i^\n�a\u0018�\f��ʦ\u000f��\u0011��κ+hc�T����\u0007\u0016W�Ni�n�L6rF^���6\n|{@g9��t�۟��MƐ��\u0001�\u001c�\u001dtq\f��A>�\u0012�����\u000e+�.n��6��ѭ�>\u0004�9`ٳ0�\u00121딶�މB�M�\u0004\rr�\u0012`n5���H�\u000f\b�7\u001b\u00038�\u001a��s��b�z�R�i�t`���|*�P>� K-\t���8� \u0015>�G�\u000eu�\u001b\u0003拱�\"^\u001f�G�wi��M��1ؠ��\nQ�.�n�$z�qu��$Dk��\u000f�\t/�w�lx%�K\u001b3r;�\u0002�FFU9$Vv��ҭҩc��\u0016;�}#H\u0014�\u0007�W�#�V�܏�*۷�/Wz�a����Mf'��\n[Uݣj��Yz�g�.�gt��\u0003GX���s��s\u0010\rN\\��n���?�;\u000e7G��FJo��:W��G\u0010\r��ߍ\u0012*e��\u0014�u$xcT�V�k�2^���/���%����A�\u0012�����γ�\r�y\u001f\u0002z�\u000e-F�ͤw����6��\u001aޛ�Xqp��\u001f\u000f�=Y��2��\u0017o����ьv�\u000f����eǵ��%�AP��l3��\u0010K�A���Qc\u0010�6�Qa�.6\u0015�aV��b��C^�\u0018~0���<\u000e�89xQ8\u0005���}OM�D\u000f�\u0019��y(�7���X��\u0002ze�\u000f�����XF�vc�b��X�v=�Lic\u0013�Yh�L�ƥ��Ps\u001e\u001c�\u0014O��?\u001a��Y�\u0000�Ԁ��:�0��\u0013-mF�C#7\u001e�\u0018+3�ɦf\u0017Y�G�\u000e�\u00154\u001a�Ndt��I�K�m��l�P�\u001e\u0005�h�=\u0016\b����\r�B�\fa4B�z\u0011F��b4���麁��n�M\u0000M��3\u0017���L�\u0014�\u000f��\u0007.����;$H؈��\u0001\u0011O��g�{�V��9�9��\fUNX[P�3-\u00053�c��0�('L����3(\u001f\u0011\u0013u�2ޫ�2��È��;J>��]v��;���g��d��j��; �1;J��^\u0011\u001c9�3�!M��Ԓ\u0012z���(��>:�LzcU�:ڼfgF�'��9&`t�\u0005o�\u0007̎��j��\u0002\\'Q��#\u0006��AB�\u0012����)m\u0002{Mi.\u000f\u0003?*,���^�`�O��j�\u0014�ܴY\u0004�\u0002%)bͣ�\u001a��\u000f\u0010���qv\u001f\u001a�����,�v&)�Պ\u0017�<�T�0\u0012��UiCa���rx�~�W0�f2$2G�n˧4\u0006�B���M\u001d�.�ڵ�_\u0006��^w'�1��?��\f�UH�2jߡ��5�G;,\u001c�}\nm\u0018���=�\u0005�9R4����\nR�<��c���� ZGݿ���NPܲs5��;@�z�iuä�#x\u0012#�\u0010�跻\u0002 ���𤖒\u0012��\u0013\u001e.[�F�Ѹg%|����� �?~�ǃ��2��M��|4�u\n?�I\u001f\u0007��\u0007���ۼ��˦Y�p\u0010����{�\u001dײ\u000ev�z@,߂#��A���T�����A7�\u0012Հ��Ԃ*^�\u0000\u001c��\u00138s�\t�\u0014C��\u0011Ws���\u0001�*N�2�%��)mOm���5��gtKtX��D�ҙ.mf4�P\u000b�Tg���\u0012�\u001b\\u�Y�2��\u000e��K,\b\u000f��\u0003�۸E��=5N���\u001aP\u001e\u0018VNϳ@j�#w�-�����\u0003�\u000b��n�w��ԯ\u0014���M\u001e\\�d�b\u001d.�i��g�W�w��t����To��F\nX��\u0005Z�b��R��6톿\u0014���z���re���i�c��ͦ�H/\u001f��m���`�p#����\u0012���\r\u0015�b2g�?�ڂ��\u001c�†\u000e\u0000ۤ;��@�\t�\u0014�\u0017�Á-�@���Ģ�?9�!��\u000f\u0011�k}�\u0018��%�e�96\u0001��A3�\u0012���\u0005�  �S��g*4��k��.�\u0010�a�wJ3\u0010�?=�����ߍGl]>�]���܎w<�\u0001\u000b0�q0&^a���\u0006Fz;(��\f�\u000e5�|��Ap\u0011\u0003l.���<\u001a�cZ\"I'O.X\u000bv��]r5��w�m��\u0019��&�6�o��X\u0012|�\\4�i\tN�v��x���R$Ջ3I\u0003\u0010.��J�A�m�����{\u001b6�_��\u001b\t44&�&\u00031�|4Y\u0012M�A��\u001dESΛ\b�^_�d!\u0005��?2���27ny��� �LMr��xw�\bO\f��m�Y(Ɲ\f���.�\tDq�x�����\\\u0007gٶ\u001c�\u000e\b��aLn\u001aKAb�2c��\u0018���O��1�����]sZI��\u0001x�A*�\u0012����\u0002\u000fXv��\"[\u0000��\tf�\u001e�U���E$넶IG�\u0010���ؽ� �\\¥���-���H��117p)�lm�O�CM�.d>��$���1\u0002���4\u001e��ވ\u0010�]�?\u000f��\n+�rs>\u0018��A��\u0013��?��p��\u001dg�Xɿ5\r1!\u0012���,ߋ�{��v�\u0003�y^\u0001c���3�\u000b\f��\b�\tN�ٶ�\b\u0014�\u0002�|�OEȲ_;\u0005�E_�Z�\u0001铋�lʪ��\u000e_IW�)/R\u0016�J|g<�0 *P�o����毭\u001cYh�0\t��\u0004��zM�S`�\u0014!\u0000�a):�w�@K�����\u0017�\u0001羽�w����\u001a�mk�����\t#����\u001b\u0006�tg�w�A(�\u0013\u0011��\u0018'�M7\u0005��K\u001c����r���&�\u0012�\t�\u0017�P�Uz{\u00183\u0014��3\"\u0019��\\�{��\u0019��p\u0006�C�|��ZX���*\u0011��{\t\n�a�\u0011/��\u0010��'*��?����>�ԧ�S\u0007v\b���D����>J���_R'\u0019z��-�\u0007yk�g�ت�����[�\u001d7$�-m\u0001k��?�AC�\u0013%����$��@�(\u0011$�~�\b޻���`��2�\u0016�˻\u0001�׺��h�\u0006��+�1s\u000f!�M�D_у�\u001b�\u0005�\u0011��\fm~�!�jH$\u0019�\u001a��;��ˁ�\\�؄\u0002���dU`�*_\u0013h>�\ne��M\r��=a\rj�\u0012x�����s�9�k�ouL\r�)��\u0000|}?��}\u0002^�;Ӹ�5B͆�ͬ\"���q�F+U���i��[f�\u00168ף\f\"����\u0014l-\fy\u0017���\u0012�H�ۜ���[2TBv�\u0011M7g�僬M4��]���\u0018�_�YzQ\u0015��c|\ra�*�G��c�5\u0007�-�ͻ\u0017�w�aך�P-�\u0011*�4V�ǎ��K�\u001e�o���v5�Heԙ�s�s5�u\\\u001bmm����K��\u0000l�\u0013>�A1�\u00139����\u0010�c�f(h��Ml�߭K�v\u0012��WL������FR3�F@�h�\\\u0006�˜�\u001b��_�\br\u0000x\u0001ɻ�^<�\u000fh��H�Ҙ\u0011�9F�\u0016C$^X�����9\u001e`�\u0019��B�'��\u000e[;\u0007g�l����\u001e\u0015�q\u001b\u0019�3�gQ��<�,�\t�=��H�_��a6嫲R�w4��揌9#�\\��\u0013�����^\u0007\u0003/ԯ�+VE���kV��m�)��B��\u001e�oӞ\u0010o�¿�\u000f�]Oò\u0000\f���0�j���S����L�\u0012��0{�\u0015r���Ĝ��\n9.��\ro���`�aw�c� 돉�z���\u0017ӧ\f��4ܪu��o�\u0001�P�]<��1��K'���<�AD�\u0013M����۾�ɤ���F�c�⏮p����M�&\u0014�(��l��1Y\u0013���W��3�w�ty��aw��x�\u0013U�A��m�����K�\u0011DB�\u0000\u001b\u0001�j�sC��xl�?^�\u001alJ�m��\t�\u0006����e�D\u001d�\u000fn�QW�wyD�9�����պf��\u001f�I�_IJ����p\u0001�{�Q�[�\f�\u0001W�]Bk'g'��h�)\u000b,���\u0015dft_�\u0007\u000b\u0005�[\u0014�}�J�\u001f�hrz�%�l\u0012�\\\u001e5�\u0014FE\u0012\\\u000f<\u0015��}IM��\u0005��K��y�/��\u0013ϝ�[M�,\u0006~��GL��GV� �\u0007���V\u0013\u0013�(I��\u0012�\r��\u000f@\u0016�P\n{���`YȔ%�v8.��\u0006$��\u001c/�K�--]�~A9��B�l����AW�\u0013a�����yhL\u0000R�\u0003P�\u0004%\u0010��\u001e�W*�s��\u0011�\u0017N�\u0019�uAQބ����\u0017L�2/�^\u0019��-�[G�\u0017�xv��>\u0016���\u0004I'S�t�;�\u0011e�\u0004�NE<\t�^} ��������u�L�M\u0002z��\u0001(\u0010�7m\u0003pI\u0015\u001e�\u001bo�4k��t�u�^�-� z��0�#M/��<)�Q��%qfF w�a��\u0019X��\u001e;��\nȓhn��\"�\u00049\u0003��]�г\t\u001d�kl�X�\u001a8�p\u00107�X�1���U8��;���\u0006��8�\u00189*�Y;)\u0011c��%O\u0017\u0018�G�\f�ݹ� ���\u001e\u001b+s#��Pϔ�ĕ�!�\u0002y��\rh\u001a��Dz[�/��/9\u0015�\b�qn���\u0011�\u001b�'�\u0019��D�h�\u0013(7y\u001aϏ��q\u000f�M��I\u001d�y?U��ڼ�A?�\u0013u��\u0018'��_z��\u0018�9��\bM\u000f�N�?��<#$4�\u0019\u0004��\u000fd�\u001a2�_jׂ����\u0003&�$=,�x�Q3��[;���\u001d���\u0002/��\u0015ُڹ\u000f�v��?CR�\u001cY)N�\u0016ig-J��\u001f�8\u0004rS�}ު�P�\u000b�=g|\u000e^����Y���8�˗�yp�v��\u0003©v\u0011$\u001c{�\u0004���xA��YC\u0010��]T3;\u0001�P\nZ\u0005n!`�x\u001c��/��\u0004`��Sĺ'�,\t5\u001ap�U�����\u0015ưxt�z�=ȯ�\u0001�?�ޘ�\u000e~\u0005K�\tk¸���i!�D;)\u001c�l\u0006\u0004�d�\u0016Ԗ\u000e��\u0014���E�\u0014���H�K���Fг�\ne�\u000f��…6��ޫZ\u000f�\u0013�ѐ�\u0002nO���Q�Tlּ\u001a�\u0010��A?�\u0013���\u0017k�\u001c\u001b\u00016��n�\u000fr�\u0007gˤ�\u0012�V�f룀��\u001e�\u0002JC�U�WL\u0015X��-W�\u0010$L�\u0019�m{LV\u0017n�+�Y�N���4\f��L�:�0q��\u0017���q�m6�XI�\u0014�L�Mw���G����\u0011F\u0001��Ș\u000eY}\u0006ىlU_�S\"B��-�C\u000ezY\u000f+�ʏ\u0002m�\u000bV����\u000b\u0002�\u000e���fS������_�H����b![\b�����1�\t��*%���!��������\u000eh@\u001aQ\u0019�g[4\u000e\u00078v\u000f�\u0001�Ч4�莭%\"/�4�>0#��eI�}k���\f\u0003V.�N�h�$>h���6l2j���}��\u0017�#�2�w�\u001dW\u00046×tH\f�u�e�yCq:�VvH�mF��.�uZ\u0002\u0015sv�AB�\u0013���\u0002�\f�\u000fP��\u0017\u0010��(�Gm��C����0�,�\u0017s#�4}Z\fٿ�\u0019�C�C�(#8P1f.�m�\u0012U����\"\u001cA�\u0011\u0019�\b�\rظ\u0000-V��'�ZOZG˦4$K\u0004�+�\u001f|��_Z\u000b�D^<;^ߙ\b�_���~m�����G`��������8�\u0006[\u0016�P/�\u0019Jԇ}\u001eh�\u0011\u000b��b\u0015d%��A�N�����>V��\u0006[DC\u0005\u001a����&\"�\u0011�\u0012���VF@��\u0018�߁��qr�o\u0007/�\b��\u001b+�-j\u0017\u0014�5�\u001e�\u0010��s\u000f�\u0018!�a�Nh������>U.#���G��2r�?u�cu��յ�\u000f ���-_�T�\u0019@P�P:��\u0017S�O���i<@\u0005�p-Q�����\u0001/?��\u0004m�AI�\u0013���\u0002�\u0007\u0012ǡ\u0012��h�j\f\u001e1Q*G�\u000f4�:��%2M.�3���h��c!Z(c�zL=^|!]\u0014�G�u�8���W\u001a����������$9\u0011,�IJ��@�<.�\u001d���I\u0005@�3��\t�\u0012���͒����lT�#+R�\u001ca���%����b�!��\f�;�!cn��p�\u0002:\b~w�X_Dĭ�*�1���oc(�#�-��d�u�ңk,�Q\u001a�4T��>�\r'��\u0017\u0015\u00109R\n\u0017��M\u0010,ƙ����Ȕ��ˬ�v�8\u0005޿q��\r\u0018YJi�q䈇t1�c̼}2����\u0004#�X���͖\u0003�\u0015���\u0017��(7=zC�}\u0003:\"��M�kt1�\u0003SPF�>�\u0000���,B\u0004��=�\u000bl����?��9�\u0018ңA,�\u0013ŀ���q\u0011omV�i7\u000b����n�����N�@2\u0001��f�Q���8�aw4\u0015 -���g�2MJ��,C\u0016��b�b��D�%䐽Ȇ\u0004+J���r,\u0014Y��{�#H�j_�,5�\"�\u000e^[qm~�'��)��\u001a��\u0007I�\u0015m\u001e��p��m\u000fH�\u0017�~�u�����S�v\b�\u001f�oG�b��\u0003�\u0012�(F\b��h�i�L\u001d��XD3�8[�A/�\u0013����ޣ�\u001c�R�I�%�\\\u0012��\u0007rM;���9:��+�wG�\u001c�~\fɗd}lX����C��PS\u0016\u0016F]�ku?�j\u0018����9F�/d��5�\u001c\u0002sPnu=2���H��H��l�~��{h�.�������T�n��A8�\u0014\u0001��\u0002\u0017��ҝ�!�\u0004��\u001a\u0001冫��\u0016x]N�&��-�\f<���{ne?R��T\u000bVM0������с�G�\u001f�'�%��q���7���_�G��[��)��&�\u0011lJ�W��Ҟ�\f�k�J�ez��\u001a�]ty��ざ\nR��\u001b\u0019��m[�F�����B�#�YX\u0012\f>���\u0000@8�\\�`�\u0006'������œ�$wӀ\u000b�N`�S\b+�\u00198���%��\u001es���5�]�w<�A�\u0010�pJ�~�\u0019��\u000b1Ƭ:�������rn�D\u000f�nt)\u000b�Mی���e��|_,����\u001d���2�h\u001a�($�a�\u0000=\u001aZ\r3\u0013\u001e�����w �CՃy�\u0002�w;�\u001b����{���\u001ba��~���e��wT\u001f�(�\u0004�C\u0000\u0006�ʃ;�\u0004KG��Q\u0004;k��R�UD\\�Z�A&�\u0014)��\u0001�QtX����z�L�y���\u0018�\u0016�%h�R.U�`8��t��ֵ\u001cp�,ꠍ'��\u0012�`�K]\u0005٢p�\t�\u001c�\u000b[�\u000612\u0016�Y*A�dhミsO}^\u0014FU��HloE��a&�D �S�k�\u0006\n|~�Rz\u0018\u0005�wp2W\u0010\u0003y\u0006c*��\u0012\u001e\u000e2@���X�bal\u001d��\u0013��\u0011�ʳ���e)\"\u0007�\nʏ�$��f^�\u0018\u0006�\u001aV�ć���yz>ɉ�'�\u0016�j��\u0015��JyH���I���%�RM\u000b#����I�� %�\u000f�H�QJ)�\u0013�-\u0011`�C��S���%��+��7\u0007*\u0019SG�li���7��^-K\u001a��A8�\u0014Q��\u0002����0�$���s��1U���:\u0016{YpϬ1��\u0003عh��\t���|����\f\u0006��ѿ�7\u0019�\u0014�\u0013\\���\t/���{�U��c�]]���\u0016\u0015��MO�����a]`�:\u0014�_�У�\u000f�\u0001d�\u000b��_�E��z6\u0006\u001d\u0001���KÉ^}��`[���o�N1�\u00022U�0$��g\u000f�bn_k��\n��;��,�A?�\u0014e���\u0002\t@ɺO=�g�`��x�]��d\n��˓��!O\f�v\u0017\u0012A?Ԙ��qJ_�)w]\u001bG5�7ž\r�͊��=S��~QD��>l���j\u000b\u0016S96u\u0014�V\u0010~h���;\"$O��\u0014�D���A4�\u0014y��\u0018'�Y.*�E񝩞\u0005�7�\u0013��:a����|`\u001a�@��ku�\n�\\{��\u0001\u0003\u0011\u001b\u0010\u001c�?6w��\u0019�]�I�F\tEC�6K\u0012�Sf)=m��d(��\u0007�\b�\f9[<\u0015@\u0017\fZ8d\f{G�)��ޘ�V}ΰ��\u0013˫���l�U��\u0010�\r���Z\">�1L2?\u001e�\"T-񐠊[�+\u0007�\u000e�`��5]�\u0010�\u0000\u0015$yh|A;\u0011N^�\u0012CC��h��\u0019A�\\9a\u001c�\u0018q\u0014w�\u0011&��PHS+�t�XH5�����\u0015(�)\u000bW^\u001bw>��\u0006;��\u0014}Q�f\u0000������m`_-�u:[��6*��29Oj�&v�\u001eY�Vyg1��\u0006\u001c�/�M�ݭ �3���+�#�tK��ܢ]��A:�\u0014�����}F���a\u0019&p�\u001f�G�Ս�tI�B\u000b<~L��/G\u0000фG\b=�\u0018J\r\u0011�I$sV�r�j\n6\\*��P�[%�h���\u0011\u000f](�N\u001bl-]�x�e�#\u0010�݄-e����3\u0014�Ir3\f\u001f�p��\u0004��'����\fV�Y>@�ni\u0006c�l\u001b�%�p�FQ�Dy�\u001c\u001b�\u0012B�2+���O�MU\u0002P�\u001b6?�\u0002@ʄ��]4cLL�+���oQI\u0014ΕFc��G񼸩0c\"#��@��+\\�6��p?-i�3(�^�sv̠p|a��%�V���\u0015�\u0018�Ǵ�n�թ�=`�cJ�\n��+u\u0003N�\n\bG5\u0017��ix䙰\u0007+\f��S� �\f}�K5��\u0001\u0003\u0014|���m�%��3\u001c|\u0015\u0013uZ%>�A1�\u0014�����*�)f���=\u0011|d\u0016\t\u001f���`c��(\u001cf�\u001b*�8\u0016\u0019\u000bk����\u000e\tb�!\u001e��\u0001�\u001b��w�\u000f��߯�9�\u001f�m�E�w;K��u?�y�I��+����\u0012�_��=B�Rt\u0004\u0001\u001f��A`D���#�\u0016��)Ԃ�󮤏�v/W���Y>�t\u0018�����|z{\u000b�P��p\u0012G���u���\u0010�\f��ľ\u001e�΄dJw�l(\u0011D�T��yݸ�7��:�\u001bw:\u0002�*ξ��6�y�\u0019H\u0019�q((��.#�J2Ys��5�-,Ҟ\u000b�k���Y�\u0013����>�\u0016����Op�B\ry�f�}��\u0003ۘ��[\u0013`�Wo\"s�u�Ɵd�U������\"��m�h��A��\u0014������$ځ��\"����l*�\u001b�0���\u0012z��(�q�bR\\���{8�\u0013޸��\u000112��u�ٙ9\u0017���-6������E,�3�\u0004;�\u000b��C��@|C`0�|��>�a�\u0005`I\u00027���I\u000ea\u001a��j�\u001c���?�\u0019D�\flG�ϲ�D���;�C�\u0011\u0015_3���|糙�L\u0014�0Z\u001c�Lr��\u000b{\u0019PBUU/x1�P�Q+\u0012�)3n�\u0003\rcEH-��3[ӯ����ր�����,gP��(�\u001fE��oa\t �\u000fT 4{\rVniWI��R\u000bW�*k_��\u0015����բ��5�n��\u000b���\u001dqo\u0005��M)r;1/�� \u001e��(=�(��\r��V\u000f��\u0002\u0015{�yo�ȍ\n�\u0016y(Ϫ\u000f�7��|�\u0001�Nx��\u001a�K�a���w�\u0005\u0001.�\u001d��m�\n���j�ѳ{��r�\u0004\u0015H�j�i�HCWe��X�!����W��Z-#W�w���A*�\u0014ɀ��R ��H��ulZG���\u001d�\u001f�ixo�2]X�\t+�H̹\r\u0017}\u001d����-VY^\b86��F@_iv\u0007\u0011�\u0007Ls]ڤ�U*be{\u0013io\u0011�cF�Q�[�h��1,�2�\r\u0014(\u001a�N{�.\u0000��#H$�S�2\u0004\u001b'8fz�R���\u001a�n�6⃺Jx�Bo�iN5��\u001d�:��\u000f��w@�jہ����Cȫ2^\\�b�2\u0014m�X!�Ŷ���wc�.\u0004�\u001c�L\u0010\r�\u0002d�q\u0006�\u001b'v}�_S\u0001��J68B�aʋ,\ro�CY�f���R��Sѯ2?�G��0t�\n37L�G�&���`���p>��\"��|����@�9\f�\u001b�`���\u0007��\u001e-�D�|�A\u001b�\u0014݀�\u0000N�gE\u0012R\u0018{\\7�\u001f���^J�|j?c�\u0001r��ݼ9����當\u0016\"?�yY����_��\u000bF�\u0004�R�5^J1X��Ɏ��\u0000�\t�\u0004r{_�\"�{�����E},��lz�\u001e��&�Y�C��#R��:e��2�I\u0004Ҫ��\u0019�R�\u0006\u0001�4\\\u0011mz���\f}�\u000b}�p!~\u0014T[\u0013� \u0015���.w\u0005��\t|�}���\u0001�2X\u001d�1k\u00101�{n��\u0019\t�B��\u0012\u0003��\u0016O\f�h��)|��6�p:��!XN�\u0015��v��ǩl���`a�I��У�y��pҝ\u0014�`�H�U�B�^`V-\u00179`�Z�d�\u0005\\n�>��\u000e5�M��A �\u0014��\u0000Q'BC6}\u0012�\u0000\u001fB�X���ӜlN�}�\u001dl�\u0017u��Dh�9�I\u0000�f;t�Xd�&7=�vM\rD�m3�o\u001ep���W\b��I\n��\"+\u0005/}����\u0018N��ݼ\u0012��\n�����(�`b��cĕ�����h��R�h�-3ت'\u0004>����\nYMֈ�\u000b\u0001�۹��M%�u$�3K�X�?�@�Iq/2(��a��A�����%��x��8Z��6�N(S!��P\u001e\u0010����<�\u0015���4�k\u0004�o\\\u001d\u0012�s�#[=����ӌbֆ/ŵ3��ִ�>\"�}\u0013h�J�W(\u0010r�m�'���\"����u��\u0001��$N0\u0011��$�S\u0006�ܣAN�\u0015\u0005��\u0018$ ÿ~Ӿ,�2fɼ��{C�ִ���eS���;e�`\u0013�\u000e?�D��%��o1.���\u0000\u0002�\n|���O���71���\n�\u0004�w�\u0000�\u001a\u0003\u0012�[���\u0006רb\u001a#�G6*l���)��\bI�N-�^I\u0019�?�{��@�W5�y\u001e)OD��e�2\u0003\u001b���\u0006+� �;�����6\u0012��'�:D�s�r\u0014A��-]���.\n�\u000b�u�\u0018N�آq��ʹ�\u001e?�5�\u000b=�P�~O���2Ɉ�\u0005��a�2��\u000b����<�y��\u0012�x�́�\u0006\u001f����\tr�k\u0004��X2\n�6�F$m�\u0013��|c��!5�\u0012fr�\u000e!�\u0018�Z\u0018��\r\u0019��RC��KšUZ�U#g'S��C?��7�h\u001f\u0018|\b�\u0013`�#/\u0017&���;���A+�\u0015\u0019����X\u001c����Lj���R��v\u001f��\u0007v����2~[^���\u001bp�9�_\f\u0013�̋pd�\u0012�k��\f��)?������ú6�t\u001fY\u0015���\u0019�Prq��7�\u0019q�\u0014'�y�E�(i��V�\\�ːJ)���ê��$��?)8�DZM|\u0011\u0006�Ԋ�\u001f���!\u000ef\b�%�od�\u001c\u001c��%殂Y3�8�'(p}\u0005lT\u000b�\u0000'�\u000e�K�B\u0017��\u000bP�oL\u001f�����@`F��>e���_��y���h\u001b���\u000foj��\bd\n�9��,��hV��.\u001a�k<6Z\u0015���d]���'g[:\u0013�h\u0012(a�j^�nA�\u0011�uxbB]O}}�p������ĀE���m�M�<�A8�\u0015-����+n�\u0017\u0018�d\\��\u0019�n�G�Y���\u0004Ƶm�,\u000e�ǐ\u001f�]�@�\u0001Z�6�|O�� N)$2�t��\u0016\u000e�\u0014����+\u0015�a�\u0019Ek]ͷIe�:�n�UL<\u0017:�Ϻ/*\f�N��\f<�:^��U�y�Z��]�3\u0016�\u0012Y\u000e��􂞦I`������x;ҷ\u0003\u001a�XR�\u0019�xZeMm[\u0007v���[�B���d�*¢���W&�YWI�m�t���m�f�\u0000����D\u0001�P]Q�A��\u000e�\u000b�b���Z�RR�\b�ʦ&��x\u0012���E Ә�0���\u0000��8���#>g��MH�W?��ն\u0017,�?\u0003\\\u0010NT&ʀ��5�\u001f\\�\u000e\u001a�t��ȸ��\u0012�kf�!I�R+Z�,R\u0004���A2�\u0015A�����,\u0013H4���p\u001diϤz�Z\u0016��t����V�g.MO�`770�\u0016�\u0015���v�;c\n��Wz7aɢ�>\u000e!?��Xn����\u0002^;q\u0013��\u0019�!6��|�i�K\u0007���t\u0014K��\t\u0019�\u001e���� 8Q\u0001��W\u000fK�\u0017E��4���\u001f\u001b�l�Ǯ��i�3�u� S\u0015�aM\u001d\f\u0018Y.[n\u0007Yͼ �\u0019��\u0001 �\u001e�j\u0011+�瞄r��R��M墤�*��r�\bq�W�30'�\u001fƥ�U??\b��\u0005!����s�,�06?�\u0011d������k����i�:uT4����E#��\u0001O ��O��\\�Iۻ�JDm�\u00185H�.�<\u0007�������\u001cѐ�N��\\2�7g�J�͠���DV\u0017s&���\u0013:\u0003%�ldž\n}%K��\u000b@z��[�u��\u0004*��i�e��\u0000���\u0004]\u000bW�\u0007�\u001b�\u0000�nL�0�\u000b��\u0006�{!�\u001ecw7 \u001d��z�ն��5A�\u0006`\u0012�,MUЃ���?�szk�i\u0002�߯���4��A-�\u0015i����\tep��o�1�\u0013\u001aZ�M\u0007\u000fd��\u000e#�|���[��̒j��\u0012�/\u0014[P�\u00153��I�W�8,$� xC��1�itGIv�\"\u0019gv�@S{:�i\u001dxK�x��m]W71hc�l���\u000b�<��󂥏&ԇ� \u0005biS�\u0001!�ɱ��j�L�\u0000T@���lc����zʖ��\t�y\u0016u\f�%���Ǵ0��\u0004$��\f\u0019�{ޭ�=l#؊ǣ�xj�\u0017�.ZG)�ϐ\t��#2m�Uɷ\u0000\\��\u0017L\u0018� ��߮���v��BG�LVb�^�\u0014\u0015;�ſ|�B�G�㏋� XV��ҏ�y\u0006�>㝿`Ԟ��c��\u001d�,��xS5`7��\u0013�\u0011�\u000f\u001bUx~�H��A&�\u0015}����\td�nzX,�ۨ\u001f�\"&u��~\u001cG���=h*:\u0019bV\u001e��\u0013\u0019����d\u000e�\u0017\u0018�b���}��/�\u0010�0\u0019 ��ٕ��O\u0011ھ�R�Y�H�\u0012��c��\u0017f9`�\u0017@�e��2�؉H��^�4=E\u000fF(\u0019\u0002��*9�V\u0014���\u000b�uH�qe\u001e?��9�o\u0013�~3������F� �mm=y��ߍ7Ҍ���Rs�\u0018�i�+\u0005M�/�\u0007A\u0004\u000b@~�\u001a�9m�V\u001e��K%�\u0000���\u0006\n��z�a���l\u001bђ�6j����?S�6�b��u졩�拻zJ����\u0012�|��m�ԅ��e��Qw\u000f#��BYJ���֚���1��\f\n\u0016~�&��A)�\u0015�����\u0019m\u0003����o�f���\u0016M��\u000f��ei�4|���&�rrt�臖��\u001a�w�Eb �f\r4D��Nm\u001f��O ��1nFL��\r�f�ׁ��QZ�Ѥ���t�����R\n��R�0w�\u0005�ӦBs��sz·��Y�w8�촊�ke��w\u0005I\u000e���\u0007��f\\AM�=U?nwl��.r\\�\u0011�:�̅{˷�ȯ�6PG�DҠ�$��y>��4Mַ��\n��\u001f\\��٪L�E��U\u0015u>�{��\u0012�X��r\u001dU�/�H�r(�\u001cj�u���:\b�H���j.�\u001c�\t�IP�\u00065�-�1��%�Welv}u��\u0015\u000b�4��A)�\u0015������>�\u0005�r^�0�-��o�V\u0016�\u001c�4��\u000e*e\u001da�c{s�Yf-~U�|1\u0002����G%̫��-K\u001b�D8�J�7�f��a!���$���[I�\u0000�C���{�\u0019�\td*H�`L`J�EAݢB�/בY?P�~2$� ک��A(\u0007�\u001e\u0016r�\u0015��\u001a�2��dD\u0017�b\u0014�t�\u001d���9��ed\u0015�-I\b\u0015P\r:p7P�Ը�/l\u0004\u0011|�nu\u0001ʰv�\n�4|�\u0001ޙ\\���\bv��������\u0010\u001f�L���\u0001�M�\t�\u001f�?�\u0016[��s\u0013RbUx�̤�3j�J=�\u0014�$�(~�&�\n�7w\u0005~�����\u0019\u001a��\u0003��>��9���\u0015�\u001b�g��E��z\u0010\u000b�\tӴ�„\u0018��v��Pߥ�6����h�ܷ2X�T6\u0000m$��rh�@���;w�T�\u0018�q���0\u0000o\u001f\u0002�\u0016���I�\u0014\f�F\u0018��\t��\u0010���D��}\u0000�[H\b5����A'�\u0015����\tbu'U��V�����c~�*�v@ 5Y\fr�N�)s\t|�����E8��d�\u001c�0 �,Ph\u0016�h�܅����?ZΏ��\u0017K��\u0015\u0004��[zE{�u�JX�\u0014\u001e�8�=�R\u0000�N�q\u001f���J٬�Q[��c>�j\u001b���z\u0000�s�\u0007�$G\u000e�=1�﫿����&\u0005�\"�Ѯ�k@\u0015$��\u001aS\u000ec\r���L]8(�\u001fe�<�m@�|\u0001���&����\u000f�T\u00138�Hp@���pr�\u0005�'�*�E�W�����k�TL\u0019��c\"�O�m��'���1��3BS���WԈ��|�;j\n`\b�t�GR�_�L\u0003����n\r��:\u0012�ԩ�;�}�A-�\u0015�����q\u000f4S��o�\u0015D���h�����wޠ���t\u0003�S{\u0018 \u001a�@6m�u�z�Zw�$�S���4I�J'\u0016�fk&��˘\u001e�߲�\f�@x-ତe\u000e'�\u001b[Y�H�\u0007D�O\u0011\u0000\u0018��Ӊ�����wg��ܶ\u0005\"�\rف\u0007�\\�;�[є��\u0011�ո��\txR��4��0+:Ġ�\u0006[tYD3}5I\r��B\t����3D]VlG�I���Y\u000f\u001b?�j S�(�ơ�N���'B9\u0001�\\��ik�k��I\b\u001fh�w����%�ZL/��Ux�R�\u0016\u0019�\u0000�\u000bz�B%���q�\u000eQRm�\u001ev���\u0014�$�:D7}��\u0002\u000b�&\u0011�X�k��e8��קΒ�w\u0002��A0�\u0016\t����ǜ��L��c�OO��A�i����a�h���\u00009\u0017W�tB�\u0001^��#6ϛ��\u0007\u0007�b�\n�LZ�98�ߎ��̔\u0002�a�ݥY�<��\t\u0017�݌����Fy!\u0004�G�Ap\u000e���Q�{;�$\u001dR����\\X\f9���v����f��时��P-�ё���S���Q�S{r��\u001d'd�`5���`ue]�\f`������ʖQ\u0005\u0000aPL�������\u000f\u0015�\u001d\u0016 ��m�\u0010\\k�}�^���c\u0015���\u000eB~�C=k��P`O\\�L)&�\u0018�\u0011m��Q�\nkU����Й)�\u0000k��,�M��V1�\u0018��х������U�\u001dT%��A����(����W�l�Dx��A/�\u0016\u001d����;~��^�����gB�\u0006��\u001ce�Q\u0016\u000f��i��\u000b>�+\u001c�V�oJ]��_��:R�_�[�3\u0010���m\n�W�\u001c*�p\u001016g�9�\u000b�\u0007\f\u0016i�`,�p\u0017P]�\u0000\u000f�&�>��X\u0005䏱\"S@\u001229T�H�\u001c^�\u0001\u0016�\u0002�ꗥt\n�c��\u0013!lu�$�d�x�SW����������&:��y�f6RIg\u001c�\u0000\n\u0014'N�F�}j�b���9k�a�9�\u0001v�uy��i8�\u0006f\u0018[�(\u001e���\u0003IF~\n}\u0004��� \u0014���t.F���mz�`��W��Y\u000fDM�`�A�j3��-~�r��Ǭ����\u0017\r���*Ub&����z�˖�ܑ�\u0019�z�K�ê���A+�\u00161�������!>\u0003�O\u001eJ\u001a\u0019��\u001b��0�Yx5w�R\u001fV\fq�����Hg\u0018�\u001erE\u0003{&�r�=��lT�h�c�4{p*�ɬ�v67.��鮺^\u0016\u0011��᠜�`~���)zu0�Dh�IKTte�oP��I'��x��ؔ���8.��N��Q[�tdz�\u0016�\u0013H�&%sش�ܶ�P\u0010�kY\u0001�}��LW�w�\f�E:��\n���\u0010W0|[\t(g\u0000��, Gu�X_�*\u0015ss�\u0019v�\b�\u001fk\u001a\u0001�M\u0018��\"�g������ݒ�\u001d=\b��B\u0003]�M\u0014\u001d�\u000fL\u001f�.���{<�S4Iw�\u001b/��yQ[�з\t��*%����,+�(���\tz\tV|�A.�\u0016E�����Ñ�D~tq\u000e⠩H���b���\u0006%͠\b�Ӹ��\u0014�\u0019��\u000b�W��\u0016S)c��H�mxþ��{�?挡1�pz�!\u0019����\u001d�1D�4�М��u\\N2)�\u0018�;Cb�\u0014�g\b10\u0013�s7)\u0013!RS~�P\r?��(\u000bX·���Ma�3\u0007�'��U�n:���s��JQ���'�Zk\u0019�dE�\"ո�M�`al#��1\u001d��]���'���W\u0007�상kQ�D�9�s/{�����\u0012 \u0016\u0016f�U���;�nAZ\u001fJԶ\u001c�\n����|q��+���\u000e��\u0004\r���f�����2lMĐ���щ��v�����Cl4�H{\u0002\r��G�xaM�|�A/�\u0016Y����\u000e\u000e�Oi�#\\T�!\u000f�]vWJ�d�g��y\u001f�p�g��\u001d�v��\u0005=]zb\u001eL�q�_�X1H �W��4\u0005�?������䀣}-�x�+��Q8�\u000e��V?��M�l�/�~O\b�o\u0002ϲ[���H��v0�E-ڷ���\t �@Z��.��\u001a\u001c\u0000n53e��ێ�Y�\b�/W��胊7\u0013\u0013�����0{�woAjkP�*�\u000f�PB3�=I�2��\\��$w��w��%���\u001a�9�R��#`oC�\u0011p\u0000S<3\u0001%�Q�\u0013;�=*^��$�\u00169ы�\n��@n\n�\b�a�#e�I�LO����b� \u0013�\u0015\b�/YM�\u000f\u0002C8\u0018KU�\u0015���\r��\r��GR�I�~�A,�\u0016m����&}�H4�\\92���\u0011���a���\u001bw�t9�\u0010wq�-���$�\u001e�e\u0003@u{�`\u0000Ӡ�2��*\t�$q0�\u0011���{fj�M{pYw\u001c\u0016'``���!@t$\u001c�&�D��\u0003��ը����I��\r\u0012O-J̈́�7H\u0010�w�3�)��|9iݥ�\u0005�^�����\u0006�dc!s���o�Ơ\"-.T&\u0019sզ\b�@�0���؎'X��\u0016�\u0000.\u001e���&�6\u0015�U{�[)P~\u0016�\\�S78����7��P\fo15�X^��^왛�{�z;�?ʻ�\u0015�\u001c_�\u0004\u0000ү(\u0004��\u0014k7\u001d����䃿F�I�G�\u0006��-Rdh\\��a'�\u001c;Y\u0017����DC]ϝu����A-�\u0016�����\r�\u0017U��\u0006�Y#\u0002�CY���S�\n{u\u0014s�9�\u0001��\u001f�\bX�\u001a\u0010�i��N=�E\u0012\f�k\u00169�������\u0006�:���-!��.�&��l�8qaYqC���t�\u001c\u001cq��?7\\�#��\n�\u0014��\b\u001d����@0�e�����\u001c\u001c~�ҋc�\u0015q1�\u0001\u0016��n!�a�dZ\f�jmvR�\u0019*\u0019��w\u001bo�^�\u0001�>*�+;�I�c�}��\u000b��a���H��P\u001f\u0003�0�$\u0004s����FJ�u�\u0005�\\�D�(���H�6�^\u0019��M�r�/\u001b��o\u00071�(>C�ٺ\u0016��)�\\,V��Cd��-��\u0004��\u0007P�+-\\�!m$�\\�\u0007�\n>��q����A.�\u0016�����'\u0010]}��\u0006\f���]J���b�\u0005\u0014\u001a�`��\u000fQ�\u0014��֚˷\n{\u0005����f\u0019-6���a�\u0004�:����\u0017\u001f�����P��C\u000f��E\u0003%��ʵ\u0001k\u000bO~�B`&�56\bٝ�\u0007�\u0013,�}�,��um>�4\"(sQ�\r���̥\u000e��vIR�\u001f\u001c�\u000eA�V�2�\u0005�\u001f$� ,�c�\u0001������\r׈���|;C]�+�4�.{\\�5��=84�8�\u001di\u001b\u0013�\u001f&��fp�C�Ѡ!�\u0001@\u0011\tif���\n�X���H��Ƅ\u001d�\u001f��X|�H��]�����)�g\u0017\"@�ˎ��\u001f��1\u0013C�F�ܡ.(�X��`>�V�=�d�\u001f�%�9mY�r�l����\u0012��A �\u0016������7@=\u001c�7i��8%\u0010F�Pe���ŀ\u0003t��A���~F�\u001c�/x̴A@� Q�T�\u000e�pc�}�\u001a\u0001/������ �[Y�\u0003@\u001f�\u0007X+����1���J�z�2'\u001btƹ�@2��Z;p�\t��r;�So�wb�\u001d�\u0019�{��\u0002�(\u0007vC��e�\u0018)X�ͮ��m�>�D`Y��a\u0016��%0�W�����0 @��w\u0012&y��м�w��7\u0006\t���ӎ��R�\u001fz@D�T��:ϙ���R\u001c���Q�{l�Lc�o_xD���M�H;=�\u0018G'DŽ|\u0013H�~\u0012�\u000be�6'x5�\"¾\u001a�o5�I.\r%�\r'���q��lz�A%�\u0016������E2��q7g���$v3°`Ʈ;\f�\u0004�i\u000fs�\n�N\n֘���M�(n\u0015̷��\r&Z�ML0Z�g~�)n�rQ9\\�]�\u0006u��G�����Y�\u0011\u0000�T\u0000,�Q�\u0016���� Ѧ\b�6I\u0015������q�\u0002\u0004���\u001d\u0007\u001aD\r��n��&���\u001b��/$\u0007����\\��p�ͱ�n]o3S�O\u0019\u001bާG��\rE�{��(����M?\u0017��e\f\u001d?\br�bWgD}�̓��\u001f\u0018�zA�a\u001eJ�y-!��y�g\u000bȹ�'���X($�j\u0018�e��v�����[���d�1���tP\u001b6��.�/�\u0001��y\u001eռ񰱱H\u0013�0\r\u0011?��3M���A\u0017�\u0016р���\tn��\u0013%�s*�\u0010%��t\u0017ɻ�7\u001b� ^�\f�y(�;7\u001b+��ME\u0001�N�\u001f��3z%�Mw@����}�kY�\n�\u0003�(\u0007L\\!���Q��\u001a�I30^�ԗ�d޺�\u0014�0*��>\u001a��\u0011�\u0011}\u0005Jq\u0013�\t\f��E���(`��@\u001f\"���\u0013�\u0001h��\n��I*\f�^zB\u0007|C9=L-\u0019\u0016snEJ)/�\u0001�X��iq�qP` GB��Ron�%�\u0001�&� =�\u0018Q����\u0013�9#�\u001cIt�7\u001c\u0017lB���.~Ѐ^\u0010� ��|��\u0014��\u0014��L644�ˡP[\u0018��?�x k\u0011\u001f(`�ĩǎ�@s>��HA\b���A\u0019�\u0016����WP�V\u001a\u001e����,ݸ�,�zD��\u0005�\u0019t�&b\u001b����&\u0013[3�k�B;>R�JE|\u001dr����u�~\u001f{�@{U��-P�c\bNn�\u0013�l'\u000biY\u0014�\t=���cU��猍��\u001c\u000b�HG�\u0018Al���\u0017N����v��\u0015iT�\u0012��z�↸��\u0004��E�Nj�{�k�cD�j�\u001b�����6�“N�'����ev�6\u001f\u0007��!r+\u0004\u0006��R�\u0019\b��P\u0007+�\u0004���\u0017<�f�1�S�\u001b\\���\u0012\u000eܦL��G�\u0006\u0018�4\u001c穿`�8��V�(l��\f��R� �e*=ɇܐiSp�j�C����>ds�� ��A\u001e�\u0016����.���@9B��)�\u00009�=������\f10*J���+�U�kF\u0011�WR�\u0019��s,�e�a��l��K�I�\b\u0015����:a�v�,\u0004�H�\u0004�\"����ڊ�Ѷ��8�A�V���/\n=cS�~�\fه\b2X�\u0000}�7�Fj3��?\u0001���c���ڇ\n�m���w�:,�e��.�\u000bi�PS��\u001f�z�y\u0013\u000b\u0007V\u0004����,\u0010�\u0013�\u001f�ٶ�$�;�yB4�t▕�\n\u0006�SVMB�[}=��]H&\u001a��R�3�\u0018l�R�\tv\u0006ڴ����uK��ގ���'gE]#���v�\n��A$�\u0017\r���2C��=� x�c�W�ױ�$ISe\u0006���̦�h,�%p@(C^�T\u0018�%�?�V��3��\u0013��� \u001f�Uy}\u0014j́�F�b�jSX2Ӳٷ�\bs}�9\u001c%H�\\*\u0011�l)\u0004�@dFW���'*N)��<�I'���\u0014u�\u001e�LU�i�:\u0001�dM)\u0013\b\u00162\u0015\u0014VRC2� mnY`�\u0002����I_���-\bu�l,\u000b�ai\u00118 �;��s�\u0019]���\\v*\u000bD/\u001eӵs\u001a�)���x`75���f��\u0014��WE�~k�\u001dU\u0007J�o�EהUdG\u0011A\u0011�k�K��u�\"�\u0003\u000f�_\n�U��\u0017Xp�'b@.\r���0)3\u001a9�>��P��It�î��A\u001d�\u0017!����[,ڔ\u0005e�X\\I|��\u0002��>���R\u001c!ᓿuO�mw'�\u0014�\u0001����h\u0011�\u001a\u001a#����-\bx��΃�ɑkF�\u0006�<*��K��<>����0X^���6�\u000f;�P*\u0016�r��A�Jp�C��ˬ���\u0002\f��\r���Ш�2�7%��9#�l��&\u0001�\u0015�(S�otIdI��Y�ݻHDdžݚp\u001d?����+i����g�w*�`z\"�^B-�Z(�\u0010�L�B>��&�\u000e\u0018p66T���B��.lF���n��\"���bmϞ}��E��Bg\u0006!�1�¶�\rL(\u0003�\u0019j�|Q�\u001f�_�N:\u0001��K\u001f̟�#��nڢ4��A#�\u00175����f`C\u0019�fκ^T�2r�\u0007���`�AQ�d\u0017G7�\\xu����7\rsl���S��B�ߤg��xL�-�I\u0000A����w\u0000Z\u0004�\u00121\u0012�\u0018.�\ffMH\b���.�0�N\u0005{�\u001c=o\u0017|��\u0018�J�4�\u0014\u0003��0�[5hs4��dh�\u0018/���\u001c\u0014��HG�k�z�J�I��5\u001b�:hP�DVf�}\u001c��0����T��U��j�Oi��0�?)+;+\tz_d�s�a��\u0004��O^{��\\\u0018r\u001a�s�t,X9\b��)#1��\u0015���?Tj(A�g��MP�{\u0001|Eɞ�ě�3��\u0017���7�wi�T~����Y�5_Z�\u001c†���A\u001c�\u0017I�����_X�b��f�\u0012Β>��>`�\n�*��:KW\"�\u0010�,\u0002�I�eu��g!��\u000b6�V�\u001e<��L�ߴpO��ŭ���J�3�����\u00174W\u001f,�\u000e`��U3�l]>��=ƅ��\u0002\bzBtJ�@qT/���I�����\u0006��+\u0002�<��%IkK\u000bhU[e�sp�T.b?�\t\u001f{�!aޠ\u00039�)Rq����!x\u001a�)�&�y�8L��\u0000�ͭ$Y/D�0���\u0011�\bt�a���F\b\u001f\r݅��s����\u0017�Y�\u000e\u001b\u00159�,\u0019���Pշ�\bh�E'�򏞟�\\dy��%\u00178�L#�@]�������Aڑ\u001aKZ@Y=�A\u0014�\u0017]���4\u001d�\u0005\u0012���\u001b�S��\u001e��H~o��gQ)����'�Fl��3���\r�\u0019�˪T`J\u0004tqNa��\r�#y���u�o\u0018nxYl>`_\u0015$»�,\u001fö\u0013J��h�\u0005J����\u001d\u0007�Z\\�0�\u0002��軀l�r��հE��gy�薑�,hcX�G�\u001b'��8�\u000b�t_˖��J����6�[I���\u0006\u001c�M[w�`��涜�14���{T0|:&���\u0000���C<8\u0010�P�\u00028�}-��\u0019�}f���|�/\u001e�̋)7��u��-�Ri\u001ayU>L��o����\u0019b}��\u0018����GUr�#��DO\u000e��A\u0016�\u0017q���247$��*-�%��P\u0004?\u001a5\u00120\u0017���\u001a�\u0017�\r��?\u001f�Zv�Y��km\u001a\u0012\u0019�\u0000�&?\u0012%m�\u0015\"��\u0007���|M\rC�\u000f^��\u001b�M�{h\u0012�r\u001a'��\u000e�Fz�p�h���>�@���\u0015:%�\u0010�>6�9�ЄE�B=5\u001f]\u0015l\u0018\u0011�\u0013\u001b��(S+�>\u0007\u0015��埗4Wg1��\t���\fГ�v\u001d�U�}\u001b�\u0003d��A\u001a�\u0002ؕ\u0018Y$)\u0004x!\u0001��\u000ba��ە?l�\u0004�X ��\u0004|��#&:OE,�7^�n$69�\u000b:��X�ב\r赖�Ba�\b���A\u001e�H���\u000e���\u0019O��L�\u0007�������K�7Lk�\r]��\u0001ƹ-Ġ��꼣A\u000f�\u0017������/�[R�6��\u0017:�y�\u00050�S�i9ķr�x�[F@Vt�^��b\u0015CŊ�\u001fE���2�0�����Y�v4sL\u001b�\u000e�\f\fV\u0015�Qv�e�\u0000}��G\u0015��\r�%\u0014\u001c\u0019�I-�V���*Z�XJ{3��e��uI���\u0016�8i�\u001c\u0015cL��\u000b\u0017��\u001cͣԳ�������|\n�~�F\f\u001d�\u001d\u001c��2�r��'\t\u0002��\n[%22�2\u0002�\u0006:j���ᣎ�\\\u0016�\u0011\u0015��`����o\u0003�+\fGCi�z��Q=Z\u000f�'�3J�iYN\u0017?t�9����6S0Dy�N �R/Hxd-]�iH��:�ႂ2F��A\u001e�\u0017������%nҡ�Ϩd�}��ɡE���\r�\u0006F\u001aW����(��H�N֞���#I�)^O\u0016��i!d]\u000f�\u0016�\u001ds\u0007�6z\r\\3AgW�]�^�S�\u0007<\u0015R�J����\u0015=80Ͱ����2����kDz6�W�g�&\u0013>��T��a\u0003,��:]\u0019�z-*��D�\u0015A�tM� ���/_i\u0007�/'Ո�&j\u000b>}.k�i��CPSF>f�2�L�G��!\u0006�OB�/���\u0002\u0012!\u0002U�_�\u001e>+\u000f���\u0015.څ�6�ߚ������\u0014ePH�_\bkOm��\u0005��':�\u0002HϲZ{j���P�]8\u0018�\u0013\nZ&��Y�\rhY�Kjrh��A��\u0017Հ���n��H��\t����H�u�[Z�*sy\u0006��i�f\u0012����T|S\u0017䁺@��_.�s桹�\u0016���|\u0011J\u0011��-\u001eȬG�6!G^��u�s�Z���]��{k���mCZjWP;��QT[�4���?��:����?�CͳIQyzؽ�9|��E�\u0003�8�6�!R�r����Z�Z{n��p��A)�\u0017�����@^{�^��L�=l,߬\u0017\u001cF���g���kS��d�\\��Ƃl\u0000�Y]Y\\��1�[�� {O�X��1Rg�U�7\u0013��\u0017�A��\u0018�\u0002\\\u0000c��I�g\t\u001d����z�z>0�,����J\u0014}��Cg-9�\u001fS�F��{��g!\u00016���\"�\u0002b\u0000c���#�|�ՠ\u0000�M\u000b��r\u0003S�d\u0015��+R_�g��Gz,���\u001d@۫\u0001sZ��\u0010�d\u000b�Dvdo^\u0016�?�AH\u0010=O=w\u0018N\u0014~\u0006Y��\u001f(�$�]�l#�\u0012�Z��oT����R�\u000f\u0003\u0001w\u0018U�cC�\u0004���D��\r�\"\u0016�\t����\tn]5�������_n]p���9T�=��9�A3�\u0017����.�י��H�,�\u0015\u0000�C\u0002T!��\u0004OXX���@�v�8�\t,�􇌺,�^\b�ȁ�����M��\tx&ܘ!�t��k�]����:㋆S��\u001as3\u001b�7�\u0013\u001e-�\u001eh��\u0002�ñgt>\u000f}m\t8�N��l���v\u001ceט�\u0017a\b��Jt�n\u0001��]�Q�\u001c��@MDOC�L|L\u0016��\u0004�\u0011:Uc�\u0001��\u0017��.2���\u0003\u0013�Y\u0013gޘ��=�\u001e\u001dc���\u0013�����\u0014��SSpE�HKڠ�\u0013�c;\u0013\u000e�kD�~�\rҡ\f�K�n͵�:�7\u0002�n�(��=�\u0011ߗsS=g�#\u0019!R�r�|2\u0010���VQ�V\u0007_p\u0012�M4<5%1��x/��ݗ��\u0004���\u0000�dR\u0012��%�\u000b��\u001d�~Sn��w֩�]Ӝ9�\u0015\fY���ەL��l�ڋ�B�\u0011NT���\u001b���3���a6x~��\u001b]�8���y�|֗���!�+�u/�\u001fHU�g\u0006����!�U)�r\u001c;��oP'.���m)�q’/@\u0005P\u0000���]TQ�\u0000[�hzt@\u0019D\u0014nM$�ƈq�]�+\u0002%�onF�\u0005���t�:��\u0001\u000b�G�\u001d�\u0019��K�l\u0006�\u001b��ҭ\u0016\u001b�m�\u0000C` \u0010g\b \u001ddK'7\u0006\u001b^E�p9�\u0003��HȻ��\u0014\u000fj?�bK���(\u0016�z�e�2����\u0004}��\u0012��A\u001d�\u0018%����*{\u000e���g����|��u\u0017�)�:\r.�:�\\�>\u0000�2�?�D���\f\u0013���4�\u0011��rꜥ\u0004���\u0016�6u&��w�F�L�I`1��#���i�.�Y\u0001�y�7B7] ��H=���cBe�����+�kT�]����wuϓz\u0007\u0015�����5�.�%�}��\nt¶ڌ��&c��X\u001f�4�X6���q\u0003]\ty�_�|��m\u0012y7_���p��B��9�\u0015��2�����6\u0012�v+-wHB]�H�\u000f�\u000eW�v^ÿMA�{���߼ڌ��;6#=�ۺ�~\\ԘvVY\u0010v�Ji��j`gt��d�I���\u0004H�h\u0015\u0016�\u0012��A\u001f�\u00189��\u0017+����\u0019��r���⒒�̶�\u0002����\u0001�Ѓ\u001e<���]$���K�Ko#Ɖ΅\u0000��*��\nv����8�\u0011vB%v#zSG�\u0015\u0015�c�x��¤֫�ħ`@�|��c���{�I\u001a�[�I�Ħ�����6�(\u0017������o=W��z��eA�$���Y�@��X�\u001fF��ř!zm\u00149C����\"W�4\u001d��p�|��x`bP �M\u0012F�<��\u0016���t\u0003=g���1�m�^�-�\u0002R\u0011��ܱ�S�`�t�#h7�S\u0016x��+g\u00063\bM�\u001bF~�0!�38\u0010�3~}���tF�5\u00190S�Ͻ�ml��=�va��7ۮ��A\u001e�\u0018M��\u0017?;jM�E1�\u0012̬��r��icE&\u0019�P\u0003���ws\u0011^y/�=�k'���%cZ�\u0019_�w��/�9��\u001d�f¸�p=�hL����遧����A�\u001a\u0002^�-�\"+\u0006\u0016�L\u000e���*<�ҍ�\u0012�J�&��/RC�Ő�\u0017\u0005&�8\u001a\u00067Eyd!\\��\u0011�vД꺢�2;\u000b&����s����+�U�\b3o��؟\u001d3�W\u001a\u001eɦ�*\u0019\u000e�\u0015\u0011��W�N�,%S��\u001ble�3\f��X�:\u001bi�e�Q�����6��\u000f>\u0017�\n\u001bxG궭E�,�\u0015v�\u0001\u0002\\4�\u00121�,��#\u0000\u001e�\u0014.\r�/Ĥ��?�d�L�[���>Z�ڃ���#�A\u0016�\u0018a��\u0017cY�M@���\u001a�͕����EY&OH �\u000e�ƈ|ؼ-�\u0018��lF�S���\u0005\u001c=�{�oʱ\u000fcY�^�޸�D��q{\\.�9�й���\u0000�>��#Y�$T�v{h�\u0010ӺI\u00115k\u0012�=��,\u001a���G\u001f\u0011��I��ĚIu�\u0010��wy�̃d�M���d&������]p�kr�&ڬ��p�Uy?��\u0018���\u001d�ĸ\u0017�KO+cFd\u001d?\t���:�|\u001b�@6�-s�N[`m> K�qb���\u0006�1��Z?\u0011S.�\u0014���rH�m���u��:XV�d��'w8��B�m�ܒ�\u0006\u0003P߇B����\u0018N�by�m\u0016��A'�\u0018u��\u00175�_b\rVv�\u0002�\u0016'�K�\u001fK�\"�=D]�M��Y����Ǔ\u0011�Dj\u001e\u0005w\u0016�R\b�g屆/�\u0006OC��dH������\u0013Xb��ay��¨��\u0002\u000eJ�\fʜʌ6,�3sbX)�[�{/g\u0019�\u0014��\u0002�;8��1�+,�Ë��s\bJ\u0003�#.W�t?C�\tGǞ?\u000eA�g1 �\u001f}�F�u�;FxgK�_�5F}�FTC&]��!���/�\u0017��\u0006�\r�l 4=V�\u0007�\n\u0014F�;6z\t���Xf�\u0012j\u0010���b��E��_%��|k�\u0017�,E>⇉2]�Cɾ\u0003{\u0003\u0017���jb\u0016�uPNm�L��^\u0016��G+�\u0006+�@p\u0006F�r=\u0005��a29��Y�A\"�\u0018���\u0018&t�>�\u001e(I+�t�\"FH\u0013N�b\u0013c�#ȓR�4���K��&��Ϭ%+1\u001c0\"�:c�\u0015��IWe���\u0015\u0001����t��X�,|nэ������� -k�g*a��q�L\u000e\\MT\n�ع��O��^B���\u000e8�����\u0006�7��0b��**�&~\r=\\�o:8\u0016��]q]qګRhg[����g=\b{�8l�\u0018�%)E�,��*��-��/\rq�Ͷ�\u0005I��%\u0014\u0011sU�� ׯY�z�����\u0007��e\tw%7�ЇuS1\u0017a\"\u000fn�\u0015�Z/ I�ꋀ%���A�$6�Ѳ�ťH���\u000e�T�U8=Z�����M?�E�CGm4��A!�\u0018���\u0018&���Y�\u001f�\u0011%3��%\u001c\t�<�����\u0002>|����ox<�����Fay���C�S+9Z����!*W0z�}��\u001a\u0004��5�\u0014�@\u000b��������]U�����\u000b��~�\u0018,��qt�y��j�K=p��\bL��i\u000e�7\t�I�����r�Y�\b�RL\\�L\u001d�r�h7�\u0007\u001b����1���J�{�\t\b�q\"*G~��ӦӓO�������<��|P�#\u0006\u0007\u001a`�T����&T�hȣ��jp��]˝�>+Դ��\u001a)�\u0014y��\u001a\u0014a�\u00109�$�+)8�\u000e'��#{�N\\��)ʭ=\f, b��\u001d�\"�EL6���\rw��\u001eX��0Y�A\u001c�\u0018�����f��I\u001dOQ���1Kr�kh8G?şx�xy�l\u001b\\4\fj\u0015%\u0002 N\u0007�n$(\n]��˪�c2�\u0001�Iu�&�ip!�\u0011�A�O#�\u000e��G���ޠ�\u0017��]k.\u0018�B�\u0002%��!/L�C#*��1ѳv�e�w�\u0014\u0010\u0017�<׎C�!g\u001e��c\u001f\b\u000bg��+\u0003����2�Ļh�|�]mn\u0000F��?�%#�U}\u0007�U���É��\u0013��a��\u00000ȧ��o�Ŋ�u;V�]�z�\r�\u0005��\u0017��͔�\r�\u000b���Ju�����q\bP�AfT�*-5\u0013O�\\\u0007ra|q�\u0000�o���h�\u0003�^�\u0018e�\u001c�5Yb�g\u0000�Wd�B(��M��A$�\u0018ŀ��.�.f\\�\u0006\u0002�5�ꅐ����e��/\u0006�������Fb�o�`I\b� ��JWB��#����b\u0013̥�®*�y�\u001f�宼N\u0014\fڌux$�\u0001\u0012q�\u0000�1\u0016���sZu��X�ȨL�y\u000b\u0010�\n�\u0001�\u0012�\u0012�6\u0010�gk9�f\u0018��`\u001a�̧{��7��\u000e6�\u0016\u0015�\u0018�uW�������ʒ��\u0005\rrW#�O}V\u0017�Y��C+�~�Lf��Z\u0014i\u000f�&V���\u0001^�\u0007%��l�P[�\t\n�g���bپmu\u001f��/��\u000b�D\r\u000e��\u001eؼ\u001a�\u000b���\u0004\u000eܹZ3�\u0011������E�SYws�Ÿƙ�U�w�%Ɗc�X�y\u000e�D�\\MQ]�\u0000��A!�\u0018ـ����y\u0007Zy�gD�\u0012���\t\u0000�[Y���\u0018\u000b7�\u0011���K���\u001e�G'\u0014<�_\rz�\t=z[�G��)��-qm����\u001dRc\\��6o���u����'*WѤ��\r�\u001f���\n:�+�V:p\u001f\\�yS8�;i�h�A�1\u0001�\u0011\tߍd�\u0014\u001e�KԆa!/�\"\u001b��X�7m}ʨQZէ���;\u0010-���~��͚��wV�$�����\u001eH&y��9\u0017�p�SY�R���\u000e�\u0018�\u001c�[֦���Fk&����\u001a�(����9�UM���+M톱9�d\u0000��pu꫁:��8'�r�)\u001f�%���2?���\u0015�s+�ᠡ��R�QyϏ\u000e�1A�Y�?9>q�\u0000>�Aw�\u0019\u0015��\u0017d�\u0017ןy\u001e-����7�4�����}ս������O1��F�U\u001e�\u0002V�Ju�S�e�d����wO���+u�ч��۪I�a��D\t\u0003GV�̮�Kz�hd\u001b�UHcɜ��\u0011e8��q�~���)\u001c��i�ipL�{��\u001d�����\f�\t�4%\f\u001e�rb\u001e��i�}�]\u0016k�K\u0011�o�LCD��{�[|�.�%���\u0011]�4\f��ˆ[��ڊu{��\u001dw\u0003�5�v=D�,��$ixy\u001dK�.u&x\u00043K�g�ѡ�?r>]��EOL1g�T���f-��ر��\u0000k~�q>JGnn)%-\u00057�\t�\u0003S\u0000�\u0018ʲ��.W\r��W2�)��J�V)o;�q�\u001a�(Ѥ�\n*߸\u00065y�DW�_���L\\�;����PڽM�c\u001a�\u0018�~0HR\u0011�T�!��cf�\u0001�Ab�F�y]I6���Ǭ����m�A\u001b�\u0019)��\u0017d�����⽬��G#��^���C\u001d��\u0016����m�rb�\u001a��H�m�\u0018��N����JŚ�[�y��*�sWlr?,��\u000e���K�Cč95B\u0019��]��\u0000'��g�1-��\n�*,�Q�#�nV\u0015\u0006WZ\u0007�\u000b��\";���\u000e��B���p^>D�\u0010�m�YW��q�׽�oe�f\u0010\u0018�\u0003z��\u000f�\u0018�\u000ejS�ޏ�@�J'έ��S�j]Qq�/�I�Q��\f=3�η/+}j\u001f�{�\u001f�{���ʩ�n�\u001a��m\u0000� ]����n\u000fN��`)��פ&NN���~��\u0016\u000f�/��u\u00007��\u0016�t\r�H�\u0003��\u001d#9T���A\u001a�\u0019=��\u0018(fu�l<՝�\t��������\u0002�+����/��nO_��� {x�(\th�\u0002��-�:�\u0013��\u001eP��\u0014~��l�\u000b\n;S����%7!u�\u0005��7\u0002�\u0014\u000fHQ۠b\u0015����\u0013�\f��b�H��6�u��$�G΢)͕\u001c�.�\u0002�a�G�P�0��>J+���\u0005���}��n]K*�����\u001c�\u000bO\u001b��|���=\u001b��,*U\u0012�2\u0015'Q�ċ�\u0000\u000f�q\u0015�RWĥ�&OB�������PI��fҤ;�����\u0018�,����0�*W�@���\"�%�_f�;ł\u0007����\u0012\u0012S��2\u00153\\�~�\u0015�4��gq6J,�A\u0018�\u0019Q���Zx�Mk����\u0017�@)�K\u00179�$�6\t>���������nH�+K7K�!��\u0003��\u0017\\�D>��([�\u0016�\\#�N����q�=�\u0003��D��\u0010���1�Guqu��4w�c��\t��/Ν\u0002�g[���`\u001c�&\u001f�\t��oĦ���YI\u0015�$t��ӣ��j��vC�/\b@��<����g�Y\u0014\u0000�\nt*�W��6�c1\u001f�\u001a���h��ڱh�a�\u0018ڛˍw\u00060�DY�/�C�g���\\K\u000eR9�}��d6e1ӹ�������t\u001a�?H�\u0016�\u0017ޞQ؇1\u000e�W��4��^F$��\u000b]dn�)q�9\u000eM��h�}\"\u001a�.�\u0004���A\u0017�\u0019y�������S݆\u0007�>+�X�\u0003�5$��ym��\u000e\u0019;��\u0018�\u0011�j\u000f�{��=��\u0016\u0016�50)Z��A�x��y�e^�5@�ҥρ�g��v~S�h*�g4@^\n�����\u0011%\u0012�;J4�4��Ɋ��\u0010k\u0018W\u0014Q��f#���,\u001cLub2YwA;��y�/ói��to*�6*�ڨ�~;\u0006�3�8ֈ~�]t� n�a 2䉤�\u0015&�}�R�\u0011;�U�'9�b��\tڭ`;�M\u0005S8�T�!�A+�C4�i\t��\u0018�f��}����[b3�CМmɰW\u000b�c�\f\u000b@v�q�\u001b�\u00171���\u001b��ehI\u0003E��T��$��A!�\u0019���\u0017B�>�\u0014��a�k[D,�\u001f\u001aF�G˯\u001dS��\u001f\u0017L\u001b��LD#�KMК)��u���Z�G�H�o�\u000f�,���w�PzoV�7�?��@\"KX\u0012\u0005�0�Y���XJ��;I\u0002\u0019_����S[-�-2�1��h�l��h4�L\b{(P�s�\f/\u0015\n��@�T|.KV\u000e\u0016>Z��Mj\u0003�\u0003�,�ߞx��`�p�r��oZ��\u0006\u0007��(fu��\u0001�W3K�^g�Hɭ��g�Ғ��ø䰘�2T����1�ષ\u0006+3�D_���M����k�y\u000f�\u0018(�Ⱥ�҆\\���%��\u001dʊ?_\u0010i��K�꬇j\u001d��\f�1\u00103��`����r�A\u0016�\u0019���\u00140d�c�\u000eYǂ�>\rt�S�O錰�`�>�ru*�O$�_:5\u0000ꮦO��e\u0013Ok�{��\u0006ՆY{�[��Ww�g��\u0011J�\u00038pf����PI<��w�sv4�6;�_��_\u0006�ܔ�#tE\u0013ʆ=��\u0012\u0018�?��\u0015���ߦ�P~D�V��É\b���1E���3�4J��5�\"c��5���s�@\u001c���O���q����\b\u0014��[\"w9z�pn��俰�C\"4���sE\u0010�o�q\u00179Uh�\u0017>�\u0005\u0011x\u0015��U�)o��\u00182~ùp/I(�`\u000eŪi��##�Fr�����b��\u0010\u0002(cED��y+��Lm^n�_�y\u0017D��<-']$\u001e�u�\u0018�~)��R>���Q�\n<�YOx���Je;Q��c\u001f��z*w���[��f�\u0015'��MJ�0��r���*6y�D:Dg�bi\u0014�f�꾁3M�Bj\f�M\u0017�A�V\u0016�\\&?����z\bp<\u0012�A\u001f�\u0019ɀ�\u0017cLOڟBW����/Z�C��h���K��e/��iR�/��O�b<�~��|w\u0013uY$U.�\"��iL��$\u00153%\u0007z�{r\u000b,꾇t)l�-\u0007T���lA��`\u001d\u0002���\u0016I��\u0005��u�\u0012�\u001c�O\\\u0001!�KgŅ���s��⬢�\u001d�\u001c.sLG����!\u0005%y%^yz!#\u0001�X�ϰ��l�\u0004j\u0012hP̰\u001f\u0010���Y7��P��:$\u001aӒ�0��G�R\u0001\u0002���\u0018\tby\u0011�韴�`U2�?�8=��%\u000b�߲�Ws7�#�B)\u0004\u0005���6��M�wX�;,\u0004S�X�}�������\u001f.}�J\u0004��2�n��\u001a&6\u000f8��٤�A!�\u0019݀�\u0002\u001a�&��\u0003�-��fɽ�\u0003M&��d�U\u0014�����\u0002��hV-x�p��N2�˗�4\u0014�\tA�7�cݾ�\u001a\u0017ow� =`�ݯ�u�݌p2���G�\u0007�#�\u0005˺Pck'ύ\u0016z&�.\u0003�ί�ֳ�?U\u0003�]��\r'Ң+\u0014���Ž�3�yv\u001e�\u001b8f=X<�q�\f�N\u000e<���<\rc'7�r����\f�b\u0010P���������L�\u001e�HM�eN\u0016C�\fқ\u0011\\\u001daSL�?f!S\u0007DN\f�K�%=��\u0011�\u0001ON\u0003s�V?\u0000C\u001b\u0018-��C���X�|uR\r2��R�O�ba\u0016�V�;簻�}�=��r=\u001b�ۢ�\u001e߯���e٣A&�\u0019��\u0017a������a<\nox�\u0015�N\b����կ\u0002�[�^\f�W\u000e\u0016����oԣi�\u0007Y��|yVr�A��Q�\u0015�v#�k�k\u0012��B�l�i��(��H\u001f߮��_o+��{\u0002\u001d0\u001d/�����R�7�4����]��m�\u001e���59��0p�mj��r,\u001a�Ī�Aa�\r\u0018�\u000f�4]f��F�U�2@uJ\u0003����\u0019\n�H's��M��$��v4�X�X}�\n9.��\u000b̦�e9�8\u0013H���q�\u000eap�l\t�=ノ���K�y�\f\b��d�H\u000b<�y�b�64\u0011��;���:U�`)�Ð�r�\u0002�8��\t�/��P�\u001e���\bBc)B����:F@\u0019_\u0006�\u000e�r�|��\\��A\u0015�\u001aU��\u0014���I='E�%%eo�9�}���\u001cDZ\u0011# �bאX.\t�8hdbڒ�'�ur>��\u001cC\r��yԆ�F\u0004@x�/\b\u0013pM�(\t����#0�.��;#/�F�(��\u0004�C+��@*�\u0004`�\u0018�,�C^�/K`=�\u0002tZs���f�U\u001ad\u0001�\u0006��!�<\u001d\u0000���\u0012S��\u0011v�Q�P����\u0002��֎\\�ڣ�,�\u0006��Đ�\u001f���=�٥�`M(�HY�i(�J-\u0004��J�\u001d�ڳ�\u001a;�n���\u0012C\u0005�o�Z��!�����Gx�y�v�\u0016�\u001a�r\u0005���x;�?t������\u0010r�l�)\u0000\t���&\u000f�@�<�A\u0019�\u001ai��\u0017h�\u0013�^�ٟ��D�v��cg�-���\u0005��2��\u000e�}2�z�� B�u�K���Jσۭگ�\u0019��G8��n�������fց�<\u0019�q��'p�O�ca\u00134������]y>Ū(��z�)InH\u0017KD�[�j�Hl��.��R�A\u001d�\u001a}��S��Ď�\u001b�\u0007�\u0012-0�xܧ �r\u000f������\b�gUmM�-%�*���P�\u000b�-������#�}\u001a\\���7�\\\u0004\u0006����ǧ��CP!Ә,�����?p�\u0012�\u001aS&�\u0011����4:Y�\u0010�C~<<�Yx\u0000�m��@\u0001�\"�ፍ�.\u001f�\u0004z�^��\u0013��\u001bj�Pq\t�_�\u0016p\u0014'����2��\n���ؼ��ǹ�$林nWXl9\u0002���\u0004R��r(��\b��_g1��y�\n���\r��I\nά^�1&\"O�Ŝ�]�(�z��?>��\u0003�/\u0002�a�:�\u001dg�opt�k&z}��\u0000�\u0006�aAZ\t�>��S�THԢ�����\u0000.8\\����D�=���\u0001�D�.�?�������}F/���4�����2W�r�\u001f\u0011J�=ț}S\u0004}�\f>�%�~_;��|:,s\u0019O��_�4WE\n�c��p�Ԑi\u0012����a�ː�͟\u001f�^\nˠ�f�\u001e�\bL0{\u001c��>��A\u001b�\u001a�����\u0017�3�s���0�G��r�\u0014\u0005Ɠ�\u001d�_�����$Q��B��_�y�;X\u001f\u000e\u0012�o�\n��g�g�T�����\r�<��.\b�\u0006�\u001f�VM�����\u0006���(��p�iq�#kf\u0016��e��7�JT�\\��Zg����!K�;y!�҅q�ܜէ��o�\f\u0002C�ح\u000bؚ�M�\u001f�g�ꏭ$�ܽ�l3D�P�uZ?��\n�t��ع�\u001c���������R\u0013\u0011\u0015�K\u001a�)=�e\u0004x�� '��.��:�M/�\u000b���Hќ\u000b\u0015�騆�*�$�3�_�m���^T~�,i4H�w��\u0016��r�7���\u001f��|�J�k�90��A\r�\u001a�����޴\u0010\u001e��o� �9�zh�\u001f灸\u0000�X8�\u0010&�B��A\u0000h�N5�hȔf�HN��9X> \u000f��'%�о\u0002:)\u0005��#k����U�,I\u0019�\u0003\f\u0003�\u0002ĺ\r��aJ�m�}i\u0018?��x�n�����W��\u0003\u001a�b\u000f�zg��x��}T\u0015�\u0002��<ء\rx�o|�\u000bI�Rp:��\u0005���(�\u0018�l�G�E��Y^�׳,��m�|�s�tS�cN�ժ6ً\n�V�\u001f]�e�R�\u0010��B_=��\b1h��8A�n\u001a�\u001c9���6\u0019�I�P���g�bϗ��>�S���Į\u0003�ϴoQe$\b\u0015\u0000�A\f�\u001à����u7��\u0018_4:��[oԷf\u0015�X(�5)��[�[�I�D��R\u0015���~L!��4q�Y��,S^�]�\u001b?V����\u0006�����P\u000fs\u0018y�8��*XS|�k�\u000f�>��oy�x\u001c�l^)�f.�7ƫ��WD��\u0019����H1�y��g���g>\u0000\u000eI\f�++�����F+,�\u0011wWG (�\u001d�c0��\u0013C��W�\b�@�m*����~/���H�xm��.�&�`��g�j7)���}\u001cx)��\u0011�\t*�-�v�\b=vb\u0019s9����\u0003�s+�4��A\u0017�\u001a��Bi#M�L�,��1�]0%��\u0013R0Pd��m�)N:7�rX�WT�H\u001eK��R\u001d���P>Y\b�K+��'m���{�����azd�h~`4-T�78�\u0013ʼn�ծ���+S��0�0ƀ9b]I\u0013\fV1q�6������Iq�\"A\u0001�r\u0004\u0000M����,��`\b ��M�\b(݌���K/*2�o&;>u\u000bj�����6�茭�\u0012i�k�[f;��O��\u0004禥՛��s��v��$�B�����Jt/�g�����9�I�\u001b�_+��#� ������LqQ?\u0015W\u000f:�V�#�$?���|\u0002�f��\u0003܏8F�w|�v�A\u000f�\u001a���\u00141,�b�^Y���ԑ��r��xB\rG3�~:��^\bHt�S�\ny��\b_�j��\u0011'�aQy\b�h\u001ej@\u001cꢲ�U&\u001dlo�hؓ�(�3˗��v7\u000b\r��2�\u001f������i��ߘ|��J�,\u000b�\"�;�ZmZ��\u0018�gNG��W�:�#����.�������CWO/�\u001c\u0018/��ΈJ�\t�\u00107����fmKv�'��oXN��v�l��8ӕ@t\u001b1��K���!��\u000e��v�\u001d����'\u0018K/��-�KY�B8�\u001e�=�I���g�H��M��y��꼳\t��\u001f�3\u0011�\f�يg�R\u000f@o��A �\u001b\t��\u0012ӳ\u0010�--km6�G����&��wU]l\u0018�jB��L�\"f��M�?y]�<�\u0004U\u00165��D���� ��*�?J��b|.�>y��\u0014\n�����J�^�\u0004���^\u0012\u001d�\u0016�E\u001fG�8(�D��d���\u0006ru_!�ƨ\nORY���\u001f9��_�I�)r+۟J�M.2,\u0014��(�W���\u0006���Q��! �o\u0004�\u0015i#qJ���d^s\u001bx���<�\u0004\nEHC�\u0010�\u001aw\u001eŮ!n�>��K|�VG\u0005\u001f���Y\u0000�Z����T���\u000b\u0014ʰ�L�C;*$I�\u0001�\u001c���\u0000\u0010r�\u00001(\u0000U��^[#���|�Y�N=F4;>��R\u0017\r�ΣA\u0017�\u001b\u001d�����Sԩ�rR�'�h�i��E�~_\u0004lÛ\u0003N\u0015V \u0015W�1ĺ�w#v��΅W?�m<��Hf������̓.I�0���Ϻ\u0010���\u0002�f��U��!\\i���h�|e\u0012~����]{.�m\u000f�\u001eBilY����IЏ��P�\u001d�Cq��`\u001d�y�n\n�\u0001����&Z�\u000e\u001b�r�M����\u0016���E!���\u0010I����\u0007���R����E\u0018Ҳ-��jRK��\u000b����%~��>����ʤ��\b\ta%\u001eF!\u0019�}&\u0011�8�\t4?$5)��u\u0016|�wziL1$�\u0011�sLJ�k\u000f\b)`L��wδ?�R\u000fBe\u000e�\b�d\u0001}�A\u0012�\u001b1��\u0018&lQ����1�D��DA�a\fx\f��3s�'�\u0006+,��\u001f0Ŋ_\u001b�\u0004��\u0001o�\u000e\u0006�\u0011���GbB\u0004m��\u0003Mf��\"��a-��\f-��r=h�\u0004��@�Z�-�\u0013\u000e�3�\u0019\u0017���-�o�/�?w�G��v}UxJ�`�C��D���F�s�U_+s,\u001d�����!�yIF�FN�\u001bm�\u0014�ʚ\u001a\u0011-�n�k��؅�e�d�h�n\u0006����K}��ÐJ�\u000bf��Zz��㍹�\u000e�6c��^ں�BQbɦ�\u000ft�� 4Y��o�\u001e���\t��ٵG,r�ً�O�.\u0002:�\t657Mmně�`A\t��\f��A&�\u001bE����*\u0015�y�\n��5?�\n���˙��g��p�\f\"��NgW5l\u0014쟺g\\��J�v[B\u000b\\��e#㡏E-��5!��v����]��\u001c}\u0011�V�~&�\u001e��D��\u0005|�*me\u0002���\u000bH��@��HO,�\u001d���[R�Ӎ)��|�|\u001bq�F�K*\u00029��s\u0006�A�Y�g��(,١�\u0004�'o�%�N��\u0000=�1�Q�\f%�W_E��E���\u0004c�P��\n\u0000��R�A|�^\u0005\u0011���\u0015��[*��N\u0016!��+��%�����\n��&�<��8G�6\n�v�x�q��Ć�k4\u0004�Yl\"�B�\tD����Q\u001e(zG�c�������A9\u0000~�A\u001c�\u001bY���g\u0014�TP/M\t3:�\u0015�ڄ\u0005FS}�0����\u0007�j\u001f�\u00144OFp��l���o��[WK[ţ��\u000f�\u0012��֛ ��\u0016�h��?iS�\u0019�ĢLn$�h�F����:��Ng]Q(\u000eNϗ(��Z\u0012{7������\u0002�\u0003m7��\u0005��2�\u001d�~\u000f�NkBq����q\u000e\u0015�N\u0019Y\u0007�\u0004�4�v��۪\u00116N�\u0005�p^hx28\u001a��X\u001eDo�]ΰ2?\u001f�\u0016�q�%\b\u0012�\u001b�\\;�}:b���2[�P��J�\fԽ�b$�\u0007'��}C@\u0015O~�!1�ے~K�\u0003�mW�*3�R\u0014�����\t�C|�\"��\u001a������Y��A\u0013�\u001bm���\bD�%���A��\u0014�=4���<%��)�\\��^3��\u0018��\u001a ;��\u0015\u0011ˋ�\u001eD\u0001�,h�y*9�ޑ��N�\u0019�¸��Gm\u0013C1�\\38m�>�:���I�X�ıjPV���\"��q�#\u0007f-^Z\b��TR�\u001d@�AO����(���$\u000b�3n��+8���t\u0017�\u0018�\u000e�\u001d��gey\u001b\u0007�\u0018�\u0015\u0001��u��/j���ڇ��F�-�\r�#\\_P�\u0007��b�j\u0003\u0000H�)�K\u0004�[\u0017�Y<��ud��(�}~n�\u001f����A\u001f�\u001b���?\u0005��(>�x��\u0012/\baaU���k�M�Z\u0006�r�M�\u0010u\u0002�t��,|\u0007���\u00135\u000b�@ᐄ��\b9~T�\":k��?�h\u0011���\u0014]�v$w��\u001e^\u0002P�=>�'y\u0002{H#\\���\b�A2�/�J_\tgG�\bV����\u001f��\u0013��r(m\u001c@���Z�=�\u0007�9����s_\u0002�1��O��2EQXs��ys-L<\u0012M�>B�g)�k��=?���\u0003\u0003\u0004�;���e)���4c!O]/�譸�#ݝ�j��\u0018���=ܰ�d���\b���bU�z�=�\u0004f�\b���\u001d������4�v\u0004�?�r�\n��\u001d�,��3}���N��ãA\u0010�\u001b���B=G�\t�o�M��P\u0000���uq\u0017�ƥ�\u0010e�\u001a+�\u0018{��k\u0018��2�\u0017V�Wf>/�\u0018�\fc\\6-�fWоȟ��@:]@�%M_!�c��5J}xi1�����?���t�\\�}vp\u00180�ז�Aӵ\u0017����\u0016�Ca<��\n�%��Da\\(�B�\u0002r<�[_\u0002��\u0015$ivA.�<�/\u001b\u001e�^E�(��;\"\u001d�\t\u0002�PUc栆~^�-M�LH4�y^0�#i˹oؤ��3�x\u0001\u001è^\u0006;D�``.��\u0014 T>ZMv4��?N�/M��i�OR��'�R����N��\u0013U�����l�9y�#VۣA\"�\u001b���\u0006�x���\raČ�\u0010��\u0001�Ѽ�\u0002��7��b\u0011��@�\u0007�I�Sr�\bK�t\"�'��.�٠�Ξ\u001d�p�c���\u001e\u0002!ۇ��\"���,~\u001a��� _\u0019�/k���\u0002�\tl\u0000\u0012�X`'Ƭy)!�)\u001d��>��l���H7�aB�\n�O'(\u0014)�\u0014�=�{��F�MI��\u0007�\b\u0004ߖ?m�f�\u0015����U��H')Cbշs�ަ\u001a�<\u001b\u0007P\u001e@�����\fBp`���4\t�%�J�:�YG��#�M�3A�i�M��\u0001\u0007����U^�'�\u0012#\n��z�Y\u0001�[d=�\u0011���\u00195B��0\u0003��d\u0005(�#,�T\t�Z�d��TקsW��\u0000�CB�A\u000b�\u001b���\u0012RtoO<�VB�\u001ap�u�\u0019�Mͤ&�ń���1\u0017r�\u0002�\u000e�.sڊU\u0003�/8��\u000e�\u001b�M.B%��\f�đb�E[m\u0001&��\u001e��a�<��e�A��1ї��Oj&*C��F���<��.w��M��\r�;U�\u001a�N\u000f�_G�ͯ3��m�\u0002��|H��[2�n��Y�z\u0015U���\u001d�X��DR>p�nl�:3��Q����€� \u0012~$��L�r�!��fL�l\u001b|�\u0010u\fH5\u0002�\r-qʳ\u000e\bᄍ���ޡ\u000eȥ��7\\ݐ���@�}\u0012�1�\u000e�T�~�B�X�Q����f���t��\u001e\u000f�A\u0013�\u001bр��\u0002�j�\u0007˧k�&#-\u0014����~�4e7�%\u0018��\t\u001f4y�޸_�\u0019}��$pr�\u0010��G���֦Yڋ�VH�( RR+vMx�Xfܥ\u0013�)����\u000b5�|ڬE�y��F\n�&I����J�ˡ4m��*ߜ��\u0015��D\u0006mq\u0004u\n��5\u0002�;\f�\u001dznM|'ߢ/\u0013\u0003�Gx�;�gv�\u0016l\u0011Vؿ���\u001e��b�ag���L�������\u0004�U��O�K���x\u0001F�1!@�������\tXm�\u0012����t�d�:�o����_+�w�J�nP\u001eľ�Z71�����ث8\u001c�۰: �����d7��T�V����\u0017�4����\u0007��z�����8�r��\u0010@_�\u000e\u0018�>^*�R���\"s�W��e\n�����\u0002�1��K\u000e\u0002\u0002���>�&��A��\u001c\r����M@��ح1�\u001e>�.?�:F\b\u0001�I�\u0001\u001f�i\u0005�;���\u0006J0�qc�Rt\u0011\n.ޚ��Y^ȬM��Y�q���!]\\��3\u0017�2��\u001f�n�(���0\r���v{�q��{s�D��Ȕ#xH\u0006�hz�\u001c\u001fq|��&xu:y\u0002R�,F\u0001{����s�\u0007�\u0016�\u0019���r{��t�D���;�s��ѭ<�����^&+pZ\u0019�\u0004�\u0003\u0014\u0003����r�;_\u0005H8C)E��\u001d���C��~يC��H����.��fm\u001c2_fS\u001ḑ��A���թ�{S*�\b�l���+<�gp\u0002�I�����F��>\u0011�\b�ԓ�\u0005�'\u001fi�pa\u000b��T\u001f�\u000ek\u001c\u0019�>�\u001ez�_�-F�&��n�\u0015�x�JM�\u0019\u0015�\u0002ȍ�C�^���#~%#���si6��E��,Yp_xm�}�\u000fДn\u0015�\"!\u001eag�0!\u0006�\u0003��O1O��E�?\f\u001eߜ0Y�Do/{Ǽ�\u0002�V\u0000�G��7��k1�ٽ-�&\u0001N]��{�\u001c�\u0005��\u0001�A\u0016�\u001c!����4o ��&��c9��\u001d�$\u001eD���q\u0002\u0015\u0001��\u001cU�9g�N�\\=Q\u001c\u0017B�����\u0012\u0001�8\u0001���\u001e1Wb�\u0003�\u0016���\u0007 dD\u000e�\u001a�Q\u0001@c\r�\t%0��_�?|��\u0003/�(W\u001a}�mah9�~��Gr\u001a�]m��b�\u001d����֕\u0015M����F)Q��\u000b�\t�D�C\u0018Hl�ع�i=�\u0016�64b\u000e������T\u0015�h�������9���\u0011L\u0015\u0002\\��݊x�YL���:\u0019N2��p�\u001e\u0007���a?v�\u0016\u001a&��\tv�1\u0006\u001f(͋�N�=n2SI�\f\u0000�(\u0014���w]�?~ܬbn�z�˾�F�38�'=���A\u0011�\u001c5��\u0013ś���i��\ne�,I��\u0019��KZ��\u0017a�BC���\u0018&���+^R^��7\u001a��j\u001f\u0019\u0002�t�\u0013K�y>���\u0016l�\u0011j*C�_\u000bay�U�:P����\u0015�3\u000f\u001a倊\u0001=Pr����r��J��\u001aCq��s��>;]vtWA6\u0013��Bd�\u0012=qd��R]=�oNP\fn6��|\u0012g���m�-\u000f1rv�F\t�(�(���̒\u001aSΞ��:�����ȼ\u0010�\u0011\u000f��a��[#�{�eث���J�ou�U�ζq[\u00122�oN)�4��\u0004\\�e\u001f�\t\u0011\u0017�\b���ԸsN���|�>���ځK*��\u001f��\u0003=ȅ�M7�âU(Ͳ��\r\u000e-slܝ�bʆ��qFT��\t�\u001e�~��N��|t�\f+��!�Fk���8%PF��\u001ea�>f�i\u0001\u000egg��O\u0014p4\\�DH�Ȏ��]\u0001΀I�~�6���[Qf��\n!�jq�i\"�v\u0014�Z�^kσ\u0012a=�?Q0�rL��\u001b�Q\t�\f�\"��2q��Ya5=��\n\u0012�P�\u001d\"Q��o�i��G�f˴'�Mf�y\u001bO�sHj�va3�\u0015ᴴ����l\u001d2lR�GBK}�~�\u0002\u0019� �mM��ͪ1{8[qՈ�n@�\u000eЬ�!\u0005��`\u0011Ή����j�A\u0017�\u001c]��\u0000S7�\u0001[1&'�9�`��ќ�ި�\u001d\u0001�\u0010�9��\f8\u0000�'����xN�@A�\u001c]��\u0004}ݗ0\u000e\\X��\u0002\u0000[�\u000b7�\u0015{$\t�R��\u001d\u0018'�7ף��ν߽�JG\u0002���Cҝ���pv<��6�6�\u000bN�\u0015��؂�o�~����RK�����A��\t\u0010�\u0000g=�\u0002S5}�<\"F\u000f\u000fìh�G���A���xh׵�Vɷt�Y�\b��z�\f+�f6\u001a\u00126l�T\u0010h��'I��\t�\u0012A�M\u0003_P>i�e3���AM#)i^\u000f���цC\rNc� -/�J)\u0019�E\u001f\nZ��\"�/0Y\u0013���M4ێ\u0005���p`�*�hI�BaTۍ���\u0016a�R\u0006ӑ���Pٚ\"�SW�\u0017J�9��\f\u0014\"Ts��Ȏ���I7M�\u0006�rq{5�=\u0005X--�\b\r��M\\��\u001azi\u000el\u0017;c\nm�,���}�`yZ2\u0001P����P��ok�b��Q��u�8��1\u000bH��_\u001f�O�q�0M\"���j0\u0003���s��9JGb\u0015�X�\r\u000e����7�����Oc1h���\u0010_�о!\t\u000e@��Q]�\n�R�F>�=hUc�f�4�Ω\t�A\\�\u001c���=7���ȫ�h\u0019F�\u0002�B\u0004�s\u000e\u0010�~,\u0007��@�@0����Q��A�f�(>�꼮$\u001b�\u0012$�ҡ�\f�\u0007�\t\u001a稡����Aw�\u0002;?\u0003\u0015{�\u0001xn\u000497�Q�(�\t��S�K��`L���\f+��4��\u000fh�n�ѯFp\u000f�Q?���ip\b\\\t\u0017$S��g��:\n'\r�H�X����m��$\u001e\u000f��\u001ej�\u000f\u001a�AH�I\nc\u0001����sd\u0005�ri��%��[�M���S\u0003���̃\"ccJ\u001b�CG��IW�\u0003����k���ّC��O�\t�\u001e�L�Z\u0007>]�S1L\u0012��M.�y�����m��5\u0000�\u000e�^7��T�_z休�#�k�ΐG�Լ������_��wIϸ��DB�oM��\u0007Gw���9�դ���/�\u0019[�\u0011����\u0017�� c��A\u0012�\u001c���\u00170��Н�[���C���{՗Q��\u0013��\u001a��=��p4׮�ЍLOH�A\u0007�\u001c���\u0000\u000e\u0019� ��@n���\f�ߍ�\u0015\"/+���\u0011\u001aX���U���F���u�w��E{3J�M� \u001f�����+����F\u0016�\u0013zC���:\u0017Gp�w����P5��y�H�x�aQ�M�\u000b\u0003\u0014\u001c\u0010o��\u000bB�\n�\u0010�h\u001c�\u0006\u0012�T�^�\u000e�\u0014v1��]\u001e8�J�y�ZB�ĸ�\u000eL� \u0007&�G�f�+�X�����t_^�NHyj�c\"�x�=$����q\\5D)2��I�򕩨t;Ϥ���\u001f\u000f��T�(FO΋9⧆�eRG\n��^F��^(���U�/&�'0��J��\u0010�k�A\u0017�\u001cՀ��;��J*���)PWtҘ���K��R��_|�3��ӎ����ArhXb:\u001fk�/\b\u000evI�j��\u0002k�>\n����%�Z���\u0001Y\"�\u000e�;\u001b�a)m\t⾥\u0002�a�m��X� \u0004��=����Lm�.L�;�\u000egL\u0018L�Q>�]Y�ˊ���A�wK\u001b�����-k�Os����\u0004(�\u0002;�\u001a3�\u0016�~\u0004�J\u0018���\\d�\u0004>\u0012&��h\u0017�Ff�m����\u0007��K��y��=��w\u001d\u001c$���\r��yO*���UZ\b�<�V\u0012G#�f��`FE��~N�p��h\u0005��$��H}6m1�\u0006��5�\u001aH�q{T�}pN�Ud��A\u000f�\u001c��B2\\��e\u0017U��ώ5�\u000f\u000bQG^���QR��;�\t��W�\u000f�������ƬbE�F�\u0015]VQ�\u0010\u0015���p�!ݘOA�J��\u0012��@I4�\u001eL���\u0017��J�\b�C\u0016�\u001a��Qx���h�0i\u0005�� \u001ev�kx\n\u0016�%���[�\\ukɿ\u0003��#F!\u00123T�\u000e�Bz;����\\�M�y\u0003d�+�Cg\u0004g?��+�F\u0016;��Ko���\u0016�._Y�w\u0017%}\u0015�ͬ��\u0016��vfo����\u0006\u0012�)��*�`X\t�~���\u0002\u001e\u0004��Ā@d:�\u0017�q����\u0000��CB��%�m��?Z�Rc^��\u0003lψ\u0017�'~둣A(�\u001c���\u0014,�e�e\"5\u000bwzG:7���\\\u001b\u001a�ʽ\nc��+Lj�A�W��/C��\u001b\u0006��S*��m�Ц���\u001d�\r���4��\u000b:��\"�\u0013�ꕬ;퓸.N������Q,\u001cb?a��S���i��o��^\u0016k�B\u0018����YKs��x�G���+D�P9;\u00138�����B\u000b�\u001c`Ɩ�/�JRac_�\u001a\u0002����UrR\u0014oR\u0006���&�4c��V'�p(�x�\u001c���=�\u0010�)�\u0017\n�g\u0012�M\u0011C{=�C���\b]=7��\u0010�2�X�\u000b�/Ω�Q�+K�@�Bf9H(���u�Ր��%#�Aur�԰mO8��\u0004ǶYf�'�/�\r;�p��\u000f�Ms�\"ģA\u001a�\u001d\u0011���.�g﹓\u001a\u0016��ji5���\u001cXa�\u001a��]�\u0016�\u0000�\u0004�Z\t���Bs\u0012Q,��UZQ��={j����Ո��U$��N5��r\u0016��qeM^\u001d�l�j�2\u000f��!��\u0011q72��3hL\u001cZ�7�\u0005��9�g��:��Qc1\u0006խ7�����\u001e�E��5�J\u001a�l5}���\u0012�d��A��%zc��i���ȅ~\"V&\fP\u000b__)�r/1\u0000��YN���Җ}O�\u0012.ڵ�r�҆(�b*�Na<4�A\u001c�\u001dM��Bh��'�vHN�j\u0006���>qJ��E�/�p��\u0002w&���lp\u0001A\u001f���ިy$:��2�ω�\u0015K���H�B\u0015�<&�\u0016=�r\f�\u0006ԵX�\u001d����_\u0005X��\u0014P�3\u000eVˎ\t[�VN>�\u001eU��#^��q[�\u0001]�\u0004Xq����\u0007�:�\n@q�MB��~\u0013�\u001d�TxQ�s�:\u0017��6�\u0004\u0002�̈́��f\u000fU\u0000�\u0006����/�n\u001b�U5\u000095ۛ?z-�\u001e\u001ea\u001a,4��X��\u0007:�\u0016d\fW���Nt�>!�f\"\u001f\u0004XN/y'��i\u0000�A\u0015�\u001du���]M3�����&]u�}��\u000f\u0018^�h2*\u0014U+�;�<'\u0017\f{�q`�p��2\u001b��|�RBf�r:\u001dv�|y9��~В�K�=Tm�\u0017E��_�粯\u0002.��u~�_�]�\fFσ`�~݃` +�~�Ⱥ�0\n�\u0016\u0011*?�+�\u0015#�f�\u0011��'\u000e�C�\\��:l����$+Ùנ�d���5n�A\u0012�\u001dŀ�\u0010��C���*\u001a4��a\u0000�\t�3z��Dh����uJ��d�\t�>�Hă\u0004u=nM6�𯰁,6I\u0012\u000be\u001f�ih\f��U\u0005%\\\u0007��{�\u0012�}T�h�1�Z�*\u0006��?\u001f��7\u0012~q��`��E�WO�\nG�\u0005\u001a�r�\u0018�,�H���\f\u0002ܯ3?�\u0015�hS�R2�t\r�\u001b��\u001d\u0018X�\\Q'����X8�B\u001f��+�`J���\u001f%�x8\u000b\n�\u0012\u0004R�\u0010���\u001dtR�++T^�����\u0002M���f�\u0002\u001f���7����T�\r�ۉ=hO��9��=L�\u0002|W���Hd�V�_d˳�a{Y��\u000f����\u0006M 9��CN�ϣAj�\u001dـ�p_-��2slp��ì��g>����KP���6��t]\n*a�zL_��Z|����\u001b���\u001dPu�7q�1)h%~�\"���u\u000fdy~�69_JJ�\u0006���w>�\u0002ec��|0�\u0018r�M�f�\t>�2Z\r;���\u0018v����7��\u0004����ğ�E�/�h�4�T�$H��~O�� ��\u001b\u0015\u0018Y\u0016��Ö\u0016{���v#\r\u0018�d���f�� 3?jUq���n\u0005T���^{s��|���\t���$�\nô�O\u0016V�{��(��q\u0001Hn�}c\u0017��F��H���ñ@ɹ��e.��6�p�P��fY�\u0012�\u0014����R�P��U;��\u0011Jrw\u0010\bXݹoLL��{j\u0013\u0005��\u000b��z��#���j\u0006{�O\u0013��\u0014�y����u|�\u0007\u001cL�4�@\u0018$\"�b\u0011\u001aUz��~���<��vb�\u0004+�A#�\u001d��>H���kW\u001b�m\u001bh��\u000b\u0002\u0007�38\u0015}�Ȓ�?-�Ù@!sO_*A�\u0011���>��t��,�1y���!�i�O������W�\u001b�j��T�U�}�u~��\u000f�6���{G�S�����u�8�`��?I�������r�F\u0002�,�������g �(3;\rJ�h��\u001b��ew���(R\u0000?\u0012��\n\u001aB��\f\u001b�}�G\u001fE+Y��`\u0011'b��\u0015�\u001c�\u000f�f1��y>=c(\u001f\r���3������%�x���0�d/��n8В�\u0001qhl�\u0005�qtn(}z\u001b\u0007�w�2\t,��G\u0000e.�X��\u001d\f��\u0017-��2\u000e��e\u0014!�Ve&\u000f�ϣA#�\u001e\u0001��B8�ʄ�U1�\u0007s\b�^J�.\u0019U�S�g(\n腻�6\nbb,��\u0011�)�\n#!p`(S�\f��gMɁ�}�ѝֿmkVGX��ĭ091\u00042h��\u0015l���\u0002]�l\u001b�o�\u000fb��\u001en\"2��\":�׉�\u0011e��H��W��z�\u001f��í��pn�wa�\u001f��z\u0006OK��U����;M�<-\u001bP\u0017\u0014\t\u000e��׋�\ts_\u0013�ϵ��!\u0011\u0015\u001a\r5�X%]��.\u0007�dm9�\u0010��T���+)\u0003A�k�mw{9�̖�\r�ޖ�\u001b�'#�\"�\u0017�U\u0003�bx���=۔n�yQ�\u001cE���\u0017eJ�\u0010�g\u0007��{h���R�vt-��?!\b4�]\u0013�\"\u0000�A!�\u001e\u0015���4S����a��d�������R�E\u000fdQ�i\u001bғ��\u0019�\t\u0005�\r��\u001f�N���ؙ�C\u001cw���1'Q+V��dQc5Jɹ�K�څ˜`x\u0005�5�3W����É)]E����ߕ�2)��#,�/RR�؉�\u0018Y����\u0013���d� \u0001^��\u001c� a�-��ϱ�9m�\u001f��\\�a�|\u000f����\u0014\\Wt��� \u0017V���\u0017�CV!~~��B���m�\"\u0004�s�y\u0001��\r��J\"t�r\u0007���f\u001c�\n\u0016���ϐ�g+��e�Kc����E{��T���^\u0013�ݤ;\u0003bl�W�籎殪�1$�\u0010T�ʓ-#d)�G3�\u0011N��4.��A\u001f�\u001e)�����K�\u0007T瞫�K�\u0018��:��\u0002�\u0003�v=�tͥ�U\r��m�\u0012�&+����u$l��I���\fJ�Dgіj�\u0000�>Ͽ���ˠ&\u000f-{C\u000eb���:���\u0019\u0004�%Ip��+\u0016��F�;UH]�~p-\u001e\u0011$Q�R\u000f\u001d�<��0m�_��v?\u0006�\u0016\r=E�PmO\u0000�6�X0exƂe\u000fh�ON�׻0z�{\u0018É��ʴS6\u000bb�:�nB�ޡ]B\u0003�{P\u0005��m�\u0016�?��\u001b��a\u0007Mw�)ˮ[^iq\"��0{�A�\u001c�\"v�\u0001����gv\u0003���O>�\u000b��\u0014\u0005�\u0004���F\u000fY<��\u0017���$\u0017�`\u001d\u001d��S�i�\u0002\u0011��Sg��7JP���*@\\G�j���W\u0013\u001b08�|�碜��^�b\u000f�ϝ���\u0018H=�\u0004�~V\u0002�&m�5޸�(�\u0001\\f\b:�=�����Ƀ*��I�v�j}�E\u0000\u000f�p��&��w`]I\"��W�V��;>cV<`�A$�\u001eQ��B<�\u0010\u00073�\u0004�]j\u001c�Y��N�R[�I�+�q����2? �;\n\u0007�K�ͼ֊���\u000f�Mo�M�{\u0012ǝQ\u0017������wl}T6̖�+��\u001f�� ��iTG�����c\u0002��\u001b\u001c\\�T�SL��3� �T�h���v��QKk��C�Qi�\u0016�\u000b0g<\u0016m\u0016fP-HEJ�I�AحL1h\u0019bߞi���j��OB\u0015\u0005 \r�\u001a�\u0001^Ak��\\����@�\u0002Gץ����\u0010\u0019�A�b{Y�ԣA\u001f�\u001ee��\u0001\b!]r,�$,P��|\u001b�\u0002��\u0018���[�+拪\f���h\u0012{z�%ɯ�]5\u0003L�T�\b[]V��K\"\u001a����U6��v_�a�\u0013W\u0011�嬻��}AL�.��~�Փ�F���;\u0018���\u0003h�m��G\u001b�O�jg6�\u0007��\fYF�?�h3�q�-\b�\u0007�?��p��\u0010^�f�0�\u001byf�EU\f����\u0017��σ��MQ�?���̳��P��\u0006Rxw�\u0005ٵ�\u0017�,+(OE���\u0017]���\u001e�4\u0019!c'$�ѡ,\u0016k�\u00076vb�rڎ��1$Yf��q[YI֙fW�N��}�sdTK�\u000b�y\u0012\t���*z�`8\u0015O�j@\u000bhRY�\u000f����A\"�\u001ey��\u00144��$�X:�N�m\u0010\u0005k�Ո�::\u0018c0�\u0012]��;�@.ZY���\u0006���N�^�,J\n��V\n=�E\u0013\t\u0004/���=�cI\\�\u0003|���I�BW�nn;X�Fc�}�\u0018����K3�^\t�/D�+*\u000b�*���/�xp\u0001��X�'x����\b�8-��)�<�^2�֣\u001a��U���IS��`�\u0013.�$\u0002�5�m�\te\u001f����MI�\n���ۻ��\u0013A�8M�H���*�)����i0ں»�\u0010V�f�7��\u0005�d;��z�\u001e\u0014\n�u_Q��l`]p����\u001a\u00023Am'ng�I��Ie�xY��\u0017�\u0013m�����\u000b�l����\u000e��A\t�A&�\u001e���\u0013g�h�k`6\u0007\u0003d\n��(\u00045�\u001a��P�B���(\u0004�\f����اb�]��`�����G0��Udm2)�j�\u000e�0��\b��\u0000Jrt��kk �ܶ�B�]��ѷy7����i�Ŋ\\�v�\u001e��D�\u001f(�6|\u000fd�\\�{u�/��:'\"�Qp�\r�8\u000b|�\u001c����%�~����W��$\u001a'e�\"�@\u0013��l��\f���\u001b*��쌵H�u��7\u0011�KJ^\u0005S�O�:��0��\u000b�MZ�R�p�P�L\u0012X�����\u001f+�jS�f��\u0006p\u0014W.�sf��wl\u000f�~�9�`����߃���e�\"\u0003\u0005����n\u0012��^���\u000b(\r�Ӥ�E�A\u001d�\u001e���\u0015�@�\u0011��m?(iqQFf�ˎ��/\"��ˠ-+8c�vm�\u001aw�����\u00035/:�J�r��*�v\u001f�NR����A�_&�«���#\u0018{s�ώK$�\u001ch\u0000�_��T��\u0000�l�|�\u0002���A>��V{�\u001d\u0017%U+CRn\bW��(��Ah��8f�Ё\u001d��6�}סS�QKmQ��x��B����k��Uf��|\u0004\u0001,�\u0002\u0012�\u0000\u000e[�\u001b{\u001a<�f�[\u001dW\u0015E?��`Q��>u�'�4��)\u001a�\u0011�F�L�\u0015g\u001eIХf��1�.E\u0014�\t�Z��\u0014���&J>�5w�^L�0�mUq}�a������\\�\u001bǮ��N����A\u0015�\u001e���A�*Mˣ\u0019k�C\u000fYt����_BL~�=�-۔�C�ܾ�+!F�hq\u0018\u0006-�1_�\u0016�6����8��q\u001f4��Elo\f��+�oz\u0005��t:g�^�k߶\u000e�F�����Ϛ�ã�H\u0014�����WP��%�._�\u0005ҩ2d]k�q��䁰�/E\u000b��?�m(�\u001b\u0006������c�Оb��&�]�\u0018�\u0018�qxU\u0010�Ч\\�~��w�\u0005`uWmK�j��\u000e�a{\u001d0\u001d��E��s�Fg-��P�B\u000blE���&��X�x��\u0004�>�t`�\r�\u0004�_|\u001eɹk*m\f��!\u0014�\u0000�ї��_�;�\r�fHi\u0011��NQ\bl�A\u000f�\u001eɀ���'V�~�\u0000l\u001f�\u001b��a?]���N�NcAײ�Gұo��<�_��g�ot�!gi`�#(ōdc�\r�\u0018~ߣ]e��qN,'��\t̞K��z\u0019�\u0014ǹ��5\r{>\u00026�C-`\u001b�,Kh��^�J��\u001cp܅�8�\u0012!�}�|\u0019?��Iשef��gPOk\u000b\f!kVþNw4��b�$���\\\u000f#i�q�.��U&��I���,eh�㟋u�:�}0Ee.\u000e��4��B�Y�)E�^�@߁\u001f\u0005��\u00001�5 ���\u0013�є�B-j��(*�\u001f�g��H��lP�oz 7��\u0001��h{K��C>l�\u0000y%²�J\u0001� �\u0001?\u0005\"����\u0013\u0015�z\u0000Pє�܎�03\u0017�\nn|D�Iq�vh�6��ew�\u001c�zi'���A}�\u0014�)��\u001cb\\�\u001b������-#\u001f� M��gf\b\u0001��H\u0005B�P��\u0018�A\u000eպF�\u0005�FA\u000f�h`���w�?SC'|��\u000b�.}\u0004q,7�gv��޲�$�?����%�[\u0003��\u0006�NK����@�\u001f\u0019��i&��\u0016��/>�\u001a�3\u000e��\u00105\u001c&Խ�S��BJ�3\u000e�,��\u000b\\�ʹ\u0015ux&]e�n�\u000e�\tq�\u000f1#ޑ�7�gS\f��'D�C��\u0013�\u0002\u0016�.&[�~���0A8\u0003\f�����D�\u0013���,\u001f���W-G\u0011�\u0007�a\r>f��\u0019�m�O 5������c2\u0002_4t*�\"\u0011e�\u001di7w�\u0010J4\"�(�o;C�\u001b�۵ҹ����bq�\f���l��W �t_\u001dd\u001f\f\u0010ᖺ1Dߤ\u001aH1=7�\"e��+�0��\u000fZ�@�\u001f-��5l\u0000����\u0004SIb��=\u0000A�x�49]�\u0004�C�c*\u0016\\�R�$\u000bs@�\u0007\\�]D.�і\u0003;\u001e�܀��\u00062\u0019\\l���\u0002e`�$$�\u0002�'��{�@&z���5肽Ԛ[��ʛ\b?���0؃q�Љ4\u0010h\rJ�#8l� L����\u0016e}�\u0012�N�;����=6�\bO�\r̯5�Z�(&E�:G�\u0017���m\"\\�Ϥ\\Z_�@�\u001fA��M{G��5�7�0��O\u0013�ws��\u000b��}_�fG\u0000\u0002�\u0004&\u001dP(��\u0001þ���\u0000�@{��\r��\u0016���P\u000b\t!^��`�z9\u0018\u000e���7m�D�o��L��3ͫ�W��B��[\u000b��u����<�-�M}̔-\u0013����C\u0006w=�%���\t��\u0006\u0007m��\u001a�8v�\u0006���\u0002�#i�\u0019dQ\u0013�РW2�1��\u000b�\u0019�=�\n$7\b\u001b�E|e�.���)Eͽ�n���\u0015��Q\rH�t\\�ّ�A\"Gj���#V�8ٴF\u001cp�l��U�@��\u001fU��1�\"ZR?���&���s�J_u\u000e\u0004�DM3\u0005�Ǵ���71�}\u0017�I���^O�7�\b�\u0018�}vl����4Q'JT�$�)��y��\u001e�%���N�kxa���Y��\u0001���peqUU��ދ\u0011ߗ��w\u00053O���\"\u000eG�b�\u001d�eI�3\u0019\u0018�78���u4d�\u0005\u0001�\u001b\u001b'\u001fS\"�wA���'H\u0014ρ�-�#↞R\u0007�.sOˁ�2�Ƚ��ܮZ�2���B&�Y=5�f�–�'�Ŗ�$z�[찻�İ\u001d�V�\\~ױo��ws\u0019>\u001d9.jU\f�\u000f��@�\u001fi��\u0002\u001c*i\u0017�}����\u000f�,�r�\f���R�:T�\u0015;���5�=�\u0015���N��\u0010�T�t`�\rf��\u0018�~VP��\t�N�w���ބ�j�\rc@�cѮ��U����6��\u001d�p�K��T\u000e�o�7+�p�Džl��x�d����8R.\u0012Ƈ��b�L/���l�lX詮��Zˎ`��s�$ߝ#3L]\u0018�\u0018��\u000f¥����ڷ�\b��U~NC�uξ�|�|�Šn�S)��\t��ZW��\u0000���E�$7�f� /XU\u0005����F�'�\"���q�)FJ�\u0002+����!2�s�@>��/��?�\r�ےo Oڵ�\u0006g�A\u0011�\u001f���\u0002��tb��Y�q�\u0000\"��<̥�J���\u0003��}&?���P�[\u001d;%j��.m� �L�����&\u001b}�����ZM;\u0000�ҭ{_�P�8MO��G,v?�\u001fj^��z��?W�R- \n�pݞR�v@�-Zs\u0010\u0001�\b�H\u0007 \u0007R��;�$X�N4\u0011�-��h�F�\u0010\u0005�$5�O�)졇D�]:�UwҎ\u0001n`\u0001C\u0019�F\u001c�e�J\u0018|Ňe4\u0013�q>ʆ)K�l�&��\u001dMz{NЙ�zh��6᪼�n���ɐ�S�=R��3�[p\u00198e��Q�/�{N�\u0011��y\u001c���$j\u0004d�\u001d��'Ao�\\�Z�\u0002H��A\u000b�\u001f����\\\u0011�~�\u001d\u0013��n::/1��)��!��\u001dC�\u0013n�\u0001�:*`��\u0007�O\n\f�2S!a�\u001cZ�$5Ÿ��%�p�\u0006,O���W��i���\u001d=LC���&�t\r���4�_R�d:\u00126\u0016ݙ��zI\u001c�<��_\u0016�g��2\\8�!e�Q\u0019�^?5���ǹ\u000b\u001a�\u001bbF��\u0007�(6��e�E\u0003R��\u0013t\f��yN<��ĥgw�=g%�3��+K�^&#��!�\u000f�<��U\u000365+\u0016��\u0007�A������)m�A�t�d��-�eǬ1G�ы^K�\u0014<\n��M��5ҡ�·F�\u00157���s��@�A\u0018�\u001f����\u001f\u0007�A\"�\u001f̀��\u001fO\u0007|ņ��&7����Ɗ�\u0006K�����XK�)�E�\u001d/#��t�#eªl��\u0018��U\"H�mU�HR��j���H�*\u0019M��-t$8\u0012�\u0017�1\u0004�\u001d�(ޗ�k���\u0010ʙ���=lh�\u0003�Y\u001e����\u0016��KQ\u000fRo\u0016`;k���!�o+��|�1 ��q�\u0019C8#��ïV���2���\u000787z��Az\b߳��y��5Cm\u0003�\u0004�\u0012��9�q\u0015�ų\u0006#@��\u001c[���͈\u001f��\u0004��l!Q�)n[\u001f\t\u0002�jXf)\u00130R��_R���@�\u0013��h�N��\u0002U?�����\u0000?K��۪z��p��k�����P�\u001cn@v��T\u0005;�A\u0018�\u001f���\u0002WB`��Ad�`�)��\u0006�\u0018��f�\u0005ߜz�-\u001f\u0015�jW%3\u0000�x�\u0011l��G�^���{\u0005\u001f\r.YjE��1��3�\u0016�R��g�e'm�b�r�\u0016��_Taװ��B���E\b��K\u000bd\" \f�Fݰ`\u0003��fב�P\u0012�n�&Z\u000b;�iC�wd\u000e����g~� hz\u0002�ur�-]�\u0019�\u0011�j$�q\u0016\u0000\u001b\tl������ls$d\t\\\u0019D�}�>�/:\u0016�F'b�ӄF��\u001bԡyK�_�\u0019�7s�/�\u0000c�a`\u0000\"V�5��2�\u001e�\u0015N\u0015~�\u000f\t\u001f�J=�V�Ɠ\u001784H��)���\tc+s��$s��E\u0014P�tq�A2�\u001f����\u001fW�;>wR\u0015�o\f�p�\u0014>hnˆ��qۉ\u0007e�����D�\u001b�5�n���\u0011�\u000b��k���b\"��\r||����CJ��7\u0018�k�������~RjgTIy\u0013R�;.\u000e�\tZ�ғ!=.�>���+�ܓ�iSP�9,��3�\u001b��S� �Z�\u001a\u001f�/\\KG�.�I��-\u0015\u001e\"����\r��T\u0011�b�{����yɈ>\b�v��ԙS��=%Q��N�\u00178�\u0003�z�eH\n��L��]\th\u0006A\u0019�%��>\u0013f\\]�2�l��R)�\u0010�\t�l?5��h���B\r:�iۡ��\f�f�^�/U�q�ޕ��\u0007wF�q��3jȺX|�[��-t�n\u0018����@���AL� \t���4�D����?��45u\u0000~�:�h�\u0000�[��m��U���w\u0007���=࿋\u0014��3��=rdKi8w�\u001c\u001eӦ0�H���\"�g5�`\u0001-�\u0012U��Bo��ʫ�V�V�\u001e��c�<����g��\\�R��a���٨Z�\r\rgY���D���}]�b�\u0011�I�5�Cʮ'd0\u001a�fr\\B��h����\u000b�y8�l�����\u001a\u0015\u001e�Nx�Y4�ho�ƘƎc�n��������@�x�\u0006�*k�H�c�\u0001-�ѻY\f\u001c�\u0018�\u0010\u000e쁫:W�aJ\u0011z�'|�_Ӈ�#�`�y�$�%��I\u0011(�P�v�UF\u0012f��vG\u0013�u��振��\u0018����-}�t���<�b��\u001d��>�s�,�\u001a+�Q^�3PRO��rۏ�\n\u0000A��Ai� \u001d���+�\u0011b�A(��x·���{|\u001a���\r����}��s��s��D!�\u0007\u000f�ץ(�\u0012t,ݷYv ���_m�\u0014\u000f^W'��H1J�_�xN�8���\u0013�J�:�\u0006#����5�\u000b���-�Q�\u0006TT�ɏ#3�&�Z\fPj�L�\t��\u001d�Q�rR����\u0000\u0001}Z/�\u0000\u0001c����X}�N����\"9�{sd&��l��\u0006,�\u001cʭ�\u0003\n�yŅID\f��뭌�\u0001\u0016m\\�ŕ�n\u0000��\u0010\u0011x���Eg\u0003qL�78��O�辽 �)\u0010����QOi�B�fBZqCE:�A*�_t8<�(\u0005\u001f�e�\b�߱�b�\u0006�\u0010�`T{U{��w�e\u0014�գ~�=0�kh�-��ڰ\u0019]�1�B��m���‹)\u0004�ex��#akDfH�i=�Q�\u0005\tl}L���8.��?��\u0001����4�A_� 1���\u0002Uo�U�\u0003�+�\n�b��q�?�ƃ�p�[��Lc~���)����;\u000e\b��\u001bz8Vh����P���\u0018l\rJ^�3��!m��`���#X\u0000%�Զ��> ��J����v'��OEGV�ghݰ�q�\u001f�\u0019�yj�2B\f�\u000f�u�\u0015Q\b����E6�Ӥ\u001a���E/�\u001a��\u0004ÿnf� EI�ةQ��7��^\u001c��,f4�����M=\u0007�\u0006�Wh\u0002'BLeb�Bء\u001aG3Q=�D|\n�e���<����i���~���\u0013ڕ\n\u0015��\u0007�M\u0007\u001a\u001eI\u0016�/��WaG�GB3M{�����\u0007�QA�,%+v5\u001a�����,q\u0010�\u001c\r�_�E�[�태M��=\f��\u001f\u0006\u001d�!�}i;��͠\u00198��V�Z��Ou3\u0005�i�\n�eA��\u0000O��H�����\u0006sݻ�AQ� E����C\u0006YCb�\u001d�,��\f�#�\n)\u001d$Sm}�۔��m�\u0016\u000f�l�Zg�\\�Q�n�'\u0006�V�\u0012\u001cY�k�\u0001P��o�[\u0004i\u000ex˔P���̦k���@\u001dX��=N`�`����S�a\u0016��#&(\u0001�����j�\u001aι�\u000f�rB\fB�'�Q��\u0010bBC�\u0012\u0018w�1I6�/�\u0017�e\u0002NHFT�8aI(��3\u0003�\u0003T�V�2PXV}��r�9��\u001aLNk�t�! ���j�`\u0000�d\u0007l��F@����\u0017\u0004�ww�����n���r����\bʇ1eń#�mnZ���E���\u0017M2h��ك\u0015�?\u000f\"M\u0015�\u0017\u0012sous�.\u0018\u0000�B�s�^R^6\u0011�]d�����%\u001b,�h\"�K�BI�\u0014\u001bu\u0003\u0000?�4\u000bc�?����T�\u001dܔ���)��AQ� Y���u�\u0012���K�\"���'���8\u0017�1�\u0000���Ԓ�](ݷ�Zo��Cr�Y\u0010�?�>�*�Lf����\u001c�\u0007k�v��%��\u0007��s�\u0000\u0002��+O�O$��\u0018K��\u000e<\r\r.ѓ~b\u0019\u0018��ZS��~^��J��\u0015�\u000b��#����ϭ��߿^�h2����aEP����\"�}Y\u0004#�ɹ:{|��q��\u0000��%�\u0001\u0011�\u0015H�۪�@\u0001��ٓ_F|s�\u0012\u0016qZ�I\u0007\u0017F*�\u0013~\u0016\\��ߡ\f:*�\u0005�A��ŝ|\u0018m�\u0013A��\u000f�\u0019vK�6�\b�n3\u0003��|��g�3��=�8�(/?<{\u0011T�3���\u0011�en��D�E49�L ���l7�!F�v\u001f��\u001bgxu\\�?��ĥ~�\f�5� �P�A�6.�E\u001b��\u0007��f\u0013��%r��ph�nIPٖ\u0012�Z�S�����It��t�,�\u000ea%)\tx�� ,\u0011B�2llM�Ď\f\u0003P�I\u0006=Z�I5T0w\fN\u001ai\tIhf\u0014�~v5V�*�A��\u001b���N��PA��2��EģAO� ����+��1'�\r2j��\u0013�ʽi�\u000f\u001e��\u0017k��\u001d�]\u0011̬���\u0017:�ͤq\u000f\t����\u0019�ρ\u0001�^\u001bP��8��\u001b'*g^��I����\" ���UyYW�6sK�Ÿo�O]r���5�\u0019�_�3���[��K\u0015`6��B5q\u0001-\u0015,�\fd\u000e�c\u001d�(M}�*^\u0015���Ӛ싔\u000f�\u0006;eZ��YWE��R[�8�a�n��,��>��\u001c�/�d_�u��Tˢ�_�\u000ex�:�����\f�`��6\u0000\u001c]m�򭀙���&!\\\u0011HX�9J?�j����¡m\u001d�T��.���1K}I\u000b�r�ǯ�b���\f��\u0018 !Ǭm��\u0012�\u0002���\u0006/uV��d��@\u0014o\t�<�M���'1����Qf�\u0005tV<�m���������\u001a\u0013V���u�r\u001cD�ȍ�'9ya�=L(�\u0010�\n�L\u001b#л����N\u0015��O��U/{UI�\u0005l��&Nx_E�\u0007f\r<�7YL\r\u0014\u0017�]�\u001d��\u0015k�S���3��:��}[Lr~�;���45�ڳ-$��zDm9�\u0012��$�\n�Wkr\u0001]8\u001bu��\\T@�\u0011f���\u00046مu��\u0019�oŸ����7��t���f�r\u0012R�ܾ�3q����Y\u001fluCl\u0003��_�1�����ٳ�ݲ�-�R�G\u00138�\u0011�QEţAL� ����\u0004X\u0013�b��u��W��22�u�#�\u0018�\u0014�AS�%w*\u0015\u0003\u0015�G''Ȯ�X�!!P��{\n�l�.�<��,��d��J6�0$h>D\u0001}��D|���Н��`Ʈ�����!*�1u\u0003����6�/�h]����I�{V�Ϯ�*�E���av\u0014C•�\\}�j�p,��-�s\u001cm�7}@�Jj�\u0011�@\n�a��rT\u001b��)�V?C�P��\u0015ߍ�S�Mʵ��.�Lb�g�wnGMY�*�<�Y\u001fۥ�RS9]'o\u0007\u0011�tV5Z���m�\u0001<�D�\u0005>(��,���~�\u0006>�)�#LM��N�b{�E�\u0018~9Zi\b|�\u000e�=�흓X ꉅ:/�\n�(�k{$Q\u0017�\u000e\u001dvʣ\u0013��({}d���jV,\\uu}��(ţB\u000f� р�uf\u000e\r�6\u0010E��.?�\rh��\u0003¨��\u0003Aa�'4�G\u000e5�C�|0���V���y�vŞT7��5������z_HF�|d��\u0000ב��N)o/��Z�¨\u001e)�';��nq���-.Z,�\f\u000b\u000b;�מ�Q�u\u0011�\u001b,O��\u0019]Q\tS]�I�\r�-+�ʪE��\u001dE�u�\u0017Q\u0004\u000fe\u000e^��3seB\u0011\u0011\u0019t5AG���߮]?\u0007EFvW�r�D#��\u0004����A��%\u0005��\u001d�-R��B�4�\b��6K9�\u0010_��*S�o��!ul�_\tb�R�,JB�t~Zm�s���\u0017+h\u0011�Ч��\u001d7\u001f�[H\u001a��_��+Xq�M�3;לD��\u000fY���<���a\u001dr)`�\u0012�N�ц��%�41M�@�\u00135:�\u0015�c�F\u001cz\u0012�rQ�\u0001W\u0012�*�\b�\"zY\u001f�+p�\nh���[/��/'vq�\u0004�ٲӥX\u0004��\u000b\f���\u0002,\"��9���\u0010.�K��F\u0005\u0002��~O�0d���d\u0019����?��������F#r�>�S�\u0001��\u001c\fo\u000e�3��\u0015|C\u0007�\u0018O\t����(��\u0001\u001a!Ž�\u0019�S�'\u0014����W��\u0006���({T\u0011\u0015�\u000b���zY�P�Uc���\u0013|9&Ǡ��=am�\bnE�\u0018*p/*�A{� ��ǜRV:\u0000��<�/�����a{\u001f ��Gij����,$��\u001bȒ�UZ�J��h�L�G\u001cJ9$:�����\fh\u0019�u��}�i\ro \u0015b�Oe1����)5@ꟍ�|R���;�Ա�t�\u0019��\u0005F�\u001a��g�D��Ĕ\u00182\f����~Y\"2�Y~\u0007ϩK\u001a�?�H��y�\u0002�\\T8\u0006������a�Ы3�j\u001fu��@������+E��e8�{��ukN�9;k+��\u00189\u0004u�4fO`\b�A�>s\u0006G!����O!\u0011V����\u0014\u0013\u0006x>o7{p��'\u001a{lU.���t�|3�\rS,S\u0005���v��9�+\u001dc��Th���h�\u000b3i\u0007&��6_,B\u0011\u0006$���6XB4w������\u001c9!ժ��o�;jA��΁e2�������-C���h_�A\u0017�!!��2xdguiQ��^eP\u0006f���\u0011\u0007+�R�#\n��VaԳhFN$�+\u0000\u0015�W�/��!0A���\f|?d��\u0013\u0002헽�^c�s;��Ah�r���\r�cE\u0012\u0018�u\u0015�:��D��#��K�&��X�e*���M\u0013\u0013c�p1�m�!���et�^\u0000j�A���z\u000ew{۱\n�,�J\u001eʔ\u0003���`T����i�Z!\u0015\u001a'RU-�e娹[�h�h�s���-y�\nm�nV�\u001e{)>;�*�$�@v��;\u0000�@�Y0�Ka7׭2�N��M�~n}$.Ob�Z˶R\u0019\u001d\r�c��B�\\��\u0012\t��\u001fu\u0011�y\u0012'����\u0011���#�A\u000f�!5���4��sh?��_�*|���\u0005����\n�Ň\u0004�\b-����1�\u0018�(w��ם��`�XĀ\u0012=�\u000bk�C��D�W�D�Y\u0012d4�g,�B�g\u0003�>HI�\u00064\u0004l\u0000�.��\u001d�q\u0005zp��Ǣ��\u0014�u���\u0017�y\u0011�������^���ucx��@\u0007/οR����\f���O�\u0012>�#\b?Z�G\u0012\u0004c�\u0015|M|�cɍM�S\r\b�I|�!{`��^�3\u000b���>�&�J�2�\u0006?�/i/%���\u0006\u0016�U{o\u0004�\\��X�5��d�\u0017[ P��b����\u000f��\u0005io\u0004#�C�l��5&�\u0011�%\u0011\u0000j��iT�A)�!I���\u0002R�V�����\r�ޚ�i�~�:!L%����Kp}|���G�~=\u0015\b��qЬM�\u0012��&X=�{W\u0013\u000bmG���\u0000��J���\f�����𾛒���Q浞�\u0000r��a���hMh����\u0004�\u0014�\b\"�mg�\u0019sV\u000bѬ\u0002���\u0005Ј�\u0007b$K�R\u001d��чV* ���ʸ.��\u0018�7~�ɾ�{������B3u��˽�\b������I)\u000eoU<��x�q��\t�WPn�\fUy��a4���\u000e9��N,\u001e!_]F��\u0018��\u0000��C����Q\n5\fH\ni\u000b?��L�\u0015/aٯ>\u001f����\f@Z����\u000b\u000e�nv�\u001f�\u0000��\u0002�u;�\n�\u0004�գA\u0013�!]������\u001b��r>'jD��'��O\u000b)�S��D���.��5��k����\u0014t��\u001a��\u001eE120���O��C8D���c3ƐmR�\u0003�0\u0007���zҘ\u000fr>a��n�(��v�M�v��G/Ə;�F4�`�T�D\"o���\u0000\u001f��3��N����M��ġ$6�\b1c�ڒ��\u0006p\b�~�n�-�\u0000Ѣ�_���Jz:��(\u0011�\u0000@?c�����\bѸTA�q����݊�)��!�5��w��\u001fpKfzh\u0017Ke\u0010�V�$_\u0016\u0001gJ����'���\u001c�\u0011-�'ua�l��|���:\u0006S�g+%\u0016Ӷ3�\u001f�\b�ւ�ԣA\u000e�!q���+��_�\u0011��h�a\u0007T���=yO�í}\u0012�^��3c�:fл[齺��\r�R�\u0002>FA#vyU���\u0001\u0005i��Fh\u0004e.�]i��#�a�����p\u0014\u001fF��L\u0006��O�Ks\u0013��B�p@�\u0013��aE4i��*\u001dB��(#��\u0002�\f�au�X�+\u000f�޾��1�\u0006-(� E�Y\b�1�O�P���L��]k�C�y\b\u001f��y�z��y2cN%UZ�t>�J\fD��\u00164iy~���ޓorః�\b\u001d\u001f4:�\u0016�Ԝ]\u000b�!+���\u001c�_�KQ�)�0�\u001dk��ÕW�s|�\\\u000f�,3���^\b@�T�x���uK�\u001d��NQ����@�����'��j?���oG�\\��2?`�DE����\fٴ����\u001c\u000ee\u0004���n�l����\u001a�eR�f�u`Y�\u0004���l9ŵ!>k;��k\u000e�\u0005\u0007�\u0014\u0014u�!\n���\u0003���Or\u001d+TхókƏ\"U\tf�C�F�<ܔ�Mx>�%ނ��T�d�P��a���\u0007����-2>@M>�7Bs�#Ĕ�\u001a�\u001c�}MWK��9\t\u0001\u001b�zA��Ɔ$�qb�^���(\u001dOK\u0012\u001b\u0011�\u0018D�\u0003��!���?&�kP�e8\u000e!)�j�\u001b�L�s@�3�ʌ�\u0019�҆��(����ٷ;�c\fN�]N����6XDUC\u0011�{b(�#�� �\u000f��8�\u0001�\t�\u0002�(�4�m�E!�J4@�U�e\r#���A&�!Հ��\u0002\u0006x�©X�N���wӠ��?\u000f򄑿��gQ�g�\u0017=Ǿń�ob\u0013�%��r�?�V���\u001fIK�����E�ṟ���\u001dT4��\u0014b3���Q��� P�[�}����SFL�0շ�W�>u\n�7\u0007���\"Fl��8V�^���Ov��=\u0005QS���:�����n�\u0007�:�\u0001����_�U)9���q$�k�X�\n1���\u0016��\u001e2p\u000f�����B\u0007H\u000b���:��`�A\u001c�!���li�N�NI\t\u001a�H#������\u000f�5\u000b<``d[�{����\u0019J��.�V\u0010���tP�\u0015�sT\u001c�\u0019���[>��I4\u0007\u00194%\u000b�Xj��o\u00032���$�r\u0003 �!\u0003���1Dh�8e0�K�Ig��\u0000�zkS�-2�k\u000f�r6\u0012x��EF���'˃i�F��HlK\u0019�&�\u001cp)������4[\u0014�\u000fv\u0018�Ո\u0012��~y�lZ��\u0001eYy'��\u0005h\u001f\"Gw�Y\f׶-.WOc�QC\f��q�W�!F�\nѪ����芥^,D����:B��fЛg�~�E��;A\u0011S�\u0006A�!�;��\u001b�Y��\u001d��dH\u000b\u0017��,��\u0005`�A/�!����\u0002\u000b��\u0010Q��\rj=QP�x.C���1�$ة�vh��DJ\u0004A\u0017Z\u0011\u0005<�Y7��3��29����z�\u001b����/V���)��3n\u000e7[\u0018:E��\u0004}?���Kzr�.�}�\u0017T\u000f���~\u0011 a���8\u0006\u0001�T���n�\u000e���D���\u001a�\u0011���Q�O�$-��U�Ju��L����Q�Ե\u0001�j��`� �ʛ\u001cՖ\u00116FYߎ$����\u000f͠hWw�\u0016D/\u0016y�������\n�:3n�\u0000�|T\u0010\u0006��&%��4�\u001a\u000fw�?��p�wp`�F����X8@���\u000fe��n\u0019us���X/˿\u000f?<\u001a�\u0005�H\u0015c���\\��K�\u0015��+���%�\u0017�\u0014\u000f��]�A\u0017�\"\u0011��]�I\u001ax�\u0000�O�b2��+CʼnSo\u0001���4�X/���.�c��Po�� \u000f�� �ug\u000e����\f�*\u001f\u0015�<�^}]�X����(�+,��jS�A蹴M�)�?\u0018�v�\u0011^\u001fG�*��Қ_<\u001f\u0000�2�vJ�p\b�l�3���b��\u0017\bw\u000e!��.{'��\u0007?�SEi�-w��T��\u0014��wo� �%�/�\u0014L����֍\u0012��\u0019�=��\u0004���\u001bB2��i~�\u000f�˙j�n:���Bn��~�\u001b��\u000b��/���\u001fMvO�[\u001e���l�S�5��\u0012}�ਏI�S���w�����\u001a�W\u001bQ&G���\u0015Y\u001c�A\u001d�\"%��M2O����������\u001bf\u000fЉ��ؐTٙ�:�����\\}��%��y\u001e4��<��/s�o��\u0004�Y9i��iY��\"�\u001fR�^Q;}�͉1��_?\u0014$dԺ��\u0016}���0�\u000f�\u0000�?#����D�+\u0015�׆yAu�@�w~b�����\u001bm{��\u0019�.x�R-\u001a\u0019�(v���8O��8n���M:6�yx\u001a\u0015�6��K1��Mg�s�?-\u0000$��32��\u000f`�� \u0016�\u0006s�W�\t�߻��̩/�^/q/���S�@����\u0010\\'\u00009�{4��ޛ�^�B\u0005�dm�\u0014��­K��\u0019�\\�<�Л�ʙ?��y\u0000���ƕ`�G_�A\u0006�\"9��L��\u0011gU�խ�@�#��\u0001^\u0014�1�\u001cL���&�( ��ܒ�B�I�tD��v�^=&�P�,b+N\u0007�Pv]���´H�\u0005��a9�2�DL�d�U�!�=���6��\u001b����\u00192����Ǐ�]Q���k>2�@�%��?*\u000b�M�\u00178�\u001d�D}��\u001dl\u001eՊ�\u000b6�\u0002sc��\r�ފ�\u0018OON\u001aJధ\u001bW7X���J\u001b>\u001b��v9 \u001e��@��\u0019�V\u000f��[:�8s�/\u0011,H�Y���40s8��*����[1�\u001fay*fb\u00008%,YD�N��C\r�<�?C��Q�9\u0012C\u0004o�:�@�\"M��Mt���47q\t2?�G���h�UH\u0010�\u001a�?Q�C�@�\u000e�/XH\t��\u0019΀�\u00114�<����q#�?[�N�֣a��\n���u�U��\u001f!��(\u000b,zl��֭,\u00022���{��f#���dc��`�c/��7�^�2}ø\u0018d�^\u0013;F3G@\u001fz\u000e<�q\u001e\u001a]?����-�X�\u0003ԁ�Z]��{Ğ�\u0012\u001eKS���#�\u0006�l?9�a���*+c[)T�\u0001!^�\"��y\u0014����\u0016��\u0007����\u0014�OcUR\r�8TQ��Xj�<��\u000b돍q�jD\u0000\u000f�A\u0001�\"a���\r����hKw�Uz��V�'�bH�2�~(ï��7R���3�P���k�\u0013(�\u000b�o���߻��x�?���3���\u0001\u001dI�)�hpJ��\u0003�0\u001fo�=�zz��E<\rG������T\u000b.�n\u0019\u0015|��7G\u0006�Xy`�E\b�a�6\u0014:N�!}����G������\"{·}\u0005�埚8���\r\r��O:��\t��]'�6�|�)[��\u0011�$l�\u0015*���Q��4\u0013���\u001f�N�?��\u001e�y^\u0010`,��t�Q���U4ĚU��\u001d�=�����M�\u000f�x\u0005�R\u001c���z\u0006�1�U�A\u0000�\"u���\r��\u0006�\u0012���\u0012�\u0016\u0018Љ�P:T�hn\u0006�C͟^&��LFV;=2\b\u000e�����D�D�\f\u0001����>sJ\u0006`���\t�\u0001���T̩м�w����P�Ie���-g�\u0003j7d�\u000e��\u000f�\u0007�����Q\tN����D#�\u0002�B��_��w��`GO�e�1��\u0015P8��(\u0019��ݭU�>�f:��)�dח\t�}�~�~s�̅��\u001e<�J�?\r�~h�\u0018�����y���C�@h�\"=�k\u001f�A���>8�\u001bpP��\u001f<�.\u0011�r������a/2\u0010�-����a?�\u0001��e�A\u0013�\"����\f�\r:����Nbj�5�Fmo,\u0000iW��d;�K;�����?�r���\"\u0007�\u0001����\u0018Ɔ@-\u000f������Z\u001c�c\u0006�h�89�\u0013.V>�������PZ�2\u000bq\u0010oAE\u0013�V�ǻ�E�\u00064����Q�¼\u001d���\u0004).�b\u0004\u0005\u001a��(�H�4\u001aڿ\u0004`c ��}6˵\u0018r�\f!և�\u001a�]\b�F�\u001a���\u0012����\u0010\u0003�T�J\u00156!d\f\u0003oU}��p��\u0014Z���K��x!`��?���~b�U�E\u0007^��3\u001e\u0004A,`��w��\u000b��\t\u0007�Ο�ڝ����$�\u0010\u001eݏ��i�\u001d�k9�/�r��@��Ec�A\b�\"���NP\u0017����v�=����0��\u0017\u001brM�%\u0012>y�Џ\u0001z�2�?��\u0017�W�:mӆv���7\u001b�z�\u0000`\u0011��̠}��\n�D��M\f�\u001f\u0016(�V\u0007�K#��T\u0007�4��\u001d�p\u0014͠\u001c�܀\u000e��\u0018ߌ`-V�\u0006��;�z^\tO��Gc\u0006]>�;[t,�\u00138�=�l\u0018\u0006�fމ�\u0015���P��.9�wk6/\r����\u000b��|����&\u001cI�P2ċ�~r-�n\u0005N���L��,Y<ʌ�zN\u000b8\u0006��YA\u000e5�In\u0005z\u000e�{��̫\u0012&��d��\u001e+E���\u0017�}�՚�\u0003\u00195d]��IZ6½�{�\u0007�A\u0014�\"���L��\u0019�!����L�I���A�dT�mU���BQ%�ԩ��\"��E=��>\u000eTmۀ�\u0019�Qv\\�\n\u000f\u001a\f\u0006�6�����'��Q�\u001fVH��FNƭ�\u0019zh�jC�����Xޕx�\u0001��x\u0013\u001fF���c�z�N7(�\u001fؚ~��\u0003��\u0017r~ʂ��������*����}Š���8�R�??\u0014$����\u0012\u0014\u0017�\u001d��o�Ͳ\u0010D\u0007G誐��yQ�WV��1�%[n)擯\\)�<&Û��\u0016��銚��\u0014\u0003H|붼���QX����.<�h�.�.K)��m�\u000e^�d&d\u0017EY$�J��t6�{���s�?Xo\u0007�Y���.��\u001dQyM�9A{'J�H6|`��p��م4\u0002\b\u0006�\u001d/�� ���u��B�y�'NdtzB;�ۙ\u001aq�\b�8%�����d�;���9\nl`7\u0002\\KC�q�f�G7��%K�\u0016v�\"FjY����p7B����A��k\\\u000f��\u00171�0�ì�\bz� p�\u0012\u0018^���C\u001f\u000e*\u0000'�\"{ \u0018�\u0010�\u000bϦ�\"���H0MS����O�m����D�yN7�[o�\b+���X�\u0000�\u0017]�A\u001d�\"ـ�L�m��\u001bի�\ni\u000e\"���j�\u0017��mY�‰�\u0003���)|l �ODr_�w�n\u0013;�c���b�L�|Y�ŕa=EV�\\����\u0018��H7e{$(syЭg/��X\u0007\u0005HJ\nw�V���\u00179\u0000�\u0019+�cR��.���%_�U�A�CԵ�a\u0004P�_\u0005��-\u0018�e`\u001e�\u001f\"u_X��\u0006�f�\r��4-�&�-�P�\u001exEHD�r\u001cd�a- \u0017�\u001c7�4\u0014����Yy�\u0018�'*N\u0000\u001d���b����{��2�'t��������j\u0012(9����[/�1z����\u001d��~�3v�9S�6p׭q�$EX�f���m����c_����A\u0015�\"��L�c�b�\u001b\n\u0003N�YB��\u000b����\r�aTU�l�C��\u0002���?����9\u0012[t�x�ɴ\u001b\u0003��Ǣ��]\u0004Bǝ��\u0011�7���t\u0000�qO���Ʉ�zQ\u0010杻�i\u0011\u0018�\u000eT�X�|8Ҩx�\u0019G��Y:?�\u0013�\u001b\u0007���7�^0�\u001c;��9��\u000f��o! \r�m79������(���mxZ3\u0014\u0001�{Cǒ\u0018Q�.�&\n�kp���\u0006zkh�ww�\"\u0001��P�ɜ�z� ��8I\r�\u001e�H�\n�wr\"\u0015\t�\u001e�\u0017���T��\u0001�6�v����IJ��7X�\u0014��p�f]+�k�\\\u000b\"\u0012F�t\u001f�+U�l���A\u000e�#\u0001��L�kع4\u001b\u001d?h,��?a��)m�4� �����ed���w�Y��g�h�8�\u001b�Wt�\u001f�j�������gv�\u0005� J��2e\u000eG�\u0006zg�)�lj�M\u0012ȓ�����a�\u0003a�Z{�\t�&^K��ֽ�Q�\u0001�L��U\u001dz��G�2�o�\u001d(�d�(�v�2�+%�bD+i%^�qL��ϔ�U���t�A���c�m\u0006\u0014�kֿV�xߐ'v���\tMI�����\t�;�\u001aF��(�$\rW\u0012�]XN�<�3�yL�l0�:k\u001cO.4�U���z�M\u0019��\u0006ڋ�qQ+���\u0006\u001b 4ϴ���A#�#\u0015�����=FD��e��7Ҟ%q�3ӈ�]�W����J�;oQOOc]B������3�Y|�K�\t��2�����8w�~8�(;5\u0019I���f�\u000bs�\u000ep��Uq��\"��U�<�6��7��n\u0017~'�M�fB�j���܈\u0018a3\n\u0013����w��I\u0010�#�g�X�R$\u001bG&\u0000��^\fC��_��l��g����k����\u0002���&R?(J�I�~��Hn6�X��E_4��Uq�\u0002k�s�\u000f�X\u001e4�B�U\u0007\u001e��7��h8S͉�1\u0002���#J��\u001a\u0007�\u0010\u001c���IH\n�\r\r��2R\u000biQ:��Gs\u0003�:�a�m��\u001dYqzٰ�A+�#)��۹,tЊ��\u001a�H��\u000e�\u0007��\u0018{\u0005i\u0019�x\u0002\u0000ϕ�\\k0��c{�f\u0007��I�F�f-ae��|�~Ah :�S�aߑL��R1`9�J:Lإ�\u0010\u0015\u001d�?��A\u0006�QYq\u001a\r�_%Ia�\u001f��ڸBSff�\u0000����~:-I�4�>\u0015��\u000e�\u0005.\u001c�pIt�7\fS��O4�Ȁؤ\u0003L�U�^@��\u001f���\u0019�\u0013\u001c\n���\u0015E�����:�QOnM�\u0018�{ҝ����\u0014}mw�\u0001�o�\u0011r�i.ח��|��#J���䗭�-�u\u0003܀ǡh8ȑ�w��\u0004e���bk�#:C\u0002 �����EuDž`��Z���c8!�P���\t�\u0007[P�\u0002T\u0011�����\u000767�\u0003�*5�\nPy�ۼ?ڲ�����]�t�;iҵ��Y�\u0001܅Q;�\u0011\u0003<@T*��q\u0001w\u000e���*\u0003��2��\u0004�C��V��<�R�*E�x�j�W\u0007+�Y\u001a�nS;xe�\u0005� ���Ɔ��\bE\u0017~�ſ*C�k\u001d�ʩ��\b\u0014TE�a6�5�ᱲ���Sj���\u001f\u001b'�q��Aӏ0;`8\u0000\u0003���崠t캒��A#�#e����\u0011�K��F\u0005[�� �D���B��M�_�\u0012/\u0006)�ݿ�#�\u0016�GxC\u0005��ʥS����\u0015�I՘7\u0013�\u0015\f�n�\u0013d'�1�=`�~�c�m����\u0018_�X˃~��\u0006��\u001fl\u0019�J�����Z��/��l\u0007pLZ�QW�m��65��\u0006���F,\u0010T|��]�{�L�?\u0003n�5&�\u0011�\u0014\f\f�8�}��\"�\u001c\u0017J\u001b\u001c\u0004%�ߡI�׆u%�f&9��˰�x_�Y$δ\u0004���'����u�I\u001eH�\r�~��Ɵh�\u0005�\u0016��H�<���Qr\u001bv\u001c!�;\f-\\]6��\u0013!�|�-��\u0016[|�\u0016\u00163�\u001c�<۶����\u001a�E��b��\u000b�\u0018\u0007j��A)�#y��۸㾬ߨN=\u0003꣑6cd�1k\nNrw\fch���C\u0016��h����+���]Z��8hb�c9&BT�ψ/\u0000�+�e\u00185�g�׃�\u0012/\"o|�\u001anL�^(��e�\u001e��Bġ�⇶���T�:�E�ۻ���1�t��lD�a�S�JNI!�o\u001al\u001e0��;\u001e��ҨC���R�rY_{�i���:a9\u0011�\u000b\u001d����w�~�C�\u0012J�LTC��6]�Z'Z������\b(�@\u0001cL�h*!���\u001a���3\u0016��i\ne���hR�\f��H�P {����F\u000fs���g���JW�0�x���bK�3b&\u0014��S$D3�\u001b���\u0014��W�:�3�ג���A)�#�����dg9���\u00071��tUy�d�:\u001b�\u0015yS�g�fb\u0000\u0007�=��s\u0007��)�MT�I\u0018�H1�\u0002�%��pE\u0005n�Ё�H�nޠ�OQ�~��Ho_��Z�ˑ\u0010į�T��i�4�����\u0015[�\u001b����А#���({�S[\u0001g��h\u0000�;!��#\u001d��\u0010���S��)�a{�EYI}�%E����lPTjĨ�h�,A����^(�_3\u000b��\u0017< ��\u0011I��=b05��񲜸\u0005\n֎2iq%7��2�D�\u0013�'�A���ZY_DPM^�D��Ԩ|�N eRQdC\u0000�4�vz�va\u0014ʡ/�^&��a�ښ��ƒ�R5��\u0010����\u001di��l�ڪ�A2�#���ۺ\u0011\\B\u0019�3\\�\"�b��C�j\u0005N@�<�g\u001b��-�<�n\u000efg���x�$�-x=���|�\"��v�\u0011��EJY��fҝ�\u001c\u0000\b��?\u0017���Z1��_��.\u000e�O�i�\u0012P_)�W;�n�P\u001aK��U��\u001b�����S���\u000fk\u0018�T�x��\u0006��x��\u0017O�/%<�Gk�;��H$���{����_�/�\u0007s�\u0004+ֹ�\u001c�ђ�0\u001f����4nT�q�T��\u0017\n�͆�jG\t\u000e\nF8�31�7$\u0005\u0017�f����6����T1!``�/d��jOȩ\u001cj�\u000bA�ơ�x?��\u000f,�0[���\u0013b�'�~�t�U\u001c\b�2#n\u0010��v�'��n��~�\u0011��\u0000ڽ�A*�#�����\u001aPz�&{\\�He/!0���k\f_\"&F} Rɗ�j[ڰ\u0018�\u001c\t5z�Wō���\u0019�N���\u001b�\u0001��+\u0006\u001e@X�t@m5%ݥ\u001e�M�{Jǟ~�����ֵ|!y\u00110��g��HN�+���nk�\\5�$\f�\u001bT\u0005V�\u0012Ԡ\u001a�v�t,�(������j\fԞ\\��8��\u0006��N�4�\u00001X\u0003r�:�Z���\n%\u001b:�Z�z̆�\u0013\u0007�\u001d��ɐ\u0014�V\u00184�i�\ts�H��H�\u0015ʌ�\u001fFůV\u001aϴ\u000eeo��w=t�e�\u001cB�k\u001aj� \u000b��c\"t��`I�u��`���օ\u000f�+\u0000\u0017����ؼׇ�C\f&�u�]�Y�8�\u001d!$;-b'��q\u0018�e�d�V7\u000b�S8�=o\"\b�wټA�n�D?'�ag*�\f�\u0007p\u001fo�����6\u000e`ᱣR�\u000eAW\u0005��y���\u0003\u001d��\u001e�\u001d\u0002kx�a`�-a-Ѯ�R\u000b.ЖQ��=����a{��{�Ð�MB}^v����3y\f����]���\u0016�\u0018*70T|D>]�rl]\u001b���U�����tfz�x�̛�\u001f���b�}>���\b\u001c:s���\"\u001c�\u0012���\u000eL�j��i\u001b_��A(�#݀���%�\u0004w��\u001aZB}��xlr\u000f�S�:��\u0012\u0015#����c\u0018켟\u000b�/}���G�5.X�t|\u001e|\b\u0012����4\u001e�-\u0014{��w�U������r�`�Ux\u0015\u001bfXO@S�\u0013�T+���y�\\SevG���P�\u0006G�*�Kn��M\\�LT@/\u001f�3�nUň'i�\u0012\u001eMB��נw��\u0002C�\u0006\\\u0000\b��o?#�\u0007�,a@�6�\u001f��?�6�̛�\u0016ޜ��|-ӑF\u0012���V\u001fF�vl�}(9\u0017�d:\u0003\u0012 \f(�\u0014\tk��^��H�J���eZ�f�ݓ\u0006����E�\u000b�\u0018�W��۝�~�%V!=���E�y?l\fn�g+�W.Uq��\u0002խ��\u0014J/\u001a\nܟ'�n�|TxIGh'\"]�\u0019ac�(+��ɬ�\rC0�`�,(q9�|H��\u0013\tD��E\u001bE�r>�A-�$\u0005��L�@\u000em�����(��y&\f�R\u0011u�jv▜I��n�\bj�~&�6㉀-\u0001�\u0011�@F_2�q�\u001f#��uɭO�w\"u\u001d W�\u000b��g�E�f\r^%\u0004[�ީ!_�y\u0012�eNx\u0019���?����Uy���J(8X\u000f�A�BJC(?\u0003'?��\t~�G��\u0004����8Fր�d�F��5��Ņ(!3A�dBJs0\u0005>��o��������\u001f���\r,�\u0014`�~\u0010� �y]q�L��\u001eű�Ͼ���\u0012\n�8\\S���\nA:�Z�\b��\u0003\u001b\"����h$�2i�h�$\u0013L��\u0014ٞ�FF��ߔ�\u0010���d\u0002C*�㯒�\u0015��e��!�\nW�=��m\u0018�uu@\u0018\u0001�?_�YR�'�]V�{�G~��0\"��\u0014\t�YN��ZY��2�\u0014��4C\nÔ��߬��⥁�\u000b:&\u0001\u0011N�;\u0016�M�*��7��\u0000\u001bڍ�\u0016ܷ\u0019�\u0000����XB\\�-�\f�p�߹}�\u001d���dϭG�aY���&�\u0011^�\u0014-�����'�F]����,�\u0001v�c�E�\"r6n4�A�z�)�S�A>�$A���.����\\F��n+qt4+$l�rn��l�Jh�u\u001bv��b��\u0017�}/A2�\f,�j�)푘\u001b�-�]�o��R����.�\u0000�g��[\u0005�\u0016(6����lfN5�\u000b6�c\"yd�̬-�v�\f��1�h���\u0004;���D�θy\u0017#\u0012Eu���Rw�f���ľtP��\u000ehzRTAg\t\f@\u0017�\u001c[���7\u001d��H1��F�4�.�G[�3��0\r|\u0011�\r�\u0018\u0010E\u0010b�+�,����<9Qѝ�T]�\flh���ߜ�\u001b�S\\\"��\u0013�t�\u001b<������{�T�XGt+��8\u0006�\u00033|�9S�J���'����vM\u001d��;)�t �H��jB��:�SnEc���>�|�͹W��S+f���A@�$U���0\u001e�\u0017���_�\u0007�����j��H��0��؄C���\u0014%�H�%I�k/�\u0002n\ft:�\u0013��0�����d륌\u0017l�V�\u0005��b\b\u001a3��\\����)-\f\u0010\"!\u0016�JT\u0011N\u0015F\u000f�\\�d��ӳ�A\u000b\u0006ʘ�u�N�M�;}�@{��l?�\u0002���\nkˬ\u000b�O,��F�z\u0007\u000bǫ%7\\��\u0011����4�Cˉl�\n`iOw�\u001e�e1�:��&���\u0007��P�q�.T����/B�Β\u0018{����<�r�Z��|l���H\b\u001cvE*�L\u0014\u0007gg��i{=�ބ�G�m� ����ǚ�)O\u001eK��\u0006ý�=y�`-��\u0014��D\u0001|\nrBɗW�O�@�~LA\u001e���\\\u000bEK��\u000f��+��\u0006�\u0019l������AJ�$i��L�?ǎ~�9�\u0002+�\u001f:Z��8�r\"�O�y�I\u0019��\u0013\u00132�ۜ\u0018\u0004�tz��o�YE)|�\u001c.�)d��\u0001���w�d<���\u001f�a��oC�(‘���\u0016J\"Y�G�w��Ď\u0000�*\u001c��1;|\u0000�r�h����}�CW\u0019�V==�ߪ�'�\nL+�\u0000�_��Ot�k\u0018>0����\nB\u0000��).�\u0018���؟u\u000b\u001a�4k#\u0017,�L�$�wg�\u0006��\u0012�0bn2s\u0014^�x��y\u001d\u0000$J\u0016�lJ0��G\u0014Vt/9`V�gEl�$\u0017�h����/�H\u0018*��\u000fsR^�sP_�\bC\u0015Pc�F�\u0018z|;\u0017-�\u0002�|\u0001<1�=�և=�W$&����\u001a�\u0010xw\b�\u0000\u0000������l2_)C����0[�8�nfF;?l�z\u0011�h\u0012\t�A>�$}��1�.\u0016U\u001f��\u0000\u0010�\u0011\u000fl��ex�B&kQ��WbF�8\u0015\u000f[1'\u0019y9�� ��@��\u001e\u0013K���[�'\u0018�t�\u000fd�J�\f�E�l���\f\u0007Ӱ���r�IU����Q��|��O��(\u001f��\u001f>\u0002\u0012����\u001b����l�&#�<�$�c�\f\u001b�S@��\n� �\u0017�pc��V%� '����J�\u0000��\u0014�Y2�oS�\u0002C�\u0014�\u001c��z����-���4R��Uu[�\t}\u0018M��=����\u0003��c��j\t\u001b���,�ݿY���<\u00030ς�\u001fXs�V�h=]�+\f\u0014(pu�\u0000'p�D�#1�\u00108�����H�U~=Ս�c���L�)e\f�@��P\u000e�x���l���1�r�w��P�r�\u00126�A5�$����0T�����=ؼ\u0012\u0019���\u0017���(!�u�0\u000f�l�3 \u000f�\td��\f1��j\u0014\tT��\nP7�\u0016�d�^\u001eHY!� �ގɢܱ��\u0007�\u0002�'��� \u001c{8��J�>n��t\n�|��\u0015\"wD�H�v�\u0002��=�G�U9\u0011p\u0004wϢ͡�����\u001c�=E�k*�[\u0018x�����_\u0006�͒�����#kt�x�\f�0\u001d�\u0004k�\u0005�f��\u001fļӣ\u001a��0|�>�\u0016t���\u0012�E��)�\u001c\u0013g5���c\u000e��u�.�(|�*f�8��\t��7F\u001a\n�\u0006l�Y�99��ᕊ\u0016\u0000\u0017��>�L�\nQ�\u001d����k�\u001c����!`�M�0!^}\u000b� �'�����7�����\u001f�)OW\"��A:�$����1i�����\u0017Bn���}��K�R�\u001d\u001cz\u0007�Ǎ�� w��ݓ��Э���o�}^IX\u0018\u000e7�u)'>��������Mו�o\u0019fkN\u0013��\u0007Q(��N�\u001a�\u0004�\u0014�pxw�W���Bq������]̈́���'��0��L\u001d����A1N���S\r\u0003m�5\u0019D}��|�R��1NҒ�\u0001Bw��HW�\r�/�R�J�G�v�\u0014U�\u0019\u001f���\u001d��޾ź�s�d�s\u0011�qǼY-|q\u0004�W\\x\u0001�\u0001\u00186\u0001ef���}�/���*\u001d0\u0011\u0017��ۑ��\u0012S�Aѷ�骗���>�_\u0017I�\"3��\t����\u000e �`/\r�${\u000e\u0006ʢ��/<,\u001a�����P�m��S�o��\u0007\u000fn�j��A4�$����/�\u0013\u0016;��P&�\rDq�\u001dE���I ޙ:s�����P�\u001bCib���j�4�ƣ%��\u0019+�l���#n��C���\u0010��\u000e�����[�OA��ϻ��\u001aO�E�),\u0000\u001b�ð�&'\u0017`bjӳ.�_��n��j�;����W�\u0012��%�baGY�ו�n=1\u000f�`}Q��v�5\u0005��M2�+r�i�����f\r)\u001cM�>\u000b���Z\b%�\u0016\u001e�\u001d?q��\"�x\u0019;��n4��\u0010�^�bY&�\u001e\u000e�\u0006:�y�\u0006 ����>�����O��T#\u0003-�K�q\u0003�\u0014�Ų��A#�$���/�\u0018\u0011\\��.���\f�~�a��h��\u0019\u0004�\u000eX\u0005���o2�&\rF�_T26C��pX-�\n��s��\u0014��0q�_�\u0011;�E[�6X1��\u0016% ��b�J�Y�\u000f~���\u0002�R�\u0011�d������\u000b������'�\u0014���g��B���o�*\u0017'��8�r�\u0007�A�9��\\�\u0018Y��:g�Ev��\\%n�#���.V����Vb&�����\u0015\u0000rA��F�#���#�W\"I�Y�ڼ+\n\u0013�c���zD-�d�Np*r~\u0010�n\u0019\u000b��=P�rPd�7�ĩo�0\u0005\u001b\t����\n[a�&ʬ{�F���Ȫ�}�\u0002�P/�+��U�߸�\u0005+8S�����@�������\u000fjY�G�\u001f\u0018�\u000f\u0010��F[��\u000f�j\u0015��\u000f\u0011��_c'X��\u0005��H��A\u0013�%\t���\u0017JS~ 8��n̼%r�\u0018+}�[J�}q\u0010�0?8I�����(�:\u000fG�Y�9�\u0000>�]�6giz\u001f�\t9(V\nvۘVn?�J�&ga�\u0017\rq5k��vQ\u0007!\u0005_\u0003c:�ɖ�<�K�\u0017TU�F�h{�ز��$W�Zv\u0000ݔ�A��1Y\u0000$�\u0016w,��s\u0003��>u��3�O�\t��ޮ���M\u0015��\u0019&@�]\f�/E��f\u0019?���p.�\u0007T=Ż^a� uT�\"T��-}U�,���z��l\u001c�BJ��\u001c\n�N���\u0003��B'H^Nρ���S\u0016@��;������$n\u001a��G�%�,�@�6�@����T�A\u0018�%\u001d���uD?�1�1%q�ގc\u0016��#��\u001c\u0000š/��˄�Al��C}<�=\u000f�\b�̪��Wī\t�jc�\u0004�͌��\u0002�\u00188|ǭ�\u0013���rH�}��7\u0004�����]�޺���#?�Z���H�ⷤih��y�����\u0010�g�\u00024�\nM�����Uj\u001dǀ��������\u000f}ǝ#_I6����\u0014�\u001f��+\u0006��ҰeP+\u001a{\u0015r���.{��2i,,~;ѪWã\n�b��\b�,��3���k\u001f$A�qҦ�C\u0012[\u0019�\u0007mQ3�\u0014?��O��Z|>Ma����\u000e�~�m��\f-\u001b���/�88�����W�F�Eb�i�A/�%1���ɋ\u0019Uq]�����\u0000\u00059��\u001cp��E�\u000f8�\u0005#ow}�l-\u000eg\u0014S�~\u0011rID���=6E\t�k�2/7\u001d\"S�\u00120;\u001c�\u0015��\\t���J��\u001aͣp;[x.ẙ\b�^�`~���T����b���6\u0001�8!\u0019\r���j�Yu�(7�A�0,D�\f�iϰcl��\u0006t���/�k[\u0004ɉ6��d�QN�\u0005��\u0013ש��h�n�x���bx)j��o�����_�z�\\���\u0014�[�\u001f��Uc������_�\u001b�P\u0003�D\"\fi��gM\t���\u0014D,{�^@x+%sSL��]���V1\u001emW��q\\�!����R0T2\u0016~��@���Ʋ��s�W�*Z<�co)|�g�+�4\u0001�)�C8fh}�\u0015r��/��?�(r\u001e�2� ;\u001c\u0007��k[���\f�L(�fH�\u0015��0��Rb���\u001a?=������0\u0019�Y��Unޡn��6/GCP���K��\u0001���k?���E4���\u001b�\u0014#�i�A;�%Y���\u001f�;7��\r���:�$�lwo��kL3��\u0000�U\u0003�~^2�k�WH|~�\u000b� �C�ArÅd�!�Y4\u0015ߦ��d\u0003\u001c/���/�m \u0007>���s@ݒz�1�%&�u5����@��*�/��爅\u0014\u0018��\\\u0017����%�\u001f����\u0019ƒT�핀ͪ5\u0002W|)P�\u0016���6MX��v�B�,����ͫ��S��&n��+zѱ�n4a$\u0005��Ϯ\u0000�d\"�G�9ڨ�ϱ�\u001f\u0016V\u0013C��ܷ�<��\f0�\u0011%�\f�&��X�yF+f�\u0007�g��\u0018�ت��t\u001c�-y�M\u0001\u001b�Sy���'\"���\u0015�4��}�^�\u0005v�@��8[4�\f��\u000e�\u000ePK�呢�L��$\u0015�7!Y)g�AC�%m����/~���P�N)\u001a�Z��\u0007C\\�(\u001fSf�������\\���%�̡<�o����ZJ�eq�U`*��2��W7}G�:G�Rd`�\u0010c\u0018\b�O�*8�9ݩb��\u0001�J\u001f�\u001f�[V��H��o�zd�[a��&�\u0001�ÍG�qD�\u0018�\u0003\n�X;R�ͮ���0i��F����Λ�L\u0000������b=2Х_\u000f�>�M��[h�FP1��\u0003��;��d�{f�x\u001f��Y\u0006\u001f�jNm%�ES�\u0015\n�.ظ�4y�?\"D\fi�9�r�\u0005��A�!�؀��&B��h��(򛺠|L��p)҇ON \f�\u0010�\u0019^1�o���ά7;�&K\u001d~\u0002N�I�-}k'��\r\u000b\u000b\f�#Eug\u0010@���(\u000b�\u0005-h�AD�%������������Ԝɍ��{�}Ht�2\u0017)_�1\u0017�`~�\u001c;\u0015�\".\u001f�D�ce͛���҇�\f�G�\u0011\u0005\u0011�\r�\u0018k\u0002��{\u0018\u0016��'y\\���M�²����_�V��,��i��P\u001f0�Z]XZ��\u0012\f��N(۳P|1dxA����-�^mz��𶦀�qho ���p�[��\u0014~\u001b\u0014G�8�*\u0007H�vCa_��s�\u0006���9\u000bɉ\u0012\u001aC\u001b����|�h52/wK��\u001e\u0002;ɅV� �'T�Yn�]-6�|�\u0016ʷE��^\u0002������E�S9���\u001b�\f�H��W�e�(�ު���\u000f�2{;����\u0004���w��\u000fA�vo\u0015\u0014��Fn�-x�Ӄ?T�ɣ�Nj\u0012��6��+���qn��l�Aځ%���ۺ\u000e��U]�����Mŏ=�s��n{�P\n��\u0005+V�NH�:\u0015Y�l�ő\u0018�DI$)�=�0̛��\n�~\u0015>\u0001�J���PP��˒��\u0006(1���)\u001f�Ϻ�gBm����4_���\u001d��J����.]l\u0012�?\u001d\u0015W�\u0003k�4��E.�n�n�D_��~\u0014�����\u001bLl\u0005���\u0007:3�m���ZM��3�\u0002�;>�f�n���\n��6���8\u001b��\u001e*HE�\tؾ������O,�pPǹ��\u0017�-g���N�]o�KW�Q���u{����b|\u000b\u0003ߔ��c\u0019U��\u0000\u0017]x\u001f0�\t����;=r�!��\u001bÂ*��^G���Ynz����\u0010;�̎\u0000�]��\u000b����CP��g\u0012�\u0005\u0019S-]>\u0000oU�/\u001a��\u001f���n��ϗ{��T\u0010�\u0006\u0016\u0011g�$�4��M��rZ��f�Nmz��&��\u0005=�o�#_�\rb�Mz���2MN\u0000�E�\u0019{����AQ�%���ۺ\u000e��pn�\b7|7�\u0001�i�\u0005\u001a�}��UI����OL[�N���\u000eX�\u0015m����v����\u0019����G\u0018�J���n\u000eY�hav��\bk�xScC\u00180H ]�`��%�$\u0000������-�j�LŽ��\u0001*l�\u0015�_�ӏL�3�îPUn��z�ۚ����\t&\u001e���*^\u0003\u000b�����ZTG�\u0006C��\u001f�6��{����X\u0017\"֮�^\u001e��'�D�Z�\u0005Ӎ���\u001d*�9a���I�{n_\u0006$d�\f��_�adL~\u0007��cjbCC\u000e}ͩH,�aE��S�\u0000�������uՋFr��1V�\u0005�͕��\f�Q��Q�T\t��a��\u00002���*2Zoö�\f[��0\u000fn�WM�=\u0018�\u001e\u0014��x���;\u0011�k�gXa�\u0017��\u0016O����AC�%���ۻf{$3�,6�O��\u0013�(4�Z�N2\u0012oi\u001fm��0\"N(<;n-�&_�y�\b�zTI�y�5Ww`�t��p\u00190\f\u001c�\u000e\u001b���2�M���c�|�zJ\u0005\\�m\u0014\u0012#��>7o��!�Pۿ���K���Ίǜ��)�rS��j\u001a:��+\u0017�+����\u0007�ڑ��u�w��\u0006���tސ\u0000侊��G����\f\u0015\u0017f���#�`�x�X|�#cly�2\u0011ډ4���M\nh�S*�B��\\VN\u0019��ȏRa��G �k��� ��Z���41��\u0006k\u001d�o#8�O>)l��^����}b�1���Z�6��EkMT�h��\u0017�n��L(�Z\u001b;��ʑ�{��}�\u001c@[�\u000e��AXG+1��NM{�K��A9�%р�ۻeh4,g�r#<���Һ���Z�\u0015�t˄�#��V0qHD�=\u001e\b\u0000���U�,�4dC~\"<�\u000f��^�����t�\u0006ٜܻTԌՁ.�\t\u0001�\u001e�J\"\u0003c¼�n�kM\u001dexH��9�+�/ h���\u0016�7��t%;��{��u�aI'�E\u00126\u0011���\u001eg�ȿ-�1B��\n-�\u001b�p��\u0017���g�\u001a墕=�����M\u001a��&f?�=kt��$����f¿�\u001dl�\u0004}\u001e �=t\r�P�y\tW\u0014���?[W\t\t���K\u0001%b%Ӑ\u001a��\u0003\n��.�Ƨ\u001c9\u001dŹ�\u0011\u0001!��B���x�@����,._�ԧA�a���1]1(��b/ڻʂ����[�őQ��JU�֋��A<�%��ۻ?y\u0000�I��\u0016ЮK!;�\u0005\u0000\u0004>|D\u000fbŧ��\\�Y���4\u001c�Z�y��-o\u001a}����{�ԋMqJ��=��\u001b�\r9|_\u0011�2��;�_��jb5f�qWA9�u\u0002;D\u001aP�j��k��\"r��Z�,�C\u001b\nY��\u0003�eO�KFE�\u000fq\u0011�}�9ѮvRL\u000e˂\"ovϞ�˽`W�2�U�Ka\b��y;'�k�\u001cqq]\nlʟD͂��$�V�qM�n,�0��|��\bAeO4F\t��i� :x\u0002G���\u0001O\u0015݁�����qCeuDo<�:r�۠8�'�fe����\n[�SL��>\u0019\u0015\u001c\u0006��H��z�á#5�-�O,\u0014�w%��\u0005Nfչ\u000f�\f��\u0004�`��U�����,rUn2Ƞ\b���67�%��*�$#~E\b����A\"�&\r���\r�\u0002H$T�\u0010_\u0003\u0003����N��4�U�[�^\"\u001d��\u001cv�\u0001}u�\u0007�X~��l��f�u#\u0018�3�u;�\"部�̺�l~߽��,\u000bb���y�ևT?/�{��6Ԟ�� _R���p�\u0011�;�݀�[����s.�ď�Ar��\u0017\rh�:7p\u0018�& pZ��\u0019���\u001c�E�T�'�F��M\b&�C+�\b�Q�ݸv�d�b�\u0011#h��k,n\u000eSd\\���H��}\u000fsԔ?�\f�`}��Ubch���n7\u0003hϑ��\u0007uk���\u0019?�\u0019��gq`\u0007J�A\u0019�&!��);�>u�A�p筒\u00063-4��3F�kf\u0013�pON\u0013z�Z�\u001f_�\u001dR������:��x�!\u001a�\u0010�8����jj�RF\"�6zB3��j��>��T�\u000bI���7��RD��\u0011-0gR�l;��~�\n�э�u������=�\u0017�Ϟ�\u0006l�\u0018\u001d��\u0010�\u0011�\u000b�r[1�손�\u0000P��b1\r�\u0018=@bm)�\u001b�g��\u0004\u0000�l�����K(��(�����e)Ϋ�\u001c7��r��\u0003�A�+\u0002$��g?lX=�\u0007ʼn)�YVdJ9�\t��[�3�gi\u001b`ؽ�)��P[���\u000b\u000emtS\f�e��I\u0000�1�x��\u0000[ii�A$�&5���\u0016�o\u0002E\u0001\u0002P�v@Ik`���EF�R���'a�\\m*Dm���w͐�E�)��\u0001qhu��q���\u0013�k�$aa�\u0005Ō\u000f/핀�c��/q���w�9��9�gr\u0014���&�]�\u0001���SA\\�\u001a6\u000b*�\u0014U\\�CC��\u000b�w*�>�L������Eu=rz�T%�{�\u000ewG+��\u0012���\u0007\u0013瓝��\u001e-���,����K)��\u0004\u0015\u0015�\u000e\\���+�\u0013��5a�?�����w@pq44\n�$0�1\u0013\u001a�� �r�\u0006�\u0001{\u0010�����cj�b�%��+_4=Ɨ�?DY\u0013AM�E��\"��\r�F�-\u0017�\u0004p\b���A��2�/��)\u0019a�A-�&I��ۺ\u001c��瀋\u0003\u0015k�s\u0000�/C�`�\u0007��j�/�Z\u0007I\u0016���)1-Q��\u001bE��@�\u000e�+�4�zEN簅K\r����\\�\u000e���k�hO��\u0015�c�^\u0018�\b\u001c]a5Y�s�ԾI^�I��|O��;>��\u0019��\u00109�+�S�Z��~�a�y�!f-�\u0016���ڌ?�o\u00154�5�\u001d�[�.�MrHj�뇣�\u000b�\u000b���\u0013��\u001c#\u001e��4������\r���\"VJz\f\u0016R<���ȱUX��\"�Y�&���k�\u000e\u000f�W7\f?」�g4\\��oy����@\u0001��.�̊�Ġ\u0015%��WCœ-v'8G�״U��\b}\u000b\f�*�\u000f\u0002���i��e\u000f p\u0005E�5\u0003v\u0019d�j��A%�&]�����z0a\u000f�\u00005t��ت\r���M�Pm��>\u001bB���O�6�X\b�\u0019�t��G\u001a�6�G��\u0006Ʀ��=-Q\u001a֚��~`\u0019�>�ͦn3]��\nw�g�\u000f��O���e��~��\u000b*\u0019b�^��`����G5|\u00123�X\u0016�;���\f�C����5���A�\u0004!(o��VK�%⩬\u0002Y_��N����\u000f�.ޛ���Y�̃Fo��ۑ�qG¤%\u001a~�\b\u0003\u0011�\u0003�*\u0018HO\\�܌p\u00140��pH�\u0012�㊞;�'uo��m\u001f��=�l{\u0015?\u0018/�\n�\bA��\t�l�N\r'\u0012�R-)y�F�G�D\u0017^HH\t�\t�R\u0012\u0003\u0012�\u0019���L�>���A\u0019�&q�����C\\l7�\u0014���\u000e��y\u0001�\u0011�d>��^\u00144�\u0013���\u001ak\u0010i�\u001738�E\u000b�DE�A߭�\u000e�\u0016��G|\u0013R�`3�\u0012��H#\u0001�[�\u0015Q�>}\u0004À�²u�<���5�%�/W�\u0001���eE�J\u0017��JJ�����\u0013��\u0011����&u�����j�_p\u0014�ş\u0003�g\"\u001a�\"�=��\u001e\u0002\\�ҩ2\u0010�x>]\u0005�U~�\u0002�2j�\u0016��\u0002����9Q\u0014h�k\u0014k\u001f�GƏ��F�:�]+-s��r�/���z�F�m�\u0003�;�P�?<�#�Es��C�(��\u00052\u0016`����\u0018�7\f7����_�]�\u001c\u0000\u001c[_�-�$��,Rܓ��A3�&�����\\\u0007\u0012�ѹ�t�*9'g�A=#���\t�v|{�Q9':���}���\\��\u001f!�D5c�\u000b�Cʪ�Gͨ�8��+[�����㮼oBC���n5���]\u000e�X�����wJ\u0001�u��gc��U�U��m���:[��\f��\u0016�HA�^�/A��C\u000b3˦\u0001j\u0018C�\r��\u0004u1S�&ZE\u000b�\u001eW^���A�;�\u0012`��^e��k\u0001�����׉������7��\u001a؞7��N�g\u0014LO6/\u000e�]����BWbS7!��ɖ��؜�\u0017.b��*�\u001f>�\u0000\u001fD\u0000��j��|K4B��BO܄.,�f\u000e$��de��5(%\u0018i��=g�\u001dOŰ�k[χ\u001dJ���Nh?�ޓ��A>�&����ʬ��5m���t.+\u0013��}��s���K1H(�\u0016mH,}�̡)�\u0003���]L�\u0012��ֳ97\u0004�\f�Ł�p%0G��\u0013��\u0016-c��=���\u0006,�\u0000&��\u0012�|����-���?�3����\u0013(��%��#8�S&sK\r\u00040�EQg��ưO��2\u001dT\u0014\u001d�@��\u0001o^;�i��C�_��}��r\u0010s6Ķm�\"j�R���\u0001E�q�\t�rD\u0015Tg��ڱ\u0004~i�ފM\u0003��i-$\u0014#y�\u0011�-�\u000b\u0013\u0015d���2�^c�лޚ��f~\u0005�ڡJ��\u0007k��\n�\u000f���\u0019\u000f@!�W9��-�)\u000bp�\u0000\u0013zpj����Y;I}]ʡ�\u00046��\u0019�Qڄ�J�y�B\f\u0014�eʙ߭�8+\u001b\u000e>\\>8a\u0000��y\u001c���!Օv\u0002/F�\u0002\\�8dH�v\u0013&Ǖ�K�D�.�+�翧U\u0002�N�\"��@�9���!'��ޥ�\u000f�%':���ȸt�$\u0003�]��m�3�\u0007�޿�\u0004�H��t�k�\u001b\u0010p�\t��q��f\u0004=9��ESb����\u000fW�\u001c�����\fK\u0004��Za���V���ЬW���\u0001(m\u0005-��\u000e�����*]衃~\u0019�戇A���\u000b=��A�&���ߘp�Iw^�W:��\u0014�\u0011��7\u0017���\t����\\+/�%Y��Re \r[����%�,\u0011嗳��\"zUoR,���j{�H��e;U�È�\u0001�B?�\u001b\bN�:)\u001a�(\u0015SdJn�� -B�]\b==؊R-\u0003�-\u0004�\u0005\u000f�Pt\u0014&5��f80����p<��'c³�\n(��\u0004\u0004|L*c:/_�m9 �r�@��\ty��v1g�\u0014>S,b��W�=�D���[\u0014\u0017S^���$&���')3@<�F2#ӄ���&\u001c\b����8���M\u0006� ���2s�.���\u00145�vo��_\te0\u0019\t!��|F�H�W-P�9��H�ZꄳV��\u0013YM�\u0013�5WYj�rP\u0000�\u0006�h#ye8��\rL4��\u0011�;��i�\u0003�\u000f�!la_���v~��DŽ\u001c\b��bIۅ�vܹG��wTuL\u0011�|Ưwo�4�s3QEQE4�(j}��\u000e�B\u000b�D�p�\\���Ժ�Z��?���\u0007r�xJT.��32�5�VX�F�\u0017dF�c0�\u001f�)��26\u0010�3��!�\u0018;�V�w���Q\u0002\u0000\u0007��\f�\u001bx\u001c~C���\u0002��w��\u0004\u0004�Gj���_�z54��%�:� =��AC�&Հ��S5,A^�xJ���y�\"]�w\u00066i���\u000f~{\u000f�V[��7_s�t�\u0010��I\u0007`�è��#\u0010W\b\u0018�\r�k�Ɛ{\u001b��#\\�Ƌ*��\u0001\u001d���W꡻E~~�\u001c]�����\u0019\u0011\\���X�o\r��Q�\u001b�kB�ơ�\u0000�����u�� \n�O��1�0�\b��\u0014jSW�F&�J\u0003��&-�]\u000e�i��\u0019�Q[��o��-F\u0012bxы��9Ƚ(Iް�͘L;��\u0000��\u0005l��S�d�\u001d�f7&\u001eq�;DZ��K��K\u0019�8��\u0014㲣A9�&�����\u0011��'�e�\u0014Rw�#��d\u0007XR�����hP�A~�\u0014k���Y��iB� �51�\\�y�q�4���,�/�\u001e�Rgf:��-\\Erw��^a�\f�\\�i�P\u000f/�� �:S#Xk.�w\u0002\u001a�r4�ߌ��s\u0018�����(|��.�x�\u0001!���&\u0011�q�z��8oT��Gf[��N\f��ԀK48���\"�\u0000:��X��c��Y\u001c�\"�h\u0016|L\u00001{��\u0002���\u0015hj,�g)�1�ً���\u000b5�̷\r��Û\u0000+O9�\u0015W��\u0014C�`���c���/�pp����Ѱ��Q�P�3^���\u0012\u0001D\u0017\u00025�\u001b���1�\u0017K�t};.[BR�^\u0017\u0000N����\n~����;��A��&���|��ܽ�^\u0006��d\u000e�f�Տ�\"r����v\f\u0005�\u0004�J|\u0004u%'c�}F�{\u001d\u0007�Q�E�,�����e\u00142\bw�5Lx�J\\��J�\u001e~/�E�J��ҕ�\f�.GW;8E��Y��?@���D�e��W]����bd���y��\f�Uq��\u0015���\u0014\u0019�yX�Y���\u001b�x�\u000eu��W�Xd\u000en\u0015�Ys�����\u0013XY��sy68_pf�dF\t\u0000/ \u001a�ㆰ�%rO����\u0015(V\u0011�kp�ˋ�\b[w�\u0002s��+�K���\u0002Q�\u0006\u0017PMk\b\u0001;���\u0002e�}�����o�E,�)\u001b\u0012�\u0000h\u0012\u001fC�u\"a��'\u0011�Aʁ\u0000\u0000��|����=�\u001b��r�\u000f�\u001c\f!����\f��`��{P��h\t}\b_[���k�́����n�B�\u0001\u0001����=y_\u000f\r\u0000b�y\"K\u0003�?\u0010�ڌ��\u00153��.��M4����Eih��BK�\u001a7>�\u001b\t�:?�v��zIfa\u001c\u0013,69mA\fߦ \b\u000e\u0013t�kW''�s�8H.\u0003l���\n��ǒ\"�\u0003�������\u0007T����4�\u001c�\u0000��G�\u00129�Z@���������\t\t����\u0017����ߠ�^y\u0012�\u000b_F�%�LN�i\t<\t�{\u0013��c�sA��\u0000�I�P®Q�\u000bC\u0005��1��>\u0000Q�%�ar��T\u0000�=�0�����˧޽���:{���Z\n\u0018��5uQߙ�\u001f\u0005��'������3+�\r��,�%�V�\u0000B\u0002>QO\u0001\u0017�\b\u0000\u0018?\r��HtdO��l��8Bt-\u001f����$|q\u001b�o\bQM�%�Wl./��d����^t�T�I�5\f]F%����d�b�\u000f��a�m�M\u000fȃ�\u0013J@;VoP��(#S������+rB�m�\u0012��\u001a��+mg�+$�@��\u0000\u0014���i���|A\u0013a��a���t�')(���\u000f\n_�e9\u0003\u0013m�f���k�;�}D���\u001d\u001b�\\i߫��j\"//���A�\u0004��\u0017��ʼn�r\u001fe���RO\u0004{\n�|* \u0010��>�Cr5�gjyi,�6K\u001f* `9��/\f\u001c������\u001fa��j�H��.y7\u0005�~W���^y���k@=J\r\u000f�(��|o\u0016�*\u0005ۀ{zfK��K\t��\u0014��T)��M�%�\r�\u0015O�>QK�\u0005\u0019Ut�\"hz�y(\u001e��\u0006|�ɰS�\u001d\u001fé@������%�{�jMb�l�A\u0012�\u0000(��۹׆&�\"yB��S�cp'�b�P̳va��3\u001f��v�wR���C�oJX�\u0010U���\u001eh^6�]�=�s�0S��\u001dx���`�o�oy:�,�y\u0017\u0015\u001cz�\u0018�_KX7��/3��FUG��8���@�P��\u0014>V@���۹����\u0013D���x6���OD����*\u0017,Wb�$\\;)\"B�2���|�g�N\b��DF�yL; �\u001d�\\��2�֠2�����\u001c$���\\]ԭ�$��j\u0014\u0018�1\u0012��1U��c\u0010�i�U~��\u001fƄ�l/��O#q!j\u0001�mb�X\u000f\u0016(i�\u0016gn�lݿ��*\u0015�bzl�@�\u0000<��M4*\u0012���\bR\u000bK���Z�j�\u001dTuH��=�\u0018�u|��\u0002�\u0003ݵl�{�'/�R�QRF���\u000f�Jy7d\u0002mC#o:�`����^��뮹'��i�YQ�\u001d\u000e\u0003��2^��w\u0002�Ѱ\u0011�T+��u���E�]�\\y�BES�t�/\u0014k��\u0004��]�@�ぞ�M�\u0017\u000b:�tq=`˞�\u001c���0�m�偪�\rU0�\u0007˱��뭙��\u0007�UP��\u001b�7҉\u000bf>6�d�8�n(�;��v2\u000e�Є�\u001f�F�h =[��@�\u0000P��L�0\n\\�A`/��y@���K�q���X�$\u0014�\u0002X���E��~7#�+4�8�����'ӄ�j��'7�3\u0002��.Q���\u001b�;~��9O)\u0005�l�\u0014\u001b��Y\u0015~\u0017ȓV��-�\u0012\u0016Av;���q��d�B��\u001e�m@���\u001f81�H\u0019\u001c�v���S�\u001f�̈Gվ��h�S�\u0012\u0005��X\u0005�[��C(�hz�+f����,Ap�qHx�\u0015ɖ �-N��]Cʅ��?Y��iKb�$J\u001es\u001d盶\u001d>��\u0007ԛ�A/�\u0000d��L�舒W�:��f���\"G�p̼�\u001dϊ�V�07�23��'g��d���w�OE@\u0005���\u001f\n�\bؕ�]o��~\\�H��7��k\b��+��|\u000b�\f\u001f[�/\\\u0001dI����S�\u0006,\u0019\u0004l\u0019>���|Jc\u0001z�\u000b�\u0010�+Y+�e�m\"�5Y*��ދ\u0010�\u001a�\u0004U�*���Q��Ճ ���ZG4�R��6�:-�\u000f\"�\"_x�:�T���=��[���\u000e�\u0007��Փ��Py�Y�\f�&%\"XW\t\u000b\u0011!K���B�פ5\u000ei�,�\u001f��Jh\u0007[h )����ɏ:\u0014��\u0011��{o�~m�%�\u000f�>\u001c[kO襫\rl��\u0004L��6m�*`�6i��K��z�kH�#�AG�\u0000x��۷/x�K�p�lD�r�\u0002��++r��&��HHup)�\u0006s\u0001'��P��!\u0012\r#�V���I#�X�mlqʤg\u0006�-�P\f�W����\rF��\u0000���\u000f�?�\u0017�\u0005�l\b�g�MF\u0013\u0000EU۾�;\u001cGPP\u0012�ٲJ��\u001dgta):��\u001fD`�ꃅ[�l�A!�o��\u0014\u0005?I,�+�8\u001e�h6���\u0006,WN�CN�`��\b���B����Oh�y��\fX\u0011{��ZE�|8�V��t����v�o:��|'�T*4��N\r��v\u0018�)լ�hT��\u0001�\u0004�fdA�q�\u001b+O�.��)�5�ӌ/Sa�u��#Y��*ut&^c3��#ֶ��W\u0015sy�ØI�\f�d�\u0019qHL��Cq�Ժ۾�=\u0019�LlS~�A1�\u0000���MU��A��\n4\u0016�\u0004��f�j\u001b�1\t�����~f\u0002��y:\u0004����D���wi>\u0017�yŨa�L���\u0000'\u001fZ~���9\r ��g�\b\t͡R8V\u0000r[�����}\u001fuš�\\]t���0�\u0001�\u0018\u001c��R4��+�;[O\f�\u0017k/#\u0010�����\u001f�@X�-�ë����J��V�{\n����6��SڽSq\f\u00151�\u0012&,\u000e��9\u001e�Ԇ�R�WW�Ixճ�X�E\u0015�\u0006#�Xq��Ol�ja\u0014a࠮���h����zp�s\u0019K�QꪊB'؁ea\u000b�[N���-��\rf��B_\u0012�6Zq�Pe\u0016\u0014hc��'\b5ՙi�j乱\u0017\u001bY\u001c�/\n+\u0013�A#�\u0000���L�\u0000LjF�P��\u0002�}s�6�\u0002x���o��\f�\u0016􅽉�ޥ�#�˲��>��\u001b\tn|�=�s�K0�FUDa�x��<�@%�ƿ��H�\n�\u0018�yu\u001f��;n��\u0001=�hɹ�\u000f;����ꬔ^ \n&%�ZC8�{\nK���\u0004\u0003�-ϓ\r@�N��\u0000�?��_\u000bs�\\\"\u000ec=\u0007�\u0019\u0012`�Y�6kIIG���\u0000\u000e=!\u0005�Px��_���v��\u0015�V�%�(��f�\u0012�l���8qe|1�k��dF�lN+ؕM�h��JOPĸ-\u001fu_N\u0012q)><`j��k��A\t�\u0000���1����\u0013J�V�R\u001c\u001b:�k\u001ar!�\u0006��\u0014A���\u0001+�K�\u0003�����\u0012J?�\f�\r���*'��=#���QD�+Wi�$\u001c����\r�����C�7`�\u000bׯ8�N�5�a\u000b�����\u0006I�\u001coT{?\u001c\u0004\u000fɫI�Y�Q/*sҵU]r\f��iT~ٕ!��1�\b�c��`�0故^��KZ�$�*�\u0006���Ռ's#�{C�vz�@&�\u001e;��6_ݜ���oۅ�p[v�A#�\u0000Ȁ��b~\u001c�ݷ]�\r\\,�r�̪/\u0001�1����@����\tH��V�@��-�w��\u0010\b]\\�-\u001e$��?z6g6\u0014΢��\u0013�J�W\f\n��\u0017\r�Z\u001a\u0014�����mR˩���\u000b�\u000e2{���=(�cSUYp��\f�M�5%Aб|mN]\u0005�{����v�\b�`�b�\u0002���q��蝽\u0017,\u001a��S�5�A+�\u0000܀��b\u0006Ʉ����;BQ���2�������\u0004��\u000f�Y�j:���\r�b��� �\u0019�^�\u0001�\u001e��?\u0010v|a���2�N:���g���A�G\u0011}=�$��+�L��q|�\u0001\u0014$��`l��ӽ\u0002Śד���bP�ʘ���%TX8�wٻV�,�\u0001�({>Ւ)ణ���\u0000��b\u00048}2\u0012]H,)~\"\u0003\t�%���eʛ�:\u0019�c�s�\r\f�\u0016W1K�������>јx�_��g�\u0010>�\u0002[\u0003\u001c�4΋�c&o\u0001v��+�[�I�\"����\u0013x�^���].A\"\r\u001c�sp�?H\n\u0004AG �50�\u0005\u0007I�ѕ\u0018*�A׵\u0002�\u0010�{c��\u0001�@�hwd�-��3�A?�\u0000����s��\b{�V��=νl����\\<_���v���\\���g�}@�\fs~�=�n3\u0017�8'\u0000\u0006�9=XgTn���\u000b�M��+��}\u0014�\u000e߹+�N��Bm�wN\f\u0001��Z�3���r��\u00177p)>�3�/7\u00034hр������������\u0012�Z�&�^�\u0010�\u0014�{e\u0001�cફ����\u0001 m�j�>H:\u00076��1�����\u0004FȬKr*�>�:\u0005��~\u001b���t��~�D;Q|��\u0005Qv\r>\u0015����][\brn��\b�QڄA\n'8Ԉ\u00157�1�e5�\t��������b�~�cH$X�9\u001a��xBI6\u0016�?�\u0014L7SI\u001a�$A��m\u0014\u0018�1\r?Q�z����\u0017@Jl\u001b�����Hu0#b�3�AN�\u0001\u0004��M1�$;\u0011\\�\u001a����y��\b���F�ɱ�,�Ts˶�q�\u0015���/\u001ai��匠\u000f\u0000�h/\u0007X#;g�������rOo����(4r�\u0005\u0005�\u0011]��\u0011�\\4>�(/�3>\u0014\u001b�y�\u0012�DGT�<\f���z*�M\u000e9��]#�%9�Ҭ��\u000eY�݅\u001a\u000elΎ�$v�c.'�+`w�\u0015�\u0012Db�b�з�f�?a�h]\u0005󺂦��/%�&��*R�KX俆�I�U?�;��i4͋���x8\f�U�i�\u0013�U���\u0007dȍ,��\u001e}�\u0002Q������ե��n�l&\u0017T���wxOB��*���\r\u001bh7\u000f�o�\u0000D\u001b�\n��U�u>~���}\u0019��!V���\u0004��IT/��Cw�ȷ�˦d�.�8n�r��AA�\u0001\u0018���\f�\u0007%;����k�{�;|�c�RqH�=��\\Q�}K\u001e��\u001d�����[ݢ\u000f��\u001c c�\u001c��\\��\u001e�#��\rN���\u001e�n\u0015���\n�z�(�|���T�l9�s�j�s\\��\b\u0013�����v�y���\u0001B�L�A3\b-�hi���Bdc[}\u000eֱ�\u0010�Tk-�V\u0000Ӏ*��Dy�1�݌�g��9�@Ұ�\\eb�ש���?���%Ri�%� �\u0011\u001b�C�]\b׸�v\u001d�m�O\u0011�ϼ<\u0016�v����+`��^�$��\"U\u000f\u001d\u0000}���r�\u0017R��z硯X�C���\f�O\u0015\r��X���\f?���z�_\u0018�2\n�Dy�<_<�T�\u0003��d�t�0'w<\f�������\u0005�0�]?t��\u00062�A>�\u0001,���\u0010\u001cP�Y��\u0018$\u0016Ǡ)�O�R�`���0R�֓\u001cJb�G�oh\u000b5ՀZ3]i���+�ğ3�p\u0004�*XzH�Z��\r�\u00004�m\f�/{&��:M�ީ]��H\\��q�\u0005�\u0014�]�۳'���,�\u0002��w�\u0013�BSq\u0010VZ\u000e9\u0004f�+��;?i��g �1û+\u000b&��`��\taka+>T��:�m�&��e��]��\u000f�o��#��~�\fwۊ�C>�L��\u00069�1F|P�n�p¶$�u�A�O�\u001cx?�\u0002f\b#]�.G�H!��\u0006\u0018_\t��\u0003|˵���`z2*!��UA��`D9�]�s��}\u0014\u0013�I;?�#?P�dž\u0012!\u0004PJ\u000f���s)q/��w�p\\�Y2\u001b \u0002�E\u0013�||\u000b�a�&9�A8�\u0001@���ɪ\"\bx\u000e��7�\u0003���̒[�\u000b���u�J�fH٩r�B���f���k�\u0006\u001d�|L<,��1(�H�)�CɅ\u001fn������\u0017k���ö,����Ӧ�\u0012&K�\u0001�sZ�?U�����\u0018�\b���I>��ȬY�i�&\u0001Uhǀ\u0019��!���\u00171�m�\f;5�F]B\u0010N���N�Aق=\u001ev\u0014٭I�X�����\nlb�\u001c�CᯁX8H�=����[\u0017\u001aӐU�>r� y3��@�AL����hZ\"껤��HdG�ٓ[\u0001��O��\u001b~8�\u0014Տ���G�C�Ae�\u0001T���\f�����!�'S]j��Ia��ְ�Œ�6p+U\u0010\u000f�W��Oݗ�^b\u0012��\u0007�q�W\u0001\u0010\f�ؒ�\u0011�����W�R70�Ј�A;U����_5�l\u0011\u00170��h%�Y\u00186B�\r��\b�\\�`W�n�GoW*�E\u0011瀫��]y���y\u0004���9��Z7;4�B�E`��ZL~\u0004\u0001�|~B�C䘕T�=e��\u0011�:�@,�/R�Fh\u001b\u0006ܹG\u0001��\u000e�n�3�]״�c�r��5���?\u001a6\u001b\u001f.�����u\u0005�����xRXk�\u001c\u0010gS�^���\u0001�-�s���\t.��]_˥\u0014��`���QΙm��)ZėR\u001aݤ��d\u0001���n�\u0006K>�O�\u0006�1��I�dͭU5zЎXm���\u001f;�Xgs�@�\u0000� :\u00125�\u0013�$�1�\u0005�L��@����G˱^X�\u000fg�p��r7f�(I\u0007J��d�8�N_�\u0006�^\u0015>4��/�q�$(�Ns\u0010t`�\u0016`�\u001cTV\u001c\\��1�RE\u0011�6!�\"�&�n�/Ul�P��2���?�����S���\u0019����\u0001\u00175\n��V�LE��\u0014=w���\u0012��_�۫��m��\u0017�ޙ�1\u0013�.s�p;\r!ҩ\u0007�,��\u001c8hQ\u0005\u001c�m�3���e~Jq��\u0016�F�J���Hy��Ͷ@�AV�\u0001|���}��<#��\u000b���[���xhn���m����%���?��4R@�\u0014}H��ǭ\fd*��\u001d�‰�4�\u0003�cו]��%/���\u001f�'��S�e\u0004H��瑢Z\u0016hq衱�h^\nH�<���`���|F��b��\"�\u00195�Aa\b�+'>Ƶ\\�\t��y���*��\u0000�\u001d{=\u001b5�\u000b\u0013�a�\u000f\u0015\t>��=�~����:2)[\fu͔Ub\u001d܀��a$k��Ɯ�N�vʅ\u0000ખ�)w�;�9���i�}���q��!�D~\u0017y�\u001f����W�\\���\u0011f�@W�O$hF��9l\"\u001b��lJ���`��\u000f\u001b�ߝ��\f\t|\u001a\nY&�2�\u0006�{:+�\\\u000e�~f᎜(\u0001�T��\u0004��g�n��8ݦ�e���!\u0019x��ט!�����B��C�AN�\u0001����\u0017\u0007��\u0010�ڊO�@3q͎GY\u0010f��LY5\u0001�Gݱ�\u0016\u001fO���b�\f�\u0019P\u0000{\u0016�+���\u001dɴEyRY\u001e�ņ��$Ο\u0016\u0007\u0019���\u0007*\u001c��=�*\u0018�R�n�\u0005���eG����4����/6��*���@H1��\u000e����\u000b\u0001N��rK>\u0017W��2`u�\t;̡A�\u000e\u0018ɼ�e#+�e)�ɟx�\u0012����u\u001d&\"�4t��r��WV,u\u0015́��'�Z\u0012�r+����\u000e�b\u000b�=N�\u0005gB]���E�.�s�݀�\u0000�¾m��٤�\u0018�������A:j�fU�\u001fĄ;Y�\u0005\u001a�ՠ4���z�ba&q\u0016ܐ�%�\u0003\u0015v\b�tU�m�w�E���k)V��(\u001f\u0007��Hѻ;�(ɑ�.P�@\u0002-�\f̦\u0013*c|L5�jFY�A�\u0001���{\u0017�.G�\\�/#\u0007~�\u0005ۦ(��\u0001�Ќ\u0007J\u000f\"��~ao�b*ȯrP�C!�̞�\u0005�dk>�5w\\_S4ƒ(&��|Q�\u0013��I�g[\n]\u0010���xC�X�\u0017ܨ<1�\u001e;|��T�S��4�����}��������\u0003�.�u/�%�����\u0004'�1'��������\t�\"iOn�\u000e\u0017ӵ\u000e�U\u0005\"�\u0005g�%ӌᩄ/\u000bI���iS%\u0007\n�]�.@��-\u0007#�iI�\u0000\u0000l:����(�\u0005��\u0010y\u001a%~c\u001f�\u0003{6[�v����\u0007Z'0T��N\u0013�����Nw����\u000e\u0006�kAhe0\fb�2�PN\u0015\u001e}K�ڞ\u0012�m���\u0016\u000eN&1�̾I�\u001e�F\u0013qi�|�A{\bF^p��8�\u0007=��͡���I�#�\u0005\u0002�����o4��\u0006Ȍ�ˌ�\u0016�w\u0002�[ÿ!�Gi��4�\u001e�-��tf��A3)\u0019\bR��\u00181�ٳ���\u0005_G���OWk�\u0015��T��gBF\u0018�\u0012\u0000T�2f:�сvs\r��@�5��r\u0000t����M����\u0013�\u000b�\t��n�]�Cc�Ԙ\nZ+�Ҷq\u0010ٛ�o4-\u001a�g�BP�\u001fh��uEJ\u0011��\u0019��\u001ch�j.�A��\u0001����>\u0019\u0005�����V`Dƥ\u0005\u001e�/�Y͸7iA\u0011\u0016aQ\u0004I��\u000b?^N'��͵7(�-D'Q��a5�e�ώ���r$����|�\u0007���ሀ�\b�$˼3G�\u001eҪ���j\r7�a)�؀���9�s��4��2�3\"$��(��}�3s�2\u001b8\u0006\u001d\u0004~�˔�\r(�J.\u001dC�e�v���-o��ֺ�\u0010�`4�ǰ���n�]M}����v6���\u000eGA\u0006q\u0010�\u0006�q��ʏ8�,.\f���뀥\u0001ڴ�/{��A\u0002R��wQ���I�\u0007pj�6�O�Tk���\fǕ��k\u001b��gbs�y\u0013x��R���b�]A�;.Ka@:y\u0005\tt\\Ťc��E�\\\u0005���{�nw�7�o|po�ȕ\u0010�\u0002|��݈eS��^w �Vޑ��i�ᑳ�O\u0016\u0014j�x�\t[6��\b�xn\n\"1\u0017�|@��b`��\u000f��\u000f8,2��\u000e�7��\f�6�7��V\u0006�]\u001c�\u0004\f�*\u001b��kݐ\u0012)\"���D�md_1���d>Yq��$�Ō�6{\n\u0003\u0013\\\u0019��I�<К�\u0010�\fs64ܸ܆�k�*\u0015�\n�/���-��55���\\�}�\u0002BȣB\u001e�\u0001����\f����\u000f�op�\u0002���\u0014+pMPQI\u0011;6W��n<\u0006>תoYB�E�\u0011\u0000�\u0016,�߼�!�2_�v�3\u0001�L���(�}�\u001fU{Q҈N}1�g�\u0011����`]\u001eU@\u001aq&�J�Ci�7\u000f[�\t�\u0003PY\\�̞���\u0000�\u0005\u0010=\"���V�q\u001e\u0012����iMqqUO��\u001b�!�Mft�7�\f��S~MMV\u001a�Ͷ��=яoWYx\r*c4=�o�L\u0006�<��z@�L\"�\"\u000b�e-\u001c#�wA2\u0010�\u0007A�>���*��͚l\u001bAo\u00040a�۱n\u00035����8\u0005@�ROL��f$�p֜��\u0005�}&���#�Ga_�n�c:��LF��~��8G�ΣB\u0001�\u0001���I��\n�Z�.*�࡮�4�\u0006�D�o��B˳_�K��\u0003��>��z���>qϮ�4�\r��\\Uy8�{���$��*���/s߷E��r��nڄߠ\u0002X�U/\u001fS:��E5���z���T�̚�{�\u0015ؔF\u0010r>R=�N\u001f�{/�{>�3\u001e5\u0000x\u000b8��t8�u(�E\"�\u0006��N�X��3�\\�H �\u000bU9\u0001��,��\u0018���0�v�\t\u0010���\u001a\u001f\u0000\"I{tb\u001e[M޳c�\u0011-%�\u001cz���\u0015]QG�R�\"�uv\u0004@W�����?\u001e'�%\u0002Mu���H ��tWm�WO��\u0015�Z�a�S��9t\u001f�\u0006$Cv�oT�4�e�*x?W�I�X�齆���[��\u0007�`�oD�E�:p6����=Ș��v���-�\u0015��\f���6�V��Q�'\u001ai�����}�Q�i\u0018��?\u0010C�9��z�\u001d���\n�ȧ!�w.\u0001\u0013)60\\\"�Bo0�'�\u0003V�E!�\u0010��Ӻ�\u0007�)�S�#�'�8\u0003!��\u0005�o��\u0004v��w&M�\u0005B�N��A&�\u0002\b��24\u0014\u0018���U��`co�|%�\u0004�.�o�J��/^��\u001bT��\u001c�8�������\u0011;�}���w�\u0000`j~��d@b\f�-\u0016<�����\u0019.0\u0010f�(#d�~�Z�-��C{��lG��$��\u0011kO(�1��\u0015!j�\t�\u0010���\f\u001eг�n)74\u001e7���Q���$�H�8\u0019\"\u0007\u0001\u000b���\u001c<�_r�e���V-�8ɮ�\n�\u0000��Z����-|7\r�ačX�\u001e�AR�e�w\u0000\u0014w�)�x\u0001�C1R\u0019|�\f\u00120Z\u000eb�abCp�\u0011]Ua[\t�?z�CA�ϩ�^�JR=击�\b*�+�P�\u000e˩�O�\u000bわ�\u000bY3�.T����I��\u0017��=\tB���A#�\u0002\u001c��M'P�\u000f�\u0019!4�q��{�\u000f猄�%.��\u0007RxF\n�E\u0015�\u0011$\u00061��6?\u0012g�M���\u0015\u0015�]�n�Z��t\u0002n֟�\n��\u0011�Cc����1� O�[\u0007�\u0018O����i{z�䋤%�\u0012�[�t���9R�\fÛbR��\u001aE�����v�y��N��\u0011�Ux\u0014r��%���[@�l���w_�h�<�!i\u0007n��bg�>F\u001c����ϑ�k�\"P�b�mg�v� ��F��f�Oz�\u00020�\u0000\u0011�\u0018f\u0012}\u00148\u0010�X}P��'�M�L���\u0004\u0006�n�3B�\u0019���\nJ�\u0010\u0007��Pa���v\u0016\u0007ssP\u0002\"�>��u����r@�(��aӷ�\u001dm�A\u0010�\u00020��M�\u0001s��\u0015�4�#I'1�W��$ܤm�4�k�1�MO\u00170n��z\"�]�\u0010L�5o�1ʻRw\u0018��DG�j��O�5G�3�0��\u00043\u00074@9p�����*�\u0016��%���\\\u0014n���$�|�ܖ&s�-��x���^��|\n���\f�a�'��\u0000\r�סS��\u0017q.���Q\u0001��\u000b�b��Ԭ�#�����Ox6]rU�+�n{F8��\u0005��|\u0019�\u000b�#���SU\u0006���\u0014\u001b �6�[\u000e/I�8�\u001c�\u0013�V�(�T@\u001f�\u0014���\"�\u0000P�\u0004-�<^�c3q9r���,�\u0006T�\u0019�*@I�X����:� �AT�\u0002D���k�R\u0003��Ia\u001b����:?���x�k\u0014ȴ\u0015���G��:��V%\u001dP�\u0000m��{dٴ�\u0010\u0014x����A�FvM�,�f�}ź0c�d��wvT�D>|��b\n�_�-�Wŋ7�����LC,g\u0007�����',^\u0019���U�+!�?\u0007Iz��=��,Ʊ�-\u0005��l�\bj'\u0016����\u0017�\n���H�W(�Z���P���\u001e_�������u���ǝ�?��飮�m\f;]gܤ\u0014C���c�Ƭˈls4g���?\tC�>��t�\n=�R`\u0012D���$��\r/HB��F\r\u0014����`�V-\u00150�9z+V,)��D�\u0006'S�\u000b��130�ܾBϬ�\u001b��߹�e\u0014\u0016\u001d���J?��S|r��$�~���]�I\u0016Gܟ������O�W�AE�\u0002X����;\u0015\u0014��wE�T�a��3.�>��5�_�J��V�濲�\u0011�\r�FY|b�~]���wI\u0018\u0001\u000f�}qY\u0000�î�oN�&�6H~t�\f;TB\u0004\r�i�콍Tu�Lx��L_v:�}��ӷ��\u001f���Ԓ_�\u0006t��\u0016>t,\b醻;��\u0013�/�\u0012��ș&TuW\u0003�\f&��]x�J��\u0010`\b��\u0019l�𕖩�P�d\u0004wy�o(Jz5��j�o��|&\u001a��_\u0007�~��\u000ekP��<�k5-�\u0006;�9!������\u00134�8y\u000f`C��~��0�[���T��q�CW-��b&e���~ML�.�r[->σ�)\u0018��.��S�M\n�\u0010��(Fu���BS�!\u001c�z�۪I4�h�JI�/�e�m}Y�A5�\u0002l���bq�\t@�iup�\u0015�8�۴S�5������\t��Oh�ԳX\u0015[��V\u0017l\u000bs\u0001�dL����Ln���\u001foHh\n�\u001f0f���=\u0002�3x�Ԅ�#���-��\u0010�he䞱���12\f\u0014�J� ��=o���p\u0019��$E?9{�\u0001�m��\"M.�����i�����\u000bp1`l�+k�B��n\u00001�)�!S�\u0002�����:n�\u0000��`�PY!���\f�k�ʬ\t!\u0000G����Y�O��a��\u0010�\u0010�'��T'>��vz΀�\u001d�����\u00162��\u000b�=��\"w���q��\u0015ж�s�^\u0001\u000eW�f+V����x^OA\u000f-�6��,#ʭ\u001f1�{��w÷\u0003]����\f��\u00143\u0001Zm[�AC�\u0002����cƾ\u0002���b�\u0016fx9\u001evXQ\u000f�\u001c���ٹ!\"���U�\u0013\u0004\u0006v���+dS&l�9\u000f\u001d(s�\tJ<�F%s%\u0005Qá��Q�\u0014\u0019�G��x�⽼�E�}o�Q�\u000e\u0000FCMB\u0000�ֱ�\f�[Q�e66�:�5�����[�����c]���Ri�Ux#\u0017���2�\u001d�hl�I�ǰӇp`�T��9$🡒��K�N��T3(E9\u0011^�<�G\u0016e�\u0003��_�AR�K\u0018�ё�l\"�H��#X���i� \u0019Dߩ�Ф�\u0019����`��F�yn�MJ�\u000b��9���,����k8��=\rE&�vߓ��O\u0001y��\u0018��\f\u001a/m��\u001eM�\u0002�\u0001W�9�O����\u001bE�\u001cI��Sԑ\\�A/�\u0002����c��\u0000\u0013\t�-\u000f������ԫ���{�^�W�[)R\r=�}\u0015`ז���W����\u0016^��_�\u0005@?j��E\u001f%b�}P1�\u000b�COr���\u0000�\u0000��C�q�\u001dW�vqF\f+U����#2\b������D\u0017\\݆HP��z\u0019A��\u0003�\u000f\u001a��M\u0018'.\u000b֔\u0016\u0013&Rd�\u0006�x\u000f\u0018�A�\u0004>\u0012ܓ\t�\u0015��\tjS9�.�#�U�/Ǜ)�Zu�$\u0012��Ѡ��ن']��ΐ8�Bb\u001a>'y�C'�\u000f����o��K㈭w��p�\u0001^�A7�\u0002���1�\u001e\"rU��-��\u0003���6�:\r���\u000bn�T+\u0003�_\u0006\u0011dzҘ���/�*0��>�?\u0002���q�c�e\u0003\u0016��\u0001v�NY9;E#�z\u0007�b.ߝ\u0006&��T^�?8\u001c��\u000b\u0007���&P����\u0018��Tܗ�\u0013H��a#�u��H�K3�k�|\n+��5�;\u0007\u0001\u0014�\\M8�aU#_G��눃.)S#���}��\\��rR̂�@=�q���L���Ǹ�\n�à$��T#\u0006���\u0012쫚83���\u0001̴+�d%�1�\u0014ymX��J\u001c�������c��I���/�\u0012(�Tznm�\"�\u000f��\u001ce���O�\"����\u0010e����D�#>�_�?\u001b�� \u001d�\b�\u000b\u0015z�B��A\u0015�\u0002Ѐ�L�߭9��\u0001��T\u0013�\u0010?���\"L\u0010��7?\u0016��\\j�\u0001ˏ�b$\u0001>�bo�9��\u001f\u0014�9�M?�9Y\u000e\u000e3N\u0000���?,�s�4���~�\b7��(�!�j\u001f2�\u0005�����\u0017/�+hJ1,$t�3����#;�~+}�M����4�\u0010\u000f\u000e_�t5\u001e����;]�^�D���\u0002f���u�C�\u0004�t,��f��o\ntSDcLurL�#�\u0002\\/T����I��l(���*��A �\u0002���\u001fO&��:\u0010*��\u0003\u0004X�����K�ۚ\u0014\\@&v�Qx|�\u0006\f�\u000e\u000b�2beů�\u0000�FC���3�c}\u0011��y:d�@�$>�8�/�!�\u001cJ��\u0010qsMS�Z\\7�\u001de�\u000e�ʑ�/X\u0004F\u0016r���ܐ����:���rOn\u0007�[*W��[z�7���\u001f���\u0019�\u0016G\u001doKՏ�[��#f���\u001b�$&�t��\u0004�}\")U�A\u001b�\u0002���Xɶ��\u0006*v��|�q���� ���*�\\=\u0007y�{a\u001b�\n*~�>���:�00L�Q�������@������\\,�\u0018�嫀����>�.eB�\u0006\u0016\u001e+ �\u001d'�6�M��\u000e��:�ly\u0012\n��;���E0\"�\u0015�\b8w�f\ri�\\9\u0018�\u001d<��\u0005�� t����o'ؙl�\u00063\u001b\\��\u0015�j�[��\u0013�u��\b�,�[Rn���*�.�F�\u001f\r�ŽkI�\u0019�\u001e�Y�\u0014���w�v\u001d��$^�sM~/p\u0007²m~\u0013^\u000f̚-���#�6��h9�)\u0002�)�R%�ϵ7�U�\u0005gn�®��3�m}���\\\u0015�[�\u0015��H��A\r�\u0003\f���\u0015!n�+�2�\u001a�\\:tQO�\u0014e��\"�k\"��|��\f��j�\u0003�p\u001f���T7\u0013D�T]�K�\u0013mH*��\u0013��\u001f��Kt�Zc���{*b���vEP\u0010�\u0006c2�/�Eu|\u00100\f\u0010ǡg�\u0004�%�:E����\f���\u001d�\u0006�YI�$�\u001e�$��1��p{������p�~<�sg�=��2K|\u0017\r\u0001�i,���\f\u001e�\u000b\u0002'�Џ�t[\r\t\u001f\u0016ۯ��|��w80����:\u0006�m#�皊(���ؼ �@3�\u0019�z�\u001b�R?xQz��\u0016~jqrۮ~+�g·�G��\f!R�)��T��?n\u001c�y�A\u001f�\u0003 ���\fYF�(��\u0006��ASX�\t?S�\u0019ę��O���J]�к\u0002\b\u0013_\u001f�J�Y�D�f%j�x2�=��y\u0007�Hy�@�\\��h�L>�gx\u001b��V��@9穥\u0004uL��z��L����\u0004Ʒ�)�,uq8\u0007�TG\u0003����\t��<�#J�?T\u0013�,\u0016\u0013J\u0018�\u001b��ԣ�L\" \u001b`�\u0013��}�m\u0010���F�08L��ԉ\u0010�'me2*��3��&'���ݚ�>C\f�\u0010\u0000�����\u001c�6v\u0003@?vu����\r�\u0004u����]N�>R�\u0019������k�]�{i���\u001b�?�17���\u0017�~\u0000��p�ˡ�';\u001e��%�ѱ�X�QZ��!T��A\u000f�\u00034���\u000e\u001d{\u0017��}\t�F�\u00055\u000f�!i�\u0002-�q�@��`\u0000���r]£P��\u000eֳ0\u001b���`�G��3\u0005�0¤�� ���Yֺ4j�v|Ƭ�J\\+��^�ו����<�=��2���]z\u0004G\u0003\b������Y티d\u000f�y�~x\u0004�N\u001a���P�FS;\u001fz�y{<�\u0018\u0016%�\bB\u0002ά9�q�xT5.����׷��HaD\b\"\u000e\u000e�k��\u0005\u0014:}\u0007\u0003E�s\u0001\u0012�?��\u0001=2��\u0019A���!J��qt~�.Nx�����`��9\u0000�%�v~\u0011\u000bTT��A'�\u0003H����\u0004�X��l�%`�0#\u001eZc4X8\u0001�\"D\u0013�V��� ���\u001dݚ�X���\"r;���yn!�\u0015���~p�Ŭ�ij�\u0005M�Rල���\u0016g�w�\u0011�b\r=��}�\u001f�Ƌ‘~�5�H�\u0011W-�\u0003�y_�!�\u0016�]B\r��4\u0005I�m*�t�O^�%J5v\n3��\u0014�\t:ܕ�>U����j���\u0015��1YHHO�*���$\t���6�{�\u0002\u0014ΒR�\"m\"N���y�ٕ��ڐ���K�\u0015>@\b>ߎ�\u000e�Ng\u001cz�� ���v�h܆�WN���wm\u0001��V�����<,��I\u0001�Z\u0011l���n\n\u001c�f�@Ȉ7\u0007�q�A��\u0011\u000f�������q��A��zc��;��\\���\b��\u0000\u001c�F|\u001d�,\u0002�xש�\u000e\u0006,�\u0003�\u0006��f�\u000f\u0000��l�C$�/�z~�!0\u0016��d�J@��\u000b\f�-�l3�?���\u0018�\n����@\u001f���|��\u0010��0�i��@��f��A\b�\u0003�����\r�tD���\u0005�\u0017\u0019+��\u0015dgG\u0005�w\u0018AMt�r�\u0013�L�\u0011]B���\u0004�jֱٗ��~����A\u0016�\u0003Ԁ���\u0006�nZ�\u001f�\u001a��\u0000ʭ�A\u000e�@L\"\u0018�[\u0000t�-`W-\u000b���!k�b>�>߅M��tȑ˅�a\\0\u0012\u0003�V%�F\u0015\u0019X\u0004��6��\u001d\u000b�6�E�\u001c��}e������?�D����n��r\u001f8@�ܺ\rY�.��\u0019��ea�p\u0017�@��C�\u0016�o���\u001f���=�WX�\\�\u0016�e��(�\u000b@\u0003J��\u0005�S\u0014���\u0018\u0007Ql����J^=�$b=%��Xl\r\u0001Q�#��&\r�b\u0006�;�$;.7r\u0002�n���K\u0013Iu7�\\L� �oM\u0017\fKj�۲\u0014~�����74���u\u000f�6�K�$��\u0013$wGX�0\u0002�\u0014�x�晣A!�\u0003���ـ5W�Fghe\u0017<��[f��\u0004u\\꭯oa؏l���6@\u001a���8�\rx�}��;(��P.\n�d7y�J3�(Ŀ1����z�ә/dW�\u0004?�[\u0005[�\u0011�z\u001d$1\u0018�A(�`�\u0001@\\#���5\u0004��wy^�\u001f�\u0014\n�P�up2�[bچ�@Kg����\u000e({�_q0���\u0007И>\u0017xȓ�7��K�%�m�=/�CJ��W�����1� ��ѽC�yW��\u001f\u0001N`�28�G�����֪[W^4�ݡ���\u0004N�\u001e�k?^�Pآ��!�ȿ578?�Fm�� �F�I�\u001a��Ley����>\u001d\u0002�\u0011P#��I�o(��cj���{���A6�\u0003����}�ヨ�|U;ؽ�\u001bs�U��5��Q�*-tz�\u001f�G{|KL�\u0015Ǘ\u001b�O�`\u001a���\u0006i0�7�\u000b�][�=��\u0010\u0000�]\\�\u0002��*�g\rbL\bҪ��\r6x�3z��Q�v��q�m~\\ו���\u0005���K8�2*�\u0007f��A2�\u0004\u0010���\u001ef{v�[�<`\r�l�]�zI�`I��X\u001c\u0005�\u0014\u00021�2��W����s\u0014���*����. 37�����\\x~_df\u001b�\r��7���\u0002�\n�%\u0001,�;�\u001fah,�r\u0001P��^7��}�׆F��<�{�!J5��\u001a��M!h�ݜ����Vq�%֘�j�R���D�U�x�E~q�]��ǧh\u001b؋\u000fcN\u001d�`��+��g\\?\u0001�x\f�x��!\u0018h5\u0017s�-o�bx��Ҡ�#ue�*���Gx�\u0007=-���&�~[TC��&@V�4�'_��&bQ���U���\"��\u000eHK�\"�=��\u0011��� �\u0017--��\rW37\u0001�0��#��bk$�r�\u0018�a�ɔ�f��A/�\u0004$����ٺw\u0005_Q�a�]\"m5�Z\u0000Z\n��Z�\u00172{,\u0011���3@@v1�lox�{T�I�\\���z�}}&�-�\u0019\u0002U_�\u0003H\u0018�\u0017\u0010�o�)��o�\"�f�Z�\u001bNt�\r��;\u001e�_\u0013�iJ����\t\u001c}\\g�Z0N����]��\u0004Qy\u0003^Op�a2��J\u001f����;t��b�w�粁�(����h0\u001e��������[���2�I��Կ\u001a��luD�PI%��_\u000e%eRWl\u0013Ky�C�k#<�j�=>�\u001d\u000f�]$\u0001�P�o%��_2+�(=\u0017����x�\u0005�Ӝ��/e�`�K�\u0000Tm\b,W�{^@�����Dn�ߌ&�H7��\u001d�+���7����j\u0006H��A(�\u00048��L��a?�'�;=N\u0007\u0002��1\u000f�>[s#\u0006<�\u0003i��v*v���KG�9Ru�dI�\u0019�n�}\u0006\u000f\ri���۔F\"�\"�R���OB�J�./zwj[�lan���bPeԉ�����\u001db��F\u001f\u0005F`�!\u0013\u0016*\u0019}a�(8�����l~O�\u0013�l�}B*�c`\b�B.�3\u0016��\u0012��4�H*\u0013y�\u0014�5l�\n�\n�r�\u0004Pl_�\rB���\u0017c���c�;��jfL\u0010�\u0013�\b�@\u0014��,�twt0�M�\u0006Ɩ�(��Vm�\nna�:����V���f`�ވ��\u0014B�i��IH\u0016;\u0017I\u0019�\rHM�<�Ȫ�2\u000e_�\u000f͟Ti�n����\u0019\u00012\u001bJ8ϓ��A2�\u0004L��ۿ��#�TĊK�Z5N���T�W�uf`��*\u0003�\f�A\n'(���/\u0016�\u0007\u001eP�J3_\u0002\u001f\u001fb�1\u0007C��;\u0015\u0010�@�����\u0018���=�/�\u0011\u0001��+��u�l�\u0002���,���cQa\u001c_1.h\u0013V�\u0005[4�\u001c��Ƃc\bB����&O��E�����(1ۏz�Ӫ���3z\u0002\u001a�\u001cU�gE��cW��2\fRT\u0019s��\\\n������$�Y\u0003H��%�\\2'�d\u0001����v��DV��\u0017��\u001ar&كb�i��*e��&F��$a�@)Hf e�\u0010\u0006:�����\u001f�\t[��̊\u000bQ�=�i�&V׶\u0011;杤)�!�٥˛�G&\u000bi��%�� �\u0010��>����V�A/�\u0004`��1�D��饟_f\u0011l\u00194�, �����;�ϸi�f:��Τ�<����;p�=���kM4�oV�f����\u001b�\u001a&$4\u001d�\u001d�\"��g��G=������u$�V!\u000b���\u000e`L���[XR\u0003��NjI�A\u001ecU�+N�r���WxzI\n�U��!�Ͱ\u00013<�{>\u001cYQ�\u001e�T�Q�1�ݰ\"�\u001f\u0003A\u0010�Cq��n,?��\u0000�\u0016e\u0017U��\u001au��ʃ��n�D˽����̓�\u0003ل����OK]���3*B8)��.k9���'ױ��\u000f��o�QJr�oh:O�cIFǦ\u0002U/�\u0000���,��hś>\u0005\u000b���\u001fU�J��U�Gu\u0003�=WA��N�6�kq��ȷ�A4�\u0004t���\"/\tM�\u000bp��8~Uq���!��c�W�ע�0-�)\u001d�\u000f�'\u0005R^\u0012���K{�\u0011Sfe���G;��=��p��ð�\u000eT`ؼj\u0014�\u001a\u0015���\u001f)P���\b�\\��5\u001b�\"M��`�\u0003&\u000fp{K\u001d\u0015\u0019\"�\u0015_���O�\n��f�i��\u0011��y\u0000�\n��t��\u0001TМ������\"v�\u0013F\u0002�S�־t�\u0001���\u001e\u0017��\u0001��\u001e\u0011wb��L�Hv䋩����=c\u0001��\u0000#�Kͳ�&v\u001a�9�\u0002 [�\u0005\u0015.P��1�,��\u0003Vا�-=\u001eA\u0007~L<�#`�ؐv\b�c�����p���~��_�f[]��\u0002Oo�[,\\�Jj4\u0010\u0013Y\\��{�\u0002i4n:�BK3,G��X��A5�\u0004�����]l��0�Ӗ��\u001eX4j\r?��Ǡ*\u001a���\u0012����G�Rkk�5\u001bg\u0002�I<�d\u0010\u0006,D\u0002Fn�j�\u0002Q��N�<���x,G|:N��\u0010a\u0012\"���G\u0000f�\u000f\"-qE��K�ɻ�Ճ�\n�W�ya%�`�7@t[xA…h���\u0002F��W�P���\"J��*b�$qA�<\"�������÷�7]Rr�?�Μ���j��c@g\u000e(�Ө?L\u001fg\u0011%^vf��Ay�\u0004�\u0016�\\�Y�`�\u0012�\u0005�_\u001e��%�\u0014��G�������\u0015t1�O�^\u0011�\u0017�՘���\u0019M\u0013��\u0010��J\u0015&<@�Y�b���U�KP\u0011�f��]���?\u0006�B�ҟ�\u0003\u0011l\u000e����&M�¼�1(��A8�\u0004����~\u0014�E\u001f]Z��$.=�|�6*8_������<�J�=��G��[���\r*�D�# s��3��Y��35E�xV��BO��\u0016�\u0019/I�A|d�\u000f��\\�|�D�O�!2�X%�k\u0000ߍ�VՉ ��\u001cFM\"�����L⢫��~��h`\u0019U\u0007]�>��]Yp�\u0003Ǐ[,�#��i-�\f�?%���X��A/�\u0004���cj\u0002mj��θ\u001a���\u0019_{�&���\u0005z$$Х#k\r�\u0017��\u0017��fD�i'�?\u0018��\u0007߲��3w�0���q��ƣ(�T��7�\u0007�(\u0003�z�����oo)�I�\b��\r�j�z�I�Q���\u000bV�ku\u0006����|-�ˑ���\u000e��(�(�|_>�CV�vR\u0006�������9+>�(�\u0016\t��`��\f��}y\u0002\u001d��eqn�\u0015�+\bM1k���\u000e��Y��H���v���Q�\u000e9<\u001d�2\u001c�vT���)� ������A6�\u0004Ā����UZa�/\u0010ap���\u0015>�\u0011%�\u0000u�\t5n��Y�g�uߡ7�zл��\"n2� �\u0003\f�\u0011��\u0010��������v���{��\u0006B_#B�\u0014�;5G�ne\u0001��n��-�0����ܨ�M���\u0010�%ea1U\u0015�/\r$B��\u0014��/�.�WaA4�N�!Z��$]���LQ��ֵ�#��S�`�\u001b\u0003\u0017:9\u0006��z\u0018������\u000e�i�S��_9��4w�\u001b��\\Et��)z}G&Դ\u001f&0\r�\tL\f�� R�\u0013\u000bg�\u0018�8Ƥ\u0006\u001a�L�U��@O$2b\u0001�d\u001b�\u0010�Ӑ\u0015m�\u000f\u001f�/[d�ጪ\u0010e��5.��\u001b7��~��*��$H<�]�����C��m%/�J�3\u00027f�Ȓ�A?�\u0004؀�ik�j���\u0007}\n��F�\r#����f\u000f4\rJ\u0000��p1�\f�t��mt%�a�=?��T�\u0011v�1�\r�c�c�2�)��-\\����P\u0014\n\r �G��\\p��J�\\K\u001f����]�W\u001c\u0003l|n@\u0001���H']\u000b�?���C/l���OJ�������t7I{�m'��\u000f�\np�9�,>�\u001f\u0006�\u001f�\\���ԥ��x�f�\u000fF�(=�l͇�jeeU���;zO\u001dS�b����V�@�q���7'�+�R\u0003�!��p8l�=\f�\b�ӏ\u0006c�̪\u00021�!�[�\u0011EneY��e\u0017_n��\u0012��\u000b2��P���\u0003��&ߖ�؋�:�^\u0010\\�M�b��B;�c�����\tc�?7\u0002�s�\"`\u000fm(��A/�\u0004���\u0017H\r��튽��\u0012�p_'\u000b.�\np�\u0013�pd\u0004s�\u0012�5P���-��oJ\u000f\u000f�䫖\u0001��%�\u001a!\u0014+���|�p�x��Dv��\u000e�\u0004�J�\u0004\u0000�=\u001d#���P��G��Xع,\u0013�%�� #�\u000fiarŀ%�U\u0010�՜r�(\n\t��\u0005��Rc�[�\u0013-O\\�\u000e\fc\"v������H�����\rEs,m����\u0014W����?,��<�\u0018o��w�\u0014%\u0001+~�E�\u0010�\u0014G�?QL��\u0006�'.\u001d���*\u0016��\u0004/\u001am�_E�X�\u0017:�K���\"-E����75�\u0016\u0015��\n\u0014�6\u0011�Ͻ�KA�\u0000y&V�H���\u0002x�-��O\u0015\"5M�7��RªFH+�V4d?i�m��Hw�A%�\u0005\u0000����|Lސ�����\u0001#0b�F���&\u001fu���\fۧ���\u001a#�c� ��^�����\u0015�c�J?#\u0002\u0005>�%\u0014花�`�rL��5'rG\u0004vk�Q�=d4(��_\u0012˰�Q\u0014�{w�2��m\u0005s�IQ?��#_=\u001f��Qy\u0004�޲ac%)�Q\u0004\u0006l��*/&����sA��ʭ�\bj*N\u0015��^\u0000[\u001a��R\u0012?\u001a���k�jZ\u000b5�f���\tN�\t�{2\u0002��Պ!\b3\u000b�k6���+V:+�I���j�w��?J\u0010y\\2$Ft������E�\u000e��3�G$Ҷ3�r���d\u000fp!�oD�[��;:��E�\f�\u0015��}E����������%��D��A(�\u0005\u0014����Y����V5'\u001c�dD\u0018�w�\bDz`�Q�0�g�9\u0007�GD\u0007d[�ڒ�@�g���\u0007[���\u0016����\u001c�E\u0007o�u��T\u0011d�/Z���LH\u0017�\u0015�\u000b\b�a&��5��0\u0005`�VKS��\u000b-7���\u0018c�M\u0017�K�\u0002��8�\u0016�\u000f2[?A �5܂��5�诿^+�RB�z\u001f�h��\u000b@�\u000bA'D3�b\u001a�m�{���\u0016\u0018��^���\u0011�Į�\u000fz�ATR�h���\u0001\u000f��\u001b�\u0018w��\u0018��j\u0015\u0005�\u001a�I\u0005�p��,j��\u0017�ߣf��!�0� ����\u0004@'���p\u0018�w��o�\u0017�Y�\u0010�{�tz#\tk��u���I=֤�=��]��)��\"F��A+�\u0005(���!\"�\r\u0005+��C�n\u0017���U��\u00029�͚S�L.�{���(ӕr��'rw���N�ӟ}H ���\u0002EгU_|��\u0013}�tX�A£��\u0014�\bg�B!}f\u001au�q�7ܑ]��{2�Ѕ�1G��ȼN\u001e�E���\u000f��W��z$�^�ـB8g\u0015�\u0007�\u0006��\u001dP\u001d�\u0002��z*�\u0006xI�PtUY1+�E�\u0003T\"��q�\u001c�\u001a�\rv�\u0004 ���mj\"{\u0003*��)�_z1�-�'\u0000�]\u0012\u00177�Lq�\u0004�qڣ4�I�S\u0011����\b�|r(7O�B�!�\u0016jt��o������vW�bRE��؝i��N�Zp��ܻT\u001d����'�?�FZ.�\u0012A�*\u0012�鶌�A&�\u0005<���@VA��o�Ɍ��G\u0017q�\u0013�\u0007mq\r�2�:Ҍ\u0011tB�A\u0016�\u000b\u0005���v��\u001dj[�r\t[Bv\u000e%\u0019���z�\u000b?�^=�#\u0011�#\u000b��:\t֯(�\u000eN���p\u001fe�բ!���b�I]y�m\u0014��\r�\u0013���\u000fˏ�,����0�X-X�\u0016\u0015u�\u0019�\u000b��\f���\u0019/��NG)}MFm� dF�\u0001�\u0011Ϝ�;/|�WH~\u000ehK\u000fkG)������\u0005�\n|��`�j\\Y�́�\u0005}�,*�}\u0002\ruY\r#L�Má���?N�B�\u001a�S�Z��f��\u000f$��1���9/�G�\f��\u0018]?�\u0002G�6^�\u0011!y�!���\"v\te\u0013�k\u000f�\u0002��z�\u00181X�f��A-�\u0005P��.˅\u0010v\u001cO̤��=:�\u0017�\u0002G0sD��'��NZb�\u0003��Cr\r����P\u000e�8�\u001d�/Af��ɨ\u001bġ��\r3�\u0011\r9�.\u001fT�\u0016}d�ꁃ���\u0016*������i �z�\u00015<�\u000b��\u0017\u001e`%'l�u�f҅��1�bm߆\u001e\r�(\u001eS�J�3��X\u0012\u001c%m�Pתp����/Yc4��6�n\u0019�w�[o\\惓��w��)��Vm��~N��j*�ع\n�LA��(�\fg⚧'�vH�i��\u001c�򏞤���\u0005\u000b�aA@rA\u0013]�\u0001\u00192���5�3n���\r-��s���\f�YdA:E��\u0010�$��\u0005&��\u000b{e;�A\n�@��\u0001�R���\u000f�\u0015��m[?�A.�\u0005d���HD��\b�\u0005��2bz;������\u0016v���.��$�Pp�q\u0011u���D*�0Ư\n*<2S/Ɗ\u000f�H�4X�%CuNJ�� k�\u001f�\u001cɂ�+����%��8t{ta.$�Pz��s\u0003�gA\u0004p���>�\t�\u001dS%\n���\u0013\u0002�(�G��,.���ꎥLN��٫⻲J.V#\u0000\u0007��)7\\j\u0006{�+E\u001f\u0001;{��ˣ�ő�V]~��\u001fI�:�&�\u001d�\u001b��7�n��(�Y=_r��\u0005��\u0014��uNN��g��\u0002��d�C�&�-;W\u000esb�я��\u0018�;,�r0)Dj����ZNi\t�\u0010��SG���8�հq�`��f�����8�{ue��k6H��A5�\u0005x��f�e��HB�\"�R7��BVϭ��[�,E�\u0014�ʟ�n\u00075m�Ir�\u0000\u0002VC�����t�Ĺ��k\u0016M�\u0006\u001f�q,/�\u0016k�&�O[J\u0014S�\"�_�\u001fS87��\t\u0006�Ŷ\u0015^ȧ]�\"V�]�\r��8,�`�����\u0013��Ŭ���;�S\u0016\u001aӑ�4$q��@\b��͝\u000e��,\u0005�R�E��:T_��5��N���t���*깻;�g�N�\u0000E?�q�\r\u001b�(Q�;���\u001f]$�4\u0019z%�\u0011�r�zM\u0010� �J�O�m�|'嗝�\u001d��<\u001ejE7�!�fe�}@(Z�a��2�Vu\u001f\u001d (���{Ҍ�\u0016�\u0005\u001fy�+\u0007$^���+M��\u00116.{��)U�Z�s𘎣A7�\u0005����Z�z��\u001e��\u001dF���}H�\u000f^\u001fτ\u0001\u0012�X����v�[�;up�Z\u0000z^�T}�4*�\u0004n�{ď��r�\u0003���\u001b�K����Tn�83s��G󍄥H&�9Q�E\u0006�IɮRj^�\u0003ĞtI��cۊ3c\u0015�z\u0000o\u0004(\u0010�*\u0000��7[O?W�=}(�q�N\u0017S؁Y\u0016P����P�Oc�} p��*��QFI1��\u0015�R<(i����\u000f8\n�]�o|E�,M��\u001e��}�\u0001��f\u000b�w��?\f���\\D�qā�)�A\u0014 {&7x����{\u0013��\u0002�r�`3�9�)E�!\u0007+*�syv\u000f\t\u0017�y$�ˤԌ�\u0019�1̼�� Q�%�KzB��E\r�\r�1\u0003c� �Ne4���A2�\u0005�������q�p\u001bb2X�\u0011���oP_�\u000f[\u0000�>�~�4z�������I�\"��\u0011抄\u0018�!�\u000f���\\��_��̆���\u0018��ѓ#�8����}�K���'囧�YT]��V�4\u0010���/p��.�g���of}n\u001a\u0007���\"Z1m��-H��Q�!r�5���gf��Y\u000e5yZ�A(�A����\u0018+vs���y��F\u0019��\n�JP�T�I�x��I\f�ԋQ�#��)�\u0000�A�_��=B�%f�N��^����^�\u0010rc´��'e��\u000eU��X�\r�Ż$\u0001\u0016��B65�����,�p�B\u0010%�]A\u0004��;oR)\u0005�t�^\u0007�\b��$B�V�\r\u0013��j���q�`�\u000eHE@�\u0011\u0004^���6�^�k��&��+l3\u0017?���\u0006�@�K��O����P(\u00116S}��i��t�,\u0002C�b\u0003�ZDR[\b=��\u0000\f\n#\u0013�?�;�-��O�͒=�\u001eX0�䯶�����A:�\u0005Ȁ���\u001fOʽ*|�\u000eH�\u001di��\u0007��6�\u0006�\n�kSK~�\u001f�\u000f�R\u0015L(�\u0002\u0015?��\f��E(�q��Y�<\u0007x\u0017#�#��tF\u00011\u000b�U_bZk\n\b�\u0014����8��Y�X���P��좮�0\u0011q�f ��Q����\u0005^�;S?`�v\u0002�&��\u001e�ԡJ6�\u0007;�Ibha���f�C\u0001�5�6R�\u0003�_M�<�}�3\u000b`[�}��&�i<4�S��32��y�ƪ�V��\u0000��r}3�P\u0005i��\u0006��S̈́�d���\u0018-�B��v�\u0017a�X\u0013!G�\u001c1����\u0002��\u0001��*(�\u0010o,a��5�\u000e}\u0016�y��~䥻\u001f\u0001��D��ײ��`\u001f��l��*���-�k1� �\r��\u0011\u0005����B>�\u0005܀��\u001b�&\"sN�h�\r)7�\u0017N������䓽?��Ge�\u001b?\u001d=������1-\f��~\u000e/ba�\u0002zeЩ*��]���W]d��]�o @�\u001ec�\\�\u0004U̒\u0005Cm%i�4)\u0016��,�:DHj1)\f���oc�[\u0003\u000er��h?x�І���{�\u000b�e��n)��ie1�7�� \u001fQ������B��6LF�I���9���-U���/��a[���D�D\nt\u000bA%�\u0016\r`�c>y�\u0011���\nX��4�i%��x�+���-\u0013�9�*z�t_IC�p��/Ðg}����.b�\u0019Vm\u0019|3\u001e\u001c\u001c9��u�C�\u0005\"�\r;\u0018�y�E\u001c�cc����[ʁ��\u000e��?�8ܧh����Z�n&�\u001c|m���VN�,\f���\u0011����Y��\u001f�F�$e;C�\u0002u�(r��\u0016�\fb\u000eto���d\u00105|\r�6�-��fu�\u000f\n��\u001d{��\u0006=��\u000fFE5:�C���O�h\tځ�\"q��h\u00009������\u0019&ŏ$Z\u000ft\u001a\u0004�p&�����0P�\u0010\u001aIb\n$�\u000b\u001fE6\u0013�_���\u0004i�&�\u0004\u0015?�5bL�v�\u0019���v�P\u0002��CX`�=�R6\\߃E:�_�>� �L�8#;\b#��v���L�8&�����~%{6���\u0015�9ȗ�*.Gx�AM�H~����\u001b��w��S`@\u0002�88B�u����$7�A#�\u0005�����{�?�\u001e>iL�`���nٗڍ�Y�N�G�\r��R\u0013��߮�\nd\u0002���Y�\u0000�\u0011��;�l�63,P<$����\u0002r�c�������\u0019��^��$�`�$�\u0003bF�8�����\u000e&Mc\u0006\u0000G\u000e\b,D\u0013\u0013�M\u0015��{\u0019����p\u000b��\u0001�������R������O\u000e\u0019C\u0013�ԋWYKe3y�,V�(S�_���~�\u001d�\u0014\u0007I���o�';�:p��ʧ@�mk<��R�F�O�#X���K\"��B�Zٮ�$ъHf[j\u001b?^;7\u000f�\u0000dq��;hj\u000f�Ed@_�h�p-�ޏ�\u0004¨�\u0018q��Z\u001c�B]N$�\t\u001d�ѫ!X�Nu/�����A$�\u0006\u0004�����i�xA3�\n�̋�f8\b�\f����t�Z~Q9�\u0003 ���z3�㿐���Fdt�cϠ\u001b��:q��v\rù6�����r�\u0007[N������n�8\u0014�)\u0018�!f�'£���� DjD�/�\tu$`�\u0004\u0016\u0007é_�W�OبAU�5'/\u0019��$��S��J\u0012:v�\u000e\u0017��\f�\n>�4�G��h��]\u0010�\u001ac\u000f\u0011\u0011�K�򠔝v�te��z\u000b�\u000eOY\u0005��o肪�;\u0005L^G$\\Z\u0001*��o�W2>��ӭ�hx�-�sV3j����{��U�B/Bd��:�\"\nQ]\u000f��\u0000�\u0000�a긡S�M�DI��T��ՙ�Ԝ��A.�\u0006\u0018���Y'9M��pw4(\u00023{罥X.�:��S�4>��*;�\u0015�\u001e0�py�rG�&�\"QSrƽ�\u0017D�\u0017\u0007���ao�t���?��+�.\"�u�GY���K/3�N\tg!Ur�\n�x.���YK���e�΂�\u0013����VD������\u0010v�C\r�)\u0003�[JX��O]%%�l-\u0017^=a���#\f͗$��s\u0019ק\u000b3N\u0011m�ɞ��Xr\t��a�?H[��\u000f�Mc\u0002x\u001c�0\u0012\u0004W��Y��9Z��<Ɠ�&>�jH�c���\u0006?\rR�d�#08Ajпo�:*�+W�\"o��.��9ύ�`�y�TԘ��*��\u000b^M2Y��[��\u0007<��\u001b��n㫳\r�j\u0018<�̎�A4�\u0006,���̝\u0007�w\bG�ˋ��in\u0013>\u0007��\"��<�w�O�F�W%gj\u0005�ٛ�r��,�okX񄄠�\b\u0001�\u001f�?L������h$��>-\u0013�\u0019\u0018M�����5\u0005,\"��\u0011 ��n;\u0018+y\u0004\\z����0\u0011�X����H�;\u000bU>\f�俍Rר��nue�L&�\u0003\u0016�0��\u0010�`�\u00026gԳx\u00167ѩ�!�z��;\u001cYq��\u001e0�A�g#W��=k�Q\u0000���X����\f\u0007����:\bC�Q&���\u001fy�M��,�\u0012��Tiz��fd�^=�/�\u0002t*��\u0011�S3�LJ�;=���\u0015?${��B.\u0019yŕFn�ө��D�\u0006�\u0007^�-��}�\u0015�\u001f�j��\u0016Jq9�2\f 佛x\u0002쎣A0�\u0006@���i~a��Y�-�\u001eg��L�\u000f w�8�7k�T�\u0007����\"���\u001d;;�߇M����TDhN罞&����C�e�\u000bcC���\u000f�km G�uL���6��\n���`���.c3p��*C�^5ɚ�!T\u0007\u0011�[ʄ����0�%J�;��i��W>0�p��\u0015*Ӡ��h���֦��p(KR�c�z����{��~Q\u0013&R_�/���P�\u001d\u0018\t<�7�\"��C%%�ު\u001b\"�\u0006�\u001bĜ\u0018��7��\u0000�[w�2�I�M�\u0005F�\u0001��Q�|��\u0004�܋\u0002�-���jוs8]��Ð�A��U\u0002\u0010)�}��:6\f���m�\u001f�\u0019��х\u0003�rTJ?u8��k\u001a�\u001a�\u0019���A1�\u0006T���\\M\u0013\u0002���i��T��G\u0018\u0006_��g\u0011�d\u0002\u001c��\u0010�`,\u001a0M�1G���Od[\u0004?\u0017\u001c�\u0010�\n1\u001e-�j̇x��QG�wN�����e���\u0014�̓��9����m(3d\u001a�\u001a\u001e\u001cf5�\u0004}�f\u0003�?\u0005��7r��H��}��LR\u001c��z%�q\u0011�d,NJy�\u0016fp��j �\u001cōe�q�w�jL��a\u0016�F\\� 0�o\u0015t\u001b�\u0004�\u0007\u000b�\u001aP\u0010�,/�1�\u0018R\fZ\u0019\nD���\u001d��k-ߵI���b��\u0016���9��\u0000��ԁj4�{*��\u0007�M�^�W�H!�P*�\u0012�X�C�*�q��\u0010N��7�a\u000bgf��\u000b��I?Z\u0015#�\u0011��,�t6L�\u0005\u0007�2Ȑ�A/�\u0006h���N�\u0011?�\u0001�:�K����X\u00136��f��K��\u001b�\u000f*iT��2��V�D\u0017\u0010�g\u0002�{*���ަ��'���Ce�\u0011�W�\u0010��X\\r�\u0004ư\u001b��\u000bd�\u000fAq��\u0014[n2c\u001a�s�u#\u0012t�V\u0017��%��c�&�*W\u001f�(�^V�pP饚���V��SL,on\u0014���\u0017��e�\n�\u001aT�P�\t��h��!P\t���D%sc�]n.��.��_P!\u0014� W�\u0013���Dм�( \u001c�+x�o\u0012�q\u001f]����ɇH��\u0003��2�}�M�+�As>U�g?Ԯ5�E\"�y�\u001cҷ(��7�\"�Jo-�1�m�a�lS�/4[p��\u0003\u0017�ٗЈ3*��͡ [�~� V��<��A)�\u0006|��əz\u0019����o��.��o�?ޭ\u0005��\u0005ν��\u0014M��jͰF�C��\u001a��t\u0019���&���\u0013H_�\f\t\u0010�g\u0000�v8�*��Un6��\u0011�K�\u0019�j�o\u0017�U�R\u0004�̀\u001f\u0007L>\r��l����M^\u0011�I>`��8OIwg'\u0004Z���s �\u000e\u001f���N\u0011\u0016\u0014K�G~ot67�:�\bĦ\u0002����\u0014)�\"g\"#�I\u0015\u0002v��0\n�\u00145&3�I�����b�*�^\u001e~N�#\n�氨��w�\u0001z,��O\u001a\u0016\u0014'DzP�����E�\u0013���\u001c��b塮�I�Yk�� �D\u000e\u001f��f\u0010\u001ėO1�\n�o%\u0006ZT\u001dg$t�2�/u�\u0006�a�\f�_\u000bjn܌�AU�\u0006����X���X�\u0016v��\u0006w�S�N\u0010Em�\\�E�|�B48T���D\u000e\f�*� \t~<$\u0016}l�HD\u0016�$�\u0011U�\u0019[2YQĘm��GG�1�H�L�p�\u001a_�\u000e�ˇ�\b⡣yhs�8p�\u0016�\u0019��e�%�8�/m�D#\t�b��\u001d�\u0005!����8��<�#�^@�q�6�\bN�\u0005\u001d����I�LR1��JE��^f�\u001a\u0012\u0016C�HzV��T�z��Ұ?䝂΋{������g��\u00060m=�Tn��tH�'ʁ9��\u000765�ˁC�7[�h�*��(1T�O\u001c�\u0005�#��_H�U�\u001eBN�\u0019�\u001df:h�kp\n��\\��o�|7\u0011�cϊ*<�����m!�\u000bW�j/���Fq�te�'x����\u001aM�:\"L���\f�y�;�\n�3/u����e1c�ȣ��0V�b�F�|,o9���N�LA�R����0u���8+Y��9\u0002\u001d߼\u0001�k[��c&�ӮTC��\u000ft��ꬪ�7��`\u0000\\W�YsC\u001b\u0002\u0000\u001b��#��Tf�\u000fܐ�y�Ho�xBӴ�_��h\\.Jk�.�G��2�(��\u00066�'��\u0011n���\u0002\u0002�|�k�_�)6o�;b���\u0019\u001bs�w����\fU�R�)���\u0005n��X�l��w�2��LK\u0013tL�Pq@\u001d8l��A1�\u0006����W\f���^��zۮz2�N�A\u0005�-�w�C���L\u0010+d=�\u001c.��L\t���2%>���l�\n-�~ڒ�.�\u0003{�m�x���\u0012V\u0015�%�񊥫0��6-�'M\u0000\r\f*�\u0013#�2\u0016\u0004��+\u0002�,���N,�zZ݃��dy\u0010\u0013�ʒ\u0000ad��\u0012\u001eb���;_w��\u0018�{'��,=%����\u001e��N\t`\t\u0007e���Ԁ�?�r\u000f;7���n�P;I�~\u001b�\u001f(��ꛌ\u0011M���aި�i�9�ZY�\n�$�Y�G�e\u0010χtw�(��\u0004���u¤/0�*�~Zƌ�@�g�\tV]]V\nK\u00111�k\"\u0001\"?|Qj��_��;�\r&܆��\u001d�<��Q\u000e��V\u0016\\��A-�\u0006̀��\u001d�u\b9�c�\u0002�\u0014S�&��\u0015��1\n����%\u001a0�Y����+;]\r\u0007���\u0019�\u001a��6��$�|��%~\b�%���(�юa�\u0010�ܭ4k?a�^�d��\u0014�i��\u000b��d�j~�A,�\u0007\b����)n�눜X=��M\u0005\u0005C��l\u0003m��\u001a���V�=\u000bA\u00029�=w�\u0016Qg���F�\n��2�\n֊ҹ}N�c��a��c�M��G�P}\u0005��v>\u0012�ET��\u001c�k_���v�\r���r�O.�C0*w�m\u0019��\u0011[���]6l�ن�%�}Sx��p\u0005\u0011��A�t[��^�ғ\u0011\u0011�\u0014rj�\u0003(���{�\r\u0004\b����k�-��3���\u001e��E���E.��EZ�t�8Td‰`�ɼ5\u0019f�\u001b\u001b�Y�\n $��A$d�Jƾv-q||���Q�2Ch^��\f�W��K�\u001e_�\u0001\u001d�R9��z��t,x`\u0016U{D���G��\u0015���qU\u0019��u�\"Z\f\u001e�7���A2�\u0007\u001c���J�+-��;�޿������\u001ch���\u0005+����\u0002\u001c�:m�kd�\u001a\u001d��|�~���\u001at�@>h� tژ�\u0018{ya��\"�΂���`//�$\u0019��ŸB�z��N�4�V��ow��=�L-�9�:R+�\fg�QN���c\u001dr�\f4�5/V�_�j\u0003}�\u0005��=ge�|��G�zmmh\f[���\u0004�\u0005�L���\\�\u0015\u000b���^�I\\���%����q8�s�\u0011�D@^w\u001c7\t\"-ߢr��\u0010��x\u0006\u001ej�\u0019&��Ӣ\u0017\u0006�C\u0006\u000b\u0017����M}k���\"-�F�H\u0015\u0010}�V�0j\u0003\u0015���\u0003��̑�$�v�C �K\u001e%\u000e�$��\u001eJ�բa�T�R\u0018D�����A*�\u00070���\u0017�e��(ĵ�'���ƌ�7��L�*�?+\u001eU��\u0001��b�xҜ�&X������6�ך�W\"0O�_�-�7~�xv���\u0004\u001c�\u0004�Q>���O}e~D[�\u000fHw�9�U���I��\u000e�\u0015\r�͢�\"t��g˹\u001f0O< y�����\u0001�\u0002�\u001a%�{�\u001erX\u0015����0H0��I\u0012cڵ>f����Tv\\}�+\b���P�:���V\u001dד�����\u0016�C��\u0016u&�>��ES\u001a�2�>��n\bѦf[/������\u000fF\u001f��\u0011�\u001c\r��]��p'�dӱ�z}A�w9-\\����=���^\u0013/p�Y>\u000e�4n;l�����h6)@\f��A>�\u0007D���n��>���j�7Z���6���C�\u0010x��\r>���i�U��^$�0�@\u001f�3�T�ʑ�\u001f�\u0000��_Er\nN>�Y\u0014/�_�Z���\n�#B��@%*��s��.�@¶�b�\u0003<��\u0017]�n�Œ\u0017�ڃ�E\u0014.�SM�\u0013%��\u0013�\u000f�\u0011��xw���^�wKe\u0006<\u0015W��#�S-����F��u~�]��3U\u0000\f,�b�ťؚ��e����\u0007��q�ݻ\u0016\u0005\u0007�f�����{�\u0016�r��|\u000f�k�\u0007��џU�\u0007_V�R�(\u0001�Rrƕ#\u0010��$s�\u0003X�'eV �9,��A>�\u0007X���_ۡ�{�ϬC��C\u0007S�7�x�@G�c�~���\u001b�\u001d\u0019`ލ\u001d�ʺ��\u001d��y��,�\u0014>aBk��N/�M�\u001e��p|�.g0�w\u0019,�S\u0012���\u0005�[���?�\u000b����e�t�˸�ϏQ�l\u0017Y[aS߲\u0019y�۵\t�E�\u000e~\u000e�I7j���\tOD'\u001b��\"�~��Q�[�,ͬ�d+����\u0002�5���]\u0015k�\"\u00160吘��'�����Pp(\t�lh����\bmz\u0006/mR�M�vr�28�\u0014�\u000e�H�O�`F&�\u0017�# �\u001b��[.�\u0001�J\u0002��*\u000fZnV\u001e\u0011~�����5��R���p�\u001bm>b�\f�9��D9\b>���\u0011��\u001cx���l��:���i\u001a���)<�\u0007������A6�\u0007l����\u00041EV�*l��\u001a\u0006٤\\�2+\n�c��n9�U˰��#*\u000e�뗒�v\u0016\u0019{��{����N�u}�@��wT��� ��`V�fő[��\t����h\u0001bm!����\f��V\u0013��h)F�[� \u0002ʹ\u0013$�������\"؟fA\u0015քN\f�ݰ�~��5�����e&�\u0012�\u0019\\��+;E�?��\u001aNn2�2�c}2�)eabJ�U�\u0015oov|���-\bĕf\u0000�@\t��v\u000f��&5�\u0001w�2��߮��)�\u0019�����qS\f\u0019�};�\"J\u0003>�����QE\t\u001fv�e�\u0014�`�\t�͌�$@���6�E1�3�4�� ��\u001av�\u0016�~��0Y�ϗm��l\u0004�\u0001���i�1,��A?�\u0007�����~2\u0016�ٟ͟cN��j\u0011�\n¹��n�2�\u0007�\u0003���.�\u0019A�\n�d{q������!\u00158�Kr\u000b\u0019SE\t���֒$(�s/I��\u0000\u001e��\n\u0012��j���N\u000b7\u0013\u0010ܙgH�;��\"���ES\u0005+�2;!e \u0017��U���G�u`ji}`�\u0016�a�2%8]X��q�\u0015/7\u0011���5�5V�\u0010dP��6�\u0019Do�\tY�C����-#��1ZS2jZW��D0\u0011�\u0017���Y>���\u0000����r����G��{�[c���\u0015/��v�\u0015�z<��/-ǽ�i)�o��Wֽ����Ёc���44��[i��µ\f*.��v�t\u0002�*\u0016���H��WlYTP�͘\u0006g\u0011�/R���F��`ӎQ\u0016܎�A?�\u0007����\u001c�\u0002|��h\u0001��߸��h�|����\bd��v�&T��\u0003\u001d\u0019��Z�T30ƴh�;\u0017\u0014\f�þ=i�,N��د�:���\u0017��07�uƮ\u001fV���y`x��o�D��\u000b!\u000b>P�Y��;�X/�*%I\u0014�B\u0015�!��xv�����ޘ؀��\u0001���^J���Mγ�T�<���_`��\u0012�q�P��>\u0015.]�T�{7�9��\u001cJ�₝h,�\u001d�L\r��.l*�!�l���Elf�I�]S��9M1\u0015��'R���sW;�nj\u0002D�\u0013{�4q���3%Djn.yN�\u0016G=f\u001f8��*k���Aā\u0007���㪵FWT��{���UɉX���\\\u0014�\t�E��$A_��nW��O=\u0006�x�\b�\t�|��-\u0017H�,\u0011\u001d��T�\u0001�@U\u001a�ҩ��+�%���x�\"|��{/:yL��Gcɔl��aZ�M\u001c^5�9p��]�d\u0019|Y�KJ�K�����6+�\u0014\u0007�z'v�����oy\u0007\u0005�’�o�?�\u0016\f\f�:�\"�2_\f2܆R�R�2ӑ���GQ�X\u0007�q_\b�!��|��}cH���r�r�[�۶�G��h��}�.\u0001��7�\u0005>�\u0007}��֮��E,�v-��&���ձ��\u0015}o�\u0000j�^\u000fMjt||��K�侂���F�-��\u0015��QY�4\u0016흝S�Ծf8�%G��6�\t�3ɮSuJ\u000fv���\u00068\u001f���с�6���v�����\u001e�����\f[HfuP�*V�zCB���}p(tO�B�6(\u001d��U�.\u001a��\b1I�|�2&kfv�Q��$_�^�2���G�\n��\u0018|��I��mY\u000f�'�O>�\f9<�\t\u001a�w��m��\u0012�/�59-�@��\u0007���M3C��\f�.st�CZ\u0007�\u001b�^Q���l\f�2�\u0000m�3PLiY�\u0002\u001d��`\u0004���\u001c�\u0006�\u0017�\u000ew*jU5qߜ��\u0004I}6�yYYF�\u0012'��\u0005D49.�?_\"�\u0005M��y׶���y���W!�\u000f>��_٭�iV���ƘG~�_��`�*vN(���P6\u0005R�aWҾZ�\n[��\"Ć��s��1�\n�e�]\u0000�\u001f�\n�@9\u0001�&�%\u001aj��\u0004�}XQ⟀u\u001f�\u0011�\u001da��t��n��/5c����GG�(��\u0016R� ���d9���F���\u0004�*��@�\b\f��X��=wݱq�,�p1#�\u0011�S@�ϲ漉�sZ�#[e\u001f�/�B䳒�\t�\u00143���\u000b�>9�*͟;�jQ�\u0006!\u0002�\u0017\u0001O�^�w,.�#�\u0004%vH�#,� |N�ڎQnA��L�G�s\u0003��\u001b\u0018(��\u00056��tL����\u0016�\u0016\u001b� \u0018aZࡽ�(E.���3�\b�\u0004h��q_z/ڼ�L�&�<��T���\u001e�RT�4Tx�~��Ⅶ���`�a������������a�[��ߚD�[6f�Vt�o��a�����i��@�\b ��M{\u001e�\u00151�+!&q�F�1]W��U�$`���SXVV?{�ŒTH\u0006t�z����\u0012a�dž�BSA:\u001eq\u0017��/�p�@\u001f\u0006d�@��PC�h�\u0018$�o���1bA�G��+���\u00068d�\u001c.[�r�TAY�A5O�z؅\r߿��`�썕�\u0017�a�Ʋ����ض=��\u0019TN�:�lr�U�\\\u001c'���dU榋P��J_%�@���J�\u000b�+�A����/�\u001dm�g#\u0018�p�p`�<�f|ۿJd͉�\u0011\u0016ɐ��ťeC8P�@��\b4��M1���=̟�\u001d�6�[+wƋY�����q�)]?�\u0000v]U����qܩb��`��\u000f;g�2^�a��R��À��jK�\u0006%�\"g'��v\u001aC�k]S�1�ҥ�\u001cr6e�\fGo\u0012(p\u0019�p���˥\u0018�.���@wa\u0007��h\u0012�\u0019\u001b.\u0010�\u001b�≃������F�k\u001a���\u0005�U�����\u0013����\u001f���&�\u0003%FJI5�Ӻ<�i�\u0012?`�{&��h`��\u0014*[J�\\BP����m�w7b��\u0016c�Dwx~��g������\u000eO��\u0015�\"Iq�uE%UV­�A\u0006�\bH���eS0!?OQ�l�v:�Q�э\u000f��hޣ��GO�� ��\"im9���%3.���։3�\n5:��8��L�2�.m�ά������\u001e�n�\u000f:ZM�Uz�@���x�b���+���{]�\"Y\f�m��\b�#\b�����U�ݑ�aj��O��ù�G�ԚgW�c\u0000\t\\J&\u001f(�\u000e��z��:Iݖ�ͤ��6��>b9��H+k�\u0018T��z���;�#��!�\u001e\u0015G�A\u001b�\b\\���c����\u0010����\u000b��r�f\u0018:�\u0017�\u0003�}~�K�\u001a\u0002�?�m�`�HOf�R,kr�m.�`�I��X;Mu�zJxB�f,�;czd!�\u000e~Z't���\u0018�BM\u001e�T^;��5Jd�\u000b\u0006��\u001bT�ɂ,�3`����ې]�b��; ���n#Q#�j\fm�\fg6\u0010�\u0015��^@{F*��\u001b'�}\t4��\u00010��G|@fm)\n��\u001b���x<�J\"�\u0013�G�\u0011C`����2C��'�\u001a\u0005GN�@������]�<��y��0�)в\u0012��{��{G\u001d�\t\b��z\u0010�gS��I�\u0013��l��1媡@�Gː�Q�aKD������\u0005A�A\u000b�\bp���a��N�6M�\u0017�L���lS�S�\f�=�\u0002\u0002+{�G�\u000f\u0005:z\"�6\ro��S��I^c\"<��\u0014��'�[\u001a�09��a��slۢ�\u0004S�j�\u0010��\r����\u0003\u0016��\"�K�}O�W��$\u000b׀��\u000bam�Z�\u000fwh%�(\u001a\u0013>sa�L���\u0015=��/P\f\u0018/��\u0019��KJyGAi��\u001cY��\u001d�\u0003BGaAC^\u0002J�\u000b�\u0017\r^\u0003ZwB�v���Q�T\u001a��\u0012��/��#\u000ePI�\u00133�2-���5�ڑ��n��B{s$�؞rͅ\u0015K�g�է���2MK�ْjڔo\u0012j�\\\u0013h\b�x~gM�@�=�A(�\b����lk2sn�\u0014��Y�\u0002�r�H\u0011x��V#ed�T�DŽ�Ey!\u0005��ז����\u0000r5\u0006�\u0011+�$�R�����*�d�\u001a��}���\u0001�����f:��A�\u001c���X�0����I�5�@\u0007��6Z>�!;�P�G\u0017��V�M!�=\u0005^�\u0011��?��\u0019�\u00183���\u0000��7Z\u000b#��`Ie�\r�\u0000�\u001b����ϺY�\t?D&��t�����9(����\f\u0007\u001c�ڶ\u001a�\u0019e�X��7�[j�\u0000@UuH��i�׻(���KO�u�cM\"cI塍�����)\u0019�\u0013�]LI���.1�˞Y�{�\f!\u0003t�ߜ]\u0003p�R�*5��\u001b\u0016�\u0002�f†���\u001c���D>��`\u0015�\u0005�\u0001��}(�\u0010���\u0007T�%C�\u000e\u000b:�i\u0010tQ\u0000��B\u0000�Ќ�B7.ұa\u0018,��Uȍ\u0001M�\u0007ؤ<���f\u0006~`�G([�\u001b��x\u0000Tb�r\u0002��J!�8�gD��\u0003\u0006�6�*�����\u0011�Ԏ\u0006��ady����<�O<9��s�\u001d1�aA���\u001d��\u000b\r׋�IJ\u001d�*bUK�I:�A\u0015�\b���̺�\u0000�8ڊ\u000f�3Xpjx�b]6��\u0002P�\u0018fO5���n1\u001b\bw�\u0002E�\u0014�[�N)�\u00007�p��ITÁ@=�v��W����\u0000�\u001e��_�<6\u0003��(7(��!\u0007Zݦ�)��l�\u0004YQV��\u0018&�\t4��m(_<\u001d��\\۠���o1t\u0004���\u001b�&O��R�g`�\u0002M�10���T�b�3��\u0003����J��\u001a���tW;Z�%0��qO�j�\u0004=�<锫�\u000e2rF\u0016�C\u001c�،��+4�\u001a�rY�[�\t4\u0012�_8:f����Ё���\u001a����\t�Ϯ�����K�W$�\t��ч\u0001\rS����Wb$\u0017�f�8�A)�\b������\u001a�;WG&{K�m��\u0018��[h�6��y��\u000f��ם\u0003l��!Xs��>�I{�K��F��~I\u0018�f-ޣ�\n\u0001�\u0010nb�`{@T��R��\u0019!e3t{\f�b�[�����t�p�Q������M�Z8bD�t�Ƃ��r�\\�\u001at��x�\u0010M'\b�\u001f�E*�\u0002�e5�\u0004���Q\\\u0002\rU���a�\u0019]V�uV�`\u000e\u001b�HkM�S1\u001aM,�M����H�E���vQ�y�\u000b��\u0018�B_ƣ\u0016��\\��8����/ �\u0003/p���.7\"���j\u0007���\u0014y�<�\r���8��׸[^e~^{��\u0011K��WG)��Ǝ\u0019��wٟ�{��;�\u0007=�7�A-�\bԀ��\u0010\b\u000fQ��[+�G\u0005�*�Z���&[\u0010\r��AP�\b�������l�1��e���|ٍB�\u000f\u001d\u0018)\u0019��\u0019�\u001b�������@��o3!�I�\f5�;K���t9�Sy\t�p{��ִ�\f{D\u0016P�]�\u0006�#c�ĩ���!\u0013�\u000e%��L���\\�\u0007U��\u0005R�nI_M΍\u0007���r�9�\u0007��W\u001c�f��v6\u0011\u0016�^ޜ������\u0006-�*$1\u001f�w^r�L���\fj��g��ɨ�<ϫ\u0001O\u0001\t�%hu��t.cC\u0014WD�5��A�\u0004����f��w������&\u0018��M�6�\\��\u001b�p�\u001e�M�`��z?�\u0000�4\u0002\u0001�2'�������\\���߫�o�|+,l��\u0007�\u001bF���6ԥ�ڄz5����\u0010���o��\u0013f�J��列�1:f�;�\u0019>;��d�MS@��a-z�.p��B\"�\t\u0010������o>˾�\n\u000f������j�6S%\u0013�-�dС\u0007��J3�jN��Z�SER�s�1�C�F�k���\u0001��6��iZ��c �gT)=\u001b��E�%Y<�m�i���/\u0010�r|�R(5¥�\u0007�� �(\u0006Җ?��O��\t̥!<������첖�ᑸ\u0011d\u001a\u0014L����\u001b\u001b�n�b���݈a\n?��\u001a v7�BA�\u0015�\u000b�uo��\u001dx��vXe����re`O�P�t&�nȿ%#؂�\u0007�RD-�6�I\u0000��Pr�@̱��'r�A\u0007�e\u0015�)�F�;v�0��X�w<�!~{�������hg'���\f�\u000f�\u0018�B��ƭ�����������|Ƹ_}=n�Z��V.\u000e\"�L��%X�cH�B����R*_��H�*R\u0005J�._C�vՇn�n��u3F�<\u0003�\r\fDG�\u0005Tj*���\u001c]\"\u000f��\u00144�b�_ӡ\\�c�\u0018k�\u0019�5^�\u001fK�eD�Êt�\u0006�u�?^\"����\u0012�0z��p3�p�b�]1�E�5�\u001fh�I�ez��)�8�\"\u0015/�s\u000f��3��9x�OX+:�T@��e\u0004�f�*�.&!�\u0001���\u000eL���>\u0016m�/l\u0010-w��Y�m\"e\u0007�n\u001e����Ə,+�y��F�.q�Rrł�O9 �k�\u001aoc�k,�ݮRߜb7i�w�L̕����U�k\u000f�\u0014�X>�\u0004#XK�nĶ�7�E\u0003�\u0013��Ue�}�UHD\\�D;\tA����l��pG\u0017ٖ\u0013�QKmX����(��T�q\n��\u001ej$B��,�g�\u0000��u�=`�W,J��uR�4I�a�C\u001ct��v��ٕ2>��i3�Ii���A'�\tL���ږ�er�\u0018����S_�v2>�8̿\u0019�p|L7V���Ǒ\u0004\u0001]�\r,S��ը\u0007\u0000\u0012S1�;#\\*̉D\u0015 ��u\u000eɾ)�\u000fw�[�sj��L\u001c��q�O/���~\u001c\u001d}���#�q(z�l����&����n�^\u0007^�W�?#���g\u0018pU��.���c\u000fs\u0016Ծ>��v�2�2ʝf�\u0006x�\u0015>[�{��β�钒Q)�ة\b_��\b<�\u0016\u0019F(\n56�QJl'\b\u000bX�\u001b\tgT 7�L\u000b�\rM�T;�M��\u0002\u001c���J�ʵp�,�\u0003\u0010�]��\u0011\r9Qa&7�t+��\f��;�\u0015�Sc4�sY�_���m��\u0014�\u0011I���=]\u0010�%Bc \u0006��A��\t`����W֦�(�\u0004��������\u0007�K�\u0007R!�%\u0015\\�\u0000?\u001e��ߊ1������`\u0003\u0004�\t\"G\u0012\u001d \\�\u0001�/����ؐ�t\u0017�ӕ^�Ȕ\u0016�W`\u001ds|�\u0007:\u0018�\f$�a�(\u000b�|l;6�9��\f�̍��g��w��\u0012�����\n/�\u001b}�[ ��.��χS���;0�*�!\u0001^��RnE�|��L�Gͪ��\u0010Fb\u001f$V�����3\u0005 j�D�&\u00055ٖ�'�M�Jݍ��0bc�\rƶ=\u0003��}��xo�iv�(\"��\u0003\"�J\u0000�͌��w��q���\r1\u0012�KF.�N)����ʥ�*�ϳ\u000b~+7\u001fJ��3UuI^�'I'�І@�\u001c���+ǘUG�tm�A��ef�%�MX鳻y\u001a��\u0006e��v�F����S`Oe\r\"��\u0017�:z?״�{Ui!��Cn��%��}\u001d\b�0���\u0007�ȇ���H�\u000fT�'�#��\u0001�*��D��A!��#3O퇭\b=by����Owo\u0016W�p�\n��>���\u0017�Պ�\u0012�I���A-�\tt����Ub)\fd��\u001e\u0015-St\u0014c=dta8!���\u00016\u0007�G3\u0015T������m�~W/�q��a���/��1���4:^��\t��B!�G���P���L4\b�0��O�r��\u000b�z$\u0005�WL�_\u0019�ު�*����k�VnV߳\u0013\u0011�o֋�\u001d���T��L30�X\u0018�\b ��a��<�Ha���l!s{3+�(��\u0001>�ʖ��y\u001eMi\u0007�5u/��#\u000e�灛\u0004��A��\u0018����f��JVÕ���x�Tiq�\u0007�\f��\u001e�_�󜳏\u0015Þ�����\u0013ΠɅ\u0011yyT�4Z�y�C�G������.C��\u000f%�K�\u0001k��V2�\"l��3b��gw�kꍣA$�\t����\u0016�\u0001v���\u000e�n�<�z�\u0011\u0016��\u0006�6��\u0006n\u0014��z�mf����g�_�w8!ӯ\u001e\ra֗���%�\u00014:\f�D~��%\nv�=�Pi��-�t(t���^)Wܳ ����q)\u0004�ϔ\"�|����B�T��3�\u001c0\u0019�c\u000e�n�b��|ep�\u0000�Z��\u0015�\u0013r �\u001a6U�b\u001a{8�~��p���\u0002�r����K�'�Xžְ�[#4l+�0�֬+��/���\u0003*�T!p��x)���g�TѬp�\u001fj\u001f��K�읜��Ӣ�}�N��%(ubN�a7�|�i?b��\u000fo�LVV\"�:O8f����\u0003!i��3�n��������߅�\n��A2�\t����}��\u0013�\u001d/��~��>n�<\u0018�1�\u0014\u001b�f�K\u0013/�\n��N\u001b-�\u0010e�4�\u0012�!&�ܯ���ـ9ňE�+\u0004\u00012�\u0018\\‚y'\u0007�\u0015|b\u001d���F�s;8��i�������Ʃ�H!�q��ٔ��\u0010�\nS�f�������M�\u0013\u0001���H٘��f!^\u0018���!��}��\u0016a���b�H�/,}��|�>\u0003ͬ��v�\u0006b\u0012ϝB@��\u000e�P#7�\bv�7�)]g\u0007\u001aa\u0006$\u0012�|-%�V�\bwE\u0017Wfc\u000f�7]$q����q�\u0004dv�F�ߛd�\t�?*��\f)ul�,�ד��+\u0001\ns��F�E�PT��\u001a�vO4�O=�\u0010�EC���?�fҭ~�\u0005[�\u0018\tŒڍ�A?�\t����@���*\u0001I\u0012@\u0014\u001d9\u001e\rZ�IrMq�����\\\u00157��\u001dE�[\u0018\u0014\u0013\u0015\u0013�1\u0018tW�\n'��1��>��\u0017��f�ִc^#2�\f\u0011cAUR##To2r�X\u000f�䨵�\u0014\u0014ɼIШ��\b\u001d���Mji��t�}$|\u000b�H+9�\u0019z�x$����P��5\u000b�5M�\\\u0003��L�\u000fw�\u0010�\u001c|��>R$ܻ�:�\u0019`����N-\" �\u0004��0��\u0006�(��44�\u0012\u000e�\\\u0017I��P�x\u0007.i&<�M�*�S~�mM��{mp\u0019�\u0012,�\t�\u0006\u0003ұW��\u0018�9��|��7�uI/�7�߈�/\u001a����-\u0011\bdF$K�g�g�DL'��ӓsK,�ܚ3`��q}�����\u001fE�ؖR���e]Ո�z��A2�\tĀ��0��H�3��\u0006\\�`��`�p*�?�q[�O�0d�\t�m\u0006��\u001aI\u000eOk1��vH��\u0006zYM\u001a\u000b\u0002�'@ƹ�\u0017�s��H���\u0002\u0002���k��\u0004��_ƽ�\u0012����(��?�&�Ѣ��\u000532�Bd\u001c7�h�?ҫ�\u0004��\u000f�����@�p�2΃\u0001Hf,\u0013-�ʞq\u0006��U]\u0017D\b���U�:��?�Uk��R�aTe(���M@�5�?��l`o�\u0018u_��+��\u0019��(PDtA\u0003x)���n�?���\u0006��D[�<&j��N��2�\\5G�\u0005���oz�=il���S9����V]�?�jAB��/���>�Ӿ4�3u����ǻQ[)����j}�Aā\t؀�|�B�M�d\\m��[�\u0013;VrV�|\u0012��r�\f=\u0019e�~pA�§A����j�-�\u001e�\u000e��F3�F�%bU\u0000^2��B�\u0015�LS\u0019��Ԏ\u0004�捒y_�8��r�{\u001e�2@�#`#N +7أ{%N�\u0016�k��\u0014^6�)\u0000%�4����\u0007KL�����\u0005ւ�`-��D��7pڠٳ!`r3�\u0003]����\u0018ʫ\u0017\u0019�\u0018W�H�Y�\u00185t\u0006�\b'��t����+�u\u0015�7O\u0003<=�oos�̓��#eg#�������-\u0005���\u001c�7�.�y��\u0006�Pcry\t���\u001f3�f�\rR�\n\r�3`��&ߔ�v�2N\u0002W˷P�-jP\r�+!f`�\u000f�\u0003��*�\u0003.�Z�h���\u001ank+������S`�B5ȹ�8�\u0016���,�\u0019[~$�'3���\u00184�\u0014��_\u0004�0~\u0006��a��Ó�r��z��.����{\u0013Y\u0003V$�Y0\u0019sc�,��\\�������Bґ�����\u001f�\u0002YZ�0\t���]�W�'\u000eV{9[\u0007�\b��\t��@�\u0002N2e��;Ԕ�$\u000f�\t�A\u000e�\t��-�o��� sȡSZ�j�\u0019�T��\u001c=\u0017\t\u001a\tG+Ɠ�\u0013�#��\f\u000f�\"_\u0005���5�\u0012�Ʒ ']}��|\u0007#\u000e��BV\u0002��,浦���\u0010;6��!�\u001c�S����睻��'�S�؋�Yc\u0000�y�uҍ��p&��\u001ef�:Tq��n\u001e\u0019\rϯ���x\u0012�3�����0�T\u000f�C�)>jd�๨\\߂�RBM�\u0017@w�\u001fҋ3�#(&�1A9��^�*�\u0007�\u000b�\u001c�(թ�e�&��a�\u0018�8eݎ�\n�v\u0015Z�GX���G\u0014s�4ߡ�8�\u0003���\u001dY\u0004l���O���c�ܹ-�E��x����Ab�\n\u0000���\u001b�@\u0012�'�|�#�\u0006;080B�v����s\"\u0018=�\u001b�ۖ�4•6�;�\u000bS\"�����S�=��9�\u0000ǝ��\u000b��^�OY��\"+��\f`[u��@�uY%󲒯e�M�Ws�!|���\u000f%���UM���P\u0012��HLΜ���$\u001b��Wtc\u0004�L_��ٲ�\u0004\u0014o���T:���\u000eف2\u0005�e��or�\t&\b\u0018�\u0014���������W\r�\u001b֋�+eԺ��'߬��kg$J�\n|_$��l��\u0002��b�|��*�w��ls�\u0010�\b�\u0006F��G���T\u001ck\u001e�v&�N\u0006�\t�Àu\u0015\n0žx�>\u0006P��|�Q�\u0004\u001dOZ�x���R��\u000f!V`�&�k�\b&\u0017��w\u001ae\u001e�\u0019�C����1{fy\"\u0002��4_\"dfg�#p틶ԓե,�F�\u0014'Z\u0001\"��@�\n\u0014��0d�\"�%4�������m��\u001e~�\u0016���\u0005\u0005��(&�C\u0011���]��R3X��D\u0010�\rl^\u0013`f�\u001d\u0014ܡ�1m��\u001c��\u0006MƉD��3�L�G��\u0004%H\u000e��E߃�\u0000�`p��w*��\u0004�V��� �\u0015:<�D��)�\u001a���ƅ�m5<��\u0013 �,�QVV\u0001\u0001\u0018@T%�b�\u0011\r\u0017���'�\u0012\u0011Ð&\u001csB�s\u0002Va-��\u0000]\u0007���32��k\u00165�G\n,{�����\u000bV�_�8sQ.|ˋ&m\u0007ܯ��.�Π^�=�%\"nHm��'�W����@�\n(��L�\u0012���\b\\����y�w\u0005ev#p%\"T\u000e�V�H�a�\u001a2�zn\r������\u0018�j���/U?!V�\u0011T�8Ĵ\n���B�n���\bmj7I�|�U���o���c��酓=@\u001e[�\u0011!/�,R�~�`�#�0��G�ﻫA-�+�\f�\r�\"�!\u0018^*�zG�\u0016�\u001f����Ű��͹;�喎%6i��.�龎&3A\u0018�}���l� w(\u0004�\u0005Q`C�&�\u001c\u0018�_\u0017��C&�\u0017������\r���l��+�\u0007��\u0010:�@�\n<��۸�G�z���i�Eםb�\u0001�Y���(\u001f\u000b�1�g�� W��w���\u0004)�5�~e��%f�6ozۣıv�\u0005\"e�>�8Z��*MU��F���T\\d�O*6�\u0010�\u001cls�s__��%��_#\u0005��\u0017'���L\n�6��,j��\u000e��\u000e�\u0000�\u000f��(eHR��a'��o�}qw�Y����� ����g�Fmz�\u0016z�\u0005pfBp\u0016O\u0012�� U�T�v3ys�N_�(M�%]�\u0010�2U�x9\\�\u00153n�\u000e���ٔ\u00033v\u0002\u0016/���A\u001c�\nP��L���O�\\�ˡKyF>u.�\u0016P\u0004㛿5\u001dؠ��E����\u0006'��\u0012\\��W�aM\u0014��\u0011˷�g�\u0011N�9΅�eg��t%��l\u0004�9\b����\u0013+��\b\u000fz2��Y7N\u001a[��k ��f�V�\u000b��\u0004�\bN�R\n&��k��@�\u000b\u0011h������\u001f]�=lS\u0000�\u0018\u0019,'��\u0003*\u0006ؑ�\u0013��i���T�x�ތ�@�F#�\u0016.�R9�i\u0000\u001flf�f䈡�@�\u0015=�$i��D.�X~ݘF'��o��s�i�2��^��\b�U�3�J�-b{V����\b�Δ.���\u0000&a9��-0v3q�O\u0007���\u0001Ċ\u0004��A�3s�ˤ�A;�\nd���a�\u001f*�B>\u0011�b����\u0002,��@G���\u001e\u0012�\u0003M�\u001c�W����-\b\u0017f��\u0002΅7Qz'\u001b}:�\u0004\u0003g!s\u0011^೼\u0000��dPT\u0013��uzA\u000f���Y��}��JP+(\u0002�+��G\"�KlNr%���fw0T�ù�y\u0013�X�pm\u000bc��3\u0016\t�l�\t�~N�\b's�o{����m�\b�Ķ\u0017�;N\fV�e��5賽��jI3Z��P�ZB\u001c�s�q\u0001�U?^j\u00119?ɠ�un�\u0016c��Y�sS\"Az\u0016�&�ڽ�������*�� ��0���.I3[v\u0017���\u0011\u0010��\u0004w�οք+�5�\u0016:_��I7���z$���?]��xF�#\u0016u�R�)Ģ\\t�M���@�J�A�A.�\nx���b\u0005$��e�V�^f\u000f�C�O�ӏ�p�.<�\\\u00111�*h�W,�\u001aE�?3�/y�r@ᄈV����\u000e\f\u0018��o�_�(\u0016\u000fD\u000b�v�ES\u0019-�>/��T��\u0013c�s�|\n��G�\u000e�y��\u0014{�����;ӭ�\r����n��~i��D�+OOJ}'$@>ԟ��3�a��69A�RI^\u0012-ySB\u0016\f��\u0003*�K5J=���p��O�N\u001c�\u0011*�;.N: sE���I �c��P?�Z�����Pt*0��nh�u���nV�d\u001e�{��QS\u0018Sٽ����G���eǒ%F�>\u0005A\u001eaA���;N:�\u001bQ|��Q�\n�v�����tGԕ>�\u0017i�����U@�A+�\n����b\u0005(�>�\u0007)�\u0000�\u0017Ƒ\u0003n�\n%�(����Ķ�\u00139��l�Y6A�,E\u0007\u0019�����D�z�\u0005})�W@N�H\u0006-\u0018�,�|�A�@%�\u0002�D���\u0006O�\n\\�w��\u001b�~�P\u0015����;�G�=w�\u000b5.\u0005l\r�,������C��_\b��-�=��wN��\u000b�\u0019�\u0011�n���3\u001e�\u001a�r���\u000bRŔ��\u0014\t�Y\u001d���\u0012�\n��uϕ�]05\t��\u0011\u001e����4����Ȍ}\u0007:�7U/~/\n��;\u0003chտ�4\u0007�`&NS���[��22\u0007���7���~\u0017B̭Tg\u0005\u00036�O$��\u001f�-����/Q���Z��Z�\u0007'x��'hć\u0006��\u0015@�AM�\n�����\u000fW��59��|BS\u0006��\u000b�F�2��١�T�\u000e5��毖�ـ�Ȼa#i����ɦ�5D�قŧ9��p�s��\u0007�\u001b��c���񬢉�\nl\u0011���'��11\u0001\\*��@\u0012�Э\u0006\u0011׬mx)$�)�5%>`E�yL�&�9��E�\u0010�/1�C].?q6�\u001d�\u0010�f�\u0001��<��4\u0006�,2��4n\u0015>ǚ\u0004j \u00168�H\u0016\u000f0Ǝ\u0016Rj\b&\u0016�\u0004\u0007_��]\u0012w\u000e\u0003��\u000fm]\u0012�Ÿ��.���>���\u0007�\u000e\u0014(\u0004�s93\"�g�gX̠�\b�^{���Eg\u001f��\f厲�4=����\f��uƅ�\u001aA�>N�\\���5bsF���BJT+\u000e;\u0012\u001c\t6`\u000f\u0012��\u0006�4d6�KZ�ߞ+���)���{ \f?�@�Ap�\n����b\u0005%\u0014\"�M�6U��0��D,!��K\t.���[�|\u000b����\u0017�ϩ\rr\u0002�z\u001e���@�ir���\u0017\u001f�\"�\u000e��g\u0016�2�8�`�Pۤ�p?JljM�N��\u0003��S��\u0006hn2��'�D�)�o��R�b��+i�k�\n�����\u0005_�h\u0016W�$m�`\t\u0013\u001a�R4^i�\u0010_籨�\u0019\u0012����\u0017�\u001a���J{Ә���W�?��\u0003�i\u001f��]j�vs>\n�i��VÜ��Y�J���\t��M�#\u0014����m_z՛\bw����\u0001W\u0016G�\u0014q~2�����H]����\u0004��!�/�'�=��\u0007Ꝭ��I���Jbόچ-g�Z���\u0010|MԳ�L\tʦ0p�.�B�\u0019\u0019juimp���8�������_9Vݳ=P��3YEL�͞S��yͨ�Z�R-�� ��\u0001��+>�4���@�AR�\nȀ��\u0014O�y\\���Ol]p���C�\u001dā\u0016���VFO��X�z�]��\u0016.�\u0019�/�b�I\nS?L\u0015mY�tE�������(G��� �y�\u0003��Es��mL\u0001�m��-Ξd�g��h)�V\u0005nƁ\rtpNV�\u0014G)\u00141�uR8�!�$���b��4�;ȹ��E\u0018`զ�P�Q>M�\u0013QoW\u0013\u001d�\u000b�!s�L7ʪ�~�e\bC��G\u0017��C<��/:������ə�\u001f@T\u001f�|!U����l7�\rg��p���`�\u0017F=ҫ��h\f��]�ݷ���\u0016��i�աJjt�6���;~y\r�\\*5㔅\u0000�?\u0006�a\r\fF�)\b,�8a�\u0017\u000e8\u0003�^m�\u000e�\u000e�g�#?*7���\\\r�\u0004�:�s��J�H\u000e\u001fh��2\u0001�Z�ӭ���A�A5�\n܀��\u001e�gt\u0005/�2\u0013xDD��3�\u0002$�h<ϯ�ixH]��\u0018��g\tui�8\u001d��n\u001b7�\u001aN\u001c\u0002��%\u0013\u0005��]��$\u0002�.sB�:Po\u0006��,l�\u001ag1f���$�Q�Kx-�z��}�!�VH.�\u0017��� �\u000b2!�\u0003�-�+Xú�_99g6��0��b�����wE�~ \r\\CUڦ�R�?̑�\u0010ј�\u0015�jm\u0011�Z��԰��\u001a��>P�\u001a\u000eա\r�'wg�c軣����*[\u0000�k��H��\u001a!y'����Nl$�c(2!\u001e�?\u001c��\u0010��[���xK��P\u0015�!7��.A�x\u0018��Ѻ�6�;\u0000>O�,�\"�jRs\u0015( �2�6�8����R�\u0017=\"7\t�δ�:��B�AR�\n����a��pj=�\u0014ټ�\u001c~�b@\b\u0000�\u000b�MT��p�z~P��Ӣ����q�]r\u0019(�¤�.�\u000e�\u0012�;��*\u0015\u0006K�\t��R�DG�\r�+���b-\u0004�ǻK�B�v������S0���%��ס\u001b\u000b������rlP\u0003�,�w�\u0017�0,�\u0004\u0018�\t<����<`�JgL���\u0019p|\u0011߀Ժ\f���O�\u000e<�.��Z=��\u0012B�L�\u0001�\u0013=��\u0010�LS�\\�]��q��,���.I��\"�\u0014��e��y.�%���-lU�E��}2�\u00184�\u0001^�צ\ns��s\u0015K\f �ܗi\u001an\u000f ��3{{�}���!�� _�f�R`B��k\f���4��f7��:�pk���h�Y��X�}�\u0006�5�������M@(�\nP�c�eM��C�A;�\u000b\u0004���a%�'倰���\u0006����ŋ������X�-=���99���T�;\u000fͻ��G�,�e���sB��V�p����y\u000e?LՌ����ռ��VXk��h+cvՅX5�\\�x(�\b ����\u0010�a<�[����/9��\u000e\u0019\u0006�\u000bN�j>�\u001a\u000e�?�\tM^O�w\u0004�3��\u0002\u0013�ݞ\u000f�˻���˭Ё\u0017��\u0004�c\u0012�!��dG��8+K\"��L��C�[���\u0017���\u0007e���y�?�.�\u0002�_宝@\u0003=\b���/@\u001b�v�Y?�tmt\u0005�vBj�\u0014�\u0016E%�ջ}�~��-r��������Y)�X�6��~5�U�\u001e��Fvw�E\u0012R��\b'\u0016\u0016\u0003O\r�?�y\u0012���p�1�j�AB�A-�\u000b\u0018���b\u0004l\u0013{�o�C{�X�b[��$���C��#�\u0006�М�����x��™��x�1$�Xb�\u0011O�C�D�E@ʢaH-M�%w�\u000eن�\u001eS�8`�\u000e*W\u000e\f�U\u00025��\u001b�MQ�k�\u0014�\u0000K*�D)��x�=�\u0000�\u0007\"�����+��Kl����D�ýO\nr8x��LG������]��\u0000\t!��\u001clۥ/�wH��\u001e\u0007�mݞi�thu�\u0017ʙC�\r)\u0017Z'x�0��S,a�=��*z\u0019K�,\bD�{���,�⏽}_\u0013����we=\u001b\u0011�\u0017{h\u000b�{\u0001\b�P4�P..���l2\u000b\u001a�\u001c��*��\u0010.�A�d��g�\u0006���\u0015t\u001c��R(s�x[�\u001b0\u000f�o��bG�S�1�P\u0019H�A�LjC��\u0019�E9i9r�(1G�o\r��MK\r\u0001�߀��W6p\u0005*L�b�a����B�AI�\u000b@���c��k�%��di�2�g����`�顈��d��z+�Z�0)�@�!��\n'9bC^���f�]y{�Q�E����~%k\u0014Y�@e\b���\u001e\u0000Ae9�3\u001b�\u0015\u0007z{\u0010ۣ)��Sǜ�\u001dA�\u001d��j*D��\\Ba\u0016ܢb�rʈ\\�\u001a��%۲5��\u001af�;��\u0011ÚnRۼ�V�i\u0017ܰQ\u0001H��\u0012t\r�n��\u0010��O.��H��\u0019I���$�<�e�+\u000bD�\u000e}~Uy5��!@\u0019s��b� �\tru�\u0007��8M\u0006\u0000\u000b����đ0}yh\u0012�R\u001f���\u0015\u0002�n��L�=��+�_+�,ى�O\u001f�Z\u0005L(���\u001ec��(,�w2�M��룽�a�mR\u000b9���!Y��\u0019nIKx�Ѷ��H[���sv�)ãA;�\u000bT���c]�<\u0011헦\u0010m���E���MG���JU\u0000_a�S-$i\u000b���\u001a�R]\u000e\u0006 �$�/a�8\u0014,�4����@�\\�S\u0012�֪g%�u7\u001e/�ǯF??�~ESe���DP�T�?/cJ8ٷ�`X��\u0001؁ܢ�))���nFo\u0000\u0011�,\u0010\r�!�l\u001e!��ܿ|\u000b��\r\u001bW��\u000f�E)־U�w\u001e�\u001d��\u001e�\u0014QR*cr�\nV֢*�ш\u0012<�X;�-}�s��<��f���ԙC��\u0014-�2?X�`��O����jA�ȿ\u0000S�\"A��q��o]\u0012�6'��D��w5Auyű_���Z�\u000frn��X\u0005�M�<\"fN0F��FK�c���H҂:����nn��C�-�ʕ�Hi����$�J��~Ȝ\u0019\u0001ƣA/�\u000b|���bD\u0003�\u0013q�3&�'����aCKv8x�(,s�N�o-+@\n�\u0013ؔ�y\u001e����S�\u001bH�]-FQ�\u0014q����2��SxTw|6����;��m](��K��Q1�}|\n\u0005#��~�m��U�kw��`ӧ5���\u000b�]H�A�1�O�5dc�x��7F\u0007�P\be�\fL.\u0012�\u000e�?\f:ˠ�y+L���XϖJĦ�з�Uh�K���\"\u0015HQ��`�\u0017��7[��z�%�!T��\u0016�\t��x\u0005���\",�������z���\u0010�7\n\u0018���z��Y\u0004=�L�\fz��l�c\u0018`�\u0000k�F���\u0019}c�M��F5�H�a��d'�k�k+�!�v�N#* #�\u0013���AȣAA�\u000b����bB��ӥ%��^\u001ba\u0005(\n�|ɩ�ޙ%^�=̞'k���U1ߗ+�+�H0\u001a#�Uإ;p\u0011>U��\u0013s�s�\u0013^�\u0001�*�F� �Ok\u0010&\b\u000bVBe�v\u001bCZ��A�Zy,�(1�\u0002^�\u001d�\u0015(\u001c(���?\u0005'�����L_����G�ʾ\rf���!\u0014��\u0007\u0012�8\u000f��\u0015������^]��j�\u000fdL\u0012\u0001��\u0003\u001f\u0002�=�c�+�Mn�-=\u001f‰3�\u0000��\u0016*�Xieاˬ�a��\u0001js\u0005i���|*��\u000e6�Il�k��‹�\u0017�ȯ�J�gb5\u0002��5�`��7\u001bn7>��b[�\u0003\u0007ӳM�89rr9�a���U\u001c�\r\u000b���;�a��inH�u\u0002z�0�oP\u0014�\u000b�qF\u0005��]%ɣA7�\u000b����c\\��\u0000�>�fͯ\u0015\ry\"\u0019���a�j_��)��\u0010ٵ��\u001ak�T��?ģ��\u001f�a?-ϋC\u0003G@���BG\u001b��B�ς�\u0012\u0004AK%�CĊWß\u001b,�y�\f2\u000f0e��\u0010�t�����xL5�f�A_�U�0��r��o\u0012眷71W\u0017t�\u0014�+Q3�����Ci�{iab!`;$�f(���`��\"\u0006�|�P���b�8\n�\u0012�)��Nn�>\u0003{��&p����\u00136�����z\u0018�i���t��X�i�\u0000�\u0000�\u0012�y�8k\u0016)і�`)e`P�H�(\u0003�4^\u0007:\r��X>)A��\u0005),��j�\u000b�\u0017�C�F���K�s��=�D|l*ˑ�\t���ߣ���_\u0012�����$ͣAD�\u000b���1���;\u001bc\u001a\u0011�D>�]�z��A�\n6�K���*Ӯ�݌?\u0019�:�2?y���٬��_j����,B\u0010 �\u0015c{w��xС?��\u00042!����H<*�7F\u001a����\t}��`r\u0012:�\u0000�/�\u0011�b�\u0003|�\u0001\u0004M��1\b��7V�Օ\u000e#yw�\u000b��7^x`\u0002ϟ\u0007Қm\u0003#�&�\u000e��\\�Er\u0017;\u0005�����7-Ո�j\u0015Q�\u0004\u000e�y_���MS����ESkP@�����\u0017�\u001dȂ�zṢ[���A=ln��U�\u0013�\u0002\t^ng?�\u001d���3�-�\f\u0000H��3�+G�c�K��d��\r8c��\u001c�aE^؝\\\u001f���\u0012\u0016��=F\u0001\u001c#_��m�\b�~��:$��N\b�u��E������-k�Kk\u000b\"q\n�sF�\u001d@�E��\u0017R���15�E\u001d>8�R\u0019��䆬�\u0002\u0002��+��Y�\u0004j\u0012��H\u0006ٽ�&R� �g��\u001eq��x9��̴��O.k�b\u0018\u0016;[8\u001f�5Bȶ��?hSb\u0004V��\n�f�8\u0018[�\u001e#\fn0��:ìY\u0003v�\u0014@��%4�6����勉��[O�a���p��\u0005���\u0010��4f\u001c\u0010�BI�s��ʋ�\u0000�MU\u0013��]�\u0010,�\u001e��\u001e5m�\u001b\b�0���]^zx\u0002�`o�@�V�I���B�piϜ�%��t[��A;�\u000b����(i�\u000e5D�,=:����y\u001aę-���C'�L.o\u0015�\u001ci��\u0002��Hh;�pk�\\\f��f�1�/�HZ�&�A'�_�Z���e5P���uksZȱ�p�ܯ�ܰߘ��m\u0017���.�����04�\u001dD�\u000b��+���w9&�lv\t�5d�n\u0001\"ı�����f\u000b�\u0019\u001f�4�?��t��ɫ���C�\"�n���.9\\'5�`���hڌ�4C�\u001b��c��p\u001a\u001a�`��SE�,��\u001d�X��A���\u0007gD��{��+���4M\fӰ����\u001a���&\u0012?j5AJ0�?�-��￘����MS��\u001al1\"\u0002���q\u0004Ļs��;��$��V=)[�\r�\u0007Un�b\u00045��o�z�#�\u0017b����9Q��@,��\u0001G�eR��F�DClsGR��v�[\u0010�\u0007m�\u0013��X��\u0014IH\u0004_&k��A<�\fD���i��m�\u001a���\u0014=�M{�\u0002h8Ih�z;�+9�F��\r|��*�7\n1����;i4�y��\u0018E5\"��y�\u0006I�|�$�\u001b��-l��{�*C��2��$<�ؼr�v\u0014��7�\f\u0014�9��@\u0003��gs\u000667�{�9Z�\u0019k��K�'U��\u0005k�/\fPb\u0012���\u0016��hҀ�(��\b�\u0012t-ؾt��&ۥ��3#�Ժ\u0002�Q2�-�\u0000Ә{$#�oҷ\u0015�Y Of��A*����#�,���\u001e-S���\u0019��[@z�\u001e��DI]w{���\f\u001a\u001b�\u0003�6\u000bL�b�n�J\u0003�\u001c\u001eJ'|!{\u001e\"$Y�v���O\u0002��7�\n�?�#a��\u001c�q\u001a����yCW<�LnKz�e�6�bO�fJs�l�A8�\fX���m�_A�]@'�\u0011L\u0010��\u001f\u000b���d\u0018\u00062�b�=\u0005��0�O\u001a���\n�����\u0016\u000b�^��A\u0000�;\u0007\u0002��P��!�o\u001e��(�=\u00068\u0007�����ץ� �,�$�Vͫ}%I�\u001ax?\u001eB��A\u0016o0\u00017܇.�����l�9�\u001c[�|�ˑԨ'\u0002_3�u��IM�\\Q��a�\u0003D�#\n��\u0011�8=\f�\u001b�qߥ=�ִ���ݟ�}]���\u0016\u001cJA�1B;\u001e��\u0005��˥\"��>Ow��}̜Zx<��Y�\r$�#�D\u001b�H��=�N\u0004\u0016\u0019q^_G��nJ�\n\b)Oў��\u0012-��m�)^\rk�2��;\u0007\u0017\u0012�ϗx.�o\u0005�#�\b\u0015���\u001e�Dx��\u0003E�z(�����AW�\fl���x�\u000f\"\u001d3���6E\u000e���Ĥ����~����\u0016+��\f��E$ٰ>u`;\"@#1����7��*��c��o�V�\u0004��!\u0017_[�\\Z\u0003�󎎣�\u0003G��K\u000e�HC\t�S���L�\u0017�<\n�j�]��b����'a�zj�\u001f\u0001\u0014�Y�o�oS�Q���\u001a6];Sz>\u001b�������� j1\u001c����Х\u001b��Tn;I�Q#��L\u00196X�FbigW��\u0017�]�30MQ]�\t���t��ڰ��H�k 8y\u001d�HP-�����#\u0014���WB�3�,_46r�Ɣ��M�%��S!t󲤋,7š'[�\u0014A\u0002\\\u0006;|�ER�\fo�uh��C=e�����s�$���6��br���v�LY{5⫗7(�g�\b5��.\u0012ݲך×/Д����A\\�\f���۹+�+�p�\u0012Ǩ��\"K25٨?p�X�5\b�^�/�(�Q˶ȃ)�&� S(F^\u000e~\u0007ZM� MN=58n��g8��\u001c���\b���z}���\f�_o_G�K�G\u0012�<\u0005/1\u001cm-��#Z������F\u0019I@񇧮Ʒ�8�1�ΐ����\u0016�GE�۪}��q\u0019���\u0007h�<$D3ִ�{�Vx�Y��ZC��b6b$��E\u0019��\u000b���\u001d1\u000bE��<3rܲ�\u001d�j�#\u0014�M\\\u001eK\f�\u0007��P�#߼����P��u��\\7��4���\bK�\u000b\t���M7�a����<\u000e��'ß]_��sa�\u0001��\u0005b���Q�;�I�`��*�n���M*o�{�Ĉ�36�#\u0015�\r�h��ǻ�\\]���3YG!$I1�7<��=�U��\u001f$\u0004�AO�\f���۷��ޡ�\u0004g�y��\u0012h\u000b�;�,�v|\tN�t\u0003�4T�k8�h�y�G�Y\u000b����bO�(�\u0006Sڱ9\u0005�\u0010����э�`��\fK?X�\u0016y�T\u0006.خ-�wךqp5\u0005V��a�Y�d�vČ�tT�7���Sq̯1*\u0010e��{����~�ꨍ�R�\b\u0003�G�a���B�/��<מ\u001c\rp�\nI`|�T߽6ңGg��UI���Yʘ��\u0015\"E�U?4A��9�d�n��I[���\u0014�fP��ɥy�>\u0003�_[U��?Z'\u0004���Q�>��A\"ʆ�����\u000fn\u0006{�C\u00137�9��Y\u0014m5��\u0011Jȸ���\u000b^ 3qG\u001d\u0018���Y�]���\u000b\n��������!U�9~4 �\u0011�\u00177�u���]\u001b\b/n\u0004�AD�\f���ۻD�A�\u000by�uWxz��٧�\u0006�\u0014\u0007w�؀�.&\u0013f��B�\u0006H1���p�\u0015�0Z��S��l6��1z�\u001c��߈\u0017\u0018\u0001}|�A��Y\\JQ2:\u0014�ش�Ԝ���`�Z��si.��t�R.�#p�Ԇ\\�[��e��7}��%����FZ�\u000f4'��0�vj%�({@�Z�Q\u001d���_l���&\u0000��[�?��ݓ�#^ѽV�\u0004��AK�\fЀ��wr���߲ƒ�Px��[i���u��\u0000dCT��=l\u0001f\u0004�5�Q<\u0017\u0014\\P��Ƃ\u0012��Ş��\u0002L#}\u0000z��)\r�si�G;�&]���\u001f�z��ݍ\u000b5щK5��Šģd�N�TU\u001cST��M\u0012\u0017\u0002���_I�K\u001b��`t]��N%�_m�K�aL��\u0000�]��i�t��L�@H�u\b\r'���\u001b̙��?=���e���,ߗ�l��=-�&**;�b��_o�8�u�����_�di�L ��/T�\u00075�\r��9��m�~�L�1�6K3\u0016��=b\u00154\\\"�\u0001�6��1����0�o\b\u0016����J�\u0011!@3M�yjg�J\u0015�ƈ�lx�c\u001f��\t4�\f��(���\u0001:�\u0015�x�\rB�p�x�X���\u0018%9:ג1x����D���{P6z��\u0012ë��X+Y\u0006os�\u000bDI�:��,B��G�À�IC'�\u0007\u0010���\f���\u0001M����\u001c\\�(�ϙ�}DG\f� �5ؗ`)�%!EO1\u001f'�0}hx*�JF����t\u0001���\u001eM\u0006��|f\u001d��\u000fo'n�S�\u001eO(̊�L�\tI�d�~M�[U��d��\u0000�����Ĩݾ�\n4�q\u001c��A\u001a�\f���-��XA�l�L١T\u001b���r�����<�\u001f\u0016S�Bp��>���y�_\u001c�7޽�\\��������K��\u000bf����i�2\u0011�\u001fy�?�#��8\u0011\u0012���\u0007�´�)��g(���9\u0013][UT\f-ƪ��GՓ��B��2�38�\u0010��Z9@�Ai��iӰ�K:\u000f�ɯR�[�Q���4�=LJ��\u0004�.8u\u001c��Tl\u0004o\u0006s�M�p��k�\b�\t+�6���\b��4/\u0015�q?�)E{g\u0005H'��\"�\n\u0014F|�}�\u001f��\u0019�a�\n%>�\u001e\u0002����'~W\u0011~?%gW\n����h����\u0000\u0010 �ޮ�m���\u000f��T5�A4�\r\f��M'Q�=v�<���#8X$��oܰ��K]�qC�oNX5��(\u000f�\u001c\u0011�V�o��e�\u0007�w����m�\u0006JK��\u0013\u0011���\u000f9\\��\u0010^��~&\u001e�]�m��\u0000���f.I\u0015}�Y�tn0�ΧZ8�?�%K]\u0015]w\\곴<�MT�5\u0013\u000fa\b�Θh��4���sVjt�S��C�7�\u0018a]�ψ�8���HYAt��2I�Cpv\u0003�ؐFé\u0005�D&]į\u001b���K��T�QC�UY������\u000e\u001fG\t�l\u0016���~����w1�rN������s�%���s/U�P�\u001e\u001fğ6�_�T���\u001e뛋\u001d/\u00050�>��X�\u0007\u0001y^����ƭrs��k�O��bN*G�#N��I�As�\r ��.�~�wPc�\u0002�\u000b�H\u000b7��P����|���+S`\u0010�\u0014���׵6l}�[�\b-x�Ux!\u0003\u0007�I<ŚV]d�Cx��Q1�\u001f�d_�\u001a�6�\u0001������b�Q�s�\u001f���5��@�\u0000��\u0019�\u0019��D\u0018R����j����wޗ���o1���O�/\u0019��e*�v�Tv#��Y�碇\u001aM\u001dK�i��\u000fh��X�3���p�n�H�\u0012��_׳4�Tv�y�����<��v��|���UL2��\\��x1�O-y�\u0010z\n�F�:��C�u��Q��\r\u0019bD\bX80F�Y�'�gyc��\u000b��DP�R��,��+�����\u0012v�$\u001b��ω)_�b�c��q\u0011�\"IT�Ծ�_�ksm�g߯��YӀ\f\u0004������'lGT�}\fm�\u0018ۖ\u001c��\u0017���9f���(�뾣A��\r4��|��\\Ŗ������F\u0005\u000f�ɍ�7���{_�@6�\u0012\u0010N�()�3���\tɚ�\u0005��{�\u0017�X\u000f��zi��_�oN\u0018�q-�ู��\u0016���,��b��V�\u0017 \u000fe�Q4�I�o]��L\\I\t��/�\"� d\u0019�\u001a����\u0000�^-��qDVx�\u0005m@�m��,�\u001f)\u0012���]��#�k\f��rȦ\u0014�\u0007y\u001c��o���M��mU�́I�dK�\b�Y\n�.cN`s�^\u0006)��NG���]{iּ\u0012W��h�_'\r�G\u0007t*�3\u0016r�[p\u001a;��V����\u0010��e�}�Q�_�\u000bt��M�\u0002k(�\u0003R>\u000e\u001f�5��=�!ݘKt4�̜rFU���ɡyk\u0013��tC\u0000v�\b�zH�B�B�e��:n�X\"Ay\u0018�p��LWn�\f��&\u0002\b�[>�c�o�\u001aA�₞ ���!L�P��8\u0019\u0017�3�2��UD�\u0004\rlZ*�՗��e^\u0018�=T`�\u000b�v��r�H|O�y�\u001b:*�\n�p\u0005\u001e:\u0017��\u0011\u0012-i�ک;\u001dr�-�F@�\u0001�A �\rH���{�\u0002�o��\u0007�\u001c=�#%\u001a,�d�7�u��c\b-zA��eA�\u001b\u0004���vU�u��S�1��Λ\u001d_[�\u0005�z����!ޢ�˳\u0012Mn\u0006�}E���S'5��\r�4Ӡ��$�uwJ��GR!�(�~W����:�!�\u0012V}�M���\u001f�����1�Iv.�(c���5H8!����P]��\n���#X\f$���:���V�k`:��G\f���^�\n!4�t�[�9�1��\u0000��Ԭ׷��?�R�^��������F\u0002��G����gC.vo\u001dE�;�&Π�W��q���_�N�>��n\u0002�]Y�����\u001d&�\t�g\u0019�q \u0010lw�\tΜ*�^6�֙��F\u0016��\u0000hi�����ؽ9�A�Zz\t��\u0013z'h�\\�ց�&p�\u000b��7���c,(f�-�\u001e,N�,�ͣA)�\rp����\u0011#F��\u001b�Ȼx�:�~��&�7K�N'#%��;._���2�y��e�,�S�\u000e�|EuJ�ծ(�{���\u0011hx���L\u001d�<\u001c��,�Ǐ�e2��\u0010+�\u00131������ϰ�=�t\u0000��F\n����9���,���C\u000f�P��\f�\u001a�̓���}(��4X8�o�\u0002a�\u0018;�(��ȓR�|\u0013�9�\u0006�\u000e\u0007E�_\u000f�&m�}�? \"j��\u0017=�*##��W~Yz��;<��;\u000f��\r^���:�g�\u001f9�\u0016����B\u0011��$�Z=�r���\u001et�3$�'�=��ĉ��p�7\"~����d>Ԟ�\"�b$�%ި쨓����L��`C��l�գB^�\r����I�ۗ\u001f�G`�\u0019�blhp#�\u0014(`v���R�H�G���a7v\u0013��c\u000b(��Q���c\u0003���w|��\u0007~��}�*���4<�Hs#x>�ar�Q�^�\u0013kDvO�#g�f�\u001d�;\u0016�#\u0019R��S��i��*�E�g{�Nw�=ݹ�s;\u0013����_4�D\u0002Uta������a2����������\u0001�o�\u0000�%�����L`g\u0013{��Z��y>�\u0015\rP�\u0007�9ƏVo\u0004�}��i���L\u0015M�z~\u0001���\u0000\u0004�JL�\u0015y{\u001b�\u0019�',E�}�8�����sE���~��&�\u001c��i�֑�zLn9h�.�(h\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005�\u0007�9\r��v5��\u000e���ҏt�\u000e��\u0010��c����\n��3\u000f\u001b \u001e�\f�j��4��aN��\u0018�x^�w�\u0004���\u0018��A7��܂\u0017*�7����>\u001b�2R���l-h\rs\t��Z~؏\f��\u0011�[��3)�xQq4m\u0003����wg�M\\K���G��H��Yh\u0018}\u0001p\u000f(���#;\u0004�\u0013f�@M\u0018Э�-�Ϡ���\u0005��̒z�t�FG\u0003\u001c�\u001ct�\u0005�r4�|\u000f\"�罆Є��~���rE2�A��\u001c\u0005�ӞM�\\l��j�ҋ�\u0011���\u000e&�G\u0012FG\u001a\u0001Tn\n߿��u��M�����5e,7�֏��Ж��\u001c/謀VU���7����ݞ�av\u0011\"n݀�&�+\u0004B��ʱ3ΣA\u0015�\r���/���\u001c\u0015�6y�:G�&�g��w�u\t�y$\u0014?�����\u0016\u00159��6�\u0014�|�'��\u0007Y\r�\u0003��o���Q\u0014�lWy�E�74@U|7�K��\u0004\u0018Et�BӊEd`x.�\u001f1?�\u001b��¶%xxO%$��D{�4��*I\u001a�\nc�nʩ脯=�g�\u0018�����A$\u0012v�H�;�bo+(�����\\��~�R8\u0007�Vӣ�\u0017�`�־k��m\rRy��E�+��\u0001N\u0018�e�_(��\nI7@��ʼn6lOCZ6\u0018J���\tT�S��\f��')a�ْRUdu�Ma�uR<\u0005���\\�\u0019��\u0004_�\u000b��E�><���A%�\r���.LR�ȝ�g\"�|n*\u001e��nT\u0011A+��\u0013c�͡�\u000b�v\"#���\u001c�\u0012�Ȼ\u0014V\u0003d�g\u0000�ӟ�4xH^��i�\u0019�!�1���[ԥ'$�qֆ�xS�ʑ��ؘ6j_cr�,QTI�\u0011p�\u0012�V���\u000b�N���%`�%̫[����Hvh5\u001e�\u0017m��t2�%A�ssH�K��P@\u0006�jΞ�\u0017_�A\u001f�\r���M'L��\u00177����VZN\u0015>\\qf~���(��\u0002K\\��xa=�\u001c�\u0012\u0006NVR�z��I~]\u001c\f((�O���a����~\u0013y>�\u0006>;�\u0003��\u001a]����|�\u0005�Pv2�Xl�l�:Sr�\"�4W-�\u001f޳\u0000��A\n���]@cq�\n>��۲�C\u0019H U���,�z5i�pI�K�]���!�6��\u0015I���{<�y�\u0006�Rt<\u001b��7\b-\u001eE<�R�ԅ9x�\\Ѐ\u001c\u00139�tf�\u00044�kLk\u0016�\u0007�8`Y�68I\u0017\u001d��|]f]E��c�+�\u0002\u0015��q\u0005]2\u0015h��{��\u0000��CP�u��Gך�k2�}\u0019v\u0003����֢�4���A\f�\rԀ�M�$�`{}��9\u001c��!+�Z���$���E�L\u001ep�+޷..\b&���\u0013�(\u0016�^��ք%�l\u0014\u0002x���\u001a3\u000b-\u0018S�n,�\b���\u001d����������(y6�)x�A�%�\u0006\\{\u0000p\u0019��{a��\u0005�GT�\u001cT�Jp�h�\u001a����H�yL�\b��9��\b���$.\u0007 HO�V�\"(�\u0011q�nl��S��{?�Y\u001e��y�3����D7�!ѹ�L4�ę�ޔ�a*��\u0001�.\u0003I���\u0019�%�i����k�tG$���'��\u0002�\r\ro{�R#$\u0018\n�\u0015\u0003�o\u0000⛀��~)�H'��~؞\n�@��\r��M{�͹��\u0019l�Bu�\u000e�\u0005�\\�_ 5_�tr \u0010n\u0000{V\fOy�IA���|ar\u001d\u0017:6\u001d3��YZ�\u0019���P\u001c;��\u0001\u0010V�3�ZD\u0014=\u0000���r0$ӆ�\u001c�gƫL�(��4�`T�b�\u0012`y�>� \u0007�4X�J>5`��꺜��\u001e��L\u001c��gI����2��O��v�\u0006�\n�\u00027�\r��hn�\u0006J\u0001WW���\u0000>��I�SE�����u�/�z�S��?�\u0011��A��\u001c-]�hȬ�\b�� \u0015N���3m|],�,gQ:g\u0011�߂�\u0000�\u0001�\u0017\u0015b?I���\u001bu\u0007\n�Z�Ab�\r���L�\"\u0011\u00039#;�YL�\u001e��:�W���m[Hq{��\u0010q�5@�\u0006x��'�\t΀6�����\u0014�m�ٟ9�\u0000[|8�\u00172fh\u00132d�%�d��\u0019���\u001b�)G�3zL�3���&3A.iO+\n�u��\u0006���b��\u000f�������\u0013�\u0015�m�f�a{�8�Ǧ�BaN�yBD�>5��r���nE{\u001d��Hz�/�\u0016�h}\u0016Y��g�\u001c�\u001d!�9�ڵ\"$,p5��\u0016\u000f�ʁG\u001d�t��j�^�\t��\u0002� �ht'`�t(�\u000e��ˊq�-�$_A�>�d+x�E�\u001a\u000e\u001c\u0005�)�\u0006'\u000e]�1�H�q�u���n�ʣ@��\u000e$��L�\r\u000bK�Uq9v\u0019�tN�H-�l��{�{,�Ŷ��\u0017�V��y,�OU�~2o_Y���\b\tlg��-v���\u0015�Є�,N�jK�Y�ȟ�A�e�I�\u001a��0�V�z�~9D�M���B�K�n�v74��\u0017x/�ٷ�\ruo\t��o\\�\u0016��d�U\t�J\u001dǒ\u00002�V.�\u0006�'�\u0006�AT\u0018���h�v\u0014 \u0003���R�L\u0015>.\u0000K���Z\u0011�Jh\\+2�P��sy0\u0016\u0012'N�7e���\u001d�S\u0002RS!^Qͱ8yȼ���\u001a�y�L!>�i�?Ae���l\u0001\u0015ռ\u0001���@�\u000e8��L� �y�\f\u0007D?Z\u0011��Ǩ^�6���Z�ˮ��a�n�0\u0000��\u0013ג�ض��$\u000b�r��$1�V�&\"g\u0004�=�}I��&~��\u000eu!ђΝ�v\b�`\u000b�(I�1ñ��\u0007��V�F��\u0002�\u0001\u0005�_�\u0012\\ۤއ���\u0007�P�\u000e\u0019����Յ��\u0015\u000fp��ؼB\\hr���퇺(����k��k�^��\b��y�\u000e\u0003;mgeD6\u001b63X0~K��m�����\u000f��;\r�l�9\u0006�ض��\u001a!�_��>[���FW.���\\�D�Ƥ�@��\u000eL��L� �C�j,\u0006fp�o���\u001e�M\"o�O\u0016U���҉���ΫD[�PE\u0003�\u0004��4`$�1�G?O\u0004\u0004��\u0003�\u0018U \u0013�5G\u0005�\\'Oyi�\u0006�G���\u0000�ж�*���1�Ћ�9�K-�&0>\u0002�\u0013�ʞ#�R�\u0000{R�ø�\u0005���cl�\u001a�\u000e�>�e�O\u0002w�%�}S\u0019\u001d�������*�g�cg\u001a~D+P{�ۮ6�\u0017�#I�Ąqx{��w�IX\f?�q�͛B�\u001e�v�;�C\\i�/�� »�N#\f�C���.�7���2�����0�Z�Rl������\t$�A\u0018�\u000e`��L�\u0011�\u0018\u0000�9�\u0013~�\u0015\n���\\��\u0006�6������l��r�X��{1\r�\u001a���\u0004{�s�6�T���l�<\u0014�|\u0005?\u000f$�_*�Ǜ佘6m��`�5�^��vś��7�����>a\u000e@\u0015a��[i\u001d(/5�n���\u001e�M\u0014{�8_�l\b�&qt��d��q\u0007�d�ન�͢V�}\u0011�mG�Ds��N`Gn�va�6�\u0003\r�}'���-��U��J��\u0015Z]x�x�I��N\u0012�R�^�i�Rz��;�X�\f��������ʗ\u0006t�\u0014�oD�ӗ2�V8�\u00073\u0007��T\u001c�\u001aƒ�\u000f�ݲ�\u0015]�c�\u0002Y��F����A\u001f�\u000et��L�Lc9�\u0019e��0vWs:C�ب��7�[[gbi8j��|�vNȀE�~��\u0018{\u0004X�1�I�\n�����,\\c�5^�tUK�@>��f�=�\u0011;�~\u0011�`�\u0012�Sj���#\u0003\u0004�^�?�!wZ�t��\u0005�\u0005w�|�@k�dU��\\\t���v�!�\u001d:���Z�7�-\u000b\u0003y\u0012IIO��!W�4\u00180�_D\u001e2<&�1�m!�Ù.���[��\u0013�m�p�yP\u000e�<�B��R�,FP.H#���\u0019r��#!\u001c\u001f6�\u0013y�8�F�'��]�Ǝ��Tb�fKz�`���\u001e*�M�\u0010�n_��v�1b\u0007��!�W\u0005\u00125q6�m�l�k��A/�\u000e����c�p�\u0000�m̄��&�~��f�\u000f_��D!\u0001��_Ye��qw�Dg\u0016τ!}[$(%|X�XS�FL�QO�dSg����{0f|\u0001��E��䙼4�{^�x��T\u001c�e�\u0001\u0002\fI3��{;�X=kҪY%�\u0012pr\u001aK,����%\u001b���\u0002����\u0013S\u0011p\u0003���fwyX�ħ�����6�I�v$�\bk�#^f�\u0015�\u0018#�a�S\u0018R\u0006�$��$��=��x�D\u0004}�C\u000b�\u0002�/�G�\u00105�5+����?Q�\u0012�7\u0010C����o�\u0005��n����\u000e/`�Ac�\u000eĀ���!7��v�|dkyU~v�1F�p�.�\u0006��0H�7�k\u0011�'hu-*=��\u0013�(�\f�\f��W6�3r�V��O�\u001eZ������l��\u0019�\u0016��E\u001f��b~���z�����5]}R\u0000n�ܤ``{~6�{ݥ��[\u0010\u0000��\u001cv\b0�\t\t�2�\u0013��r\u0013/sf\u0010�Tc�>��\u0005�‘��mQC�@���\u0016�6O�(��\bj:!�>�\u000e9\u0015�,Y��F���O\u0011�\\�sa\u0011�-5]J~W8�5�*d\u001e(��ٞ\u000f_\u0000fP\u000e��Y���σ�^2�\u0012���$�\\W�\r�v8��Ț��<9��5��)\u0010�\u0014\u0018#J\nJ\u0006��%rE0�ro\rFe��F\u0013E�F�q�'��o\u0006\\j�#�=\t\u001b��V3�N]�$.�\u001d�{�MjK�2�O�\u0005[��t\u00107�\tTh{U���G��Ar�\u000e؀�L�LM�?���*eJU�р�a:SV\u0012��,��_(v�\\�w-zW�\u001aς��b�ݪ\u001a�\u0003�M��Y{��2�@[�\u001c���v�l��|�\u0006���\u0015\r(����\b��\\[\u000fZR�Þh8\u000bn��!�<\u001a�$�h\f����T�\u0006�ۃ+�\"�ZO���������X�8�:G�~o��O7�\u000b7�\u0015�)��B�\u001cp�\u0014o\u0017�\u0016\u001f��,#I�JV5r��U\u0003\n��,iKD\u0016�،\u0005M��A����Cb�GP�����sK�\t�\b<\u0019��R��\u0000�STu�\\��x\u0000P0����v�'#�\u0003\b��f\u0002l�϶�\nh\u0014��yL9��hP�_I�`���?��\b��;]�/\u0011\u0003E�0��]\r��P�P�����CY=����o�o\u0001\u0004�\u000f���\f��ظ���?���h�s<�\u0006\u0005\u001d`\u0015��<7��ܸ��\u000e��\u001d�\u0003U�[�ô��k�9��-�\u0007��n]��-��GIaifk�qÞ�;�s{PN�\nd'�\u00033�\u0000�B��Ⱦ9J\u0004��/B�\u000eU���JpU�\r�ӄ܉Nx`\"Z\u001bw��+Z@M��q��:q��\u0014�Q\u0016|�i�l�:�\"�'F�ܡ]�\u001b��c[U����3\u0014K�\u000f��̕�\u0002ۃ�\u001bs��+\u0016�'L��wu��A��\u000f\u0014��|�\t��m�&�u6��C1�\t���j;��(�\u0014�i���;��Тb�,�\u0014\t�\\�|�\u0002x��^�\u0002AoA�ds�{�H�M�q���\u0018\f��\u0014�1����\u0019+cF���)\u0017a\u0006��\u0001�\u0001Yz��ᡄB���8��v\u0002M�\\�\u000e�Q\"�\f�3�pX0G�=\u0004�\u0002\u001f&���\u0011\u0005\u0017�\u0013�\u0002�2_hr�c 屢�:�s䗜�#\u001c�\u000e��[�F3\u001f����7\u000e��p�)��v\u0019�a\u0012��\u000ff6��P|z����.Y�j�\u0013\u001e0�\"֥��W��5\u0015?\r}\u0012���d�h�\u0004ѧ�0 'S�*M��s�D-��A\u0004Zgm�d\u001cS\u0015����z��kcl\u00136���\t �R�\u001a�)�\u0014�T�y�r:]��,e\u0005�K�1�8\u000eUhx��]��@+����}\"���&��}G�\u001fk�v�A\u0019�\u001e\u0019˩�����h�\u0011`kO?���[\u0019�}\u0007�G�c��i�)�:�+ɬN���\f�8�\u0000��\u0015���\u0016���\u001e��s��7�.��T�\t,\u0000\u0004܍������\u0003d�Ah�\u000f(����K���\u0005�5f�F�?!\u0016Z��\u0013j�����\t��˽*bp$k�UB�͈\u0012_�j.N�\b\u0003�tPc�\u0001�@h�����8�L:�����v�\u0011��#�\b\u001a4r\nK2�蝪�3�$H\u000f\u001fn�\\V�\u001e�3�M8�>���E\b�Mz�)0a\b�3\u0017-�S(�Jiu��o�\u000b:\u001aO<�\u001ef6W�\"c���bl���?�:�\u0004�r���Iu٫�g8�F\u0019��_\u0003�X�\u0010�����/9�]�^_t\u0016�~��+]�\\��Ե�rS�(\t�e�\u0003�=����Y���\u0018�io\\�\u0014FdG��\u000e�aV)�e�xP\\c�B�\u001f���_��0o4Ӽ5V+�k���-[B�\b�����M(S�(\\I+�`���U���\u0017rV�B�\r��`�J�:\u001c\u0001�AX�\u000f<��۸Ԁ�qv\\6��\u0002'���\u0014�D}��\u0005IxS�ZK*ڇ��:����\u0001��4�W4:nH\u000fw�2T���&���:\u0011������\u0014�C8)��P�\u0003s����\u0004�\u0006\u001f�]^�\u0014h�e\\ɧu�HTf�Ic�*�Ըz�*�F\u0014��=��K�5�]-?R�\u0013/~\rq����d�8J���\u0019��\u0004A\u0016e5����A��f�Nt\n�n,G������|�l��0����\u0004�U����3���{�\u0001H�6?\bT�D����{�\u001d\u0005��\u001c����\u00129zї�\u00120y\u0019�N�\u000b��q�D˯\u0019\u00186@�\n<�=\u000b��?�+�?!N��\u001b��,�`3�7�\u001d�/Vd�t�C��rlyV���u\u0014�U��)\tF��\u0010T\" ��!c�DLw\u0001��Z�\u0011��\u0003͋i�AR�\u000fP����s��(�D�\"�':�|E�ۮЏ\u0010�\u0014���DoG9m\u0007��T\u0018)�ɠ|T\u0005\u0015F�x6y%\\��&��\"cs�y\u0018g\u0006\u0014�r\u0005N��\u0018����8��j|=\b\u001d�b��W=�\u001c!\u001b�%\u0012\u0002Mt�|�n�p_S\tF�?^�l�c\f\u001d@��\u0018�h�s��֔\bH\t���\f�y��� \r6ݥG$�\u001c��$y7r\u001d9+��\"\u001eކ;�Z �\t�����5c�\u001bMe��\u0018�f��3�?P�-�����K�\u0012�(?\u0013�翗<��\u0016_�o\u001d��&�J�\u001a\t\u000f�.��^F��\u0018\u000b���'����㠊0z���J�\u0003\\�_�b\u0007$!o�6������x7�w���6I�߈�\u00197\u0016k�-�\u0015��l\u0016\u000f��/�6��e7$/_�Wb�?\u001e��\u001c�!�A?�\u000fd����,a�\u0006.\u00168<��q~�{�$\u0011\u000b��7\u0014�@�\tac@���l�=\u0003\u0007wǑ���L�\u001f\u0015\u000fθJłn���!�\u0016�\t#�`����t�ĥU\"�5\u001f�4�Nt�72\f)�՚�'�/N�]cg�F��Gң���<\u0019��KB��)$�X��^�k7��\f\u0006� Vt0�.�\u0007���$�s\u0003\u000f3\u001cF�p��)����2��\u001d;��8��\u0007Ǣ��ؠ�뤻\u0003`���\u0003�\u0000l�\u000f��nr��;�N\u0014.�W=��L�\f�o\b28��XkS�\u0011}�KB�\u0006��*_>�[�|X{䟈�����n\u0006=��\u0002#�{\u0001o9b\u0012%�$J��\u0007�Z\u000en�\u0014!���\u0011��#�5k�A:���|��\u000b���Δ��A0�\u000fx��۷��\u001a�Xh�v��5V��i\u0018\u0007Y���I6�P�X��!�\r�\u0004�S�\u000f\u000b�����\u001a\u0006\u000e)B��-����L����b\"?�p�\u0007�(\u0005~��id��e��5\u001b����\u0018c��XUS�d��1\u001a��vsN�\u001b�����\"lA��҉\u000ew��`���\bC\u0007w-��gK\r��:�o�\r\t���\u0002�Z���!rۥ��o\u0003TJ\f�\b{)��?|>�\u0013�\u0017�G����\u0005=<�28V���a\"Z�p�R\\ka�`�\b���\u000bm\u0007)Ҍ\u0001D��G^��2^\u0005��ٸ��.\u0014\u000f\\�\u001e��h\u0000���\u0017��\f�\u0019�\r?�����\u0000x\u000e]�\u001a���K�չ&#�x\b�4[\u000fr�d�ֻy�B��|xg�bd0�d\\�D(��|F���s�뮝\u0005���=�6��\f�\u001b�F\u001d���ud�\bW�R�A&�\u000f����\u001f'�,�0�\u0015\u0005�|_�l���of�¨֫�s�N��nY\u0016��������B�Ģ�M}��g\u0019�8�\u001ag\u0005�\u0012�����HX�\u0018�\u0015�\u0005ģ�s|���`c~�6*�dZ4<�|2_ҡ~;���ٕ���R\u001f���n7�ʎ�dHX�N��,��\u0016�n�ک��\u001by'���\u0003쑔�\\P\u00027-���횪7�\t��WFT�\u0016\u0015���]�,��ƑPׇa,��?D��z�\u0005�\u0006Sz3}guR��x��L'\r����oW,\fq\u001d��r�p�k�\u0018[�䔊�2����_�юA\u000e���\u0005�C��c\u0007<�Q���dLGM����\u0003�{˺�h뙥���̣A\u001e�\u000fȀ��\u0015\u0001�\u0012��M�g����ϵ^�H1l(���\u0002��\u000bCюX\u0011�\u0007O�^�X���@�\u0017*Lp�*Ny����\u0016y�\u0014��@\u0017�m\u000e4:+�(�[%۵me���6��\u001b��8�k2|&�BW�DӋ,J��\u0014����>�|�o�lv�\u0011/Z����\u001a��6)~��h��Y\\�qb�eF�d%\u0019\u0016�xԠ�o�@5�\t��~b�\u0012\u0002\\�\u0015\u0015�\rf�O[a�\u0019g�\u0000\u0005\u0010\u0017�n�\u0019_\u0001\u0001�\r9����r*�$\u000bi�Q�C�(����dn��?:�!}/W��\u0007��O]���\u0015�Q�������/����@Zi��\u0012�(�m,y���ڑ���-f�\u0017N�Aہ\u000f܀�|����\u001f��YF\u000fz��$�&\u001ax�Cip�`��~��E�AG�\u0006\u0011�\u0012.\u001e�a�u�p���s��X.mxA49%\u000b�\b���m-\u0019u�G�\\��ɥQ�l\b\t \\A\u001d\u000e�\f�LD�A�.\u00129�LjV��j�w4�,�r�D�u��O.�{�\u000f���\u0010.\u000bP6�p�%5\u0011����m*�8����\"LD�w��A�ͧ�*�Z��\u001c \u001c��噪aN��\u0015x\u000f�m�x�]�\u00104�\u0001E�p�ʰ1�\t���:�~��\"��&n%��\u0014�Q\u0018�G�P��\u0019�Ķ36�\u0018��A�8�_�I��Ñ��\u0005=\u0003+� o{A�\u0003S��\u0000�S��S&��ѯ-��OU�\u000b\u0017\u0015��y�7Q�w��n�%�+�9�u�\u0017nZ��P�g��uݯ;R�\r�auX�?+�+\u0005\u0004@��i\u0005\u001f��r\u0019Axe�'Y�n�J�_�\f_�6��v��b.���\u0013⛸E�r�5�4\u000e%�O;94�\fq��IW\u0010�����ۼ�6�Ȃ\u001b�\u00124Â7>z���C8�����\u0005���\u0005��@�\u0010\u0004��L��A�\"JL���\u0004��Q��ԭ�\u0018J\\\u0016¡�\u0006`�Ù\b�}��~Q�èYK*��\u000e\u0013�\u0000�\u0004xw�`\u00102^o�R\u00125\u0010��\u0001��\\��.TX�����P�(����h�ȳ�\u000b᳿�\u0002j3�Ml׳$,6X �t\u0006��ДK�L\u000e\f9�\u000b\u0014R{Kh�ƍ��s�D�\u0013�?�,�\u0018����e������ߦ��\rTj�/\u0005Ѱ�g%b0B��{�s�TO�\"��\u0007O������$����A����&,i\u0017b\u00173��\f0)�����̾ž\u0010��@��\u0010\u0018���c����^��[�\u0015N�9� \u0011�l�N�b�Z0\u0007̧��+0�\u00004�R�ԑ�T!�(�Ø|2(�fP�\u0014�}��K�+\u00132f����|{�U���;N��F�'k\f�4rm�W9\u0001�qpκN\t��s��\u0018;��\n,0�[=as�Hq�5E�(�x\u0015_U���f2\u0002qB�&L��'�7\f���U)\nwM ��q���2�y��T�(�;m�N\u0003\u0004\u0010\u0016�e܀�\nREQ\u0016�O�w�@��\u0010,��Lɩ���-\b�V߹���\u0014�9����\u001a�k��6c�ª\u001da�6��\n�I\b����\u0015+[.�\u0002z�m(�\u0005\"�\u001c^�ّ\u0019$�y!B�9��g�\u0005��)���\u0003շ\u0004�8\u000f��iZh\u0012`a\u001d��0XO����EW�F7�5Շ�w�^\u0016\u0013����\u0000΋���[󄽊l\r�\u0013���\u000f�����\u0001@���m\u0015�&0O�\u000b�:j\u0010�����\u001a�ɳ���)\r#�s*���\u001c|�OSY\u0017�\u001fU1:\u0004̆rj`�P�)&�3�%����#Dȯ\u0012\u001fDi�6�\u000e\u0007��,�$�A\f�\u0010@��M����\u0010���Y~pf�G\u000b�J��Y\u0006�\u00066굤�҄3���v�|�)|C�P\u001aS��>��n�g\u001a�6�\u0015��\u001b@��\u001dO�e\u001f\"m8�����¿�[\u0015\u001ft�\u0017w�1G�\u0005p�\u0013(�̻���3!h��r�\u001a�`s���C̑����s\t���\u0017�\"TB�m�2�\u001e?�}CR�j�rf^נ6�+q��0���L��+����'G8�\b\u001d\u0001O`�E�����.\u0016��*�mcI\u0014rV�(��Fj�kRoS�\u0014ie�arL�\u0015v\u000e��Q����^�ÞC�V�rdĄ��w\u0019H��@\u0000\t��4J�A\u0013�\u0010T��L�2b�pj\u0005�\t\u000f�A(N�\u001d�\u001ae2S<��t�\u0016��3\u0015�R}\nh<�J�o�\u0001���i̱�\f\b,�\u0001���\u0016���\u0012�\u0019�p�b\b\u0004ٺ��C��g�nm������\"�ޟǛI��s\u0013<\fY)�]3i���N��Wհ�����nt-;\u000b�f\u0007]+t \t������S���\u0015�\u0018�0n�\u001f`so&\u001c]�\u0006���a��C��W���\"��w5��\u0000hI>*f}a8s8+$��6���7��\u001a��ؠ@�E�\u0010�1�&U9�-\t��p�@��\n�TG���\u0005ϭ�n2X���\u001e^Z�n%P�q\u0006H�&�\\\u0007\"\u0011���AG�\u0010h��L�\u001e\\\bڊ[re�CsX�)h\"����qe��\u001bk�6:��X�\u001a\u0002,��n�C\t^h{\u0000Qȡ�\b\t��M\u001d���sp�n��V��m�;\u0011�qy\r\u0005�\u001b��+!59c�\u001b�)��=An��hv�V�ǖ�7n\u0007H�\u0005��>3۵u��b�yk�i_?�\u0017�|9�N2޻�S�OlZ��\u0017X��KE���\u001e4*�9��b�����f��8\u0006��C^Fq�-��2jӸZ˳&�\u001d|������\u001a'\u001a\fp�w\u000e)g�\u0015%�r��&hq�\u000f@ӟst&��h-�t�\u001f�^�,,v�\n]\u000b�2�\u001b� ��c�1���*Q��7\u0007j8�H�\f�#.�7�oY\f���Gʥs�A\u0019��q٪3@��\u001f���0r�7:\u001a��Ap�\u0010|��L�\u0000JLV�@�,\u0007:�.��4f�\u0003��}���h)Ҍ��|\u0007cT�\u00169鹺���\u0001�6�8��M\u0007�����ʫB6�P��.\u00015���\\A\u0004h\u0017\u001b8;�,�����\u0000\t��n��WX�M��㌪��Bծ��~x���/Z�*�.0s����~`��\u0001�`��ӎ�l`�[1�����f7x_H|���\u0000hlK�QɌ\u001b��(BP�����S�J�(�l�G��#&o\"\u001e��S��x�g!F��\u0001�M\rK&J\u0019=H)Tn\u0004,�-�Z��.�o\t��Q%�?�J (:��D�-\"�Q�:~�sM\"T�5��@m\"\u0015�TE{�Q\u0016�Ih�9��H����Ҁ�ke�~׷q�ъ�\u000ex�$��K}�\u0013�X�IL\u001bwm�����\u001e���*>\u001a�`�����+\u001d�h��E\u001f��m\u0007B�{��F�Ad�\u0010���L�v�N����T�DRb�\u001anh-��� ��M΢�e�ԉ\u0019e�>�,\t�T�4�ZT�(0�ۉ��\u0010�\u0013�w��:\t�E\u0017��@O�j@f��Ă�\u001b )�C�Oc\u000bxʦ��6�l*n���g�vecQ�?\u001b�|\u0015� ՚z\"�+�hP�鑴\u0010=\u000e��q��vk�\u0012g��\u0013n�\u00009\f�*A\u001eR�J�2\u0004\u0007�\u000eo^y�܉���̽��*�ʤ\u0004�\u0007�0$�9\u0015��\u001eP$�\u001bV�~�2ɵ\u0017�kRzQ\u001d)Ц\u000bj�J鬸q�t\u0000s�>\"T�//�����';C<+t<���<�b\u0003vߢ�\u0017����\u001fU�_�s��\u000b\u001e\u0013Qʝ}�z�v�h��Y[�KU�\u0011tʅ��aTnYE\u0006-\u001fs�N1���\u0002��Ǥ�D(�mj�bO\f�\u0000%J�?\rx୮�‚��^�L���Ab�\u0010���L�m!)o����\\n����\t�!��g�?��1�WV\u0013W��#���\u001f̆���e�UI��!�4`~�.'�,m�9�w�e\u001aq\rZ�xԟ#���M�\u0001i�}���Q\u0003�y>ؚ�E)RNJ\u0004\n���bш\u0004.�Y�l�����2\u001al}�\bx�\u001c.g�s�:��7��q\u00069��*\u000e�æ4��$K�4\u001f'�F\u0016�\u001a�6�\\q]���T\u001a�Vd�\u0004ק����I\u001b��U�DB���y֘\u0001;�K�\r����\u001d/V�\u000e\u0018�ض�J�tm� v�Y���;֖��ۃ�\u00035Q�L�i\u0018J��\u0016B4\u0013�\u0006�Q�83]������3���4�\u0003\u001d�0��S����e�\\ �\u0016.Y�L�\u0000QTKmz>=k\u0006Ƃ�E������-}��\u001d�\\u�G�\t�\u001a \u0000xH��rސ���d�A6�\u0010���L����(�E>��p½�T<7[\u0012S��r�t��Xʏ��\\=��.\u0018�@�K\u0003�\u0015��m�\u001bC�@H�\u000e��\u0018}�36x%�bBH�(Æ�QB����X��\u0011���S�.c�¼s�p.�{�o�P�\u0012fA#G�b�\"<[J(�!3��)�-\u0003\\M-W*�\u0011+Wy6.�A\u001d�\u00073H�o��)�o(�P�Ʒ��#��p�\u00191�;�V�e\u0007d�}΄�x��z;�xL&=@\u00039\u0002l��$lw�k�\r�,��\u001c/\u0015ה�v��@��=��+��+�a�m6�=|l\u0001uB���ʝBL#�a��A��n\u0017�k��C\u0015\u0000���6q#�\u0015n\u0000w����\u0013,��������\u0004I \u0003\r�\u0000�A\u0003�\u0010̀�Mz�2nj>�׾�\u001e<����\u0013�\u001f�ŭ\u0017���XF�܈\u0001�0�UO#�\u001aB(\b5^D�!\"Y�Si�ˌ\u001e�hb\u001c\n8�r�m�I�� ˭46[�&\u0005�Z�v3'��\u0016�A��;\"9q�1�Ue�\u000f���_�\u001a\rJ�/��\u0007��\u0005\u001d6��H��\b�Iu2�u�c��\u000e�U�@&Dׂ\u0013�\u0002�2�Hc�\u001f��,\u0003{\u001d��#��9!�x�T1H�svn���\u0000��I2ۓ9�U(�XR\u001e/K�J�c\b�J܈-?7X�'�\b|�Tח���n�#i\\\u0013��!(�~�/�o���夂@\n�A\u0002�\u0010���X�f\f�\u001e,�V�ً�b\u0006�J4\u0017���D�g\u0003)l��B 7� .f\u001c�<�%\u0013�o\"bJg���lx�I�\u000b+uM�/�\n\u0005�~QI��4�7��S�v(_�Rs=܂��V\u001fIZ'��tnYf��\u0001��+$��KVV�(kܑ�I �\u0010�R�q�_��;{�!�ݰ1\u0015���o����)�\u001f�oI\u001dvn�X�M�鑅һ��@\"|��j�c�Z�\u001bbfih�'_\u0001�I�΂�3�/�\u0018��`�z�� \u0007\u001f\nK����_���\u0007�)��^z��m_\u0001�=�M���\u00022`���~��R�A%�\u0010��L��\u001d�k\u001a�� �>�k���m��w�A�\f\u0014�v�G�\t\u001e\u0003Ľr�W\u001b\u000b!�\u0017�18�!�\u0007%���@�\u000fdP-\u001b^��\u0004{���B�@w\f�z�\u001eQ3�7}�n<6y��OsO\u0005���>�y]\u001ctm\u0016��k+��~C-�8 }w�\u001f����A%� �\u0010�:.*��Y-?̎�\u0016\u00125\u0015{P�\u001f��!�b�H�/�Yr��\u0013C�}�p��ܢ�G�:Hh�v��tE\u0002r\u0017�5�Q��\u0011\u001aҳ��kj�\u0019\ts�\u001d~�����PNe�/@�ztܞ)���6�\n�z��AH��t�\u0000���lB0~��\u0005�>8\u0011�}��\u0006���ы�@l\u0016�����K��\u001c��A\u0007�\u0011\b��1�\u0016��į\u001a��٩���lj�l j1\u000e\u0016�����\u00109l�-��lKz࿈wr<<)\u0003�N<�I.W�\u001c��Y��֟�z\u0017��R]\u000br��;�O԰�!��8Ӣ^=�.A�G\b�6��e[a��Č_��\u0003��0\u0002�~1\"��\u0000C�w�\u0015��HDoD�\u0014�p킇?\u0019\u001e��χ&�\b<#(Iy\u000f�%̜�-\u0017�\bPG����o�C� ��1���r�t!���w��\u0000�|\u0000U�=p������\\���\u0013�6\u0016��Ecr ��\u001eVU�9�L\u000e\u0019R��\u001b��`��3�\u0010JM��dh�cĀ�A\u0013�\u0011\u001c���\f�]�tj��x��wp�6��u\u0002�z_�sV�[PQ ��[����\u001fP&��\u000e���<5\u001b>\u0000�qk�ZrfVn��I�D��IB%�&aX�H\f\r�r���$��JZ�\rp#�g�&\u000e�\u001f\b��E4�Ĩ�7��e�\u001a�y�\u001b\u0017j\u0002����\u0012����7��f=�O��\u0004��\f��\u001f\u0019n��;�^%B2.�:�\\1��o�\u0017\u001c���\u001d��Εu�F�\u0016u�Y\u000b���c������.�-\"tuw���-G���\f6��0T�@��\r!\u001c��J/d\u0017%�p�Y~�sx�u=�o`釅�W0�f�\n�=�ϒ\u0004�f#��t~�A7�\u00110���~�B���^��N��\u0013^M��^�]�/��im\u0001�\\�M��\nCS\u001c��\u001f�*0��$�! \u0012�\u0000�P�B�L�\"\n�\u001cGv��\u001d��ް�\u0002\u000b \b\u0005݁����+L���\u0011���a{\u001d�ɍPa\u0013��#k�\u0002�LH�S����B\u001f\u0011&!؃6�Q�.�%�n\bFf�\"��'$'��T�m1�\u0000�\"v9�\u0016�`f�繲w[f�/\u001eI�\u001c�88WN]0��?ϧ\u001b�W<����̜\n}\u001f�[\u000b~�c;�Ɨ��u�e����Cl�&�.<0�T\u0002|��cv$<^n�\u0007A\twW�U=�),�ܭb���d�h\u0016\u0001I�pn\u0019�'��\u001bD�n\u0012�A��A\u0000�x���I��9���ٌW�A\n�\u0011D���\u000fp����b�O�!qS{�\u0012NE���[�x�~Þ-�[��\u0002\u001c�\tA�O��\u0011V2/7h.�J�\u000e7K�\u0010��#\u001b5��l\u0010�;��U\f�\r\t] A7�&J\u001f���E\u001e�!��\u0003\r�U��\u0018A#PKf��\u000b��s���@\u0019 �z[m��J�h�\"Ų�\"%5a�m���鰔\n��j�B���T�1m:�#�@T_Y�c[#?U\f.F����LRƃ���\u0004����{��EŔh��x=�\u001e�n��[S�� ��Lh�\\�}`���in�Y��5TT��ؒ�\u0005l��7W'��\u0002��\u001c���߂T�T��A\b�\u0011X���\u0016��V��&�0Oλ�\u0011���X\u0005�3���\u0005����P�\u0011\u00159x=+2\u0014#��P�#\u00040:���Gu@\u000e$�E\u0014����:���b�\u0004pg�X(�UT�]U�����,,(�\u001fvn2�3Ib��\u0015�H���\u001e\u0001��<��QG��Z��t׻��l\u001bl�8]@>�\r��\u0013{˵3\u0015\u0017��dꋨo��-2�u@l�D�\u001a\u0006q�\u0005,���C\u0012g\fR\u00178��\u000b?�\"�k�!�Sx|uk໷\u0017Tܝ�����p�Ű���۹x\u0019��>\\\u0006��{�|\u0019p�3Mq\u0011�\u0006|�u\u0006�2U�~I$�|\u0002��.,\u0004��A\r�\u0011l��/�((RS���\u001d>\u001f��%�\u0015��Hh�\u0006\u0016{\"�\u0000\u001c�\u0012�=s�\u0004��\u00111��MZ֖q|U�\u0004�6n��K��7�lZ��(%O�yxry3u:3\u001b…ɓK�8ξ9������k�V�\u0010l�m�-2%GJ\u001e��Db��\u0012\u0018Z��z���2�l���t��u����d��L�r��_8Dγ؈��@R�\u0014��rW8Ч����ޅ��k^�u5$��8@d㤛�]�\u0018g��M\u001am��@|-�Q8Zh+ \tֶ�\r�\u000b���B1��-c�>�L�\u0004\u0006���\u0018�y>ݝk\u001eq!����h���h�\u0015\r\u001a-�A\u0003�\u0011���/�o�WSA{6\u0019��9Q$m�\u0001��Q����4\u0012��_��\t��`�)3X�|�|I�טЖ��\u0010��\u0004�9^�0Px\u0017%Z�?t\\��\u001eK�7�v�=�9\u001e�\u0002G�u��0{E�CN>05\b��8ܗ_���8\t!�\u0017[��%!L��\u0015xQ;�\r\u001a�睬�^A\nX�\u0019��@��13\\����z\u000e���\t�A��c���\u0018\u000fÑW�\u0013��\u001cP�af6v�\\\n\u0015�G^���ꊈ\u0000�\u001a-��f!߂-��z�\u000752w���(*�2��0�\u0015\u001a��Ӱ��\u000e�����\u0002+~l�e^2�A\r��A&�\u0011���2\u0000�@i�l�y����FڶFP�L<(Z}w^y�Y\f�w��\b!y��t��XA���&lw���\u0011Zd���\u0010�Α�޿�8lOu\\��M(�\f9RU�y�.��c�~:��\u0015:Ѫ�v\u0015�4��U�f�;�\u0006R���($���w\u0016t�QE��q�s�P�cIm_�d\u000e�+]\u001a�F��u���Hs���\u00151���V\b\u001a5pQ�6p�_����Pb^36��&(d~\b��֪�,�8�G�C!� o#\nu�N�\u000fй��h[\u0006&9��\u0010g��-�����{�ϏS��\u0011.XTQ`\u001f�z\u0014��ۅ[��#�bD�4\t�\u0018���v�$����w�r��J�0�A\u0015�\u0011���/��H�v�(�g��,< �JX�T�o�^\u0001�2\n��^mI�0_!\u0018\nQh�\"��\u0000�\t%LRC\u001d\u0015��v}\u0007%�od/�mYۿXv��c�4�5L�R��nm;���\f�i��E�\u0007�\b�s����4���4�b֝��7�м\u001bVt�I��(�\u001d���ޱ�cx��[QXL�\u0010�*��w|�\f0�E���\u001c�I��0�Mz�ul\u0014t�\u0000�,��\u000e�r\"�\u0003f�M\u0011̧$;�׶\u0013c�I\u001e�\f���O\u001c�\r��>�\\R�t)�Se�6qa޻���5��c\u0012�s�\u00127m$/~qq�pێ�~�U�v6�|��j��Y�\u0002?�\u0019��s\u0012.�i\u0018�M�Y=�^��\u0017\u001b\u000bRg.AO�J�\u000e}�~!����\u0013�A\u001c�\u0011��M!��S\u0016-+֕��t�\u00022�\u0004��iיy1�9sfaaGm\u0002\u0004����j_Y���Y�\u001c�Q|�\u0014�N|����\u0018\b&��\u0012����6���:\u0010os�R ��z\u000e�\r��U\u0004��ATɜ�a�o$�+H���y(����$�zGU��<=��o\u001a���k�A\f�\u000b�(�\u0017�C\"�\n #�W�C[�\u0018�>�U��/GJ�6��r\u000b�\u0016\u0002:�Y��I���6���%F�B�.�\u001c2��Q�\u0010��3�q�g�M�\n\b�,�\u0015\u001b�K\u001c[ns�\t�7���sz��[�/����\"X��\u000bA�i\n�@&��G���͈E/��A�\u001b��G��3:�A\u000b�\u0011����~;\"��z�\u0018�\u0000�hv�Ǩ��f=A\u0016y�t�R\u001f*)�S����x��\u001d5�DŽb\u0002�\u001e�W}br�S� Y��+؊����L��Ǹ�\u001a\u00149!�)$�k\u0006i�F:Z����vp���\u0012��PR�?�h�2��ߩ��=�j�JS�\u001b,�\n̅j|~t\u0011V?k/�� �\u001c5\u0018�\r�\\\u0016�1��)<��x��;�1Ȫo՘�\u001cAOOz[m0�$@w���Jj:/����-\u0012����\f�\t��haw\u0005��J0!rM��>��#�+�\u0016��p��SN�\u0017���{���\u0007�5�}���m��#��Y�A\u0004�\u0012\f���\u0016������-���e~�\u0004y�\rd\u0016���\t���}.�*S��xS��Kt�u�H�\u001b4/��\u001e�\u000e��l��\u001c��G�\u0006\u0000\u0005�-��`+\n���\u0011F1�\u0013��\\*3�\u0012¬��\u0004�y\u001e?%�\u0011��kv�K�Y��\u0001�9q�g;�e҃k����KƑ�P}\u0011�%!,P�\u000f\u000e��1m�ڂ�u�\u0010!��tx5oa��Q��UWj���-�H�d��f@�7qh\b:\u0018��HއL���I8�~�\u000b��G�my\u0012���B�z�\u0017����\u0002�OX�\u0007y6�H\u0014\u000f/�_Z�UT�A\u0003�\u0012 ���\fZ���Y�T��k��E\u0002D\fݧ\u0001�m�5���\u000fjV\u0004������>\u0011V\u0010k�Ӡr�p��_\r�Mi\u0012w��Ү\u0017�<͉��y����\r�Ή�W(�>5_���\u0004�\u0004��O*(�\r���n}�~hˎ�*/\r�\u001c��\u001e\u0014��*\"wrE���h��\u001c>���6\u001b�c�np�!r��G�M*M���'j�0�\u0005�a���`�y\\\u0002:��\u000e_��\u000b%|R 3�.��\u001aP\u0000����\u001a\u0013�\u0001Z�'-F(/\u000bbCI�5�}����\u00168-�\u0005�\u0000��$�ñ��v4��K�M�#OP\u0013U`�A\r�\u00124��\u0003��\u0004�2`w�v����F2���]�o_(���b�`6�&e��Z\u0018��X8_�\u0017\u0004\t{�����u:X�\u0017v��\u001b����k�4F\u0015\u0004��q��Ʃ���s��aA�\bT�۩\bR��/\r7�dž)�s�\\��\u0010n?�a��ph����-B\u0004�\u001bUi/q\u001c}�0��\u001a��mdM�^�\u001b5����7�\u0018�x�p�:�\u000e%��̯kX\u0001\u0014��@���.B+�=�Uh#]a�\u001a�H���ۥ`�1\u0011�e�i�\b���P;���\"\u000b�\t���HB�oL�7��#r�)\u0001c�� +Zi�e���sb��u�A5�\u0012H���}t%wn 9�/�*��F\u000f\b`\u001f\u001d=�,*�U7�K��);�flN��\u0007<���7t�Y\u000fh����rT���`�h���\u000f��(�ؖ�h�/�.�i>\u0001�\u0010�L���+\t��J�Ā\u0013y\u0003\u001b��hm�uMM�Ӛ\u0006t@\u0001�m0\"����OA�K��v��M��@�%��\u0010��zo'�f%0�\u000b7\u0000Y��WA�\u0004���d���\u001a'ɩ�\u001b�:i'�Z\u00151�j�.\u0001�d�U:9�����\u0015%\b�e�hDL�&`\u0001��z�<{Q�o]d1�ѤB��<\r�z��G��\u000b\u001e@��3�\u0005��S\u0001���\u001e��\u0010�g\u001dQ\u0006D:��U\u0010���z�\u0014\u0014d�zY�!�ja,Ute|2���Z\u0017 �\u0017���4$�-֏A�_@cSռ�$�Ks��`�:\u001aR'm�A\"�\u0012p��.�����\\Ȱj��$���\tm�mԬ\u0017�g��)\u001fe�9\u0004��\u000e'�\u001e����b\u001eX�\rɋ��L��=7�GӁ\u001a�q\u0006Z\u0007�\u0004,}3�0�#rx��]���!�\u0018�����~Z�\u0010�\u0014��2��\u0003 <�A�4�\u0002t^J�U9F�Ѐ�\u0019\u00065��&\u0013dz�s\t`���+\u0007Y���\u0003��\u001c@1�k��A��,\u0002��\"��R�P���3����W\u0012��Z�/\u0014��47�T)��s=f�K\u0001]w�Cօ�\u0003�m�9�d#�p\u0012횃���\u0003C�xeέ��ե_13E�DZ�h�8[�_�:�\u0012n\u0012\u0012���k��4DO�Ҵ\u00107�\u0005���Ko�A!�\u0012����(H�m\u0012���(�辢�שl�\u0014�y/˲\u00023ʣ\u0011b-D�\\\u0005\u0017\u0001)�H}�~�K>�\u0012]S�0�U���¬�@��zJ�\u001a�\u0005����|af��^\u001f8\u00002�~\\\u0005��3e�l;�?�,\u000b���#;�����mT�g\f\fa[�\u0001R�h��\u0011P�%�\u0006�\u0007K3��a0�Y������0<�fr���m����L\u0002���Xc\u0001$�A�c�Dө@jc]��\u0006�(_'�\u0006*>A�椙�Z�\u0005W�}\u001b�pb%\\F��T\u001a\u000e/�\u0014ju�s�3H\u001d�s۴�`膵�\u000bw\u0019�\\p_@���\"g,$�����sI4R��\u000fd�3nr>Ќ��*��\u0015�A$�\u0012���ۿ�*��\"��0M���\u001c$$��G�Q�!�2:\u000f�\u0013C���Ch%���\u0013\u0015?���#\bg�\u0017R�=1]�*?\u0001�A�_�ē�O�h\u0000�H\u0013zB#e��E4\u0004\u0019��W�u��g)M���\u000f��\u00033��\u0014R�X\u0000������6��>\u0007 \r\u000e��Л�\u0018�-S\u0013Fl�c���n�\u000e�\u000bl���t��Ʃ\u001aFZSU\u0006�v�\u0017�p���Q?kT\u001ekO\u001eK�\u0019�|��ɨS�\u001fC�3�_�z\u001dy;�M<��YL�������pN\\�h��\u0013���� i\u001a\u0016n��i�\u001b�\u0012~��T:�٣H\u0003�衡\u001a���>̎ᅰ\u001a�`$\u0007�\u0001$o�Y����*\u0015�A<�\u0012����(��ڱ���\\��]HΤ��'���\t�wZ���s[�\fp;��+���2w��\\���w-�1���e�l��F/~�r�\u0006\u0016\u001a\tO?@\u0006\u0018\u0000����(��aO$(u���\u0012U\u0004�@fs\u0017ەV�o��\u0019B7�x�j�)�?�&�\u0016D��\u000b��Fߕw��8�ڃF4��5*�S��D�H��0T°�܁̝|�~�\u0017n\t'���\f�\f�d[(��y}\u000b�fW�\u0015��jޱ�X�O�\b�\u0004i�V$0w\u000b\u0006��\u0019�=Ϸ��=+������\u0004T�^\n�\u000e7l!\u0001�\t6��C*�\n��P���F/���D��V�,\u0012�\u0004N��7�V��+��!�#�\u001b��\u0003\u0005���Χ\u001f��\u001e�m�\u0019\u001c�̃�\u0018�A\"�\u0012����9\u0000m�r5wX0\r\u001c�\u0005�6=Hx��i\u0006�G\n��\nk�\b˘�c�ց�S���\u0003�2�jdyC��Pw���`\u000f��p�i.�0��*��dFԒs|�؄&��f�pT\u001c��%���\u0010r�p�(�9�4��\u001aZ���\u0018�\u0004]'P�ĵ�=\u0004{D��\n�\\�\r�\u0003�\u000e�y�̤�\u001b�bg;�;�T�u���\u000e\u0002\u0007�2΍B��u�Z�A�~���-�����C��\u0004�\u0018\u0000�\u0000��\u000e�\f���򚒲Չ{���f��eV\u0016\u0002�@\u001d\u001a8\u0001����c,������P>�z篦�\u00167�\u001b�_p �ʢ�XIc�>�mt\u0004_�mu~�\u0012�0�4T�Y�+�A\u0003�\u0012Ԁ�Mt�[�8���\u001f�׿H�^\u0014A\tN@��������\t)>�\u0018�Ɩ�\f0\u0001�kn|�0\u001dX�\faOR����=�M쀮�V���,6\u0002\u0003|�a(,�5\u0016k��\u0010a����\t:p���Qy����#�-���cK/��0Iz~����I5f\u0016\u0018Q���k@��.���C!x���+!9��T1k��|Ԍ�2���&&`#�D��JS���Ζz����==�$\u001eV��mK\u000b[-N��D��d\f��HE�y�BK�!��^���̤Z��}���\u0014�{i�~�K\u001dL\u0001��n�~f�Օ\u000f\u0006�A\u0016�\u0012��M0/h��~7�jZ~ՠy�q��V�L�\u000b�9͊��qut\u001a�\nV\u001b$�J�Y��\nu\u0016��\u0001s�\u0010m�Z\u0005j���M\u0000�l)�6�\tWO�q�'{�MG��X7�6���UH�qA��}؛�ڝ�\u0012H����W;���W\u000f�\u001b�0��V��Gr1�����R�\\�\u0001�t5�����$\f�G��}���(��vX�\nQU�\b�S~�+�l�@�A��/�`��Th?��\\=,�$��΄�,��\u0004�C�q��*��,���Y:s\u0000H��C\u000f���\u000fm\u0011,=��)aF\u001a\u0010\tV�x:!CH\u0006Q��xr�\u0012\"K\u001b��ߏh��o�A\u0005�\u0012����\f�*⒜|\u0018\u000f��@4P��� ��*���\u0010���\u0001QG\u0004݈�\u001b��<��\u0019�`v2�(��� 5�hrP\u0018К�:x�\"�NU�v��3j�k8�^�@\u0017IGF��P�$�ȁ��nXk��+�T�ϐʺw��\u0005�W$\u000fN%���R۱�?\u001d1Z\r�\u001e�~�\u0013�xom�w2�چ���v��Ź�#`�\u001b\\b�\u000f�]�S+�o\t��\u0006�(e\u000f\u0006��ꉼd\f9�W_�d⾰WF�Y[�狥�C��o�*[\u001d~el�6݅!���9@�\u001dHlc��\";H����mH�\u0006ߣ@�\u0013\u0010��L���h\u001c�_����|�hyQ��I5_uἭ_X\"Y\u0018\u0011U\u001c\u000eJ��>)�t�i�\u000f�Ջ��\t��%��=dq􇄼�D}������A�AL�D߀�'�\"��>�����\u0017\u0004�\u001b�8�\u0011��|g�\u0016�Ξ�`\"\u0014Q\u001b�H\u000b���\r��R���^)\"�^\u001a���X����1_�.���76$�\u000eW���R.b&»�����F�\u0000h!9\u001au)�P�3]�Z�T؍�!Y\u001c\u0014e�ta��\u0012�_XM\u0004����dü\t\u0005�q\u000f ſb������\t,��\u0002\u001f�uڇ�\u001f�&��\u0003�Xz�q\u0010C\u0001�[\b�\r^��,\t�4H����X\u0007�{j�\u0002�\u0001�Z �{�\u001c\n�F{6�~��݅M��X�*�\u001d��'�\u001fCƽ�\tm�A\u0012�\u00138��L�����\u001c��*�墏�\\.�E8�6{���#C�\u0012�tM��̋�����\u0011�@�)\u0015}�mmg)\u0005��_\n��^o1G.��V\u001f*��\u0017�=K�¨\u0007y?%v��#UA�\u0014��\u0015� 'DΫ:�4���Z�x|\u0012\"\"\":l�&3�z5�(\u0016;{K5�\u0006\u001a��'�y9R� ����ں�2h��\u000e�������Z�wi(k�nc��J�\u001eS�,�\u0007�PF<\r`���\u000b.�\f\u001f���\u001fO��.6�d�A\t�\u0013L��۷i���'�kEL�Ū5\u0004�[h����\u00186M?�\u0011�\u0002P]��)�.��4�š��\u000b\u001d]��\u0004tB�C4?�5��{�\u0017\"�vAJ�GV0eO+�\u0003\u001cP���l\\\u0010q)m�P�\nʳ��?�\u001b\u001f�I�\u0011�>�\u0000�\u0000U2`�}\u00132\u0007��N6E2&Uc���l�i\u001c��x�B(T�o\u0018\u000e��\u0004O�\u0011\u001fcy�S\u001d�����A��T��]�\u0007�\u0018(D�2e��o�@�|�^��+5���Ҕ�_\u001f���W�_���j,�\u0002\fn�3�e��'��߈�I��\u0014�\u0002�@_7=c���K�rWBF����p�\rDSj�A\u0014�\u0013`��۸Զ�ġ\u000f�7\u0017\u0002\u0000����D��%�iRl{�O�\u0016�.0��*��f+\u001e�65� �\u001a��H�\\\u001b��\u001d�!e\u001eB��Ŷ�_g��̦�]�߶�o\n�q��\u001aU���i\t�\u001b�s����Y3�\u0011�k��eq���\u0016�;d�k�hyM�Ȟ�\u0003Pp\b���m�|\u000bL\u001c9C����\"�\u001f\u001bS\u001f�bBI\u0003�H�ܤ���sL1��,<\r��\u001e���'�5𨦙e�ܸѼJ�\u0004\u001d�:��\u001akXa\u0015W\u0016��d�7E�\u0010�8\u0006`jj�̀:N�e&q��T����ž�$-�;$���ݘ\fB6��R_�j���\"}�A&�\u0013t��۸�P\u0003�M$)\u001b\u0016����\n�hn�������K�p=F��Q,6ĬF��’3_�p��\\B��1\u001a\u0015*�5R��\u0010�\u001d����y\u000f[��jv�\u001f.\u000e\u0002U\u0005\u0015��z/����v��\u0017�����\u0004\u0017�\f.���\u001fN%�\u0005\u0010\u0002R7�\u001ee�!t�\u0018���$SQ��{�_$W\r�}\u001d��u�H�V�ߏ8�\u001fki\n�\u0003�8��\fӫ�\u000b�u�\u0004f�!\u0007�]����'\u001f�/�\u0006\u001c�%2��|S�\u0016�\fU���\u0000g\u000b\t'�[H=ѢhT\u001b��\u000e����ǩ��h���\u0018�a�=0_\u0016���R\u001f)�Է��K��踡��~��\u0019��3�8�\u0005-ƮF��\r{ Kj�A,�\u0013���۷H{k�\u0004ȃC�n�A����\u0000����9a�\u00164\u0001q�8_r\u0007\u0013\u0014g\u001e�:K��\u0018�\u001be\u0010��A\u0004\u0015ݒ�mf���kG>��\u0010\u0011���%�IY\u0019��/�2&(D�-2�<\u001a�\u0004�+��rz�e�\u000b��)|\u0010Q����\\J�o�:q��.�-��1��C�\u0012A�t�7�u\u0006\u001c�\u001dg�^�\r�)�'�[�05��\u0012C��q�𔡍��\u001b\u0014j�\u0000L\u0001\u001c_��r�C{�\t\u0001�����hQ�?��>�\u0000��\u0007B�$�ck�\u001f[��\u0006�\u0015�P�?������G\u0013Z�w\bݡ,��c���E\u001d����y�P!-d�){wg�*�[�r��i(���������d��\u000f5L�#\f�vU�G�'?-\u0005��f\u001cYk\u0004�)CD�k�\u0012eb�!bY��Ү\u001b3\u00130����;�lP�&��?�r�\u0017R����g���i\u0006��6�x\u001eKr�yh�\r�.�7H\u001fv�̈�\u000e���\u0005��~\u000f�E\u0000��J?��4�!�\u0015�\u001f7��Z�\u0011ӟ@Z�p��VWl&)�x٦�ɸ�����G�%;^>��$-'��]\u0010g��kx/\u0016\u000f�������Ί�8B\u001e•�\u000e�r\u0016\u000bm��\f\tv�>���׳*:��-\u000e��d��:�\u0011��\u001f͸��\u000b�!\u0001o��%��:f'��Zs�\u00172�s3��.%r\u0015��|�//�ϴ\u0006\r�۰<����-���s��-\u001dC!�R\u001f2E�@<�\u0014&\r\u0013�1\\ʦ\u00042�Z(�GS\u0001�\u0001�_w�̒л\u001b��\u001c�\u001cRV��08��\u0010Y��ֳ���\u0016\u0005��s\u0002��m�ڃ���̈́�F�A��S7�B��\u0003a&תۄ���/��;�t�����n�A#�\u0013��۸�t\u00045�\b���_�؂\u0018�\u0006\u000f�\u0006���ɝ��\u0006C\u000b\u0003�������\u0006=��Ǔ\u0000�r���.��t$ש\u000fO›��G�6\u0007��\u0003Z%T-:<�G͉�\"1�Z4���rg�y]�X�8;\u0018\u0010k%YR�����5^�\u0003���\t��\u0018\t\u0002�F\u0016��J1\u0007M�ܖ�;ߍ;�d�\u00172�\u0012��}�k���Z�\u001f@\u000b\"\u0005S�;�J��Kş�,\u0004T(���'m�WQ�����D \u0004��l\u001f�c���;�hj��7\u0012��\rm�p=\u0016�7ks#�*��F\n�Ӌ\u001eFw������\\!Z�\u0005��,�k\u000f�_��\u0012��� �y\u001a���Έ\u0007>�\"��&{�Kr�A)�\u0014\u0000����7�@\f���xgI�\u001c��\u000f\r%\u0017�K%ګʼn+W��\f\u00122\u001b\u0013M��ؘ��^<ȴW?\\�dw\u001b�-H�p�Lq�\u0007W�\u001cȊ��s۩f�)\\9��A�N���$��b�:�\u0001�3��O���\u0003�\u0019sb��o�td���f�&\u001d �,��QN��\b\u0002\u0005��Gϖ1drx\u0014ވj؅Uub����\u0013�\u0000�E�J�n{���<�VY1��8o\u0019����Y[ZE�����x\u000e�8[{3��U[��VQ�4�T��Jm�\u0000�D�;�k�A=�\u0014\u0014���}�g���u�ajJ\u0015��CW\u0002��k3�$\\c>�\u000fN�o�\b�l����#���\u001a�#�#�EI \u001egD��hPaiCn�\u000f꿀\u001d_\u0017�k�_��\u0000����\u000e�F�\r%X�m:��c���iT��\u0011zQʘZ\rP��M�����\b�6_�+%GF\u0015��\u0002\u00131��8����(\u0014�\u001c^췫��\u0005��t�<%sWF��Gl���5�l��r����\r��|�]�z�>�\u0011:%Sy�r�Kj���z�7� _�t��\u0001�QNB��(~�I��0�:Y|�2\u0018\u00152\u0013�t�9/��)�in�E��̎�#r�A/�\u0014<���}�Rh���\fs:�\u001bxӟ|�4�\b�+\u0005��-zRn���6�+\f�rgy�������\u0019��n�/�:Ӿ\u0002q��\u000e\u0013�=\t�U����\u001b\t�-�\u000e6‚�Z��\u0003\u0005\"dL��|��x0H�I\u000f��{�䃽\u0010���ݡ\r�X�bb���`��L�`\u0018���%np\u0013�RW\u0000py\u000b�/�\u0015\t.leV�\u0019\u0013���1�R�L�TG\u0005�'\u001aƍ�R�Y\u0018��M�\u000f%\u0016�L�3�V�::U?t7\rg����eWN8���5��q�\f��O�Z�{� �m�f� �m\u00107�/�\u0016�ݻv��\u0003����h罊�\u0004�\u000eo8٭4�KC�\u001e떟\u001cg\u0015\u0018�7}��\u0000)�# h��r�A)�\u0014P��۸�&߅w�\by����/ۛK�2ˣ�O7\f�a���5��\u0018����|�\u0016��e\u0007�j� \u000b�\u0015-\u000ej�m�\u0002y�=��K��ڊ͏4Ψ����\\�[TvH�t$M�D��9N��2|A�P�\u000fAZ�=��\u0012d��l\u0014�F���h��d'���� (0�z\u0010G�|-6¢�Ie~Q\u0010*hUk\u001d\u0000(+%\n^���M$�PXɣ��㿉�k(8��\u0019�BD\u000e�\u0011�cz��<\u001e\"&�)�gh�F\u0004K�\u001a��\u0013\u001d�7��08\u001f?�|��Y���%�q�Y%�O>�\u0006��zw��\r&�0��\u000e�]�>[(�J<_l-\u0014�|�\u0000(א^\nD����Q�/�~\u0012Dl�A)�\u0014d��۸�}1x޳���99ns\u0007�����Bo�(&�$Ɣ�{h�(ŊM�f��}�����9�ª�u���]��EϙE�+\f?��Jv'A\u0005YwF���\u000f�%���-���UFi�q/\u0006 t�\"���r\u000b�` Z7�\u0013�n�\u001a�1>!�x3�\u001a\u001a��z-W�?�_�҂&�U�h\u0011���yƮ�@�S\u0001\n�/\u0003����\u0019�8�$L�#~\u0018\u0006\u0014����E�0�4i\u001bhM�\f2��#A\t�\u0015�&\u0003@3q�\u0004�6�v\u001b\nVw���\u001eƗ@�\"�l(�齦�ǀ�Ђ�v\u001e��7�e�Ѿq�*,�ڶaj�P��Nf�����<\u0004�t�\u0000݀�\r\u001b�e�Dr�A*�\u0014x�����3p�\rд�o�|)i��\u0019gaBK>WZ\" ��U�ќ\u0006�j\u0003�yw��&�\u0014\u001d�l��h�F���\u001e�Oѿ�pfM��唀��B\u0012{�&���\u001f����v��D\u001bOn3�vE���\u0002�=��b��{\u001by�\u001f�=��ڣ�\u0001@|��v��v�C�\n��V�{S��{@�v>>\u0011\t��I�x�\u000fm-��\u001ff@T\t���(�H[A��pl~\u0017�\b��^;�,H�81\u0013ԏ扶�\u0019\f�)��\u0005�S?\u001f+��KX\u000e+����;\n�J��בֿ�|��\u0015\u0006��m{\u0016���\b\u0010ɔ/|�\u0003�� Z���^�iAe��@���o���C5T�}!���y�-��F�p�A(�\u0014���۸����u�\u001d\u0015��H�\u0001��\u001a���V����x(��I��-U��0S��6��-�P5'�^S.��.i���<����4\u0006��0����s\u0007.޹c�[V�/�u���4��\u001e�W]�P�ӄ�ƚ��\u0016��r�.���B��_��*o�h�b�?f:ߊ��4�i��ʋ�������\u001d#��\u000fs�bM~\n���*���N��n\u0005y�Y�C�TJ\u0019\u001a\u001d\u0012�X����Y�H4��L���\u0003\u0016qB_#��\u0005m~͇�A<\u0013��Wa�\u000e����M�nJfr�Vỽ��_��\u0000\r\u0004H�Y�\u0004\"�]�����Y\u0017�A\u0011x:g�<��UԅpIW���\u0007�E��\fp�A0�\u0014����\u001b��4�.�dD\u0015];\u0015\u0011\u0014���X�`����\u0006]\u0002��`�\u0000#Є\u0017�q�@\u0018\u001c\u0017�e�����\u001e\u0016��A�֘�n��k��,R'_\u001e��\u0019�v��C�\rbK>\t��.�L�/Pm# ���I�\n��V���^\u001b �JZ�n�쨽\u0000o\t\u001aƅ�5�Z�\u0019\"�`�2#���\u000e�}M��ص�\u0005�tˌ�''X\u0006Kz��7�R��|����\u001e~�n��V)ZJ.��\u0007-�s��J\u000f���R�<����旿\u0010W�\u0011���pՇ��#���M5YĶ�\u001f�DQ0��Zh��*�0\"�J>�~}:t>N-�\u0016�+v�Ӏ��a��RE~��1�\u0011?\u0004�\u0013�\u0013���\u0001K.px�A,�\u0014����\u0003^�'\u0005�u�I�G$>�1�\u0010���?�Êk�M�\u0017z��\b\u0001�z�٪2\u0013E����ݙ�Z1��)�#(S��H��\"[7)��K�MI�%�\u001f47Ȱ���c5\r\u001a\u0006�<\u000bS�+���產Ng���H�R.�C:�\"�\u0013cϺ\u0011Җ��y\u0002S�c]���\u0014���\"[��\u000bB&j�\u001aXڣA\u0018�\u0014܀�1�X;���-���˧\u0014�z\u0000i\tEr�E%)��\u0007'\u0003#]����~S�ٌ��\u0000\u0016�\u0018�m#.\u0000�? \u0019�\u0001�QB\u0003J�D��Q��\u001eLj�ia������K\"��o�V�Wq���������\u0007e�o\u0002�GP�ϑ\u0000\u0015\u0003A�L\u000b�MOt\u0004��\u0018�����\u001b٩�*)��-v�\u0011*\u0010�\u0019+�\bN|P\r$�V��\n��\u000b\u0013x\u0002<\u0004�|_\u000e����\u0016֚u��\u0000R��\u0014�\u001b[;g����{,�U�\u001f�<�M�<\u0001�ܭdC�\\�\u0012n�k�W�\u0012��v��G,mvs2�ZJ�\u001b0\u000f΃�2PF\u000bEّ?l\u0004�*�\"r\u0006�b?�A,�\u0014���.�Z,<@>\\K�#`��SoY,8�E�\u0012*���l\t3Ye+�Ä�\u001a\u001b.D��;Ӛ��Y��\"L>\u001a��������!��\u001f\u0019�Q��ri]�FS��-�\u0000�\u0012\u001c��o�'�jC�S�P\u0016X\"\u0019A�\u000b��(��\u001aL��i�fhE��G�\"\u0004\u0014���[�o�A.�\u0015,�������Yfa\u0002˰�\r��\u000bu���� \u0000\u0002@Tb����\u000e��u>Q�Z�\u0010s\u0002��0��c�LMx菼E\u0006Yii)���Z����\u000b�7����\u0007����-H�����\u001eS\n\u0010�:��\u001d�����7L:Ζ(��&��'\u0011�gB\u0010\u001a7K�I\u000b��\"�\u0004q�:����\u001f�b\u001e�\f�oE�շ�����gm�������\u0016��w��kaH���Z䏀�c1\u001fd��U�u�\u000b��OЮ���-�mi�i\t���1)>�RM64�\u000b5ν��\b5�Y��L�\u0003I�_�O\u000e�\u0018��m�|�\u0001hd?��X�S\u0012��[��h��g�n�(�d{��\\c�\u000e�\u0003�\\���;j�A6�\u0015@���T�{T{�<\u0004���zy\u0012$\u001b�\u0003:\u0018`P�\u000f|d��g��b��J�@����yd�\n�CL�\u001c�j܏�\u0000�S�����\u0002�q\nB�r�]k�9���#�g:�\u0014�E��U\u0018L\n��\u0013p��\bՁz7�SF(��r8\u0013\\B��k\b�%\u0017�[W'��V�T���\nC�&\u00031\u001d�\u0001���0��Z��m�ID��1͗�\u0017N�'�%�Ni��\u001a���\u0017E�\u0012�Gj{\fpP\\�\u0017\u0019�*\\\\�'TZ�5�*�\txvޫ}i\u0002\u0011�f2]ԯ����?Z\u001fSvnMg�(o���R�\u000f�� ��>��s�hU�-��+6\u0012��\u0016\u0001\u0002Z�$���\u0004��˟w��d\u0014�c\u0002;�6�\u001d\u0004�m�j�A7�\u0015T������C�9�\u0003I2��ģ\"���\"�UP�\u000b�]Z\u0016\n$���ׄ��\u001fB�O���fi��\b��-Z$}Kk5:�'N\u0006�A��ɷ�.�WK\u000f��\u0017�\n\u001eه\t�(x�S�[!��~g2Xf��}�V�&����s��\u001dY2��F�I\t�\u0019���\u001cIJ�p:i!޾/.�Zbhm�>Ea�.��p�VY������S�z,\u0002��2\u0006�0\f\u0007)��\\2�|\u001c�\u0013\u0011�5d��7�P=�]+K=\u00064�\u0004)�1��v\u0010�D��-�c������}\u0013Ѯ�kJ?��b\u000f<��%��\u0018\n�a�}�\b����\u0001�\u0006�\u0005\u0005\u0015\u0012�\u0019�\u0003�\u0012\u001f�M\t���!$&�Ge���\\�aG YV�_��\u0006�Z�A2�\u0015h����Jy�Z�:IX�%!�u��g�\u0004(9���\u0003�Ds�ȕ;�-V�2\u0006��K�!���\u0017����\u0002��鰵�؝��!]r���Z\nn�%�\u0004LB`�Q�}�\u001a�y��{�S�,#\u0014��&��-��f�u\u0005\f\u000f�\u000b�T���\u0014FVQ��U�,����ęÉ�\u0000�6\u000b\u0005�\u0012)ܦ./�Ә�@�\u000f���P��\u0007u\u0003\r�;Z���J\u0002�<�T;l�R��z�&ӈ��Q@\u0017��^�t��$������ֱ\u001cM\t\u0002f:��Q�\u001d�\u0015����#>>�[!N�K�A��w\u0015TA�7K�����a��mU�C׎w�ņӃ��4��%\u000e7�~P~�M��S�ӛ;�\u0007��Nb��L�r�A\"�\u0015|���A]��\u000e�kb)P��դ��D�\u0010��\u001fy\u0015��o,*�HeܼJ��f�g\u000b2�Y�k�/x�\fːy5אsư�N�\bū��m\u001c��sÕ|\u0003^�i`\u000e\u001a�L��T*\u0005\b\u0000������r+����Z�>��\u0002\u001bB��Nφ,��/�������\u0013A#�\u001d\u0000�~�yJ�&�]`R�8<&�,�9�n��h��X\r\u0015zW��;\u0018�\u0006*��zl�4\u0019�����:\n��l\u0004~��q�����2�w���uim?�\u0003�|@\f��r�A\u001f��.��;���2V�W\"����\u000b��\u0017�\n\r|l�ڥ���,A:*>\u000f\tK&@��d�e�\br.Y���n�Aǁ\u0015���߷\u000b{_\u0004��-cJ\u0015u<*)�Dh�$�\t�h���^�G|�\u000b�Ҷ&�k�\u0002\u001fs��\u0000%y\r@ź\t�bi_)�\u0016I�\u0006���Y�Ĭ,^ɠ\u0001{�.�?\u0006>�P�wh\u001c�t\u0014�Mՠ��@‡�\u001c\u0011~ހ��l����rX��am��y���m��4���T�_�x�\u000f\u000b�.B��\u0019�bI�\u00029�X�*�\u001b��:{(���A$�g��I��g>��/\u000f��t��\b\u000f��\u0016�\\�\\NvE�❜\u000eUtj���\"q���\u0002��U�\u00152r�\u0018L�5\t�k�3��X�I�c6\u001a�R>�2��ڎy�Vk����lf+\"\tA\u0012��\u0001�\f�]^�.��Z\u0007�E\u0012VO|�)D<>�nE�\u0019u�ǝ����8��n\u001d:F��V\u0003����'D3\\?W2'��Ei��\u0012%η6\u0013�.\u001a�\u001b�\u00032q\u0010\u0003�&�\u0004�\u0012�f6\u0004\u0000O,��������Y�\u0000���ѕj�t1��M��`�iH�T����jR!�\u000eKf:�:\u001423�\u001a����P�\u001cO�\u0007�`Y�dZ�S��w�\n��\u0016\nk�Aс\u0015����Xo���\u0007\u001a�� �\u0007�}��02���\u0016�!�C�'�\u0005]��Edg�0m��\nYp\u0013��sݫ�-^F\r�s�u<�uv!�X�ږ;\u000f��E���\u001f��3�#�[~\"�\u0000�����\u000b\u000f�\u0015_?�\u0002�O:�К�VQ=%�i>����t�L5z��\u0017ݱ�e\u001b�\u0018�\u001b�\u000bM���R\ny�m�����@�HaJ����f��\u001d��vF�\\#E����%�W\u0018�S\u001bR\u0016v�0�G�j�~�o�E�4�dʅ\u001d\u00079M��_\u0019*�0�~�%�qL�h\u0017����\n=vjR`��\u001a��^��Jr��J���D�!�@\b�,\u0015\u0007��4��\u0007Ŝ\u001f�|��g\u000b\u0004\f���� ��\u0003k�\f\u0017m�}+ؤΔ�ԙ���O�\u001e`F�>e�/1\u0007��̖�(-?�TjY()�'_T�e�l\u0015��4@r�Fox�6[O@+v�c��Fm�BUur�J\u0015��[��~O����I7�\r�`\u0018�.�{�xM��>+\u0012\u0005�\u001apj��(���cyI�V\u0017>�D�\u001c&�?��o��ʳNī�u����1*�BK�\u0015�����Y�rƽ��ƀ\u000b����Tξ&����MF�\u000e-�yUMQ;�\t>�.�q��p$�6����y�&��s\u0019,�'\u001d�\u0014��v��f��c�\u001b�w�I�,��K�K�>\n�X�L�58L��\u001b��\u001ep\u001832M�\u0001��\u0015_�aM`t����q�:���4�\u0005�;`+\u0007����G\u0015m�.ey��׀9\u001d\f\\MWvAc�=��1�\u0018��u�U-P��'��*�[�\u000e��.J�E\u0003{HF\u0016�\u0004�\u001b\u00151��7���yq�s ���\u0005JEA��{\u001fS;�ɧ�CsoX���\\P�\u001cvtb��\u0019\u0019�`f.U-?wMcp�V>n\r��@�r�؝7��KS��\u0001hȠ\u0002\u000bN4(���c+�v4�\u001d\u001c��1���[[��x}�}�\u001cÉ\u0015\u0017\"!â\u0006�@U�bl�E��F�0��L��Qq�\u0015�z\u001b\f&\u000e��\"�oh!��\u001f{\u0003����5J\f����?�\u001f$�1�]y{��\u000f�Q5��\u001e��@,��/\u001c�o7\u0002�}�\u0019`q\u001b���G#ԣ�O:\u0016�t;@�\"�h�Nq���{\u0007h��s�1���v�>ںqq���X���d��+��n�\u000e��\u0003��$:�A��\u0015̀��/�~R}����H�\u0012�p��A\u001avb��&�\u0011���zԪʛ��>���C���c;��\u0002�.jj)_�j��\u0010Z^���\u00192\b�n��\u0017�\td�Fiˎ/��#u�T~\u001f\u0006\u0001U\u000b�c��\t�׸�~\u0018\t(4Q��\u001e\n��j�CR�\u0002�O��BV���\u0004|#�=\t��)���A�\u0018w�b��`���C(r�kC�\u0011\u001bAj\u0002`#8Nh\u000f����e4�����S��T�\u0015�\u0010�S@�\u0006tΏ��\b�i}�/�'��9�\u001c\u0005�\u0007\u000e�,�s^\\L�\u0015����E\u001c�R��!\t�\n�~,rE3j�\u0000�s�O������%\u001e\u00120W�\u0016\u000b.*���nwؕ��\u001bJtTo}hϊrc�M�1�\u000bsK�-\u001a�OL��|\u0012��M�-\u001fʧ\u0013��\u0004s�� xI;+�j0���\u0007���B�\u0003��x��^<�Xk�Ϟ��y��X�1�\u001a\\��]:o���\u0011�6��Pl1p',���\n�;�\u0015\u001a��\"���,��6@�\u0000�ԁ�p=;\u001a�g@�bm�AY�\u0015���L��!G�p�����q\"5�Z%�wrol���V��v��y����':����5����\u0013r��\u0002�\u0012�y�nc����ES�Q\u001880]�_X{>���\u001a#~�m��v\u0018�7�q�՘\u001a^����L�\u000e\f\u0015�F\u0002\u001bf��}\u0018�\b�k�����N:A�&2$�t��xv�e�9\u0018\u000b�\u0016�\u001f�W[��V��<�i�1�\u0013`�\u001b\u001e/�.gn�^(7�^��$_ϜS\u001drF�R\u0016ue�\u0011U�\"\r�C#\u0019�P�kվ\u0017\u0019ҏ�Fq����5��\u0001�7�\t\u001a�\u0016/6�\u0014:�6e�6\"u���Ծʅp����2b\u0013-��>���j��'�[^ޮL\u001c�����X��ͨT'@�d�d3�ҍT&@�6���y\u0012\\����9~�(�H��9��pp}\f\u001a�C\u0013��a#kv���\u0003�/\u0012)\u001d��;r��&� \\��(��X�\u0003)�\u0003�\",؋�I/\u0014+>;�./��E��f�|�\u0003�=�Ѝc}�-O�B\u001cc�t\u001a!I���\u0000�\u001b\fW�e\u0001\u0006L�>bN�\u00143��\u001fK�e��2\t�\u0003D6��>�k�\u0001\u0010\u0007�/S\u0013\u000e|�\u001e.�\t,��\u0017j���E\u00042�t�l�ȕ�m�AK�\u0016\u001c������Y�ZU�\nA\u000b\u0012�m|\u0011a�H���F�I\u0002t��(g�G��2@�\u000e�2�W�A\u0007��\t\u0002�9^�\u0006;�h.����\tB��ۼ\u0005NQ0C��Cm�<�%F\"�`\\\u001a(�E�\u0010�?��-X\u0004�YF�q�6�\u001c����'S$P��5��\u0003|�Z\u0013sm�c\u0006(��A�{�HfZ\u0011�PV\u0015bt9g�yfW�\f�\u001eg��\u0001aS�R}Z�<ݳ\u0017\u0006�3\u0013����YY�x�U\u0011b��:4�Eɯ$��B�>g[��1�j�7ᵦ�}���n�{��Z��N�r\\\u000e1\u001d\u001d>�A^\u001fE�\u000f)���j����'e���\u0018\u0012��{��\u0019߬\"��1Ĝ���H#�\u000e��\f0��ǑF�\u0019��\u000b�\u001c��\u0006�q5s%'\\㳋ej���o�AB�\u00160��۽.$��V7��\u001d1����\u0005��`r�\u001bj��?���|}�\u0016G?z}\u0019�G�E��Y`��e�vo�z��I\u000b����OQ�wst�\u0014�=�o���EZ�Ғ.�k!b���)B�\u0014\u001e}d���\u0019\u0010Y5�D\u000b��!�~İ�.\u0017�{��ڃЪ���\u000588b.�9o��\u0018�'\u0012\u0017l�I{m`�bV��\u0013����P>��ڰ�\u0017\u0019=n1Ox���T�\u001amK�v|{��g�\u0013\u0017���Z��fOā\u0018�\u0019(mٮ����{�\u0017�x\u0007��ˑ\u0007��v���^��e�$��u�YC\u0005�\u0006�L�˩��n�@e�\u001c�\u0015\u0013p�u{\u001a\u0011[5�ז��?�\u0013\u000f�\u001foé<�u�D��*h�>\u000e$�\u000fưs]�z��\u0003��n�AS�\u0016D���Ⱥ�?Tx�\u001e�\th,\b�L�u��;P�#�� 9J�\n\f�5\u00146cS�4U����'\u0010\t�i�QM\u0003�\t�֦ٓ�\"�j��[����Ʈ��K����j��4J��o �7�{�VD�K*\n\rv�S�L����dSeA�:o�7��{6=W]��)O�[���\u001fL\u001c����Սb\u0016J���|%\bA\u0017��Rg��+��j\n���\u0017�����mx������ȑ������v��I���d\u001a��iA�s�K#�6��,���kvm�{�,[�\u001etx�\t,b�\r��e��q۴�[�cE*�85�Ug\u0010i��Z\u0004\u0005�MM|�x�d~��L\u001ful��\u001aPR�w5���>W\\�\u0003���3\u001c&\u001aA�0ؤ�}�4���F��E��/���r��m�AK�\u0016X����,W=ǛtQ�A�S�S�E^����9;�Î->\u0012�XF\u001c�+��gA�V\n�/Y8H���>@\u0013��U��.f�\u001a�����q��D\u0000�cӿ�$�7�7a�\u0019mr\"�}s��\r�Bbʰ\u000f��:d�K\u000f�\u001d\to�\\>\f�I\u001c�\u000f��\u001dm���+@\u001fN�\\��I\u0014�Z��\u0018��\u000b>�1�ʪ;RM<϶\u0015�\n\u0011��7���I��(�o\u0012��H\u0001��)�-4s]�e'\u0018C���T:,�[s�Íw�\u0013���Vl��7���ï`*�9���z{;>\u0001�Cv����Z��P\u001c\n����W\u0002{J�@\u0011;9��N,�\u0004�L����\u0016�u>����Q�X�j#��\u000b�a\r�\u0000W~N��H��2\"���N.��pKp�AH�\u0016l��۷�\u0017�*\u0011\u0010�a��}\\\u0004Кa��E\u0018�\u001a��G\u0015�����x����b�\r�]�O\u001a;l�'~\u0011�16��\f`�Ma��\n�Ȁ�Oi\fƤ�)J�}�B\u001b�\\\u0005H��\t�M��\u0011�\u0012��Ķs�g��KL��z���R\u0000ҳ��||��k�85椉�a�\u0005u�\u0017�\u0007����T�ē��s��,' t1�b�\n\u001e���߁��O1\u001bl+�_j<�\t�*`e�W�\u0012R��F��22���&�x\n)YH�G�M��Ӓ���-�$|z\u000b����|��g�\u001f\u0014\u0011��\u0007\\\u0018��@x�\u0003\u0013\u001f���\u0016����{�^là��\u0000\u000e\u001b\"��e\fR�\u001d���D����;�f)�J��A��@V���zm�\u0013���Q��\u0013eY��l�A3�\u0016���۷��S\r=��[�(:\u000468ҐTz�҂$�z\u0013C7��\u0000w��\bF�\u001c��\u0019?�{���ɹPCk������eg�k�5\u001dч)W[O\r>Qg\u001d\u000fMz�\u0005`��8�~0�{һ�6Yv���D�\u0011���p\u00047��I�~m�\u001a[$\u0016Ҷ�L�\u001e|�5)�y��\u0005\u0014d����k�������\u001f��\u0011�sۓ��b�T?������\u0006���f�R�@�k�����u\u0013\u0000\u001aq�{ +��2}�?�yS`LI�t�\u0018�\u0019�8����<�3\u0010c�%\\���\u001cU�ma���`r&�b@��<�aK\u0003\u0011J��L�ȗ���-�y\u0014�䐶Ђ~f�,7\u0012�e�Y��e�\"����(r\u000f�_\u0016�n�A?�\u0016���۹,J�\u001c\u0015k�\u001c9V�FQZ�\u0004�W�#�\f����Q�w�vc��������������v{�\nA��zi���qQk���\u0012:�\u0012o��r��X�З%̣��URm���[�p�a\u000f`yM'�\u000f�\u0015Ҳ��&�+A�\u0018%m@�R�N.�nd�\u0002���NYzۋB@~��D�\u000f�I&��\u0003�/*���V��ڭ�\u000be\u001b�\u000b�,���;�}�� ���T�\u0011s���\u0013>\r\u001c�����&�\u001bμ�كv��2K�\u0005\u0018�\u0000�\u0016N�k�ȼ5\u0012�\u0018�{�\n�wHb\u000f��r�M�\"DY\n�[�Q�0w�Ar�\r��2n9��1��\u001c��t��B��a\u0017�>eP����`���b\u001f[�Ke�L�\u0001�6\u0019\b�\u0013km�A>�\u0016����(�x[W{\u000f��,�!ҧ\u001fe�\u0007�N�I\u001am��6/B���:'�[8\u0019��H���������X\u0013�!\u0006��?g�\u0004'����$��\u001a^e\b1u�)�Ѧ&`��V�-\n,eh�4_M�%#�Wۄ'\u0018Hη\u0018���=#]��9A�fs\u0001?B�p���=�в�;B���3�h�c��v���V\u0016��@\u0001J\u001d0��oHי\u001aH��~�\u001d�Q��:�_`�дЮ��\u000f3l�;��ƤDd\u000e�M�\u0014�\"a@Iu�_X�!l�A��\u0016����\u0010�͏ڤ��cvb�\"$=�������_l\u000e��SG�N�\u001e�ZK�ZRL\u0013�NpV}���&�<<{:�)�֥�/��,{B�����(��Z��Z\u000ea���^�vHK�S\u001dUt�h���n�T7��D9��\u000f�\u001aY#�C|�C/�@H�4>c��z�?Hf�rZ�_�4�e:\\\u001d�9��U֟�Wr�\u00008q\r�Z��������|\u0003�(2r�S6'�lb\bߏ˔�?�.�|���\u0015�\u001cJ�7v\u0018\u0019���`Q/�f\u0001�V�\u0005kΟ緂\u001e��\u000e�\u0002d���3\u0018��(�\u001c�E��rl^��zjɡ3���\u00004�R2ؕ{e5?�q0�54S�]�?�\b��Ƶ\u0019E\u000bU\t�\u0015\u001b\u001e��ǣ�\u000fj8äu^�T��\u0014�N���\u000f�\u0019Wo�y\u0010K0G��&�YH�\u0004�&�e\u0002�e�r�2\u0004B�|�j��j��\"缶\t��uJ2�I���ϬN�Sn/��Th��M\u0001�?��vOL�^܎�r\"=p�a���$=�\u0013&�˗Q��5y�aX�F\u0004\"�'\"���z\u0005\u0017L���\\\u001a������(�w~����}�ҟ.�\u0003?c�qF\u0011c\bn\u0002\u0015K�\u0019��\u0006X�M%\f�r�\u001bx��\\m�e�fU��k߬ ��AA�\u0016���\u000e�\\\u0011�e)\u0016\u0000w\u0011�!�b��\f��\u00106��COm�S\b���RG�YI��mE� c��p����\u0015���fl8�\u0010�\u001d�rݧ\u0016�ϾV�@�\u0011H�J'�����\u000f''�%J�\u00005Z��\f��wH���\u0019K�H�)k��\\��IY\n\u0014_����� W%�\u0004::V\fS��1V�\u000e\u0019�\u001b�B&��Ǒ�\u001de��_R4����:��\\#I��ӥIL�gQ”Ձ[>.B\u0007n� n{�m�ҵg\u0011>|N�\u0018�\n�?�\f>���I\nX\u0006�1\u0014�iB<�)�{��n��|w4twi7��\ršk/~q\u0010)�n՞\u001e%+#k������Bl��?����\u0013����n��\u0006e`�+i��\u001d�t*6�B Պ�s���+R��G�F���e���\u0005�\u0002ңD��,�l�&R|�(\u000b�`\n�\f��n7��0��ntqˊ����T�W(�vˆK[L���I\f\u0006�МأA<�\u0017 ���?\f����H��G�@(ź�]���ݰ�\u001f���Y���Z\u001b��,\u001d\u00156H0�v\u0014�hp����/���d\u0016�!Mz�J����2fLh�\b\u0007�>�\u000f�\u0007��> �/OhjGu���-����Բ��=�wu}7P�=��;(!\u0016\u0004u<3����\u001c\u001e6\u0005\td)\u0005)_}�C�\u0018�\u0019�^�\u0011�?Pjr\u0002y��\u001e\u0005*\u001eB�%\u0016���,����!��TF\u0003V�n��\u0007.��\f­k�{�.�\u000etJٍg���D�b}��Vq>_�,�yv\u001c�\u0010R��xe��X9\u000f\u000fa�K�����\u0003^QM�Pf�:���\b�t�|��O҆�s�\u001d\u0015&�*�\u0003\u000bQe�K-a�3\rl����$�F���){\b��S�lݣA=�\u00174���\\��?�@�.3��ɻ����Ii��rCA\u0011|�8܇�d���b�${�Q]K=]���<�@\u000b�}Զ���[O�:0͒v-��1\u0014\u001eYKF��a=\u000f�t�L�U�?���A����E�E�U�� �w\u0010��U}�p��b�e�����5\u0015J��j+!�'� ���_���FV�e��\n�\u0011����f���|qՆϏB�$ھ���Sz\\|\u0017��C�B�U��zd�\\�\\��S\u0013�㙗��K\u0014�)~�.x��$�=\u0007d8/��=\u0010@S���^�Uw\u00156�P1\u0014Ei��G\f�B�_�*1(�\tsH�e��N��$\u0000.\u001b4l����|v\u001fL��͙s1�����C��\u0010��?���K�أA4�\u0017H����բ�b6\u0017ȡS\u0016N���zi\u0010��\u0005eY�3y\u0016��V�w�u�\u0019��\t�ư�ܲ�C����G�؇��=���^\u0014�E�`�M8��\"d�v�^��D*&���wR��14��\u00183���5�X�[�sc��\u0011�\tq��Y'ψ�+���@�{�`���V�z�,�w�;\u000b\\�g\u0000(� ?\u000em�dY<\u0005n��N$�L��W�/F�A\u001ap[������l���\u000b��&|J9�-81�\u0006./\u0002gE@\u001d�X\u001d(��:��\u0011f�qL�\u0003hDTV4+ȉ��%�\rV�(إ[PBHi��\u000fS��H]\u000e�̉�ݱ�u�\u0015J�`�\u00070���_>\b��\u0005��m+��kg[�Q̑\\�^�ڣA<�\u0017\\���\u0019�$�\u0014\u0001\u0019\"�A�!\u0007\be\u0011��>U\r�e��\u001f�W\u0001\u0018\u000f�x�\u001ck\u000el�_fͥ�N��\u0013\\y\u0004\u0012�v���\u000b.W��XJ�V��:s?�(���#�\u001dtI�ѼmM��\u0000j\u00070-�4|�@ld�����\u001f��\u000f�\u0019#�\u0011�cO�u�be�\u0001\t�\u001f>�)]�@t�0��Ќx�U����k�AY%\b�`ūM#�\u0007:7���������\u000f\u001f�L��r��'{g�}��}�h��\u0000\u0007E����I��\"��\u001a�L$��lڣA��\u0017�����P\u0010Y�%�S�j��ʚŭ\u0006�2\b�|p�3nI�+��B����q\u0011!};ps�95�GQ}-�\u0015?RZ\u000e\u000b��ˀ\u0006�u�L�\u000b�R\u000f��J��\u0005���\u0003��\u0017\f\u0018�lx���C���Ch�F�����\u001f���\u0015��=^@\u000fi��n�R6�\u001e'�#�KͰ�5?\u0011qn7\u0002�񶾏\u001b��fo\u0010!f:\u0014��V��$�3�׻x��%gÐ|EF��f���\b�/�V��\\�ס��k\\i*�i�3DA�'>���/\u0004�i��\u0015��HC�G�w������ Ucg\f&ɘ�8�=�\u001c�Bk�V��\u00059����+l��RI`\u001fD\u001d\u001d��M:���\u0011A�Ҙ���D\u00193��1\u001c���Vp\u0014�\u0001\u0011��]\u0019�\u0012��w������=�n��eE���^�?\u00199aǩְ\tEK3XN*�$&ٳ�H�?�Ҁ�\u0002�R�k��{O;6 ��\u000fJV�U��:s�ܣA\u001a�\u0017����Y�@�1Ʉ�E]�\r�L�#��\u001e\u0005A�#G�\"-�\n:���\u0018s��e^�\u0007�\u000b<�3�.~��S��iLH�ٶ֬\r �9zA_]�\u0017���\u001f�s[� �P\u000bh,��-1�\nj��V<�_`�r��P��crRȿ�0��!`v��΄\n\u0017`����e�2?�%+v(��.י�\u000e���J��ut ��<�!K�͠��pNOQ�\u001a*��\t;c>1r�U�\u0010�����hG\u0006\u0013F\nD�r��\u001d���-l�P��?Ggꋉ\u00046��Q4`RHܣA;�\u0017����\u0010V��QF�H�\u000e)=\u0000��\u000b�K��'��wm��B-\u0006_\u001d�c_��\u001f}|y��$��m�k�4(I�a��CH,��\u001a/,+>ӹ��b%�2%�ɫ�7�[�\u0004����\u0005me:��1S�ϑ-�\u0015\u000em�\"ҩ�\u0013���/�J�ȿio\rx�+�2�q���T��m�\u0015U(�r�{�%\u001c5whC\u0019�x({P(�$0�_�@�\u000f��6�\f��|�b����\u0002oJ\u0017 �&U�M���(ˋ\u0007�l�$P�,m\u001f�\u0000u���\f2K��\u0014��d.\u000f4\u0017i\u0015U�4��}�\u0007\u0016�\u000b��a���o���s)��k�\tȓ�\u0016��H�r\u001c�2Sy�|��V�G���*ڂ\u0011�;\r�l������̻[ǀ�֣A%�\u0017���0�][�By�\u001e� �\t�\u0014��n\u0003h\u0006}JQ��q�,CG8��+@�-\u0018%*%\u0017o&�y(��\u001aT��g^ҿ\u0013\"�D��0&�\u0001?<�\u0003��\r�U��$��pZ\u0011��G;�?F�!�?粒\u0018\u001a\u0013\u0007 �+jm\u0012�\u0006�\u001e=�l�1��J772����\u0010��\u0005i+�8�u4vt ��g� ���m�%^{��\\����\u0015O�/\u0003�t]@�f��Ԁt�3L���mP$���.R\u0006bQm%m�>7��C���\u0018]���%.�\f�\\\u000b&�y���\u001c�K�ϖ\u0018E\u0000*�)Z=@X����\u00063w�šk\u0005۱\u001dF����k~Q��\u0000�A�\u0011)n��؋\f;���?�Aށ\u0017Ԁ��\u001b������\u001e��X~G],��e\u0011��/a����\"X�@��\u0010���N\t:-b\u001c��&��ˇE\u0018����\u0005�C'\u0012NN��J�2�<� �Uj�6\t\u001a.�\u0015\tNC���}ia�z��\u0002V^��Vcs\u000e�L4��<�\u001a���TR��\u001b�Ե��dFL�F��7L���s'�\u0014:�\bP\u0003s�����\u0018\u0003:�D�]X.\u0003� @W߳1���<\u001aPƊG�ٮ\r�5��ܴ�\u001f�}��}M2�\u0013�mId̈́�x�/�he�\u0004��Z��\u000f�\u0010[���+[d�\u0011�_n3�O���H�3�js!�hO��є�[��\u001c`=�41\u000f\u0013��j���6�'\u001dR�z�[&H�\u0019�\u00053n]�%�\u001b�\u0003p\u0016q\u0007�!�Ug�q&.����˔��\u0010��'��\\�p��5\u001c[�\u0011۝!��6I�\"#�T�jd�n�\u0007�<&i\\_\nz��\u0014G�\u0011<\u000e;��ұ&�1aFǺ�sV�}g��_hu��e,�͡;\u0001B�{���V���#\u0017��62\u0005FjI���w��Nd�o\u0013tmdY\u001c\u0016-����ꄹ\u001dl\u0003D\u0011���������.��\u001eF��AY�\u0017��{7!\u001a��^Y��:zX���\r�\u000b�r�x�\u0012��\u0016������\u000ef���ClW\u0018�\u001f?\u0017?\"\u001b\u001c\u0015W�\u001e���{Jͳމ�m\u001f�՜ؑ/>��<.���\u0019�\u0007�r!��ˣ(F\n�\u0011���i��i��\\i�+/q�'\u0001�=r\u0007�@7�\u0006L^)\u001d���-�2\u0013D�\"�\fc��x�Ӛ�\r��\u001e�\"��d��Ц���\rr<�\u0003\\k�-���\u0001�\u0010L�,\u0000=\t��+\u000fvP�y�\u0013\"y�)�4��p$�z�p�`c���\u00151���}\u001d\"�3~x0�K$nB\u0016�S�:,܉��\u0005\u001f0I�\u0007y�l��w���6e\u001d����\"�9vwΕ\u0011I+��Z\u0017�~�\u0017�$\u0001�\f��[\u0002��I~�\u0015�ꓣ@��\u0018\u0010��LɩlΥ�ETvT\u001b=\u0010_�s!5�A��l{������\u001f���y_\u0014\u001f��W7\u0014�[\u0010�L3\u0011�W\u000fD\n�\u0010\u0000�S��,��\u001a(\u0013�l��\u0015��n{'�\u0018.<0Ք;\u0001����\u001b=��i�[HH}��kǩ�\u0001�-$\u000b\u0016�+�%�(A�\u001f\u000e\u000e=��\u001e\u001e�1����67�^��.L0��p���I�]K����\u001c�kˉ���?\u001a>\u00107�l�\u00068\u0016DOrW��rW2a�)XШ1Ф>��\u0015U\u000e~]ƻc�d�\u0006o\u0001��+e��\bޡ=�VG\u0000O���T\u0001��d��&�Gr�J�@��\u0018$���\fx�~�/���\r�U\u001a�\u0017푇zUK��f��\\h�f�R\r\u0017,�W\u001b����\u000b�\u000e���F\u0011�w�\u001c�-�\u0005\u0019sJ̴\u00124&���`>��>ɞ�V9|��0�B��=��o�w~F�Z ҇s��p���4����T\u0015!y�\u0013ov6���p�k+�Wb��\r�rI�\u0012��;��3��/��]����\u0010�&ڰ�\to�\u001a�Ͼ\fJ��B\u000fm4\f��fA3=\u001d�j�݅�t�C�������q�H풾\n�zI\u001aO��Va�:\rE\u0014��L�B@%\u0012S\u0005\u001e'�\u000f�\u0004t�@�\u00188��Lɰ��'Z\u0013��\u001eJ���Z�i�O\r�-P\\\u0019\u001c���t0�\u001d��Z&kv��L��\"S5l����GM�\\����%Ò7\u0011&[�1��&�X\u0015�\u001d�ҫ\\�x��\u001da3�s������X\u000ek�x\u0002{+�U�\u001e�z\u0004�P�~�hsh\f\u001b��4/,�ϙ��Ń��\u0016�I\u000f�\"�X�WZ2�m��<�\u0004�\u0017d�\u0014��\u0014\tk*-�\u0001�#�L���$x��c���#j@\\�F��rg\u00006�A,�\u0018`���e��0`���U�A�\u0018�\u0018����\u0011���\rxь�C\r+��g1�\u0002_�H\u0000$����� \f\u0017��\bRq����e`\u0016�\u001f��pC1���\u0017\u0018�\fh�'�Bs�Q&�jFQ���Hq�N\u001f-1�n��r\t�M����C����g�2\u0015�~}��\u0013�08\u0019�M��&����)g�ʼS�\n5\fu_G��%�)�h{\u0002Y�m�7�?X�Š����8����|��׸�\u001e��p�`o�����ZQ�=�\u001e\rRq\u0004\t\u0000\u0019v=rj��\u0006\u0007�L\b��\n�\u000e\u0019+,��=Ў��\f�tN�\u0013B�U�{\u0019N���7�E�Ml\n�\u0010��Hf;�ʹ��N\u001e�\t�ے\u0002��L�����£A3�\u0018t���o���Ad���{�\u001a�(\u0014ͮi��yg�\u0004_,��\u0001Ui\u0007(_����U6�8\u001c�a�w\u0005��\u0001q�Z�\rh'9]��\u0019��\u00118�2ʵ}!8������\u0002k���\u001fA�E��|�N\u0014�\u000f�C�\u000b�@\u000e�D�?�P��w\u0017*�\u0016t����su))2�;�M�\r�W��������e���ӧYı�K����%V��t��¯��P+��ŀ7ܠv\\+?`�g9��FQ\u000e�Q�a�y��ڰ0�n\\�\t'`0%���_\u001e��};�A>�\u0018؀�Lɰ��,\u001a�,\u001d|�\t\u0004��$`@1�i���eH[�jJ��(��Dq\u000b�\tI`��OY�FP<]�1�jN��kj���-\u0000t~���H\u0003]���(s\u0013�\u0004x�q�j�g.�Z��T\u0007\u0011��5N�:���Z��K�\u001cC]�#c�J����\u001dD\"Buw�\"�צͿ�o\u001a��r��\u000bR�i0Ɣ��7�=&\u000e��?zX�\u0006o\u001c Ы���)8�\u000b_�(��\u001f���\u001bzo[.pʲB7�\"�na4_��\t�&|���l�5�\u001erᆔ\u0001.\r��\u0013\u0001\u0012eӞ#���eR�\b1�L;�!�8\u0014t\u001dL��Xq�J�\u0007.u��~<�\u0017��X/k��`\fS�/�8�Sg���Br\u0004\u001e�@S\u0012������Vn�AZ�\u0018���Ⱥ�\u001f_D\u0018'W��̄vq�@z GS���N;\u001e����&\u000fe���k��?�R(m����s:�q��.�|�p-�c�s#��\n�\u0017�Ӏ�\u0000�\n|Q����@%�+�w\u0017��\\��q�����9�,B���@� v�l�p\t\u000ez(�S�0*;�šA��+�ď��؎��7\"���sz�q+\bvuǵ��A��Y�\u001b\u0013��v�[���4\u001f�\u001fˣN��ڒT�\r�\u0002���U�r\u0017�\t�?��\u0007��7m�9RE��a��\\��K�@��d%���]�SP\u001e��u#\u0019*L\u00061\u0010��\tC1��\u0015`7L���F���ic��p��r�\t�����Hd/吙�l\\�V\u001eo��yƺ��\u001a#���!}�h��;�rQ���\u0011\u001a�kt�A7�\u0019\u0000��۹�)}$TY&!<\b���l]�zo�3I�\rv�R= �\u001c�>\\^����\u0006\f���\t� ��\u0011�c���4uq4�ƽ�z���?:�Z�\u0016�P�����&[��ܴ3�\u0002����\"��\u0006�\u0000��β�\u000ed0\r�m8�W~\u000f�*���\u0012�K\u001b\u0003n:���:��J�M���/=!\u0015�אAx|Dh��\u001eF��#v�\u0012'\u0018;�UK�<�!+ML@�M%�X*\u0006%\u001fr�ݓn�\u0002X+����6Lvx\fM\u0004\u0016Eq��T�HH�[��9�,j�\u00038\u0019\f𩃬�{b07|�y\u0011�ᚔ������� ��vWa\u000e.V��!HP��_w��3�.ߵ��O�\u0001ᄀ齊� |`��z�A+�\u0019\u0014��L�)]��w��\u0002ZO\rR�Ce\u0007~k�����?&k=֯��^Hy�H�е��\"%�M0\u0004\u001c��c\u0004p�-�-��\"K�\u0013^��\fV�x(}\u0012&.�� \u0005c|Ju�L��\\�'�vix0�\n�\u001e�jf\r���\u001d\u0014C�۲���b�|�2(��\u001b_8�P��\u00188o��-�a\u0002-]�=�\u0004\u0010diBT}M�1�k�y\u001fI�\u001f!ڞ��7�\u00045�5�Mf�;�0낸\u0012˞�\u0016b�\u0015�\"M��G*�\u0013\u0007[s\u0000�&�s\u000e��#5\u0007*qN�0F�\u001eN\u001eS�W�`�Y�eȲ��%Ɋ\u0016RA��L��}�Ϸi��WJ\u0011†\u0012� \u0010&=s�tT�SC�d�Ty��$��rH\u0011T�A\\�\u0019(���a�\u001f.�_\u0017���I� n|;az\"Q�mL��\u0004k�W\u0004h5K\u0016r��b��d\u0017(�k����Z���\r�ɨ���u�$�\n}k�7��|�kY{΂j�]̊H�\u001d��^�:�]�c\u001b�lq����r5a3�XC�\u001e�\u0006Ƶ�y0��ԕ�0�\b�\u001b�nY���Tj�\u0017\u0016\u001a2\u00106q�\u0007�8o�Q�\u0019���\u0006�`\u0018-�v�2ځ� \u000bx۫����\t�k_x�vN�\r)tB�~p�m\u001f_\\��0҃$e�9w�\u001f�!��f0��)2+2ċ����C\b�%���_��AL�j�6t�+!f\u001cgW�ՙ��\u0014��\r\u0017:6%\u0011�H!�Dǀ�%\u0005\u000e\u0010�-�\u0000��8l\u0015l�7\b��ād\u0014���/�\u0003�@��q��L�_\u000b\u000b\u000e��㍣NϷ�4T�և���D�AY�\u0019<���mr\"\u0005��\u0002s8�4.\u001f����6�\u0001���\u0003��-ae�\u001c�����'��\u001d�E\u001c�R�����Qq�\u001b\u001b-*\u001c\"�\fy6X]\u0014�\u0007D�G3��z�.|έ.\u0000ڪ\u000e\u0006�I�)c?ԭ��0�o��\b�O�\u0011\fP�!�A����F$��\u000b\u001fE�8h;�\u0016��}\u0013�xyqzS�6��h:�EAc\u0000+��\u001f4\u000b��E��m���x�������p�\b\u0014bk�\u0002I�\u001a�6]5�����k\u0016�'�m�nZ惃\u0001��\r��/�\u0014��pS��l�%�\u0005o1\"��Տ����!�,&3\u001e�S\u0011w���\u001d\u000bUO\u0019\u0010�&7�:r͇\u0013`>���#$�\u001c3M����Ǡ��\u000eΤ�?��W2�J\\���\u000b����IHA�ŨF��G\\�\u0001\u001b\u0007��[\fp%�����E�Ay�\u0019P���k�����ŮBb��8u���O\u001c��qq �1#XU��\u0007i�}��i��-%i+�s��C��d����\u001e���-=緩\u0015��\u001f�C�=�騭�d�K}m\u001e\u0004�q{VU�7�Axq�)q��9�\u000f'�S��J5�f��g�i�¹ٸ]6�)�\u001b�\u0015�'ʭ�\r@�Pp_�\u0019�`:�\u001a�G���J~\u0011y��/�OŇ�5\u0011l2Ӳܣ\u001f�ʋ�t\u0018��2���\u0003q����hխ�B\u0017�)>���>L� {��3Wj\u001d�(p.��RW��Z\"��Q�,�p\u0007s�WRj��!ܤ��c�hX�SQ���`�$I\u0006��\u0010]]�<�&�k�\u0006\"��\u001f���-�T�E�AJ�\u0019d���b蛡5!}�\u0019��/+�@{\u0002�\u0005B�jB���I��5#��Tx��\f��I�\n��\u0010Y*\u0002=�j\\\\H�D^;\u0002�\u000e.�Z�ߜq�`U�\u0016\u001cy�����4�\u000f\u001emK�x\u0017�&R}\u001a�:\u0007n'�q�\u0005�~TyL���������\u0013�Ta7�D\tΡ�U��MИf\u0016�H�j!,<1J(�D��(^�\u0016�\u001e\"l=�-eњ(W_�ּ�Y\u0015�z��\f�c��\u001c����b��\u0006c}K/�o,��i_��㧑� !�l\u0001��\\R9W\u0006[&l��t�hC��?9�%\u0001\"��\b^�wk�[Z���}L\u0000��'� q����\u0015�\r���\u000b��qb\u0016�UIz��j?�;��i��vR�PK�W�g\n��`�J����\u0004���D�A6�\u0019x���b\"8i��W��=W���\u001fI1�\u001cƋ�h0�� \u000eՔd����)6�>j��\f\u0007���=֋�:���s���\u0002mF�w�ǚ�mh%�Y��5H��8���kw\u001d'�/�\u001cD\u0001���p\u0003��}��\u001e�\u0000\"�G���G���Wv�i�\u0000>!��\u0010�\u0018\u0015\u0019_�);�\n�&\u0018\u0005X�ve�\u0016����\u0002\b\u000f_X��r���Y�#l��V9˟�K�p\u0003�\u001a�b`����n�)����E{�(�\u0017�.��K*/D\u0010�Lʺ�σ%�\u0006����W���\tB��X`�C�\u0016e��\u000b��\r�����|�E������\u0016��u�\u0015�V�\u0016��{�H\u000f-�e�e:��\u000bR'�hy>��I��\u0013�&u\u001b��C�AI�\u0019����ܭ��\u0000G�c�\u0013\u0011_�'\\YO�x/=�?�����Ns�����A�����L�/�\u001d9��\u0018䟗���c\u0007~\u000f�\u0001�\u0014�Ҿn�r\u0006\u0011C/Ծ�7ւ�\u0012�\u0015/G���Hm\t���ONڙ�;��\u0013�]p\u001f֛�4�%�R\u0001�Z��\r��{�\\��StW���\u00141�EJ���\u0006\u0005\\]En{�\u0018̸���\u001a\u0019\u000e�T��+=�\u001f�$�\u000f����n���K�\u0018�\u0006\u0002?���tɉ>^?s�fx���)�\u0004͗\u0019�\u001c\u0010�\u0016\"Qa�M�Җ\\�p\u0013\u0010\u0014�\u001a\u0013�}�$„n\u0016�_�Q&m��\u0012T(�y#��E��b��0+�\u001b+\u0018��H�@T��\u0016LC>5\u001b�\u0013��{�w��\u00146\u0011��TUk��ȵ\u0007o�����s�\u001ft�\f\u0005��C�AJ�\u0019������I\u001f\u0017���}+ט�yEf����l�8d`\b��kK�U\u001dv��\u0012�9U�~7�֌C�S���A�%7�lQ�u=\u0006\u0012��~����i G\u0006Y�_s\u0001�\u0011IA�x�(�\u000fT�z3?����]\u0003�~[���]ȁ��a��\u0003`����+�[\u0005Z�(��G��\u0017O��e\u001b0\"=��3dͥ�\u0018���|� qr�\u000f�J��5O�[`�ُ\u0013�!\f�j�\nLN�E��{��8{�3C\u001a��ZQ\u001d��y�l=��Im�ii��B4��kǼ�\r��p��/��NC3�<\u001c�3�$�\u000bv�\u0004mp\u000b\u0017j�5a]B\u0005�,��'���˱��\u0004G@\u001c���Ԏ#e��MI7�����å��\u0000�z�`�J�\u0006�y6��0�\u0005\"{\u0003IB�AU�\u0019����ܯ�>'�s�Z��x\u001a\bt���\u000e�\u000eW\u000b\br��\u0001�eB�T�\u001a騑�\u0010���d7�̿��\\�؆�\t\u0017�Kt�\u00124F�QN�\u0005���#7�\u0006�^7u\u001aɘ�l�\u000f�B\u000e4:�/��B\u0007\u001b�&��Jg��=K�\bi��l��K�`1#\r�ʁp���A\u0018#�#�)���\u0004�1u��3_��c��c�*�j��.=.\u0007ng����O�v\u0016��;'���\u001f�J�\u0005C\u0004��ةo=�>/�Ih��_I\u0005Jz{�\b��\u001f��f\u000b�mx���FN�4\u0013o���\u0018��o:�\b�q\u0004z^��ַH{m�_|�j�\u0015k��i\u001fU��\u0012��)�v����\f��u'Ǭ�VA�'��$��\u0016�_�Q\u0010\\��z\u001a��†�\u000f��:��Qµ�h�\u0003Ǡ\t��{\r�J\u0006M��!\u001bn�\u0013����7\u0017��b�W\u0011�sc]��v���+�5\u000f��ؼ\\���Q᣸A�v}H\u001b\b���7�%\u001a�\u0007�:(?'��c�g\u000e�>��+��}\u001d[ʓ�\u0013�l'��y��(̑l\t&b�\u0016\u0012�\nxelzK�H9���~U�|\u0014�)Y���@\u0006\u0019F��JM���a\u001c65�Eq��\u0004��rqDJnx\u001a\u0005\u00047��Y>\u0018�r)�\u000b*wu�C��\u0011Jx\u0010d����H\u001e�:\u0013RA��h�\u0007Nb�<�:�M�_F�\f-ܖʘ@\u0013�ύ(\u0013�\"k�F�A7�\u0019܀�M1�)�Tv�ϐ���-mO>�\u0005,�M�_\u0017�d[�%��0[=!��H�^DE�����'���J\u000f��\u0007֑\"RX��M�zE\u0004E\n��\u00152�\u0013\n��lJ1p��\"7ɴ�\u001aw�}3�\u001f�n\u0013y�bo�x��\u000bQM<�\u0016\u0007��8-��5My�}���Z�z��'��s\u000f�ej�3m�g�X\u0003t�\tf�\u001d4d�\u0019�`�t���BH�S\t%;��\"A\u001d�\u001d\u001c�@�@Vn?'��\b�v�A����1\u0018�\u0016���A\u000f`F�%\u0003��K&yB��j�\"+�,\u0005���x\u0013%7���\u0018+���0�?�B�+�^�\u001aC9L�}����C2���~֐s*D��&Q�O{\u0018\u0019\u001d\u0011�J�H\u001f��6�A!�\u0019���M{\u0011N߭�z��ͦb9i\r̘�\u000bz��b��6�y�]��Iӝ,���\u0005'��\u0014p�iuby0�X̎`��\u0011\u0010�;�0���A�����K��oŋ\r\u0003���Ba�7|�b� {��Z\\�APV\u0017&K�����\u0000��O��\u0001;\u001e����J�\u001c�4���x�\b\u0012��\u0003�}��8��\"�y���c\u0019��×a�������W+\u000eC��Z�\tC��X��H@5ز,��I\u0010(ڿ�Q�a���(���i�Y�����6�\u001d\u001em܆+��މ�٦�Ɓ�����,;+��y7�BI�~4\u001a?ӖD\"w�2�H@cjӱ?�*�0�\u0012�Œ��\u001b�A �\u001a\u0004���1؈$$Yb��\u0001\"����י�UB��\u0000FL�遈�P_t�|u\u0004���\f9\u001e��dw�E�\f�����\u0002�S__^�ZS��Fj\r5*[\u0010�ʚJ��Y��{\u000e��;�η։��\u001d\u0011��l���dBX\u0013�_�9IG^�T3�㻪�w�w)���$x�\u001c��K��\u000fW\u0012��v�.�2Ѕ�7\u0011\u0019�Pf廖3\u0013�l�\u0005\u000f2q_u�$\u0001�K�����X����\u0013\u001b\f�:2�Õ��E\\�/�u�\u0002B�w6{��0N�Y����+S�d\u0001��=�\u0003\u000bx����Ҩ���|!���2��M\u001c������F�{� �\u0003zR�r\u0011�6�\u0013R�+��A\u001a�\u001a\u0018��M{�W�:\\���\t痔�K!Ů�.����\r˞_Ld�1�R+��0� R ���gVś��}𒷧��^�\rW��.�]k8\u0011�-���q�\u0000Es\u00102�\"\u0002vN_IX�C�R�xv�L�st�?*f�\u0015gұI��(D&�\u0004�B�Cw-f\r���Q�+�c�\u0006\u001e�\u0004\u00072\u001bs�3��j\n\"\u0012\u001c�<�u\b\u001a���2u^��X�m\u0000��w�h��\u000b�\u001e�\u001c0px���\u0017[\u001e�8w��b�\u0004o+&?X{\u0014�bF/��.�ɑC�ہ7�\u001a����Ú85���\\Y����\u0005_�\f7\u0013C&/��;:�D�\tO��J@��Аu�,�A:�\u001a,����\u0004\u0006zFa�܇���!q�\u0007d�����\u0006&Q�`\u0010_���=UW\u000b�ܚq�\n1N\u001f�\nb�`�\u001dU\u0011݂���\r\u000fy�.�����8�\f��&�\u0011�w��ym�8*!q�\u001eZ�I1�q+�=�v���h�=�e5��\u0010&pX@3Y���`pS�CH=��J�\r�/��L8\u0012�ad��>;S���ێ\r)cV:ܡ�\u0014�|\bR@`���U��J*w��}(\u0010\\�O\u0011y�i�\u0002��zw/s\u001fh������/$Fep�\u0017\u0005�[Q�~D�;RZ@�c���\u0014Au,�W\u001b���\f~(0ƻw\r��m+�\u001f���G�\u001e�� �Z<��\u001e��@-��w�/\u001f�0�7�\u001aS0\u0005�m\u0019\th��G�\u0005K�\u001a�ڣA%�\u001a@����()yݞ�7�,v�é��\u001a�ľ\u0012��\u000bœ���n\u0018Jl\u0015JO^�1�!=��\u0018�)����PZ�E\u001d#�J�J�k����K��O\u0000A\u0006]�m;��Dz�\u0019��6qA��L�ӝC|>�����\u001bk��Y=႐;S\b/#�%G����\u0011q���\\vF��\u0015�c�\u0006@{��\u0004\u001f�R�e$�G��7%U6L`�M��!e\rodik��`���kWD��\u0007MAA��\u001ee\u0000\"->�V��ښ~�%m�(i�\f��U�����f�_��|�Y���\u0015ʣi�r�\n\u0007��gY�>ɵ\bߢ��t�JF�0y�@1wQѱ�\u001eCs��K\u0001?��z�\u0005\u000f�?��]�ܣAa�\u001aT��L�7m\u000b\u0015\u001f����Xzs-�Q\u0016d,��\u000f�>Q\u000e�V�*u`\u000b�\u0001���[�\"���3�>]\"�]c�V\b�h\u0005���H�\rV�\u0001��� �E�����'�\u0002\u0004\r��u�g�\u0014w6@#9.ĩf�����\"D\u0019����\u0014��ӗ�M�*��G�\u0011\u0002����,���%~/�\r�o-�;\u0016\\�\u000f�ʩ[\u0011b~O\u001dG��0� ���RR#�e�T����L\u001e����!\u0014��k�t�\tܝe��\u0013�󍼖��AB�\u001ah��L�B��\u001e\u0011k��c����v�P�t�2��O\r���̏[�`��.P�\\\u0003!��\t<�)YD�e\r#�GXT������c\u0012��EZ\"|�}�(̱��9���i��?\u0010�y�\f��P�R�⩝�o\u001cjeS�\b�!�``M��c�oi�c��Ϋ�}/dF�!��ǂ\u001ar�r\u0006��>���Jt�_U,�\u001c\u000e�\u000e���k��h\u0011�R\u001b\u001e��ܽ\u0019�2\"%E˽]5��\u0018�ڹ~\u0019�\u0011N�?���hV%�\u000e�W�c�3w�q�N��0��\u0004g�6N�eP�̮���D�����1&E�8}6�l�A\"@�*8s�6!qrd��v�A>�\u001a|��L����\u0018x}Y���\u001fr�\b����.WG�]Ş�Ѕ��\rIj�#����*\u0012�k��U�5�^\u0018}ъ�\u0004ԓC����C�\u001f^\t��\u0017��W\u0016LA�Y�U���n�\"\u001f���ޥ�v\u0012���x��'F�<\u0004\\^�3\n�S#o���̖19�aK5��'[��[j����%��wp�T�-c���Q\u0017���߿�(�ɦ��\u001f\bNZ��ކ���bλ|`�����˶\u0004٤�3+]:눧��\u0002\f�NBK^oN2�[\t%)�RC'V\u0002$\u0003=�ɑݤ\u0014��)�rIKx�j+�<'T'�\t��Sp9�:�W/�ZЪ����Gh\u0006���t\u000e��h\u0013�?�'�d��v�\u001d=Kd�Zq \u0006st\u0007�ݵ$ɍ�u���/߻�s\\���t={�T�\u0015�yI_~�+V�b�B�VD�5\u0019�JSك*�R*�\u000e21,)�T���\u0012ycZAf\u0017$��_�|a�8�bC��|�\b�}����\u0016\u0006/F���\b��\u0005/����-I\u0007��Is|VΓF�0�|\u0012�fy�]`��\u001c�E;�:�[\u000b�$\u0007b\nQI����P\u001a��4Mɓ_VmE!/�����0c�M��\u0013ģ\u0016g�mޠ�9�T\u001f}j���uk��ɭ��V��/o,��z.h��!��@�z��\u000bp�/�$�A#�\u001a�����v��ḟ�\u001eYXxc��Gg=i?ۖ<�Ud�Q��̰\u001b��hk}��a�\u0006f۟{�9A ��j��\t6W�\u0013LY���7�R\u0005�,[\f]Y\u001f��!!�\u000e���tbD�b�M\u001f���id�R��Ңئtn��k�\u0004(_Eچ>�����N\\��\u0016�^��)\u0001�\u0003�?��\u001d$�Z#O���9���d\u0011�[��UG�t\u0013\u001f�;;����H=;��5\u0004A\u000b���l7˸J�}z.���j�\u0006���!s��\n��F[O\u001d�\u0010��U�/k�]�A�9\u0007�Ӆ�O�\u000b��'A�\u0002�NL�\u0012)+GH\u0001�?*s~����I��\f��6X�\u001d\u0015\b9$O7��$.��Vz�Lr;�D$�(2U��=�{�YEw�QBq��U\u00010�\u0004{@�mA�\u0003w\u001aL�\u0001R�@��\u001à�L���1N�~0�B���\u0002)\"!\u001d�QI\u001a���~\u0004��U;�]\u0014I�Ygt7\u0018�pm\t43�\u0015d+�Ǥ\u001dv3�\u0012��_��m�\f���mJ\u001f��;�u�2\u0007��o&��E� �E|\u001f�jqKގd�\\q���JW\b�o�m����t���z\u0004\u001f� Ŭ9��P�p~0U�(�4�dr5\u0017�s��Y�\u000fP�h��\u0002E�L\u0003R�O>17���n\u000b�@h���\u001b\u0013(W+��4����@W�ht\u0016�\u0007΢��W\u0011�\r\u0015\u0004�\u001e�\nۦ�9\u001d�r̯B��������}MC�@��\u001a���L�\u0011E[:�N^y^\u000f������Ev�\u001c�s=X��\\�mh����m�`5���Q_���x㞝&\n\u0010$�-^�#�����*f&�@;���\u0001�\u0002�n��!\u001d!�\u0019�\u0001��c�N��kHش��!�=\u001e)�\u0004{�y\u0007��g�8�֏��:��S�,��$�sg����g�p�}\u0005��`�%�s~\u0000��^�z2�Gk��\nb\u0003��\u0013��W�Xq\u0013�����K��<�W+����\u0012WO�\f��\r�S���m\u0007�MC��Đ��\f�)kv��Aجr��\u0006ʒO�A\u0010�\u001a��M��\u0007\u0018�8m\u0010�\t_�\"�_��bTJ��v.T��\u001c�d\u0017 Y|�\u0007E`�pv\u0017X��è�$�\u0012�\n�\u0001X�(��j�\u001b��W�x�H����>�N*94���ni���\u0007d2ˮUX�I?ʏ/j��-M,+\u000f��!�D1�`Cu\u0019���d�_�����;�al�\u0016��\u0014\u0015Nׁ\u000e�D\tm\u0016ٶ2Yy��dc��5\u001e_���f�O�J�A*����=պj\u0002\u000e\u0000�x�f�~��~��o��\fG�n&\"գu�R��^\u0002}�ݓX�\r�5kl���H̝,[⛹��a���\u000bei0�ɟ\u0010��%�A\u0018�\u001b\b��Lڒ 1-�E1�\u001e��f�<�4�y��-�!4k�]уFω\u001c*�r\u001d�\u0010H�zUz`\u0003w#��\u0018t�������fHnvN�\u0005*�~2\u001cV\\�rz{$\u0018\u0000�l1�\u0010�\u0013��a$\f�8oK��ʭM1;��\u000bm\u0014v�/����6\u0015z�\u0018����-^�r�fx�p�B�\fx_!�\u0003#\u0001b\f\u001dk7/sm��B?P;yy>��>��+{^�\u000e�������\u000f�6�<\u000f�ہm��\u001d\u0019\u001b\t\t�\u0001}��aH�!����H\u0000׉�&\u0019Hv�<ރ\u001b`�]�5�� �s3�6V��\fY�\u0019�\u0017���v�3\u001e�Qn��\u001b\u0002l\nq�@\u001e��6�A\u0012�\u001b\u001c��M\u0014�c^�$�\b`��E�\u0004��\n��\u0014��S`�\u0016���o���\\z�\bF�����q<\u0018���-3^T��O\u0015\\��)�i\"��\u001b���\u001d�\b0�J2wS\u0002�\u0003�K�{\n\t2��aj<�5fse-�o�lk�0�\u0018��L�%��\u000e˜W_���\u001e�\u000e����!G���GP;@̅��0ʔ�`�\u001f��ĝ�t\r}\u0003]g��CS�R\u0012�t�\u0019@WbK�#�[�Xp�\"D�#\u000f�E�I\u000e\u0018\u0006\"��DД�H�'5L\t�\u0016�ֺcQ�|Ė����@e����j���A�P.S�����F�0\u0006m@&�d�s#\\\u001e\u0013��@��\u001b0��L�j(xϷ5>ue���\u0004\u0006�J�S��w*\u0006\u0011\u0018i\u0014�]\f�\u0017ϒ�Fx6̬5�ƹ�I�;]K\u0013vK�m��}lX\u0013��\u001c��'�MH\u0004���C#I]e\"�\u0016wP\u0018��~Y�a���{y��fϝ�@�}��Ȫ�i�%`�5��@6\r��\\F$˯���\\i\u0007\u0011\b[�\u0019J\u001d��-\\\u0005�7(��\u0011\u0001\u0017!A�Ȅ�\u001dm0?�`���2!jQTY���\u0007&%�V\u0012H��6l��\u0019\u0004m���\u0003�!Ʒ��[�ܱ�\u0018)ZC���\u001a��U�)\n�\u00138Pp\u0015���@\u000f��s�P�j�A\u001d�\u001bD���4�Rq��h�\u0003�Iu��\u0017�\\�t���>�����\u001c'�@�v\u001b��\"k\u001a'\u000fAu��`/��k\u0018\u000f�\u0011\u0018͞��M�i��O{>�=\u0013a���F�4`'=2^\u0011iƨ0��$rb���q�C=H�N��aq,ƾC*\n��5��3O�S�m�U\rG#���K\u001f�+�g\u0003R�g`��IEz�VQ\u0007���k*\u001f.G\u0002�B�:��\u0006���4�T\t�\n���Z��� �Eְ�I�R�����X�\u001a\f�@Kv�R?�\u001bëM4%��`9 �����lTN$\n��������@3�ϰ�+�LĄ%h}�W.3H\u001c��\u0002\r5��{w�j�:�'��ңA!�\u001bX��L�3j�%���3����?�w�~%{�\u000b���d�i ?Bq\u0018��\n8�����!��-��p�R��r�/�(��\"8ӏ�b\u0007�\u0006;�\r��\\\u0006gR��'d��5r\f�R2\u0010�d9��U��V\u001b�p*�e�qZ�\u000f�\u0004\u0007~�0z��\u0010J�R0���c'\b&lo\u0015�\u0010C��\u001d�`a=آW 3�w���+)�S���\u0011��\u0005a\b\u0016�\u001d�\u00155�R�x\u00041�o~��fL\u000b�\u0006\u001f\u000b�RZ@�q�L�\u0015\u0003�(����([�\u0017-OJI.5 C�G�x8����\u0000i����\u001d#]��H�G�\u001e\u001c$e����w�H%�Z\u0004.1�m?�o���'5�-�A\u000b�\u001bl��L�\u0019\u0010ֱA���9ԹI(T=y˭��$�L�&X@zU�ȯ��\u0012\u0005��v�:d�\u0019z�\u0010k}�m㎃'+5\u001c�`b�\u0010�D\u0007�73��@�u\r|�A�&ܓM�J���>ю�\u0005*�Ә���KSw�\r�\u0006~�<\u0011r�T8��\"�(��\u0019!K����d�A\u000e�\u001b����0S'�j���N\u0013��\tc�b\u0019+ys0KY\u0007��\u0017��;� �e\f`�9��u�[|��SYR\u0018\r,>}\u0010��5�\n=�+b퓥��j�}`g.���Wi]��엘�2�\u001b0S\u0013���;�v\u000f�\u0014w��S$�4\u001a�T�\u0016\u0014��2��;�����k^�\u0003�\u0019I�q���]\t%���:�o��e]����vP]��]�U\u001eRs�/w\u0010�������Կ}���=5j�\u001a�i���2���뉼�£�\u000b�\u0000�io\u001d�d�2���\u0016�S�e�G�4]��LyH(\u0013ښ\u001a\u001d+��d�B�\u001b0�O�8\u001d\u0016���\u0006���z/5\u0013uR)VB��\u0018\u001dt�ˢ�\u0016��\"j�:#�>8�\u0000M\u0004��\u001bG����fUAY-�\\B�\u001d���\u0016d�L��\u0019��~e������.�$\rf�CI\u001c��R�\f*\u001f�%a[x!��oaӁ\u0010��8Q�'�0���\u001f��� ��\u000b!��r|���\u0011���\u0007J�\u001d\f�\u0005���U)�R8��\u0010#:�\u000e8\u0012Xf,-m\u0007�z�vbtўa(>\u0017�auud�B\u0004ω�^ն�շ\u00130�\u001b?��z\u001b|�qe\u0001V#��d\t��M�\n���b|d\u0016�*��A/�\u001b���ۺ\u001d�;�z\u0000vB9{�\u0013I)��$ ��e�\u001b�d�8�3t�'1��vت�?\tu\u0002Wž�s�LIdX}9��%�N\u001f��\u000f\u000e]�o���\"+��K��׎���n��}x\\cҕo�%-0h���b\u0007o��:Đ���]�\u0001oqx�\u0014A)�4q@@�6�Y��n��\u0013m\u0005_[!��\u0019B��%�Ēv�>�|˕��oAӏ��H>\u0007��oбͮ�K?Y��\u0004���\"��N�hG�_\u0003�b\u000f�X\u0010�$\u000f�\u0016&�'�\tU��'H��\u0011K�\u0003�\"�\b\u0003����\u001e�\u001cS�{�$�=�z\t\u000f4\\��G�r{t��\u0013\u001e��z\u000fOz\u0003�~��\u001c���@\u0011�[� ���ڻ�A$�\u001bЀ�۸�����#�Ub���\u0013i����;�\u001e�Td���I�?{��w��\u001c��Q�@��W��;�����\u0010q8�.(Kz\bŷ��O-�tX@�\u001f�q�0�\u0014mnUr\u0003��g���u�\u0002�Ү1���[��n\u001e�x��\u000fQű�f�Pp:4�Y<��ef]\u001cC{��-\"#�?}3\u0015�,A�Om�¾�7>�\fF�/p�J��\\�E����\f�ۯE(\u000e؄xA�\u000fblmh�5\u001bŬ�\nB�\b\u0017\u0018�h����\\���u����C�#���i���\u0000�\u0012\u0015\u0001،���NUb�vêD.�X�\u001a|_ZO��GRk\u000f:\u0003�$��^�XqN�\u0010T�O��'�*��A)�\u001b��۸�O�����O\fHn�a\nS��C�0v���Z^��\b���8��ۗ(=�=縹R\u00004�`�2D��L؆�&0'I���\u001ea�(�X�\u0014흡�m\u001d�C{���a$��\u0007ڮ`���$^��\\�u�ǖ�\u0004\u0005�[\u0014X\n��t�Χ�u�~�����\u001f��q����Õ���(�rF�8�\u000e=!)V`�����������6��k5��ā�\u0003���xG��S\u0011�3�|��\u0014\u001a\n9^���\u001f��gm��H\\���\u0000�h�\f��t9\fY�b�T[\b_f��C���d:S�;�.�g���P�\u0013\u0016z\fXS\\��~^�\rVZ�� \u0018\u0000/��kn9��̤$6��DJգA �\u001b���L�\u000bE;�;����n\u001bq.(�6�\u0005�bN\u000ea\u0003�\r\u001bK33p|a\u0006FT%�\u0016�i\f^�\u001br�_/��{Ҟ��ksa[-I5�p\u0000�nF{9`�@}\u000b�u�ye\\\u001b�_)%E�\u0011�M\u001bQ��0�o���k�ԥ�����WV�����L\u001c��>��̫\u0002\\\u0011�r�N��qo��$��\u000f)���TÌ��_b��R�P�)\u0015�$oի|8�)���ʈ�\u0006:���\f�2�\\�<���مj��\u000b)�\u000bFr\u001df\u000e��ȱ'�Vd*����A�$���\u0010�=h\u001eNi-�������R��j�6�\u0012�\u0019��\b���� 2��$}��@|�M�H(\u0002l�A �\u001c\f��۸߉a�g���\t*\u0019\n{G�\u001c8�:��a�\u001b���X��m�ޜμ׬�Ɂ?F��U���\u001daQ�G\f�a�n\u0000�m��]{L������w��[\u000b��\u0010\u0006>m˛���4\t\u0011��q~����G�Z$2��\u0016\u0011M\u0014��s/{\u000b���\u0016�z�J�\u0007�9��v]��]���\u000b����Qx���\u0011*|\\�G�f��� Һ�A\u001c�\u001c ��L��\u001c��d\u0012�\u0015���\u001a�.�m��)K�*b�G��B\u0010�Ve\f�jY\u000e2�\u0005��l\u0014taR�wKW�U0���xׂ�)��{ ���]\u001fl�E�\u001a��\u0017�\u000e�� ���\u0017��g7$%&�B��;\u0015�\u0010��|�\u0014�r\u0004\u001aH�y\bꢯ;�\\$�wYyfP0YM!Dp\u0007��\u0001�b��Uʹ0�m/�B��T0�6\u0003��ߧ�B��\u001eX�\"�;Hr8P��W>����a/䎁;Կ��L��x\u0016�bi���\f\t��\u001c\u0003�\u0001͞�\tf��դ���=�$�b�\u0019��5\"%N�|zafY\u00152\u0007���\u0010-/�\u0007�\u0001ب��IIW���\u0006�S�A!�\u001c4���\f�\u0011&��1b��}o+��'V���]�\u0014ԆL��&.�{z�\u000b���D4^�ñ�����\\J�KZ{\u0001\u0017W\"p>�+V�#�cu��\u001e���U7���;s\fb\r�ϳv�9A�AfK�w:${ZM�\u001e�w)\n�v��j`�d�\u000bR���;��\u0010v\u0002AS$d[ا�\u001b��oS�7��Γe�\f�\u0007��X���.!C��(\u0006�[\u000b\u001fn�\u0007]\u0003XM)\u001dG�\u0010\u0017���_G\u0001p\u000f\u001f\u0007k\u0015u�:��!�l�PG|�]Y_��pR�\u0011���\u0011<��G�J�w¹\u001dM_���HXJ���\u0019��+ޢ��3L�=���\u0000�<@\u0017\t\u0003wqw\u00048���\u001cl\u0003\\�A\u001c�\u001cH��L�.���oȵqoT\r��`am(�\u00068�\f\u000f�м�V�g\u001b|\u0015�E��\u0012�Vh-\u0003{�&�u�����2�}��R�S��\u0007��)J��\\ޤm\u0017⫤P�\u0004\u0003�Ш��3��ׁ�`@M�X�8�I\"�f�%N���'��)��f:\u0011[�1\u0002�~�E�\u0006�=�\t�>����o/��#�\u0004K\"�b�H�]�/\u0010�����\u001f|�i��\u001a �-\u0015/�F�\bx��\b\u0005�SV���F\u0001�ࠗ�\u0014\r\u0011�.�\u000e\u0013^T�za�2X�mJ�ܯf�\u001cşlIM�?��K\u001c٬�\u001d�\u001c\t��q'6\u0004��F�Ӱ�y\b�Ѵ\b�}+o�k�S�\u0018П\u0019ۣA\u001d�\u001c\\��L�s���\u0014��HB\t�\u0014�t��|\u001f7W�����l��:_\r8h�D�D\u001e�\r��1?P�%�R�,\u000bq�����\u0013�p�wi8Kk641�POaN�l�\u0011�\u0016ϒ��sړaa[��c�j.Ah��6�%'w\u0014\u0000�e��o\u0007�h��A���>h=��]�`5\u0013�ݜ��|��2;m�ܔ�=k�f)IW*��C��1��}b�TiI:\u0019\u0015���]�4��O\bŲ\u0017�i�\u0012\u0006�\u001d3��\u0011g�@vĴ!O�6i#���v�+\u0019ao\u0018�\u0016\u0006>�\u00014}\u0019��m�\u0003�J��\u0002w\u001c\u0006\u000b�qZ�n��\u0014;J��0�W�=s�E��$�ͣ\u001fV��}.\\�A'�\u001cp����?�L1�@�Z\nJ�M�\u000by5�n�B�P�\u000f��f�w����5���c�H�Y�\rP�[\u000f_\u0016\"%���?b'��I�W7�β�ap��AƔf��\u0012�\u0010\"��煲�~�M���`#I��P����0|\f�~�ړ^I�P��v�����ta�=Y*v�\u001f��5F�)=\u0001\t���IA�\u0016�\u0010{\n�?�%*���y�>�>v2���N��\u0019�QT�\u0002b]=Y�)dꠟXEE,T���V7�r6����\u001d�G�\u0019�|�\b,�h��\u0012��}�2\u0004�&�9��n6��W���[�%�����\u0010�3\u000f2�\u0017���\u0014��Jo��]\"F�F�������n�A+�\u001c����\u0017F^Ծ�\u0001�\"��@\u0002\r��fWNf҄��\u0011���=��d\b�׍;K(�&K���_Ћ���\r&;�r\u000b\u0000��|��\u0015��\u0016c�l=!��\u001b����!���x�0Z��U`��\n*�>%а���R�}C�|��`[�27\u0000�\u001d$�\u001e\u0005��ѳ���'&ꏫ���5�g�2\u001a�B�,�{�\u000fR�\u0004 6��m�Q��Pێ8Q`T\u0013��\u0005Zi�,\u0000�O�\u000b?��R+�\u000e�t�D��YN��Ƶ�:�4?bM����\u0015W�\u001ec��z\u000b�\\��{�\u0007�g%\u0003\b'$�aK\u0015<\u0019�,l�\u0017����d\u0004\u0014�\u000f��!�q�s�\u0010@2\u001c������\u0019�3\u000e}����a�A$�\u001c���L���v\u0015;E�=݃'��v��$�nY��\u0013{m�U��|\u0005�|��\tA�h-\u001d.U�\u0011H2^ꨐ�\u0003\b3~Xv�ʎ�8s�ŗZ\u0005�������S�)J�2��N���\u0016eP%�\u001a\u00115R�+\u0018�\u0003���f�S�{�( k�\r�\bX����j�Z\f�\"��\u0004�q�1D\u0007�^y\u0014�Lh���\n���{E�>\b\u0005�Z-'\u001b�u�ÉS:l9X�>\"��X\u0017��Y�|b�\u000f4�[�Y~�Zl˄��C�\bIt,p\b����l.'Gў5�P��a��d�DKx�7�Lxôl�-�!����\u001fܦ_b+�.�a��u�9V���r#\u0007�5\t��ū��*��A$�\u001c���۷�7T\u0000`�B'�8�\u0017M\u0000>.��I�\u0003��`��F�j��,��U����������E{*�k!b\u0019�gp�3�?��G�܁�\n�m�+���\f/�\u000eܛ�A�;\u0001�|�\u0010L��R��>�ra��]��\u000bJc����He)\rC�Yޮ�4\u001dr��&k����(�}s!���\\���t�\u0010�\u0014��vRܿPEX.;\u0002L?���\u0016�\u0006|�\u0006=�\u0019afr�\u0012�F��ݎ\u001e)��Y\u0005�G=�����q�ۍf�M\\\u0011�d�'�\u001e�\u0002bcݨ��>g�D����\t�]��\u0003�� ��-�\u00028M��\btՓ@��\u0011��[e|�撕È��W\u001bV��|&���A*�\u001c���ۻ1Y}\u001b\u000b�\u001fxgE��\u0015��\u001cw/��_�@\"9�l��.\u0001O�SJ��C^4\u0007��\fu�r�:�\t)L\t�\u0006��\u0014���҇1\u0015\fh��ᳮ�d����8Vnƃ\u0010��Y��ļ\\'��o{�:\u0003G���=E�\u001bD㍅3�rku��\u001cy\\\u001b\u0004�W�rB0M�/��_b���`�?3ב܇o\u0014�����\u0012:A��^P\u001b1�[(;\u000b�m�Q\u0015'����\u0006M�\u0005�L߁؁\\\u001b�҈\u001e�e}vQ��� ���\\��\u001f�5�\u0002�[�֠芸\t;�3Lp�\t\u000emEG\u0019�:�1���|�\u001f�bm\f\u001f�\u001c�K8*��v[ʶ�\u0010����Z��;#�\u0000#6�K ���A+�\u001cԀ�۾g�6,;�~7�e\u000b\u0011:���U�9���\\N�m-\u0019�?V�ڱ7��-��c���q0�\u0006K\u0006&g�t\u001f�\u0001)���}\t�B\u0002\f�_C�\u0017�\u001e2֮4s����^�x\u0010���1b�pF@6\u001e\u0014�\n\u0005��v�%*0���\u0007\b9$�6�qF�\u001ax�5��+NMb�;N�)z\r�\u0019_���\fC[x����\u0004�}!ч��>������\u0013\u0011\u0013\u000b65�IoO\u000edq,���ś/_�w\u0012l��Nr]D��c��Cʰ\u001b�Oe0�ה���sb�\u001dQP��\u0015�q�xmXG6�\u0014v�#[�\u0012_�+D�\u001c\u001c���Y\u001d\u000e�*�7i�r�dz��\u000f�!��\u0007\u000e��9\u001aQ����L\u0001bٮ�A\u0017�\u001c��۸�@`��x��ȠG-�1٬!���ϕq�-�7���}��\u0011/����\u0013]�Ý\u0013u�\\!�~q���$]a�\u001eCVI�B�Y?dC�9�\t\u0016Qf+�ft4�6��?��o��A�\t�����su�\u000e�%������O6\u0002�LyAS4+�)-)\u0017\n���\u0017a�V\u0016��j\u001710�É���Q�C\u0004N�3J�݀�9�Z_��(\u0002\u0015�ά�\u0018�0Z����()�&}�\r\u0010�V`q�F4�+�A5\u001f��\rN��hC�{d\u0003)�\b��E�\r��\u001a��~\u0013g$�[�\u001bի�<�;�\u000fN�m�\u0011(l�\u001a�\r�8�\u00133��_ၩ��A\u001b�\u001c���/C.�\u0019��Ua�t\u001d-b��ች\u000e�\u0018�n�qĸ\u001d��U۲k�鬘��M{З����7\u0017����Wp\u0016�\"Y��A~��'[�h<@z�GE,\n ˆ*°��!�\f��E�9���J�\u0016�\u000f\u0000A�\u0003�ed)����yE\u0017QBAS���$����/\u0002?etU_��-쫴�ͥ,.���gf\u001c�\u0016-S\bY\r�\u0006!@�\r֑\rC\bI�\u0016r�!�\u000b@\u001fƎz��L��U�Z��\u001cOWeE|%��@�aD�ۛ5p���Ll�8���.j \u0011B8��\rS��{w�!�4�\f���v:|��KO�!-�N:�2���®of�\u0005-$PU\u001c�A$�\u001d\u0010��L�G�\u000b�Z�r��7���x�m�\\-ER�I)�\u0003<�'��(\\�B���F�F\t_�;04��#)�sPv,�ݤ�b(QNcw���\u0001���Uz�ӹZ\u0015\u0002�\u000f`$�p�\u0014dӧ\u0000#��qQ�\u0005\\Ć!˰�u���҇˼L]\u0012=!SO�}-S�\u0005���LlBg��.E\u000b\fy�P���8�)�^���\u001d>�\u0013���bD\b��\u0005�>�w\u001exk�\b\u0010M��0\u001a�\u001b��8���?GS�-\u0016��n�D��y\f��\u0017e�ҍ\u001c\u00130op��N�\u0000X��\u0015y+fH��\u0010�\u0019��1�S�n����+\u0016.գnx�^\u0001C��<�\u001cʄYھ��?y\u0016�e-�V\u0018�-\u0012�A)�\u001d$��/�����\u000b���ȶC\u0019�-��h�o٩caQg���%�ߑ�N�Z\u000eA\u0013�_�*-�uc\fޭv�ˋL\u000f൰�����-���?��L4��,�A7\u001d]\u00149�\u0007\u0011v\u0002�R�\ri��*]\u000f�H\\41󍍎�z\u0004;cN�j�ZX\u000f�4�ߊ�4�z@i��K�$Bz\u000e��`�#D�^�X�wT�\u0003\u0010��+_Z��Y��6�%w��.\u001c�\u001cIݱ@��R���\u0002�`')q ��}\t���/{�\\\u00102�\"�)\u0017@ʼ5�Ӥ\u0001pg��>Y�}�bg�V��g��E\u000ej�|\u001a�p��|\u000f�<�\u000f�\u000b�,�\b�,�v��.����\u0011���r�G��\u00173׶�A+�\u001d8���QP.E�)1��f\"Lؔ]����\u0000�\u0015#��\u001e꛳B�����H�O\u0018�\u0019���P;�j\u000f��x\u001d��\u001d+�w*6�\u001bCD��<\u0002�Qɷ-n��\u0000�\t\u0011_��w-\u0014�G\u0011T�v����y�$�5�YҪ�cF�?��t/����f����\u000fP�\u0013\u0014\u0012X���ǔ�\u0010\u0005�,�e����P!����xϟ��\u0005P����T��,Q8b����eE:��\u000e��D](!o��\u0010\u0015\u0003�1�\u0017�_�*����\u000b�膇LB�-:\u001a�0\u0007���Q�S1\u0012l�j��\u0019!��\u001fv\u000fR�Y��@���zF\u0003\u0012(�y\u000e\u0019kx�5�m��W�~}e��RVX\\����\"��A2�\u001dL���[���D\u0018 �EaR�?�Yd@�3L�GWy]\u0007��� �\u0002&��g\n�\u001d��'��\u0005���u��\u001f��\u0000��\u0016�Z�\u0010�\u0003\u000f�g\u0018��2�\u001e��'H�K�Q�\"T\\��A�oW\n��\b�ʜ�\u0019����%t�ԚVl���}a.Ksd̓�c\u001dM�(�\u0000\u000e)^H\u0006��4\"�>�޺\u001d�k�@ȡh�\u0003����\nE�ۅ\u0004%E\u000f�-���z�n�@���Z�6�\\�t�\u00045J���\u0013E�v�!_U�\u001f�(�SJ}nl�\u001c�[�\u0002�R�\u0006\u0015d>�%2����2\u0000\f1:bCPŬ��4pj��7D�+�s��\u001e�1���?�T�F��Ĉ���_0���\u001b)�l-����8,U���A$�\u001d`���)\u0001�խ�Ϲ�1z�\u001bq\u0015��\u0012l\u001f�%�O/��a?z�\u0010I����\u00186�HO����ҙ��V�c[��Yg��_\u001b;�mM\u0007\n�*\u0007�\u0003��+ٗ�Nd��q��L�����&&W����&�q��bw�Nf�\b�c�q\u001d�\u0015�?��\f�O�*�FD8L!jL\n�*\u0013��\u0012s0�>I!T�lw|�`k��g\u000bn��͚l\u0018�ý�\"Vr0j劈A�S��]��E6\u001c�\f[P\u0019OY�ם\b�뚝K���#\u0013�\u0003c�6��A��/��B���6/E`�!��h�fA��\u001d�&r��\u0001�\u001c�e���\u0005�I�6��\u001b;n�3�\\K����A%�\u001dt����Z\u001cm/��\u0003MN�*3>�������(��,�銎x��\u0019��bj׾�����\u0000�\f\u0006�y��G$u[\t�y�vP�\u0016\u0001\u001a�\u001eі�;��f��/\u001f��f|ڬd%�- ����;�A\u001dTSj�,\u0016\u00066��Xp�\u0007��#��q�}W\u0005��K���T�\u00042»v\u0000f{箪�\u0004O}I^]�M\u0000\u001ct�\u0018y�\u0014\n�of�\u001a`\u001a�Q�qi�\u0004��p\u0014$>n�*�ף���ZwZ���G\\��}� x5��3\u0005��bt\u0007��Q�jGGD'ׂ\u0010}\u000b�2>z\u0003��S\r����+���s\u0010{�?��\u001a�f\u001e��2Ep`\u0014|\u001b�wsEs\u0013W��\u000e�\u0006��\u0004Ck#f:��A4�\u001d����(�ks(5fɷ��ub%\u0019�\u0015Mj�^T�=�\u0003#&`h\u0010Cs6j�[T�t:�&\u0001P�#��2\u0007jB�>M�\u001d��op� ۀ)E<%q�ğ\b(�HvZ@p.D�i~��Q\n\r͋��T\u001b�LjZ�+�S\u0015�`��b�4�?�\u001d~C���\nK��d9��hȎ�I�i�\tƽ�0{f_2\t\t\u000e>�\u0019\u001d\u0012%����r�\u001d��/����l�\u001ed�Djё�+p�c�\u001f˶��x1I�\u0013{���f����(B�\u001e�\u0016Ƈ�v\u0017�[8��~�޺6��Ӳr��4;�*7i�\u0015i,�h���T�c��y!��6������\u0000�ۼT��K\u0013\n!CM�\u0005@�ߞ\u0012%�\"0���x�&�/\u001fr��A%�\u001d����06҇��!:�Y�\u0013PⰭWW>�r��B\u0007H:��$򤓶+\u0007�\u0010�\u001b6�\u0019���\u0017���>ㄟ�;b�8P��ƥ�H�(���2��V�Eָ\u001b��0��\u0013\u0000�z�#�u\u0003z�i���m�S�\u001b-�W�<��8�g\u0001`�6����:׌��|w��d�7����\u001c�Vu�4nhzi9���\u0007�W���z\"�\u001f0����G���cz[I�}�\u0015G�\u00018�1Z��)7��`\u0004�\u001c�~\u001d\u001a\u0002��A\u0016�\u001dĀ���&�\u0003�T\n�����3��<*��m�R����M}��_4�X�ق��2N�\u000b���C\b\"�Y�\u000b\u00185�6��0#�\u0006V\u0000<\u001d!K��<�\\X}�bzh����\u0019D\"F\u0002�����\u0006��W�.�K��eU�q�.yJd�����I|�+y{a%��&�X\u0001��ݾ\u0018�[\\�q�\u001en��\u0018�X��r\n5r���\u0003�ƽ@�B�Z�b\u000e���1�-\u0014㒣*�Y]�Z��+!\u001d�|��)\u001e���Д\bj}���$b�\nN���§�\t\u0016\u0004C�'�q�o�d�\r��߱F2c�$��-���>\r\u0016����F�a�a�\u001a(�H��� ڮ�BT�\u001d؀������~��\t�7\tx:�\u001ahl�W�����@��\u0015��|\u001a���\u0007r, )�G\"���!��\u001c��� ���2ɜz�h#���\u0010<�ήy��'�\fU�5\u0010����Q6u,}��\rD\u0005�4�}1٩�\u001d�\b^崧´�P��x�Aw�ɪ\b\tL�c!�\\O�a���\u001biT��q�z�n\f�����oz*샋\u0019�8\u0013R���tƮ\t\t��Vgk\\��\u0003,:ו\u0000��\f�O�\u0014�w�X\u000e(\u001a:��/\rZJ\n����i���@\\���$-\u0014h��`���:;\u0019�i�\\���\u001e.�\u0005���P��峮}�Yt�\u000e�4��Yw��\f�u(���i]\n�Z\u0002\r�1v�ShxF\t����\\��\r\r�����\u0006����ܿ�Gz���O�\u0011�P�i�8Ҩ\"�A�k�\u001f\u0016\u0018����B��Da��\u001cJx��U�2�\"�hJj�\t�� ���x0ɕ�ΠD\r\u0015f�G�-2�\f\r��9rz�E0�W��\rw��=,\u0012���X3]�p^u/���\u0016��O����\u001e��ӚF�6�*k�w����1G�\u0011���X���A�a?a�\u0012�\u001d�k���T�mD���Vܯ�B���؎\f/,7=�����.D�9�̸\u0001#���Z�LW�d�\u0005���\u001a�\u0005��d��\u001cT���58Bh�OO���:\u0007v}\u0011\tIQ\u001f��m�.���\b}!`����A\u000b�\u001d���ǯ��1�eϽl\u0010���|\u001dǙچXM.\u0003����{s�ǃbֻU�\fg���\u0014s�r��\b\u000b\u001c:\u001f�d5jǣ��V,1^�\u0002?�k(\u0017�\u001d����a����\u0002��磢�B?:�UÓ���8uQ�\n�\u000710H\r\u0005tp\u0000\u0006����n�^\u000f���9Rd�H�$�!y\u001d���弉\u000e�\u001d�\u000f�\u0014{����L��z���$\u0019�R����\u0014I�\u0011&��4�\u000e���Ĩ���;�M�}#O$�\bT \u001e\u0018�Y��O�V�\u001aޘ\bJ��6}<�!\u0002���\u0017�\u0005;7�'e�Rݮ\u0011�\u001d~�2\u0018��SJ\u0004����E���%�3��d5M�����R7Q{�hÍ��>j��{CF\u000b�f%*HI\u001fHS{����\u0013/���-Ic=��%:��\u001fü�w*\tg�!=s_�9��1�N���%��ץwnQF��l-ǒ�O��\u001a\u0012�Cv(�T\\H\u0006m�)\b��k�ʣ%$וg�\u0007���>�\bV��Ԭ\u0019�f����\u0018\u001b®t\u001c�pD�\u001a�x�\u0001�\u0016�$�\\ڼg��G\u0018׵_f���\u000f��ÄFX�؝�\u001al.\u0013���Y�eUV�N\u0007.\u000e�\f@�ԑ[;\u0004\\V?��?a/�\tq�AA�\u001e\u0014���\u000f�)�e{�0@_�1�%����K���Ҝrݝx�&\u001c�%��y.\u0003x(��s�m��]�T�]�\u0016m��O$�x�4\"���\u0018شj���&:���!�\u0017�6\u0006\u000e��:{,�6�<Í��+\u0018\u0010zx�0�w�^�s$�\u001f��@fO\f\u0002�\r]��\u0003��\u0012$�H�i ��h�t+0�Ϛ\u0010|\")��Z��u��z:�QI��}��\u0017l�)xFFb0n��҈�cZ\bB~�1�S�<�.'�o!��9ʣ\u001f\u0019���([�����V\u0015�U\u0016� �u�\u0011���h�@gX�\u0001N���u֪#x�[�\u001eI �����u���\u000f*�����\u001fQ��_\u0004�d)\u001e�!�=%\u0006����WD�K�\u0002�6\u0013��!�t#��h\ti�A6�\u001e(����\f���{�:И\u000b��>�\u000eA�A�Q�Z$�������%\u0007\u001d�㝰*�SC\u0016�b}�b�\u0004��f��\u0010�����s#�\u0018a�ߚ��=<��Lj�\u001a��l�AE�\u001e<��\u0003!�]<��>JM\u001eY\u001c����S��/,ol��\u0002p\u000bu�E�(��DRSytv�{��o\u0012rڲ���3W�rRS��`\u0018e��W��\u0017��D�Q�p�q����\u0005�\u000f\u0014t��s���[Ų�L\u0013竁�\n�c\tϿ\u0018[ch�Q�dd!�\u0018�g�\u0010�#ؔ\u0011\u0016ŖT��\b<�z���l��<��Y�\n�$�k\u00039\f��Nnx���l\u00035�w����Wű\u0016x\u0017\n�zUT�4\fЗ\u0000|90\u001cr�����\u0005\u0005h{l͹jc�Ǭ\"�Hg���E�T�|\u001d2�a��ad�d\f���ue���߾@\u000f4d9pɂ\u0010�&�ώ̙\u0012��S��S���]Lk�\u0002FY��(8T/������?\f�B��7��l�A/�\u001eP���}D\u0019O�ϴՉ�̧d��\u001d�y0�^I\u0018�\\!�\u0006�E�e�?801�er\n\u0007���H�\b�+;��ν3a�T�]���2�i�A2�\u001ed��۸�-\u0010!8��H{+�\u001a'&Oac�|�3y3d\u000bN�8�bԑh\u0016�7#�\u001f\u001a�\u00032'fA�!�:�X�\u0002�\u001c��������4�#��jV[��f(QJ�?7k9޷y\u0019�\tn�\n���Y��\u0016w)�\u0018\u000f��gcIڹM�r�\u0013����\n\b \u0010~l�L�~����9�F��i\u0000QL�eP��6��\u0014Q\u0012���:�\"?\f�=<3�3���G��5\ba�c��B�ҞT���i�q@P�0�u�w������.���N�MO)�_\t[k�DZ\r��l����\u001f~!\u001c�\n��NWD�B\u001a����}x�p\u001f�Zb����V(\u0006��5��|h��r�ۏx�`C�\u0011(X�[\u00057rE\u0017���e�@h8�e9�֛e\u001f$z�\u0002�D�H=���\u0018�\u0005t��\u000e#J\u001e�3L)��%\\x¶�\u001c���I\u001b\u00027!�0����J*�����R\u001d��B\u001dq'ě�U0CƑ��H�P\u0002�w\u000e嚤ĖN�X\\]�\u0019\t�8��U����R��﵈�O�F�\u001ey\u0005�\u0019���\u001fx�.�@�O�g虓\u001f��٠��n�E\u0000�;񢕲�AJ�\u001e������4\u001b�\f�K���P�\u001eL�8��3�����$�yM\u0005�\u0010@L\u0007&�^��v4c\u0005\u000b��U��|����l\u001eh�f��\u001b0��Է�tXD\u001d��.l�h;�|�\tѝ\u0018���\u0010��\u0001��\u0017��<�-�.��)00C`\u000b�c%\u0002��8�є�H7�2�c�\u000b@J�\u001a�R�J�Y��.�w\u0002��\u001bwhJ�����侒�3{�\u0001�\u0019\u0003�ՕK���\u001cy���\u0011�\f\u0015��\u000b���\u00015�v�\u0006\u0001+!y\n�\u0002��ڏ�1\\�޳\u001b\u0005�\u0006%���}��H�7�^κ���T3cc?�հm�\u0014vJq�j_0e$@Sˡ,J����i��\u0010\b���۴\u001f��\u0000/\fX؄pȡ\u001c��\u0014�̊�\u0010P�xz���UUc��K���\f*u\"���A#�\u001e���۷��\u0015�\u0013<'\r/��L�&m��jj�o�O+`\u001e�䥪ĩ�%][�~}�ba6\u0016�L[�!}�.g\u000f\u001c���\r� \u0014OY\f1پ\u001eH@�\\\u0001��s-�w�Yn���\"��C�M\u0013ْJ-��\u0018\u0002:\u0015�F��@�˅\fVK�Vs�,�k�t�2'a\t���e�����C��H�{uI�\u0003�=H ��y��ɵ=\u0005�ۡG̾ZJ�\u000e|�v\u001c���F��N��0�\\�0ԓ�R����\u0010���f��Y\u0007�`<�]���-�\r��7\r��~����Z#\b�6\u0003�CZ*�E�\u0011,\u0000�\u0003\u001c��\u0004�s\u001f޹;��\u000b\u0002�\u0017su��\u001e�ٶ콰�\u0006K��A1�\u001e����j�\u001d���#[Y\u0017�m���f�\u0004|��\f'\u0003�$����C��$�����\u001e����i��\u0014C�`\u0004\u0012+�Bt����*m=w�6��`\u001f���Աb?;�.���5H�F\b\u0019)8?����\u0015K7�s���S4�cHq�/���\u0016\u00125\u0017}�P�@P<��%\u0016�\u0005���︐������\u0007\u0017�-R\u0019R=\n�U�����\u0001�U�1��@\"�\u0016�W-�(J\u001a:.Uݞ\b�f`ټH\u001d+����+,\u0002׭(\u0015^���<{\u000fH��I2^����U=6�/'&ٿ���B����\"�\u000b��.�a�v��G\u0003�zv�\n+ Д��@qM \u0010k\u000b\u000fD�箧�����Y��\u001b�=���vck��A �\u001eȀ��jU�\\a\n�Ҏ����,[��\u0012��Ёd��9\u0014�P!x�X�vx.�\"\u00131R\u0016�F��~l�M�#\u0000�>�T�YM��1v��96F\u00198�R'Z�dA�\u001bo��v\u0019S�܉lA��s���p}�<�����`t}m��,�:ڒDӓ\u0017�X5��\u0014��K�A\u001a̹cV��-��l07�=5}\u0011���s᠀\u001dk�\\�A\u000b�\u001e���^�\u000fۃ�i>��S\u000e���:2��j���ܱQ��i\u0013HP\r��U�l���\u0012E-V͵_,��&ҼS\u001aH\u0012��1'L9�꣒+��ڱʧ6�&J=\u0018�\u001ep;��W�O\u000fSJ�7�\\�5�[$�\u0005;�\u0019��\f?]���v�o��\u001f�;�@�X��\u001b���?�Cl\u0013�e&۽|�o\u0006\n���}�\tTaQ\u0007M�*��'e#(�[B{�ow�i��{�f)�7(J‰�\u0004j\u0014M{\"+�\u0018�%݈����ᒅ^��.���`�TB6Y���*ȑ\u000f#[M�q�y@\u001b��!J\\�C�g4�F���i�A%�\u001f\u0004���\u0010\u0006a�j\"ws@� ��eB�^�\u0007��:+��f���\u0012����\u0013�����Цe'�\u0010�7�&��f\u0000���8ӢR �w~��\u001dE�\u001a�ϖ�6���ۤ�1 JP��8�F�k�\u0006��\t��\u0002\u0015�Z\u0006z\u001aߓ!�m�E�n��f\u0002�\u0002@7\u0015\u0007K����{�rD���\u001e��\u0003���)̣2��kx��1\n~_\t!\t�~H�J��\t���|��K���_P�aY��]��g���\\�\u0014��pgO���+B\u0000vl \u000e\u001e\u0000��˥0�s1�2hgHR\u0012b�\u0007��O��\u0011R�)ҷ$��s@��p��z�\u0004ɿXlL�\u0015\u0007c6�v�]c\u001a\u0017@���.\"�Mj�A �\u001f\u0018���S.�j��\u0014�'PQ�l�U\u0017�%�f�`k�������A�u������Ħ(\u001f4\u001cZ�\u0012\u0013�\u0015\u0001/2L\u000e\u001a\u001a��\u00073��{\f��k�b�x��׾��C�����OU�@\u001f�\u0013����⍋��\u000f\u0002��/^%k$�Ҙԏ���7$�D\u001a�7�\u000e�I9\u0007j��-����h#���\"8�y¹\u001aƦ�\u000f�(a�\u0004�\u0006��-�\u001dd�\tt(�>#O�a\u0001z`Eۓe�@x�&_�f�>�Y\u001eO\u001f0�\u000f�\u0012C_i��`%*�2�\"�\u0001�D\fr~��1%#3��:\b5��1-/P\u0017��t�Q\u0011\\�ڐc��s/�lk\re�m�PO$�s�\u0003�\"�Pr�j�A0�\u001f,���9=\u0007@o� ��\u001eS?�\u0002��)�τT��}T��\u0017Y+C�K\u0012�\"7��1x�\u0002Y��i\u0001\u0000\u0003\\�dB�`a&3���,E�\u0014Ti_X���b���U��=a��M�2&o�;����+-�\u0019o�lx��CHS݂�x�\u001d\u001b=���5�Ȳfۜ�;�`.��\u000fq��!�A!Q���9��z׬�����m\u001c�\u0001\u0018�[�ü�@�D\u0015S�NW�ĢoQ��[�\u0007�5�;\u001c���R$�?��=�k��!���7��$t\u0013�2��\\Zd6�\u000e�l���Q��C-��\u0017<�e \u0010;�h{������M��!\t:��c�͆g\u0019���U1;+����g�⧁�R�\n�j�A%�\u001f@����A�1\u001c�\b��\u000e��b�ИEmڡ�g�6�\u001a��ά��^��t۾�a02f�J0\u0017\u0010��\u0002�-@��b\u0018�sT�sx�Q7��ä�y�\u001eZ�XW\u000f�|\nS��\u000b$^�\u000b��mst�\u000b���9��\u0014\u0016y����@���&ى�\u001c��v� ��oz]\n�f`l�k���#�\u00146Jl/�\u0003�E��ntp�%�)�uCu&�E�j\u000f��\u001c�rXƨ�ʬ,\u0004�U<�,�M+|R�l�↲q\t��g#%\u0010�ty�ȫYa���w\u0000\u001dm�_C\r\u000e���\u001c\u0000\u0015��\u001a\fC��\r�\nH\b����v�\u0015P`;\u0000��)\u0001�\u000e��\u0001탢�M�dk�Z�\bn#��Mm�A&�\u001fT��O��\f���x�����s�\u0017nX�\u0019��`_O�/-0\u0010A\u0002���%��ܸ�\u0019�\u0003z���~�\u0006�h{S��q��'�H_�ɂ[�����Ѓ�{��\t�_\u0011��ʋ6��+\t�\"d��w`�\u0019X8g�O�\u0001�^�%�����P\u0014$)0%\u0004�@%�V�y��\u0016\"���K�y��Q�\u000f��TUy����ZU\n\u0000\"(L���yvS��\u0017�G���L�mȨ�YT\u0010~2Q�<�'2͙\tX\u0015�d��\u0001FZ\u0007Q��T��W��:4I���!{�v?B\u00169C�zz3�\u0019&�j��\u0013bNg,\u0010w\"C��!\u0016�4��^D[Ŕ��kߘk4t�\u001a����V|}��m�A5�\u001fh���l��/�K%D��6�M��\u0019\u0015�+\u001a�v\u0016\u0003�3�������1�X�xe�\u0014��ni*���ﴌ�?�+��U+���\u000f��,l7o����Dž;c��\u0011\u0012L�k�'��]���TE�\u0007Y-˧�\u000f�\u0012س��8\u0010�+%7O��.�֍5F9�ڟ�W־���ⅈ�����wn\u000fa�������>ڮ�B\u0002���\u0012>��\u0011��S��$���15\u000b��ua\ro�g�&�D綅P^fa�\u0001�~`���\u000e��K��:VaT9~\u0007�WvP:\u0004�;\u0000��\tO�B~|D\u001bjE���X��|�U>�}d�|\u001e�S����j�zP�Ok\f�Nʨ,j�~��Vv�c�������QNr�o�A%�\u001f|��\u001a����\u001e�oq=\b��_,�_�\t����Y���B\u000e��E�<{����?��\u0018R\u001aj�\u001e$���c�\b��`��o(U��\u001c�ٜL��>\u001d\u0013trl�\u0015*�(�����]lj�K�s�\u0006z̾���`\u001c<$�d./�q���� ����c�Ȍ�\f����X\u001b��Y�F\u0007!�\u001d圮\n�`p�{N��8��\u0011-z��\u001fpz*��`I�k��tማ���T�gѵ��8\u0006^��Ui�*G\u0005���;&T�3\u0005sT�BOВu��h�A$�\u001f����j��\u0001�\u001f\u0002m�\u001cQ(ʹ4�\u0010��]cOc݆\u0012#~�f��\u001at\u0007Z�=TpK�[a�[�`\u0010\n��K�aa^\u0007k�K��)\u0007ߦ�ʶO�N�h(���47\u0007�\u001b?�\u0015o�����\nI9�t�W\u0003\\\u001d��\"9�\u000f�\u0014u W�]d��#��Ǜ#�:ơ��\u0019�9E�\\V�3\u001cG��|)��$��m\r��H�j��N.\u001e\u001bz�ӄ�(\\���9��\u001f�2 ��3>?�R@���g��Z8��W�\"&��\u001b��꾁\u000esm|V�5H\u000bfR\u0001�I�dm)\u000f�\u0014_�A:�\u001f̀�|�*\u0012m\u0002k[\u000e��.����-����P��2����\u0012����ylp�p�@�єYӈ��R�d�L�7\u0002�M�1@��V\u001dC\u000f\u0000m�4j�c��t�\u0004)r�A?�ŠPY\u0012\be\u0019�I��]w�B�xY[�D��[���X�\u0004L�βX�{T�ݙ��Nⲑ�/��͌*��\u0013ڊr���\"{���:��E5\u000f��:M�aޣ��'�\"��\bhwP�Urp\b�³�Ę;E��5�ڢ��t�$\\w h7�,v|\n���^O\u0005Ӫ\u0002�\u0001uY`�\n�1sbU�2H��S��KĮ�d˙�=���F9\\�Ќ�&�\u0018�\u0001mK�l9��������jM��������&\u0014��\u00142v������B�p_��A\u0005�\u001f���M��\u00014-����\\sj�S��\\�B\u0002P�L�1�)�\u001b�+�sT�^��\\����\u00184�Y��.�a$unݞ�⚥�eT]�ձ-\rZ�$\u0017\r?�Ά-�|��\u0010=\u001c%9�9Bmm�w�d�\u0018�\u0018IlP?񣔊��|�.\u0005�\u0005�\u001d\u0000��\u0003���V�\u0003[~��_CJ\u001dދJ�Xr�\fSkp\u0005�6\u0005�8O��1��y���pQ��\u0002(��@\u0018v�#!��\u001e��<��ʪ��=ng���k_\u001by\u0000�\"�\u0019�,��U��L�o�S�v)��U�+H\u0007��敖֟Oe��\rl��\u0015�\u0006�ZA��A2�\u001f��Ms���jx�}’Ư�;���ؤg�ʳǥ*�!Em�Ɂ%�N�\u0010w\\א%�e��\u000b\u0000��H�@\u001f8�^�BG\u0010�/�W�}s�G�[�A�لZ.�ۙ���vk�1\u001c���{ޘ��)\u000e��#�=���y�0z\"|8y�� wb���\u000b7\u0004�h�Ģ5��\u0003�ᰆj\u001aM���FX6��\b��d�I��\u0011\u0011\u001fB�MȾ�Hv�ZH��I[��\u001at�X\u0012��\u0002���x��ը�f\u000e����M\u0011;�y݌�F�e�\u0016�63�ym�\tg��Oч=$�\u001b\u0018�귀*�e�p9�ٍ\u0003r���t4�Pi�EB���1-Bw��\u001d���2����\u0001�vfZ\u0019�~t(x Dm�AT� \b��L�\u0018�\u001fl�m\r������֨�.��\u0014�7���W�[6�9P=�ۂ��\u0002��Ĵ3\u000e\u001ap٠\u000fVm$�\t v��`&�\u0003�_N�\t�[�\f���@�� \u001c��L��E���\u0019\u0010�\u001e�ŝgL�ߝ 1`_2_�,��K=�J�\u0003vu�4&����\u001c\u001d]\u0000�-Y�\u000b)�JU;)»\u0010�o�#\u0018\\���\r�\u0002\u001d\u001d$�\u001b\u0004j\u0004�\re�\u0015�����6�n�̀�\u0016��)1��{���?3��\u0000�%LS3�.��VVۜ9�=��ئ\u0015����\u0002�;��@�\u0019��g�*/�\u000e�럗?1\u001d��&�@�\u000bY*S,6�}����{��4����Uƽq���T�\u0001#�q���I�\u0006��\u001f�f\u0015���Ψ��\u0000e���%oP�J�oP�AC� 0��߷��>lu_�����\u0011\u0011Z2���p.��@$�����r.x\u001f�\r�܅�+T\u0016\u001aZyޣ<Ł�&�\b���f�f�P\u001e�\u0019\\AX4{d,Cg:pj\u0012���\u000e!e䓳w��f�Ei��\u0015K�S������\b\u001a0�\u001d�ڧ�m�68r,�\rW�h�_c\rTB��\u0006d��y/1��\rN�C\u0001=\u0014=�Û\u0007����nj�\t\u0000a�H\u000bB�j��[�pE�toaM�۞0��lk�\b�\u001e\u0007|�;\u001aEv\u0014XvX\u000e�\r!J�\nn�^3|\u0018�A ��\r�\u000bv�\r�E \u001d�ՊZp�9R���̽\u0010/�\u0007@�*�\u001a|n�T�(�fT(;��T\r�����Nf��t���2ł6�\u0017\u001dn�m�h�d�M],iY\u001b,rb!�\u001c蓅�A+� D���[��h\f�~��M��\u001dM<1�b�\f)�i�f֧S�R�Z��SOW���\u001e���\u0016jؐ��n��ե�@�- ?%�H���F9\u000f�h�\u001cTS���\u001b���x�o�GР\u001c��\u0005��\u0006\u000b�f\u001c�$a�5��\u0013\u0010O>�\f��\r�O��֥9F}�K\u000e\r��`�6\u000e8t�*�\u001e��#/u�\u0016+\u0017u6ʙ�GؗJI\u000f\u0007�\u0015\u001b�\u001b���\r���u��ͨLߔ%�\u0006J�3{���u��d�iꞫ'T=���{�V:\f>?Cm�.M�im�[Q��M�m$^�\u0005C����\u0000⌜\u001e���y��*��ʻ\u0017�ޚ\fy�*�\u0001�\u0017�)|=�;XQ[\u0018-Qp����A8� X��L�֚J�/�e�u�\u001e��G�ݽ,�+\u001d����\"qlas�B4�\u001f�\u001duIr1�~߶��\u001a�\u00132�#�Ml,$\n��fC�Sc\u000bTQ�\u0000P\u001b�j5\u0003��Ø\u0004\u0001�mC�5��I\u0001&�Jo����4\u0004v��h�b@4^�R\f��T��;�e\"Z=f1�t�\u0010�p\u0007P��A\u0014�\u0017�*��ن�\u0006|\u001et\n\\�rq���{Io�9#���AQ\u0013\u0007\r\u0018��!�P�5)ù�\u000b�ʗ�mrWU���\t�x<�M��%޺�:�����d�èo�\u001a��k��\u001f��\u000b�@�r1%0\u001b\u0013\u0019�\u001b�ó9>��~�J�oF_\u0006���\t2o�jVy�\"�|�@I渋e��^����q'p�\u001bT&~�,��FڣAw� l���b\u0005$M8}�h���`D5y��\u000e�N�\u0007\"F[�\u0006#I\u001f+\u0005���&}��^�+JQ�=�r������\u0007��\u001al�����F��bwS���h�)��Et&�\u0000�|L�O==�Q�. \u0006�^T\u001dge\u0003��\u001c�g\u001b��g^ ����\u0010$�X�6=\n��\u001f�2���n���c�0l)�h�ϯ\fe\u001c���?\u001drf՚ޏ3��\t�\u0015˳�ao�ԙ�\n���\u001dp��l�z\\�\u0007X]��e�6�=��\f\u000f�;�0vH�\u001f\u0012\u0010^\u000b$\u000b��.Jp\u0017��\f�\f�!�\n\u001b�\u0006\u001e�`r~�\u0015G��\u0007\u0003��\u0015Ň��8�R[{�9і����\u000b:\u001bg᲌���\u000f�'�˴�Y�[\u0016�� ‹�x\u0017PO�&7�=�z7�q�#ma���W\u0018��\u0018���h�N;)�U�?V����ts2���}J��\u0006�2\u0010���?�.*����A(� ����mi-\b_\u0005\u0014\u0000�S��q̲�\u000f@}Iƈ^�J�)��k\u0016��ʗ_;w���<���0����I�@D�\u0012&�-�g��܀�a\u0017�_%ޣ�}�`*�����\u0017�2PIM`Fm|�O\u00145��7�}l\u001e'cJ�PQW�\u0002��;\u0013�Ca�JyaH������\u0013\u000fmj/�\u0019e�#\r�s{4���\t�\u001c�&�^��wxs�����\"/�\n��ɞ�F+��\u0013�ߥSv\\}��2���(��(��^`^+��\u0003@���/��2�=ŗ'�ӱO�����S#Ez)\u001b�o;�\"\f�����\"9I27�4��� d?��%7q3ޭ�\r\"*�\u000e\u0012�77(\u0015sf�K(�տ�A3� ���1��W�&�|��}��t��䤌^�/[�+V\u000b6ȧ����*��)�\n�/\u0013���?��GZ��k\u000fdE1\n,���fTf��6�s�ۏQQb�Ҽ����ށX�m�dE�D���T`�)�_d7�����yAP�_�h���\u0015E+P�\u001a��[��Ƴ�ԠT4d\u001e�l##fuc��.\u0019�L����{6�h��,�����8؞H���\u0002��ǹ�\u001d�6�>q�ma\u0006K�\u000e\u001ch_�F�Hw�\u0005�\u001a\u0014:����\f���C�z��b�l�\u001d:�\u0002�uڃ�\u0019�K K�\u0015r;�n�؁\u0013�m^�%�\u0011�\u0011`�\u0016 �y�qu�x��W\r[\u0004��є�\u001c\u0001\u0015x\t\u0007\u001c�e��`��_�A*� ����o\u001d�n��Q��n/+�i\u000fx��C�\u0012F/,�i�\u0016�4%\u0011F\u0018�݋�F\u0016(n+8\u0012\b����H:\f�\u0003\b��� �����\u0011��p��W\fw\bj9��%U��ؙ�\u0011Y\u0013Y��'{��h��~s:#�\u001f�D\u0019�>Ev:��������\u001b�X|\u001a�o\u001e뼹jV6G\u0003����?:���=S�Y�M�r{\u0011H��f�\u001b�O1k8DtLl��8Y��U�y��B\u001c�ٺ<�4�������͡�D`\u0002\u0013~��^�%��'���%�whr\u001cM�kYR(ì�wl��\u0000X5��w�\u0013b\u0011�\rC|�)���p*}�=���ch\u0002�ז����؍�\u001d�FV\n~�󫵹�A*� ����bdV�+�lI�v���P\t�(��%�;��M\u0005~gB\u0010)[*\fǀ\u001a�^\u0012����\"TEYU7��N-Q^�\u0018s�����O��D D��j�\u001b\\\\2�� C��BB����ݷ��7i\"gM���$E%���[%��lE�\u000e�w\u0014���\u000f�I.8U�-��\u001fu��fZa�'�7/�����oy�j�T�Nr��le�\u0010\u0014!��\u0002Dx\u0019�G�\u0000g�7��81�D�Fp;�T|�\u001b㦭��$���.�\u0011\n���ߞO��B-W�\u000f��ϡ��Fv.��\u0017\u0017\u001f�$���\u001b�\u0014��>x��i��M�Y����t3���#��O\u0015�)q�}\u0006�`%��m\u0011����lo��%��AF� Ѐ��`�-8�{��#{G�����WZ�|�\u0001��m�R*8\u001cyId�E\rn�%���!+�\f�w�sy)\u0011F���d\u0005���u�x\u001b�07�i!�P&�)h\u001em_�G}��Q�v��b�\u000e.\u0017��,���JZ]pC�5-�\u001a���橫��°?Mܠ��W�\u000b��\u0007CO�\b����k��R\u0007Tj5�\u0017\u0002�ai�0\u001a\u001e�Z>\f��E\\�6�����\u001e�cE3a; ��#�p��4��V-\r�|GQ�Q\u0017\u000b���\u00197���t`�y��9T��\f��_z����>�U��\u0019ỏ\u000e\u001a\n�%�*���e��g+�m!�\u0005�����esU.[\t'��#jp��E�d{��\f��\b�\u0007��7�$\u0013���n\u0001�(�W���\u000f\u0012%��AK� ���mk��\u0015��@��\u0002�b\u0003\u0002��Z���s&l\u001a��]�����\t+\u0013��\u001ek��Ӧ�H���\u001a�ɪzC���T��#B\rh��.�ؼ��Nn��PW�U��\u000by\r<\u0013r�,�u\"H!��5,o�и�]<��L\b�\u001c�\b�_#��\u001fc�]�\f~�s\\Тm�Aו\u0018Ǣ�\u001c|C\u0004\u0006�\u0001^�z�G��'�w\u0013z1��ܳ>���\f\u0005�\u0004�Ku��&eg�d/���\u0018\u0005�J��<�~F��\"�PD\u0006�Yz���X�E�I\u001d`�j�\u0015hUѭZ��mb�z��a?N�f�HL�89��掗^�AnM[Ƿ\u0001�b�\u000fT�3��l&Q�M�}�i*\u001a�\u0000\u000f7�\u000e�I�[C�\u0012\u000e\u0007�����\u0012s\u0012JM�]�u�\u000eXtT�\r��<�AD� ���M\"{U�\u0006�\u0013�l�����\f�ԃ�A�»�#�[�kJtt1�8�A���=t���K$8l�k�\f���+��j\b�Z�\u0017(�YAn/y�~܂�\u0003\u0015smDs\u0012S\u0014�\u001e����֜\u0006�\u0006���,��jM6!�/*j���av)\u000f\u0012KJN4���~��^�YB@��P�&X�I��#�J�W�|�\u0007��9XӒvLSA�#x�,\r�T\bA\u001c�ݞ���\u000bg�z,���\t�?��\u0003��w\u001239�\u0015�\u001f�U3$��rq*X�[\u001c��\u001e�Q��\u0001��b�\\ٗ��\r\r��x�7�4\u001e�M:�Y��IwG>;�{l\u0003�=��Y��k�mt��%rӣ�5y^��~�%\u0016TU�3��\"ɑ\u0005���q�\rI�&\u00033�e��ۣA6�!\f��L��\u0012�_>����#H�B쇙qT��g�\rg*���B��F\u001a]c\\��C�+s��뒦�����\u001c���ԯ��ƈ,.\u0013�\u0006�.;���P\u0011iF�__�̼ے\u0011��i�Nd���9*F�O������R��\u001b �^���\u000e��\nld5�PZi:�;���\\FZ�_�\u0000�\u0005�\u0006�\\����W\"1w\n�t�\u001c[Ck�@\u001e*\\�\\�5�)W�t��/�ƒ^�\n���\u0011ł.FA�P9�׸/��?��\u001a#�{;���2��$�S��c�>�G(����\u0005,�_>\r���\u0001}�6JkZ���o��`�,\u0018��A��! ���\u001c��r(|��Y\n�Ϗ~���$��H��6x{ƾM�\u001et҇�]\u001eX�g���\u001bS\u0003\u0013@N��:V�AV\u0019�8\u0012�\u001c�.3X�1ר��\u0003��\u0018�d���*��ت\u000e�\u000b�\u000bm�\u001f\r��\u0003�8\u0017u+kO\u0002�w\u0019.\u0003\u0005sq��S�\u0018w�_\u0016�i)�\u0005�3qi��\u0002��A���s��^�€��W��vOߪ�r����HJC��Я\b��h�lW�!��̓�W}��\u001c}vd\u0006�o�0�\u0014�7�w���Up�̔>�F|��/�7)+\u000f.\u0004�\"LیG�!��|�����\u0018�wy)�:�\"R8X���I��'\n�.#�a�@@�N��f��~\u000eֱ�\u0016�\u001fV�\u001a_)�K�\u0003M�\u0016sF�z#^��q�ty)�=p3J\u0017E���\u0018P\u000e@xC�ζ,;dn^p?\t�\u00141��j~�\u000b]ߖ�E\u0014�~\r�\u0006�5���{\\�\u001e�v���P[\u0003K�7����%���n��Cc�½��E�i�i����$A\u001d�oa7�,�s|b\u0010eK#��fy��q�I��nX����\u0001h�+��~!t\u0014T ieZ�}�\u0004���9q����x�i�I��2�3Ќ�5y�vR���Hs��.�ݠ\u000b�\\4_���ɮG���K\u0003��}�n\u001b�2�\u001dJ����4R.����ܣNq�}i\r/\u0006!VjI�%\u0013��\u0013�R��C\u0014�6�\u001c��\r�\u0015��!���\u0010�X�k\u000e����@4�H]�xx�-�N���fBz�R�A*�!\\��M{Bn\u0006�fa'__����\u0012��F>\u0003\u0002L������j��@�h���P\u001d팍C����17\tAB�\fQX��L(��fh�\u0016��h#~\u0016��$j4�<�Ҕ\u0017��M�,�\b]~�v*��\b�9�J��`\n��y~9�,��\u000b\u001a\u001e�\u0015�Jm�.fO�\u001d\u0011�\u0005�1\t�l+�\u0004'��#>�3�t+�\u0003�k\u0003.#�U�\\���\b���$���l�\u0011���-�\u0016��\t�B�3y����ф�\u0017\u0006��m\u0019&�����n_�.����#�BG�kV\u001f�\u001a\u0018*��q\b\u000f� v%�s�\u0002��Y$\u0017]���������F�Q�(0څ�tp-�\u0011�6�\u0004\u0018����\u001e��J�A$�!p��1�-��;��Vуf\u0015�����\u0002Y{jjJK(�^����1ƿ�@�U��E��}S��0\u000b-�[�AD�!����cb\u0015႖�\tDF�4�����x}�ۄ_\u001db����@�G1��\u0015\u001a\u0007DT\u0011K}p�\u001e�;x��<��&h�xF���W�\u001e\u0010�n��ǧ\f��/#\u001b\u001bX���f��mX���u�\u0011,fK:��jW\rxp\u0007���n��.�\u001e-�)ю�0�\r��ПC�1,��`��\b֡GA�{�TH\u0018�P���ew^9��!�YeS'f�\u0004~�h����mkE�2.~*A�{�\u0011���?p\u0017���FI���\u001fWv�N�ik@D�+b�ȿ�I/�����HM��,Z���/�bnH�����ؽ�\u0003~5ȭ6��JΝ\u001dpޡ�`Q�V��^3EE̶���*���\ti�f1��ƣ�.Z:R�3�K����\u0011E���0mA�A\u0018�!�����-�#f\"͛IG\u0017\u001d\"!�-����\u001cJLV\"�ۯ?2�\u0018\u000e\u0002wHԲ'�vdi�\u0018\u0002�0����e#K,�6859�F�\u0019m��\u0005h\u001a�4\r��\u0015�\u001bQ�\u000e�l��Ğ\u0012�f%g%�d�vk�&\u0017g\u0000��^J/!���wX�\u0006����,�_\u0019\b̡\nvFZ�����#1_�\u0017���P�R�<:\u001f\u001d&���ՙ3rdB�z\u0007]�4�\u000b/F�x��4��Nu7~�-/�:�X\f\u001a$�L���\u0002\u001c��S���m��=Fp\u000b\u0005�X,���Tn\u0007�T��\u0014\u0000��ocW�\u001fs�2�{$�\u0005\u0007v��y�{�K�S_cm�S��z�\u00145=s�C�AP�!����s�:\u0004�Ԭht\f�Y٫(J�$�:��p���\u0003��G�hԺ{�ל\b��`�W��r�����>&�z�^\u0019\u001a�\u0015ѥ>\u0001=o�*8�H�w~�}��gG8Oe���չ�SF\u00167g|���){��\u0001�>���R��=0�س\u0002�F@�%��d\n@�%{U+R/�r0m�@Q\u0004�\u000bC�4���E�AB�!���L���v�f\"�)�\trR��X�sƇ���k��S�5��\u0019ѐ����j�����VZ�EeL�\n_nd\u0005kx��i�&��݂~�K|m�6��nʼn/�,�8\u001d�I�1b�X\n(�\"\n���\u0006:G��?^�0��(�4\u000f\u0000��5�,C\u000bx�c��\u0006u\u0017\r-Ȑk\t\u0019E3%�9M�\u0012\u0013|�\t\"�*F������g�&SH�p����D\fH�\u000b�s%h���}%��\u0011ȳ/�\u001f|�\u0006j\u0002���\u0016�~&���Jy#�.�'�\n\u0016mJM�\u001d}�'̥���D^=���㾩�1\u0013�r��n3�6ղ\u0000j-UiS�WT�Z�b��]p�a�P�Z@�6�f\u000fC#sEa\u001d���8���#��\u001ct�Ap��5��A6�!Ԁ�۷/�L�dZ���e2�(^و���ev\u0007�\u0011{��Z E��Q�P��\u0004\u001fyǾl�\u0016�r�T�.���kN�U�K�3�\r�]����,s�Ʀ\u0015�d��5m��E׎-�\u0018t6� �B��Q�\u000bU�2��h�UM��-) u�\n��U\b�u1y���v\u0010��\u000fY�p� \b �ڤ�1\u0006�P=���K��;�\u0016\u0002�Q�r\u001fg��o<.�c���7��v|����q\n�N���\u001aʯ�\ru0�8��#L��z�,�\u0011�\u000fr�A�\u0015Z\u0001L\u000e�{�z�B����o܏�̓\u001f\u0014\u0000���\u0016�ZS�3\u0001�\u0003K��\r�\u001c�x�\u0006�\u0012�{\u0006\u0011\u0013�\u0014��[���]���g���\u0016�\u0019j(\u000fJI��A\u001c�!��L�����ۂ�J��|�\u0012/dS@�M�߁���\u001dh�ۅ�T�\u0013\u0015�d\u0007�\b��\u0016�����}��\u0016�\u000e�z\u0012�K�W˸3'���\u0010��B�і\u001b�Z`^T屒\t�ԟۀzo�4S�̇���Z��\u001bQ�&��9F��\n\u001e�\u000e���Z��\u0019߱�JI\u0001�����r-�r�Tr�/�zn\u001d�\u0001X�E�epE\u0016\u0011�\u001a����gd�*��&���ww�\u0011�j`��禦\u000f�,� +��aK]X���\r\t-�)���о%�Ѫ\u0019�Tw��,�8���\u001e��2*\u0010\u001f,\u0002�F0`�\u001cv\u0014�,�\u001d-[�E��%��$��?\u0001�7��O�0�-�A\u0015�!����\u001d��D��ِ�%\u001e�~�\b�%\u001a���TDȍ�\b�nZ�ɕ\r\u0017�ޝ�\u0003�9}L��v�wp�\u0019w���\\����\u000e��\u0012\b�<��K���@�P�ꗦ�Y&�\u001d��ڮ\\\u001d����ְ�?_���\u00011~\r\u001f[1��r�u�k���&�\u00071C�U\fSj\u0006t��\u000fZ�\u001f�^��#]0I�m�U�߰Q�d���h#���\u0015衝v���8�Y��Yu�\u000ff#\u001c�}6��vr���rCqU#�\u0007\u0006v���#��>�\u0017\u001b�9$��+Р\u0004\u0015�A!�\"$���a���4�H\u0014^�n�m�[s\u0001w_��4��(��\u001cDf!��=;����o9*��~���Ӂk\n���u(�\"�]���3\r\u0003\u0012\u0015�-�\u0017b�\u0011�T�\u0002\u0001\u0002�]�ٌ\u001d�V\u0004^q�!�us'�d����rOB�3���\rn�\"/�\u0000��w��B�04����C���\u0018���3t�gG~6\u0006�#\u001ey�g�8�M��r�ւ\u001fX�\t�s�)d\u0019�\u001e9_'�C\u001f\u001f�����WhvT�[O�<����\u0017ĩ�^_�\t?��\u0010����#�KN\u0004\u0013��!�o-4.��IqGM.�]a\u00076��\u0004��oZ�%\u0000�&\u0004X�G\u0013u$m\u0013�=��.�Z�\u001b�Y�A\u001d�\"8���j�I-���(\b]�\u001d��A��-�\u0012���\u0017\u0007�;\u0015d\u0018�H�Q�F����h��8����@u�Vb\u0010����\u0017���ɂ2ϣ\u001c灵V,k��o����r�\b�M!��e��ά�B%��;x���\u0016rO�.�\rCX����S���v� \u0003�\u001b�'��k\u0006��D�1�\u0018�)O\b����\u0017GX��-��5�d��}�\"\u001eI\u0001N`g-!�e�6��G\u0003����J\u0011\u001cF\n�M���(�$0R^�`:����E��\u0006\u0012�\u0014ݹ�\u0000NA��\u0014\fM\",��r~�ΰ��g5ρ\u001a��j�\\�P��?�y�����u�\u0015n�%.�qԁ���\n\u0007�Z�A\u0011�\"L��L�\"�\u001bl��%-�Kv�G�i�Ա�uY���X�z�\u0005=�/�d��g�\u001b����I @`r�l��cu�-�\u001fg\u0010��ԉE�Ώ���\n�N���\u001c\u000e\u000b\u0000�J��h\u0017�r�CT-u�\u0014)�+�\u0003���m{�\u001b�fY�:Bؐ'�\u001dҾɅ��@R-jNY8��?b�ᥜ;0��뭮���2�M�M9CtHPȌ\u0018\u0005R�Y�\u0015����L��/\u000360��5F�\u0019羱:fVn��\u0000��\u001d��á�o���\u0017���\u0017\u001f`�m��د��:�}\u001a*��c\u0006F �\u000f-)�����l��n\u0014@�%�\u001f���%$�\u0014�\u00015�ɣA)�\"`���\r��i�K\u001e�\u0016򵞲�&R\u0002�\u0017�Q\t�J�l��&�_^<�e��[G\u0016�Ӻh�k|��\u001c�wڑ��`�]�:�9�l��ًU�G��cY6��r�4f,�\b�3\b2X\u0001�4Y�\t�k>�Vb��LIR\f�H8�\u001c��G�bu�ӎS�m��d�hj?�7���R��7�8��U�μܻ>I�D�&\u0016��D\f\u0011�\u0016O\u0015��\u001a[^��V\u0006Cw5q��5(�+���[#ב�;6wx\u001c�$\u0006��A\u001c�\"t��L�\u001e����\u001f��\u0012��Ս��\u0019��$s[�ݱ#�aЎ~��f����|6��\t\t1��mm�K�*dK|�r�jL�ֵ����A�;�B�\u001b��T�b\u0006Phm�`\\̤�I�L��\u0006#�[y��YH��\\�E����v����p�Ç�W@;��R7�\n@Z�@>p\u000eE�ȧRt�\u0013D\u001a�\u0007nv�Ű��lS�ߦ�/�V]\u000by�\u0016�2N'-r8_�m#䨤\u001c�]�\\2��T��\u000b3F۲[ۯ�vL\t�\u0019Q�ۃ��o\b��9��g�T�F��T–����6A{�5�\bz+�I}l_��iF�\u001c������ˬ�褣A �\"����\u0014j�3�Rb1�b�\u0017X��E�8(�4�,�wv�*y�N��ka��*�J�����\u0018Α��\"0�v�O��\"*#��-L$_\u0006�\u001d\u0016�4n2(\u001f��-Ri����l����N\u0016-��d�g�F\\\t\u0006\u0014R�����0��y�\t�3��]��\u0005�1䄳��\u0019�\r�h�\u001e�@�;)���\u0000�p@�����3Ԥ\u0001m`�A\u0016�\"���1��7\u0014�n��\u0001�L-\r�6\u000403֣\u001a���\u001bW\u001a�?b�\u0017Z\u0004O\u0013�E$�wt=��\u0012��O��)�\u001e���-T��A��Va��\u0002K˷�ʆ��(�yBfm\u0011$5th\t\u001c\\��;1G\u0005~q:�e��r\u0016�\u0003�\u000b�\u0018���!F���E\u0013�-9+�ͬ�(㾻�x\f�GNB��V&'a����x�<�>\u000b��Fų&\u0016X\u0016��\u000eMr��E\u0012'y���0��WB\\\u001b���ô���=\u00125���w\u001d�;�K�Xo\u0004���@���҇����X�GNs�QN��u1�n cP����ɠP��e,:�RS�m&�\u0006DDA��ҕl�A\u001e�\"Ā�L�܏��\u0018xB\u0001�\n췟᧷\u0014��O��h\u000b\u0000�R�� ��)�\u001a�*�aԾ��'��T�o*/�Zn�����M\u0019sm�㱭\u000e�Q\u0006���Τ\u0004Z�3\u001cj$�������y�|�C&:\t\u0015�1\tMH�\u0005I�zZ� \b�z�\u00197q��\u000f��ÿ]�G���\u001e��i]\u0014-�G�\t�Sw�\u0013\u0007>�<��)\u0016{�:b��j\u0011W�\u0007�#�k\u0018\u0002bk�\u0005`\\듨�\n�t�9��\u0017G��)�й\u0013I�x�+_�J�/_�\u0006t�T�x��\u0019��ǹ�_�6\u001e�\u0004P\u0012�\u0018Q��a�?���4,�a�F�oR�*�o�J�\u0004B'l\u000bxQ�\u0000��\"�,ev�@��\"؀�L�?\u001b\u000e�@�Lٔ�\u0005_�\f��lu\u001f�39#\u0003�\"\u0006\\\u000e�\"\u001c r\u0013�%��p\u000f���X\u0006pn\u0012l\u0002e�2\fa����af>?Y*��y���`;����\u0011[Z<�V��Ѕ���O���\u0015p�i�\u0014�O��8P^�A�\u0018m�a\u0012ҟ(����G=r�ۏS��Zf���T;\"g� �;#Kޱ�T\u0007ِ�=\u0001���@��\rX!%J�n)\b��6{�\u001f\u001e��0�\u000f��\u001c�xt\u001cc�10�0҃5��\u001b����Q�Ϧ��<7�9��\u001c���g\u001f\f����4��\u0010C�6\u000e����@��\"��L�&��9C�<,m�U'�ϕ;��\u000f�?�S�'\u0012\u0011�\u00100 �q��|��A�d�a�A�����vpQd\u0019/�W��\u0017���C�/���熆\u0005\u001fq�b���5;ЙT#\u0002ce�G� ����(\n�\t\u0013�R�zh\"���{�M\u0000|���`���3�/��#�\u0015#]~;�'(؎,��ޭ\u0014r�Bf��\u0006\u00133\u0015�3\u000b^vu�T���o\u0006S�\u0018���`<�v�\u001c���f�8b�m+_�\u001d\u000e���$T��3y�]��w �y��w\u0004y�^����(7˪&Y�Uh\u001c\u0015Ž��A\u0007�#\u0000��M{7�gJ\u001e5q��?�\u0011�0��k��\u001fem��d�q\u0015g\"��X&;g��<��Y�љ\u0012���\f�\u0010a\u0012%L�)��dg\u001b;#y�'\u0017,�[\u001cD�FM��i��0�\u000b\r\u0005�:wӡ��\u0012�\u0010�\fF) :$޳+p#�PEU!G\u000f��E��Ua�\u001b�i�87IP���\u0000l��b\u0017�{�H�\\�\u0000�,��\u000e�\u001f��V���X�\u000b�]�v\f\nD��\u001bD\u001cp\u0015��z�:�O�cݍ6��$��\u0017\u0014#e\u000ff'�ɛ�`����b�@��#(��L�GUZ�Y�[X�4���A�?� }ۥ�\u001f\u0010A���h8�\u0010̽���Ml��+��Rݐ;T�\n��\f������j1<��\u0013���\u000e�\n��1�ev�,\u001d��<��b=\u0003u8\u0014/V(�\u0001~#�>+\f�\u001f3|D�\u001f\u001e\u0012#�\u0014���x\u0002Q*�\u0006\u0016��ժ\"2�J�\u0004Λ���]����uo��2>�{u\"o�?\u001a��p\u001b���b�z#\u001a��ׯ�\u0013R�[���J���\u0018Zd�\bp\u001c�P\u0017�O��r�f��77�\fqv��\t�SQ'�)k�?�\u001d�?\u0016~\u001bs����\u001eO0���A\u0015�#<��Mb��F��r�Ż��(�u�\u0007\u0012�bY�\f�O\\\u0004�0'�t<�{�����^f\u0014QR\u001b[;�Q�\u0012u�\u0013��]\u0001��1E\u0006ͱ���t7\n�ڞ\u0019_gn\u0015��s��\u0016pT\bZ3}��\u0000\nmĝ��`���ʉ��N\u0017]kU\ru�/\u0015���\u001b[�SfYs\u000e$��E��M�r��\u0001�\u0002�\u0010��\u0011�o�Jes>ç�{\u0003�cfk�\u00146%G\u001e\u0011��e�\u001f/�D�ǜ�\u0003q�@/^�_' |�>0\t�\u0012'\n���wk\u001e�rdv�$���\u000b�\t_\u0003�g��\u0001�|Ň͹�\"��\b���.������!R�D����I��@sr\u001c��һ$�A\u0014�#P����$��T�_c��Q�.�L�l�,B)n�,��=U\u0002\f��[[��g\f�n\r??,yf1ti×�\u001f�\r���к�\u0003%�5e�\u0004�\u001dɕ(���QM\u001a\u0019٥�\u0018i\u0011�9h\u001c{�|x\u0003\u0007\u0013�ٚ\u0006@�J��G��4�GE̜�]\u0001���*�\u0013M�=��\u000f�t'��\u0006�VTw;<%��^�\u0002\u001a��E3a\u0003 \u0013��n�Oq��A����%�Ļ\u0003��ќ+��-�\u0011��\u0006\u001elF����v>\f&�c#��Q\u0016d�L�F�Ū�eaT�J}�\f��\u001c\u0007T{Vn��W���Uu;pb�{�T����U���������\u0006`'暣A\u0015�#d���\u0016�\u0018��*�p��i�\u0005F<4+ƕ��t�A�H�5T\u00118E\u0010�a|���=F�� \u001e�L�i��5��Z8x��ܗ��ί\u0013�B�WS�n�=\u0007��\u0004�\u001a֔\u000b�z��h��\t���\u0019\u0017\u000f�?�\u0002oϛ:\u001d�j\u0007�����i?\\L��R��Ϭ9�q\u0010@�Y8�����\u0013I:�\u0004����7b��{�4v+�\".\r1(`\u001b�rK���\u001fn\u000b�4�$%�ecHy\u001d��\t�����@���TU�S9�@�\b`k�@v��>\u0000�\u001e�\u0018{���1�����.-�w+��<��\u0007N�\u0013;���{\u0000V\u000f��*�h���\"�wԁ$��A\r�#x����\u001c�f\u0005�\u000e\u001f<�W�s�l���� �F\r0@$�<} �(��\u0015r�����\u0003?��>�!�J���+g��\u000fB��\n�\u0006(\u001d�\u001e�\u0004�ʁÂTC�+tMa�\u001f\u0011c�\u0001�8�n��<�b��{�\u001d��$8�n�.�\t��d6���ѕ\u0014��iK���4�(�\u0001c�z�H��6\u001b���6gJS�N��\t�\f \u0001��'A�]K݂g^�3÷g*\u0019��J\"p���OJ�Z{*\u0016�\n\u001c�������m�=\u0017\"Cݥ2�|�f|��\u0005ja#i?\u0003+\f6������\u0010�=72)A�m�cY#\u0002��U��v�A\n�#����\u0012��9��bI;�cҚCw�5�\u0003)���F^����x[\u0005 \t�\u0006�����\t;fI�]\"�FXs�$�\u0007��d\u0011��\b\u0003Ig�<ʼ�\u001b�\u0011�e��Ѐ�Us#\u000b�~ƐS�\u0012vR���Am���{��\u0018$P�XxW�R�_9\u000f������$ \u000e�PPc(��GcBi�\n��˲\u0016�(W�\u000f�h�.��C��7�7\u001d\r��\u001b��\u0013\u0005���\u0002k*B��~\u0019�R\u0000\u0002��\u0001A�]\u0001��\u0012yPx5C�u���T\u001c��s\u0003B�{dn��\u0017�ʑ2{?f䀸�P��\b��c���I2=����u%�|�g�8\u0004��A\u0018�#���Mb����`\u000b�+\u001b���f�xa����s;�O�\u0010���%\u0013���l�\u0005�z�?�\u001e\u001d�3F\t\u001c,����y��\u000e�H���v�H��\tq\u0016V��\f�\"X�[�F7���0-[�|���\f�'\u0017�\u0006��G錌t���z��p���\u0005\u0000(t\u0002�M��Ur@��fk�{\u0015{'%�z\u0015���3p�E�p�H��pm\u001a&߲o��VG���ү��\f�u�k�Ӏ��\u0004,?Nc\u0007ڶ���F�\u000b25��%j���-��>Ra^��\u0013�\u0015��2�c���P����W���t�\u001b\u0012I;f��_<�d:\u0001\u001e��\u0014�^xp��\n)$��\u00105����\u001b�A\u0018�#���\n��w\u0013(JmΙ���i~0��E\u000b\u0010�:2��ԙ|w\tѾL���)\\��\u001b�\"r�[jnB��&��w�۠ܡ�����g\u0005=_N�S�\u0001\u0010�\u0013v����4�\u001d~�}���w�e�\u0012�\u0015���\t.�oER���{�d�\\j-�\u0001톂�X�mK\"�Ֆ\t��N�h�q�\u0007}tF9�UFAY{\u000b�]}xK��x�I\\�U������ q�C�\u0001�9\tJ�uq�][�+�-t�7�ߧ\u001d�E�GfZT\n'��_�%\u0019�����\u001a�q\u001e�#�oa6�3ϞBI��\rML����!e�\u001b���\u0003��\u0000\u000f�R�ը�䅣A\u001c�#Ȁ�M\u001a��+0���f۷���\fY�\f\u0003d�T�:*��16�)0O\t��k_;���b^���\u0013�]k�F\"���L��c#�}����\u0016F\u0001\u001f��SC\u0018��+E͙i��;�s=׾dn�4q�O�����4S�\u001aUY�\u001co�p��hca��nDb/\u001b�d[Ƣ\u0018��\n�T�ea�����?�N\"I��\b\u001a�5�A��Yu,\u001a�\r?H��R����L\u001d|��M\u0018L��Q:Cz\u0015CN\u0014�P���}�6�Sب�e�|z�\\R�\u0003�D�}\u0007 L�/\u001a��oT���)S��\u0012U�\f����R�R�,�G�\u0007iT�\u000e=\u0007���,J��)؞��.x@�A%�#܀����\u0019����Q\u0005џ��'\b�$���\u0014��L��N[�(Y�;�]PL������;��V\u001e�\u0003+��ڲX9\u0007<%��z�>)�x�\u001c��\u0002Q&�����b� � ���5dG��\u0011!�\u000f���{NA�4P.R�\u001e�ե\u0003��:,;�΋��=�ּ�qc#��}:\u000bZ�҆{\u0012�,\u000f�m�����Լ�t�<\u001bʜ\"f��\u0018L��M�FE �KD\u0018y\n��S_FEL�Po�$G4:\f=e��g��+�Z1Įz�G4�q��2f<�|�Sa��\u001d���]Gl(��Y�z���H��H�\u00005\u001c�\u001a@��E��FH�\u0010n2�FM\u0006ڄV����}Ts\"Ԓ�A\u001f�#����\u0016�s�w�R�y\u0010؎i@\u0018\u0012\b$t2y\u000f�t�\u0014��Jp4J�zK&_���\u00187\u00182S��$v���\u0001���O^$\n��\u0001R���UDB���\u0014@�}Z�d̼�\u0018�*:`���!��H�^����~���F\u000f\u0003�c�I#]%am�\u00139\t�A}�c�f\u0002\n�[�'\u001ft����X�p{�C֕N%�\u0003�\u001b:� &���2��\u001d\u001e3�x�[�\u0011 tDŽ{a���Dz�UaqF|�m\u0005��O\u0005��yZ;���skj�\u0010�6�\u0004����\u001d��Y���5v㼿���r`Cb�L�H=\u0010�\u0013l�\u0016���R,V�SC�\u0000c�\u00014O^L�ꂌ\u0004��A(�$\u0004���\u001b�|�puu*V\u0007��%�D\u0014u�\u001aI�\u0006�x\u0019\u001a�\u0017:i���܎{EZ�^\u0012�~g���\u0019WA6šD?;2��C<խo���8��\u0001\u0012e���\u0012���BَWi�m\n��o�9�I���uD\u000f����A�E]��ʸI�\t�0�\u000e�}��I(�H�n:*�{\u001b��#k�d\u001c��Ck�h\n�\u001f{�`#�Yhm]�\u0000\u0002N(E�Յ�=��\u001b���[Z�/��E}<�F��\u0019�m�p_=�2�\u0002~�֯,\u000f�_�j9V\u0011�3��Ky�)QLC\u001a��\u0014�\u0001�v�\f��0����tB�X���Fϸ��3ҁ3;��\u0018�\u0003�lPuK������.W[��3\u0011��!�6��A$�$\u0018���)\u0017�]��]Y{��\u001c������D*��y �<����]� @���43��O�\u001a\u001a^�\u000b�S_���0g6ͷ'�l\u001b\u0001j��\u0012����,%]m\u0014$Cvi\u0007@�h\u0005e�\u0001�Sl���o\u0012�w�~�?ݓͦAc;n6\f�}�9T�\u0005�b�\u001ad_\u001d\u0010俔��\bk\u0004W�x\\��V���?I��1��*\u0014���v�b�\rW���\u0012N��\t>\u0000|\u0003�\u001bǙ]��6@)HޭUj\rC��O\u0016p�\u0010�K����\u0016��\u0012�z�\"���d�t��D���u�\r\u0005F;\"�m��׼���\t�h��X\u000b����J�H^�\u0007:0\u0012\bO�s\u0016�%Nv��i^��\u001ev֘�A\u001f�$,���ԑ�\u0016:�\rYL#�jm�Ety\u000e�-\u001f(�I\u0015M���A��M�v������7\u0004#���ILuU!����%=���\u0012Tpc��(UD%�\u0010\bx��\u0019\u0010V\u001a�<��.ơ�0bē\u001c\u0007S�PBN:���xn���+B��\u001f[\u001d�\u001838�\\�\\��Vt��\f\u000f错���nLG!^\u0017�f\n��3\u000e�R����\b\u0004���L��WZ��]pO��L\u0012[A\u0004��bY�0r\u0017�ζ�D)ɬ\u0015�-z�iH\r�;S=\u0002��Ճ\u001eM�\u0012\u001c�Ҁ���~���dG�Zp�a�J���\u0000&�@a��-�r����]��6��z���~�/ua�\u0018$%\u0007���A �$@����\u0014\u0005B��2*N<�⩽`\"kƌ�`�\u001dR_i\u0014&\u000f�\u00040�\u001f)\u0005\u0005��VS��}l\u0002�}�)�O\u0012�^߯ؾ\u0018>ؤa��!�5��\u0010�k� �S�E��~β��VA\u0018�y\u001d�#���[�S/\u0013\\Y�x�pv�\u0005�36�\u0015�Y��ӝ�hu=�S����.�\u0019}(�mQM��jV�\u0017�H��u�Y\u0002/\u0015�.a3��\f��\fxr���vf\u001cť��\u0001W��\u000b���\fm��ϭE���g�k\u001c�t�\u001d\u0005+[�>\u001e�_'�N|�-'�|b\u0014\u000bmǏ>٤\\����}�����p\u0015|�>\u0013�\u0000��\n{�\u0005���\u001c\n_�J\b�\u0007�\u001bn��jkX��A\u001a�$T����\u0010��X\u0014IW���N��:�W�e�\u0019��\u0019q����\nQ��2�i�\u0000C\u0004�\"K*��N�\b+Y~M����O���#\u001d.�\u0001즀��g\u0006��{-\u0017\f)���\rQ�r}[\u001b�)#M�\u0005NŢ\\�6}��O�L�\f͂���[/agl\u000e�\r\u0011h�դO�A\u000f�/\u000eE�טũ�U�\fU3�6J\u0004Pǖg�*��U\u0001N�x\u0000-���\u001fP�&��G���s\u0015�%HvC*>���91C�&��!�J\u001b0�f�\u0002f vW�񼲍�I�Z���L��pp��V9`���n�D��J2N�T�\u001bZ;�)�VP+]�\u001e\u0017-J0K��\u0006�>��O���A$�$h����'\u0013�\u0013\u0006�v����\u0012�%}�\t\u001c#�v`\u000b\u0004�u\u000e6�/�B@��uǸ�\r�/�b�\u0005\u0018V|�G�k��\"AUi�B�\u000b\u0006s�Ǣ��᪞��Xa\u0012�v\b\u0004j�\u0007��\u0016{�\u0016�����N�F��Á�󵈾�����\u001c9�7T�q�\u00188�;S<�P�w�{�\u0015��٥<1�Bi۶��Wj�����nxfN�v^�y�\u000f�>\u000e8�®\n��ٲY�#��pT](\u0001+�o]��6$\u0002z�|8��S>�۪�+,Q[��ႅҒ\u00049\u0001�k�ti��t՝��M��e\u0018��o�E+x\u00137t�$\u0014\t�v�F�k\u000e�h��A%�$����4����Q\u001b�\u0012�6�]{\u0005�ڵ��7���l\u0015d��D�LX;T��9��\u0017�;'?]�ltƢ�h����`��\u0018\u0018\u0004)�\u0004��0j\r����+!���;�d4�n�M$ӿ�\u0018\u001a?�PQ80��ʞ�]��f��Xb8\\��hS$�r\u0004$/\"�\u0002\u0017��g���؍�x�{�k�B��R��\u0001�\u001f��\f�0�lW����z�t�^\tm7C�4�T����i��aU���f��i����\t�|��И�\u0003�৛\u000f6��i�O}��W��?\u0005�\u0002dPC\u001c���_��:r\u0018��!(��\u0004YD��΁˨�Dx��[�\u001f�BJ��:ߣ\u000f �P��\u0016��A\u001d�$����\u001f��w�Z�:��?�\fm�\u0004�9���GsVVu��@\u0010սm�R������\u0017>�\u001e�\u0004�s\u001aS`*���|���n\u000e~�\u0017�Q��\ft�\u00034UZ���nu��\u0006m��*Pq�}f�N��6\\\u0006*�#[id��Ҟ�x�)��m\u000f�8UO:�,^CS��H�8��\u0002V�Q\u0010Q�\u0013��\u001c�=��E��O[�R�\t�P)���Ld1�=�˂�AI8r\u001f7�\u0012�4J�~\u0002\u001c˧SA������\rs�F=\u0000�X.�6$�~~\u0000\u001f�,\u001b~[���s�ZtI,/\u000f\u0010�\fn�\u0005ؾ�J�Ls�7����2Pc�؍�-θޢ\\�G��:ƍ�A\u001c�$̀��~܈;w����t�D�)ۚW� �SH�M�LS�0��0\u0005�b�3�q8���/ j~\u0001F\u0006�SGN?����0�� g\u001fXw���O��bF�%\u0015��J�X�!O�YZߔ+z1~�f�\"�m�}��_\t�C`�\u0016ZT�\u000b���\b���\u0015L\nZ�8�H�5�\u0003&|6�V\u0004�������?\u000e��T\f�$B�fm�T�\u0001���;�.�p+W�\u0007��P����(H\u0007+�$��|S\u001c�v�ҁCf�\u0001a�\u0014҆bA{^��>u��e��#b�k2�\u00141�p�g;U�we޾\u000e�T�\u0001\r+�(��,z�\r�\u000b�9\t�6c�@d�\u0006�\nN�{�A#�$����n]�����\\eaH� \f�\u001a��\u0014����Y�1�-l#�\u001a�%oGD��\u0013e{z�f��~�|\u000b}�p/�\u001b���K\u0006 ��\u000f\u001d���KE\u0011�{�%�M�y��F��[Jl�\u0011\u0014�{=����7~�%�\u0002\u0014��\u0004l�`�)��\u001c�F�\u0014J�\u0001*\u0017hꯛ��Q7;��`c�\u0010�����77�:�V�z�fb�eD�Y��y��[\b��#cgFs@�����\u0017�\u0014�\u0014=�>�����qw��\u0017n�$Ӗ�{|XOS�\u0012|\u0004\u0004�j�f��\u0018բ��\u0004Lr�^.C���\u001f�Ϋ\\;X�7��3�\u0018\\5���\u001fI\u000b�1��X�#F\u0014Q��M����\u0016��A'�$���\u0005\u0013�us@����ݬa�y���U��C^�� \u000f�\u0007ί�?\u0017\u0014�\u00108}Z\u0014?�\t�s��f3\b\u001fD�\\\u0014f(^PS\r\u0011k���B\u000b6�=���!�\u0004��S\u001f����ơ�\u000bD�@x���\u00161����\u0001{�;��o\u0012�*f\f;�f�:[�\r\u0000H�\u0013�Z���\u0010\u0003\u001dA~��{V��r}\u0001e�2qbۖ�l���S\u0001�{\u0005/�\u001c\b�{Ъ��\u0007w4���X\u001a��\u001b!�\u0011`I\u001a�pI\u0014��g�V�}\u0019�\r\u0018��&ٵ_\u0010Z\u0018�cg\u000e>U�X\u0012\u0013�ĆL��&S|Lu�Ge�kU�Mٴ\u0015�ɰ��\u0019}\u0014�Rt�W�o'sc��\u001d'\u0012\u0003cy�Вo��b�F��A2�%\b���Qz�\u0003\u001dF��W�sC�k1\u0002��\u001dwߕ 114Q�E���gER\u0017��k$l\u000b���*I塬�m�F�N=�1*\u0007�Ն���A+�g�3�3�!\u001a�0�H��3�j��(�\u0012r\u000f���r�l�A`5�\u0013���|�+�X��\u000e�;�PLJ͑��)����+���\u000e\"Σ\u0006\u001f5�3u��hIS�c\u0002\u000bQ\u000ekq�RK�\u0002�0T�\"��;\u000b��6)��U�+Q�\u000efgf�s{�����A�;����\u0000�W�R[�\u0019�Ӡ|�7�u��]Ko67\u0005�J8~0\no\\��i\b��m��/zDğ��l����N��:\u0014㓏�H`7\u0005@.��}W�$jLj\u0002d�JS��WS��(��F��A*�%\u001c����\u000e�Mo�ː� s�=OV\u0015�\u0003E�U�\u001d�e,\t�Z�u\f�oͮ\u0015\\=NX�f\u0013�\u0010�-\u0001\u0000�t�mP�l��\u0019,\u0007�`�������i\bi���3��u�|}m6_��߆$����m�&���1�*CX�\u0004R?_�\u001e�\u0012\u0019��|���b�,��\u0005����-Xz���I��Zw���kw\roW�G_��H3|27gii��&����@\u001cp�ۖ�N\u000e�yAU��\u0013n\u0014l�c�j��\u0019�\u0012���� �S�sf_:\u0018\u0003�\u0004ܗ\u001f�����\u00016jfc�\u001c\u000b���B�^}��g�\u0005�r�I��-`�C��8�u��\u001f\u001fV*�\f]��$Q%\u0018t��t^�b\u0007-Ɯ�A3�%0���\"�\u0011U\t\u0004\u0011�U�\r\u0012�����g׉m��\u0006\u0018̵ן�P�-��:m�c��y�t1��ɠ2:��L����3\u0014n\\�qڵ��W�\u0003�d)�+?��\f�UAڬ\rf��w�9=.��j��'\nˇнMx���0���\u0001!ע̻\u0003\u0011��ZE�E�|�Of8\u0003�$#����G�Q��gqs\u0002f��‰���\u0015BR\u0014�w�>��쇅���в�%�S�y�S����\"<,nrEQ��tL�����vtv�*&��\u0004����\u0012�of��\u0018,��j]5k%|�\u001bRh�7�\u0017��mEI\u0017��i|\u001a\\�a�9��D������V۞>*�Sn�e�^\u000f��Wn��9�N�<#�\u0016��A)�%D��f\u001f_\u000fO�0FA2_\u001d�!��cFt�+DTAM�6s6�֢�\u0014�6A��uL�\u001f�;=�>WN!�L\u0002З�\u000e�F�v\r�)��\u000bo����K\t�\u0004V�_F����$U��\u0013K�rh��R��\u0006x򽇞� \u000eA�\n���\t�\u000fkB�6��}4\u0007�R�*C\u0018�.9��\\�\u0005����OI\u0004[���N�.L��\u001em���]�r.xB%��Qǵ�\f2{���\n3�j\u0018�04��IR\u000e��$ї�\u0017`�p\u001c�����\u0016��\u0012�~ᝀ��~���/=�šy=�Yw\u000fWJ��u�5s��~z\u0001_��H\u0012,C�o����\u000ev�\u0019I��㐪�1†\u001a曣A!�%X���1;\"���Xa�Ľ��qظ=���_WƴX�6�6\u0019-`��\u0017�2�\u000b��\u0014�n�ĜY�R�4��k��/]�&�z_R+2���l֨��!���g��Գ\f�g�\u000e�?-<�S*Ff@��,A�T~ƕj��Hx\u0002��V�^�BV��\u001d�����pܜ7\u001b:�f\u0010ؘ_\u0013�B�Q�N1\u000b�$\r��4�\u001da�Y�ci�1��mw��I�.!\u0013��\u001cn\u0017�gq@��}\u0000��?�[�<�Ë�P�E\u0003�Q\u0014(�p�l�e:�\u0003-��z�\t�\u0012�%�H&�����\u001d9�\u0010�����\u001f\u0011xq\u001e\r�Χ:�H��qe(�/ ZF�.2ߧHj\u0014b\\x��A'�%l��'�\u0007�������Z�֜6ԝ>E\u0019$�n��z�z�\u0015ia\n�>���W_�ثޫ\u0004I*��\u0014�^�nx��\u001e0��'�!�(!�S#B\u0003WבJơ�n�K��v� R��\u001cU8\bCںk�I���'\"M���0��\r|��y�H\u0018���ʊQ��\u0007��\u0000\u0013�\u001a��2�`�\u0015%~ѝ��\u0006\t�ʹ��\u0004���+�'���c�\u001a臏�p�\u000eFv ��\u0002�M����\u0006\u0004�R\u0014a�J\u0005�,�?KQL�\u00150��]\u0001�?M�0N`��p�[8O|�\b�8\u001b���\u001c4�\u001c �Ɏnb�\n\u0004M��$�9k��\u0002h�_\u0014f���\\�B\u0010ø(��\t\u0019­:؉�A&�%�����2\u0014-T��|�:\u000f,�j�f&��7ޖ�\u0001@�K\u001aK\u0018�Y���\u000f}:��\u0019g�y���\u0007ŪH��0�\u001c�-�g��\u001c�F��+�����a���\t$�NO����U�F9\u001e����78ɉ:jZ{e�#\u0003W�T\\\u001eZJ�5��~��\u0004N�VՒ\u0014RJ$�\n�S����\r�o}�Às���w���J�x�\u0013G!�\u0012��\u0000Ff��>\u001cM\u000b�W.E��&cx�ė�\u001a��\u000f��w\u0014��\u00049\u0014���b�^ёҢuL��x�\tmZ]w8x\u0002�$�\u001aޭ5DG\u000b��e\u0000Z��Q����\u000f�yGN��o|���-�\u001dM\u0000{���%\u000b*�0ųV�02�\b��A\"�%����*�NN�l��C'�o�E\u0010\rJRt�d��|��\tT� ��g\u0015\u0006�\u0001��\u000f`\u001c\u0013\u0017:u�q\u0013���}�\u001aS���\u0005\u0011\u001an\u0004qk\u001c\\�<�\u0010��\u0006�\u001f��֠w-ԩ�\t�P��\u0006\u0015�ށ�\u0002��e��\u0001<�ھt\u0010.lDX`���8\u0001,<�'MP\u0004�v*C���\u001b�`�\u000e��a\u0012μ\u0001|\u0013�Ԫ2�\u0019��K2\u0005��@k\u0006�j�l�u���`�\u0019��O\u00016Ր.|����\u0012\u0005�>'̩y=P�C⫁�\n��\n'c��޵�E��R�]b�,�F�2��*-q\u0000�*��$�:��H댛\\���=\u0002\r��C\u0015M:���e��lP��շ3h��BP�%����\u001b�@\u0011.7a��\u001f\u000e�\u0017�Zj\u0012wd4����q�dʌ��\u0015T���\u0019o��\ts\\B1ѕ�\u0010ul�\u0014�&\t\\E�s\u0002,{\u0019c3���>�WK\u001e�f�C�O\u0018V��@T�(#P��\u000bղ9�d\u001b,Vo\u000f�x�*�� ��g�G��rm�X��ͷf�06�pA%��Ώ��\u0010s�?���h����-�q\u0019�\u001b����p\u0002��n�*j#>�\b�\u0012||(J�\u001eF��\u0016\u001cJ\u0017\u0001#��\u001ce|�)�ѝ�\\.��\u000b\u001a)9}�8�4]��7C�!�N\u0018f\b����A=�%����~O\u000b-�<�`\u0002��Z����DOݲ�:��2�\u0018�)�x�\u0010���)穱���CP\n���.TF]�[ �\u001dծ��a�\u0010�V�\n���m sQ\u0002j���(>|��z�\u001d@q��\u001f�gYW}�\"\u000bB�+(v\f\u0016E\u0011\u001e��\u0002v�f��Z2���Gx=\n(�t]���y|;\u000b�Ŝ\u0001\u0006x�G0�����.���-c��\u0019�X��lGA�\u0004�^o\u0001\u0000���1�\u0019��0�йu\u001d�<}�-���P��K��\u0003z\t�Z\\JΡPh~�S�~�GG\u0014�Lvj�\u0011�{�`\u0019\\��\t0)\nL���f����&�X�Ɗ\\]2,�O��R\u0003\u001a��M���c\u001f^=?&Gr=Y�V�.M�$�pnV�3���W=(��A\u000e�%Ѐ��\u0016ġ�\u0007ҁ����8�)�\t\u001c���1/��|���8��\u001f:xJ²\u0018\u000e|X�5\u0002Jz��\u0004��q�p\u0017��99Zݡ{\u0015^��Q�߭����\u0017\u0013~�����j��[\\�bz�R\u0006���\u0010{�7��݈�\u0006�\\�Ι�\u0005}�����C?��=\reg5�\u001b#(\u001d��k|��o߆\u0006�鍸\b��A&�%���\u0013�\u00131\n\u0018�㈕c2��Rq���B~ׅ\u0001B�WJLy_F��RF��\b[D8T� ^��\u001d��L�6Fl��TƂ��Q�o�d�YH$֚�?�%��T=JY�ͩ5gv()p�|R���x�M\u001b� �\u001c��T^0.�o�W\u0002+5OY<�lo |fV�!\t!1�\n[E�V�\b%�8\bm�SG��\u0005�\u0003Y�8��.\u0006sEE�>-�6s�9wUY�(q7˝\\/9�\u0004\u0007��\u0016��M=)6?eM��.\u0001�\u001ag��.ё��t\\LW�rN�\u001f����\n+_K907��w䣥�S�\n2�\u000f�_�m�]�\u001a�o2�S\u001bc\b\u0004�b��i�ɀ|z��A(�%�����ɻ9��n�����\u0018\u0017r\u0012��\u0015�Qt�y��ܖ�%\\��y�_?\u0016&,\u0006K��h�G��Ȟ�H�{Y��~f��K;k���S2���\u0006=�\u001ek�H\u0016�&���jp�\u0005c���A.�&\f���\u0015޳�-Sܳ�\u0017(\b�\u0011�C�&ȇ!hh��'�^S�R�:��;\u000b\u0019�}POxYȬ{r�W?��Xw��j\u0013{�/=���K�MC��\u0004\u0003��J�D;��Q���FF�\u001a�~�c�%�^�\u001e(��<]ұ�H\u0017|L\u0006��3�j��\u0012›��ͮ05Ѕ%܁��\t��� �k�!Ɨ2����\u0016�\u0010�]\u0011\u0011̲\u000f���V���!��v%\u0003\u0001T/���3P$�1��)�Q\nˑF�d��N���9�\u0013n(��#�[�_�6��\u000e\u0017���1\u0018�X��<Ҭ<��Z$\u0017�U�����\u001e��.�r�1�G�*1\u0017�|>�m⬝.�ڭ&Q\b�_�\u0006���T\u000f�]\f���A\u0018�& ��\t\u0016�=��\r��;$�|�PN\u0002����՜\u0012�G�/�a1�ƊPηkK�\u0003J�X�b\u0001\u0004}{��ι�\u0017�}��}4�:?\u000b>e?*�\u00129��zG����(����a\u00046�\\���p�DѡoJ�6��;a>K�O�z1�H���(\u0013�g\u0004\u000f�J4g\u001a[�1��*\u001fԽ\r`�\u0017_7���mEh|\u000e%Y9�u�:�1�&��}�M�\u000fi�f��K0�Z�\u0002f7�\u0011\u001er\u0014^��W\f;�G�\u0010��-\u00113����(��c���î5a\u001f�\u0018\u001f���L�O@n\u000e6\f\u001dk\bF\u0013}�s��X�$&�~Dq�E��`gt�ꌣA#�&4����{M��\"�Q3�Si�K+�\u0005�=#hޟ��>�/�\u000b�yse�\"\u0000����a�s�\u0005��'-�@l}�-Ȍ�~U�}\"Q���f8!eƚ\u0015\n�֮U\u0016@td���ae.�\u0013�����=}9\u001a��\u0011�Љݡ\"�2x��\u0006��\u0017�K�����=v�Z�f`�J���u~\u0016\u0007�\u0014Kq��-�����\u0013G�/���\u0005&%�o4���a\u0003Ĺ��,څa���\u0007��g����ч0~\u0018��\u001a@�f�%\tkT%�\"��Q�fg^�s���\"mӎ�\n5�kh�g�\"�/���iTq`�7��@��63b�JpU�d6�75�+�L�b�\u0003�c�V܏�A#�&H��K\u0019u�0�kU��\u001c>�L����Af�%�.T��Ef�Ni٬\u0003�f\nW�\u0017E�m���n������M�Ԋ�����1�HR��랮�uI��o���8�����L�Նւ��δ^�\u0001*��q3M�\u001e�w��R:�ġ\fT�����D�;�@5�������݇�|(\u0018��P��\u0000��b~ʾ���\u0017�om6\\�Vuզ^�Y0P�\u001f\tx&~�pk\u001e�\u0015�\u0015!��f$ G��<\"��=v�%?q�K]˽(�9dM�\u0002�v��U�#C\\aKgp�\u0019|1\f�~ԟe�T��aݫa.��b�*!�\"�#�\u001dщM�����Y�@\u0011<�܋�A'�&\\���~-:\"@Yo�_QJ��\f�ꅜ�$XY����\u0015�FiG��R5�㋌�O�Tp�}\u0013�]���8�������\u001255�OB�܂(���Z�\u0013�KLO8�|�G\u001b���\u0017�0�4��'�Ai/�x\u0013u-����7,�}�\r���\t�Ğ愇\u0012���;�\u0005�\u00173[P����i��Bv�-\nvbJ\u0018�윌��U \u0019�V�dR\u001c�\t\u001cPpa�j�ظ��J�m0%Q�\u0018�t���{`]���=?����-I\tA{�\u001b�\u001cP�� ��\u0003����d\u0004��㼺BM��L��\u0016�.�������ɲ���]P���DL��j>z�Oݡ1���v�$�ق'� j\u000b;��)\u0011��q����(�=ܶL$I��KV��)\u001e����\u0004U���?\n:U��a�ZK�];\u0003\u001f��3寿��\u001fJ��4s\u0015\u0000r�]�9��̤�r���W�\u0017h1V\\�|��w��QΝ�\t\u0007�3E�K�6�B\u0010]\b���:f�\u0014�r��Y�o��Sq�Jc��[�ơ\u0013)������\u0019Cw�ѿt\u0000OU��f�q$��9�Z�C5*.���\n\u0004}��\u0017�K($��r\u0005yi2=�pVk�J�3S��=[N\u0005�6��T�\u0007�_Z�\u0004IE�V�\u0017��mL�pJ��+����{���N�0\r,��A<�&���골7^F�f�\u001e���\u0015\u000f�0L\u00162>�BR\u0006�}�L�\u0013Q\u0014��xo����\u0006�b������=�::�!��z�h�&Oy�\u000e����‘B��݂���&��F\f�\u001b^���p������\u0019]�Nђ�vMtT�U\u0015�|���d�Gg�'���$\u0014$$�����UK�c^;��j����Y�sː�\r\u000b��.J=��w1@\u0012gD�\u0019�Xk�G�P�@f����Qt��~�\u0004^�x(^�}g��!�\u0005�ص�����<\u0000*2l���Zý�~M\u000b�K�b&u\u001eH\u001b�+���\u001d�B:�\u0000���Ӏ \"�$�_���x�ě|�(���x�Y%$5��=�f��A\u001f�&����\u000e\u000e\u0001{(�YE:m\u0011_j\b\r\u001c\u001e��}��xX�2�|txN�?>��8\u0014Z��\bg\u0014�\u0006\u0002�L�#�!�f�,\u001c��\u0007�a,��,\u0003\u0013�b�5�g\u00151�g!�\u000e�@����A4G�\u000b\u0002*�\u0006H��\b_i̮s*\r\f� _\u0003���is����K\n۪�d\u001do]<\n�>_5�7\u0007�\u0007����GΨ‰��N+���&e%F����\u0011I�\r�C$&��4�N�l��\"G\u0006\u001e��x�[>K�](�v\u0000��|\"\f�\u0016�\u0002��`\u0018�%W�2�ِߕ\u0019W��a \"\"�O��h�f.��G2�t\u0016J������Aj[<\u0017��R��m\u0005$��\u0002�)?f�3\u0001*��A0�&Ԁ�8\u0001ɮR����\n�A[F'\\����h�\u0011\u0019o\u001c\u001d\u0007;�($�-S��\u0005�(\u0003g��@a���n��\u0006�_~��n���\u001c��^Ǧ~�^�B\u000fzmO�\u0011d0�-z\u0019K���a\u0016���GF3Ȑ�5�Q\u0014*\u001d\u0014���\u001f��~�\u000e\u0015��\u001f}�\u0000$�%�FO�����8d���\u0011\u0002_V\u0011x�2�U|0��T��j��\t\u000f��]\u0017I�;\u001fF ��D\n�\u001f�\u00038�+q\\s7�m\u0007�CE�GF\u000b\u0015��Ngܺ��\u000b����\u00192|\u0017o8o�yR0�\u0003e�A��o\u0006m\u001em��~���=~�cV\u001aݛm\u001d�uH\u0005p�ڔ�<*6\u0002�����\u000e9��\u001c4\u00113�@Bu�?�\u0007\t���ڐ�A'�&�����1khΓ\u001fu�T\\�I6��.��<��\t.O�\t(%�\u000fB�\u001d�ɀ-2e\u0000��Q6����M0��\u001c�I�F���gn�\u0005}�\u000b�!��27%�\u001e�9��(2{\\߻�\u001a|O�ቈ�[\u001f=cf5\u0017�N�-Dq\u0018ڍ\u001c[��*l��k=��k�\u0010Q�.(3����G;�ZZ�d�\"g�iL\rUr�\u000e2\b3i�]��\u001b\u0010?�8��n\u001e\u0006�(rX��!�n����b�=l�i�\"��-��=\tF��\f�\u0007��\u0015\f1o\u0001w-�;�<� K�\u0011b�8 ��\u00167�#\u0019��!!�\\���}w���\u0013��8\u0013꘼ƺ�����ȦcM��F@\u001c�YH�I����A\r�&����\u0010���}9�\u0017�-\u0017�&�&�\u0004\u0018��\u0005g���yU�F��:;�B\\�rm�W\u001a��\r\\G��C\u001b\u0002�;�u8W���቙�q��M\u0015��\u0001F�\u0014h8\\��l۷CT�i�K\u000b��\r�\u000e�\u001f��.�rQ�މmh�[�<��:��d�~2�P$�\u0010�\u000eA\t�[m�Ó��\t�,h����2)pYs�\u001aJ:,)�f���f猵���>v�\t�S��Uˀ\fe\f{\u001aÔ\u000e���\u0000e4Z/\u00179��Ҷ��Ɍu�\u0002Y�\u0007�\\��A2�\u0000\u0014���4o�1Ȉ�̊���9V�\u0018�1,$M(V��~fw�WJ�\u001bj\\��\u0012x\u0018�\u001e��\"\u0000�;XZ�!�Xk��d-,��7+3\u0018��r��\f��~�$�\n9\u000fpz�_�j�\u0005���N\r�]��?c1 �e��\u0000�J���\n>Q\t\u0000G�g���J�i����-��\\5��2��[�\u001f� P�E��!'kZ�KF��w�EN�A#c\u0006`N?�;���X�+���3#��jM�ߓȈ�2\u0017�+M�$�?I��\u0017d,�����Q��Ծz�ܩ\u0014&=�FE�I��x<�[����Kt�Z�I�\u000b��k�\u0004v��H���\u0006c��\u0013��k���Y�K \u001d�_�\n��\\d\u001f��X7쌣A&�\u0000(���̲��0\u00195\u0001/��0��L�ɲ��f84��\r1\u000e��6}l���\u0006\u000b�O���Y&tWr�^r\u001cJ�>��\u0019�]�-�䗲�ؗ�\u0006\u0002@qўcn\u001dC\"��AG\u001a��\u001b|'�rb �G��<��'M���v0հB|а�K�E�xe����\u001a�܆���#1�8(�-\u0017���\r��YM�G�\f�*�\u0006�S\u000b{B\u0000�Q\u0014�\u0018A�d�H�0�XHG�K�����V��\u0011��֬>l:n#�L��\u0018!�9Ψ\b�\\�D����NIJ�J'L�C�?\u0016�L;[��Iz3���`\u000b��\u001b��\u001c��\u0010Z��q��D!&�I��M�/���/�\u0012L��A\"�\u0000<����8������*9��M����.\u00123�'��í}�1��\u001c?�}N�o��8��*#k��tC�:�\u0007v\"�\u0002\u0003$J�+��2� ����%�\u001d�$�J���0������s�\f��J\u001e1�\u0014a��\u0019�\f�B�\b\"���\u0010E]\"�EOH\u0017i�\u001b۱�\u00122\u0014�+ij���|s\u0002�L\u0006��GK\u00057�ȓ\u00176%*�\u001bc�n\u0004\t�'\f9{�rh����������W�r0��+��3wn6)�(.\u001d����O�r )}��xl|ݓ;��\"1���S?��\u000b��X&����%-1�D��m���R�&�Q�9�h\u001frn;���M����m!3���\u0012;\"܏�A\u0014�\u0000P����a׺c�\u001e\u001d���*��,��\"��\u0000\u001fs\u001e0u,qΆ�*r�\u0016rJO�\t���U�9\b�$i�\r�Иa8�}۪��\u0011[W2c��!\u0001�?[1��\u0019����B��l��Άj���>\u0002�g�Ҿ�F�A�\u0011��y�\u0006�M�R\f��k�/\u0000�[�8v��3���\u0016\u0012N跇\u0010k�+�\u0011y��\u0001��*���=+\u0019v������V\r�� �\"z��V-\n�c�KO�W�r\u0013��D�\u0006��\t�zv\u00188\t���2w�<��vc��c��u�\t�\u001a�Œ#�\f�k\u0012��\u001f��\u0017n?��G��\u0014�\u0007 2�,���\u0011B�\u001cn���R\u0005�LQr@@&u%C\u0014\u0001�ڝN�?Bׂ��$_z\u0000�\u0017��U!�<�\u0017���`Ř�[A��k�\u0010�\u0016n\u0002V�A#H�j���(\u0003��r���\t!�\u0014%��\r�R-u���dnt~W+�쎣A\\�\u0000x���+py\u0001���\f\u0005O�eC�b��݂�\u0018n6���Q��,_XaF�(��Z��\u001f\u0013R\t����p��{\u0018\u0006�\u0019zOQ��뫈�\"6t�\u000ef�,���}�M\u000b_�^\u0010�_\u0007��|!��\u001b\u000f�\u000f�O„3\u0012�T\u0019�M6U�0�Ǥa�)\u0016�\f�k�\u001e�c�8n�t#q��Ow�Q\u0012�\n�MS�\u0007\u0011\u000b�澠�Q�Yk\r�\u000ei��\u000e�`��϶�/�u\u0007.��g�\u0017u�\u001e��M(\u0012��ÄQ�GNj�\u0011�\u000b!����^��0V�]�̌��ɩ�\u001f�1$;h=Җ~�g�\u0007N2\u000e�\u001d\u001aDsu}mƥ�ic�;�\u0001��D�4<7�c\u0000*��RD��\r�\u0013$�X5e�̭G�N�AP���ʛy�\u0003�\n��Y\u001f�.X���PP��\u0013���&����Os������A\u001b�\u0000����\u000e\u0018�\u0019\u0013�P�aD����_\t\u0017�\u0012�\u0017wt\u0002z�o��h����_��|�˻+|�i�\u0004aQ�;@^�L�H\u0017����[\"\u0010t\u001c$��Sg5\n��\u000f��\n�ڲ\u000b�\u0011��ZQ�G�p|o| \u0015i\u0005�E^��:\u0018沩�R�:{OZ�<~�����8�@\u0007��>(�\u001cc\b1L�mO�ԟ��!%C�@���`�S~31|���\u0007?�\u0011�\b�m������w��\u0017(���h��p�\\�Cz����R�����G��\u0011\u00128��[�\u001cm6|o��f�;\u000b��\u0011CytY6\u000f���}�]r�/�\b6Y\u0004X-&�&\u0014��%n=��%�d���$���AJ�\u0000���1��/�(8\u0004\u001d\u0013醸��b�)\u0014�.\u0018��Δ\u000fV��ش���\u0001�\u0013�U5�\b��wD���,\u001b��hN\u000f���ђ�\u0018\u0007�\u0003�ų�'?65����LA�Cԅ�(;�\u00125E+\u0017�@�=;W\u0005��O�Ll�\u0005qT�\u0006o�\u0003�$��Ȯ�\u0010���R���\u0003���P߬�9Zs��\"=3�l\u0014�p\u0014����@T%�)�x�\u0010��j���������|�S턬��;\u001aGy��_�;n�}!<�&�;�\u0005�\t\u0003���13��\u000f\u000bҡ�g\u000f�B,ը�Rzդ\u0002\"r\u00126&�K�\t�U%�'\u0003[�p�^�\u0013]]V)��\u0000���7�Oߒ��;��.��_��v�p��#���\u000e�f�I��j҃\u0016a�I&�\u0005\u0019h���V\u000e/9-�B\u000e�\u0000���}�\u001bz*�(d\u0000�\u0007�!âa�@\u0007��GG5�T:/��z�P<]��\u0006������\u001a)k(\u000b�G�FV�B\u0007՜4v�\b\u001f\u0018�\u0017\u001c�\u001aLO��v�\u0016�ROh\u0005����B�%)N���!\u0000����s�\u001e\u001ei܌s<х��~��\u0000=fg7�\u000f��u��\f��\u0012\u0013���=U�ԔF��V�O��\u0013�\"ˇŒY�/�+�\u0015��č���%��oK��U�c��\u001c���RuV,\u00128&\u0016��B��\u0016�!�Os�(�\u0019��\u001d|�14=�\u0011�*T��%.\u0003z��M^×[��T�d}�K\u0018��漆Ӓg䥝\u0005��hDh�ŗ�ŕh#b\u0011�\u001c�O0��w�����_JT�\u0014�3���3+\u000f����\u000f��\u0006�|���\u0011\u0002����0AW]\u0011N\f����y�:��,�\u001bX�����\u001d=�\u0016ݮ��dZ� \u0011\u000ekAH�Cӥ�HtY�+|�M\u0001�LAa\u000f\n�\\F�P���Dwx���F\u0014\u0016i\u0011� 1��\u0019�ͻ��%���У��x&.æ�;�����a\f�\r\u0012�\u001b���1\u000e�0���B\u000b(4:��|\u0010\n\u0018�;�[��\f��|��\u0015�b\u000f�S�xU�q\u001c�k�+\u001dV�\u0018�g\u0001q���>��$�&�\u00114\u0004@�@�\u0000Ȁ�M4)���֭�k��\u0010�\nSŋ����\u0012MD}�?\u0006�\u0002\u0019�4�\u001f~�*\u001e\u0003<���gQ��\u0019�*6�ɠ��yyW��q��{\u0013hV��N�c\u0012�\u0007�\t�Ի\u0003��%�\u000bf\u001c�`pv�m�hm�� ��դ@\u0014\u0006��&-�Ȭ�f�\u000f���������\u001d\u0010\t��������VS�\u0018~^9�\u0002\\*�rԚ&\u0014\u0015��Ǔ��# �����)��wT����b�ӄZT�A^�^�#�]�:=.:o*+}M�k�D�\u0013hJM[�%_�\u0003Y�\u0005��䰣@��\u0000܀�Mt�\u0018�<�f������f��ʙ8U�j�9Gh\u0005\u0013�ҬT��\r�A�����P�X9\u001d\u001a�F�׮�\u0006�C!�y�@8g\u0019�\b��(H��\u0013Ş@]Ɛ�7^�f9G[ܵ\u0002�z\u001b�:�8��r�03k��E����OZ5fF�U\u0015\\�HY\f\u0010�܀<��h%��\u0015��O\u001b\u0002��\\:=��%�H\u0018�G\u00150S��P��8����\u0000�]�̲`\b��eK�U<�!��V�j>M!OH��i\f�Ʌ�\u0002f�w�����Z\u0015Z\u0005�@�\u0000����b\u00048zv\nj�;Wz��T��\u000b�Y�`i���:�\u0001�#�&�|\u0011˕i\u0011I��������4F\u0001��N�\u0005�\u0002ܕ\"T˓1酮\u0011�Iƶ\r�-`K\u000f\u001c5�^�\u001d�մ�'\u001c\t*��>5�y}\"�\u000ft���8Ƞ26]����٩%�#�s=l��:#�>h\u0005l:+{#0���P���f~>y 7C�\u0013����\u000b�M��m\u0011&<\u000e�l���н奲\u0003B,\u0019\fm�\u0018\u001dEQS�EE\u0005Mۮa\u001f>�m\u0019Vpk1 ������R��՚+ӏ?j\u0005�\n���A�@�\u0001\u0004���b�E\rh\u0011�g�1\u0019��V\u0010�5�X�NE�R\b�¤�_�\r|f%\u0007U�U�Ѡ\u0014���i|O�Mq�R����3\u0019\u001e\u0000�\u0004�݅8�\u001c�C���k��@�_��ok�,/�o�����m��\u000e\n#�\u0000ɡ��i*߭�AE?y-��&�<[_\u0012.n˕��m<8\u000f�w��f�Z\u001a�g��?��eژ�\u0000ʎ'\u0007˂_R�\u0007�Ӭ�>K�tB�� s�7�B�e�Ş�S���C\u0002:���h�\u000e\"ɒ-��s\n\u0001䰝��\u0000,\u0004\u0002��K�V���A=�\u0001,���mha`'�\u0010$a�vP�IY�6w�}���\u00160W�m\u0006�2�Ը=����\u0016!�L��1\u0001Rn���q\u0016\u0013)+;� �s\u0011��-�܍\r�=��:{?ޣ��\u0002-f֜M�\u0013H3�\n\u00055�/�$�#�\u001c�Y\u0012l91�%\u0018b_4U>�Z��\u001b�1��!\u0006'��+\f��\u001cS�\u001cc]���I�P��+\u0015&�\u0014\u0003�\f����ĘJ��!�Q\u0013�y��\u0015)H(��\u0017��39��Ĥ�\u001b8a\u0004Ҕ����M����X�\u0002m�\u001c\u0019��NY\u001c'kj|N�څi{�1\\'���R\"�$�5^2�o�L���\u0002��\u0001�\"��H\u0014ӥ�[�y��C�\u0011��Z� �J}\u0017���/\u0014�̰\t&D�R0\u001e��q�������A��\u0001@���s����gQ��\\��iEM�{\u0005Eꛯ{���H�56�\u001e'�H�`\u0001tz�E\t\u0018�ʮ�#��5�$�*Mé�\u0001��”B���\u001f`�����VP^V�YY�4A�6��rW�)��\u0019����*��9\u001d���Y`�����ݵІ|�,~��,�lX���aC�~t}�C����\u0011�V!:�b��l��f��\u000bw\u0011>H�J�����)\u0015DМ��E����\r�$�yޭ�dd���5Q�����a��g�h�g\u0004\u0007@2[93�\u0005�W$���r�DM���a�������kͷ����*68ݵL���|\u000f�E\u0001\u000f�ɟ����LB?�g\bg�1#�\u0010Xn\u0011_��\r妼N���𭔑�I\b�\u0003���ى�\u0017�j���\u000e�J��\u0015\u00159�_\f\u000bW��zP��F��o\u0018���Y�spR��ƴsv�\u0016����\u000eć2�(�ڔۚ[\u0015������]���<�m\niN��('���%�G�>:�\u000f棦}�,��Q$_K�\u001b�����A��\u0001T���a���zr\u0014\u0018mDZP��G_c�O��g�z����a\b���?�AnK�C�z��\u0007X�g\u0003j:�i���U0�^�T9\u001f�q�/\u0017�q�1��\u001e=��ƀ�Fp����d�3�9�BVqo��\u0018�ͷ\u0015\u0005��T:�I�}lU�T�\u001c\u000f�Ԩ\u001d�&�_��\u001c맂�m:`b\u0003��Z���\u001b����\u0000� *={��\r\u0019y��T���w�?AH\u0015ܺ�����K3m�$h b�z\u001e�H�����0$�j�+���}��^Z������D\u0017\u0001rM���D\\F\u0017\u0000$�,�M�\u0006��\u0010�9&�A��S��\u0012�uj�_�\u001d�\u001f��\u001fa)q��#@^�.��*\u001e�Ǒ0B\u0007cDD2�a�\u000e&\u00157h�/�*�\r��yUFaE?mL����+\u0000K\u001et\u0018�A�3\u0006&\u0016�O���(\u0012�Wr�N\r�g�8�\r�_��c]cQ�ؼEW,+����/�#Ӧ�iK�7Am��Ae�\u0001h���mr\u001e��\u0011z\u001c\u001dY\u0014<��a\u0003\u0019\u0010#�N���e&��H?`\u001cQ�Dpe`��o0��\u001e\u0010��0�s*�\u001b\f��C�N\u001d�\u0001�b1�Bi3A@?�`Cf��_\u001b�V��+�\u000b��k5\n^\u0013?1Tʹ����\"�l�l��fm�\u0006��՝�řǀ;\n{�D����6���#�_뿄.Y\u0015�U\u00034�3�s��(\u001fE\u0014]iR�s�6�ђ�\u001cZg����4�\u00145,@�6pO��S����\u001c�0�F��s<\u0018`R�E�q�\u000e��KJ�A�f]e��F��~��ß˷�\u0019�'g��Yy�\u001b�U�\u001f\u0002���s{bZ��h��9�\u000eJ�-1rz5\u001a�^\u0011\r�\u0006\u0012��(�n��xo��\u000e�?3\r�F�DW���r��j \r���U����_�G]O�p�\u0006�s;bٿi�\u0007�\u001e�T\u0014I��AS�\u0001|��\u0018$|�,�_8X����0�7^O}�;�3_m\u0014�ߵ�[3�IO�E���\u0005q1\b�I9Br7tu>m��]���fż\u0006�mJ�}aY\u00163\u0019�\n����\"\f\u0010�V�\"Tc�2��kHet��Qx���\u0010�1k\"@(i��(�)�9���8*\u000170w��\u0015��\u0002Zm*ש6�`��1n\u001e^l��Fi�5�sT����\u0012Q�s\n��oAk\u0007w�F[�\u0010nT�܇�N����EXߟ\u0015� �9����GkC�<0(/hdԀ�,x?ѿ0��\u0015\u000fW86Se\fQ�В*��ί\tߋ�\\��t=,�JT� I��D�\u001d1ܟo��=�zD\u0001�i��f\u0017\u001f�ٞG���1\fV��\u0016�\\���K�$)�ғMk��?_\u0003Q��~��\u00119�]�Y~9\u0018��AA�\u0001����\u0004�v�7��Hum*��O{��n\u000e�-\u0002����\u0002��-'t�[Z}���L�����셽�(h�+J}\u0013>b�V=GN�%�\u000e�\u001f\u001f�[��}8�c��\u001b��7n�W\u0014:a�X\u0014X��\u0003�D�Q��*y�^���qF� �����d\f\u0002������-T�\n��R@a�P�K��OQ�u�A\u001fd\"�\u001ft����\u0000\u000b��B�4ƼfR�t�=h^�\u0018e�\u0002P��5�΄K��4���}�\u0000Mg�\u0014��wCH/�oQ���A�*�\u0014�.�8&����U\u001f�����esU�i�s�TC��0\u001b=��i\u0012�fj��pR'�\u0001Ԭ\t��E\u0018Ų�jϣ�6g2��g��.2�<��e���\u000f\u0019N\u0016�)��iP.\u0011hm9�B\u0018�\u0001���}bc\u0001\u001bx\u001c�}\u0015&�4h��I}�\b� 1YР%\u0007�g�3�\u0019�4\u0006\u0015��\u0013�ۿ��ʙ\u0002\u0005Q�\u001b|�\u001f�\u0015�\"úXI\u0013K3F�m^�f��@�\u0017�I?�f�è�aY�[���F�)�5S\u0006r�d��\rH����h4aw�\b�J\tց�\u0013d[���G�\u001e�����L�8�ʱ+Q��L��*t\r)\\�d�R\u0002.qt�y�7\u0012T��P2��\u0018�\u001ee3\u0002��\u001d6\r\u0012�z���\u0012r'�&ⱟ*\u0019�C�\\r\u0010_��`��\u001c\u0000��z�TSp\u000e� Fqٱ\u0015��\u000eR:��J���\u001f�9u�s@a <�ڰ\u0003>&!^�=�dzI�L{C_�-e�ihb\u0013/w�u�r\u0010��y\u0005[����\br�VpC��B�V��sQ�%�ۢe�%w\u0013��{^�\u0007�3E_r��\u0019C~�\u001b�`R�Ψ��}�_\u0019��$(�p�\u0002�}����ނ�\f\u001f��&�\bL$�Hc�o�\u0015�\u0018~K�k��^�;\u001c��~�\u000eVx�qg�^��B�\"N\u0010\u0004�[�tE(�\u0007/w�2-��\"\u0002뷷\u000fPWs�Ӯ��Q�f��m�\u001c�3b\u0015P{n\u0003V9�)M\u001c��������ۺD��/&���\u0000�SA!\u0006#&�����7Z���\u0013}(��S�-&�.\u000f;����A+�\u0001���M\u001djp\u0014�\fF��6'�\u001c�����\u001b�)h���(7\u0014��uX\u0015]��Hg<�'W�\u001f�iûX\u0003���x�)5�,8��(-\u001c�:a�!s\u001c-�\\�-���\f�x�I�����$�&J\u0016x�2���WǍ�\u0006�����d4��\f���q'x\u0005\\)�d��\f��ST�qjE\u001b~[%�$Tuw\u0017\u0016C\rvC�u�G�\u000bQ�\u0016L���\u0011Cl�G�N&0jM�k]hhT�|C��$�p\u000f�\t���o���\u0012h��.\u0013Yװ��=*����Y�^�\n\"~^?�\u0014\u0003\u0014\u0010�IT��\u0016{��x5cKO�ܬ�M��p�l.\u0004:5\u0019�7�\u0011i\u0005W8�\u0014\u001f_��&\u0015$��m�˟9q =���A\u0013�\u0001̀��\fl_���Ϳ\u001cƪ�8h!_?�v�~�7��\t���\u0001�ɂ��d�|��D�i��>tv��\u0002\bx�h�)>�Q��`b\n\u001a�~݇����h�o�����(�@2��kLWf\u0015���g��?GO\u0002\u0002c��^\u0003~\u0016��)�P��M\u001fv ��^\u001eb��?0�\u0012d�\u0001����\u0006HA�\u001c\u0014\u0016�;W]���ܫ��\u0007\u001b�k��\u0015D{^�r��ʰy���;�~~\r\u001d����|�\u001du�U�Z\u001a\u0014GHu�a��ɡ�F����Y�\u0004�V��N\u000f\\�\u0010�B����v����d�޾��|o�K�\n�V\u0007��\u0000\u0001g�_\u0005�\u0018�V��AQ�\u0001���M1�����\u0016�܂\"��{-��\n]\u0016\b朥��YR�*�^S�P���\u0013\r8\rX��\u0017�Sh��u���~1D�Q��\u001bv�\u0013��\u001b��\u0017�2?\u0006\"J<+��6�\u0002�6t�w�<�ܡP�\u001ej\r3�\\�7\u0002�\u0004\fg�\rQ���(Z\u0016�8�ך�^�;>T-2\u0013��\u0002ٓ�\f^_�ɷ\u0001�`�\u001dE�LE\u0000\u0014�p �1����ܼ�W`��_ӹ�0&6K�^x�\u001eI�\n5�9��r^��}\bѻQ��>\b��X�[\u001d(��\u001b\u0013�Ô6f\u0004k�\u0007�Nš\u0016\f��߽7��2/X��\u0002��PB�\u0010\u0010�f]\u0005�_\u000b��\u0013�\b�&k]��~\u0014BOJ8\u0017���bռ���\u0017p\u001a���$�A$�\u0001���\u001dm���3F\u0012Y�~�7��\u000f\u0017v~\u0001O�\u0011e\n\u0004n�̨���\"莬�z\u000f=��#�\u001cV�Hj(*.\t��O�\u001cА�\u0017ut����\u0003\u000fp\"���\u0017$����\u0010\u0002_����QGҍr�\u0010�)��y�U��AȚ�=&:L8����\u0013�72)\r�\u0012t��-�\nI�>?�]ߌp����?=��E nUx\u0017�r�W�\u0014��$t����@�?���K�\u0016[�F媸�\u0018��kN�..�(���gp,����5��r���Ev\u0000��Οi4(2�ݵ׈�%�\u001d��M�F�\u001aɥc�\u001b)i�{7�_m\u0003\\̍pr�ב6ӊ0M�ߪ�C�@���q\u0011\u001c�\u001e�i��2��؁j�\u0010\u0006��A\u0006�\u0002\u001c���\u000e\u001b�\u0007h(ݳa��/�r\r�\u0002?�[����?s�������\u0001�b�\"�z�gY�l��e,����\u0015�OCMf������\n\u00054��Fȣݘ���\u001c�I̡���\u0000�\u001a\u0000�\u0005^a\u0019dt��0.��\u0017��\u0010gݡ\b��\u0010�\u000b�3�\"�3ZW\u0010�� ��\f�:}u{\u001bu\b{#\u0007�~E���\u001f�Un_��\u0016C:�Kĭ\u0018����'K��I��7Ru�ߠ;��ŀiQ'Q�\u0019=P�?\u0001�\u0003�h�~P^�\\Li}L��ӏ�H\u000b�w�\u001f\u0015\u0017T\u0010ڳ\t[&���Uޑ��w\fk\u0003I��i���A?�\u00020��L��PB*�E�\u001a��0��\u001b�hc\t��u���T&Av�>���:\f���3�.~\u001c���.��3�~!J\u0013�E{�#��<�9c�T�S���V �K\u0005a�nCj\u0016���(\u001b��ek0��\u001aBkE0:f��\u001f�ű��;��\t&\u0006\u000f�Ms�~��b4�\u0016�5AO@�;�?��VV\"��O\u00103�\u000e\nL\u0016��T�V�H��\u0004���p`�\\^qz�\u0019�7�\u001a�n�ڇ\u001d��xd�����\b��?�~d��q\u0010AOl\u0004\u000f,K��\t�\u001b\n�\u0001\u0010\u001d\u0015�v�o�\u0006�L\u0016��eܐG\r�`�3n�]l\u000fSb��L\u0003�Dk \u0010Ԩ��\u0018&�\\Q�C��D'�yӁ��W[.\u00125۟3!�L*��d��ґ\u001a\t\u0011�\f\u0011�ڣA��\u0002D����9�(�\n_��u\u0012����v\u0007\u001b�΁Y�����դ^8���\u00196���Zݵ�]��jN�Mع�7�Q��\u0002� ��\"�E��j�����r�\\z_\u00007\u0013�����8�:�\u0003��qÎU\u000e\u0015���@�\u001a�KL903��\u0016��R��4�}�\u001a\u0007�)DL���\u001e\\\u0000Q$�j\u0001EQ�p�\u001d\u0000��+���\u0014,�P�\u0017\u0005ܦ��2����X��Z3���\u001f�>9?��\u0014$E6�x�\"�\u000e�\u0003\\�-\u0001(I��k2�a�o�\u0017+jC��mK |��f2�[s7<ֈ��c�_�I��Y���̷t���<�?Օ0C�\f��e~š~��\u000bm�;1�wg&\u001b\u0018|�b�\u0006�w�q8�WL�n�\u0005Z\u0003'\f3\bB�(H�i\u0011��v�̞\u0017>�T��TT��x�]:l�'}燓\u0002�\u001d�%-�G�Sr�<鞸>�1^W�\u0019�3$X�}��\u0010�+�0\u0018�Ac`T8!�Qs��3=���\u0002Y\ta���r\u0012W�Xp��\u001a����\t�g-V@�y\u0018\u0015u$QX�+�� �\u0012��\t����&�\u0013{1=��.D��\u001eTQD�\"�{�ݔ���=5�Ŋo҉�B�S��E�Qy\u001aR�����l���C�b��q\u0005\u001ahy�1SE�s��ut]%�\b���3��\b$�\u0017>\u0003n\u0018\u000f�ŕ�1w����#\u0003�\u0001B����>\u0017Y8�\u0000\tX\u001d�\u000f�0&S����6<�Rw\u0000̇���\u0010\u0010c��\u001f#Q�\\�A\u001e�\u0002l���a���X��a�吟w\u0002��\u0018)��UT�@P�]0TS�\u001c� �aﻊ�N���K��\u0015vT?lH\f��i��6 �J�\u0003�\u00194$ќ6��=d��]����\u0007?�\u0000�~�8��5^'7\u001d�e|\u001e\u001a�H\n#D\u001e����4�f�\u0015b�\u000bP=����Wb��c�k�\u0003���F�B\t\\C���0wr�>�\u0017@\tT`V�-��\u0002��dA\u0016\u0014'<\b�v�{���븧b}C�˝򳪨[��R�6��1�\u0014[�잷t�K�тB\t&�\u0017 ڢ��bù\u0004�At��VG��f<�䕪z�\u0000K�\u000em/�y���g��G\u0006��@,��|\u0006:Ӏ�\u001f��,��\u0005\u0004�\tpg\u0002�;RR�\u0007���dn���j'u�+�q8\u001d<Ɇ��\u001c0��\u0017��I�$�ǃC@\r|Q�����\u0014(\u000b)\f4�Ru�&��1\t�\u0003�-���9���;������ǐse����\u0000��\r��SK΀��{Mظ{�k�sΩ�sX�f\u0003LB�\u0015��n<���FX\u000b\u0017\u0001�|o\\���e����Ҿ�e�7��+�\u0002K�d����٣A&�\u0002��L�x1����e\u0003r���\\�\u0011\u000f���Zp>{�b���BA\u0018�7\u0012g\u0014�!�p��^�\u0005\u0006�X9�lO�L���%�Cr�\t�\u000b)\f*�\u001b�cԠ\b�W\u0007�\u000bl��osQ�5�p:�e�\u000b�Å�ɀ�6��GB\u0007�P�;B��\"\u0003.y��\b\u0005U��\u001eR!���>���\u001f�N�M��\r\u001a�%Q����^Y\u0000\t���\u001b���\u001c���Vu k�E\u0012�\u0015\u000b2H�t�\u0003�Bݩ��\u0018읋\r�gi\u0011����������W�m=�O��\u0011�Wbf�Ud��w\n�R��[�)��2�\u001f��t�]�uf\u0011\u001f����t\u0012\u0018���=T�6<�1\u001e�2�F?�r�h\b���A\u0012�\u0002������R�fn\u000f��D[�\"�ޡ�葜��@\u0018�j6X�v��叮�)��(;����\u001e�i$r�l\u0003��\"�X��z�'\u000e�J�b`'��0Q�p�4e���G�\u000bb�E����}�3�$�\u0005�%���\u0000߅�t�[�i�\u00111W�4�I�G}:��*\u0013|�D����\f\n1D�\t�ok�5��&��4��o\f�ξjd�1:\t��(�0�\u0018��:(�D�±�C2��Xq�4@�I�J��6��t�3涷���=5J8݁]1$��TDQ�~}R�B-���F\u0011\u0005G��μ芾Q�֦�B^�k����0*��A\u0000�\u0003\f��ۺ�@�;մU\bFn\\v\u001d^w��ʵ\u0013�hM�\n�W�z��>Śc�\\W�,+Z[ ���r�&�G\u0005��eI��\u0017^�X2(�A�ֈ2���L��_+�h\b�\u001f��)�\u001cO�y���\u001erXdž��Yt@c`\u001d\u0018&Z�p��[��1�\u001bo�IWUmq3\u0013�\u0013��\u0002A�iv2Sԝ\u000e\u0016Ū�s\u0013��f\u0014���i�&Q\u0011X��Q�2\u0012!�\u000b�|�;b,0����*�\u0007hP\u0002\b�>Z�\u001f��Rq��[�T'����$\u000e�mm?~k���IJ�������@Q�zmI�y\"��A\u000f�\u0003 ����rD\\`g\u0015��ͯ>��\u000b��@��)�d�1\u0019��\u001d�3{W/\"�����2D\u0011f�p\u000f%�}��'w\u001e˂,e��\u001a�\u001b�����:�Z����w\f��l�D�\u0006_���ά�7,���B��52b\u0002�h\u0001c\u0016��#2Je�k1�]/䞁LES���\u0000Ed�/���\b(8=\u0018�t\u0017�?�o\"\u0015���}[�V�$�p;\u001d�Ɠ��Q�o�\u0006p��\u00018Y`�]\r�.�;J�G̃?�\nf���˗��b&;w��.�\u001e3�\u0002 E]>\u0017\u0002��)'9I�i��S\u0013��\u0014�\n|z\u0017`j�*H\u0004���\u0012��:���A\u0013�\u00034���[\"���L1!N;�Y�\u001c�����_%w&�/F��Z�����xM�\u000f\b�g\\�`9B�\u0019��aY\u001bP��s�vc\u0000�d�S�e�\f5��\f�o/��\u0000&bk���B���\rT�d�t38�\u0017%$���q���4��#K\nhd�CPm:ի�\u001eV�&{�\u000eMv׾{4\u0015)���\u0004\u0006-�R{&.\u0016��=��&\f���ޖL�g\u001b��\u0013�+�.O(���\u000f>��Y6���mGb\u001c\u0000���_4���J�\r)��\u0018'`&3>�\u0011`�\u0019�\"��&\n��Ѓs\u000e�)�Fd\u0015�9%L)�X����k���ui�N�\u0017]�,������A\u001b�\u0003H���c���1{�0�+\b���P^�98��/9�\u0003\u0002��J���X9O\t�\u000f��kF\n\u0017vW�7���j�!�-\u0014ܣ\u0019.�*�\u000b���y��Am�\\Yl��[H�u�����ɢ\u000f�{\\L�8� FtƸܮ��a�\u000fEΩ�k�r+�3�˶��F\u0001\t\u0001X��\"%���so��eɹ7��w�E\u001d\u001a��\u0015~lAݹ��/��\u0017���@�l],>˲�,'�`�\u0017[l[jׅ+���Zr�l���\u0010W\f\u0011��e��\u0011�\u0010\u0013U��(\u0011e�\u0000�'\u0012���Q��\u0010�\u0000�iÄ܋�8�q!�i�h\u0017Y��]�$��\u0019����^�m£A<�\u0003\\��M+\u0015o�@ݸ!T%��(y^\u001e{9\u0011�Z���}1c���i��\u0012&��O~�����x$�\r��0Q��\u001619s�\u000f\u0006\u001f��P��t\u001f�E�L��j'��Οࠥ�|�9���\u001d\u0017P\u0003��\u0014&��\u001b>��G�=�#\u000e\\}�4��\u0016���n�13SX\u001e\f�\t +��\t�\u000e8PH�/�h\u0017\u0005d�j,%ҙg%\r���s�\u0015�o.�\fM�\u0015’�s\u0014�\n���z,~��\"\fN��9\u0011DS���\u0005�kC�x��'���RmMYpi�����Y�Psh\b�W�\u0012Ut�\u0005m��;��Oܺ2�t�#O�\u000f-�5���6�M�\t�0�P\u0017�\u000f(���H���\u0013�\u000e��WM�drp��\u0012ԟ�=��P\u001e8sk��\u0012�A��\u0003p���lq`�W���\u0006B{�\u0015����\u001fj˲\u001am%���;\u000f��E�=!Smg-��SV�����8#T\u001a*�q\u0003�\u001c\u0017F�;�\u0000���*��b��![y��\f�gWt�}%q8/��K���d4\u0013�e�E���y��^k�1!oMO>��$c\u0017Z����x��huu�]��\u0002e�\u00026ZO\u0014�vaU Y}\u000f\u0007�88�Hj8\u0019�D�\u0002%�E��j���0���\u00144f1c�U���SF_BO���f\u0002�\u0005w:�2y��\u0014^܅|_j��\tK\u001e�\\A�&>\u000e{�k&G�$�((\u000b���d/���X�58���m�D�\u001d��\u001f�B�y�ð���h�7f�:[�'>�|�+\u0012��\u0011<��0�F\u0019��f�\r\u001e���;�WE9��� \u00061\u0004@�/���B~\u0001q�W��\t��ڜ\u0003���|�\u0018�VL���9:%uj�}�$p-e\u000ff|���\b$�P�����#`����va���\u0002\u0017�!���2\u0003o�䈚Sk�X\nHO�t�m�\u0002�#f�dn�����.�\u0011#;?JC�AI�\u0003�����EWtN1�^B�W'�\u001dέ�,�;+�5�U�\u0002�2�J��b����J����l�S45�Tɿ�q���˿b�;w����Q奦b5G�ynI�\u000e\u0002��q5&}\f\u001fR�R+�~p��a�>��}�-ݙ���9e\u001f��\u0016ܴii��PP4\u0007�A\u001c\tq�Q��.��>\u0007#�wzi�)���S��]nI��W�\r�aP��\u0006\u0007�U�IF�e~�h�\u001el9G��sL&�/�C7�Y�9p{ ^\f/᱌�Q<\u001b)��\u0016��:ѡ�\u001d��|�\u0017d4�1\u0002�ُ<\u001a�\u0010�Ő�\u0001\u0012@�P\"\u000b������eЁ���m�e\u0013��a�˯\u0001\bGh�\u0013vgo��r��y��^^`�W/�ۥ�ɰ\u0004�\u0005�x�1�\u0007;\b\u001f\"�A�A4�\u0003����b\fE$Lj;��X �\u000eq�jGm>��\r'q\r��Z��cYoH��3\u0000N�\u0010�x\u0003{����B�A<�\u0003Ԁ��a�UT\\\u001c\u0016�k\u001f��.ʅ��dl\f������=�N5�PA\re�\u0000\u0000�\b���!�[����\u0017�X~�\u0011�x����\"\"$\r�c���`�i�3��\u0004o�S�\u0013�\u001f�^&\t�b���Z���9�1\u001e�Zڻ�\u0017q�n�\u0010jK���\t�˘ϙ��wd+\"2E�<L+/\u001eX�v�/��:�q�n����F�@.A����\u0000A���*`\u000eHD�J�*wF��\r�r5�\u0005�g+�\u000fr�P�\r���#Vm�g��v��\u001f\u0013m7�V����P�գ��^“�B�AG�\u0003���b\fh���\u001d��|��7E�y�Ï��I�,����I��6�\u0004i'�Tw�g���h\u0003!bF\f*��e�Z$ߏqW�F�\u001b�N���\u0012�,�\u0018`��|�X�UB����*\u0004��x�|�K#\u0010��\u0003㢺3R�$U\u0016����\u0002��Zs��0�с��ـ�R�l-3�|0\u0013�)�#���`��G\u001e�F%?� 3��pO�I�P\tW\r\u0005��DcK�l)�#�\f�Wd=®�7�q�\u0003\u001a�5�\u0002\u0005G{Z�\u0010<\u0004۝vmt��$t����z\t\u0019�U�\u0000\nY\u00117c����q��\u0017�??h�\u0013Z>�/��Rꛐ�\u0003}�<�uiѱ�\u0003A[�eJ��'%f�r/���`5�v\u0018׮z�q�͖\u0010�\u000fުE9(,/�_�\\���ҵC�AB�\u0003����c�����\u0019M/G�諞s���\u0012���HZ���\u0018�\u001dr\n��\u0019lT�{\u0013F7~ɫ�G\"�\u001a��c!�)T@H\u000e[�wջð��)S���\u0013�ZS>��AIk֓z!s��}/+\b�<�6\u000f\u0015jRq���'$��b@�EF��4��\u0012C\u0015�P\u001dϸ�\u0002\u001b�͍W&�;\u001e��YA\u0010�\r\u0004/�@W1!Ֆb���k�!�YC�q�em!��y�A)��i���K��#@�����`$�J�\u00047m08\u0014(b�M�x��8��g\u0006� C�&gO�\u001d���x�)-�$��\f\t�\u000eƶkj!������\u0014��Z�_”�����t\u0005�8��8��)�<������|!�]C�\u001dY\u001a��4�\u000b\\��g���\n�ãA-�\u0004\u0010���c�-�\"�r^u���Ș���\u001d.\n�'�:���\"@\u0012��ʇI�=T�0k�M��$�\b�y�yR\t8/\f��>D!�cES\u0005��6��-�:xv~�3�K�\u0018W\u001eW\u0018-�O\u001aKo�(��^2,B�dI��2X���Y�+�W�\u0015�\u001e\u0005e��\u0004���ZB���\u001dK���\u0006���8|�A*��Z�sr\u001d@4$�V��G\u001d�ᒒ>6���2J�bzƩ��\u0014\u0006�\u0013ݲ��\u000b��e�� ��7=\u0002���7��aV\u0001!��z}��;��飐ʏ�\\6�\u001bqrdb��S�ҏ3�\u0010�L\u0014\\)����8�ڿ�7&�}�\u001e~���.�X\u001a���J2�j\u0003�ݰ���⛵ãAB�\u0004$��L�8\u000bJy>\u0014��\u0019q\\����Y�L��A�\u00061�b�ǐ�@�.T�1\u000f/\u0018�����\u0012�4J\ru�M\u0018\u0019\t./�w��t;D\u001f\u0011Q�QNJ^L*\u000f�\n����%�3=.\u0006�_�\u001d>���@\u000b7E�$��\u0012�@I_u\u0010}m��h�\u001f��޲/�œ#L���d�\ni׫f��]�\fHW�tR��\u0007�y�ܳ�����9�v\u0010\r�]08\u001a��?=A��[�g��a0�M#�\u0016+5�jF��o.p}筬(u�T�\u0000_����첗S\u0014\u0003|\u0002\u000bw�/\f\u0004\u0007�DU\u0000Q\u001c�K됽k\u0017ʰu:� �l�����L�\u0017�\u0019�\u0010\\��gW���\"\u00051����\u0013v�w\u0003����D��~�@� H�8\u0019�\u001f��VңAA�\u00048��L�@�J7Ms�\u000b�\u0005�۔�Ւ��w\u0019\u001c������a_M6[\n�\u001f;�3!/1��\u0019R\u0002�<2ޚ�k)h;~\u0006_[��rh\u001aպm\u0019��R�\f�P��$6?\u000e\u0002G�-%�:'_�+I�\u0004;\u0017\u0017\u0014�.�GvyJe2]�3��r[m�R3%����C�ʌM�U�,�\u0006DΞ���\u0006p��\u000f_���F1���\"cȈ&�&�w3�4�\u000f�f�djj�\u0000����!5\u000f\u0003�VW�ܜs�2ނ\u0006��\u0011\u0015�]�1�W�\u0017Q�O�`R��m����m�����4?1\"��\u0004���-V\u001eC��t\u000eURPfnvN\\38��K��^�&�c٪º�[\ri\u0016�\u0006z|��R/�8�\u000fw\u0001��\u0016|��s��\u0015/�p#? �p�\u001b�A=�\u0004L��L�B��H\u0011L���9;���������qQ4�+�T�k\u0002���\u0014�Y�H#\u0010�5�,�\u0012��^���\u0013d��\u0017�At�~�\u001a��l�i�yY�i�\u0012\u0002�.�nnHt\fX\t\u001b��>�P�5Ӛ\f\u001eV�}�AU�b��h\u001b�����\u00167cSִ��j�x�A\u0013s�7�ce�\u000f\u0002e��\\�\u0001Ex�,��,w�5W�����\u0001�\u000e��\u0012K�^e�\u001e\u0013o�\u001f�g�@�u���\u0006A�K��M�@\u001f\bT%��\u0005�/\u0000�ڦ\u0005�['��&���{\n\u0004��\u0001Njf\u0005՚\nP��&E�S�\nF�d�\u001b�c��R�Al�\u0004`���c�5\u001e��ams�KA���H��p(\nHo�������]ic\u0014�>�&1j(��9���H1������P����^����\t\u0019�qe���&S������w\u0016�b\b\u000b��/A\u001f�r�\b�6�!�\u0007�A�v�������%5��)�\u000f�\t�Ő��\u0000�$2Vl�2+�\u001d�_����Ƥ\n\u0017��\u0013�*�ar�1\u000ey5̠�7\b~޻T��D\u001a��S\u0017C�^AL�_1/\f�<��$_�wƜ�\u0018?Y�� ��}\u001e�E�\u001f�����G.����b����\u0015�a\u0004�\u001aB��G*׹97�\u001e�$��گ���C��\u0007��$5���E�S*���\u0006�\u0017���c�\u001b���֯�\t\u0002S}�+�&\u000b@��wՃ��\u0003����{6�'|�\r���7���T�ZfS\u001c7<�۬^���V��\u000f�G�F/��\u0001#�I�AW�\u0004t��L���Z\t�^���:qzc\u001a�\f��\u001f<�oEP��/�.\u001a�=��9+\u0010\u0004vb[��\u0014�17��\u001dY)�F�b(�Y�O��~�'\\+���AP�Hu�o׹�0;2|�t݌��<��]|���1�Ϋ��Fb�(-D-J�ֆ֎�d��tV�ht��\u00032�~���e��\n\u0001�&��/�- ���V��\u000f#\u001a��e\r��՛�i�ԍ�\u0003n^��7Y�\u0007\u001b�ݭ�.�c�Ⱦ��s\u0002\u0011U�\u0011C\u0005�\u0004���jk@F�@�N\fӗ��ξ���ߘ���ڑ�:-�UF\fu@���I�M��\u001f5-��Dd��\u0002@7�\"��\t\u0019ť�M.I�\u001f�,�d�C��Ͳ'�\u000e\u0010�\u001f\u001f$c�\u0018��\\�(^�\u0018z�h\b8�(t�\u000f���un��F��[B�O��A=�\u0004�����U\u0012�\t;}\u0007N���RU3;J��}�g�Q��\u0006��i\u00006�\u001f}\u001a$w\u00040?\u001bR����D@蝹xlN\t\u001am.�Y\r��\u000b�O��>�OEr(G5-:M\r-�h\u0016��Q갚����&��;�R>w�a\"��p%����W׾^�����}��X��A�/�7�V[�u�l���\u001a�\u001bO�s��%s�d�X+�����$AWU,7���L�X�8\u000b��m�7�;w��\bO�ѣs\u0018\u001f��=�\u0007�\b���.Tߗ\u0005���k�~A��@)\u001e\u000e�\nj��\u0007m�i��c� A�s�\u0013��nFw\u0019��j���Ȑ�\b�$0_�ֽ\u0001\u0015�\u000eS�\u0016Eq�p\f�f(��u2C\r�Ip����+ƴ\u0016��e�A!�\u0004�����\"y�E���0QH9\r+��-ێ\u000b\u0017{���A����K싦o\"Z\u0001�c��Z�{�4��\u000b>�\u0003�x��){-?*�e��ƍ�b\u0010\u001d�_�D$\u0002�z��B4��♊\u0004ϥ��2\\�y�!���F:��h�\rf!�Mx�hj���(H���j��\\�an稸6���o�l==@���Cj\u001bU\u0019�\"�6��Ρ-\rA����Z׳\u0007؅��_EL\u000e̓\\2fh\n?��t�9l�gv\"�9#�Ҽb��3�9�3�UE��I\u0000õ���>�O�aI�\u0005X\u000b�����k5�\u0011\u0005\"\u0012\u0000r��7\u000bx�H�\t�˥�rVi��6\u0006F�i��h�_���A.�\u0004���L�<���+� \u0007xX�|?���B�\u001e\"��4�)Y��b�ә�6<�z!�2~۶5������D+צ�#�6c�>�#g��\b�����!\u001b\u0010��ΐ;ò#�\u0015u��i(��\u001e(��T\u0016ꤤ�,p\u001b�ֺ'G\u0003��\u0014��k0h5�2y���\\�C�4��Ni�@M�GR6��Œ�]�\u0010��Hy�x\u000b�/Z�W�\u0001ө\u0000&\u0013�\u0017��QA\tgX�x\u0019�L˷��D)^F:r�9��c�\t�7ȕQ� �9\u0011�m\u0004XU�1?�4!���h�M��\u0006�ٙЌTwc�\f[z�\u0006_�ސ��-$�gǾ�\u001d�\\\u0015#� 9\u0019���S}��\u0000?o�r�?\u001e`@俖d�A#�\u0004Ā�ۻW�û\np^+(g��Ʈj\u001c��\u0005��\u000eMu\u001a���\u0006@\u0003\u0003\u0011\u0019�i\u000bѸU&,tPjB\u001b\b�d��E���\u0012��\n��\u00173W$�\u0019���=;b�����N\u0012J�\u001c${��{�ѣQP��H\u001f\u001f�*9���\u0014Ҁ�eƙ�5��$Ơ\u0000�i\u001a����6���\bj\u0003���\u000f'��\u000f@�}p�+��3܃$U\t�\u0017�;\r����������F�\u0001�d�-p��A0�\u0004؀��9���|:\u001awOh\u0011;E\u000eN/��X|�\u0013\u0003\u0012������\u0001�si��ua�>\u0012Ɲ��\u0003�m\u0012t}�M���X�]\u000e�\u0006�A�S}{�_r�p�\u0006Y��td)�8g�\u0018|*��*\u000fw\b�(\u0001�(�\u0003��\u000f�&�\"���7�6�\u0010\u0017��\u0019�)�\t]U\u001a�\u000e�~ i<@\u0007c�xts��L��� ��ɺ�{i\u000b�\u0018�7�����2I��1Wo�n�< \u0016��m��p�4-���j��t\u0002�\u001f��E�YXz(��%\u001bPY4�-|���\b\u001e�2���ۧ��\u0011#�\u001fD\u001c�i̼B�H\\�l`?�^vwjQ�\u0005�/\u0014�qCw�`\u0012|>4��K�o���\u0012p���\u0006��ΣA��\u0004��۷ql�\u0010�z\u000e�ԕ��w\u001f��0�e\u001c~��/\\4�I�����\u001c����=��\u001e�H��[�.�O�%��krŽw�&\u0000�\u0005\u0013�{�\u001b�8W�\u0002���;<���]�h�'G�iFm\u001a\u0004!Ɉ\u0015#{'\u001e\u0005�\u0007���曆p�[�\r�a`����\u0001�˦x�]�\u0015_��������aj\u0001r�K\f�\u0014-�� \u0004��ۣ�\n�\u001e�qc��+/\u0012\u001b\u001c�\u0019�T��+ z~�P*\u0005%��bk�kЬ�pA|�B�\r��R��G�?]��0���^�͈��������\u001e�����>3\u001fN�3�]�K���O1ND��\f�b��US���%)��\\�u@g�uz�t�d�?\u001c�\u0015p�\u001c��Էxn.�4�V�\b��w�����\u001f�{\u000e\u001b��G\b����X�E�� \u00199S�i�#�\u0000�ܥ�\\l��;T�1��B\u0013(Upj7�|PvJI���X\u0017�G\u0000�̠�P��;��&��XY�*\u0006y���H�φ�\u0019�E���\u0014���I����AD�\u0005\u0000��۸�9�8L��A���\u0010����D~��\u0019�z(�F\\̯��)v$��a�5%\u0018�:�\u0015GX��P�\t\u0011m.R�=p\u0005W\u001e)��+k��\u0015M�E�\u0017�ٛ7�\u0003�\u0000�\u0014���a\ts<�*<︐y��]\u000fO�B!GF+|�\u0016u�� a��.�ǟ\r?Io�\u0010�ݎM�e��\u0017��-�A�+tf\u000e�8Wk��ά�ْ�� \u001as\\1p��m�)�W��\u001cGp��2�Аc�~\u0004��_�\u001d��!,Z��%n��7$AJ��\n�\u0002�G��(!�~?\u001eE��U�>R\u000e`�-c�eV�\"�\t\u0015c@LKki\u0016�t P� �a&-7���8�\u001c��xm���ψn�z����\u0010\u0005�[�� t�_g�d\fs�@��w�(��]\u0004~�\u0015�\u001e �~c��\u0012�0\"p2ݭӡR��d<˷�-���j\bpi��~���AR�\u0005(�����)��^�\u0011\u000btE���\u0018�P��-(gQd��t\u0012�tR\u00016�3r����\bV�\u001e��7\u0018.\u0018�/ݞ����(\u0007���^\u000f�OϜPV��Џ*\u0012����i3���u�\u0001J?s�Ǚ�5;�0�\u0015.�3��J�|��,�4�S&���O�u�0X�po- �\u001f����f�t6C%.\u001e���l�M�Xm��;�/f�,��3�z@�oΰ�eSqΈ�}R��F�\u0016)��'Tc\u0002�\u0006Cš\u0011Voà\u0018\u0003�������܅\u0015�l���o[$:\u0000[~EVp�\u001b��\u0016\u001e�+��^U\u0012���\u0015G��_����,l�Qk�^e�Or\u0018Ɩ�C��tZ���PX�\u0004\u000f.<\u001b\u0002\u001ddT km\u0003�$�@;�\u0017�#��\u001f\u0004N��-?�\u001d��l����SdK;4�4\u0018Gd�<\u0019��'\u001b�s�ư>�O\b�\u0003�l6�\\�\u000fjb�RYn��g�\u0013\b\u0003R�q.pB39�N�\u0017^���\u0015n2;r��T�7qz�ӌmîV(��\f��*���~\n�:h�煙���c�\r��p�\b\u0011���'�ɵ�&P\u0018_�M���A6�\u0005P����\"��덲�YX\u0003h�&�D\u000b�k����W�8���\t�,����N%|\u001b���2�X���r\u0019=\u000fԓ\t8�,$Ns���?��\u0011�a<>�\f\u0016\u0015z_�\n�\u0016hMF]5;�]���5��}@YU�:���9\t��f\u0001��\u0012|N�\n���\u0013k�)�W)\rp�Ň�O���\u0001�S`�����5�\u0018�(�s��\u0013�~X\u001c�J!�@.��g4���U�~�I-�\u0006g�\u0018\\�\u0004�0�q��8���ƶ��\u0018��\u0017a��a��òG���k��\u000b\b[F�Ǭ��@��q̗\u0018�l�Մ����\u0006���=R\r���6u6��J�8%\u0012B\u0006�#��W�g\u000e\u0017Ij�\u0001�U\u0013�H\u0000�e��T��u\r\\�{��A>�\u0005d�����Kr�o9@\u0012������0��H��)�J�ajh(\u000eX\u001d��\u0001�(7U�e/�/��Jžn�#�JY�.}j���xtS7��m��N��+⾚h+@���b�6����\u001f��C�M�\fP<�,6\u0002���`X\u001e>d��\u0019�i��C/��,@\t�Bjl�\u0016+�\u0015\u0004�9;�2z/\u000b1؂�%�ط��g<,r�\u0013�\u001b��o�c��\r\u0010�l�Vփ�_�X\u0014\u0003\u0007�\u0011K@e����{k\u0004\u0019)M�g\u0016�\\n3��Z���E@§6��@򸤗XT=�G.\u001bŸ}:S���1@�N��P��J��\\V\u0016e\u000e�i8]��/�\u0014m`���l\u000bZy�\u000f�\u0015�[��-\u0013�1V����\u0014�\u001e-:|\\n\u0018��˚v:ˌ�r���\u0018�ѹ��\u001e\u0017�Ez\u0012>��3&\u000f�\u0010�1��������w\u000f��q�1QɄ�I*Վ~��z\u001f襽so\u0018���@\u0015���\f���3�\u0004�S���'E\u0011�\u000e&�͞����\u001d�|��V�`�c#T-\u001f\u0000�x��%�\u0011�)ULAf���kF\u000f��\u0000-|��]Em��\u0007O\u001a�|y�U\u000fh-\u0015��4z�Z\u0018\u0012L�A0�\u0005�����I:�[4a�L-�\u0001��\u000f���q���o;`N��\u001bp\u0007���$]�`��Su=\u0006�QBڀ�\n\n\u000b�\u001b\u001c8;�<���F.��n؎�^3�R�0���[x���H9\u0015�\u0015I\n8�\u0017~���I��$�\u0001�\u0019���3仮��Y�7��\u0005\f�7؜�87��q���\b\u001c)4*\b�~B)�����&�E\r^6�\u001d�(C]�8��\u0004\u0005�ɚ�YS�R��\u001e\u0005X\u0018\f���d0�n�8l!І{�\u0014�1 Ԙ\u001bk�G=�\r�����h�u�{l��\u001cb�\u001f/�\u001a�?�S��ش��\u00072��;ue~�\u0004\u001b\u0017uc�r�������R�+\u001aB�:X�{ԧ�9���t|}c`��l<<�A\u001d�\u0005����Ź\u0017\u0019\u0013@yӪ3B��'m�\\��,��B��4,�F��\u001c����\u0018�\u001b�mܒ���ɲ��\u000e#(V�[�\n6��\u001cg}�[!O�����D\u0017t?�M��!\u0005�8��.��FM�H.P�6���Os��;�3�\t���\u0011����1�\t5�Dz\u0002=t�'���\u0013\u0011\u0012{L���'�|6����'9d�O�%4�\u0001F2�G�l+;>�Ƃ\bäxy�%\"ow��ա�:W�\u001e\u0002�;\u0005sG~�*�Λ�N�t�'$r�/�ɢ�݀~\u001b�d�Na\u001cOl��e�'\u0007�6ƿ�������a�\u0012\u0017�S�\u001eR#�%N\u0003՞3\\��M�3�`���I�6/�\u0003���_2%\u0001�/72�܈R\u0018�f��8\u0017>�~,��P�7L4?�\u0016s�N�\u0012�bKG��\u0003\u0012�I9I��A1�\u0006\u0004��L��3u'�E��F׾�߇�v\u0010@�\\��c�\u0014\u001f0{\b��T�\u0001bU�O�.\u0001�R���DD*���ɕ_��5f���c-n\u0013Gru��76�%��b;*M�kS�L|\u000f���\u0012�*uǢ���q+��\r��\u000er�D�\u0005ZV��&�\u001b�T�\u000b'�)�l�l�5�M��\u0016�X����ꮪл,�QQM$m��\u0004-����R�xW���!M�kl�e~?��%��f���6b]��[�L�h\u001aM��2������Af\\��eֵ�`��[�r�ؓ�R`�kO�Ej�t/8��܌���R���\u00146\u0016�������6���[9W��5曒�\u0007_b��u\u0011�Wӈ�AE�\u0006\u0018��1�V��L�Τ\u001b\u001b�%\u0017s��\u0018}�7\t\u0019A����ܔ6�~�Sƍh��2v��O�0Y\u0006\u0001���0枲E�6#�v���\u000b�ڠ�3��4��^�>�<����-�uc�N�֤�!ճZMt�f��F\u0014[*�\u0016�(!�.�M�>�����:-�\u0018ښ�V����9\u001bT�\u0013DQa��nk��B��F�\u0004���\u0018�&����\u0018#j\u0001jF��#\u001ca\u00110Gp��z��Vѭ���ݧ�̯���������\u0015ؒ�k�Qd�9\u001cT��l�p�0��~]ۖ�d�n<��,\u00127쒱_���ҽg[�l��O'C ���=.Vg ��:��}��&���+p ��ڧψ����ڵ������}�A^��8��A(�\u0006,��1���G��X\n�~z�\r�';���\u0010\u0003��繻+C\u0002��\u001a\\E���o�\u0012����%~��\"\u001doc�s������\n#8�M�`�?\u0016s��1(�\u0011~\u001co�䦯�?�+�͵{V[��u�\r�MR�t׋[h�g���s��V�x��\u0002��\u001c�.\n�)8!���{��BDzy_\u001d4r\u0017���:Z�6\u001d�3rA�?n\u0018\u0016|���}��\u0011(�C��>Zzt��\u001aG�>�#j����F\u0004f���ʖw�p�ښ��6t�[�i��i���\n\u000b榯�RY�#�\u001a�#�`��0���ܾ���\u000e�>�j6\n,rN\u001b&݄6sie;�f�D���C�^��J��8��A&�\u0006@���b^�3,Y%���0��?\\�%�=\u001eY��I��\u0018�)���R\u0014G�t\n�\u0005\u001c\u001c׹����b��e�Ҥ!������\u0014\u001fE�B�Et�\r�\u0017\n�\u001dǣ���|�At���r��� �\u001a�\fwm\u0011�Q�!�\t |�}S�+��_P�_�\u0015�$�6ࢬOxY�;�5����`�6�~�D�\u0011y�hj�T��\u001b�\u00056�R20�b\u0000�AI�\u0006T���cƍW���\u0019��*�n3(\u0000���M��-\"!D]�\u001a�fn��՘�\u001fq�e2GbFr9\u0007������'�(��\u000ftD[/��\u001bt�hw\u0005B�1 K�U\u001e/}\u000b��sU�\u001b�.0D)�\u0015��I�H�=~�\u0017�&���9�\u0018�\bEW�l�vI\u001e��y-�1O[�L��\u0013\u0017�I��+��P}���׮-����\tJtH��\n��T;\u0017�^\u0002��mTf����b1҆\u0015����W(����B��A \u0015QK�p\u001f.\u0002J�\u0000\u001bp\u0000\u0003�ߐo\u001e��\u0014�*\të����Z�&#�*\u0014sʤ�c;�(E�W#���\u0003��4�j�Q�5��9�x�ݔT�\u001e\u001c�\u001b�S�Vӆ4\u000e��6:p�TE%؏���\u000e�\u001a��N7C�t���7vi�ci�@E\u0013�\u0006�:[�A\u0010�\u0006���L�\u000fg<(�w\u001fl�\u0013�\u0015T��U��1�_7��J����1 �\u0010��77y�я}��\n\u000f}S��\u0002�\r2�c�z�<\u001eV4s]���p�Hb��So��Pֆ\r�My�L�7�?\u00012�\t����d\u001d3�|�q��\u0005iY�L�E(�x����a5M�v� h��������u\u0011��`al�������:3�>\b�3ҏ�\u0002ر��I�Q$�|\u000b,9�I\u0006Ӵ�c\u001e^�^�*@VE^>\u0019\u001dC-�֐|��\u0007��^��f�'�\u0000�f�[�@�\u0007\b��L�!�\u0000Aw�]�W��\u001c�R�%4\u0012\u0003�h�B��p���\u0010���6f/�Sc\u0003\u000ff{�s�\u0017��Z�����8�\u0004i�`��7�Jz!��6\"���O�#\u00064#=et�a��{�wӒ 9+({��\u0006���.�����f\u001d�a�9#���W��T-�\u000b�]:2\u000b�H/\u000fl�[�(\u0018H�X�QH�ש�����\u0016cR�7��e\u000f�1\u0000l�ؖ��o�X\u0004�Ϻ�N�e��\f\u0003g\u0005\u0011��Zc�m�6��o\u0004�t\u001d<2��o�+��\u0002⬋�\u0000��8O�\u0004�#��u��_��l�\u0007�9$���ڜ�A�A8�\u00070���l����Ӧ��\u001b\u0006t\u0003<(#�\u0012�\u000f��[Z��f\u0010�5�����\u001e\"s�[i�o**�g(\u0015��V\u000em^��\tzk:�g��\u0006��ϖ/�_���3�\u0011�FӳL\u0013V���\u0014�}��\u000e�>]��^1�c\u000eJ���a�Jޠ\u0003��\u0002o�Z%`������J�w�5�y�g\u001dp�:��\u0014�_ֵ�b��*\u0004Tz\u00180L?X\u0001e�sS��\t��Z]$\u0006�o�#���{��nC�͗s�� SH�xb5\\���tE�?/\u001e.�:E��I,-�`5d\u0015y\u0014�a\u000b\t\r��\u0001\u0001\u001b�\u000bB�Q�v>�ϳVl�v�J�V\u0013���c%9`�����h\u0011�\u000b���Ic=�8�I2\u001b\b�\u000e\u0015\u0019\u0019Z��ܑB�A4�\u0007D���l��z.����x:nDQ�OvV�,���`k�i�\u001d傄�G������9�\u0011\tZ���f��\u0012P�N=~W�����8\n���E\u0017v\t&�z\u001ax?�\u000b�v\u001a�tp\"o�Y1u8�{Op9|\n�`�`֤��;�����b�z9v�ˇ\u001c��u�\u0002Ú\u0006����8�����Sd�\u001eVj,���\u0011���s���$ݯ�\u001d��!轩��׎��|��}K���\u001es��\u0003W\n�ǝ��b\u001e<�K��(��\u001bR{�d\u0013�Қ,�*0b�Y|���\u001d��5\u001c'w���\u0015��(�?�}ٹ@�’�Y\u001eB~IPN\u001b�@\u001e\u000b�mB�Ac�\u0007X���f%0�I�E@A�M�D\u0001o9�@�\u0002�9}�f�r\u0001��{��6I_�c�F^�Fw.�V\u0007V��x�ք�8\u0013\u0002D�\u001d������YLy*\n,ਟx��_��K�g��\u0014��\u0002f+�\r����\n�O�\u0018�\u00111;߼����7J�\u0015J4��\t\t4=�\u001fk?���o��Y�舖��C���&?K�,��7��\u0000��q��#�\u0019\u0014'�p��\u001f\u001f����E�\\G{!\u0015-�g\u0013��W��Q��8+h���4�)�\r�\u0010�e�Ih���hs\u000e���\u0018!\u0002\u0000�^l�}m\u0015b�&�\bᇆq��j�\u0001�ⶖ_t�f�\u0019d���\u001e\u000e޶.���z�P�Y����8�P MS�[\u0012�\u0018Cǧ�T�\u0007��1\u001ac7৬R�d�c��]�\u0000��@Z�\u0014F���\u0004:��ٶ��\u000eo����\u001d�IB�Al�\u0007l���e��Nk�z�Yv�̷đbP�E�8�L����\u0001oĢ�_��\u0010쮎��\n��iP��oE�}!ױ��^\u0019�J��-�F�\u000b��́_y\t���\u001b\u0005�W�@\u0010<����������r\u0001����\u0016=�����\t-�����z\t�of�����\u0007$r�\u000e+�\u0010�1�\u001b��)��7t\"䞝\fT�\t�{��x��:�\u000b_Q��3���ؤ���4�⹅�1���@�~��4�P\u001fCݐ<�2E\u000bXÙ�>�e�^�Ig$8������'��N:��C�\u0001T*\u001aԉ\u000e�\u000b�T˾�g\u0005I�\u000bq}/N$��N��ޤ\u001b��Ϳ\fEK6��4�@�\n\b[\u0015�թ��P�Ѧv\u0007,�\u0001E\f��r��\u001c��g.\"\u0000�DC�,\u0017�%NV�����aX�T=$�>-��\u0019��or5\u001340mC�Ao�\u0007���Ć.�]m�a�[�����)<��q\u0004XS�B�]_�g��K�2��Y�o��I��\u001b#�E.��s��\u0007\b��XK�/�X�\u000e����E8�\u0001��x��AAX��Γ�mݺ�| ����]��*�,�\u001a\"^Ɣ�h$K1��'\u0013��\u0013pX\u001e�M@o\"I�����D�,�$\u0014��X��]�[\u001d��< �0?\u0004yw=�)\u0014���)c;L8�oPF��ǘ�\u0010gk6bA�i�\bj\u0000�\u0001}��=\u0005z�V��\u001b��n����\u0017�&�\u0005�\u0018�i����*p���\u001c��\u0018��u�|[p�\u0006O:�$\u001b�Q\u0001R�\u0000�\f�\u001d���_�3�\u0019>|}��8�A%�i��c�{����$��\u0007]\u0002¯�.b��h�\b@�\u0012���.Jk��n���*�WI\u0003�:*�\u0012�*\u0007���\u0018����6��N9?ןu�S\u001f��9\u001dC�Af�\u0007����b\f��~`��2\u00177�EB\u000b\u000e6P�fC�\u001a[\u001c�d�\u000f6��V���H�\u001d�ZJ,\u0019hY\u0013�����\u0001���≸��\"�i�(\u0000\u0014�,�'����a�y\\8JO�:ށ�߆�\u001e)*�/U\u001b(*����\f���o(�&\\��FO�F�\u000b�-��$|t��y\bޒ�T�qHh�\u001c����\u0018�+i�[�\u0016׏���\u000b(\u0010cqТ��ɸ��7�\u00167\u000f<.�6���R͞6�(��2�rt�3�^{��C>�Y\t���o����`�N�\u0017�t\u0010�\u0001��\u0015�t:�G��\bW�s����uɱy-D��\b�k턷+㷨X���o\n\u0013Q�\u0004�m��\u0010\\_J\u0012\b=>�\\�tRB\u000b���ʩW=�0�\u001f׌~�L\"(s��IH�\u0011޶i��r\u0006\u001b�E�AD�\u0007���L�b��\u0018���\u0003ٺ\u0007H1Gዬ\u0017\nݪ�z��_���~�>X�j�\u0015��O���J9��\u0001x�\u0006bTI�ws\u0015��!�\u001a\u0018�J_\u0015HHx)��c�\ra/s\u0006@\u0007n�����w�Ti�\u000f6�\u00133�D3m;}x�˦���ā산y��-_�E\u0012\u0017&�]\r�\u0016�Gf��q�hIz�\u0011�ZwzO�'&�k\u00127_E �I��@q�3V�\u001f�9W�[�AW�\u0007���L�>��8�\u0011�i�tb\u0019�r�B-\u000f.$#�\u0005��N�)�5\u001b9���X�v\u0002�\u0003�\u001d�\u000b��M��L���\n肹���yfa��XS=\u000ee�h���5$�\u0013v�E\u0012�\u00196��\u0017o�>#\u0012(�9Tp\u0012S���ve�\t�\u00052�[�p\u0002��o��\u0019\u0014�r�H�\u001d'�V���WP�󻈾s�@c����#z\u001c1çJ�R�bo�K\u000b��\u0010�Y��{��C\r\u0011h;H\u0014\b���W�\r4�&z>i�5P?*�i\u001fW���\u0010o\"�_��&:tf�\r\r^n�\u0013�R=\u0001�v�O1P��h���{�IQ�Qy��\u001a\b�E^`P��\u001eV!��V�\\���>���A\u0015Ǔ4��\u0015\"z�d���\u0012p��^���e�\t\"\u001f&�5�=��b[�\u000f�<�d�\u0011��S�FңAA�\u0007Ѐ�M\u0014�7� M��\u0012�{\u0006x\"�8�m�i\u001a\u00074�MW��z� E\u0003\u001b_�\u0018����Q�I�Z\u000ea\r�TQ�����~�C��\u0000.�GjUV�AX��(\t\u0010�x>m�Y����8w�0�{�}8V�1\u001eB��\\���ܔ�u� ���e���ϟS�\u0012��a\u0014\u0000=~��DW$\u0004\\ǽ �\u001f��q�/����\u0006S]�\u0018\u001a���:��xai�*\"�\u0019�c\u0006\f\u0019�\t�����\u001f�;��~Da����=㘼u=2�0���\u0011�#\u0018�vI7�\u0000��\u0005\u000b��O��\u0015\u0013��X$\u001e��MZ��,u��HC\u001a޺eA{��riȔ��\u000b��Q�R\u0004�\u0016\u001c!�ߠ�y\u0015�Syy���\u001f\u0005˺6�҃��/��\u0000v��\u0011�#�\u0012�A;�\u0007��M'��큓x�z7�j���Y5F-}~\u0011�78ގY��$��4��\u001a\u001ar ���:�\u000b57S\u001b�L0啋\u0002�]@\u0004�R�ٳ?�x�*���Pq�\u000bv)�\u001bi\u001d�\u0017�7�J��k2\u0018�P%�z��YF&8\\�\\N��\n\rs.��R��yٍAR�5�/850��L�\tGMQEE'*\f�\u000f�9��Mq'\u0017�Pg!�lOOL=��x�C>D���#\n�Z�NW�\u000f���6@���c\u0002JhY\u0004��M�\u001f6[�;�j����g�6�jr(/�1�\u0004^�'͖J\necxs�\u0005���Ѻ��Ȕ0�w�rſ���ħ\u0011�s����eh/��6\u001e��G��E0�P\u0007M��>e\u0000\b��*XN�R��8\t\u001b�A(�\u0007���L�\"��$��?��s\u0015~���\u001f\rPv''�:�g�gH��d\u0001:���a�ʳ�j0�\u001b9Y*\u0004D�5Jr�\"��8C\u000e)\u001c\u0010R�o��{��\u0018�o�?��^�Ԑ�k�Z0I�1�\u001dv\u0002[�ʼ\t�2��Ʃ�hN@�\u0016�\u001a��P���W�V�5����b�3���+�\u00195\u0013�;\u0016ޯ\u000bd\u0013��\u000bZy⋓\u001d\u0015�>O4��Mo����H���wd9LɇV�=\u0015��\u000e�Y̛\u0004,1�z�|`���m��\f�^`ҍ�΢6�gZ\t�\u0005z�\u001d\u0019�3�/�b\u0001\u000b�2�������\u0010�Q�\u0003Q���\u0002z�Q�\u0010\u0012pw�^+\t�\t�\u0005\u0016�����\u0002$�C��\t�\u0016�\u0003e�A&�\b\f��M\u001b���s����� �\u001d/��C\n�ݼ��]�\u0000��\u000fG�J\nq�BZ�^u\u0019��%�|����,�\tx�Y� �\u0016\u0013\u0016�\u001f�;?T��!�\u0001ŃFS��~\u0002�K\u0010ώa@hC<�`�\u0017�'�?� O\u0015�Hq��\u0011�K���Қ���j\u00124�?>\u001b��\"�>a4-�\r&��'\u0004?Ȼ=#uޱ�&��]�Z\u0001Φj|ڊ�!��I�c|U��]T6݊�\u001c/�Xm�އ��#\u0007�A�Z�0�]�w�pDf��}#ɏ.��\u0015\u0002e\u0013 w�\u0016-h�\u0003�CB��+\u000b�0\u001a�'��X[��P��Ko\u0010z�\u001b��\u000bE�\u000e��V\"�0��e@��\u0012)�����\t�A%�\b ��L�e\r\r�ڬ\t\u0010�E�J֧0`��S��:�-�a�f�<�$Q��\u0005��\u001e���%����{Gł'JaȲM�s�'��F��չ�g\u001cd!�\u0011C^E�ܚ\u0000�xe�0gM\f�����\r*j)\u001d��q��H�ے��\b\u0013o;*�\f\bP�ɢ�p,�\u0003�,�S�Q�`�b�-J�M1�\u0007X\u000e%*�?}d�U�\u0002,U�C]�!L�d�!A����044�o�d�+�/�5T�>\u0019���6\u0006��R��i���%i�V{w���\u0000���\u0001�%�pA\bq3/1��ߪ�x�u\u0001�\u0005��7\r����j;~㸰*lf\u0012���\u001ea(\u001f�;\u0019�S�\\Ǯ��\u0013R�A1�\b4����V\\�8�\u0002��^�U�4�vyN|?\\�䉋4����^3y�.\fW�;�̜f�g\b�I�\u000f\u000bV�IM���s���t�c\u0007���8�n1{q�A\u001f��\u0004�sę\u0016��j!��a\u0007w�8�\u0011i�ݷ#\u001e\u0001�X��n���y���\u0017�=�L^��J��8_\u0010{�a�nU��8I2@�`��>�\b)���\u001f뙑�����2\f��\u0007���\u0013\u0010�S�>z�/_pP�&�\fy��tj\u0017�^�/����(���f�\u0001U\r\u000e�Q�\u0018\t�3\u001b�Kq>1hP��z\u0019�qZ�뾦�d_':\u0005Y+��[,�!�B�Z\u0005�FF���� �^��ֻ�\b��/���eR\u0014�\u00129p�UգA\u001f�\bH��M0Rtm9�\u0004��HE�\u001e���he�އK!S�L�\u0010�>q�H1�\u0015y\u0011���\u000ed�\b$��\nBq+\u001c(�$�L\u001ck��Xu��\n��DG\r�n=�%z��r���2y.��L���\u0017L�\u0002�q!�����\f.�#�_^��;�|�t\u0016I2r\u0010�Ơ?��,?:u��)](QJ�㣧a�\u0011�K���\u0005�'�\u001f\u0015�&�\u0006`;�2v�.�H²\b���V��A\f4�X\u001dT��?*���\u0005e�\r}�]�\u001d%KMN��X��+��T�@H�\u0002�\u0015���h\u001c�\u001f��\u0000*�F\u0018��p~fT�\u001dJA\u000f��|����ZP\u001d�4�%��H�I�9�#)\u001d\u0013�A,�\b\\��MF\u001aB\u000f�\u0014\u0012���\u0011\r�L򿤆J�\u0004�+\u0011�\u0005r���a����A�‡\u001e�=Z�\u0016��AxΓ�<���)\u0016�r��\u001a���]�E\u0012\u0017�p�\f\r�Zݬ0��\u0013�R?\u0012��\\�$�2\u0003���=\"��\n\u0003�&s�*vԷ��t�p\u000b�G�W�<�\u0010\u00147���R�:���C\bӇ0�\u000e�\u000f\u0001\th�,�����d�ɀ�?�AIg\u0015d�\"7�.h�\b(7|\u0004��y�c��^�W`o&�\u0010�^�\u0011`�\u001b\u0007�i\u0018�wS�=,J�\u001d�Z\u0018r�L\u0016F�B�\u001b�d\u0012���\u0000He}@_�5\u0011P�����ĊR_�R�#!�h���\u000fC\u001f\u00057\u0000I_���p\u001e\u001bH�8l��\fɣA\u001c�\bp��M'\u001a�AP|������P��\u001d�\u001f�I���EM�\u0015|��\u001a�ɷV52�6g�!�����/�����ͮ�\u0001\";f��/Ct�D<~*V�}�=�i\\P�)\t�\u001c�AO�\u0013d�\u001c\u0004V�}X���4\u0010��2����j��ġ\u0000��\u000eKk\b��B�\u000e��[mМ=_�=\u0005�̇zlj}N��B%Q,�\u0018��z?�lU�\u000e.ón^hV�B�\u0011�Jn�O0�:k�\u0007�\u000e.�){\u0017\b�>��\u000e���;H�\u001f�i�g��(��A\u0013�\b���M{F��n|[��X���uf5�ؕS󓊔�\u0004KI#σ{��T�P�j\u001b\u0019�p�G���w��\u0006�� �����\u001e��а�P-G���\u000e�\u0011�B��m��eШ�����\u001b��0>Z���u�\u0004F�\u0015�\u0018�!�e�l%��P\u000bH�Ia\u0001��'���x>WwΗ]N0\\e�j`��es�[-&\\\"\u001c[�� \u001bo`dgy�98<\u0018n�M\u0007ᠨ\u00158발��o֊\u0019��'���y�vW\u0012�\u0001���a�\u0011�C�\u0004Zc�#\f\u0012S\u0006��^\u0005�7[�\u0001=\u000b\u000e\u0018�gheܘ�m��`�\u001c\u0004�\u000e�,��{R`\u0002)n�\u001a�4X��A'�\b���L�ٸ.3A\u0018m���\u0011z�uk!l���V��\u001e\u0018�;ᇫ�R\n���q��Qc�,��\u0001Ӥ-\"�p�(PqK��(��d\u0019�8B\u0004{���W��J4�^�����T�r!�ㇳ\b�f1얠�����5\u001c��\u001cP��L�ݦ�\u001d�۲\u0001�$D�\u0006��\u0004�����#���\r�\u0010�\u0016}�\u0004��<�<\u001c뮍eS�\u0007�s򊖅\u00006d[�ݨ�\u0005�w�TPQ6�Z�WsԊw1`5;��##Ȫ50��8�3�HO\"��%x\u00063�M\u001e�!�i�A�\u001d/\u00128�\u0004��W���#��3g�b0�L^��˭��?D:�L�.n�e�\"O�\u0001,\f�\u0011��x v�A\"�\b����\u0014����t[��s\u0006\\a�F���\u0018��@8~���\u0001\u0017^�:�i\r���?\f\u0011�Ƌ���𳐌��}��>^g�P�a4\u0002@��\u000b\u000e4g.!��/�9��\u0010�mN�xE\u001f�D����\u001aK\u0000�؁y-ը�\u0001x+G������Pn�/�.p\u001d�)\u001es�\u001a�Cm�\u0004\u0002~Z#Tɼ��L�l([�\u000fM�FM����\u0005#�+�s���\u0014�4�\u000f�\u0010�����v����(�d�b�\u0005���xo?\u0014tI�i���Q\u0017���\u001b��^�m���h�\u0018 W�����\u0011C���xlL\u001b�`�zb;�Wّ�8҆��̻Y�2rt}���y��\u000b�.���%c�Ae�\bԀ�L��.;\u0015�t�\u000bt�F@hЈ\u0012��:\u001fG\u0001��\u001d���sE�)�&�V�Z�Fl\f���2�?@z���tB2\u0003k��[1����/7TN�\u000f>�\u0006z\u0014�Rg���L�0\u001e�?�Yw3����Τ�\u0018\u0000x���\r�kwp�-�&��\u0000̠�\u0016�\u0015��Q�쿼]/ՙ5CkS\u000ex���n�|\u000f\u0019-�}��\f!Px�8�Jhv�\u001f��\u000f\u000b��2���\u0000Q\r�\u001a)~B\u0003��\u0015b���ם��\u0010r��]M�鬽�\u0016��v�W�\u000fn2\u001f�=\u0016/G�\u0013��.}��6�9\bK\u0016\u0018m}>��u�;��5�]3q�\b\u0015O?���f\u001ao\u001a�;��@�\u001fl�\u0014\u0019dc�[�\u0018�m\nRA\b1vc\u0004�:9����V�>\u0004�}�nt�\u001f0,�m~��\u0018�?���!�W�9͸���y^$�\u0004i�P��m\u0019���ңA$�\b���\u001d׳�k�P)dޱ>}%�F�p5B:?W�H 5�\u0005����A��ǭB�h\u0016.m-U���k�O���vц��\u0018MB����H'J�1\u001eܣ��\u0000\u00079ʖ�i{\u0000'옶\u001et�a!������3>\u0010���P���J��Hr��_nyeТ�\u001e���\u001a�\u0007A,�d�\u000f^�[�\u000e\u0013\"ߏ��Wd%\u0006�\u0017��w�����[4(z�\u0019cEc���\u001a�$Ѐ�nR�w6�=�\u0007��[l�P;�tE\radaW!���\u001bk��6\u0012��4��U�*�Ĝ\u0003��n9�\u001d�\u001d��6�.1���v�\u001f;�ޭ����Cf\f9�\u0018b����j\u0002P\u0000�2,8xkٶ��a�A\u0012�\b����\u0017�j�Y[��]I\u0002<¼r�c5�J���-\u001c\u00187��>��5Ǘ�Op�\n\u000fv6�����뺨�@�ն@�\u0011kt&�wێ��\u000f�\u0015�Ҩ�7��\u001e\u001e�p�ھ��2k�.�\\Ϋi�U��\\M�[���sg\u0012!ގ���-G\u0002��|\u001fƚ\u001a�t!p�\u0011>\u001e&�t\u0011z��O=�x��\\�q�_Z�ǡ\n q�\u000f\u0015T�‡`8��>�ў\u0018�.2������@\u0011�_4r��\u000fa�1s��Į� �N�xXC<|X�� �z\u0012�\u0014�� MU���L]�˕\u0001P\u001a�M��ٹ�\u001esʕd�\"\u0012\"W�Kk��Y�\u0011�C_�A&�\t\u0010��L���\u001b�2v^R��/\u001aU]�r,j�X4\u000e\u001d�\u0016����c.O�Tv��p��M���\t}�\u00121�\u0006x���y\u0018\u0004,Y!�L!دBc�ް\u0011\u0014����N)�5m�\fg�\\C��%��v\u0007�\u0014\u001ee\u001a'S!�����.��,\u000eY�\u0001\u0007u\bB�=��#�;�����c5�\u0016�3?�:\u0003x�K�N„9\u001d t��L�A�!�br��/+0\u0005\u0015��h\u000b�>s\u001d��\u0001ch�v���x��\u0006��S~Q�\rW�^��Yx.\u0015���2\u0003\u0019<�)�#\u0005u\u001b�ZN\u001c&I\u0002�\u001e�E��\u0001��2H��t�Dv�Ya���6�\b2\u0015�\f�y\"�b&�/JYw��e%\u0012�U\"���A3�\t$��۷m�'��d�\r��n�r\u0015�����D��\u0017$�m�\u000e\u001ec\u0011|�-��X\\[�M��'�\u0002\"��\u001a\u0007��ܬG`I/�&�Vϣ�0�`a&�9\u001c\u0011�\u000eR�kQQ��R�ÿ�{�\u0002\u0017\u000f}�i�cH&��?Q�?U�/�[���*�34<\u0006��G�k��\u0016��K= [\fp��5Z��]ϙ�\u0007O�dD!����<=z���gF���\u000f���\u0019�P�=\u0017���Uw�&5H7_8-l�\u001f��1o\u001a\u0018���d�\f1�\t\t%f�Z�����*XGC�\u000b��h�q�m\u0019\u0005+\u001f�I�f���\u000bF\u0003��4�����(\u001a\"\u000f�4,�T�I��\u001ea��^�K\u0003\u0002�QA\u0003��_��\u0010Uz��\tI���AX�\t8��۷9\u000f������B%��0K�k:P�\u0002�2ܥ����\u000f=\u0019C9�-öo�ݶnJ\u0012�O}�\u001c\u001d�\u0004� �j��Mֽ/3�K��~��i��'�'V�v��\bh\u001bʻ��\u0007��\u0018���\u0007\u0003dc��q��˪��K\u0014����[�[B���`t\u0016Map�*\u001d�:\u0017P�\u0019e�Dǵ�O'Q\u000b�${�SYEF�#��{h\u0011[y/�\u0003��fP6\u0018|`jP����I��[�[�1��<}!��n��6U�\u0012�n�=��™b�\\%$]�d\u0003�\u0000�Mѡ�\u0015��Xk�\u0013T\u0001�\u0006ƺ��\u0018��k�k���\u0017�iٶ\u0003�E\u001e\u0000�n�GZ�Z�%#��~W��0%f��.gC�\u0006vqQGL��ݔ��l=�\u00140�!����J\u0018�r�14�(\u000bH��+ےݑ4�g��6\u0013\"�AR�\tL��۸Թ�㕻\u000b�ke7�,�i+_C\u001dْ�Tun_L,��\u001f�ν�ʜ<�\t�Ԕ�\n{��OKZ���>���\u0005\u0005��$A{|i>�촹3CH]\u0018����5�\u00154H�3�)\u0005�%�2�ظB\u001a�1g\u0014�X�],��K|��`dJ�f'Q<{\b��\u0011ې�c\u0007`�ŃqJ�@����@Pk\n8���\u000f\u0014�\u001c�R���-�\u000fz����N��I�#z5��\u0007�\u000b��\u001f̙�\u0005����4���\u000f+��@�\u0003�H;\u0004�\u000b���'tc�&�|�mM=I�Ć�����G�֕��C⼔}�6��Y��m=ܮ8�_��\u0012�}�j��B\u0003�NK�\u0001�{����lI���\u000b�e\u0005/�K-V{��3�R\u0015cO�;\b�ͳ\u0011\u0012[����g�k�_�D��A`�\t`��۸�\u000f�]�&\u0018~G}���\u0001k�\\\u0016�^Rm\u0017Z��\u0002����\f��7@�;��\u001a���rBσ7�;6#��\u0012\u0006�v�#�)��`��׽vƝa�B�\u0011Fu��\u001d\"���\u0014ܾ.᭤�bg_'S�V�\u001f�l:T\u001f�8w3[�^��7�\f_�������G�\u0019j��-������_)]��H�uq��(�\u0011a��c�]�L\f&ey\u0011��v����4�֋PC'F����fXEǵ\u0014\\-��8��\u0010�!Uc&���]N��~!�}w�i=u!O:昘����(:t+�����1�X&9��H�,/\u0006$�R\u0007�T\u0004�\u000b�+\u000e\t��~\u0014�\u001bD�\u001eͽ\u0002�_4�X��\u001aY��@�+\u0018�\u0010@A�\u0002��\u001f��u��?*�n���)M�����W7w\"%\u0000CMz��GO��J�@��AB�\tt��ۼ\u0006�/<�\u0017Q|��o\b�͸���)S��z��)$�JVR�m.\u0019\u001a+7΁\u001fEg�c\u0017C\u001b9'�\u0012�\n=�/xv�\r\rL\u0018j�h�]�?VrH\b0`�u\b��w\u0004�Nءl\u0002��\u0010\u000en.`\u0015մ@���>��J�u׶�k����d�}CD�����>�4ǎ���\u000eI����gQ2���W�p\u0007lM�\u0006�@&�?2��|?\u0016'��K\u000e�\u00017��\t\b塔�4���뭩^��8��]�^�\t\u001c�(��\u0011��@x=\u0007��l1��-�$�ז�/�vo�1��Ik�71kw\t��G\u000eJBp��;��\u001a�\u0002�J��7\u0002߷�=N9��ˆ*\\h\u001fi�aE\u001e$�c�`����iI\u001e��RR#��%\u0016�8��AY�\t���M{j�P�%s\b�ݦo0��\u0010�;e�^A Мh�H6�od�w�%28B��k�]E\fe=~�\fk�-���t=��v��혐���К B^�q�JֿP�ܐ���v4��K|���x�?�1�K��<�\u001ds\u001c�+�1{BUO ե��\"��\u0016����\u0003��B�]B�\u001b�'\u0019�{�\r?�]�T\u00187ʭ���a���#\u0015 �w�u�7�M>�����w�}� \u0001,���V�:!�u�\f�'��wm�\\$\u0004�u���\u001ai� k\u0002Ĉ��O�M�\u0018v��(���\f���Ac�\tĀ�L�VnT�@K�vB�W��F���x�\u0002lH�vA�'\f�\u0002�\u0019���x��:w�\u0019Q\n��ty�\u0001�B�v�򜖍9D�5M\u000f�}�\u001fG\rb%�O�Y���=/���\u001dj�]\u0011�*�\u0003n�K�*�\f������X�X�\u001d��TuE��Ƅ&d�\u0017�p�6{�8�\u0011�uЀ��Ab���\u0000X��k_��)E��jQ�O��\u0015v\u0016\u001bŗZ\bW\u001f�g���ԋя�^��x�\u0001U\u001c�bH�J�et\u0001���\u001e;��\n1��n�5MF�\u0007�����nYkn��L��x�%m�\u001b��6iTƨ)T��\u0006��ɩ\u0011�Ջ#\u0000}:���ט��'&�i�\u001c����R�\u0011)\u0011�z\u0007\u0007[�!K\f;ʷ��u��\u0017����\u0012�b��Y\u0018�f�:޻�\u0019\u0001'1�����[�=���-�Q�\\x\u000e�r��Ak�\t؀�M{H\u0013\r\f���>x��l�xy{\u000f������y8Sm�T�.\u0006�`\u001cr��l'�y\u0005�<\u0013��Đ\u0006�35��#���<�[�t�/��5���(~��|^��p�\u0011���z�c\u001c����a�6q\u0017�d\"���\u0010Rō/\u0007��\u001bdQ��qwH?�2�\u001c\u0017��%�a\u0003~�\u001df\u0006\nY�P��reΌ~�\u0001��<�G�M�_ \u00048#\u0011���\u001an��\u001dI%�/�1�g�a�Z%��~\taT\n:�f+!�\u0001�i\fN�\u001f\ftV�$�Y�ʯ\u0014:}6�\r�<0�^\u001ad�\u000e���o\u0004́�\u0018EAO\u0007�0mnLA�\n�p��eQϮl�Gs�i\u0011��_���I�6\b�=\u000ep\u0017�N��\u001b#]�9Z%שl�\u0000\b�I\u000e��A/�B\n\u0002�k���F��\u001bz�?��y�\u0010+]�n��܂��\u0000T#\u0011X���?�AE�\t���\u0017,�'�3_�!b�J��&��^\u001b\u0000���\u000f'k\u001e˿imDD�}H���Օ%Q�\u001e�/�\u000bD�5�)�ۀ�]��\u0015�ۯ���FyJ�I<�x���\u001cn�\u000bK�\u0017�G.\u001d��V�⛝�\u0014h6�\u0006��O�]F�������PJ�\\��<��=��iR��\u00132X\u0000�_�\u0019��׺1�G�b\fv��ԛF��.\u001d7�g@�[bi\u0013\u0003�c\u001f\u0018�/����\u0007\u0002f�j�\"�T��~��A��O��\u000b�E���¾���9��\u001e��z�g�p���39L֣\u0000x/�56L�\u0003mS&�f�V}_}\u0011dXS���B��l\u0000̠�\u0004\u001a�m�j��1�B��5\u0017O�s�>��hJ\\��5��k6F�ڿ��_l�\u001c����\u0011�\u0004�A\u001e�\n\u0000����p?�\u0005��\u001a���\u000e�2Z�O�WD�\u0019]@�CO;��:�_h�Υ���\u00102&\u0007�'%G=�\u000eZ\u0016���\u0007�鿉?�!W&m�\u001a)��\"q����R��ƴ�*�\u0002��u��L̢�7�����@��AP�l/^�J\u0016�\u0001�[' �O�|�Щeclp8�Qa6Y\u0015�S�#��V�KA�T4���������8\u0003k�2�m��^!��q����;��|�\n^��=\t�\u0011{�9\u0013ğ������}\u0013}{r&B�zP\u001a���EP�L�f+ޅ1�Yo�'�ݿ\u001f<���jU�U�[<�� &���L[�S̶�#`t�&�qO8�+6���A\u0005�\n\u0014��XА\u000b\u0018$�\u001b�m��w��W�º�2\u0010�V�~�\u001bU�<�\b!�\u001c�����\u0000o�S��}G\u001a�+�C�\u001fT������\u000f&Z�H\u0005k�\u000e�O�հ$'YJ����5쉸sd�~B��w9e��rތ��K�#ӑW��dJ��\u0017�ew@C��g8E�^��P\f�(��C�G�v/I�\u0010Ш�߽�m�_��8m����,�\u001c���7Q��C�p,Ͱ;�5�\u0015.W�tCtEX���$r��r�4����[\u000b��m��GY;��A\u0007�\n(��\u0002-@w��l)��\u000b�%��\u0015��b��WG��E���\u0017\r�\u0003(�\u0010\u0000ƞ��ȵU(e�DUdQs\u0013�)(���m�\u00156-�\u0011A�\n��$�o\"5��9�\\��8�ʱ$��]m�������:?{�=7���}\u0015��Vi���ࣗ3\u0019��ʠ�\u0012Ȏ��@H��h\u0013��p�7'x\u0004FRhGj��y\u0000m�\r����=\u0018�vi^z�?\u0003\fNf�K��\u0004�,�\u000fo���,�?B\b�_&��H/]r���\u0001}\u0013����whR�r\u001a,\u0013mq=W{\u001b\n�H}l=\t���2;N\r���7u��\u0005��@�A)�\n<��.�\u0000��v&rP~&t\u0016��g\bn�A�_��.\u0014*��[�d߹\u000b<©?kRx���\u0004�R�ۄ\u0002�\u001c�Fq8�Y\u0017o\u001b}��GE��nl������d�M���\u001ch}ǁb�R~v�CCO\u0011�K�?���R�\u001dq�8���>u���R�b\u0017J�w\u000b�\u0016�W��Z���3\u0011��5���2��yr+T�\u0012��N1〣i�1�-6\u0011!\u0000�-\u000e��\u0017���P8�\u0001\u0011����6(߈\u0014Ʊ~�+�\u0004\bTNO6|\u001f\u0013���\u001e�dh+\u001a�קV�\u0016U�\u0018G�}��\u001c\u001b|i!\u0011�\u0005���vs�!\u0012B�ۼ:\u0017)F�}��&\u001d�\u0010\u001eR*\u001cP��2��%jE\u0006�U���5*ңA0�\nP��.��1<�}u�\u0018'H3�n�*�L���l��!�7��tf\u000bR\u001e��;Je��;�x�AT�U�N\u0015BSsi�:�>9�\u0016���q��@�T;dw㶖��q�HN����\u0010\u000b��,;-G?��?CJ&{('����\u0005��Q��y�۫\t|1SUꥶ�M�8Y^\u0006�գ��\u0005#~�)�O� j.\bک\u001e�\u0000p��6(w��;2\u0002�S<|]F\u0016Q��\t����<\u00077�Dfૻ\u0011�ij� u��\u0010������\u0019��>P�/\bx�np��>���[�М\u001f3\u001b��d}��tw\u001f��]\u0001�\u001a��\u0017�b����>b\b���\u000b��r%Jk\u000b\u0003����3�J��w�N3\u0007~\u0003��\"�68>k�7��ɩ�k\u0016�چo �Μ��(�\u0006@#\u00009�\"�Q�P��P��\u0012M�_��8�%]�ðć���#c2�u�noNH�\bj���\u000fy��lQ�+�Z�\u001b\u0004��Ϻ$ő�G}� \u0019.�c�\u001f�\u0015hDl<8\u0016�@�w,\r�\u0016��\u0014m�����Q�F��\u000f�D���'\\�0�U�$�A\u0016�\nx��2\u00177�Ŀ\u0017s���#��\u001d�1�@����\u0019�5?\u0017\u0012n�\u0003��=�-���L�\f�lm�H\"\u00159��J���-��\u001e�f��R|\u0003����q���J$!�+\u001bG�3p����`�±�q9i&��%>&\u0017\u0006�)ћ!�\r\u0010�9Ζ/��� ���Fi<\u0007E�6�B�M\u0007��A+�\n����4Tn^O�0��\f�x��u,���$َ�5��ҝ2��\t��T��^�\u000er�\u0017����\u001f@F��H��\u0001��6%���R��\u0014�7w�h��J�LҬXY�'�q��_˔����IwO���C/�*��T�h-�j]ٔ�-\"�[Y\u001b���� r��셑���\u001e��Ѡw�;G���\u0015\u0017=� 2)�o;\u0012�\u0007A\"�\u000fn�\u001d���\u0016�.j(e\u0001l�*\u0018\u001b�V�[OƘZ^���W�5;^t�\f\u0005\u001bRl�q�uLL&�����?��# Ѐ�T1q\u0012�W\u00192M%���>b�{�n\u0006�\u0004N����\u0000f�%\t��}��ńY\r[�j�x�����7L\u000b�DOs�\n��A&�\n���X�)\u001d���}���\u001e��>�S�NʼްS3��\u0001&�4�ol�(G�u��HIz\u001c}W}e���\u0004H\u000f\u0000t�&�*z+�\u000f��\u0005���\\ �\u0012�=p!42�f�nFa�!�\u001d\u0001��yDn\"�.��뭳�*w��K����}=L�\t_���D�\u000e'��կ*�`�\t{+zT�\u0015ͤ:��v���gp��ժ�@^.�/\u001d\r�p��\u0006���S�\u0015�\u001dEql\u0015���b��M��V��q\u001bҖޖ�\u0016�H��\u001f5OG\"p�.]\u00023 \u000f��Eb�M���s��ƨX n�����A���\u0018�J^�a�ýȉ�Z�\u000f����\u001bY��\u001d��[�BC~����ʣBF�\n����\u000b\u001b-�\u001e�ki�^��ri�\u0018v���\u0001�\\`.�.-\u0003(�@�&j3c�\u000faYYƽi�\u0011�p�\u0002��\u0017<�`���x�?������p`�>\u001d��rO_;��4�8�B\u0001�i_[�k6\u001aN��y\u0000\u001e���u������%��F\u000e=]=�H.\u000ed��Aղ~�訁\u0004�# Պ�.g\u0006��I$\u0004*�4\u000e\u0000g�]��)\u0000�����\u001b k�6.���\u0011�HB]2�O=������\u0018��\\[��b] �|�$AB{��X~`�\u0004�b���=k�\u0001j���#h��׵�Q�\u0005�TaS�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�����wػ�ʟ�W3:��م��E�\u0013n� nFf\u0006\u0005��YH���}\u0018��\"\u001a�}j��_��,0RϦǹ(Tŵ&��\"[\n\rӃ�/\f\u0015MdZ�A<,��!娫VV0��\f~�����.�%/�m!g\u0003���\u001d*l\u0004�\f�ؚ�\u0003�՜��\u0015:\u0014)�\b�]�}\u0014ꕰ�?=�4�c�>@�.�0�P�@�#>\u0001�����D�2Dé\t���\u001d����h���\u0007#�\u001e6A��\u0003o �\u001c/ْ\u0012E�\f�ш�R�\u0016Z�\u000f�\u001ej���>�HU��\u001a!���ņSt�]҆\u001cP��T��X�w�xy=��TNJ��r\b3�N�^�+����Y㥵֠[d�\u0014�+�^��>���)\u0000�\u0011�\b�|��\u000b��k�A\u0000�\nȀ��B���\u0003\u000bT���\u000f�@\u0010X�M��*�$������`��\u0006����9\u0014����\n�'�Tg��y�($\\���#-Q�t���\u0015�Fj�\u0007Y���g�KrML�=���Q��Ɉ�Τ�r�\\���˄ �}&\bn!���^��\n�Ϭ\u000b��.0]@P�̔�\u0013\u0012�\u0001�8[�d[9��\u0013��D�U\u0017_�ź�I��˲M��\r�K�\u0002F\u001e{ƕ���)99u�&����7!�#�3}����Q9?�̕��\fJ'�f�\f�O�r�\u0004U�Z�:\r2�|K�U\u0003�� �\u001e\u001a\u000f\u000f�G�e�AQ�\n܀�}b�\u0012�{_Diĥy�B\u001d�5c�\\5���\b��F^p:��,�MB6Vئ�v�����\u0011��0�q\u0003�b@|\u0007~�\bb��z���\u0016!��:�k�8���p-\u0014r��D����^'�͜jAbIM��-w�m��J�\"�}���$�١���3�\u00034V\u000b\u0002-\u001cS&�gbS�\b����g(�\u0001�9c��7���:@s-���)�\u0000����G[az7\\�C%�8������kN�\"Ƒ�\u0006�z��\r�!�M:�ڼ��\u001e]\">��W�\u0012�ޏd�\u0007H��֪�iМcN���S�p.Bt�EA\u0001�7{\u0016�\u0015��R�sF��.R�;��Ytv� �\u000eS�C\f=�'��\u0001Pڽt�C\u001d�ɬ2\u001eV�����k�ߋ�ծ�j-?�2��웗��\u0013o'\u001dU�pi�e���&\u0017��,�`�da��PyyL))�=\u001f\u0010��c9T\u001e\u0012\u0002+A�\u0011ր�\u0016���-f�1�!� l!\u001b�o�\u0016H�9�ahw^��\u001f��\u0018�U\u0003ؠ���\t��4�\u0010,��F�h\u001b\u0015����Nm���!�K �A�\u000b\u0004��|��\u0002h\u001fi�B\u0010en�\u001f\u0013\u0007e7\u0014:�ν�\u0011r5�C���\u0011�e|\u001b3�\u0016��}�\u0007�\"\u0001�j-d��\u0019�K�#f�aP�JK_��lC�̴�sA\u0015=U�\r��9����О;�\u0006�օ�[�$�w��?��Q����:�3�'j��_\u001ew8���ыH!��g@c��:2cB~���J\u00164���=�\t���M&�\u0018\u0019'���5s\u0006��\u0005s\f���ǧ�\u001eߘ\u001a�Gq:#{\u0010��4��T|I:�}�\u0016���%n�m�9�u�\u0014\u0011���W#�A��M�\u001d�Қ\u00010\b�������p�Ht�\u00029���>�]\u0002��X����\u0004��\u0011OV�\u001d!Rͻ�W5�Zfjͳ`���\u0003�\u001b����\\\u0004�z�&�*Ӧ\u00010YΑ&Y�\u0016��a�o�Z�Jc}��U(�\"A��!]�*�\nY��y�n\u0003��\u000b��jB[A�D���A/�\u000b\u0018��.T�R��\u001fh�\u0002\"\u0007��m�Bg��d����m���F\u0001���6n�\u0007$���.\u001d�:>\u001e�(�\u001d��\"7�����Ĉ@|\fT�-0\u0018��J��N̫�i�ߥνM��:�mfK�wst_�\u0006,��A;�����\\���%8\rۋ]*�Þ]��p�i[\f\u000e��A�)�\u000bMܮ���\u0004���\u0002�Ȇ�\u0011�?�Aa�\u000b,��߷�n���5(=�zu��\u001e\u001bd8$+m�V�\u0015�,�-z��0�9�|�d؞QM{\u0017�0 �gY��oB^�$�v�D��*­p�V~�j��|�b5������\u0005\r�|\u0006\t�0�\u0019c��Y<^���v�U�3E�\u0007P�ӣ�沣�)�2&\u0005�iD��\u0003�\r�\u001a�]�\u0014vA�ޓŁ�l�#!Zp\u001f����f��'�Llq��� ˏ)L�����k�����O'��\u001bT ��LVRB6��0\u001c~l\u0006jIz�\u001c��\f���x�P/���˷%\u0011��\u0007qz��\u000e������T��\u0014��)^�Q.���U��ˁ)t5���M�\u0014�����P���3u\u0000��j<ō-(��w�_�\u0011�I\u0006б�I\u0010���ONP��\n���͉�\u001f$WA3�&�\b(�Lv�a%`uD>\r\u0016\u000f�m\u0013����;G\r\u000f�:��I��h�5���Ss\tXԈ���HW�b[��5�-�A*�\u000bT��ۻ6)��m��\u001a��*q��j���\u0014��K� A��;�F�l\u0014<�\u000esc�PЗ�F\u001e�\u000e�\u000b�˘\"{�c�\u0018L(�E�g�9\r�\b\u0018��߮a��ن��\"����M4�+��\u0010��r�H�\u0016��.��\u0004}H��n�|��\u000b$���K\f�飁��+��l�\u0005V�\u001er\\<��Y\u0014J�\u0001\u0011�1�\b�\n��[�+\u001e\u001ak(to���Y�q#���\bW5\u0006�\t�\u0000��S�\u001c�jMy' ��\u0007�Eѝ&��H\u0010o�\f��} \u0019��G�\u0013��^��k�c\u000f5�\\|\u0010�˄\u0000�k���p��Q���\u001f \u0011�\u0011-\u0015�r\u0004R'��y�]�c#�D\u0014\u0005�Y�����p_��,�A\u0013�\u000bh��M1�Lh��������G��c�D���U���bCcK��IX@�N\u001c�\u0001\u001f��\u0004xC\nm�|C�#�!r�KP5����J�\u0004�$8\u0013��V\u0017���q��9Z�\u000f�;\u0007�\u0012�`��\u0002[�E=\u0017�;W\u0012�*Y\u0013܍��L�\u0007�}�h������yr�\u0015��y\n\u0015z?(\u001a��\u0012\u0001��Y*`��k��6\u0019\u0019�5��\u0002�a�2�ֲ�\u0002>��P���qBo��e��U=�nn��*�\u0019f���1����9y[�xl\u0005{����X�<��w|қ��w��s2\u0012\u0011e�A#�\u000b���Mt��j\u0004Ң\f\\���o�K��\u0019��c�\u0015л�9\u0002�\u0013P�mR�����*�\r��?�\"|\\ޗx��0�k���{j0�q�u`zȷ��D�U\u0005}�z�tg���\u0000\u0003�\u0017I\u0019���a�1�\u000e*˜�<��~\u0017�kCqF\u0001�ގ\t=�\u000bI�3�c�����\u0003�\u0014��'�\u0019�@�5\u0004*�\u0015�M\u0015\u000f�V�ۚN\u001b\u0007I*���X�>�� �����\u0018p���\u0000\u0006���\u0011�g�Cm\n���#�_�?��Dx?G|�/Oz5��d\u000b�*\u001e�We/R���fn�}�`^D�0\u001a\u001do0\u001d@7`��[F4~�\u000b����D����\u0002�FPR����>��Pd�AC�\u000b���L�^�Y�t��\u0003���\u000e��!z5\u0016n�\u0013-, \u0010�4l���7���N�|\u0018����si���>\b\u0018\u0006��^���-�)�l��QH���a�qc�\u0017\u0005�!V\u0007\u0003�7�\u001c��1�1l��B.��\\U\u0018�#����<\u0001�\u0003\u0011��¿\u0010;�㴁��N����\n�\u001ao\u0010�\u001a��l��\u001d��v\u0006\u001b�� �x�ў}�>�vh���#>�ߠK$��\u0017GyN��\u001ef����T��%g�\u000e[�6\u0014v��\"e\b��Wo�\u0002�\u000b\u0011E�g�\u0019߮\b��Y�*O�\u0017f�\u0001����N�X#�\u0003�7��?���^�\u0013�b�o\u000b�N��\u0003���\u0016mGt�o�BDp�qpa�IZhS�/1%g��M3nD�\u0006\u0002\u0010�4�JMe&k�l\u0002}'\u0012�A?�\u000b����\r��m�RɁ�\u001c7\u0017A�{��yd{\u0013�\u001f7��\f��o��c��u�f���\u0012Z���=\u00163��t�f��W%֭s�:�+�g�{#���]�r��-B\f�@m�\u0014mt\u0016֌Ge��,p؀���ݮ�lT�kB\u0003��O\u001f\u0007Е��\u0010/\u0018'�y\u000e�#Z�M�#ϩ����#�b�1��~/��\u000b�6;͊�\u0018,|�N^׵�_F)�,t]�\rm�D�i�\bR��I�\u001f̿�f=�ʦ\u001b��\u000fs\u0001��׭��ѤMo�\u000f'$�\u0004�E2�Mc�[\b4����Q=/O+#�\u0014F&k(�\u0004���sQBC���\u0014^?)�TId9s�ֶ%�So���\u0015�J&N�;�L�u]PAtq��ے4I@��\u000b3���\u0004�A;�\u000b̀��\r��\u0000ϵ\u0017�1�h\u001b\u000b�=�\u0016\u0006��XB5�by0���A������\u001d�s+�F��P�@\b\u001a�@\u0005�\n��X���|�[�\u0005\u0017�,�l\u0011T���ؐ�\u000fՖĂ�''�;��\u000evq�_�����\u0004nVh�k���x��\u001e�\u0015\"} G\u001d�ϖi���\u0018)p)\u0006��j$X\u0005����\u001dMX2܋\u000b���b���{�y�b�����pq�3�\u001f�gh�,�;[~���\u000bL�ڍ����:��<�\u0004\u001d��od2\u001c9��\u0004\u0017��=\u000f�������\u0004�����?��\u0001Fq��#i:&\u0017M�\u0014����YR�4l��\u0000���\u0002@;�,�$�ԣA/�\u000b����\r���E\u0011c�����tա�TyM;-��f��Ō\"�$T)H:\n���T\")��ٰ�\r��k\u0004��4���\r�GY_͍�j�J�>Cw\u0007~L���\u0012�ќ�i�F�^�)U����\u00077(�´VΏ¯��s������2ޢ���|R�R������\b�\u001f[����l\u000e\u0011�mA5;B\u000e���2�\u0004\u0004g���kٯe��,�Ƞm����t���6'\u0002K�.q�~\u001d\b1-0\u0010o�D\u0018\u001dt@��#!��q焖Gn\u0013�\u0011��-zU6`[�\u0004�\u0011�\r�\u0003Ԧq�2�O\u0001S\u0001X|���Q_\u001cJ�OV) �N>���7l\u0015��k\u0011�s%���D��'��L\u0003��\u001egKdڣA\u0016�\u000b��My�n�^��C�����q��7�\u001b��C��B�c�����\u0001���@���\u001f*�f�a����3�~;?�ʦ�\tF�\u0005�\u001c6#x\\X\t\u001fe��9)�fQ;��I$09\u0015\fgY��R\u0000\u0007_�J���\u0019\u0007]��T��%6�B�O\u0014���g�j\u0016�4�7g�<�r\u001b$T� �),K�_\u0003�\u0004\u0001\"\u0002�4B^���o!�V��D�s�F\u0003\u0001��`����Hv�4����\u001c0洓\u0016e\u0012�\tL�� \u001d��Hu�\u001eB*�\u001cQ��eq�ָ��`Ln�\u001b��\u0012R\u001e��WM�Sb�@\u001b�eD~vu��٪v��H\u0004�� �9\u0010\\��\u0018\u0014ңA\u0011�\f\b��ܸO�\u0018+�ͅ��J��Rd��?4[��9���1��L����m�^P�����=$\\�\r\u001c�(�����s�����e}�\u001d��\u0002n�\u001e�\n|��CU44(����\u001e�\u0000�Ϳa^��?gӠ�5M��JP�Tv\u0002�\n6K�\u001a,.\u001b�k�:��t\u0014;��@���p���,\u001d��?&��\n������ڹ\u0019k5�]�O\u0002��\u0012��\t�G�&�\u0000l���i\\\ba�7�_3o\u0015p�$�Zb�z�E_�f\u0012�\u0017�\u0014k�U���!�����Ss�X�9\nʜq�F]Is�=\u001b�$E���m_�l���[\u0013���l\u0002k�A\u0012�\f\u001c��L�>\u0010��\u0011V��G�I�ț��\u00062��\u0001b\\�l3|�1ӧ�J���AM9�\\\u000e�Q��R��\u0011{��\u0014�&(`�\u0000�0\u00175�p�I�?�\u0016<�^�(��Ph�\r�=+��1�6@�b;�s��\nBC\\k�dC��\u000f\u0003�b5�m�8�\u0015&�\u0011T\u0006�DC��\"8x\u0013���|ѷ?�*�I��K3�K�\r�q\u0013��xX��\u0018��v�\u0003/��%�~e\u0003p0��@\u0006z�z\u001b�'X\u0017O\"ky��;�Ҟn\f��b\u0019:{A\u0007~.�,�\u0013����,:�n\u000f�p\"p-k���9C�Ĩ�\u000e�v�8\f��;s��U�V���A\u001a�\f0��L��e\u0004�#�@��C2\u001d��Qg��e|͗\u0012�*Atò%@=9h/{��j���\u001c��ӌp�{��|\u0006�\u0018\u0010MD\u001e\u0017��h$|����n\fP`�����2g��o�\u0016\u0000��EX\u001e\u000ba��1O0���͑�Z��c8�\u0013�LB��\u0002�����T͉\u0012h\tp�\u0010\u0019\u001b\u0007��X§�\u0014�~F\u001a��vˑ\t�ߞ\u0003Z=\t��4��\t?����\u0018oO�\u000e�>��\u0014�˛��Q8=�Œ@O3�\u0013��8��d�8d\u000f�v\u0017��M��CJ�K��\u001e�vdX��CC�}EsV�X{�ʪ�R��k�閉>*�L\u0015\"�5`ȇ�n\u001c.�حS��\u0011(��\u0000H\f��q�\u0018�t�� ��\u0014ɽ=\u0007^��$\u0000pW,�\u0019Ѓғ��X.�޲m\n\u0004���p�N�)�$��ޅ�c�H�\r65�\u0003�5�ܵ�D�?���(�\u00047_\u001f?��ȆeX�h�\"���d�/)�n�^3��>h\u001d�z50���Y�\r�\u0012�~\u001cQV*Z(��nU�vj�H��KRÏ���^Ye�eSzm�����\u0003\u000fpt/����\u0015�R��B�bF<֐l|��¨:8��3Y�����;��r�=\u001bFe��\u0018D�I�gA\u0010t&�&\u0019-�A\u0011�\fX��L��+|.�5��\f4y��L���ƶ6a>\u0005�Q0�\u0005�S@b���s��3GH��+1\u0011+L濘2��4�9P��1Ш�\u000f���+rYA�Cv�S�<̵���\u001a���K��4�,8����ˀ͠yU��պ�c\u0019�I�,�;\u0017�\u000eIv\u0005��LV5\u000eP2�)؛:o!�Ç\"�7赐��V�{\f�I��U#�\u0014n�����;��v�6\u0006e\u001a�C��|\t�����\u0019n�\u000ei��z���v���o6\f�j��o�\u0013��\u0019�\u001dE˼Gv�YG6k��\u000b�X�.?����\u0014���ܞeqS1 \b\u0002��pZ2ƙd�A\u0018�\fl��۸�L�Z�X�^��\u001f\u001c\u0018ɱ���/�\u0007q0K��x�\u001a��Z�\u000f1��qp��G�\u0004���|=�\"\b��\u0015}ZH\u0001��!Vu٩\u0012R���\u0014�ğ\\�/�ףw��ytL�\u0007q�e<\u0003��=A�*E��\u001b�\u0000�fc<��\u0016�G�;\u0017����Y\u0018*��x\u0003�u.��g|�P$�1i�\f��q\n#J;�OUr\u001bW����G�*�\u001d��/i��qe�\u0003����R�\u0005\"<�L�0�؁H@jѽ,7N=��Z��m?d��4\n��r��w�9�\u0015�(��z��Q�=?%�V���]\u0015�LUf��ޯ�&`ZҍF�).\u001f2���r�A\u0019�\f�����\u0001],��Ԗx�P��)�*�#�B\u0015H�JC��\u0010��&�]\u000f:�C7�Q��\u0011%i\u001a��\u0019��{ؑ�w\b.���\r>U\u0011(�DB>iD��ӯx�\"@\u0018�?�\u0017Qw\u001b9�ܪ#J\u0011�\\�W\u000f#���V��x�[�c�ʬ�z)f\u0004��\u0000\"�3E82����\u0019N\u0005�f��\u0002��8j6���MI�f\u000eR�c�D�B�����\t�ߙ��]p�0\b��Ʒ?0�C�@\u000b� ��u}\u001f���4��o�h�r#�w\"fC�W�Q�p,���\n>~�;\u0000Jʶ��\u001f��\u0015��7�K�\u000eu\u001e�l�A\u0018�\f���ۿ����h'\u0018o��\b\u0000�\u001c\u0006Ri(�7\u0002�@s�\u0003�x�\u00022Q\u0011�\u001f�l����\u000fh��.�)wL��;\u001f;�E[��q�\"Z��B�s,��x\u0003�����r����mjS�\u001fH?f�2\u000e�Z\n���R\u0000����O����=���n�\u001bʺ�l[�\u000f��gd�\f,�\u001c��c�P�\tn�vT\u0002i>*ln�����Lꊂ&�\u001di�D@\u0016��Qh�������\u0011��e���\u0001�\"�\u0017�픀\b\u0006�s> k\u0004V��ߢ\u0019��s�\u0019'�U�\u0019~�\u0005��}�f\u001c|.\r�Y\u0006�\u001fk���V霐0J�\u0013V�$ówq��[;�H�����t�A\u0010�\f���۷�il�:�\u00038-\u0002<󛑔�q�\u0018jb\u000e0����\u0006f0���\u0001�ˆ\u0007\u0014�\u001f\f\u001a\r\u0019M�[O:�\u0004����)\u000fJ\t0W;�����������M�\u0012BO��)p�\r�{\u0005\u0017\u0019C\u0019\u0007`%m�畾q�\f�\r9{\u0004k\u000e���1��\u0004\"�\u0004�?��hv_ԙD&�$����`�љ\u001dK���\u0011�݆\u001d���\u0003�v�\u0011�\fݏ\u0001\u0013ԑc�7�H\u0016a�4�\u0006�nM��2[[���H!��e�,`�^ڳ�i�9[\u0001��w��\u0017�\u0018�|���y����׏\u00149L���\r]u�xB��*\\��\u0007�d�����;`\u0017�nZLn�A\u0015�\f���۷��Wq�Au�P\u0004�0�\u0010;XO\u0004�6\u0002��DH\u0011'+9U�R�y.)1�o�nl�%8�\u0004�;N�㷄.\u0017�\u0016Y�\u001f�=�7�M �\rq+���pA!J������=���\u0002Z;u�p��)�\u0019�kF|���\t�8�\u0018\u0017�ܸ�e\u0012��i\n;֍��rol���2��<9b.���Okr�ޢ�����c�hpA�~�F2?��S�)�\u001c�id\u0007�Q\u0015�BO�x(�{�\u0010E��C�Η��\t�\u0016ق����\u000b��q9�\u0012�\u0013T\u001e�UO���R��\"\u0012-�:��e\u0002{[\u0017c���D\u0010��d0��H\u0001\u001f�S�O�jԓst�At�\fЀ���l�D���F1��w��/_�\u0000�@p60�)�?\u001b�u�����}*_�'e=>v�\u0000�v�P�+u�%\u0003\r�̤Dr�ՙ�mx���k��\u0005\u001aj\u001a�U\u000b\u001e\u001a |^S�י�J�\u0012\u001eY�!�Z�Y�EY��.�AEa�]k����p���U\u0016\u0012�n�\u0000�:*�\u0011�\fi�E�-�1\u001a��iK��T\u001ea�o-��iX�~�„%���^e��\t��K�.A�W/�\u0019_����͂Q��\u0003i��V�\\����\u0012D3�\t��\u0013g��ZQ\t��i�\u0018�\u0004ڔ���2�\u000e�hE��9�]�Ԡ�w�\u001c�/<��L�\"�}�L�%�|�\rr��d[S�]��\u0000���Tm�\u001a��r�\u001c~qQ�\u0016��\u001d��Ar\u0010un������Nh�\u001d��}��-\u00143�\u000eٿl����[\u0006R�O����w\u000e Ir}\u001emG̈�QY�d\u0014;n�A\u0018�\f����qOǚ\u00135*͠@O�\u001e7 ��?O\u000b8\u0001,*��v\u0012���&H��L\fM\u0003%�N�Ia\u0003�9�\u0000��1��*�I�&\t2�b�`C?���\u0016�U\u001f�y8�F\u0019-\u001a>l�w���9\u0000U�uzP���b�v�;��<�14�u\u001cq����\u0000*\u001bh��\u0000\nS��?\u001ckt�\u0012�ձ�˜�g\u0002lk\u0006/��O=)�$B�_j}\u0014�@�\u0019Sդ�\u000b\u001cs����q�W�\u0011#�BnZ1�\f�V�nh\u0000Ξ�7�W��\u0002\u001e՛\f�O��Uփ���������\u0006�7�ר�`^�Q��m�|x+���f}�+�eĀ\u0013�r�Ӳ�Ys�nSq�A\u001f�\f���۽�x^\u000e�\t�#\u0013�XG@�A`��ɴ�F�t̕��}\u0005\u000e\n���Mk\u0001b_ӌ\u000b����\u001d�Y,�/����;��|�^ ������\u0010)hs������x\n�\u0005\u0000\u0018�r=�Z4=�6+pkʺ+������\f�\u001fF0J��N�5\u0002�\u001bH�o��e�_\f�X<��I�\u0017�\u0007���\u0012��K\u0013�>�鍓$�ז�'Z&\u0003��?�d\u0019{�L\u0013{q�����m���=��\u0003��ʣ��$��$*�����6!��1ł��½s\\��)�Op�ܡ$x&\r\u0015�@d�A\u0016Dԡ:�,�|q�O�IJ: {\u0014Bv<�\r�\u00137\u0011\n�\\$�Y�\n�n�A!�\r\f��ۺ\u001d�;dĺ뻧�ޱ��p��j\f�\u0005\u0015z�p�֣>O��\u0004�\t���`s���N��\n�\u0013=$%�^\u001e�\u0014�w�\u000b��\\�mD�YF\u001dz����&�f��إ��yp\f�M����\u0003�Ӑ�I4�vw\u000e`��A\u0014mxL�l��Iַ%H�\u0013��s�\f��#s�E��e��.\u0001<��A���@쮳\u000b�?wI\u0018�h�&A�\u0000�õ\u0004\u0001���t(�O���Ʊ�9�\u0011*l�]\fD���O��j��D?\u0001j���\t�a�{���v\u0014^���V�J��Y\f\u0017M6(ۺm��T >�ǘg�#�\u001ed\u0017G���鏎�/�.ʉ\u000b�@�}�(v�{07[\"П�\u001c\u0007$r���\u000e��\u000bQ��az\u0005�!.��W����D{��\u0003�{�9^_u9���ŲގͶk~��iU\nw\u001f�^Nb���\u001c_+���\u00110|k̸v\u000b\u0015+d\u0002�_\bڠs�1��$-�\u00054������x\b\u0003���9\t�7~8\u0010��0�p�p�A3�\rp���U<�g\tH/9\u001aތf����u\u0000�O�%h]c��\u0000���VmaCf��\f>Qذ�8�� ��ȼ���v�\u001cۂ�\u0012��3�L\rG-W\u0000�\u0001���}�\u0016V\u001bF�\u001bV�M�F8�t�7D�\u001cj��n\u001c����g,?�\u0016��¿TPq\\\u00012�(u)e>\f*QQ+Aa��\u0000%��q8�eU\u0007��Ҧ�\\\u001f��\u0001_\r�t��Jy9�\u001bv\u0012�J���ZT�\u0005�dҸ��$\u0010�a�\"ԓf_�\u0007\u0002�oD\u00126J*�_�<\u0012ķ�>�]u\u0017t��lPd�Ap�H�w؀\u0019� �Q�E�Z{y�e� �1Ch����IF��\u0003��>\u0004�\u00079\u0001\u000e�\u0018O\u00153��X,e+ƠMj��I�\u001f��`\tlp�A!�\r���۸Ւc��cz��N\u0014\u0012\u0019�\u0006�q��v�����\u001ah��\u001d t�j+k�@-g�#͍�����\u0007۵\u001d�E���d'~�����6;�\u0016`8�T��ž�\u000f_m�� �0C���v�&�z[�O���u�U\\k\u0012\u0000�N�4�g\u000b��4�\u001bv�y�������p~$M2�i�\u0016�[��:���X�5��!\\�l�i�8,�\bbp�uZI�Φ/��\u0011\u0013L�r`3T�.ǢY\u0005&�K�\b*�'\u0010.�\u0013�$O���תW�6\u001a5\u001b�dm,7P9uQU6���b7�\u0005�ו�~�Sg�6K\u001d;c��|�D\\uR��\\�6{�\u0019t��V���[����/L�p�A\u0015�\r����ʰiy$\u0015�\u0004�\u001791T�z\n�\u001e\u000f=�S9����I�)���\u0011��D\u0002\u0014�S�\u0000�\u0003�B��J\u0010�]ߵM�պ+ی<���.��\u000b��\u0015�0�ݕȦo\u000b�8�. \u0006�\u0016�\u000b�<���S�q��\u000fgS��Ԭ��[\u0018�\u0006�y*���i,�\u000f��O$�O�RQG�q�\u001a�=lRRY�\u000b��\u0005]�y\t����]YކtP53+��\u0004���;�\u0011�\u000e�Hש�(�P�����kz�(���\u001b��\u000e��4���i\"�V�r�Z�*��!̍��El\u000bc��?v�.�\u00060��e53@K�l�YM��<�FUFL\f�I\u001fu��ѣA\u0011�\r���O�<��W��|�'ԙ�\\�\u0012�\u0016AP�s�\u001d�ث,�\u000bFHEFc�ۺDtI�E��\u000e��u�\u0018A����rmԛ_�\u0018������\u001b�1�c81�\u0005Q�稪�mIA���JI�\u001cS\rЫ9\u0012\\\u001fjv��j�ľ݌�\u0007�Q���\f>N������K��\u0005n�\u0010hUh�a�}��ʚ���\u001cɄ[�PC\\N�q�`�\u000fQ�U*���>|�ėg�p0wV�toڇ�\u00044�\u0011�\u0003�$m\bj�\u000e�x��.ss�7\u0013~���a�\fU�\u0004Ii���\u0010\u0010ƞso�|�he���#�#��m\u001b��\u0004�Y\u0006d�\u0016�A\u001f�\r������#�H��\u0012�3��\t�\u000b�I�nBL�rQ�\u000e͞�A��b?>����!���e/�w�+��Մ!{i\u001d�\n}i��-�_���Ҵ�\r�0�>�o��)�G����g\u0019�A�h\u0007ߕ?\u0010��!�\u001dΗ���\u0015*Q�\u0010|j�ҍ�ZF�E�2O�^��ZU5;�6P�TU�hN}�f��=T\u0017(�TY\u0010~�\\d\u0019��Dr�{�}�\n�\u0012JH\u000f�1�E��.B;����My���q�\u0001xJ��g\u001f;,���*!j��k~n��a�\u001c�r��Ȟn�\u001cƯ<=cG\u0002��[\u0001p��\u0007�\u0015�ٹ��a\\Ƕ���a�t\u001a;\u0002��a���\u0017\u0010\u0018ݣA?�\rԀ��\u001d�i��\b�\u0002Ϟ]��X\u0011P=Hqa�>���\u0004���&EAH�>T\u001e�`�^o\u000e�x�:�\b�֨�ۤP@K�\u0011�=3�L�J\u0002<�?9P@��ྶ�#��Z�Z����)��bK�\u0016�f�|\u001d��t�9���ѻ,v=Jx׸i���R9�Mp�?�4\u0019F�c�5�3\u001d�2\\7�Cn�\t8�o�X�֭\u0007\u0018�\u0015\u000f\u000eڝ�Ky#�7$\u000e�.�3r��W<'�Zj\\V#�\u001b*�\u001cA\u000ew4��Bv�X���\u0016k�\n\b8�`RY\u000ezC/l\\���\u0001�#\u000b8�m}]pB13��R�a}\\Đ��c�\r\u0000^ך�\u0005�Y\u000f���|��c�Ϙ\u001d�f����d�Y+�M;�\u0018�\f�te�%u�F�\f��W\u001aHأA$�\r�����u,$\r\u001b����UV\u0010Cq\\c�&�| �D��E�\"ΐ���\u0010[����\u000el�Lr��v1�(,0\u000e�EH\"�:��Y��IJ�)9/I\u0017\u0010i��fd}����\u0012b��4�\u0004�V�zDm�B�f���Z��e\u001d�*#���4�-O�nӞS�U]�A�;\u0014�H5Y\tz�nlO�\u0016\u0018���j\u0000�G���b �B�\u00128\nμ�P�8��Y\u0018�\u0013:+���\u001fd�Ǜ���Hq5�61��2�(�\u001a����\u0012����zF��\n?��\u0014;|-zs \u0019j�?e7��fW���\n^��)\u0013���R�\n\b��5I\u0001���]L���=\t��\f�����\u0001�HɣA)�\r����Ow�,\u001fy�3C��A�\f[�F\u0017�^,\u0005�����\u0005\u0005�\u001a� ?�\t�,�y�}{�l?&\u001fY��?w�QХ�ĭ�\u001a�d {�4��& >����!]�֤s�����~p}^|\f&���e}�k\u0000����l���\"\u0001\f��>\u0018��c�;�K�~�ۏ�mq�\u0001\u001dʕ�&;5d֧\fd��\u001c\u0019�'\\�٩q\u0010`�i\u0014�� 1�c��iz\u001bz�܂O\u0014([ȑ�C%9h2�\u001f���R;�\u0017��F\u0017\u00120��sg�wR����V\u0010��(����1\u0015\u001a:@��6E�c ;�_Cc��^'�\u0006)�\u0016+fV\u0000\u0000Q@�֎4�4;T�Q\u0007�\\�+�O�\u0017�X��A;�\u000e\u0010��G�P����%�\u0019�_B�\u0016;�Q\u0004�#���#���ԩ<@2DO�\u0014\u000f�\u000b�\tk��:�\u0019��7�l\u0006�\u001f��K�����\u001d\u000b��Ot\f�dG�s�\u0017�ȶS�\u0000���t�\u0012-�x\r�# �3*�\u001f\"�W\t�\"�8w�Yۀ�\f$[���\u000f�.�Ɋ��%A�\n���\b�\u0004�$��gaN�Բ\\�\u000e\f�����i��\u0016*1!���-�xKR㐑ܴ\u0017@����3�O�\"U}m��? Y\u0012��\\H\n�H&޻N%���[Tf��3C:�\u0010$\u0003]�&On��Ӿ�=�\u0005�Nxm\u0014[�it\u0003���O\u0002������s6cUpS��ڙ�6amq�P�`�\u001c��Q�U!�5�\u0005��,k1{\u0000>���\u0001!\u0001\u000b�l����mFU�M,��r�VC���5^�4D�\u0003ǁ��BP�\t�����M�\u001dʦ|o\u0004����_�\u000b��C�v\u0011�n7\u000bq�\u000b\u0016J�*04�\u0005�\u000eDO�3��',kp\u0018D�D�oT?\t�a������\"�l'l\u0003�\u001f������FڣAC�\u000e8�����\n��\n@\u000f�k���\u0004�ो��v\u000e�[Gɶ\u000eʻ�\u0007-!��HE\u0019�\u0003:�P��8T��~�\u0001�\tz\u0006�7�.�'��\b�q�LI�M�@���\u001fa����­\\�]�H1'�ٛd��ɤG%�n�e�\u000f���O\u0017�h��-��;\u0010��\u001c\u0006\u001d���_�\u001av�n8\u0018��M�\u0019�V\u0005[��O�5`�4��[�򠨃��,}M�\u000b\u0007k\u00029�A�\u001bd�q�p��h.<\u001dqYv����o\u001c�g\u0014�|�W�&��}tL�4�<0AP݊#�\u0017\u001d} ��Ϩ���\u0000h\u0007ך�l���\u0011�w�\\O+;��:@��ǫ��u�A\u001d�\u0017ȥR&/�9l%�n���[��3۲�� 9�\u0015�f2�n��{�aؔ\u001e��Uz8ߣA?�\u000eL���X����\u000e'�fGyQu��}RF������'�ZU\u001d�ض\u0017�\u001c��\n�\u00031@o=�4�z\u0014�\fi�nd�fQ�k)�{Cw��4������\u0001�l��)�\b?@G�m��u��v�1?1\u0018��ä���ہ��� ��+H\u0017��w�\r��gpx�� *\ba)=Ny͑�B\f\u0006-���Y�5΃�G���LYix����F\u0013�|� \u0019�n\u001e��4s�|\u000bt'\"#��6ɐ��.`7?��x��5`���D\u0006/�\u001d\t\u0010x��A'3��&�p��jc��\f\t�\u001c���\u0014\u001e\u0017c��;*]U������լ�\n\u0014���]\u0000�paM(n��V�m:��]U��}�\u0019�O7DA��b�M.r��`ۍ\u0019W0�ۣA(�\u000e`����ж�~\u0004Z\u0013w)5E�S�$��\r��ݮ��\u0014ͦ�c\u0011�j�>\u0015�:�[�)��:\u000fR\u0010��J�iY�t\u000b�\u0012�\\���6��mg#UV�^G\u0002O�Lr��\u0007\u0006�N\r\u000f}!��S�R�ڕ\u0017\u000b�,�/‚\u0013�r�p\u0018�;���\u001b\u0007\u0007�.LHo@�\u000eZ\\\u001e�\u0016�\u0005z�\u001fQ\u0002�mX��Y�L\u0005��\r}�M�\u0018�=�#��S�\u0016Έ�M�\u0000�F�S(���T4I�L�?/�|C\u0015B���\u001a�W�\u00170̠� Y�C��\u001a�\u001d�8X}��w�Cn8�Ñm�9�\u0006�\n��y�0^�\u0004\u001f���)\u0016��oM��ծvW�J\u001b�!�O�aG\f'�I��l�*ݣAD�\u000et��\u0000<4��.�U��c�I��a&�h\u0004��2�3�\u001d�\u00008e\nU�â\u001e�\u001e2�\u001aX\\qG�\u001e�a�t�m�`\\iI�R=\f��oif�l��)\u0011��]z@\u0002�\t���m?�ު�0�ǟ~wI�}o&��(:���\n8��<�Dz�x�u��ӍE�7!�\u0007��D��k�\u000f\u0010�6\u0000V�������1��s5��\u0013A\u0002*pT���\u001de�\u001d��']9\u001c\\�\u0012��\"e\u000fs1��\u000e\u0007�U�\u001al\u0016��3�I�yA� ��\u001e����>\u0019���=\t��Z.4���=|�B'H�\u001d�*��qƏ��B�1�~��P�f�߈7�Qm.YH�C��n\u0006�U0>���'\u0005��o\r�#��Қ\u0014f�W��PK�M~7�\u0010\\'\\\u0000�)��n&m�pK�ڣAW�\u000e����ɒ�J)���(�C\u0007S��@��5�q��|\u001a\u0012�τ(�9\t\u0002��>Ђ�g\u0002��jZ{%D6*#X6�I�6@P�����?;�d\u0011Z\u0011�$\f0yۦ\\_S\u001c��7�{�=�\u001edl��׬�@\u000e|��\u001c\u0014�\n�O�\u0017\u0016nz2�ɓ��\u001f?aV\r�X�f��\n�Q��mEhpM>{��zq�?�ӕ��\u0015P\ns��f���<��H\"0R�Y����\u001f��XR���mn\n)�㫭#�\u0015LJ�`\u001a�Sh�Y�vr{�M\u0010#[J\rZe�\u0013n��F\\�V���\"�\r\u000e&\u0011!���\u001c/[D�cM/��T�y��mY9�l\u0018xh���2�w���\u0017��ǭIj\u0010�p��I4����SU�r��Q����ŝ��\u0000��%��E7\fE���\u0013�`��X!_D�ޣAE�\u000eĀ���g��ܔ�\u001cZM���Q6c��?{��r�$��5�\")[6�!ݪ��n�ÞU��A\u001b\u0017O��4s�~j�!�N��T\u001f��Q�\u0014P�!JU8dg���k���:�]�3I\u0005�%\u0003Nءݵ�s�TiG�l����0��NV̱�T[��k��\"v�����/��=��]��eϯ�(���@ w�;<;�\u001f�\"���\u0011�h�k\u0001�\u0018w\u0001\u0001~���\u0014o{\u0016<1���HS���h\"R��\u00134\u0014\u001b7\u000e�h�\u0010\u001f\u001aݥҁ��҉\u0017�\u0014�Ö�=�[\u0012�\u0002�Q� H^���;j\u0011��+���B\u0000\u0007����_c��6��wiА\u0010�_A�D2�\u001ecň���[fZ�!4���\u0019���g����\u000b(\u000f�\u001e+\u001e���jRr�ߣA5�\u000e؀��T��,+���\\\u001a�\n\u0005�ƹ8T\"��\b;8��\u0012B�e��t�lh��:gX(��\u0003��yy�ԿCv�ʰ�/C�\u0011:��m\u00035 �,[��d��\u0002E�Y�{.�Aq�d��p�Ɋ�a�r�X��O���|4�^�\\1!�Έd���<�(����� /�s�;�\u001b����%�T�W]+z\u0012u�(`\u0004�܌�^�\u0019�\u0005\u000f\"2:�^�)N�\r�˼L��\u000e�%�3�@�\n\u0016���&=!\"Ӣ\u000b`�9Y��\"#����\u001f��\u001a��\u001bd\u0005�\u001b����eR\u000b�oF\u001d��\u000f\u0013\u0003v�\u0012t�\u0012\u0019Y�\u0007�ꕠ|h�-`���Q���k��\t\u0019�!9Έ��H��\u000f.�u\u0018�\f�\u0003�ݣA΁\u000e���ȭ\u0006*N�,.���\u0018�&��e�\u0012id%����b?��-.��f��.\r6��\u001b�T\r62�ͅ\u0013��v�x!�Y�\u001f�4\u000b�t�\u000f��@\u0014��\fU��ج��g\u0012(��e�CMj�5\u0007��U&E��թ%l[\u0012D+�\u0011���QŢj�@����f�B��Dr*\r�f}\r\u000f�������Rcsm��\u0017\u0001R\u00011��9#\u001a�)ь��\n�'.E�Wc\f�G��|�x\u0007�\u001c��V T�\u0017�sƃ\u0010%�)�v��)X�-]�}��rZ�&x����m`Ъ\u001e�\u001a�k�Z=��\u0013w�\u0015D�1(K뛐�e��\t�\u001a5�R\u0018�{X\u0013у�%��f�I\u0004f\u00049�\u0001�&-��\u000e\u0013cgV(�\u0007W�ܱ\u0014w\u001f�E�C\u001b�u�e5PIS�#�+�zg�4\u0000q;���V;\b���O�\u0018����n\u0010A*�M!\u000fP\t\u000f<\u000f\u0015X��M���(�IY\u001e(\u0003h-5b\u0016�\u0019\u0000�\u0019'����)\u000bSu�/7���_��G[\u0005���\u0003��\u0003�\u001d�\u0005uݥ(\"�;���̜m����X���I��\u0018-�|\u0012������\u001eomr�A>�\u000f\u0000��۸�$Y\u0004��Oc\u0003��e�g��\u0011\u001a\t#\u0011�dR�\bG�ș\")�7\u000b+NE\u0003¯\u0002_K�x��X�������A�\u0001�\u0002�\b#�\u0002\u0010�y�%�o\u0014�@g�F5t�x�\u0010E^�\u0000�%�p�A9�\u000f\u0014����O�\u000f�^׏:�{�H�:5қΝ�7�\n�q�\nA��9�4\u000f�Y(�C\u001dK٘\u0019�,|��f�wJ��e\u001b�F��ǼvD��س�\f����Z���/z[eE�uhQw897\u001fJ�L�S��ɒ\u0017݁�2oZ&\u0017\u0005�u��\u0011L�o�.�$B�U\u001e�t�p���\u0013?w[���Z\\�/�̕^D���\u001bs�](U�Y\\O4j�QE�7�.\t��sK����!��Ԭ\u0003I�{�Q�,��\u0016w��\"��q\u0007��\u000b��ֳT\r޳���M�\u0005�z����^�����##\u001e\u0006�\u0010�f4Z�Y\u00188�0���}\u000b9\u0010��,\u001c��\u0004ຯ�R\r�� !%\r�gE��O��\u0017�{1b\u0016�t�@���E M�2Dz�IJA\f\b�P��uk�$m�\u001f\u0017��8�����\f�X\u001d��\f�y\u0011�\u001bN95Ƭ� E����l&�+ذ\u001b�)g��ϗ}{�f��\u000e�r�A1�\u000f<��۷���w��k�Jr�\t\u0005IG�\u000e�\u001c\u0005���~\u0017��Ng�(2����I��[���D�^�Ӡ�\u001a:4E�*\f�r�\u0015C\n\u001a|P1\u0018�m���#�|���\u0011�\rL�\u001a�֋�\u00015R�f֨��)t0��i�L����}lcY�1�\u0012��\u0007�Ʊ�-�\u0000\u0013\fJ\b@m���'�5�s�6�:.�e$�����K(�\u001e�O\u0000p\u0018�\u0019�\u001c{�L��Yoj\u0016�2^'���jmI�\\��Q���w\r6E�\u0019�r�!,tD�l�-���b#�n^\u001c�\u0019�����\\wWt+�>Kv��iZ\\���e)����%�1V�N2��fݸe�D\u0005B���`��\u001d�9`ik���i�ܖ�$n�A;�\u000fP���u#PZ��\u000e\u0006یA!\tn�\u0015ǡ � �\u0012.L�E��<\u000b���\u000e\u000e\u001fuY����\u0003�$~���p\\�\u0019i%��D\u0003�^��~���\u001c\u001d�\u001f��k��ѐMz\u0013^U\u0012���8��!��\u001c\u0004��\u0019G,���5o\u001c�O�\u0005�\u000e\u000f��^\u0006���� \u000e}0)��(��\u000f2J���.ؓ~��\u0000_\u0018�ৰ�1��o\u0007�\u000b!�jz\u001d�9*\u0006V\u0006\n�5P������:ț=�?�Ѧ�'�%L��j�-lJE��P\u0018\u0017p��ۏe;\u0003#�\u0004�ꘑ�\u001eX4�.��L���W�f']k�lx�����G[��8�#�����B�97��fwv\u0003\r��\u001e�\u001b\u0018<4�X�A���܊f�Rw���|��r�A7�\u000fd��۸\u0002|R�nh�e�Q\u000e&��70���h�\u0006�h�\r]7P}�}e�T�>\b�m�Sb7�ޞ\u000f ӳ�\u0018��Pnsgd:.O�_7�Hy�ɶ�\u0018��]C\u0003���}BU�d�+ȣ\u00164k\u0011�G^�f�\u0003\u0017)\r2������A)������\f�@ڤ@��܂�����,�\u001a�\u000bj����\u001d���߈�`�{}h���\u001b���\u0019��\u001b�Ex�UCH��\u001bPBc�r�̘��糫�����{V\u00195\r�F\\��\u001eoWqq#M�\u0013�7�w\u0003Q����40\u001d�G�}�樧�G��I\u0016���c�=5�\u0013\u0001�K�\"�8\b���������\u0004&g2�C�q����Y&\u000f���w��0��j��\u0012�(�?��D�\t���$��B\u0013\u0007�0�>�0}{5>�\u0005�\f_Ȍ�����1e�2�%|�\u00056\u0010-2ݢ�y�T��o0��m��G��\u000e�\u001c���\f%�}�\u0007f��]m��o'��t�;�x�Jp�A\u0000�\u000f����5�\u000f�%�2�C�\r[-��:�{����,g�B7f�\u0003�)�죋ӐF�]�/8�-�,;N�Ãx&f���\u0019�Sn�{6'?֭)7C\u001e�j�ӑM��H0�C'��\u001a�\u0015 `1�\u001f(�/\u001b�@8�\u0011��c�F�\u0019�_\f�m��k�%;q��/`�\u000f���^3��\u0012\t�h\tɊ�q\u000f-|� �!��,�u�҅P�\u001a\u00109Kt�\u0011�u\u000f�Z\u0004;\u0001ҿy\u001b�%(K\u000eVύ%��\u0016!\u001e\u000bt���Z\u0002\u0015��qwP�A�k��\r�=��L�j�����)��\u0010(��$@{�37�p�A\u0017�\u000f���۸��m|m9\u0016�:\u000e�\u001a�g�I��U�\u001c�L\u0015���h�V�(��|gh�6b���y[y�V��L�W(%ɽ�{g�'�[z��İ�k��\u0012\u00192g\u001e�;�7����:>+}|�v�V8'��\u001e%�\u0018��҆�q\u001cBI1)���\u000bW�\\�,M\u0004{\"NN�/C\u0015�\u0004\b��a �ƻg��>MJ[���CǴ�D}\\�\u0011+��\t9���z\u0012G\u0019\u0002.k\n�!�N�\u0014l���\u000f�O��X\u0002\u000b�/�?�r�G��\"�j�@������\u0003��\u0011\u0012\u001e\u000flm�d�)���Q��`�*��b�.�Om�vǖ��\u001aF���g�7�/��)�r�A\u0004�\u000fȀ�M{+���\u0016r�\u0012�����G��\u001f\u0004+��*=\u0005�w\u0011�eWw�sz�Rp\"�`�y����{��P0g«�\u001f��M��qe�\u0015�n��8ܸf��\u001d%�\u0004d��\u0011\u0007�\u000bB0��>�>��5�uذ��\u0018�~<�u�˺|\u0015����sm\"���=ds@�\u0000,Rg����\u000fޙN1O��W��q�\f�B=6�!`���ʨ�\u00109\u0004�8���\u000e/\u0011r��0^`��Q��mto��:z�Z؛�]�=m\u0007���N����38�G\\�=�����~��(U�맠��VU���I���\u000e��$Z�@��\u000f܀����-GE�f\u0017'.b�B=d\b�^R��c�\u000e�u�hx�j\u0011\u0012�2�.�;J�����\u001e\"+H�\u0018��M�%�sʭ�/�n�7��\u001a[Z\u000f\u001b�/�A\u0000�\u0010\u0004��L�ܺ%��j/>/�,�Û��:�<\b��i���%Q���\u000eߜ��\u001a�.�R\bw3\u0003���T\u0010#��\u0012�g��\t\r�Ft\tY��a�~��\u0018�_��\u0017w���O4���!� ٬T\u001f�\u0006�I��.0�!\u001c�\u0011�3n�5S�0�ˑU�\u001fm�Ͽ\u001d\u001a����\u0012yVӇR��O:^|#�2��\fM\u0002���깭sk�\u0019��\u0012buA�>�\u0002���O\u001aX\t\u0013���N�d�0\f�_�v����l\u0015��E�T�n�2�ă2�u���]F�x�\u000b�Y��\u001d{�hҲH�\u0001f�t���A\u000b�\u0010\u0018���\u0013���\u0016�J�b�����\u0000˛j���1lA\u0004��\nu\f;�K��t�+� ya�\\��$��\n�@^iq�j\u0015\u001a�l2�\r\u0003ڀ�W�Y�9�J\\��\u0015��`]�R��m\u001c�\\23���.�8\u0013��\rm�K~\u0006\u0018�|��\u0017�;�\u0002mC�D/)�7�T7W�!\\f���۩]�M\u0006���\u0002*v�u��zd\u0012d5\u0002\u001f0�}�9Ŕ�\u001d&N`F�\u0011�t\u001f��\u001e\u0010L&���j�A\u001b�:�ڵa|r��h\u0010s�:^\u0003��>��40��00.�0Q��UI�\u0003�Uu/��O�\u0006h\nv�A\u0004�\u0010@��L�l\u001dǘ�E��D�q��Ur~\u0003Y�\b�\u001f��&�\u000f@)�9]V\b^���2�˰��F6��^��:�|o\u0011q�q���i����mW�;���p��N\t��\u000b4�L���%P\f��M(����\u0012���\u0004��2�\u0013�tL\u0005�����-�J��M.C[H\u0017.\u0014��!����E�8i��\r\u0000ئ�����D�7\u0001Q��)�\u001e5�Y��'\n]܎.\"�����\u0006��*\u0004H7�'\n�o��\u0011.\b�\u0001$\"\u001e�rqhx�Y�\u0019�\u0004�&�L=\b��zר�أjVU�!9P�޵* �����5�/#y\n�l<�\u001d2vh��p���.�1�#�8�\u0011�x�l��>lzL�T���\u000b\u0015\u0019�Lظb\u000b]\"_\u0000q���S��b ���H�gx?MM�\u0013N��Vږܜt>\\\"<4DDH0�U�迼Ѭ8l���d�AN�\u0010h��0\u0014����קּ��N��'�'3c{�\"X�4ڛ\u0011\u0000B�|qo\u0014C\u0001u\fL@㛿U0���V�06��*�\u00159�}چ�\u0017Sǔ��N��Ys��Sd^'J�)J\u0011V�؋t�h�g�1��\u0018xw\u001b�ڃ_�t;њ`\u0016�+�skE�K��!��]�MO��\r��k\u0003<����c}\b�\ty/\u0010�f�I#��ٌ�[H��g1��{�YIk�U��F��Q9s*�\u00061�4�\nh\u0015Ӈ����W�j\fA@pU�V���k��05|*2�\u0000�[\u0011;���9ʖz�2��9VhI+�\u0015�s�-X��\u0000�u)]\u0004���P\u001f\b���6��^�&����\b� \u000b�\u0011܀sy�\u000e\u0013���A��\u0010|��}b�|�0%H�kh�X@N4\u0017j�;\u0001�K��٪\u0000x�c��4�xR��m�v7ʈ\u001e�c�\u0014/�b\u0011�I\tD\u0002����R :�\u0000��m\u0013�\\�\u0006O�'f\u0010\u001a�\u000f���\b�\u0016h�����,�uf7�j��E��\u0005-�\u000e\u001d3�³Ԅx+\u0007M�Z����\u000e�;z��>,b,$�;\u0002�c\bh6�>��������H ��i����EtWP{�{���\nz�����n���y��\b��6��\u0003\u0005��\u0013��5�3E$�;�ո{]\u001f�|5#�(�r7#f\u0016]]�\u0007P����\u001cg�'\t}�|�\u0016\u0004VJ2P�\u0000\f!Eܴ~\u0005CVR��\f \u000f^�}��\u001b�c\"��\u001dQn�;\u0016����X0L���E���Ͳ~��t\nh@�L\n�=k��[��A�\b:uau\u0014*�\nXR��\u0014o_��U��\u000bM\u0017!�=�\u00067\u0018L�� �#��梊y����\u001b���\n��AV�\u0010����\u0016�m�0�\u000f���@J��xl�΁}�\u0013��I���O\b�_-ҭ���\bB\u001d��'�ܨ��Z�~\u000bu3�c&q�Y�\u0007c\u000e\t�K��ڐ��N��a\u001a�\u0013ȳ�!a�q\u000bYt\r\u0019\u0000\r\u0003�ȱ`�\u000f��\u0013���Q�Zg�i~\f\u0018�!^��)+Q���J]��\bw�\u000f-�e��\u0000�'��8��\u00165䦨2`��\r�4���.n\u0013UB��\u0014��JG��a�u}��lMg}y\u0016��ʧ7��<�$���,��O���1.\u0014\u00055|�8�f�����3�7�ev:��;���\u000f���m\u0015ÆVq�����A �\u0010����\f��LS7\u0004���3\u0004 \u0005����z���-�\u0001'<1t/�cu�E<�\":/G�3\u0002\u0017�\u001c��\u0014a����\u0003�DjLk['һ�_�j^\u000eϓж��{]i�P�]l\u000b\f�\n�t��R��n�xJ��j0��?I�f\\�\u0011�t����iu\u001b�����\tV�\u000e�O(�����\u0017p\u0011\u001a�>�:�ٗ��\\�\u0001D1a�c�u\u0003�\t\u0016��߻�}��8�����d^�̐Q�\u000e��\u0004,`z@�T�\u0001i�-7 A��\u0019��eq���zkd�����q\u0000?��EN����$'kI��qG�%\u000f}\u0002i\u001aP葈���q\u0004�*���_\u0014�>b��f\u0003Kt���A*�\u0010����\u0001\u001bc5���d���44�:\u0010�p\u001a6d�q\u000fض\u0018�|�7\u0015K�=�����\u001eH��\u000b��#9����Ő����LN\u0016\u0002�z\r\u0015֚?J\u000b�k�\u000fG��w)�A�\u001c^�֚��k\u0013@g�4}Z�e�lj�l��h?h�}��1jԤ�H�\u0011]-l��vT��U\u0018bu�V�\u0006ڸ�}����\u0010�bc��\u0005k��\u000f��j�/���\u001a�]\bz��h�\u0014v�\u0011� �hQ�8��\\\u0017��#���S�I\nwB:��>��\u0012�\u0012�\u00013��|�$�R�p\u000b�\u001dLWm\"��Fe=��\f$�\u000bd�X�1�-�v�_������(�k\u0005+\b&\u001e{E�\u0000����DC;���\u0012^@_�j��A��\u0010̀��\f��0��?{�\u00167/\u0018}�\u001a�^0~�\u000e�/k�\u0012�%O��/�\u0004�d\r�{�\n�\\�6�9DkFI\u001d+\u0002q���u\u001a�����\u0003���\u0012\u000b�\u0016�\f�>�II�_b<�Y��^�\u0013�&�`��Z=#����.\f��`((�39w����xJ�\u001b�ͼo8g�r�?��h>������#̓�o�{�ԋ�ꓪ�k\u001e��\u000f\u0018����nĔ��\u000e>�D�\u0004\u0015��e�z�W�E�\u0000���ڽ$\b��ޣ\u0014ug�ש��m<9iS�b��ƈ����E&��j�3�U\u0012\u001eH����\u0017��ks����A�\u0000��4o��c�0G\u000f�հ�\u001a�|��?]�����\u0013��u�F���\u0001\u0010�\u0019Ǐ�� $�}Za�멝\b����A\u0005�\u0010���.E!\u000e��\u0007��U���[�:�Q�Q��\u001a��] �{��n��\u001fI�£���I�8j��a���k�r�����W�v7\u001e���q��<�f�ܲPx��;c0�����]����\u000f^���0�S\u0010}����\u0002\u00012r�\u000b�i\u0001���\u0019Q0:�C�l\u001c�0z�\u000b�d�[�����\u001f�\u000bO�wUo�w�x�%�\u0014�޲H=*�k\u0010p\u001c�\u001d�ט*\u0011�X\\Sm:!���\u0017��V�Ne�۞�GsG;\nd2��q�h�����v�\t��Sl���k�&\u000e\tNƎ~�0\u0007�'v�F!��W\u000f6Y���A\u0003�\u0010��M{/���/�w�_�QG\u0007{�̤C�%t��[�u����O:IG�od�i.d��.�\u0000WNh?�l��*o�%�&O^t�\"}M16�QR��|�\u001a�|�G�vt\u0014HsK�c+#�F4sқ֯(~[\u0018\u001c+?�%�L\u0018\u0014�7���\u0013�^�����۶\u0005��ԩ�e�\u0011���\u0017ly\n��귾���N\u0006�\u0017�\u0010N�\u001f���\u001b�M\u001b�)x�\r�\u000b�Z$\u0015���Zg�`��\r,�\u001c��\b�(<����O��XTBy\u0004ۊ���J��\tAQ��\u0010��\u0010�2\u0015?�D�\u0006�\u0003V�Cߗ$�A\u0010�\u0011\b��L�N\u001d�\u0014��T\t\u001f\u001em\u0005��q�b��G�\u0014��\u0007�ߨ��\u0004�t��]�G��b_]Jҥ�\u0005j\b�����M:��ɮ~\u0006\u0015��Oc��\u001b\u0018��]��\u0017��ei\u00069\u001c̠��a��q�5-��\u000e�\u0014\r���X���#�-��0��+d[S\u0013t�F�\u0014���\t\u001f\u0019���^�R?�/I?p�-��\u0004�H\\S��~<�\u000b�\u000f��J\\�H�\u0016�z=��\u0017z�\u0010㽩�ڠ�B�[>��\"Q�d�A#>��\u0017�N��\u001f�w\u001a��/��U�d\u001e\u000f�<�~��\u001f\u0013@֙߫4����\u0018�\u0000���̙�\u00196��$\u0003�)�6\u0017���\u001b�C Lr4\u000bE��H���\\���'�kpH����!�\t8p}�}X<�A��\u001b�\u0014�[l\u0001e��m��A)�\u0011���۸�!�s�e\u0005\u001a>ft(B��筫\b�Wt�􄲙o�\u0016�Y\u000f�@|X�hK$�X����4r<�Wqْ\u001d '�vV�a��0�2��s*�R�ѽ\u0004��\u0018�N=��4��~�\u001a�j��о���|H~�jV_�b9�*x�w(��\u0007�������薥y�\b\u0013\u001f^\u001eM��iN�o\u0007�M��geL��nC�\u00016�l��N\u001a���}��R\u0007�G\u001f\u0002娴MN�����\u0019���r\u0012|^ӵ�ѭ@MQ\u0001�2f\u001bʼnf�Q�,��a�R\u0016@`��~�\u0015�\u001c���K^\u0015>kU���v\rN�G� \u0011�ވ�� |j\u0001�S� \u001b���FC_mf�\u0000\u001b��\u0013\u0017�KF�A!�\u0011���۷h�\u0010�W_�ц\u001aM�/���E��Ѻ\u001b���R� �F���\u0000����\u0015~���\u0019L!\u001a{@u��<���CS��_J8獏J�2\u0007��g?͸�\u001f�lCL�G\u0004�p.�\u0000x3ڪG$5;6l\u0013us��Kw-U��3�Zl3�8aۿ\u0003m��\u0010C��d8���t�M��3�>�\u0013B`\f��?��Ǣ��\f�9��e�{�H�`��8ǵ9�j��V�A�\u001a��\u001a�����ʨDd\u0018��\u0015�\\\u0005Z{/P���u\u0004���^��\u0007� �~|3A}�'�Լ�;�,������\u0002g'��#�m,:�{l�\u0007�\\}�6�.��WA�mt\u001b�4o��Js\u0011��\u000e����\u0019�h)�)\u001c�a��?��)��\t�\u0015�t̰s~A�߳�`\u000f��֋kC��`q�\":�����;\u0005�.�jSR�A4�\u0011Ѐ�L��xA\u0019�\u0018�\u000ev���q\u0002Nj�{Y��\u0006�p���~\u0015�W�k��O)[\u0013�R�l���R;L���\r#��5���SGIԾ\u0004�*��\n�\u0000_�\u001b���B����\u0000��2Aa`x�\u001f�� \u0003�\u0012�����.H�P!�x�'S\n]��)}5\u0005D��\u0005M�N�\u000b'�W��NH�ĄO\u0012��\u001b\u0006`B2E�\u000e��\"�¢g\u0017\u0015DX�91���c\u001e,�7}P�&ڃ�Y�S�gpa�\u0003\u0007����¤��Z��B;��\u001f�7��~\u0006S��M�Z؆Z�Y��ga�\u001a5\u0005��D˻�7�\u001cc���\"Ҽލ\f�K�\u0006D>�\u0011\b\n�\u0003n��Ar\u0017�,�;\u001fs55j�E/�N�\u0011�cJZ\nڜ���A\u001a�\u0011��L��4NS\u0017���`\u000f\u0011\u0013��\u001e�7m�K\u0005p^6~��ZT{\t����6��c\u00114��\u0012<\fJ�\u001f�P4)�AxQm]�W�Z�G�\u0007��kۥ���\u001d�/P�1�=��\u000e��)��\u001f�F�Z�rx�t\u001cV�$y\u0017R�?ʮ�q�����[=�����z\u000f�\n�\u0010w16��X��p�tJ��p�%��`�2垁�3\u0018�Yv5\u0019�W�>��V���\u0018-^�&Q\t\u0011Z`0|�/Ѫ�0\f�TJ2G��h|�?��\u0011�\u0000���KRg\u001cň��>r���\"Mj��n Ƒ�,�,\n7��`�S�T\u0007r��Ӄ�����\u001a�s��\u0005eJ6��A!�\u0011���L�4|�\u001e>ƛ:\u0000\u0016s��0�X�{4�\u001e�x��\u0012�s�˟\u0015�{p�K�7\u001b��?i��b�ɋ�#\u0011C��FS\u0007\b��6\u001b��\u001f�\u0013�i7y�EO0� �|�(�dzh��\u0010�n��')�ұ�\u0017Z9x�+)}�_�K\u0013�ʬ�9�ٟ�K\u000fs�4�&�\u000fS\u001f�w���W��ԧ$�Q6ULݎD\u000f�f��}�{�P��}oM�X�\u0017�\f�+�qG�Zvs���kR\u0016�#��T�#\u0013X<�3\u000f\r\f��1��\u0002\t�Bc��Ve�\u000b���->��I\u0005HO�O F�z��� ���v�h?�\u000f\u0007��h͢\u0019h�N�e\u0018�K����R�J|\u001d!�.+d�A\u0010�\u0012\f��L�I%5��bB��A��\u0006R�\u0002\u001e�+*��x��K\u0012ˠ�U�ۢLe\n���u�\n&�w,�\rd^j�GI;���3���S�\u001fޛ\u0006\u001c�y��ӓK�@�iG�[��a7�{[#]a�O�y\u0011�\b\r�R�Y�\tp�b<����\u001d�M\u0005!E�߆\u0018I6�ʙ\u0013=�\fS\u0017�\u0019VB\u0000�\u0007щZ��hYC���P�Rmnq@f\b\u0013�H���\u0010|�%�������\u0011��%�,\u001c\u001e/\"\u0018k��,[��mo��\nih\u0000��\u000e���x@�ծ\u001a3�]�����|��{s��\b�e��\u0019Γ��w��#n�\"�f�+�U�^O[�A.�\u0012 ��L�\u000bE�2�G~\"/{\u0013�Jdʕ�kV�\u0005o���@\u000ev\u0007����j}�!�g�\u0018�#/��\u000f#8v�/�s���\u0004u�c�0K����@��b\u0006,G?\u0015�t\u0005�2�)oVA\u001c���\u000fE�!O\\�dž-�P�M�ќ����\u0016��E\u0006�.\u001f���䏼��FV\"�]�Z�R�V�y��\u001a�q\b���K��)\\ٺ{�-�\u0010o�ג�剪m^\u0013���%b�$��\u0013�ySGE*o\u0003�_\bG�����#$��+����ҹ\u0012vho\u001e(\u0012ӊ�>��\n��j<�P��{0E�\u000f������H�`\u0006\rK\u0004VB��\\����w%�|��rv�&!\f\u0001 �\u0012\u0003Tt��\u0011�ڇ뉣A'�\u00124���c]��C���*2'�ϧ���P���5έ�#\\#�b)zR\u0015���t���]B���aK\u0012�X�4�M�\t\tU�\u001e����9�o��ǭ�œ\f���5���¢tþӎ�\u0005.���%��u&!�\n��\u0013�����\\ݷ��̩>\u0016\u0019N\u0004SQzl|^�@\u0002\u001d��5��\u0011���HUTZb�0t(��S�\"wS�j�\ns\b�g�e�q�8�򍱬d�56�r��r\n6�pHo�8�v\u0018p�s�������5��� �I\u000fS�\u0013�P7]9P��X�kQ��\u0000Z(F�G�sw�\u001d�Ļtr�\u0007����E�j��{�b�wiY�\u0000�\u0019SG�xoo��\u0019)\"�A!�\u0012H��L��w�j-�Ht�\u001d����聘��u��NCռgg�\nm�(�DIS\u001e��6�\u0018���>m�ʗT��=l��\u0011Ho`�f�/��n���Xbϳ�}?���NM�qg\u0000�!���ڪ꾾�\t�\u0001׿\u0014��9��N�/-�\u001c%l\u0012M�\f�7l������}��VZ�k�\u0015rb�֔�Ar&\u001fc��M��g&\u001b�\u000e��մω\u0019��ɋ�T�;}�)/���\u0002�T�H2l^P\u0011�\u001c������\u0019b���@\u0013\u0004\u001c�U45�D0\u0011ޒD���z]��76:X\u0000\u0014�C�\u0007\u001a\u0006\u001f'��e'�@\u0000\u0015��\u0015\u0010W^�Q��_u��\u0014�Gy�a�J����\u001b�A��\u0012\\��(y#(\u0003یv%CIN�\u0011���\u001bc��-�Dp�����n\u0016\u0004\u0017��ɲ�e+�^�*��\u001b�7M\u0004��\u0016/�6\u001cǯF\u0010�\u0015�vw�_��ቄ�@���k\t�A�\u0017��$&\u0012\r\n��[��6��]|]\u0005���\u0016��T�u�P�Q��'\u001b�ݻ�\u001f��ґ'dyz�y�w�\bAJ\t �?��Z�\r\b4\u001f��vHќ�fR]u(�\u0014{\u0013D����p�7O��9�O\b�ف���e[0 \u0000\"�F�i�������ʼwy�r\u001fF�q+��vN�4Qػ�i�3v*mG\t�E�\u0014��D���T�\u0005�q�Y�\t��\u000f\u000f}�]S��\u0012l�\u000f�NA�h��\r����\u001c^DR\u0003\u0007!\u00196\u000b\r�\u0007��\u0018�\f}s��I\u0004�+JPW��~T�c�=�iM\t�m�dz�\u0016\u0010�q�\u0013ݦm�E�\u0018�c���P\u0005-��(R0?5\u000b<֫Ӧ<\u001c��YԂ.9Z�}m_�D��q���\u0000��\u000b�Le��Z\u0004J}�\u0012L�TA�񵜪\u0003����%$N\u001ce`��߲\u0010�����A)�\u0012p��L��5����\tA�f�8�/\u0003�O�x_8.��fX�\u0015�9@�j�� �w�\u0018���Eg�\u0000�_$Fر�M#4��R^&�ݹC����\"�\u0004�N_�0ܑ\u0019��=��f$Jd0�%U(ۊ���%y�Y��2���pX9{P�i%\u001b�\u001e�SR�$(���\u0005\"Ǝ�+3�\u000f\b��CV�������Y�h�\u0012�j�W.GP\u0005/\u0003GV(ƈ\\����[4jG�A�����U�z��\u001a�e��.\u0012���z�']�\u000b�}%�/\u0019Gd6�$�\u0006��R�ǭ�쒁DR���\u0007��H�H�9n�L�gPqu�=�\u000b��Vm�҅\b�\u0005\u0010��^\n�Ɍ\u001e\u0013��-\u0004������A\u001f�\u0012���X�2+R?��� ��[�@���\u000e��yӣ�j]�2�SNL>bY�#:#�\u0014��Շ��\u0010Ɨץ�9s�\u0012�\r �����K�ͺ���[��]�H��z�\u0013�ܥ\u001e���a\u0014��\u001a�M<��#��pI>y��\b= \u001f���*���H5bnJ�wEک!�a�搪�$C��\\#�WKW$�3���v�1A�f\u0005Z��\u0019ol��P\\չv��L��C\n�m\u0002\u0016\u0010\u0000���N/�U2=�8|ξ`~�{!�I�����$G�|g�P�0�E������ӳ�q$��!\u001c\b\u000e���8�\u0007U���ݏ�j���̆�orZ�/'�\u0012z�g\u001b�A'�\u0012����\r!��\u0000\u0010w��\u0006t7\u0002J��G�k���c1��zǥ�\u001c�)�&\u0016�'\u000e\u001f�[RC\bv9=\u0001\u0002�p��\b�X4���Bw�^����/\t�϶�P|\u001c�3,�\u0014R x���\u001eO㏛�`�\u0017U�P��(S� �\u0013��\t\u0007ُ)�\u000f���M��\u0018�'���\b##�H\u0017�~V#���<.(����7h\u0007�?�e�>��n���K��[��g1J,nC�=�\u0002\u0005[e�W�\n\u0001]B�K\u000b5u%�d�i;�F\u000b�Ƈ�� ��-@�fH��;R$���A��\u001d��,U\b$�\u0004)��TI\u0005,��oP���o���\u000b�\u0000�kZ�QGb��\u001b����'���\rs��;�$��A\u0019�\u0012����\u0011%~Q� �1�S���J���m��.��*\u001cK\t����3�4r��ZR\u0002C\u001a*�\f�\u0003{.*�i��cQ_��T�� ?g�\u0011\b^DPP��78(+�T�\u0019GŚ�;1�=��\u0006B\u0000�\u001c�9�\u000f�\u0007$=|뵳K�\u0006�V~���z��i\tw\u0017��\"Q�zx\u0000|\u001f�����\u000bW\n���\u0019���\u0017��އ�|\u0017͕m��0�\trJ�\u0013r\u000b\u0002\u0007���l�0A[FN�U�\u001b��\u001a���\u000e#�Q��\"\u0016x\u0002U���ӐY�T��U<�\u000bV�VsɆQ�\u001f�ä:�jd\u0019>\u0005��z^�<\u0014�\u001f�\u0004\n^�\u000eF&p\u0015��g8E-�F��\u0002�\"D��@��\u0012���L�\bۚ��4\u0016�\u0016ԍ� K�\u0007߻U��fj�˜}qu�-��a���#��&A�6p��S�.\f�f�\u0007\u001b\u0001?h�Z��ĕG�G$�w��\t�\r`&\n�Г��\u0011qx�D���Al�\u0011|>\u0014�€�\u0012sc)��\t:kы\u000f�p�tpc��O���\u0014\u0000y\u001a�<�D{p\u0011bu�L�\u001ch��y\u0012!�#\u0014�\u0016�_��<�M\u001eXP\u0006���\u00074J`m\r�P\u001fg.�q*���#�H�~�5�\u001e�f#���\u001e��\u0010���?��e����\u00005�\n\u0005����\u001c�\u0006�&���oh\u0004ڣ@�\u0012Ԁ�L˻[Ef�Z�2\u0013�f_�7�\n\u000f\u0001I�g���1\u0005�`6\\\u001b��\u0019g\u000f��ȱh.�B��^��\u0011�؆\u00153CKz�\u0015\f:\fA\u00197)N�=@W�\\Z��kE�*S�I�ΕR�j\u0013�$�*��o�\u0011��]�\u0019�pn����-���x\u0002i9\u000f,*\u0018d�~�M�¡A1\u001b\u0004��\u001f(����\u000bHe��>f%f����ʴ5.^>�qC٥'�4�\u0016�cb\t�W�.B�x]Ǜ5\u0000�\u001f�63�ޞ���M%�I`Egs`\u001a������p8�Z�A\u0006�\u0012��L���(��'�Kkh\u0001�=�J��\r���\b��\u0018�0x��M�Ņ\t���$���\u0013O��\u0012����\u000e���#�;�۔��'��0�FM\rs3�a�w9g8��e�(4�щ���\u0004�W��-�k�s��=\u00146��\u0011�B���!���C�\u0000P\u0002U�.���xX\"鄕F|\b��_��I0.�+'��9#\u000e<�w*�Տ��\fE����hc.�WD��`[�z����Q\u0015*5��\u0011�s�jp\f��MH����!�Ҍ��m��9/��,(��`m[$�B��cr��5�̒Ե�[�kl�\u0004i�[�A\u0004�\u0012���L�9�}��\u0018\u0016�y�����9t����]N�ǣ�_�\u001d��-��Ы\u0018�\u000b�E4\t&���B��4�w9b�\u0005�e�(oh�P;\u000b5��C\u0001q��t�U�\\�\u001co�o\u001c\u001b�q���O�����Jނ�\u0014�E��1�y2b�\n!\u0002��@2�r�!�Ƿ��eN~��a�&�\u001d݉t/a�i��\u001bs��jz�\u0011���\u0003@���k\u00133��\u0007�vV����;$�ײ�54�]j\u0019�\u000e��|�����\u0006\u0015� R�w��wB�3N����h�X�����T��4���[���?�͙`z�����涣A\u000b�\u0013\u0010���c��!\u0014\u0003����%Y {�X\u0006�F�\f\u0015\u00189�R�c8��\u0019\r�d����KV�����:��#x~\u0016�3w�\u0010{��WpW\u001a:����_���g�=�\u0013[��(\\΀�>ޯ\t���\u0011�DeS���\u0015\u001fq�x�%��,��5\u0015���j�}-��_��̬G���\f\u001c�p�C�\u0011� b�ti\u0002��\u001c�^��\u0010��甲\u0017��(9�!�k\u0007k�>�3�i/�\u0014��9G�n��d�@\u0002\u0013;[y�F(����Z>�~�:��G��e�I�Vd��R�=CK�*��$��#�\"\u0002R�/�/\b\u0004�\u001d0�\f\u001f\b剝�VW�އ�����%����T����/�0\u000fΉtn�����\u001fȇ��k|�Ղ9!�P���\u001a�h� ���ل�r\u000e�皌9\u0006�����ܕ��3F\u001b�i��\u0014䂫��k��\u0014���@}o��\u0004\u0006Y�h93P�=2_�C�����\u000e�L�Q\u0002�J\u001c�*MS\u0003\u000e���;$�w�mS��_i�d_{�N&t�ȕ�$C1\u0002m\u0000�ζ8\"���\u0015T@\u00142�r�7\u0018(F�6�/�%\u0005[s0q�U\b��M9\u00187+��t}\n����&�0r\u0004�z�m�PE�#F\u001ab]n �1���U�U�p\u001d���\t\u001ai\u001aif����AL�\u0013L���b*\f�Y\u0002��#4\u000b�2|<�\r<)����\u0017c��n�H\u0003F[��\u0019<\u00040\u00191OMV�x��k�mF荕(YT��\u0011���\t!S6\u0011�Ըz�\u0017x[\u001dL��>��p\u0014�~���`l��h�.\u0006�s��݂+}\u0013@��3\u00041\u001fW�.Y\u001e\u001b\u000f/�~�Z�J�*&ڙԐIs�C���RCD�Y�k�Bw(�0\u0007�����Za�\u0015���$\u0004�\u0000�_\u0016�\u0000\u0015j��*\u0016��I~�\u000e��.��F\u0016�N��\u0015\u0014�[�E�a���\u0011\\�����q�\u000f\u001e�]�8W\u001f^�{\u0012퐌��-���Ɨ\u001a���C�G\u001f�\u001f\u000f�3K�ɹ��P\u0003�ܙ\u000f�\u0011���D�x{�;��tf�T��z&��� j��;h)��p}uL�&�%:�\u0012H���\br\u0000���AO�\u0013`���l�\u000b[�\u0012\u0014�\t�\u0018��-\"�>vI�#�lA���hg���\f��F=���!�9f\u0007\u00004\u0000��\u0001E\t{>�\u0000)H=*|�]�����I��\u001f 0\u001c��\u0017\u0016\u0007F��2��D�B�|.�\u001bߩqo\u0013J�R��6�6\b��ru�F\u0006�Xf�y��k_��\u001b��جJ1g��\u0006���P�J��\u00118��X֥*�ŀG�B����͑�0��?�b\u0005��Nm՝ѓ��W�*q�\fڎc�JF�\u00112\b�w�\u001dMS\u0004ll��\b��,$2+�i<�M�\u0019G6��P����jW.͓\tYhy��+K��\u000f5YJ]-x.ͅ?\u0013�@:,q���Ҷv��;l�\u0018���K\"v}u\u0001�\b\u001ba}eQ\u0013�\u0011/�ǚ�\u0002\u0017+�{�[�+egyPE�M���\u000fI��A`�\u0013t���ߊ�\u001c�\u0016}~g�Q2�8��\u001d��qpd\u000e�����|I�jk��<\f\u0005A\n1�_!��\u0007#CYh�v9�]|Y�c\u0006C\u0002@�H�̏��'��Q��\u000fm\u000f\u0018�\u001eD\u0015E�C�\u0003X\t@\u001be)���ż\u0013w�\u0001$�M�J\u0012gS�K�?��/��\u0002u�\u00035�d�\u000fB\u0019\u0015:$\u0007\u001c��!�~FN/����% &�\u0010�k\fQ�\\�\u0011��upY̫d6O\u0005{\u0002A*�r�G\r�[�T��[1��\\'ϥ\u0003��\u001a�6���շ�pP��_\\���gWr�\u001bxGP\u000efE^N�~ ۔\u0003i��L���\u0002M.���>O��]6M�����\u001e:��Sz��_�\u000b�8\u001ax:=�e;\u0015K4�S3��clk���(x^�5_\u0000;���=�Z�wC��\u000bޑOn��L\u000b�W�\u0012i�}\u001e�m#�����\u001bi��AV�\u0013����a'�$H*\u000b�R\"U��i�˲,\\�\r�9*��Y3�N\u001a�R�^\u0015t\u0018\u0002�{\u0011��]G\f�(i\\rW2g/�\u0012elr�@��e\u0019���\u000e�o��\u0016r�^hl;K�\u0006�~�3h,��_\u000e�\n.�\fH:��n�Z�6�\u0016\rм\\�y�m:>W\u0004ἔ̙����J�_�0!ljJd\n�v�'�l|\u0002\u0003�>ڭ��ΑW5�.dƿ툯0�P-˸-?E%)*VZO�݉����.�ϵ���Q*\\B��\u0004fTc��~���p��1P��\nd\u001d\u001d�\u000e\u0003EH[\u0003#�\u000b�Jֿp\u0010�П�b�*\u001bG�[\u0016�p;\u001b���6��\u001f^NKlo�������AS�\u0013���L�@\u0016�4��m\u001e��iN$ng:2��\u001c�����s�D\u001c�b�E��\n����;��M\u0006\r�R�]<�L^þ�A�\"�h\u0004�{W{��ħ�G��6\u00159��\u0012�AS��\u0015!����\u0010�\u000e��n۟S��wŌ���Ag\u0011�v-沝\t㗚�N@B��.�|�\u001e�\u0002\u001b\n\u001e�i'0\u000b.)�`�r�4\u001a7�\u000b�z\u001aȻ3����+o\u0003�C%}T�D��A\t�^S�m��4�\u000f�F���ǵ�m7\u000b���;��\u000f{N����}Jf�����60��&�B4�\f��~���\u0018�\u001e֟�\fi'�vu�~R/�~��O{P�e�<�|C[d�����u\u0004�|~�_1_�{���EG�Q\u0006��\t��\f5��u\u00073��e��)��$�^�_�\u0019����A��\u0013���L�3�^��[}%@�oN�\u0018V_�\u0015zvxD����>i���\u000f�L��TQM1=��풍�bf8\u001b\u001f\u0016��\u0003ג�'�h�2wV���\u0005�v3��3����\u000b�ʱg��/[����L���b�/1�l\u001eH���0���\u0003 �3\u0018�,/\").\u0002O\u001a1��ݹ�B#i�\ry��n�� ~\t�4�´��5:��1�=�B\n7�\u0016\u00194��\nŁ�� �p+6Nc-\u000bd\u0002�m�e�hWFH���gm��6��ՐQ<��\u001d�5h0ֆ�����k�v��\b�\u001e�$�1��AI�\u0013؀�L�v\f\u001f\u000f��CG��\u001c%\u0004�L�~U��*��\u001a\n�\f��~r)w\u0002@=JH�\r,�^\riKt���\u0015�:�)��M�pla���H\u000e�[�\u0010�N�\u0011W��l�\u0019�\u0002�Ą�b&\u0004\\�\u001e���o�\u001c�b>�\u001c�]f�斡������D�ci(�{���\u0013C\u0010h�kl#�Ja4maT\u0014�'gO�s\r��NH�lհ�\u0007��#n\f��\u0014|�(�<��#���բo�� ����V\t\f�O\u0001:\u001c��\r���Oԡ�^]$,\u0002<\u0006h�~,�\u0015\u0000\nI \u001fΏ�Y��'�I;-�-OX�(}k]�\nYT��n�\u0014R/��,���\u0014�\u001bm\u0016�a;Țn�lR��'���\u001a8\u000bH�\u001f�\r�k5nX��&єc�\"v\u001cL5�A?�\u0013��L�-&\u0006��\u001f�\u0018���q����\u0013�\u0000*�d\f�@����'r�i-*��/{�9M�sɗ�N�\u001e���\r Vj�\u000b\u0016\u0005Aʦ�ݏ�\u001blfi�Ƚ��gK�3�/f�L�t9\u0010��͋�7\u0004��x;���6n/\"}\t�\u0007Ă������q5w/����\u0001�F�$�H0|;(����\u001a]�\u0002�}�y�<\u0000�^hT��ѽ�\r3`�8�W`t92V�rE�<�wR��l\u001d\u0016bj�Ѓ�\u0018CT�o\u001ck������N��[�b��c�\u0001\u001f�\r�\u00035����6\r\r�e\\Zk�\f�\u0005'�%=�����c�����&�c�\u0017X\u0004\u0005\u000e���(�ʗ��2͖g\u0016�,\u0018\tmn \u0013��z���Z��\u0003��5c\u0002�w�\n�k�~�\\�\rl�\u0016�'��|����,jv��\u0015OHwY��\u001d�\u000f3�\u000bZ�\u00057\t9���\u001ey\t\b��_���\u0012����v�>_���2\u001f��\t\u0013��\u0018w�t�ٷ�N �&w��*OtB�l\u0018'�g;�޹��A;�\u0014\u0014���j��e��\u0002\u0001��WK�c�8�����C��!��ymX<\u001e}�R.��\u001bZd7�ʳ.��}x��;�B\u0015��\t��\u0016$�1K����͂g\u001f�!;䇸��uT�H��\u0019\u0004\u0002��=p��\u0010.\u001aѲv��\u001e�q+�u�\\\u0005����b\r}�\u0002(���\tYo\n6ݲ�\u0002�i�\u0007\u0007�g\u000b;\u001c\u000b0�Kh���\"�u��e\n\u0019�p,��u4\u0003\u0011d\u000b�!Q�\rIS�'ψ\u000f>i\u0013�L j�D\u001a��xV.�_W�C\f+U}���Gf�˽���װZ�\u0015MJ�Kn�[��\nx�1\u001b��e�G�\u000f\u0015��j\"3�\n�Zvb���\r�����]�!����1uyAk*3:v$�\\�=v2��ԢRI�9�\u001e٥�AH�\u0014(���cc֍)������^�\"�^\u0005�L+<\u00078��_Vd�@��a{�\u0000�\u001f��<���|&jaS���I��ܷ懾\"\u001b�r���.\u0007\u0019\u0015��D`��eډp�\f�������\u00038�J��#��v�d��\u001f;\tLO\\Ep�8i\"�[\u0013\u0001x\u001fs$������-�ϸ3\u0000U��a �g;�F���Y��P�#~�I�yݻ}-�D8��\u0003��\u0013�VaA$\"�\n��\u00075L�\u001b�y�2�\u0007\u0007F\b�˹�\\��}iMTe��!�\u001e��\\^�\u0001CH��OD�\u0002�\u0010��P��5�\u0003\u0014�,m{�\r��\u00189dآ�:\u0002\r\u001e�eJ\u0011u�<ӵ��%pQ\u001b�.E��\u001f�U����M��C��vĸ���Ң;~䛶7S\u0006Gٴ��w�=���AG�\u0014<���b\bk.�G4����ҁƫB9#]\u0018��\u0013��Ȭ\u0010�i���G���N���iD��,�t\b���N��\u0005�=X�s�L>�� ,\u0006�Cx\n�i�t\u0017��a׊=Y�eY\u0019em�\u0007I�ߎ���\u001b�UG�:8+�\u0006ja$(�Ym���c�\u000b�\u001dd�8\u000f-}�}ok��\u001a\u0019�\u000fOh\u0001��\u0012T�1Ee.��@�\u0011�2` {�{Q{P=g\r���hgO�Ba���|��Y��Z`�tŶ��tR����3���v�V�<\u0019m\u000bKXs�u}7DV�q��\u0004/��\n�\b�\u0018�\u001c�[bz\u0001#%s넕��J�a�L�-w}�v�\u001c����Yvp-7ֳ��ih�����?�����b3\u0017�i�\r�� ��5\u0000{�w�=\t0�\b���AI�\u0014P���cZ\u000b�\u0013�jp�FB(aW�����Gr?�v-�E^\u001d>�\u0010�+K}�Z;t���M^�d���\n/n\u0006K,�opD����,���m�/\u0000�\u001e3��=A��{�`+<\t��+����E\r�0�O��3�Sb+�\u0004t�X\u000e\u0012����\u0017'\u001fG(ϕ�bn�l�a�>\u0012��.�~b\u000fm�y���\u001e����\u001b�����(h�5���32�\u0016\u0003�$ޓFh|a �\u0018=5\f\u0010)�_��U�h�\u0013�r�\u0018�ׯ�S�}�yW�\u0006\u0007��až�\u001e��ѐMTH?�nj1k�����M�q3��2����$7[�z|3/���dRf���\n�r&\u0012d�\u001de�=+��n�?�{���\u00045d\u001akC�PHw �\nHi8�����ᅨ�\u000b�����}R���㫬�h͋^��/~���F&+(z��k�hJ�k!�\u0007��C\nz\u0004����G��]��𱦸5�ǃ|�q�/٢U�=\u0001p�G�8�^��㐝\u0000Ъ���饝���v�e\u001e�S�n��\u001b����s�]��H\u0005\u0010\u0018\u001bX\u0014'٢�n�Ա'��\u000f���%��!�ƕقJ\u0001��D[����ז\u000b�j\u001f`9cs�\t�>[ �\u000ff�k���A��\u0014���|�)3��\t\u000e��5����bT�u\u0004k\u0011�\u0016�q\u0017f���F��F�7b��\u0004��\u001e�ܿ�˞�E2�������R\u0010�\u0002jo\u0017���'����͢*\u0004\t�A-�\u0014���0Zc�Ѷ�%�ºdߵ���O���\u0002u�I\u001dOh��=�,�d�dBs'\u0003���\u0012�ŷ�k\u0016��\tޣ@\u0015�:$�Nj��e\u001c�\n�&�\u0000�I9S��n\u0005+�\u0012o_T�i%�\u000e\u000fh\u0017\"�{#� �\u0019uQ*��M���\u0004\u0015\u001b\u000b�t��7\u0014֗\u000b{d���i%�\u0006���=���S%��^���\"�Ug�\u000f)��\u000f5\u0015\u0017]u}�u\u001a�a>\u000f�\"�\u0016��\u0006'k3~��\u0007��\u0014IV��U���\u001f�!�\u0019�M'��\u000f\rԓ��!\u0012;�+}�\u001ah��\u001d6�~����\u001e���\u0010�o\u0003�55Q����/�\u0016q�\"#�J�hΗ��\u001c\u000f���U\t�\u0007>�\u00026�t'�\u001a\u0000��\u001dv�A2�\u0014����c�Wf�\f:�W�\u0015�� �T_\u001e�d��\u0017'e\u0014�m\u0014�Y\u001ch�Ca�\u0002������+4`�%�ONm\u0003\u001a�Z\u0015�ٵ��k=\\G�}��{�@�``�?#�\n��i�!��GH`�N9\u0017\u0002oB{�͡��Cf\u001b[��|�D,܅6��\u0000����xA�0�X\u001a^=\t��۸���d>mV��\t\u001d�\n\bږ\u0007��Am�m\u0002Ӻ}�~-�ċI\u0005b\t�C�m�\u0012��@�t��\u0011�UR�n�\u0002�z\u0005�j��U�\u0003䋢��]Mk\u0019���Γ\u001c�/*4-��?a�;a\r���\u001c\u0003?d*���!���\u0014Ox\u0016\u00118�+�ٟ\r�]�������m&��tG�8�t��OD���X��K༁D�\u000f\u000fZ�8�f\u0003<�h�'�\u000eW����E�\u0005������lE[&�����\"�4ȂcY+�2��\u000e����X\u0014��e�����\u0000�4��zO�\u0011\"jF^�(�\u0003qO��\u0016\f��f\u001aw�\u0011��2'��ɗ\u0010Z�\u0017)Ϊ�x\b2�K�K\u001f\u000f�\u0013���2´+��\u0006�@�$@��n�ޜ�������\u0001\u0005�j������R�\u001c��\u0012�\u0013D��;\u0007U5�!���-9L\u0017�CA�)\u0019\u001d<*\f��\u0016�$}��\u0001�d\r\u0015����A#�\u0014܀�L�F_\u0004�)�c��%\u000eE{�w��6�Y��Չ`ܡ\u0011�\u0007��bj���m��\u000bԭ=hTb���C�t3&�i.V\u000e�\u0019��m*\fs�^�շ\u0003xZU]A�L\u000fu�}\u0019}\u0005�\u001b�\u0013�c�\u0016��t\u0011�q)�\u0019A\u000fa���h2=�<��>�!�\u0006R��>A�\u0006�*+>\u001a\")�G�\u0002�w\u0014a[͞��k\u001e\"�J�S+X�-\u000e��̛���i�6�\u0011ƻ\u0013Ӏ��(�����h��0\u0010_\\�E7Fl�)s\u000e\u0012_\u001f���)��c.\u000fO$#Ŝ&\r�[\u001f�\"%����CLH��D\u0006���\u001d`�b���}K��Z\fϒ�ߧ�6:�x\n+��šEt�\u0016�jɣA\"�\u0014���L�\u001e�dEx{h����@�&b\u0006\u0014\b.�:��8�\u0019��>ퟀ����8f^4�\b+\f\u001c�TN/fd����Ud��*����-3U�1��\u0015�\u0017^���dOl��!�<\u001f�`���Z~<\u0002�:�\u0015�5b�4\u000bּ��Joⳛ���6\u0002m:U�1���l��\"�+��Ao\u000fGhl\u001f�4\u0013��Mz:j���g��\u0002qvV�`TYL\u000b]g�U\n�׏\u000e}\u0015�hTmI0L!���I\u001e�v\u001a\u001bL1$]W�hٵAwx\u0004\u0018\u0005��a�Z�\u001b�\u000b�j}k�J�dg^E�\u0014c\u0011Q�\u0016N��H�O4\u0019��P�\u0000�����$�\b)\u001f����&�A���^D��\u001b�A\u0015�\u0015\u0004��L�\u001f\u0019����Z���\u0003�S!XjCr��5���mA�����\u0014��u��e���AM�gN>Z�e#~@\u000e�{���ɚ��|�b�|_\b/�D��t�2��\u001cfQ���6\\�!f���\u0013\"�/���\u00134;T[n���]^�`D��xU�1�\u0007�\u0007B�\u001a�\u0002��!N��M���\u000e�9\u001e�S�Z\u001c�\bINj\u0001g�\n�Y}22Y�l�z��T�\u0012�%9�E��[=Wm\u0006�v��yX-pA'��/[\u0002�\u0007�\u0003\u0012���^\nY��Y\u0015Э��}�]5�~K���\u001cJ���hQ���-410e[��d\n\fR�>'\u0010j���A �\u0015\u0018��L���rAM�0$%����\u001f\u0004V����֐DZZ��okd$\u0018\u0010�F/�PF���E��\u0013\u0018\u00050A��y\u00117�}��ϛe\u0017��n8=�:��u��:\u0002 x&��T\u001d�r�vJ}���]�\u0003.̳O�R�\u000f\f�ճ\\��o\u000fb̆T�\u0016k\u0000ՙ��eSC\u0010\u0011�\"�\n5�d��\u0017�S�}�\"\u0019�\u0017\u000eGX��t�=�$�KU��\u001c/;g��t�Tq\u001d��#\"��\u0012��\u001a�ʫ�����*\u001f1T�\u000f��S�v�\u0014V�\u0017~Q�]\u001chK�ύ���Ȕ\u0018�\u0006(�@+C*���������p`M�>Z��˖�-���|�8\u001c]̶��8\u0012{\u0005�D$�≣A0�\u0015,���cư���\u0011��V�!S�\u0013Wf[��;�y��4:�Z ���\u0017�B��x��Q֗Կ;�;h\f�\u001f�E���\fg���z��%Y�{\u001d\u001c��?\u0010��.�.S�\u001a�E�*ڵ1},\b�\u0017\rn\u001b:G��/�\u0007.�u�)uǀ����Rovؾ_�fƭ�����sV�\f����]N��\u0010��Q�}p�+�\u001a\u0007\u0007,�Q�K9��\u00061G���Q�iqK\u000e�֘�\u0005����v7�ۗ�һU�Ⱥ�F���\f�A�q\u0001(��j��\u0018�p\\���\nr���IŘ\u0016���\u001f�+X�Z��E�\u0010_��,a��9��ư�)�q\u0011��`�E\u0005\u001c\u0000@Y�)�bͬ\u0002BK��ӳ���t\u0001�\u001f�A �\u0015@���d�վ�i�0��mf\u0014H��PH\u001c���K�\u000f��Al�̪�#�z�\u001d�\t����\u0004�\t��\u0005V�]\u001d2{H\u0017��\u0001��\u0014�\u0019��ݔ��5�\u0014������T��{!D���a�\u0007$�Uxtt������,�Ђq\u000f��ް�\u00180���H)ΰ��4\u001f3+�Ʒzw���\u0011�˨�\u0016$�ohER;�jaz��\u00192�\u001a@�'>\u0006u�\u0000=1�T'�S��8�Q��]���R��f+�<�J�\u0016�=Q+�h넷���M$N�f�\u0007nCA=4A}�/�S./ŝ�c)~a-�m6���ꍉ=Ԇ��K���(�W��/\u0011\u001f��\u001e?����DU�d\u0001 �A\u001e�\u0015T���mhd\u0016'7�n'��fI��j�ϪGBi��޿7��b\\��\u0019�I\u000f�b0�=��h���\u0001�\u0001�R�y�Kv�~[g`��xG(reϜ;�����'ԀB��N���4[\u0016.У� \u0011�f�ne_��:\u0007\\FR+\fZ�\n���\u0012J�u[s\u0017�#jk�W\u0001�@f��\u001d�T���\u0006|.|\u00123�AG\u000e�lF��(\u0018F�*j�J�[k��u�$W��D��2��^�)\b\u0014н��Y�\u000b\u0003�FUdV9Ǜ\n�{�\u000fɎF=�V�m;����r�/�&��\n�u��a �\u0003}�\u0018\u0006\u000eN\u001d��\u000f�ۻ\u001a#H�Jο�&�Ռ�E$�\u001d\u0016EkƇ&d�%$�A\u0018�\u0015h���mr�����L�9�����ݣ��>h\u001a��C{qH��i\u0018s\u0017��A��R��\f\u001c-l��G�a��1��/\u001d�{\rYä�2@�L\u001e8\\W��$\b7��K���2�-�/Ԩ%@\fg*��Ӳ����⤃\u0015����,Jъ4aX�\u0013!�Ѡ-����\u0016݈@�\f��Ӟ���>ꕦ�Պ܁\u001cWm�����=xrCbs�V�xcm�ԑ\u0014�d!�\u0019\u0001��g�yzR\\\u0004��\u0017��\u0002��T�|l;y�J�1��\n�\u000f\u001cqu�\b��\u0001�9Ċ.���5�\u0013E\u000e��h\\�j�~\u0000X�=�{�)��u\u0014�c����a}��@��Z�n������9��Ce%+��r_�̵ʕ�/9����廉�\u001a��\u0017�\u0019\u0010�9�&�\b9^լ����ʽx��`�V*u0�@��������\u0007�T�\u0005�\u001c|\u0003kn��k��M��o�t�G��E#�T�\u0001(\u0014�\\�6�+��n�I@]���A(�\u0015���M�\\ԈT��*��W=!K\u000e5�9�!�v\u000f�\u000b���OQ�o��b��=z�Qt�\u000e�u�\u001d8����e*\u000e$�QI�\u0002�:%1�\u0019K��}X�W+���U\b�<�>\b2v\"��6���/\u0019h�0Y\u0012���Pv�4�-�\u0012�Y����\u001f/��J\u001be�ם\u001dӶ���b\"���\u0017Uvzp�.tL9x�`���xQg���-���`���1�����$�eŽ�y�p��~l�\u00177R��\u0019\u0014k��OE��\r���}[�$2�>�m�qm0��\u0016��\u001c�N~gw飞^\th�z7�æ\u000f�>��^�?����\u001a�gbr�\u0002\u000e75P�Ҕ㏼\u001b���\u001dx�Mc���գA\u0015�\u0015������Plx����3&�]�T�\u000f\bb �,�ڶ�{�Z�u<�&J*i�K{I�����N�\u0016\u0003n�\u0012ˡ%\u0007.ՔNI'���\u0003�.,��{_H7eO\u0016�$Ȉ���\u0013�\u00035��|6���n$%fؚTlX�\n�3\u0014��\u0003�����?T���!Ϧ�1��J�S�k�d��n�K�&��S����)����~��Hh��\t��1����Q�!z�r\u0006W�'%\u0006��\u0004��\u0017��i\u001e�塋m�ʅ�\u0015��a�bje��{���\r\u001b�zR#\u0002\u0016udP\f\u001dҊ�\u000f\u0016�\u0018�&�ڭE�\u0001=;�x����W(��:�@��\u0011b��\u0005�!�A%�\u0015����mI�m�U';\n\"I\u0019'��aG���อ\t��\u0005�\ri�8�c�}�\u001cVON���~�؝I�����\u0019!΃&Ľ\u0006g@\u0012*jU�_�\\@\u001f��q��\u0011X�<��\u0014��/�մ��i����\b\b0\u0004�~Ț8[��U%��Y���gp�x̳�\u0014�/͵�w�Y���U� p���~��Z\u0001c\u001a\u001e��'�����\u000eU�D8ێ}���Ať\u001b�z� ��z�řBvKo��޾�i��\u001fj\u0010���{�c;~�\u001br�\u0007��\u0017SWI��3�W�Ls�B\u001a)�\u0005\u0001ہ�5�#�'�(�\u0003R��\u0007:���VQY#\u0011IR�\u001f�Lfa\u001fp�n�?��6��#&\u001d�A*�\u0015̀��eR�S��2\t��s��؇X�ߵ� y��\u001a���|s\u0019�!u_Y֪�ɝS|\u001b�\u001e�L��Yn&���\tj�a3�R�\rӕ1Yl�\u0017\u001a\u0010��\u0007L\u000e9}Z+-\u0000C�\u0016D�%65*ƹ�>i�?���\u001a��Ӓ�(\u0013\u000b�\u001b�.���?�\u0005Q̷�R�\u001f�\u0013\u001e��Ȥv[l4�[SiS�C��Q��/=!�>S1R|�\u0007���\u0018�� \tK�\u0015�@\\*�p��D�7��e�\u0005��\\��q���@̳�+�\u0015��II��\u000e��%��Qܤ�\u0004�h�\u0000\u0000$Y\u0018%�|��3^�]�BS}}b�Na\u0019�Y�b�A+8�\u001f]�,3�#$�1\u000bg�KԳ\u0015�!fI.��*\u0002!�AT�\u0015����Ӗ��\u0001/�׹\u0016DTEn�\u0002|���\u0002��Ј��+W6&�\u001d��\u0000\f9�S��\u001f�,3ҡ����0^\u0014h�y�ૌ�{���-��E��-d\f�˰���)Frۙ\b��\ng�\u0007���v�\u000b$4�\tk�\u0010M�z)��WNe���X�V�\u0003$d\u0000����\u0018b�,\u0003�Nۃ0ԃ�4\u001d��\u000fo��2R™/f.?�i\u001b\u001e�ve'\u0005\u0016���e\t����BS~�\u0010�*�ܮ^T�{��\nI�a!\u0010Z���L��%��\u001bA0B�,��7W\u0005\u0002\\`�I\u00048�;'\f\u001d��?7�n0����\u0007A�2�� �&\u001c9p��1���0wp��\u000e�ԣ���a�\u001c[O�\u000fNs�8x(�\u0012�n��J\u0013��Nv�ab��\u000f�Cd�)���\nKԴ$�u]�$�AA�\u0015���n�s\u001dB���{��E��Pw\"cS&Ӗi@Q�1����#v\u000b$�)���\\,\u0004fz�15J(b��\u001f�ґ\u001dv�S�s(\u000b�]��k$6�\u0005\u0006sM�)H�T���O��%��X�\u0002ݜ��a(���rHG�9x��;�g\u0017�\u0002~��\u0007`�#6m@\u0010\u0002�#~y%�\u001dX��a�\u0003|$p���/�JG\bN5)�\u0013\u0000`�M��\u0006�\u0001�&�P��1���\u0015����-y\u0000�\u0011\u001c+N�Ѓ\u001em��JBV�\b��\\[Qܑ5��\u0002�-,�\u000b�D����\u0000r!�� ��k1�|����\u0000��.�ǷJ��\u000bg��W\u0001����<��f�*��Rr��`\u0003ѽ������O��v�=Ԃ�\f\u001eU��\u001c\u0014*\u0019�07�x\u0002'�As�\u0016\b���lru���f�w�nu#Z�u/�\b.�a;�C��q�'���C_+�0/N���Z9A���\u0018,\u0014\u001c=JR�j\f�kOAw/�ӎ0h�#|�,1��җ�����[��Bn}m\u001b��͚���\u0017/��\u0017x\u001f\u0000\u000b��k�g�$��\u001db·\u001d\u0015\rnh2�C��*1\u001c�2\t_!��\u001d�hy�\u001eF��$\u000e��\t\u001b�h\u0017\u0014r\u0015�ZH��\u0000�*\u0006���\u0003Kh\u0000�P=v\u0010���p2�\u0018.G�0���z�~�d�������C\u001c�3��ʜ��x�h�\u0018x��c\u0015\u0002B�j١�R�W\u000b�}��22�!��\u001d�\u0003�-���\u0017�\u0015�r\n�e�xA�T�\u0005x�Ad��a�\u0013\u0017�DC�p,�;�UK���N\u0015��/آ��\u0001 H\"�$3��+�*2��-�\u0005P\u0006��=\u001d-#\u001a\t��-\u0017��?�����֊���x_*\u0002%�A@�\u0016\u001c���k�]Ї��2ƞ}�B�\u0010��ۆƫ\u0019\u0007�\u001a[[�\u0000#�\u000f\u000f��}�\"\fۿaxmC��\u0013\u0004\f6�\r\u001c��\u0019���\nn\u0013>l\u0012���������쁎�m�?���\u000e���p6�\u0001��^�\u0014;��\u0015\u000fF\u000604;o\f�/\u000e\u001a�=󬯕&ߪ.oCXة�=!�O�j; �p�a�64�q�VG��_\t3\u0003�]��1�.�9��a�T�q�\u0016Կ�\u0013\u001d\u0001rj�\u000f\u0003\u0007�ȲF\u0019�V��5�\bS\f%-r���?�E��`կ�5��b��8�E\u00067�q�R��|�)�Ig0��J�Y�pe\u0001(H_\u0006��\u001b\u001b\trm*JF�7��K�'�[��F5ϸ21UM�jR�\\X�@�\u001f�I���/��\u001a&'�Aԁ\u00160��1�XYt1)�4򻹬\u000bG\u0013�8��,+9�93�[+i\u0004�t��I�=m���CF'��\u0018����U\u000e�^\u0005L��*�\"4{SWĭ�KR\u0007cf�a�C}�q���^��Rh5�\u000b\u000b\u0004\u0005�X\u0016/E�2���SNj����\u000b�-�0��\u001d/\u0015S0�8<ג.���w��H�D&�\u001f\u0017�ܹlH&���ꊑ���􎢙���{��K�a�\u001f��\nǪ<�\u001d�\u0002fr\u0015�4��\"|M�3��9\u0019\u0014\f�Q�\u001bj<���[��`y=�k\u001d�`��b)�����O�dR�:{]%x�$��\u0006�&Z���P\u001e��������'%�\u000e�%\u0010���_Y|\u0018�|\u001ar��n:�|�\u0002�O_W��\u0015\u0019�;��4���\u0016H�\u0018�\u0019/\u000e=�\u001a�;z\u001a�j\u0005�qmh\u0011ÒU�\u001b�7*�&��2~֠D�\u001e�P���ԕؕ�v����E(�\u0006�&wS�\u000bm���yŹ�� ��_�qQ�$�\u001f�T`�#��������F\t�L\u001f �Y7�F\u0010C��ھi=�0�\u0006ٯ�\r��)��r�E�(tR���-A|+7T,x^�\n�ݳ�\u000e\u0004F�j�w��{\u0015�W$�~PP�P)�d��|�HD��V��������\u000f���;�� B��\u0016;\u001e�ܐ���L\u0010�\u0001��A\t�\u0016l���b8=w�.�R��m.)\u0003;���ĭ�\u000f\f�\r\u001fwuW�H0gj�\u0000�\f���Y�j?�Z�F\u0000�4��-gf����\u001d\u0006u�\u0014��\u0005�\f�4�KGM��xA���n�3/\\%�I�{D�W�.�E\u001c\u001d�\u0002 TS�\u0010\u0007�]\u000b�4�4�������\u0005��l\u0003R�%[˜[�X\u001a�\u001b\u000f��\u0017\n\"L�\u000e\u0019f\u001d\u0001�NC1uI~�nM0���\te�\u0000\u0018OjB〿؁̕\u0017�\\!�\u001c�\u0002(���ŗ!�������`��\u0011)���\u0015L��\u000b\u0003�+d=-�\\�\u000f�\u001e�^�C\u0017���$p���LZ���\"��Fxf�O�����R�\u001eR�\u0012��1Kց\u000b�\u0006��3Y'� �A$�\u0016���Lɰʃ�W+�)��\u0016%r\f��:RJ�H�X�l\u001f��a��n�T��Ώ��^^�\t���p\u001a�6\\�Q0�q��k}�\"T�t�L>��%H��{�?,��x�N�6<�'` ���o}\u0007��`\u0019��\u0005^�N/�\u0011�\u0002m=\u0017Pp�Ɓ��\u0018��H8_?�6�Tf�����jR{\u0015֏`+�5�ׄ�\u0018�eX�7�G����yB5��~��\u0019}6�\b\u0002Í�\u000b_�teJU|y�S�S�\u0011$t)��\u0003\\\u0013�ۢ\u0007\u0007����tiVh����,�j�\t�V�\u0004s���\u0003�\u000eS�%����w78�Ȱ\u0000b\b\u0007�\n�z�E�4�]JҼ\u001f۱�*�\u000e>�ed�A%�\u0016���۸�>�<|?�v�!�ޫ�jKu\t?�p��b-Z���W��r�e\u001c�\u0007H�n�4�i���\u0000b�o�HM��m��,���ĕ\u0001�l\u001a\u0017a/�P�}U7r}�`B�R� �tkX�[�\u0017�\b,��\u0015�\\����d$�\u001a��.�mAn�@����uM�q@\u0002�\f]�k9�\u000b\u0013�k^<\u000b\u001f�\t*�Ek�wvE.&_#���z��ZVoA�\u0019�\u0017������_��Γ�!_��\t\u00131fo\rC\fHp\u0015�\u001c��ix\u0006p�\b\u0013��>���4SG.�}�T���ZI��|�%���A\t�\u0016��L�!Z�;��t|�L�}M��; ��KJ[��8к�^#D�#$�lp���.���g��^�O�\u0004�O��\\\u0005�\u001f�9�c��o\fG�)�ܶ�\u0004�\u0016\bC\r\u0017��\u000e\b�=ש#��\u0002�_�<�R\u000eP��z��\u0014R\u0018�.��.�\u0003C|=\u001a\u001d\u0016Y�E��/\u0018�\u0006��1��ib�w/A�#�⻧�v\u001eݽ5 �D>��\u0016�\u001e��\r\u0016W\b幒]�\r?+�A\u0006�\u0016����\u0017�\\=�\u0006�ږ`��\u001c�\u000f\u0011���vWª��A��7I�O ŁNN_#?2��\u001f�CQ`�r,R\u0019E��X�b��B<\u000b6E|\f�>Jۂ����\nES��f�\u0012\u0006��i+}u��\f+}\u0010*�0q�I��H��X.�=�#��R6�\u001e~?�|�!�'V�h�6�����\u0015�_;\u0002>W \u0004!�K@�4�~}�<#�P߯Nj���`�m*�9F\u001b۫l�|\nZ����[�Z��)��y�=�*������\u00030�m�b��K��L�薏>GK\u0004.��;�PD\u0019��G\u0001#Z��0�#�'~-�I��IPEϣA&�\u0017 ��MY\u001fY�+���V��]r��\u0016�o\u0006�r����9\u000b����ݚ\t��_J��g�!��4J�\u0010�\u0019\u0002\u0016+^q�[3\u0015@���`�\b��:��\u0019`+7�+�\u0001�g\u0002(֨\u001a\u0019~L%_�ieT����P�`\u0003U7(a�����=���ZL>�i\n$\u0013��\u0001��Q\u0011����%\u001aW���f,YɦEq��D�O��pd\u0012�C��i�X6M>7\u0014�Ӄ\u0000��\u0000ܙ>\u0017���vQ\u0018i޲ۑ<�p�\u0011��ȹ\u0013\u001e2y@� g��\u0018�C�j�o�'A�\u001d�\u0005(V9�]\u0001_�;ɥ5��Ӂe� eBj��FH(�%���\u0002�s1���?��W\t�\u000fH��lԯ\u0015���A\u001e�\u00174��L�7���^t��\u000bf}�$���0�#�Q�|�9n�\u000el8z�\u0014�*?)�:��r\f�����\u0003u�������M�-7���Fة\u0002��\u0005\u001c�\u0013��n�\u0018�0�@\u000b�\")u�\b\u0010\u0001\u0006HB„�J\u001e��_�#��Y,EٞZ.\t�a�ĉ�L�sᷥ�{z��ή������5�M��r�N\u0005ʏ�O�3/�:�v��ki\u000f��O�\u0014\u0001��=$�u$��1��\u000e\u000e�Y��ʲ\f�h�2\u001a�\u0005��3\r�\u001d\u0016g��J���5�\u0015�ˈ�c�\u0017Y�zcF��\u0005�>�-~\u0000\u00074\u000f���R��w��\u0017\u000b���.3��8M&��;`�c���AS�\u0017H���liqzN@'�\u001d-_�e�o��b�$��#$W��|�^7孿\u0019\u0015L8�\u0016���\u001fI\u0015Nrix���_5u6�u�x��u;\u0002mD�.d�_�5��\u0000]w��\u001a\t,�\u0018\u0001\u0001PUU���1���?EQe�6�\u0011��JE0�Ěယ@���W\\Hr\u0007l�'\u0016`l����ʭI����\u0014�\u0011W�sv�ђ+��M�,��c��顫�\u0010�e��\r��_I@\u00113���\",+tL.��_�\rS1\f^��P��Ց�f�Egs��2M\u001f&�;O�\u0018h\u0001�P�'\"����\u0016�e��\u0018��c&bˏ��*\u0018��������\u0014q�t����gf�M0�S�M�RR�y0\u000b:j��`���D'[D\u0017s�<�[x�iM8�n���h�+��EP\u0013�0v���%�Aa�\u0017\\���s�*��4'w�I6\u001e7�)�>!�r���`���w.lKS/R�N��\rJ����GP��?�̠�\t\t\f�,p\r|\u0003���a�]�L\u001b�e;�8�ڥ�y\u0019��ЮP�\u0014ZO�B\u001bV���i��\u000fa(~�%��|�#6t��n�b��'\rk�X�R���\u001a^�v\u0006\u001b�s\u001aӲ�<�!�]姻J\u0011��ʙ7�Р�6Y��@�\r\f=/�\t\u0005\u0018,d���U8p�O�~Ϳ�~�ݯ�|�T&Uv;~w���v�\u0019���ȐO�fO���33S\u0002U�3\t��iC�I��\u0004�\u0005�0�m�t@e\t�C�#�&1əK�w�׃��@��p���\u0010��N\u000eV\r�K�V\u0014\\!�\u0014A9)>�Cگ�t�a$\b�j&i��BL���GF�tl�}�=wu\u0001��\u0004\u000f�ZV\u0015�\u0011;\u0010�%�AC�\u0017p���c��\u0017�������?�/�\u0012O\u0010���ηt\u001e�䫥\t3�H�g�>�m�\\X%3\u0001�\u000b���Q�L��{�\u0001��v\u001e7�\"�'�K�-�/m=xј\u0003�9��\u0018�L���\u0005�\u0017/ѹv���8ׅ\u0007�\u0005�\u001c�\u000f\u001cd\u001bZ\u0007��}x\u0006A��bI۷5��\u0012p�h�[�@�7{ݦ�!n9�@Z��<�n8���\u0011�0�;�%\u0015Yd�8Z\u001b^ޖ�:���]\u0004_��\u0001<��fj�\u001e�����,�b��Q�\u0013\u0001�\u001f\u001a\u001fE)1�^�^�7}Re�iz[��\u0015դ�\u001dJ\u000e�8}��H4@���kY���u\u0012\u000bo?�\b`f�b]��\u0019C_���xq|��z=�g킬\"��L�\\7���\t�\u001f�\u0006\u0004\u0000f:b��%%�AA�\u0017���K4\u0017h~w~:���|��c8���J���`#\u0005�\u001b\u0010\u001b����c�T�ٰE�.\u000b�۠^�\fw�q`\u0000�c���m�F\u001a��\u0007�)����CR�����1#^M����\f\u0007��H\u000b�\u0001�\u0000�U/H�D\u0007�A���ʹ�j<�̫\u0001\u0015-#�� �\\Ŀ�g��i|f9bΓ�\n)~5�1��LO�a��\u0002� �\u0019j���bf�[�\\���R��\u001c�\r���\u001e\u0005�Ֆ]���A<�n!\u001d�b�bim�\u0005R\u0004\u0016Y���+��\u0016A\u0006\b|��2\u000f�\u0002�E�Mp�K��4\u0018�\u0002O)��� �\u0012���I\u001b\u0007v�r��|�׮�4�j�+v]�\u0016\u001a����H��,���K\u0004jV���\u0012\u0002\u0011%�\u0016R��[K~�aC!#��A'�\u0017���M&\b��z6\n��|}<�K�z�\u001fd�4�1���\u000fH�\\T�;��\u0005)\nr���0{�|��\u0000���z\u000bk��`���\u0014�\u0006�\u0003�\u0001\r�@:1}\u000b�I�^Ls�����\u001e��WG⤦������;0�b�j�l�:��\u0019K��ݣNi曽��l��\u0011�7�&����\u00142%��\u0002��@C�6�F�<\u0015/u�*I$�x�\u0012�\t��$]�%p�\u000b-\u0010VR�\u0005��*jCo\u0006�,���SVw\u0004�:\u0014��n�\u0005��v�P�s�E�����A1�\u0017���L�k\u0011�~��R\u0016��\\\u0004\u0007\u0017������B9dG ���_��vW�\u0012�r-F\n��8�X\u0001�\u0001\u000b�����O&�^}5SA�<�@8�ЋD�)m�\u0004\f��Ե�&��ަ���(\r�^\u001c�t�[�Xs\u0007BDt\u001c�\\��Vق�p��7�NB���> G��엍=�|l�\n���\\���4\u0018\u0016�T�g���(�'2���\u0017\u0007��u���\u001f&��2\u00149\u0014\u0013�샼]B\u0007��\nx'k)��\u00145���k@��\tGo\r\u001fкv�z������Y�Z�\u001d\u000e=��#\u0000��3A���#D�A��9M�g��Xn�\u0018x�]��C��i��P.]���ء��yl�^#!l=fԉ�4'�[��A,�\u0017Ԁ������2Ә�S��K�?\u0001q�Ix)�ת�M�KƯ!`i\u0003i°�\u001ek�\u0015�����\u000f��\u000b \u0005Y�f\u0015�0�(���\u0001�N\\�?\u0018�\t�o'�%%���w�Y�ы\u001a�w��m�8z�z�(\u0007��S�&��dғ��\b>\"�PJ��.��4�\f�\u0011���~���9\u001d�^B�\u001a\u001f�\u0016��ω��O��B-e Ws��rq\"\u000b�q��\u0012��hk�}�O�2\u000e\u0017�kOó-�(|�pt!?s��\u0016������}G9\b��9d��!��g�J�cy?2�.lF\u001d\u000f!X�� �\u0013U\"d���\u000b��S�\u001f��*>\u0003�T$�\u001c�%��,r���7-�[w%6�ryo���j]\u0019��A)�\u0017��L�\u001f<�Ь\t\u0015�U����}\t~g9M��N�\u001b�\u0001���L�탳Tgb_�n\f\b\u001eZ0\b/�\u0001�e��\\�\u0007X�H��e\r3�ݟ�r�4ld�\u0010z�-F`\u0019�\u000e\ta��\t\u001a\u0016dQ�M3e>\u001fyW��\u0005s\u0017]�v\u0007���)̠�zN��q�h���@V�]�`x�\u000e�\u0006 S�\u001dԂn�A%��L��޼]b�J\n�rI�ާ�bz�\u001eŨ\r���^���V\u0016\u0016�uA��1�\u0006�o���\u0002\u0015�X\b�/h��b�\u000e�\u0016\u0000�<�\u0015!2��K��v_౬6��O����\fș)����5���\u001d����ɓ�:���h�u6CJ�\u0017n?��M�\u0018K/�ߊ�z��A-�\u0017���L�\u0000��ѱT:��\u0000\u0019���\u001c��\nŰF��Wʘ����,5��]�\\Jͧ�\u001fu\u0001�����\t\u0012\u0003���\u0003)3<��7ծ����\u0015\\\u0015�ǜ\u0003�W>X\n�i�����׭�\u0002\u0000\u0013���Ƅ\u001f^�I�1�<ѐPo�\\\\5�#/C\f���W�B�B�ٟ\u0015�W9�\f�\u0000M+bJ�[Zē�9�$��Ol��8�z���q�\u0005��{�{\u001f:L�=\t��(�+ۢ�^/�-�z\u0001��m\u0017R�\u001fi==$3)\u001ca���u\u0014Ӵ\t�7��\u0019\u001a��7�\u0011�_N\u0017�G3\u001c�o\u0019vǩQ&���*�ρo\u0004��U�;��6[K�tHE��&�-7o��d_ɳf�\u001fYk��\u0005�=\u000b�A �\u0018\u0010��۷muL��T&��L��$ĺ�� \u000b\u0016s�:&t[�q_��I\u001a��!k^�A�1L�kт*�Χ\"�*zf�*s�\"�iZ�\f�ħ\u000eP�9�e���폁=\u0001�\rs$nt�]�\u0004�+\u001e3w�̘ML�*\u0002�-oz��\u0011\u001c\u001b(�T�\u0013\u0005n���Sǻ!�\t%{�d��i���PV��H�Zބ�M���Kg�: A�D�L�\u0003\u0012�\"\u0018�\u001e�sW|\u0005�o�N�,\t��w�t�\u00033A}\u0007fq�\u0014\u000b\u0016���}�m�\b\"���a\u0007=F�\u0002X\u0000����9�!��;�uf���_���7\u0007\u0012SO�j1\frh-\u000f���\n��J����\n2W\u0001�\u0011,d�Ѱ�A\u001f�\u0018$��۸�-\n^�\u001c\u000e���\u0003Bxՙ�\u0005e\b\u001b�j�\u0003��B�RXȯ�����m�z\u001bu\u0010m_��\fӆ{CY�GD�\u001e|�\u0015s�\u0002fi��>\tʇ�)��\u0005qs��\\\\eonxN\"�۶��X\u0003�8�����O 8���T�Y5|�(\u0001���3\u0018�-�\u0018-�\u0010\u001f�1�L\t\u000b-�\\\u0017.��\u0002\\�b\r��w�)��8\r8�KH S��\u0005f���-\u0000\t\u001503�\"\u000b\u0007\u0013�Tm?HlI�\u0001�7���Q�*���\"�2�l\u0006���\u0006}�w�>>�\u0015m%\u0018\u001b�\f,�u\f��\rJЬ|hI���!\"�_+���\u0002�n�5�\u0004DF�)��\\[�+*K!�l��VA��A8�\u00188��۷rg��bZ|���w\u0011�NϺ�~[�;�\u0011�i�q�\u001c\u001d�AA�9\f&|a_��P�\u0005�L}u:z4�A0�4p?+p�\u0001�P����@�2#ղ�Y�\u000b.\u001b�h�\u000fJ\f�1n��FT&�O\u0014�\r�\u0012-�n�\fs��ҿR��Ro��!�\u0016��l9]\u0010���ʳ\u0005���s+[\u001cOk^Ss^%y�ê��P,�=�͖C�d%�tÆ�\u0002Ɵ{_(�.,o��Q���Y\t\u0016��Z�^\u0010�7z�Ml�J���R�g��\u0017\u001e��)�}��\u000b�\u0019\u0018s\u0010I$'�\u0011�p�7��1'�=+C��S\u001a�7\u0001,�ڗB �?��Ȝ�`3:&�]\u0005�H�\u0018�؝h��7��\r-�*^_?�^��Q£A7�\u0018L��L�j4\u0018�bG��V�)��]r��oO���P~��X3\u001a�D�OY��\u0004�2~�����|Q�?0��\u0004�����\u0012\u0003���%޸�+(&Qa�v@Eѕ\\�\u000b�GM\u0019&Y�ƾ1�4n�2�9g@;:H8�l�X1�ƽ`��Ltq� ��z�ZF�2�\u0011�ۋ��e��\bCI�\u001f��\u0006v�6�e����1��P�&ؽ�+ҙ�r�,�U�-�ߙ2W/�q��%�\u0016<\u0007\u0004,ג���\u0005鸴\u0007����l��]�%�Ώ�0��V�� \n��Ri��f�A�.bP�N�\u0012�\u0013��\r�N�\u0006��Й|���3��|\f���\u001dz��(@�\u0015wmb��Hr]��$kk�l\u0003�\u001a��q\u0003\u001cr��A6�\u0018`��0�\u000b�iy)\u001d�J�����\u0002 \u0018\u0005��\u000e ���7\u001f\u0015�\u0006^I%Ӈ���S���&��ij�\u0016Sr.���\"%�\u001a�A~�8WDH>@d��o$�Aʨ����^�*X\u0015�zZD�s%D&t�t��\u0017_p�脔:~�w��\u001a�.�?�� &W�9��M��\u0011�!M�!Mu㒌|(�\u0000�T+�N:\u0011(��ړ\n�2��\u0015j�p(�0�@\u000f�\"�+\u001eq\rK[�}1��u��h=�?@����\u0015��\rF��-����\fk�!\u001d�~�>$��Q1���pn�%\u000f/�b��/��I�^,�\u0006Ӕ�ز\u0015x�\u001f�wI�{�P���r:\u001c\n�*�rר�>��\u0017\u0018���+�i�\u001b��6Y0��S�A.�\u0018t��XВH�<\u0002\u000b8�����\u001bҍdXys�ٴ�Θ�\u001fyW9\u0003\r���\u0000U���\u0013�hԌ��`\u0017�\u0018��`z�gp���M��Ņ��\u001e�t6�0�ݮ\u0010\u0014��\u0010ȃQ�h�VT\u0019�����V�!s�)�\u001a\u0013��T�0\u0011\u0002��\r��q\u0007�\u000e\u001bU�\u0016����壃\u001c���!v��\u000f�\u0016\u0001t$@ ������m��6�\r���d\u0012����E�I�\b��H���i���\u001b�\u0004��\u0006���XSg�m��1�\u001b_����J{^��\u0004e��7w�V\u000b\u0003���(�;n��b;S�@���;�{l\u0011{*�o\u0010�V(�Ǽ�ꋥ΄퀮\u001b_$\u0011�\u0013��Z9�\u001b8�#d�a<\u0010`﻽����g���V���\u0003��!�\u0006/WN���k��\u000f�\u0010<�ws\u001e�g{oCAJ�leK��F\u0002�\u000e(�&�\u001eS%\u0000r�(���D������\"��\u0001�S\u0014���`����1C>��<�\u0013\u000b��\u0012���5��\u0010�}\u0016\u0012;�n�}�r��d��:8\u0012fF��7Alk�\u000b\u0015)y�X1��+\b���\u001c�^�JpJ76Dm8�\f\u000b\u0002���t�\u0003��u�i\u0000W\u0012���,�7�{p�&���@�\u0007.��\u0004P��A#�\u0018���۽�\f���\u0017�����\u000f�7:�f�잰\u0012�!\u0005�ғ\"@w\rH�,��\u0001�5�Q\u0004VQ�lu\u000fm�\u000b�*Z7�n\u0005S��\u0018�#F���\r*o�ρ\u001aƾX��#0\u0014��*p�4x�g\u0000p�\u00131�md�I��G���Y��q�]Vl�@��M�}:8��\u0004�g<,ģ\"�Sj��i�vE\u0005�t�&ތ�x�e6�\u001c�X��`B gQ)k\u0002�zT3��?�tޕ� P�\u001dLy�\nn�?]3\u0006Gz��W�*�\u001e��\u0019{5�b��\u0002�\u0014#*n�Le�ꅐ��0'7��E��'%k��CxV�\u0012�ۯ��d\u0019\u0011\u0006��$P֔UZ\u000e���%Y\u0004�Z�q�rj�A1�\u0018���۸�+��nM\"�e~D\u001e8�\u0019Ǐ{,-p�\u0017��\u001e8\u0015�@Ez���R�\u0002/a1���`\u0003��Қ\f\fH���I#3I��\u000f>���OI\u0004[�p�G?7�������JQ�E��\u0005y��b(\u0005�)�n���m��\u001d_��3�\u0013$��i��\u001aQ��Nf\u0000#�\r\u00182��VCqB\u001f�\tӧ��z\u001b--q90��.Fň\u0010�\u0017�ş=O����\u001d�'\"}\u0002\u00002���Ĭ�k�7-�%U��4A\u001f[���ˬ\n�����5\u0012���TK�z�d\u0005���\u0001��홃��.I��\u001d�4GE0�\u0005b[��\u0002�_����֝�F\u00079&�x�O�>}��\u0012ք��qSZ?�_�u׈}Lj�t�A'�\u0018Ā�۹,�ѡJ�Ѥ����\t�tFS��\u000f%b\"lc���g\f����y�-Ӳ�f�-�޷��8�;3��4�a*�\u001c\u001d*Ax \u0011K�%hV��5Z�K�v\"M��ifT)}�gW�C7�h���U��f�{a\u0018\u001c�Ds��\u001d�����Y�U�H�9�s_RZ��\u0011ϗE�\u0018��p\u0014?�\u001b~���'\u0002fh\b\u001f�x弘AH��1F�|��z\u000f�6`���\u0007�x�\u0012�K�Sꃝ��1:��\u000e=\u001cB\u0000� ���\u000b�,)c-�\u001b���,8���|_��G\u0019��ܢs�k\u001c�Dn�mU��m7g7\u001a\u0005��\u0013W\u0001ƛ��w[\u0006�#�'\u001b���B~\u001c�X�K]�@Ŕ��\t�S1�ct��'��\bSh�PU}��`\u001f�D\u000b\rIj�(G\u001dރ�3��UJK�G\\|cr\u0003�s\nSE^c��\u0001�!\u0001����+�|\u00054\u0004&\u0019*\u0013ј�a\u0018��*4ɫ�k�'�u��8����z2�4E�؆+�Q�S\u0014��H�on��ĸq4�׏�Y�ƒ�\u0010C77Ne(��\u0016ގ7�͆��k�f$�\u0019^�[l*�\u0006�﹈�\u001d�����6\u0005��tz�,�/z\u0017,�\u0007:BO/ؙ��\u0017\u000e\t��͘n�����񓤴�����w?\u0013N��6W��~�ѝP�vWc\u001e/�G�k���X=(�\b��k\u001f�(�L�\f?5���S��?Nܽx\u0010��\u0019|kd��ԥ�H��4N�\"8L�H�����\u001agN\t�fS۠�}��%\u0006�]�f\u0016�2\"A�\u0011��G\u001d##\u0015z��F�k\u0013� w�lk\n�\t���<��c\u000f�H����j����x��z�lnj`\nTc���\r\u001e�l�S}m��,\u0004-\u0016z,�ye6�\u000f�\"������Q�{qMм�4n\u0007۬�B�ˁ�KV׬p\n�\u0019���*U��S��f��������l�F���)ӿ�93@�'C햔�.�`�>ӃR��>�ߐ:���߬3�\u0002��\u001ax�$H4�zT^bF�\t\t���'���3_I�\u0012�\u0014�wS\u0007DG�\u000e<\u0007�/�\u0001�\u0000�mds�\u0010�Z�\u0018/�)-�\u0004�\b��\u0006[�)i{\u000bf+\u0011�ޝ�q\u0012���Z�ͮ��ۘM��5u^g\u001a��ҁ�zG�Ae٤Ú\u0014�n\u0018>��\u0002$^\"�$�\r��W#��\u00022����AS�\u0019����\r\u0000)k��ʓ \nR����}{����f�^\u0001]�2�줂+}\u0002�k���w�*�f���/�L˲QYD��K����\u0007�\u001d7�\u001dPtr�>\u001f{Mݖ�*�h��Kp\u0003��t%�J(�D\u0010{pן�ڧu\u0003��`g\u001ag(�)�4��q���L��+ɝ1'm�\u0002z��<$MYM|[��Dj�r�xL�j���Z#s�4��'\u001fU��G���;�5��<�ِ����jH\u0002T��(�&[�V�m�Hl�U�W���\nD8�~B�ѝ2�0��Y�̗4(\u0012B8��G<��/��m,�2*�53�\u000b���-{�� � \u0014c\u000f�ѐh�\u0017���\t��9���z�\u0005*|�ِ�'.Y\u001b4d���-�/\nF=𘭆�=l��a��i*\u0010`�I�A\u0019�\u0019����\f�q\u0016\u0006+\r���\u000f�z��\t\u0017�6��\u001f�_�\n)�CN~�X�H\u0013���\u0001��e�D�ѥ}�?�B,�,�Q�bg�\u0017B5�\u0017G\u0012��o\u000eB^\u001e�*���J�6��*\u0000Ҟ�|���1�}'-w\u0012�W[�ӕ��o��r��R\u001e�o,\u000f%gϝ�<ҵ8��m��\u0006�-���ȾH\u00152\u0005Y漢i�B�\u0018$:鵨�o˰�'�Q,�^\u0007\\/���\u0015��\u001cU�\n6\u0019^۔�=|H�e����\u0013�\u0017M\b�\u0002�F�l���U�7�������|b\u0015ǐ�oS�1���\u0007e�\u000b}�����+�==��\u0000��%��\u001c�C[>�29v�9�A\"�\u0019Ȁ��\u0014���\u0001�(\u0000|�����old�$\nk�5jhU�*�\u0017�EC�\u0015��4�����-I�B�Z�\u0018��Y�`��\\�jj�\u001a,.h\u0010�\u0018\u0015�&̧sL\u0014\u0016���a|(�c��c\f��Ý�\u0010;\u001d���;&ew�\u0003ѹ\u0000�\u00186���z3\u0015�\u0007]�q\u0010h�\u0013�\u0002�\u0018\u0001$�����e���U1�X�\u001a_�w\u0015m�\u001fz����9��{Ŵpؘ��}��\u0007�Iݬ\u0004�u���\b���f��0m\u001bJ�b��|H=�i��W\u0005.H�i�:V�\f���\u0014���v>�\u0001∷׊^ꩉ4e��#��\u0004%�/v\\|@��*d���$�f{��\u0004�ܞ#�\u0005v\u00151D��C�A&�\u0019܀��\u001a�_J\u0016벚aoy�\u0004��M\u0001���\u0014H\u001e�!�˹9�;=,�?�P'\n\u0010�]����Გ:j��\u001dI�\u0010qZ׼�W,�\u0014������\u0010�er�L|΢5k#��:�pش�+�O�����[�\u0014�\u0003\u0003Aƣc�惱<3�\u0006����a[�\u0016�g\u001cu����>��ۖ\u0016{\u00153���7������b�m'�\t�����|0n���\u0001\u0011\b��\u001a\u0010�\u000f�c1\u0002sY}t��#H\u0014z��\\\u0012\f�����C1���R�Z��;�i�m��p|��_A�84n�]�?q\u0004��yŨ�ӌ�w�B��\u001dq~�i��=�uYj�1�5�I�$\u000b%2�0i�Mp�\u0000 �E�A\"�\u0019����\r���]�VB��\u0001�\u0007�7-_6�VsM�w��\u001c���\u0016�\u001bl\u0011�ji\u001fN[��J�=�@\u0017\u0010�Nib�F�=��uA���W0��.�{V#��2%\nOS�ζ�F�$��e�\u001bGYާ�\u001f��\u0011�$V�M,�\u001e���n�\u0015��o�ĭ\u001a���@\nb�Rȼ J����3\u0016�򩍯\r�1\nՌ!�~���9�YWj�Fݷvj\u0012�R�B��}n�}@��:�=��;۾�����>\u000e�\fj�\u000f\u001b�e\u0010�M\f��O�b���*HE`%ͦ�\u0018[�Ɍ�9�;�y\u0000&�[�\\�$��v�\u0007\u000fw�\"��l�3ֶ\u0003���#��>���Iyߪ�D�A#�\u001a\u0004��Mb}���Rx\"N:M�M�7\r��\"VP\u000f6Q�f\"�\fk��u\u000f�2�u�?Rg�\u0013����L��\u000f��[�\rb��vN\u0005?.�?\u0004Ȟ�o�\b)����H����q$ً��C1}��\"�{4e����GI�\u001a5�8�\u0013z�\tJ\u00104�mk\bp�(GJ����&\u000e1�{���8�Y��\u0012�\u0013{0\u000bf��q���?\u001d\f��\\�\u0018^(]U�L��8������T��t����\u0006}v�v�\u0016�8;u�� D�_\u000e\u0014B\u0017���V���Z��QFQ�睮��M���s>�\u0000�~B9�T�#j2�L5�hm�mn;�D�|����\u0006��kG��ȴ)V^�aJMhp�O\u000e\u0014\u001c�����\u0019���\u0011��!�\u0017��s4����VU=�Jz'9\u0014]����C����\u000b9������[CE����%�A*�\u001a,���\u001d�\u0003!�-�~1l�\t��4���`�V\u0011Aج�\u000f�+�'�\u0012|\u001a�Lާ܄,�%˂\u0016�ۣ���O}t�Y.�\u0000\u001c\u001d��\"[u�>'s\u001a\u001f��\"�[�\u0018@e\u0001�]�D���8`�f$�=��7\u000e'ǎ\u0014���\u0004��_�.����W'\u0000\u001e����^D�\r��\u0018�^�@C���*�\u001e:c�W|��Vf�Ũ�$\u0013�\u001c\\\u0010�hw%CE\r\u000b�'\u001c1B�>P�\u001e�f�8E\u0016H�\b�p���̛�!���/\u001d�<��\u0002�]M��6qb���\u000f�:\"�M]�[\u000fd��e�S\u0007�Y$��L7z�\t�ۮ\t�����OE\u0015}�z�%/�n\u0004�����au\u0000\u000b)�a�A/�\u001a@��1�\u0014��`fTZ���s\u000b�Pm��!�U\u000e�\u0014�i�3\u001a�P�>T�˃�L�[|UD�+\u00142�z\u0013�<5��V_`��FO\u00061����_\u0010\u0012���\u0015�y\u0014(�e�\b}�����I�8���r�#������\r��)\u0003됡�)�����w��7ƌ�m�uȹ{W(\t\u0001��(��,��-#��bb\u001e�ّ�\"\tǒD�,\u0007.s\u0005n�@-^ϝy8&\u001d\u001d�k�i�o�����Q�\u000f@�\f�\u001c)���U;�j\u0015�* ��6����km0a���B��\"�yW\f���P��)e���=���\\��\u0016䅽���G�\u0017\u001aJ�<�rF\u0007�߄f�a�D\u0011��2��\u0006��Bi \u0002\u000b$��A;�\u001aT��L��o\"٬ia��1��\u001d�i��A��C��ܡ����SK\u001f�W\b\u0004��M�.'�y&�vf\u0017�<��?�Vh\u0014M1?�?�B���\u0004�Xc���z&\u0010i�G�n��V-�����N�E��jOT��ZB\u00069-W�/�\\u\u0012P�h�����6��x���\u0017�R�\u0006^�f\u0003|��7oc�\u0013S@?�?�#}�ES�j+gF��0�]Z>���\u0014#���M\u001f���\u0015�Ͳ�)\u0003����$u\t�\u0007*�����n�l��:��$��U�;iה)�v��p\u0003��x�Q|�χ����\u0018�sMʶN���\u0015�uH��|rhҀ\u0000\u0000\u0000\u0001��͑ϼ\u001am��ߩ��:w�-�w�u��me\u0018]\u0019��%\\�\u0000ʎ���\u0013�7\u0002��\u001e�fL\u0015t€)yq�߮\u0012�t \u0005�e���(��>���'~Ͳ�`�e���$w\u0000X�q맪\r�\u0005�!eJ�Z\u0001�[�wPĈ�J#�W\u001d��\u000ee�\u000e\u0017z-��R\u0014\u0002����{�m\u0018�\u0016L\u001d��G0�s���`4��Un\u0004�f0�S5�I8�\r �������I\u0011u8�X�\u000b�r5\u001c�!�J�j3c�u�>V���`\fڬ`�\u0000��\u001e��\u001d���轅��q�GI�\u0001�\u001b*�a4Yȇ\u0019�\u0013����\u0005\u0002�ʹ$a�\u0004[��\u0016�7��%��y|��Ə�Xv\u0012�j-r\u0016G�f=�� ��v:��\u001a\u0012CC=��\u0010���IήEH\u0006\u0019�\u0017l)M���ڀc��>�A�)���<�;�3e�Bs�\u001a|��|�P^�A̧X]V����p�aC��i \u001f;+�\r\u001fI�X=��;�-Y�/\u0018u�\"�,rx��������=[��\u0017�e\u0007��٧\u0001fS�E���\u0019,\u001b�h�\"t�g!��6���Re#a�:{k���J�{'ӛ�\b�J�Ε%��'\r_\u0005C*�pJx�'�CҘ�\u0016\u000b�\u0018��(U�,H���S\u001b\n���,q�\u0014�F�b���al!7}�|E�Il�$5\\6)&z�\u0014]T� W�\u0014u\"�Wj�۞L\u000f$�pd��_.\fR��ʵ�T���\u001d1�>�881Z�t\u000e��Z�9&*\u001faު�m~�Y���\u001eϬ�\u0016�3�\r����O�G{_\u0010\u0000\u0000\u0000\u0000\u0006r\u0014��C�}�1M����t!\"��3a�e�y�1�4`\\w/���ǣ4��\u001b�\u0016\fcJڃkf�C�u�J�%�\u0001[�\u0012n�\u0000���e���\u001e2�\u0002�C�/rO��!n�U4ۢ���σq\u0011z��������@��\u001a]���i�|�E�s�\u0004F謎�j�D)\tzW�3{\u0014B��d�\u0019_%\u0007��8ч�<�\u001fΪ�\u001eS�S&2k9t�p%Jpv�1/J\u0012�\bo��3�aLV��i�l�\nET��j����\u0018�\u000b=vM���1\u001fKt_\u0010���j\u0001\u0004�;\u0013\u0003[s��\u001a��\u001f���2�P�k�\u0002��\u0012�C*G�.���g2�\u000b��X�9����:�8�\u0007C�\u001e\u0015�8��ץs��\u001f$\u001e�,�*u`����\t-\u0001\u0010�;Z4–^B�(�\u001dkvX�\\\u0002Z�,\u0019\f�\u0001���\u001b���\u000eZn(�\u0011���/�t(�k��\f9LA�p���#kjR}�\u0016\u0016��\u0005��\u0013oʽ��{-]Lb�A\u0018q���*j��t��ݑ>�\u001eApm\"�0\u0015�\u000e\u001f�aq�?\u0004|?��H���d�k\u001c�1�fh9?�u��Ѭe���\u0017����l$�H\u001c��'�pQV��\u0010�eXge���ʺ͋�s������\u0002G�Ʀ��\u00075��\t}'��<��+���(+.?�R�$��\"a��Q\u0004\u001b@+��$\u0006d��\u0007ro�]�A�\u001a������}�GE?�d[��Z+%�\nd��i��ʖ\u001b�\u0016@e~ys?�^�M^�Ȧ (^\n\tb]\r�xC\u0014�!G\u001e��\u000f���h�c߬\u0002f��C�Ͳ��\u0016��\u000e1\u0004��\u0003>�{�ۺ��\u0001��v\u0018�w!lh�0\ro����)V%X�.\u0011-:�=x\"I�`i�M[YcZg�`\bǽ��� .[\u0017\u0018/���k�\u0016\u0017յ]I߲*`]F.���Xwq��Kbh�\u0011ɴ�U�cF��2\u0007W�\"��uE\u001f�\\��i�1m\u0014�?\u0019צ4>�:\u0013��\"\t_�\u001b\u0011E_�-\u0002�c#V�h鵱�\u001b�����B`������?���t�\u0006\u000b\t�\u001b]aS\u0015Vɤb��0�l�\u00004�֖clXY�4\u0017��\u0006o��%�O�6��2D|��+�A(�?�(Rvv�c�Q��2\u0014�9*\t�9a\u0015.��#Q�S���\u001dO~�\u001a�&S����|7�GS��{c������0�\u0005s�AG�\u001à�۷&\u001a�\u001c�(�\u0019���~�*�RtY\u0017|�\u0016�P���剬\u001f�iP芹��Ųm)2���\u0001t \u000bp�yǐO�\u0019%.�b\u001bf%�\u000f�i\u0003\u0015�\u0006\u0016~�8��r�xR�)3ʷ˷����\u0002c6g3''���흫gw�\\�*�|��LR�\u0000����|DM\u0006mMB�x.��0�H�\u001e�D�h0}����3�!N�E\u000e\u0003��ט����\f�W�\u0011J��{��\u00059�@�j\t����\u001e�p�jsí�k��\u0001?��Mq�A=�\u001a����uE�Vm0�����sm��5�/w<���\u0011\u0019���g��D�W(\bR�[�\u0001 îd�\u0013\u000b�h�R�q�\u00059\u0006u�Z&Yz��\u001c��D�P�s4 0���\u001a���y�x��u�=\u001fVC`��\u0011�\u001f��|G%gQ�KY6j\u0019�e�v[�/�g\u0004?g�*�va_\bvn�\u0017��(�̋��?\u001cYd�q��9�oV\u0001�e�\u000f��\n��@�\u000e\u001e�=��\\{Jr�*�/�6��R��\u00076Z\u0010<%��7B�\u0006�R\b`\bQ\u0005`0Ut�N�E��:��\u000e��M�7�R���O攡�6�i�A@�\u001b\b��ܸ�mߵ�L�ge��\u00174�ڠ'\u0000��z\u001e~�\u000f,�u\u0002�y�\u0006O\u0019��s�鴾v��e���a�c]��u5Vs���2��?g�ph��I̻��0u1����Q�}��H�S�,��\u001c~/\u00151u��J�\u0013=���XP J\u0012u�r\u0004��z\f�3������Kt�4'��n3�0#E�I�Ϝ�9e��=��r�7 \u000b�F)@���\n|p�\u0002s\u0001�j��eg-\f$ò\u0013��\u001f{����f^\u0006S��\u0016z,_\t�Ŏ\u0011�'�,p�+�7\u0007: q�q삇�?����q%D�\u0010D\u0014.Du�\u000f�����z�\u0002��쭲[Kt����B�x�ŵi�\r��t�u��b�䗆\u0015G\f=�����ܕh��G�\u0002c�A:�\u001b\u001c��M*:�i3RU�`Ԥ-\u0003��\u0014a\u0016�irR�D�1 �ɗ\f�q�|6j��C%�`,�\u001d�Z�����Qo�?���f3�\u000e)�\n�|T��)^qmBq�&R�St��X��(m�\n��(� ��XW�d����'\u0001�7�;=R�ތ�6i��\u001e\u0018~�\u0016��\u00012)9���T\u001a��\u0000�����@LJ>\u001f���=�r�\\x\\-�rN)�]ط1 �(2\u0015\u0010��\u0003p��>a\u0004�\u0012�����v-G��^�\u001f��>[���O}�.g�FH՗���Z�nk{�G��q�S�6��\u001f�C���>h���֗�G�\u0011V���B�]�p69j��^�J=\u0003�c���K��\u001c\u0013W�St���'#x�H�w�\u0006���AI�\u001b0��M\u001f8;\u0010��a���iX}��\u0015\u001c���\u0017\u0011\u001b�����\u0001Tk~')�\u0010�����\u0001Վjج��5�n�5�q!��ɾ��<;/\u0018�w>�D�g5��?cn��\na���Т�\"���4.\"\u0003\u0015B=4\f�#fpZ�N?&x�#�4�}\\�h��K�]?i)\u0002\u001f\u001d�1a�\u0005C�0c��\u0019��䤅(�\u0017��Cd`�a�3��2yw�\u0001C�v����!\u0013¡U�d\u0007:! �����\u001c�x�ל�)�\u0014���\u001d�i�Ď*�7�9�m'��Z\u00118e��C��>��x���0G\u0000o��؆�ٻ������A*�\u001b���X�>A[\u000bX6�\u001f\n��G��W8�\u001b�\ftG�ZNN\n���W�ڱ\u001f�\u0016��ΜA4���ր\u0006f{�9�c�\u0004��:FV�ŇMI�W~�\u0019=\u001c$`�F}3\u0013\u0017S]�\u001d.#���|m�ò\u001d\u0005\fy� &��>�\u000b��C|�\u001dIG��/\n�O\u001e�\u0012oO\u000f-���/�1\u001f\u001e�,�����n�V�7\u0011\u0019�Y��s�\f��c\u00003\u0002\u000f\u0012K\u0003�+�l�\u001eT\u0013\u001f&�C��2.�_�<;%d��)t\u0002 ���pPK:W��U[��2K%[�D�kT(�P��\"&݉!���\fĬ��~%��˼Rq��A\u001f�\u001b���ه�\u0015�\u001b\fcz�\u0010R�&a����8~h^\u001bT\"��\r�\u0017\"bj1��ٯw8eL[���5�������f�&��3�er��L�3��!\n�\f�k�\u000b\f���*(�8Q����\u000e���v�\r͡( \u001f�����E������\bmD�\u000b�'��ff\u0001c5�Q��B0�\u000b�w,��`����Y��E0�\f7�o\u0010v��\u001bG�:��\u0011\u0016����\u0018��\t��>\u0003�\u0015���\u000e\u0002v\u001eE�>���m\u001d�\b�%\u0013��Oa�/�᱓\u000bs\u001a���\u00048\u0002\u001b\r�o�G�c_\u0001�����-� �\u001f;O(�\u0007\u0007|*��Z�r�ԓ=�ɪ`�w5\u0005�����L�A\u0019�\u001b���X�O��^�K_��A�WM�st\u001d�.�f����`���\u001c�+Eeлd�A�4�\u0016�,��1\u0017\u0011[�U|���j�3�u6�u����E��\u000e�埫\u0005�Lb��EY��g\u001c�����N\u0011c�K�\t\u0001Us��1�������H��ô�z��豂�\u0017[�=�\u0019Ս����\u0013��:A�N��?A\u000b�'<��ӴJ»���t)���\u0010��(\u00177V�;o�c�Z#iH���\"L�r�\u0019���?U��D�h�mW):d�B��\u001daq*\u001c�k\"�\u0014\u0001�@\u0013z\n�Z\n~�F��P��ӱfo�R��\u001e�\u0014?�-\u001dH�c`�s��ѣA%�\u001b���L�CF�Ћ�\u0004��\u0013\u0002�J&%������\u0010�\"9J��.��\u000f\\\n%��J�Pܩ��o�(\nw�\nƞ���\u001b)\u0003��\u0015U��c\\��\u001e�\u001a�qh@E�/S��;\u0015������i�\u001dZ��/4\u0012L�\u0011�{w{}��\u0005I�ܖ��C�; u\u0010���u��^3��<�P\u0016��\u0018;Hs^ޔ�\u001a`\u001f6n���JO�\u0000H�Pn\b��P\u0019�����N�������@��%��X�x��r�)���pD�4�_���@�̎�����^d�'.\u0017�\u000b��Q|\u001b��{���3n�U\u0004\u0002��\u0005\n\u0011y9�7�c]�9���/{\u0012\\��2s�I��\u0015�\u0010mq�\u0010�\u0017\u001c\u0014\u0011m��9)�-�\u0017��%Y�g\u0014��֭\f��h�D\u0005s\u001fa�F�\u000e�$؍�́Z��CIej;�A,�\u001b��L�\u0003�ˬո΁�fpD��Ӵ�#\b@M�\u0011���l��w���+x����\u001c�\u0013\u0004V8���=&�:��S���3�r��\u0002'�\u001b�S�p�\u0001HK\u001b�\b�y]\u0004�6�T��\u001e����'i\u001eI\u000e2�:��G�lo�eI=��K�%\u000e��r�S���\u00146(����%��\u0005=���#︂������Q��5C9�6��\t�rB\u00163��\b��9k\u0017Q��\u001e\u0018؆aA\u0017�*B'�+��\u000eu��9\u0004o�t{IC�ӚDWB����!�ȇ\r�\u0010ǒ�!F7�o��(��R[]˟�x\u0006e�S��x\u0017쁚��k�{���?�v���:�82J�Ex\u0001FDO,�O\r��C�\rzM8?�zW�����:�i�\u0002%\nA��\u0006\u0002.SC�5�\u0018ӉJo��}�4���Bg\u001bA�H�a��Ҥ�l\u000f�Ŕ�\u0015\"�#��\u0011\n.賄`\u0006n]��\"7\u0000�?ܵ#㥲攰���A(�\u001c\f��MzMa{t�i���\u0014�D��^����\u0004�(�e4�\u0015҆�T\u0012$ԓ\u0010����{�����\u0015\u001a��-�\u0010N�z2\u0000�!���\u000b��\u00165\u001a|�.\u0007��v�kq?Gڸ]e㻟J\r���>Z/��kx��8����\u001fO�Ov7���\u0016�\u001elrh�Oi�\u0004�} \u001e��$S���\u0005�?\u0004 ����Ȁ�l�gN�$d�1=$]@.8�h�2�~ �G�Q<ٽ\tJ�.ļ*\u0005�*\u0016}�\u0005ƕ �\u0015\n�\f\u001d\r\u0015\u000bg�\"KDp��@��6�(m\u0004G\u0018��\u0014\u000e�\f!Y���V1\t`Ǯ\u0007�{���~�f�9\u001e�*�D�Cu\\r�C\rV�������S\u0002=P�\b�(\u000f��Pv�A\u000f�\u001c ��L�=G\u0014\u001c�A���cր���\u001ew��}Y����:푒�/9�\u0010[�4/*\u0017�ի���\f��M(���;l9�����w\u0019\u0019p\b�q�l]�\b�J\u0007��\nxp\t{���%\b±K~�8��ͯ�E�C:BƳ�U�f��}->\u000ě4�i�q0q������\u001e��P\u000fx����㍋SNp،�*J\u0013��~=\u0007�\"~�D���4V'\u0002�>S*��[9R\r��k\u001a4zW'�=�\u00024|�,��pV\u001b�����|\u0017�\u0018�}��\b�P\u0018����\u0007H������\u0019 �A�o]����9\u000b\u0017�76[\u0014\"��M�\u0010��)��A.�\u001c4��۷�\u0003«��ܬ��1�Zf=\u0004�\u0019��]�?�\u0019\u0018\u001f!;�:K5q��\u000e�a�Х�!5�m�k\\���h�\u00128\u000b�OiYc�kpr\u0005V�\u0000\u0011zn~9&ˆ;�䠅.�����I�\u0000������+c�'�>f�+��UJ�P\u0017c��6���p^�\"�];x0���pkH{�\u0012��[QJT��:N�\u0002��c_+�j�[4>�D�u��R�\u0010�h��\u0002���F\r�D�s]8��Gl櫼>u�YH5�ҬJ�\u00013�M\u0017��Ho����\u0001�-mTg\u0007�q�[\u0000�\u001f8}�T�H�ЍNn��f�����Z���]�\u0005ɽ�փpo�Vo�[wz\u0014ܧ+�d��_cC�AN�\u001cH��۷*�Ƥ\u0000���p�\u0003jU�#[���Ӎ�i�R@���$Q�6D�h��\u0010aӇ��%w�)%�\u0010%�\u0016�HX�K�d�6����=�\u0004\"n\u001f��\u000f���v��K\u0016\u001d�\u001e�\u001c�#NQ��\n����'@Hkc�wp\u0017��f\t0\u0005\u0000���pW7�\u000b߮*�f�r��\u000e�߃�d�\u0001zo���6�Qq)����\u0019j5,\u001f,z\u0016\u0018�oZ��\r\n�k�\u001c�\u0004�-�1E�J�|\u0016�5���ūn��{5g3��/��oԆ��\u001a¶�.qkK�\u001ff�$\u0015@\u0012��.�S��D�Қ��\u0012^JJ����B��{ȕ\u000f�#wn矈�l�:��?��� U\n/O����2�\u0005TbC�:q+��E�9�q�#K��;*������R��7u8�\u00129#C�A9�\u001c\\��۷p� \u0017\n?�7��7\u001c+@)��\t7RE��Z�,�n.p>\u001b�`mR�t1�ʀ-�V��#\u0010VEj>\rL�SZ�+�\u001e\u0002�z �H��\n�)�޼��͎�bѧ�S��:DU�Nl#j?���͐�l�>ĭ\u000fvŹ^�����\u0005\u0012�\u0006X\u000b\u0000\u0014D\u0011\f�̖���C%\u001c9}3b�\u001d�D�F���P��W�C�lXO��\u000e���V��OC�l�p�s&Ah��қ��\u001e��\u0006��\r�v�ZV�69\u0004\tٿ�'+F�A>�\u001cp��M�9_�kL\u0010�\u001dOユ'�W=\b���h�\u000b;\u001b�l�0U�P%ߌ\r!����)��Xuw\u0014��\u0004�;'���\u0016��y\u0000g\u001f�t\u000f\u001ad]=\u0010q鱚7\\�Ogzʾ��!��8����\u0012���e��f�E�$랬����5H`��mak��\u001c\u0016n��p�xW�Paz\u0004M ��n޶�`pc?�&��\u0006�HaO����bC�I}�.V�\u0013�-�4�z[X�s�e��TzҔ~*$&?4�z�Y�M\u001f����\n�{,��n��\u0018S��bk��—�F/mLߓL�?�%3x��h]�\u0018\u000f'䜤M�\u0019��\u000f\t\u0001�tM��D��q��8p�sY�W�CB6Dž8��nr�L��l��\u0006K�m����A7�\u001c����e�\u0005���Q�\brD�Ly����)�'�g��,\"\u0005��\u0016��gNGt�\u0002��o�uL|u괨\u0013\\h\r��\u001e`�x���\tl��\u0000�K/*=EH툈�i�\u0011\u0004\\��&��/��?{���V�p���nk��E���G\u000b��m\u0013�[�c�-�\u0000[ǫ\u0010�񉷧�\u0007��<�r\\�T'�`\u001eb\u0019.6����:����Ţ��s���7y�\u000e\u0004\u0015���T;\u0013��\u001b\u0019\u0003��1D~kbGX���\u001f@LN�˾�,��v5��è��Pi�k�P�Y�y�\u0018X*8@r�e�����+{ޒ� /Z���6x��\u0003\u0003��cуo\u0017Q�-~��h�z�)�G���l9�\u0010�J��3�F_x���AC�\u001c����mm�\n����E�+��U���𓋬>�\u000b\u0011������Dz*@)�l=�\u0013h׬�\u0013�\u0017\u0003�Jn\u0000���ɳ���/2X�|p*�ozo�,z\n�\u0013J�\u0019�\u001e]`���\t\u0000\u0005�\u0013}�\u0005�|�C�~�O\tBJ�\u0018i�$P'\u001d����F��\\����>\n�a�^\b�\u0007\u0010(��b�Z�L��[���ĸ�uq\nt�| �\u001a/\\O��\u000fJ/O@8/+�@�ש�\\�\u0003�\u0006�b���G���R�ہ5@�C��\r�\u0000�;��O���\u0013�\u00055\u0017���\u0010��PM\u0019�n\u0007��ʳ�r0F��\u0007��/��6T��̟��d�I�m2���z��8\u001d��\u000fC��\u0014�2V\u0012v|\u001at3��Ż�J�?7oo���e\u0006į}�%v��#�AC�\u001c����brS�D�\u000f)N\u0012?-jv�J� =o�O��\u0016���1̦����H�q4M5Y\u0018w�,��>\t���H�f�\u0017\u0011�%)@\u0011w���~�*�Sz�\u001aڨ?\n���$���/���}�\"�+�.�5\f��,�f���M�A5�f\u000f��(\"�\u0019��8��?�\u001dC���\u000e\u000b\u0011��\u000b���'�z\u0002�2�������\u0016���u\"i�&�6�\u000e_�^e��\u0019�FU��V�9 \u0005=\u0005:�*Sq�51���\u0019a�T�\u001as\f=\u001dgn���X�<\u000b�z�Z��$\u0000�jN\"%_,�Y��Y�(�nn{J�7�\"D!Y��Z�R\u0012�kɕٛ\u0006��#�A\"�\u001c����mhq�k�\u0006\u0017�j�e%,!߹[\n\u0005��Ұ@�Jop��8\u0003�\u001c\"�g�h�N7%g��B�fGH��9\u001b�\u001e��\u0006�jR�Z����r���:X�ɉ�>A\u0001\r�g\u0018�\u0018�\u001b�)��m�\u001e�i;1\u001a��\u0018�9@�ݺ(�|\u0010~��(��[�b���3Kg�'��\u0017�\u0016\u0003��[\u0004�w@{&\u0018\u0005�T h�<�1���:�\u0014��d��Ӭ\u0015�Գ���\u0006��\u0018��s�lЀK)��}��%�\u0010w�Lm|�*�cK�ŕ61!\u001b�Q6�&Ǫ�\tqK)��\u000b2s��j�^H�\u001a���\u0006�A\u001d6(\u00010m��\u0006����\f�P��q\u0010\t\u001b!�\u0000ȑ)\u0001�{�$�A7�\u001cԀ�Lɪ\u0001\u0006�s�gV�/R\f����Nh��n�tO\u0006��\u0013\u0016��!|ײ�\u0005�7�̍xf읷)\u0002�����|^���(bhJ\u0010�]�(��\u0002��\u0005�\ba2Dc���i-����U�\u0017s�\b\u001e�ߡ�XTҙ�\\N�H�\u0015��\u0001\u0018\u0013�O\u001b~��s�\u001f�SE<\u0005zy�[tl�M�p�Aie�\\(\u0019\u0001���5T?iFƠ�D�\u0006�ͼd����\r{���\u0011kgt��\"��C���|�\u000f�?˗ ٩r9\u001c��Y�\u0005n:�tn���ͨ��40�dg\u0005��M��S�q�,��t�X��Q����j��\b4�|�9�ꗉ*�\u0016\u0017��<�����?��{�`�r�\tc��o[A\u0006݀k��*�L\u000fңAL�\u001c��L��\b\u001a��\f�y\u0004\u0003�G�3p_n��)\u001d�����R\u0013\u001b���F�\u001e�f�K��-�\u0000�w��z&\u000bnKm; Lfol.�\\�EZ'\u000f��\n�>]A�!�\u0004�J_����~\"mS]L#P������\u0017ӈ\u0018���q\ryũ�����92<+:�,�\u000e\u001d\u0018���W7oS�n�N�A\u001e��tƃے^�\u000b���\r��\u001c,�L�C�s�\u0002�c��ag$k�Z>\u000f�t��XH�E��y�pj���d�C�Q�����\u0018Q5��eҕ��$9o\u000e�6��\u0000<��Tl�\u0000�f��\"m\u0016�\u0017�oZ��Y�I��\u000bw/ZM\u001a���r��V��\u0011�\u001a�V�\u0011e0*�6�\u0003�}��Ǜ�S��6x�\u000b*��A����3g�u[l\t\u0000&��\u000bCMi���m�AH�\u001c���L�=&)^j�|{�����\u0007�3���Qm��\u0014��<��|\u0006��T�Z\u0014�\t.\u001aӛc��{�Hgԗm\u0001�n�\u0013\u001a�kχi�Ԇǩ�]��k5�\u0014���\u001f0uK+�\\ġ��p��?�\u0015c)8(�>����\u0012\\�Vb�\u0014�ا]O����ߟ��B\u0015\u0006\u0005V��ܣ�P��r�4�1�el�\u000f7��sL�\u0019�|0�AR�D=1K�{\u0004\u0010G\u001f!��_�̿Ź/IM�K�=%\u000eMC�STLaqz������\u0017��e\u0015�5u�n���*(\u000f\u0010��\u0004���e�\\\"\u0003-\u000f�\u001aR-\u001a��M>�Z���h��L�\u0001��z���A\\�\u001d\u0010�����\t�YW�q�e�_o�4\u0007�2\f)\fO�6\u001d}���u�\u0016�\f�L\u0005�E��8��y~Ŵ��bi{\u001dZ��Y��3�z�����nL�A^��as�oҝ�Z\u0014n�Og!\u0015\u0001�%�Fн��V�Q\u0011�U���\u0007e��\u0000��\u0010�D�Zy\b`77Q�»������8��L���(�U)�����0�o`�\u0017�rU���U���\u0018�_�sS\u0016#�\u0017d����D�\u0014��&��j\u0000R�<\u001b(�\u0016c�\n`�~C5�.��b�1臬MA��,�rvh���\u0013�\u0014��\u001a\u001dd$\u0001?��I\u0016�t�� \t�#G�Ad�\u001d$��M+dh\u0013�_��N|�����,Ys.~*R�#E`�&LU�)�Y\u0005r��<��\u000e\u0012@\u0006iwA\u0015\u000fas\u001fF���I�'G4-r>�Jdc@�EqQ�o�f���B�{U��\u0011kn!��\u0019\u0018L�V)\u0019l�\n�lۀܤT�\u0011x9P�}�}q�(b\u0017�F\r�\u000f��`J�\u0019�m\u0010a\r%�R�|W\u001d�\u0006��N(�W��\u0018�\u0002��4\u0013ư�^�\n��\f�|��\u0002��|~\u001c��{\u0010�%y�\u0016�Dw!hDp'��h�)\u001fS!�d5�E\u000f�$*�N(�%�\u000fx�����\u0014���Q�W�C�h\u0010̳\u001137L����\u0012��;\b�T�4DX�\u0006�\u001dL�e�\b����藺��b\")�\u0006$p��\bK@S�^\u000b\u0001� wق��7#��Nq��*f�\t�|t\u001d�J{�z&��n���H\u0000\u001c���3m���uR�A_�\u001d8���bI�^C���\\�{��W>MU\u001a�ѬB���ԙ�*\u0017Y��&\u0007O#:F�!�\u0011\u0007\u0002��Afl��ž��\u0015GW4Շl0oG����\u0013\r*,X�\nȥ�;n�J�a�_��@���E�-L~�\b\u001f�t�}�\t�'?]JVr�PC�R��\n7��Ć\u0018o��J9 �_�΅\n���\u0010\u00182\u0019\u001a(=<%�F���\\DA{H�\u0006��Ӓ��_�\\_V�%P\u0007�\u0005���ã�����ض�\f\u001e\u0015{\u0012m9\"(\u000b������_�Nx\u001f�=�K����·s~㮻\u0004�Z����� 9\u0004��*i�vI\f�>��v�������]d�$*\u001a��4��9-6\u0005a�\u0016\u0003d�M]{\\\u0006ࠊ\r�\u001bB�4��;$b\b�2���\t��.eo��Cȶ=�qy�-�KsKV�1htDl��%��AU�\u001dL���j���\u001e�\u0003�_\u0001�Y��\u001e����͜\u0019�����b\u000fn\u0013���O�e˛q��Ʒ4e\tf�ş�W��h��p_�\u000b����e���\u0007�تzu\u0018�+-\t�\u0015�pj\u0004/���?�ץ�_�#��a8κ\u001b�l�X�c��b�\u001aX9\u0011'5�@�����\u0019&��M�\u0000\u0005�\n\u0003����H��$��4$U\u0004�\u001a�\u0012�3�9�s�2t��,F�=�h�cWgה�ˮ���@�h�v��\f=1��X�¿���c\u001eK�-\u0010%�]\u0004��%Ƒ&�An�\u001d`���r�����ܾ���іi�\u001f߹���>�B�\b�O9�\u0012xr�[Z�H\u0017�s�ú��6���\u001e��\\\u000f0Xf�\u0001�\n7{r\u0004�\u00175��\u0005�3o���.\rW(�\u0007�¤ \u001a$�a����V��D��%�J��`�\u0010�>���ӿ%�f�<�;퐷�\u0003I}�N���*�Á�j�>�/�[U\u0002ڄ>4m�>�^���ph�D����2?g��.$�\u0002�/~�H2�7�������gp\r\t\u0005���*�\u0011\u0005����}�M��k���e\n�`\n�}z\t��\u0014\f�s��\u0000i��l��FS�NY\u001d0x�\u0002ŻP����`�&��4E�����\u001di��&\u0018�t�\\߰��r_𵗚\u001bo�AJr;�P;�N]\u0014�b��\n�M�#�}�c�o%�\u001c\u0018\u000f\u001b$\u000e\r\u0010���8���\u0003�w�&b�\u0014�ͱ�� �\"��\u0016c/����n�\u001f�M��ʧ\u001c*AD����\u0011Gr���\t(�T[W�vaT\u001dUj�\u0007��j�+\u000e=�F\u0018�#�ٽ�\u0010�b\u001fߘ3�a�R\u001f`�B��\u0010�0v��O��e\u0000s9(c,��\u0016�J+ְ�\u0002\u001a\u001e��\rF:Bz#Bx,�4��l��\r),6dž\u0003O�L�.-|^���+\"�\u001eK�Ǯ\u0013>9��,2�w�:0��ˉ��x�V���\u0018�\u0018�!�c\u0010wzu��S�F\u0002�\u0003~��묾�7>��xl\u0007M5��y�=�B�ӣA.�\u001d���L�\u000f�,��\u0011�\u0010r���\u001f���\\Z�R�Ʒ����\t>��6����%[T�\u001e�7��vN\\ĤX�p?2t\"Wv\u000f\u001f�\t\nʒ9��&k$_e� O8h�ʠ6<�D�\"L\u000e\u0016�^��Eٚ�~v�\u000f�؋0�&C\u0015����\u001f\u001aY�\u0016NG\u0013_Y��!S�\r��\\W_�M_�a�/��l�\u001a��\u00121�+~X��)�/��h�/Qrf�DHJ�\r\u0012O��>t�*��N�\u0017V@vlhd�\u000b\nj�#]嗯\u0004\u0007��&��)�m����M�,��31���8�P\u0010s�\r�\u0007�nA�̦��?�P�@�v�l�]f�����kM2\t�!j��~�\u0000x·\f�H�|x���g�e�$�A$�\u001d�����?�\u0018)�\"84�N:��|&�or��0�Y���\u0000>�O*vk�[g�\u0002a\u0016\b�1%�\n��O�\u0007�\u0014�#W'+�d�M��:�F��)6���So�Ь��\"\u0014��cy8�wN�9Y{�K�\u0005U�\b��d�8�k\bj7�ڬ;\u0011��*\u0003O��\u0001O�۪B\u0019�-��\u0016JX�A���&ː�,$��\u0003�-�\u001b�U?�C&����a��:�_��\fBpw�\u000e_\bَ�Б�b������\u000eD\f�*\u0016\u0004\\L\fk\f\u001e�,���Y\"���\u0010U>�!H�+j��H�J�(w\u001d�\u0016��1���!�k�\u0011w�4�w��\u0014�\u0000�W%���{�0&-�{[��\u0007\"�J!�A6�\u001d����ls�̊���c���\u0002���=J��<Ɵ\u0007�H�M!�\u001b�(�r\u001b\u0000�B7&��V_T~b5lyoN���<�z\u0005\u0002\r\u001d��\u0004��\u0011�\u0011u�\r5\u0001������:(\u0000��‚D�]��%(R\u0011���k|(�+�x��@{�['3�ڊ\f�㊹ ��@�\u0010\"�{E�@���˔b\u001b�o�bj3�bB\u0015�\\\n=\u0002��&�؟Ö��\n�A���\u0015�������6�$�6:$��Uҍ\u0017\u0003�*ëBY�,�,\r�B�b\u0001l�ZpbY�Ћ��\u0001�ir�M�\b�MI��\u0019\u0014�-���eƸ��b]��\u0006�Ҟ&ϵl�\f�A�dk���wUP\u000f\u0016\u0004^)w���j�D��\"�=\u001b\u0013+x\"\u0001�zj �AK�\u001dĀ�1�q4����E�����\u0002��r\u0019\u0001�Y\b�gIQչ�ۼ\u0015˔�M\u0012\u0015\n���\u0010\u0011{u�;u�\u000eq1�99z!�\u0018�g�\u0015{�tI��\u0004j��x�\"�\u001b�*�S��\u001d�̗۷U�\u00057��U�-�OԾ7\u001f�\u0018[�jB9�\\%Էïzl�u����,#T�R/�=\u0012ͷ�\rnA�W̽\u0012�D��}��̕�b\n\u0006\u001b�5Mڄe\u0016F�\u0015l^�\t�1��ڑ�\u0001F�\u0014����\u001bhIQ����?�\u001a4d'!�_qB���\u0012v߆v�\u0016�@�c�B�F�E�+�J;�\u001d'�\u0018�O�\u0017Y�V\tN\u0011\u00169H)O��-���.���أ�;,��t\u0019�d��m�(,�\u0015���\u0002��T�W�'�\u0013d������>=@\"BK<��IZ�W-�AC�\u001d؀��j�?:\u001b��N!F��@~\u001f��Nº\fCvb!����K�>;�;�\u0000�<���@�&ɂ�\u001b`�>�\u001c�x�g\u001c�\b\u0019�Y���a�j�sV�z�\u000b?\f7\u001e�q�Ƭ\u001dQeU%b\u0005k�b\"��B~\u001bG���#ҝ�?k6��^&�@Ggaw�hAKq|1k�\u0016��y��>�$O��e��x�#8��\u0006.��O�pk�fs`�\u000eh,\"�<�p-T�ZP�\r�ƀs�\t\u0017W1~�4f9\f\u0019��\u000b�\u000fQ\u001c�I�Q�\u0017���GI�o�T˿�Z���w�\u0004y��\u000e|\t��Lk\f�=��\u0018�_�RA\u001f�\u001c�Y��4�ni�\u00125��\u0014ys��r�xr\u0014��\"�\"E�\u0014p��\u000bZ��c=m2[�����\u0016�H��\u0012H5s��\u0000\u000f��o��4{��b^`\t�Ɏ�{铢q��lߙ�+#�nv�\u0013�J-�qPi�K��\r������v�\b�1\u0013��璫ز�X\u001b��L�16V(Z\u0006⿳��U�]�ċ[������m6�i΅����\u0002�\u0018�4�Hs���\u001f�\u0011��SPx���oI�oF;f�N]6��s.�\u0012\"�\u001e�'����R�\nai�o��9�ȝ��\u0013,�{z�\r80�`Uфz�p�(5=I`�>��/i�6�3)\u000e\u0003_��\f\t��\u001d��=��B�^z5\u0015\u0000�T���\u0016_�Wx\u000b\u001e��H_�AN��_��wz�F����\"e��\u0019\b��\u0000�$\u001a>�����fu�7�AF�\u001e\u0000����KA�wD��Yh�(��F�����?\"�\"u��oB��y��n��u�WO3�!�9��;9�����,��� >Q���ܽ6����\u001d4\u0010�\u001e#\u0003��.\u0018�\u0010YAo��~�ޅ~J0�0\\��1�\u0014�\u0016\u0007�o[\u0017��\u001d\u0005���\u00017��x����P���\u0014�!*����|IYu��Y�=��x�ύ�� :c����j\u0010D����+>��d1�!�Xp\u0007y�1.�Qiy��v`���=\u0019\u0012|d l����� \"OJ&P���\u0000�tʡf\"�q��A\u0016\u0019�;c\u0007�<.�η\u0018��\u00071�\u0018Od�X����aq�t.�6/\u0007g4/7�9��U�י��e�Ѐ\u001d����c1�A!?�2� �$�4A�2��$�$�AL�\u001e\u0014��J\\M���ܮ����g\r��d���p\u0013ʍ�W|���\u000f\u001c1ӌe\u0019�ǫ}�Pyz�9ϊ4��̞��3�\u0002]��b����֓��qL0>Pk\u0019\u0005�?*^6F\\��kM\bT�7�ℳ��Nzv�<�k|s-\u0015PT�\n�>vE�ݟm�[\u001e���\u0013��V��F$����v\"a�W�\u0002Q�Һ\n�p|ב�\u001b~Z�{����\t(�ҫ��T�,�4B� �Q�\\�𰮂�`\tG#炙�:3D�+�#�\u0000)��'\u0018u�]��\u0012s���\u0005s;�׉\b��a��)NiTΈ�����\u0014n\u0014=h���X���Dd\r�\u001e�\u000f�`0ï=����8�=�<���}&�\"\u0013mr��BG�A+�\u0015��\n�+\u001e#�\u0003m��/�t�nH9x�A(�\u001e(��ąQ()_�\u001e2n�Z\u001c7��/4\t���pdD�\b#�U/\n\u0002v��왿?���\u001e\u000e�p\u0019�\u001c�UX�q&�m�\u0019��1�\u0011‚\u001d2�A\u001e�\u001e<���l�xK�ED'�\u0011����ޞ��\u0012�W�ɹ�Tf��\u0017V#�Ri��\u0007�\u000fs\u000e��^PDs�\u00198.��[\u0004\u0012�t��e4=��d�5����\nw�X�\u0007�_]������p�k��?ŷ*�w�&��]lv���)e�J���U�\u001d�\u0013\f&*�w�\\��-\u001bq����3���L\u0016�\u001c���k.o��\u000f\u0003;�|q�-�U�Q6� ��AҧK�HC\u001d5p�RĈ��\u0002^�Ŭk�W;��\u0015]�޸ז\nG\u0011]\u001d,\u0012\u0006\n�T]ovj_oJA0��s1^��wF�3\u0018\u001f�4��\"�\f\nOo���:��\u0001���|u�����G��э�\u0000\u0013�)��A\u0019�\u001eP���lδhh�\u001e\"��w��\u0013[�.�Dpl>��6P�\u000e\u0019��Z��&\u000fw�Uty\r\u0001���m%@�\u0014������oV�x.i��ꄸ؛�ry\u0010�w\r�\u001eHh6 KǠgn�Z�x1Z�B����0�p������(�pRSu��\u0018R\"���r7�Oٕ��W\u0004wt�8\u0001u�)#�H9�;DP�aH~W��\u001d�u��\"��I\"\u0018��������RG��\u0002a�u��\u0014��>�l�����\u0019���T\u0018!3\f\u0014���ٵ}O�X��9��#\u000f��x�û�ؖ�\n\\.p\u0010\u0014\u0000�t���xk�r�\u0002r�֐\bs\u001b\u0000�u\u0017ty�'\u001a\u0004\u001f\u001d��A\t�\u001ed���a'�%���l�e�|i��[\b��\u001b��;��M�\u001aR\u000e\t4V�.�r��V��8�qvyϡ+̟���<�N�yN��|_\u0015����ӕ�%�P0\u001e��s����\u0003ţ�x�\u000e3\u0014\u0002�\u001d��4���\\�`\u0004?i��,�\u0019z����ai�J��|�ޣ~*\u0016��jq�\u001e̾�泲\u001b�(���;zq�\u0014�%\u0006\u0013\u0003�S#��^V\f��'��#K�6�L�b�,\u0007G��s\u000f)��wZu���6\u0013�ۍ��\u001d��c���W����r\u0012�\u00167��\u0017Q�WM����w&\u0015�'�$��\u0006\u001dڰ���c�rm:�A\u001d�\u001ex��L��_�&�`@���\u001cB�\\\u0001b�\u0004K��\u0005�߿��J�x��qQUη�=P@��\u0018��G��$\u000f\u001f�dy-��:k�>\"�\u0019J��\u0010u\u001f0�E������W�\tDQ���=-_`�ۛz�_����\u000b���;�\u001c��\bu��\u0017�\u0015��P���\u0000�\u0006Ǻ���\u0012zif<�i\u000e�wLXo\u0001\u0012h\u001d<�U1��Fa���$N�%\u001azƅnկ��0d\u001a\u0017�?��)MH��-H\b;�(�5���|O\b��\u0001\t,�\rO�ln�����\u001b�+�6��T\u0017��tW���C?�\u000b\u0019P�\u001b��F\u0019�E���w\"LzÙ\u000f�c��T�\nS?\u001e\"�⌌��A/�\u001e���L�^�\u001fY*�%�4�߼��'��\u0006b\u0006�1�\u0016 �>�͓��/�cٔ��L\b\u0010�L\u001f�\fF�08z=|\u0006y��s�k+H�j�7��,��3��䌽�m/�u$,��\u001eᐻ\u000f��ݛ�C\u001c_>�\u001b�\r�_N^�)�<ϱ��/(/�N��_\u001b����c�����]�Z�}S��x��\u001c��#�,�T�jmv�\u0013���\r��}˱�ab�B�Y�BOT\u001d7\u0014�-�\"i6�[ �D\u0016�:��Ņ\u0001*\t[m;1�\u0007\u000f-\u0016�7\u0018\u001ca�V>Ǚ�.JH�\b��f��\u0016�RQ�g�wL\u0012�yZ\u0010vcUeVU���\u0014�����E�F\u0003 \u001c�\u001f%%\b�T� �/��7�n\b \u0011$�\u001f��A9�\u001e����b\u0005${��:�o)�hU6v\u0003� 4�1�5��\\ \b6�\"ӯ�D�G#q~�_� =�\u0010�\u000f\u001e��\u000f���!��ؑ\u0000�����P\r����I��r_��\u0006���ҙ\u0012\u0012`V�\n�3�za\u0010����m~�\"�\u0006��\f/7�P\u0007Q\u0003�i��\u001daj_U9���]�\u0014�|t.�\u000f�Q��:y\"\u000b�UV+�\n�aJ�(d��\u0016x�\u001e�\u0015�h��0\u000f���S�g_\u0016�յ0�\u0016b�`FN�m61�\t����qr�:r�3U\u0014��u�1ɡȽ\u0011ޒ\u0007��\u0007��\u0011wa���U��\u0000�8��\u001ag\f�\u0000|�\u0017�յ|4����\u0004�}A�\u001e���\u0016\u00128�v`��\u001c��K��`̧�cHx\u0012�\u000bb4}�3�iH����9�AC�\u001e���Mt��肿�KS�־I@\u0010\u0007�\u00135W��O�\u0019\\�P�\u0018�!o'�\u0006+\u000b_����,9[4�D�j-X�|\f\u0006/���\\i1���\r&ϼȉW�ǫ��)�\t������cT'��c��^Q\\\u0018���nt)��W��\fō�\u0014��\u0016��#��vT�?u���\u0019��.�c��\u0002�ݲ���1\f!�W\u0010�6�.�A�`��.B�\"\u001c�Y�\u001as�ni���f5�)�\u000e�\u0000���h��W%=��D�I�(������\u0010\u0012\b���m��:��\u000f\u0003(�\t_\t���?*��*�D�����Z��C\u0015%��'\u0011����U���\u0012XN�yW�\u001b]�O\b\u0005j���;\f��\u0018��\u0005��c\u000e�GX(�F�\u0007��r&�g��\u0001\"\t�A%�\u001eȀ�L�G\u001aD�ٽ�1v�\u0018C,+{\u0015\u0017o��\u0016\u000f��8\u0011�(�?��\u0016���:�<\u001aZ;�T�\u0005��xλ����\u0014�����O���ܪ��Z��'>���ǣ\f�\u000b�\u0015�\u0015s�\f��\rqf��\n\u0012�\u000b��H�-z�wf\n�Qp�J/p��F�e�{�\tL��Gz���\u0014��\u0007\u0019�\u00077R-�#-e\"( a5\u0002\u0016#�bY�Xb��F\u0017�=C>?��\u0019\u0018��\u001c�߬\u0011�\\�P;�^\u000e\u0017�}\r��\u0013 q�9���w7�\u0004�\u000e�������g�\u0017C�:����\u001bZ��gC\u0010\u0017.�\u00124�/�D~�Fqj\u0005�\u0001���\u000e�v�STup���-�4\u0011\b<\u001e,���\u001d����?�AL�\u001e܀�L��\u0000\u0000�\u000euQ�O�$yˣ�U�\u0014zM�e\u000f\u0017Q\u0003\u0003�Ǥ�������ّj\u0012\t \u000f�S�����\u001d�C�/�\b/�\u0011<�#M�K���t�\u0003]<\t��q��6���M�\u0015�.�$\"[\u001a3\u000eniFx�y\u0013�yR���S�y���l�Go9���Z�TR��&�-�6�����N��Ӛ�@&b�M\u00129�ó���G_��\u001c�r�Q���\t�c�1,�\u0018,\u001a)���PS\u001d��:1��[���\u0013\u000fR�/}&G�j��w8\u0011,��^\u000bO�+��J\\�/��\nӬ�^3��\u0012�ɳ���۞\u0007W\u0000���7O��@/�+ '�TD}W\u0006&\u000e��Н�a�\u001dP���[����c3r{^�T\u000f\u0002��t�@hS'��jb��i7@\u0016G�E�AC�\u001e������-�rx�-�_'Š\u0007�\u001c�ñ|t��œq�2�'T?8�G�O�A�ri;\u001e��2ICU�H\u0010ggF�v�\r���h��\u0003y:lY\u0017�\t�Zzփ<*���M�\u0016s\u0002Z\f�\u000b.ګ�[U\u0014Xl�dxK�U0\u001c;<����$\t12�\u000e�A7S�E�SŦ�c�U��*9�c�`\\[sc\"�E��s��X`\u0014���\u0000���\u0013\u0018�Vl\u0012��53f,x�;���\u000b\u000bw4\\�\b�V�g#�I+\u001c�y �L����\\�\u0004e.\u0010�\u0012��K3���<\u0001-�\u0006M7\u0018�1�oP�`�7�zFc8'�Ӣh�L���\u0010�rqۋ�)~R�V������\u0017�m�b[;�\u001c\u0000'@\u000f�D\u0006T���ݫk\u0000\u0002F��&��������I�A0�\u001f\u0004��L�\"2�C#f\be��$RP��\\$–ɐ����.b�iA�f:\u0011b\u001d�\u0017��� C7:\u000baG|��w\n\u001d5�RYx\u001d|`\u001e��7����}u�5x�\u000b)o\u0006��/J���e\u0014\u000b\u001cP\u001d��pd;�bb��\u0014:��4k\u0007�7\u000bI�[��\u001b2�����k;\r\u0004U̥��m:����Ii�|\b�\\�$:[\u0010�.\u0013��P��\u0006����Bsٌ�x\u0005\u0006�\u0012{=\u001bȄL+�!B��Z\u0007��!\n��!ƕ2&'\u0018����\u0007��\u000b�o���K�\\\u001b\u000eO�\u0005V@Åd4\u0006\u001d'��a�`\u001b:p��2\u0019*b\u001b�p��QW����U3�1f5��<�bZ\u0012����\u0015����@���FMm���AX�\u001f\u0018��M/�K�b0�i}��CS���O@��x\u000e���f�o�\u0012��a�Q0�$\u001f=���\u001d/�Af2oپ@/�\"B\u000e��%\\\u001f��n��\"�\u00173�\u0016N���T�/\u0001����A?���_�\u0004;�Ո����u\u0016\u000f\u0011i���-48�\u0014���!��t�n�#q�\n��=c[�\u0001.ݒ�S��5?���S`���P]W���?��\"����\b\u0017\n�`;\u0016Y\\vI*�@|�\u001e���\u0010�`\u0015��5$��\t�\nӦ\u0007\u0006���\u0001f_��vX\u001b\u001a�U�^t\\{I^�t�ِ�\u000e{%ĮB���\u0002|��*\u0003�����K-�ٔ���Q'\u0011֗�-�A;�\u001f,���~�v�^$�$��>���٘�\u0006�\\��(�\u0002}K��voɣٶ8��AP������h�+g�oj�͕�=�\u0010I�q��\u0001e��\\\u0002�!\tq8A���X�$��\u0004}�;��#�߭\"���0l�ؐ�\u0017@��m2�\u000f,��{䟣�G��G�{\u001cǓ��!�\u001c�S\u0003k6��m����ǵ�\t]�\u0013��%��R�za3��\u0005~_�-�I85b�W�d'��-�Oj(:�\t3�-R#y��\u0015�\u0001!����$gU\u000f��䀱yS�n�=V�\u0010��[w�����-.�\u001e��,ݩ�8������#x\u0000�6�h\t�+Se)@Hˠ\u0019���M���\u000b\nL\u0012t��e�3\u0012�B[��7�͓���ý\"T����s>`\u000e%�Ywf�ٰ�g+\u0014;�\u001e����+�>-b��r�cvK�Aa-\u0004�\u001a\u001b%'�AL�\u001fT���mr۴����\u0006�<�\u001a�n�5�x�:\u001eլ(�Z�\u0004�?|��\\�q@���\u0006��\u001e�.&�\u0003$Q��Dh�#�t�9��\u0000��H�N���V�~��*����t�5��ē�\t7\u001a'�����4\u0004�\u0016�nYB�\u001f-�h��,z\u0010L��%$�*o�[\u000b�B,.Z�A�rO�*_�?� �0�i��\u0019\"\u000b\u001c�T2\t�K�i�|�L`�͊����\u00066U1\u00003�*�\u0013K[h\u0004<�RԊx��_��o�\u00138\u001d���WTNW��=�z]>��=޲xT��\u0005��$ͣ���M�\u0001+�C�麑\\���\rln�{�ޭ9y=�ctb\u0004���/}�\r^؃$�>�5gX��פ�\u001cΰ��6JI��7��R�\u0015\u000b�j\".�\u0016I&�AA�\u001fh���r�Ea¸;*!\u0004�p�H�\u000f�\u001a�����\u0016\u001c\u001d%�z��PP_����\u0015��\t% �Io�f�����\u0002����\u001a���\u0016�\u0007Y\u0010�“}\u0013 IԵ�\u001e�O��>�\u0007{�?ɾ�P\u0018\u0001�C\u0019�_�J�:�b�L\u000fP��\n�|�1H�ڙ�y\u0006\u000f�w\u0019hʬq��\u001f�h�\u0014jU�T��HU{*��\n���V�\u0019�{\r�s��(WnZ���A+�n\u001fA�'_iQ\b\u001a0�\n~���E�\u0005\u0011N*,t^#�C4��ȍYY�i�\u000e+�j�\u0001z��g}k��l}\u0010�.g�\u00059��}�\u0015\"�{y�5-�����\u001a�\u001d�$���cWE���\u0014�\u001d+Pvx���^\u0001!�nܒZ��Yl�?\u0013�\u0000@���s���$�A]�\u001f|��L���V�ܓ\u0014��\f*���.���NA/\u0002Hgx���.5�.�K#�,31���f�\b⑑��?w�\u0005c*�+�W�].���IL*�����\u0017�\u0019����G�\u0019K�^�;�}C�OG�\"��\u001f�Z\u001bq����N[�C\u0010�j3��p���Zk���5m�\u0015U}��&��eg-����\u0006b:H#uT��84��rb���ܱ���m\u0002��K�uͅ��K����/qμZ�ƕ�j�\u0015a�\u000b\u001d��\u001a��\u0019\u0016��\u000e>�meh�%�\u000b\u000bp\u0016��2�\u0016�+f\u001fo5�M���›ku�T\u0006�GW\fa$\f�����\u0011]�\u0002��\u001bv\u0002��~&h�:~2��¯�?O��Q�J�X_�t;��\u0001\u0001�S���\u0015�#��ܻO�P�>��B\b�<�e���l���o2�q���Ak�\u001f����\r�.{�o�2J�\u0004�'�%��yZ2\u0014���q�7\u0003\t0\u001c\u001a\n�ߧ(��p�pV�\u0018�/\u0001�S,)O(~����(kb��z�\u0011i��N�pk�0�\u0010~v��\u0003$�'�Tа6���k�0�V~`\u000f5��c�[�\u0013�\u000b>P�i\n�A�\u001e�L�n�\u0003p��\u0001����G\r��\r$�5�>�ݑ�ݕ<_���h��w�\u0014z �M��\u0006�u�S�5�5x��\u0013X5\u0003Rj��f\u000b�쁔�l��jo�^��aC\u001e^I2��(հ)��\u001f\f��'�+i\u00058�AГ��\u001eݍ����-�J\u0010�|�屇Qkh\u001f�x��I�F\u0012����r���V�y�N!�!]H��#\u000e\u001b���E��\r\u0010��#8����B%�$���~��%\u000f8�w�V��ϯ3�?�����z�]��+~\u0004����/����$��Av�\u001f���L�^�\u0000����v\\=L˼�\u0019p�sL|C����{�둡�>tЂ�e��\u001b�'Jhp�:���f��\u0015�#W�\u0018#F�\u0004�\u001e͔�{\u001e\fPBr���x�<��M��k��d��+����H�\u0010�‰\\31L��xw��l�\\\u000fs[�\u0019��L�g��W?P\u001c2ւ��U\u001e�q�`\u001c�\n����%^��=w�l'q�VH����H\\M�Y�~8�\"ޢ�\u0002�E�B\u001fy��ϡ\"\u0007��Pk*7\u0001�\u001e\u0017\n\u0004מ)�2\u001f\n��VM���@�Ԓt��G��'�L�6�Ff5|�M�E�\u0016z\u0015��9�����2pr}_+ \u00153j\u0010,�d�\u0011�WΡׇ��6�Tv$f�g\r9gaM#��P��W��˥뒯\n᜔\u001cy�wҪ�*������T<��V9/\u0003\u001c�\u0006���4�O�p\u0013H���B\u0013�\u0012]`�[Rv�AT�\u001f���M��ɸ|�\rG7P�z\bv�*�AԾ$-\\Ӣ�_>͛�v�\u001b�N~\u0016�aE�,j�*�*\u0006ŚpmƉ`�3\u000e{\u000bE���\u0001.hjpʕ�޴e\u001a\u0017�?��]��O��8\u0018�m<�o�m<�D�J���\r+ѿJ��f�\u001b�6�\u001c$��\u0001��^��\u0015�\u000ek���:&���[��]�(���'�3�Č8�������ج��~:i-:\u001d\u0003j7\u0003����;\u0001�#�����j+���h�i\t�I��^\u0019�O.GT%�)�6�5�|_\u0004� \u0003�\u0013\nm-Ć,� ����@�Td�D�$��4�\u001e�>>A�B=HAA2\byew�\r�\u0019���֎�E�r�u;��0N���u\u0000��\u0010�\u0013KX������\u000f\u0012�'0/��:��,L\u0007-H�)ٸ�\u001al�$�A?�\u001f̀�L�\\X&\u0003[M�7(�q��?�ۧ�W�O\u0013�k��\u0014���E5}�jԅ�\u001e\u0016��`^81��g$�h��zP!�\u001d�훖�S`̡�\u0013�v���_�O?-����{�_����\u001f����%+1kJ�\u0019\u0015i�c-i:��k��s\u0014�\u0002��Y�;j�ñpB7��>[��m���ݫj�䴏�\u0011����\t�@��\u001e�\u0010�&=\\=�\n���٠��\u0015T��eX\u0007�\u0017�|��<)�Vi~\u001d�P޲�x��}߽�v�\u0006��tܳ3Kk��5�9{��dny{2�+=~\f�]A�$���\u0005��w�Ƒ>\u001f��SN�%��xՐw�i2�E��\u0018M\"αZQ�\u0006oc����E��\u000f�LE�\bH\u0019mۂ,R�\tVܣAH�\u001f���Mz�۵\u000e���4~\u0007����|����\b�O�����\u001d���FZ\u000f\u0013S�\u0000\u0011l�\u0015,\tq\u0019/$��jYgٷ\u0000{�`�qn}�\u0019�hl%\u0007\u0019��\u001d�[��K��٩�\u0016G�;Q=�\u0019�}L(�u�K\b�K�A,8v~\n+n\"����i�b�o�D�X<��X��\b�gw{I��!\u0014֣\u0011��]�r�H�Ɋ�bYu0�s��]\u0003��}���^S[\u0013�\u000f�?';+�\f����N/�?�a�\u0016-�\u0017\b�m�����$��\\6>9���Ň�˜�'[�x��V��^)4\n�\"\b\u001b�Z,�{\u0004T�9�0��b�՚2�O�\u000f{͹1�\u001a|�F�\u001a��\u001bO6\u0007E\u0001BK���y�\n��W�fw&�h��\u000e�oT�\u0002;�_�\u0013��\u0012P#�A\u0013�\u001f���\u0017��L\u0016\u0019�vp���\u0018�A�6[/�cI�Y��h���s��1��_�Ş�Js�<�V\u001a_e�xY�B(\u0010)՜�X\u0006\u0007<\u0007�\u0007s��F��\u000e�.�e�ܥvZ�*F\u0007E�\u0002\u001c�\"\u001en\u001b|e����?����\\\u001d�/���^�{��kr�n�\u0005K�J�I�2�2 ��\u0006C'6�A��ݕ�\u0005�?p��!7e\u001d�lz]C1A�\u0006C�r5�\"�&�%�8|��\u000b=i�����LM��\u001d��/q\u0011�\b\u0004\u00162�l7�{p\u0000\u0011\fÂ���\u0004�7O�N\u001b18o)��`��6�b�\u0004�>���pmFv�Q%\u0015�\u001e \u0000�^�\u0010�\"��A\n� \b���\f�bꚳ0�ɣ�f�7�u���\ng�aM�Z�\r�����\u0001�-h2�o�Ԉl\u00134L-�\u0003N��.kqK!\"kl�G���`��;���7+q���Z�\u0006$wu�']\u0019�/\ny��S\t��\u001f�\r��(�޻M���)ͻ!�\u0007J������=�s?Ӂ�E6��(����q�j�\u0016�\u0011>�\u000b��jKsI�\u001dR\\��rP��\u001c�S���Vm\u001a\u0004���\r:�\u0014�a\n\b�mS6����K�ٹ�\u0004�\u0018���V\u0011���V��(;�MObU20�2Hn��T>�0�8\u0014�u|¥�x���“�AD� \u001c����*��H�\u000b�j�K�>�V�\u0001J�eH���\r�Yn��U*7��&�\u000fz���Q�x���W�3>}��\u0019�#���\u001bD�2����?p�I�E�\u0005��ۛ��;����뺛c��*�\u0014-<��,-6Mz4�h� \u0012c\u0006�(�H˴�\u001bVB$�Q\n�M�#��}��\u0000ڽ-�tp�z�\bYj����t;�\u0014a�\u0017��\t�߯�̊\bѾ�HW��=�\u0012du�\t\u0007�@#a,�ڔU��\u0018Y�3�fmۡ\u0016���X��k�\u0011J��a V\u00035��\u0011�S��\u0011�D���Vq��ÙU%��\u0012c:�����6]�\f�' �M��UY�7��I,|���J�\bf�H��\u0000J�5�\u001c\u001a�W{�\u0000����Uh\u000f\t��p\u0004��A\n� 0�����4�r��BW6%�\u0004�q�\u001a�?Br\r\b�r�P��)�ʛ.���\u000fǴ\u0002�\u0000myNΙJ\u0003\u0012�\u0001��\u001f[�\u001aPq⏦ȅˍ:\u0006q(�iв\u001f<�\u0014hֲ\u0015��?k��˻�����M{VN\u0018%��Ā�i���rݰ���x�\u0006��BhGmAb�eO}�,�1��Q\t�%{�#nj9\u000e�^=\u0019n���@��\u00121?��'�0�@_)\u0010��ӹD���5\u001e!\u0002\u0005oW��%��v�\u000b�\u0002-���\u0018q��:%�B���(F덠�\u0007\u0011\u0011��T�QRN���}\u0004>fi��_���f=������A\u001b� D������`�P��O��\u0000A��՜�I\u000f٠\u001b]�֟ʾj.\n\u0016��o�\u001e�Bh�D_�n����\u001bk�\u0002��'�������n�X@�Ep���\u0007��i���\u001cL�\u0005�c�u�r�\\��_+\u0004y�\u0000�n9��#y���B����8a\u0003h^>�\u0000M��\u0001[��K-�C+y�C\r�\\�T�H9�,rm����\u001c\u000ft2Zl��Ji'D4�\u0017HC�WŠz;����k`g�\u0000Ԕgfq(.\u000e�$�ٸjU,�9��v���\u0004�Q2�-8�L�8=�H�e��\b����\u0013\u0000�.�\u0001��ֳ�ݯ\u001f3�Z��t3�~(!��4����h���A!� X���A��2�e��y����`�+J��9+�\u0015?lB/kS�\u0010��q\r��d+��F\u0012���\u0011�͟2�&;�7z\u0019#5֎��q�d�^���Dgy�f��:֮\u0014\\�P�\u0007@s�g*\u0000#��KBq`mxs����\b��A%� ����\u000f�\u0010�2����\\.Oi��N����������l'�\u0003=-�\u0013H\u0014�79�p�o\u0016\\\u001aڲC\u0001�`ḏ�\u0012���g�����!\u0019��Sd_L�\"u��wI\f��Ήc��AFj^����\u0010��9_�ٞ�w?1�\u0015��d�)6��'޴r'�h\u0000���2�m��޴�T!x(jW��:O\u0011A~�J��MLjF\u0000!���lN���E�>��\u0003���%��x\r��\u001f38�v\u0016���\u0018\u0010�el����1:\u0004�F��\u0002�{\u0016�~\u0015�So�d;ȃU\u0011��\u0017�q�o\u0016K\fN=?�\u000e2n��h�\u000b3\u0019o\u0013\\�l�h8�I���u�?��l\u0018�8�9X:�\u0016��A3� ����\u000eS\u0002�T5c7\n$u�͆�%�Nd\u0016��8��c�\rv�Ғ\u0018f�t��tJ����34\u001a�\b���\b�=ゑ\u0015W��q�X#��tQ��[\u0010�r�\u0002\u0004�'R@�\u001d6p�\u0003�s\u001fI\"��\u0007䬕�\u0010�\u0019\u0003��V��[4��@�a؎���\u001c���Uٕ�;�Y�\u000bq{��'��^����Gx��{\u000e\u0014��b$�=\u001d�J��x\b_�\bI\u0001\r������o6\"�6��\u0019w����#��5m7NB���\u001e}\f\u0003�ϳ\u001cĜ�\u001f�<��]\u0012�NyVq�m�:y\u0019�6�>U*�J`��-�\u0011c~(\u0005.7�\n�\u001d\u000f���>���š\u0014��\u000f���\"W_I�o���g��Q ��D\u0006��Am� ����\u0017\u0011RB٧�#�\u001bL�oOax:npǎ\u000fB\f��\"M\\�^)��c��()���e�L]~: �Erk���v�\b\u0000�{Oa��@H\u0006Ԯ�IB�\u0006v��\f��3B�Bo\u0019�(��\u0007\u0018��\u001d\u001e�'�p\b��5<�կZL�̪��~�\u000f�t[>8�4OQn�@o�\u0017�yԓul��S(\u00148\u0016���ߖֵ\u0019���=���Q\n?��\u0019�_�,]��_\u0001g�\u0018��z�%�D=\b<��]�\u0017w�\t{�R�\ḇ4`\u000b�Z�Ʒ�8D��\u000e\\�\u0012+��*<��\u0001]�Gt�>�\u001am��6E�+��]M��N>���_��p\u0012H�l�������'B�(\u0002A��'�;�TW�\u0003=����\t\r\u0000�{�?i��n(�q�k<�Z�d�����8��f�YH9�t\u0014l7r/r�`x\u0013^sI\u000fc�>D���A.� ����̘�\u0014�f�ǰ{�\u001b�[�J\u0018F��}�R�(��1�t��\\͡@�D���h�\u001f{�Ҋ��\r�c�@���iR\u0012\u001b�\u0016\u0015&2q�Z�Q���\"\t{�#\u001e��\u0013��`�]\u001d�5�W��:�Gc|ft�:����\u000b�Vmp�B\\����\u0014\u0006�7�:��#�\u000b�\u0015��r�\u0018�&5\u0006h�:\u0005�\\���\u0016�\f\"\u0016�\u00180��L_MsY��˕njg�y\t�J�J�M\u0005\u0000�kr5�;M�->ؒ�_��-�ST\u000fU�v!�\n\u0002���Uy����r��j�q�S��k'�H[T(��/gƓ�\\��kİVm\u000e����h7�'v\u00181\\F�1����'R=˱@1��Eh�\b�[\u0006؃�A/� Ѐ��\u0017\b!\"1�\u0002�iQ�\r\u001d���:��Un�\\�\"�UGkrWh�|��$~z�\u0017�x'<\t\nV\u0010�\r�qڬ;\f40��rVџ\u00146)cE��¸C�������ZTr\u0019���\u001d59�-\u0019��J!������<�G�O�t�\u0000��v�=���g��\u001a^mpo\u0003\\�d��ڞ��<���+�yGxٌ�r\u001f�7d\b��A\n�-��%\u0000�\u001a.紀2�\u0019\u0019�n�]0�\n�+�\fe�8�~�1�.9l-s�'�1܍8�\u0010�6��U'�9Fdp\"���hKN�\\8�o�+-�����q�<�sCK��pp$���,g\u0010α�#Z�X�����3/�B�x7�g�o,l\u0018��A@� ���}��\u0013��\u0004Ĕ��G��4���S�w��\r�B�EhP�\u00050\tU�\b;'�}��\n�p��M�1\u0018��̲��\u0014��n��g�E��+���\u0013��?��:�\r�\u000b\u0019����\u000fz8W5>�MP�8x\f\u0013\u0000��#��M%�œ�qd�y3\u0005���x�\b��UV�o�\u0013V֫@��W\u001e��;g\u001c�T�F�b��\u0002�wQ� 4�/�\u0000�)�\u001c�Qq��v�rRڴ������w['\u0004�s�C�c\u0011\f{\u001ew�a0A�06H ս�4��VX�l]eKtԳJ\u001cՂ\u0004�e7�\u000e�or�T솅\u0005*�U\u0017���x����`��QN��cڷb-T�ع!�q�\u0019\u0003�\n�\u0010t��(���n�@\u001a�F���?�����0���Bt� ����\f=-[���\u0005–\u000b:�\u001c�~��/kY�4\u0002ҥΟ_��ʃ�{\u0015��/c!>��숯�\u000f\u001a�g��h��To���O���X�\u001a��\u0006O��C\u000f1)[��1��\u0002�=��;\\�@�\u0015\u000b�D�\u0014\u0019��i���n��{\u0002]���;*��9p�7]_f;�k��\u0003e\u0010�O�\u0014\u0004�Lb\u001acv�-��\u0015�tN샅��Š���Ò��%�Oym\bG��%I���s7c\u0000 �y�^\u0003;uir�x>�.R*�\\��1.1/`�m��)�Z\u0007&\u000b9�;�3��j\u0004��W�\b\r9>\u0007���C�\u0007�O�:�@�\u0010�r*�`q�\f8vg�5/\u0012��t��ێ�K�\u0012��\u0015'���|�7�, \u0000�\"J�TϚ�\u0013�����,�qu4`\u001b�@\u0019\u001b<�l��\b\u0007\u001f�r�b����$���ٓ�g\u0018V��C�\u0019�3�L�U�\u0016�\u001b�TIrX\\��y\"$/N'6\u001c�\u0012��\u001eBGS�>A�>���&qQ��v\u00065�\u0017\f1�]\u0004G�l��}�\u0005�\u0000�z� [���U��0�=J,v��X��@k\u0006��v�-;U\u0003S `��/E�@�.:�\u0015�*¯u@]\u0016�j\u0015��6#�+*���Meֶ������\"U%s�Z<�R���\u0002��Vя�8�@\u0013����\u00144w�\u0002Z,\r���\n�$�����\u0002O\u0019\n+\u0019;D@��]IKv�٦\u0000ݦ�x\n+��%;��\u0006J�9��I�X�Y�m\u0014�|X:=Y��A�ӄ\u0012�P�������ἐ�A3�!\f���V��[���Ѱ�6�r�i�q�T5���\u001aB�\u001a\u001d�\u001e�띓�0�Λ�#My��o%}5k\u0011\u0004�&�\u001de+!��>2@�\u000b\u0017�&��O�t��h@���\u001f�خ�\u0012B��Ɩ�z�ڵ��~O�0�\u0014��دeQ�̑�\u0002̿gfE��\u00068[>�a��c*$\u000fZ@3Nݟk?;��|{ĀI\u001d\u0010OpVp�H�\u0019�*u�\u001e\n\u0005�\u0002��,�_�������\f�'\u00079�\u0002�cG�z\u001c\u0010�\u0016c\u0019o���\t�9_�M\u0001I�\b�P\fX��@cdK��}��Z���g�8G���\u000f��H�\u000b�{��'�M_��U�g��\u000b\u0000�=i���_�\u0016\u000f,j �\b�y%��-�\u000b3nga5�����A:�! ���\u0001�]O�0����gčyt�7�:��3~h\u0012� �?��\f��\u0018�=6��LG-#�cI6�yoO3�q�\u0004#\u0002�\u0012M�2�\u00037\u0003��,�����6�A\u001eKiN\"��%\f��\u000f\u0011��a��f\u0016�0������\u000bi\u001a\u0002-�I3|�M{\u001eV�[\u000b��\u001b=/\"VC��O�@\u001c�R3P)E���\u0006:�\u0016�&���d\\\b\u000f\u0006g�N��\u0016\u0002�\u0016o('e��jB��f�}\u000f�93��\u0011\u001c�`�\u0002�\u0000�%�+[\t�b\u0007��5\u0005Î\u001bw\n�Y����J�Ki\u0017E�~\u0013ѣ0/�gB{��s�m�(��4�q\"4��\u001e�\te���O^�����ib�I\n\u000b���$}��xP�`\\32d�\u0014�s��\u000b\u001a�ߔCh��A\u001f�!4���b\u001f\u0004���U�w��0\u0012Z��83#\u0002��i\"��2*|�\u0011KH���l'\u001f\"\n�є��^^����`L�\u001f�\\�ӹ�z�\u001c2:���e\u0013\u0015�#� ㋇\u0000L������ 4���wT855��HU0lw\u0001��\u00041�&�Fl�\u0014��Œҽ,]\u0016��i������TA��f�2ccrf��[.\u0006�<�\u0000\f\u000e�C㥠zŮ�n\u001a�@���M7�\t_��j��\u0011Tw+�V�'ꈽ��Na�<ρq��\u0001�(\u000e���3Bg]U_���qU��1�a��}�4�{\u0016��)���\t}1�R��\u001c\u0006�\u000f-�\u0018����C�e��Sm6��M\r\u0015�٫���A\u001c�!H���*��J⭆s�N��w|�ȹpS��T�^R��\u001ad����\\\u0018���H�sW���)�sN)w���?^��\u001c�[W��My�H�n\b��\u000b\u0017�Y98��S\u0014R�\u000b�<�\u001b��\u001d��\u0011&�\"�\n ��j��Q\u000f��\u0017,�\u000b1\u0016�W-N��알�����A\u0013w-�$��K>78�֫kj�A`�!\\��L�oL�\u001e<\u0018CD�L\u001dp���$�n�5fڞ,'�&Zd��\b\u0019�;Nخ�\b7�?��\n�+��\u0001u�����\\h�~=�5*�BFD�+��/\r.<׌�+be\u001ca\u000b�ߨ�o2���0\u00112\u0013���g�$g�O�\bы\u000b~����2y2c�4\u0017є�c3G\tj\u0019.��D�5���p�_�j\u0004N���v�'g\u0019�T�g�����t>l%cm��!�iJ����U%� \u0007�\u0016��Q\u0006E)�j�\u000f\u0005�ɣ����Ѩ��3�LM���Y��\n�nϻv�<�KEs=�\fa:4@�|���0��IW\u0004�i\u000b�ϙ��Fdv��'x��$k��ݕ��/3\u001b��\b��e�k�Y֠}�\u001d�)�k\u0015�F\u0007�M4Q�'���4�\u0017��~U�2Yk����zPV\u0011t�|R�A\u001c�!p��M(r�\n�(V�6;���c��b�À\t�`|�f6١p�m©��\u0015�p#p\u001f�\u0007��k�&;�E�)+\\;\u0012'FI[�4�y*\u000b�-�WS��\u000e�\u0006�g�]��\"%��*\u0001#�WZ�]���>@\\\n��A��ԩ�^p�\u001e!�I�ۮf4\u0012��(N;|TG�)\u000eesϐ�\u001fo�3�����+V���d� E�:K*٫��n����?2Š��\u000e��Hk~�\u0005(�_�,�\u0000Vq��/(z|��k;�\u000b�\u0000���V�\u0004\u0001�\u001c�;\u0002�\u000f�h��,\u0013���2�8��w\f�\n��\u0019���\u0007�n\u0005�\u0010�����=�\u001aŊi\n�\u0002�\u0019\u001bID��[�A��!���|�O#��%��}ԇM�P�\u0000��ܬ\u001d��(�}�.���E̴ϋ�K�}�\u0005A�6���*�i�Y����$���P[\u0003'�H�D��߲\u001fS��:�6}7�\u0018��0\u000b�A\u0014��ڍ𾲭ۗ�Y�\t�\u0018\u00195d�q\u0010]�ȸ9CA���\u0017'(Y`# v<,\u0014��Ǹ����K��)|�J������Z6\u001a�X�V\u001btE\n\u000e��'o���`��'y\u0005���xm\u001a�ϡp���\\2P��N|B\u000e�2���X�f��Íp\u001a��^�\u001aT�\u0012�Wt��W���\u0010\b�1��ŅHY�fy�\u0014���&p%$/\u00136��5�\t\u00151�ؓD��S�y���U�J9}2[\u000e\u0006N��ޠ��1����\u0013R�D�J�����h���Xz`|��}\u0010\u001aiYL�m�Y�5�\u0013\u0017b\u0012�\u000f�u7$�g�#g��\r\f,�\u0003��Tׂ(l�\u0001j�w���\u0016uF��\u0004\u0003��\u000e�[[c\u001b\u0013�˔\u001et,�v���Zg7�A\"�!���0E*��-�]\u0016\u0002����Fc�\\\u0010Ef�\u0019O�/\u001d=�\f[ُ�Wْ�2\u0011�Ӽ*=\u000f�\u0015�1vܫ������ltW�/�\n�\u0001biykD%\b\u0010�g\u0003\b\u0006Oh]����=���a��\u0014�x~Ey�ֵ����R�G\b�ˠq\b<�\u0007Ri\f\u0019\u0016�W\u0006WP#Pr)C�\u0004��_O��R��s��\b���\t�2��7�q\u0007X!�\f����#�Hq8����Ϥ|�J�\u000b�������-|�\u0007�%?8$�1\\c\u0003�ՙ\u000f%<\u001cV\u0005�\u000b�o*����`t����0\u0006�܁���\\)�\u0003�=�����'��\u0015JPd�_ u��n��\r\u0010�@�J\u00074�\u0019������A\u001e�!���/n�o�mnI�:\tS�\u000fs���>\u001b�\f�E ˰\u001f׏j�4�\u0013O\f���9�9���+DWU\u001b�*ޟ\u000eA\u0012e\u001e�\u000b�3Κ�-�XW�fǦ18\u001d�I��Me�*&,���E�,�U�\u0010BN�%��˫���\u0010�\u0012\u0003e\rZ��\u001e\u0005$����r\t[�\\��\u0019�{D�Ý\b�hl��3�;\u000f��\u0007�\u0019\u0000\u000f����b�w�A\u0012�!Ԁ�Lج�;kla\u000faĵ\u001cH�J��6`\"\u0018�\u000f�\u0002w2��7��������j�pF�)�Z��8i�����b��>귬x���R�\u0007�%%G�e0\"�pb�5\"�|�E�D��]\u0016�Ny��j���7�Wef��`�,d��x��ܣF�=�6�K�|�>��)!7=����n�^_��Q�A\u001d\tX{��\\k�.��*t�u&m�ǭn�u\u0006/R��\u001b\t\u0012��Ȃ��\u0012!/\u0011\u001bw���\u0001����8�\u0011�\t�њ�)uO�|�2�'ǘ��v�Ff�\u0003K��}}n,>�A�K�i\u0018e�^ǎ؈�ɉ\u0000��,�|\u0000�A\u0015�!��0��E\u0002ޔ#~��\u001cb~\u001f\b�~ar���N�A����-$�@eX00�]f���66�|%�M09mE\u0005vW�sb�>\u000b�zW���C�\nwĬݍT\f��Ӷ�S�?��h��W�~�J鑷�%V�\n\u001a.�\u001aͻ3�\f_M\"��$\u0017\u001f#�\"����\u0015\u0019bv���R�A\u001f��ɹV��+|�\\$T��^�\u001f�S\u0006�6���M\u0016q�\u001f�bI��(I�\n��9\"\u0011�\u0003e\u001f�g��\u0013 騥?���\"Euk���I���_/1|�Vs7\u001czt��?2BAć���n����X�bQ&\u0000\"\t�\u0004\u0003M�ms�\u0014(o^�z��-�A\u001d�!����� \u0014JX��pˎ�e\u0018K\\�^ԇL��tF\u0018�\u0019*87\u0015����\u0007@~E\u0019�w�\u0003\u0000_~h��\u0001�\u0010k0�xDM�Y:����B㌨�\\,g\u0016�����o���N<�2��̦���(j�\u0003�\u0007�,%4�q/�\u00181!\u0002������1�\u0014��B�\u0007��ÐI\u001dlCj����P=\u0019u�\u0011#s\u0018�N�%���!�y!���\u0000�ыx\u0019\u0001}��!z�k�SS�\u0001�H|ƄG\\˔�*���\u000b�\u001b�f�\f\u0018\u001f�X�<�\u0010\u000e\u0013��\u0000X\u0014�?�@�#\u0011�KBJ,�AQL��WO�\f�(�Pbj\u0018Έ�^�孾�]�\nȎ\\��\u001b���\u0005ą�A)�\"\u0010��MCRL\u0010�A]��\u0016jR�\"���fTW�x>Ƚ�M�d\n�[�~\u001a٧�Q\u001c\u0014/\u001bju2\u0003��\t\u001a-{����l��\u0003���l\u0012�@��`�l��S@L���6\u0000�Z\u0011�\fנ�'��\tE?\n�[U��?�Q�\u0003��J-���_�Oµ�\u001c쓌\u0010�\u0019w=\u0005�t�Ʊ�Ns�z\u0000��û\u000b���\u0000��ҵ�\\�j}�;dX�cw�Og���)ݾL�q�?1�\u0015c���6\u0013�����z�\u001e�_�\u001c\u0013��\u001f(��\u0019\\\u0018�>` -�\u0004B�\u0006�\\�|z)\u0001�o�,>\u001b�{\u00067���s��9�\u000f��\u00079�>��f�Hh4�iua�V1I�7ȭ��\u0004F\u0000���+�\u0002��X\u001f���c\n�QR��B\u0016Q�L�\u0018�OA\u0011\r�����r���b��r�|&N���V�c�;� �\u0018`�\u000e���@\u001e|�t���ю?m��\u0014z^p\u0000\u00003\u000b��\u000bI���<�f�z\u0005<�\u0012\u0017�dê�ZY�r�kĊw\u0010\u0016:^\b0\u000f���\u001d\u0002㕓Y��\u0007�v�\u000e.=�xS֦�\t�&K{��\u0005�1��\u0014�oه0*��\u0017~'��O\u0006�\u0005q]\u001bHq\b \u000b>\u001a�=0�\u0005l�\u00045���q\u0012�O�o�\u001b���:�����=�*'\u0010#A��\u0010M�eM�aBρ)g\blr�Dk���Ƙ<$�e���\u00032l���`�;:Ȑ\u0002`�<�\u0010\u0019?\u000b��#_\u0002�\u0017C#�?���9�́DNY�?�\u000e�\u001c\u000b��?��\u000b�`�h7H\n�� A�\t+u\u0011�I*\u0017�^�\u0007�h(\b��\u000e\u0000��ʎ�Ն7�\u0001�.��;\u0018��V9�4�G\n�!�\b�X��L��5�������,<�a����3��;�8��\u0017q/�1\u000e^`�\u0000�H���Ǵ��τe툣A\u000f�\"L��/��W�ѫ\u001f�\u000b�uNJ��\u001f�y\b��{�H�iW�k\u0004�2|���잒���\u0003��\u0001T�\u0004#��zb�\f���[�M\u0016\u0005\\��j��חK��b �'�T]e^�L�\u001aC2c�\u001f�(\u0016��;�0)u�g��jxD��\u001c\u0006[E�\u0017�v�\u0018s�<�4Oٛƌ?����@�\n�A\u0019q��a�V\u0010)S,e\u0016vęC�Z\r=��\u0005�y07_.�N�\"�x��\u0018��[�\t���\u0005N\u0002�m��\u000eI�9-\u0012\b�\u0014�F�\"i��$u��\u0015U#��Gd>\"�ܘ\u001e�V�\u0016(\u0018���G\">��k��G�Q\u001f�?\u0015v=�\u0014�n�A&�\"`��.�&Х\u000b\u001ao�{�Q�\f�\u001c4��J\u000f�\u0005�\u0010��\u0015t�\u001f\u0019['��N�\u000f�h��\u0018}&���g�a�iZI\"�Zj���_r����*Zc\u0015�u�p]�/��\u0010��/�f��W��\u000e��^�#!�m4��1����!������.A�a��A0Y\u0017��U�\u000eG\u0010�/�\u0007l\u001a�(NLc��}�\u0013\"h\u0001|��K*0ʟJ��?��\u0002lV7�/3�z��\u0006�J-�\u0016\u0005Zfq.J�W\u0000�\u00190lC�MZ=V�A\u001c�\"Ā��mC\tJ�x\u001e*m.k�\u0017�%�8z�*\u0013Sz�Rx6�&o\u0000\u0011\u0011g�\u001c1��\b~�\u001c�9��� ��o����O�=�\u0006�9l��t�<Œ���{���iO�m���1HJ]\u0012�\u001d\u0016\u0007WՎc�\u000f\\9\u001c�P\u0015�\u0000\u0003 �m?���R�(ƪ��v����\u0017z�_u��W�n�'\u000f�O,]\t2�2l\u001c8x�\u0016=j��2鶅D�g:1\u0003\u0016\"c\u001e\u0004\u001a����\u0018&��\tW�\u001a���ݚ\r͓��]�)�����:r��\u0016s�Q�Ax�s\u0007\u001e�\u0014=9��ӭ\u001b#�K�Fz� -a\u0000E\u001eV�\rʎ�\u0015�Ԑ��#�k��\u0001�\u001d������S�O�\u0002Z�A0�\"؀��\u0002� \u0007�������$�d�Ӳ5�\u0011��X\u0004\u001a��S\u0006}y��^���۟?tr��\"�\u0018=�n�\u001d*\u0010���f�\t!ڻ�6\"�/��M������J�=^dZ���I�A\u0011�#(�����u�4�B*89�\u001d��@h\u0001��vZ��b)���R\u0006=�\u0016\f1/m*��U��i�,��\u0006�h���\u001a�\u0018�e�\u001d�G-{����w�*�\u0018g\u0016`1�S���AR�#P��ē�\u0003��\u001c�8hW\u0012K\t)\u0016��vML�/8f\bu���\u0005��ɭL�\u0001��9�`Ï�V�;��%`\u0007?��\u0002�}ۭ\u001d+��4ԧާ�B}'+�\u001c�#\u0011�\u0007=�R\u000e�G\bO,�m]\u0018���\u0010\u0005�RY�F�0\"\r��b\u001e/�mi�,\u0001�:q�\u0015\u0014��9W����c\u001b�\\\u001d�'�wǠsi\u0006k�\fH��VD`���G��c\u001d\u001ak�y�=߱��_�1&\u0018a�*X��lӀ�5x4����C�\u001b���.~=\u0016P^W�KO��!&_|������Aޏ�>�[�s(��$bR���o\u000b�2�\u00189�\u0011\"ذۻS�H���v-�#㶂�c\u0019�ڗ����X��:�A�}�\u0012$�\u001e���\u001dns}q@kݞa\u001bs�m��R\nK\u0013H��$\b5��A'�#d��X��z\u000e�(ҤS�\u0005˭y\u000e�O-}�Ű��2o�6�r����9\"�\t�\u0010��\u0016�\u001683�@��3�s�h^̝�kW�:K����_�?���E�}��ڗ���#!`\u000b����Â8w�μ�KŴ�޲\t/���\u0001��_)��K\u001a}�A=���\u0011OӬ���'�\\~�_�b\u0012�h�\"P?$\nX��J�\u0015�a۩�f��\u0007*�m���\u0004\u0018�Iib�Z޵�zo\".��'c21U�9\u0018�fmUP��E0~b�B\u000e�\u001c.kQA���bY��9����<�R�,S?=8�o�\u001d\"�>�\u0004�*>\n��+\n�����\u000f�F�\u0016���[M���E*�67�?�\nqf���2)~Z��T�)I\u0003\u001f.I�ƞ|)q�J/|�\u0004�b��%��ޘ������齗^2}Zo\u0000\u0010�F�!�\u001e�]����}� \r\u000b��Ys藿\u0014k\u001b̨�ug.\f�9e��7��1L�>|b��\b؏@\u0004H��snK��ͺ��VXJ�x\u0012q�(\u0002v�H\u000e4b�J���h�}��趚��]R��Ӣ�kҝ\u0011�;�\u0014�I�@7�`\u0002B��k��a\u0001��A��CG��\b,}\t��\u001d~tQY�}-�\u001b� \u0012�W��8��\u0011),�A*�#���L�=�@��g#�\\0��]2ח\u001bU��)��W��E�m�\u0014*�1\u000e)(1�~\u00004f,7V��j\r\u0010B\u001cG��\r����T9�$M\u0011\u001e\u0006\u001c\u0018\u001c&S5p�&�����k$�vv�+[�����Ag�\u0007���\u0000`��Rz�\u0006�hZ�!3('؇{Sh��C\"�\u0016�b��Z���Ů��c��)r��8\\|y3\tw\t�aK�;�2�kS\t�\u0005�t�2�\u0002\u0007(���\nyL�$�a��\u0006Dƒu>(�T�t�V�=ad���fH����3��\u001aIB,\u0015�Fj\u001b����\u0001��\u0018k\"|�j\f\u0012�g�>�\u0007�_�x�\u0000�\u0013Qh�m�Yd+�픉+\\�\u0014bN5�kEv�u�A&�#�����\u0005�\"��Z3�Ie\u0017��NˢJ\u0000�Y�+�k�hBU\bS! B���\fcy߅���68Ԯ\n\u001a\u0015`t\u0011}�gD��=�/\u0005��\u0019�B�\u0000�$�#���@��rW\u0001r�=N�[(�\u001c�\u001b,rR\u0010]�h�3��bUW儻M\u001d���\u0001�3XYB^}A�MԺd\u001bxdK~2�\u0018�N��D����TY�;Y�\u0013�~��9���p\u0017b\u0001��~i��SF[��\u0000\u0007\u0015���kK�\u001d��\u0011L�e�5���G�\u001fr,�\u0004\u001d\rl/�`��.���\u0010�[y3&��1R�\u001e>��2W\u001f��\u0017��\u00055\u0014�4viLH��A-x�<\u0001rN�;8C�\u0003-`�=��j �K�ɀ�A5�#���۷$H\u001a\u0007\u001d\u001a\u0019^\u0018\u0000\u0010���VC%�n����z�������G\u0006Qζ,�9U��qz8^.\u0002�\ru��+�NL�\u0011��;��\u000e\u0012��\u0016�%�\b��A����yD7\b���2���y'�n�k��C\u001cW?\r��߻�C��U�\u0010D�K\fR�0M���<�v&\u0018���=q��g�Z�\u0000Hq\u0011wU�A\fA��\u0005�U<\u0002T�[!al|�\u000bu�A!\u0005}-g�\u0003[\u0004\u0000�A�R�$A��������t�\\�\u0019\u0001\u0001�2��J{��bOL�I\u0010M �kO�S��h{g�\u0013E���5�l�v�k T�ԟ�C{�\u001cڨ\u000e��\u000b�J���R����\"\u0001'�7ju�AO�#Ȁ�۸��Q�E\u001c�-\u001a��V��Wn�8�~\u0003�4>\u0002�\u0005�H�1\u0015�\\\u0007�y9���4\u000b�M��\u000e�\u0019\u0001V���jJ�ub�Ej��0���B�W�Q\u0012x8��&�w(2��Ԛ��[�\u000e�%]m�;��p���u5Fp�G\u0010Rq�\u000fu�\u0014ot�\n̦rc\u0002�\u000f}\u0015�\u001aN\u001ftI�\u000ecc��\n�L7m��eK����}X���00�3�=RK��\u0013���^�t\r=�ĝ���=\u001b�ӯoH'W\r�\\����.V��!\u0015���˞��\t��1�}Ϯ�kZ\u00002Ѵ�]�\u0002�����\u001bι\u001b\u00137)��r�y\u0012����s�AD�#܀�۷��\u0002T�!��%���\u0012\u0004\u0019ؑ�Z�\u000bA�U������(��\f\u0016ȼq�lNC��l�\u000f���\u0015\t�Y\r��߿[>)��w�L_ew�=}�S\u0014\u001cB\u001c�iE\tq8[�Y��;\u0004�ޔ�D�y��T�T\"!�hPK\\��\u000fCx�`ҥ>�ԴP���z�b[��\u0017I�y��\u001a����\u0017 <^��[��HD�\n �0���3}\u0005�\f\u001a٬3�Q@��S��ѷ��-Dv��~�\t���^�k/g\u0012�*�M�V@u�\u000ew�c�q���F���d03��l�j{\u0004c��>\n�\u001bm\u000fŦ�/\u0018��\u0011¥\u001c�/�\u0003P\r#\u0011\u0003\u0016��3z\u0017�&H�L�\u000b��N\u0007�$U0�m�\bv4qQGc\"D�m��Y�q-\u001fݸ\u001d-\u001av�A/�#���ۺ�^\u001an1੒z�\b�_f���,�ɲ��������\u0002w!On+�\u0007\u001d\u000e��'(\u0002\n�u��J���_���j�#ėp7�ő\b�lѲyPJ\bl��%�9U���l���ɣ�q���\tM\u001aR���\u0015\bVE�0\u001f���ـ\u000b��r\u0016\u001b̈��\u001d��N��\u001f\u0018�l$\u000f<���\u0018\u0018�\u0018\u0017�j�.~�C7�Y�\r\u0007+'6�n�k�\u0017iMUi6e�؆��=g(3��R/\\�*���0A*i��\u0012x\u000eJkC�[\r�A��\u0012��pz�Z��Z�4�fHV^w�7���^>��{�ϥ��'����pk`\rH\u0011�\rCD��\u0011#&:\u000eM��\u0000\n\u0010��U��+�7��u��Gu���A;�$\u0004��L�\u0018@���\u001b�禨�\u0003j�a㐭H��A�\u0016��W�\u000e\u0015\u001d\u0003�~��Q�*\u0001L\u000f����\u0011�CJl�1�\u001d���F�3T�E\u0001\u0004Bț�NR�!��eEu���\u001d��>�s�`���*L��h)�\u0002\"�����\u001f΂'f����\u0012v\f\u001aT�\"�\u0019\f�'�\u0001O\"\u000b�Bs�3\u001a�{��8~y��_\n�j�n]I�M�]~q�g�\u0006\u001c\u000e�\n�\u0018�h��d_i��a�2�E\t�h����2E�(\t-D��7\u0000_��\\�,-�AF�$\u0018��L�\u0007��\u0000j\u001c��&7c���E\u0000�K(\u0015�\u001e�v(�+�o���X�\t�˄[O\u00157��S\u00126��ʍ�\u001b@�\u001e\u001cz��\u0007�Syo\b�f����ʌ/~��L)��6_�\u001f��\u001f^O��B�%Z�;�V��t��J�>��\bh��T>�/c��(�}��r� �s�\u001d-e�\u000b3A\u0002H\t�M����=H�e-�<ӡTn\u0018-�OY1\u001f\u0014��@�����\n�o��%�~`�j��\r!\u0015��ч�AP���re�c߅�H]2�ߓ`�9��|�(LO�ѡ�J����b�}\u0016�ӯ\u0010j�����߃QY#��M�\u001e����c_9$\u001fz���k{�ޓ(��뙨G��f�n^)N�E���\u0003X�A�\b>����aW�)�ïI\u0006ʣAI�$,����,Z7*r�\u0012��\u0015 ��V����e�iU��P��7��a��J>�H��t[w6]�D8=Q�\\_�\tZƧ7�g�8\u001dL-�Pv:�'S遏[�UPLR�~�[�2�a%�⬄�*o�\u001f旘i\u001e�/�\u001a\u0007�>Y�\"�>Տ^������¡�\u00014\u0006\u001cݧ,+�\u001b��\u0006�\b*`�0��^E,�(ѽd�e�\u001d�-潏V2�L<�Ʀ\u0018�G\u001aϙ�&d�\u0006���7\u0011��\u001fH{���Z�\u0001�(�Ñ?*h�\u001c;B`\"��k� v�B\u000b��\u0012���\u0016�\u001b]��w\u0006\t�\u0006�.>b����`\u0019�\u001a��J��?:�<����\n;f����s�#|\u000eu����L1\u0019j����6 �WM���[�\u0005�'�F�,\u001a@A�?����Av�$@����\u0000N�8�\u0004�*\u0014�aH�\r����h\u0010#2e0!�y�8(J��\u000b�j0���/�\u001c\u0006\u0010�F�\t\u0016\u0001a��\u0005�\nFs�\\3�M\u0007cJ;�)��b�0�0����*C\u0017|?�6)��JR'\u001dvqQ��B\u0001V\u0015`_QlNJ%�\b`y����\u001eOU�l�������P��U��Q9�^�_�\u0016@Q\u001d]�Xs2�K�\u0015�(��<4PZ�B5/��Vc >N��$vӷ��\r��\tV�Ok!\u0006�F�\u0019ؒXW;8-7�Y5��6��S�%c��\u0011�9��x}�\u001b�\u0000N��ж�Yz�ߪ/�\u0017\u001d�Y\t�\t����B�m-�\u000eH�+*���c�\u0013�8\u001e�|\u000f\u0017�4�|W�o[\u0018�aj�Ht�\u0010[y>p'dyӪ�?ۥ�-'\u001e�\bb���~\u001f\b-*�\u0001���$��\u001c�/s��~�\u001f�[�߭�\\�#O�&f�#��A��$T����o�X�u\u00074�\u001c@��!`p�C%�c�8�Y���W�9�}�\"Rr6h��#�bl9�.l�bap%���\u0002��+�·\u0016�ޝ��J4\u001d�\u0007J����\u0000�\u0011XJ\"�7\f�Û�B%@��\u0019t�*�%��Q�\u000bS��Ɠ~�qUn��/�t��˧7�_{�1fxRŽK\u0006m�\u0002Ʀ��ӣ\b\u001e\u0017%�x\u0010_�x���(r\n�@~���o|�Ϫ�Y�l!�g@�?��%�`�\u0012�{m�IN��k\"�L�\n\u0007�/Ϯyj/8����\nP.���f\u0014)��xB\u0011TjH)r�\u0012uk��!���Y��;�����u\u0017�1U�;O/s��ˎ�C\u0016>\u001eϢ�\u0017&b���G��ĺ��\u00129[k/r�q*�O,��*ңJ�o�D�W�/��V�\u0011 qNb&'z���\u000e�U�Ш��VKe�\u0018\u0000�m��aՅ;�5��\u0005�y��U�R��j*���}���3��AC�$h��۷\"�\u001b�M,{��t�]�i���k�$B�!\"�����Rxl�ap>�g�'��\u0019(���\u0004�s�.�^E$=#�]g4�P\u00118|�Y����,\u000e�o�\u001f�8\u0019(�\"_��_�\u0015��A�M��%�z\u000bw�a�0�ȒL\b����˥\u0007C��],�\u0004M��1\u0017��|&B�|�u.�:f�V�Ȃ\u0015\u0019K�z\u001b8�qS���U�\u0010�-⊹\u0012���/\u001f4ѵ\u0005�_�\"k�κ�l��R`�(�e��C\u0014t����kZu2�b����M�>�9��E�y�}�[��JIu�s\u0006\u00199.SP\u0002��\u0012��!�P�ncC�\u001c9\u000f\u001a?l��\u0003jԳ��h8����4_z��ͨ�D�F���xF{\u0014B2\u0015���Y����F�\u0018ャA9�$|���Ǣ��W�\r⒝p�����봎�Jx�Td\u00023w\u0015Q\u0015\u0003\u0014��Ac���\u0011g��tҗK��vM�\"��\u0015�\u001cV�^e��(\u000f\u001f\"��#�\u001b�����\u0013O�W#�nxZ��ڋ����6_bH5��[\u001f�:\u0004�]���в) j�\r�\u001d3s�?\u000f\u0016�\"\u000bTcPq�#\t���$���@X)�\u0019�䅭�(o{�`�G�nv���}_\u0005��y?|��_.�xvDU��غ�\u001b�\u0004Z�2>0�\u0013�a�Φ/���+\\[��8C�\u0015cG��\u0019�\u0011\b���d�U�\u0017��}Y�R]���Ɨ̑qF���\n_��\r��`���\u0001�>�L��\n\\L�=(?'R�P��i\u0016x���{\u0005\"�<�'א�;��A^�$���L�;<��X�j\u0019N�F.��r���}$��u�MI\u000fL�\u0013%5*�\u00174\fM�1[5�'��\u0005�Q�����znvRV��l%\f\u0015�Ռb�����h\u00036g9\u0017It}����\u0018\u0005\"��\u0015N[9\u0017���0�tϡõ��\u000e\u001c\u0012������b�;ݨ}�\rg�l*�\u0014貏AoI�\u001a؎c�i�\b])x�L9�Y�v\u001d�-\u001c���\u0005fN]�\u0004����M�:d��Zق;9a\u0013\u0001e\\m�ˢB4��3�����\bo+�Kߺ$\t*�l��\u001b���8�\u001d&1���;�\u0007y\u0003�\"������\b�Ŵ��|yH>k+�1]V0Z\u000b��tg�r\u0013����\u0003\u0016�؆�cK\u0018\u000f�+�E��R�\u0012��\u000fmbZ�4u/\u0010�I�\u0012\u000b��:��\u001c�7\u0017\u000f�\u0006q;�\u001b�Ѷ!����?�?\u0019$�A{�$�����\u00063�\u001b��euV\u0015��\u0013��e\u0003���fe�\n��v\u0013oB��\f5\t��*w�@�zq�{�\u001c�7��9�}��/4\f=��$40��G����\u001achЈ���bmaC��\n� ����\u0004\u0019��a��5�{:��P�\u0000�;�f#��\b��Rҫ��\u0019��V~nvG�0W��yY�KU&��\u0003�T[\u000f���c���\u001e8���\f\u0007�|\u0016���?���>ݎ�|�A&�$���L�Ez{�\t;�Qel\u001fL��k���w\u0012�!�\"cw<�y�z\u001f���\u0005g�`i�`�\u0013_�h��|~�?��g�\u0001i��D��mo�ܢ�^��\u0017uM�&GZp���],7]I���q@ٞ\\�a�(0�\u0019�:\b��\b}w��}F�\u000fa�>��\u0019y�b� �yG;b\f���\u001fti9A�X���/�щ56�A\u001e�$̀��b\u0004r��ʈP�=\u0003�!�G��B)\u0013\u0018R\u0000��萩2��e4h���v�\u0014�ׅ��n����^�qy�z���6�ø���WrU�<`|�\u001d�?���b$��<ζ\b&�P���t�~+\u0018Ǹ\u0000�T��iM{\u0002C���\u0003�O/���\u0010�+���g�\u0003m�� �Ԛ������\b�q�\u001f��^^�`��J=\f��\u000bo����m/`�7�\n�5[ƹ�ȗ\rfu-H@��\u0000\u000eN����\u0011C)����\u0016�\n����\u001e�\"\r�QZo��Y�\"A�ڳ댣3\u001e���\u000e�\n'\u0017\u0006\u000e4��T��\bW\u000b!��:\u001d��x�\"i+p��n!��:G`�=�A+�$����e��4�Q�+�.�k�|+�jSbR���^�-Q�x\u000f�����T��F�(u��2�\u0017��\u0001\r�Ǯ�z޽��<�}�����\u000b}n�q�oE�\u0016�I��bD���ǰ?��wl��6�,I���\u0005\u001b��i��\u001a�nF��\u0013�\u001a��\u000b��\u0002\r\u000e��\u0015x�~�sQ�@0k�c�\u0010'�4J�Z9'���C�\u001a\u0005υ�tyCR#G\u0007�Tt�G���\u0010�\u0005|\u0015�\u0019�D����M��>�<1 /\u000b$_��H\u0019��\\�yc,�s�}\u0004G�W�Y�蟗v��\u001b7pw^U+�\u0007�\"\b�DنD.Sv��\u0001��\u0018��N+�_\bk�Ȑ\u0006\tnl3\u0003��N�t��z�\u000f\u00159�?�A9�$���b#\u0011\u001a�l.&!�%��5�k\u0002����)\u001c�\b\u001fl��v;��J�)������\u0010\u001a�\u0010��_'~�\u0016/�[\u001b5�:�F4~���KhAz\"��a>W���9u��7R�Oщ�L\u0010g�-�v�4�D� ,\u0013�o�px{��a���\u0003�Wz\t����P��\u000b��\u000b�\u0005\u0018\u001a������?\u001f�U\rb�N�l�Ӓ�1�\nJ�RVJ��\u0003|�W���~B<\r� �cu%g��\u0017���]\u0013:?����9�i)��\u0017>6A`��\u0015ձ\u0014\u001bFq\u0015��[ɦ�\u0012/���r��w�OWr�5T�f\u001c\u0007�.��GRZ�I��A�\u0011\u0006��l1:5��<�w\u0001S\u001a�\u0019X\u000e3o��`�&�Q߂d\u0005���\u0016��y{%����A5�%\b��L��Y*4\b�\u0007D&�\u001d��M��s�i�p��Y\u0006\u0018��E��}?'J�D2�\u0017R��j���\b�8b�EN��\u001a�\rbF�ʯg���]\u0014�+tu�¨��eԪ�\u0003t7���\u001fNm��P*���M?��\u0019\u001e\u0010�\r��˴���\u0001H\u0017�\u001a{�\u0000��\u0017\u0000�2\u0004U�^�u��t�v�����\n\u0010Ib��f����ؑ(ܒ�S��0\u0001�\u0011$2\u0014�rp�\u001a\n\tv���6�\u0007�c�u/v\"���N&�6��e��'mK�Oj�@w\u001f���s!�K��!�2�O�F\tG\\\u001aUc6��Ҵ#+>\u0005�\u001c�\u000e|\u0017g9V[*XwW\u001c�\u001f�g�W�\u0003�]�%��Q�Q���\u0001\u0019��q\u0012ݥ�X̺��:���Au�%0���–��?��6��@Y��M��M\u0000�jV\t����\u0006���ԿnY�\u0011��Qk)%��#IL'@\u0010|�e^-@ј�.i�\u0012>ñC�5�#@�_�5�Q\b���'�D+%��\\�\u00020�\u0012<�\u001d���m��~_h��ŋ�P$k��HIg�����\u0017i_�Z;��B(2jf��^4��6�|��Pч\u0005_�y�5Mc��QƸ�T\u0018Y�V��\u0002��[V�i�\u001d��\u001c��\u000e�=��7�C�r�\u000b�v�ш!`��9\u0015�j��]�\u00012��B\u000f�fM\u0013�\u001eL�5��\t��\u001d��ci͗�&\u0014��}/\u001d\t�ɟ\u000f\u0001V��4X^q�ڶ\t\u00020��ę�O�0��ωL:x\u0005�K�5E[�\u0013VX��0��m\bw\u0011\ft���)�ΙF\u000e,���S�f�ʊt\u0012��O,іV0��^���{`���f�\u001cSxq��\"��\\�\n��2(\u0002��{8��\u0005\u001e\u0011O9\u0014EH�j\u000b�P��\u0019A�F���v9\u00073\b?�D\u000f��S�xP\u0011�i$�a����.���\u0003\f,I�\u0011���[�ė74�\u0007籸L\\����S�z@�+�!�q�[Oc�0]���Ҷ \\\"�AD�ܣAv�%���L��\u001a���`�\u0000.�B��K��\f:��\u0015�`�X��-F�]M�Yq\u0013-\b\u001e��^�,P(0Uw\u001a�\u0007Q���v<��D���w@7U�^\r4,c�:\u0019\u001f\u001d\u0007�\u0010�7�l\u000eA�\u000eM\u0015���\u001eSv[zp��\\Hb,\r�\u0006��Y�(|��f��c��e)>\b,\u0007�w'&;����\u000brđ���jo�\u0018Q��x��� æ��\u0018��Dx4(\u0001�\u0016z�\u0003;\n�8�)k\u0007�!O�-\r]P�`\u000b�J�x\u0012\u001d�_ߠ�\f�Rm��0�R��\u0019�\f��R�\u001dS\u000e|�K`��ΘN�N\f��ň��e&\u0000�\u000f�-ě\u0005ab�'���\u0010'g�6�z��lۦ��Vڹ\u001eL���\u001c����knV����x����]�B���\u0005Ub�\u001bsS��3�h\u0012I@�ER���)\\�t�y�>\f>�L��\\^W\u001a��,\\;t�B��T��>5G�I�\"�n��\r,\u0006˒A���C�LL,��^\u000b\u0006��0��Sl9�\u0001t�a~q�M�\u0018v�EtN�&4-z�|o\u001d�\u001fB�\u001d�c��&\u0017�pX\u001c�,@�j4�t\n��I��jC��#�����_���\u001d픝\n-\u001c\u0002^\u0007\u0001M �I�Ax�%Ѐ�L�Af4s��nݳ���z��n狀1Q\na�bD�*�,eJ�*���R��bۏt�r\\aG5�b*V6\u000e^w�jH�������]U\"\u001d�I��]�D)\u0005\u0005i��\u001d+��B�\b�Z��f��\u0019}�\u0018\u00173��\u0018\u000fA��m�4�\r���e��ho�p��X��i��������+�{��p\u0019\u0002ؽ�g�ƌ�]��\u001c����\"�yY�^�l��M��6���Q��Ń\u0006�x0���_~\u001c\u001dk]l7\u0003H���jރ�W�wY���H�e���m\u0014\u001d�e'�H�5���\u000ey6�\u0017\u0012E�#�۾=\u001f��R|��U$�\u001dAC9?V�\u001c-x��1ĩ1q6\u0017\n\r\u0014���;\u001dr�\u001a�\u0010e\u00103r��\u0006a\u0018��\bC��\u0002���5� u�S\u0010�\u001eW\n���y3����0}�X2�zY\u0001�}z\u0011lK>���/�=�S\u0000%�����S��E�s���\tģ2Ȱ��MC���\u001b:��c�z���\u0007�\rY\u000e\u0012���\u001cH�:�A\u001f�& ���v����y}`�X5a\u000b�(6|��/,C�~�p�KQ��6\u0016@-�q��\tSra;7xh?��\t�R�+-+\u0014�\u0000*\u0014`��Q�D�MƎ([\u001b��o��\u0011�\u0002��/����p�g�jbY��0�\u0006�c/Wb\u0010��ȍ�e0D��\u0019n\t��~��+�s@�4F�\u0018�S�Q\bGm�\u001a[���7�����\u000eɿM��\u0001>�)3��˔ێ\u0010�\u0006�\"�g�g�.q[��BH^$j�ꃢ�jJ<ޘ�Rw�\"�#v|:�'ae�ᯥ�;�\u000e�(A̫<�\u001a?��\u001a�T��\u001aC3ܤ�mTƚ\f]�u��˳�e��n�\u001fj[�� (F�S:�Bh�&4��|��g~@��^=��$B�\u001af\u0010B2�\u0002�eH�9^\u0006y�e���\nY�uS\u001dY\u0017^���<��2i�,6Rw�\u0010�9F��۳c8��\r{н@�UJ;�����\u0001�T̕0V�\u0007\\/�h�{��ؤ�J�6���N.�վh�\u00145̙�G]�6'���tUo�I��|\u001c#\r̀Jy�h��\u0001��z�t\u001cc\u0007&�N8��Z\u0017o�\u0011��r0����?`D�]�Li���ө\u0014�G�������W�d�\u0017��y\u0004|�<��y\"��?�9�����\rm>а�\u000b<��w��\u0007��\u001f>��n�J�T\\1Q��}���\f��NFI}�u\n|N\b\u0000m5�A�\u0002'�`,�l\u0002�k��,\b�<�d\f,\b7�Ѭ3'u���̈́�Tѧ��\u000b\u000f�\u000e�������KM�*��=��\u0014{�P+��QSZ��\u0018�������eZ�P\nK����g6?��e����1�\u0010c^>w`!*�\u000f\u001f�U�dq��1��!\u0005\"����Z�#�\u001eN�2�\fy�S��]��v\n�E9\u0003y\u000128'͊�A�d�����;�\u0018��5��5�I�){�6D�鶫k�/j��3�H��z\u0007Gc�@��%j+�v�\t'F�RQ��#��H�pm\tDŽ�\u0010\u0014�\twZZ�\t\u0013aG!\u0011�\u001b%~\u000e�=��\u0006=\u0005<��C9k�\u0004\u0015������Y�{��A��&H��z��w���t��V�&��̛6T�T�\f��\u0018EG�X\u0011\u00053\u001d�~n��o\u000f4���\u0019_������MCoe8��\b\\��C�\u0012�\u0015`�>\u0000�\b\n�\"�m���܁��>���\\\b\u0012�#E�o�\u001b�l\t\u0017�\u000b^�:�\u001a�o~��\u0004S�b]\u000f\u000f\u001ar�{֢v��:GĨ\u0013�\u001bp���{�A�~%��\u001a��C��u7`��@�\u0014�\u0010\u001fT\u0003\u0011����ׇ��v�=ƅ\u000baL��iŻ�~�\u0005,�6�!5%�xj�g��E��bs\rV�0\u001aq��Y�pD�\u0007�݀������ԛ�2�M”C����,OI^�\u00006x��E��G\u000b���\u0005�\u0000N \u000e\u0000�l�$9\u0011�ӬN@�\u0012]��)�\u0018�\u000b\u000e��\u0014�/�+�y͂\u0014,M�;\u0019��FF���\u001c��\u001d{rl\rP\u0015\fy��\u001c�#���k��o�k\u001b�ݜ��1WW]/��t��\u0012�9�X�0ПZ��0\u0007\u001d�\t�'�v���N`R�2s�t�B3>�A\u001e�&\\��. �ɬ\u0012�U��W eܞP��\f�\u0003�\u0010\u001f����p�\nq����Ol�v��\u0000�rmf\u000bYd�k��7�b\u0015��\u0014\u001e�.�Fߖ�'4��8M��s|\u0000\u0006l�\u000bp=y��.�^�q��-L����\u001b\u001d��+�������u�\u0011�u.N7�4�i?�jv�\u0003�\".�.\f\u001d1o��a��\u0017�;m��y�Д�\b��\u0011�(�\u000f��SeK8�\u000b/V�ߏ�*\u001a�\u0019\u0019�\u000f��>x�9�_`\u00109�+h���S9�ď\u0014�T�ҡ��\n��\u0003��L�O�1l?\u000b#щ\u0012\u0005���3o*�b\b�O*���Hf��oO��\u000fb��\u0018\u0016i/DM�vj\f\u0015e�7�f9+\u0002#XJ\r+�g}�\u001b�eC\u0007�҈Z�>�SN\u0013�7���t\b��\f\u0005s�\t4>\u000fAz1Gi�\u001f\"v�l\u0012��\u001aUF\u000eh��\u0005�԰��ϰޱ\u0004����Z�R�\u0012\u000b?�8uyK(0��\u0014]�[߉m%O��\ba١���Y#7Qx&�\b�<\u0001��O(�\u0017���i����Sڲ�+U�Vf���&�j����*����I�\u0004�D�X�RQ�y�zj�*:�\u001f��\u0002�:������ޘy=/-b\r�����\u0019;�I��8���~lV��r��`*�V�FQ��7\u0005\u0001�-ξ1�Q\u0014>\u001a�Ӓ��S{\u0010)4.ghT�=��ֶH�zg�zM\u0006��@u6n۸\u001d����l�3tli|���~^�G~�Rj!�Oܥ\u0004\u0018\u0019�\u0011ţAY�&����l�\u00070L�\\�Ԥ�7��_�\u001d\u001d\u0013\u0012ݵ��\rҚ�B?\u0006\"\u001b\u0005\u001f�ۂD\u0002�\u0006�yEA_<{�q\u0010�ˣ��L�/8�P��P.�l�`\u0000�K\u0014��E㏞\u001d��\t��k]�Xہ��P�E���\r��:e����\u0016Ap�\u0015P������\u0002�9\u0001��M0���ʛ�Y�����\u001af\u001c����+\u0018�\\c��\u001e�\u0004�Ӵͯ\u0001��S.��QY|�\u001c\u0015Q6f�__ꢚ\u0000����g����l����@\u0001n\u0014�(�CG�\u0007�\u0012idž5�K+\u0013\b\u001eI�K\"BX⹈k��~c+�\u0018�d��,����ӹ�����\u0012�p���\n���#A�K\u0014�p�J۝��~]\u0016y�\u001c@p��L\u0006�\u0014�MX�6�\u0014\u001bw��(#2-w��.|�\u00059\u0013L\t�I֋��C��IƣAG�&Ԁ��j��#(�MY|��J�\b\u0004\u0006p6\b���\u001b����\u0002���\u0016�+g\u00119��,-�\u0006�z�\u0015POOn���=+�>\u0015����N0�\u0018�H�\u000e'\u000fkƙ�'0�'Q\u0014eu�2�ԓ+�\u000f'\u0019���%;MHO��ADe�W˹*�\u0010�������S\u0001���t\n�[^v`i�A\u0006Hߍu\rJ\u001f_�>Y\u001e-C7�\u0011�V���H�Ɨ�\u0007b���`���Ɓ�NZ�N\u0013j9|�!�@R%\u0003*�����J��7z6v\bZ/_hR��t\u0014\f�E\u0011cP��C�yC��H^Oj��y�;(\u0010<�^��b8��bG_塾î�@E\u0010e�@�k�\u001b�\u000fj���\u000b�\f\u0019J�8$\\\u000f���gO\u0004��-ǔ-�s'�$\u000b[�mc���\u0003�\u00009\u0007%ãA=�&���l�B��#>$&\u0001\u0002%�ȗ$��\u0016�vYٔ�\u0004\n�}��b\t<֔�`z��\u0003)38R�rr��D�\u001dϖ1\nɢ\n��\\5VU���\u000e\u001d��S���pbh2���d�O�\u0011�-���\n28�%��D\u0004=��A�n�\rd)��V\u001b�\u0001�!��h�w)���RS�\u0003�\n\u0016ಸ����\u0012Ҙ�7\r��~�f*���D��j.{)�]�Ħ�\u0004�O)%��0�\u000e�x�h��v�\u0015|z\u0003�@�@�\u001b:�X���\bC�\u001d*\u0012���.W��X�i{��X�˿�PB\u0002�\u0017��D�qɪ(��dg�\u0014�\u0000���w�;\u0019;��\u0005Nz!‡\u0019�]�_���`�vrh\fK�\u0005<5+�A\u0000Ej��\u001f�����x��k%��A<�&����n�j\u001bӐd̜��(��4�$�\u0004s=��\u0004�\u001b\u0007�\"~+(\u0006�j�i�U��xK�q%r#8�|F`��\u001cɉ�U6c\u0017�J|g\u001e�pR\u0000�qi�yJX��YH*\u0018NtW��T|�R\u0003�+��2 �xw��%�\"z�-$�����\n\u0010C�-?D��/~ۤD�\n�.��x�#�'�\u0003�+�*�[\\~/��\u001f�5\u0013�\u0019�\u0019_��g��e+\u0017�E�X��M��$��Z�\u0014=DzNʗ���k�}�@AV�e�7!�Y p�{ߎ>���۳E���ɍp'�@1�\u0007�\u001a}�19�\u001e�=�\u001b\u0015;�S\u0000iϣ1\u0003�>^�;���Q�щ�2�C'\u0014�\u0001�YOΪ�����;�U�R�#�B���\u001fC�u\"�r�u1�A-�\u0000\u0000���mQ�\u0013���\u000f����]\u0011{�b\u0003�\u0018\u00018\bX�ZDjm�$זdra'�M�QC�\u0005��\u000f�`3;��=�X\u001b��\u0011Ξ�M�d~�\u000b�4d!�8���}����6\u001b�L��Xaj^0\u0002�ic૴�7I�7-\u0004S\r�'LbH꾕��rn�A�\u0014�]��L\u0005���x|�0a�\t�yD���\u0002\u0013����kZ}%\u0004��`?U*\u001en1��\u000b���1�Q3s�\u0000f�\u0017�@ 0˳�E�S)y\u0000@�\fa_1�O\u00115\u001d�&~.2�\u0013�r�����\u0004H�`\fK\u0003�5cd���� ��?\u001c���96\u001a觹\bY:ޓl�\u001f�I\u001d��\u0012\\�\u001eM\u0015E�-�̔Gq)4�����f\u0017%ãAR�\u0000\u0014���l�$�4;�·��cڧ�B\"\u0017��`9`�\u0001\b�ł$��&?���%\tj�!��N?;��`.M��'\\5f�\u0004�}/x��\u0013\u000e��N���@\u0004��\t;\u0016\u0017�\u0012Ö\u0006�4g,+\u0016��d�7ޏ�B6�uG�o�S\u0013kY�\u0005Ö���=�\u001e�L��d\n�8�oԇP��BD��\u000b;��;�N���\u0005\u0005\u0012}�o�\u0007\fK.� �?fО�\u0010�9�ݶ�:\t�J\u0000Q�8J����\u001aOC;�z\u0006��q�g�\u0000�/�W��Ѻgƫ���D�����a�5\u000f��:���<�Á7�w\t�[!�>n\u000b�\u0006���\b�wJ��\u0017-A�`ݗEnu3d����W^+��,}��S�m|¶��$c\u001e��)\f�\u0019\u0017щD�.��oٛkg����JE�AW�\u0000(���l�\u00164�w��Μ����=8���jvn�\u0015U\n`\n��2��\t\u0000J�o%����D�f\u0016q4/%�^tm��9��Μ�V��\u0001I*`}�Z���ɓ��䵷\u001fd�9O�\u0018xl)�,)�L�Sm�'\u0007ݍ�+R�c������*Yx.V\u001d%\u0015�\u000f�>�\u0003L�0.9��|4��\u001a���'{���1��ȷ‰\u001a�uEϙ1���\u0005\u001f�ѷ;&�\u0011\u0011?\u001a�A�w���\f\n0L\u000f�\ftx�e�s5]\u000er��*\b��Bk\\`XJz\u0013Y�\u001f\u0014�Ep�C����\u0019\u0000\u001b\u0004�\u0005�M'A�_S�3�m�����j|D�\r$���/�!�YH���U�\u0012�)�_)�ҙ\u0001\u0013O$eS�\u0012�=�M^=\f�\u000b�����u<�X\u0015\u000f\u0016�O��k����\u0014e����&G�AU�\u0000<���c[�����)x�(\u001d!d\u001a�d\\9t�\u000f���Z]N�7&�>n@Q��>������)\u0001��d\f/�\u001e��m�[c�6�\r-��uJ���\t��KOB����W\"\r\n�E��R;����\u001c�\u0002Zx�R�q\u0015���\u001d^���,e���\u000b�L���O��{C\u0013\u00042f�����`�@��MVJ�\u001d�\u0014���LX(\f�Oi�@ٙA�w%c�� _ڑ�Y��� TV�\u0014��ҭp�R\u0001��vK������^~\u001c*L���\nYr^�U\f��Y\r�iI��ݮ�i>V��@X\u001a�����t��d9)K\u0010\u0011���(@\u000b���='�ٟ6�\rd�5���\u0014er��\n��\bm*\u000f�\"���ǣ�\u0015A��29��Y\u0007�\u001b(2h���\u001c\u0007f��dp��,�&G�A2�\u0000P���qZ�m.\u001cg�[\u0000�*,��d~UԗW�v��\u001c}F�\b�Ң�\u0015 \u0010��+2\u0012�2\u0010\u0004?�\nI^��\u001e-���\u0004�\u0006�S���\u0004��X\u0010|L䞆s4/ĸ\u0005 ����\u0010\u0018\u0002��H�V�Ӗ݈�|\u0014��9؊\u001d�s���č{a>��9��U�8;\u001aK�p�⌋\u000f�3ˣ���m����c�M��,l��_�\u0004)՗Rb\u000fa��x�de�U\u000f�\u0006́�2�,\u0007�\u000e�f�X`8N��vnM\u000f��Wq[���<��V�w+��\f~��=\u0017_��V�m�\u0001���~����-:���_^U��\u001bS\u001d�\u001b�:��\u000fǟۄ8�W%�\\��d����R�Ti����\u0014��n�&��� �\u000b�{�=���+\\�[��\u0005�}�\u001aeN1N���T\u001f��L��\u0001�)��-�X��ȤO���5�p��b5Dʑ�\u0010TX��\u0010mǃ�\u001dn\"B�\u001c2\u0005\u0014�G\u0010~�\r`X�5���\u001f\u0012��N#[�\u0005s\u0019��T\u0000�fK�\u0019I�7\"�0\u0018��$,��\\����A\u001c�\u0000x���l�WY�z�C���\\��9�\u001a�\u0012x\t!�\u0005u�l\u000e;\nCи�\\��PM9ژL\u000ec�\noR\u000138pV�P��@*\u00137c0C4LJc�]\u0005/\u0006�\u0019�c�\u001e>}-�w�5\u0002i�\tC���5�`�h;�$0Bt���M)˦x�~�ܘ��R3d\u001c\t�'l�.rzB��1\u0002y�g���|*�p��qF����@@f\u0019-\u0013y�\t,b�pI]��O;�m/N�\u0015x��sJu�kI\u001a\u001b�`��4ē��]��B\u0010\u0005i7#k��W��\u0018M��\u001e#�\u000b�fE�:��\u0014 əuv��!L_�\u0013�v�\u0014�i#��\u0001t��Su$��q4�HCc�\u001dA>�A\u0017�\u0000����l�3�H�\r�9���{����~H�\u0018��Jh\u0004q��5��)���Uv�6�4�\u001d��n\u0011.ݟ�����VQ\u0017\u0002�bɸ����\u0014�Z�\u0002���\"���\u001a2p\u0007>�dͷG�˛b\u0010(ޠv�2�'�<��\u0007���\u001c5�u�g�Ov*SZ�5��-yK%��́\t�[�Վњ\u000fh�\u0001�\u000bޖ-��D$���k�_���̫�Q`b���ƗS��\u001d@)d����LU��Q\nn�\u0007h�uH�𭏵�|x�eɈ|ma\u001c�'�H�<�>�<\u0004po8��)��\u0019D`Y��u�+a\u0014l�-W���\t\u000b��Z\u001d�<\r{�kdE��A2�\u0000����b�%q\u000b/���\u001br�^Ģz��x��\u0001�\u001b7\u001d\u0005��\r\u000f+���Px�-���\u001bڽD��|�\u00194,�a_\u0001���\u0006�x�Á\u001cgB9���p�Q�0q����DW�#\r!��\rl�b���sDj\u000eؒ�\u0001���:e{z\u0014�M`��/d�i�٩�KF\u0007U�}���lS%��\u0016�\u0018�0�d��\r��YZ�\u0013(egԙ��\r\"UDF�q�Ǯm���9����72.ö�e\u001d�=F�m���@\u0006q��J�\u00149�٢\u0012��\u0019�\u000f\u0017.z��z=\u0010�2N�\u001c���]ld�ep#dU��Q\u0012�ߦ�\u0010\u0015֜��G�|%�Li�=N8���ֲ��\u0002�\u0011�i�>��kwJdz\u001d�N���~�%ţAD�\u0000����l�$Ԝ�>��a\u000f����z�0�\u001eו���5�H�U48AV��G\u0002R��ɯ\u0018�����'ӓK(\") ��\u001f���G�\t����2(�\u0016h�jr\u001c��\r/��hp�S;��A�of��o���{\f��\u0015&=\r��GM+��f2�֒�dz�\u0002�\u001cזW�!v�\t,h��=��byD,%�(��Î��Z��E����\u0001_�b�ݮ��\u000fJ�ÖU+�)��HN�\u000e`�㍸\r\u0006�|���ғ�Z04�ܚV�\u0015D��PD���\u000b\u0005y\u0017�H�,�,��*l�����Z\u000f���Š�}���ضg\u001c�\u001f���Z;�˾�,}����\u0013�'#]�\u0010�\b���p;�8W����U��g�o�횓�\b\u000e����]+\u0019\by�f7�� �\u000e\u001a�\u0000߸��D��4�\u001e鼢��\u001a�b~\t>�G7��V+c/\u001c\u0015�\u000f�jC�\u0013\u0005�Ś\\��0)��c{�&v����T��Ym\u001a\u0018�\u000f���p\u0001�\"FM���\b�=8J1�_��hl�����B���\u0019N\u0006&�!�\u00043��1G�!�-hٯ]\u0012l��#&?��@\u0004\u001fw\"\u0007)ی%ƣA\\�\u0000����l��2^j#��ٮXq���eH�)ےVM[r͞F�x��4-�U@�L���<��`�^'$Is�ҕ�C6\u000bŵC}~\u0010����z�5�<\u0015�OB��)\u001d�8r+���j�F�K��5⵰v�:GT��TJ@M�)>ƺy�@\u0002�\u0012S\u0005c7�\u001b��W;�Y\u0017g�\u000fl����=��ш�h\u0013\u0013\r��\u0004LM&�S\u001c�34-7|\u0018�87\u0006\r��퍻�B�$�qN԰I��QK����(�׈��\u0001����r���N�Y��\u0003�\u0018!Fx�%*'B����9�5��c~'�v�$\u001eׯ\u0010P�j�H ��Q\u0012��$b�����\")�f��,�\u0011���^�\u0017��P1��d|�T9R|VѬ\\+��9\u0016.6��i�1���lK'\u0005{?\u0000�rj\\g\u0016)����$%ãAH�\u0001\u0004���m@yN���y�pX-�g\u001a^��[\u0014-M�֠���#VO\u001f=��� ��k(�6�e�P�I/G(�����\u0007��'\u001b��tEg�:\u0004�\\���NȔA���Ih����~���yk[���\u0012�B\u0000���\u0000qC>�;\u000e��eE uhL�,\nZ%��~�\u000b\t�\u001f�\u001fy��O\u001c��.�\\�@g{�j?��(��mekv:PC�jB��M��\u000bA���|1���\u0005*�3ֶ4��`����,�g\\\f��F�Q�-f�H\"�޻�a�[�_�������;\u001eEL�@l�v�L�;�@�H�Ӹ\u0002`�zqڴ�\u0006$.ۙT��8��d�[!z�}leR���\f�\u0011˛\u0019�\u000b��\"�X���N[�L[��D\n\u0003j�5%£A=�\u0001\u0018���l���~�\u001e\u0018\u001b\u0007��gO��~\u00156\u0018+�B�\u0011\u000b��\u0019�xr���Tq���`xw\u0003��\t�ł��\bY#\u000b��&�Fz�� �>�%F�w΁V�d_��Y:����mյ�L��5�̗%=�U\u0005��\nrۃ�����t�p�W�J�\u0012u���%\u0010f\u001c��m7J�c��MX�V@<~\u0011��&�\u0006)�+����W�5�[��y=^HJq1\u0007�KI\u0016oY{l�R��\u0004R$��\")�:\u000b܈�h\\�^���>��l��֔��f\u0001\u0003ߥ��5O�\u0012H�$��}\u001d����p�1śdi*d�F�\u0019:K\rv\u0019T�CQ;\u0007Q\t�1�o\u0013XGfv�\u0013���7\u0010w5��z\u0015�Q\u0000J^0�1���N\u0013�ɯ%��AC�\u0001,���mhe'\\K��D�\u0014E1yl\u0003:�aځ(�#��B�\u001d9o\"yt[���_��VU��}�J�� \u0012\u0000u���\u0002���\u0012��J�)H�B\u001d��K\u0014����S�\u0019L4+�W\u0014k%�\\g*=3�~��)�\u0006\u0007#\u000e�����$0�歝�9.�Q*m2%�����T��\u0006���F\u0007;�[Bp�\u0002�$c%�u�l�n�@[�u�l�B\u000bv�tL���\u000f\u0016�!X�r0\u0017V��m���=�ݬ���6}�\u000f��<�$j��Է�T�\u0018����q���y�I�G�\u0017��=߅�\u00157=�t\u000eݙ���lN{�h�A[�\u001f�{�\u0014��[\u0016&�k�{�H��KL;\u0012\b>��� ӛ(�\u001a�й�Of�R�x� U|\u0011�ہD�AD�\u0001@��L�<\u0017\u001cau\f^�\u0011�#�лA\u0016;\u0014N*{�]�΃���tA��t\u0001�\u0019\n�h�0��\u0006����Q�\u0007���\u0007����cy��uj�A\u0000\u0011\u0015�\u0012%`L�B��e\u0007�o���B�!\u0006�.s'��\\~��,)��\u00169�z��0�\u0003O\u001fs�E\u0006�_\u000b��\u0014klF1�K\"+\u001a�*5\u0014�[\u001cȑ�]~Ȧ���]eFS�o�\u001d�\u0014T��M\\ĥi�\u0012f�\"���\u0014t֘�\u00046{3R��⅖��BV\u0002�8�wh���';�\u001e�X��$\u000b�X�\r]�w\u001e\u0011OX��y�|Qp\n���9�d�e\tY�A_���U\u001b\u0010��t���b\u0017�bc\u000b3�]\"M\u0000;;�?@�2\u00054���Q��%\u0012\u0003���H ��8-J�\u0018ݓ��<`~\u0006��A4�\u0001T��L���\u0016@DZ[��K��?P\u001cUp.�*ʯ\u0004Uo\u0015��B\u0013i\u001a\t��A\"�U\u0003\u00150\u0018쵋�EPV�aё�Ld��]0�/�h�\u0004�4dT\u0013G�(<�3'��\u0013�Od�C����=�5����|/��\"���f�2�yF\n �!\u0015�)��\u0007�\u0005�\u0003\u001c�w�@�(��:�-��D&���8Ǐ\\Z5��\u000f\u0016�˜h�1��\u000fۊ\u000f6�\u000e\u001b9�����{p����\"�\u001bC6�؅Izj�o��V��P��H\u0018�\u001cw��R9\u0013�2{p52z#M\"�yn��N�k�J��5h�\u001as<�<��w_E�P��@�����^5\\�a|lvEFO����4\u00034����.�\u000fg\"\u000e7�˩�a@�A\u001e�\u0001h���N[�ԴL�0���\u001b��\u000eb�B���i�\u0003%/�K)�Kp$g�J�#���H���?V!��\"�+p��\u0019���U$-Y�\u001f�/O(�\u0017�?./2,�\u000f>\u0002:|\u0004����\u001f5\u001f\u0016�q��PΣ�5�l�r��a�/:7n be\u001f\u0010 }�|h:�\u0006r7�?�gT��\u0004a�3:�\u000b���ؘ�9l�5�V��w��\u0017�J�R[���\u0011\u0005~\u00170�V�!\r��u�]��o`��%�\u0003-&X�X�J��\u001b�a��\b��0U\u000b�y =kC>�ç��hH�\u0000d��~nwv�_��0���xr�7?ȣ��I7>%h\u0001>�\"\"s{�i��`��[��D��A\u0003�\u0001|���mh�Ò^M�]�\u0014��!\u0004ֱ'��\\�ǀ�N���p�\u0019��˭��K�cD��~��#��_�_�$5K��\u0001�\u001d�+b�7N���\u0019���Si.\"\u000f��H��;M�T��l��GUYsЄ�.��_k\u0016w@\u0010���b�\u0014êk\u0010\u0017��<�C5�<9�����$+F�\u0015��5l�\n?ғ�\u0013�\u000f�ؙS��V�����v�\u001c^��\u0001\u0004�X�C�R��,�ܿ\u0001P�\u0000:�7�kT�v����\u0007�#5��D{�Q0�\u0014s\u0010�\u0016v\r-�Μ\\R\n&\u0011#��0IP���Q\u001d�գA0�\u0001����e�\u0006?��sھ�t�\u0017�\u0015g��5�8������F� g\u0014�����B�\u000fa�q\u0003�� �\u0006\u0011���k���9$���I���笣�\t=\u0018t�[G�C(f����z\u0003�\u0017'kgGW�\tv�\u000b���ϯ�-���@�AՁ\u0001���|�C/��z2��\u0014k��|,�������:B\r\u00033y)2���g\u0019\u001b\u0005�\r�rn޻j�MUs�pFni�\u0004�Dg\u0012y\u0004��#~�D��N�ԆmLGX�=�k��r�G�Ui�n�\u0000�n^L7\u0011�\u0012�vz�2\u000f/[�d�nC\u001bY�\u000fQqs�\u0000s�?\u0017X\u0010\u001f�<)\u0003�\u0007\u0012F��\u001c�$\u001b1�<�u\u001b�#�]is�\u0010i7\r�~�\u0017y)rƙ�)y\u001cw�ϧw1�\f�>� d�L�{ljh�\u0015�����?�qߌ���+��`^�\t~��VG�\u0006�\u0017t\u0016\u001b?r�:\u001bfk�1u��:6�_b���6`�;��:Md\u001a/�f0E�`��(�9\b\u0002Q9�\u0011�G�[ѺM���� �\u0018}\u0002���!7�9��[;�M+�p{z\t�x\u00122�\n����/ �2�Ѵ\u001a��3U,�\u001e\u0016�����\u001cX��R�ፅ\\�*`M���R��s��I^��*˒\u000f,\\�xg��D*�\u0004a�\u001b�\t�3&H����_(E�TF/\u0018 go\"S�@򋐌_P��Ψg��\u001f�\u0004ͣ�%�j(V\u001f�\u0016_a\f��)ܝ��\u0010.R�\t��4�\u001c�Aw�\u0001̀��>W\n+�p\u0013)۪�\u001d\u0019P\u000e?Z��ҽ��(\u0005��ҁ)\u0018��ޛ�\u001a>\u0007�\u000b��cCK�s�\u0015\u00052���p������Br����I��T\u0004�l̚��\r��4�9�zS�����[gHC�����\u000eb�\u0012�շ�?�E\u0012��\u0010\u0000��\u000f�H���s��\u001f\u0004\u0000���^�����_Yʎ�Î\tsp�=��4f�!�\f\f\u0007��I\u0000\n���\"�N-\u0013�ta��?��j\f�ɖ\f3�\u000frC��ӆ�,�,}g��,J��{��2�����\u001d,���l\u0004*�θ�P\u000e$�ʯx?�p�%���v\b��6�SR\f�W\b�\"�ҾD��R��M95�B\u0016�^��ũҚ\u0017�}%��\u000b�%�`�\u000fx���L2R��\u001d \u0013w�\u0018j��H���\u0006��a�e\"�4\u0005��\u001a!�M�Kq��\u0001^9�֚c΀�K�i\u000e����)0�A\u0019�\u0001����\u001c,X7��{Z>a�iF��e������{>�m�\u0019�>��H\u0000��+��\u001f7�@���orL;��!n�@�^�\u0016��ۻ��x�?���N: \t\u0010���~\u0010Jc�ǫ�⛬�jF)���$��2�?�tX�&�6��$zA��5�‚�n�4\u000e[v\u0012=P����O[U�rg�\"�\u0007�OS�\u0005vAxR�½�\u000b�|�?cݒ��n��X\u0007�\u0003\u0016\u000f�@\f�*]uk����\u0019��N���\u000e�\u0013��$Ȭ9��H�\u0015��\tǿ��H�d[��\u001a�\u001c��*�E��/q�b��ʛ�\u001e�\u0003�?����4\n��|󯰯��k�$�\u0017�߰�A\f�\u0001����a.��\u0015�[0��\u001d�dn(�\u0016\b*���YTa-G\f�̴E\\\u0015\u0000Ay�%\u0000U��\u001b�\u0007���OC��ψ~�Rd��~\u0001��׽C�%i`��\u000e\u0012�$`�<\u0017S�����rbϺ\u0012���]\u0001�\u0001?�\u0000\u001c6�\u0014Sۜ�!ǀA\u0000y\u0012b\\k\u001d{\t��{\ni�\u0018�\u0000�?lO��KA+R�N�Ӱ��Ð\u001a��ۗq]{�-Et��\u000fw\u001a<]n{:=^\u0006j��c~�uۮ�^\u001b�wSz�X����\u0003V��B��+0\u0000�Ӥ�����f\u0015�?��P��+��\u0010{!ag�f�uE��$T���y�\u0015�B5�Ln\u001e[��A0�\u0002\b��ME~y?�a\u000f�\u001c\t]��\n�6��饟�[\u0007Nr��b\u000f�\u0000�%\u000f�`��\u0001��eZ��2T�\u0015�W���\u0019M���\\���\u001c���C�o\t��^\u000b��\fm\n��\u001d�Ͽ�`Lۘ\u0005�F��M��R��՛�5�,\b�^\u000eǘ\rz�+e��'���B�̀\u0002��=�'I\u0014\n ^�zT�c\u0014ܢm�n\u0005\"�7p�\u001bF\"ܗ~��w2JS��y,xmb��'@�\u000b}��\t�\u0005�0:��;O���+�����L�\u0018�c��₻���Ѵ7�L����?\u0017�ZT��u�-�]\u0006�\u0019���Q��s��ߋ�Z���'=JoX�|'^�0���u�;�P\u001aD�.�c�mD�,t3�A$�\u0002\u001c���-�\\G\u0004�韾{��V�R\u0016�����bn�\b&%�\r�\u0012Z\u0017R�ˌ�tY�\u000f�\n�0���\nc�m�\u001aD�\u001c�:\u000f��k\u0004N�\u0007r2�����)�u���\u0015\u0010\u00046\u001c�>���J�kek\f\u0001��=p'����ظ��~���w��K����d\u0018����\b߃��)��sD9�Y�����=��Qx�B��\u0007��h�\r\u0003�c\u0012��o�,��p�Gk}[�@��\u0002X��MP�OX���B˗˕���S��U��o������C�Qk|���V�r)���8@�E�ԠK��\"���$f���?\u000fr�\u001ch���3\u001c7y,x�\u0005�\u0013�\u001dM�\u0001s\u0012@$�\u001a\t�gѓ�\u0011\u000f =Z��mƠu�<��į�\u0006(��w�Ò\u0014���\u0016#y��ihC���C\u0014��\"��I����-u\u0016B�HZ��F��O��\u000eK\u0005���ᷱ���M��:'���V�4n��\u0005�Ah�G��\t��\u001f]>K�U�1j�t�\u0003#\u0019S\u0010U�\u000b�tF!aw8���Q]����\u0001ҕ�IP�\u0019J��\u000e�]Z��]KnL�s�k��\u0016�[\u0001��lڻ����}��P�$�6\u001aͰ?��\u0004\"}W-g��?�Ȧ?�:�߸|\u001c�J\u0002!�\u0010\u0012E��?Sn�)0l���e\u0019T\u0003��\u0012&E�A\u0014�\u0002����l�ڜ�|e�_�f%S�g�\u0005K\u0018;I��˓h�\u001dQ�\u0019T�0\u0003����\u0017��\u0016�~yA�[T�8��Gԛ\u0014\u0011n��\u0003�e��\u000fv��[�\u001e\u0006�޺c��i\u001e\u0005��vO���U\u0000�8�Kcp0fe��U25z��jr\u0000\u000f�\tc��i��W\u000f\u0010\n,��M�\u0005�_��\r���0\u00115.bh\u0012\u0004\u0019A\u0012�>���iqD�������m��&���M��\u0017#3ׯ�F�p\nˌD�ML��28q��\u0018&��.^�\u0005��\r�\u0016h\u0013>��U���nЉ�jH\u001d'�y\u0015�\u001e�뀰\u0016I�ŕ�u/M\u001d�\u0007�����\u001ao\u0015g7��\bD�K��\u0010�^�R���#�z��=\u000f\u0010c�;\u001e2ҿ���w��/�\u0003�Q\u0005w��\b�\"�sBvi&���Y�\u001c��h�\u001f\u000e�\tۑ���\u0010������'7ۚg��C���ͺ\u000f�[[\u0006ͩ\u00010ؖ3�6�t�d���dRe�\u001c�n9�k�8�&?�AO�\u0002���l�K�5H\u0018�b7!���\"F��Tv���\u000bM�w��!<�\u0015�WO-7���c$KL����{\b`\u0001���D?a�I��v��>Ϸ����83ʔ�q�����\b�a\"��?��%w�G[���\u001cݞ,\u0007�\u0000g}�I5\"P�nU#p~���$�һ\u0018\bM�l��@$9\"��H��\bR#G\u001c�'��ԢG�8���P�\u000fI��A\u000f#x�\u0014x�\u000e)�!\u001e:8\u001e��T�0g�\u0013�\r�(U�h��A\u0001�^\n\u000f|d:2<�X�J\u000b>�\u001c;;���W)��\r=-�$��KK��h�N�����,�(K\u000e�4iG\r�n||9j\u0013A�T\u0018�ʹB\\�|\u0019�A]̖\u0013Yws��^u^W�{z��xĪ`7�;�\n0��mD\u00106�\u000b.��1���\u0001�&A�AC�\u0002����l��`%���S�v\"\u001b�)=%��T�A$�D�yl�X�\u0018�\u001f[ЎXݕA�D\u0014�����\u0004v�E\u0011�X�OpE���P^t\u0003O�\u0005\u001e�t\u001fU$��P�T$Щ�ʁ`�\"'��l��o�S~��4�\u001b<��5s�\u0007���f!/���\u0016=�P\u0007��\u001b��\u000e1��D\u001d6�/\u000e�Smi3��@�ݩ��|Ds�\"v�������:&cW\u001c=\u0016�?\u0012\u001c6tz9���~sf\u001d��X�[z��G&\u0018z�_�G\u001f�Ă��:ih�⏟�\t\u0010��\u0014Z�9�f\b\u0000ڎA6�i\u0005L��'И\\��)�<��\u0018�~<�k0w��;j;��O��\u001f���=m�&li�\u001d\"‘�\t�\u0003��m\"�{]�\u0007\n���e��&E�AL�\u0003\f����Ցq\u0007J�6ա��>\u0005\r�\u0012\r�%��l�\u0000��}VM�B*&�^o�a�Ұ��\u0011��\u000bte\u001c��\b��֣�qV\u0012����\u0016���ː�Wz���\f\u001f\u0019��Z��\n\u000b\u000b��F������az\fR���:��\u001c��0�=��]�I���\u0012��\u0004$�Y\u0014 �\tc\u0019\u0012V\\�i�1�G�-�#\f��$G�؏�\\Xn�5��_���\u0006l\u0015�q$�WdB�A� '�G\u0013#��ڧx�G�Ča�yOR�#D\u000b����w鶤?�G�5��\u0002h9\"��\u0013�� ���\u001f��-�\u0003�l壾�Y���<.�״\u0004r�0��m�����?\u0005A�ZCO��\u001au���G�w��0+*��ɑ6`Q2H�1\f�����\u001d�\u0006EJ�At9��o�D�A.�\u0003 ���b\u0005$�\u001d%:˻�CEu;dV�9��ʊ7���\u0012=�S�\u0002IZǺ.�7���0h-�;C]B��\u0004Y]�A{(\u0014i]\u0007�쿠\u0016��P~L��r\u0001��}\u0003_���\u0007��\u0000!��~��\nK4��w:�ؿβ>�^\u001a\u0007�(WK�k-�e�\u0015a\u001f/4�B�p�\u0002�������@�\u001b��$?���\"D/�\u00027�L��� ���0KA���,w����K9�k�\u000f��\u0007\u0003\u0016 ϟ^��S1\u0000}\u0015��d��e�Q\u0019�jb�z�9\u000e\u001f�S��'��D<]��w\u0013�J\u000e\u001b:��\u0006�q�-\u001dH��\r�Fx\fW��k\u0006�D%R�2]�cϚ/9`��(�\u001c�\u0000���R����Z�`\u0001B�A_�\u00034���\u0014E� �\f�\u0013-\u0005�T�\u000f�|�\u001e�;m�\u0007\u001dgmC2@(y\u0012䅽£\u001b�hE����Xފ@�iq\u0001�8\u0007�݌+`��N�Y�]͋󃀺1ݷ���vOI���yTI�\u001bb�s\u001a�,�Ӣ���1I9>:\u0019N�U[���V�O�so~�9wmF\u000bj\u001d�+I.��\u0015��\u0011S��!$ס�õX\u0019 y�ʹ\u0012A�\u0014r6��J�\u000b\u0011�\u0019\rő��3�}�\u0010��/\u000b\\�26V4�\u0011�Cʹ*\u0006\u0001+N\u000eB�\f�D%\t�ie�#\u0006\f4������f<\u0015������~4�\u0000��@\u0004x���[�\f��X՚�����Hp������4}ӊ���d�[!_�lo/Z(�\u0012\u0002�n�������6�r�.�ÿ�\u0019���)���«��l\u001f\u001e�D�G}'\u0001P\"��c\u0019���A�Ai�\u0003H���b��%���SG��\u0016��\u001c��'�&B!\u001a�].��|���4\u0005H��`�|{�\u0015��\u0000 �c\u0005����\u00148ǢY��~\n�=�b��g=�f�\u0004�2�Xn�\u0004����(?|��f�ٻHH�{\u000f�OZ踣k����Э�Ρ�h��z\u0001N���t^�)\u00175����c/{\u0004�]Yzx���)�-^�\u0018�xLŚ�\u0018���B:�c��\u0017��=g\u0017����+�%�7�N��\u0000\u0015t��@\u0019��,R���E����\u0013\r�L53�H\u001f�\u000eft+�kb�;�Ȍg�����\u001c�D8H�?\u001dΆ�ZTJש8�{�_�*,�l>��%\u000f�ܰQ\u0002W��\u0003�i\u0005�ձv\"n��29��U=v[N�`La�\f���+��,�\u0005���\t�8�<6\\\to�R\u0007�\u0000[\b~�ȷ�\u0000��'i��ÄF�\u0002\u0002C�A_�\u0003\\�����q59�\\])\u0005U�\u0001\u001c���\u00110������<\"T��7�kN}���;�Yh'5�\u0015Q7\u0010���\u001b���/\u001c�m1+#�\fŋ�sr~���\u0012'��\u001fjhZDP���l����\u000e\u00008V���[1Y�-j\u0000��\u0003��\u000b�)b����4�)v?���rW�'�}��;ؙ����/n9�����,)�<Ŭ�m\rۨ\u0019\u0011�\n|C>H,Y�P�~!<�\u0003��J�������\nc�����ۈ�z�\u00011��+��OR\u0000�\u0002�\f�t\u0002)*�\r\u0005���⚊h�*Y�\"\u001c\u0018�\fx\u001c\u0015�\u0018z������5v0\u000br.�G 4�l�d\u001cjG]��'��C�3�C\n�����/���\u0003|VO��ɣAJ�\u0003p���a��u8:j�ʻ\u001a�����\u001b!\fc[�3xo�*$�Ke$���(�R�\u0007NR�����*��;W`���G���������\u0018�WC��$XA����ǨʄK�\u0006A޿��\u0016�א9Ä�V�e�v���\u0001\u001f��\u0011)��51T���\u001e�Bס\u0019���s&Y�\u0006\u000e�\u0016���>g\u0000�ʱ ܓM����z��4�[���a���ƛ6nw(_\u0005'��`}��B\u001d��Q#]\u0011�9�e\u0013�T҂\u00016a��j6�|�1�J�=Ak�.c������Ir�%�wY\u001b\u0001��h�\u001dt�:�߂�\r�Y\u0016�2b�0rE�e��|��ɘ��(�eV�\u0005\u001e�9jW�v�`>蘨`-?g�++���9C���\u0001���\u0011���8.�\u001c\u0014J\u0001ѣA/�\u0003�����9\u0011�\u0019��x�f'&�\u0004��Ɖ�tDA\u001f����=�yx\r\u0018Mqd��Ș��e\"�T�y�j\u0014BWʛ]��-ƺ�b�j��[��h䒤~\u0016���A����N=\u0017��[`牾�9\u0006Y\f�v��\"Hjr�N���{���\n�f>�H��uX|�(\u0017x�%\u001eA\";������\u0011�\u0013\u0006�����Q��N��oG��`Bu���+��G�\u001bӅ\r��\u0005��1�\u000f\u001e�^\u001eͫb����M�$\u0010ߗM�BD{[��6wv��P[q͝\u0018��>\u0010Z\u0004mN~\fV+E��C\\u.\u00019�߅g�Z]Y�P���HR�\u001a2�.�b�\u001b8\u000b_����� ��\u001b�m�[jY :Fҵ����ףA>�\u0003�����\u0002Z���tp%註�bg�Rm|No�*JϸIn\u001b\u001fX�Ḙd��%�LAH�\u0012�IQ4o85֓�j��\u001c��פ�d�.a ��꧁|3����Y�)�QQ��\f*���V\n�h�1+\u0015*�\u0017\u0017��^�\u0017�Q;\u0013\u000e{�\u0014���,�L�n#Y�\n\u0006P�R-��~ץ�.�.�o��|\u0014�>\u0018��\u000eN����f\u0000g[�������ԯ�pO�u\u000e�w��N�\u0016d�v0)�z�\u0002n\u0018>�����5�\b��\f�Y�ˍ��u͚#�ۘ�E�Ώ�\u0004\u0007�J�2s��\u0013V|���*+��3��h�~d��\f2C<\u00141�':�����\u0018�.r�g>��W<�0WQ�\u0015���m�\u0005����,���\u0006�ףAS�\u0003�����!��\u0015\u0017B�\u0004h��dt��o��d~\r&X\u0013YG��Ԇ\r���\u000e���\u0004����\t�T�eTQWqn�`�8fh@�\u000f��B�mN���VI\u0003c`y�m�G���o\u0013��~k\u0011x��ܐgl��XU\r���Xfq9G��\u0010}5�ڵ�I��5��\u0011\u0011�\u0012��ƪ녝��\u0006\u000b�=M\u0000<\u000eC�\u0017b\r<4q��x�&�r��d;���q]K\b��\u0019\u0011)��a����\\j�`\u0013Z�{��Zc#�e�@>�ϷR[����s�:-�\u0015\u0016k\nL�vW;�xoH�k���oࠞ7+�1�NJB\u0003�\u001f�𮄟hN��\ng:��\f�\u0002ƕ�OV�Rn\u0006�r�\u0018�+��!�I�ĩ��G�t&\\��fp���N \t\u0000���3PwH���)-�ףAD�\u0003����\u0013\u001b2��n�{��JF�\t���^I?\r\u0005�f\u0019�l�vyj-��\u001d��ה����\rȤ��\u0013Xd%��ĭ\u000e��r�k�%�\\��\"��P����������>�،�M�2?LL�s}�_��\u0007`\u0017 ���($��ɦ�ʍ\u0018a2���>\u0004j�,\b镃�ҎVg6�}�=J���\u0006�0�_=m���a�����s\u001f-���v�܄�2�n�\t�\n\n�������KB��QZ]F�dْ2�xz;�O;��\r�\u001d��\u001e˲�\b�4\u0012$ͤ�9�\n�jn\u0000�%4�~��������a�c\u0016e�\u001d�[�?)�@ۧY\u0014,2�_Y\u0016��r*ô�`�&�5M\u000e`t:�\nT�'�nG\u001a%��m�$6\u0002L�=ףAj�\u0003Ԁ��\u0014E��'b\u0004O��}4�e�����-����s8�vh��E N����4z��\u0003ӝɀ���n�nBSH�?�4_\"�b��q*@3Ѹ)�u�$\u0005�\u0004{z �‰ҩ\u001d'%ql�R;�jM�.\u0017l�E\u000eb\u001b���V��X} ����mW���\f�+1��zC���G�'\u0000�c��\ran��\f����)\u001a2N�l��\\\n=~&\u001c!7^�p\u0013ZK^�\u0016\fiQ��gx�ż\u001f��e�ּ���N�2�&K�\u0003ڮm\u000b�i2�|(�W\u000e�\u0016ux\u0007�͞�����|\u0018 �6�\b�Qc�\u000f=0\u001f�s�Ir+�26�3�G\u0018��\u001eҠ�K⾐��tLE�1�\u0001�\u0019hr������\u0017fze��D���@��r�O<�t�+i�\u000b�sh\u0019�����v���e\u0007n[:ʲ���\u0001�8=֝�g��H��ɺ\u0010p:|4\u0002������orl��T\u0002��F�<\u001dY�c\u0016\u001e\u000f\u0017Vq���\u0012C�\u0014��X\b��QzP��F�?@��΍~]Ǽ\b�\u001fW��U�؅����<��\b�\u0017\u0013Jb�C��4\u0017��CVr*?E>gދʻh��g��\u0005�n�?�0)m�O\u001a\\`�\u0002ٮ.;Ic�7��ɳ!i�m���.����\u0002�y\u0002u�!b���\u0000)!w���q�\u0004��c- 萋3~��\u0002�\u001a�\n6�/3����\r�ED�\u0013v{x\u0002�N+�7�\n\b��w}�$�~�\u0013[�|\u0002�أAV�\u0003����ԃ\u0017�V��!Y�?ф\u0004\u0018���h/\u0019*(y��wm���\u001eX�U�j`\u001e\u001f�A\u001c]�\r�d�R�Ԇ-x�\u0003�A���?(Y��/�p�h\u001b�d}E����4Iz�\u0017��?\u0017\u0016\u0003�\u0017>��$S����\u0014��\u001c��N\u001b��T���\r|�\"�QL}-�-u��\u0017�y�n���Q �b�@�ک^\u0011��\u001f��]���gE�����\u001bB�C�\r���Jf_(�o���Υy�X���\u0013�\u000e���9��q%3��3S6��X�z�n�\u0000-\\��I��-\u001e�O��)$\u001a��8GQ�5���J̷�'rv��J�\u001d�\u00127־4�!�\u001a&�E��h�MM���>\u001f�9�-T�I�-��s��b��\u00124I�L\u0002#�\u001a�uj����\u001c\u0004�)�3��|9�̈́�ۣAN�\u0004\u0010����f���\r���C\"j�\u001e\t�)o\u0005\t��;�&�\u0001�ZA��q��k쥃w]Z�XN�4Ek��&\u001a4�Nu�i����zNO\u0016E�\r��l7�\"LΡZ7�e�\"�!˱�\u0000�FU�\b���]+T{\n�o\u0002\u001f&��26]�Ξ\"c�~�(\\��g��������\t\\\u0017\"\u0005l\\sM!��L�H�^����]��t�>\u0011�\u0004(�\u0018\t��\u000e/t]n�ł�\u00076�\f\u00069J��\u0002\n�\\\u0004\u0007$\u0007}Rf\u0002����&�NݣAY�\u0004$���\u001fO��c\u0016�\\ˁ�B5ہ\u0016\\.ѻ�Z|�H�@\u001b\u000b��\u000fK����񋞄{1�b�\fh\\�\n�e�\u001bB��\u0011\u0013d��U�E,m�eU\u000f\u001d��*.s\u000f�g���Jڅ��J�M�@>�\u001a\\�I!7\u0003�/e\u001c\u000f�=H\u0013?eA�D�z}�@\u0017�9v�p���\tg�Uy��\b��$,��� �}�E6�s\u0001,u��o��L�2H�>FK�9p�l�[��\f��\u0000�W��\u000f�\u000eW�-�\u000b\b�\u000fA&\u001aVQU�k��!W�\u001c;���!�ıt��#��n�����N�\u0011�N*5ŧ\u0019�y\u0001)�Z4\u001a�>'6�LUT���XD��s������84�]�͌\u0006��i\tʄ�J��9�t�B=��_H^w���P~\u0004ȏJ2f\b��i�rAڱ�jJ��B\u0018�I�ޣAd�\u00048����(�c�Ԓ�D��|Ҋ�\u0011��?�}K����y�_E h.��%�N�Jۂ\u0001�\u0000\u0016�\u0003\"Ten�H�%��\u001b\u0003�_i�׫'�׻��&0Vc~8s��M������Ь�\u001e�A��\u0004L���a��\u000b�ťqKb.�u�(���r-`�(Yf�Qި�\u0012fd�6H�[\u0011�':����w���@B�\u0010�\u0010�\u0019I.����k��\u0007��VsVJL͆�&\n\u0016�0t�S$�\u001c\u0007�\b�;����\u000ek�nZ64q���W��&�S\u0011\u0007L淋���#��A���\u000b����m\u0015�xi���gH0��]D:�C&��}��|��\u0002�dN%%�h�\u0007<�꧱\u000e\u001cN��,m\u0013�4�F��]cl`\u0015\u0003R�1��Gc��\n����\u0019Y\u0011�ҲJ�`΋���Z=�b{z�Z�-��>m��A�_�{�IŜ�u,��*��\u0000�sXJ�q�_����v�Cq<�0\b)�\u0017\r\r�������W�U�KO�Opd���\u001eƛ+*�{�z{u��C���\"�@�O׏r��\r(U���'̙��t;��\u0003L����wB������nT��D�M�60�Z��ק�\u0010�\\���\u001f��塤\u0005\u0016�\u0007?\u0015��\u0005b\u0000�`6�o���O�/���A\f�\u0004`�����_uЭ\\�0\"��%T��OX��R�E�\u0005��`OH�Z�B����-\u0006U\\��?S��t%�d��͝bQ�\b\u00192\u0000�<\u0010T�w7��o\bk=\t�\u0014\u0002\u001c�\u001a�z3\u0013�(��/��L���'\t�����w\u0006A\b�dO��H&M\"\u001a�{;�c\n-ŵ��\u0005Ŭ\u0015`1��[9/\u001e�\u000f�J��,}\"��u`��i\bI\u001aQt$Bp�c�`�Z4����\tRv\u000b8J��z��\u001fXуS�t�1�IL��\u0005���\u0003���\t��\u000eܡ���c��1��V̎��?�\u00065\\m$\u0000�.O2��&KJ\u00002�P\u0003�\u0015ݣA\u001f�\u0004t����O��%Y�<��4�S���\u000b�7Lӯ��G��`ш1\u0019ǡl�1���\u000f\u001d�`C=�^��r\u001b��i���Б�6�@��C1T,`\u0014����\u0011\u0000��w\tY�ih�����s\fKa\u0012!��mԌ�5{���ߕk�r�y�R^7\u0006+�����^�\u000fG�'\u0017\u001as�d ����\u0011k3V\u0002������_�R܎�\\�β\bP��I\u0016q\u0011�󄧝2Ar��\u001b�d�=e\u0003$��~c-���\u001d�\u0016��zQ�O�hz8���\u001f���C�V����5���\u001a\u001e�'\u0002�*\u000bsi\u0000\u0014��ƚh�k�����sS�A\u001eDQ\u0001�R'm\u001aA�\u0007�`�W�A0�\u0004����\u001f\u0017w@d\u00177\"x����\u000eK�i{�Q�\n�\u0016\u0003T�|\\n�\u0011]\u001f�@'\u001d���1ڡ�u]�y�n\u001e��\u0007(\u0014���qO\u0014��\u00135^\tf��\rA���\\s~ȼ��3�w�\u0015{Y[e�\r���@�|I��.\u0011�����-^�C+a�^�\u000f\u0011�(���\"r7��n\u0007\u0005��n�ު����u���g�ӝ�=U��\b�Z\u001ch�U���\u0004�^6\u0007\u0017�\ry|�/\b����ҌڬV�)�7�Gd�L\"�Mm�P��\u0018\u0017��e^ZڷK���9u@\u0014@�w��\u0015��gԏ��B��-j\u0007�l\u0010�\u001e�\u0006j��c{,�o�F���6\u001e)\n��iUI��\u0007��\t~��?s�d.S�%e~\u001d�\u0004УA.�\u0004�����Y$\u0011�=��G\u001dL\u001b�p\u0005\u001c��\u0018՛�-\u000f��#���\u0014�{���4\u0002�A�{���m���\u0011��J�\u0000ԧ�\r1??R�u-�j`o�J 0�\u0004J�5�3W��ɕ�\u0006ϛRr\u001ea?ja��\u0015+�D����S摠\u0017o�6���Ã�j�@)Ǧ���)\f\u001a*�p�.�?^\u0002\u001f�\u001d�y�O�ğV�Hcg�J�\u0001g�\trb��~X�\u0000n\u0019�GM~���)'ȼ��ƴ�T8ٻ��C[��m��U}�h�$��-\u000e:�l\u0002P�\u001e;\u001as�YQ�%\f}e�І\u001f$Ӫ���\u0017���zY\u001e1Vۍ������F� ���M�\u001d��f��U�\u0011\\<�3fN�\u0017\u001c����\bk�wVQ�A��\u0004����>}�\f�l��$\f\n\u001bOы���!Ҩ\u001d�\u001a��j�\u001d�\rD,\f8�\b���\u0004?�\u0019�?��F\u0006���=PB�/�\u0016�x�\b_� �?�TK3�V��`k�ft�\r\u0007��\u001a\u000e���)�d! \u0012B��\u001b�\u0013�=���e�j�ep����*}�4�yf'��mFVg+��|#�;��.̌�\u0015\b\u0019\u00104K\u000b\fnp�\u001e\u001c\u0006+\\��Rs\u0002�\u001a�'�f\\���\u001d�X^����><\u001f\u000b������v鎊d޺d���?��b�s1�XrH,�\u001a���!h���\u001cW�c��\r\u001bc���\u0011\u000f\u0015�o��\u0007\u0016\u0010\u001c�8,\u0000u��\u0016<\u0005��`��u�Ryɮ_����$s\u0011_;H���;��m)x,:⹦l��(�.\u0015x�f\u0011�ċ�ʿ=�+\u0012\u001c5��eQ·)nkӁ���=�7��\u0012W�@X�����*�\u0010\u0003\u0016\u0016���?�\t\b;��b˅\u0012�<���F��\u001e!ڄ�2Y��^�l<\b#V6��\u0018r���\u0004�9��\b\\\"\u000e%ami\u0006<�\u001a�\u0007����� i܃����.1/\u0007�b\u0007�%�4���y��a�\u0003������<��+{?�\ti=�RTa��E�AR�\u0004؀���\u0010�Y\u0004����\r;�\u0010��[����0X\u0006Dv��C��p;��^�E{�_��U�,\u0002\u0010zmK`�J��}q�R��d��U�\u001cT:/���\u0004ԄS�'�Z�{�}�\u0012�P������I��5MgδqS��q5�q���9>�G\u0000��*kf�޻f�� �]��o�%�G@=\u0018��lp�w�\u000f�!�x���i2f\u000b#j\u001d��;�Lu9�u���6����8��?:�ۘ��?Ҵ�cr�=աn�v\u0012�)B�\u0012�{��tH�g]��i\u001f��o8����ir���c{�V���I\u001d0�p��m)��P\bc�\u0002�9!S��F=�\f�_$x��\u001e�\u000b\u0004�@S\u0004�U,��6�?;\u0003��\u0011C]�y=�����$\u001b��\u001b\\w�\b�\u0013��JãAN�\u0004����}���4�\u000fo\u0007\u000b\u0005�\u0013���q�S�D/B��Ro��ܲ�\u0003�R�V\\��u\u001eα\u0004Ģ�s<��\u0006�\u000b�γ�\u000b$T,��-�ʂ\u0000D\n\u0014b�.��\u000f;L�c \u00011����\n*��b��l�H�n��\u0014�i�\n��)O\u0018&R�G�+�r���\u0001�1R��U$�B��v\u0017\u0000��\u0004�ˢ��@W�U�tf�S��d,x3�cIߴ5PpJ�EӐ-���1�vE�44\u0017�#��6'�56^�GJH\tH(9\u0006c����\u0012����j��\u001b$\r\u0004��Pl'��$C�ދWp\u0002S9z�\u0004\u0018\\��[�q̥0H�\b^H�*\u0012\u001a9ߏ�Jp.�l5�kB�����~)\fҕ�6���MLX�RW��$-r�Un@\u001b�]�$��}|��JţAX�\u0005\u0000���(�,��į.n/�)c�\u001d\\�\u0014>4l�2�\u001bs\u001c��\u0015�u}����á��zd�#����'��\u0002y�f�[�2၀�\u0005��\\\u0000\u001cƆ�A�|*1\u0005O���XM�WW�}�'�\u0017�O\t$\u0018rʗY��\u0002��j2|�I�Ϧ�� �����Q�\u001b>S�\u0014WV6>\u0003�gKI�0L���O�H�7��k��|\b���\u001bV��B��`?�縧[k)����\bq����]���\u00121}���^�4���\bo�ou���؇\"\u000f�G��~�l=6�y=�\u001d&�/G��2�\"����e�O\u001a��)Ɯ\u0011J�7�N���\u001f-��7|Z\u000f�l�b�\u0000\fx\u000e��\\A\u001e\u001c��@r���y:��\u0017phx�4=D�c����w5\u0005��-I:�E8���?M�t\u00047.���ǣAl�\u0005\u0014���\u0014Ee�YN�\u0003\n�6ۊ\u0012�զ��r6A_�l.\u0007$�!~���Ցފ���`�l\ty}ܺD�%c��s+�,�\u00173\b�w�E�-�q���<�\u001b\u0018�be�>�����\u0010�\u0014v��&�Az����\u001c\u0010TZ�O���p&�f�q\u001c\u001bc���0I#�\u0011�b��\u000e#)�\u0006W!f���ݨ�\u0018��sk\u001e�l_~\f�+|Z�̧rQ�G��)^��� 4���)�f�瀲d�%�ȫ�\u001b(K,.p�v���Ǜ�[ry�[Fj���\u0005��o0*���Ђ\u000ek\u0004\b\u0013�\f�+�(R�?�KUNu�N~J]颸]+�^�x�r!�g���\u0015\\��\u001f���\u001a\"���܅�\r&9Q�\u0005x��p9a�\u001c�7ʷ�2����\u0015\r�vݹ�[�\\�\\@�C�|c�r����S�����!rD�\u0002[D����0nǣAM�\u0005(���3�>���}|4�I\n\\�3\u0000�`���\u000b\r��Z2\n�sӹ�\u0010WrRɣ\u0001O`�����\u0012�\frn,�����\u0011ő���K����� ��۱�����bs\u0015\u0013�{=o)\u0000�\u000e��;\u0007쿁Ew�ZU8j=�ŭ\t\u0001�R��>W����\u0019\u0004f�\u001c�x5\"�k;~�%M�\u001fC'K/\u001a\u0018��%}���E��T��'�+?N\u000b�k�caz�R%n�x\bjDۚ�R�����^׋_h��p�x˂W�;�~\u001a��6TCQP\u00078�,ٛ\u00025K�d�\t�\u0012\u0018@$>�rX\u001f3���-��, x0yl\u0011@ί2c̷l\u0006\f�\u0004���]��;$+�v�d�>J��'�h�\u001c��w\u0012\u000e*�8���D�AT�\u0005<����<\u0011\u0017�s\u0018�}\u00143�O�˃\u0012\n��L{J�ԋ���b���$�%���\u0018^\f+�=�ek��~�$o�h�\u0006�bZX�A߳���O么n�\u0019ȍ�\u0011�n�h��[���`V�e�\t�����\u0013h��7\u0018 �BV�\u0012-w�\u0013U�_\u0014$V`Td웜9�\u001e\u001f��yvQ��(�� ��J7_$E��$v֡�2N�_p5��\r;\u0013b\u0010��J�mU���\u0004�\u0012�S�_�{�\bu���߰��\u00187u�\\\u000f\u0011���\u0007I��uT炴�Q�]t�s�\r+[ܩ�b�m)X�/\u0006S���0I��\u0018�s�\u0006˄\u00191Gt\u0007\u0013D���r]�׌;�\u0001K���]`J)�\"s��\u0002�-T�D�\u001e\u0001�fx�6�^�P�ɸN\u001eDJ����p}�N��%6JãA^�\u0005P���\u001fH��S�\u001a)��c�J�H��\u001a\u0006L\u001ch\u000e�\u00038�TJr��[���\t����3�g�\u0015�\u0001`�\u0010Y���<��o{YM�^����:��0��SdzQ`d���\u0005-$�P�,0��\u001c�m&�4Pz�q�)s^\u0012�F����\u0019���i�X�Y�\u0013��ډ�qP�\u00145=\u0000���_p5Xo\b��E,2���\u0012�#�J�H��%�\u001f�\u0000\u0017rDPw��1y�/F\u0010���$N�\u0001�8ź\u0016g\u0018��I�<�:���9��*\u000b�d(�)nl\u0014**~Ԝ�~M��3\u001c6���*0��q\u0003L�\u0012���\u001a�?�>\u000b��r��RA��^\u0004R�5)8���:\u0014ۇ���:\u0013YSj3rP\u00150��9��L�c���V���Bɀ\u0015R\u001b�B�.��\u0007^I���(\tN�4�IB�Am�\u0005d���Մh5�Q3Z��\u000b^�fVnjk��W���\u0016�\u001c�l��\u0002��\u0015�,��MZ�\u001b�}\"���7�@\u0004��6K\u001aσ��r�\u001c�:�\u0013�lk�\u001e=��l\b\u0007\u0000���@�|O�\u0006���\u0015�Z�\n�c<\u001b��\u000e5\b~���\u0018�\u0007�L\u000f\u0006�s��\u0012�\u001eV��;�\u0010�n+�Ѻ���0[�G�x���F\u00154I�\u0017mA�\u001f�V\u0010M�\u001a�\u001c8��[qЯM��%(�X��\u0005evf�\u0019&��\rOEi���Z�P�4��Rv���\u0000į� \u0005��\u000bogq��ZR*��\u0000��%�z���M��5\u0003��\u0010�\u000b��-G����ۦi�\u0017.`�%-lO��1�\u000ek\u0015T*�]\u0001�\tB@K�\n����,�2��d�+N��w.�w�S��3�\f�,�ý\u001c�\b�,Nܥ�4_DY�\u0010\u0014�{Ǵ�؈dq[����m\u0006ţA��\u0005x���\u001fO�~\"[�c�\u0004y\u0018���/*`\r\u000e\n4~����2�\u0002�s�\u0019z\n�s1�ϸ�%�ڦg�쑐��\u0000]E<-ָk�΁\u001aq\u001c�(�\u000f}�\u001c����x���H6L�p��#\u0018�)6\u0013�\u0003�\u001f\u0010Qd\u0015)�\u0017LBd4�\tUj(X�v)��\u0002�S�a?d���4���n�Y\u0007\u0002_��~��e��\u0010�(�pzv��\u0012���f�,��V#�P�AZA\u0014N\u0005\u001b��]\u0013�mMeH@��\u00041D��֖���%\u0004}=hT��\u0007�6�ܻ���BD��$�i��t�fE[GI�OCp�����‚�\u0011d�H�`�v�e��F\u0004\u0004�i V\"��L\u0019N)IIt�dO~86|��׷���\u001a01`Q�I͹��eT\u001dw\u0011O\u0013x�|6�x���-|+͟��Ƥ\u0018��[�v��[^\u000f��!F��2hq\u0005��f�-ۀv1[�\u0016\t�\u0001|��H\u0013��E\u0004��6Q��ID�Ad�\u0005����4�~�Z�\u0005��3^�2���Z�+��\u0016^��.q��1�1�\\�n�\b�\n�p\u0001c\u0003\u0005�4,?�*�l$D�WNg?�q�\u0011��~��\u0013v\u001c\u0019����KJ��~��\u000bc�xpG��\r�Fg�U$�L)\u0006L!�\u0002��\u0016/'�'�T�ec�\u0017��\"��A(\u0010U�ҕ]l�e��V\u0001��\u001b=\u0002+N�N/h=�㞢+��\u0007뵶��x�\u000b��_X�����A~�\u000f=��2s�$�\u000b\u0015M\b���/�̅by�$��z��U�\"�`J\u0005�\u0013u ���\u001f�=�ל佸gF��j$�1\\f��x�\u001e���ِtXG�1u��f��y� ��aK��8�@M�傚��\u001bbC~�\u000fF���H�7L��Ҽ̆�S\f\u0001�r\u001b��4�YU\u0004�R�Ӽ\u0011'\u000f���ڈ�{kD\u0014����\f�]B\u0014HnUϜ�[�E$�\b��N��\n]{�g\u0015PB�i7\u0002mo�\u001f?��Nb�N��IL�C���\u0004dI9T\u0010��U��� ϦN��\u0017�'$�w�7\u0013L8+o�-'�;\u0005�\u000e������-�'\n^)�\u0007�\u0005�\u0002\u0017=\u0011t(�am�\bD\u0011�j�eh\u0015|\u001d\f��\u001c�\u000e6��2Y�nw��b�T,�\"�\u0017U\"*Ȃ���\u0016��kNkQ��ţBz�\u0005���|��\u00188c��\"�c��c\u0017a�\u0010��g��Z۷�X>�B�.3��^\u0012\u0007�\b�\u001d]C{0���gٵ4�ֈ�5y�>L�9\u0002+\u0015.]�V\u000e@a4�}�0̉o��Xv�Ϣ��4l6t/UV![Ԃ�\u0019�!0G��b2���_�tK�\u0004�\u0001�\"�*\r��pO\u0002�Y���\u00160��\u001e^T�1���\u001e/\u0012���\r$U/��4�\u0004\u0006|s�fm�������^�:3�'N��ڌp�\\j��\n���\u0017���}x�k\u001d�1[\u00120a�iun|�\u000e1�8�R-��_J��'ɬ�84?��1��\u001a�d�.\biC輘@\u0000?���B��\u0013ԭs^d�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b�k��\u001eKΆ����5�@v��\u0010\u0003m5[T\u0012�ђ�o�\u0010%��F�Ū\r\u0000\u001ez��N��}�$���,M������'�)ڱe�g��ryo\u0005��){�Xp������\u001a��2�͓�\r���\u0007���\u0001�\u001b��l�:1�LV\u0001�+d�R��\u0010�7�B0\u0010\u0010}]�0N���P�\f���qG@�^=F�vüv�r�N߈\u001a���������,v��-hL\u001c���_2'��@���ijVذ��\tb5\u0013�L�\u0004Pz~p�K!8E\u0013�UhF���h�a)�WQ�D��\u001d�\rX}_��9�\"\u0018�W5$�&\u0019Е�n0ZԒ:\"/��c\fm6 �#�nP\bM1\u0007y�\b߈q$�� �\u001e�BQ\u0000y����3]D}��d�E�q\u0005\u0016�\u0004��\u001aUjI[�A\u001f�\u0005Ȁ�f3�f�\u000b�v�i������px��!\b�l�W�OP��V�y�dn�boA��h\u0002.\nM�:������U���\u0007�\u001f��2���Ҵ?�Jв4{�q%^�\u0018�n�\u0003L�O4�\u0006���\u0013�\u0007\u0005\u0014(e\u0004c�#Dž��\u001a^<�F����M&����,���Ӏӝ`�gb8\u000f���s��Am�B\u0017�'� ^=��~�!��Pˀ'@@��\u0011�P�\u001d�`>\nA�\u0011\u001ft<\u0011�y|Xuy��@� ;eoxZ�K�R�I�Ϊ���@\f��\u0017^:���3;r\u0007�tł���*;�~��\u0007��ʢ\u001f��I\u0006P���3\u001f�-A�q�$�\u001c����\u0019Uo_��A\u001e�\u0005܀��\u0006V>��4#�5f�7XrŨ�^�\u0014~\f�샐��|�Ή����Q����E��S�g�\u0003l��`�U\u001d�\u0013.�Ԋ�~8О5���iL��}C�&�@�tC귵�[��ʝ�@s�\r8�����IO�.��\t\n���aY\u001f��|\b�1�A�\u0018�\u001b�;��\u001a�\u0005�\u001f+�2��h���o�ޅ��N~��\u0015t\u0018�]\r����-3P�[}*#�\u0015D4�\b\r\u0011\u001f�\u000f�\u0001Կ�E�EH���$q���7��o7\u0003 t�Vd��3ڦ����\b\t\u0018Q \u0012��1�E�\r�m�i�0\b��lT��URC\t%���v�M���1��\u0004D��5�A<�\u0005�����O�L>��,mK�u��P\u0011��\tlD1vA۹pDe����=��OsJ���Ѿ\n�Dž�G/�<���\u0002���Ώ1�VRV�\u001c��:Z-�X�̼��*�A��2&\n5\u0005��o�i1�=���\u0006�eRF\u0017˗\u0012�f�\u001a6��B�u�l\u001dh\n��.���z*Q��r�\r/\u0002�@d��ś��!;�\"Ѷ\u001d{�+�}��I�x7P��nr����\"/�tOeF\u0016�� ��tܶ��0��W\u0019\u0013\u000e�^��\f�n(�v�\u0017�$%�t>\u0016(���HҢ��J��1/a\rz�O��ҏ�w�\u001aZ\u0007e�\u0012���g\u0010Z=���kvƉ�p ���҂is^�{sR��>�\u0001\u0015�:��obS!��\u001cK;�\u001f�*��A[�\u0006\u0004���\u0005\u001f\u000f\u001f�!Y��@�\u0005��]ԜI�}i�q�ld\u0000E�ĿQe�.�\u0007>�������\u0011�\tv�؂W\"����\n\u001a��j��z\"xӠD,�ݼ�(VUF�LJ=�\u0012\u001d�t\u001el�i1���Ѣ�\u0017���\u0006�T\u000f�Ո/\u00146|\\��*���FI|���p.�Y\u0015�CZhݵ���|�J�\u0014-\u0012&�\u0018�Ks���\u0016�8��\u0003�Y���I\u0005�F���w*�R�\u0007Ͳe������MՇ�c`�0�\u0002�:�O\"���iz7qE<\u0012��d�@\n2[;�P)ၙZ�̫�&�,�L(\u0000��(?q�\t\u000fu��+өW�#Cv�\fa�_2\u000f'�qv��*��s�r�������T��x\u0014����\u0010\u0019�\u0018��R\u0017���2c7���\"��+m�O��q�<�f���AH�\u0006\u0018������E8`�௛�\"K��\u0010��b`FPph��\u001d�G\bnE\u0017Rjۜ�uE��\t\t�O|=A��\\�h6vr�z~�����d�\nɊ�l\u0017�SW\u0010����\u0012�a�F�a�f��P�V#�(\fi*h�t堬\"sni\u0005A��눉ɛ^IYچ\u001d��\u000em�~�;��H�\u0004�ٮD��\u0015�\u0011ca�k�\u00183og�'u\u001a5 �\f�g�\\n\u00077��&Ja)�����9HG���?���ls����z�3;T:\u0017q\u0017\u0019H\u0005 �+����\u001b��'�\u0017\u0019�(�\u001eD\u0000��iw���2/�\u0003K6dā��:A�2�ф԰ַ���|\u0002�\u0014�&�X�K\u0000'����\\��\"�\u000f\u0001\u0010J��AD�\u0006@�����S�q����h�ML��q��t�r�M`��\u000b���\u0006�N��\u0010qj��g�R�j\u00194K��s\u000e�]^����YKvx��Z�`�ri��\u0011\u0001�x���3>wɯ/��\u001bUL�\u000b���;�j�I\u001c���U����-���B\u0015��\u0001ܼ�'�4\u0007ˮ����#U��,4�lTϖ��-��� B\u0018��X�q\u0006瘘9\u001e�Y�<����\u001b\u0006��\u0014Q��T���:�Sƙ?m�'�D\u0000X���\u0006,8�|\u0010��\u001b̒�E1T��\u001f�PO-�\u0001qm~\u001eoZQ\u0000�W״}@M����\u0015�-��\u0006\"��jU��w�\u0002vIN�\u0018H\u000b ��2����G���GԁIZ��f��2C�>9yO<�\u0012H\u00178ߥ�\u0001�W�A(�N��A_�\u0006T���+��)ys��\u0012�\u0019ыLƾ��=�\u0000|���\u0003�<\\\u000b\u0004��@����\fL[3�W.Z߬\u0005M�Q�\u0001{i\u0014�\u0011�t�\u0007�s��\t��M�ݍ��\\u\u0014��BC���`e�\"c��7Y�q�\\cU��匙�kX\u0003�\u0010\u0016dI����\u000ey�b>Ӹߊ�Ŏ�2Ƚ\u0015,�*N׆q�jSiǡ\u001eNQ`9j�\t�պ\u0001���粋��\u001c�\u0016�B��u��~�͏�Ӥ�P�3\u001f�\u0011�.ն�oO۞ݏ\u0012��(��k�\r�\u0002�3�\u00007�\u00025\u0000�a�z�KU��5F�oi\u0006�y�7O�Ϸ�\u0011�^�.d\u0001���\u0012\u0003|r�M\u000ev�?�\u0018�rλz��Aj���y\u000f՝z\u0012��\u001b�\u0003�NɺΕ�\u0014�HT\u0004\u001aC����)�j���7��\u001b*)�y�@�z�\u0013\f(-���v5\u0000��\u001f`]\u0003\u0010�ף\u0017�\u0006^��AP�\u0006|���[�-�_���Ҩ��=�Bo?\u0003\\�wE�Xd�t���ҽ2ke\u0019�(��=\u001bo��:�\u0011�\u0013'�����]͠�ZG�:\u001c��\u0014�;�\u0010h���|蟭�M\u0014lnj�\u0011e���+��� \u001b�o*QC\u001d,�Z\u0016K��\u0005:��K\u0006Tw�\u0007�֭�>\u0007구)�S\u000f�k���h�\u001a���̧�V��\u0016�\u00014\f��!��\u0005�\u0012y.Z�<���y\u001ezv�d�p�LH����$��\u0015��է}%\u0015H���}�w���mdv�]c)�\u000e\u001f�\rFy6n��\u0019��\u0006�\u001b��67��+�v�D\u001c\u0013�\u0010I\u0012(\u000f���ԙ\f\f\u0005��^E_��KD8�-cy��\u0016�<�O�m\u0014��xf�\u00102J����Q�6P��O�l�MY�Q���+\u0000��R\u000b�\u0000�P!κ�Ac�\u0006������F�\u0006\u0013�=�J\u0016J�E�� \u0005��W4��i_��GW�v�\u0004�=�lf��i�4�&��P�)\u0013d�9,P��3*!�\u000e?�C�1n�z\t��G\u000fJ�ZүU-�\\yMx�����h��Ŗ�r�â�z����p֧\u0003�\u0004��=Q��\u001bz;��qY�{�%>\"�\u0006m'2\u000e��\u0018L�QݽSӳ�D/Ԣ\u0016J�'k�S�p�\u0000#�\u001fm�p��\u000e;��q��\r�Eil���#X� J'��\u0019�\u001dS�\u0002�RS5 ��S\u000ed�?k�%\u001e\u001a��\t�X:j�>(@7�*��nԋ�&\u0007\u001a���\u0019�Ȼ��m0��zn�G����_\u001d��6l\u000b�����ǜ{�2��B�C�\u001b\u00065�ۑDtp���RKJz\b�\u0019?�RWMO��\\f0\u0004�mhf>�\u0012�\u0015�FC�h�SA��f��AX�\u0006����\u0000��X�<۹�\u001d7c�-�m�x/8�)��U���B��UL�G�8\\�Lb�qB����\u0004�\\$m89坼�B�y�#7\u0005g\u001fR�d�\u0018�fi��,j�e����i�/`3��\b\u0003�\u0010��H�\u0004_���y*Y\u001a\\\u0001R�U���\b���/�&\u0017���VN~e��/a�vQ\u000f�l|w\u0010x\n\u0015�.\u0003\u0016\u0014p�\u0018�;���\u0010�%�Ut�:�_�\u001er$\u000f9�g\u0004�B�D� m���y߯���W[�\u000e�sd\u001e�2����\tg2x�p^\u0003\u0004���q֠\u0016S��:\u0012Q�7C3��E�mc���\u000e\u0013?io\u0006˞�בy+�d\u0018ʘ��L��\u0007��� �/&�\u0010\r�\u0007-F9���\u001b��\u0013U�.��Ag�\u0006����%\u0015��\t�V�5W�\u0017B�\u0005�y��Kpg�K�j\u0012D�o)�q�kV����l\u0016��\u0001\u000e�z����q�\u0007�d�i� �y8�ڈ(��J2Yq�B�d�Q�W\u0007\u0003��Pt�\\T�*����u�8��N-�L�;$�h��``'�\u001fJ}7H�\u0005������?�o\u001d�ڗ��m������\f�19\u0004\\�2H��D���0\bW���FIa���\u0001j}7\u000e�\u0014ػ�H�����)\u0005\u0001Ϩ\u0019�kU�f�)�\u000e-�\u000f$����*E/a鞃�Uc9U��\u001a�\u000b9\\��^��cu->P\u0002Q槆��\u0019�BՍ�\u0002m-[[\u000f4�€�\u0005h\u001dӁh�k�oY�G�\u0016�\u0002-�n�s��\u0005i�ʅwe��\u000b�\u0004�g]�{�p��l���\u001e\u0015�U�Ƨ�>����x�I\u0003=�\u0001��\u000e1���A[�\u0006̀���N�\u0014e�{J2b�jB�l\\ъ\u0001}�A\t�~\u000b\u0017�G�\\�b=�x��\f*yAJ\u001bw���dM���7�;�L���Zt\u0017���B��@q�a���\u000fM�R�\u0000�*�%\u0014��\u0007\u001fd\u0018쾥�\\����M��6Y�vk�\u0011n>�q7p�r�^��<�a��.F�\u001e�EM�֑*�&C�V\n�7\n�@\u0019oR\u0006KL�Q���`�ʏƕ>����璭�RV�o��W�,�\u0007Gs\u000b\u0002B�ײk�1(~ҝq�_��\u0011�Q��\n,Ӹ}Y��S`�\n7����\u000e�\\?\b�ᜅ\u0000i\\\\�>\n:\u000e��[u!f\u0007��횶y$J���}\u0011�\u0017t�ʫ�K��Hq�)�=Z#�mZ�wC�K}#�Dq�\u0012.��Y�6�(�s\u0006��A~�\u0006�����\u001c���\u0007H$N\u000bg��E�:\u001a(醬�*�|G,)$���\u001e�1�r��э�鰝�?��¥�PZ\u0016���:�&�78m�*�\u001d�r�c��b�[\u0015?�4�h�bbU��Y�L��\u001b�\u001e�B�\u001btDv\u001b>p�@\u001d\bP|3B�G�\u0018ͲB65\u0012�C\u0005,\u0007���t\u0003'\u0004\u001d\u0010�ӿ\u0013�\u000b���PP\u0015��S\u0019+�-}\u0018��\u001a1Q�2H����V|�8�\u00118���:s�Kq�'c��bi/�0�$�2A\u0019x�}(��\t�J�\u0012r\u0000\u000f����\u0016.�FQ4\u001f}pz��4\u0004��N\u000f\u0010�������\u00137ݱ\u0002���t��͉�>%\u001a�^��(Cژ��a%��\u0017��w�\b�2,d�•\u0019��E��Ŧ\"?u@�d1��͋?o�Ñ��P]�g�S\u0015�#�u,\u0011���o\u0012�j�.�ȱ>�I\u0000׏��F��ǵ\u0001�h�\u000f\u0001/���`\u001e��Au�\u0006���[��\u0013s�{�D�5cO�Ќ\u0013�\u0016\r��\u0016���\u0004\u0016��G��\u001ck����\u001b�\u000f�\u000f�:E�o'�\u0005�A�������q���鱴v9V���h\u00165��:!.��䳷�Wđ��oՍ��\u001b�r�/�\u000b8>!�ȳ\u0019<�]����g�=W|J/�\u001bF9g�i�b!�~��r@n���K࿗I\\��@���7�\u0015(E?P�����\u0004\u0016)5;��\b�\u000e\u0016�9l��0�ő\u0014��.��#��}ר�9��_��9�_yV��\\k/�5m<�f��Dx,\u0011�|c3\f\u0003C�=,�=���^\u0010��DGW��ܾ~��\u001fl2\nճ8e\\�8�{���G(���\u0015@h��d|^p�,�7����h��o\u000e�. \u0015�\b\u0016:�ױ�uؔ\f!�f�3�8�a\tt�X�y��?�M`˦�]\u0007:�T�Un�.�:�F�f��\u0015-Wp+�W��\\\u000b��!'��E&5\nmR MW�����\u0001\rZ�T��&_\u0014T����3��\u0006�\t�H����;9J\u0010\u0000]��5.�\b\u0004���\u0018��\u001a���}������ӗ���\u0010K��·+wIJ�\"\u0007�xı��)�ݨ0\u0003\u0001V�^�妝�Q�/=�\u0015]�T� ��`\u001e���\u001e�-�W\u001c\u001f'i��\u0010�'����AQ�\u00070���)�_���\u001e��\u0011\u001f}\u000eA1\u0010�GX�J�L%�\u0016N�y̏{,\f����)��\u0005����]j�\u000f\u000bm�Й�.�l�\u001dLr��e��!\u0005�����k.T��!�'2\\y�\"s��/.x�� )�g2[�\u0011�ڪ����X������yF)�\tXX�O\u001fk�Q�*�\u0013�\u0003�8�0���^�\"^:\u0014�)�\u001d\u0002\u0004�\u000fg�R�A@rCd�'��,�\u001c3#��\tO^Ұf�\f\u0012ᴽa��h�d��j\u001d��6�\u0017f,7\u001ac.iOĜ�W�*8𔜏�P��\b�em`����F\u001a+��3�\u0017�5�A�k�UX> ��m?g�L;�e\u0004���j\u001c�Ś��A��wE(eΎn�L�f&Q@m6\\@@FI#9;\\E�a\u001b��-G�%7�\u0018�\u001f�P����Aa�\u0007D����q�\u0007Um��P�\u001d@�\u0013{\u0010P�\u0002�&�=/���b�^\u001c�\u001aX�Ose\u0000��ӹ�.�C���\u001c��a��|M|�v2�3=���ڎ���\u0018I���_:��\u0011\f\u0019w������B��ma�g�����\u000eHZ��)\u0006z\u0007f��D^�6f�\u0018����\u0005��\u0004�4\n&�v��,'�\u0001l\u000e�o���5w$���.=�|!�se3�gNT�\u001f\u0000v��k�@\u001a�\u001a|@\u0003�mo-���F)�u�\u0015�\u0011\u0004�\u0006/T��h\u001e�1�{�_9��d*�\u001f�u�����G�}�`ȏK\nx+�L�+`A�т�\u0016^�9�����F�|>���uY��#L�S�N�W�\u000b\u001f�OZe{�KB��vȽ���KZ\u0019\u0015G3�\bp;����נ�����\u001a`\u001a���+w+p���w��_\u00153\u0001��A��\u0007X����\u0004wx���\f\b��k�h7YC\u000bq`S�\u0004)B�Я�|�\\\u0007\u0019,�\u00039\u001bm�P�S��rt@�\u0005�SMr�p����Yjz\u0001Sr��;��e<�t��\u000e��YР�\u0000��e/}���\u0004�A��I\u000e�QC�x�\r\u0015�ִ��\u001cdèxN�Ҧs����T���x�\u001c3jQ@\\���\u0015\u000f'��s~��b�\"�\fvV�(}��;4`\u0003�\u0007\u0018��\u0017xc\n�T�F��:��w�5U���\u001b��'�\u0019f{�D���Uy�_2�8�RI�pt|q��\u0005Yj*_Ï��$�J\"��\u0014Ꮱ�iF7�\u0006-\u001f:���A�MK\u0013{��,�\u0014�et紃�\tN�P�ҧ�C+��M��rryK9\"�m���Ζ\u0004���(TD\u0019�V��h�\tp���\u0014\"\u001bt�RMɫ�o6d��`�\n��W�m�h��\rps���\u0010)\u0017�\u001c�\u0010A��#��(1�bb���\u0002M�\u0018�����D�&��A��\u0007l�����\u0013��[��h>�t�U+xx�\u001bۿ�h�*\b���8���\u0011���{o]�Idbh\rQ�Ώb\u000e$\bU�\u0018�r�43�\"�T\u0016��\u0002L�\u0007+e�)\u0018@��QÄ�u����{C_g��}z�#���\u001ca�pG9/�9�4�3�%|���Z�U`W3\u0015��]�\f\f�l&T�\t�2|�`��ˣ��U��3�v���V\u0016�/�ѰM�Ѐ��'��Q��M���R�\u001c%�\u001e]2#��\u001f��\u0012Cun1����\u0002�{Y�\u000f�sA�^�\b�\u000bA+\u0015\u0018T�[*~���V�6O��&��wW!��KB\r��r%�d�aӿ\\cx\\\u0015��\u001a\t�B�Q\u0003�}�;�A��\u0007���\u0002\u0018ii��\u0007�-\ni\u0012�\n\u0016�M2�C���Q5ˡr����\u0016\"����{��Q㿃\u000b�ݒ~E*pr�^v�\u001c��\"#\u0013\f\u001d�i@���W��E�AS��\f��Fܣ�\u0019�\u0015}0�?#qz?R�$\\פm�����q~'��\u000f�nj���i�Y���#\u0005m���}m`�]�M~:\u00102��&9t����G�\u001d}/�7~.������Q�\u000e9Lƈ*\f���Q���YL�S{g\u001e����\u0005��g��)����w�`\u0012\"8\"�L��ē��\u0015_�\u001b��\u000b9I�mN\u000bx\n{\u00139��\u0019�M��S\u000e/)tX�\f�g\u001c�c�� �\f'r^�\u0001M�U�v���7��h\u0005��g\u001a\u0006��,#��\u000e�l\"��Q���j����3�F���#�;Y���)�@�\u0006m�4a>g\u0004s��i����\u000fƆ�|����-�(�\u0010���O���\u000b\u0003�o�Y,cՅ��Z��I>�+��0��@∆�D�^�\u001e���*�}>\u001c��PB��\u0016��CeSIT��xd�iD�8�S�\u0006��Aw�\u0007������g\u0006W�\u001a��Yf�\u0016\u001cwύ�'#s<^m�HC�\u0018\u0014��\u0000��ʤ�&X�\u000b1vPE�\ti-��.2G]�I\\��m\u000e�\n��4\u0005=��\u0017��RіsBW;��\u0002X��QS��W�����\u000bj����q21����|�\u0016�p~g�j�\u001e\u001dn\u0014\fH'I�\u001e\u0001w҃�@�7����N�{{�z�j%¾\u0006�\u0011ݜ�/���a2:2j�i\bD\u0001LI��ת7=F��\u000e�F���̹�D\u000f\f��$�ߖa~�\u0001�n�`z\u0005\u0010Җ�B�\u001b�9\u0013��\u001aX�\u0014��\u0016��3\u0000h�R���;U֔�*-\t�Q�b^�l��t\u0007�(�2f��:�H�R~}�\u0010���lb\n���0Gj\u0016����Q?<\u0001邽�ȏ��B%\u000f�84�P\u0004\u0012=\fD\u00158�sS!T�`���#\u0010\f�TV�p\u0019W�\u0016\u0010\u0012Q�%*ݥ&(�˄��y�\u0004$e0�Ab�\u0007���\u0003��)�`sG\u0011\u0004�a\r\\�`�V~ei\u0012\u0006\u0016u�M��`���D\u0017�\u0010�e1l��n-�x~2�P,\n\u0018A��n��E#op�\rL�VI\n\u0016�l�f��q�+\u001a)\u001a+�)Q\f��e��˭��'��CO�Kfe���\u0004|�X\u0002l�\u001e�����E\u0003W��9\u0014��q\u000bY��:S\u001d�#q&n�\u0003$��},��S\u001c\u0010\u0001`d�}\u001b;�*[&�����\u00137\u00023Y�\b\u0004\u0013�bR�qw�:�rﱝ,�\u0019l�\ra\u0012*|\u0006҅�!A����U0�Oԇq�J\u0011\u00012�%�?6=����%\n\u0000�4�}\u0010���\u0001����C��]�\u001b$�y��Ŏ�Q�������o��kgv\u00051��3��P���J�^�K�\u001e|��4�O��v\rՒ-��/z��詇>u\u0013����B&-��\"��9��AK�\u0007Ѐ�\u0002\u0011�>\u0004���\u0000t�F\u001f��\u0016Z@�\u000e�N�-�}�ԵZ��6\u000fӣ�ȇӘ�\t�\"\u001er�*@�zT�*�M�u����$\u0010�\u0014r��Y\u001b\u0015��$�J�����1/�\t����>��a�KVu\u001040����+�$\u0015��)\u0002�\b�B�G[/����F���3s����Ha؋9�Q:� ���[�V�,�.�vtο�ǰh�I��ې��q��m��\"���\"��\u0001w�\u0017\u000b~U0�\u000b8%\u0018\\\u000f|�\"V�8]�\r�d�vO�\u0017b\u0004�\u0005�\u001a]\u000e���0�f��؂��ә#�`���\u0006��p\u0013��):2�u\u0005�g3\u0017¬]!V.U3F\u0019��v�&��\u001cѺ_�}�OH`�\u000bj\u0005r�ѹD�nx�+��\u0002�,����Â\u0014�AF�\u0007�����1�#�9\u000e����3*\u000e�\u000b�ޔGZ�I�V�\u0013�H�P���\u0002\u0006�V=\\���\u001b̴.Ã�\u0002\"UC������Y�oS\u0012�p����^\t\u0014q����.\u0003�\tAL�8��N�5�w��^�\u0016\u000b\t�\u000e\u0016&���\u0002\n?\u0012+��`r\u001c�J�$�wO�k\u0000c\u000fz�)��\"�z*U�kwd?�.�\u00155�N�\u001cH5�O\"Y�`w>\u001d�BV�2\u0005�X�Ȅ/i�-إ�=�@�utW��g�\u000f8s�%��VJdE����D�\u001f3*:\tqNx���]Z\u0011�\u0019�M�t\u000f\u000b90�8�9>��Cs����`\n�&��n\u0001Q���f�\u001c�T.��Ac�\b\f���)3�>�8ґ,o\u0014\u0013:S .\b^\f�R\"|��c����_\u0002P61Y��U\u0014я�i\u000e\u0014)Q��\u0016bf�\u0014q\fS�n�p��cˁKt�\t�W2ƒ�\u0010>����;䎏(�\\/�J��p\u0016��/�<\u001ai���\u001c�E��Q�v-�#�}.\"Na�����>r\u001c�\u0013�����\u001a��1�c��G��0�F��W�Q+�̒��r���Vo\"\u001e�:�4�\u00038hz�{X>�㻄voe��Á$�\u0007^,,A.�\u000f\u0011�j\u0006�\u0017�ԙ�hiI�1˺\u000bY2�]�\f���\\\b���~�\u0015iu\\��*a/�eT�����\fS�V$I�0\u0005�X\u0018�v���e�o��hQ�΀t2Zd����o��%D�B���rWkU\u0007�_���X�r��\u0014���_\n�q\u0015���,\u001d��\"$G(.bRQ\u0019���AM�\b ���\u0010\u0012=��^\u0005�%f|��D�~֤��]ʢ�!6Wc�`\u0012\u0001�\u0004���Vid\u001fI\r��cථ��&b�#n\u0010\u000bz��\u001a�'��r\"R���`b�\u001b��Ҷ\u0001/�D��Ə\u0018+\u0000�\u001a�&g\u0014n���ʂuN\t ����R햅�9j%ʶy�\u001e5��\"ye�rr\u001eX\u000b�\"̺H'�\u0000y�+vmc�\u001a�r�\u001c�:O���1ܫs!�De�\u0006�U�D V|��2j�*M�n&��\u0004V\fkOy@eY\u0007\u000eg*�F0AQBE���z��(l�-�bxx�P$5Zj�������\r�\u0007��\u0005�\r�#3-z���rp\u001bH�\u0018�hň���\u0015�ꁖ���\\�9W���ԥ\u001e00���;v ��B��#V���\u0012\u001b�\\S(����q4�\u0016�&�An�\b4����9�n��Γ�%O؀�~�[�VY\u000eZ�Ȃ\u001d�Ea\u0002tF8��k�!\u001a�|U\u0006\tA\u0003��\u0016UY��Rk�gH\u001b�\u0003��j\u000f\u001f��{�Ӿ�q��H�7̴Ñ]��B�\u0010E��vp�\t\u0007\f��\u0004��\\O|w�\u0017e?�)\u0003,��?��:y�`�[kqU\u0017I�\u0001b\\��4��40���3�,,�#ڍ�]Dt-ӽVz�)4�\u0004}����g�\u0013\u000f�(11�k�@��\u0012v5[.QD�d�\u0000�\u0011�9��[gMk��? �(��y��c;\u001f|��p'\u001cx�����)\u0015qH�\u00172��\u001c�\tm�9$����һ\u0004x#�vD@8\u0005�=�^i��ދ�:A�]�/Sӹ�Ɵ���BM\u0001��j�����P\u0015]�\u000fK5��\u0005G4��\u000e)�yY\u001b|85TT;o/\u0011S��!Z\n��d\u0007f�e;��&&�\u0005[:��Ak�\bH��Ƅv{4k\u0010z\u0019\u001a��\u0018�0X���E��o6�{�-�\u0016\u001f,�@?��`��`;�Z��\u0004D(�ޙj��R��/L�!�PD�B�<\u0005�Wa}q\b�6k��j�?\u001b�ݒ�(\u000f��\u001c�\u001e�F�� F\u0013��,#ĻJ~���xY\f���CLd\u0001 C\\��^��I8�z��\r]?��D\u001e�\u0005‘�'X�\u0012td?V ?.�]\u001f���\u0005c�\u001fl*�v�%;8��S�\u0004N�&\\�3\u0015�َ���\u0016�K�׆���\fk��2\u001c\u0016�]������F�Q>��\u0012�\u001fG��\u0001�#\u00079O\u000e��\u001c\u0010z�`\u0004I�\u0016\u0017�=\u0010\u001f\"��\u0001P+]6��K�W��W|\u0000��U�/of�_�t�\u000e\\P��\u0001\u001bI\u0011k��]�[�ɯK��4Pka���a��4+�,5�{��n��av\u0013��\u0014�mK\u001d٬Z�*�D\u001e\u00052��AO�\b\\���4�ʼ{dٶ��;\u0011�~\b��.��4T�\u0006��'6\u0006�\u0013d즻��M�s��N�j\u0005\u0014��KN��_�s\u001d\u0015l�\n����T\n5i߃\u0016�2p[��\r\u0004Z�1�_�i%�f�z��k�P�(xE3�+Pѩ�\u0005�!\u0014;�&�\u0011��r�������\u0014�\u001cIO|�S�sK��\\\u00059v(�b�j\\��Ɏǁn9ήA�u�OKx���$�ءӏb�tc+�*.��F�]��� ��K�ѯ^8�\\�\u001fy�54�ϒ3��\u0014]��_:�!�$���>U��b�,�e\u0001��=ba�\u001bs�S�\u0013\u0006�1�\r\u0002�{�`\u001b�\"�\u001f�ߞ\u0001��H�4�F�\u0016vG�1!�W�Ri��t\r]\u0015�\r\\�i���B?ܖB�2e�%�u\u001b����AJ�\bp���b\u0015؎�_����\u0017G�\u0019[\u0005��‹\u000eO��\u0006*Z�2U\u001f:�����IN\u0000x\u0006��O�!Sc+ؑ�\u001e\u001a|s�\u0014\u0018�\"V�\u0006�%\u0017�o'��_�4&\rվ����\u0006�M�E\u0011�=R)�`T�\u0000C��Te��\u001b�{p5���j�S�|w$�w]�\u000f��x)b�\u0007._K�:]��6��:�w\u0014�}.�Q/����\u0000��ѣ9FM=K�N�£����h \u0006���!\u0014��=�ǝ�p(\u001a�&w�]����J�]�\u0013�A�)�\u000fҗ&S�&�i��.�ʞ�\u0004k\u001f�k���\u0000�\u001f�:q\u0001�;\fy��G\f��}9\u0011T\t~\u000f>x,x�O�\u0019��\u0014�ð\u0018\u0005R&��GNkf\u0000$Y��V\u00046ctP�v�_�ܷA��2dzE\u0014\"0ߋm.\"�AT�\b����mwn@�n:���}��Κ�R[�L)�jغ�\u0012��N�%\u001fO��H�ae�^��e��'\u0014�L������_!\u0004��P|\u0000��QKy�L����A�,����&�KV�>hb\u0018<���*%�-s��\u0013��|_QA�\u001c\u000e�\u0014�_���b/�\f������\u0011\u001c%��F�M�z�\u0012%���#\u0012\nƩ��ƄZ�I�\fREw�\u0014�\u0003���]���4�F�\u0010\u0015���'��\u001e��F�\u0005�o��L\u0006����H�k{�e�\u001a�7a�����)��\u000fF\u001aԝ&�;%��n�\u0010�sl�]T�F�Xz��aGE�\n\u0007(\u0003|S�~\b)G���|��F�\u0000Q���\u000b.\u0002��-t \u001b�h�}(�]\u000b|\u000e죰��a\no�q�����m��(����\u0000\f3p$�J#�Aa�\b����_�&\"��r�n�;�����\u0017�\u0002�m���e�R���\t���PF�;\u000b�i?c-�˶�]PqZ\u000es��k�UF�� ��&\u001e�Wb\u0010⥤ߊ�$�笁%���\bc\t���\u0005�i\u000e��Վ�x?)qz3\u0007\u0002b�X�\u0012m��\u001dkcˆ`q\u00041�\u00052��/�}��\u0012��x(���r\u0016\u0015�d�Vpd1�{�bZ�/:�t:�\t�_�x+\u0013R.\u0012�\u0013%\u000e�ߒ�\u000e̠\u0000�\u0013\u0000�1��cg�9-\fw\t\u0007�\\���`0���8�?\u0012K���~i�\u001cdfQ�T\u0012� OR\u000f�\u00150�NG�D\u0014��#�͌\u0018�@t|�|&ǥ��\u001c�2�h\u0007��g��;���)z)�7����o-���#G�bc��4X/b\u000e�E�AB�\u0003�e��\u001c�\n�uЁ\u000fu��KWT�)Q\u0016�J��,S��z\u0007o�4'�\u0001��\u0001�ِ�B�\u001bnَ����_%\u0015Qz���K�����}��\u0015�JA�m`;��\b����T����݇�\u001d�!�f\u001as\u000b�<�*�4^C�]x��*P�<�����\u001fF#Ӛ��L����q�$�W��\b@�!�c)&\\� ��t5,X�]�jue���޴:33\u0005ˊ�\tH�\\qL\t��g˛7�'�A�\b��.�\u000f�<����\u0019�\u001cH^\u001e�.\u001d\u0018l\u0017>\u0000j\u0012`\"�\u0002\u0006\u001b\u0000t֫4C� �΁)�\rnUvY�\u0010@.��bX�����\u0017�\u0012]�ܦ5\rn�u�\bfE~C�k�Px!������ί�j��\u001d?$\u001a��jG���\u0013~mt\f�O|��v܁\n�\u0016Bz�\u0000s�\u0007&mo\n\u0017���owY\u000e�걀�;�G�0�\u0002�v��ޡ�\n�ߚC�\u0015�\u001bWA\u001b�V,r\u000b�\u0012�Z�1�^\u0007\u000e������)\u001b\u0018��{û>�HM�\r�ȴBc2�\u000f\b�p��У��ٶ\u001e�������^���(���$��a��Z\u0005�����1��U��⍼hګ\u001f�W�\u001fw�\u0007!�\u000e\u001b�c\u000e�T��!e\u0005\u000e�\u0011\u0013�&:�sI$u�ͦ&n8�S���9a�Y��\u0005k�!��k\u0000�|\u0013�ZQ5m\"%˓z#�\u0014\u001f��-��oR�U�]�\u000b�M�4!4s�\u0011���X\u000e\u0001?�s��@?4��c&״�\u001c�s\"�gsə.��5X\u0012m8\u001a�R(�\u000bʁ�m���\u0016^*�d\u000b�}��P�yg⟵q�W����\u0001V��fp}��\u0018�\r�\r\u000b�\u0000��e��@\u0001\r<����I��\\5x���մ\u0000��I�Ex`�lA���]�7\u0018�h�\u0004MB\u001f1�s�\u000e&���\u0014�D�\"�^?���P\u0000\u001fk&�\u0006\u000e��)<\nc��:H�u�m(��\u000f�\u0002v\u0013�J^�h�݁�?Q�\u0003�U���ʕ|���Z�>��ͮ\u000b����.�x�-�x�R���\u0013�\nyJ^:\"z=�\u0004�����~�yB\u0013�P�\u0002*g��\u001c�&nUǟx*j��\u000e�\u001cd�JY�ܙ�Hh�\u0016S�$D�F��W~\u001d1�\\\u0006��V��Aa�\t\u0010����#�E��Ij�xq���\u0016^\u0001FҐZ��-v�Y�\u0003�_\u001f�պ'�m�2�o\bƍ7v�'if�����<���B�$>a�=��,\u0000nkG\u0012��#��5\\�\r�7\u000b����>���RW$�)�~;7^��\u0002�NP,���>sǒ�\u0015a��Bg�\u0018�%��:9�\u001a\u001b\u0007�o���\u0019\u000b��:�B��!��Vv\n������A&� �\u000e8Zz���%�?\u0019�b:�pXIFL�\u0000e�P�A��%'b�\u0011���y��\u001d�\t\u00031�ss�\u0007�u�����\u000b�I3j���m4���q��\u001b�����o�2��S���(�hY8ftȍ\b�w�Y���剟�Z���L� 9\u0000��\u0001\u0014�A\u000bq�E\u001btЂ�����Ae�\t$����0���M^X��$�E�Z��\u001d�3\u001f�/�\u0001�\\���J�`O����+0,�\f�/\u001eڣ`�C#�4)\"��\u0016�$Ä����/�gS�X��͆.6\u0007�Ǥ�\n���w�{�\u0001O2v\nL�JJ�5��z�b�#\u000f��k��\u0010�wk\u0003���`iSl��.����ı\u0013ڳ��\u0013�ʄ�Ԩ\u001e�\f\u001a��{S��W���9\u0019�{��\u0002���7\u0011����l6\u0015O��m��\u0013�\"ď�j8�Ѹ�J|�\u001dFJB^�+�^���j�\n�Vl\u001aJB��و<#`��\\ԣh\b�)�\u0014�*O]�D�AY �\u0006m\u001b\u001eRnqQ�u�����\u0014\u0014��:�xo�:U4�v\\.��.��_X\u000f������\u001d��^\u0019F�.\u0001\u000e\\t�y\u0019�R\t\u0000��\b�o]A���S-$�?܁O&A�\u001c��\u00009\u0012��AU�\t8���c\u0010'��[��e4\u0000'��\u000fp�d�E��J%�!$\u0005\u0001\u0018.UЅ�\r-�`%�1\u0019|��ϾF�\u0011\f�S�8��\u0002�Ԍ�g����hj\u0006\u0018��\u0012w��%tCE-\u0002�8\nZ�7�۾u��L�IK\r\u001d\u0006ι,,\b�\u000b�eC<����zDqzjwQ�TqYԧe��ӖP\u0003K\f��\u000b+X\u0018�+f��\u000f\u0011����K\"0�������U\r�Fg�\u0001y}�z-\n+��j��������\u0010@�i|:\t����W��B�6�\u00163p�\u001eH�\u0014�@�\u0011N�\u0002t��\u0006�����i\\~'��\u0006�_�\u0014Hqv�T�]\b\nQq.�*�S\u001a1�,\r�Q�R1�Wr�\u0000�\\y`>i)\u001dʃ�`��r�\u001aW\t\u0010AdʑwP�<��t�1\u0011�\u0001?�l�����uj������A^�\tL���h���-k���%�?�ag�\\]��B\u0012���&\u0004M\u0019}J.�=�zo�\u0017zs�0���][�\u0012��;\u0004��瀨�bA�?_]p\u0012�d$=\u000b^����w.�d�n�'p�,\u001al$‡\u0010��\u0018�cF�U����IC�7b�\r1�A\u000b6���X5��i7���#~\u001efb]O�i\r���\f�Z\u0010\u001aK�%�g������x���\u0002|tJ\u0003Q\u001c�Ձvl\u000b����ByK�`\u0011S���(���N.EU�\u0004.\r'�E��혾�/�\u001d*\u0000\u0017��a\f�9$�?ԩ�\u0016!�x\u0011��DS\\��n+a��ܑ�c��h�ku�Кq�d�\u0001^�\u0000u��A>�\t`���f�r��X�\u0003[�m\u0001��C3�Lk����Q�A=GD�\u001a�b�\u0003\u0006%���b��lQT.��bBD��\u0004Ϗ��'�&8$7ۤި�\f`�t\u001c7\u000f�\u0001\fį��Kj�\n3�D���[�U\\P\u001eê����\u0002��\u0017g\\��͹3��ό�/���\u0014\rǀI;�\u00059�B�V1��^�Fh��]!�+�:�0ZD5\b�\u0004nv\n�\u0000�\u0000j@o�B��,6j\u00162$;��\u001e���b�#�\b��-Z�W\u0019��.+�8y�fe)\u0018��\u001c\u0014�}�e��\u0002�[�\u001e/��_l�-b���?9#��YPI/\t@)��\u001e�,��Jz7���8Z\\��a�'\b,�����7��9 }J/i��\u001d�@]��5z�t|�\u0004�9\u0001��A;�\tt���p���,_��ܘV���.ud2��F�OX8͘j�\u0004�Y��;�\u0012�z�\u0016�ʊ�\"�Ή�B�+b^�?��\u0006�<��%�?@��d\u000b�\n�Vw[p�@�g�)e~�+\r/�\u001c%�2���z�D����<.p�/��f�<\u0002F��k�E�y��ƻ`H�I[���TD�\u0006L�u���\u0015�ņ\u000f�\u0010���Q!��\u0002|��1\u001c�����ʖ�����s�{\u001b��)��oO�BҙX�\u00132\u0000�h!��AJ�\t����)\u001f�^�����\u0001\u0003��D��=�����?�.gV\n*\u0017Zc�D\u0018�w�f���\u001f\u0018\u0001\f\u0014�\u001b�\u0013p��,��m���VK�\u001d\t��������@t\n�0\u0016\u0001Q.'\u0018�ˠt\u0013w�^�(*\u0002/�\u0014!TM���B�k�n��C4]��@����\nw�a�l�|���<�m'a� �[\u0007y\u0000H3��k\u0012�\u001c��*�H\u001ax��p�r�&���;�q\u0007��nS՟pK�����wjVp�m\f��K�'�А\r\u0010�B��$���\u001aUjE���n���\u0006z�]��i;�\t�Xi�8,���AK�\t���� b\u0001���{����{�L\u0010��k~��@�5\u001c�7\u0013E*�\u0006GY]e�Bu;ʃ2�\u000f\u0018�\u0002\u0003��}k45\u0017�'z�\u000e��+�\bg��z\u001eY��fd��\n6:�n����f�\u001c�L���+X�\b�����W\u001cֶ!΍�Z�b��0����6�0\u0004��m\u000f�H�\u0012�묁Hƶ�U\u0016�\\�$��M�]�\rT�cټ�ʝ^_��XŠ\b�CI,s\u0014Æ'r��\r$�=V=�\u0012\u0015c��\u0013xg�z�ꦼL�i�.9�E\u000f�\u001f������|�\u0000�1�\"�UFHTR\u0011��\u0001�T�\r�|�$�d<}�ƜSO��\u0004{�\u001a����\u0012:\\I*��\u000e\b\u0004ͳ�=o4A2-\u0010\u0018���Zᛐ\u001a�EL�d�\u0012rK���!EBlJ�o_&a����A:�\t���1���}�\f\n��ac�F[Xq��m��\u0017u�l듚�\u0013C�2˞�8�\tk$5\r��\bՅ�Y�\u0016x]���+�\r*���]��n^ńt�2��ΜoI�z\u0011�\u000b\u0019/���rh�q���\f�'�D�^Z�{��w`0���˖$'�;�Ɂ6?�th��6\u000b�T�N��0�S�-�˶�\n�\f�\u0017���u�\u0006\f/�f�gEƓ� !��gn\u00190�~�'�Q��&��N��\u0001�\u0003�|�\u001dr��\u0005b��j�3h�Nd�:'�$5ZM�tM�5�F��C6�y��g�������/OB��1�W\u0016\u000ed��\r��k���\f�88Ғ6c&\u0003*�����7�\u0011/���&�J�\u001a�\u0006�Q\u0001�`\\����A/�\tĀ�\u0018\u001d\u0019����\u0002I������$�\u001eO���XC|3i�$~ ����������&�Td��k(?^�Xw{K�w7ԴO��)�g�K�)��\u000ez�\u001e�OVH����\u0004!\u0013��\u0000D\u0019k\r؁\u0016�1\bzo\u0016\u0010�{�\u0014�H/\u0002�X��C)5`�\u0000\b�S���E_�F���TC�:��4��~no��_IĎ\u0016\f�B�\u0011\u0012���%Z��I���_X��P%\u0014�`i׼�)o;K\u001dC�v�\b��\u001eIO�\fP\b\tR\u0016\u0005����Rޙ(7\u0004���/@�?\u001dBy\\�\u0011���̤��\u0011S\u0004匌}\u001a\u0000�WUaѥ�4�t'Qt!/\u001d��-��k�&�w�WDRgim��\u001b�\u0011�\u001a��4�A3�\t؀�&��S\u0014{\u0015��[%�#r���\u0018�1Z,�\u0019���_�\u000b�\\-0Ҏ�б?3���+���=Tp6\u001f��e\u0019oEU;&<�\u0014\u0002\u0005\u0016��\u000e0=-�g���4�N=,�-�7��\u0002S̹R�Y\u0012l�.��\u0015�]nf\ru\u0010�����C-\u0007<$�&�����|]P�ވ%�\u0019$\u0015�N����\u0010\u0000���%���\n�\"�B��v�5�͈\u0003��\u0013S��X�:�l\u000b���f�\u0007�}��O5���A>\u0006�b%�\u0010�gݰ��ۼ��$�KF&,�cJ��W�ЏNa>6\u000fK����3���iR�\u0019�1v\r��ef�\u0003�>�g\u0003n\u001b�ɕ֪\u0010�|�#�\b\u0012E�43f4\u0003��$���g$F:V���h�A1�\t��.Y��O\u0003b:n����\u0004>8��Z��^�[*�ԝ�g�J�o�O�\f�\\����y?\u0005�\r�\u001a�c�w�]���d�7[�����\\m�L\u001a�\u001f�� +BX_�ڞ���CʴQ׭z��*0\u0013ӂ�\u0013�l\r�\u000e\u0010�6o>�戨΃\f��G5%.��~#\u000b��K�Ԯ����l\"�$�^]j2��Q)�=\u0004��t�6��ZN?^H\u0004����\u0006\u0002�:��5�{}a�6:{u�\u001a�we�����\u001c*�D����8�\u001c��8��Z.PX������\u000f:��d]�闋\u0003�V:ʉ��]���֞���;�\u001c���\u0000�\u0012���4\u0010�L���Wv�kkv�j�����!\b��ӋN�A'�\n\u0000��\bk\u0001�\u0014?����U\n}4\u0014&\r�&P5Z��i\u0003Hxm\u0002�G�[FؽK=��^*;��6Fٺ�af{M-� �\t̚�&\\dS��>ݦ�F�/�l[?v�\u001b�R\u0006\u0014��J��W�����%�\u0002���?\t\u001d[�C�Nh�{.�CF+�8�\u0019�\u001b�\u0002��\u0019�����QY��\u001d1��Z�h��r�������S������?�\u0013b����-!�u�\u0011�\u0015\u001f�S�b�\u001b&���E\n��T~�\u001e-\u000bJ\u0004r�\u0005�W�\u0015W̭\u001b)C��P��O}&��\u0011�\u0005�\u0000�j\u0010�+2��b\u0006IT6$�߮\u0007\u00156z��A�D1h:&S�Oj�\u0007\t&R���Ք\u000e��w��Y��A*�\n\u0014��\b��\u001c���\u0007\\\u001e��fά�\\Q\f6���5�͂\u001a�s�O�r,\u0011?��<�\u000f����\u0019�^\u0016�Ve�\u001a`�\\�_o2\u00044��0N�W�N>\u001c�I�l�P\u0005�)�x{8f�Ŕ�?x��a\u001c��ҽ�+\u000bv\\��d�,�~\u001d\u0015#u��/\u000bU̗���pp�:��\n�r�_I,�\u001a?�N�n������0�·`�\u0000�^���\u000f�V��^(��\u0012z�k��ۯ\u0011Ъ�$�hK��\u001a�\\\u0019\u001b�\u0018\u0018Y�-�DF�k�wPTOen����Mʹ�\u001b\u0014F�o�\f�����\"{�}:�ě*��7n��#�����\u0010�t�#�6�߼��\u0001�c<�D\u0011\u0007f���\u0013�L�\u0004'=��A)�\n(��\u0002&}�����h�@T\u001f��\u0016�p�;4הR\bZ�0��M(\u001cʱ\f��1>T\f\u0012�$))�\\�\u001an>GT\u001baUfO�F�\u0001ANi��\u000f\u00042���\u00152f;#p�>�%k��Tz^\u000eɞ\u0014\u001fp��7�\u000b/�\u00032�\n\u001cZ�bQ��\u0014x��\u000e\u000b�6\u001aV�V�\"&�w��\u0000e��PgF\u000b�0鑧*��*�XV�bL�\u0014^^E4$��҄�\u001b^���\u000b�ϲ�\u0010��ΎG��Z �/��<�C?\u0005�N�ه�d`�\u001an��N%\u001d�S���T�m���\u0017��/\u001a��%-x\u0004\u0006`�h�ۅբL�O'y\u0004\u001639hh�>b�U���)}����\u0015��o��2�\u0019\u0003�z�xt����#*��o\u0000�,����A�����6��\u000e��:�\r\u000e_�\n7��\u0004�H��oI$-���Vޡ��}�z*�\u0002\u0011��)e����}N\u001f���\u0001�5��\u0006��.$�d�{z\u001b��K$z�T#\u0003*��)��\u000b�m�%�ەGkd�G�E��ui͙O\u001e��F�\u0010�Y\u00042�\u0005�,�-rr%����\u000b�\u0002�\u001b���\u001fcҔ\u0012��D�,\u001a\u0011~㧭�'Z�t5�\u00014G�6�b\u0015��M@��L��F�\n�sO�燹�쪶�M�T`\"\u001f���j�~���~�+[8�\\�ʣA%�\nP��V��k��6kd�]D%�y��@l��}oE�&��u�k^��\u0012����\u0012�:��m~����ttM-\"/ik���6D�Ѱ\u0004,2ķ��?\bJ1���w��Ք���7��x͸�i\u000eW�����\u001aa�\u0011������|=ۢ\"|\u0014\u001e$�\u0007��\u001c�\u0017C�Ƭu��δ�CO�ZiJ�E�a�H�����\b�\u0013r�jZ#.�Nb\r����0ƛ�^�\u0006�f\u0013hW\u0010����\u0003%z\u0017>�%���X����Pmf'�%+��\u000f=��dp���(F���\u0004�\t�\u001a�\u001f!�*7\u001aQa��\rs��ᾶP\u0014P�v�\rp~>B~��e� g1\fl\u0007-����\"L\".+�\u0011=p�A(�\nd���k�y����\"@\u0013��5\u0004\u0010���hi2qFX�}F�b��Ia��s�z�\\��\u0001cڶ˸2\u0000\u0016D�\"��/�7�w�&\u0011�lo�\u0013�^\b\b�r\u0006Mbe0h;6\u0016ۮ�}'�$V_���P�\u0007���JF���u*�5\u0010htR���d\u000b\u000e����Y�t�Y�N\u0001���;�A�IX���AS'�5����o?\u0002&\u001dT�q\u0019\u0006ǝ2�I��]&�s\u00001���*��3��˶0�\u0014��\u001c�8:��a��_��q�\u001aQ���T\u0005�\u001e\u00044;\n�B=\u0016o�\u0010�!?\u0017�W\u0011i�\u0000\u001a3����b#z����ѽ��]d�\u000e��\u0018ik�8�@�W�p%]�\u0012���\tK1U��?.R-�'�O���\f����j�`�s82\u0019F���\u0004]q�s2�\fm�bM�\u0012Wr\u0007w�xg\bl��\u001c�\u001d}��z��?��\u0000Om-o\u0002��\u001e,+�\u001ag=��-�f�\u001a\u0007�I��E�=�\u0006f#рT\u001cV�{&��\b�n!\td�\f��sq���}n��8��u\u001d:�/C%\u0012��/&z\t=G�'�N\u0014N��\u001bQ ϤF��8�\u0014Q+��� ��(\n2���\u001f ��F��2YE�G\u0016�\u00173�DUT㵻Yd�EY��k0�?�Ai�\n���F\u000b�Z���\u001a;G\u001e\u0019+ua��\\R\u0007�_y�V�\u0010��\u000b*}\u0014g��\r-����+U:V\u000bz��\u001ba��Ӯ�S���ٟ�\u0017qv S���k88��M�\u0004N ���B\u0004/�:D�:�\fj����X_�;Mn)��\u000b��-6�\u0001��\u000e��vWw�sW�r�V��\u0018�?n\u0012�IV\u0011d�\u0015�\u0000p4�e\b\u0017\tJ~\u0012\u0017��\u0006~3\u0000:����\u001b�5a\f�?�\u0012\u0005Գ����\"��=P#\u0013%UiF��\u0005A\r�YD}t$����w>� ���Y<�\u001cowSS��\u0001��.�e���]����/\u0007\u0003��]��\u001bHx\u0007���Є\"\u0019���!.�\u0004�TI�\n*�=~�Y��Ӟ�o1��7x/�\\{�\u001a��Η�?#)/\"b�([Џ��@\u0019t�\u00017-�\u0014�1N'hn����(6\u000f]�-�\u0012���]��E��A|�\n���1���8�\u001f�\u0015V:�;m�\u0011\f��?��\u001bG\u001b\f ��~ݱ��f�h���,\u000f�5P��F����᠘�\u0002�j����B��p!g�?V)��tp6���� J\\6��Y�v8�C�\u0014�QQ\b�>�W\u001c�>p\b.��m��0j�\u001dYё}\u0017��)�3J�����?[�sB��`\u0015J\u0017]_�$_������u��Wn�|\u0001�:>�t���W���l#=\u001d]�Fu��� �0�\u0016�`\u0003w�1��!�]a:��ޗ�Ώ\u000b�i���8E�+��h\u0004P��{\u000f���m?\b��\u001a����l'�6n�:\u0000�薐��bE# ����o��\r�~�}��V���}��\u0005�BΣ.��9��#�7rZ�\u001d�7\u001d�X��zN �k-�]�J�����O�fd�v�l��\u0019\u0003���t��\u0001�尻~*���\u001aED\u000b\\��9y �+�\u0018_迣Ab�\n���\f�BE}$�p��\u0001�#�L�\u0003��6�G�U>0�-��\u001a�~F�\u0001��-\nz�`d�k:�f\u0007�\u0016֩�\u0005[����ɉ��~>/�� �\u0014��وŵy�ҍ̐����]\u0017/ز���\u00108~�X�1\u0012��\u001a 7˳�\u0017\u0010�e�F3����<\u00061�Y�%q6\\���\\�\r'�\u0006\u0000a\u000fF�N\u0002SV\u0012����j]L��!\u0010j�5�\u001ah���*9���v�/�{�\u001eVm�B\u001b�\u001a����i�=\n���%{0��z9\u001e\nٌ\n\fE\u0010p\u001b!��.&�ɘl/�a��MA57�e�㨙�E2�E\u0017�\u000e�\"F�B�����&I7�OS�OAQ����:گ\"�\u0017\u0011\u001f\u001a�\b�\u0011*�\u0015J\u001a\u0000R�H}����\"a\u001bQ����jv\u0006\u0018�ʺ�H\u001c\u0014�ň�d(\u000f�u��+T���lZL��ϣA?�\nȀ�&��sk\u001e�n ���d\r\u0018rgv�s\t��\u0012UZ���Y(ZF|~��R.��ƮMm��{��\fè^�����L��+��\u0012)�t��^S?�\u00195�*��`�ih�a����7�(\u001b�\u0012?�^!f���T\u0005]�I>���p�\u0019��\u001b\u0003���q%��k��\u0013~%\t���D�9�$���\u001e��Pܸ�\bK'�\u0011�I�~�~�\u000f^�xQ�����O\n�,�SZЯR�&������}\u001d��\tH��W\u0000�rIo�жl\u0013Cr�!�`IZn4�N_�$\\�!غb�\u001d�\u0005Z�,�2:N0Գ\u0006����;2��J��<�\u0011f=u\\\u001d\u001b\f.�\u0014����PG�\n\u0015!+y�⋷>go�H�\u001b��#B�*t��A4�\n܀�\b��C�u\u0007��^GH4ň��M\u0000y\u0003[�4�s%�Q\u000f�r��\n�]\u0012�~�p��\u0011�̬\t���\u001a\u001aDv�\u0003)�x7�AӒ�⶙�/g�h\r��\u0019Q9n��\bC��]\u0006��@��k�ug\u0000\u0014ڏ�\u000e8�\u0013��֜үEب\u000e߹Ԛ�b>�xd\u0003ӌA\u00184����G7\u0010���\u0010�`�g\u0017a��y���/\r`\u0002|\u0016\u0004����ׁ\\.t9G}.��\u000e�G?=���\u001d��[\u001d5�\u0016��\u0003��~~t�$��R�A\u0015}�\u0013�\u0011�\u0014\u0007T:Yo�7��\b��Zѵ�&B��]�f��X\u0011�͠q�.�\\E���E�\u000e�:��\u0012\u0012ʖ� V\u000b�Z\u0013��!\u001d\u0015J#��q�gU��8�֣A0�\n���1\u0002�&�����6�Z+��D��RAD�f\f�\u0019t��{�W]A\u001f���B5hՓ\u0013�7Y#�_t��.�\u0018\f���ќ,\u000b��\u0012\u0016\b��+\r�)@j\u0011��?]9��I{\u0001�KDu^�禥��c*����)��L�\u000f�Bx6\u0000�\u0012\u0014��\t\u000b��*\n%_d\u001b�������?v�W�l�;�a/`7�j��H��#{7���\u0002-�W�T4�΀�aF[�M��\u0000\f�\u0007`V��B\u0004f��M��8�\u0000S!\u0001\u0004)k���Th�/����>{\u0017'�zÿ�l��\u001bձ�E��4Qa�\u0014�8��\u0005q����e�9*[�\u0019�\u001elxyuY��%�~�L6q`P9&I\u0001�\u000bCM�����֘(�A.�\u000b\u0004��\u0002(dOE�4Q� ��Q�\u0000�Xc��ɤ�����m{4�l�aO�k��m!�\u0013%�Y#�*p%��!W�\u000b�\u000b\u000b���\u001d\u001d��\u0007�={�\u001dP���� \u000f�s\u0018�ls2F�e�ג��^>�����p�L�q\u001c�-\n\u0000�k���?����;��\u0005�\u0004\u0017*����\u0011����9u|���v\u001b�\u000e�d��\u0017֝����\u0006k�\u0006�m�^2o�9\u00177{[\u0010\u001e����L��\u0019(���N\u000f���N E�*�N��g=CD�WKJ%�j��Ib�|B(�A*�\u000b,������\u0019���KGW��\u0016�\u0018�5���\u0000?@�\b۾��B�,\u0005�o��/�����b��b\u000b~#��R;�Ej\u000bN�ɰg\u0013��\u0014c!�(�ԙη}�Mp6��R(#hV��\f\u001aR�e�\u0007��jt�X\u0002��c��ƅ����Sj:0q\u0006Q\u0001\u001eEk.̛@���\u0016GŬ�W���\u001f\u0016fd�\u0019w ����\u0006 Gz��n�S���K�\u0002\u0004l��#^�\u001c\f\u000fAj\u0014l�\r�U<$���g\rv۴K������\u0014� �F�*��F�A��\u000bh��)\u000b>��{\bC>�\u0003\b��h�\tPg[��\t�מm\u0000X�,\f�Ǔ�\u0007a\u0000e_�U�n\\���ײ•���Ы⇮I��E�\u0011�m+��a,\\̘r�\u0017=�N\u001c��<�\u0006u���<2�b��H0X�u��J�s37,�b�ի�݃�0�M�80B/��;H�\u0017@=D��Gީ�@��;L���\u0006�]N\u0007�\u0010�og�\"��f%��S���\u0017��\u00123�*Yo\"3�����bs��Mc��HɈ����Hq�Q�\u0002\u000b\u000e�\u0000`��S_�\u0013� \u0012��C�\u0002,���K�\u0014iH7n\u0016�$�;q\u001c�\\+���m\u0016����Xk�4JiD\u000f�sDI��\u0000I}�\u0003�.�2&\u000f�$�W��e�k!��ʽ�׺�\u0006�\u0014j�_a�ͪ�\u0014q4\u0017�]�R�Y�i22\u0007\u0006�f�j����.\u000f\u000b9J����ٍ�=�3U�AU\u0003��P�\u0010?�H��~x_�8\u0018��\u001dF��R�\u0004���@��A��\u000b���}a\u001fw��0*Cr9���<�\u00137ݜ\u000f/ZD���\b\u0017{�v��Ō_\\_,��\r\u001c\u001c஍u\u001fXn�Y�\r�����1a�t�2�8�&\u0000��)\u001f3��|1�w\u0012�?ya�m\u001d{pT\u0019\u0001H��h�.���_ul\u000e�\u001c�Q�ͽ�����v)�J�,�a��Cn=����ŻZ�r͙�E�h��ȹW�q\u0005�A��\u000b�����a�����%�1o��@\u0015ӷ߈��FW��\f�J�2�~�ʷ�%�\u0015��6Oq(XOG��Y �4B�I��2�lC���\u000b��b�dIi�}Ȧ�5�҅��l�|0����l�`s\b�`H\u0001d\fH\u0016\u001b\u000f`\u000f}��|���U�.>�\u001b\u0019��W�����.Õ�N\u001e�ypuH)dH��\u0017���\u0012b�\r6\u0011ݤ�XGWI��6��\u0001]\u0011ߩ40���/k$�wyJ�d�t�^��\u0004��N/\r�id�eO���x�@\u0007K�\u0000^�\u001dT7��\u0018��C\u0011�\u0018nބ�Z�V��\u0000U?�[��;�w\u0004ZS���9�/�Ba\n\u00148t���Ѭ��\u0002�b\u0002K';��*\u001aoTh��\u001cM�)����[�,j-AK�I�f:���7�����I��8\u0018��k2�e�\n���YG����b�0���ݦ��-ڼ;��#\u0006&�,����vR\u0006�\u001c�\u001f��>\u0014E�A�\u000b���z\u000fa\u0014mD�\u0012�\u0005L�.օ@/�Q\u0017ٲ���~��wA�\u0002�Ǎ��\u0012��[և�n��f�\u0003���wI�\u0014�$�ʩ���:�4�bvODF\u001e7��������.��0@\u0002�5����P�{Ng3�2��?zL��qS\u0010��N�=���J�.\u0012M��lq?k��g�Gs�C�p3)Q{d\u0012\u001dl��&�\f�6���Q\u0001�\u0019M��c���B�Ю���(��gH�+�G|�I|\u0007~J��{=�y�։\u0006�y�\t�GU�X=�+8�Uw\u0012�\u001b�\u0013���G\u0007K\u0014q�\u0017��U^\r$�f[I�`���@�a�\u0003ڡ\u0012\u001b�\u0018�o�>>�R\u0018��\u000f\u000e���i�:$\u0018�K�g�:��\"�|\nO\u0001LY`�\u001e�h�'�<�V�8/\u001e\u0000[����\u0012F�\u001ds��6�U�D\u0017����\u0003&\u0019\u0015���&��T�*\u0010oΦw���jƶ/\u0004E�߸��0F�߂�Jl+VP\u0019�7�XX�\u0007$�~vG�\u0011���b�&���k���vk��%0Y#�o��,�~�_��������\u001a?a�>~]�Ԙ\u000bƈp�\u0015F��\t\u001f;�k-P����Z�HumC���S\u0000ue\u0003?K�A��\u000b̀����!\n�Zr�ڲ1\u0001�h�\u0004!�*�~��\u0001,��\u0001ͨ\u0006�Bç�f��o\r�{�\u0014�Z��_iT���a�7�tw�x���h~��\u0004\u001d��z��ؘ\u0014\u001c��\u000b�g�=V�Ġ1���\\�[�R!,�?�MC������D�\u0010%��7��;@-���z0y\u001aN\u0003ȕ#`�\u000fD\u0019?Yw\b\u0002a���\u0006lɣιG}\u001daTGw�)�G��\u0003�@f\u0016�$\u0003\u000b��^��u7z<\u0004�\u001e�:�VA&0���\u0011&@����ֽ����V=c\u0018�\u0013\u0002B�'���g�a���&���~w\b��� H�U�\u0012 sh��\\�uW�%�R\u0011J�\u001b��W\u0018�\u001a�sp�q�,����~*\u001f-�ꪰ������\u0011��(d��Q��^���\u0015�\u000e�\u000b�A1@t<\u0015��\u000e\u0019\u0017��C\u0018A�,��t�\u00144rlƑ\u0017џQ�#\u0000��\nˑ�\u0005t��꓆�\u0005�G�AE�\u000b���\u0000P�X��7�+�;\u0007�.d\u000f����\u0007\u0007�\r�0�K)�\u0002Jx5�G�\u0010q=��C�ʼn\u0012j��-��b?S$Ic-��ɘJ�u;�5O\u0015\u0013܅\u0004����N��R!DEP\u001b��b�\u0018I�'�1����A)^��Xlj\u0010�SF4�H�:�Խ\u000b�\b+?Or�_(QIŴ�����V-\u0018�\u0004��L*\u0017�&1�\u0003d�b]�Xb4{7�3��ii\u0002�B���D�\u0017�O�C�sO\bљ�Be\u0015�7&\u0019�\u0004�9_�'\u000b�Jv�\\�j���5ֈ�\u0012\t:��\t�;5\n��'���A\u0016\u000b*����\u0002g� �t�8{ƫ#���\u0018��s\n���/��I��\u0014������Ц\u0013���j�f�=���t����l�K�=���R�w�AN�\u000b��.��j�\\�{\u0018\u0004rOc�洭rTi7U|���U�\u0000��'\u0001��/����y@;\u0018 \u0013��$^\u0004Gii��\u0002�\u001f�\f2�!9�$\u001cg3V�\b��\u0010j�&��0\r�\u0015��\u0003��\u001c�\"w�\"#�\u0012��(D�\u0019���\u0012�\u0017���w�H륭�?�\"\u001a\u0016��\u0010!\u001e\u0017d�K�\u0013�1��\r�\u0019�\u0017g�5s%�`��3>�B��w��*\u000e�-�\u0018L\t�zڏ�OM���tM��om{��i�\n��r�w.z\u0003\u001fXܸ��e�@B�U\b�m�wՃ_�嘌����\u000e�j\u001aS?71!�,\u001c�MQ�\u0010?�]�5��7�t��OF�\u000b ��0�%\t4\u0005�����\"-�97��bJ�\u0002\u000b�Z��{��!>\u0014>υ\u0019��K�a濔&�fui�5��\f��\u001f��AK�\f\b��./>�[.�����\u0016��~\u0006!\u0006x�+���혁,.�j���=n��\u000f��I\u0014l�ȧ�\u0019\u0006r�6ѝ%Y\"y�Ҫw^��\"��\u001e\u001a�������\u000e�*Z��_č\t\u0013��wL�_ib\u0018�_��/�\u0005>v���\n���h��Ae�\f\u001c����\u001eE������֊�r��\u0015���\"o���Y?[�TԮ4�'\u0015B+�8\u0017�04T�Q9�\u000f�es��#�S�\u0004�\u0004��t����N\u000eM^\u0010���t(\u0005/Te�\r_\u000f�����1��\u001ch��\u0016z�(�P�\u0019��I���\u0006�;�B�|l\u001c����\f��\u0016*\u001f\u0006��lbtX p�9�%i��\u00069��R./�x���~�Kʶ1,O3�`���].N��(/=��O9����i��\n�BLJ�\u0007\u0005D\\����d���A��\f0���+�v%V��2��] �Ѐ����Tz�tw��g�\u001f��}��\u0007�f[~�e�g�Fu��R��'�\u001c/p!\u0001�\f\u001c^��͜\n��E>h,�\u001e\u0001%:]�>�!�\u0001��������ic>\u001e�7u\u001boʿR,�1\u0006|�#Sg�_W\\?1_5��h=�\\i̭�t�G�Y�ȑ�o\u0003�\u0002j|�\u0003[�\u0006�S����\u00060����x�\u001fH��If\\��:2W�y/�͊�����d�P���9,^9=,�x�\u000e0(�~��F��ֹ��f}�\u0003{�ì�OϺ�ӹ�z�y�������^Q(�^\u0004�U6�Wj8����ǎe��n\\\u000fP�K��a��]\u001cO\u0012�\u0019�;��dD\u001d\r*䢔\u001d\u0005(����ʽ��b�\\�i�\u0002Β\u0005���r�\r\u0004\t�\t���\t�D̶T\u0019ĭ\u0000N\u0019��\u0002��\f��\u0018Ӊ�K��\u0013�d�\u001a����,9�\u0013œ�a�Z[���?��Z�\u0004K��qG9�dA\u000b�����3Ԍ\u000e���P�A��\fD��5��+���\u0000S\b�\b��U@�K�\u0014\u0007�\u000eM�y���\"�Q쫤�'\u001e�h��|~%\\�cQ\u0016�\\[Z>cQ\u0006�B@�o��\u0017�x�*\u000f\u001c\u0010\u001b\u001c�\u0015\u000eıT1�ַR�_.\u0016�3+�i�\rh����\u0010�~mA��g�\u001azH��%g�\u001d�2��s\u0001��\u0015�t�k��ɏ�>L*P�\u0006�\u0005Ȟ�\b�]�m\u0004��\u0000I1�cFXm���C\u0016��\u0011\u0011ov^�3`��ڔ�eR�q���!r�*\\����{N\u0019�)\u001dv��%��&U^�{�\u0002j\u001a^\u0017�D�zps�m�\u000b\fT�\u001f\t�%\\�>���}��x�gΟ��1�\u001c�m.wk%��\f�w�6G��\u000e>��˰����O�˪�\u0017�\\�h\n\u001bn�^�5Q3�M\bZ�� @+W�aK�\u00125\b��'\u000f\u001f<ޗY0b�z&P��O�Ds \u001fl\u001c֟��\u0017�8\u0004%M�\u000e��|XMt\u0004���n��:�^�9->��9�[��R�v��I�0��A\f�\fX��Rٖ\u00033�ek��� �B\\�lF�3\u0011L#ka�0d��)����:��Z��������9o��ogכc�,\u0014��R��Ŕ(K�[?�w�a�\b���\u0017\u0018�������vS��c��𮵋���x\nп��i�h��\u0004�3(F��>W��\u0014րѷ�d0�\u0005ܺ˨d:#�\u0005�����\u0013�18�Y\u0010}+�gF\u0006z�2(^\u0001�\u001c.�\u0006��As��\u0011<��!AX��)�Y�l��zI��\u0019�^�\u001e\u001f֞��\f\t��\u0013�fp\u001d�ι\u0004&#�JJދtmR;�W؊Ncf�wW\u0017�\r�m��ۍTd�ʳ�@��\fl��\u0013�Q��\u0001�1(���H���l\u001cks\f���\u0014f@�����J&�W�\u0019�0L�\u0007�(� R#\fc\u0015\u0000�\u001e�{c3:\t>��ϝ\u0005�q\tC\u0018\f�\fx\u001a\u000b�\u0018���ɛ\u000e�U\u000f�\"�\\�)����&�̕2��~q9\u001c\\�\u001b02\u0001�s�1xq�\u0004��\u000f\b~\u0006�f�##�_d��)�X}͓Բg2�^H[X앭��@�\u0000�&�[ԋFB��\u0012_̸g)\u0002܉\u0010�RA\u000f��\u000f�3�\rt�\r�a�f��2\u001c����/�Lx\u0019lE�\tL��K��\u0015þ\u001dĶ�\u0001\u001d¿��c����\u001eP�@��\f���\u0017+�\tj\u0000(\u0012R\u001d'@\u0010\u0001�u\u001e��/\u0010�\u0018�ȶb����i>�\f�`� \u0018\u0017�k�\u0003!��m�RNQhA\u001d\u0000/�XC�ո%��\u0013�\u001cx\u0016�\u0014��H��g ���/\u0015\u0001�֪�p��0-l����\u0007�\u001bRK�v���\n\u0003��@�\f���B31(�K���Jr��Y�\u0000)K�OC�aC��\u0004]\u0005���\u001d\u0007�c��H\u000f�\b�o��\u001d�������\u0017�\f(\u0016��S�*�-\\.\u0000Q*\u0007�'�e�\u0012\u0013�\u00054��$�\u001dn\u001e�UÉ�O.;u���LNo]8�\u001c���^i.: 朒�\u0013\u001e��Թ~�',h�pō�un~̎�\u001a�\u0001#���`\u001b�\u0018����g\u0000��\u0012��\u001b�/�h;Z�e��_����~��eh\u0011dC8�x��&�:����85i\u001b���$\u0007�B\u0019E�2�2(��ƚ)��g_� kv��\u0007��_�@�\fЀ�\u0017-�\u001e��\u000e;Bi�d`\u000b\u0002��P�C��7#�~���\u0018ڇX�Jpn�\u0007��\u0019��ߔ�k<\u0016����j<\u0014K��\r�\u0000�\u0004�3��3�'w� q\u001c�\u0018��'i�v��ɓ\u0004j�g'��1<���\u0012�\u0001\r�t�{#�L�C&�O\r��\u0006\u0003\u001b\u0010I\u0014\u0011D�k�QVaU�zt��s0+a�5�5Ü��8\u0007�X��\u0005�'W�?\u0003���v�y�\u0004���\t\u0007�ɏ�Y���D[�x\u0002'\u001fs�\u0010�pQ�֊�\u0013:���\u0018p\u0007��'S����A\u0018�\f��\u0013��'Vw�悎܏�DZ�'�f/^��])U�(��7Jt�\u001d\u0007��|\u0018�}r\u000f^�Te�RYD\u0012��7\u0011-1H�82��·�!<�0��>�\u0013_�Ƴs)�z\t�#�g��Q\u0014]Z��N\r���x\u0015�K��ip��I�;��\u000e�|���vJA�{��j��ɟ��\u001eF�8���\rK��S?�j��W\u001f��\u001dI\u0017k\b��\f�\u0014�����&�@�\u001c�0=\u001cx��z<��CQ�m*���J�\"�o9�\u0002 py�}�ʧh�\u0014[�5S\f�\u000e���>�\r�\u000eY�\u000b�\u0005�\u0005�)�t˝�^�[�g����{�����D�j\u0003�u�[��A\u0004�\f���\u0017,�P@�jy�\r�w\u001f���ohJ\u0000� ����q���A�o�N�}2=Y���ڗND�\b�R�\u0003N�wX���\u0002)�8J�3!�\u0018#\u0010`�˧c\u00025^�\\\u0005yX��O�:RO����'�,�2\u0012�P��6L�l\r�\u0001{���c��\u0001g�ʣW\u0010\rv߰\u0018%��h�=\u0015t��\u0007׀˹\u0003�����}9!\u0019s��2'���UC��ԙ\u0003�P:T���\u0012�ဪY��\u0002k�u�R��\n����۽�\u001f\u0006F��iL���]�� n$v2�Ñ�>P\u0011a�\u00073v�+�\u0000\r��9~\u001c}��\u001a\u0003�Z\u0005�@�\r\f��\u0013���f\u000eU_͸i\u0012\u0010(���F\u0011R\u001eY���8���8\u001b��kG��Q ��p��,���u���`�ڕ�|��+/�\b��\u001a���e~��Ҁ.��n_��S�T�Jj��g�f�+SB���|ǻĢ�\u0000�(�c�����+W-;��op����&��\u0006�F尓J�j�J6OıQ�\"\r��Ӭ*��\"�m\u0018�\u000e�(�\u001c�iDZ|o��C�IƔ�Y���ߪ�k�J�\u0014ib\u0001Ũ?o!\u0006��;[�S��Ww_���n\b�rO\u000f�\u0004;�m��A#�\r ��\u0013��ky�����c\u0002��Bp���[�e�ܡ�=�\"�^\t��\u0010�IZ�{!_�ٺ�Z|���l�)\u0005�@��r�-wt\u0006�\"S��\"aN�^�M�T�?\u0016}y\u001e@�0���\u0007�7�h��1p��3\u0013��x,AI�|�hz�!\u0014\u0019=\u001c!���\u000e\u000bw�l\tʨ��i��9\u0007��3h��\u000e�8k�R��I\n�\\�H�\u000e\u0007�^K���EՐu.�/j��{����ޯ\r���xXLR��.�V\u0015\u001c{��8��ڕ��\u0002�\u0012\u000e�\u0010S�t��&\u0016\u0005���\u0000Y��U=��2cfl\u0006e|�v���,�}1�}\u000b��GY4\n�\u001f������\u0012O��\u001d\u0001�\u001a��$���A\u000e�\r4��\u00175�][��v^�m������^�\r�[F�ܭypl-K�q�lҬ\"_5̦G#V�\u0019�J\u001b�PW���\u001b��}������\u000f��q'\u0001̔�X�\u0002�\u0011JQ��[���Z�Y�\u0019�\u001b\f\u0018��\u001f��8E�c\u0015�z���7\u00143���(����U�VdX\u001f�_�V��/}���x�*\u0010NT�)\u000e�E�\u0004�'��5)w�Қ��^\n�\u001asa��Gy�B�)\u0004\u0010�:<�\u000ff�D*\u0002�rmq\u0001v\u0010\u001fk\u0001�y\u000f�\u0012��ꫥc�HN��o\r��K\n�́\u000e�~&I��R�QW\u00059$��\b��y0^5���sp5@\\\u001f\\\u0005��A#�\rH��\u0013��d�ra���R���5K��X�7��lt�]g\b�QM�~q�U,�����6\u001c\u0018!lh��!\u0013sa\u000f�n\\Pe+A����\u0016�e�5�\\T��ͶpF��\u001b�\u001b�x�\u001a\f_��:�����п\t���T��\rq\t\\\t\u00040���\u0006�\u001bI\u001d��A��&���<(�A?U�L��\u001e�\t��\t\u0018����2k��H�i�u��ό\u000f\"#�[m6���П��R\u001e\\�%�\u0005�3^���\u0004�T�A-?E)\u0012��I�\u0018|��b�,-'t�*i�\u0002;0�wW�jN� V��2n�\u0014�o\u000f�����(;��\n\n-��L\u0002)�'�l:�^#i;쵰>��G2�E��A\u0019�\r\\��\u0000\u0002��{Co�l�\u001f��,�j\u000bTt#�_��#TV�Hb\u00162���M��,[p͆�\u0001\u0000u\u0017�\u000e�O\u0002�/1\tz���̘�O������%���6L��P�l�VY��\u00147��\u001f峗E;�|��g�\u0014ED0E�\u001fv�\u001cG�S4>\u0017A��Amk�c[��q*�:|[Z��s��=�lv+�x�\u001d���\u0006\t���4�U�+e�&\u0018�\u0019\u001d�#\u000f��$4��\n��\u0010~���E�+\\N���\u0010ڼ\bo�/f0)M�0-B�w\u0000�Λ��F�;\u001d\u0002Dwv�ԯ#0@߷�S\u0007��\u0007�������\u0019���\u0010�_���?)�[Z\u0000��`a6��Ŀ\u0005�A\b�\rp��\u0017,!F�����\u001a���q�F�\"�JU\fJ>#�\u0016��\f��s� \u0007C5\u0012���d�QA�sڃS����u.%|����\u001dT֕&�\u001e_�[d2If�\u001cL�[��\n�F=��\u001d�\u0014�y\u0015�C\u0013.�*A�i����'k~���\u001c_\u000ef\f�H�.d;>�l5ad\bKV����K��,ΩM}�\n$��}�7ּZgܠ�������\u001e5Jx�\fż���=A���\u0006�?�O\u0019���M\u0017F�i(쀜NO\u0000>Ƕ���p\u0012�@\u0017L���\t�\u0010����_�6ƕ]�\u0002��e�\u000e�\njI\u0003�\u0018K����A\u0000�\r���\u00144\u00188�7)\u0014]^h���m�\u0012~�Lӿ�E���}NM�\u001d�m�ݛf5ϕ�H�܇U\u0015�t���I|}�\u0003C�>j��IM���u����9�(\"��+7����u�4��\u000eN.FI7�\u0014�H��z����dV��\\\u001e\u0001����;�C9\nT\u0003�U�\u0016+�z�}3����c��~���f<���'��=�Z��G���K�pK�Bl\u0006C \u0011W�d�S�ۮ۠�\u0019�\u0018/�����n�M]\u001d+�\u0001Gm\u0013�8/��\u0014\u0006\u0013q��\f+�{\"��A\u001cU�\u000b�P\u0006���\u0015Jl�ܴ?�{�Z\u0000�@��\r���\u0000\u000eB��\u001f����Lw\u0007�\u0016�G:\"�\u0019�>Ȯ\u001e|��3r;���`�\u0007x�\u0019L��}GJ\u001d����2@�ZW��\u000f\u001d�n\u001c�V�V�j�\u0002�o�?��@=酃gkי\rm��/#��rZ�\\u\r�t�\u0011�\u0014\u001e�~�/��{\"����+��\u0018��k\u0014�7�5҄߯��/��Bl,թ6�O�\u001e�\r �nX\u0016e\u0013�_���O\u0010�\u001d!\u001dZ\u0017�\u0011jy�~�B~e'_]��W�uSN\u000f{~��7.D$�7�[?�za쬲�ѳ̶z.\b��\u000f�T��'�[�ĥ6�^�aU�A\u0007�\r���Akߦ��ɯ���gҮ�/2���7j��a�\f�9\u0016��Ye�ři���8�\"3k�\u0005s�]ƍ&u'�1�i�?P�ɐ��\r{\u0004�.�Ư\u0017��@����B�pD.Zz����ƽ�#jt��')��1\u0001ӭ�iѸ#�}�V�9�I�x��\u0017\u001c�-�W��[���~<��e��\u0006��g�ŕ�o2M/�0��ˏR� C\u001a/\\�g�\u0001�(14����ߍ�3�9 'x�֬�.�$Ѯ��n��\ni5�/k�n�=\u001e�s\u0004n�Pٜ�\u001egN�7��#\r?�r���\u0007`7�H�e�s�.u%�A\u001b�\r���S�\u0011�4��\u00102\u001f\b��}��\u000e�#x�؆J��=�RM.�):4�@�\\t��Wgh���\nM\u0017�\u0006�)��FN�\u0016�Z��\u0012\u0011��Kz b���q�\u0018�\u000bUxJ�/=�S��\u0014~�����s\u0012/8\u0010�<��n���L!������1[t��un�a��\"dd�9��{?}����4�\u0006�`[�\u001cNEB����‚Ү��\u0003>zz�A�\t�Ѩ�2:L�urR}�\u001cX=q�\u001eΕGo�]\u0012�����n�v\u0001���\u0004�,2���g��\u0005J~j\u0002�����/\u0010�3\r��<��E�AI�%�[�R%��hR����\u000et$�DZ$\u001c\u001c?�!���A\u0013�\rԀ�\u0013�I�b�\u0003!�j��#p\u001a�;],ȕ���S���W'�-5׃B�'Jw�=����V�3�[�U�z�f〚AǓl��}ӝZ\f\u001d~e��1��'\u0000s�.����vr8��^K�&`9�\u000f�\u0017�!cd\u000e�\u0007(D\u0014i�\u0019�-\u0016>\fH\u0000^5�(\u0007:�ֵK��@9�ۉ�_�x\u0006A\f���k�\u000f?�\u000b�\u0019\u0012�]��\u001e\u001e�n�\u000e䇠4/\r�K�\u0018�c��B6��4A\u0004r��\u0017�IL\u0019r���\u0000}��\u0012�1: G�M��E;\u0018#��n�^�͕\u0010h\u000f·���[��x��;n\u0005� �[ea*���\u000f��Cr�\u001a}d\u001b�A\u000f�\r��\u0001V\u0007:lP�Eo�w5\u0015��\u0017�n������\n��\u001bd�o�^ﺕdd+\"��\u0016���^{��\u0012u\u0011��O\u0004�!@a�x�d#M��z�Tƅk�\u001bY�\n˧A�Z�\r�\u0002��+�0�XT\u0013\u001d�N�F�3\t�#v\u0019�e�gi�\u0003���`��I����*�Y3\rd�Y���:y\u000e����̙��R:j��/�xg�.(��v�5wX��\u0016��ܶh\bm���%�\u000b�h�]��k���\u001c&��\u001e: \f�5��І����X\u001f�\u0005�3�\u0012R�\\�\tR�M�\u000ev\u0014�\u001feQ�n�6����w�_X�~\\*씕R��ңA\u0011�\r���A��>`�h�Ԅb�\u0000�2\u0006�s�iv=�b@�Cm\u0013\u0002|�K��U\u000f���>�\u0019�\u000e�\u001f�{o�/��Ƚ��\u0019�Q]V\u000e�q2���\u0005l\u0014QIb�s-Yf\u0010�W\np��D�&��ǹl\u0006����[�\n\u0014Q�dNø�$ք^q|\\=2�\u001c\u0002�܅β\u000ex��\u0013_\t���J+��F\u0010-��T\u001eֳ�\u001en\u000b\u0001\"[\u0002�>\u0004�,�$�vrj�9\u001a/b�X��\u0010�:�i��.�\u0011j�a�U��KQ�\u0004�aj.{Ϊ\u0013\u0005ܤ�Hu!)}��k�~�$�&�\u0012\u0003��\u0012��9�bto�z�o����\u001c\u001b��(�$?;���\"\u001f���B\u0004�\u000e\u0010��~;\u0016�2s�\u001eP�ܕ3�\u001e\u000e�����\u0013�$�\u0018R�F�^��&˸6��:�!6\u000f�pw]�c}�h���Ƿ\u0006\u0000 ��\u001f1\u001b\u0003#_�\u0018\u001fVZ�g�>��(!�!�\u0015�Rz����[\t��}���X�'s\u0013�A�`M)�\u0015���\u0017=�|P�.\"\"�\r�\u001a�*��J6�%c�\nHT�s卬~��E%\b�l\u0013�=\u001f��όd�g�\u000b5uL������Ǩ\u0001�-\u0001����h�L�2��39|�h��JE���۳/\u0012\u0012�\u001d�\n�24�\r�$Ӱ�4\u0018ʨ\n�s��\u0006 0��\u0002��\u0017v#N\u000e�\u0018\tŸ���\u000b�\u0004�F�p\u001c\\c���܄[�eg_\u001c�\u000fD�),����ͤ��n�X�rD�TUK|��\u001fqp\t�yYו�\u001d����hm)+h+qr\u0011����G�\u0014�#\u0013\u0016�B\t��ʉ�\u0001��.���\u001cs\u0005�\u000b�\u001c���\u0017\"{�\u0017Ć\u0018B#�\u0001�����;l}��\u0005|�����\u0015���R�]�s�����\u0003\u0017�4�\bO|�P�8\u0005|I��\\�d�\u0005z,gG�,��_���˚�v5P\u001cj��������2b\u0013�V�BH�\u000e$��z��1��\u0002���wr:a�0��\u000f\u001f\u001bO\u0017��w9;�S����M����\u001f'�\u000fPPC�k:�e1,J�aB'\u0005/\"��\u0016�k\u000b�\u0003bN�u��w\b��l�֓��9P�9| �\u001fy�)G�Tڔ@�7��¯)\u0011�bq���^Pd�\u000f�r�\u001b��z�?�q1�g�h\np�u�3���|�h�}���с���-��;���\fhMb>7�ol�e��\u001a$\n�d��s_by�I\u0017����\u001eM\u001a����B�9(M�1\u001e�\u0004��\tU��:��\u0017\u0001;&\u0011�\u000f�\u00013��j�|a�S�Vɯ��KG$9!�@\u0000\u0000\u0000\u0000<�jL7oa�L���\u001f[t\"?w�!�`�\"\u0014@��々��gq5\rz<,�'C� \u0006�\u001bb�7=(ot�Y��(���\u0003 ��aaR&�\u000e�5\u001f�/����\u0016�.p\u0016�yf��\u001cQ膚�i��2j��v��%����珣����\u001bK+E-0f\n�+�7\"q��L\u0014��h\u0010��Կ�)\rg/1\u0011k�B\u0010��Ғ(6W\u0011�˩\u0013,������\t�\u0003Q��7��~Wk��qMw�Ckq�#�\u001f�cM�j�\u0010�����\u0010�Ddz���c@]�\u001f��\u0019aB�7�� \u000eì~\u0004�շ�x�E�O�`w�\u0000\u0006�-��=L���8���8��>jv�$_F\u001d�4\u0003��\u000bSJ\f��x<\u000f�+m�7O�^ɩ��A\u0019�\u000e8��l��\u0019�s\u0000�%(��Z�\u0019+%���k�%��I�[�y�Æ,!\u0014����E$\u0003�s�+\b��xU;n�\u0000K�'�:ǨA}\u001b����n�3����\\*�\u0016�/h��\u0007����|��H��hsQ \u001e�ް��\u0017$�ö�m��n�Z΋@�/�$�\u0005߭\\v�5B�\u0014���q7\u0016��Q�����p`N\u0012�ā��\u0013\u0013@\u001a,��\nh����P\u0003�\u0007O�%_\u000b\u0006\u0010��V?&^�7\\/-��I\u001bї��9\">�*�]��<:?��\u0005\u001b\u0000�x��\u001cA5�Ec��2䁔��v4�]\u0018\u0012�QZ�0�h\u001d6iK�-\u001c\u0004��-���j�Q�І�A\u000e�\u000eL��X�\u001a���\u0019xs�4��=�g�V���\\�J��Hx�Ä́v�y\"U\\7�淚����\u001f�\\'(]ŀUJn7�Ԙ:׌n.���3��WZ)�\b��\u001b\u000fK�|�\u000f<\t\t[6��G�2��E\u001e�R�\u0004v��룜�\u0016~��S(�Q�;ZY�����+�y&�+�ܯg�\u0010\u000e��\u0004�\\\u0019\u0000\r�����\u00114��NC)�\u000fB3��\u0000�B~KYQ�1G����/�~W��\u0000���\u001f�Ώ_6ƌԟ\u0000@�eG3�\u001d�k(�ʤ��J�.��~���y�\u0016�Q��9?�!>nh�tI�<缦\r��cN�\ts* A��A)�\u000e`�����nqg.Q�����m��\u0002������c�.�\u0011��m��\u0004}��l�3�m=q��Րj!�ZƋ�\n���\u0016>�'I���\u0013\u000f�l���Fr�x�ǩ+\u0017�hW\b�Q7�\"@DZ>Z���4��\\�-��\"��y\u000e�\u0015�n�孴�����A$\u00018�2�\u0018�O��Sm�\u0016B�\u000f›^��u�0�L��=\u00125�ܯ#R\"�o\\�_\u001bS\u0018�8��’/��j���C�\fɿ�U�[(\u001c��\u001eW\u001e��ϱp}\u000eX9��s.C�0\u001cl�_���*G��@��v���\u0005b�o\u000eQފ\u0013���]���J\u0012�\u000f��y���P�\u001e��e�xZ�\":\u0004�z)����?JB\tQ\u0005\u0002��\f\bK�Z�b7�p\u0013����P�s\u00033\u001e�DM�ی�x�\u001f\u0004�\f̼�[�ݍ\u0015\u0017K�QuE�w�0h�ij�\u0004�5�������\u001a���N��\r۠�\u0002\r{��\fB=�8\u0015\u0010�;K�[Q���\u0012�b���\u000f�\u0017y\u0018$�z`ì\u0001B?�\u0007�em�e��Y�\u001b:&\u0005��\u0012\t2\u00057�;�*�\u000f�2��\u0007���\u0007N��mc��%\u0004�]��'\u000f�\u000f9z�A\u0011|9�m����F�\\�Y�\u0002QW�A%�\u000e���L�\u001f{\u000b�jܔ��k�N�悜�`�r\u000e\u0006q�Q\\��,�-\u0010`I\rj[�4M��p�\u000b��X�\u0006��\u0015��F�~\u001dw���\f�<\u001c3�1\u0019�Tj�l .H�����z�!����/�[Y�xBS\u0001d�7']\u00108�I�\u0007�y�\u0019f�\u001c�>pZ���\u000ey+�\u0010�FI>��\fu]����\\��9�_;��}ԟu�pr\u0001\u0011��\u0003���=�a�s\u000e\u001dI�WJ��1*�\u0014� �[TKai���=�\u0011�2�ǧxrWJ\u001e��K�\t\u0016�+\u0002�\"\f\u0014@Ԁ�\u0006�UB�\u0006YV�\u0010�\n��\u0007r�?=�\u0011��\u0003\u0016���ڦ\u0013\u0016�*\u0016A�0!�\u0003�|��3�\u0000�*%�%7P\\<��A(�\u000e����mk)�ab$�,��e\u000e�=�M��aZ�2Cc\u0013\u0011?�n��\t̲��~���a5�Q���T/y\tf�J(���ϬX=�b6y��\u0016�]S\u0014V��\u0005\b�0ڌ��\b����\u001d�U,[���~<�8��]^gX=�\u0017�(e��4��K�'�&�\u0017\n���ۘ�7*J��/0���&p6D.%���=\u000f\u0000E�T��\u00042�g�漂n\u001c�4_`�\rr��t��@�I@�\u0003[g�ǜ�|G]F�.�x���<�\u0014�?�\u0017:��:L\u0005p�\u000f&\"Ũ�\u0011��\u000f������\u0005cS �K\u000b�`l�Խ�����L�ˎw���%�\u0015\u0018x2�Ttm~�\u0013'\f�5nk\u000e&����A8�\u000eĀ��c\\\u0000�3'ǔ����GGەK\u0018�1��)^~��j\u000f�{��;��\u001b�\u0012+�d�䓾S1\u0004���?�YÂF\u0013[:G[~h&{\"�\u000f�E)!%A1����p�]�Z\r���J1�\r��TE)�\u0002�Ł5��$�\u0017�=�Y����\u0005\u001a=�t����4�2�}�q���\u001a³2�\u0019$H���m��HF��\t|�^�c�+��B�\u001f�8c�2�\u0011^�>@�,��^��)��7]�\u0013��XI9�S\u0016� �n\u0014g�W뺛��+\u0017�^���F#�[��A\u0011#��L�\u0003�@�}�R\u0014�O'\u000b�ͲB\u0019�}�2��9�8�$I'Q?��e\u0007�;�\u0002�Rx\u0002и��^rB�w��IԞ\u0002�[�3�q�ٕ�AC�\u000e؀��b̃�)�f�U�'2ln�%\be\u0000��\u0007\tQ���\u0018�/+Sa,���x�JZ痫N��t�O8��\f�ӆ�������r��_�!��t�$Mb\f\u0006'��\u0000\u0013�/����{f�ZeB\u0002��V�{BE��]|\u0015 \u0012\u0011(\"8�ѳ\u0003\u0002�Q��\u0007X�w��8��*�\u0004�W��#�U����\u001eC\n;@ʀ��0\u000f�\u0012r��2_�\u0014�Ax��hϠ��\u0004��Z�\u0015G�Ӟ�Ā'�dƁP�\u0019s�F颿\t�qR�!WC�3\u0007�=\u0016,�\u0001\u00189�\u001f�\u0006����\u0013\\\u0011�r=qz��{�\u001c\u0006W&,f��\u001bB���a�\u0012\t.��Q\u0015l\u0002��j\u000f��7�����ڐJ[�씇;��\u0018^�R�H\u0012J��t\u001b��L4j�l���AO�\u000e���l�&|\u001aX/���s��H�ޥ�G��P��l*^��$�\u001cx�\u0003\u0019����wίW�zp�{&=���*��\u001f\u001es@T�Ύ\u00133K�շ�V0ii:�\u0014-\u001a��t-�a���~���MFE�\u0010�:v��\"�\u000f�$f�Iҩ\u0012�^��3�\u0004�]�;���.��X�Ƶ�\n�J\u000ed4�\u000f�*!j�}�Q�k�ۍ��g\u0004�<�ңVd�\u0003J\u0018,V��o6\u0001�G�\u0004^��\b\u001f�����\bF00�zٺ�q�Ԛ!�Ҥ��\u001d8d�-�2,�pM�X+�.����\u001f� \u0015]�Ep0=�2�p��\u0000�wWl��ҋ\u0010�&�\u0000B�ʍ�/���ي��Uh�z$\u0006��\u0016�e��Q��oA�P�q!B� ��Gb\u0012\u0004�+��0�Zn��ٔ�A2�\u000f\u0000���l��\u001b\b�\t\u001fcB�1Á2�3%\"�:��و\r�ẋ�T�~�)̛�j\u001c�1S��nyRljY����\u0003��S�\u0006\u001c����\u0003\u0005�j� u�?\u001a�\u001d�x3`��f�Nf1���Q�辜�??�\\��Ā/\u000elק\b�o��*�\u001c�r:\u000f4��(�zj\u0003��>=�{�w���\u001797�W��>�q؍-��/xA�%�(\u001d씛mBm�~I\u001c(\u001b�-E:��>�\u001dף,Ͼ�}|�$�d��r9\u0003�\n$�[�.�����\u0003\u0017�f;��kC��[�~\u0007E��e\f�\"��\rPp�`�1LB�v�\n\u0017�W7Ę]��V\u001e�\u001f��5�)��,?s2H\u001e���_�:���B�>���AD�\u000f\u0014���p�w\u0012\b{\u000b1m/��K�\u0016��}�UB�\n�O}��A������o�b\n�QTM\u0005REy!��f�$�C�cN����7�3\f�Y��:�\u0019p���6��'��\u0019\u0016w������g��sm3DK�=���$�u^�\u0003�\u001a?M[��V\f�0���d��1Z\u001f~��\u001f�P\"\u001dh��.�\u001e���0\u000e��=�&\u000b@z0�����R���~���t\u0013��\\?>qT��\u000b�6�ejR�ca:\u0010ݍp�9>!�B����Ft�HI��0G\u001c�\u0013�Sb�(\b�g�m����Ϧ��<1ͥ7���S�\u000e\"@���\u000e�͈�V\f/�dȒD~�\u0000���5iu\u0012�\fms�\u001f�Wj@� \n3b��֒\u0004_��\u0010I��AC�\u000f(��1\u00046Y{5MX-�f(\u00061��-\t��ͼ+odY���*\u0010�\u001b\u0003߬\u001au�P�'KS{-��B��O��\u001b � �u������H]��K��\u0015B\u0017cRK�\u0017uM\"�\\y�r�W�o�� W��\tEDQ��iF�O�e�\u0019�!�\u001f\u0004\ba�\\e\u0010�j�<�=�C����lT�\u0019����4D;~�nB`�X\u001b┵\u001b��\u0003`�4\u001f��\u0003�������I�n�!��zqh�7�k{z��ı��h�����Y�;?\u0010��\u0004Q�\u0001?d�W;��Q�O�s�BB�\u001a�CTB�\f�\u0002\u001e@\nc�irRxۑ<��XH*\u0001Jf�>�\u0015��&\u0017N�@�d���\u000b&d�\u001a��6I�r4[�\r�@�LGs�\u001c�4\u0015�G�?�\u0017T�)�m�Aс\u000f<��w6\n]��\n`ڡ��\u0005Ϡ�����+!S��C�\u001f&�\u001c�Xx\\��b�[N��r\u00041�;��\u001eq���i1^M��߸�nD8�;ձ��.1g�m\\'Xv�ڽq�ZV�2�S�m�4֬�=`�\u000e�c\u0018U\u0017\u0002h\u0014�\u001b�)\u0012ee�\\Y\u0000=���,h\u000et~\u0016*nj\u0010�����%\u00170�]x�?\u0016�Q�\u0000���Z��\u0018�o�\\g����ב+�W,���6���vJ�3��4�o�(�\u001f,C-��\u001e��q)\u0007cF\u001d)�T\u00126�r�󈎳\u0002\u0005L�\u001cIM��~\u0001FT9NkV��h�iF>���9d(�O��\u0006�@�D\b�q8���\u0001)��5�g�����\u000b\\��a�͒w�\u000b\u0003\u0010���ËQ+R���^G�\u000e\u001d��0�Ϗ\u000e[\\ڄE<��aFC�.��方�h�˚�Xʅ\u0004\u0010R�Z%�|c�ڈ؆�5��H#p\"3�E�\u0012rZ�����\u0015��snU��g�k�ubc\u0001�.��f��w\u0014���jd,�\u001d�i�&�M�\bj}a�\u000f�йB��g�?��o�+�-�/a�j�7�A$�\u000fP��\u0005���s�@��È�����LO��P�8U,$fmxiѸئJ\u0002\u001e?[O�|=��߲nE^�ܬ<�_�l�a�R\u001c\u0007\u0017�z�c�+9}sΜ\u001f�������ƸZq��y���\u0015#�2�}K4�Ā^�4\u0004r�!�y�\t\u0001\u0007\u000e�Hȋ�V\u0016�-S�-\u001duRγ\u0015����\u0006E���zX�\b�;%x��*c&�\u001fs*��)�\u0017󌣛��!�~�E@�s`����\u0001R�B���.�l�Bz\u001c�ɍ�\u000e��ͭ��):��'���2[�(f�\u001a�+*������k\u000b‹ʻ�HAΥ_��L\u001e-'Go\u0006%H\u000f3\u0006\tq0\u000b��\u0019=�P�Ϋ�;\u0014:�E\u001e�\u0018���\u0019��n!l���_�a��<�t(�\u001d\"ǵ'�I�\f��{y�2\ns�֫��\f\u0015O�+�u�����o�X]{\u0013\u0016.y\u0000\u0014U#�;\u001f:��I��\u000e\"����0x�*����gU���Nū�C��=�\u001c��\u0001��o:h\u001e7q��>x_\u0001�dr�\u0002E��2�{����.8Μ�&�\u0012��;�\u0018�̄\u0018��J��tE%�\u0013���M\"� �#=l֛�(�@Ա�e��\u000f��W9I�\\�\u000fUsn\u0013�AF�\u000fx���`g3i@u]��/�Ta�N��L��N�^:�E��ak\u001eV{�\u001b_�aZ��Q�\u001du*����@q\reR���䏠�G��oH��&z\"���\u000f��a\u0004�_A��7�R�]��\u0004����*i��˽I�\"7Y~U�\\�<�j�\n�|�=�5y?�{\u0000�R���n\neo�\f%Wk/�Ƭ%���RSRs}�oUc\u0011�nV5�\"l)y\u0017>\u001fC\u0006�E���\\��fA�\rm�o�d�)�\u0010�[\u0005�t$���%�!\\E�k\u001bQ\u0004�z\u001fpn�\u0001G�4\u001f]p\u000bϭ�\u0016.��$(���y��\u0019���2��2�⸶K\u0018L�\u0000;���x���\u00138[~$tm�e^��-\u001e�\u0014�]�T\u001a\u0004�\"\u0018�\u0007�\u001c\u0016�F���Y&S^=�m��45Ų�\u0001�<\r� \u001d�r\u0000\u001e�&%�M$?O��4v�05�#7�\u0016\\�A��\u0002\u0002��)��G�����1)Q@غmBZ\b���_��lmLB\u001f \u001eZ���\u0000�����K\f,Z\u0007_�߅}8C��yR\u0012\u001a�>�,a�����Ѫ\u0010�E�´�W��j�q\n���v�a\u000b�YR�e\rd~�I��XC�p����R[}:�\n!c%���0�MS�\u0015�w�'Z\u0011��}�f�Kp����;\n\u001d\u0016�l[�J��AD�\u000f����`d�\u0002V0�:k�\u0004�ͳ��\u001c��� '����\u0005�j\u001e�\u0012\u001db\u0007EI\u0018�xV��Y���~''\u0013��q�.�o�Gt�>^ �� ���\u00042���o\u001e)(�qڶG�wVV���t-/���\u0004\u0012ۮMs �?�\u0011V�\u0002��cZ���\u0006��;T��� Sr�6&�Wr\u0001\f8ج\u0001\u0014ˌAV�q�\u001c���\u0010��[f�����O\u0001)v���շ�\f�\u001a\u0016g����=�8%K�#���L�b��u���i�L��v(�b|v��}�b����r��\u0007��Dؐ\u0003�4P\u000b{�\u0004��0b�Y�<�i�ݦi\f�5��K.y\u001f�m���_\u001c�\u001b�\u0018�B\u000f�H93`K\u0012r]��&�6h\u000f��IR;_|Z\u000e!\u0005M�-�@Γ�AP�\u000fȀ��\u001e��և��O�E�P|*6��;\u000b�\u0007\u000f�n���:4�\u001aN^��o\u001b\u0003`i�\u0007-\n��4\u0000�\u001c\n����&W�e�\u0017��߫�\u001d�R���c�\u001c���7e:�8<>C-_�t�2�����|�/��piΰTl�F���֫�N���l6\u0012��^c(���%f�KN\\'���QeiH��\u001d,̇j�\r(��i�5�ڥ�o�h�m�8�1xX�q����\r�X��Z��\u000f�]��\n���\u0012C�\u0004dF��l4=��.��9lBe��ED蹕\f��N\u0002M���϶;�~5ד�\u0013Q\u0013�ɯ�u�\u0019z2\u0019�\u001b&y���x\u0006��*�U!�j���nr\u001bs�$�TYi��\u0001�\n�^l9\u0014\\���{�\u0000^$�[-���b�L�\u00052Y��\t��\u0001\u0010�AH�\u000f܀��`gn/0m\t��[����d�D��\u0017\"[X�z���uVp��iȐ�t ���j�\u0018\u001c�)ﯥK��\u001a�\u0019Z�!����\u0012,\u000b�yz��`��ڝ�\u0016�\"\u0006\r�\u001b\u0003C\u0002�L�\u0014�o5�\u0001q�V\u0006�Y�\u0001�΃&xU�\u0015A�RU��6^=w<��l7Wv\u001dҘ���HKxՀ\u001b��;��+������\n-4r\bY+@_��itC:��g���0\u000b%��n��T\u0007.���g�D����\u001b��>�j�\u001an\u001d\"\u00037:\r���\u001dJb#\u0005p\u0017�s�Ҿ�\u0017\u000b:��\u0000���s�\nd\u0000�\u001b\u0016�M�'\u001b\u000b�O\u0001��^��9)�!1ō�D�g3-@���#��T���\u0018.S�m���b�{\u001aڈY-f\u0002&J�_��\f�����\u001bK�\u0010�AE�\u000f����(�$���B�Y���˰�n��)��)�R[���\n�%8�\u0019gĈ��\f\u001b9�˖�y\t\b�H��gNKHՔ�Y�}EM\"im\u0017\u00021�\u0017��ѝ�.^ji���A�f��02t\u0013��6\n��,\u000eI���\t\u0006{z\u0014\r�ψ�\u0004<��2��\u001e��7����x�(z���yw\u0001T�(\r\u0011�����P��2��3$\u001d/� 9�\u0015>lH���|�ğ�u�H}5d\u0010��Ү��e2̈\t�J�bK�O/�­c��$\u0001��\u0013�)#�\u0006K�ݎ��<��'��$���\u000e\u000b�7�\r�m�i\u0015�X�Mx��\u0013H��\u0004b#���\u0004V�Y�Pr�\u001e\u0002k����珋d�\u0016��h\b\u001f\u0016@7��g�i\u0011�\\AϜ�a[�\u000ef����\\�Z��A9�\u0010\u0004���!���\u00012���hZX��OO�9'\u000eLj�^h��)�\u0006ɘA�ώu��5��%�կ�\u0007�\\)��\f\"5xOl��n��\u0003�\u0010�^��bE\u000f���qi\u0016�\u0013��Af>���B��t��\"ח~q���cS\u001f|��\u00027��\u0010(�\u0001g}\u0007�\u0019�}�l���~P�\f�����yC\u0010U��>�8-I\u000b�׾\u001fŀqX\u0012\u0016Y=q���3t����c\u0006�;Sp9T�\n.H�΅;8aw���MfVSܱq5�D�\u000f\u00149j�M\u001b_���\"\n��j��BĨ&\u0004�ri��2f\u000f� 0\f�O�\u0007P�5~[\u001a6}PڈC���2���L7�v����K�˄��\u0018�-\u0014T\u0010�e\f���Q\t�_;�\u0017Z-U�V��Q��BI�\u0010\u0018��|�_iI�\u0011C�*���g\u0002|1q�4�`\u0001\u001a�h�\u0003��8S��g��p��5c�.��L���/�?���\u0011��\u0002��(\f���\u0018r/���{����_]\u0001�\u0019*.\u0004sU�5�W*\u0015�ӓb��DY�\u0007a���\\\t�y�_�r����:_��A\u0011�\u0010@��XК�]��\\���\n�.�քP�}w^A��ap=�pH��\u0001�!-)\u0011 �u&rBN8��\r�lсȅ޿Y�q���O�+dƨ����\u0004o�Z��k�׵_\u0001\u0006��\u001dΡ�Eѧk��#&��\u000f@��?F�\u001f�$�4t�\r�\u000fA\u0015\\�|����\u0012��\\��\nw�4�V�9>\u0002����o�G�{[\r���H�\u001dPY�i��I�z#p� �U�Տr�l\b\u0012:���8A���=�a\u0018I޽��ë��D:�(��X�h*��4�E���\u0017��v\u0007H�M\\\u0004�^�,XH\\����\u0005�8�q\u0006�e\u0010�6�\b�)�k]^�@�A$�\u0010T����9\u0010�c\t±�Qp�EXJ�Q$�!�.$e��먴�Os\u001c����xC�n�T\u000ej[\u000e\u000b򀂢�R����w�h\n���O|\u0014Od�[�p�T6��p���Z\u0017��\u000e�����T/�\u0013�ڊ.'x(�,i/T��S�y\"҂\u000e�N��A\u000fh�90\u0013�\t�ݡ�cxa\u0012�g�\"�\u001fK�pޝ�x\u001ei�\u001816\tp\u000e��¨�d\u001c����mm�7��\u0002��Ӡ\fĵv;���\u0003��uE��͕?\u001c>yx�����)��u01c��\u0014<�Gې-\u0001�'�Oh8Y��1L�E��vp�V��6J\u0004���\u001d�V=]\u0011�\u0010�D%eeC�\bّ�\u0003\u000b�!�X��\u001b-Y�A%�\u0010h����S&\bL��.\nA�_�FБB�+Ao���-��\u0000m�^�\u001dE���\"�O?\u000f�\u0014�u�Z�\u001b]��Mљ�f\u0001��\u0019�������ۚ�2]\f$G��C\u001e'\u001e\u0019MX`�\u001fei���r��bC(�&Qw�&�%���\\M��\u000f1��yc\"�\tu�`��?Y57aY&˕���no�g�K\u0019l��P\u000e��NV�A??h$\u0005U��(/ȯ�E>��hLB\u00174x��dz�rx�ͼ\u001a�\u000e�4\b��\u0017�3��N'�\u0014\rJ�p�\n����o�*�#�{�\u0018�V�6W�c\u001f��c\u0015�.J��8�\b����ԙ���\n����5٫��FV��\u001d\u0017���s��X�A,�\u0010|��L�C#\u001c-D����b�hX��i\"��2���\u001b%I�[E����T[�W+\u0018��\nݺ��\u00169\u0019�\u001d\u0002\u001d7��^R�x%�\u001c\u0000��c%\u0007�c�AX��4wW�\u001cq3dy '\u0017=�\u000fֱ\u0014$�,\b��.\nq\rBmMBі��\u000e�S\u001f�+Wx�&�E\u0016o�\u0017@�_��[\"A�*�\u0007���h@}�1\u0013��J�*��i�\u0001���\u0010���v\u001c�\u000b�`hy3�b�8N!�ǣ8)v\n9\\�Hٱ�.8P��DB�p\u000bPTj����\u0017��\u000b�\u000f�A柫º�ј�=�S��`Ɯ'$�Ģ�\u000be\f�g�Q�[��,�3*��\u0018確j�|<\b�>��?\u0006\u0001�S.\fc�@�N�\\���A-�\u0010����f\fB�%ԕ~\u0003�P\bs\u0012���3�(�J��\u0016F2}���Gi���t(\u00065��lK�F���.}�\u000b�=�Y�\u0003�qf�O_!��E�\u001e�\u0007�_�\u0002��Lr�.y\u001b�!�WQ1r���\u0005��\fM�变��BS�9\\5@]F`�����G�;H�U`GCNT@�6>i?�0_��x�T�Dң�\u0016��7\u0018F��p-vIt��\bd\u001eD�ٻ;!\u000eR\"�\r�JJfp�:��)O�=ݘ�Opc#aBg�cɧ\u000fr��\u000e��L�T�w�F�UΏ�sÔ>�Y%3[>��M���JbWm\u0007񑳎�\u000e�x(*�\u0004U�j���ļ�cK�\u0005/je�&�\u000f�3昑�_�\u0016�A1�\u0010����j�\u0018��\u000bj\u0011/� Gm��\r�$8�\u0015/k��\b{ҝz�3Q��x�E]a�2�\u0012��\u001c�T&\u001cx��������\rb\u0007�U�\u0001#i�=����ߋA\u0005�4*\u0002�\u0011R��_-m+V7�7�X\u0013�\u000f�\u0015\u0010O\u0019�̽�\u001d�\n\\�9A7I\u001e�\u00137\u001d?\u0017�\u000f\u0019��ј0?̍ᰔ3\u0012�\u001e~P/[���?iJ�$�^�E\u0017�\u0004�&a���T�ت⹃C���\u0019w�{�g��K�5Q��Ɲ�(q|����k�d�s'�Al3�\r�ʔ�{�k\u0003qh�\u0007_t'$#��(J�\u0012�\u000b�&\u0017e���\u0003�'�3��C�lݻv=��Xc��Gr�pH�u��|6��^\u0007�kR�\u000bJw�y\u0013z\u0011�AA�\u0010����b\u000b���H����p�}F�\n7<{�Պ����qO�ч.Y��\u000038�\u001d��z��gAֱY�<6И \u001fإ��\u0013�|2g%I�8`�)/�Ë�*�u��r��Q��\u0001ëd�)r�n�&����e��k��3S�~.��A�$�D|FГ�.~Th�1cB�Z\u000f\"m�\\r��}�\u0005��|�\u000es®�^\u001c5��\u001b�P�2�U\u0002\u0019GW�W�f[���&Jv�K_\u0014`�RoB�\fiV���Cf\u001a^Yy�\u001738�/tt�+�p�\u0003���4J\u0015B�'~R�\u0007=�T}�\u000bCu6�\u001aY)\u001f��ږ�y\u0006��ͬD�'Ehz<\u0012ϖ�S�+M�,�W��n��D\u001f�M�W�����\u0006�f�h��$E\"\u000b�\u0011�AX�\u0010̀��c��y��S����,�ε\\�\"��\u0018*$�~���اx��,�(m�\u0019��\u001d#�\f�]\u0005��-�TD(�×:�j��\u0003��م�p6�](�\u0014����\u001f։��܂��v�\"湌0S�G\t �k���ܺ����9�\u0016a\te\u0013��+��Wt�0\b��ɂ?�\u0010l��\u0016\bi�.\u0014�.hj3��$e\u0002k\n/�\u001e�i�@&תB!\u001e>����\u0005���$�\u0000\ryue)��?�MW|>[Λ�\u000b�F��,n��1\u001a\u0003��C�\u0007�y�*��I�`\u000e��@\n<�\b\u0015��ztϏ����\u001cf-�K\u001dܪ7\u0000\u0005�} ��S\t\r�l�����D�n�\u001a��Få�f���ͨ��Ҡ\n��:�Ə$ \u0017\u000e��~�\u001a����\u000f\u001f�jl���\u000f��v��\u0012�Al�\u0010����b�6�>\u0001�5��*�\u0010TF��F��\u00037�D��\u0006L��h���ssO�yp\u0002��K���\u0013ķm����\u0012��(���\u0014�J��\u0017\u0010��^�\"D��\u000e�^\u001a\u000b?h'���<��?\u0001��\u0007/��`\u0011q�\u000e�ra����A��5�0}�_o��|\u0011�=(8NLo�-�5\u0015��\u001a��\u0019��6i\"pf(\u0014)��`�2\r��ئ��F��&œ�P��\u0006���$%���5�GQN�l�c[ؾd\u0017�\u0014�Ak�\u0011\u001c���mSQ\"��!L�,�\u0019Mn�?�<�\u001d\u001c�:��\u0007�8��P;,���]I�T��Q�u8�Il���g�N�28��\u001e'\u0016�zu1\u0000`t�v��[\tx�ݎkׅ���1����Ok�#t�_뷾6�`w���5\n�^s�T\b��w�\u001d�E�\"\u001bR\u0003C�@ �?��\u0004頻\u000bſ��ؔ�SIː4\u0006+m�\u0017x�j�z��I��\u0017v�&'\u0003l�\u0014�abD��%<��e�e\u0004�w\u0007R!���s*�ƒG�B8�[� ԯ\u0015�\u0012�`L�\u0006 'q��K+Xf\n��\b鞔��B\u0019\u0010��\u001d�No�v��\r�<�V�3ˇ��\u0010x��E��L\u0005�\u001c�qtM�q�:��ZK�\u0004�֎��G�Ia\u0003��\u0010�\n\u000bB�\u0017�oeO��[)��\u0003����MX{����CP\"�)�\u001bR`ֶG\bY\u0014t��\u0014�B\r�\u00110��}^m�Tm`�I(��zq����6�\u0011��(�J/�_'�Z[�(T�l�3K���Wl��U4�\u0016�\u0005@Z\u0011��j��M��I��\n�\u001d�/������92q���ǟ�42�8�9��K_֜�b���`=��v�$�:A�$�������V�Xg�\"N\u000ehu��5�\u0006\u0004C��Vot9sp=}|���xW�$�?�K!\\uS\u0001��Ƒv_g�tx�AB�\u0011D��M(�@f\\-\u000eU��b����\u0018�\u0002��\r=Ձ~�EL1�Ʉ�Ze���mW�;x�\r�m������q�\f��\u0002m\u0000Y\u0017��D!J/����z�ޘ��\u00050\t!Ǔh�\u0006�jPR���\u0017�\u001f�4�\u0012�����S\to\u0006Y\u001a�:��F\u0012a�\f\u0016�4;5�\b&��E\u000f�O���\u001c�6Y}[�']�TCdg��\u0016\n)��5<]�\tZ�R���\u001c-4\u001e�\u001d��e�\r:�$��U4%�-ySV\\�!����u3�2�J\u0018ҏ\u000e�\u0016��\u001e��t�\u0000���zjˎ��d��N���kc�ʠ[;�n\"\u0013�����1��o��\tO���\\JW�/p\u0002&8RU���!M?�\u0000�4��\"�}\u0014\u0018�U�\r8\u00014�/&/\u000fA^X|\u0003�@�A6�\u0011X���¢w\u001a~����%�l��\\�d�s�2�=���\u0015�@'(��'�\r!�e�d�ILN5F�#\u000eb�ޟ$��b\u0015P\n����p�8��|u���ډ7b4RkE7�=\r�\u0013��\u0018�8\tɎ�LK�C3\\9Fݣ\u0005洞h�\u0004�c�@Z�\u0007�3\u0017*_(�0�1����r�6���n7\u0004A��;�B�\u0007�*#�t��2�D��2\u0011�C/�\u0004�� |5Tje�\u0010K�l�����q\u0000�\"�8���c�h�'�@��S�\u0013�\r�kK�A;�\u0011l��۷6U��Ǣ��\be����@�~\u001b�Y}\t�tl�en^\"��ɏG@`CQ1�a�n��\u0017\u0007�o�/�\u0001\t�����j-JKi���x%}\u001er�LJ�h�̜K:����~4\u001a1�w\t�?6\u0010�R:�\u0013�����U6|52�\u000f�7w�Y$�=��;�v`��*�\u0019�\">�\u0011�Vw��Vu��\u0003���T��?�a\u0015�u��ar\u0011\f%�\u0014X0\rm�{)ujH��#]m�]*\f�_�b)�:^\u0005�:Ҧ=C�\bMD�\u0014�f��+6h��I>\b�\u0015�\u0014�� \u0019S\u0000�\u0016�|�\u000bI�\u0016�A�\u0016�!}y��\u0011҃��99����A��Y�S\u0000��V�i�X\t*�\\Q(��`�\u0006�_Z:r$�\t�u%MK键q�#G�AZ�\u0011���۹i\n\u001fI\u000b�rҋ�\u001fȁ���z(��c\u0012о�n����'\u0004��A�I��k|�G�\u0019\u0004�RT�o=%K\u0002������C���/�*7$3\u0000~e\u0000\u001eLk8_��EN�\n3��,[��\u000b�\u0015-%���ǡU<>n#�L\u0000��lLE)��y�&s\u0004L-_��F�\u001e�r�sc����p��<_i��\u0016�\u001dvK\u0013\\�z�e��\f�S�6.�.e\u001ez\u0000�\u0002BK/�L��QX��Z�2\u0015���H�&���������`V4��8�[����깯�b����<}�\"��\b��\u0018\u0011�M�f�\u00143p�t���\u0016-`���\u0010�\u0019Θ�pdD�\u001a|(��v���&� �\u0014��\u0012)��.2;�w53��m\u0004�*O���5-K9�3��\u0013\u0013�\b�\u0010q�u�(m\u001f&%�Up\u0003cG�AX�\u0011���۷,-p$:���,��^���eLn&�\u001b��\u001d�_���7=/1���\u0016,�&�F��n1P�\u0002ړva� �u�\u000f\u001b��\u0012\"�E�\u0003Ę�E�gS@\u0011�+v\f��\u0011q��~\u001fZ�ٜ�YDG\u001f\u000f�a���A�\u001e8�-��7�R��F�\u0019?�\u0005LJ\u0012�z�\tߌ���)�I�\u0004\u001e��\u001b�q9��\u0007���\u0011���\u001f:֨�#�Ί�R�փ�\u001b��B�D����[��� �\u0007�e=\"#��U{��\u0013���n7�ekD\u0015\u0010��*\\x�tf�,�_nik��?��S�\u000b\u0012%���X\u001a=\u0003��冨*{b��[x�\u0001;V�!��\\�#=\"\u0017V�NfB�OIPy�T\u001fO'����l\u000el��L�\n\b]yԅˢ�\u0007`M��(�-��W�,\u0019��#I�Aʁ\u0011���|�\u0006yB���*�:���ǿ\u001e\u001a뱙Q�*3\u001d@:A�Q�^�̨\u0000�|gM7`iz�>��b����e\nEo=l�82�5Ա/\r�����\u0015=\b�\fwST\u000fQ��2:7�4u�bQ&%ҫq�U�=-�B;¡\u0019�J\u0016\tEh�%zr^�\u0005�Խ*�J�4�T�c7dj��h�5��T��P��Y\u000e\b#�\u001c�ǻT�����\u0005�Y����A4�\u0011���MD�Jϧ{\u0010�?�\u0016��4��m\u0019\u0003�ìYU\u0003\u0003[�A8�w��-\tb7���y\u000e1�&\u0015a�I���K\u001bl��IJ鳂���3r����/��~����u��\\\u000f���\u000b�����-�Y���ѡ@-4\t�:�Ǿ����\u0010F6GWA��;�O�\u000e&r��$����}z.�����Z1���+y�:�V)��g�I��P�~\u0000�A,�\u0011Ѐ�Mb�V�g+�I\\t�GA#\bv�\u0003\u0018gW��`�\u001d\u0012�5\u000eX4�)T�����\u0016�)��Q� �\u0010�ے|���\u001f�\u000f=G�4��7�\u0018(\u001eQ���04o0/}�^8-D=�\u0004\u000f9\u001dT\u0003U�MZ�\u001f�JJ1��ߓ�]\u0007m�J��K�AN�!6��\u0003bF�j��C�\u001e�~�\u001aQD�0�(3�ݞ����{�\\\u0013\u0002�\u0017V�+����\u001f�hq�\"���c*��\u001fH�/^|\tw��:��b]\u000b���-\u001ff\u0004_�\\�5�F۱����<��tg5s�������ąP��\u0018�\u0005��W\u000eI��Kg���[�d-��\rؾ���e��&�B���\u001b�(�ܒBI�.mJ��$�\u000b�-�A&�\u0011��M(�Ӎ3��x���\u001a��[+\u0006�\u0011K��K�ARy�\b��5�;�\f���շ\n�v�SM\u000e�M1\u0002��]����\f��\bw�x��d�ω:�k\u001cT{\u0002���}؜�Q\u000b]\u001e�ao�d�n~.\u0002#�\bƛ.GT��Ùܠ�\\S���p��)4[R(C��\u0000j�v\u0015�N��.�=px�L\u000fi?�\u0007�\n�\u001cR�\u0005T6���[�/_�U�d=N��� �����Z�S\u0006�Ԡa�K�'�C�o��H-n�9ǫ�\u0019\u0012���\u0003q,d�\u0006Ϯ�A\u000e�\u00124��L�<\u001d��\u0000�\u001b\u0013\u001c�\"\u0013\u0005\u0012�Wn��H�\u0019J��\u001c�M; �JZ�\u0018\ra%ZBR�rw�-�f\u0012\u0005aʉ�r57=\u001b�&���X���)e�A�k;g�2��ٟl\u0001 �I�w�$��R�\u0017\u0016\u0004�����<\u0019>p)ʘte���>��N��_\u000bߐ����I��)�S#\u001c�)t�Fݿ!�\u0001���@\u000e�����1B������GN]g��\u001e�>q9�e+��c`�\u0019@����i$�Rn����;ZVa\u0001�1�k�Lh\u0013�Tk��:�\b4.o�A\u001f�\u0012H��X��-z�BA���@��OL]�����KI��Æ^�mç���E���$�����nj����,S��нkw~]���hA\u001b�?��|�<��Z���C�+'�h��#�\u0003R\u0006�|�\fƌH �O��UX�̶�2`\u0018��W�\u0005Zf8]�W��V�$�\f�G>�:�c\u001an6��k\u000e�y��ח�\u001f.�m���M�%��m\u0005�\\:�����\u0000#\u0014\n����~�k���r眚�\u0014U�\u0019@y��?ю�:\u001aZ��a����5��G���$-eN)�����!\u0013LMs\u0006{�G��&G��Ω@]�e��N��\u0003�p�m��\u0016y6�\u000f�S��\n�A\r�\u0012\\��L�筹o%�tgb_��wИ�y��I\u0002\u0002U�O\u0006S���h-F\u0017S��\u0016�\u000f\u0016�O����uA�x�(W!\rR��U�!d,BzDC���j�\u0002|�T�͢�q�d4�:QT ��)c��U5�����I�ڕ/�y���v\u0012��\u001a\u001b.��\u0002�0��i��L�`bךp�詐\n6(�\"��Z�\u001c�����\u0010�-���\u001c��ݞ�/���\u00170\u001f�םS��?�ݕ�\u0000�p}7���7!\u0015��'QD�wI��l\u001e�A�H3��G\r��\u001d\\�i�/F7�X��\u0012)�e�z&�\u001e\u0004n�,HGh��t�\b%#ϫ��A\u0012�\u0012p��L���J��u��\u0006��%=���Q��_��xDԖ���\u0015=�ÿ�%���*7\u0006\u001e5GkG�\u0015Ԍ~�����?RѺ��r�|���k�[���y\n����\u0002�A6O;�������\\�\u0005\u0007G\u0000\r�.\u0000\u0016\u0014�=�u��U�([M��{�M��=RtާZ\u0007@k=�����b��a1\u000f���&��^��G�ԃ�\u0006V\"��[F�h\u001a\n\u001f��ީ�����\u001c8\u0016��.2`\fsO�!|6�s\u0005G�\u001e\r\b�\u001c�#�Q%�\u000b#��b��8=�Lq��2G��}W�=�89>��$o��\u000e��\n=9�dTuH����'e+[d֭�A*�\u0012���M{L�(�{�\u0018B��Т3�\u001d}�r�;�\u0006\u0004�/�Na��\"�u氋ȸBX݀\n�`���Tk�3�`X+;6ʥ\b��n����)&�\u0004bƐ%S��!����\u0004�\u0018��\u001b�:�q��mu\u000fTrN�\n�Ę'��u\fy�΅��\u0018�\u0000{�j�&��&8\u0005>\u0016\u0011���|iˇ�YO�|�\u0010Ј�V`^6�\u0016\u001f7Oغ]��6��\u0011���3�Eg�\t���\fN�Mˉ\u001a'��\u0000��O������ڮFi+\t Le�x�܊�ڥ\u0017x�Yi�\u001a�˛�1�)�!���#�`�z�\u0002�3w\u0019\u0011s×K\u0018�\u000f��me�ܙm�Z�2\"}1�,�9-q�ckh�\u0001\u0014\u00008R\"d�A+�\u0012���L��+�.��/ag#Zb��yW_���o��-8=y`\n�`�$���Z�!x��[��\u0015�)�8�\u001b����A����K~�N��K�\u0007\u0018���\u001dK\u0007UI�*��8\u0004��5��!�Gm?�:��R����)W��\u001a_\u001fe���#���[��$�1�@\u0010om��\u0015\u000f;�7���:�P�kp���\u0003\u0013�0��a\u0007\u000f�͘�z���u��gQ�����3�|�\u001b����\u0017+�K�R\u0011��o\u0006�:�#�5&���%@/\u001c�����\b\u0018����A�mc\u0003uR��`�I�ϐ�F{$�/\u0014��\nX��$\u0016��x�\u000e����O̒NP\u0013����w��(\u000b�A �\u0012�������\u001cj�4e�]\u0005\u0014��\b ��&�\u0001��\u0014f\u000fA��\u0018�\"�Q�)�1�\u0015�dUT\u001b\u00002`��z���\u001a�~c 4K�\u001c�\u000f�\n�\u00043\u0019$ꞡ��J��qܕ'�{2�\u0005������%\r�`�i�\r�-LJ_T��}���թ$ٶ�IĖ�#Q\r`%�u[�F�\n��y��:�m��*=���t�\\8��2\u0003\u0010��\u0006s��OUu\n8�I\u001b�\u000e\u001d~����\u000e�v���,&�� \u000e�K\u001bE(k��;\u000e\u0000�y��d\u0017%c�\u0002��=gk��#�K�R\u0013���sk9KqL��.\r��\u001cM�n�]25U�lO?IHv\r����y�;O����>~�L�A&�\u0012���X�\f�\t�ͭ��I��\u0004;�F�l�S#�)DI\u0017�`@⵼�6��,�\u001f�Jd��C���!D.��W����#\u0000�m\u0016�\u0013s!B\u0005��H�\u000b2~\u0006s��仕���=u�hZ�g!ն\\5}͹淾%�\u001b�\u000f\u001f�\u0013�nX��G�eY�RE\u0012c�F���l����L���� &�\nۃ\u001a�\u001d�\u0019�\u0010i8��)��\u0000���R%���\u001e\u0000�Ή�xc\u001e,O�y�\u0012���\u000b�S/��\u0013���D�x��7{�\u0000�A#�\u0012Ԁ���\u0000�\u0004�i�NE<)���a����]��S���\nӚ�\n\u0006�TwL�_g\u0000�)\u001d,}��\n�|\u000f-\u0011>J.s�f8X�\r��D�Rɷ�Ư�����\u00145�xL��]���y�\u0015@P\u0014�]W\u0007J�-�~V���\u0018�'\u0002�?�����\u001c���9�?�\u0019*NR��۾y\u0018$r�}�zA�w��|]�d�\u0002��H���z9d$�f��P�ז��o󊔩�0$�y\u0007\u0001L'�2�J6��� hrJ\u0001\u001b:��DR\n���d\u000f\u0017��K� ��)�j��N�\u000f'�#Q���z�׸f�\u0010\b\r�M>�_\u000fP�\u00119�K��<*�\u0005U�\u0018�>�!\u0012�\u0005E��f�hB�A$�\u0012��۸�*'��k�nLB��_q\u000e���9.\u0013�䒢�tӶ�\u0006��7ܯ�_bG\u0005v\u000b\u0002L[P�\b\u0001�\u000bvl�\t�`#�EBuj/��������\u0015\u0016h�nڪ}fiMF\b�z�64%��_�z\u001a71մ�ekA}q)և\u0004�>�T+$��S\u0005<�&$�W�\u0010E\u001f�}dU�\u0007�H#HT�Ǎ+���s�\u0012\u001b��@��Â�\u0005Y/{!{��sC�EQ(M�29]�l�������\u0010\baB�\u001a��u+���X�\u0004�\u0005���4�Yy\u0002��I�\r�Ӛ�+U��)�ά_/�9^\u001d\u001b�3W�����[�Y�\r\n=�蓄p2���\fw�\u0017׫\u0015�:\u001f��g֔&�A��\u0012���߷��\u0014N����\u0003=�Jt�ُ�\u001e\u0016�X\r�yDu�q�'d*�R�C9�\u001d�v��h˫\ra@Jן���C\u0011َ#�_�\u00035E�\u0007_a~&�YLK\u000b�}Hh����BE\u0012f�j\u0012���\u0003��\f\u0011\b�g�\u0015{\rz�\u0017���8ʴ�-�\u0011��dK���\u0005Y8fƛ/[W��t-\t[�!�8wL5�\u0017@�4\u001b$�-��m�\u0013�K� \u0005�$K�+(`X�\"/�\u0018�c�y�\u0006:YU&�i���i�%ƩA��n�ڠ�7�e��\u0017A��Xv\u0005\u0019\u0015�A1\u001b��\u0001\u0014\n2��p��(�-�W򴸖B��炼-����\u0003���o��Ojz�\u0015\u0016��M�N\u0002�G�\u000bG�%\u0002)�\u0007\u0002�-�Xv\u001e=\u0010\u0003]�l��{�\u0010KE��ɶ�P�\u001c��^r�\\8��Ӹ9�\u0006\u001b]Bq�b�\u000f\u0015�:�\u000fL:�\f#Ə(��\u001dB_�E]p����E��\u0005r�����v�\\v�*?�:\u0015�Ғ\u0004}�䂚��~֤�#� �A\u001d�\u0013\u0010��L۽Z�b�)�KEY�02Ėc\u0018��y3d�Je���Y�%$O|����d�k��X�+��\u0003\rv\u0005�K\u0003\r�\u0018\\,.�bd���B9.\b�0�n�gA9�����Ѧ�{��G֝7:��/;�\u0013�\u0011z?P���\u0019�D��;y������TB�L�\u001c=�e&p�\u0016F\\�\u0007��t�c/\u0000��-��Q\bA�0�PU�J��Q���7�w������_\u0016bI��0��[t7��K�_�C�Z�-g�\u0003�Jo����}<�\u0011�\f�r�)kQ���l�܈zX�~\fV�(\u0016\u0019�T��黷��V\u0016�\f�\u0007\u0004\u0002\u000b�f�]⤂�RE�\u0005��?�\u001d�\u0000�A'�\u0013$��k_I�\u0018�\u0015.�As��H9]\u0003���Di\u001b\u0018j;M%$\rw��\u0003�\n�������V^%H���h\u0014-殻Bm8��Q��z\u0011\\�\u0005HU�=��\u0000�\u0014Ŝ>��E��W7\tnz\u0004PI��m��\u0012����֬2��4�#�\t�^�l�q�D&�Eȣ�4x0���Ͼ��\u0016Ą\u0016(Ҝ�\u0013\u0015�?x�O#�%iN���\u0016��#�#JE\u0005�����!�=\n��&\u000fٮ��+�?��\u001dqt�\u0002�����P��ʉ��\n�\u0016�\u0002�m�.P�{�Q4�#�g�s\u001f�JQ�\u0000��,WQ�y);�ࡃD��p\u0010�K\u0012�\u0019&�=��a7�U��'��\\\\�\u00024�O�p��\u0019\u0003��A#�\u00138��m�\">�(�B`��]\u0012�����[�\u000e�?-�$<�ߧ�d����� N�*rQU-PY�E��의DH9W颥\u0017pI�'�f�\u001e,�\u000b\n��\u0011\bX�Q\n��\u0019����G�\u0019o�Ϟ���U�\u000f��f�V�\u0004��Wf�Ka��\u0015;K&�\u000f;�U�(�&���\rӧ��/�\u0005��\u0004�Qw�ɝ�\u000b%_?����b~��z'_/\u0006D:\u001e�g?\u0003��3�.��r����B¦�\rT��,��h��\u0018�d5��A\u001f�#H, ��UHUژ'WxLW[a\u0019x\u0011�n�Q��xJ�D\\\u001a���\u0003�9��D�w�o%+��ϝFy�R��[���p4ɣA3�\u0013L���l�ޭժK���2\u0005\u0017a�\u000b:�.ϣ���\u001d!?A}ׄ\u0014F���1؜����%rU\u0018g���\u0019�}'R9�#uw�\u0002F���\u001c��7HZ\u0005�D�f�6\t���e�$4\u000fe{E�\u0011�X�3��{9[�+��F\u0004��p�^@��&��r8(��_��?<���d\r7&�W�a���K�b�@~\u0017�G�\u0002�`\u001d,](\u001f�9\u001c���d����+9\u0004\u00038���r/�ݴ�?C���fnXQt\u001e�π\u0010\u0019}��ɓ����?B\u001f����2�1v,�\u0019���ƙ\\�\u0010��P\u0017ē9�#`�C��t�yr���s8�\u0005{���Y,��smXL?0u����`3OF�Osь\u0016\"\u0001�D���AJ�\u0013`���c��h�ў�_?�R�X��Ŗyo�@K�[�GCI��\u001b�:p<͡\u001dY\t\rQH�5�\u001b*�Up~�o�Wɉ7|�\u0001��\u0007-��0�\u0001�c��\u00197\u001b0U��,*}�J���\u001do��Pq\u0016\u0000τ�Uň���㏝/(j�Q�V�?�Aw�B\u0015=�\u0004�xa�mrim�9�\u0017�?�����{K��0�����\u0005�t�����]�\u001e1�\t��Ja�\u0017�NOk�T}�1�d��>8���� \b\b�K�;5D\u0012��X]�\u0007�\u0017�\u001cɓ�AS�\u0013����bBm�Uz�;�P�\u0002S����1p\u0003E��]�Zh��?���\u0006m��\u0017�E\u0005\u0006��jm�\u0014\t��\u000erbH��V܂~\u0013](E&�f&��h/!��\u00072���[p����*\b��-ҏM=�磆\u0017��C\u001a8��V1i�H郲�\u0007mqo�i���v�eJ$��b����j�0�p�.�\u0014�%o�PB�g���G�\\��\u001abw74~:�pOYQ银T�Ȃ�_�N��+�ƽh\u000e��\u0016�u\u001b�Z��ᄚ�\u0005�\u0018�(��2������~���Vgaͬ|��@H��?\u000b\u0016�3��>�P\u0003\u0003dvu�?��I��\u000b6*V�\u0017:I,\\Êv+\u0019\u0006s\u0013��_\u0011�#I�Zb�\u0001���q�BD\u0010�Ѳ\f��,tpM\u0006\u0001�{c�D�\u001d?4c�H�क��AV�\u0013����d�&��$b����:2�3�\r�p��Su��\u0002�tf�~/�Bg�\u001e�VM�ͩ�|����9�L�?Cg�~\u00175;� �,�{�\u0013B�U}�4�Uj$\u0003_*���ZT:�W�&aGܗ\u001f�����\u001c\u0007]c��10�\u000eH�&�0���\u0000\u0019}\\>Cf3�&1_��2ٷ�vJ���ɻ�v���ͷ���U�7�N2��\\\u0011ϳ�4�\u000ei\u0007\u0017\u0005E1}�Z��='�#[�ʔ�\u0003�J!Ho�IV��\u0014X\u000b��[�\u0018\u0002����\u0016�U\u0002>�\u0015��\u0011�r��\u001bǤ\u0005.\u0010��h�)q�\u001e���M���\u001d�#VL\u0005^E5���1��\u0013�5S�?=Y���{��\n]�qa\u001b�\".\u0016�a���<�$Y�e\u0002�E‡}N\u001cl�0�\u0019\\\u000b�������\u000b=21H�\u0013�Ao�\u0013����b�C���B\u0019֛)B��ZwQ��\u0011��W\"�����܎��?e\u0012�i\u0003\rUN3_�K�0:W���\u0019<[�Bl\u0003���������`VT};d�G�c���J�U-7���/\\�5=���5�jA�0\u0007��R��o\u000f\u0000�^\u0006p���4\u0001�\u000bnᲴ����v`SݮhI�%R�\u000f��W���S7Ɩ�`p#�m�{��`p��Ul{aSV�\u0007�-\u0017�\u0001��x�\u0010fo��E���@qT�|C�\bC�\u0001��g\r����M\u001esD\u000b�7N,�\u000e�4��\u0012�V�r�����)��Tz�Jo�\u000e��\u0013�Ap�\u0013؀��u����έ�h�i8u�t�\n�|�\u0017�\u000e\u0003�\u000f�!�B/�Ϡ8\r��\u001e+��f�L�wҳ�+W�V^�\u0010q�iw3�g��Ց鳐2��\ra����-\u0013�\u0011���\u0019JL��\u001f�t���W��\u000e�\u000elu\u000bMa��\u0015=�˭�ρ6)įR��z�š�qh�\u0004ۛ҈4\u0015�a�\u000bd�\n�f>}B���{6�D��w�Y��\u0015�����A\u0003\u000f���j���+mI\b�u�O�\u001f�ܗ[\u00139º�\u001e\u0012�\u001f�����������\u0007�fIo\u000b�*C�s�O7Wڀ�H�A7\u001f\u001c���[�\u000e&n%Y�Ტ��s\u000b�Ȼ��6W�$�DB�a����.f����q��\u0001I�d�B\u00134�\u0000\u0015\u0018;��s9J\u0018�'�nL��\n\\�e�+\f�O�\u0005�D\u0005�6��if/EjT���\t��\u0005\u0004v�\n-\u0019�lNs)�s>lж�름��(X�v��]�hUi������!v<��e\r���@�\\R����ٽv)'\"�\u0011Nw�\u0004���~ľ�u�\u000e��|�����)�b�\u0001h�kn�g�\u001f�\b�G���za�E�\u001f��@\u0002$����N��%\u001dvh&GPyf��7�\u0013�AX�\u0014\u0014���l��EL\u001b\u001a!�w�\t�\u0013y��lzg�\u0012,���\u0017�o\u0004�9��Z>����b7�N�ܬ�b��M�\u0011\u0012�\u001b���?\u0000\u0004�\b�Z��\t��\r\n�wa�&��\u0005а�@���y\u0016\u0014�sN������&�1\t\u001cdL\ń�����e�ËO�2T�\u0005�3\u001b���ŗ�\u000e�+BF�QO��2�\r`�\u001f\u0011�4���P�u\u0018C�΅:�h��\u0015��]������\u0007�tDz��˄9�\u0012�\u0007�R\rÝ��ؑ�1�Z��d�r�L��\"��?��\u001f\u000f�S\u001f3G�\u0011����j\u0012��z�L�\u000f�_{�\u0015L!�O\u000b� w��>�\fB�jd,\u000b\u001e���\u0006ZWA��U��\u0012�Ybu>��=\"ڈ\u0017^X��_\tu��qj�ʃs��Fl\u001dʯ_`\u0000Y��Fq2d�\u001f\u0019*\u0012�Bb�\u0014(��}�f�HE$�\u0005ܶ\u0014R?M1���KM\u0013\u001b9��g�!^#�.?�!�{���B��e8�Ru\u0007 �0\u001e�Alh��ψ�!; S��\u0003�\t\u0006(n���>\\�nl\f��Nc\u0015\b����Gϱ|�K\n\u001b�����U��A�C�y.E��a)M�\u0004�󬮊\\}V���`�D��!%�R�㤢Dl�� V��EJ:��A\u0003_�\"|c����[8c����d\t͍�_��\bD|ͪ^ z��yP�j�ԫ\fW�/3��:\u0015,�\u0000\t�5�O�E��9��x�\tl\u0005N�,�M\u001c\u0018����k��\u0013�\u0019\u001b7\u0002�L�E�4\u0018�H\u0000\u0000\u0000\u0000\u0000-�V�R��\u0012�+\n\u0000�\u001c\u001aj\u0016�����V��+��\n�m�\u000b�dp����A�d5��,;�H����6Qt��\u000fN\r��{�\u00044_c����N\u0011\u0006e������T�ۂ��\u0012��DW\u001a@���\u0000\u0012|\u0006��C��NݭYr0�\u0012���.i$�)�R[�&�\r��ͣȩѰHن�\f穣.B\u0018�v ��ݰ�U|i\u0014�%\u0002!��L&\u0003\u0013��bն���\u0013\u0010���R��K\"�&iG��w\u001b���g�[}�yz��!W���\u0004ȧ@��\u0002\u0001&H�V\bq�FjM6+jE\r�J\u001e\r=H\u0016$�P���'�I\u001a�\u001aY�{L\u001f):qyk\\WX��N!q�z�\u0012�����(Ns�L�R���o��xh�\u001c�Ɍ=I�\u0000�����\u001d��Nm\u0000��ڣA6�\u0014<��M&� ΂Ӫ\u0014��]�V�S;H�3\u0016�KTz����7Jg��S挡���=�ױ���5�\b�#�\u00118f2bV:�ZW�W��ґȊ��]T��v\u000bj�T\u0004\u0013U�Ta�\"�\u0001��_���E��%\u000b�ߊ��������n�\u001b�IOjE�i\u0005e}\u001d���`C��)�\u0011v���.\r���Q��\u0004��ngF��@��9�j\u001dU'\u000e��Q��gz\u0011�!|�����%�U��\u0001ehg��a8cp�:j�r�,\u0001xf%\u000b �>�g��\u001aS\"jp��і/�n�9Z���1���e��%��G\u0015�$����\u0018\u0011�J��u��~�\u0005�1�B岍\u001c�\nv�尻�a=��}���$�Žm�\u001d�>�m�A.�\u0014P���\u0010y?������N�A�<]Ei���K\u0018{ȎG�\u0005��iZ�!F��3����n�T���5�k&�����h\u001e�\u0001�2Q\u0019 w���qi޻MPɼq�\u001b.3gy��0&)l�\u0001�\u0017�kӍ�v\u0005�*0�1����#H\u0007�<`:&ےN���R�m��j�o�ofɚf�\u000e[��\u000e�\u001cY�����\u000f��\u0014Om���_���f�\u0006���Bt|�����?�7�}k�5̍��zS\u0005\rR٩�_*���׆�B�Y�\bØ8Oڕ\u0004/(\u0013�\u0019�d9�\u0015gA�\u001eO�\u0013a\u000eX+�[9\u0010���,�������\u00127�\u0002�V��i�e���͙�.\u001b}�_�oD�ob��$\u001a����ߣA#�\u0014d���cEM��{��\u0000e�8\u001d�f��2\u0018���\\�,0�$�'�t\u00114\u0000C�a�\u0005�l�F��E%�+7i~�W������i�P*��~�՞=��W��qF:ӀQ��4�n\u0002�O�&ho�N\u0013�e���d'��K�Z=�u�F�\t�J�wϑ�Ł���'\b��B�\u0003�^\u0013��s����\u0010��\u001c�\u0013�j�M^���oq\u0012y�\u0018\u0005���PˆU�y„*TY\u0007C��l\u0013��*�w1jDmD�}��\u0003PU��,C�dQ\u0003${ć�J�\tT�0(5,�I�\u0011k��7\u0018\u0019q�e����\u000fn\u0017���#%0F\r���\u0003\u0019K�p\f�W\u0002%�U\u0004!��x�,\u0002\u0015�Aށ\u0014x��M\u0014��l\u0014b0���\u0005(Z��2�I��ku�y�ؠi�0���́E\u0015ێ�x\u001c��\\ɛ`�j��.��.#K\u000eu$D�\"ɋc2t�S���\u0003EǪ\u0010���J�9��E��\u0006�?/\u0004H3|����OL[%���G8=\u0012ҡ9)���\u0019I\r�\u0011cs�Ϯ3Bm��8��ұR,\u0004/�{3�E���-�EsWG>m�jo\u0010N����$`V\u001cWP\u0018����S\f��\u001bAٽRo��M¨֨^��!�9�\u001e��\u0006\u001b�\u0002\u0006�G�@\u0007�h}�\u001d�B\u001cM\u0007Q�\u0006��\"��\r��Eo�\u001c��v�!\u0011Sx]n�e�ۖܪg.���M`\u0016��#�a\u0019i���ԓ�<�i�f�w�\u000b�Ȫ�Hi�Ŝk�)��Nl��>9��v9��\u0017���\u0019T\u00142�qY�[\u0001H\"#J�C\fJ�R��UX�\u0013Em�2LB�@of\b�%�m��\u0017��_�(I�<�q��\u0000�\u0006aޒ�\nA���x�ozo��\u001b5\u001e���B�B�7�\u000e�\u001ct�\\�5��ݝ���ɍe�55wz*��CEU��@\u001c�\u000bt(�\\\u000e0�Gx\u000e�I��*0êL����AŁ\u0014����s��nO�\fH_�GY0�SnOY��\u001eh��\u0006\u0000\b\u001b�\n�.�3Aj�e���.R�R\u0014\u0019$#u�M�\\Ô�GQR*n���&X���u0\u0015��Ճ���j�jx�:J�w9\u0000��]�`EE���\u000fM��.�\u0019\f\u0019}\u001a�+�\u001a��\u000eA�-Z/0���x]Ҵ�\u0012/�G��+�g��k�\\Wϋh���'.N�0w�\r�e]$zZ�\u0004\b���܉j�V���Wy\u0001�h1b�m�P�Γ1�m=�\u0002*�[��)*�C^RP�\u000f~\\A�\u0012\u0017�2:��Eb�\u001e�\u0003�\b\u0017��P�\u0004�\t\n�]�\u0018���h�2�m\u0010\\t\u0012�N$)1���0�Gٚ�I���z���;\u0014��Y5�\u001a�v�FY�\n��fc�)Ԥo*4(I�\u0003ޛ.\u0011+��+\u0006��ŗ�\u0011�^)8���26w\u000b�~2\u0005�\u0006\u0014\u0002X��8\\\u000fP�X@aI�*7���\u001b\u0017��cB��]���\\�e5ٮ�\u001a\u0004aBN�x\t���\u0007��\u0013���3\bw\u001b\"���\u001f�\u0003�ѳ�v��\u0018�+������Q���\nڕ�A0�\u0014����cͩ \u0003S���\u0013$7����c1\"��Tf\u0013�\u0004�\u0018��m\u000bg5-���yU\u0018�ٹg�ύ��\u0019��q\u0011������\u0014�>�\u0000GG���\u000f^�� �Ѝ]'�K+�\u001f���0�Db@\u0014\u0005:����U'f\u000fJ���I�\u001eӟD͆�\n��p��d\u0007�=�7\u0010�8\u0005�\u001e\u0004�p�˾�\u001e\u0017dz\u0016����AB�\u0014Ȁ�L�,Я��\u0002+4�aIT(z���S`޼\u001aO\u0006�x�8S=%�X&lE�S�r�<��W:���m5�\u0015�D���c�RA\u0012u*\u001crr\u0013Юp]O��w��=��v3�\u0013��y\rb��\u0013\u0007���i5�\u0011�Z/y^t�TJa�Sq@W��$\u0006e�4=X����Z��ύ��:�TsS\n� 穷%�D��/�\f�qL�J \u001a>D>X\u0012\u00116o-�?��敱g\u001f^��\u0019\u0003�\n��X�)|O��qc�)�tJ�\u0017e�2\u0011lX��\u0017Ud:��Y�\b�p❞L:�~���ខr��bb.����\by\u0018B)r�\u001a��^c^3\u0003{\u000f�\u001b[�:s7^Z\u0000a��=y�\u001fH)\u0016��X\u0007I\u0006�J�O�Ä�6l��B�S�{R�A6�\u0014܀��b�j�TF\u0018Gy�?3]��Jw~�P�\u0005y�Ύ��d���HP��\u0015��\u000f]��\u0017�\\�'\u001f\u0012�\u001a�\u0006€�]��\u0004n#Q.�]��>��d�M,\u000e�\t=\u0011�\u001c�\f\u0013$p��\u0014G�5\u0018F�7S�݅��Þ�k��>;\u0003\"B�Q�J\u0003��۽\tX�c�/�\u0006A�:AU.�}�F��������\u000e:T\u001a\u0010\\�\u0007�?�;��\u0018��� ?)�z�\\mM�\u000bS\u0017;��J�JC\u001ap���[:�\u0005��S�H��n˸\u0012aQ1��lwI���4�إPi�\u0006����Ys�\\�Qz��n���H�O/Qϙ����W�\u001a��\t�k�\u0016?')9��0�;\u0006�T������7�IH\u0013{ްV����R�\r�A=�\u0014����ڌ�N\u0011�\u001eƦQ�c�9vH{\u0013dݗ�a�l��%c��w\u0010���L>Б�T_���5\bp\u0006WV�n\u0005O\u001dN��u,���N|0�k���/X�2sjC���F�\u000f\u0018]g�T\u0018��J䌇\tl�}w~�~�]�\u000f�0`!\u0003�x;j�E\u00079\n�����'�\fT��i��ܸz�DK����*=��jw֏�*:�Ɲ��$phWD����!v�#�\u0005�3�}Q[ߛߏ?Z�4%�qV�kFE\u0000�\u001a�S��D���~��:�\u001d��L藕!�z�Շ�[m������\u0014�2�\u000f�`ޔЄ\u001dT\u000b�ܔ�_S\n�\u001a3�\u0012a\u0019�\u0018�\\NZ_����;ۧ^�t�������,(�3�\u0003\t�\r/�>J��Aҁ\u0015\u0004����ͬP�J�\u0006�^M�\u0007�B��?�W�\t�N\u001f[�\u0016�d�.'1���]��`M3�\n�؎�42����vg��N~3�\u0010;f�<-k\u0000PF](\u0016�����0\u0019�*����ᓊ��I\u00004\"���\u001785\u0013~��Ã=�L��\u0019F�K�k�T%ZS���gK�s���QA{PŪ��\u0016\u000e��r�w����(��)V�n\b\"\u0011��2�bA��Xl>^�5�Qy��u�bpM�#)�W/ȑFl�3\u0017㏤G~����\u0012�nj\u001c;{jJ�h��Ư�+b({\u0000���\u001e�cΗS\u001e�Ruu�4\u0002�A��C���\u0007t�\u0004�N�Q\n�q�v�ɺ��\u001e�_��z\f�\u000eϰ4:p�\\�;��/qi\u0002*2|g�$�\u0001\u0013\u0002\u0007\u0000��t��-w\u0007�v&\u0018��#�^��\u0000a�p!\"���!�ѕ=5�-�f�\u0010��`)Y����5\u0003��L�o��K�\"6\u0011�LxHq�2�������Ij(�G�y�?�W\u001d��Ǹ\u0019P8l�\u0012\b2�[�\u0002\u0017D$��Ex��f*\u0006�\u000f�L�a����\b ��.�I�\u001f)�F�Ae�\u0015\u0018����G���Oṣ���u8�=t�A&ʥ��2�����ց\"(J�z\u0014�#�_�finH�Ab�\u0015,���g,�e�����h=�?=F/[\u0001����$!h\u0016�^��/d+^��r�\u0019z[[z>�\u0015\"؁Y��1���i\u0007��x���\u001bO\u0015��mW�\t\u0014\u0003\"�螛��j\u0002\u001d�z\"�=I*�����j���gqAK����2GW��������L/F�4\u0019ݨ�!��Ur�\u0000�=�o��6K�\u0014�P��\u000b�\u001c\u0018�׽\u001f�\f\u0003��&D&���r\u001aw��$'��R�\u001d��au��O?�uh�Z�g\"�8b:F���9�\u0013���A;�\n�c������D�y=8�i�\f�9�G.���x�7?Y(�\f=��\u001fӳ��2b�0\u0019P��L��[�'\u0016�l-d(���&1%R���\u001b*��\u001fslv�j�q��,�\u000f0���FJnb��ċ\u001b�����&�M�[SJ����*a\u0015�\u001cD�A�\u0015@���\u001e�er�\u001b��P\u0019�G�C6A\u0019�����\b1�3���J8��?\u0003�\rυ\u0002[J2��K Q\r�\u001d����t\u000fO\u0014�bq`�I5�50��P\u0015\u0002\u0011����ƹ�2c\"6�\ng��h\u001a4�*6y.h|�O2��-{K\u0000V�V�,=L/զG\u00078�*W\nZx%��+�w�/\n'ۃo/\t���Y����!�b[�֥z\u0011^f�n��8I�5���.��6\u0002ʺ6醙\u0017�0��D�w�\u001f� ��]=%=?�-n�x���<��蔩K�\u001a�!�7n���a��+�C\u0011G��L����\u0019�O�f�{.)���������\u001ap������Se*}�K%\u0001���k�BjP38���\u0006+e��\u0007ˬ����{3hV�S�\\�\u001at]�>ހi�ץr\u001fH���(<�c缐�h�@5���2\u000b�SC���T�\u0003k�{b\u0012�\u0011y\u0014��G\u0014>��\u0015�Dy\u0002��S=P�V�j��{���/�z�\u001b$�h,�����\\3'%�)�8\u000bD��\u000ep��\u0013�m\u0000A�3�|�\u0014|E_ph\u001d�?ѫ2�\r�o�q?3�&m�\u0019�\u0012�8��`bg�E�\u001f�Î��AX�\u0015T���\u0017�~�i$&�h�|p*��\u0014��X[�\u0017��N�f\u0003LJ<��ۆ\u000eg�������\u0011��a��C��\u0000��Ü\u0012�\u001c�\u0007��D\u0007��e\u001b�\u000e\u0005v�~@�l\b���S��\u0011��b,&\u0011�\u0011X��A��$Ѷ��7� �\u001d�Ձlg�\"e���j!���\u001b�}�\u0016���ý�Z\u0011�ZO\u0014�5�[�ծ�HE*��\u0006��>�\u001f��g��\u0005�\u000b\u0013�DBv�s�?\u001fI\u0011B�*1��k&W�*�V,�\u0012g�\u001chd\u0017K���� �\u0003\u000f�F;̇@�n���\u0016�-`Cx\u0013���b􄾋��j�~.\u001d�j�w�Q��t���\u0011h��T\u001d���G��ԟ�zx!\u0000\u0019[�\f�plhh��Fm5��1�~�\u001f5}\\�;��\r�qT%��m��Q�u�\u0017\\�z�ܮz��A_�\u0015h���\\�;�?).\u0001\\c|^����OQ\\\r��:�i�\u0016�\u001a{U�%�\u0004:\u000f��S���b\u0013�p@J\u0016a`j�T?^�I��K�C\u0005Q\u001bL�o���n_�2��C��\u001e(\u000bф�*L\u0003\u001a��\u0010�\u0000��MS�k.�\u0010ԇ]��&C���Օ������؄'��wS���\b�������T\u001ch\u001aį�Cl��\u0019����\u0004\u001b���}:R�lпKH(ff]\u0014*9���A��o�ܤYO�q�/\u001c�8X\fOn�<��3�h*5��\b\r�N]Y֊�'��7dF7�4�e\\��]O�y��K�m4��s��K�t(d��}@�d��[�&��BXֈN\\��6����|æ-���K��7pЪ����{�?r�\u0015\u001e\u000e\u001d��p�\b{f�:�#����x\u0014\u0013�E%��*S� ƶ�Ѱ���AS�\u0015|���\u0006�X�)\u0016��U\\�� ����j`\u001f�W�\u0004$�&�\t\t�b\r�\u001b�ay\u000b��n�ġ\u0014��liѥ\bb\t�¿�W)9I���\u0002Q�h\u001ax_���g\f\u000b\u000e��k�>\\���\u0002�P.(j�>\\��l�|�Q�r\u001c��_��\u0015��X'\u0004���\u0004\u0004��/�J��\u0005vg+X�\u0016�u��Iѡ\u001c��2C�\u000b������\\��D�?\u001d�\u00021�c��Œ��\u000fD%�\u0014�\u001a7h'?�$\b�Ą���Smdf\u0002��Am�\u0015������B��-��[���\\\\��]�p��.l�GWOOlA��\u0006&b!��WY9�4��|�E��ˮr4�t�|�݆�\u00052m�З��!�����,n�u\u001b��=m\u0007�M�\u0003���]\u0011[7D��u�\u0016u�I��\u00136�{���'9)!����\u0015wv\u001d��t�z�\u001a\u000b\u001d�6/lo;\u0019\u0016�gi�~D��l\u0012\u000e<��-�{\\��q\u001a���D\u0013H5���K�\fz\u0003�>�\f�+t�?9�\u0002�ǟ)D֎\u001a�F@0��3S�6υ\u0000џ�ڀl��Ђq~=�4,����-k����P\u0004Y0i�i\u001a�6���\u001d\u0007�\u000eS�\u0003ɸ�<\u001b\t���.P@��\u0019��\u0014�H�\tX�ը�/%��g+���\u0012��k\u0014'�ķ�ܑ�$��;�\u0003\u0005������DŽ2G.�\u001d-_C]�[O-�p������s\u0010���.��AX�\u0015������\u0002�p��Mӳ،%\u0015����\u0004U�1<\r\r\u0007�\u001f�ޮ�Z\u0006�B\u000e �Q�q�XC~����g\u0017\u0004\u001f��}�u�\\\u0007�����/\u0004\u0012�����\"�탎���>���\u001b���}��mi�8�d9�� ���N�i8��[�\n_\u00144|\u0005F��\u001f����*ݿ��8�D��j\u001fjY\u000bD>lf��Q/�j��\u001cc)�@\u0005\u0018>ʀ&i?�R\u0014�\u0005�Ϋ.��Ai�X�\u0016��`�.���ΐ� \u001aRz��5\r�E�\u0014\f�s�*��_��&D`�}�j�oa��T73\u0001���\u0005^PB��\u0005�\u0006�8�\u001a\u0000�\u0014 \u001cG�Ї�ģ(�nKՕ�F\u0002Xy\u0001`r[��\u0019�����}Z�P�xgV�\u0015��\u000b�d)�p)�w�E�Hɔ�\u0004D\u0013\u001ff}<��\u000ff��� �,�f��Ac�\u0015������\u0018���\u0010Xl`f�l��A��#\u0018�6{'��A�x����cp��\u001e�\u0001�\u0001݊�X�����\b��M�n9�p(��Z\u001fԨ�\u000f�AMsI��^�\u0000�\b�4X\u001bL�{�(��|���DY�%v4����t\u000fH\u001d\u000eיH���屑� ��|�>Y��e�`x\u0005W;G�AA�.�#��mG\"釋nz�+c�3����dc�+U\u0012V\u0001\u0002gK�oBR���_�JG\\*H]Q\u0014�����՟n��]�=��+�rԅf뵃b�~�q�8���<`c$\u0010TI\u0015���\u0006���6\u000b�Aw�\u0015̀��\"�/A\r����\u0006@�3�[*B���_�!-?�+\u001c���;Gm���\u0012L��e�a���ۦ��-��\u0019�\u0004�F�)�\u0000\u0003ex��\rb#א�&�#Bl\u0011\u0002r˷g\u00076�6A\u001e\u0002���r��\u0019�\u0002N\u0003\u0000�\u0016��^K��˥v�\u0017\btW��\u0013�';%���ҏD�w]p7\b$\u000e\u0005.3ć\u001f�\u001dÙ|.O9�����JR�C�_;�u�mD4h��+v��\b�;��t\u0003o:2\u000eF�M�\u001dP�lE�'��ge,l�CL��3D����\n�~jc��x�u��%�6�֨�խ�1��ez�z$*V����P�Q\u0002��\r���7��A&�n�<��ߴ���%�[�.�8���8�^����>��k�v�*v<ɥ�s�ǐ���\u001a\\\t9�&�$\u001fA�n�]n\"\u0019F�hPJ����\u0000�N�\t���`k�\u0012�\u0010t�2\f�A}�\u0015����N&��4`��s\u001a8�줩���\u0005��\u000e):��B\u001cܖϬ�2���1�Sc$юv�2m\u000fb�\u0006���^p�Jٸ�!��.!G���D��\u000f�O1���,`�6c�.��W�N)\tq\r(�����°��\"�K\u0016�\u0017�P%۫�Q+��i=�]C\u001f��\r^|%��CR�8���\u0000\n���hZ���}����X~�$Ջ2�1@�/y�3M��㥇��jFQmivM�F/\u0007\\�\u0006\u0006�2:�\u001d\rB��?1%�(��Į�\u000b�-sTW�����v�?Z�,�O�\"\u0013&\r)f�h��}\t�\u0003\r�R�{\u0013G��#rG��\u0010\\�B��\r讁�\u001f��}O�(��\u0014[��ݕR\u001aE�����x�\u0016\"!�\u0013��\u0002�NR7��^>�~\u0005����K�Gt���I^cBɎ5\n�\u0013�X\u0016�H�j��\r�˔��u�bO�#ˣ��̦��Ax�\u0015���\u0003i\u001f��]g=iR\u0017�̎-�~5V\n��\rt�/g���4UB�wc�N@ۭ��P�G�Ʉ��\\w�\u0001[�/�C�\u0019'N�c���A\u001c#ȷqIsZ�\u001c��a�\u0015���\u001a��a�\u0016\u0000�\\C�<Ֆ�\u000f?���D8�\r��7\u0001�\u0000�w����D�4\u0014�g�$�B�\u0010��I�t󯷩��g��KD�d���8\u0014Jg\u0005*\u0016Q����i`Q~5Оy\u0018w�L*�{�R�\\���\u0012ұ�@ѵў���z�\u000eu\u001bM\u0019t�5`�/�F\u0006�3��$�/�hP�t;�7�m�$�̞�g%\\�@��@�).\\Ҏ�b\u0018�>���Z^�+\nُ�\t=�w\\����$\u0007qů��\u001a�TZhneӣ�\u0004�P��0����L���J�����H��Y\u0012�֫B��q.�\f��\u001e�M��S\u0005S��?PL>E7FS�\u0006�|(y�\u001f\u0016F��Ad�\u0016\b����Q\u0007/�\b\u0019\tY\u0004\r(\u001b�\u0017��5x��1%%>��8�'��\"�^��B�\r�ռ �f�V�2X��BHݠ^]?(\u0006m�@D�\u001a�1}6ߒ�|�M`2�\u0012:\u001e�r)�\u0018�\u0001<�`���\u0004}N��L\u001cC�u-\u0016�U�%�:78k�� �H�\u001d{�'�\u0003�C�\u0002[�5�2ؙ��\u0007|��@\u0014:w�:���[**\u0015�\t�����W\u001eLͻ�\u00122�}��\u001e\u001b3\u0017i}�m{W�Lg\u000e�\u0011��S*��j:9$��>����.\u001a\u0006m\u0004AR\u0010��:��Sg0}\u001b3��9>�1���\"^Y��SL�.�4|߮\u000eW\u000fۢ�1��kf\u0000_�� �O\u0003�%4\u000b���x�\tg�n$�\u0016����s\u0010\u0006\u00176u�H�\b�X�!\u0019�3ag�\u001e�KB#�I<��n��\n��νZG\u0017窒��Bl�\u0016\u001c���\u001b�|\b�\r�\u0018�GIm��\u001f����\u0013\\�R\u0007�ن��t�\u0000�lj��pg\\�ul�����+����´ԅ�\u0017\u0017F��D���>\u0005�P)���`җ\u0013v�\u0012�����<���\u0007\u0003ڨ��J����K�\u0019�Y��\u0001R��R;�\u0003�\u0004%��\u0017��x�\b��\u0016�-�_H�ϼ\\f���\f~+\u001b\u0017<\u000f��Qq\u0018\u0010x�y�ɴR�}�p�yVD�g8�4��#\u0012�Q^�l$��g\u0014�|$g��)\u0006�~[\u001d��h�XO^�qHĉ�\\B�%�\u0013T�\rNz\u000f����\u0004�Kz�0��a��}�|�7��\u0007F��N\u0011�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006bgx��'\u0018UK�=x�l� 2��/\u000e�\u000f̸ՠ��}�̙�\u0016\u0011\u001b�z�AE�6��_�B�Vjb���\u0001\u0007b|Mb�ji�4\u001d=\u0011e\u0014\u0018\u000b�t���P��^��Q���\u0007�cގ�Н0�\u0016���\u000eė�r��\u0007\u0000\\l�E�M��$�=����:�f�\u0018\u001cA�be#�-���プ\u0018�\f�$+&��\u000e�\u001c�G?jX�(���E�1u�;\u001e��G�b�M�\u0004��7�e��\u0012��x-̃�4����\u0015���j�\u0014\u001b�\u0013�T��Q+�4G\u0013��\t\u0017`�\\]\u0011\u001ac�ʑK%���XH�� �\u0013�F\u0018)\u000e�\t\u00114��\r��_�\u0001��z3���\u0002�HEf�����+}\\�ܠ�'�\rUm��ߟ��6�E�7;z?��0aR4�}�P�U\u001c��q��b�U\u0019�G��d��A\u001a�\u00160��M(m核VC�-;�G��1I�8\u0015\u0017��\nlM8�x���Ѭv��\u0006���\u0006G@��x��b��A�\"gG�����XڠfH��;���C\u0014�\u0015\u0000@\u0001�\u000fi�mÊנ�cu\u0000�&!H��l�4���,o�;\u0001焽���������I��<\u0013͝\u0007�V᨝SAx�\u0011���A\r�\u001alШ�y��3\u001e\u001d\u0017�[�i�>ia�&\f�<+qj�_}��C�)�\u0015�@,~/uG��%�)���1w_���\u000e3\fZ�i�e��iV䟝G\u0010�\u0014���k��^β9�\n�F�X�p�6�I���\rm\u0003\u0015��\"�!,nH��O>�\r4��գA3�\u0016D��X��³k8X��\u0016��*���ǂ���\u0015�\u0010\u0011�h~\u0000\u001bS�H�#�M�ɢ��>�ֳ\b����6� 8\u0006~\u0010Q$�?�J�p���7\u0012���>\u0019\u0010��8�.Z\u0000Ӱ�-�\u000e\u0007C��a��\u0011�Ā�{;2y��tIN�\u001b�籵@[�Qf+W�Y력+w�Þ�b�ꘔ�f-|s\u0005�-G��s^�f\t�[��#�\u0000�\u00146��.\bt̠e-�I�~\nla]я*���?�V'�lz�\r\u00070�G�u'gUh\u0001Q!G���7�\u001c��yp���g2�}�\u0006��\bؒ��-R��\u0006\u0016^��[�q�\u0006�hɦ�|�\u0011��n����G�0\b\u0001�\u0017:��k|�,\u001aґ\u0017�沫G��/�F��!�;�j\u0005nq��n�����\u0012o\u0018)n\u000b�\u000fѼ\u001f)3�\u000e\u001b*��\u0017�O��3`\u000b\u0013��%�\u0003B�i���Sb����M<���J+���~H�������\u001e\u0015Ԅ�)H\u0011kк3ܫ�a0*Pj� yOMy8�fEKR\b��p�T9�� C\u0003#�\u000b��\u0005���v��6��[��s7�\\zl��6��\u0006E'��;�\u0001�\u001f\u0013�L�N=b}K�)���M�������$H�\u0007��˝�t�]\f6J����m#[\u0012@�\u0010�\u001d.���ȁ�A!�\u0016l��L�\u001a.\u0017�|2IZ�p��\b�ڨ&\u0005�ju�П1�z��L�\u0012��E��D+eu���%��%B���\u0002��@���\u0004�!�c�~n���\u0019g@\u0001�-\u0018P�/�NbQ�p�x��>�����9³X��gӡ�M��j�\u0002��ip!r[=Xyz�R�SwG)�\u0000��B\tf�*�\u000f'�-�\u0010K��z�V�vZ��%>ܡ��c\u001cb���\u0018<���t�9�y�\u0018�3j����\n@;w��j�K)k,3o��,�����?����=і�vy,ZZm��'��@:OG��k`���R��wTq�\u0014=\u001b�+�:.�\b�Q�\bM�\u0002$�\u0001��F;�����c��A(�\u0016����h�A��N�Ƅɞa�/�U3\u000f�r}\f\u001e���L�6�m;��g\u001a����͜�\u0017>:��>��D�o\u0014bX\u0006�������J�&N\u001aP��(��评\u001a\u0017+l�\u0014�\u001f<1�\u0007ŜD���Ni�,IPg��U��\u001d�@���%5\u001f2r\\|3&a:�\u0013G2�+%n\u0007B-Ve筜�m�s�+�4 \u0018\u0010�|��a`��'�\u0019�Wc�q^�\t\u0013f\u0017vԮ�Qzz�{�&�|�'9!'ә�E��)d`�v}�\u001cC�a�,|�dž�\u0014�\u00145��2V��1�S\u0002�\u0007�J0��P\u0006*;08�τY\n\"\u0004%�.�KA9`\u001f�}E5��\u0011�\"Q�y\b<�#�=ORD�\t�A&�\u0016����c��\u001e�n,/�F��]���\"�\u0006C�\t�\r�AL�7�)�\u001b���i�*�Vƒ\t��5��!@��}L\b�kݩ^B���s�\u000bޥ\u000b�[ȝ\u0015�\u001b@�E˄��GjsAo)��n1���#$\u0006��>6.�\u001c\u0016�r��l�r\u0010@%d��\u0018yPs��\u0018�c�N�w�'g\u001aqޘ�X p���\u00170^3�_�>�5���?���7߂�Ԟ��\u0000\u0002\u000e��3���\tU܇:�chx�\t~o�\n��\r\u0016�R��\u0017]�n֕n��Z�uM��7��2��Ʀ]\u0012��25�k�\u0018���w�\u0010\f͸\u0012\rF�8T\u0014md먘�j�\u0007jc`�s7f����f6%�\u0007���\b�A>�\u0016����boߚ��?����q���T�Պhd~N}���Ĭ�/�# ����t�n2�\u0013,F�.�͟\u001e�\u0000�F\u0002�\u001a�v��&�\n\u001f�W`�\r���p�8\u000f��\u0014�/��7�\u000e lB���\u001d\fk\n\u0019\u0000w�z�Yz'�\u001bο�J;\u0017�s�~|����\u0011�\u001cb���%b\u0010�\u0011���\u0007�0�:�ҿCv��ɢba�\u001a�EBS$\u0005\f\u0019�{���,�vB:�eM��\u000f\u0000\u0006���P0�\u001c\u0005cU����5%.{�\u0000O�\"��𒞌��O���\nV���<\u001b��#\u0003Eˎz��l�ž�&��W�\u001a!t\u001e�oic�\t*�#��>�j��\b]HR\u0017��k�l�\u000f�\n8ū�a,&�\u0019���.H�\u000eJ�x����,݈�A=�\u0016����bИ\u0011�s�X��(����\u000fFD��j���(@\u000b��\t�A\u001b6\u001e����i��>>\u0012\u0014\u001c\u0017#�\u0006���m|\r�+\u000f֯+b�p$��\u0005�\u0003�zY\u0006��2B�,ӹ\\�\u0003(_\"�ɦ�X�\u001d�L\u0001��t7\u0018��rH��IS�=ga�J��S�\u0001~�\u000e:/p�d2��s0�fuy6\t[d���͸��_5��ZD�b\"F��s\u001f�\u001cD�i�Y����k?p��D�R�Q\"����?9D�Pm�E\u0019�2��n��3���3��Tų�Xo�Fʚ?��|�&�ﻤϠ���\t�\r\n�����>��G�&��ED�q�RM�x�r�C��K5���\u001f�\u0003I���0\u0013��G\u0018i.>κi$#^썊�A?�\u0016Ѐ��bИ[&\u0005\b���|�(3ψ�\"�MgO ��\u000b����sŻ^\u0017�}�\u0011��X�M�/k7D�M��\u0001���\u001cC�e�����(rg\u0014���\te0\u0007��=*�\u0013\u001f�d(��+���+\u0013vb^`����/�ۇ�\u0019E�������\u000f?��\"U\t�m����N-G`�{�t�\u000e��\u0016�}�Tv�M\u0013�\u0002-�\u0000�k���Ԟ;\u00078�*��L�|\u0003N�Z�\u0000z�\u000b������\u0002Sb* �3-�\u0014\r�\u0018SS�\b\u001c\u0014[�T���B3�2��֙�Z\n�\u0007��Qp��_�w\u0006W'�GYS\u001cڶ��R\u000f��Y~i7�K\u0014�wҹ\u0007\u0017�엾W�קD�던\u001b�{�D\u0001��C���A�oIx\"���\u000e�3�\u0006��D����AS�\u0016���l�o\u0019�~G�M瘚�Ű�\u0003�L.�9���d�C嚸�J[Ӝ�\u0013�T#M�+���k��[\u0015���]���\u001c��VP.L�Z\\�����@P�*�xf��8�5���ͮ���L�\u0014\bo�5d�\u0017m�\nGD�8qhu\frO�hD/�$\u0012\u0007+)[\u0018���� ��䀞WOh(n(:&\u001e3�����1G��\u0016+��tG\u001ck���I\u0007�3\u0015%\"\t!1\u0011.��+)�]k\u0010��]���\u0010\u0002oɃ��$�UF��I�,�reG��3Rō�\u0016�Axʇ:\n�\u001f\u0012��Ǖ\u0010ҙf�\u0005e���fF�!���յ�>@�n\u000fV�(���\f��UV\u001d������\u0019�+$\u0001����y����`|>rK(Bi\u001dt�9�L���m\u0010\u0000\ndt.�E��AG�\u0016����bЙ@�a�_7\u0016\u0017�)�ڶ��,N\ri~F�\u0005\u0010w�B�2� 0���>\\�޼4��U����b�,\u0012��~pE\u0018���G�\u0000M>Vٝ}�\u0007����\tմ��5�+�*�xe\u0004\u001f7�C��n�*x�N�y\u001e�]�+2t3\u001a���\b����+\nH\\�]���jGS�C\u0006��A��}rh�yU`\"\u0002����5j|�7�h\"�\u0001T�\u0006�K����skɼ\u0001�\t�\u001d\u001e\u0016�1R���|�k��0�f\t��y�\f\u0003RF��\u001f�q��g\n���\u001a����ԩ6�6\u0013��-�5dyo�N<<-O��\\;�y,�c �\u0007��A���\u001b=�\u001d�\u000b�Z��=^�md��ð����]�&��\u001c��`�t�\u001d���BO\u001bO����Q��AB�\u0017\f���\u0017��\u001b2�\u0017\u0015\u0019Z�ȁ��@M��\u000e�0�-���1\n\u001f�C��z nb[\u001d �E��\u001c\u0017r��s��.\rUUŵ\u0016�\u0010\n��\f�Di=Ӛ���C\u0012(�ϒ�\r�j*?s�!�Ʌ,��gmniu��]��)ف�\\z�|��ze=С\u0015���\u0014�5]K�\u0005l�\u001a%{���y_��\u0019Q\u0004Q\u0013��y��i\u0001�SQ��x��xUld��+\b�x�ϳ��M�h��l�*� �R\u0004x��æ�\t)\u0014��ԧ�ɍ�G��2�z�wYB���s\r�&�c'���\u001b-\u0006��M|\u0004�$I�\u001f�\u0016Yҕ\u0002�\nG9�\u0014\u000b�(4��zN�ZN�\u0006Z�+�p�VY�؜���T��/�\u0000J�\r2\u001c�G$\r��\u0015�]$�Y2\u0012\t�A��\u0017 ���p�����B\u0000keS�,��эi��\u0005�X��wʻ/h`S�\u0007p�k��zl��\u001c��g�o�\b�Y�\u0016\u0019\u0003�{�ד�\u0012Wb(���;ףe�[��._�tK�o3V\u0016��Y\u0012���'\u001b�k\u0004����6���\u0013��}\u001c'�[)�A\u001f�����ch�\u0013�x����)ؾ6n�\u0003�/\u0010aV\u0015�;\u000e|�Ԫ )�.K�\u0003_�9�?T-Ov%y�\u0005��̝�!��h �.I�\u0016����t��ZO\u0003����rCL���Qy7�2�\b.����&�p\u0015�,񨬩��`��%1�΍]�$�G0n\u000f=gA���{l��/�0\u0018���ľ�x��\u000e�i\u0007��6����\r�\u0004�V\u001f��w�b�\u000b�\u0005QCe�X[<��3\u0003�[�&���P��S�')���6�E)V��;��H\u0003)�e\u0013�-~u\\�\fJ1�9`��U�\\\u0015E�\u0018�J�\u0002\u0006��V�f\u000b*�ȽqO��\u001c\r\u0011񵶩\u0015��\u0013�4�)]Ы�^����z}�\u0015��dJ9\"i�W�\u0011�9��\b�A2�\u00174���+3]���A���\u0013?\u0003*FH�|F��&%\u0014&8�(� \u0014������\u000fr���Z�EO]�\u0016��)搲\u0018�ܦhx�mGh����.\u0002���?��]L��\u001a����5�}�S�{\u0011�.EÚJ\u0013PO\u0001��-�MѭV�?��6�m8 v:�T��U�r!���VfɕA�\u000b�\u0012����9\u0019�@\u001fv�Υ�=�\u0001\u0013��\"o�ᄇY���^��\u001c�e0M��|��=����D�W�:N\u0017>��D�..���;�F\n\\7v\u0011�^O���S�\nw���\u0012z\t�AC�\u0017H���\u001cw[dА3���CP�J&�\u0015�&X\u0000%FW]E��ܤW��]�3�}�ln�?<��m*�T��޳pD��\u0017u\b�S�'&Qt��~LK�\u0019��Y:%�0��Jm�L@>��s͡�Z��\u0017�\u0013�{��Z�\u001b%8���\u000e�J�6�g�����b��}�+�6��\u0007o\u0003/�C���]�\u001c\u0012�ų��\u0005�\u0003��;���S��\f�2\u0003����$�������=JQeE_އA\u0011�Ca:��\t�\u001c�Cx, r\t�<��Ԃ\u000f�\u000f_d��&x�'\f�Z���5�\u00179C�+�\u0016e�u�3�!��%\u001e\fi�I9i��k�{~�,\u000b����3�T}_Y��m�H��o�������9�\u001f�m���\u0011)婿o2�\n�AI�\u0017\\���\\0�\u0001�ڙ_F)����l�n\u001c�\u0004�b�\u00019G�\u0003����ފZ���\n����^�m�#IQ�����\f#�\u0005�\u0006���k�KgM�C)��\u001d����홒cI�\u0001(uL�,�\r:�\u0003��w���lR�Ӝ�eV�\\�$*����$s�Jb�C�\u0014��04R�])q�%�2`\u0019��HE�pB�\u0000�S�ٶu�\t�ʹL�cg�Cy�\u001d�Ӥ_���\u001f\u0003��\u0001A�DM�\u001b����:���@�W\u0019e�]\u0000\u001d�=�\u000f��\n��;\"g�(\t�\u0003�˹3x�O�\u0000\u0003$���=\u001f˵ă\u0018`\\\u0003�S��T؝�\u000e(�\u001ee\n|�\u0013\bkO�?�Y��@�\u000b(\r�`�\u0007�D�R�'z��K�sz-&O{�\\�Q4t�\n2ǂ=پ]l���\f�AJ�\u0017p���et�\u001b��x����qEK\n(\u0015Ǚ[L�ac{��/\f�J�O��aM��В��鯈,E�~iO���s#�� ���\u0003���9&�(\u000e��6�Rѻ\u0002�\u000e�~-M�\u001e\\\u00178Q�5�=(\t��E\t\u0006�,���v\u0017\u000fo� ,�D����� 8�H\u0011��\u0007��\u0015\u001f��`�8%�\u0017As���!�a�\u000e�)\u0011��$�(35Ɠ\u0001��*��#R岫N�\u000b)?.�\u0001�\u000e��r�Z��GV٫�������o�(n(c��`>\u0001r^�\u0001�\rw%&��E^�5#�Oe�#��\u0013#��k;�5�5 ��8���\u0001�3yԚ\u0007?�H�*p��S\u0017�;�vbt���Ǻt�\b�:����x@J�\u000b;�\u0000�v����/q��\u0010\tZp2\f�AK�\u0017����\u0011�U\f��\u0014\u0003\u0006u���e�G�:Q%�\u0017\u0011�\u001b\u0016R��kS\u001f�)\u0012轺��]�\f�J\u000f�M���m�aW�����`\u001c�\u001b�OvV+\u000e�\f��\b��\u00008���%[�#(m��l�`�\u000f¿*\u0014��ĂoK}�4 N�\u0003�U-��G�%\u0006��Z\u0014�a����(\u001e�8d�\\D\u000f01��f�[-�wՐ_4���=\u0007�=��o���.\u00124�O��wn��q��L\"T���Uzڂ�0/\"}�h�Ǧg�̺�N�{�\u001d(V��OOƈ\u0004��\u0006[�\r%�\u0015c��\u000bu��>Q(�?ؗ�f\u001dO�\\\u000e���\u001f��Z��$\f�\u0007\u0018x�D?Z\u0000����(\u001e�ɳ����X�2��1d^0�\u000e>\u001c>JҕЭ�\\U��t��S��\u001609��AM�\u0017����\\�/*&�'[��^�M\n�C\u0019\u0015����U�\u0011�\u0014�#]Vs ��\u0004�&*���J��7\u0013g��__��g9\u0001��WF\u0014��\u0002�����,�7�U$呝e������;�\u001b�Hw�@\n0~\u0007aZ� $F�\u0014a3�=\u0005�/\u0002���X\u0007N��ّ- ��ڡk�\n\u001f\u0014]�ǫF��Vc&�\u0004�\u0001�g���׆�1�\\�ʶ���]p\u0002�����\u0006���+�H6[��b�ۛ�D\u0002�л$�42~C*�\u0014ڇ���D�M'5\u0014�\u0010����,�Ӌ�گ�������V\ng\u000ekc�3�)�Ǔ|��� b\u000f\u0015{�\"\u0013&g\u0005�E)9�ȉ��_�z.IU1�ǹ\u000b\u001c1�\u0003H���\u0007#�\u0013\rꜢr\u0007���\\,�lB`�*ۄ���o\u0006a򌈣A;�\u0017����[S��\f�}�X�B�\u0013\u0011{�\u001f\u0010�t�\u0001\u000e>\u001d\f\u001e�U�3\u000bd�\u000f�\u001c&\\^����Q1ф���k��/��&��`cN\u001bb^B�K���\u00180\u0007�\u000bT[q��<��Q��y�\u0007M�\n��:R�#���\u0019N�IT�d(ӑ#^���\u000e��%�g�\u001a��?(���sL>8qn��\u0014��wKkڋ�R��p��p�\u0018�<\u0015\nɹB=\u0002�n���%�\t\u000f�Hҿw�\bMX�z�'s����~t��{�\u0003��t�\f��ܠ�i\u001b\u0016���\r��'<�\u000ef!�&���m�a����^�;�6!����~wTP@mL�\t�������\u000eL�꠯��`�{}�$<\u001e)\u0003��\u001c�\u001e!�SӴ�cd=���\n/\n �\t�AU�\u0017����\u0013�t�פG�d���Se��F�<�a�\u0015�d$\f�v\t�\r���G\u0000Z�vө��̚P-Y��\u000656�](�hlG n3\u0005)\u0017��}�3x�Ц\u0017��+�{�$\u000ez\u000b\u0016I\u0017���ڦ�w�����\u0017��\u0014\u0014\"�\u0017�m�-f\u0011�2B����\tB��\u000f�\u0015*j0�`�w\u0015�.\u0014�y���U\u0004cw���m�m�_���lM�\u001a1���\u0012\u0005��ݩ?�h\r\u0010���.�T'���92ߡyS\u001fw�4��󉊋zn���d*��B���oy$h_��X�0��D\u000e|��\u0005�\u0000\f�}�>>#�2+)2��Q�<�E�L\u001cb����0��\u0017�*c�\u0001������Y�\u0015~��Xԣ�*���.�Hr��?�Hp-m\r�$�e�\u0000\u000e�t�\t\b�AU�\u0017Ԁ��1\u0003���G�2\u001a�\f!�3��CR?�.\u0014���(3\"����3��g}�,���\u001d�Y�sp��y�L�\u001b�l�\u0007�B\u0006\u0019^��\u000f�]񷱫\u001b~�\u0013D�����\u0017�����§a\n�Ae�\u0017������Pʠ�J���En>\u000b\r�N��:J\u0001�7\"�\u0012Լ�\u000f�F\u001a��FM;�G_N\t�\u0017�t�Գ���F\f��|8�\u0019 �����\u0001a�Tc\u001a��݉���'\u0014K��d�e'�Bc$��\u001c��U�Sx�B\u001cc��@Է�\u000et�T�C�)(\u0002\u0001\"9��Iݞ���yߤ����@����\u0017���5�� �\u0007��\u000e�Q�\"�\u0019Ɯ��z��}A�\u001b�\u0018������#x��x�̠��kO\u0004��)Z�wZ��:�Xbb\u0002�\u0011Ó\u001558�6߿� 7�?��\u001f���;W\u0003�5���������\u0000f�忽\u000f.�1a\u0007�fcr�><�\u001a;�\u0004=�b�s�\u000ek2�!��ژ!���/Xϵ��\\B�S6�1�@1���\u0018���*�%{�d�Vn~\u001d��\u0003k�5�E\u0017�\u001ev\u001e\u0019��A^�\u0017����1\u0003�$\u0014�&�\n�T�\u0002��\n\u001c.�)\"w�i���L\b�ُ�pX���h\u001dAU'\u0003�+�–}�\bU�qI�}`C,,:\b��B)\u000b2��\u000b{s@l\u0000/���G\u000f�Z-y�m\u001b�\u001f�p�b\u0003���5\u0002\u0013�A?~.�\u001e�m&ػ5��p�\u0015�\u0016�+�s\u00147�`I�5;�?\u0006n�<�a\u000e��k���\u001c4S'�zs������=)騹�\u001b�!\u001a��w-�\f��w�\u0018c�\u0004>�W'�\u0017O)+��e�\u001f�si{�\rG*j\\�\u000bW\u0005��M�G�{ ���i܅\u000f�\u00024���\bGbT\u001f�V�+\u0010<57\r�\f\u001b\u0002�\u0019�)�!u�+�\u001d\u001eŋ�\u000e�>\u001a��4�V�v+���\u0015\u001c_U�鮎\u0013\u0002ڇl�\u0012�q�9\u0017�՟Ҧ7/Hm\u000b\u001d�\u0019\u0006\n\u001d�����l\u0010�/�#AA�fp�B\r�AF�\u0018\u0010���iݫbPb軈+q�_\u0019\u0018�/�H�\u000eN�\u00156��ݳ=�]�^s>!�_\u001e��h\u0015oӏM\u000f\u0015��C\u0014ҡN\u001d\u0013�\u0017�@�����\u001bnģ�l@���$�>ZfN��1���rœ��y��edpq�g�7PWT�o��V#��\u00046��'\b\u000e��8�\u0000�-�r��\u001e\u0018��\u0004�����ב�\u0011�0A�\u000f��D��5��X\u000f�\u0000���3N�hן�e73� �ѫ��v�)6}\u0006_<�\u0003/�\u001f'�'6c\u0004\r��f��\u0005��\u0005\r䏑��\u0013]�v�`�\u000b\u000b���q��X\u0000\u001dG={rv�K�;��R�L��\t��b����7KG�V�\u0000� ��GX��\u0016��\u0016���8w\u0002-^�\u0011��.�s�F�\u0018.\u0012�O�& ���y��A��\u0018$��}d�Q.�,?\t��\u00132�\"��8#V_~�w��Xs\u0016���+A\u0003��'�\u00168-��/�\u001b h0���5c\u0003^c��\u001c�f�\u0012��F\u001e\b\u0001�\\:-\"��{q��\\s��w�C\\��A\u0019�e�v�F$���\u0010\u0017\u0003\u0001�x�\u0013��v\u0012D�9�}{q9��8\u0006�I�Vu<�\u001e������HF\u0012\"�C�Ǫ���b���\u001cŧ8$�;;.;���\u0012)\u0015\u0002\u001f2��!���\u0000w}�%\u0014\u0003\u000f/�:��=�\u0015�\u0006D�\r��\u0017)a\u0006����W7\u0006�n��\u001b�|Y�s�Z�Ys�4�t�\b�E\u0003FG%���ޢ������ݐ��H\u001d�\u0007�f\u001d�\u0015Z\u0001����=H��͟B;?�y\u000fG�B[�K'V�:��~\u0004��\u000bAY\n%U��\u0002�3Ȕ}���\u000bz��LGZ\u0019\t�V&�\u0014��\u0000J��u\u0004t~��JE��|�)\u0004w ���)��\u0017�S�U+����\u001f�Ȣ\u0013AոZ�\u0000\u0013O����\"86 \u0000b�Q8�\"6p\u001c�ǣA\u001b�\u00188��M���\u0010��M�ƳKE\u000b�e\u0016a$T��w9%��A�瘜\u000f\u0002�\u0003u�\u000bck��0�J�y�\u0007��g\u001a\u0004qOL��e�� ~:�\u001a�y'Ix���]��\u0014�\u0012������|�/pvauL][\u0007�Ha�\u0000[ϝ)VHlm?�R����}!\f�iM<�\u0012����Yd�*y���9@y�Ț��\u0006j��ˣ��r�l��!�r�\u0012�\u0011\r��\u00076� ��\u001f£P�\u00177��\u0000ۨ�����1sMiWFDž����\u0012t��Ua+�\u001d�o�Tw�u�u���<�Ħx�t�B�\b[Q\nz�U�'��#�@Q�\u0018>��m��\u000b��5���]m�A8�\u0018L��X������7\u001dT\u0010]���K�\u0005�H\u001d)m�I�oj���&\"�ڭR\b\b�\u001d��\u0003�z��\u0003W� \u0019��7 ./=yq9m�:�C\u0000��t�ӁK�����}'�x����-\\�\\��?���\u000e]�!4>В!<�Q$���B����^ρ�{!��\u000e��)\u0005�v�p�W�\u000f�\u0018��|�EB����s�\r.V$�'��/\rm��⽨\u0001\b,\f<�%�B�\u0005)�\u0013M��}�J��\u0005*�L��T�B\u001b)���M7�Φr���Ar�d]�[+i-��6־��_J԰�ظPwkf�q��7���k�3%؂\u0010:��<\u0006ѳ\u0004���u�������'��=�$��mn��.�Y�h�LI8C�A\u0019�\u0018`���\u0013r�\u0017s_B\u0006\b�:\u0012����\u0001N�\u0011X��2�t\u001cK,�����&�Q#�Ck��Gm�\u000b\"�,�u�*�\u000euI�wCV\f�\u0014]��ղ���[�|kk�p�\f�}����\r�����������ŅO�` � ���3�,I�.�\u0002\n�Gh$Ԑ�\n�\\M�V���+�i`�X�JOq�Qk��zn\u00055�\u001c�HA=o�?\u000bl�}��ؤ\t\u001c+��z���̬�e�f�`�)�lDC�W��:��ԡ�`��\u000eW��\u0005���kO\u0011Ѿg�fR$\u0014�!`.,4DkMkD\u0010�q9\b�K�ku\u000f�\\m���W\u0014�\u0013\u001a�C\u000fq��\u0007���A+�\u0018t��M(r��\u0015:�ݯ�*�*3�$O�\u000b��\u0019�I�;��\u0016|]�`�U������Z�\u0011�{+Ç\u0017�w�=i;\u0016�/�\\]��-f�\u000e�^j�-�ss�g�c\u0003!���\\�M�\u0010�K\"������ھ�O\u0001`�^�� ����B\u0018���\u0019�Q�6\u001b��Ys\u000f+y�\u0017,�sN#����ѧTV!\n�>�o�r�ߠ�Ԡ\r��Q\u0006\"�3c�\r�j&~혪ᮢ�\u0006��{#\u001eؤN��X��'ʥ+��8KX�K�k��8�@�!�z{��\nG\u0011��\b#�#���3\u001aͦh�V��Α�#~��R�~N�XCH\u0005�\u0000Cc��5\f:��[� \u001a,\u0014\u001e���ө컾�A+�\u0018����bd)*4�\u00170\u000f�\u0007.��)���*�ٔ�Z�6�!\r�5�r\u001aA�IУ:��gÍf�\u0007��\f��Z\u0001��a\u001c�\u001cY���ݫ��prt��\u0010\u0006۾������BB}[̦dK�����S֗�􊟊������2\u0002k퍬�\r���M\fa5�Yd�\u000e�[j�Z�TDq75IW�^.%l�l��v�o\u001d7H\u000e}:�Z5]C\u00192�V��4���f�\u0004�_�O��䞾 �� ��F>���K_��\u0007�ӳL�ĄV�e�\u0017�r\u0002�2\u0012\u001bd\u001eߏ��*٣\\�*)\u0005E�o\u0011��Ω� �2�\u001e�/�\u0016$��`�Pi\u0005�\u0012G�\u000b\bc�%E\u0000ϴq���P>\n��\r�A+�\u0018����c�ێ�/���=�ȯ�<�h\u000e΀�\u0003�\n+q?����4\r�mi\u0007\nc6��0�wI01!0z|�X��p8\u000b~\\\u000e?�ټ2��3Qf����l�Em]\"(\u0015O4�=Z�4�\u0006����,l?f�<�:�\u000f�ܛ!��\u0012�F\u00124��\u0013{�\u0019�q=H���ï=A�°�DL�\u001dC\u0003�Ɩn�r$Ѻ�c\u0015z�o\t\u0004��y��c\u0010$\u000f��%�N���\u0007\u0018�\u0002�9��|��xC�8���U,�p��\rӍ\u001e���[C����p���@0{�g�ܴ��!�aO��qԄm�!\u0015\u001dL<����S�ˮ��\b��\t�AO�\u0018Ā��l��͙��3�\u0014C|u�>c�' ��?����\u0006��\u0000�ΐQ�\u0019\u001b�j�%�KS�\u000f6�D9��\u00142$.p��tn{CT�\u0002A�9�It��.t\u001d�\u0000�\u000fO��p��˄.�ei�`1lw�@?/�\u0002�t��\u0016+I\u0000�%U�r��r�/\u0014�)~��Z�BHLJ\u001d�\u001c�>\u000eU9s��c姳�\u0014�k�4� ��\u0018D[L\u001e��\u0011\u0018�\u001e>`�gc�G?\u000bt�\"\u0006.�s\n_�\u0018�d���z!u'0q\u0013m���\u0013��;'{ܮk�Y�kT~p�O9$�\u0015�./oڣAC�\u0018��L�\u0004�&n)c�%\u0011����NQw%7T�}i–�l9KK+m݃\u000brI%\u001a�\u0000�v����2���Z(�Z\u001dN�v�֝�*�ա��'H���8 {\u0018#���\u000b7#nk5\u0005 �+�$��Ҍ�<����\b?�O�Պ\u0011�\u0002 /\"6�]ԆТ���U9�IbQ(^L)~��\u0017Dr&�e�S\\��z�jC\\B$dF���b^y4y�K���z�Fu=�A�\u001d���\"��1Ȓ�`��?\u0011m`���_�2��)�z_���X\u0017����[@c���M�\tG�\u000e\tOlN\u001cDŽ��Z\n\b�\\6�J�N��J3׏�B�\u001f����\\�6��L�|��3�\u0003uƄ�cP�\u000f�¾h\u0004���-\u001f�⁻Pr�ęQ���ܼ.�A9�\u0019\u0000��L�Zx��u'\u001a����Ř0%*uXh\u0011㎅(�I�{\u0003\f�\u0012�kZ=D�V�{{�y\u001b��Aظ�W\u0017�\u001b�=�\u0000}��7\tQl\"Ð;e~�a{�dg\u000f��y��?���r�\nI�f\u0001�ZR\u0003�\u0007kF$��\u0013\u0005\u0019\u0005e^��L��)���P�{\f׶^˰9$l-ق��u�Dq��\u0010g\u001d�QQ\u0011I\u001f!�^�*�R�:YY^\u0004�^Tn�ˮb�J�P�\u0007�\u0015��uԘG˜\u0003\u0000��\u0013\u0007\u0019�E(�Vă*�s:��A\u0015�B\u001b{��S=�\u0012H��B�Aw�\u0011}��ٽfܷ��к;�Nգ��g\r�p��X�(��#�\u0017�g����\f*:WQ|SB��Pr\u0014�b,\u0018�{S���F\u0013��S�ѣB\u000f�\u0019\u0014��}[J'\"�3-#1\u0016ǒ���h\u0017D)���lhbX%�3r��\u0015��7cT7f��'\u0018w8���\u0012�nY��&n\u0003t\f�͙\u0016��\u000e\\k��\u0013�8���:qg�����\u0002j��R[�7\u0014I�\u000e�\r9��\u001f\u0015yo\"��,\u0018(�����Ʀ8��Uq[q�wN���'��dRY����\"���A'�\u0019(��M\u0017|����p����88n�T�y���].�im\u001a��� �O^d�t�Ylu�ӕh��ы:YH�K\u0006�y���b.�!�\f�\u0006kˇ�\u0003�u\n�1��&푭8��@_\n�\u0002`@�4Kf�c�u�w�\u001f\u000b:j�\u0011;Tނ���\u0012\u0013\u0003\u0012��o�i�\u0004�t���\fzF��-̋��rgՋ���>�Șy�k̝\u001d��㙃7�)��i�\b�G M��\"v5L\u0013��$�=\u0014ⓡ�Jo����ߙ���e\u0014\u0006�UXq��˱�\u0001X��f�x�%\t\u0000���Nt�\u000b񧍥�\rm`j0Z�\u000bs���?���<�󅏹%ys��\u0014���\u0001�}���OR\u0015'�B�ɣA\u001c�\u0019<��MYӱ�߁�\u001bS�'���b$���xp�D}���gʊ=v��\u001b\u000fk!��ڀ￾h��U\\�\u0016w�_}u���'G����@�5��n�{�F\u001d�:���\"���\u001e��S\u001a\u0012!j\u0013s�����\u0016��!\u0019��\r0c\u0002L��\u001bE���RC��\u0011�sMG�7}_��\u0004\rz�dc]\u0012�0h\n��;����Z���P�D�]�\u0019�N4!\u001d�?l�hb��nE3kjϤ�Ӕ�Qؑ{n��˓}\u001eZ)\u0002ԓ&s�\u001ce�T>�\u000b3�=DR\u0019_���!چP�,\u0001���\\?B(�Gl�r��#�<\u0016o���i��\u001e��Df��/\u0004 \u000f\u001fx���5�AG�\u0019P��L�pK~�����\u0002qG�\u0013G�],b\t\r\u001c��sL0�\u000b�_S�e�j��\u000e�\u0015H�\u0005���\"�!&����j��&�B\u001c�����n\tDu�0���\u0016���4���R\u001eЄ�Ο0ں_n\u000b�ufY��x[\u0001\u000b\u0006�u�#���*�D�D��׌��G��&���b̈���N��UpR��ج�Q\u0016uEN\u0003\u0007�+\\�������\r�G�~\u0005�lk��r�8*Vl��MT&���}\u001f\u001c.�C�ߡ\ftB���\u0010���[\u0003�z��A+E~����w\u000b2�贇�\"~��ȿ\u0006\u001d-���'m���\u0000���\u001chz���̫��RF39�q6�U�.,���\u0005&�:{���FV��Y*�\b�m\"@\b\r˃����x��A)�\u0019d���O����\u001c�\u0011�_\u0003X\u0012�!�\u000b�56NP0�\u000e��\u0003�Xk\u0017]�R9.�֑[5�6Q���v\u0005�Y���W�rL�\u0013\u000e\u0014yclc'a\u001b\u0005ӗ�Hy\u000eb\u0017o�>�Ê;�\u0004�\u001ev\u0019�j3�o9Z�\u0012\u001c���~']yZ�\u0016�\u001f�O��n�P�����:<����8�\u0007�F�B���\bG��q��\"~���M�n\u001c��\u0016����\b�f�ȍ�!�A@U�\u0011�\u000f\u0006�<\\tj\u0013\u001b�@�뒿����\u000e�(�]���W�D�yfh\u0000{��=Gр�^��?�fZ��\u0004ۨ�u@�\u001e��lӌ����\u001a��F������R��W5��м���\u0012ޘܪ���s�6��6�JPH��\u0007��3�MeFE�A-�\u0019���L���U8�\u001cT�R��E��z\u0013�E$0��A\u000f�rK\u0002��;J\u000e\u0002���=2����\\7ԨO�s\u0012�\u0000����3��qg\u000b���������O��!\u001frJ�9�\u001e'�\u0002�\u001b\u0018��\u000f�&A\u0014�٘*|e�����Sn��*̞�VP��|��!W[��A�������\u00159𲒜0\u0004P��\u0018T���\u000e���i��\u0019Z�\u0010�\u001dĬE�L\"B��D\u0004\u001a�\u0015�n�N]|�&i�\\U����q�F\u0000#�����A/�\u0019���۸�0�f���V\u0007�](J4��:::f�\u0002\u0007\u001dP۶�~��_�ˮ4q�T�\u0016(�C¢\u0019��}yS�9\u0001��P�\\Z(�+$U\u001d�uQ(]���勪�\u0001d�'Mt�\"^��\u0016\u0010��~��I}s��\u0006$40\u0002�}�`��k�vg7�O6�B��29>\u0017DQ��9�Z�@J\tU��G�6�A�؄�/��\u0005�I�m��v�!\u0013\u001d\u0005�]��j\u0011�\u000f�����V�YO\"FF�<�����vO'��\u0003�=�>\u0001\ty��?h)\u00037�s%cMaH\u0015\u0013\u001f\\\u0007y\u0013\nϼ�\u0018��u\u0007#]z^�Ƚ'�{A�ͳ��s�\u000e�HR}(���t\b9\u001de���0|\u0011.Ѷ�\t?�\u0015��ᇶ�-�A0�\u0019Ȁ�L�ԯV��L�[ u\f@���\u001aV!�*i\u001f-|c��%�\u0004��/o�\u0007�C�'\u0007�uԽE�j\tT � ��b\u0015���6�J'y�`�Qnw\u000f�<�W+�\u0012�Z�/\u0000�1���r�>�=Ep��>Ԧvͷk\rr\"ܓ\u0001lqH��Ѧ��\u0011�`��<ƇY�\u0018<�8]�o�b�\u00001�1�uX�NB\u001a��'Py+S&��!\u0011%M{�mش_Ej�$U�\u0015\u0010\u0010P��5�\u001c�А\f;k w(\u0006�t�JNh�\u0019�u�gU\u0013~Q��)�?�O\u0002`�ԣ��\u0015p:F�\u001b\u0013��L\u0013��qA\u0007v�FѶ4���~�-�6�A%�\u0019܀�M&YS3��H0L��Wt\\[��\u0000�}l96g\u0018�}6\u0011�}Pj�����s�>�\u0005�(��,l��*\u000e�UrR��1\u0018JNj(gM3a��p���W�(7ƽ@ޮ,�R��%�;�Tq�3��\u0007=[|\u0006�\u0017%^��C\u0006\u0001#��TX6��bR�M�d�J\n�C)EF\u0012�Y Fߎ7\u0012H\u0006I��d�lOPf|���# XЈ>eEf�\u001e��P#�\u0017�0��^�F�\u001f���)\u0012*��@ήd5Wo\u0012�\u001c\u0006ő�\u0002�o\u000e\u001e��SK`�<�S\u0011\u0010`��\u000f\u001f���W�����\"y�i�(�U��%����\u0015c�ŤI��`�2�Qr\u001c�Zw�\u001c��@M�\u0018�����A\u001b�\u0019���MY��>V뀫D��F#h��oј].��$�*hN�0j\u0004�=5\u0018�n఍\u0012\u0000.�C�y4\r\u0017_�\u00112Ƨ_�\u0015F[�p_p'�y�2��9��ɕ�M���\u000b@\u0005�x���\u0017��l\"�\u001b�\u0017\u001a�\u0011�\u0003\n�o�G�\u0011�\n���6TGE\u0005l�\u0010^Th�\u00031�\u0011��m6%�4W�\u001f�֯��\u0017�\\u\u0006�\u0010z\u0011�ϑ݅��\u0003I83�5�\u0000��u��u���hBѧ����͢ebpun\u000e������u���\b�%ag�gB\u0016Zd��se�?j\u0013+\u001b,��c[��{>��\tPe|\u001f��eS\n|f����d��D��������C\u0014�A]�\u001a\u0004��{\u000b�+��)��i�~V\"K/KPQ���䒟\u0012e.*�\u0004��4��b}�-{~��I/1yr\u0005Y̍�<��y˙K^j��}���\u0000\u001b�x��Ny��\u000b���W\u0011\u0019�����\u001f�\r��\u001cP�*�_\n�|)`\r%b\u000e\u0005�Ys����\u001cr:N��\u001e\u001a�\u0012�Ǜ�`1��Q9�>\\\u000b�>�1\u0017��\u000e\u0007\u001aU���\u0007X�ǻ|J��\u00110��}��\tU��?���u���\u0018KK�!�5Z�`\u0010�\u0002��ʃ��\t��0[LZA\u000667�{\u0002T��kX�w��vp��6t\u0002[�c��7�\u001d�\u001c�x�\u0006�А%@�3��u���Gj%��h\u000fX�ȴc+k�\u0003\\x�p���\u00168�S7z�>\u0001�\u0010\u0000\u0019mF<7�f�!�EqA'�2*���`�\u0007��\b\u0012�~iLy\u001aJ��\u0015�\u0003��\u0005F&\u001e��`�\u0000C�^��O�J�\u000eY\u0010\u0018��B.^/�\u0010cJ/ A�\u0002GfWqh�Iݏ�p�8y��z\u0010�1\u0013��Q\u0000�Ka,z\u000e����[ǹ/�H-M�l���n�[�+f<\u000f$g�\u0001�\b�p��\rŗ�\n��GO�Zz��Ƥ\u0010I���\u0002�}\"�)\u0007Qf<�D�U�Цf&n���!��\u001d��\rr]��a\u0005H�`�/\u0005��\n\b����\tqt��س��\u001f\u0004d���\u0002� \u0015����bs��\u0006+�otT(��GV�\"l��<�\u0000���\u0003.�a1}�\f����M{&�\u0012*i��)�M_*w;��\u0016\u0015���1��81�ӂ\u001cv�J���\u0014{�3\u0012�'�~�\u0017\u001f����>[�*��L6Wr��M'(p�JjE\u0002uM_ӡ\u0000\u001d�\u0011��\u0013ZC��$vw�]�u�)dtp����Y�S�Q~L�aP2\f�\\�˳\u0017�m�\t\u0000�V\u001c\u0001k\"G�A\u0015�\u001a@��XеH�]���r�����\u0019�R\r_���\n��}��R\u0012��*ad��3�H\u0012\u00125�\"\fQ��y�I�\t�E!��\u001f\u0001YK�\f\u0019z�i���r�K�\u001bK@����W�1�\u0005�\u0011�sښH\f��G\u0019Q�oa��$��Oq�[|��\u0000Y�o(�H�mÂ\u001f�\f^��u�ϩRRv,��6\b�\u001e ��\u001eI\\��/��\u000fN\u0010d�4:j:i�vL\\�K*V�?\u0017�͓��\u0012\u001b�\u0011_������\u0004�ߙl�U�����i&z��B�x<��\u0017\u0012e�\u0019�\u000e�h:ŷr��#�qq(�ߚi�>cM�ym� 6��\n��\u001ae��A\"�\u001aT��X��\u00146[L[�\u0013x=<�`�!W�\u0012�|�t��d\u001a����}�~gǰ'\rp�\u0000�3Rx<�A�^~��]eZ�}9\u000f�D$�\u001e\u0013�%H�9\\��e'\u001e�!BHq%'C�Ȝ��4_C�7\u0011W��l\u0000D�͜�h��9d2KhL��F�\u000b)]\u000b�N~Q��\u0012���lÅ�Yx\no\\��\u0018�b7BG\u0004.��D\u00068\f[��M0�P9j����#�2�\u0019m�]s���x�r�}���,�+�'[*U4�z}�R\u001a�y��b����ł\u0017\u0000���ȕ�)���,��\u0014���x�{\u0010؃?m�m(�\u0004\u0000܌��\u001fk��A\u001f�\u001ah��L�Hl\"�\u001f�>�\u00167\u0012�9�IB\u0019a\u001c�\u001fQ�K���\u0012E�����i>[�\u0004V٤�6�Z#��g�i�T�j�.M�.���{q��)f\u0016A�\u0013�.\u0018�1\u0018!\u0016 `�v)�/�\u0017�>�f\u001e�m��ު%\u000f[�(}����>�\u0000D�r\u001bA�n��$3�#]�~�\t�kVQC\u0006\u0010\fA\u001d\u0002��P\b�\r�nT�gY�x=t�7���\u0015q5��\u0016�i\u000e���*�j�\u001bOV�ᎅjL��?�����v��;�;O\u0016��Q�\u001c\u0003\r\u000f�q7�o�\u0015�cE���p\u0006.�x�\u0010Ԟ�M(��\n\u0013{���-dB��\u0017�o��k�$\u0012$�w�\u001f� y�;{T-�A\u0013�\u001a|��L�����ٲ�\u000f\u0002�^����a:�\u000e��\u000f�G\u0007��tL�\u001f��b���D�݃�Z\u0003��Y���\u0002�e�\u00027\u0002W�T)�t脅���L\u0007�@\r���$�\u0005ϳz\u00163���\u0016���k.�\ty�\u001f���'�]gf�LƗ3�D�Q�Y\u0011&��\u001eg6�(�\u0019@\u0000\u0012����\r|��\u001e��A\u0013�\u001a����\u0015!��\r����,LHZ�%wx)~RW/f\u0019Y\u0011\u0016n�V\u0017I�;��J���g�̶-� ��4\u0011/k᫦\u0013\u000e�v�����2^\u0006���\u001f\u0003 �5J��\u000e&�O&/:v���6�OT�\fv��h*�\u001f�<�����,bK��_��\u0013�'VQ�#\u001d\u0004*p����=\u0000Pȧ��\u0013��\ty�x���מ>\u0014\u0006ԥ:\\��~\u0004؀����J�Qֱ\n����\u0015s�g읦x�^?4\u0017OS����l^�<��t��<�q�$~�9\u000e\u0011ER��|�}{`1+V\u0018YR]�Pn-�\u000e=테�j�c؅�\u001e�RX��ɘ\u001a\u000f���T|�����y`g�\r�\r�\u0017Z�\u00023�DO�@!��T!�{پ�9c^\u001e�)�H�-���W����V�\u001f�㿁0�f�Z��ͺ�,':\u001fg+\u0015�P\u000b\u001d��N�Xn�\u001aԁ�\u0012�HɊur�a�C��'��kM�d�Ur���5z{U�q�-̹���C�'\u0017�6�V\u001d�Ѩ�==�) Xn�(�\u0013��\\�U\u0007>��\t���\u0004�\u0011rn��\n4Gk\\omZA�_����rH��A\u000e�\u001a����œ隊��\u001a>��\u0002?<�%��;~\u0016�!\u000e�ކ;y��鏺��Y��TY����V\n:�S�zN����d�O��[�F�\b\u001d\u0010\u001a��������㞴�>��nu\u0002s\u000enR(c��s-��;_�\u001c����\u0015�T���眓9�\u000f�͐zoa\u0004M����W\u0000��g��~r��+<\\m�_ƅ`І�ϳ��L>��9�]I���@�2V�^��bBʹ�\u0015\u0017\r�\u0014�E=�X6e��P\u0000����@C�tZm�� ��:�\u000e��&�\u0000￱����<\\��W\u0004�YLCc�*�n%�����H��ݷX��A\u0018�\u001à��\f�\u0019�(Q\u001c�E�D�M\u001c\u0013ŁǺez\u0010 Dǻ\u001d�\u0010�ӵ�QV;/*\u0015�;�Ov{<�\t��n\u0015|\u0012\u0014�\u000bO\u001a���k\tfB��@�����\u001f\u0011Sw��`dK�lW=�����`��S\u0004��6�\"�2\f0a�\u0010���9@�c�^�K�����%�\u0011�2�̫���[cR\u0019�]���NZ̤�eE}�b��&Y�`|��\u0018�+\u0015��L�����Ͳ\u001b(\u0003n���1Z���܎\u0002��3\bND&�S�z����1�x\u001d;m0\u001a\t$��?���\u0001�22]���9M���5�(�A�=��x\u0013�$`�Uy�\u0015B�,L��ۦ\"����A$�\u001a���K�S\u000f�'/⽐r(\nۺ�@��e\u000e�\u0004���<�g�>��\u000e��\u001f�[���A�\u000417A!]\rW_�i��\tSJ�\"3x8��_B ��`��7��Uc�1�q�\u0007a�tC���������O[�c�TH�D\u0016gZ�? \t�\n5R�>Ӻ��\t�F���B\u0002,�O�?�4ÓmҾ�\u0007�p\u001fdЧ6\u001fy�u�<�����������\"o]����;�؋R@���J^&w��(sh��A$�\u001a�������\u0012���p�\u0018.K�\u0001�5/\u000fQ&���\u0018V\u000b*P\u0007���t�\u000fq\u0019��F������\u0005rB��\n�/g��y?7\u000f�s���*=��<\u001f�\u0017��\u001bh\b.;\u0000-0��ޢ�E\rr��m\u0001�w�[2X��F\u0005�F@*N�/\u0006@�+S��\u001d�\u0012U4\u0000?R'C��\u0000�GOx?%H���a\b���3#�#(���\u001f=+:�VBU\u0006�~\u0005Ǚ;\u0019�$��<\u0017\u001d�\u001e1�d�M�h2���'\u0001L@>z\u0010��AP^^ȧc\n�QW��Q�-Xy�2�\u0013�_\u0004�?1MՖ`68�� \u0019Ne ��|��\u0000��\u0005��\u0015�\t|g�ݿ\u0000�t���[W\\`x���䂣A��\u001b\b��}b�2�G�]�n��N���ɶ��\t�L/‘�K�0�\u001f:M\u0001�d/�˕a�4�Dd+�j���ɱM^��9��\r�\u0013�\u0018���\u0019\\�\u001fb��e\"��&\\l��\u0003UU�\u0002({ٻ[jhؓD �W��&75ǀj�+�p�\u0002��a��\f�2f�a����<)t�\u0019AL�m(Qq�K�:N03\u0001��G\u001dQ��\bCF�/�6��étK�R}�o�@�\u001eb\u0006\u0012�*\\�/�]�%\u0019���-�5�ʁ\n�|����1�|R�\u0017�M\u0018Y�y�\u001cw�\u0000<��\u0002\r�$�P�W?���\u0017\n�ٞ�H\u0018\nq�BդZ��\\�\u0010�\t�\u0013ȯ\u0006i�r���@~/7zz��Dp\u0004x:YaA}�7-��N%^P\u0006�S��˄*�T^�Z\n��\u001e�ԝ���Z\u0001��~�'\u0006I���|�oQ2�*�C��/�Z�\u0006�@���\u0012�t~o�W�\u001b�_\u000fʤ��u�j�|ߦ~i�\u001f\u0007�\u0012�!��AYyj�$\u001c/\u0001g\u0010���j�\u00199Q��8��������\u001b&x()����}�+\\����J@��.�G�{������X�\b��C���qZ�B\u001a�\u001b\u001c��|�ø\u0002\u0003���p��n���B6�\u0003v\u0001N[���zڰr�T\u0010��\r�L�m�F\u0016��[�����f\u0007I\"x���v\u000f�Un�\u001d�\u001bUt\u0004\u0018F\u0000\u001f�S���/�ul�3|Uқ�]@��>>\u0014Q��\u001fQ��8�\u001bw�S\u001e�b�e����\t\u0000�Ps�\u001e��=ԫM�\u0012J���L\u001d�Qm\u0003����Y�!q�P��gyr1�V\"@\u0004K��\u0000�=CQ�\u001d\\�+�\u000b\u001e\f\u000e������nN\u001e�*$g�4&k���3܈=Vb\u0001�9���>%�c��o�Qќ���De\t�e\f��¤\f��\u0007Dž��*� �\n^�\u000f^���!� >.\\Y\u001f�K}Y擇\b�\u000bm%Z\n\u0017\b?f��G�e�\u0018 �x!�&�U\u0001�_a/��M��\u0005�\fJ���.Q�ǀ\u0019W5u}��\n�\u0010Ԛ\u000f�*�[ɝ�x\u000b�\fG�ꯏ���\b���'w�\u001f��9v�G�ݭ�~`s\t�Ȣ��[V6��C\u0001�\\�\u0013�`\u001d\u001d�\u0016{+I�y&牰|,#\fz͖��-\u0019%������.\u001f�E\u001ep��\u0006�O��\u0015�E�i�a��L\u000f���:k�ËA�Y�|%e�6�J���<��SHj����\u0006��?��u�w\u0007c�Y��\u0010t�Ҽ�gY2�@x�\u0006y��Tm��>��G�v�A\u000f�\u001b0��mԅ�Ƅ�\t�g\u0018��t/��D�A\u001c\n�2M�x�NaS6\u0014�_\br���@���\u001e��*\u000bo�hW`\r���iF:*{&�0\"7��\u0004k�e���GL�p�5\u0010�w?���\u0005�S8��]\u0000�=\u0019��\f\u0006��l��˗�ӑRu���nӻ���\u0002\u0002�,\u0016�Ԓ4�#�C\u0012����L:�G�)����nZեU��\u0003\b�f�k�A%�\u001bX��۷��׳F���.[[�(l�*{l;\b���?\"\u001f�V;���mA�6é\"���1��\n\u0018��=�֗\";:���\u0016��\u001a�]�'�ǎ��\u0006t��F��\u0017�+�.р�����RݾY�t����&���->�\u0012�����\u00144*ۂ�A&�\u001b���۷֛U�P\u0012/\u000fȘ\u0003��̲P\u000b\u0000\u0015yd9}��\t\u0003\u0000�|���|z\u0000��%�ΎrS�\u001c8���`\u0011[�6[\u0000��\u0012;�r�����bq��e4>\"��@��p��1+�~�\u001c\u0013g���mD����ۄX �u�}|J�\u0013|r\u000f���a�v�yF�BN��.~��\u001a\u0018oyP\t\\\u0004�H�\u0005)����c�v���\u0001�f���rf�yƈ7C���\u0011j�jSi-Kr�d,M���\u0013@��o��#�~����-�\u0018\u0015�&\u001e���o\ts\u0011(�Љ���\u000f�DZ����Q\u0013�S^\u001f1�\f0MM%X\n�\u000e�n��}\u0019���WB�\u0017�j�\u0015�y\u001b�@\f#�y쌂�A\u0019�\u001b���۷~������P\u001d�`�q�Gi��g�+��\u000fy���At��\u0005�\u0013�{w�\u001b3���aLddP����i\u0000U�eQ��\u000b��F�mͦ\u0006\u00076��Æfj��(\u0017SP����f�\u001e�5���\rh\u0015������h�����yc��]\u0001��3/h����`�\u001c�'�X��t=�_<��[�Ԕ\u0005\u0007��˥��T\u0002\u0010*�;3�;�0�{\u001a��?�m��\u0018E����X�����N�!�|\u0007(�5C5u��?���[��\u0001,I�ldM2�\nmN��\u0003�'��)����\u001eQ\u0007<��sm��Yl,�\u000b?\u0010�g�˴蝝�.Ty�牃,��A\u001c�\u001b���۷�F�~d�rj\u000e%\u0011�<�R��$��?@W��D�(�3w�,*�ۚ�g`yֶ���v\u0001q��~%ï�6�~�\u0013��\u0011�X~!��Y{E�n�Շ!f\u001bc\u0002\u0005����\u001e3�Bd��\u0005�/�Q�H��i\u0000�N�\\6?̕��\b�\u0002��Ë���;or�s��To�K�7�\u001ahs9~���{�cu\u0017\u0007�E�b���>�[��a�n�\u000e��C�&�\u0012�o�4��T\u001e\u0016�um�\u0013Xm1\u0003����t��a�\u001d5��.\r\u0001Ҵ��~2���'�M����d��A\u0018�\u001b���۸�k�+\u0016��0�\u0011I촎!�Hj*#p������S�í�\f������mu9���\r�W鳋\u001e���m���~�:��S�+/��vk2>����U�/�Y��勾JtkES����H�]=۳�K+��\u0004�#/�앏��q\u0010S�ͻ�`\u0007\u001ch\u0012\u0016qw�E|v��\u0012 ��°r��ԃ�瑀Z��BX�C��\u0018`�cr�\u0003��J�7�8CٍQ��/��\bK8y����Yk�}�t��1��\u0017-|z$>k(���M�w��Ը�N\r4�\u001c�&K�%�\u001aΊ��\u001c�\u0003����j����B\u000fb�_T����\u0017�\u000b��A\u001e�\u001bЀ���-����H�&\u001a�\u001cR\u001cP\u0016\u001e�B\u001e�\u0013T\u0016��\t�/\u001c\u001fG\u001c�i\u0011�R��\u0003�\bP�̰\u0015(\u0002?\u00191�C����x�\u0019���)y!��N�BU��\\���\"�9n.+\u001f��f����A.u!w\u0000�X&x���(��h�\u001c��Q�-f����)j(C\u001d��\u0012Hڔ��9\u0005RK�\u001d�7\u0011��ʡ��L�T�\u0003\f��Ȩg\u00008\"�����d�8\fT|R-��ݚF4~=�jn�\u001c�\u0005%\n\"�\\�@q�k\u0019�:�ї�\f�d��[\u001e�\u0015+�~;�U$�\"\u000b|��D\u0013\u001e�#���d4\u0000Xz���5�J!P�\u000b�6�p��!���Z�{򵴽��;��A\u000b�\u001b��.\u0000)�k��=�\u0006�G\u001b�ʺ�\u001cr��D����Em�Q���f2�m-�g�D,�R\u001e�K�� b���\u0010�%0\u0016�#��PE�R��KK\u0010f�.\u000e^�d���f���>�1�t����R4,(\u0017� 0\u001bU>\u0005c����vnjqp�]��=S�e��[�\u0003�o��o\u0019\u0004|G\u0005\u001e>�����w�]\tI�܅\u0006\u0019EV�B^�\u001b���|���D������\u001a\u0016�#vw�y\u0016��)r��ȶ�~I_�Ji����c�U\u0011�k���\u0012���yl�\u0013���\u0004[��Gs�\n�r��!�\u0007\t?6�B_�³?\u000e'Cf��1�\u0017��p\u0017��9ʠ\fԛ�����l(��P�\u0007�A�&5i\u0012�fݲ\u0012U\u0012x�\u0011�6PZ@�B[�\u001c\f��|��h�^��\r\u000eK�a��ӗ\u000f�Q��hC7�4)�<�굣\u0007��=�_\u0018(r�l�VO�������L���\u001f\u001f*V�\u001f�`�\u001f���q�,.\"J�\n�n(Ȇ\u0018��l�����‘m���e�֘�{�V�U\u000bf�k�)��ܑ\u001f��-A�XS\u0007���\u0013Fb\r��\u0015���гI�\\|\u0015��?$΀dYؒ\b�\\f�6��j�\u001c�N�\\(�s\u0011���u���E\u0019<�EB�s�#\u0018���t��U�\u0003E��#-�\u0017\u0015�\\M~B�\u000e�MšK���\u0010y_�5Y\r�/j�p\u0000\u0000\u0000\u0000\u00025���LЫm�2��u\u000eu'&���8�\b�m��h7\u000fi�T�*\u001b\t��Q�rm�V=��?��Q�!�⦺-\t�س/��-8��K^��O��9]�?z*Ȑ\u0000(�\rRL�V\u001b�mr@.��a\u0017�\u0019�������s�G�P͟�!q|\u0011X>W,��~�)���Dm\u00051\u0019\f\u0005r*�J�=aW�%*Rڨ\u0005��\f&\u001e�L���8�\u0011Y\u001a������Z��Ɉ���p\fN\u000eH㿕v\t\u001f\u0013*vR!��\\��]\u000e��NZ\r�w@��ʝ`�U^v3�k�ƤѹW\u0016\"+��O>�x��P[n�E!�g/@ǔ��q�\u0013N�I&^�\rKU��X÷�\u000f\u0015\u000b[s�\\�ʬFX>Bֲ�\u0000\u001eI�^�:��[\u000e��m�\u0014\u001e�պ�X�&�}���_���U�,�����戣A �\u001c ��X���\u000f����]�\b6b�W0s��5W([�\b\u0012�<\u001b�_M�J�=�]<\u000eZ��kA��:��S1!�;+�q�\u0018�z�\u0005X�!P���s�:\u001f\u000fٮ�I�����\u000fe��\"�7~y�o=\u0011'\n~�`���\u0001GP~\u0011\r�Y%熣�k�Փ�'\u001c]6���wq�:��]���ս�@SoC14$�^\u0001��\tN޾\u0017�mW&ۑx�\u0001\u0010\\\u001bl�Èf{�nX?��I�v��/G�\u001c�U���FU���lg�cY,~=�p�.�\u0015��-\u001d�j���_\\q��.���+֪�\u0006\u0002�͚t��(E��:+��\u0002B��H�R�;v�tNl\\y\u0019i\u0018r��A\u0012�\u001c4���n\r'Y,�\u000f�z_\u0013�9?r\u000f�4K�\u001dR\u0000s��S+��4�HY#���ek\u000bw-\r�*�sZ�Z�q8�\u0006\u0019��I��\u0013��!O\u0013�\u001c�˅\f|$�\u0018S�����W^������T�q|��Y�'Z�]\boMZ��N�\u0004\u0015|z\u001c�`y;�;���U�#�&\n�\u001c�eG,\u001c�\u0002'�-1�@'�CE�y���:\u0011\u0019p\u0017�\u0005\u001c��~�\t/\u0001G\bQc�\u001a�:���r��o��_۲A���@xe\u0000�\u0013\u0004\tV{ȹyF/��^6@�'.�\u0004�J%\u0011��)X���V\u0010�B����d�ֲ;ׄ��\f\u0019\u000b�L�\\� \u0001��\u001f�]RP�A\u001f�\u001cH���mOH>D�#�(�7��\b>#NJ\u0000�-텩��\u001a�V�0`���j8���w�E\u0005��d\n��c�ࠊ6U�Z�����\u001c��L4�N5�E�\u0016���l�(�����1\r�����2烱hF��\u000f�+D�ayw�\\\bS\u0003%�^��p��\u000fNէ�\u0017��^\u000e\u0000r\"��2��\u0016�5߾��`�I~v����\u0012F\u0014c�\u001fŝ�d\u0016]����7���p\n\n��\u001d���%\u0011�21OٙX��F\u0007fl�\u001e��\u0013ޑ��.D�\u000b ���\u000f.\bz\u0003\u001f��s{�l�sZ��k\f}\f�\u000b�\f�D7���x�=����Ʌ��Qm�����\u0016����B�����\u000bIP�A%�\u001c\\���u�m����\u0007F{��\u0016�C\u0016'�6\u0010�����>4\u000bZ=ҁr^���s�\tSO4�\u0017\u000b�|PF�fi�9�(�L!��I���\f�w37 4\u0006�\u0004���_C,����J��$Ex��R�=?y\u0011��A븰��i!��3\n���\u001b�3����;�j`\u001f�7壷Z\u0007����\u0011\u001b*�%�v��<{�3�wњ�>��*��ӧ�g��\u0007�A��^�7%��'�\u0013�����0J�SM\u0016L\u0002/x2��\u0018\u0002�m`�bq����\u0006\u001d��\u000e䛚Z\u0015�\\�,�;F��,v�֟���\u0013Z]�����<�@�\u0007�,3�\u0004\u0002���i���`\u0012L��m��ԟ�HƙУA\u001c�\u001cp���\u0015(z�QI\tg�Ê-�rgܙђP�\u001e�d�e��&��y1�KdaX�q0X����M\u0018O\n~\u0003H\u0007\u001b�\n�4m�F�\r�Y��K��\fԍ�F�\u0014~A��]�0���]����̟_��Fy�9����1I�K��X�\u0018�DgII��k?��d��窯�\u0000�!\u0010�N�D��V�1G[\u0006�/W�ʷg�{�K�\rܡ��U�\u000f���\t*_P\u0002��(^�\u001eW�\"\\7>fg�,�w\u0018�gz�i�JM�{��`�9l�����b-\t\u0004^�Fk�\u000b��Z\"�\u001fs���~\u0003��\u0012.\u0010L��!a\u0007���\u0000\u0004��1�f�\"gP\t��s��)\u0014B�y+ߣA\u001b�\u001c����\u0014��|�@��\u0016�@��6E#��e8K\u001c�I��CbGC�8��6�����򒲎A�j�ҵ�@�y�z\u000e�PY�^�\u001e���䠨�\u0000�'M�p{��XOӳ���\u0016\u001aDz-=y���IM����倴�(Tt��\u000e^�/��\u0003K��\u001a�!�(\u0002=Z�����q{\u00173Y���m%M�ݭLG��jL�\u001eL���C��\u000f܂z�\n�#7�����]��2L4,K�IP�A\u0007�\u001c����\u0011K\f�~��\u000b9Xyj�>g�\\�ܚ7DW\t����_\u000f���N1\nڨ��\b�n�]U\u0012��\u0005�F.�{���S��>�($Tk�9�\u001a����*g\u000b\n\u0015*\"X��ΦdBK=�\u0001�L4�\r��ղ\u000eټ���A�;\u0000]�v��}�>�G�?\u0016\"�m 靯D$\\]Fi�%iX9\u0004����ׯ�1��^��<��i̇?\u0005{;�\f�A�a�ã\t\u001e)c��\\�8����[jA�\u001a��4�pw\fK�e�\r�'�:Ͱ�\u0018#�&N�|W ��.f�Ki\u0011\u0016cr-�/��\u0006\n\u0000q�h\u001c��УA\u000e�\u001cԀ�� gSB^�cu\u001d�\r<\u0003e\u0002T�m�\u00128Q� �[��ҙG��X+��J����i%�\u0004/�\u0001�\u0012�~�HT���n2����\u0013\u0010�����R�T!��\\�/ H\u001e�9\t�=a/<��z��d��O\u0003o�\"��6\u000b�8ҫ��o;���)�7��^)�c$B&�ذ1afG\u0006�:�\u000b�9T\u0015��_�H��a��!�\u000f�{�+c��_�R��c9>q*\u0010\u000e%,H\u000b�>���\u001dQ\u0002L��?�\u000e˧�(����m�����f�.R�X]�\u000eɎ�$���/���Cp���\u0011�\u0005�W�4\u0012��\u0004�1�ק�[Ѐ�[%�\u000bPosx�)u\u001dH��\r�\u000e�q�N��\u0010?��@�@�\u001c����\u001a��2��\u0004\"�Dk3j�\u0015��*���+e\u001f����+\u0017m��\u001e��_��U�]�y�KO����У�v\u001c���ϔb\u0015#/\u0012V\u0010��0�4�,�s�R�>޽��r?�e\r��\r��{�ߠ��Ыk��������O�D\u0007pge\\۵C���D,�����\u0014\t���#S҂~��M����F`��=Ɉ��ô<�J�R�-�Ryc���b���k�(�T�q\u0003g�*�O��\u000b�\r�K􁈳�]���\u001c�{u�t�u�\u0002\u001a��6�\u001fD4���\nrm��Bz�\u001d\u0010�����㺼�}�F\u0006\u000f�VRqS�M��U����#�i��\r2��\u000fk�\u0004���\\�b�c7z�C\u000e�E�=�\u0015 �\u0014�\n��[�\u0019+�nX-\\8Ĺ$��\u001dH��+��ʻ��y\u000bF]\t߬A��_?3a)���\u000f��J(��\n��Jr\u0012I�W�\n>���OC�a-�b7TIg]�6\u0014�S�r����^'��\u0012/���a�/�\u0016`~y)�\u0016�Sl9C�oƕ~�Ж%�����Q���V9!_�9����\u0005\u001b>�Auj��,qP�\u000b�ď��i\u0002��l�C�[�\u0007�f\n�@���_y��U�EM\u0005s��$�\u000e�����\u0001�X���\u0003+V�p\u0000\u0000\u0000\u0000\u0000\u0000�S��������\u0005�]C���X\u000b��B\\!ȸ\u000b��K:�Й���\r�l�\u0011�e�@�\u0015\u0014:��?\u0001�������s܇6}P�%�}�ؗ}N�\u0016�9Ay\u0002k`\u000eP�_�YL�`�/�\u0012��rsR\u000b�j�(��`��(�l\u000fO�K<�\u0001X\u001ckT1�(2�\u001a������?)Gts����$o\b��v��젙\u0006����'����F�\u0005OXy�h�e����\u0010H��a'���P���d�#`����\u0006��۾�T>��Z�.*�?uŁl���\u001b�d2��z�*ٌsg�][\u0014�Ж:\n&>\"�\u001c\u00027n{\bM�l\u0011�PV��3��(�&��'K*ؔw�!J�B\t��\u0005\u0018\u0000_\u000e?�װu�-2\u001ep2��P�v˯��:a\u0013�Z���k���J^��}�(�&��AN�\u001d$��\u0018(f\u001a�q6PG}���\r�\u00112��/�@ڷ3�����z*4�w��MU$��q8S������gr@duw�����6�C����4\u0004��d���A\u001c�|�\u00123��;�$-�c��\\˸Y_�-+�˟��Oj�T}B'\u0006����A�l��BC�4��)G(R�\u000e� 7\u000e�vv�\u0007\u0000�5�K�e� p\u0001Rmd�m�u\u001eW�I����ҳ��ѠKB%\u00057���{9a����NO��ǹ|\"�;�WL�#��:\u001de�G$���\u001d�\u0010� \u001ce@\f�L�6\u001c̷�o��t�ȫK(�.}8o`�W�\u0007 �pƀ\u0017�'�\u0006 a�7ą���\u0001��\u001c;��ƽS�[܌3j�E5�[J~�7R��\u0011��\u000b\u001dN\u0000K�coz\u0010���\u0006'\u0005c�A\u001d�\u001d8��\u0000\u0011G<\u000e�֭T��Q1)LH'sxy�\b�IV\u0004>�\f��(�O\u0010L�>Ή��ħ\u0006h�g����tŵHt�8\u0006w{QxL\u001a��cݞ8�\u0005+�h/9�j�\u0011\u0007+c����Ք\u0001��r-h�DMXlNJB���\u0015�5eH�x�GD.{��J�,�˶BT]G\u000b�s\r\u0000��2�\u0006�9 >`\u0019�(��|�l���\u0003�\u0013������&\\N�\u0011��B�[����P�D�\u001e-�M~bL����V��Ǎ.�c��\u000f�&�K��\"��3��,\t���\u0019��LV\u0017�\u0017\u0002�b�^U�\u0006�M����ي�Z�Pg�J�\t�Rq́յ8�D��ԣAb�\u001dL��&\u001d���g� �ޭ�i\u000f,\t6o�����T�.b�%��V�HJy�OP���ەqS,&�\u0006��\u0018����?��{�~\u0006k\u0016��ߤ)3񍥖~ˋ�\u001fX\"*��\u000f�H�%\"\u0018�ß�6�q�]\u001d��?͸`�\u0017�UT#D���Q�hƊұ\u001f�\tf�S�p��8f�hT��������\u0011�Hm��x\u0003J�\u0007i�0���\u0010�\u0005ՄI^O�Oe��y�d���\u0004\nŅ,���\u0019��!�/\u0005\u000b�0����Я�e\n*V\u0003\"\u001d\u0012��\u000e�\u0000�$X��M \u0014���Du�\u001b�����\u0018\u001aE�6�%ǂC\"~U�jWZ�\f��\u0011w#�|�\u0013� c\u0010q{\u0015�\u001e��#�9�Ye�C�vc\u000b�Ϫ\u0003�K�$�ݘ3@\u0013\u0002\u0010��mpx�A�j��Jg�ʈ��q�ht�X��䦖�x�A\u0012�\u001d`��.�إr/�:�\r�\u0005[�4�L�j\f*�6\u0005���\t��oF��)?]���\u0003�ܟM\f\u0002�]�Ţv�FR(\u001fq�\u0001޲}\"���'h�gd0\u000f������\u0005�\b&s��1ǒ��efk\u001cge����Mҷ��K��:RD�D%5Nu�\u0006��Z��\u0002�\n���ܧT���93�?I�]#țq��\u0019�0\u0013\"��+.��\u0004�B\u0002x��A]\f����f��\f�\u0014�\u00195��_�\fҪ+��I\\5�l�So\u001e���&�F[>\u0019�\u001b��4@�+����5���~\u001dT�g�7NE�93Z��J���f���l-�[Ӻ�|��A\u0006�\u001dt���籁���\u0005�:A���nd\u0002�^�o'VYBZ|�)\u0003U����P����7�h���!/|��N0���l�\u0016�\t��@\u0000\t\u0000\u001e$���m���\"\r\u0015G4�DX��U�tΙ��\u0017#�\u0002���7��b�雤�\u0003\u0006\u000f��'�\u0000�3\u001b\u0002��\u000fֈ�\u001a��2�?p\u001a[k� �Q�Ɓ|\u0019E\u0001{�2�5��ܘ���,;�û�\u001a\u00039\u001fكE�4\u0014~�\t�8z�dZ.��\u0016\n\u0015�K[\u0002�o���m�\fc��t\t�\u0011SwR�e�\u0014�X��.��-�.��+ؾ\u000f���\u0012h)R�\u0003|`��1ۧ\u0006�A\u0013�\u001d����\u0003a�*\"\f\u001bЧk�\u001a\u001e`���\u0002ʳeX��\r^z����F�o\u001a��R��|��\u001a\u0011\u0003H�q\u00186te\u0004���_�ܣ_\u000f�n�̱��v����������\u0013�ɖ�\u0007\u0011I�d�7�X��\u0004�f���b̭<�.\u0013\u0014�ř̯zm\u000b�]0ͻf\u0019��B\u0018\nϟ\u001e��:D�u\u001e���\u000ff\u0004�tv��7\u0001��Y��9]S��9���\nnh��K��-w\u0011\\K&�n��\u0010�\u001c,5g��S*��\"Ro�d�\u001ft^��H��.�т\f=�K�T)�W\u0013mS��X\u0003\u0007\r�\u0011�A\u0013�\u001d����\u0003G�kT�\u0016�!9;g:\u001d\u001d�#��U�U6fA�b\u001c\b�&U纰\u0011š�����q_��|0�\u001c`����\u0001��T�Ъ�K�'����mg\u000eX1)ٯ �ϟZb�ܾ�S\u001f�RI֥+�\u0012\u000e@,���'�\u0016�\u0018�m\u0010vN.q�$z�\u0015�m�U�vL�\u0006\u001bک�\u0010�/\t�\u001b�\u0014>�K�FV�<��s�\u0001�\u0010��Km\u0002�\u001a��.���-�\u0011��\r���S\u001aG.��X\u001b�M6��\nRB_\r<۝��\u0012���O���\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016a�>\\�֙�S�\b$�\u0014��M�\u0001)�r�\u0015|\u0003d�md���Ĕ�>\u001e��\u001d���ay�xg\u0006:)�%��2\n\u0016�X-հW�\u0000�\u000b�ݘ\u0000���h����Ղ`\n�I3\u00195bXh�6���N���5zg��}�Y\u0016�l�\u001a���u`�\u0006�lH\u0014�M\u00182\u000fP���\u0006�`������\u001f6:�+\u0013j\n2u2}�,��V��oq-�A�x�o�V�t�����:-F��$�'\u001ca���\u000fݸT�\u001f��6\r-3��}`oF�0\\k\u001bn\u0005��\u0002+\u000e!O[�o�\u0018�ݜ唼\u001bXѓ\f�\\���\u0018�P��1|2�]�%�\u001a\u001c�����$��dA�\u0011\u0007�j݆�!��P{\u0000H�}?�9\u0000���\u000b�\u0010�\u000e��\u000f=�\u001d�\u0002bH�\u000fTJI?s�$`�t�_�j��A�\u001d؀��\u0006T��0�\u001f\u0000t��}�7�N\r�^�\u001a�h\u0002�5\u001b��lh���]�n��������m�\u0011���\u0019\u0015(>�2H%ʇx>M ݯ����J;�\u000b��K�d;;�\u0001h�\u0012�iƶ���L�ތ%�\u0014����\u0016�ٛ;\\a��\u001a���\u0000T\n��+��v���\u001b�\"�װg\u001a>s��8\u0000ت�!5ԃ�S:�����4�%�ʙՋݛ�V�\u0000I��NR�/�$W/�`t.\f��r>��.�U�[\u0016�7hQ��\f�L�\"\r���!f)�L��<\\\u001fZFx����j��\b��7�����5\u0003���k�����\f�͓��(�d���\u0017As��\u0002\u0016j�,#\u000f�ӈ�\u0010��\u0019���\u0007�\u0002*�\np��_I7�\\a�C�s�K\u0013�`(F\u0018\u001e�6Z��2�����0�\n�nrw�ܓR18��~\u0004K\u001f(�\\0�\u000b�5�0sa����o��#\n�x.Qy��\u0000�f���\u001aR�g\u0012���V����3\u0007�\u0019\"�l)\u0018\u0018i*�����3T$~\u0005���W\u001dwFc(��76��^��\u0006�\u0003%�\u0014��������\u001a�\u0003T�i\u0016����l\u0002���G,�I��\u0016�H�߁�Ā\u000e��n�A[�\u001d�����6g.�I��֋\u0007��\u0010�\u0012Z�ԡF\b������u\u000e3��=7�4��\u0010�:=Z����׍a\b\u0000^+e��zh>��!��\u0013KR�{BK��X��j\u0001�h�1^)9��cBsm�²:~g��?�D\u001d�f\fΞU'�w\\�*B�\u0001U�艭R2����9/̱iH_���z�\t��{�\\�i�bz\u001e;dI��Xq�I��T,N��:D\u000f+�½\u0001����m�]���I������Q�U�\u00180\"s��ڈ=7/n�\"��m�7��,I(�}銁\u0010\u000e�1\u0004gֿc�ՒV�Ac��Vrjq�Os�J\u0017Zx���O���4s\u001f�j\u0005s�\u0018�^,\\�pVʐ��\u0003�k\u0013y3]��_\u00018C\u0016A�-\u000f��OR68T\u0001Cu���q=*�)�\u0006�Œ{~޿\u0010�&����*n�AG�\u001e\u0000��\u0000Q>\u0010?ʏ�\u0012u0hX��]g����E\nƻķqW�4�w?Bb2���+��J��j�h���(\u0012�7�Ŝ��[rj���b��\tS�f9ε�\u0019\u001f\u0007��(|��\"qu�^��\\.�\\�\u0001�ҟ>����d\u0011�CkU.�x1\u0016�!B~�\u0017V��u\u0007�O���r�8\u0010��\u0006,��\u0005\u0016�-O>�&AAn���\u0004���k\u0019�\u0013.�!�~\u0006*P���\t\u0010ԣ�\\\u0016\u0002LY\u0010Z�_��[5R�B�\u001e��\u0000(\u000f�\u0001Gؑ~ϝғ-B\t2�\u0016�Lh~��\u0015}L^7~g�u_��\u0004n\u001c��r�}�Kx�_\u0017����`&�oꬱ в�l�얼JwŤ�_\u0018-�⊧Y\u0017+�16b\u0007���2�6U/t���vW�[w�`���A}�\u001e\u0014��}b�P�'��s%�\\�Qp�8\u001e\u000e.J\u0004\u0001���.���cգ��z~)�+�;F)0�ܛ��a��|G\u0006�A'���kS*�B\u0016���߈\u0019����v��.\bp�\u0011�\u000e,Ï�E�����\f�����\t4�>O=\u001eԴ2��\u001c���\u0018\t\n�^7n͝b���\u001dJ^ŠG@�6�&G�\u0015��>����#pU�4�\\�\u0004L>\u0013�I�\u0007��+e�h\u0014�\u0011+���\u001a���;���\nj\\C�\tl�.YR��8�\u00037\u0012������\u000b�${�@l�S8����)A��*�3鷯�p�T.��-\u000e\u0003J�\u0016�#p����M!�\u0010>��gp$,�w(�\u0000���6�u�&4��.���7��{���\r���f*��\u001dS�l�q,�&�,�a[�̓iN�\u0016��]�\u0005�ɒ��7�p͓\u0019�\u0003BL�f�_\u0011e\u001b�=|��>\"�Ҳ¬�`Z�NݣA\u001a�\u001e(��m�\u0010t!��\u0011�]����*\u0015\u0012����M���j$Q+\u00040\u000562��:1�lE^��d�pn\u0001\ru$��5D�:N����#u�j\u0010�x����\u0015��R�̈́�Z��\u001b�:\u0017~�7\u0014w�9���\u0002��t�\u0007�e���>EoY.8\u0004\u000b%�\u0018\u0007���\u00062��@�K��.bB���3\u000fM\f}\u0016\u0017�\u001a���l��^�\u000eL��J��e=��L\u00177l(}''��$��s\"-&|���v�3�+�*�V���1W���\f,\u0016����\u0006nI2\u001a��e7\u000fc�������e~d�\u0014Y\fe$��qb�V]\u0014�r��D�N\u0014�**a\u0006\u0006\u0018�����\u0003��BjhJh��ܳ=5��������\nE�֧�4�I�*e��j ��(s�����P��u\u0010DsM,f\u001c�/݆���FO,&7Q몷��#�\u0019q}��9l�NVn\u001fKo�ئ��Ћ��c]��%\u0007\u0010�ܠ��X��4���%s�a\u001dGۥ\"\u0010�j���Π/i\b�bk?��)�<�⮉���\u001d��%\f����K�\th��#�����\u001c\u0004�P�\u001b�2�\\�A%�\u001ex����\u001f�̌��|���$��Ň\u0011\u001e�\u0019��\u001e��9�\u001c�\u0012�\n�?e����Ƣ�=�q�TB:�=��k��d�8�\u001b+\u0011w�\u001dǔ+yL�ũz�Swu�G=+���V(��IG\u0000�2�W�\u0015�?\f��K\t$��\\FS|�`p�\u0013�\u0017d�Tv\r��h+\u0019��d�Z\u0010�G\u0011��[:m~���\u0014�[�G�_�z�0TkA���\u0014\u001a��\tJ\u0019��\u0019�\u0002s\u0013��ɑ�vr;k\u0006Xg\tk��?�u\u0014�s\"\u0014_�K&p���\u000f9�\u0005ܜ@>@����|ѡ(3��\u000f�(-EC��7�\r\u0010��\u0017x�H�\u0000�\\\t�U\n[]�A\"�\u001e�����\u0019^]\b\u0014���>�B�׳pխ��\u0019�l��d� I����]=05�T�@ҿ\u0019X\b\b$��\u00038y�-����B\"�*d V�g\b\tX&\u0006k�Y�~�#�r#ܚEz�\u0014�N����\u0011w�\ni}��zܙs���eEy\n.�k��܁\u0006\u001e�?L\u0005b�}�A!�\u001e�����\u0003�\u0017Y���G�KC��R7l�8�+�W�RbӐ��\f�T|\u0016~\r\u0004T�f2�\t�Q@��\u0013PYy*[(q\u0010\n6ˁc}h�{�D\f\u0016V��H����\u0016�'!��Jj(�RllJ�`����Ş\r\u0000l�QG�w'�C�[FS�1�?Q�]���s�(Q�\u001f�3��\u0019��̅�6p\u0018��O]LZ�}E��1�j\u0010\u0013�*^/1��@ގ�\u0007�S��~\t�U�cP�4�Y��\u0006�\\m%��\u0011-�\u0013\u001f~�D�\u001dE\u0005w�Tm0\u0016�˙%#�aU8� �@�\"\u0006��榺���P��+�\b\u0004���uR�\u0014�\u0014��!D�\u0014��\u001a��\u0014�\u0013\"����$y�A&�\u001e���������+,h08p��5�4�\tz\u0006۩\u0012LM�\u0006��q�\u0019���\u0003\u0002����\u0004^�����\u000bIIR\u000e����pR���VJ\u0018�}���*�\u001b\u001e*�_�bRX�W&*;�o���r��}�7�\r���ٱhX\u00163��w+dZ�3\u001d��5�n\tW9�w��0�1%���\u001c��R+~\u0000a\u001e\u001a\t����\u000f��y�A$�\u001eȀ�ۻO�#\u001do�M\u001f\u0000Wሷ��u�\u0006 �Ow�T,o�C^9��_�\u0007�w�]QE?�{�\t����\u0010`|n)�W�\u0002h\u0001p��&\t\be�|\t\f�u�D�\u0015��S@��\u0004�g9�\u0018�۬E?��D����|���$p'x�n�x��g\u0013��\u0018�c�3�e&P^:kПb��d�^\u0005�?\u001a7\u001d��\b\u001f��U*��\u0005.��\u0006�sjQG�Ƙo�q�\u0004�\nޘ\u0014�s�CJ%��9u[[�\n#x\u0002Ǝ���\u0018O�?�S��IE%����\u0004W�\u0011��dBP���彭:iF�\u0017�z͐��_�Y�b�Zi� �\u0011���\u0016��ᅬ�\u0015/�Z�.�X�fi�#C�AC�\u001e܀�L�\u0018�}���X�\u001d�6\u0018P�\u001a4,\u0017��������\u0013��\\����\u000b:s'\u00070YĔ\u0003g�HŁ��l)\u001bzt[?-����\u0007��\u0017\u0006\u0006���,H\u0007���<�b���~f�!\u0014���s�����x�TV\u0014����%���F����WUv����eo�'\u000f=�\u0001/\u0007����(��2��\fW�d�\u001c��R\u000f.\u00110:2m\u0013\u0013i�\u0007��%y'^Α%9�j^�,�P]��T]��,��:�x���/\t\u0001\u0018u�l��MK3n#���[}P\u001d���\u00051\u0006�*K�oA\u000bDs�F�\"S�X�&��6V\f��ZH����&_=�.\u0002\u0011�ٿcQx�\u0013��a�\u0019Qs�zh��\u000f��\u001d:Lq�\n�rt�_�4�#�l�9�\u001f�u1\u00025%�AS�\u001e�����v�\"�O�`�nZQr%�'\u0019v����@\u0013��u'\u0000vڑ���Nj\u001c׮3BlI��KG\rU<�Gd\u0001N�k7�*�\u001d/\u0013΁N�\"ĦZx��nV>\u001b^\u0007ƏW\u0018^�~kmO��9��̀�F}\u0019\t���\u001c�-�\u001aU�*��3\u0005+�a�)\u0019G��I\u0000��y����y�]\u001c�hi�\u0018�6<���\u0005,�1�u1�D\u001bA\u001e\u0000K���*�TB�<5\\�ߦ��}Iྊ�`����.�v��bht���\"2|��L;<��2�ge�\u0015UC�,)�\u001f[Q\u0006�̾�f�\u0014؄�\u000e�\u000e�P\u0010�\u0002��7��{\u001c�L�C�}��c!X~�\r�8i7Sy�N\u0011�=u��{�N����;���y�4��\u0018V�1\u0016��o]������4�\u001f��7�#�AW�\u001f\u0004���0H�#�Lpamů��A�o���\np3\b\u0014\\����\f�C2�}w���5���zJ���!_�e���*,ob\u001d�O\u0000\u0016vNw�b��͟��\u0018hm?Ӡ#�\t�y�)e�\u0018��ۆ�\u0010o��\u0012s�����êS\u0016�]���۴�\u0010䛻[݆��|��x�9�˛̏�Z��2�R�;�c��@K��\u0019\u001f\u0005s�\u0001�?ك�([�/\u0012\\\rkF�К��T�`���D��cFT�q�\u0014����j$�B\u0005�\u001f\u0018���bPg*�j\u000e�қ�H��W��!��Pvq�Ts'r����\u0007���ƫ!-��^�\rj�N\u0006U�\u0002U��l���+��\u0012^���f9cwm'�q-��F'\u0013�:��*��Uބf���\nn@�woc�)��;v����\u0010W�ܽ�=�.�GK��GC\u0007i1dQ�z���\u001d9G�\u0016D_�u��X\u0011I'=V\\�\\!w\f:~J����\u0016\u000eh�*ARRTI������nݠ\u0004��~\u0011�8|��?3��K�\u0019T�FU��\u0001g�\u000e=6�����\u001a��I��\u0004\u0006e\u000e�8͖,\u001cH,j|�p\\��4�'d̐vt\u0014��\u000f�\u0003��\u0010�JrP=�?-��ّ,\u0004��8B\u000e��m\u001a�èw:�Pu\u001a�}�ġ�6�������H��>�\u0006�\u0003�}<\u0018;��C;\tu��VοT�\u0010�~���3�4K,��8��\u001f� \u00178�\t�\u0000�\u0018\u0005�q\u0000���9\u001d�WR���,�k\u0007��3�4�b�\u0015ǀ�\u0000�\u0017�\u0015\u0005tr�W�ܜ\u000b1��|�>P���\t��-�\t���\u00003��\u000e\u0001\u0015_�\u001a\bcD2��Q�]=���IC�D��ȣ�\u001d���\u0015�/��p�.�\u001dj���\u0016�\u0010yɜВY���LL���\u001bҵ��ޡ��$��AD�\u001f,��\u0006\u0003͡��\u0015һ?������\fԅ?X\u000b& ��ڰ�:��K����r�\u000f9�\u0003�@FT�`B\n��ݺ\u001a�Lm�׮�c�\u000bX�I�\u0002�/�\t�D��#�WRA�Q�Jס-�_2���\u000f�#�+\u001a��� �l�>��Y��\u00005\u001a�o�����Lzh���c�\u001d�B,Y!�r�RM�|I>��D�2�EIe\u000bR�AlQ])唘R\u0013��`�7�G\u0017��ٷ�W�\u0001�9]M��Y�D/k�\r�̄���\u0017AL?£\u0001Ƴ]�\u0004�5`�=\u0017\bt��+N\u000f��8�pZ��^��vԥC$I�*HYlQ7��>�1kM�Θy\t�^�R��G\u001b��a�: �H6�á�\u0006\f���b@N�h��.!?���݄ʢ���.5�AE�\u001f@�����\n�܁����D\u0001�K���\t�霺\b��?z7)/H�\u0001t\"u\u0001��^�-gjQVi��W��r�+\u001d�᠌�\u0016/�\u000e|���i T�\u0013C\u0016\u000f42������2�$}'\u0011�JH[uw]�J����ӄ�G&!\u0011�S��h`T�����SԈI�\u0016�����w\r���\u0019\u001e\b���\u0010-\t-��Z���ِ���?�\t�)����ӱ���˲\u0012\u0006W��\u00040\u0019G�\u000f37RW5����XO\r��(\u001b��΃/Kd\u0010\u00064�/�ԏg�荄c\u0010#���ؓf�)\u0019Q\"�*\u001f����\f���t�1{V�\u0012\\<\u0016����?\u0007h\f����B��\u0017�{D�dL��\u0014\u001av3��Ө\u001fQ��4%I��\u0018�����(�z&�AL�\u001fT����\u001c@l�I\u000e�w���>��ݽ:��Rж��YMe�D��T�=\u0012�6�\b7�I��)�ݨ>\u0019*��\u001a�����\r+s��\u0001`j�mo���s�\u001cL1Ү�e\u0003\u001cȋjoF}\"��\u0003���T\nǙvo.�\u0012\u0019V�\u0006�\u0007�N0�\u001d�mo\n\u001e#?��w�(��e/�\"bD��O�9��\u000f\u0018���D���\u001a�y�|vB\u0012�_l��>#\"\t����%��*J�J`Bi����Q~\u0002�I\u0004�.��Դ-RUBڷ\u0016�m��4-$O!����׍��X����:Ԯ��0v�E�+J�zzz瘟T���MƮn���'ÙN\\��n1ܑ����IhՐ[�\u0003rF�%�V�F'��\u0003²��\u0015@�9Up�ӵ^5=۷��_��7\u0012��Ac�\u001fh����P\u000e\u0018\u0011x��v6F����I:�>a���nb0�>*\u0012UuֱEC�t4\f\"\u001c���\u0019\u001c�ү�ƪY��M\u0013�^\"�n��]�uxu��k\u0004��\u001f�~��;�h�oEb{{�\b�g/ZT4\u0003�/\u001bv�\u0004�\f�5�]\r\u0006kfSג���r3\u0013ĸ�\u001f�`��-�6���\u0005�H��\u001c�����j��:\u0004G�< �u��Xw���7$̰bk�Z�����#{��w��|e��!,���S,���M�⥣Ao�\u001f|���Ӈ��8�i�p-%��A�l��F�\u001f\"\\M�\u0010Hm\\\u0019�����\u0016w����s\u0001o(��d� �\u0019��z<�<�\u0007S\u001e?\"Mrz�2:.v��lX��\u000f�1�a\\0Ƞ�m��4�\n�g•{�b�xU���\u0003��{�'�|K\u000ew�����\u0010�\\�\u0014��\bc�i�'\u001f\u0015n$��X��,H�\u001f˸#R�w�4�:����\"�\u0001�ό����*�\\�� ڏ%\u0006���P��|�ݔ�de\u0010o͎�y�:;>�\u0018W�\u0010D���P�$8j�~�L+�Kh��q�\u0017A��\u0011�ej[L\u0002m���V���\u0004\u000f荺ڄ\u0016�U����w�.C�M�eG{��X!\b.F�������\u001cD��U>�{$=��ƜK�z�\fn��Q�Q\u0004�!e\u0018P\u0011��.b��]�\u000f�*.w���\t2�Y�u`�C\u001b'�q�&f��\b�e�\u0018���\u001f��l�Ipy/����\u0007M'��y�����\u000fO\u001co.\u0006\b����Aj~ƪF��B\u0005��\f�λ�ݒ+���u.{b�Z\f��b��A��\u001f�����/�4\u0003�j��9��7�����(H��/��\u001c�,\u0002$\"\u0012=\r;�\t����y'�n�%�8�J�\u001bB�i\u001a\u0001��8vç�G\u000b�����mE\bO�\u0006y��$6p�@u�|+�TnP�P�Q�\n\u0001au5\u0018g0m�elQ�C����B��\u0017���W1hݕ\u0005�����ǹe\u00193\\�k��T�\u0003���.\u0001��\u0004(,.\u0018S#\u0000\u0006@�:��^z�2��d&n�e\u001d�e\u0018\u001c��#\u0005rF�k\r��-E�ڇ\b�o2�\u001c�6,9\u001bo���DsxO��q\u0010IԒ�G��3�UA�ʎӏ\u0006W���`���d�W9�\u0006�\\���Np���D�B�4|!k�\u000fG5��H:-$�L�Y1���ؤ����\u0019K�%\u0014���1 sW��;\u0002���'�^\u0006��\u0016\u0010\u001b\n�\u001a�)(�̥�'H��D�i�����nHD��׆CUp��ʷ��#G�\u0015̻��\u0010�.z��Ax�\u001f̀��-����C�@\u0002�h����~VS�,d���\u0010��\"]��m]\u0011�\u0002�q\u001bV�$�}c���A���\u0017�a\u0003.ɩ��JG��\\�M9*�ڞ٘5b3\u0001꾔'4B\u0014��-�~@���%�{J\u0010�\"f,�#m.]ޤSg\u000b`\"�!R\u0007')�\u0004�s\u001cp���!\u0000���΃zi�\u000e�Bi`�ާ,��U�\u000f#u����\u0004���2!\u0002�f�����j�c�B;]�r$Fx�G�*���\u0011�Zq�\u0014X���\u0015C���[\bS�l���L��|��j1���8��\u0007>�,��\u000b6O�R�\u001ak+`ں�\u0001\u001dh�\u000b\u0017���\u0013��)�,�Ӓ\u0001�B��Aʁ\u001f����ӅZ!�\u001f�\t�(r��U�+?ς\t�\u0010JG\u0000\u001e�\u00107� R��.�;\u0017x�d\u00105p�����{z��c����g\u0006@c��4$\u0010'����l�C�[kv[��t7�:p��\u0018�0�\r�t���\f���\u0015[�\u0016��\t���N��\\3��O*�tO&�\u0002B\u0013+�\u0011�7ˉ殞�u�9��FV,Aͣ��\u0010�������@@\r����?�0�~4��2*\u000f�p]/�^ \\�V�9���Ì\f� o\r��J�_�7�v�\f��@N�6��M2����\u0019[e)�\\�\u0019��\u0019����\u0007�=#4u��O�\u0005�[�!��ݜ\u0019(\u0001u�A晨tk���j�;)�\u0007�ݜV\u0018�H\u0011~\u0007S�O��\u0006��z���\u0007�\u0011e�m��ߚ�F:�T���8y�M�3�\r�GfU��G\u001a�Pj(�#�\u0001�\tX\tM\u000f��\u001e&V�� �V�\u0013�9�����X��/xU�\u0007��{��)���@n��\u001eœ�JG�]R���Ɉ0Q-�\u001c�\u001dB�2&\u001c�1Z�z�%r[�OGh��NU�\u000e�\u000e�t\u001e��A��\u001f���!��\u0002��@Rj�A��ū�\n\u001ad8�À_�\u0015/���@�B\u000e݃�Ԟ%��Kݐ�7�Ga�8yu�v�nl~�\u0013d�A������̷�A�# U\u0001�8P��oڰ�^�s�C���\u0000�|(��W��S ڱ�b\u001ey\u0000��x�s�����\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0018\u0004'�(��\u0004E��\u0010FO6�\u000fqZJ\u001d`���\u0015z9'�z��b�\t.\u001b2�b�� �2���X��\u0006�w\u0015��G �uߕ��Y(\u0003�/;&�d���\u0010W\u000f�e\u00018R6�|�AH\u000b�\u0015\u001576Z���k��f�f!a�8\u0004���-���t�BB�`���8�g�� �\u0001`�\u0000C\u0005t�B?\n&ȭ\\\u0013E�!\\\nq�L\u000bqU��%�W \u001cW\"\u0007�-���U��&˩}�z�H�4��(Ҹ����B��^�m�\u0000�\u0013`gF\u000f���3i�0��g\t��TDY�lʌ\u0005|Hc�\r�m��]\u0014�ڈВx\u0005BX��\u0005nC\\\u0019Ս\u0006^Ƴ�\u0007�W��nZ�\u0018X\u0007�\u0013]��N�h�{���顾��\u0015O����\u0004�l�t2�FQ7>Oe�4�F�U�D�K�帬\u0019Z�+h�AJ� \u001c��X���)��_�6�=��T�Mr?(�E�\u0017!\u0011�|�b�\u001cB'\u0000:����c\f\r7�ݹ��@\u000b\u001c��K�a�J�~\u0004�x\u0001e�-d\u0003A]�JA:Y�\u0002`�k�-;t��]�!*t�N�+̏��\u0000\u0002x'Ӊ���\u001b\u000f˯\u0001�����\r���X-���|Y�做���%~�(,:�d�0ϧ'�z�E\n'\u000eTB��)1��0\b��vP�\u0004�$�7�\u0006���F`�o�O��m��Pr�\u0012n��&�!%)�Y7�;��\b!��'ø�\u0015t�ޔP쾙A'�B��T�)>j�\u0005i�t\u0013��G>�<\t���ޣ��d�\t\u0011gU�j�si��q(�n�\u000f/f��\\D��/��\u0015��7�\u0005g-���-�A�n�@�\u0002)��\u000f\u0012�W�ӣA+� 0���c�j�?ϫ�w���\u001bo�@�H`�\"��땸'Q�v�:IY�K@�K\u000b�\u001fS#P�E���(��\u001c�I\u000b�\u0014��n�Ũ�;̴{��\u001ea���Lֲ���D�@|\u0003\u001cH\u0000����{\u0006��Q\u0010M�\u0001n;ԓ3yٻ�\\/)��]>\u001e|\u001f�]��(\b�Bz\u0015��k�\f�K�،ԝ\u0002�\u0002�7��\u0016���*�#n���&�LE¼\u000e�\\�k\f�Gӝkq�H��4��~�I�|l\u001ay�yy�\u000b����\u001f��\u0000�0O�F\\\u0015[`�7�,{²��_[ ��$�Z��\u0004\\�9Cz����0�u�=t�K�(^e��,CO3��\u0017�X\u000eZ�\u0019Y?�\u0016�D\u0014h\u000f4@���z��A\u001c� D��X�xp�\u0018ҥ����\u0015�,�\f��?�*�4��Y!�PYn�\"�U�\u0014�QӸ\u0007h�S�ۮ\u0019K?��f��\u0013�h�����FXiEQ�`�\"\u0015\u0001��?\u000f0��!�\n�� �3�s\u0006��Y�US❁\u001c�\u001c\n��I������\u0015_~`\ny�\u0014�B�;\u001b�g�\u0018f��/\u001c\r�<\f\u0016�H6�dX�Fɍ��\nwY���,\u0006��\u0019n�\\7�?l;�R2��^`c�>\u001a�\u0000�G\u0012}l�!X�j\u0014=S�f�KnP�8��\f��\"����ӥn\u0012Lj�w\u0001 �\nY����hLƯ\u0013����e7\u0016�m\t##\u0007���yi�!��!J�8�*�5P)\u000e�x�T�A3� X��L�?�}��C}�,�b�}\u00066��B0�\u000f�!,;qZ#�\n�>Ӎ\u000b��p��D�9�K?��\u00036\u0017R�W�-b\u0019Ɠ��U�<\u000f�\u0002\u001d�y,��C�,Y\u0012�Rz�#\u000f^��� D2�H@t�&\u001d�p4��U_�5��\u000b�-\tv�\u000eH`\u0016�\t:�[\u0006��~ωg�ެǃ�+IB4/EJ��ߏ����|��\u00062~\u0015�6(�ƺ�?�ü˞�U�B���z��h�\u0001�T�S��\nǖ�\u0014X,h|��\u001a�d�ξaI.)g�5\r��\ry�\t�4��ȤaZ��\u000e\u0000���N\f\u001b�~\u001a[ZW�\u0010\u0002�\u0005z��]�ό��\t���\u0001�Ϸ)��V�C\u0015�7\u0005A\u0016W%��,�:�\u0011�\u001d�R�A\\� l��L�ޗ\u0017\r���ػj\u0010!��\u0015O�\u0011�j��·a\u000e���j�ꗵ �\u001a��D�]\u001e�vӻ�(�\u0012����\u0011��'DY��X{-�U�l�\u000e\u001f){uv�2��|�\u000b>�VQ��.s\u001f�rnt=���j�\u000fR�\u0000i\u0004\u0014��f[^�Y��\u000b�m�[\u001a����\u001cH\u0015��S�d�SUe��\n��a\u001e!6/��./�E9��P�%�?\n!�%~��[�\u001bg@�B0G0�mȘ��\u0000\u0007�t\u001e�Dr\u0011��\u001b\u0003r�G\u0018\u000b�s\u00016�ڋ\r�s\\eu/fYC�1>b�r��.�\u0014ۄ���)��3U��{CO/��+��f4�zS+\u000f(�j�\u000fPZ\u0013��!���\u001d\\\u0005\u001e��$V�Eթ�|�M_˝�#��\u0018Q]\"sR7�<�w������_�-�6\u000b��2��W�&\u0001��?�A\u0011� ���L���k�-������\u0014�U��a���Y�O���\u0004�l߳��\u0015��\u000f��R�� ҬcK��rC\u0005k���/�ӵ�\u0013�i)Ls!�\u0005!�5QK�\n��2�h���5N(�X�W\u001b���\u0019[��S�h�\u0010c6ϼ��(���ܛn�7uH���!ⴕ���?Ƴ��v��(�-�w���\u0019�����^�\u0016�x����a����\u0011Q�S' NBj��&`Iע�n^T�$\u0011��\u0004\u0002���B��\n~�Ƹ��v���\u0004��+�\u00017�,�Ģ�D#O9Z��\tl/Zt�1��M~>�OP�߶B])����bӣA\u0017� ���L��we�{%\t=��J{��*��םgMQ�γ���S�n����6%�\u001c�x����\u0003��t� ���~\u0000o�����dcT�����=�\b\u0019`3\u0014��\u0011�&��\u001e�LO�p|v�q19\u0005�E��_�e�.�3�>�\t�*\u0003�u#�)����Ѕh;'ki\\�&����>\u0017�$Lʞ�~�W�\u0014�� [��ʲ��?l��'���*뮰���:Ū6�w�<�1Nh\u0000O�Q��K��/��c�SZ4\u000f\u0001�C�Ѥ��\f���\n^�3*�\u0000�!���`��\u0013Ϋ_�Ey�E\u0001L\u0005���օ�(��G�Nb=�)��R>�*P��A3� ����n�Ț��\"��:�X<���H�+QP\u0004�0\u001c(ȋ�+hn��~\n��Z�yd=kCx\u0013Za쭿\u0004C���i\u001c�>4\u0005\u000f\u001c\n�\f\t�\u0010�އ�Uн��\u000f\t�=�k�h�\\0\u0005�e~��59\u0015d\u0014�,��U\u000691!��Ձ֔�a\u0002 ��������g\u001c�\u001e��{P��U\u0017]\u000f.�G����\"H$�\u0007!^ۊ��&�0�\\��J�0w��\u0017�8_G�8�l�,Lo\u0011�Z?Pmp\u001b�<��Na���\"�\u0015�j��'ɬ��\u0000C�A\u0012��+���`\u001bh��\u0005\u001c�f\n=5\u0002���*\u001c��Y\n\u001d��O�7&d\fo����\u0013�NP\u000f\u0001�fTR\"�\u000f\"�\u000f�d�l�\u0001s%0o�\u000b����AU� ����b��kÑH���\u000e�5.,�:'��\fZ��f�\u0012��\u0011\u001b��t©:�Y*gm\u001e}X�<�s(��k\u0016�R\u001d\u0005����(`l��\u0000�B\u0005�\u0014=v\f���N�(+�vK���8�RLzu\u000e���s�\u0014T�q����4�Aɱ���e��\u0018hd��MU\u0013�~�V�R3��ތ\rF6����������Ge(+�S��b ���d\r�\u0000�I`�й�{Y3���0�Y�\u001f\u001d.-��Bqi4���%*G����O'���U�!Zu���A�P�lC[�!4Pz\u0018�p\u001d#^Β�s�tf�|���\n�\u000e\u0012\u0003��)��\u001f��l\u0005'\u0004�\u0013(�Z��lh����`�?'\u0011ĀKF\u0016x\u0017�ֈ�f�e\u0007P81됴�();*�Z�3�\u0002\u001bm�-�\"��F�����ա�A�� Ѐ��bjk�{\u001b�n�&�\u001b�,(㝲�>�b�zՎ\u0006�\u000f.d\u000bf��4;\u0014���\u001d<\u0003���C�.��W=]�>�Z�W\u0002���S����\u0005����cfz7�U;�.�΄�ׯ�s�ϋt.\b����0\u0011�d�����i�o�E�`�}G;9Y��4{\u0001�\u000e��B�3'��ߓ�\n�=��?�\t�Æ��SsW�\"D�7�k9\u0018!�<�5q���I8�A+B:e3�y�@�J�\u001e.q\u0005P�h�\u0010\u0002���$'7��pjkM\u0007��\u00042�\u0002-�\u0017п�n]����&�atS\u0001Eq�\b�LmR���M�\u001cͬ{3e���5*�6\u001aZ&-���y���n�\u0007�lv�1\u0000E�/UÛ/�ď ً\u0000�7�\u0006Bh\u0004�����>�S\u0014<��\"��,}\u001f��K¶{\u0013�����p�\u001a�/\u0011~\u0001)�������̯桄3K��pV�g6�_��З\u0002~N�-�*'\u0010�f�Rf��D\u0016gx��B{䳾��[\u0006�\u0017@ܻ���B��Q�\u0011��v�b��j\u001e��0\u000e�.��9��M�vY\u0002C�i3��u��\u0011�;)��\u0011�.��4`Ϧ����2�e�u�7��%l�\u000e(ˢ\u0011�����t4�u���A� ���a݇�\u0016�L�9\u0011_�E\\5�i�z�)�l�|\bhC��\u001cJЕ\u0001\u0000(\t�\u00180\u0018�\u0000uY\u0010f�\u0007\"\n\u0019�g\b\u001d\u0003F����U��7�\u0010���b2��P&�DBu�y�2=���\u001c����\u0003�\u0007�� n&��\u001d,�-������d�R6�q��'�H�>��e�͎n:sUﷶ\u0017�/\u001dxf\u0017��9p��� }{\u0010�\u0016G�H�X��1�N�%����>\t��l���u�\u0003�\u0015��\\\u0018\";��L�E�\u001eU>T\"���w�}\u00179��R`\u0005N\f?��\u0014(\\Rf�;�\b\u0003\u0014ۺo\u0013�[��{C��@�ו��\"Q|�Ŷ��)\b琰�bv�֙O�1B�#��C���-P�x����W�E\t����w�\u001e���\n,>��\u0001����`N�\u0006|�=Ϝ�-r%����/\u0004~h����)��\u000e\u001dEc�\u0011�Rv��e�DKk$�˃�꬇`L��f��MH);D\u0006����c��I�}�~JKz��T@�2\"�u���l�,�|�T�ե�AU�!H��L�؀��Yq�\bi7Ga���n1z�\u001e�C\u0005\u0016j�A�\u001f�Z��\u001a%�߸\\2n\u000e\u0013\u000bL+\\\u0006�<�\f�\u000b\b <7�i\u0000�*��Fx�����\u000f۬�E^tr�\u001a�F�}�5t���\u0016}JR*�eGZ\u0015\f\u000e�U���Vd\u0007�\u0001��Z��^o��\u0015��N�0\u0018�c骥\u0006BD�\u0001�k\n\u0010��f��o\r}�E�T?qa\u0011���\t�g�٬\"1���*�: f64�2B������'�*��u�{\u0000�F�>%����RG;bzdN���\fȒ��}��p�g���@j�\u0000�\u0000Q����/�Pó�\u0000��U�>%[\u000e.�H�2c̲Hs\u0003r͍�S���&\u001bi�V\u0003�$t�w�G�?�.0�Uq\u001f@\f�����Z9�\u0010X���~�'p�\u001c\u001b�2��AA�!\\��M-�w�w�L�H\r�eL�\u0017�}DF���6N�&hc��r㗶\u0001���\u001f�4�ARn(n\u0018�m8n\u0015\u0000�m�˔�V����j����\u001a�n$��� �k�\u0006R\r�Bs�\u0003���p����\u0006鴍1�Z#�a�v\u0017\u001cr��7�Z�\u0017��\u0004��\u001c�ڹ�M=�Z���ܺ�F�ߺ��Q����`�Ȟ|���\r�P'��n�ñ�\u0013\u0018S5�1�Pη։��ʁ�4\r���� !/\f^\u001ac��t\u001c��5ՎcRUx���?���\u0017\rSR\u0004\b����\u001b:�\u0015m|$�%d�gV7����\u0014PM+��*�\bJ�[\u001d�\t\u001c��-\fMp���L\u0005���X֪��J�\u0017\u0012�\u000e����BȹG�\u0000\u000e)\u0015�\bD_\u0006�����A4�!p��M{9�K5]Tŕ��p|��$�N\u0012��D�f`p�9���^��\fCO|��V��Y+�k�\u0010�\u001a�Y�}�֤X\u0013٠��f\u0016\u0012\u0006T��\u001d%ۍG\u0004\u0002��7҆\u0005�^��\u000bMx8Qk��X�\\���1��\u0001�I4�G��E\u0002d�C�W\u001b,@�!��\u0006h�\u0004�o�,\u0014�\u0006\u0011NW@(�(�O�H�z\r��=���\bkw�*l2w\u0006R>�)\n���\u0016F�A~(B�\u001bSˤ��\u0016��|%���ξVE�Ar�v��:\u0011�7 �t2��\u0015� E���WE\u0010۠���T5\u0004ʷ\u00036�*��]�1�\u0016�3��\u001f�d\f\u001b�2\u001fmXQ�(��>x\u00157�^�c���C�Ӫ�)6b8�(\u0004��1Q�c�A\u0019�!���L�\"�og�\u0010��=eG<�\u0003���\u0010%L\u0006e�*�J���\u0000��\u000fz'�\u0000���t�-`𾕙6X\u0007\u0001\u001b�F�r�h���-���\u0014qi�֨F�T�\u000fU<�l�\u001d\\|�<\u0000�D\u0005���뇇\u0016�(��\u0007�O�*~GB�p�emU�\u000f�\u0016���js�\u0018�;^��O�`;�Ц{A�\u0017ԕ'�@K$2��\u001c�\t�k\u000f\u0007J\u001c��b��e�ah�kf3\u0015l�Ph\f\u000fqC�\b�-�(��KO�����,�@�X9{\u0017>�Iu%�\u001b�\u0013�8\u0004\u001f}\u001d���=W��� �̌?؉�\"��(9�\u0005��$0X���Y�x��W�Š�.!s\u001e��dS��޾Xdk\u0011���p�R-%.\u0017�G��\u0004���u�(m����\\I�\f�����\fȉ͕�Qk�kr�A:�!���MYB�\u001d�Z-.�pFdd�p�\u0011s��\f{Q���b�\u001a!���n\u001aqy�\u0015�\u0010y�q���1�bJ�W����f۵\u0014\u0016���it#\b]:\u001a�򌴵������C��Z���|%m�Eb2���\f�Y�;B��ЋH�\u0012\u0006��pB�x�|C!,��\nR���Ì_j�ܙ�\"�\n�\u0010�[�\u0011�k�Uw��ܗc�|n��.\u0014�G�\f�1�\u001bM@�\u001d:�\u0007U\u0001��:�����G�J�V�\u0011�\u0000�3�\u0015�����ܥ��z\"ܻH�8u\"\n�V�1\u0013�uC��Q��n5\u0007\u0017\u0011%:]���n�\u001c�2|k��\u0010�V�muz�\u001eH|ku�-�\u0013\u0002��)V�XI�\u000b�\u0003,�Zh-��۔\u0002\u0011�\u0005\u0012\u0016V\\�A3�!����\fl�Џ�v�=J�\u001d��V՝�\u001f\u001b��g\u0001Z\u0004��wS�&l��\u0018\u0002�~\u0013��;�2[[a(\n�\u0004\u000f�|�u�3���\u0013EA?9��ʺ?�5޽�#wB\u0000��羰�=;'��\"#\u0011�jH*�q�q6k]�I\u001b\u000bR�`\u00053�f�@�1?\u0000ex�\u0014T�j�\u001e@;�Ѷ����/�\u001b�]_�6������_�]�\u0002��Id\u0007\u0002\u0017���|��ͨ��9�E��Z�\u000e��F�q�dꜱ�<\\���BӀ}h�\u0002����$��=�\u0002\u001bW\u0004��\\\u0016C��s��P���w\u0013�\u0015Bw���1��'�\u0018������5�A���4;`�����= \u0016�J\u001fZZ,���*6�\u0006-\u0002�I\u0016�\u0013d�A$�!Ԁ�L�\u0002[Q\u001c�-�\u0017���\u0015%���'�wA��^/�N�۫}�6��c�Qē��ى*�YH\f�v}0��F�n�w\u0013\u001aF�\u0018W\u001f8��\u000f��l��9{^-�8�Ψ=k.�u�Ku�m�ɒ͗26`�&>�#h\n{G�������p�!\u0019��\u001d���3�8�,G�\u0000`7}��a\u0004\u0007z5���N���\u0017\u001f\u0000\u001e!&F�_\u001b8Z[�Os9�Kk�<\u00012A����kJ?��1�\t\u0000(���\u0002�JJm\u001d� ��׉Nj�3w\u000b�M9�R�_.\u001d��U����fM���9�}+L>k�$\u0016}�aYYQ�,�D\u0014S*>S%�b�C��p��\r�'}�z�+a��>'n�A$�!��۽S\n���\n��r�ny���|\u0019�[�&\u0013�\u0003�\"�ҘQ�dU��\u0000u�mF�E���)`ze�\\��Ҫ���\ri��CHW\u0007�\r|pU\u0017���$��B��\u0007�!}�\u000e�I�J�M?>�ИRnK\u001d���\u000f�;��|\u0016�M~�k���™�if\u001e��`�w�h�wap�zu�[a?�F��\u0007�5����.T��`>��m08�E\u001f˝\u00036\u001c\u00122�.�֚?S�h..�'�4:�E)���dKH��7)�/�:�,f�}\u0017�~�`\u0013�{L�^��A?��mq\u0019\u0007A�\u0013-l?����[\\�� Õc�zk��Z�>C5o<��T�U��tifRe�ŷ2�)�D��@G5�!{�#��5������cQZkw\u0011u[,\u0019x���9��\tzi���A\f�\"\u0010��2x\u0000PE\u0001��n�T�Y\nv���8\t!\u0006�oR&\u0007\u0018\u000f\"i;�\u0005\u001b�S\u0001D��]�i��S,�}�L��\u0011�'�\u0007���\u0012\u001c��4p\u001c��.cFVRl�2\u0006\u000bk6�`c{Sw�@=�֖^w9��O\u001dݷՈR�:�\u0016���\u0001�\u001e��U�򕴶�\f��L����\u0001a�kƘ���ݨ\u0007fe���_�Tf��\u0002�\u001c�)��-�\u0014.\fx�Q��vh�m\u001c,9r�\u001b�f\u0002_���۰M�H�Dv�\u0015����H����\u0004�M�\u0003�z(B���_�&q�}0�٭��V�2R\u001c\u0004`U�C\r��M7pv�\u001f|�U\u000b�A#�\"$��X�EY�:a�&��\ft�\b�$ޞ6Әg��rܹ�kݲpQm��]≖�ߊ\b�*@vP�Ț\u0013\t��\u0016��\u001e��\u001e�ޖ��\u0001�_*���W\u000bww��2�D�N�Y��X̐u5䏞+��\u0002�\t�R�\u0005��+\u001a��EZT�{�\u0013�v�=p�h�a\u001a|��\u0004�I7w\\!��ۡ�U`�\u0011��z���8��|�@$��'2k\fFHId�0��[��\u0007�)\u0004G�E��[\u0014O�X�Cs8bU9P2��O^��5�)����uB�M\u0014��X�K\u001b�T\u0015\u000e5)�����!%v/l����sr\tYBLlj2�\u000eԵ���Ε�^�$m\u0012�e>�\u0004/��ڣA\u0011�\"8��XВ��0�@\u0019�-�=L-\u001c8c���u�\u000f�;P�C�\u0002�G\u001e�\u001e�\u000e��7�10����lE���Á���\u001fĀ\u000f\u0019�f�\u000b������h�l�\u000bӻ�p����Ѷ)�lmRҽ8��1�\u0000�%���\u00116�{Ko�+\u001fZX�@-\bYz��5�\"\u0018�^A\u0013`�v\u001e��n<8�u�v�$t��\u000f\"�0�@��\u000e�\ru��ч���\u0002&\f��Ե��\u000f\u0012�˺�/\u000b�a\u0016�0#T|�l�`��Q�a��}��\u0014F�����˓��\u0006��\f�`�\u001b\u0019�\u001e��t��yV�꒣�ۼFj\u001a�*��m����G?��S\u00106�A\n�\"L��X�\u0011L�6u�r�H��\u0004ptϗ{>\u0017$�ge\\I�e~?r�����~\u0018G\u0014�K\u001fΨ+@��ra\u0002^O��ӳ$�j���\u0006\u00168-\\����u�:3eb\u0017��\u0015&\u001aD�K3r����-L��U�W�\u000b�y&��e5Ӟ���0�jJ�vm\u001d��\u001doPTjaM\u0004\\蛃^�C\u0000��8k�\u0015-�a�J`I[�R����\"ش�T��m�\u0005EJ\t�̾T���\u001dro�8a�^�q\u0013@\u001b*��\u0004\"\u0010��B:>��\u001c��eL�����^x^|\b#��������\u0001�\tux\u001d��<�����[�\u001dG\u0000�N�A�@�A\u0011�\"`��L���)��\u0001�\u000f�ԡbu�`�X\u001bÇo�\u0003�\u0007��\u000e0܆h�~=L�/�0�\u0006?�1��\u0016��QV�K�l\u001f����S��r[C(�} \u001a�Uc1+a�\u0019$U�>�����20���,3iX\ny<�<�ѡ\u0000�:K\u0002\u0001��Z\u0004cٖ!\\�׏\u001e��J�d��K���\"�G19�\u0018���/��� 9�{\u001d;\u0014�M�^�m)6-\u0014�\u0016p�)\u001b>�-�y�_32�!�_jOĈ��㤈��\u0017�*3���/R( ��<.�'\t�h��5����\u000e\u0014�\u0016\u001a�\u0014^������fy�U\"�N�',gf����_�\u001dd�A\u001d�\"t��Lذ���=\u0013�[m ��P�-|F�\u001b�>��i��\u000e\rH��\f�C\u0013�\\��j�v\"i�ؓ�ٿE��\u0003�XtK؅����n%?;�t\u000f^[���\"�(En>�\u0000�Zh���\b)��W��?�n���g�P�b�\b\u0006��+�Z}%����~k���\u001d\u0016a��[���k�0#%�O���oI<�\\��\u0006�\u0013S���逬fT�l)<ᮨ�\u0002��UK���\u0010]\u0006\u0014��]�\u000f�^�w����T*5��~)'�`�O��:׼��^_�l���@ۻ�4��pʾ�>��c8�\f�f��yL�D��F2���^�\u0002?��$��mL\u001dq�+pS\u0011�A\u001a�\"���L�\u0006\u0003\u001d�\u001cU�7��,\u0005\n\u001f�g���tv�T�\u000e�\u0012\f(��AX�d&�\u0012̮(Pv�\u001f�@`ݏ�\u0000\u0014.iD/\t�s(���(\u0018@��}3Ҹ�b2\u0015Y\u000egh�1'�*�1>bUI�\n\bk�O�\"r\u0000�lg���f�>ړ�>��1�2�J\u0018r�:\n7E�S�������\\/\u0005ZL����?iϸ��UΦ�\u001bvyD�Vm��{�`����x\u0006E�km\u001ba�I��\u000b�\u0004�\u0002�*�Ď+��8� Kk������<�N\f�\u0010��Y�]_a���B*R<.U��\u001b\u0014f\u0018�[ӛޫ\u0006k\u0012\u00106%�G��\u001d�n�\u00055�\u0016\u001b\u0000+`��\u001f\u0005-�A)�\"����\u0017���QX`~j\u0011�ú�/���\"�Y�|�\rV\u00108�ǃ:s.]<%(g�9��Jw\u0001��`�(r��.�\u0010�\u0014r�o��fƘ��\u0006F���=\t�\u001a�� \u000f\u001b�>��snq*��𔀗5�s��H\tr���!��Ʃ�(\u0007n�n�#S3_��5M�\u0003�����k��`1\r�!��b�f��|�\u001c�$�|�\u0015ơF2B�!�w(x��\f���4y\u0013 �7�\u0003�8N��2���Ѭ� ؙ�nx\"�\\��+\u0001�L��\f��%�\u0015�2�bj\u001cD�\u0010�6p�A@\u0001��� B��\u0006�+\u0017����\u0002��{oCڂ8�\u001e�d�����!3lRT\b���l�52EZB��A)�\"���1\u000e�1���\\����`e/^z\u001e��K���+�<��<�L�\fk[/�\u000b֡\u001e���6`\u001e�E��#8�@*�����\u000b�\u0006H|��f��2���g::\u00073�=�ծ>\u0012m��\nS��\u0007|�\u0002��\\r�{E/4�f�u��\u0002Z���щ~�J�^BK\u001f3\u0014�\u000f��©�ۅ_��̠R+7�f\u0003u���?\u0012<)G�4;�\"��8;�\u0003\u0014� !�)��5�a\u00162�}�\u001e\u0012\u0004�\t����>�r�Ӷi�h��\u0005�e�\u0001�\u0010~e�i�ť�\u0016\u000e}\u0015g�*�\u0014�I}rJ�p���f1�w�@��\u0016�7��WCi�۹ �ĝD��;�\u001ci\"��F։���j�\u001b�A)�\"Ā�.�`����=]�p�l&��ԟ�\u001c>}+\u000e-\u0015�}�W@�g\f�R�i@\u0002$�\u0019Q���`#��\t\u0007�;_��H��`8K\u001a�\u0000X������;6g�kC�o���7���f��q��H`��\u0000\u000eI�bQx�6�\b|�\u0016M#��Ҁ��M:�R<�Gp�B=�\u00025h��g����>q��#G�A������\u001e\blj��;j\u0006\b�(�>\u0012\u0010�d_\t�X�����N�����\u0010��1�Mn�\tV\u00191\"ӚA\u0012\u0014\u001e��Y�_l~Y�8Oq\u001a���6\u0000�l��̊���b\u001c�K���/��\u001b�ՀR���P%�`]6\u0005�u\u0004��P�[�aƲ��E8ot����q\u0014F\u000eB�A\u001a�\"؀�\u0000h\u000f#�\u0001����>An!\u001c*�v=����\"\u0004��[@?\u0011���x���F\u0007��.2�6���ܘuD�\u0011�1{�;?�\u0001�Y\\���O�z�#f�ߖCP�a�\u0017!��\rFw�W�d\u000bln\u0016}�U����:B\u0014�u�\u0005��9����\u00032Ѥd��-,N���i�2#�7T�ܷX\u000b�8�\\�gU.��fM�x\b-���je�x=�E�^\u00195��^e(o�3�8\u001e�\u0010�\u0001��}�R�#Rg\\��s������M�s����M�\u000e~\u0013�z2�\u0007\u001c�2\\\u0019rr\\B�÷f\u000b\u001e1�n`n[\u001f�f�n=�Y�*(���ۣA$�\"��7\u0015�\u0006I�x\u001e�\t��\u0010��v\u00110�@�\u0012Xs-\n����~���)�R8���I�u��g��\u0015�2��\u0001�\u0000\t�\u000b+�z\u000e\u001a�X�\u0017\u0012+��b�$�?JS\u001b�1ZIE��dCb�?��\u0013���ts��v�\u0011��CDZ�y\u0003�:�#j��s���t�l/=�\rp\u001a\u0018%B �_P�K8�\ra�h\u00037�l7�N\u000e��̐�,�����'��W;8@�\u0015��\u001c�)�M��ۣ��\u001e�m(\u001e�y,?�\u001aZI\n׀?�:\u001b���X��V��;[ܬ=~�?����2Nh�W������\u0007�.�]�Q���HO�\u001a\u0017S~D�f\u0006�\u0000\n����v�|��F\rʆ��`rw�dSd�sϞ�[-=j�u���\u00071\u0018����A!�#(��L��̋O��u�I\tր=Ff/D.EN�畵n��\r�\u0016f�k�.\u001d�H}�\u001f<󎆧A_��iV�!\u0016#ՕA�R�Χ��$��ƃ:�H\u0003�-Ӭ;��\\\u0019�\u0006^b��Iܸ$-�J�G��\u00035~~�\t��/�+�-��{O)�\u0016R\u0012L�画3UI��0��c�=\u001f3�a10�*C�F\u0006�Q\"���������8,Z\u0017�\u0018�\r��֝�XY��'��X�?��\u0019�e\u001cC�\u0018ɒu崵���/W�8\u000e�a��׼�IL�H���h�quU��\u0019y�\u0014�z�=�Cd��Z\b�ԩ);��v�褍�i�;q&2\u0016��\u0005-P6\u0004��e̛�A+�#<���\rQ�zB�:���3�F+�4\u0016������J���\u0017�\u0006�\r*����1o!=�b�����.�\u001e`��1�sGK/8\u001e�R�Ƥ��V\u0004\u0012�Q��S\u0000��'�(T�?�B�z�(��\b�\u0019U������G��U\f�2�\u000f�\u001f\u0001nfs�z�h�f-�o#��H�\u0001\r�c\u0011���\u001d\"�~�m\u0007���\u0007Vܞ�ʼ��\u001e�u,��\t��)�\nup��L�\u001c\u000b�d�:����\u0011,-\u000eL�t�ά�\u001d�V4\u0003���fG+5B}��\u0011��\u0014��Q�!��l8\u0017\u0005s���ś4+\u0019\u00106\rW��\u0005�j�i<��y��=�#\u0012���'�~v{Ru��ɗ�-��W�9.,;\u000b�\\��A%�#P��M4+Gv\\-�����z3��F�\u0001����Ԏ\u0006\u0006\u0001�\u0007\u000fd��?����:ѽ��\u0000����s����[\u001a*/�\u0018\t�0�\u0004c� �Wc&z�N��7�z������I��DJ#ڍ�o��VP\u000f\"ك@�8.\u0004��\u001fZ�b�}�n��,�=�.'�������\u0005�Dc�\u0012̵\n�\u001c��ߢ$��\u0016A7)�Sމ/\u0016��\u0010�\u001f�Er�0�����\u001c_��\u001b�T\u0018�����&�&\naE6-&-}\t\t9a/gEJ���k�䣣A,�#d���cͨ��ef���\nv��>:R'��:^�l��*���B�l�X�\u0018\\�a'��a�Ŷ ~8�\r\b�c�����\u001d�\u001b\u0002$p�}\u0000VP��sy�q\u0018��H-\u0019\u0012�\"o�a�ƒ`�G�\u0015p[����&�\u0014'�>'~���؜J\u0005��f#\u0003!\b?��/ԧ�q\u0014\u0012�6П���\u0002����ql/�Z\u0002�\u0016�X�\u0005�?V4 �Y�?\u001bH��\b��&&���\u0003z�o;\u0018�\u0002��M{6��5p�8���:Y\u0010c�禅�c�F�\u0017�lʕ�덉@l�ଙ2\u001fi�vE���L+��-��\u0004\u001d \u0014����\u0007��*�A{s�ݳ��\u001co:; ���<߂<���Tm\r\u001eٌ�\u0018�A7�#x���k�;�C��w�g\b�N2=�\u0002��G\u0004X�=+��\u001a��r_F@��ޗ2�i�&\u0004�}�\u000e������\u001c�ˉ\"O#��)9e�A�a8R\u0019�\u0012)�c\u0017R�ÜH���ozx���,\u0005��\u001f\u001b��\b%ں�nS�\"��⦕�JP�c�Kמ����^\u00027+A��~J|��|������\u0000\t�ƻM\u0012q\u0003�\u0005�5T\u0003���)[�gqm>�\u0001\fD5�j!?ֽ�Ԇ�a��\r�'\u0005��Gݸ�#�\u0001��X�ɒ\u0017c\u0013�\u0012�:'��=�u\u0013\u0004Ѵ�0����3��h���d����G��]�G\u0012z�Ϭ��x�;�A��G\"r�c�\u0001�OT�tI�ku���ʢ\u0013�h���/$,�ꫜQ�\u0013�A/�#����d�i��8ϯ��ջ�z}�c `]�:��\u001a-�\u0007^]�-�����ј; \u0006�t��ʨ�J�V\u00162�����\u0004A�.r�P��\u000fr\u000e��WtN�T\u0007����\u00188�������g�v��a$\u001cjTP�X�J�j\u001f�v\u0003P>D\u0004�]�Hv\u0016K֙��\f\u00171�\u0001+�U���0�\t\nx�\rじv\n=!� T����v�Iy�p���\\z��y�K���.A4e�eHV\u001f\"��*#\u0012J\u0018\u000f`�4x\u000eU�f=`��bo�vG���l��$����h���\u0018�qu\"S聇~\u0013�&M�*�湯e\u0016�*e݆�<7*���\\\rE� \u0014@���?�eI\\��5�Kb;�\u001f��h)�1�a\u0014�.Zǀ����\u0003�g�Ξ�!�o\u000e�� ѐ���\u0006%�e�?^C\u0004J��չ�M�r�0��+��x5��%Hϕ�Q��C��\f>R��Ff�!g\u001f��c鷮�k�S\u0019��m@��v��\n�D\u000f�:�üd�1P���\u0003ʂ\u0005��K|��D\u0019.\u0004��M[D�J��2Rv��d���E�1+n��^yOD����H-��|\u0016��\u0011�>B0 �8g\u0015��:5b�K`���ǁ�����Jlgŀ����p��4\u0007D_j��A;�#����mw����J��(�\u0004�Y�\u0016�R��(�kpp��Iמ����K\u0004%x�_\u000b^��\u0006�\u001e\u0006'�V_V��3\u001bU���Lwu�\u000b�34f8'�n�v34�,��\u0013�J�P6�\u0002���֢�n\u0012�\u001a��Zu�&+U\\\t�\fw?�ķPl\n1e\\�o\u0014pߘd�a\u0019|b=�dy���� n��\u001b�\t�U\\�R\t�z�Z��^�bU��\u001cqxex�š��ƾI��\u001e�3�i��L��;y�r�\u0003��Rc�\u0019`�jG,����\u0007M6��a�Dx��mS��JiN���+\f-�.���\u001e\u0003\u0002�-\u0004p:p�pW�6��̯�sv_v\u0003\u0016�������_�U�lw������Q�����e\u0012\u0014W{�12\u0001(\"��AH�#Ȁ��d�܊��.(<�=�N��l��~Bdz�e��a>\b\u000e\u001c8�fA1q�u�6�<����M���c�a�\u0013C�\u0000�7��fX�aAͻ\u0012�$x�c}�7Τ��\r�o[Ɋ�qc1\u001a�}��(8�sgΥ\u000bfo��Ł\u001e�\u0000\u0014��c˺Wp\u001bK�zFw3��2M� Г$J{!X��\u001f�E��x\r�\u0018�fR�ާ\u0016R���\b�(�\"ժ\u0005�]a�o�5P�1L�\u0000-iB��\u000b�^[-M�\u0012}��ݧ�|��\u001e�l\u0018z 䡧2G��6��\u001c�wm�?b�5�i\u0005�\u0003<{A���\u001c7\u001d�\u0014V��``Ґ) ��<�\u000eԇb\u000fN}�\u0016NY\f��B&b*��7����P[���wJ?\u0016Z$��\u0000�:��~�\u0011{ۃ�ӓv��Ar�#܀��\u0001��\u000bC���\u0017l3��d��\u000eM�2�5c\u0013?�5�\u0019��4�q�Q�f���\u0013<����C�Cmc��\u001c�c�b��e`�\r~�%!U�k�{�=\u001f\u000bgo�m��E\u001a:;�&5ٶ��\f𴖶�p��O�kE�ͧA�g7\u0000\"oYj�S��kCrPڑ��g\\ޯ�\u0012E��$,>o�UT4�0\u0005\n�%V�s\b��m���C�ck��j4�7�V��H�\u0006�Ʊ��JL�w|\u0011\u0015�&\u0006j�w\u001dx�\u0012:=�ۺ�\u0007��b�\u0011\u001a���l�36>\u001e��6�#@8=k\u0003W��)X���m��KA7w�)�\u0019����0\u0004N� ��ŕT0$_��M���]̝���cp�nd@4g}MT0B�\u0019\u0010n\u001e�#9��\r��q���\"lG\u0003G�\u001bG\u0001`L��F$�l�ip���\"\u001a�%9�؅l���#ꮌ\u001f\u0006x�4W���A~�#����9\u001c\\\u0012+qE��%��:�tmy��E\r�a�\u001e��������6<\u0013��hG\u0018��2��B�ن��d85�G�dc�)�\u001ch�o�?����\u001f�>��r\u0012�~t\\��)�JdFz\u001a\u0011�\u0016n%˦\u0019K���;q�Wt�\u0004�L\u0006}l�\u0003/��t�ƧG�ѳ�0�!\u0019�\\��\r\b\u0005,J�r�oz����̀\u001ax�\u0003^�u,�w�\u0003�\f�KK��f��\u000e�\r���8�^bD�\u0005n]q����T\u0005\u0004�&\u0014��C�\u001b`QM$/<����K���^���dא6��WwВg�é��r����3izȂ�\u0010*�=�\u0003��u�x5)\u0011�}�0s�3`��\b�\u001aס\u0018Vd��D�\b�\u0014B\u0015Ƅ��KO�*T\u001e\u000b|/\u0003:��(�]�0�\u0012���\u000e�}��R͙��n�\r<�\u001c�&���؊\u0003[�,1$��iF`\t%�?���\u0000�ж�\u0012�A�$\u0004��}� �]�3\u00025��U�'\\P/.~�))�XI�~�2��ܓ�ݤ��d�a1<�H�lh��^�~�(���\u0010]�r\u000e�q��\u0015��\u0007E����:9\u0001l�]�S������|0����\n3V0��\u000b�\u00078\u0001�j�f�o�/kDq��A\u000fV;�W�w/ �\u0001F�Ӵ�>!3[?A\u0006�6Dx�\u001f�K1^�7ŷ?�曚�\t��{\u0016\u0016R\r>:��\u0012���\n|�ڴ����k����D�*��@�\u0002.i���\u0002~��\u0005�룕\u001e���,d�H��t�g�� -�=�Nam�r�k` ��f`�C|�\u0012&����_�HdB����[�M\n�*�&��%���|�^\b�l��\u0004�4E\u0001��U��[�l-�ٜ\u000e��\u0016�]�2Fy\r)��U\u000e\u00045��\r�}\"���{���u�b�e\b\nƮE\u001bf\u0017�!L�\u0010V\u000e*`u�����\u0004;\u0002��\b~t�d��?+\u0004ҵC���($y�&�UtI�w��۠��\u001aʻ|\u000eG���9���?|�d����5X��\u0004\u0006��L����ˆ\u0012��%�,\u0016����^bMbn\u001f�2��\u0005�oR���G�l\u0016��k~�A.�$\u0018��n�]��А��4@n~2�!\u0013V�V$�؃\u0001,֕���;:�\f\u000e�^,��:\u0017��\u0005֥���J\u0016�-�^o��I�2���u�0Fd|\no�x��c|��٧����\u001d\u001ds�H�Gq{XRäk\f\u001f$\u0011h�KaD9�\u0011��R�5�8S�<6�j�\u0005�_*k�7��{�\u0011�c\u0014�q���B����\u001e�\u0010�\u0018�ԇ\u001e\u0002l����H#�&U���2���J�\\U5��\u0017�-.�W-C&p�\b�^��PR���aC���Qh��O��G�q\b\u0001\u0004��l�j;p�j�\b_����;��\u0002C\u000f��\u0007����\u0002��0�U��Mf�f\u0004�XDko\u001cD�%$������cCqU\n�A-�$,���m����H\u0018\nC�@ie�ɍEa\u0004��\u0014>�w?�;�\u0016y��$\fL\"��\u0019̾�\u0004H?\u0013��xy\u0000���m\u001e�S/���\u0016bA.$���\u001c�V\t�wū�\u000f�a�{�v�pLX�Jsd\u000f�p��\u001d\u000f��\u000bJB\u0014���U�\u0000\u0011�\u0003�p^E��a��I�\u0007C���}��n�T�Ù�~�,�\u000f���eI�\u0018�b\u001c\u0006k�a��\u0010|T7Fi�\b�f�\u0013�O3ص��q�Q\u0018gxl�gÄ��G��Y6�!<�\u0001�\u000e����\u001eۏ�C��ԣ�\u0015XQY�������Ӵ�ϯ=3��8A��:�S����c\r�\u0003\u0013\u0017�2K~]\u0010ݸ�(ت\u0017\u000e���X~�0�����20�A%�$@���\r���@��\t�\u0017��\u0019֤���H\u0011��,J�0ػ�%�@b�W��\u0007�M|?g&���ϐ�+�hd�>az&���`=+N�{�\u0012��\u0017!�N�N�I���Wu�'R���\u0012n�g��� �\\�\u001bC��FtZ���\u0006�������l�k����R l���@�\u001e;\"ZXpY�7\u0005\r�H�j��7C\u0012#Ĉ\u0000\u0006K-\n䱂�&�6�쌬r�0��Y~�{lZ���\n���\u0001r��d*�t��eJ�\u0000�㇬\u0006�nU�k|���[p��4�\u001c3b�y<����fMk\u00102�wo��I�hk���R޹�w�_�5�\u0014r�����y��\u0002�r�S�I%�Aȁ$T���s�+\nA�r\u000f}�&\u001c���,�]�*k7^���:�v�jU9V\u0007|�;:hK����׼M�C\u0010y�0\u0004���[�\u0006�\\�t���:\r�!J�}�Vm�\f]�&^�\r���bI|��\u0010���\u0010�\b�����L\u0015�����&�0LAǙ\n�\"����}��\u0016�\nW���Kӈ료���x��Ҕve��\f�P��J�̽��\t\u001ev\u0019��\b��-��1�G�\u0007@�?l���o��\u001cfŪ�\u000f�Y�5b�\u0003��+&\u0014o�\u0013�f���\u0004z�,B�=J�\\6ʓ$C\\��\u0011,�\u0017lG�\u000b\n\u000f�0�\u0002��T�q\u0000ͥk\u0014�\f\u0017�8�{\u0012G���42e�\f�\u001d��=\b\u0011\b\u0000��>�K8��\u000b�/�wm�\u0007\u0007 �{�TK_N����cET�\u0000T\bLNZt&��\u0001w�Ԥ�=P���r(!�\u0014v��W\u001f��$V_�\u000eh�p�W�v��B\u0004tՑ�\u000b�w\u0001\u000f6!����*I��hl��|���IK\"��n��\n�^\u0010\u001d�QH�a��V\u000f%\u001e�=_.���{���\u0000Mۈ3�\u0006_�P��!�Ac�$h��L�3�\u0015zc� �ӟ:G�S�N舳7��5G�j˖JG躏�\u0006�+$�C9\u0010Q�\u000bVZh�k~�H��\u000b�;�ٟ�乻e��0�1+\nM���߾�KL]��\u0010�\u0000\u0017��%���HR\u0002��J�;�\b�kqAQ�K8�\u001f\\��z�)\n�KmrW@c��)Ib�\u0011����\u000e�����x|���\u0016;���J�.��m\fn ደ}l�;R�o$4\u001f���\f�*���yt�\u001a\u000e@�Al;\u0000�\u000e�p��$\u001a���\u000be�`;�v}�?\u001c\u0016\b4��[~\u001e��������Zƌ�?��zڕ���ۋ��\u0005�&�&\u0017^��t���ļ�G�:��L\u0004��\u0015�le��\u00007\u00060��(�JxE����� @v\u000f�\u001eB]N��p�n\u0000}k7�����%�l\u0002�q\t\u001a#X�U\u0012X9�*\n�\u001dd�AF�$|���c�ϫ��_�qŷ#��ߪ�\"�h��\u0011�c�\u0019Y�.~MR��'\f���y�\r\u000f'B\f?~�RX�\u001f��AF\u001d�m\t\u001e��\u0014\u0002ʏ�t\u000b ��&}&!�x?s�\u0015�l�O3裭\"�6�\u000b��D\u001c���h�Ϻ^�2\u0010�dm]}<\u001bc\bk��,��O$���C�i~\u001f���+\u0016;�HL�m��A�z6��\u0019w�Jk�A���\tI��X�*\u0004\u0012\u000b\u0003�\tb.��J��!�k�@�;\u0000oث\u000b(��Q-\u001c{3�'+�\u0003�Si@�C{\u0015���GvN���\u0019�{L�C�\u00109T›��\u0010!ߓ�ƅ\rn/�9(U\u001c�Q��#\u001f��,ŝ�&��\\�>�\u000ex\rg�c8n\b\u0004�զ�\u001c;�xh}K\u0012�j�mB7�`\u0015v�\u0007���\u001f�A��$����t\u0001R��w2;J��P�\u001a�\u0015(��]ɋ���ϼ.�����$|\u0000oz0�Q\t4\u0013\rq\u0011\u0015\u001f\u0018�A*�{N�g��w�\u0010y]�ڐ��҆z\u001c���\u0010�X��\u0012\u001bp\u0015;�Q%��g�-4��\u001dVZT�f�9��Xf�\u0001�4\u0015/0��{�\b\u000bv��n�\u0014�R8E�\u0007�ʛN��\u001a\r�\n݉[]�ϼ/�2\u0006%��g�n\u0018�O\u0014�m�\u001fb;Tk���Ȍ����g����f�*��\u0013\u0012\u0012�rϡ\u0016d\u0000\u0014�H�\u0007 �\u0014&+�=�m�]�j�\u0018��\u0001��z�\u001e���\u0010K�υmRO~qPu��\u0018�G,n%�~�\u0004�j\u001d.��`���1\u0003�܁�W\n�dCX�8�}3��D�\u0004\u001f׭rK�\u0017\t���pyd5Z@\f���\t�r\u0002�\u0002M�'�����\u0001%�\u000e��-ګM��_��\u0006筧O��\u000e��+<1�!p2�M��\u00135���|�C\u0000l����O-Ⳓ���$�4�����\u0019q����AO�$����b�o��\\�\u000f>��\u0011\u001d�\nk{����\nm�3d���j�p�0�#\u0005B�E�\u001f\u0007c��q\r�\u0013��X�#��P�}o�q�\u0012}\u0005x~\u0002���\u0003w�O=�\u0007I�\u001f>v�2n�cCR�I����O\u0017�#�3\rY±��dP���{\u0018�{�v<9!��|M����GvO��\u000bθ�O�\u0010�pB0�R\u0014*߅o4���1\n���Ʈ\u0000V\u000b���Or��f�Ȱ�ez�n������W\u0014�.��\b)��\u0001���8y�`�&�I.>^�\f��.MӘ�d<��՜\"��8 ���vQɹKO\u0006s\n�i.\nv\u0010:\u0004�=ըQ��嚺\u0010joݦK�sL$��0Ֆ\u0010�HEK��\u0000L4v�K2�\u000fn\u0011��6�r��g�C�JI\n�+;�B:\u000e� �@�\u001d�AK�$����c�~�5-�t@{̇\u000ev�:����k�*�Vj\u0001\u0006�!�]��C\u0000�+Щ.�#���\u0000*�j������g�\u0002b��\u0011M\t�b��L�6?�c}S\u0014/�\u001eC\u0016!��s��&8\u0005~��\u0019,~�\u0002�Κ�1�4�Z�s&\u0012綾E��x�\n�Ũ3�k�T\u0011���\u0007��}l�\u0007���r\u00028�v\u000b+�\u0007qF�����]a��\u0005\u001eh�̙�1P�Lt\n��m���+5�\u001b�-��;\u001df�P�NsQ��]�\t\u0018�;����-�n�k�\u000f��\u0005F�\u0003��D*#dDַ\u001fd�\u000f1�A`^�ʔ�v�m��\u0000>\u0002\u0013\u0017\u0006u�\b\u000e(\fT<�\u001a\u0017F4G�s��bL��~���y���M��W\u0017C\u0003\u0016v�@:7��@����\"?�cD�]���A6�$̀��U�A��;k6\u000blfg��\n8~�em$NR\u001b�;�G\u000b\"EN\u00162����ՠ\u0012���)�R���Z��M��(2\u0012���3�My\u0001ӄa��\u0019GY5\u0007J�\u0000z|��楑᧳�\u001c��6\f\b\u0001\u0006�Ck�\u0010S�ĭ����\u0017<�\\�\u0019��-�\u000b/���+�\u00037\f�����d��*tZ��q�Yg�n�RT��8�-�2�yɎ}����QN���>\t���),?��eʟ���ľG��)\fA���\u0013]#\u0003.[\u001a?[�ܝ\u0019�����j�{��\u000b>V$���@]�\u0003��2����\u001fW�_\u0018�[N�!\u0019ݭ※6�\u0018T+\u001c�\u0006�\u0014�k�i\u0015�V�B*��Ҙ\u0015BYU�X\u0005˞ᓣAl�$����s��\u0019|y�7�?�XՔ-���q\u0005�ŏ��9Y[�����mF�^\u0011�y�I�\u0015��9��uo�\u0006�֑�ʺ::V6�u�\u0015キ~#\u0001@�u=\n\u0016�\u000e8Ts��a\u000e�=#�ߤ�3k����i�e(�*���\u0000\u0013�y�\u001b\u0003�_�Ф��O\u0000Jo\u0002\u001e�{��\u000bQ�e��N\u0002U�GMK;��Э���ǚ�?�a-�j^K��/��^u�X�f�\u000e\u000f֝P.$>\u0001w8�J�_H��V>�\u0006\r�'\u001cD\u0015�!X�c�⹷\u0005��:>T\u000b@5�����x��G�<-���\u0015�\u001c/\n�H��r��yPf��f�u�X\f>�\u0004�z���\r�=\u0002_� yɶ�z���@�]�R\u0016�JA�p�x�w~�\u0017<؁�k�Lu\u0017<\n��P�0\u001c��8��A�\u0012��]ױ�%.d+Q�;侗3EaL�IM��Ag�$���d�\u0012�\t�%���\u001d��6܄�S��Y�o]~�X��m����!\n��2\u0002��ɦ#\u001d�i\u001a�\u0004AG5�K�F0\u0006[Brry��'�\u0005�2�\u0018:�;�>��CS\u0003\\��b�\u0002�\"ݤ�IP\u0019�%[��\u000f�����3\u0006�/\u0017���[6�%�\n��PP\u000e��\u0002��GD!O�E��Q�ل��Fq�\u001c@�\u001d�U\u0004x�v��\u0005Du�\u001b�T��=��(�+Q\u001b]�����_N�z�\u0010M3\u0012�\u0006�\u0019\u001a�#�c�\u0011N��\u0016\u001a�!\u000f��\"�[��,��k�3X��\u0006�$҃]\u0004��PK�N�Ї\u001b��ꐞ�t\u0006iO\u000eB\u0014LS�(ף�\u001fҸP��Ɩ\u0000�RZ�]�\u001b7L�k���tr\u0016�l���d\u0002\u0016�)\u000e6\fs]]�皉#hj�\u001e��H\u0014�O�w���+�ꛩ�>6�\u001fюk���uμ���A[�%\b���s�~��)��ٕ�\u001f���W%U%�g�Q�ڝ\u0003���3T\\%�\u0001&�o�#b\b�E��1���\u001cm���y��V�2$ݽj�\u0001\u0019����wu~��6�ny�\t�\u000bu��e^�\f�\u001d�*;���j���?͕\u0018�\u000b[��\u0011)g�\u000f�U���N���\u0002����\\��ojS�A�Vo��8@^�'���\b��oG\u0011���t(d��\u000bn�ZR,��\u001e\u0004��LE�]ng��P���<\t�#��7{�K+ ��X���\b��i�\u0014�,#�5����p�>\u0010�Gƒ\u0011\\S@�����J�;\u001e� +�\u0013��!�2�b7�O:s5Q�u���V�r��T��.�#�\u001eA(d\"��\u001a�\u0013\u0017�A�r�-0�\u0019���\u0007R��d����\f�(�sˠ\u001c�r��r\u000bh����-Iq��AW�%\u001c���c��e�\u0000{x\u0007:\b��U5Ȟ�l�7@���T<\u0014G\u001a\u000b�P|���\u000bL�\u0006כ��p��\u0000f\\\r9s�\u0014im~�9����]�ջ3t4�P\u0019\bJ���ā>��ܡ�.�MВ#_�\u0016�街��|;��i/�\\B���K��`�>�5\u0003\u0000qO�߷�Z\u0010���!9i��3��\u000f�q��\u0004�7\u0015G5��׍O[`}-4Q�\u0012:�[�,��\u0018\u0012�\u0019S%\u000f�\u0011��\u0012\n��?�@N�ׇM�yy�A�eaC��#�3�Q�\u0001r�ʖ��Iv���G\u0000�����Y�gJ���-~��r\u0016=aa��+h�$A�l��~\u0006\u000ex\u0011��/dd�\u001a�j\n�'gx��hg~v��\u0003��\f�c&�\bhJ�����mv�B'��es-&��ܪ�\u001fm%�b\u0003P�o�O����AR�%0���c���yR ���\"\u0004�?�\u0018p�m\u0013\u0017\n�E!�%�0Ċ���]R��˼H��&�K:<+�\u0007�eq�*�|�W'vo�t\"5\u001c2\u0014���N\u0017>n'�\u0011/�\u001b�G�7�3�H^a�g�,\u0006��\u0002�[\u0005q��`.j�@\r�\u0019x�Q���w�$��\u0016��ٳ�0$\u0015wW��NJ�w��\u0016�$ʙ��aH���q۟\f:�O-4\u000f����9�SQ�Dԭ\u001d\u0014�\u0018�e��%��5V�qMj(��?����#�\u001d�\f\u0018|�I\f�'_^3S\u0016h��➋\u001d�\u0015:XlG�j�M���R/q���W�?7f�c\t���K�X��v<̘w�Wt\u0017�\u0006�m_≆���VUϋ~�R���\u001f����Û�����\u0001�u}����\u0016�q��AN�%D���cƌ�T\u0012o�VU+'(.\u001dn��d�޶\b)\n���B%� �g���ڐ��k�\u0018�mJf�}\u001a��iJb��m����\u0017��\u0004�F2\u0002?�\u0017(.�\trt���,'}�wFΙ\u000e��,�Q�Ƨ�†5�\u0006����UB\u0011!�\u0018���\u001e��[�N�x���be��b�\u0015\u0015���ĭ>)�&C\u0012�3l����\\��8�(&�AKʀ�`���\u0000)%=���\u000f�Q>�\f�\r��+29�i4�X�\u0006�\u0016H��\b޽��\u0012W�h��[uh!K\"\f��b�K��\u0013J�{٬�ٓ<��Ą}\u0007�\u000f0�t\b>\u001e~,����\f�\b@��UQ6��\f\u0012��D��3�49)g�&�\u001dG���o\r�+��{TO�O�v�=���F�S9\u0004���AW�%X���c�@��\u0014�/�8<:$��\u0017�C�d6��\f��\u001a�\u0000�kǒki��R^�\u001eUO�����\u001dD��\u0005��u��'��5<#q\u0006�zBa�({6��\u0011�ߩ��%ى�0c�qcH�bt��\u001fN��M\u0002\b\u0015=��!���k{�5�?����R@+���\u0005�������\u0004�1��\u0007�C,\u001d?j6ҕGV��\u0016���v0\u0014m��44Z�������\u0003A&�9G\u0003I��;,�\u001e�g\u0004˘�\f\u0012- mS��\bc�yN/a��\u0006\u0001q\u001d�E�\u0003��ٰ�n��>\u001c�\u0014\u0012�x!��\u00187R�v&\"\u0002���хc����\\\u001d�*]\u001d��p�K^�����O��\u001cxE?��J\u0004�]\u0014#3��\u0012r��\u0006�Y�����\u001e��\nv�'�\u0012��Q�i�lm#<��ّ�Aj�%l���s�|���z�v\u0010�ƫ��w�\u0012!0\\�\u001c\u001fa-Lv\u000eF��ٮ��QT\u0014H���\u001dq^J9��\u0019��\\\bx�\u000f�\u001a�1�7H`&s�o\u0010U���{?[��[iq��\u0014��L��}\u0011 #�BQ���\u0007�Ե\"Q��ȓ\u0000\u0007\u0002\t\u0006�I�\u0016:�����Ū����u6�oiB��M\u0018[\"��3/{�'��l-�,�K��Ad\u0018O�6\u0006�UIҶ�yk�չ�A\u001eLn�\u001cΖ)\u0017I\u001aG�+\u000e��d+Ω#Z��\u001a=I�\u0000iדR)fª~Γ�LN���f��&\\SC�J:�3��=�U��^�V\u000f ��\u0015����\u0011t�o��C�W_�X�\u00041�7��z(�z\u001e\ba\u001b\u0013\u0007��ʐ�$��\u0006\u0004��7m��|�\u0012�u�I]OA��l��S\u0002GL���c�=��\u0011\u0000e��RX|8\u0003/|��n�I��AV�%����cƊ嵉�*��\u0015x �Z�M�\u0019��s�7!e؈c�w�ݨ�\"4�*\r��oc#�LR��L��8nI|�����\u001b^G���L#���\u0000ו ͿHȐ�k�}�ff��73�1%�\u0003��N�*�\rͦ�As�Q���T\u00144�Pɂ�K�X�N$�:t�b��΄�W�+U\u0019R4g��\u001dj�\u0013V\u0014�H�\u0000t�W~+77\u0000�\u0010��n6���X7��3n��\u001b��\r�]�ˤ��\\΁�K�E�����\u0015}\u0014�3�$W]�'�\u0013���Y�\u0003\u0014�W�P㢷�t�]�nS�\u000eB<��GQˢ�k�b��)N\t��V����oLX\u0000��\u000f�bm5\u0015\u0015~$���DQ\u0007UO\u0001\u001e]1]���\r2��\u001cQ���\u0003&�\u000f�B�����u\u0007\u0017\u001f�6��Y������Ae�%����s��\u0001\u0000��eN����<)����\u0004\u0015�I\u0015��v[:�S%�\u000b�l�<�\u00181�\u000b�����Q�\u0012g\u0017\u0014>S9\u000f~�\u001ffv*�yn����߯LO/�$\u0014�>$\t�=���<-\u001b�VDUR�ߡ��΃�y�pk�\u0014�c\u0006v�Un\u0000sWxT��l\u0010�\u0016/'��,\r]*\u0019+�\r\u0015 \u0017 ���Mʿ�H\u0003V�\"ɿ\u0018,����H�\byh\u0007MW\u0016�~T\t�gu������\u0015m���վ;?w�ْ�nB\u001b�\u000e�h&Y�W\u000e�P�\u001f4/\u001bf-f��h�j�|��Bpǁ�d�\u0013\u001b�0Nw�W�\u001b�\u0004G\u0010������\u0000\u0004\u0004ԍ�\u0015��\u0012�;eޫ�W��u?���\u000e�m\u0013W����\u0005\u0005�H�K\u000b��K�\u001b.���ΐ�bT{\u0006\u0006�\"p\u0006�6M�#t����Dut�$Գbפ�I��Au�%����e\u001bw�L�O.U�\u0003��D�K�Ve�`�\u0012@F42�'t\rg�\u0011�������޿F\u0019������!\u0017��k��\u001aB�B\u0005o^\u0012��.�$�.�\u0017t1�rT\u0012>jܖ�h �C�V �eqV��֤˦�u�z<\u0016[a\u0010qD�3&F�6��\u0014�(�f\u0013\u0011�t��\u001a��Ӗ2[�\u0011gn[8������`�P���<ҏ+^���>`�����'\u0015\"�=����w;\f'����x����7.�\u0004$>��\u001b�3M*=��[�/;�Y�+1�g�o\u0007/�lh�����f�&�Q1,�\\�iɿGJSadb�n�\u0013\u0014o���kIԖ\u000f%���\u0013����.U@��\u0012�\u0015�=�n̹�P~I����!�\u0007\u001a\u000e��K׶\u0006�h�ʻ6���z�$h�0\u0001\"滺LR��f��-Xи86�a�h�7�5q��%\u0002�\u001b{yٕ�Ao�%����b\f(Q�\u001a�\u0018@XBչ,]T\u0019x!�0��ψ\u0004����>�����\u000b\u0006\u001a�i\bJQGp�����h�Z��u\u000b�Ze\u0017LT�KG�@U\u000eR:>���=i�^��\u000f\u0013��\b�7�-l�Y2/\u0007WT��h�g|���B�>c\u0019�s������C�\u001d\"�]�D�e�\u0012R�/-2ǀ�L�s\rf|\u001a\u0010�@.��\u0015P�*���3��)��\\�ː_H�M�q\u0019k���L\u0001S\u0019E���L�125���N� ��#^�-���A�\u000b\u000f�\u0003����\u0012�q�����\u001a���+F�:\u0013����Gf����X�:�I\u0006%�^N�\n\u000f^2��\u0002u#���D\u0014l���^AR�h�L��n:0[�\u001d�>��\tH�7��s�pim{qc0�R���jMT��D�$2C\u0010���0����u�l\b�s�\u000fUd���\u0004��q��Af�%Ѐ��d��\u001b/���a\u0001���kfed��\u0001��FL�,B���v\u0015:��\u000fm��C�\u001e|\u0017���C�cV)hwd�X\f�#\r�\u001b��X�-�U��!�\ttb%\u001d$\u0003~C\u0007�\u0001:>��һ#6�Ub�L��t�/��N-�\u00118I1�\u0007D\u0006���_�7����\\f�t�=v\u001f�\u0010�1t�hZ�\u0018�a��*�v�*z�\fh��it�u��!�G����]�\u000f�;�\u000b\u0000�玛�%\u001f��\"\u0012kmF\nB�� �8\r[}p\u0004�\u001dޑ\bC�����G�t�s}<��g)öX2Y�\n\"˿O\f\u000eZ�\u001d\\��ώI\u000f�o\u0002��7\u0001\u0018\t�%�\u0013��\b��|I��8��\u0003�\u0019�{�3�7��\r!�IP&e\u0013�U�h�fc��p\u0003�=��@:���k��\u0012(��s�:%�ܭ��v0����l��1\u001a���Ab�%���d\u0004\u0014Ȍ�HR�X\u0003�u�>\u0006S�[�y�q�z)\u000f3y����\u0013&��\u0019�0�XuzjG�z#4Y>\u001fυX�Q.A\u001a5�/?��<������\u0010:�$���\n�\u0019\r\n���2���H��.^����7<ŽӌG�\u001a\u0001\u001b�w:?9�D��N5M\"�1�\u0016wٙ��yV�n\u0017�Ic����\u0003�Q���\u000bPaN��Sf�M���juZ�ᘲ�^ʹj��av�\"6$\u001a'���:R{����\u0005�����~�@����q�Pw\u000f�\u0006�\u001a\u0019���\"�\r�\u001c�H8\u0003{�\f��҄�Wo����\u0005v��\r�\u0007��y)a\u0017'X�\u001eAJ�ˬ\\��X\"�1�e\u0012`\u0005��\\m��f:<�uL�\u001c\u0015�,Z\u0010�3\u0001L�۽_�ѭ�Yzש\u0018���j`k A�3\u0001\u0001N\u001big�\f|p(�����Az�%����b)�ͩ�_\u0014�����0���+A7\u000b�7/� o|ձ�\u0000\u0019����8\u0005\u00163�mYZ��\\�D���y3���3��\u0016}�Gϛ�z��g\u0014Ċ`\u0000{������C���E0��仆�wJ��>f�\u0013W�ʗ\u001f�\n���^B�\u0014@w�1����\u0001Ō�>&�\b���\u000b���\u0010��˵6�ux��4N�I�Ķy!>�L;Vj��\u0011�!����^5J��u���\tr�,�6ɥ�!�5n\u0019E�*d���XR~�u0��v}\u0017���-\u0012Y�\u000e�V��Z�f\u0011xq\u0006Z\r���%����\b�%�N#7�y�@|*?�\u0016��2�t(�3�~�\u001d��ȟ\u0002¬^1\u0006�0�E��\u001e\u0000�.\u001a\u0014��\t�.t�\n���V=��A�y?m��A�&\f��}b�D�[l\rO�\u0000\"���%)�#Ls��\u001d�<��������ޞ���Ӱ�<��n��?��c\u001b�\u0007v�l#\u0001-*u �\u0011ݕ��;d\u001a�p��+��\u0001c�\u0016�\u0005^Q93�HV���Q�E�\u0018b��7��3��6O�\u001d�\u0018�b4&�9Y\u000f\u0006�m}-��+l\u0014�D\r��)��#S���0l��=\\H\u001f}g�k�j����ɀ�\u0002~���\u000fpD\u0013��&\u001bt@>%fr�䨡'ȁG\u0010�(!�3�3,�^\u0018��M\u0004��y���}襁�\u000euV\\&OD\u0007;�,\t2�\u0004�b\r\u000f��'|u\u001c\u0018B���^�˵�/�گ=�� \u001f�\u00105`��CV]�+�Z�C`\u001ck'\u0013��jp�Y�\u0004�$\t�$�oE\u001aX\u0017�x�`\u0004f��.\u0015�\u0014o;�=lv\u0002%vP[ ˆMh��o�X�\u000e��c6\u000b�%��\u001eei�>�-\u0002M\u0002��J�v�t�\u0012�A4�& ��M(�\u0001.�o���X\u0003\bG\\�\u0000;��:5��S|�b=�E_ƀ���*\u000b�b]ᾒ<��\n�\u0010�bʝ�lT�\u0015G��+_���q��k�/���v�`h��݁A��\f\u001ev��x��\t;���4s�z�k�\u001b�ŰA�z\u000eD7�KSD\nJ�‰=�\u000bf�HɎ\u001c7���_\tґ\u0002B\u0012�\u001c��j�\u0003�7��Ⱥm��\u0002s�O-��\u0011�\\�\u0005/mCW�>xx�_<���|�t�: ����l,Ơ;��ci�F\u0017k�Ѹ��P\u0002\u0006�j7��8�\u001f���ю�\f�(\r'�V�LIj521\u0001 � h��M\n�V��\u001dXq\u0016d�ޒl�-\"u\u0012F^�\u0013<��\u0007g8�����4]� ڣA%�&4��L��pԋ\u0013�\r�����M\u0018e�6�?��\u001f��TS�n����ÀJ�m9��\u0012D\u0002S8���\u0019��\u0000���LU���\r�^�.�X\u0015�-�,�\u001f$]�|��-\u001f+\u0015\fh�_������+#��1d0\u00162�\u0002�:�4��\u0018\u0010Eb\u001cz\"G�\u000f\"�*�ʷa��o�O�I�Jߟ��f�h_�\n�\u000f�]�\u001d��c<�LU!�\\�R�\u000e�Fʳ���8c\u001e6�D�\u0003���#2������u��f\u0002��t�AQK�c�\\�}L�\u0000�!���{�ٜ�y�je�U��k#p�[i�>��X�m�\u0003�8#�\u0007M0�=�\u0000�Q�����s3\u001d\u0016�\"�I \u0000�}�i��8w���A0�&H���k�{�\u0004\u0015r\u0004�\u0012\u001eX�=\u0015{����e\u000f�(;\u0002*-\u0001�-v08|Z\bj#�L�]���3i}��>�+�D�\u0005�E/���\u000e�j�V��O\u0001GN U\\S\u0013گ\u001f'n%�T\r'29HA{��қ�r�\u0016�E��\u0001\u001c\u0001\u001c�C�\u0011���ʼn�\"���\u001c,b��;kb �\t�2�|�,�\t��^@��E����Ž��>K\u000f\u00042����}���CfH�7JF4���br�u\u0011�8�D�;\u001e0�����N�$��\u0007,\u0013��{,'�|u���b�[d07�(&\u0004�Y\u0012�u\u0001�d\u0015��AU�\u001c��!�\u0000R�m�J�&\u0007��ć�\u000f�?=ʵ��}���F�(\u0006�%h�;�\u001c\u0007ٕ�A �&\\���c���\u0010�\u0004�\\#c�n��� �\u0011�\u0019><���)\u000f�ϯlޏ�<\tь�9�SE��D�b�\u0013�\nd~)~J� \u00067�mՠ�,\nB^,u7$R:��zh�|�\f�p�͎Kf����`G(�*�n��\fb�b�c2zf�zk_H��cR=��C���MI���a��\u001f\u001bW�Ldغ&n\u0005�\u0005�v\u0003�L�e\u0011\u0006�\tg3ZH�c���8�&��g-N��~�K\u0002�\u0006cJ��\u0013L*|�\u0007�\u000e�y�KS�\u0019Ę�\n�Ux��W��~�쮏\u0005�\u0018gQ����VA\n��o��r\u001dJ\u001at�\u0002\u0015;H�(��y�!��\u001b���2�ǿ�I��E�~�g)��A7�&p���a�ѿ���J���w���ն7b\u001fT�'�\u0015#\u0011<�}�\t;7Z�\u0013�J��\u000fps9b�}\u001b���h�u�>��/�֏s\u0011��\u0007a�F\r�\u00174[����Ü\u0003��:&\r|��Lj\"��Md\u001cR�\"u�\u001bY�\u000b��\nT鮋�Y\rR��]Ն�6C�Ҍ��W\u0016!�qV/�L��w��_��\tՓ�\u0005��ނ�F���M{唰E�b\rb,\b!�����ːj\"h�5��\fr�\nwK���4�x\u001f�����%\u0007����ͨ/U!bsWv\u0002��\u0013�L\u0006}�*��6I\u000b�ܺY�k\u0006�2+P|�@���?����3���@�9�A��\u0002�\u001f���xE�]\u001b?��}��p>B\u001a&��\u001a*\u0010�AX�&����c��g]\u001a'>���h\u0018\u0015����.\n\u0015j\f��\u0012�s�3\b��I�\u0012/;\u000b�\b~�H�\u0011�\u0015S�&���I��_�j-#\u0004J\fO�\u0010�\n;\u0011b�^�~f`�XKy<[��\u0014R�ã��\u000bt a��A#G�YG�\u0017��RP�)�~\u000br�\u0004�\u0012%���[l\u0007�\u0005�\u0001���\u0005;<�Q�a���U�&G\u0003�;�>\u0003\u0005�����6�m!����Up��f����U�l7C����\u001eQ\u00128*��Ŋ8^�\u001e�@\u0005��]fÇoS�?\u0007;�p�UՠSS�u;��T\u0007Dc�r\u0006��\u0013Qa̞�r��L�x\r�{���c1\u0014�VĎ~��Q�c���~�}eZ��?\"M�ͪQ�a\u0006\u0000ͅ�]����7�\u000f\u000e���\u0012\r�d���C=�*�%�\u001c�\u001dBs)��\u0003|WK�\u0010�AS�&����bTg�ݯ}\u001ei�֍�\u0006���vQ��\u001d�\r�\u0015�o�z<���o���,�!� ��qW�/3:��a�\u0014�\u0011\u0001?4��\f:�*mp}����<�����m�\u001c�뇮�M���(�Vt��\u0010�j�/��\\���_^�E�\u0011E���U�]\u0002\u000e��w�?����!�\u0015l�?2)�0�ξ`n\u0018q�\r��ۑG'�g3P�\u0014\u0005z�$�\u0005�,б�ղ{��?)����\u0011����`,�\u0002�\u0016d|�',�&##\u001d\rS\n+�.�t��F�-\u000e������`9a��*�v\"�6&�-.t\u00187J���{���\r��\"\u000bm(\u001d`\u001d�����>��n��J����8��/N���\re/\u0010��\u001b�G��7?|��%�\u0005��!�1s\u0014���$\u000b�\u0003����\u001f`�RS��\u001bլ1~�\u0010\f��M�=�\u0004�<7����o���B4\u001cx�����f����wM\t�\u0002\n\b#Yʉ \u0017�\u001aP�%:�!�m���k�������p:J\u0014�c\n-\u001e�c:,J�\t�;���#�\u0007���\u001a��4������\u0010\u000b$�)���%dŰɨq[�j`=�oe����hL�#m{ �H\u0011�\"�ɍ`ۮqCR@L j�&T�U��e�� ��F�1.>&[H>\u001e�H��A^�&Ԁ��ӌb��#\r�2T�H\u001dIX��%����zu®��1,SP��4`7V���&\u001b��}�;�\u0000mڤ+a��Ƭ�[\\uP��Jd�\f�-Mn\"�M��蒑;7��G\u001f�L��֗��\"����P�y�����|)J�D[�^��.��iw���|\u0004��\u00111\\\u001dX�$�-�Y�łs\u0007�X����\u0014��l�K�k\u000f�������h�\\k\u0014\fau�ْFb�t��1\u0010�-���x��ɗ��&\b�h���&\u0006/}#2����R�ǵj�m\u001c�\u0010\u0000�I�?�~yB�o��k�e��iQ�?~\u001d�\u0011��\u0011�����A\u0002�1i=�\u000b�Aլ�:�U\u001aC\u0004Y!\u0003Ѳ3�c�Or\n��\u0001a��q�C�;\b\u000b����\u0000�1�����^\u0015mUe����\u0019+���~\u0004\u0010�E�W:��AZ�&���j�g#,�\u000b�\u0011�Ž��J��/\u0014���7\t�Y\u0006�����\"^���#�zl�k�T\u0004��\u0002�\n�\u000e񕵮��^�\rȿ\u0002�k���q\u0014���j\u0010�\u000e\u0010(\u000f\u001c��1�[��*���+���O����\u0000����@�n�E��%���\u001eiB����ܛ�71I�b�(�NT6�?y\u0007G�:䯞p�ÖB\u0007.:�؎2!Z��0U<�º><�8�\u001d6�\u0017�t\"޳�]z�s�#p\u0019:\u001e�?�\u0004�4�\u0005�\u0014��\u001f\u0005�p��.��AI�&����B��9!)�`rG}��+65\u001do��x\\;,{\u0012\u0000�S�\u0002\u0010\u001b�p_\u0004�Eʝ�P\u000f\u000f6`\u0007 q)\n�YJ��nAt2���c\b o1�SO�4wD)Ys� �7���0s�&�\f)���w��\\:=FJ�=p�p\rG|�i�\u00022.r2st^N~\u0010iIJT���îJ\b+M��\u0005\r��a��\\�}ƪ\u0005�c]�K\u0000>U�{d2%8�\u0011��\u0018ҳ�y��\u0015��ǀ%\u0016c��ٻzژ�ؘ�\u0007�/��n\t�4}bA��jg���a:9ؐT���6��4�\\�T��F�gdž\u0017lH�N��)Ԕ�B #\u0016'�����\u000e\u0004]�����\f��+�\u0006�D��\u0004�ċ\u0012~�z�u������^KdZ@x�J8��VQ���\u001fC�u\"��炜A�A\\�\u0000\u0000���am��W��*�ps��\u0013\"�*��؆�0��uQ�\u0015H��.}�\u0014,�z�̀�����\r\t�8UyC��Hǟ�\u001aϫ\u0006W�\u001b��+%�\u0014�W���5\u00032����6�\u0017nw�\b�l�A��[���l��3:��o�F���2N����\u0001��ݩM�8�(;�=��6+c��6yL�>��\u001cg��`\u0015�����\u001e����\u0011+P�y��\\TО%��\u001c�p�m�䧇��\u000e��f�@�8\u0017Wg�%\u0006�E���\u001e�\u000eݭ�.ݖ-=\u001a��\u0015�3��\u0007��b�6�������\u0019�\u0004�q,�G��*:2w���/-Ⱥ'�}\u0010\t�F�B�����\u0011�HS�!��\u001e�<��4*�֥;�\\\u001f\u0006wX�y�MM2���A��P�\u001e\u0012\u0001\n2�6�nK���V��ԡ6���AP�\u0000\u0014���d\u0003\u0010�x�$�\u001c\"ew��:\u0011y� ��!P%W2����?1x�ƽ�\u0005��\b������Ȟ��>�p�\f��G2��˘\u0007ԟU�:�\u0007b����6)��a�\u00119�\u0019�hѕRA�\u0017T\t��!2\t,��ӕ �Lџ�f\rȺ\u0005\u000f��2�gQ�\u001eؚ\u0001r\u0017�D��\u0001�D���>�$�ƨ���!\f�55���\u000b�7,*2b�.\u0000F:��Cf�`$�k�|��T{\u0005*k�)\u0001���\u0003O\u001c����s��\f��K�������\u0004Y\n\u0014�֑(*�ȱ[h��9\u000f:��G�\n��3�nn�\u001c�Є��ݲf�W��\u0019�\u001e��W�^�\u0006�\f%��p�C\u0002��D\n\u0012���\u0003Zp� ;����\u0011�\u0018�S ��)R`�j�dHC1\u0011�\r��\f�iK����T\"�n\u0001쇦D�C����/��^�~�\u0004���3��u\u0000\u000f��\u0004Qr�$�l�8���V��H��G��H��tv\\cn���nr\u0015���ܡfQ�艀��\r���5��sW�sY��E�\u001f漄�P\u0006�GW�\n�J!��)�\u001bH2������nG�4\u001f��!�\u000b��\u0004m�2�7h`Z�V\u0001�@\\\u001b�2�c\u0001A��CɩTg����\u0018�J��#�i\u0006�(E��`T\u001b�Cx����\u0019��%�˧�^W���K���n��LQuRz\u0007�\u0003�g*���l�`\b�\tl(\"7\u0004�N�&�s��L��N�n��\u001c8��zb;�}��\u0019�#d�}���!y:+\u0014l\\b\u0011��\u0006]&1C%�1v ��!���\u001dc���T�V\u0015�i��{����^c���\u001bB�����\u0000I�\u0004G\u0005\u0003�j�\u0001�k$\u0012\u000bk\u0005Y\u0017�����AO�\u0000x���si�Ѧp�Ȉ�^�EN�q8��\u0000�����\u0001�B�?��0t/\u0007\u0007m= \u0001\b\u001bcJ4}{�+��<|aSi��\b\u001fA��2b\u0001�=�c��!\th�.g\u001c&���k�*T�H�� ��V\u0017�� �{�]�a\u0010ʹ�\rAq*��\u0018�#����jZ���3�\u0016\"\u000f\\���\u000e\u0012%�`�>\u000f����8�K�\u001a��G�\u001f����N�Dj�\u0013\u001f�U��{E�g��\u0018\u0013O��M\u00045\u0019�\u001fA���\u001cy��d��\u0003���\u0004\u000f<_�M�~v�go�M.�ȱ^��ٌ\u0010��\u001c���(\u001a��/�@�‰�=�T�����Z<�Ÿ_�|;Щ��\u000e\u0003��]�����Ǟm<��gw�6@�i��GO#\u0006�-nӢ+qҨ�\u000e7�hŽJW+3[���AF�\u0000���L˻m@�t\u000f?ȣ\u0010z�y�\b{�rV�~�\rY�\u001c���Ɛv��F��\u0004�ʢ��\\u�t��Z���<`\u0006\u0017\u0002��D4\u0010���#�x\u000b�\u001e�a�ݏfX�\u0018�A�3���\u00031�l0�����盢��D\u0006z�(�\u0017\"�4^\u0001�\u0017'�'%9��\u0000��}���|%��o�g�E�����C[\r�pN���~o\u0005��ro�Q�h�\u00186@9n_�\u0007�\u0004�����pk�+!��Eo�����FL��C��<�p\u0000� \u0001\\+잸�E4\u000f�W-#�6}�{�\u0018�P�f\u001c�A|.*@2�\u000bj��'��e�A�(�Es�\n�9Y0{�Nf�|�\u001aac4F�\u0017\"(Oԓ�Fɪ�-�ǵ�{�5�M�VD\u001a\u0018�.���\u001e�\u0005�j���A��\u0000����c�*?\u0004fIuI\f\u0019a5�=�1�X\u0017D~z�С7�gp\u0007�=�fI5�����r�]\bކ�'�-c\u0013\u0012Ӆ0h����46�4#j�S��sT�U�}B���\u001a�*,\u0003��b)`�'uS���Q\u0004~\u0012#\u0019fąԸv#���?e�Y{8�A�B��m\\\u0002h\r�y�v�MF|����\"\u001b\u0011�����Z��T>��1�k�L�ׂ�\u0014��\u000f�,x%�\u0002kYY{��~�!�n\u0005�b�ߎ�%��;�˥\u0000잨�)\"�S���\u0005�9��^��i\u000bG1;P�GY�B(]8R\re��f\u000fi~V�θ�\u0012�c\u0003/��@����s5^�\u001f\u001c�;L�\"���\u001c��\\\t\u0018��C͉H�\u0013�콯Y��\u0004\u0001�gh�}\u0012��1�4��5�4��\u000e�,�����s�\u0006Q6��\"i�om]{��wNM+S���\u001c��4�:y�L�d`I9�s\u000e�9�����߄F���\u0003>���\u0007��Ν=��\u0015R����3(�s�\u0013\u0011����`ȔP\u0004K��#�m,)�V�\u001d����Q�L�~*\u001d\u0007wN�Ì\u001eAO\rq��x�UV\b\u000b�\u0004��!�.>�\u0013��2ڬ(�nK(�ҕ;�n\u0010�AW�\u0000����a'O�\u0012\u0010\u0010�]�)׭�\\�ÄH����(�� bF�a;81­g�6�h�\u0012!\u0018<:\fK�`B���I#�\u0010ɚ�M&�\u0003�w}h>n�\u001a^#^jO߁*�K��i�\u0019�\u0015\u000fR���\u001b\u001fX��Q/'�\u0012�\u0005�mjb\u0016�K�2S:厌��^w*8�\rl^�v��\u000e�$�~>Z�\b�aͤ�FT��\u000b^�+�Z1&\u0017^�N\u001eX\u0017�,\u001bMc�{�\"�zU���\u0014���ܢ�����}�Μq�d��\u001fhZn�{�8�N�e���H��UZ�Q.X7lb��T��vZ\u0006\u000ee\rB�|t�wx�RB�rH\u0004i�\u0011�jS��j�����c��u����Q?��\u0016�ᔵ�\u001ci�\\\\0\u0010�V~�\u0019SU�RϛD�8 i=L��H�X�:`K��\u0015U\u0000%\u0013�A]�\u0000Ȁ��d�8��Y�+���H�j�x�\u000b ��m�\u0019HkҔ�\u0006�/8A� -{�W�'\fx�\u0003��޷}��[�\u001e�\u001e1>݃Í�`ZU^H%\u0015yKb��!���н�bNɛ~�\u0001��Aͫ��\u001e����\u0014-\u001f[\u001a\u001f!\u0016�\u0006;X�t���G�\u000b���%Ʋ[�gǝAכ��g��-��G\u0013y�\u0011J���Ծ\t���QH���\u001f\u0013�n��x1��L�qv���\u001e�C_�醙�P5\"\u0002\u001aE⨽�\u0006��Y����\u0013_��Jn:\f��d�\u000e�!���\u0000��S�c�x�Z�Z2c�\u0001$b����h�Q�j\u0000y�aĻ�=��\u0006\u0011x�rV��i�$��\u0007ù��AQ;HxT=c\u001c~�(X\u0010����Ԓ��!P�#�s8=Y<\n�냐7\"�\u0019��G�@�;\t�s��\u0015�Aa�\u0000܀�����\u0014��K\b�iB\"Ηx>=�KZf�^��Vy\u0015\u0011)8f���H����!�\u00169u��\u001bY���\u0001�n\u0012�\u001asE��qLs\u001dy�ͯ�R\u0007�<����h>���I�\u001ff]�\\\u00020�۩T5�E\u0016?$��>*1Y1΄\u0017\u001a�5�\u0017\u001e�\u0019^�����\u001fh<\u0019\nz�������ν��I�q�B\u0011�@�ӄ��DZ\u0016���3�\u0013IX\n\u0000�\"x\u0018��]�_�\u0012:��\b1e៭��|���iXa.U%�$�\u0005m�9�7e �%��r3�$�\fA�a\u000e\u0006�27\u0011+\u001d\u000f�\u0004�=<���i�n\u0003L��\u0015�\u000e��͇��R�\n}�U�\u001d��\u0000e�\r��ޠJ6�0�\u001bM<�?���\u0013.,\u0014��\fO2�mo��6��]M�Hkq�;��'5�8��ۏ|6�\u0001g\u001eA��+\u000e,�\u0016�B*�\u0000���}�f\u001d�C\u0018@͊�1\u001e(d�D�_\u001a�=��]�@\u001f�M)�H���S�Q�\u0015�\u001eQ'wfM�2�O9�\u0012�ܲ����Ao���=^aWȋX *S湷'�a5}�f\u0014L�W���5�w�\u0004\u000e�6�\r>=�\u001f\u0018���D��J@�砚i�u�4\u0013���+x'e�\u0001�ws�xvOa�M��\f4¨���\b����%A����'׮v_�\bA�FK&�U�a�B�S�\u0019\u001e�\u0016e�\u0016�\u000054e\u001b^v�\\'\u0002e�!��s��Xz\u0013ǃ�H�m\u0018ɁS��\u0016�'n2��h�\u0013X׋\u0004]�L#���\u0007��xg�P�\u0018\u0003v:��{�Y�\t�F��\u0005��\t:8Y��F�P�_8o�\u0003�Zzj\u0014�*���0�.�]P�\u000e�\u0015ډ6]�\u0013Q'�\u0003u��J\u0011�-u\u0007�\u001d�Od)�\u0015�����E��<���\u0019�\u0019��Z����J�\u0016�ʆݶ��W���U\u0010(�sr�ث�\u001b���7�˟\u000bv�\u0012��v��q�f�����^��2���2߶e�g8\u0005�Qh�i��A��q�������~�\u000b����o�U�cO\u001dd3l�\u001b#�\u0010$�\u0011%23�e�J37x�r��'�$?�Uӣ&9J�dwD��\u0005\bY�w6O\u001d|qK\fٳ�%a�\u001c\u001a9�}C*/ᶤֻ�S�\u0010W���ĉ�AA�\u0001\u0004��M-����?Z\u000e�\u0018��]\u0019٦��s\fu��)a��į�V\u0018��ن�\u0001�ق\f�p�Ð��K��3B\u001ct;\u000b�&�֦�?�>�5�r����CZݽH��.X'N�i�\u001eLd��}�\u001b�.�u[6zԷ�0I\u0011�\u00160\u0014\"/_�\u0010P\u0011�?y�Z~��+�H�4�^|4�cbX[\u001a#D�H\\�\u0013�y�:�7\u0015_à�?��\u0000z�]\u0019�>��\u001e����'���4�(4c#U3|��\u000b���#\u0010��,��\u001b2F.g��4M���{n֋�h\u001d�nX��@��G�.�EW~�\"�\u0018&g\u0000i\u000f\u001f)�\u0001`x��1l��\u0016̇0\u001a7\r�\u0003�A)�o0W\t�1\u0003�wF����f��r��i�j�L�\r�d�=x݁���A'�\u0001\u0018��X���\u0003)]��;�X�9\r���%u3�\u0002ogЕ\tzm��\u001a�\u0000i�\u0019\u001e��l�u��~�ϋ�[�wmP\u0013\u0010��w�\u001e�\u0018��x\\<��\u0006�8~\u0011!^Gx��_\u0001�(n���˪:�J�#\u0002Q{�y�>��R#\n��eL*b5��f��;��5o\u0012F.ʏ�/��\u0016�\u0015\u0014h��\u0002���%'�����l_q��S�\u0003l�0�i\u001b´�&u\u001f\u0016~��wG�K�#F��\u001dz�X]\u0001��\u0017,���b0O|H\u001e�W���h+~�p;��\u00018���xTk����a\u001c\t���nJIX�\u001dPE�\u001c��\u0007�z�ݷٶ����g�Wݐ�K+��N�b\u0003����M�3�A-�\u0001,��L�\u000bӆp\tU�~\u0015\u0003�QO�,�+��\u00131e�f̲�9����ӗQ��>�I�j\f\u001a���\u001a.�ioO� ?���F�剞n°��\r�6��\u0006˝�(_qg\u0013���d�n �P����\u001a\\�o�hT��2Of �N�0��jj{�x��8dY\u0017\u0019V��)n�\u0006�\u001dw\u000e�\u0019�@\u001d�)\u001a�����Pۂ�JiJ��\r�\u0015��;Oy�\u000b\u0016c�^1S#=/ޛx���\u0015\f]l\f�\u0019�\u000f}-�*�(Z�\b���9o'�\u0000\r�\\�k����:������E�0��+b���\u0001���,�2��>��a�\u0017������a�\\S���L�Q��\u0013�/\u0000\b�!��zH�w��P6�AB�\u0001@���s�'�\u0002��O�I��:J^�\u0012?��J��O��阀�O����a 9\tI$��)U��e��\u0018�\f\u0006\u001f�\rҢ��\u001fʛ\u0005\r��;:C�Ή2�D�\u0000P#��G��\u001e\u0016\u0000>\u0014/.h�\u0004���0,s3價*D�����d��$\u0012����\r$E^�H�녻w\f,�o���=�5��Vl��\u0006�z��sh�� �����\u0005\u001c\u0017�!\u0005���yU&�gn��\u001f߇�\r\u0013�i�&6h�\r0\u0004�C��X\u001dHe4jv�9m����2\u0014mY\u0014j0\"����{\\��A�S�\u00180�\u0002\u0006X��F��70�D6R�MX��h\u0003��T�(� \u001f���с���qA1��T��\u0002�A��+�|�\u001d(�Љ3羬O��d�\u0013�AL�\u0001T���l�l��\u0011'�4�#\u0002�h��\u0011\u0017�|��\u0016;�0�n�����w�}ל��\u001c��c��T�93�\u001dfV��N��\u001b�V��iTm��J-k��P,~bI�\u0011�U��0?(�T��w�Iq�F����k|�\\�>'W�N��������[P]\u000e�,�S�\u001b�=�f���L�<\u0013\\\u0002��\u0016:�2�����\"�\u0018R]�Ef~��\"\b\u0011e��;6������\u0005y.o�+{��\u001eJ\u0011��x�ܾ�|xv�����\f{�h�I��q�\f�'���![�3z���P�'��iZ��Fy-������2\u0002U��!�\u001e\u000e�a�_{�J�h<�����e\u0006�r�\u0015Dp=-��|F��c��Q�vF7\u0015;\u0012~Ӟ��]��`q2g�-\b\f:?n\u0015�Aʁ\u0001h����7�aQ\u000f\t:׸�A�C��v��/�4�+\u001b��ԉ�}�\u000b?[���0\u0006]�\"��\u00070��v7�m�U\u0002mܽh�uȵ��ɬ��q1�`\u001b٘��\u0011�I���68��(�\u000f��Q]�@��\u001bZ�}\u000bؒ�2��ҝ��lv=�\u001e��\b�R�d \u0017\u0017�\u0010X�Y�W\u001d��\u0001BEՍ����J������\u0015*\u001d�%z�\u001079E#f�\u0006\b�Uˁ?\u0018T9��BN(�\f-_�\r�@\u0011����SԾl�|9��l_�\u001b�J@�\f�J�����\u0012�k֢���K�\u0014<{�ר\u000b�s'dz\u001cQ�a�[(/�n��o\u001e7����W�\u0001+3\u0010�G���,\\7�����A�5`G+L�1\fx�F���+����ɻ�\u0019\u001a�I\u001a�Z���\u0001�֥\u0011\u000eVr���`ZN�\t6_��Br=�\u0019\u0010�C�k&��d�C�`[\u000f�9\u001f�-����8U��XC��w\r�_u&F��\u001d^�\u0004Sv�9N���>���\f��U1w�!����B�$�k�;�\u0014��\u001f+#�\"~JL�+}\\��x��\u001c��AJ�\u0001|��X�\u001aYa~R��h{J��\u000b�6�{\u0002,�r���;���I;E\"*\n��\u000e\u0010�.\u001bxiR\u0010���΄�Z#V\u000f˞��ު�|\u001b�\u0011>�,1�A=�\t��{1�ze����Q���@\u0004�\u001fV\b�|���2��P�\u0018��zd����\u000f�ֳȻ�a\u0007\u001a�|8k\f��\u0000\u0006�\u000b�%�b\t��g-6bkwU|��: \u0011���p~�SUwz�e%��zw]��:TIg����7\u001d�\n�h萻�6M=�?Dnt��9��˕���+�4��\tӓ8\u0016\"�V\u001d!�6��RQ�)���X��'[�cǮ#Hf��\u0011\u0016�d\u0010\u000bh\u001d\u0017X4���0��\u0010 ����*�-֠���~\u000eb�K�R\r��<;�\\$���]�\u0001�c�MѬ؎zvQ�fɣAB�\u0001���L�/{D��s��ǯ�\"Nv���x��HL��\u0014�\\`+#!�S�4��\u001f��z��ʳQ�\u0002gͳ�ςX��a�=w�\u001d�'T�\u0007V��\u00111A¦z��\u001cn����p&����+�����e^0n0�V}U��F/�\f\u001e��r~�,\t�W�6�\u0005��\u0000i�b���/ܸ�\f�f������\u001b$Zn�\u001a��\u001c�i�B�A�������\u0006���C\u0012�A(қ\u0014����\b��a�M\u0003�e���\u0001#�\r����Ԃ�]\u0019\u001e8���\u000e\r�2z�u��)S\u000fah\b\u0006\u001e��j�D]Q�@��.����:�VdF\u0005E61�.CC{ZC�g��\u0006_A��h���\u0015χ��m\"%\u0012#:�ܒB:m�`�$ڴ�҈9�\"}N�\u001c�\u0013�#����$�\u0001�d\u0002}�\u001d�g��zy9�Z�\u001b�۳��[d�h}K`�:߁�\r\u0002L�\u001bo�\u0003\u000b��P%�'��)m�Ա֦�U�E�yT|�u�m16�\u0007�םO\tU��!���S�\u001fl��\u0013��*+��/\u0002�\u0019_\u0005L����L\u0012�����=\\�6>�:�\u0000�jt)\\=����\u001c���gw�V�a�)8\u0002��#�M�i(a+�$T���}B\u001e8x�\u0014��݊�z\u0010HCs\u0016r���J�A��O�v�AA�\u0001���L�\u0005�jB���ֹ��R���\u001fuR!\u0016�����t\u0004^��g?�l�ڀ_�Oz���(^\u00033�Na��H�E������ʰk��C\r�g�\u000bBc�'��^�\u0015�����z�\tȪ2=�����À�\u001b\t�h�\u001a��@�atS�^\u0000A\n�7|�į�F*����D��\t��_\u0019�$n݂v�����m\u001f\"��w\u001b���Y�j0�Ŕe�;pR��E�\u001b����G��[��sDV���\u0016�X~���9�^^���?R�i�3iE:���\u000e��Ҙ-\u0017�Z58���m�s�\u0016��A�F$���\n��o#���QFx�.��#�6_�v�Z�����\u001e�#\u0006�����\fR�ouP�7����l�\u000e;�u�G\u0001ڣA:�\u0001̀�L�=�V 퍍���-\u0013�٪�\u0017�9e��@��`�\u0000�K�Fk7A�Y��������E��6��CTX|֫L�T�\"�\"�1u���d\u0012��ݕ�0�\u0011ﳀh�gV����>��0�W=�(,�u.�\u000f��\u0007VV����v�\u0014MK瘯�{\u001bm�b\u001a\u000b��\\�Y�x�[\u0010�мK�pb;�\u001an\u0013�'�[��_G#�\u0014L�\u001e�n�\u0007��Vm�\u001d����p�1f逰Vu\u0014j� ��\u0014�.N\f\u0004\u001ck@[\u0000~5�Ǩ��\u0010N4\u000f��j5���ޟS���ϊ����\u0016[.�G\tf�}�{�:-(i�20\u0016(�\u0017X\u0007\u0002��Ƭ\u0006�k\rd��$5\u000ek7\u0007\u000f�kf՗r03��\n4�2ӣA��\u0001���|�uK����0��m�0����<�\u000e�Ƃ�.9�\u001d\ts�\u0013�x�/�H0o�E�\u001d\u0006��W�N�YH��6�\u0017�l��_��9��k�\\�!~\u0001$\u001a}ڝ���0��ɐ��\u001d���\u000eh��N��-�!.\u000b�\u001c6g\u0001C:\u0017��͘�\u001bCq�s�{O�\r<\t^��YO����\u0005WF�j#��\u001a\u000e\n\u001dc�\u0018�\u000e\u001f��#�\u0013G�\u0015Қd�(l�&��\\v͌p���jT�<\u0007��_\u0003Y�\u0004\u0012��*��c�-��w��Sv����G�Ho2\u0001�C������_K���\u000eҥ񵞤�C�+Z����bL�-�\u0000����n�.�.gq\t~� �@���;�:ϻ�\n��\u001d��@����\u0011�\t��f�T\u0013�:�z#�\f���̄G���\\\u0010��\u0016�\f���\u001b\u0013}7X���\u000b\u0015�\\~�+ɹ\u0013��)\u0011z����k�#ە����*P}̈�$a2�\n�����\u0000t�3\u0014\u001a\u0007��A�g%��2x�Hn�|<��%�\u0005�p8�KT��cqr�9\u001amo\u000eoW\"=��j�t_�a���\u0002���~,t�o�\u0000q���v`�\u0013\u000f\u0006�\u0013\u0013���h�\u0007k���]c�֓ҥ\u001a�9�:�+e�A��\u0001��|���^�q����E��<\"���0�T��R\u0005�Cxg�8�ܹ�� f���fh�Z�3N���ؚ��%f�X� \u001e�ۋn�B\tꡜŀ}\u000b�\u0017\u0015Ʊ>�\u0007�D\n��a�X�n\u0012��L\u0005\u0010��]�����{0���(Rwo�8�V4\f/\rR�����5b5����,TV�\u0001;,���M�9ColbC]�R�;\u0019\u0001R�:�}�O!y�\u0007\u000e�G�DD9�\u0007::m�KI���J/j���\u0015�oi[ZQ�\u0004{���Ӆ\u0003��q�0%����Go\u001dX�si�\u00156��O\u0005\u0006��d\u0019�\u0012��\u0003��\u0000\u00000A��c!�U\u0003o7׮mdό:H��T����ű)!��\u0011�p���U�SUJǍ���+�k\u0015\u0015����-P�c��3�mp��z`��:Wأ��\u0002\b\u001c\u001cٹ\u0016�\u001e�<�a��B2\u0001\t�نJ���)�1�.�NA��wf0�)\u001c'�?�df��2>5_jm���p�\u0001�u����!\u0004\u001c$^2���\u001e�A�Fu��\\U�*H�b�-�`�x*'8�s���\u000fȄXԡ��\bzN�ʴ��Q�4Z�A�)�g��4�ՋV|�I�\u0000���\u000ew\u001b�ʆ0Y\u0000�9�P\u0004#\t\u0010\u000f��\u001c�\u0002�y����\t]���{���G\"x�\u0012�\u001e��]2�e���(Q\u0019/\u000em᠃Ǧ�Fg�\u00164+JÍ�\u00160\u0005n�q�>\u0017���1�ȓ�3\u0001�l���\u001e�GF�N�\u0001\u0012`\u0007�c�f��|�\u0016��ܣA\u0013�\u0002D��M{��\u001a��mI�q1��x\u0013K�-ō͂s-�\u0006\u0019�-E�\u0019�H�{�[m��C!��R[y�]��ڰڱ�\u0016]��^D��%3TQ\u000b%D\u0010�\u0012v5��о1:�\u001d��f\u00009`���:��#+�6y��\b\",\u0000��*��n�\u0017!�S\tG�����+��\u0015�ڌ���o��Z�O\u0016��eq2w�H�t[:5��x6*�a\u000e ��p\u001d���I\u0001�r_�U�T\u0004�긌Q��\"}��ܖ#FF��^\t�j\u0006\t}�o�\u001a6��\"�?��\t\t���*�_�\u0014��\u0015���\u00142�\u0010�r����ͪ�;%w`�\u0010\u0018_T�\u0001�A$�\u0002X��L���{�S&�c^Qڣ53���\b�2�o�F��!P �R�\u00136���:}\r�!,\u0015���d�ڒQ+�3l�\u001c+��C�\u0015�ò��\u001c/V\u0013@{�ڞL*���\u0019?�Q�\t}����wlki^`e\u0018�|�z;Q�'���Yʍ3�c��\u0002\u000b�>c��\u0001��\u0001�\u0019��S�\u001e��؉��.\u001b� ��ᡣ)\n�ljn'�|���n�����#������\r�3��U ���C�Y(�M�\u0016�$31��,\u0004:\n\u0005/��Њ\u0013�u\"< �젼�Ds�\t��\t\u001f'/��5�OZ�>��]\u001bv1\u0000�\f�W\b�Ƈ9R��N�KY\u001aI���\u0002�#*�_�A\u0016�\u0002l��M��(��~$!��\u0019���\u0003�\u0019)�5\u0013�+�\u0001�>��G\u0006�G��u\u0010dF��‚T\u0019����U\n�MW\u00138���\f\u0014\f]|�ʛ�\"\u001dR��;�g�i'�!$U����[ٸd�9b3�BY�35�!d1��'��\u0000���\u0002\u000b\u001d\u0000�R�\u0001�y��T���{z\u00015�AA�.�\u0010\\�j=Ù�%��Y�\u0007e���4w��\u001ais S�p�400\u001b�$]Z*��<�3\u0001���gi\\BcP�w\u0013}BP\f���5����\u001brk������%\u000b�WV���4��,�\u0016��ʔ�� �\u0006��QŹ����5�&?�\u0004t�\u0000\u0006\u0000\u0014���D[�A\r�\u0002���L�.+�6�QS\u0002A�V\u0003e�9\u0001�\u0012��\u001c����Ӊ`Ң\u0012�h\u0015�\u0016��B%��ц\u001cU\u0013!(�H:���P��\u000e�\u001c\b\u0013��\u0013���4\u0010\u0016rONW�F0��D�l�I�L=f�S�\u001e<-kѽ&�`F��*�p>�c�M)`雅[\u0016��0�>I��\u0006�Q�^h\f\t�*����\u0013�i�V:\u0001�����<\u001f?��\u001bk���\n|\u001e�n�\nh���������I]�6��l\u0001lh�0�]��\u0019\u000e\u0005\u0014,\u001aa�\u0013[f�w`̨)@u\u0015AK\u0012\u0007o\u0016\u0000o�O\u001aC>\f8��%_�I\u001c\u0006\u0018�C�i��\u001f \u0004\u0016\u0014�\t�́�A$�\u0002���1��\u0015ov1>0\u0000���4 �@鶓E�=N[x k�z�u\u000f˘��\u001cn�>���ZS�jl\u0018vS\u0012����|*���Ka��e䙶�:\u0016�:���v�-�w�1�ū\u0010k�J�)\u0011ݐ����e_P2\bD*_\u0011�tBe��\u001d�2`\u001e��/�3�|��?n��e��z�\u000fE&� �f�pC\"PK����\u001e\u0003�옑\t%߯�\u0003IN�,\u0013\"|��n5��Y�㥢a�>\u001at4D>(�øZ�\\\u001b.\u0007����\u000e�� \u0000�\nF]��:��R;�5�\u0003�ǻ\u0011��:�E�@�Z�\u0004�\u000e��m���\u0011\u0016\u0016��j\t��\u001aBN;Čw��ѧ\u0006\u001fǣ^�\u001b�r��A#�\u0002���%�N��G�A���\u0003H5�>��j9��>�f��) �9\u0014�\u0011�rB��\u0003ίz�a�\n�Q��7\\ ����|I8��\u0010L��\u0018��)3԰0��\u00016(�\\7���(�q���c�ѻ0\u0001�%M���\u0004Σ&=C\u0007�i�T\"q�ꓟ��\u0007�\u00024�\f�G����0\u001bspZcp�����tQ8��Q�!z�0�t��\u001d���}K�f�o�\u0011�3\u0004�nT:��q�f\u0013��$8\u001e��\u0000�\u0010\u0018�\tS?7�SEx%��Y��}K�;��dѹ��2\u0015 $-:���Z��w4�O\u0015q�P�y�\u0010�i[I\u0019\b��6�wȫ9!C�\u001c���\u000b\u0004\u0003W;[=��w\u0001���A#�\u0002���.OZ˞H���\u0016�\u000ek��� �J��Z�Ž�\u000e\u0007jH\u0019��ӧ�\u001d\u000b��l9���\u001f��a\u0014�\r�<��GA\bPBWpq�)�J\f/\u0015�\u00128JƲ�\u001b�pRT���\u0013�7�C����~\u0002�F�H<'i.\u000e֬�[}+ߍ�\u0004�q0\u00177�q�&�Zw��G���Hg�҇�\u0004B-^\"b��\u001b�>EhM�{�� ���{ys\u0002��\u00020���H��A�\u0012W��\u0016��G5�8B��\u001f���� R�\f������\u001b�g��\thN\r��$V]�L�O���\\l)����8-��\u0000 w���9wV\u000b7��\u000e�\u0010������8�÷$\u0007/?�2�~�\u0012\t�7�B<�\u0002Ѐ�}b�\"���\b['�����;X�`D\u0010п�\u0007f�V�\n+L�E�Qp�\u0013���{cF��{�G�8wVm�ֳ�7���Vqn\u0014f���\u0003+\u0019�B�\u0019G�5�c�\u0004���b$�1�M\u0000V09�\u001eƅS�ҁ��;d$`_�RfZ��\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007T\n̯�J�Ce2B.O�N�ƈ\f�&&��9\u0001\u0004#C�]\u0011b\u00058F6��ȶ\u001b#�Df:�\u0013ʳbI\u0007�\u001a��/��k�H|�\u00152�\u0007[B�k�=\u0011<��w��\u0004��\u00169G5,��\u001d�q�c�^%1�\u001d���-�����\u0006��. ��\t%�S\\y����$\u00054�t�?\u0019��\u0004}݁��|�X\u0002<��+�Rx4�V��.��/j�ϰ�!ƷM���9��A�ˢ��\u001aӈ`Tqw��\u001f�_��\u0010�Ӳ\u001f�vT[�����B\u0006��:1J\f�5��\u0014�'˖���Q?hQ*�⛕�+т���@�y\u001b\u001e\u0017\u001c�\r@��\u0017HAS\\�-C\u0013\u000f�^J�\u0016��z����w~cF�AЁ\u0002��|��\u0016�V��l��l�\"��g��q��w\u001f�~Hϋ9`\u0000����G���\u001b�\u001dv=�q�+\u0003���k��x����&��������h��ϡk�����t?�\u0003�H5�Ϫ�\n+\u001cM�Ѻ��N?����\u000e��d0\u0011��[ꦎVaҽ:,�\u001a%5\u0011\u0001b\u0007�}m1�E\u0010A�\u0004\bw�s�P\t\u001fxy�4[\u001c\b��\u0013/j��V#Q>WP�\u0016����8p-�B�\u0011\"_q�z�xwXT.��h�V�l\u001f�\u001a�ԃ\b�\\'�M�髚\u0016�ө�\u0006�p]3\u0016O1�<.\u001cX�d��u�1�s�Y�o��Y�-�\u000b�:���$5s\u0014��E\f�lE\u0000\u0005�ӮS]\u000f�?R�\n[\u0003]��Py�a\u0001\u0000=>�m�S�\u001dߵ�j��,���zW�Yw\u001a���+\t.��3\u0017\f�MK\u0011�<�(2'�A\u001c\u000e��7�ݎ����}\u0015Iv:�v\u000e�\u001d\u001d\u0014��\u000b;��BJ�\u0012<^���^NaX\u0017UwO�$���«[^\u001f��]A&;G3���\u001d�c�]�\u0003<�&9�;��%�p�K����Y_\u000f�Dw�����S�\u0000�kVɣA\u001e�\u0002���K2B�r�7��&�p}uk�,���\u0015K�\u001e�\\I��OZ�'\u0000�}�i�\u001a����\n��M��\\җo\u0018��j]��\\ݘ�NZ`�mj\u0015B\u000e\u0017�[��|S�k|��.Xse\u000b\b\u0002���tk{(_膳���\u001a���\t���g)��3�įTT\u0014\u001b��\u001b'>�u����N���k\u0003߮\u001f+�Q��\u0014�v�^]���?�u2�B��\u0015\\�\"\u000b���\u0013��R�d�\n!��]��u\u000bռ:-�\u0000i3���}C�g\t�e\u000f�H\u0010X\u0019T�'z�נ�&\b{ؚ\u0003�\u001d�b��T\u0005\b\u0000֯\u0003�d�w���n�\u0011��\u0012J�d�(��l�b�A\u001f�\u0003\f��X�o�o�G\u0011���\u0005_Hł<�(2L\\�\u0004�PH�H=+��\u0004{�\u001c.?�\u001b�\u0001(�١ώ�#�9x�x(Ub�1��\u001d�p�\u0004����S�2U�\u0013��;\u0001�0��\u0013b@U���>Q�S\f\u0006ol�ޢ�؛4�A�(s�\n��\u0018j\u0017 =�$2\u0011��Y�zt�X�mZb?\u0012�3T����ӫ�x&\u0006�I\u0003�c-��\f�!�\u0019\u0011\u0012���t�.G�,_�.{\u0018Ո��3\u000f\t�$�.4$�\u0019�J$�\u0003ɹ\u0013\u0018y�pd:���\u0004sٵm�p�@f\r�T����J�P\f�{D��I�#\u001czY6�:gJ\\}\u0013(Jm�|\"�\u0018��\u0005�D������_�~6\u000e�A �\u0003 ��L��+� ^��\t��M�\r�\\:����tQ��/��7C���\u0016C�\u0003�(c]�~\u00190�\u000f\n�\u0013��u�+���ȴ\u0004\u0018�o\rK�{�=��D-GbX��\u001e�e��?\u000b$�\u0014����1��\u0000\u0014\f��\u0005t�d�f�I��\u001ev\u000b� \n���\u0011E�\u00117\u0018��A\u001a���f,��\u001a\u000f���cƛ��uh�\u0002���`(ĥ�oH���!V�&\u0003\u0002��e��\u001f�Ȱ]��5���f���S�����^#�\u0005���\u0011V��p$K�t\u001f�~\u000b��Ә�u�Ny2jMDv�@@��\u0016���]�7Ra�7M���SB�`�\u0013�\u0001J�l��k[mI/�V�/�A\r�\u00034��L�݆~LdZ\u0004i\u0004Y\u0016�xB\u000f�jz\u000f�K*�++��{�T\n\u0004LUG��$Џg�\u000b�\u000btŊ�c�WJW��oAb�JW�]�L���3�F3�p5h%G.\\O\u0001ި\u001b�׌�\u0017��\u0006���J11�����>�<�\u0004�&��\u0006o�>&����K����\u0017�#��������\u0012�i��Q�S�a\u001a����¨sҎ\nY\u001d�Aׅv\u0017��m\u0012��Δ�@��N?\u001e��{?X��X.�\u0002��bQ\u0018\u0015V�\u0010a�.�<�D�ߙ�Bux\u0002�p2�v��a�%�\u0014k�qw�\u001f���4��[�\u001a��\f�?�A\"�\u0003H��L�~\u0006���\u000e\u0007��N�p�.�\\<%���3Y�>E&\u001a>�yŏ����3=5\u0000��2\u0003�}��n1I{-|-��ز.���id4\u0001����Qy�|R��ѻN\u000bf��p�m��\u0006˘��=\u000e��eM]���a5\u001f��~Zd�Db\u001b��Y�I�v\u0004��A%�\u0003\\���\u001dQ7�\t_�\u0019�\u0010�@\u000b�\u0005\f%���D5\u000e=6\u0015�5I�}����V��\u001a�Z�M\u0015\u000elM���\u0018�\u0019[d%���ut�2�\u0015�\u0014P�CCx�:Ә\\mM�g���0�D�u�M6V|\u0004��B}\u0003�\u0014��z�n %�$o\u0012��`���{�F\u0019!�u<�5�%��{��7Uʪ1�a�i�y�L\b \u0019\u001b�\u0011W�1[���<\ntn�݌�:����s�BZ\u001b\u0007=�6\u0019�\u0003�J�\u0014\u0005�/Ϟ�w\r1�\u0013��աJg\fѱ�0v#&DP��\u0010� �t�戰yzB]q�G.��O��\u0014�����V\u0011�7�h�\u0006qV�\u0002��\r�/�o��\n\u0006T��P��\u0010�\u000eE\t�A#�\u0003p���\u0010M�s2\u001d@m#���Z}'p��jz\u0018ZO�#�_I�f�iM\b\rؒ���l#7�(`�-�ZϏs\u0005�\u0015[C�j�e�\u000f�iU��x�wC��\u0002�o��Z6[3�1�4G���i�S?�U�3O޹����b�H��Q�~�E�)��@j�\u0018��=�wmvy��*s\u000eZ(~W3�̒���`�sBo-Bē�b�x,\nW�^n��3ڛ� �\"<���5��@;�K�h���([Kq�HQ��$ơ��e.��0r���l3\u001f�~w5'\u0015�2��ՐFۧ�\u001f҆�2���\u000b(Ө�i�O�+\tg��`Y\u0014�\u0001��;:P�v|z|�B\u0013�^|\u0015̿��2�M�0��\u0000Wy`#u����0��o\u0007�^C�\u000b!�\u0001\u0018Q�v�q4�\u000fD��ǵyd�w�Кe6\t��*��XZ\u0012�\u0001p'\u00065\u0011�A �\u0003���MM�ߕO��a��\u0010`\bB\r�g��XqW�5)'���ycj4�ǎ��\u0006/��9o�\u0001��X�\\$J�x.;�B)VuB��E�0����n�2v�)\u000fwWBU\\�P��\r&�\u000b\u001e\u0004�P�\u0002L�}G&��eI\r.��\u0017��M�il�ɾ\f=ܕW|�ڲ�\u0004���q�L�}B��lh��=����*)�O�Z]\u0012Hو��2\u001e�N�I�\"��'��%�\u0012݂�Θ�R֭a(���Y�\f{��\u0003\u0018�F�Mx��f\u0003o�\u0016��\u000bձ����'\u0003\u000fr�X�Z\u0005���ߛ��j��\u0001\u0003��5,\u0016�&�.z����h�\b�D̏�IR�+�R���\u001c\u0012�A\"�\u0003���L�\u000f�O�����\u0001G�w\u0007�w��#�@�\tFT\r�\u0000Uއ~˾�lDG�1V��!ʶjK�;\u0004M\n�\u0002��bx��\u000eN�k �B��v7U�ʟ\u0001FvA\u000f)շ2\u00065\u000f�\u001di2\\� I�c\u0019\u001a��\u001d7a�^$�*:����7R�t��Iͮp�\u001e�2o\u0012����E�Y�\t��^\r\u001a\"l���Hq��\u001c�(\u000b�j\\�$L9�ojG�JU��\u0018�\u001cM�=�E�?��\u0007z�#f2F>|�]��0޲�'U���\u0010�vފ�\"�SNĚ�q����\u00038�N��o��\\����&B�+�x\u001apI��\tM9\u0003@��jp��w��A���$�O\u0013Q��j��56�Ae�\u0003Ԁ�Mzσ\u0011�Y�$\u000ee�RC\u001c���\u0013\u001a7�_�;�\u0013M\u0017\nC[�\u0013,��}�:��j\u0007/�\u0018#\u001f�Nu\u0017+\u001f���N�\u0019��\u0000\u0011ɬ�r���$k���Tg�ҭ-�՗��]��Y�\u0017��:�\nFd整��\r�s���@vӄ'yg��t\u0012���,�eמؚਇ�!�2��\u000e~c�<��\u0007�\"�F]\n��\tH��a�k��\u0005^U!��a��l��6]��\u0017\u0013t�\u0015\u000b����\u0000��|��S�@���\u0002텿\u0002#�{-����ދ���R;6�VO�k\u0015�[H\u0017��\fU��M|\u0001��0\\\u0007[`Ze�2\u0007�Jo�\u0012\u0019����d�cɹ�^+?�@�Il�¨{��Hр\u0019sZՙִ�iw��S_��=gt�ӂ\u0004,HuV�ϨH\u001eX��~�]�hI�M@'D���\u0011&\u000f�\u001a�n�d�Bc�\u0003��|�9g��.�g��\r�,��|��.�\\��(���n\u0012�]�q�#�\u000f\t\u0014K\u0017�Cw��\thS�\\�\r�\u0012�\u0002�{���\b�X�W\b�z�l6��L#^z��B���cK}Y�N�U�\u0019��̝�\u0010�n7�L�,��5\u0013���H��\rT[�̳��;�]\f\u001b:x�]u�8�|^��\u0005��=F�Z�o\u0005���\u00010�vTe�f\f\u0003:_��-�\u0013\u0012��\u0016��B!;?�$j}S\u0019!wn\u0000LgݵS!�����8����+�}����\\�\u0018AQ��(��J�.�C^��.\u0016>\u000b��Wm�\u001d�����ɸ�|;.\nq\\�\u0000\u0000\u0000\u0000\u0007�!n�Dֺ���\u0012�d\u0012{�,��ʱ�r�mSP�/qw�\u0013�\u0006`�L#T\u0004e�\f\u0003�R���^��K�\u0013\t\u0010��\u0004\u001c�����%nV^T������\u0005�ƒ��yTh��C�,aB�Xp�QC&���+�-\u001bg��/�����\u001drg��$�$�\u0013j�\u0007���Y�\u0016J#�=~��G�\fה��`\u0013O\u0005��*s\u0003iN��������\\s�]j\u0000�ۤC�VsO\u001d*a\u0004��\u000f�ɇ�vF��ͨ�#���\f\u0019�f5�\u001f�eWfM�W�� \u000e�@����|QP�\t\u0017�B:pI��0�Y�-\u0001\u0001������)L��p�\u001a��\u0006¥{�^���͠&c��\u0019<^\u0011'�����%A�O�s����,�ùMc�,9F���▦y$���v)�ƅOhX�A �\u0003����u\u001d�L���T\u000e\u001d�xr�Ȇ�b\u001f6\n��r\b��Pcx��~^L�\\DKpq�<����:7-�!ฟ�,��\u0018�;�p)�=�\u0015y�\u0011W` jp�W�x�e����S'Ѫ\u00110�\u000f�\u001f��R>�(�ݾ\u0016T�\b��~%2�HϾ�[�X=\u0012\u0007C\u001a�,������f��\u0006\u001a^\u0012�psO�T�Ў5u�y�k�bE�Na\f1�xm�:�\";��\u0018G���\u0010\u0013\u00005\u0003�.%�HSI&`s{x\u001a\u0013���\u0019�#\u0007a1�\u0004�ʞ�dʊo�d\u000epqH�èڄW��ι\u001eN\u0014V�z0ݗ�c��8�e�Z��Ε�prw��x��>$�\u0011UA����l�Z|\u0005k\u0014.�Ǖ\u0005\u0002��1եC�\nC����\u001eѲB��v7�(�>�`|\u0007�Z.w�E�\r�H�#l�C�Vъ�y�\b1����\u0015\u0018%\u001a�\t�b1\u0000���M��\u000f�\u0000�_1\t\u0006�=��V\u0000!$�\"F���)\u0014��c\u0017���AD�\u0004$���vb:�3�N��c�S%�����\u0004���@�,��*��W�usr�#���r\u000f���G�\u0014q]\r&�-I-�P�m�ݺz\t4f������;�\u0011-_�\u0011\u0010�/д�\f.���IO�d�(5&i}\n�e\u0019\f2\u0014/$�䅋�Sx<5�����B�ŋ��biJ��\u001d\u0013O�M4�zMt\r'O\u0007c����\u0018Mfw\u0003׈�O��\u001d��ٳ\t���l\u001e3=��uI���\u0002�e\nd2�%�>L�kq�:\u0018S�\u001c�\f^\f~EyA%bJ��x��\u0002�oZ��^'���T��\u000f0����/�\u0013!�\u0015\u001c�w��U#�.%Q�O��?���~H\u0012A\u0014�5�ca��\u0001\u0019[�F�\u0011錈��~�{�,�H��\u0019y��\u0000+�e�Q{+9���AC�\u00048��۹/0E��$H6.\u0010y���a0\"}�2c:RMÁ�ڄ��N[+�\u000b�\u0017\u000b�,��X��4�Q��6��n��74��\u0011�_�p.\b}K(\u0015��b�]�к��G\u0019$��\t\u0002�\u0011����rCj��\u0018�\t��}FY�\u0018�\u001dA]X,L/��y\u001dg�!mh,\\\u0012�\u0007�cn��n;�\u0006\"�\u0002�\b��ab�Br\u0014%s��k��eɏ{y]@g�T\r;\u0001\u0001�S�X�2h��*87�Y��U�\u0003x\u0018n�[X\u0014G����A��cr�$���)뺝�\u001f��+e��܉d��\\C�\u0015�f�q���R��\u001a୞����d��]\u0012�\u00157��\u001d,�?���\u001cT\u0011j�_S�ՎL\u0004\u001c�&��l\u0019���\t�f\bG\n���=�S��A=�\u0004L��۷1b�_D���\u0011�\u0012w�;���jRN�B\u001b\"���\u0017>i����\u0016!ʺ�\u001a�.��?��O+o�\f�9{�\u001c�\u0005ը�E|\\�Lݭ/7&�\u0017��9��X[�%:�\u0019X�i��2�\u001c|���G\u001f�W���\u0017�����r\u0014�X�\u0019�x?�Ế���\u0001b�\u0015�\u00144�B�m�0)��\u001a[\u0004��Vկ�CG�\u0013\u0014Ȫ���=���F\u0007�?\u0018Hg\bX��s��\\O턤��mv�v�(\u0014m���P_�ۃ�kë�\u0007�FZ\u0001h\t�r�y���,\u000fHv\u001c����Y�6O�-\u0003��G�9U�^T�gk��M\r\r3�}2=�=�S\\�:�\u0000\u0012��.Nc�{�E�9��X}�7\u0004\u000bPB�\u0017��SQ�i�\u0011~�A;�\u0004`��MY��.�cl�\u001e\u0010��ƭ�\u0016sီ�\u001b�\u0003�2\u0004N\u001eT�\nS~����i���/��ZK9�Q�04��9��:\u0012�`�\u0012��V~\u0010>@k%��\u001f�>��y����\\��+@���\u0019Q\u0001O�J�\u0003\u001bh�\u0016`���W�sx��\u0015��iq.\u000fO�~�\u0013~7gՃ.A��n���\u0010j��r��FΟ��\u001e�.�s+��u�z\t>�X�\u001a��F�9��\u001c���x=������tE5B��~M\u000e��\u001a�[�1���ڇ(����&L��F�{�W��S��R�\u0003�����ijP�+y�r��Y��\u0003��Թ'��/@�\u000e6��\u0014�u�d���\u0013cm�7A\u0003��\t�̟��E��,\t�s��\u001e\u0019�AW�\u0004t��L���֠��\u0019��Q�\u001a~+~>\u001d$�I<�\u001d��c�T�U����\u0012�f\u001c�8��hk1B\u0012Ƒvg@\u0003Ѻx���7'��Z\u0013\u0003�c�y~g��\u0016I�bKxKv\u0002l��B4ptw4�\u0015q\u001a�\r�\u0007�`Tr�h���Z�;�}�I�\u0011�C?ԛV0$���f�Ϭ�`{B���L��\r.�M\u000b\u0012\u0018��Np�\u000em*\u001b�����_W;i�U�G \u0004Ss-�H\u0000C;��\u000eyk˲��!\u0006���܁��6��\u0004�7��]~z�\u001b^�q��\u0017e0��5jg$�^�\u000f\u0018���a��2x�P��ױ���ظ8��\u0015b��\\����Q\n-����\u0004�rB�6�Ch4�u�}{�Fz-\u0010(�9/����kj\u0007�\u001c\u0014�\t�Q6\f����4�QQ\u0015\u00068GL�\u001f\u0015\u0010�w�A3�\u0004���۸�貹Yb\n��P\f�\fj\u0005ݷ���\u0001$g��A��V4(9.����v�_���9U�3r�b#��,�o/鯜I����\u0006`~ T�mjE�^��\u001cn�'���P\u000fW~�!�\u0011�a+2��\u0002<�\u001e�c\t�˒~�g�Y?*�$�oeX�\u0000�\ruэ�%�ŋ��I\u001b\u0014ysD��\u001b��\f�}\u001c�,�~�yj\u000b�L�?\u001a�\u0018�_��ʪ\n�!$�,�bŤ�52J�\u0003\u000fm�f�\u001eX�\u0013��\u0010\u0019M<��\u001e�]N�o��J��|���HJnsU\b�\u0018����0*3ʭv�x1�\u0015�?��:^��A\u000e2�\u001c\u0011��6��VZ\u0000���ߡ�͹dσ0�\u000b�\u0001R�\u0012�-;�Rl�AC�\u0004���M2��9��\u000b^��(I\u001d��pb%V�5�B�G������E\u000f�p�j�ǧ������)\u001c�V\u0014G��\u0016I[R\bz\r��*�\b��\u0017�\u0010�3���#� \u000e$��\u00126Y��\u0007�iS*�\u0001G�OiEf�N���\u001c\u0002ʲp\u0018�JT��÷4w��R��SŸΗ���+\u0006\u001c�Ƽ}ɺ�\u0002�G�dr�MA!��\u0003#�'�\"\u0000Ď�\u000f%\u0013������\u001b&\u0014�4��2i,���cAl\u0015X�p��Ad$�\u001b��ݖs�zB\u0017�^�b��+��Hwuک���l�e�\u0015h3a��m��<\u0010\\ю�C�f\u0000���J�R1�Ą�u}�e��\nR��@�e�\u0006���R2�c.�YI&Ӣi�\f\u0012���\u001e��DɑЉ\u001a��AG�\u0004���L���0�:pIle6�\b�^��2�|�ڃ��`ܞ�\u0000��<\u001f�ɿ�0\u0019��DL�5B��Je��\u001c�&���\u000b3cr��+\"P�vә\u001a�~�\u0005\t�� [r]�����?�^��;�FArNm\u0003��\u0005u&\u0005{�{D%��/?��7s�p�eO��әF<ݍ��x�\u0017�X3i}eQHHʞ4���47���M�Ƥcr�=\nJ�Wń���/T%r%<>�%$��\u001c��\n޿�6s��=�d���G� ��ỹ�\r�ދ\u0005\u0012l]���<\u0012�Ab5����p�ɢ�};[v�+\u0012;�{ �\u0011��]XC��^c�uW���+�r�d�Eψ�eNB�!D?\u000e�\\2��҇��'�(n�u�؀\bN���r\r�ܣA>�\u0004Ā��jT�AeI�4�X�\u00105���^�\u001b�)\"7OV٪l\u0011iw*��8o�\u001bE��H\u000f*\u000e��2�n{��!�;y�T&\u001eܚ�[=��7�\nQg��O{֊5 ��!bA/F��PX\u0004�$(��\u0015�\u0002��s\u000fT\u0016\u001a�G�)\u0007\u000f����� ���*X\u0011�\u0015q�\u0007_�k\u000bt�\u0000��^�^\u001eIr��ǂr\\�f.�^�.�0�\u0005�\u0011b�y�̚\u0012�\u0005{\u001d��V��\u0010{�KI\u0017@�\u000e���'u�c�����A�0\u0019\u000f\u0019������\u0007�w��z�h\r�sv;\te\u0017�\u001b��Һ\u0006$D�\tVe���h�3���\u0004���\t�\u001c%�=�)\u0007e���y�r\u000fh�$\\\u0018 \u001adљF�Cd�Qie�b�5O��x$Rv�K\u0011�p�A,�\u0004؀��g�~\\\u0019\u0019\u0010؞��\f\u0019j�e��p��N���'I���}6P~�r���|О\u001a�D��+����ј\u001c\u0013��-���\u001c�<�D�N�\f��\u0012|(�>�ٸ�a\u0019@��Q\u0019�\u0010��\u001a��\u0004�3L���Й\u0003\u0007�+w�o�W���)μ?z\u0014ԓ��ȍ?�<��\u001e�.�����]��QX\u000b�Xt�\u0010��U �z\u001b\u0017�$�{��1_�Vp&\u0016�S��GMva\b7\u000e.���f��y�\u0003�yo.`F�\b��\n\u001dWۼ�O�^�\u00145=9\u001e2de}�V��i:?��\bz�\r���E/9(H}6�x�$F�\u0010�/Pe�\rx�T�[a�WrK��\u0000[�,�\u0000���4\u0013���B+�\u0004��}�m�\u001fU�Iw��uo�.���?�\u0016\n��a�\u0014T\u0002��E��\u001d9@��e�\u0019�0��#\u0015��hv�`M߁�T����q��\u0011�\u0016�7/�t�΢˼!`m���(C�g�1HB�\u0002��\u0014�\u000e\u001f\u0011�FO�Xq\u0003�N}\t\u0017k����/�'���\u000e�.\nK؃S\u0004e�Ƥ\u000b@����T�ï*�v�l^rI����j�\u0016z�QM�O\u001f�l\u0013�\u0012~\f�<�\u0004o������=h��\u0015:���*$\u0003*i��5�xQOF0q\r�{^2fc�7�w��\"� \u000e���\u000b̘}��k^[`�U\t���\u0006R�S��\u0013c��G@\u0010{\u0016�3�����\u0017�\u0014�\b��D,�m�D��-ʂ\u0001�B&�!�c�/I�\u000b�T��h�M�“�08<��\u001c�\n^���ȿi�}�758�c~\u001c��}���\u001c�\u001eo��^:\u0003���\u001a�\"\"\u001f�O�L�\u0004�gOS\r�m;?�'�L\u0011���R�����{a\u0013����&��A\u001e�\u0005\u0000���m��xO��(R�g�\u0010����c��w�\u001d�x�PɃ+`��:y�O%\u0002����F1�/_�R\u0003�[{�b��\\E���*�>�\u0001�>Fߜ5��C\u0010�\u0000(Xa���\u001a��`���z>�D�k?�\r�uP�G��\u0019{\u0011������A��\u0013ЂM�g�Ѭ\f��\u001e�\r\u0013V�Ⱥ��\u001f�eq�^\u0006�M���*��\u001fGE��\u0012���\u000f{�Dn�W.\u000bH�\u0011׺7ң\u00059[\t,� �Vmo�\u001e\\�2�`P���U�`J\"k\u0016(6�B���ǎ�\u0016���*)�]�\f��\te�c��;x�z<+s���z,\t\":�.��Ν�L�=� �ؖ�m�\u001b84x�x��3B�R\u0012.u��ʢ�����˧iI\tm�}tr����E)s�\u0014\u0019yd�U(���Y�u\"�\u0001��&޶��vE�,�N``�A\u0015�\u0005(���m\bV�Co�疚�\u0010�[\u0006��\u0003\u001f\rH�-7�.�>0�oc퀰�diŁ\u0002\u0002�\u0006��Bj�H�\u000e����\f�!\rM��W:�5|���>\u00077f���M+���\u0017���mX�_맳\u0011m�&\u0000��sh��\u0001K�]��ee:dO�h��X���>(�MG\u000e�٩6�@�\u0017��~ȵ\u0005\u001fրS���t��\u0001�s9��]��U\u000f҆\u0016U+\u001a\u0011�/U�Knw�=X�Y\u0006�\u0011��-�z\u001el<\u001e\u0015�\f���*�%�)�\u0011�\u0010�̩��\u0002\u0001�C\u0015����I�q\u0019�͢����\u0007oJ~�X���fa�\u0000?U;�!)[���64O\u001a��A\u0013�\u0005<���\u0003>HGH�)�x/�z���\t�k_��n\u0000AY�5\u0010)���\u0017�q���Q���\n��ξ�:����\u001c��1�\u0017\u0010\u000fk |VNc\u001bX���,�F�P�Y�Ek��\u00051�\u001c*�����漫(��ЖqE\u000eSa)L\nT\u0000�\u0006j�s����\u0003Y-�2�y�z��Jf\u00020�\u0018뜫�F�u3;_$��E\u0014\u0014��&t���\b\u0010�\u0016Bb�AY5䔀���\u0012\u0010�\u00153�C����)��7��UА���H�\u0011��i\u0001���Q����k\u0000��q|�4�s����p�x\\�jm1h*�\u0007�\u0004S9�sb\u0011\u0011U��I\u001a*y��g���`�A\u0019�\u0005P����\u0017?��r(�\u0014^�w\u000e�\u001b4z�Sr<Ƙ\u0011\u001e�\t�Mz�����>� G��n\u0019��x��$6���\u0003��y�᝗d\u0000\u0015��\u001b|'I$�\u000100��R���U ���߽JrWp�Wr�����͜�\u001b\f=�����}�M�@Z,�c�H�R�74=f���!-`�6�m*��K]/5��r�EԊ\u0017�N�\u0007K�\"\"7�%��J\u0006���\r\u001a��y��_�H��}\u0000�te�;��wc���]�\u0002��~�\np�\t�a���k-G�C%�@'0�\u0001-a\u0012�\u0011���h�������&��m�w�\b#;17I�5\u0012�ڤ�y���A\"�\u0005d���eq�'_�\u0005�\n��\u0015\u0017ܘ��Eٝ��� ���K�\u001d����&\u0018}p�6���.5\u000e�\u0006�@�F��T2F�\u0014��/��M���\u0016�/�t\u001e�����/�K\u0014S�\rM��u(\\{3�-1�|��\u0013I\u00063��V\t_�0��\u001b9T�(R�N�M�q?\t\b`V2Dؕ�[�\n�\u0002@�Zr�U�?[sU�*\u0015\\O\u0007�'*�\u0012?a�\u001b���\u001cF\u0004�sN�o\u0005`D�\u0000bt\n]�>%�Q3\u001cZ3�\t5��0&�\u001bd�K�l\r�(�;��P�\u000f�T\no�|\u0012�͍�;�-��)7�yD��k�`�+Nx�\u000f��%h��5��f_wd�\f2�\u0000`�A\"�\u0005x���o]o�\u0011���\u0012\\\u0014�\u00114��� 9��:\u0014�\u0019@�>\u0012kL_�\u0019��uyl���a�`��5C\u000fh�C��K�@}G\u0003�\u0016M�H�pt�\r����V#\u001e���U�\u0006\f�}D�\u0012\u001d��)$\\��@�0#Te0\"`�A\u0010�\u0005�����Q\u0010Cut�=�)rҥA\u0005\b�_\u0015�&��|�}U�ul�v#�B�9VN\u0000e>�ن�M�\u001f2O���x\u001a\u0005��\u000e���zs�(��.�P�w�!N��\r+�\u001dV��X\u001c���%��\u0010Si�b���\u0005�\t�Y�-����O�L�\u0001�\u0017w�慷�d\u0019�(�\u001f�\t��ַ\u0017oUFɹ<�b.�\u0011�*k��o\fo�W?�@S�Ff\u001a�\u0007\u0011�$�����,�'�j\t7��-�\u001d�\u001c\u0004�Z��.P\u0005��=��>��\tY�o0k�\u00113�[��\u0016�� �7C;���\u0001��\u0014���\u0016C���n�o�\u00106����+\u0011�УB-�\u0005����q���+�\u0000��A(`�����yv�'�\n��ã��W��\f4�W�n�(�O�Z\u000em\u0013G�%ߧ���P�'�&��F�Q�j\u0000�=�\u0005\u0006\u001dԲ���}�2)^��x�\tx�\t\u0012�� ��\u001e0C�\u0018\u0000{Jv��v\u000bׯ^kA$���J8�y�Z\n#O��G�6��U�D_B3F�G��\u0000\u0000\u0001ڤ\"%p���j\r2�3\u0012�ij\n�:��l���#6��W��\u0007v\u001a㗚�\u0017\f+���6CQ���C���'\rd�\u001fM���ch�\u001em�[\u00162�Can!��K�\u001ePc�m���<��k�\u000b6!H�V\u001b�y�����\u0002�\u0001�L��bj�~w����[\u000f�ߎ�:\u0013`z\u001f�\u001bB/`U�-\u0002\u0017��U�o�ˡ�Z�>�h�\"f\u0006�ϧ��_���$�\"��8�\b&��\u0011w��\t��\u001f\u0000���\u0012(\u000b<<�W\r�\n�}\n���t\u000f�O�\u0017v��D�\u0001\u0014yC4\u001c\u0006��ǩ\u001f�_3��V��\u0007�I��h~�\u0016㹅K-�w\u0010�h�ٿJf=��<\tC{\n5�D\"�k��B$�Kd~�=��_ieٞ�\b��A\u0015�\u0005���.Uwq�\u001c��>y�b#\u001cw�8�x屇3\n��)��q\u0016���$0sBM��F� .���^��E�i\u000e��\u0003�6g=-��Ǯ�\t�\u0012�N�0mU\u0010\u0005r��p%.˸�\b�\u0010?[�g�\"L\u0019�4\u0012���(&\u000f�ٱ���o#�\u001bw\"\u0014\u000f@�\u0007�U�����(ӷ״P���Kp�А�\u0002��lǵ���ѓkn0I�\f��r��ē6\\�/\u0002���Nx����\u0015t�\u0015\u000e'����„�A\u001d}?%p��F��Nl�8[\u000eH�}�h��� ��`�\u001dV�&��ckp�\u0007t`��e���q\u0000^:b`s:�~&!��ruU>]�[�A\u0016�\u0005Ȁ��\bw���\u001cĝ8\u0016ڂ�\u0011\u0013��\u001ef'�\u0015���~�<���G�\u001b,�M��\u00024����\u0016ݓB�S\t�V�\"cs��f5.���\u0015?��,5.l�I\u0012�>c{\u0019�?\f\u001e��p\t�]��\u001d�d[9�d�}W�j\u0003\u00008�Q�a_�O�52V\u000b&��i��.�S�8��\u001f+����\u0016�w\u0003/��D�\u0018��X/!%��\fS���T16!�\u001b�\u001d���8PJ�\u0019+�\u001e����m�&�įι�b�k�L�\u001c��i���Z��|��H���\u0001��ܘ�>�*\u0006,cZ'�˅�B>i���'�k\u0012ٜ\u000e��;�dE��L�Խ�UsI��A�Aҁ\u0005܀������x\u000ee���\u0012M\u0019\u0015\n��`�J��v�7�X��\u0011\u0019L(���px��&\u0000���\r��Xsǿ���uݟ�$��\u0003_����̟?�/���P�ꜟ�3t*\u0017S�d��(`\u0014\u0003��Y;��\"a�f�ʚg�Hf���;���\u001cW�\u0004�\\�\u0007ˉ\u0016���U�=V������\th0W����ٳB��\u0013ۙ�\f\u001d\u0015\u0014�U\u001e�5�4�j|<�ٳ�����e���_�E\u000b\u0011&\u0006=�z�9��w�Jo0ʬfJ\u00166\u000bbZ˿����OS�k�f�\u001c�t�\bz;J�\u0007o��\u0001\u0001��}���̪���t�d�\u0018�i�0���\u0003a!����u�!]W%p��\\�\u00168,�\u0003�4�]ܿA�������\u0012���\u001b,Ց�8�kY�.7^�y�E�\n�����x\ri~D7D�@�SC�&4*\u001c\\�\u000e\u0014�\u001c/I�j\n\u0011\u001a��\u0003{Tp�\u0018�e\\b3*$\u001f�=�\"S�M{\u001cvW]q;;\u0003�GqջU<ޗ������(?!p��5\u0003�q�8 �`\u000fD\u0005\u0015S�d��ʅ��18um[J�А��Vp�\t��A&�\u0005���2��N^�ה�Ѡ�ᇌ8 �^���o_Ī���15��\u000e,�}T���o�6\u0003D;\"&��Es28��\fd�\u0014-\r$#B\u00042IL�@�ǿ��� \u0001��E�W�\u001f��\u0005���t` �e\u001a\\��u3��Rܗ��\r�\u0012\u0000��U��\u001e��D\u0001�`�\u0018���^�������!���\u001a�7I�ȇ;�)���|�X\u0017e,s�9�;lB�OK{����\u0010r�Fs\r(M�$B��\\x?\n\t�X�ϡ�\b�HOe'l��9��j-��3 \u001dYx@ऻ\u0019��M,���\u0003\u0000�\u0001�\u0000#өp\u0014\u001b'�\u0003b��c��J/��Q�si\u0007�%1eiJ��}i�\\��$\u0018w���\u0014$���ֿ����5������\u0016���v�M��38_'��\u001cs�D{�3Z|�<���#�Y�G�\u0011F�ܹ*�M\u0007�/�+��$E\u0004�\f�]�\u0004_�\u001bY��b7Ol���\u00074�u\t7д�r�|�O'��|��3q&�\u0016�\u001fz��u\bW��?�T��?�׎T�^�Ʊ\u001eB�v�����A\u0004PR���;g���\nG�\u0011A^f�ǁ�\"V�\u001b,�\u0011D�[\u000b��A�L�*1�k�����\u0010h�RK\u0014�t����~�Z����#D���\u0010��Ae�\u0006\u0018���+���D�c�o>\u0019�ry�1ܥ΢�е72A���}����\u000b��Aɑ��͹\u001c�qс�:12\u001b\u0012�i��􊓂�u�#����<�?�u�\b\u0007�7\u0018K{K���֘��\u0005���Q\n\u000f�\u0018ȥAz\u0010��\u001b����M��\r}\\�4�{��KH�-6#��\u00176��l\bҶ�\u00028���\u0004���}�tR�\u0005�\\\u0017��(�-���!�\\\u0006+6�WcF�\u001c̔�I��,�}��*�8�Ax���>��o������%�=��\u0019�uE���j���Tk\u0013d'��\\\r�\u0002(\u00051ɸHd~��Y�I�\u0003q�\u001ff3�3�~<��d�+\bAjD\u0000�N\u0010C�U\u001f�\\�O@��m�2�I�&ՙ�\u0018��\u0013��n\u0005?��D�5�ܳ\b�W���Wc�x����\u001e\u0007BT�웻�6��(�i��A\u001e�\u0006,���%U�wt\\�����Pn��\u0004��II*5�\u0000��X��\n;l\u0000V�p)��\u0003����M�ԋ\u001d\u0000\u0000�W�1\u0007�5 ����\"�w�����}\u0007�\tǚ��\u0002�\u0002���1j1���׽\u0016�˭�\"\u0007�Ȭ\u0010!�<���{o��v@�^����ǁ\f��1�a�9>��\u001f\u0015�\"���m�\u001e�f�o��n���\u0018V|\u0002\u0006�}5\u001f�M���\n=\u0012�\\H�-E�Neks���\u0001�\u0007g\u001bm�]Mw%\u000f)\u0004�#*\b�\u0002t�cV\u0006�|NI1H壕@`j\u0016g�\u0004#`�HP���‘\\�Ԙ�\u001bi\\Kڷ�Y�ъ6�Ƭ\u00035\u0013\u0015��D5_]@-$(�\u0002��U���AX�\u0006@�����\f�\u0013�d��\u0004Nx�t�Hcf��8\n�\u0001Q�M\u0010(A\u0007���\u0012�m\u0015B�v%�v\u0015=f}z\n.��\u000eB�# \u0000�����^AQ�\u0014 �T�Ձr����\u001d�L\u0018Y�\t\f�3��:\u0001�\u0014j���r��:���r6A��\"�*\u0013�B\u0011t����7�_�TaO\u0000C6j�1\u0018Ly;�ݻ�\u0003|U5h����[ϛ\u0004dt�w<��\u0003Þ����H�p[���Gai\u0007t�NNR�hj\u0003D\u0015\u0010�n#\u001fm���i���\u0014\u001f�_\u0017�>7��O ��0�i���(�˄9��!Y\tG�9\u001b�H\u000e\u001blV\u0018V��E�����M\u0010z�g\u001e��Я\u0017r_Aʮ�$EU�}�\u001a7�?{[`�u2yˣ Z\t�Q�~zu2@�\u001e�A\u0015��g�v�4P9�}�'\u0006\u0001m�\u001ap\u0012�01����AP�\u0006T���'�T�M\u0000�O%\u0012r\t�+�\u0005�lW���_wޡ�/�o��l\u001f����p��\t�\u000b�N\u0004Zشٌ��N�a\u0001\u0005�Uh��)��\u0019g��u\u001b��\tS-���\u0017��F�� ٗfU&d<%�*3�өf0/'k[B�����W���>���巙5R����\u0004\\�f\u0016�E�”(\u0019iӧWˁ��\r�<\u001eL\u0015[�+��j,j���]�����\u0018�t \u0016):~\u0014\u0001��\u0003��E����\u0014\u001f^�4\t�\fO4G�\u0015ShsXD���&\u001eX�\"�%C������Q�\u0011hw��.��e�)����\u000e�\u0014��Hrx��O����\f;q�J���\u0011x�_\u00012ȋ۫��u�ڒP(�Kv\t���&�*�1O9�:\u0001�\u000e\u0010X'�\u0005g6�<\u0016\u0012q@�7Q\u00111v��AA�\u0006h���\u0000��\u0016�)��#@1SZ+��Ѽ-�\u0011�h���>x\u0001\u0014N�+0lH�iڢ�ʛ��_�M~O\u000f\t�S!>��w\u0002�����\u00073��,\t��#��rt&\u0012\u001cv��\u0004{#��\t�\"<��@\\9X��k\u0004��>�͸�\u0007ʤX0\u0002e�|``\u0006�(�*t7\u001dѭ@�ʂ�����\u0002�'Y���7\u001fK�\u001d�\u000f��~߸\u0011ϡ��?���h�t�Ja���A��}\u001e�\u0018�q� a&+غZ(���@�\u000f�{�\u0004j\u001e�`-d=�?L\rK��vOc��\u001eJ. >�]��ɵ�\u0003��\b\\t����\u0000�R4�/�4�\u0000\u001c�E��Q�[%\u0003S\b��s�f�s��\u000bI����G)|W,���KL\u0014��1ڪ݂Ӽ4\"�\u0005�������A?�\u0006|����Mv\u0003��\u000bh�l|I��8���=��ђ��\u0001D�C_m\u0019m�h5t�,6V]\nklr^��؞1��\n\u000f\b\u0018��QΣ\u0010.8��ZM\u0007�����׵�8!4�\u0018\u001b۾����e��\u0011��X�NO\f������\u0013V���\t�qc\u0017\u001a���������顲�\u001a�&�;|��y\\;�0�{\r{ӱ�V��l�\f�\u001a��{�E�b���\u0015��� \u0010Q,\t\u000b6n��@�gK_?\u0011@�ةl�\n�\u001c+���,�I��SYf�.�Nf^�\u0017�i�\u001dNK\\���K��\\3\u0019���B{_�#�?�\u0012��F ��B\u0006\f8�sa�=:�����\u0017#���uɶ�\u001e.(��؅���T��\u001ds��;�s/5�x\u0001rxM1\u0016��Ab�\u0006������\u000f�V��lQ�S�(E>d�\u001d��MgYCˈ�\u0000���m��c4��Q7�\u0016����ERz̷�\u0006�>�b�V10o��\u0007�=���o�\u0012̊�\t���?p�\t��0qB\u000bw�&�\u000b�\n�\u0007\f�^>�t�d'�ZI��\u0011�{�7���$\u000b�-\u0002X�\u000f�\u0007c�\u001dI\u000b��=�I(�chJ�ƛ�\u001e[\u000fDh�~�\nN�&�p\n��S��~\u0017s\u0000H3\u0011ް`����$��V�\u000e/o������.0�߻�/�7O�T��BY��k�v\t\u000b� �\u0017Z҃�=�\u0016�f�J�Q��67v8{Q���R��r�k�e��4��\u0005nF�.�\u001d\u0004\fn喚qS�om^�g'�I;M$�k=�f�~`������t���WD}|]C�����x����\u0003�SV���\\J\u0005(W�H�\u0012�<9\u001d�A/�\u0006�������ݵ�؈� B:\u0010\u0014\u0004ź%��\u0011S\u0001z(oz�\n���(�ַ\b�\u0011Vwb�4c\u0000^*���W\tAp� d�S��~�ea��]�\\�=(��qX\\qC����ƉT2�cTu{�+�~+W�P�!&����Z\t/�0+]�K�…\r����~\u000e^\u0010�BW/�[��oE�g\f\u0010�K��ۅ\ry�J{� ������w[�\u0012��&�H��z.u\\�\u0010�O۝��\n\u00198,EL\u001aC�AC\u001eK��\u001d5���:ر�怌�~Ui��\"�\u0012kY��(�\u0018L�\\��q�ü��hl��\u0017\f�\u001d�5���L�^�\t�F�{,�\u0002�7�V�~u�5��\u001dS\u0007 �]�����)\u001c�A^�\u0006���6���/���d3�|��\u0016��!�_h�ԇ\u0006ՑX|q��dG{���Z_f\u0013�ʏ$_,�s�SU.\u000fE��m�d���b �n4\u001b�x5ET���\b�$��|��|�2��8�a�ӨUա*��Z��1��ĸ��3�\u0005��Y��x���������\u00126I�\u0019��mbk涷^�\u0017\u0015�+@�צ�׻0a�fnYa�e���V��+\u0006B�\u001e�3hIě㋲�K���\u0002sx[�sP\u0006\u0011��4�O$���Cg�r6���\\8�5\u00063G�e�\u0002�r\u0001\\\"�2�&\u0012�<�kt�=\u000b\u0010]�\f\\8�k�ڤ��j]k����V|\u0016���5U�0��\u0015/���\u000faMI��B�,�\u0002UU��5W$\u0019á��\u0002$�>G\u001e��t%�\\\u0010cL�\u0016�ÎD2ya�\u0010�j);���AɁ\u0006̀�\u0002|&8�\u0003SHc��G\u0015�b��Ͱ���e\u000fO+f���(*3\\��\u0012�fH\n6��d���\u0018�\u0005sW\u0014JN\u0010�A��q��\u001fxr�Ĺ\u001b�,��|�2V,�3�)����\u000bA��R��`}9;\u0015�D��*r��]��\u0012���9*T��x������+�N�a���v\u0003�ޟ�'b\u0002�mʺ��n�#�_\u0011OȧYG�h�k�vT\u0017�u�EG�)����̛k�L��XpM\n�\u001b&l\u0016��H���!\b\\��\u001b�n9}v0�z\nG�:p\"D� G�I�¤���=\u0005��ҪT�\"�Z\u0011pt�ަP�ez\u0013H��jF\u0005�)�c�>;�l\u0000��[\u000b&�D����-�!��c\u0007�s2\u00009���\u0006&4ل�_�W�\u001cB�\u0014۽�M����\rOЊD���X��~?��Q\\�\u0004�yϑ'ܣ�\u001d֎2\u0003�)+�\u0013\b�gw)�\rp&�K�A '�����|��������s��\"����^�k\u0019�\u0004\n�0�GʽyMO\"�i�6e\u0002A��\u0016��zuA����E����\u0019B\n2m�&�%�B.�\u0006���}�f\u0005v�5\t���k�\r\u0013����\u001b�y\u0010��p�I�ٔ\u000e�\b\u0012Г\u0003Oh\u0003&�g�����_{�P\u0007xP��W|��\u001dA�\u0019-�\u001f\u0000�~�oh\u0006��^\u0011['��7�vIfI��S\u0007�H0��\u0003\u000b�쪊�F\u0005\u000b��+��4\u0006\u001b��DH�\u0002:�\\~\"2��ö�\u00190Tl�XIN\u0005�\u0011'�k�\u001e�Ռ\u001d��\u0016�����&�^�+e��:���\u0016KW�L�|\u000f��b�7�\u001a�J�\u0013�ᄚ���G��%K\u0018,M����\u001b�Ʈ�E�$���3A\u0001���\u0006N�B�\b�V�6�\u0001hpjl��\u001f�[t=��\bQ)��*Q>�\b��\u0000�3�G\u0012�&9ld���\u0016��\u0015F\u0000x��������c�\u0000OA�@��\u0006��1����j\u0001B2��׮�h۽ŚVK\u0014�\u000f�?{Ϣ(�t�\u0001\u001e\u0002u\u0015�\u001atiP�Y�,�\u0006�\u0019�\u0007��\t\u000f��]\u000f/\u0001\u0013gЩ��A�\u001b�Ϙ�\u0010SNT���a���\rÚ�b\u0012�9(�2�d�\u0018�y��\b8�����\u0011i\u0017����\u000e��>Q[\"�\u000b)~$O�n\u0017�M�q�\rh��Y�Sw�\r�\u000f�H��D�:[!��},\u001fq҃2��{I����q\n=\u0004�\u0013�a�I�H^�k\r\u0006HQ|d]��A\u0007�qч������U2ș\u0000�\u0006�\u001e\u0017�T�C�ڀ���]\u0019�Y��gn�A$�\u0007\b��X�\\V\u001d�`1@�nX\u0011\r�ƫ��]B����L0 ��o>��n�[#9֫�����2,�„�\ni��t��sd\u001d]\n�V9#��\u0005a��r�@�D\u0004U�z�w�~tt���ru4����?U�Q99���\u0000��/� W/�\u0019���b�\u0002�¶?SP��A�\u001c�$��\u0015����B��4,�v�Z�����\u001d#�4\u001f����2��Hz�����%�+\u0017��Y����\u0000t��\u0007(��;�JA\u001f\u0003X�H`���<���\u0012b\u0007lO�*���D���Aϭ��:�\u001eVC��l��)+3ٕ�MO��\u0002��N\u0001���o�`��g-�\t���u�\u000f��d�|K��ΣA\"�\u0007\u001c��L�/\f��uU\u001eJ�'�J��\nJ��>��k��t���t��A��\u0010d�X\u0016�O��C~4��\t��\r8k��f�m���\u0002u����-�auMCa��y�\u000eP�\u0013�e�m��I��mʤay�\u0004�iM���p\u000b��\nɌ�\u0001�����*p^��\\���ɦ�\u000e���\u0000����M\t\u0005\"\"�\u0005��&ڨ��#\u0006���6��Ϋ|g;�:�7��ߜ��['^��XV%�\u0004<�\u00194Jh��\u000eu\u0001Q��!0�E\r\u0018\u0019ua�]-7F\u0004\u0002����\u0006{��}^�Ps\u0019��4��Rv@sXvl����]+�$��}\fo2>�R>j��@v؛@�9�e���=q\u000fֵ��A6�\u0007l���bI�xO�\u0011W��c\u0003�S��3�r�/\u0006��Z��7\u0000:�\u000e��%_v�hbAC\u0011�������\u0006o�A���3%|U��,e^�>�ni��F�H�`:�p�v�U�ܢM6�����O\u0015�\u001e��\u0010�؜1\u001b�]H8(�Ш��QkM���론���'z��3���#�\u0014�\u0012�Z�.�~.��7�D9BW�,g\u000e�#<>]\t+k�8!c���\u0003�\u0000��m�1�z�o\n����l���\u000fo'r\u0018\u001e�N�{��,~P�r�\ng[\\�-����Z�9���O��\u001dy��-��\\����,�r�m�}\u0014�EA�6��=�a��ܩ�d��� �GĶԛ\u0001B\u0002�&�K\u0017�r�ْ�AY�\u0007����b�۠�摏$\u001c��q�2\u0011y�\u0015�\fp9�˰��\u0019�P�(�q`�Z5Ş�+rS1�r�\u000f�\u0015L�>p59`��ސ��̜l<��Y�˯\u0012ѡ�\u001e\u0018�T�ր��ϰ(/��G��1O�Wx� �C\u001a\u001b����~���aH&v��\u0010qP���Ɖ{�g\r��g\u0001��@Y\u0002ρ\u0003\u000e\"\"�2̑��`\t��/�-\u0018���o����u~�A��L�}�?OS\u000b��ԣ��԰����}\u0007�!3s�x����̓J�����e�Ɏ�A\u0007\\N�\u0015��)/� �\u001b!t�Z[Gn.r�p��\u0011\u00126�h�\u0017\u0004�R\u0012�\n�탯Ǿ��\u0010�ϢXԄ@�2�ݙt��lz\u000bd$�;Х*��վꈪ�>��a�M\u000f�\u001a��=\u001d��\n\t����f��۷\rY��ْ�Aj�\u0007����cǓ\u0004A\u0013.����K�C\u0006�\u001dh\u0004p�Jf���}�lɌ�ll�N�؜cl��u\u001bN�/���(��Z}vXY�q����ТbG\u0013��}��P�\u0011�=�ή\"i�\u0006p�m�O\u001b5�l~\u0012(U�\u001d��l��Ŗr�#�wQ+�Tu_\u001bN����L��\\�-ƨcx�\bޟKKQ%��\u0004�����\u001e�\"�Pf�D�\t�\u001e��%$��\"@m�\u0016]�E�b��\u0002B^H�E�7Wx��\u0015ܧ�\tT&7,l\u0019\u0006�\r0`�\u0002,�>\u0017#�o\u000b{j��e�\u001e�[�cO֓b�1�`)�O�r6\b�R�\u0006�\u001bE��Nw`xY\"9֢` �f_�&5\\�\u001b\u0013���=�h��\u0002Y�۸��c�\"Tt��m��E�~q4��n\f�j�C�&w��ąb\u0004풳�\u000eȶ�MiٛZ\u0001\\Ͼ�ohR\u001e\"�ّ�Ad�\u0007����d4��`[F\u0018�����Nr3��4�\u001b�p�.0�\n�$�NV\u001f�ng\u0003\u001a� ��0�R�ACı��M��q\u000e:�w]!�\u0015z��-���*�������G\u0000Q�B �{\u000e�zc��i\u0007�QsHJ\u0004�$2�T�T�\\k�<���|L�\u000fOi�\u000b���-�3N�\u0005��B�\u0003[X\u001f�ד\nr���; \u0007��#r���A�{�\u001e�c$@�E�X-v\u001f�\\\u0000jM�\u0005x\u0002����p\u0003*v\u000bQ,\u0019�]ˑ\u001d\u0000\u0007�(N/H��ȫ���!�#Wځ�v��m�dP\u000ef\u001d�\u0005)ʸ0��G�\u000e\u0000�[ԛ�!<1f� +\u001f�BF+O�e��\u001a��H�<է$�\n�P�>\u0005@ޓ�-�\rd_\u0000�)��~�\u0006���2K�ޞ\u001fICS\u001eX��Y��*�-\b�P7�\u0019�WV��I��\u000fTT�R���+���AY�\u0007�����\u0007��g��//R�D*XK9\u0007`�\fE5\u0013JV\u0006�P��kU\u0012^��R.V#\u0013��ߖ\u0010lCD\u000e�;,�ұOUV=�\\�[]�_g7�%��8w�:���7猏M��*��l��9\f�0R����2t��+\u001ai�r\u0015\r�F7�\u000eW+��Q�G-s�[1\u0007#�\u001d\b�K\u000e�d2\u0016��\u0018߇�C��,����\b�\u0001A��l���Яo�\u0018�;:/\u0004�*�l�\u0000�6\u0002Hÿlka�X[���\u00120�\u00030j%\u001a�F{�Of���xx��aa�O\u0014h�ΰ�^0�Zm`�\u001e\u000b*蔅�ezRW�JG`�~�X�W���w*O\fM�(U9H,��C�\u001a���J\u000f�\tp`d��\u000b�>���Dn\\���~+g>_!_+�\f\u001e��A]�\u0007Ѐ����g\b�M���A��G�w�\u0015�\u000e�i\u0004�Ĵӆ�kc\t�0�%_7;\u001a݄�z^Ć��T��\u0018�\u0006�M�\u0003\u00191a�V�4\u0007!\"�B�)D��E��#_[\u001b�M�9�\u001eH�&X\u0014�MSp��W�nw�`͡��S\u0011[G�;�&�\u0012@�Uf��po�\u001e��Ծ\u001f��k`#@�A�O\u0015�*W�\u0017�} \u0001<\u0010P�)[8ܸ��t���(\u0014I��Us\u0012)G�+d�Ű\u0002�\u0001���\u0005����f���˟�_p\u0003<\b\u0016��Y�K0�\u0004�\u0012p�=\u0002\u0001�\u001a��\u00178�|05�󖗴k��.���Un�~ER\u001c��CA�����\u001a�/.i.��\u001c\u0007`�xl��h�21>DO��e��A�\u0007����\u0002;�1�]��@��7l<\u0013�4�\\3�B'�\u001a�S�g0=��F�4\u001eO�Yn���\u0005.�#~�P�E\u0000\u0014�;���\u0015P�\u001f^��x�N~�գ������\u0019\u001f�\t}y8S8�.��V.O.{0�`�җ%��D\u0013ⓢVR-�r\u000f�G�`�_zNBC�[�,�O\u0019~�Aup���{\u001a'���\u0017�\t(k\f=p���xG��t�\u0015ۋ\u0010���eNS�1����VgխUPCN�[���\u0000��U`>�\u0004�4J�g3�\u0016�9�2�����k���� ���?���F��Ű��uۦK�(�̣�j�����!׫upk���1\b�5r\u0000�)Q-|i�o;�E��:'u'S�\u0015���$\t@{\u001cP�����N��\u0010�A>�\b\f���M!#�\u001f�0'�Vp+َ�vf�\u001ed�\u000b�1��[/+�d�u�j��\t�T���Q�˦\u0003`\u0018��w�3�8�Vl.x��\r5;���\f_K��\u0016Q�Aq\u001b��-���\u0016w$W��@!\u0004C��\u001f�ɥ��G��P[G�rÜ�оO#�^�%3�\u0015_�����H@B.޴�nq�pTx\u000b���A[�\b ���*�O��=siצ>�8D�c��N\u000e�O��\r%RhE\u001b�PS~�1����\u00038��\f�)�؇�\u0001+�����{�~�a\u000b+ݝQ(4�8\"�\u000b=���}�oTN�9���\u0002��̾>b��KsX��`$���P��ϲY1#��W���82\t���G*\u0014\u0007X#\u0018��\u0018��s���W�qt4�\u0014̿�9q�\u0005\u001c1K?��/�\u00191�7�\u000f�j�\u000b[� {� ���\u0017��tI`\u0001���\u001b�9\u00059�'�\u001e1�F\u0004�A��\u0013�g'���b�)�ȱ���iuf.�#�I�\u001a��N�\u001d�&�W{�\u0016�r��,��@y\u0002���\u0016��!{u�%�5Jl`ԗ���\u0002�[a\u0013\u0014��1���x\u0001��\u0000=�a�3��F(������Du\u0003V��Ԏ�>E�u�\u0010�An�\b4����5��LͿ̻�I��a�\u0017<���'�m\r����\u001c�u�\u0002�xs�s��DY�C�Ͷ^Ʇ�\u0014-n���g��\"�5���M����\u0016�Q�TMJ���:P�$���п�0\u001d\u0012�u��yq�=\u0005\u0000\u0002 'l!\u0003�����t��4%'F�j1���N�&৊N�O72V��MUr\f_�\u0011*\u0000\u000eB\u001b��\u0010����?ߥ�a���h\u0019�[��\"�h/���\u0002J�\u0017c>��p��d}B�����5��jQ��n�U.',�U��\u0016^��]�B�b@L�C�1�PU��Ē|����\r�\f�_8j���::������\u0006�W�1$��MGm�i;C�}u\u000f�\u0016S-�J�\u0011\u0001��\tfF \u001a�\"�@3�9>�e�x�\rɑ�%c%j���C(��7�ۜ�q���o���t�r���\u000f��\f�%�uV��At�\bH����=_$f\n,2�د\u001b�Ll���\u001dr�o�\u001f�s�N'\u0015�\u0012%5?;-\u00157'�Q���漝%�\u0003%�/N\u0019\u0013|���|�K&L�\u0010h��.^�G���D��\u001a>%\u001d��\u0018�\u001f��?���(FQPa��M-j;�5�\r\u0000��U��tS\u0004�\u001e|\b\u000b\u0011?\u0003E�f!�:\u0004����\\9\n�y��\u0019��%C�\u0005.u�\u001f�!�W\u0012ݒ�%�O�ۺ�\u0012w�?\u0005QE)�\u0018\f�_�Bm��/7��9�^\u001a\";\u0004��\n��P �v�\u0011��\u000f@��H��,��l\u0019]Z�\"\u0015\u000eq\u001d�F�Š�K7�������Uo\u0002㽖`�<90���'�H�����3b@X�4j��-�R\u001a��+Cf����\u0018mULG\r�\u001f�e����%�_��&�3�i1��Z�3�b\u0018���{ҩ�hw\"����\bb\u0017dl+��\u0007&���dK�\u000e��Ah�\b\\���4�έ\r9�H=\u000e��\u0001X�\u0014F\u0017B�}\u000f�\t���q�V>D�`6Wh�U��\u0004K���Yߡ�\f����W@��G}���^(4yС\u001a\u0001ݠ�\u0018��r�O����Du�9�\u0002�=�\"\u0019\u0005+�3\u0012\u0002:�?�\u000e�\u0018�#SĮ5I��=\u001f\"C�\u0015O1:\u0018����\u00064\u001a\u0006&�\"LZ\u0006��\u000f_��* ��L�,��5�l\u0017T�\u001c`�4X��D˕J�Ta\u001d\f(�p\u00113��i�ݓ\u0003xG���m?\u0004\u001a�\u0015�\u0000�\u0012�\u0007����i\u0005ax^��z�}<�Ly����@ni�k.\te�\u0005�>d\u0012\u0017~3��\u001fe�*[!\"�<\u000bN���P��8��mS���\u0014\u000b\u001c\u000e�n�礽\u0010�Aށ\bp���a�\u0013�2��8i[�������Er}���@�֔ �\u0006�tx��\u0013@Y,�}65L3��I$ ;������_�BG���\t\u0001\u001f\u0001��o8\u0002�2�Q�gmc�_[��\u0016o�;q���u�\u000e�?$\b�y��DA\u0019z�|+�\u0018�U���aBJ���ǵD\u00073���;���m�\u0016\u000fxIP綛�*���A_�;�_<�\u0004[��i�ӊWB��\u001c�1�m����$w�4�bV���D\u001c�O\u0016����\u0002�ψ�z}��e���ot\u000bsYa��\t%#<�ڣh��J�\u0016�V䀅1$\u001f�\u0019ܶ�5�m�\u0018�G�x�s\u001c�=�ϭ�\u0000\u0018�%\n�Ҥ��7���J����a�+pZ�r\fӺ��Ⱦ�\n�*3�I�\u001b^�ѶR�7���\u001d�>2��YK\n�7H����u�A\u0012O���<�%H\bPSjS����;��\u0002'���!�����<�����q.C+H\u00029�\r[�ן>3��JK0��U�&�5�Uf�\b�\u0011n��x��-D\u001d�fQ\r��.����BY��wߪB�X�@�(8�o0�X�\u0017�xə�vQxi�\u001b�١��6/�����������'���M���\\���$�O\r�9�][�XV�\fDft҆�z�C\u001e`B\u0001\u0015\u0012o�z�~\u0019|�\u0019k\u0010�\u001a��\u0013{x�\u0011��k�W�r�'�(\u0015\\���D��\u0014+�ǝ�aC(�=����e�/�o\u001d2���|v��$�\u0003J�S���'c@ �%���\u0006�t?\u0005\u000b��A9�\b������:�0�r\u0002I�(|\\������#�.�\u001f�A�\u0014e�6\u0006���\f��;P\u0006�:��d��\u000b����{\u0013\u001a&��f?(��\f�Z�qV�4�n~��s�I1�k�B�#\u0016�Jv0d�\f\u0000��\u001e��h�N\u001c���)�\u0019\u0000ac�|��@�\u001bN[���s��7\u0001��40\b2]�\u001f\u0013`6�E�c�{���I�}��e�e]�Z�����h˞D\u0002N�\u0007�<�\u0004��\u000f[�yD������=�fY\u000e�2y�\u0015���ՉXp�\u0003�\b�~��v\r\u001d:���S\u00063i�n<\u0002�T\n&�\u001d\u000e�j�ɝ�|>6ԏi4���E�������\u001d���R~\b��\u0014raV�}�\u0004�5�B\u0012�m���?�k\u0011kt�)sb�P>`��AF�\b���\u0002\u0011rkf�\b�X��6;�m�\u0013���ͻq�O��\f\"͟s��lK*�)\u0006���h�@�\u0007YcY'87��[V�S\u0007���\u0011 cV�_�t�f_ 厽y��Qe�\u001b���G��j+dT\t£\u0005G��״�WS���\u000f#��$�pp�w\u0018\u0006?-\u0007n1����\u0013U\u001e��w\u0019e�[�':Y�I䘚5R^���\u0010#��J���i&��F'\u0016!\b�:� ���\f#u}=�N/�-�O�Eq��\u000eb��n�9�ߒC�p�\u0006�t\u001bq�(\u0000�)ۊ�\u0003\u0003O*N\u0016��Q{`w�������n\r �\u0012�PO4U|}�)\f\u0002�gZ�\u000fh��l>�B�\u001eF�\u0006M\u0007��\u0013Ћ��-��\u0016\u0018S�#T\t�O�?\u000b8H_\u0015�j9�w�*�1Y��P+�'E\u0000핌��\u0012v�,Y\u000e�~�+ۘ��Z��IݷFu�5\u0006'�>&Q\u00166\u0013�a+�\u001e\u001ft�p�9�\u001fE�/vQ�\u001f\u0017�]�^��k�\u0013\u0004��/Z��V�tP$\u0017=?�\u0016�\u0007�bϤ\n�W\u001ci�dL��n���DN/�P�\\��x�,%m��K���Y��>2G=c�\u000eV\u0007���ҿ-e���\u0019d ��V�Ё#�\u000fզ�\u001c�1����\b�Ō\u0000\u0005nf2�?q��=*��7\u001a�\u0017FD=�;�(?����@�4���N\u0005\u0007e�$%�\u000f#��q�Ʉ9�\tB�']�I��4��;\u0010ū�Ap�\bԀ�}d���NE�퇻g\u0013��N*v��;X�@RV�\u0000ۻ\u0005��=9��������ƥ�\b��vI3\f_�\u0015J4�A��\u0011p\u001c��V�\u001b�(��냀Aq:\u0003�.�[=H<�F���,{c�\f�\u0002�~�R|V~\u0010����\u001bX��.�\u001ad�'�\b�Ah\ba��\tL�\u0001;撠��K�lBۉ\u0007I���)�s\"�i�\bk�\u0013sq�\tѯ\"C�D��\u000e��o:e�O�РG:�t������\u0002��Ĺ��\u0016Ԫ�\u0012{��Ã�Xu�\u0004�Ƭ���?�5�k��hv����\n\u0004ǩi�z߮Y��I\u0019�}�kA#�#�.4�~*��ET\u0011����zZ\u0016���\u0000y m����}J�2�7dgo\u0010�m[\tt\u0011A�}��f\r�\u001d\u0010��a�\u001c��E\u0010�\u0011BX����\u0002\u0006�o?b���W��Oڱ\"b�e\u0001���\u000e^���A\u0016�\b��n�]\u001f��>=آ/���\u0003,�V$x�c\u0004\u000f4�!\u0004�=\u0002ph��c�tro�\u0002��\r-2�z\u0002ig,���q�\u0000�J���\f�]����\u001a\u000e*ёC۽�\u0005�*\u0011\"�)���m$v���E�慓����k\u000bv�p�Bş�A���1\t�\u000eC�K�%��*\u0011�o쎘��3,�b7]C$R����nj}�\u0000i�\u001e���d+\u0016\u0013��<�\\�\u0007\u0014�\\\u0004��%��qJ�\u001c\u001a��\u0006p�0�_[?)��Wͮ�e�\u0017��`�Y��\u0010��\n?\u001a��[�M ?�\u001b��9ǩiu�szY\u000bh`�\u001f�\u0002\u0000w�\u000e!���S�g&-i\u001e3�D�\u000f�A\u0015�\b����m\u0002�8K�6(\u0016\u0003\u0005\u0011�t�JY(HSQce��^�An�\u000ek���Z�a\u0003\fZE���J\u000fi�Q؝낛��\u0012��isv��\u0000`��\bH�cM��y\u001a\u001a0S>}��k�2nPK�B~I}�\u0006u��]<�\u0001o�����=榹?'�\u0003n�.j\u001e�0��t\u0006p����\u0004�ڨr\u000e��?\u0012�ok���b���v�\u0017������ث!3�K^T�����$A�Z\fV�\n&ڞ?\u000bASVϽ�>a\u001a�{(\u0006�\b�A\u001d`�g:\"���b\u001d��9�Qټ\u000b\u001e�\u0013�T��;�+\u001bx}�\u0007��%D:\u000f\f�~�+y�L�8��1���#�V�@�A\"�\t\u0010���u�I��m���\u0012�r\u0001I(���8h�ƒ�M#\u001b�\u00013��5�����Y�\b*�٭o\u0013 G�`'��3�E����U�3D\u001fU��aH��=��d�\u0010��0͠Ĉ�q\u0016�S꜔�\u000f�$�ا!셹\u00138)+����c\u001e�Z�\b_�c� L�G\"؇�h�1��.��\u0014���+�\u0015�\u0016�|�'Æ�|���?�{>b�y6�0l��\u0015�K��\u00035���\u0001\u0019�\b?\b�\u0018���\u0002�H\u0016;�\u0005�ܰRt\r͑\u0015�Q�sM!#�\u0013���\u0017\u0006��T鬌�>�\f\u0011��@���2M\u0004�I����̪P����u��\u000e�]\\����y\u0002h�6M����A9�\t$���n\u001eT,ulY�|�C\u0007h�',�L�k��\u0017�¹\u000e�ߙ,N\\�3��a|�}C�z^Sء�\u0005�5Y�:\u0012�\u0013�љ\u0019G��\u0019ą��uF�Fr�z���d�Xyn \"p\u0001���f�F=��Pb[c�\u001b��lv�]t�1� ��\u0010\u001d�=kOH�sQ�/�Y֞�9�.]Q��2$\r�0\u001f����v��\u0001\u0000\u0016x��\u001d��\u0012=�TP����y������Ǡ8�@��\fϤ\u0001P�b\u0019��}�\u00170p������t\u001f\u0006�z���\u001aQ��0�\u001d�?��q��2Բ��ũ��:�r�[\f\u0016�(��<�1_K3��C����\tf4\u000b��;h\fH�\u0010p8\u0011կ\u001f\r�Ϟ�;4N�kX9\u000fN\t%��6L��A �\t8��L�G\u0006N���7�f(�E�APJ�yܘ(�\\�������=~\u001as�<Șİ�f�\u0015\n���&^|�����x��K\u0004H��|*�h���\u001dlS\u0013\u001d�j�7�\u0001�%��|�֚���`p\u001e:�j�����}\u0003�����z�T�Ь���%\u0003�+^\u000f`�i5���+_�ν�\u0011r�b�=Dt��Ŋ�\rfa�7�a�Y�\u0015�q4�6'�c�m���q�oM��Y�Wr�ۑ>��\u001e��\u001bi�\u0018�0�F�\u0005Cה�PoUQ\\l��o��TC(�J\u000e��?]�\r��&���\b�E�a&����\u000e\u0015R�J��A-�\t`���cɽs\f��[»3ᶗFD�0���:\nI4�SC���,�S����8\u0016\b���ǥ�p��J�OR\u0006�\b�`E�W�T�������$\u0011�\u0012�s\u0018�����*�s��t�j�(����\u001cE�\u001bױq�<���f!�9S\u000b��^��\u0010�x(�IQ_���n>��&�dL�s@Oa\"\u001f/�W\u0002��Q��4\u0013\u0014�)��v���i\f�\u001f(��s��\fr��:L&�W�G�\u0018��#��l��\u001d\u0018%�����(�5���LC0�>�\u0010��[��V^��9���JC���\"(\bJ�m&j*��9D�\u0002�@@K�lc\u0005�`[l_W�\u0010���j\u0001Ƽ�\u000f�JgNRG���\u0016�\u0001���AR�\tt���c͆}m\u001c���'������#�&\u0005\u001c>b��„Ͱ!���;���O�����OP>\u0012��B�O629�j�)|�{\u001d��T~�\r\u0007\\��n�̢\u0010z���b�p\u001b���\u0001i4�3�*\u001c$c?�I�\u0011�#ˢ�R�\u0006js�M��S�r��\u0011�F0�=����3��J�B\u0015�\u000e\u0018\u0005$=\u000b�K�\u0015��c����QC�m7�-��<�\u001d��-�q�B�q<�#f\u001b�\u001a���M��\u00192��v\u0019��\u000f��\u0010��<�,��L��$5�q�\u000b<)�B�\u001cb���`�]\u000b\u0016�x�%�a\t�?��b�\u0013���a���\f�_�\tj��ȉ\u0007Zg�\u0003��:��b~��ԈgS��#�\u0011���Z\u0006ۆ��&>��\u001a\u000e�\u0006�ĭ\"nT���T\u000bh�\u000bf\u0003����AS�\t����l��\u0014\u0003��2��\u0012�u}-�2T\u0002&\u0016��\u001a\u001e�\u0015�s��'�emY�\u0012:w�Q̝v\u001a��\u001aw~�q��[!�a�*�Uo��*K\u0018j1���Z?�A\u0003!�U\u001ah\u0011x$��Oe@!Ƕ�aݔ:2!����+\u0001�%��\u0017œ\u000bֵ([���t`�y����\u001dI�)+/½hD7��ν�\u0000v'F\u0010�;N@R�ƥ\u0015\u0005�\u0014P}\u0010��쪃e��!n'�S�ȴ\u0007�)�E#c&Ѥ��+�M$I�Y\"N�>�\u0015��\t��o�\f\u0013�Nv\u0005���\u0012�X�.]��ȳD\"s4\u001fG\u000b��k\u000b<\tn��>����\u0017�s6\u0010��q�\u001f���SKzR\u0013�/K�[\u0017�M\u001fxy�\u00133'���j\u0012绎�\u0016\u0007W���\u000bXh�\n�\u0019]�c�ݤ�\ru�k�,w����AR�\t����q�C\u001f%`�l4��%��d\u000b�>&Һ�Id&�\u0001�Zӥ�8��5�.�\u001a�Ҥ�j��\u001dq�;�\u001b78\nդ���D\"\u0006���rM kO��59��Y�\u0000\u0001���4m[��\u001a�k>M��4d��\u0002'�'}�Q#cvM'�0V�%iiJ�����|\u001d�\u001eVF��a�{�y�Ԑ�W�8�)\u0012\b!h\nzԭ-�GO\u0000\u001c3(��\u001c�Y=%[�s^$��&{��6u�\rwQ�Ś�X\t�܆j,�\u0015\u0000\u0007K�\u001c+av��\\몑��\u001aU-�O�\u000e=_��Dz\u0007+��0k\u0007����t�$�)�2�5���kP��}\u0012�\"�\u0016��2J�d�)�_�\u001cU�?�|i\u0010�h�`[\u0019���R�RѴ�|�6�N��B��6�V{ň\u0002>�6�S\f�\b����0���Aj�\t����eՑ�#\u001a\u000b#D޾,[�*��zb�Մ�����5\u0012~�\u000e\u0004\u00004LT� \u0018\u0019�1J֔c\u0017����Ϭ�\u0018�񢋛�F�.�j�N&j5�Nd\u0017Q�\u0005\u001f���v��\u0003���l$�-h�lh�\u00050�\u001c��%\u0005�$�\u0019��\r♲\u0015�\u0002�:�\u001c@T�1\u000e��\u0002\u0011�\u0011\rh�D\n��\u000eħ�C�\u0014V>R$\bdI��\u000e�#�]����\u001d�K��Zq*�K3�.�� �\u0005p���2B\u0016\t��\u000eS+��\\�@���\u0012<���M=2�\u001b�%_Q�������T7Rョt��FN�bK�<�`��ff-�C�\r�\b\u0018Cp>��O�u��'��\u001dg#�GE�j�2���%�\u0014\u0003H\u0017�\u0012�_�r������y:\u0006Y�\t��J \u0004��\\\u0017�\u0000\"����Y �~Lq��*ưqȞ}\"I�L���x�$}˺�\u0015��\u001e��x`�����&��\u0002��i�$KN:ۄt�'G{��\t�\\Ubr�5�L7�H�}۱���>H�Cḃ�#����kob�k\u0013\u0018Dgt\u0005�g��޸\u0010e.����d�O�pa\u000f�N��\u0000���&��BT�\t؀��\r򼂾�\u0015y� �5�\u0014)�\u001e�H?]����lG�fo��A/\u0003,j\u001b2(�kg\u0010��fU;\u001ch{-�\u0016(�(�#4j��\u0006���)xq�\u0003V<\"L9ԙ�(�_N�\u001a\u0011\u0007�\fw���:1��L�S\u0017Tm#9�\u001e�$�o�\u0002�Вxl�\u0017\u001b+oM��(\bu��\"���[\u001bx����_\u001b0PA¯����k��.�\u000f;�'B����x[��\u0017���ԩ�������\u0019\u0001���fr���$\u0005�]͟��T=ٽT~�N^�~ÿ�'d\u0012��>����-\u0000���(�� ���<���\u0005�\u0000�\u0006-j��Ŷ���uU�\u0002��H���߿�X�}�L����\u001b\u0002�<\u0006�Ձ��\b1>\u0005�\u0007��B��\\\u0000?�^jvz�D�g\u000e��EL\u001bH\u0013��\u0011Q\u0005<\u0011\u00005c�rbw���Y�4�\u0002^��k.�\u001f��>٣�J씍f�4'�,ŲJj,��\u0013̚�Aȴ*�X�l\u001a{�/*����`�\t�Dn7�\u0002z�J\u000b]\u0002�\\D\\�w�^3{\r�\u0004M��$��p0�\u0014\u0012�:�Κ\u0019?�[b�=\u0006\bs�Q��ILJ��3w��\u000fh\u0000<7.G����zw}]����-�~�V�QmП�۰S�AH�3�t�\u0015�[\u0000��\u00018\u0006-wЩ x�\u0001pdlk~\u0018�\f��\u0015\u0019�%#�<�p��v5��/Ӭ���r�v9;VA+C嘑��Z�\u0006a��Rha�6H�A]�\t��M \u0007��{G��4\f�\u0002?\u0011ɠ\u001b\u0018�me�n��.R�`ޢ�|J1bO�\u0014�^\u0015�)��c>�\u0019�$��\u0018\u0016�\u001c���*�Js�7[�疰��8y�7�l\u001d=,L��� �'\"��/c�9��%l�c\u0018�9۞�\u001d���HfJ�\u0003ю(��,!���\ry#�\u000f3��ʣ�&\u0003N�jH�Cpޒ@�̘1[E�B�z�Z�b�\u0006�a�YĤn�n��S�\u0015��!c�\u0019�V`,���,0\u0017�T��(!D��ꞽ��>\u0019\u0006I�X:BD}:\u0003uK�`I4\u000e6\u0006\u000eܒ\u001e\u0001���2���s\b@S�\u0011\r��hw�Tq>\u001d��B`��JsruT,\u0019�B\u0002\u0014�M��4�\u001e�\u0016EL�u�0޴lQ�x�k�}[�u�\u001f#5\u000e�\u001ca���1�\\�>�N�\u0001$uݔb^�W\u0006)\u0000T�t��AD�\n\u0000��L�/�}�5h\b=�*��q\u0007�\u001a�EC\u000eb,n���O_\u0010`sa�@\u0000\u001a��UeK�2\u0014+��(=�X:�\u0012��5\u001f:�c��pq\u0002���yݣkQ\rצ�#`\u000b�{�#0AI3�E2κf�QN��\u0012\u0005�y7X��2�F\u0014�CM�6M8����\r�7�UM��^]v����\u0013�,�\t\"��Yj�:��\u000b�ֹMlA^��K��\u0007\u0012O\fC|f\u0019SF|5\u0005��%��O�~��\u000e\u001b�>@��gv6q3��#3���\u0001u�w\u000105N�b\u001f�6�\u0019;¤�\u0017�A8�\n(��L�\u0010ۗ\u001e�\"� \u0012\u001a3]���\u0015\u000b��\f�nc@]\u001f��0Ɉ� �r\u0005�f\u0006��\n�|�0�xV�=�x5`m�.�+cX��>\u0014_���?�\u0019�s��V0�D&k!��\u001b�v�k\u0012�\u0000\"���D\u000fO��rY�\u001a����:^C����Df��>����B\u0001;����\u0010\u001e/�e�p�\u0012/���}�yZ\u0005��ul98��Z�\u0017_pQy��Th�%�\tp\u0003\b��]`\u0002�!�\u0004K�\u00121\u001e9\u0017�\n�\u001b�s�wh��\u0013�U�D\f!J1�YK�����\u000e��\u0017A�G���\u0017Aa�h�\u001a�l\u0000\u0016E\u0001i����]׵�J�*g\"��\u001bb�M�1\u001a�0=b4;�Ü��p�l\n]\t�t\u0007\u0019q��p����~[�A2�\n<���s�\"\u0011wqۭ\u0011\u0000���Ȝ�&n�@�hb�a(Kvn�[F�,\u000b��/����\u0005\u0016�!�\u0015�M(֒����\f�_\u0002+��4?Z��\\r�DZ7���\u001a��E\u0019ŔVG�\u0005\u001d\u0006iSafI\u0006e8>�b\u0013�mg{a\u00069\u0001�y�L���>�R���\b���-��(X|4=\u0007�#�D\r�\b�ޓ;٢O�/�.���\u000b�\u0011~�Q�#�\u0000I\u0007���Ny!��\u001e�=~�dc\u0017٪�Q��^k;��xՊ�<�$[���\u0006\u0012Jg��{\u0012\u000e�χ[�y�>vL����Y'H�ι2p��^z��B1@�g/r������\n\u0004�9\t����0\u0012�\u001b$\u0010�\u001e�A(�\nP���c�q\u0012Խ\u0005�9Ha�lپ{�Z\r�΃|�*��^���\u0018N8\u000fn��\u001b��ao\u000b�t�Ԃ-\u0011�����H��[��~��ؾA�w*gy��R\u000f�hzFw��B�}�Q*�4\fp�\u0012U\"[f�\u0015�Ւ�X?\u0013j/宆0V}��\u0019�!'�\u000e�kI=C�~~\u00069B#j��m�\u000f0�>9��\u0019Ve���\u000eՄ��7��佭���)�7��\u0011\u0000�`\r��.R6y\u0011�rn�z\b9\t\u0016\\J��f`���#�-j'��l�)��\u000e!����W��ls{���L����]�\u0000;�W�C$wڥ:�D�N�1v\u0011��]�k�8��[\b�J��`\u0007��!�\u000ej����!�A9�\nd��M\"�(W�E�^)���ЄD\u0005Q^6��\u0016=c����~@\u001e<7��Y3����b����߱!\u0018�Aa~���\u0014|/�dyJ��)�9���\u000eh�ČR���p�Nϗ�+s~��\u0014-k�\u0012��r�2�t���\u0013\u0007�Di�\u001a\u0006�۞R\tgq������D�ʅ\u0012��\u0014�I��C��\u001d�D��䲘\t��R��ȉ�\u0006@r\u001b?�]\u000f`��B�nq�#\b��Fd2^\u0007@��sEքʻg�\u0003��\u0010S\u0007\u0002\u001a-�-5��5h��^&\u0015� �i�����p\u0010�\u000e|�c�M�\u001d�\b\u0004�����I�mZ�\n���O��\u0002:��\u001f\u0013\u001e̊���#י[B:aH��J\u0019:Z��\"�����`�R���q[�A6�\nx��MQ\tN6�\fR�SG�*R+���>\u0004�e\u0015�M�9 ܷ�� �C}���N����������-�J���� Zx^\u0010�\u0018�7�\u0003�;�I�B)��źӡ��鉜�]���-\u0017�l��Y� �۰��:\u0017��M̪8<\u0018��&w�K_`x�b�q\u001d�L�ؽ\u0000/���\u0016��J����\u001d�\u001f;�#�D�F@*�\u00075�9�-vJ(\u0017�`{��\u0013<�Ko+'z\u001a\u0018_�\u0003GBV+���.\u001c�(=��d�3@8������h�{\u0015%�����Ī\"Q��\u0006��ù�E�\u0005������\u0017J<'z�}\\�\u001b\u0000OᠻO���r\"=\u0016�h\u000f`��q86>�\bn�\u001e\fr���[�u�X\u0018���ۊ%�A0�\n���M/4\r2JK�\u001f{]Djv]�Og�\u0016K\u0006X�C�>��\u0016]1�E\u0005\r\u001a��\u0018�\t����U\u0006\f�\u0004żZ�\"�\u0002%(���(=4|\u0019�m��W��\u0000\u0018�<\u0012��G�\u0004��j^Z@aS0n�\b����ٍtM$�ā�Αm\u0014t���\\\u001f�C\t�\bpu����\u000b\u0000T���7��Mr�D\u0013�ɍ?{í�?Z�\u0012�+\u0015x�o�}�>�o�/l�G\u0000z\u001c�'݂���� ƂL\u001e�2\u0003�F\u000f��\"m&4���e(F��H�kl\bY\u0000R�0ňR\u0001LYL\u0018���\u0005d���\u0010ZAi�$G��MM�*<���_�\u0003���rx�&�6�\b���\u0006�+Ob��\r��\b�K�r\u0010�o��O9\u0003��A*�\n���۷f�Yy�2�t\u0007���\u001b <�:oYIu�3@\"\u0013@^����.Q��|h\u0013�\u0017I�:r�\u001a�Gz\u0011⫖��\u00020�\u001a�\u0004��\f̡�:\u0007l/�m\u0004��c\u0013�0<��!�>��w�K5T�}$���Ōٷ�O�K\tR�`��fE�����Y�R�ρ\"@��RV����\\�ԕ��N\u0004\"�f�ER�\u0001\u001b���%\u0001\f�+�8UR�8P}r���\u0014�v�eY�IY��RݍJ\u001e%<��Bڢk� \u001a���\t�B�\u000eA�ena�K/���ƥ�We\u0002lG��1�E�D�\u001b(�+�#��\u0007���CT�X>I'���,��Z�I�\u0006��z�\u000374FkZ�В���A$�\n����/I\u0018]R�ݵ����W�\u0004��-H�V�p��X��kj8h0SDz�\u0001��h�.��u\u000eEs��\u0017���2������\u0005�\u0018L9B�q)�ˍ�fC�\u001a�\u001dӛ�o\u0010Qu�Z\u001b\u001d�\u001b����f!\u0004W���ߛ��p�l\u001eW��lOߘ�\"r����y�Z�W(L�w�\tˉA<�W�_��K�\u0011�_��x�\b�b�V\u0000y�b���+A�������A[c\f�\u0001\\?)���ߪ���O�\u000e\u0006,c\f��,�\u0004��KJ��0�L��\u0004��ǮpW\u0017��}[&���\u0003i`,���7��N)����]\u0011H>�e\u0003�/k�F���\u0004\u0007�p\u0012[�������h����t�A&�\nȀ�lӘn\u0013\u0019P�\u0014�U��֑(��N�f�U�}O�K�=�;�\u0010��#Z,D\u0007\u001e-�Ђ>A���飾�Ql\u001f�W\u001c��H8Z���Z�B~�|W�\u0017�\u0017!�q\u0017�ų�F�����[�����P�U\\\u0012J0�]�]|g\u0015@X�L\u0001\fEL-\u0016��@�\u000f��\u0014�CҥC�\u0004��\u0000�3�P�\u000b�B\b(\u0013]��)����d�V�\u001a\u00014\bڛ�\u001c.\no�i��\u0000��v\r3\u001a�i\u001b\u0012u[v�Ac�\n܀��$\u0016/r,\u0005�/\\����E�{���\u000e60�e�G��7��BD\f�/1BGM=��\u000bW[\"\u001aR����\"�E��v��e*\t�@�|h��.\u001aSA&�rB���1�QF�o�ރ���Q�n�a�5�c�ڥD��2�?���.�r?\u0012I{$�\"�-��)���B�]�\t:`\u0004\u0018\t���'6:�tJB�(n>���W�\u0015�$�(�BV� �WY��x��6�ZL��ŭ�c��\ne\u000e\u000f7�k:��s2���p��u�I���B\u0019uIm\u0015�����DcPdt2�3r�����ͽ��}�H\f���Ab��-�yߪ�8#xK?\u0002\u0013Z᧿�\u0001Y�b��\u0013<\u0005��\n�і�𻿦��\u0019k\u001b�eƁ\tڠ\u0006\r�i�\u0010o`\u0018�p���\u0013�˞\u001e��R�4�� @�M��3\u0007\u001d?�A\u0011�\n���m�\u001d����P�{���*\u000f�'�\u0001�2��]ȉ�\u0017�F�\u001aRyI_�[@��fƂ<��\u000eGW��-b\u0014�ܵ��Oq�\u0015�����\u001c���Yʞ�I%�|\u0010�kU�}T�\u0007�|��\u0013zO\u0002�y��\u001f\u000f\u001eS��'y�50�W\u0011�m�_[��i�7yf������y��S\u000f2ӳ��z�����_M�ő�{Yo�\u0007R��j���ڭ�����\\�ڶ�7���zO�������XkFE�F`���()�\u0002A4^+�)Q\u001c��\u000b5wq\u0004\b�\u0018\u0003\u0000���r��qmS�\u000b䈥:�ڰ��y`\u0001�i\b������`\u0012P�@��\u000b\u0004��X�u��\t�y\r\u001e�x�8��z۟�\u0004\r;\u0007U1���qB\u001b�\u0010����|��5PH��D�t�)8��\u0004\u000eQ*���w����+\u0014ׇ�B��\f�a�\u001d�R�_�q�T�\u000e,J�\u0019��\u001e\u0016�����I��˰\u0010?�d�\nn�6�)ąH�\u001d}�)}R����R\fk��\u0012R\u0003\u0014A��\u001a/����aE�\u0012�V:oz�D@[^���\u0018�Y��_�;�1������0N�57�!��\u0002\u0003��\u0013ྰt�\u0004�\u0018��uU�\u0004�V�\u00067H]͉��,�_\r��h�S����\u0005�A\b�\u000b\u0018��X�t=Þ��(h���?�i�Ji\u0012C��m\u001c\u0015�bi.ɊL�8(\u0015�4�\u0001`���(\u0018wҧ\u000b��\r8Gw��\u001a\u001b2\u0006/�/|]��@kk�F\u0001ys��\u0013�9\f���VY�\u001d�M�@k���BJ�TJ]v���+5�����c'���>V�;��]�%��\u0014�s�)ѷ�?�$qvI�����|���n\u0011��\u0016�\u000b�j/\u0019U\u001e9�����Y��\u001c\b��*�c\f\u0006\u001cG�\u0016oy�%���\u0005�( #�èv\u001a'�A�1H��a�d�=��\u0001?RC�\u0013c\u001b�\u0015�r�z�\b��q���\u001aq��\u0005ؕ�:���A\u001e�\u000b,��LȲ�����A��64yyCU\u001e\u001d��;>�[s;��.]_m�b�B��\u000e����\u0014n\u001fv�L�V�\\\n���\u001bd2\u000f��������e�$�P\\\u0006L���-�h�BV@y,�g�\u001b�3Cnx���I�\u0000�\u0004\u0007��\u0001f J�'�L�f.B\u001a��\u0005��ㆳ+�AS�\u0000\u0001\u001c��#��~IK�\\��\u0001��A5�o�\u001a���E\u0019\t���#?r��\nd�\u000e�m*��\u001e�%h�̚�\\���T�Z����mB\u0002'D���ũVԺ��u4�W�\u001a\u0011�rrdV�-j�.o�E�MNd��3��7n5ϝ(y\u0000s�x\bw���\u00131\f\u000f��Ķ\u000f��R�\u0016�m�A\u001b�\u000b@���e���A���\r�\u001cq� ?��Q2�Dp��\u0018�)/y\nS\u0015MD\u0015\u001d�SG@2@�*ZNxۛ$Ԝ\u000bO)�'ll\u001fyӤ���޾�C�\u001f���\u0004�0�ɇg�2��R��G����#\n}�(Z5�e�J�G]\t\u0015c�^O��_Z���L�V\u001bW���\u0001��UΈ�G\u001a�q|bP�����e�tS\u0011y\u001f\u001e��;��+Ii��Ђ\u0019�_��QZ���ǙZ���%�\b�\b�\\�\u0006\u001e0\u001f֫\t�b�\u001d�I�\t����\u0012V�Z\tw�FnMJ�\u000e2����\u001bS2��!U��ۆ\u0011\nB��g������$Ӭrd�#=�\tHE8�A\r�\u000bT���cƦ2\u0017k�6t\u001c��tl�\u0006{\u001c{�mC��/�\u000e�\".9�\u0011�#�GY\u000f\u001f\u001e+-n�����d�x����\u000b\u0015R�\u001bԄ\u001f�v�:�;�U�xt���6��D.��M��x����m ��1����7���';\u0007vL�v����\u0005�+:\u000b�f��J��a�EJŻ���p�ޘ�y\r��'��=ׁ乣�M�q��q,���;�Q��\u001d\u001cF%�K�F86\u0003��E��!SΤR\b���<�|\u001bNf���ך�\u0017s�����eQ�a��\u0019�=m�ݰ�v0;����қ=t�\\@�2n�=\u0016׈\u0001�#~�8�A$�\u000bh��M(\u0017}dG>YV���\u0016����y�5\nV�\u001ej\u0017c�.8�\u0004��lx�����\u0012�\tCI�����Z�lm\u0000Z�+�m\u0003��%��d\u000b�}!�K\u0010��2�r�;A5v�y�f���c)�\u0015PǮŷOW��#\u0000\\+\u0002�֩)n���D��\u001b[��A�ܠ\u001d�oq��_8�F\b�\u0014*��\t���C�42\u0016�b\u001fh>IXYr��\u0006\u0016{O�\u0018�˘E��>���s��\u001b�`��9�5_��E����o2���$��\u001e.�R�ύly\u0016\u000b$��s\r����\u0007�D\u000fG�c9K���|�z\b\u000b�����\u0010��&ք�<��? 3��_F0c��v�\u000f���H�������A\u001d�\u000b|���\u0016��q�F��?�ʼn�h�i�:X\u0001x���7d�Rl��RR\u0014�ne�v1�9M��\u0002T*\u0014d�=h�0���_7�|�ľ� \u0015�s�(<�1�\u0019���EZr\u0014�ԯ�/#�e€w��Utz���\u0012�5��\u0003�~\u0004^#h��ރ\u0003I��L�4�&�G�U�T\\MQ~�][Y\u0012\u000et1I[�s�&N\u001e�W�}\u0002m}��D}\u001b֫{\\h=��:�T��谊4\u0011���7\u0012-���J��c�cYU\u001d�njf\u001e�\u0000���%��'�y,\u0001\f���6gy}\u0004:��\u001dŲ\u0019t��:!\u001f��z_�\u0012k��B�?ۮ�\u0001\r[��م�\\���\u0002E�Aȁ\u000b���{\u000f��͖N�\u001c�\u0004�Q�\u001coy#x\f/�\t�H|K<�\u001a%o�b\u0017ߗ\rw\b��\u000e�_/�/!޳2�=\u0018Y߽9\u0010��\u0000̒��\u0016i2o\u0013��z��5\\��P>rv[��(��䔩�1zo�T)]L�\u0004D5��V\\�(-��\u0018�\ns��+��(��+:�-�\u0012\u0016��8��r*����DM\u001eGoK���(g����r���t{��j�\f��\u0011�\u001bC��(w�A�ozKi�ѮRKn\u0003�<��\t�d5T^� &�&qB����3_;����\u0000_�l����\u0012�g�k�)!�\u000bٌx\u0002�)�X��>բ�p���?km�S\fm8L\u0014k��\u0001ߓ�4Dڂ57\u0010͍���\u0012\u0007�8}����nna+��^�\u0017����R��G�\u001d}������Ж��\u0012�\\+�ZI�\u0011�.�ڿ穧�dLj����������{2�\u0017��Oݪ�٬�z�R��%R�SLi\u0013\u0002Z�\u0016�\u001e�?\u0006��B���\u001a4ry�\u001f\t��s��u�����e����݋��\u0000m�+��i�\u0012 $붣A��\u000b���z���LQ���+��K���څ%׸�|\u0004v�\f\u0005��b�B�I��$m���爼\u001ep�9\u0015R�\f}\u001d�R'n\u0005\u0003�~�V��T��ڀ��#�?\u0013��-Y����kOw-�F\u001a0�l>Aξo��2��\r\u001ce�P�\u0004\u0004\\��{�\u0007V�d��U���\u000f�\u001c����K\u0001\u0015a_�\u001e��5��0D�\u0011%��90#��D��V\u0017K�_\u001d4^Ø\u0005�yX�9�\f\u0014}<>�.�v�L\n.\u001cS/Og�c�\rt{N.���\u0004뚄��\u00132��������\u000e�>ƙBb�\"=��g�U��J�jc渂\u0013{8Q�2�%�I�o�$���\u001e����\n���?�\u0013��òԝq�kO�8���\bGq?\u001f�����t�[�Ѹ�\u0002U@\u0000\u0000\u0000G\u0004�\u0003�\u0000Oe��q�\u00073��\u0000\u0014�P<�^�:�b\tb\t\u001b��\u0006�\b\u000e4�^\u00069!p\u0013�����c�_Z\u001b��v��P\u0006\u0007™�\b���(�\u0007VuV�e�y����F�&���]�׵iꚤ4\u001b\f�K`\u0019?�\u0010h\u0003��&��B���xn�r�\u0006�\b\u001a�F��]\u0003۠Ȥ�\u0006��#�2=c�-�\u0019\u00112veтy��l��L��&��\u00120\u0003�^�\u001b������E!q�rTw\u0011�f|�o7p��C�Z�bx\u0003�}��v�\u0004\u0007:\"�;u>#�fH�`�\u0018[=G�\u0006R�^iO��>�Џ) ��\r\n.[�U��IA|�c�1f\u001a;�����b#\"�\u000fS\f�{\"���\u001d��)ѳ`��AHZ㐺\u0007\u0010\u0013O�\twY�z�ڈ�d�\u001cq�g}W��=��eE�A��\u000b̀�|�E��i\u0013�/�J�� \t\u0003l%\u0003��Ԡ\u001f��\u001e6o\u000e��ldk��\u0006���?�GC�7\u0011w��MPۯ����;��>�����F�\"�\u000f��� >`�\u0003�ޞ��E\u001d\u0016w\u000e���\n�@\n�mY��W\u001d��\u0014v����\t��;\u0019T\u0014�Uo:-��\u0005b-��A?q \u0007NTy�\u0010��\\?�h��ۋ��\u0014\u00034�hC\u001anW�U���l�F�d��ln�+���\u0000cyv��&0�C��xԒ*�\u000bp���Q�{��\n)ЏE�����t�MK]\u0015*5\u000eNt�_%�y��\t?I�_\u001c�Xz,�!��\u001b\u0018*}�ȶ\u0003�D|n\u0013�GNL�P��o\u001e\u0011��\u0011i\u001fR;\u00016ʧ��[�!g\u0015—܋�;:�#io�P�9J\u0002�\b�@�&[]���ޡ��f��AI�\u000b���M1܈۶Q\u001d\n\u001ba)\f.�v\r{\u0000�W��u ��Ũ�\u000b�vꮺ� ��'C��E�,\br�\\p�\u0019>x��C{l==\u0001\u0017�� S�;�K#�\u0005c�bW�W� �g\u001f(\u001f��p���b���\u001894� R9�>��n\u0012u��AY\u0003��u�\u0000\u0003j���\u00013�=\u0005��-aFI��->\u001f�Z�8oS�P�C\u00079\u001blE�g\t�qx6�\u0014�f���Ii|ߺ�\u0013C��Ӊ\u0003�K\u0010���%\u001fEo\u0006[{4\u0015\u0005�$��\u0012�\t�A�\u0017\u0018��i\u0005?O���.b\u0015\u0015\u0010\r2g�\u0002�II�UL\u0007dy`��\u0007���\u0007��Y6�b�\n�r̝�\u001d:\u0007\u001a�+��\u0011���m���x�\u0006��9\u0019��z+��6�L�>�=��ֿv����R�O�~�݁�A$�\u000b��L�9���Pk�\u0001u��ł�\u001aD���@p>��:��`^E�?\u0015��\u0011\u0000��\u0014~R\u001aM{IA=/\"GL���X��*�d�\u0013!Ɖ4�ߒ�U�\u0011P�c����=Y![�e�:C^a۬�U;�O\t�Z\u0011\u0007\t��Q|�\u001e6U/޷u��Q�� )b�u��\r=���R�䋝�]��քǣY;�zq\u0015W� �g.��̔\u0004�l�X�@�c���\u0019\u0018�y\u001cee��Ç���W�C�S��W�xFO\u0015nNܙ\u001d(�����[\u0001�X��p���Mo��V\r[2�;\u001b�\u001c\u001d�屘��?�\u000f�r{\u0004ֳ\".��\u000e�<�t+]\u0000�����kwp�U6e\"K9d�A&�\f\b��L�{(����W�c\bj�\u0014\u0006�iL\u0004[\u001b�}36�'J��;�ch��Z�.p�;U�\u000f�\u00169��i��#��EE�x\u0011�f��\u0017S�M\u00018\u001e��M\u0000\u0004`�B���ӯ}���l�\f\u0007���g�\u0011\u0012r�$hX$�3aU���߶\u0019\r�<�ǰsq�\u001dc&�^(�P�7��tX��U!\"���e݆�'\u001e�HZ\fۺ��\u0017=)Vz���\u0018\u0007� ��@7�^0>}\u0015��\u0014\u0004�\u001fR##`��ϴ���Қ����P^2��\u0015�)\u000bH��~�_\u0007Q\u0012��3��(��U��y*j��f\u0001\u0017��)_������(�tG�*��D��\u0002�D�y.�)�֔�R1��\u001a5�A%�\f\u001c��L�!�-�\u000b\u001ebCC��@tL�>>,Dv�rm����A2OUb�\u001a�q\r�w\u00035,���\u0001=n\u0005T�Ғ�L���\u0014��\u0000��qu�jp\u0005V�E�\u0007&7���\fw�y,Lj[dG\u0003r�����h�նuɒ\u0017�|��\u000f}\u0006ˮ���1Y\u0007K%�\u001d�j�R��ul����r�c83�\\L69\u001dlj�r���˜�}�?*eRN̑3�Z1�p�\u0006��\u0014�(�Jr�!�AU�\fD��۸���u�!xL�\u0019\u0004�/�\u001dZZ��Ⱦ\u0007��\u001fk��^��m�>\u000f\u001d:\u001e䟻�M��\u001fO�$R�|\t���Q��\"���\u0015㐥\u0015����Qc�avF��\u000e~\t��\u0010\u0000JDA&�����\r\u0011|����d�U\t�\u0003\u000eG�\u0014XX\t��\u000b�u\n����H�wZ\u001b��9\u001e2e'O���Np�ǙmY��\u0005�\tE\u0014�\u001b�cRغ�=P,-$���\u0016��F�E��Z�)\"�\rhF�@\r�������;�5Q��R�[\"S�����R�S\n�C�}��)&���G��~Gt���k/\u0003H5\u0006K[G\u00141B\t}<\t'�P\u0005�\u001e͆P�\u0013��\\�zW[�t\u0012z��O�?j.\u001a�u/�\u0018)1��\u0001u$w�\u001b+\u001e���o�y��N��\\n~\u0015��\f\u0004ҩ\u0015�t!�Ah�\fX���������O\"Bll�]�WO\u0012�\\��VF����_�#�y�f�R�l�ߔ74�,\"P\u001e2��i���\u001eތB\u001alklD�\u001f\u0005'��%-p[��\"��� V�\f%:nU\u000f\u0014JB\"a�y�\u0019�Vǵ���\t~��\u001d\u0000�Y��A�,\u0001VFі�\n����IxY\u001d·;c,�j\u0001\u0001���^+'Q������>��\u0014��\u0015��_\u0003�_�S��7�\u0012��Q��o�V`39\u0010�h��6�R�\u001d�;�\u001bvG\u001f\u0000�QeW(�xk4X,@W�~���3�����JvI�d\u0004��\n\u0011Mf!p`���{r�}�k\u0005_��� ��/��ѣ�F\u001a��趡E�C�m\u0019\u0013�\u001b��:��au��\u0011\u0013���\u000b�$�\u001b�\u001d��|q��/��\u0011ϭ��'w�om\"vd?�l��)���K`&�\u0016\u0001�P���K) �An�\fl��۷�\u001c��=��D��_�_�\u0005���@�M���t�z�6=�����E�|7AlQ��=3d��ք\u00021�>����`�)��n�Bk}b0\u001b�Z]�\u0006ݼ=��oR#I]\u0019�o�����D�ãD-@��'��%5y�-�Ǧ��3��\fz��/�f�*ۇg\n\u0005w�\u000f�\u001bu��i�D�2\u0018��\u000f}{�>�\u0006tl@&�\u001dh�L\u0014\u0014�C��\u0007����2B)�\u0003�d��\u001d�\u0016ZB��@)H.�F\u001f(\u000b���\u0000\u001c�s���O\u001b��{#�\u0001�����z��F͎�5�s���-\\6J��V�\u0017��(��W2FBZ�����\u001c\u0011e\u00015�_9^\u000f)�g:/��/\u0017�\\�U�\u001bf�!\u0004j���E���\u0004h7Ot8mLe��\u000b�F�@�O����\u0000��\u001f޼�\u0012 W^��'�r@z�\u0013�Ȉ�9\u0014\u000bD��x��!�B\u0002�\f���L�N26�k;�Z��\u001c��ܛG\u0000\u000fӳh�\u001e\u001a�:��O*s�\u0003\u0015\u0001j��Z;��\t$��\u000b(l�\u0015�ԥd��e\\�\u001dK|�\r�\u0001�\u0011�Yc�zMc��V�7q�\"yD��Q�.��\u000e\u0000\u001b҈��\u000b��\\c��LrX\b�b�\u0004�ўC\u0019Q\n��1�rR�-�ܒN���yە\u001e3\u0005\r\u0006\u0018\u0010f��}U-���\u0003���J�#Q�A�|�!�ܮ\u0000VБ����\u001a�c\fTOViM՛b.�\bhY��\u0006P��j'��\u0011e$F�l�*i/�\u0012k����|����X`'���٭�x��٥�{��\u001c]\u0017zD&U�r���\u0011�W\u000f��ΐ��\u000e�\t�\u0011�AP\u001b��P\u001b�k\u001e\u001c�:\u000eZ)�m�\u0001\u0006���F���ʛ6��\u0002�R\f^�{c�!=�Y\r;X�\"�5��X���T�X��\u001c�b� ��Do�\u0017�\u0014���˭�\u001fu�`����ܱ��0\u0010����\u000bN�{;|�W�{�o��C\u0010��P�õ,�\u0003ԩ�\u0017��Q�I��\\��#��y\u0015���,�b����fz5��\f\u0013��o6��&�\u0006���51�R�\u0013Y\"3Ib���B\u0014ZՈ�mp�勞70�M�f�\u0011�w%�5�K�\u0000��[���p}[�Aw�\f����n�a0.��#m�a8���?�������\u0002,\u0010_ҽ=��iP���Z�TC�\u001e�tH��Iܳu2\u0011�%.!\r�\u0001\u001bhx'%x\\k�J��%�9��A\u0007YI�N\u0013|�\r��t\nl��\u001e�\u0010,h��h\u0004N7w�\u000b���\u001e�a#��+{��>_Xǀ��0>��v=\u0006+gk�w�\u0006�\u0014d.�5������\u0007jTJ}�\r��b�\u001f��\u001f�\u001fK0��\u0001��U�\u0013g�\u0006�\u001b%˽a\u0002�,rG�2%v\u0012uM���\r\u0012#L^�H�UC���0�:\u001d5���Og;����\u0004�4O���벙��䵲6�f��JfG�l��\u0011�Aj�\f����j�[��Ow\u000e\u0012�v\u0005\u0012ܲ�\u0003�-�\u0012I�fc�\u0011��3.\u0011�\u0011K�\u001c�$�\u0010��m�\u0012J$Aq7̢:�&��~�\u0018z`�5P\u0019U�$\u0002�\u000bK�\u0013Ԥ\u0014�b�\b\f�ہ�ih�ijΊ��ٮ}\u001f���v��~�\u001e���gՀݧ�/\u000f&��d�Q�66�s�\\&\u0014%1\u0005y�����T�ti}k[mi\u0010\u0005,�K\u0003ʾ���$���#}k��5A�\n?��jڀ&��I)�G�3ng|{��.q�1\fX�i{�oO-��v�Љ�d\u0011\u0002\r�\u0006����L��p3��M��BoL9� B��R\u001f��\u001c�!����7��tz�\u0013�\u0015\u0011\u0018�?4d\u0002i�\u0000vK\r\u0010�ů\u0016Αl�\b\u0012TxFp\n~d��g��\u001b\u001dvই�?\n�e����\u001d\u0013.3%Q��R@�1V��$������av\u0013\u0007�w\u001a\u0002�������k�O�R(�\f��ե�!��\u000b{��'�[\f�?}��TP�#�A�6}R�vF�w�+c^8ҟ,K\u0005*\u0012�A�\fЀ��b�:��\u0004�\u001d���Ԩ\u001fx9�\n\u001f#)Fa\u0003z.�U\u0012��x&%�[�8���\u0017{�d6JA=I6�BTb'�\u0016�`\t��A�buŞ\bğ8\f�@�1�I\u001f���\u0011\n^JgY\f\u0018\"-\u001b�o�\f0\u001e�K�;d�m\u0013i�eo�s�\u0014E�Hq\u001cH�f}KP��9�L����U+7l�5\u001e�Gx\n��\u0011�U\bm,�\r��{|˽�\b���-�\u0019/�*��o�����k%�fk���f\u000bDi\u0010�\u0006���gzy;8���\u0007:�d\"�d��^lWo��l2y\u001a��8\u0002��\n���A�Ņ�n�\u0003L\u0018�R\u0011�\u0002�W��N\u0013|�JXeW+P�\u0018�=��>\u0017���I=��aGBAh�?�~۟�@k�~\u001erV�/yxZ��ٔ�J��i�`�\u0010\u0006��R�~+��ǚ\u000e�s\b\u0004hdɩ\u0005_$�#����-�+�\u001b�\u0017�p\\\u0010�[>\u0011��Ǝ�6��Z�\u0000��:\u0005d!Q�k�l��Z\u0010@��6g�ꥵ�4wܧ�V\t�\u0012L�`L}u\u0011�\u0014��\u0019��Z'����3\tL�yWb׭�\u0003��U�>�%�\u001b$d�ћ��\u000b\u0017aS\u0019�m�?��\u001bJiy�.\u0013(X���AT�\f��X��H�9�qX�0T��)�B5i�\u001f\r+-;}\u0000��U�ߏRȪr���\u0005й?ox���3~\f��n'��^z\".\u0010Ӧ\u0013�\u0000p�J2��\u0002�\u0010����Ƚ�:�y�ݨ��+�\bR�� 47�p�.�c2G��2*���.H��\u0013~�}\u0010�\u001a�\u0015�����&�ϻ���\r3$�8a��N��y�B��\u001dK\u0017\u0004o��X;�c-\u0014t�-Ųyڏ����L���qݪ\u0001H<��\u0019�_\u0007���~VA.�������\u0002e��.~�I�8-0�x=Co{��G���\u0012c؛f1�1j[%7\u0001\"\u000e\f��b3�ʣA<�\r ���\u000eh7���Ί(�w~N��\u00109\u0002�\r\u001cF�bS�5@��\u0001k������ǂ�.�th\u001a$l�4�\u0001de{0Y��D\u0014�k\u001d9���\rDף��M���_\u0013$�Gma�B�,\u0006+ :�;�\n�XiB�GL��-���T�BguP��B��\u0010zWT�O���ϸ\n2�����5�\u0005@s'�\u001b��W�\u0001ZUu��y��\t\u001d\u0012�vwJ�\u001a(�~.=\u00143P���ط°o\u0018��-�xp�,rV͚5�u�2o�S����I�Xj��:\u0013Z��qcG��\u0005��[$��2��)��\u0017O�XD�g=�v��B��—=\u0019_&t�-�ݳ*���\u0010�٨�\u0000W\u0015|�\u001eeCq�BeM�\\֘���B|�\u0000\u001ano���K�#\n�\u0004M�Z\rzLj\u0015�r�\u0002��:�r~\fJ��\u0005L���_����yK�b��\u001byY�Xr�Ø����\u0005��ĩ`��R<|\u0011-�E��\u001e�gs�\\�!�l0\u0003v�u�ݺ�� �\u0007z�PH��[h��Ɵ&�\u0003;,�Ő�|��I�f�GF��ro���P'�\u000f�Y�\u000bG`�<�;h4ܚX��ܚ<��$�u~tc\u0011�j\u0014��[_#�v��\u0012�A��Wʆ���0�r�z�6ˣA-�\rH���\u0012uּ!��\u0012�\u0000i�\u0007���6�**���C�n�����j�<�ni\u000bN��\u0017u��\u0011�]���k̝9���\u0017��G\\�ō:Qv�\r7��[�l�\u000eLY�(w\u0011-�U��s!\u000b����EB\u0002�!\u001f�\u0019���q�6�!�}��8j\u000e蠧�U\u001d�c7�v�\u0005�n�\r�#�&��#�i��\u00061\u001d��U�PlڱY\u0001�׃\u0018>��\u0003�����|v��eV�l��\u001e{\u000ef��\\1\u001f�)U�\u001cu-��$��\u0019�\u0018$F������Phƶ���6\u0001\u000b��O~u:4�!Qjù�H�z�W�#o.�~�f����/��G*�u-�͝�Y�\u001aNe��t�nU`��X�)c�ˣA@�\r\\���\u000e�\u0000�����!�ʅ4z�_yZ��D]�4c\u001d�\u0013�j�I��*\u001b9�\u0007�C�k�師�\b�\\�������+\"��\u0011�]��\u0007�� \"�+\u001c����{N��\f/e�\u0015��\t�\u000bi�,�>�^+����(\u001c`�!�\u0016^�E�\u0012�G��\"���,\t�u\u0010����b�(b\u001a0M$4�)�\u000e�Y�P[2ے�\u0001\u0005糙���_�`�?c��{jұ>\u0013�U��\u000f���H`��%h5\u000b�\u0003�H�p\u000eG\u001b\u0006O\u0015g���k���\u00035��A�\\w��\u0012[?#��ب�@�)\u0014�x/��WüY���e �j{ú\u000105�\u0010�1���d\u0001}k\u0005��,\u001dh����K7\u001e�}\u000b���;�:\n�\u001e�Q\u0002\u0017�icS\u0005u�?�HˣA'�\rp���\rFV�o�;\u0001��\u0011Q�1\u000bdu8���\u0003�URU\u000b9�b/�\u001b�����\u000b�R�~8�D�U�i���\rY\u001a�\u0010���3e{\u000fA\u00190�\u0001�\u0004����XL[g2�r���\u0007\u0016�\"�\u0014Sp�N\u0005�����~��U\u001e��=\u001dq��=�p\u001f`�\u0003ֱ*jYQÁ\t�����L\u00011�K�����k@��&\u0011y\u001d*��\u0000��A=�\r�������9:9\u0004t�-V�\u0016z��\u001ayD��\th\u0001WlϪ�.�\rb_�8w\u0006\fb5��\n?�BW��mu��\b2xɼ����(���ձ\u001f.\tr�p4z�Pщ��u�ԖR7fr�Fb'��Ɉ¨���P���e�ۓ�\u0011x`p�df\u0011��Գ���!�o���B\u0012�\u0019�\r�7`{�ۆ^��\u0017�7Q��\u0000&\u001c\u000eul�2V��j\f��H�\u0002��\u0015oT�B�ƨ`?ăHsyY]��%,ӱ[\u00057{\u0010J�OF\rK\u000f�|���`�\bhѥÃ���AY�\r�����\u001d)�݉����\u0002�\u0019\f���\u0015?\u0002�\u0011����?��0�k��\u0018�ʱ�}s�1ίR\r�z�\u0005]q2\u000f��Hl\u0019�,\b�ZB���C�)\n�M�o�|�)�rOV�\u0015�GjZ�>s�z�'2sC3����T(Q8�,:Fs���Kd`\b\u0000yNsM\u0002\u001e�gJE�ܰ\fQ���U�\u0007U�\u001dMv�X��n��9\u0012A�@�\u0012ڧ\u0013g�\u0004�#�\u0015͎n)@\u0006G��]\u001c\u0013K\u0017\b'\u0011�K�8l_\n������lMhGgJ1\u0017��\u0001\r�\u0004�<�����q?�):���z\u0001�6��^Bf����VW^g\u000e��\r�N+�s:#��*��,кC\u0003D�g2��ߞ�\u0019g��2\u000bo}������'��[]o��\u001f�\u001e\\;�W����\f����o�>�T�\u0011���섣A�\rԀ����\u0006ڑ`G\nKu�ǘ\n⅘r�Û�t���F�G�\u0010n3\u0005������\u0003���ư�\u0007�\u001aAr.҈�\u0018P \u0012?���j���}:\u0007�\u0016�mbR�����\"���\u0011�5H8z�\u0003�i�\u0019�u���<�^2�\u001e1�_��F���G�KL�-�J\u001a�O�ꠏ�w������'R�xx�����I\n�i���g�;��9��Z@�\u001b\u001d��\u0013-\u0010S�_����l=\u0013��\"��WKN�)Ӑ/\u0017x��\u0010�d��?i8<��A[\u001b\u0014\u0019`Ы\u0012߈�������\u0006��\u0004��,P�2p\u0018\u0015E;�\f�\u0002h\u0006���4t&6��~`ɼe\u0011+\u001cIN.���\\N<4�G\u0010�lBY�<��K\u0011�u�e:�6����\u0017T�_v���>�\f\u001a��wϽ(�\u0019�ny^�})5��O��m�����(\u001c10\u0019X�C�s�\f��y�:˔�\"'��7p�w�p.}�5�\u00034_�\t�\r\u0012'U�a,Co_�\u0005�*���a�4?w�/}\u0011����\u0018\u0011W\u0010ӖE\u0011��\f����֖tm6T*��\f\u000072\u0004��EW\u000b���B螌k�Y'�LkFX�i�����pJ\t�A�\r��\u0000\u0010��Ör�_�\u001f��9״�i��q�\u0006�)Đ/�\u0002���\u001c����S`��)4�;ݒV�$&�����>&�O�;+�\u0013�*+���.�H�6�)�˯�\u0007��<ꌎ(��څ�6�X�0�q\u0007z�>կ��|\u000bCU_{\u0017�ŋsm!\u000b5�\u0017�L�IG�K���d�!\u001f��\u0006�+e%���0h�\"��yV�i�\u001c-Ĭ�'���SHlˆ�mKGmz�*䵌!E�}0����Yg�C>Zݾ\u0000��dj�p�\u0019\u0015w�\u001fx4�\r��}U!����u�\u000f�z\"�@[��\u0000\rڃ`\u0005�S��4��\brO��fZU���_D#�t��ݣA���+7\u0018L\u0013�&ڈg�y!��4\u0017nnxg��\u0007�[��\u0019��m?�p\u001b�6Ă�#\u0002YT�a��yg\u001d\u0002���\u000fZ��9\u0007 �\u0002���\u0012�T�`����\u000f\u0018�[���͒v��\u000b�ʡ�\u000b�M:\u0015t*��6�%��U�0��������\rBZ��=��\u0019�r@q��rQ9\u0016��&���\u001f!�g\u0000\u0014��c\u000f��\u0018��/\\K{��\u0019\u001bk�\t\u001e���������T��Z#�N�@�=���\u001dS���ћ�\u0011[]Ip�@yH\r��-&1���XtL�Rwg�����/\u0005��70B\u0007\tӘ\u001d��.\t�]A�*\\~�W�FxpbJ���Oq���\u0015��14B��m^\u000b;��8����\u0011��d�\u0016\\���\u0010ן�P�^]1)��T��\u00134\u0016`}$�5�zPn1p#����;�~tI���\u0014��3\u001dڅ�2��>.t 㵄:\u000eS��2���\u0012���y{2���\u00158�@w��\u0004�\f�?\u0014v]���\u0013\u0010?$o�\u000e��˝\u0011�\u0014�Ӣ?t�?��`�\nrNzVš��‚�]|8H�{� T�=�|Q���������1�f�x^\u0007Li�\u0012q�q$��>�\tK��mr��AM�\u000e\u0010���#��\u001c��=\u001f{�\n��Y�����aQ�E�ȃ\u0010Rӛ\u000f_I\u0007XD��oTՔ�2�\u001a����\u0017�h���{\u0019p-��\tߺ��PM\b�\n��7��B��`)j�u1\u001f���~rv\u0017Z�E4mb��c3�o%�U���K*C�\b��/��\u00069�%��Y������Z�-�ū�7�P\u001e�\u0016�l\u0003Ǎ�:��NG��P�W=\u0012��ު\u0018�l�\u0005s\u0014�μ�¢q\u001c��;a�l\\-jq�H_�4[�W��2�م��4���\u0001��D\u0018�Xct#�����P��\fi���H��\u0012H��\"+�갈J�`‚E`x��&��J}\fH�{S�\u0011l��N��d���Z��^��LN\u000b�\nY�ʞ�ރ��\u0003�\t>\u0002��v¯�<]\u001c����AT�\u000e$��.u\u001c��Z蜊�O'\u00026��I����]/�\u001f�\u00025���r.\u0018�y\nz �V�O��\t�7�\u0010M_��\u0011Y��F�\u0001,7\\E��x�I�k�KJ�\u000fKE�\u000eD\t�M_�p;g�\u0014\u0015�/t�\u0001u(\u000bT�6�����9���K�'D�hZ��„��N����\u000f`�ؙ(���޸��#$9�X����*E*t|ϱ��)���2�eI&�\u000b`@y��/O���q�\b��*\u0015�\u0014ڴ\u0012��&!�4DYX!\u0019*t�\u0005��`�\r����f�?0�Q�0\u000b���\u0015��\u0017�Jg�'�_\u0003\\�ca޴���Aw��$*�V�A���&\f�\u0003�*��\nzZTvJ�{��\u0006 ��2�[����R�7F\u001d�ѵ���'�|�9Wo\tp�:#���-��\u0019L|gş\t�A��\u000e8���\u001b���,-Y��\f\fM��p\u0014`�5��,�\u0006\u000f�\tg]�\u0013HS%�Z.�uOi\u0007��S)\u000f\u001b $�DT6bC�`I�\u0011�\u0003�\u0004Ʒ d5l��\\(\u001c�\u001a\u0005�Ţ\u0006�7�H��f%R}�b��CW(Σ\u001742��{Z��t�\"0\u0011��-���F��D�\u00124�K\u000b�\n���Qբ\n�|�\fS���b\u0015{�\u0016�����}j�E�^ngm�\u001aE3y>\u0010X��D��X�\u0005���ۿ���-߂V��\u0015Uk�0\u0002\u0015�\u0005��ie�o�\u0011@�t���p�gƪ\r\u0007i}�M�$�Ȭ�­\b�{(u�\u001a\u00151e��߼�\u0000 W�w�bwE\u0010�������D?�c)�J�$�U\u001f\u000f2�5\u001e���;h�1�2�~�\u0015�[�K<�'����r\u0011��\t�M����(a�t�\u0018\r��$����j��Tr\b\u0004\u0000�\u000fn�5\u0003\u000b4{�\u001c\u0017\u0000�b��\u000b���\u001d\f\n\u0017\u0013ȁ� ���\b���F����U\u0005�rt��A�\nzN\u001b�\u000e����P�\f퀹�(�<�1�A�\u0002�?e�����+�\u0019�\u001c\t|?\u001a\u0003\u0002�X�8@\b�V�$a0�T\u0004�U�F\u001e�rN!�f\fɓ��9�t�e�9��;k4\u0014�\u0000�����p���\t�Ax�\u000eL���\u0002�d�J�2�\\���(��Y31\u0013�'\u000f���-X�m.�1��Zq��t\\�A@Z�\u00149I\u0012\u0018\u001d&湼�Y\u00133M�\"��'�>�\u0006Z�z����Y�ܩ@\u0019\u000fi�[��Ȣ\u0006�\u001a\u0003O��sFǗ\u0012\\�t�g\"7�$\u001e��ZR%���a\u0011�>����-\t�2�j.�._8�\f��dO=�7\u0012Es\u0012J�vƷ}�\u0014�8X��N�ɲ��\u0010���<�+�BLx0I\u0003�\b\u0011�t��0���bס\t�7�l��y��6�s�\u0003����@y��\u000e�y��T?ב a��G�A�\u0013\f������5h0&��6$'�~W|�[�9����\u000e\u0001XR�Ը3�)�_�jK\u0006̊\bE\u0017�Hm3V��\r�\u000b\u001fc��w|���`�M���� }e9��3�\u001bsQ�M���Ge\u0002��<�9��\u0002\u0014t\u0007���u\u0014y�&V\n\u0019 ��g���qO��\u001d��h�E�A99j^��Ag�\u000e����b*,�[$+ϩ\u0004���\u001f\u0003\u000e�W�s9��j�K\u0012գا���\u0003;=f\u001a0aS6{������,�xI�M���$VN�Ջ.���\u001cQ��p$��\u0018�Tt\"\r,E1���q?��ǜ\u0011|��`�C��\u0012\u0001�e�%L}\u0010���>�u��{H>��[77����i�ئ�\u001e�G㰌ˊR��D����\b\u0013i3�,��Cm%(\u0018ܠ7`\\|;\u0000�C���91<ܣ�uI��� +�s%`�I�g~��vGW�Ǒ�*^�to�f�\u001aW֌����\"&'��.�&���ʠ���+�|�77[�V�\f�g'��E�:�V˛��u�\\\u0013\u001c�F�7]��|\n��\u001fA\u000f�� �m�\u001b󊣪��A�\u000e����\u0005�W�c�ɀe�q�,\u0019�\u0012�$8���\u0003�ɧ�w��C�yf=���\u0011�{W�b�_�ք���ɕ\u000e�/�v�<�\u0017��\f�皮˨;\u0002&5���q\"�H�\u000e�O�\u001a��GK��7ӝ��\u0002�\u001a8�.|��9�\u0011Du�J�cG:�QrL�#\"���\u0018�����vg�\u0006��\u0012�\u0002���Nخ\u000e��\rlj���/�����\u001e\u000epM�V5���\u0017\u0017�턒�\u0006\u0007��\u0016C�4���\u0019��m�o�2rӄ/�\\܅�fc@��̀����\u001e۩�u�>�\u000b�����w$�)�ܺ�5JJ�Î�G.��3d\u001bҊ+\u0011��A�<\u0000k��M޵\u0018���\t�l0�\f���QI��73ja7E�����\u001f\u000em�,\u0003G\u0006dq�#�o\u000f�)\u0002'a��E.��װa�VT���|���\u0005A�\u0002\u000fVv�\u0006c�xl\"H\u000b��H]�|@\u00105\u0006��B\u0005�\u000e�����w�s*,d\f{Q\u001bo\u001cV��~�>�_\u0013�y��\u001c��ƚD�lτ\u0010Ι��������\u001aA�U�I\u0016\u0006��F��� �ݸ�ϧ��r��djtP��b`Ȗ�\u0019�\u00023���[A!�\u0016T�J��Ų�V\u001f�\n����\u000e���#���yӇ\u0005f�K\u001d�f\u001e\u001b���?�v�}��R�ܢt�ʍ!���r\u0019(��G�mZ���xH����9v�G��R]�(Z���w�t%�K}��?�~�'�1s\u0017�@����H��B�gW\u0013��9(;��\"T7~rZ�j��v\u000b�\r#0��:�+?m�p\u001a�ˀ�\u001f�4�i��0�U\u001f�E\u000e�{x�vA\u0016L�g�B\u0017,��ꨓB\\3��\u0002\u000eOuUN\u0006�.\u0002�x\u0018�p\u0001�F�+s��\"# 6�j�S��z �P`�!\u001f2�J\u001b�G��!�e��0�9\u001b�͍�x�\b\u000e)�\t*\u0007^\u0018���ʜ\u001b����\u0017�r���D\\\u0005�K�V�sF��l�q\b��\u001e\u0000�!R6\u0006̿�~��b�+oP2H�ʃ\u000b�Kq�0�az\\&X�\n[�O=$�t/0�u�\u0003@���9Ӭ�\u00130�\u000e��S�g������;��(y.\u0007��\u0010�\u0007����\u0011\u0017�\u0016�IP�׿�\u0015\u0000�ƣAJ�\u000eĀ��\u000b�$YG�)�ޓ/\u0000\u0002q���G�)\u001b�ҁ��\rأ��>�m[��߃��?�$������j\u000b\u0017]?ϝF\\\u000e�\u001a�^��\u0018��Gg[���^\u001eC���u8�\u0007��C��P\u001b榦SwY7s(�aW�6A\b�K��!� \u0012��t���S^h=@\u0019��\u000e\u0016��\u0016��� ���#g�j��?���_(\"�\u0017���\u0010�{�\u0007�N2ٳ�-!z�L�s'�\t���{P�\f\f�o T����h�\u001cO�<�\u0018ʑ����j�^�bfY\u00130�.�)�r�5*\u0014\u0017甏Rg�O����\u0012�\u0016\t�)�����F\u0012\u00150�\u0002K$!sWG�Y�t��\u000b��\u0006�k�\u001fD�8�KR\u00045�\u0004�e\"�\u000b\n*�i�������$T�\u0001\u0018\u0001\u001aC�?�-���A��\u000e؀�}b��\"�k\u0002\u0004!}���\u001d4*Y2=�856�ܑ�\u0012�e�����\u0004���U'��*��-�'%5k�s<��ij3\f�W->8����\"\n�2���\"�o�A\r�(�����\u001di��tF�%�l�&z!��E\u0001�\u0004�s��VvH�O��#Ӧ\u001bqL�\u0002\r\"v�A��q�W�\t=���\u0014��J��\u0000\f�[\u0015{��\u0011\u001fk\u0000yI�KE8�|iw�!C�$�_�i*���ٙW\u0012\u0018��o�l�^\u0013\u001f��wo�;�j#�pZ:K�5�\u000b�|�7\u0011�u�(.A�\b��\u0006r�����8�q�\u0001�3\t\u0001aTՕ�J/[\\��ɾ\u0010�%�\u001c��%�����\u0002 �\u0014 ��-����nk�b�+x�)*)kn\u000e_���%�?�]h�,##5@���m�p�F\"�\u000f��f�_�ԯ_1�#SH�2ܹ!cBZt�֘�h%��\u000f=%���n�?�z��}n�\"#;\t\u001dG�&ݔ�~E�>Q��A:�\u000e��L˺ٹd�̚%Z_\u0016t�f�I�XꦱKU,��|��ި�xy\t߲�[W�N\nj��o�pJ�\u001e%֣\u000e�������4\u0000�#Z��\\����X��V��^�\u001cOؼ��0�d�\u0019�Q9��\u000e\u001b[��+�\u0005��~�b2���\u000b�7�g��B�{/C�.��d3���g�F��\u001fn�\u0004D\u0015��O������|�(��3x\u001f�}�IY\u0017qN\u001c1r\u0003P��R�m�Vh\u0015V�?ZN�U%F��9���9�];Y�������-Q0\tl~\fS�ю��\r>�md�A�\u0003���\u0015��4���`QR�4��Q��N�.����\u001e[���9]�l��~jG�\u0001�_Ȍ��w�fۑ-n�kd1�L\t�A.�\u000f\u0000��X�-n\u0012�\u0001��\u001a5t�a�Y/<ナ;(֓\t}&\u0019j�\u0018\u0014x.�綠KV�?����\u0002R<�7=�V\u0000B�=t�\u0005X��o^��������\u0000\u0013�u�o���t7\u0018\r\u0019�R��\u0005�ʳ��J*$�lnG�п[~�Ǫ\u0016\u001b\u001d��������\u0011�fbwL�R9�U\u0003��I�y�G\u0017q�!\u0014@\u0016�b�U�(�l����\u0000�C�Rf�6�qI\u0017�G�\u0005=Wdd,Q���?ʝ�NO\u0010�{�u� ���G-,<3F�;�\u0017%Y\u0010@v\u0012%���Wf�Q��޷�%��5��͵�[\u0017@U$�x�J��j�\u0019�nj\u001b�\u000e�0΂\u0011��^��v�k�e�@�KtCU>��\u0002n6�A\u0019�\u000f\u0014��L���_��*�$���N�\u000b��#^+����4%��S\u0000���W�@��\tq�ʅ�(�j�O�C�\u0006����)�Z\u0011���(\u0010�`����M�\u001b��x����WG��p�,\u0003�r�D���ͮP~�E j8�&�8Jy�e�!NiA\u0010��֭ph��\u0007��\u000b<�\u0006\u0007L_�?���8}�\u0018�g��(�R��\u001b\u0007L�(\\q�����~\u0006\n���h�mN��b\u0007G\u0013$HUS\u0019jq0\u0010�\rS��ƒ�\u0007���\u0010�&��2\u000fVR�Z���\u000b��]���Mw�\u00137;\t�pfVވ�\u001c�8ݥ���)4\u0014\\ �\u0012�\u0013������iTz^H��n�A,�\u000f(��L��V\u001f_i�s_2Kء-+<���,\tL?S�4�\u001a!��<�3��R\u0006GX@t\u0013���F�?\u0015�Ֆ9X��\u0012\\<7�\u0015��m6ņ2HK�i��^4\u001e\u000b5�M\u001b�OG�\u0019�y��M���y��+���β����\u001ftT�B\u0013W��`^^�\u000f���A��m�t�0�Tz��\u000e�\u001c�7\u0000�����|]�4��\u0017-Jo��*�#\t����G�z�\u0012Ѥ���\u001c!id�C���NPϦ6\u0018X�A�\u001c#~�f���&�@�ҵR�`''5�WjX\u0017�:�ۂ��w\b��z�����sz��\u00126��\tWd�����PE�2���\u0015\u001b��*;����\u001d\u0019lF1�y� ����A,�\u000f<���mn�6->G_�D�Vs&u4�Ǥs�(n����k�D��+\u0003�?�-vi1��\u0007�wG�0�LKB��s\u0003Y};��v.�Yl���R�&�Mui��3�S\u0018��V9=\u0001f��\u0007�\t��gM3�\b\u0005Q�%ca��\u0011�\n����ʲ屔���t�ϋ[\\\u001c�\u0012t>*dY�V����\u0014g6\u0011�!�8��т!\u0006\u00076`з\b73l�H�\b�ʇ��-���g�Ȫn\u00012ڲU~�,������6�\u0002ݟ֮D3�%�{\u0005'4��E\rQG\u0003n�/G��~�w���#�\n^U�v�\b�nK\r�\u001bw�u��t���\u001e �ׂ\u0005�V�k��)`�����tk(����%�\u0007\u001d!`r�}>h�;|R8C�,\u0003\u000b��\u0000\u0015ǘ�s��\u000bk&\n�A.�\u000fd���br\\)�\u001d�Y�\t���+j��7��@{���r6�i�?\u0017;\u0004�\n��;�0\u001a,��Ю��Z�Ӧ�E���\\�lkbM5ˆ���\u0013��_�y��c�f2��\u001fTH�\u0005��XN�^�qW瀛ڟ\u0011a�i{\u001a\u001c6��9u�G�\u001f��B��4�*�V̍F�\u000b�e�\u0004\u001e�\f$\u0011QP\u0012\u0006O_�\"\f\b��bcx\u001b7�in�\u001cN�\r`;��=N0a��OQ���U\f�����,d�[7���&�M�i��T�x{���^�C�\r����\".���x�'�~X�o4Dj������|�\b\u0018 �v0U��HF�P��\u0002_�+�ע\u0005���0mw@\rO2\u0000&�@J�\u001e���ܙ\u001bKj\t�Aa�\u000fx���c/�{���\f3\u0002։���q�Dk�+�[�79,/^�~�[�t�w����`�\u000b>�\u0002At\u0011Y�?�M�\u0018�'?�.*���漹���\t�\u0015�@\\\u000b1�U��o�F�l�Dc �}�=\r\u0016&5冪�\u0015�/��t\u0003p\u0003-;,�M���E\"�\f�,\u0005�\u001f_C�����Xݩ��̦�IN~��J\u0018�\u0005�����ǹ\n�<�H�r��X\u0004R�\r�,\u001dU�ƺ�\u001aV0�?�S\u0000����0A|��:\u001b�9�҉W�sI�7Y�$`G�݂�y<���\r�Z%�\u0001�\u0003����2��K�W/�Tr��^\u0011�f�\\���,w�6\u0006\t�AE�\u000f����\u001f\u0017�S��v4\u0006���'\u0015�m�v\u0006^��\u0012��&lO�3��\u0015�����\u0003,?*��\u0012��I.�\u0003�˅\u0015\r�k�ǩ\u0001\u0015�q��d\u0002n߁WZ�30��Y�at\u001e\u0013\"4�R\"H����z��\u0003?��~\"�E\u0002\u0015�v�&�Ͼ(}{\u001f<�3%B�Xw��C\u001c\u000f�r\u001eaKfD��Ȇ;nJ�|��\u0005�W�\u0013\u0004\u001d�m\u001a�~����n1���)]�����\u001et�\u0017W�T�[{������\u0013�<\\�Eqbe�.�m��\u0019��8p�\u0011`��aP����K]͓\u0006�.�\u001a@�*���\u0011 &��Q�����\u0014��\r�}W�v0�\u0005��\u0006~�y\u001d���\u0007�8�\u000f�˃��K�wU���~\n��\u0004�)�:��\u0003\u001c�l�2��AP�\u000f������\u001cAJ�޸�~�Zi�C�e%\u0007�x}Mxvd�M)!�\u0005�8'H�1i�!N�\u001fj�dj\n�\u0001��\u0006�\u00187Te{\u0014A.�w1`RR����SVu#L�\b4(�T7\u0017\u0019��\u0016����6��6z��#E�z^�y\t�������?\u001b�\u001fL�{P\r\u001c\r�3n����,�Hj�!����l\u001f�\u0019\n�DNJ\u0011\u00160\r`��I\u0015;��������겋W\u0003����!5n�\\�l�\u001aM(��&�\u0011�]���V�Du�=\u0003T��IJTGQ�H�\u001a��G\u001b������S��d�Z2�\u001d�\u000e�%~�\\\u0015��}0��*zu\u001b�`\u0006����MS�å_\u0010�2e�&�9�/���$������\u0007A�3��\\f$��w���4x���-\"��koy��s�˄Z\u0016��AY�\u000f����#��:�b��_·�T�GbC_�־��j4�i�\u001c�I\\\u0018���LU\u0005�%�_w�\u001f\u0001���o@�\u0016��gSS�Ѕ@�5�\u0018\r\u0011�\u0001�\"�7Cb�5�\u0012\u0003\u0006L���}$O̺\u0007����c+Y zp�e\u0019���O��3�`�����:�=&�+\u0011J\u0010Yd��N>�]�3� �.\u0013\u0004�\u0016��\u001a�4>�+��٦\u0014N�o\fyD�V[C\u001d��\u001b��0�E�(�n��\u000f��\u000e�q�Ğ~\u000b�\u001bp�\u0010J��Ao�\u001eK\u0007'5�\r*\u0019ܩ\txf��AW�\u000fȀ�� 9�\".��s.�\u001d�a)\u000f�(C\u0012��>�lx���A_��*Ӟ�\b���}S�1ڇ�8@��M�݋\u001dZ�N\u001e�S�ͷ\u0001\u0004^�b��M2�L�S��й�J4��_��+k�\u000f�S\u0014��7��7���8�\u0006\u0001\u001b�\u0011z�כMr\u001f��;\u0007b�\u001c�k<Ը���C&5���^RM\u000b�]W�b�m2oo0����S\u0016�`:\"`�i̟8r&�V\u0000#K\"�s\u0001\u0010���p\u0013�Q[L�(�{�@S�������r���<\u0007*�& ��cW<�\u000e_p�E@�l!m\b�Ů�m��Ҵ!v��\u001f�\u001e��n\u0003A0@�|�yگr\u0004E\u0010�@z\u0018��qX!f�\u001ej�@\u0010�O����wIƍ��9�o\b��\u0003\u0002Dc>F=y?L!��4�\u0002@w*�R\u0013�۷���r��A��\u000f܀��bP��o\u0007,�\n��\\Y�~�\\3�q� v�]4~�6��?\u0002��F�w�:\r\u001f��G��\b�L��5ɛΫ�5\u0010W��v�\u0005\u0012;��\u001a�\u0015�{�/w9ζ�a\u0004\r$\u0012[\u0018�&����>�r���X���1\u001cƢ��\u0010~�TTSp0\u000e\f\u001fa\u001a�]#:�q�z\u0004䒞7�\u0017�9\u0005�VN�:���,pI�rrTݜ:�V�<��m�p���\"�y\u0016r��P\u0004h\u0004���4*���s�v\f�R��dG�Id�>`+��Z-Pc\u0016��:e}4�8�=��P�\u000b\\�]\u0016Gz�\u0001)��ފ�tFu;�\u0016b������.s���\u001f�\u0011ko�w�-W�\u0014C%\u0006k�P\u0013W�[\"Czr�\r�#��q©�\\N�E�\u0006e�\u0018c\u0013\n.�#�S���itO�\u001b��\u0002���u�`\u0007E�\u0011&�e8\u001a,����m\u0003\u001b�$�5�\u0012^����g\u000fy�x\f9kZ�rt�\u001f��\u001dv���\u001b\u0002\u0014^\u000eC�\u0003��l�ͽ\u0000-l\u0015��sj��ڌ\u0014lp��KA�\u001e��m��\r)*��AF�\u000f����!�&�\u000b�)\u0003��a\u000f� ir��O\u0014�������c%���'s�A��\u0013z��[\u001b\u001aPH�n�Em-\tu�\"\u0000]NA�+�&$]\u0005r��\u001d�ܻ��{�L�\u001d/K\u001b4��x\u0006-�2BB�\u0002\b}�@�I\u0003��p��\u0015I�\\`�ɞtw�)Z��=���}\u001b�6�\u0012\u0007�F,\u0004j9\u0007\u0001\n&��W�ɱ�\u0013y\fkWS\u0004�^O��~dQc(�iUQ�l�8\rd�í<�Ugn�C�sh����4�*B\\�\n�\u0018\u0006��e,/\f�oN�8�\u0018�+�`�>ǒ�^�o��u�\u000f��-\u0004%9m��dĤ\\87m@ ��\u0015\u00156�������!7=��N�j:7\t�gp�#��Q#�\t�ǯ ��om��)9Dd�\u0005+IL�0\u0018p�& \u0012��A?�\u0010\u0004���eq����vO\"�=$���\u0012yDI�m��&�b�@��`\"=�9��ئ��a\f�(��}8\u001e2�g7���L\u000b�\u001c�%�͝\u001a0=�&��Ii��\u0001A�g�K���\u0007�\u0000\u0002Dػ\u0003,�%�.\\��\u001d���U,�RU��g[\u0003��i\u001f!�J���4��U��\u0002������j�Ӝa5%�Zb%\u0014�A�<�{�`\u000b�\u0007b\u000f�d��0��\u001e\"�:��2��P0��\u0005澔\u0000��4A��\u000e\u0014z��MN&�L��ߊq�\u0010�&5>\u0006\u0016\u001e��\u001c�g�f�zh�\n����8���\"�kZ��\u001d��'O�\u001dn5C�yd�Qu��\f���8ZX�\u001a�Y�\u000e�N^c�h���Yɠ4!\u0016 ��\u0019\u0013�'#�2�\r�ޘ\n��AF�\u0010\u0018���f*i�\u0003`)�`\"�Y�G�Q��.�ޒgi\u001d��\r\r\b�t?x���b�o\u0018\u0018���\u000e�S���\u0003\f�\\�4!����[\u000fR�\u0016�\\|9�.b�!I^n��`m|<�\u001b2�%���JaDE�\u001bo�f:\u0000�R.I��οס'���\u000eT[\u0016P8�\u001a�;3d��9\u000b\u0006\nj3IY)�\bI&Z�|��\u001b����a�\u0015��@\u0001\u001dc5c\u0007\u0018�\u001b�F�}Љ��©�� \b\u000b�\"π�`\u001bO��=ef�o���h��X@\u0014\rR�\u0004?\f\u0010��\u0018��+�`w\u000e�:m���\u0006�G���*�n��Z��F�\u0018a=+\u0000t�\n?zy�^E�\u001e�\u001a#M�$ۑ���\u001b6��\u0018��ު��̀�\u000e��u8>\u0014��\u0016��Q�\u0016���n�Gc\u0000\u0019�\u0002��AS�\u0010,���&��c� ����\u0015����\t�B��0tW5��5dvM,��\u001f�\u0001�9oz�$�F7�%'\u0014.\u0004�%�iI\u0010�8\n\u000f�Ch}F\u0011\u0004���}\u0000Q�F.u�W\u0006!�9�(vU\u0007��\u0018�-������t�\u000b\u000e�g<:��p�\u001a'[$Bj�O�\u0018�\u0013�n@�(RR\u0013\"52k��\u001a�\u0019C\u0013Tk�+<\u0012���lx@����q�f\u0002\u0015��4�\u0011C�u�]�>\\~=ŝ\u0006~��r�w�H����C\u001a��\u0017D+~�P;�\nD��\u0018s\u001a\u001f/�����ID�xj*�e�+\u001db\u0016^\u0010w/\u001e\n�ȩ�K�֙�J!j;9:���\t�)d)��f���ЄHw\u0012�\n���P��1^0@p\u001e�\u0010Z��s9V����e�=�O��J\u001f��\u0003#D/ACS�r[!.�k҄�\n�AK�\u0010@���et�Ի��󩸞�\u00139\u001duZ\n�\u0007x\u000f\u000ei\u0016j\u0004H1���e�����X�ηuT�a�I�M >�x��\f�}�\u0019�q� ��V�XV\u001e��V�E����\u0012�j�8�\u000e^6iT��\\�ǜr�%���\u0010�\u0012ӆ6�U���A��\u0001y6��H�T�y\t>ä�NS�\u000b�%���p!s\f�Uς�\u0002��X���f�v�ku\u001f���5Z\u0000�\r��NZ�*��u|X��:&�a\u0002��~\fvΉ�C�=��ɶ�i>)����\u0011%�ln//�\n��\u0007b�\u0015z��qjz\u0016n\u000fڗl�\u001c5����9р�%r\u001a_�`\u000e\u0015�JN%�\u0017�\b�i�Ì�Uf��:���Bޚ�>^��\b�(��R��\u0001�A���#'�\u0007B\u0010\u001a)\n��AR�\u0010T����.�:�����ʝ�֎��\"/�K��聈�[�$��ql�8�3f%�L��\u0002����\u001a4�5)H 5���\u0001\u001d�.�\b��4^��F9��.2�\u0015��Q@�g�!�6�ƅf�G+,\u001e��\u001b�9w>\u000b��\u001c[��&t)��`���\b��\u000f�UV\u001b$��2��!�=���\nK�SZ��/5\u0017�)�\u0012�\u0011�扥\u001c�*{Ă�\r�4�w�V�\f��L:G�.���ևQ:C\b�f)ff��k\u001f�EDD���T/P���n6ѯ\b��\\\u0013�\u001a����µ����t)vѶ\u0018\u0015\u0001�՜m�#a�#��<�T���T�\bQ\f��yV\u0019]�B���F��x:��<���� �[�����\u001aF\u0005m1V��\n�s�\u000fF`\u001b�\u000e��[r}���A]�\u0010h�������S�A[R��ռ��O\u000b�\u001c�}����M��Q\u0015$�/�\u0018w\n^{wl���WVf�\u0003yi��\u0014N���`)��P����\u0000�Q�%d�\u0011�3y�f��U���\u001a3�\u0006�Mi�Q��ª�z;��\t��܂��\u0006w���c\u000f�Y\u0019�����z]�K���%x�Y�7q���ĹO�\u0001�t[$u.�_��{�7�,.�&�\u0002&�����\rK;s�\u001fv�\u0012XG\u0019))��*32�\u0004��I�E�%�,#H(�A�������Y\u00167�\u001cJp|���ȧ������k��8��#z\b2�-t�H\u001d4�-]\"J\u0005�z�]�\u000bBk�$n`���6�\\Sl�\\\u0004��c��������\u0016Gp9�\u001a2U0�x��{��5�V�z��@�3�!!�\u0005X=����Y��AY�\u0010|���\u0007;�@\u0006\u0006�&w\u0001\u0007�\u000f\u0015��\u0018�%F��Xb��w�\u000bO�\u0015��k56��s\u000bk/�^\u0013�e֝�늚�D�,�zy����9\u0010\u000b�z�Y\u0019\u000b\b�\u001fA���=\u0014\u0006��B9V����\u0018��qC��L�D�\u0004�������2�1��{A�I�ih�Q��Ì\u0019�6S��\u001d�vf+�����+���\u0006΄�<�_��\u00011͂�S\u001f \u0003\u001e�j�F����\u0016\u0007� \u001e��d��\r\"�ٕ�Z��\u0002��\u0001i\u00138�2\u0013�\u0006oV�\u0012��@��yo�9\u0002\u0000��\u0007@��3�:?\u0003r\n�\u0015��\u000f�9F;��I\u0006�8\u0004��t$^~]q;���Qw-�|�5�a��b���\u00162�Ȓ�2�\u000b8�Nt3L\u001aL�D[����;E��{R�{{@�K���RKV�\u001b����o�Hk�\u0006��A_�\u0010����.\u000f�Y�$J��\u000b����\u0001��@\f6b��B��;3w��\u0005F�\u000f\f���\n0_��k\u0005\n*�;ɢZ�Ԭ���F�_�,�a�6���1Nw�n>���\u001e�D\u0006`�Q�\u000b�;S�W�犢f�\u001d4>>\u000bB\u001d�%ٸ�T�\u001d���s�Ro\u001c?4݆5�\u0002'Sh���~zl�\u0006�ښk\u0014��\u0006�Oe�U%�'H�B�>�ě�`��\n}Ӷ\u000b_�#�?A{%I��5;�%8p\u000f\u0016����\b��X�\u0000\u0002A�\u0001Đ4}%�a�[\u000f��*��7l`f�\u000b\u0005@T�r@��Ӓ\u0016Ii\u0010n�ű}v��L�c+��\u0011\u0005�n�O���-��\u0018c\u0017�T�Z�X̝>�\u001d\u0000�iLug��Uc\u0003�YI������\u0013L�o$o[2�6���H��l�&�Kr��\u0000���}�\u0006��Af�\u0010����+4�����B\u0018!s�\u0002%��+�t0\u0016\"\u0018YP\f�\b\u000b.J얕����(\u001et\fVf�\u0011tV\u0011gFG��r\u0014\u0012Z�x�ȝ����0{��QȤ�ȫ��K�;\u000f/�|U��V�Ӭ��ƞ\u0002tT�V)����G�� C�[�\"�.�?$9�K�\u0012x���\u0015|��\u0018i�}�z��\"˴��`4ƉM��\u0016��!B0\u001b�\u0014�\u0004�\u001d�V�O_ﶿ�j#�\b\\��G�Ҟ�B‘���h��ӜNn��~���q$��_\u0006�u�\u0012�\u00139n�\u0015GBP`�a�?'\u0000���c�Âv��<��;�\u000f�b�2ߏ�]�jV7ͦ[���\u0017�W���\u0013�-�wG�ݱ�{��,gË�7�J ���r\u0004�c�kC�\u0003\u000b~e\u0014�sӦ�@j��Zv��^\u0015L�an�}�n륰�e4}��U�\b�AQ�\u0010����&�Ϟ�A�z�0���w\u0011�I]�\u001a.À��v�>�\u0004�{b�^�ą��\u0010�zd�jS�A�G9хԟ#���G_ն�\u000eL�)l��v{#4R\n�RW��\u000bb\u0006�\u0019\u0018���\t������\u0007\r 8\u0007��: \t��6����\u0004�̟e\n\u0003,)k��v�4��Yt1\\$��\u0017f\u0012f\u0000r-n��g�t�J�g���1�\u001dm��9�\u0000������\u000e��j�K\n��\u0002����H�?�X��.Vw���u��\u0001�\u001dMr����{� P)v���E�\u00009��-?� ��\u001f\u000bN\\�P��vi��A\u0019���}��w��\r�&��\u0018l�N�}��A� �\u001am\u001c���\u000ekA\u0000\u001eFvڍ\u0003��&ni\u001c\u0017s<�\u0004xȘ���\n\u0003\u0003@\u0012qj-�B6�\u0010̀�}b����l���#��]�LPs�,(�@�\u001e��`G�T\u000fB�P]�@?�I\u001e�P2�?��4P\f˨�wgO���\u0010.�\u0016kS�)f)�i�\f[)���>|��F\r��1�\n�/�y�Α�e9\u0011��<.��g�^+���`EV�dH�;M�\u000f\\\\�3\u0000����i)-ET��H6σ�\u0013�������\u000b8j���I3�h,\u0005�\u001a��}�e\"i~<��[{��>�cČ)�S~\u0000UTߦk��������,��h��Ǩ�q0Dq>��p\u000e)����샱�-�zP\u0013\u0002R\u0010fG�0n�\u0010KQ\u0017Y\u0018���\u0010v9\u001bF�%�\u0010[\fڣ<=�C\u000eNh�s#�П�����F�IK4�N/�P��E3\u0006$)���5q�\u0006DF�3A禙��C�b���Qf��{��\u0019�0��\u001e�뽳�\u0000\u0000�\u0017��ɾr�#�Z)3-��\b�����՗>��d;S�B�&?�����sȱ�{�1^�&\u0006�ZS��4p�{?�j1����̃2��\u001d\n9��vZr5���;Q�(�c�l�N�\"��#\u0011��~Atk/b1�;\u000bj����r�IQ�f�u�R�8�)Mf\\���3(�ΐ\u001f$\f\u0006�\u001b0z\u0014rQ�\u0013�dC�\u0019b����%�g*�Yy��+��`�J���$�\u000e�_l?��7�?�}�A+�\u0010���XЖ\u000f0�\"U�9\u000e\u0004.��qj\u0004\u001f�\bw�\u0015�n\u001f��\u0006�\u0002q�8��\u000b) �{���Δ\b�VI�\u001a\u0003W�D%��h!s,�/�МW�\u000b��ǐ�h\u0012��e����\u00032�� \b���:(�\u0005�M��wk�\u001df�0�\rf#��g}W_��V��6s�A�g��\b^���]��x����Q�����SL�%o\u0000��O\u0005Kᡝ#\u0003\u001e⯨6N)_���rHנ)��\u000eة�c\u000bص�Ɩa�\u000e\f7v�P�\")�����V\u0014�t��3˺�C���|�\u001f\u0007S�\u0015\u001eH!\u001e\u0015�į�\u001b���\u0016B\u0015\u000fW\t\u0018��XEV��C-�E��\r��Nܧ\u0007\u0001F�x�\u0000$n?���kR�A'�\u0010��X��P�5\u001cW(\t*F\u001d�����u�d[9��\u0019&��j���q��=B�]�@(�^�-�)�K\u0000�\u001btt�g��ğҏc�x�q>�\u001du*\u001c��k���!̃���&Q\"��\u0013����U�;,*�\u0006�+�\"�~\u000e�23�$bS%\\5M�}�9�#P\u0002G?�}��\u000f\u0005%s����\u0012;�!�X�n@2��\u0010P�T�!��6���r\u0011n\"��1ک�c��!\u0007\b\u0006�ݲ5�ïE��ir�D���=P������Ç\u0003\"%q�X0P�]..��2��oX�x\u0000m����ĭ���ᔏ\u001cM��\u0013\u001e\r�%\u0005�>x!�R�\u0007\u0018��4����\u0019i�&\u0007�f�A3�\u0011\b��X�-k�Oou��$\u0013Ϸ�[�\u000b�\u0002�\\w�{\\I�v�\"'ǺG�a�A�q>l��\u0011�9�\\��!�銴5�M�h)X��'\u0017��x%В��\u001dB��$�C�\u0005:\u0018�EQS��k-D%=����e�++(�\u0016\u0003\r��B��Y��1\u0000����ݼ\f\u0003/\u0014�_\u0014�~�3eӗ�����(\u0011W�T\u001b��\u0017-l\r�ۧ�<�h)��$�(����J\n�U��i0�\u0004ryݚ��W\u0004�[\rM\"���C\u000f��\u000fR�w�!�R\u00020eV\u0004\u0005>\u0018���\u0000�A&\\�H�ZcR\u0006��\u001d�G�-2R�e�&C��\u0001>�}.O�\u0014\u0006��븘P5t�����e�^�٤\r\be����-�nB\bhre�/ؙh?%�Gt ��\u0006�ϰ(�*��AV�\u00110���l�[0R�:-�\u0011\u0001\u0013|�Uf�S�\bi�aN��\u0000\rv��c\u0003��F}@���L`��IOm[\u0017��\u0011}�Q���A���\f>�t\u0017\u0019\u0007�39\u0004��\u0003�$\u0014�q�`�쟷Tks�su\u001dA;�-�\u0018su�����ݘ7\u001dhXe#T\u001c~\u0010��p�!Y\u001a@Ɨ��h*\u001eM¡\t\u001d�&>�\u0010B�\u001cּY��7��\u0001\u0013\u001ch~\u001aԌ�L�D\u0005�� ��Ⱦ��WA�K�6�`+��Ӓ\\O�:����W#p��̌:\u0004-�Gԩ\u0007\u001c�l,\u0006\u0012����2\u0010x3\n�vY`:��v��\r���\u0015\u000b�0�k\u0006� Km\u000b�\n�ϙp���\u0017+ͪ�\u0019:9����\u0019�8տH�]�˽vt�O-G𾀇8\u0005�\u0007� ��0�����'�#�\"\\��U���8L˿���AI�\u0011D��L�\\�\u001c*&�Rd3��]�a0�\u00016[Ti�\u0005�\u00110\u00119�\u001a\u001eC�NlJQ[8#�.:K���8\u000f��\"XQ�/��7oB\b\b`�&Tr�g�D�S$�C�&I#\b�=�6\u0015Y͋��LA�z\u000f�bȻ\\�(���������|�}H$�!I:\u001d�5=�����\u001azxx}+�b�*�5�5\u0013\u0001����m�_�qX�B\u0006����\u0015\t\u00197i�we�0��l�\u0014�\f�3��z��Vl\u001bOu饵h\u001a�7���\u0018.�\"��9&R�a����0�\u0018J�P?D!m�fq\u0007��LO\u0002���`���Բ\b\n�\u00178�\n��K�i\u0010���\u0014�*�q\u001bO�|k:��s*�a�\u0001\u0006=jz�Q\u0012�y\u000f�K\u0006a\t��E��r�ܠ��m�\u001e�=>��]���A;�\u0011X���l}\\\u0001\u0012M�vR�72�\u0014,�}+�22GG\u001f7���y�\u001fx�h5�6Z�\f-I�x��ٞ]\u0016paG�y�˶n���� C�������`��~�Ŧ\r\u001f�^=?������\u000e�U\b��\u000f\u001e\"�\u0015���\u0005fW��\u0015~��a5��aI����(�\u0003/�˚�7\u001a�x�\n�w�\u00126�Ởx�Q��k\u0005�\u0016a�\u0018\u000e0��}W�RYuɞ\u001b�\u0005�E�����y�\n���f��/\u0017��a̺\u0015�^'�\u0013�VAZI$�<7噴�W�i��\u0003\u000bc�C��\u0019l��\u0000�GG�\u0014�o�ג#u&-�l!\u0018���*�LbM�})!\u001b�\u001eXob8��\u0004��\u001f;L�ӈK�`-�R\u0016�D\u0000���>+�hҽkU��ڍ�AA�\u0011l���s�Q'�����Խ�0/Z\u0003�Z��\r\t\n�\"�\u0001v�i���q\\�Sq\u001f\u0019 @�\u000f\u000b�q4�\u0013\"Ai�o�M��g嗸V1���$Q?�b�k�=�\"3\u000fﮁdP98�\u001e\f\\�`�fU�o$��x��ג�s\f�8r�\u00156�D\u0019�x�2A�\u0010c-���\u0017�k&V�au�I��Y[\\X�\u0004\u0004s��B�p�k�d��G\u0005`1�SßUO֎̺�;\u0001�g�;�[\"\u0014���2_�ڰ� \u0004am�F�3@���|#\u000fUdz�m|��\u00109k��a\u0016����8hU5��\u0003���M=\u0010vZ�>��3W�\u0015[���u�\b,�]a���Ƌx���h�\u001b��:�е��=%\u0019�;+��@m��{R��O��W\t�\u0019,��\r�AY�\u0011����q{�Z��_Џ�\f\\]�٦e�Z�C\u0004\u001f�\u000e��\u0000p��/\u0006.����\f�\u0005\u0012�\f\u0017z����x��&�\u000f� \\WA~\b���x︻\fWU�ħ}�\u0006\u0005:��VE�6��=]�|���\u0006r*tE\u0005;n����i��(\f��=B\u0018P/n^\u0019�0��1d.*-���O��~\u0003N\u0001����Ě\u000fԹ\u000e \u0013-�\u001d�5ygr��g���&�\u0007�D�>0���[�$�')e��\u00168�9�5z�lBܐ1\u0003\u000f\fi/��MK*�j�9Z\r9�ݝ�ɺ|���\u0006�l�d�E�\u0006����e� \b���CċE/�D�\u001d�йC�G�8�� ���\u0001�\u001c�����o\"��%�^�,zゴ��\b�]�^�L�\u0004�Sw�l\u0015�+��\u000bm�܈����6!������\f�AH�\u0011����p�=�����hb[M�ӻ\t����lTa��0>�)�����\u000f�3��=R�!xT@9�y���\u0001��M1�$Vm�pcz�X�6�0�nڿ'����\u001b��'���'�B���w�e���E�J��\u0000�S^3�)F3xF\u001bP�g!X���\u0000�\u0005��d��5{\u0002�ounj硶�o\u0003�\u001d1Id\u001f���\u0016��r�4���\u0016�h骱@�]:\n\b\u001bx�\u00035�����#ςC]\u0010�y�{��|\u000b��.\u001am�z�<#�\u0019;Jd�:�v�-S\u0005��f�\n!pr��ə�\n�\b`��H1\u0000��y���\t�F��\fcrtm��h�Ō���\u0017�-�\u0000�\u0000R�������\u001c�Ò\u0001��%\u000f}h�G\u0001�R�;S�Lxn\u001c��NK\u001ex�\u000b�AD�\u0011����d�i �X^�X$�NwEލ\u001f�\tt`\n��n�+C��kW �4{�4�ov?2\u001f���Z������+ͲN(<�������Rd��\b����L\f�x\u001f\\\u001b�q\n4�\u0003�7\u001c4q��N�Z�}�T�x6\u0015u���\u001du��C\t|`w�룊'8�د�\u0016!\fuFu�kQ�d�\u001f����D��0\u00037���~5�\b\u0000꩒��털��\u001677��L��ٻq���\u0016�Z.q���+-J���\u0003�����wM��>yq\u001c����M��'#-�EM���?\u0015�\u001bi� 5\\\f��4�V�NA�bp+h����~gL\u0006At�l�I2@ Y����_��4�����D�+��E\u00009\u001an�$݂y�iG<�\u000e�Ժ\u000b�Aҁ\u0011���.\u0010Ô��\u000fb��\u0006�r\u001af�/�^�E�\u00022�VQ\\4�`LX�ش���%�&���ш\u0016� 4\u0007-/\u0016պK\nUP1�~���\u000e���5 \u0007�Z���0��N���t7�\u0007b\"��9cJ1�-0�`y��[�Vr�됮�س�r�npыF��531�WE�\u0005����Ĉ�q!\u0015}�Sx��\u0013Q\f��*���Ч����f\u001c�\u0012\u0016��,cG\u00157+����g���Z'\u001d1���qv�kq��Nc-ɫ�'Y�c�\u001a��[�ؗ����o�e�\u001f�s8��\t4x?\"iP5���e�qO��\u001f\u0015�\t7\\�Y�+3�Kp�`�S��{\u0013W���?���1��M\u001eGv/��O�t\r\n���2�b��eu\u0002Ph���)����L�w�XȢj�����1W���s���\u0006�W[��tuǵMV��kvƊ����\f�\r���\u001bY\u001d~2��������]��\u0005�\f#�Iv�\u0002����—�k.c(�F\u0015����5����\u0010�����(^\\�l\u0011W}\u000bz��T{a�$���\u001bM���\u001dW�?:��?�A��\u0011Ѐ�߸Y��+\u000e�\roi��\u000f��\u001d�V\u0015C��,�P�K�jw'Y��#�)���g8\u0014ҏ��\t,hy\r����d��.^��)�2D�S��\u0001;�\u0007?����q⏌\u0000.��kFN�g\u0007mKnm�\u000f\u0004(M�EfrTx�V�F-e^lHA��Cw\n\u001f\u0015�RN8zq@���$�v��1����[�\r�QuWӘ'\u0019%ׇ��`�Lr\u001c}ir���\u0016\u0002�����\u001bz�-׆]7[*�\fBOhmy\n<�O_�\u000b�`3d�]��y\u0016z�יe*~�\u0019�%�q{\u000b[c@\u000e�\u000e\bH� В�IC��X��� �<��\u000b:\"�`P�n|k\u000b�5�\u0010aF�?h,ѯ���;�5٥[�w_1@|37\u0018>�\f��\u0004��\u0015\"(\u0012�\u001c��\f�16O��\u000e�~3!7k\u0007��F}�l�ck}kl,\n\u0018��w�\u0004���6s�#��Ɣ�n\\�%��:�y&TM���!d\u001f�����埒=��d�#C�5‰\\\u0005�_w@�-�!rdTs_��\u000e\u001f��Q�u�6ȹ�8k\u0000��$��U�R\u0010\u0017�k�\u000ew�g6v���\u0001b\u001eF�\u0000\u00116>[�U\t-$�z\u001e\u001c��T�U<�my\u001b!\u0005}$'2���R\bq\u0015�AP�\u0011��.V\u0001һ�Ev���ɴe���~�~��k�[��w�I8&�u̘@�����,\bl9sL���V��_����dFٵ�ѝ\u001d����_~�\u0017L��\u0016>Bu��uǍ�g\u0003\u001a��=\u0013�\u001d��!��h\n� \u0003��!ȹ�w�GY�\u0004b[$gu\u0007O���VJ� P\u0016&!\u0018\u001cT�1n|��\r�$\u000b�\u0016C�������J��\u0010��yv\u000f-�%i��Qƫ['����R�\u00029\u001e\u0005\u0013-J��\u001f\u0015\u0012\u0005�ޤ��!��`o���[�>�\u000f<���\u001d�\u0013R@q3�\u00148'�䴤�\u0019�4\u0014(\u000f�8���\r%Sg�\u0002N��U6�b,\u0006-\u0002�\u0016\u0006��`��������T�r���D\u0015\u001c \"�\n�`��+\u001d��O,�\u000bE�I؛S��\\\n�\u0014�8j����AI�\u0011���X\u0014\fL{�V*��\u001c���Em\u0015L 9�Y\u0018��U�}���_ڱw}�O)�(QZQ���\r!�LɾA�<�]\u0017q���=,�[th�\u0001X�\u0005�W;�m��n�Ҋ�A����L\\�p�e��\u001bN�\\��Y�Y�d���Ε��\fG$B�&\u0011㆚l���N&2P��\u0003V�\u001bd:ieSz\"m\u0016\u0006\u0000����\r��?hH?�B\u0013�^�%\u0010��\u0000\n�4�U�U��'0\fEu Z�\u001c.�D7(�şVn�iO*\u000f�\\��6�7^yV�\u001cju�0֭��a�\u001c\u0002^��\u0000�\u000e�ֳy�\u0019x�7���l�X�pt�\r\u0005\u0015��vP\u0003�f�e�J�\"�S\\$\u000f�g�P\u00179���\\�K%)q$N9\"\u000b���SF��aP�+��-O\bឩA\u000biy�A:�\u0012\f��۷n<=��rq�&�����n\b�zm'���ƾ��1�%O����\u0001�\u0007�ɰ���mӳ[OW�\u0011\rh�ݗE�����XZ���6)�]5��~�y�l��e\u001e\u000e��ϯ/�˛\\�\u0014��i_��\u0016��8|�)��fO*d\u0013LY�^�\u000fiR�-Sg\u0013��~$wЗu*1��T����R�\u0017ɋ��PͺC\u0002��GL�)zo��\u0002�R�k%S�K�\u001b�%�\\�b{yl��\\��W��/���\u0010�h��a�^�[��U&\u0003����]���O\u0005�+\u0014\u000b{\u0017Zz��=w�1�L��H%P\u0012���'=�?o��l��\u0004\u0007�~��\u000bH�\u0019[�n����#�c�\u001e�0�]��K/��2&�k�z\u001cloj�qO�\u001bq{&*��\u0019���&'4\fv�A�\u001d\u0014:&~�*\u0010$�\u001b��\u0007#��?����\"�E��'�O�_p/������p�h�z��\u001a]Z��'��o�^œ\u0000\t�m&�LwƦP�L\rS�p�A�ӞH�\u000e��\u0001�\u001e�Y�M�E} �;�}\u0016�\t\\��Ϻ�|&6u��\u0015\u001e�\u0000\u0001\u0003*lu\u0002��&+\n\u00059$R\"�AH�\u00124��L�e4\u0015�\u0005a\u00177\u0012D�����d�\u001d9\rv���isph�\f5Q\u0014���\f\u0016\u0004F�cڣE�P�Hi)-Y�O��9�\u0012Zz���u\u0003R\u0012Ը򔊗�]V��`���̽�� ?T)�V.��y�\u001b�:G�DG�L�|��_'t\u001c\u0016B\u0010\fuG�N2�$4\u000bM�;K\u0001HC!�h\u0017H\u0000$���os{q��\u0019��M�\u001aI�6�F��!\u0000\u0006�q����\u001d�\u001bs\u001c�N\u000bKPQ,kS��������m����Q{��26Wi��Xuu�\u0005\u001a�c\u000f~߿Yd�V��ܫO�t�vPƘn]㟭�\u0011�y\u0006�a͌R\r9���-u���B\u0000���\u0014�\u0006�\u0003R��I_�\u0000�\u0011l2�B\r6�\u001d\u0005\u0004\u000f��\\����\u0002II7\u0015R\u001a\u0011sݍ��AF�\u0012H���\f�\r��Kd��\u001b�oq��w��h\u0002�\u0010��K�hr�)�\u000bܼ�¨\u0001\u0007�&�[[�t��<$�(��1�՘k=xI��\u000f$x\u0013�g�:�A�\u0004\u001b�#�?�zK���dF��O/kM��\u001e1��Q��a��gc\u0017\u0003�;\u0014\u0016s�*���\u0003\u000f��+,�Jk,�ꯛ9ӥ�-�%'�@`��XY\"��\u0005\u00001)P�+�[�\u0006V�n�i`�f��]�\u001b�^v�Rg��!�K��Ȍp�E�Z�d�\"�� ��OA�kYٽ�\u0016�w�N69\u001c5w�A\u0007����߰u\u0019Kb��6y9\u0006ݚ^��\u0012�5ޡ��#��]?P���ԝ��d\u000eu\u0010\u0000K�\u0012�t{\tI���m�!�06\u000f���\u0014�3bI�\u001b��Qh��rg�(�a�A2�\u0012\\���\u0000M���\\;:��H����+|�����\u0014>�MNC�+xZ���\u0006�|���ȃ�\u0018��!��H‘U�\u001d��6G�\u0005�駨���\u0006M\u001a��J*\n׆N�\"�g\u001bF<\u0018\u0003D\u001f\rg�,����m�av�\u0018mD�]�@\u0000Ѹ@�ːz%>]!�\u0017�w]mT��\\�k-�sF7hA���;挖3&\u00113G��”�q�eBoR�H\u000e]#`����ꦦ>�\u0015�l.�C��o�*��Kp�&�{�w�1�=j��ђF�u��m���\u0006�K�߿�b�x\u0015\u0013\u0012\u0000��\u0006\u0007?E�آ��AP�(��]��a\u001c�3�;3��D�̈́�\u001a�eԇ^�\u000bG1݀D\u001d�\"O\\��\u001f��˔E�A%�\u0012p��X�a\u00159r�\ti5(t��F��~���v�|�\u001c_I�Qsc�=\u000b\u0005,�Ȣ�\u0013����0��C\u001c7&�-.C2&B�3]/0V�^I&\u001bV\u0018��\u0005�\\\u000b*�����\u0002\u0017|�ƀ%��SI��Q�(��,\u0004��ǵ��@:ض��]\u0005HtG�ԅ0�ӗb\u0011Rf\u0016\u001b��Á�B�\u001fވ�\u000e�PG�R^U���W~��_\ny��\u000b���\u0011����T\u0018\u0018��C|��\u0000��\u0003.��)4h�=�\u0004�����L�*b�Y�œ�'����Ђ�_)���\b����z��\f+�(��j\u0015\u0003J�\u0013\\l�y�)��Ι��\u0003~T<ߐn�LN�I�\u0005\u001a�������t7ݘ9YI�A,�\u0012���M��\f+����\u001f�g^2>���\"\u000e�\u0012���S\f��쳺��|k�CGq�,$p�q$��\u001f\u001d�F�d?r�\u0014���a�_\u0001�>Y>��\u0005u��\u0003d���V��\b\u0015���sr�\u0015}���[󴽗Nt���S�\u001b���s�C�\u001c�\n͂\u0004�\u001d+���+&vi1���\u0003�9�_�e�݀��\r�rQ�=\u0019��c_\u0017N\u0006��\u001c\u0014��;H��oL�\u001b�\u0006\u0006�����78�n*C�\u0006_��\u0001Q�Y+�+\u001cU�o\u0010;-*ޫ�i��(AC�v\u0012�#Й\u0013\t=��t���/�\b�WDZ�l\u00037�����a\u0019\u000eZ|�\r�\u0017��=o��\u0003����|���TOF-�z[�\u0005���$�A&�\u0012���1\u0011[�^�\u001c\\:d��\u0005\u0005�\u0019w�\u0019ș\n�B�_K=9�W���Y��N5nq��\u0019w�ؚļ�§ϻ�\u001f��`���\u0012���\u0015�%V�k1a�;'�.�7��B(�Џ�����J�\u0016�h9�L^@\u0000�X�\u0002ϥ�(U��UR\u001a��3�ݾ�#v�uF�3���\u0006�~B�Ep��~�@{޷��^}`g�)R\u001cq�[x����)\u0002?-\u0006�5H��^\u0010�FڑI���J�������fy��]~}�/~�9�T\u0000g���x���+�V�\u00045q)��kڢV�*ɻ\t�\u0012�N�ی�ce�|�\u0019���\u00045���ب3ml~\u0018\u0016aE�˿N�(�X��u�A!�\u0012���Je[�9\u0017\f\u001e2m�D�U\b\u0011����0�R����\u001b]\b\u0017�d(%\u0007�Υ8|���=��R��\u0001%(�OQ��$XB��l�9����=�Ɓ���\\$0\u001dn��\u001c~�8\u001c�.��j�Ǵ2.�ܨp\nݟ��\"�EK���lhщ� ��⓲�\u0005�ِ؉�KaNE�:�.�\u001b�8�O@��P��@z^��\u0012�\nS�˷�����ߍ+s�\u0015ir����W1\u001cn룴��\u0014F�{n\u0001�uD��\u0010��E\u0016e���:�\u0016�{���\u0004\u0012n\u001a�>&E`=�6u3\u001d&�˻g�\u001ane�!�ٟ����]z:��D\u001c��k\r�X�)/hkS\n3����a�AV�\u0012���{=v�����\u001bU��\\�f���}\u001dS�K���ȝb׸\u0010��s��M��l�3����|\u001e�h��%0�\u0005n\b\u0002e~�\u0013\u001f\n����F��\u0003�D�S�K�'(�\n�\u0013�y��}J\ff�]�i�g��tc\u00191v\u0012S�ʄ��A&�\u0016I��\u0005��,����f_��o�(J�2�\u0006S8�\u000e\tA��$.�۵��#\u001d��Q\u001f\"��\u001e�PPv>Rj�\u0013�\f��\u001a ��EY\ta�|\u0016�&ufw[��\u001b�ޯ씨I�9;o\u00175�X\u00103�����!�F�\u0004\u0004\u0014���>;�8EˎS�\u0017�#vI�m�L>�g��7`\r!�\u001d1��\u0014�Mh�U��9χ#��]�\u0005��䈸.D]hY\\\u001am؅�.OJи�\u001b�0��J�j�>\u001b\u00074�E\rƊ\u0001(�g}\u0007��W'��7ߣA\u001b�\u0012Ԁ�L�\u0010���\u001e�(}�\t\"�����d�\u0012��a�WE�\u0003�;ҏ{O�����'\u0015�^��Й�n�\\\t��-n��H\u0014\u0016����g�,�9�e\u001c�\u001a�P�Ft9�IL-\u0001KZ�\u000bY�LK�\u000fޢ��\r&\u0001�\u0010ڀ\t<����|�.I�\u001e���iӚo�RK\u0012w��u~l3�����C,��F�%�y�X�硫�=�0�����\\�\u00029ʷ�hO�C�3Um��H��\u0016�#�\u0010r \u0011؞\u0018�y��\u0015���L�>\u0016e��,w�h�݂�\u0004�W�>R�OZ4��>U.���*��Z/Y�\u0001ɚh�#Sv�ǖ�p������A\u001c�\u0012��X��;݋�\u001e��wK�\bT)\u0004[��‘�6�D(y�FnԳ��]V*<��u�Ŕ��՛0�\u001c�℆�w!t��9n�<@�\u001d�(�#f\u0014���'��Ɨg\u001a@���\u000e�$q]?\u0013�%0+��۬\u001e�\u0014w�\u0002�$��vN�xc\f.��\u0000�\u001b\u0005�g�ԑ!\u0007]�\u0015�u*���fV��6=\u00134#E+\f�^��\u001e\u0014�#s����\u00119�\u000e5\u0015{��D\u000b~7蚫�>���8q\"��mK�Z��\u0002Ӱ��0�.�N�c����`\u0003b�\u0002�w\u001b]\u001a[΅ƒO\u001c�^q\u0019��z�\u001a�����\u001d\u001a\u0011���a�ռz*\u0010�v\u0001+A! 5)T\bJ��i�A �\u0012���X\u0010`���\u0015\b#\u000eD�RN�\u0012��vQ��ܬoI4g\u001bA5�8Bs{���=�:1\n�� �\u001bp��cJl����\bx���f�X����گ\n�l󂠲z�)zWoa\u0003��S�A�\u0011d��%�W�p�e\u001d�ᛦ��)5(��\u0018F���\u0017���ӊM_���%\u0015�3ɒ\u001b�A��Vo��4}�I\u000e�\u0012$�\u001a�B5��l�X\\�A\u0012�\u0013\u0010��M���\u0016����\u0016Y�\u00160�h�\u001f5(|C|�v����&\u000b�j��\u000e'K�E��ѯs\u0012㨥�ZQ����\b\u001e�\u0002v�@����\u0002J�Ԏ�Z��3\u0001(�\u001bg�\u0014���(�\u001b#�r��6�\u0000�a\u0005������}\u000e\u0004ôf��9�u\u0013\u0002\u001a�$\u0004��~^\u00027\u0019��@FV4���\u001d����Ln�-�2���\rI�\f���m\tAI^��퍫�-��/���\u001d�\rX��j��ķ��W=���U\u0004�ٸJ+�\u000f��'�Ύ \u0013r�.B��j/q�\nX�}ːk���ڪI\u001d���\u001f.��m�����/Z��A\u0011�\u0013$��L��2V�.]�9S������~\u001dw�\u0016�\"<}��q�9\rN�aB\u0001�3ׂ\\\u001e�[��>j2w{�.[Y����\u0002,,���ʳi�\u0010<#|+o�a~A�\u001a\u001a��H\n\u001a Bک'��wTc\u0018c�\u001a���{��q�V�\u0005\bq��H���\u001c\t\u0017��b�k�fV��S��e�\u001e`H\u001a�g\u0001H!���Ц��\u00166\u0018$�\u001d/�\u0001kg�\u000bMi\u0012u$�ݸ=��P4\u001c�6$MS=�+ÕzӶԋ�\u00128vP��۶��\u0019\"~�\u0001խ��-n�3ޏ\u001e;���J\u0001E��'�\u0017������\u0007���iPj%�����]�\u001eʏJ�&�-�A\u000e�\u00138��Mv��Q(��[�D\u0006\u0014\u0000�u\u0017\u0003\u000b�E~:/s\u001dy�\u001f�|�j���\u0017A�e(\f/\"�Q��\u0003�\u000e?m%�\u0010C\u0000�EK�����W�\f���\r|\u0017~�oP\u000e���U\u001dx\u0002e��� 5����l�]Q�����'q2|8��+��$���9\u0014�c��f�w�@��\u001b\u0016\u0001\u001cz3�,Mrq�J�{S.�\bap��\r^$�ş�u\u0013U�r�8��R?��9��t���\u001a'���^�\u000b,b�\u000e䭖{���\u0013!ofO\u0012@a��7m\"�q���\u0014vAg+2\u0013��˕H��`<�݆���0�\u0007mȷ�*6��T����A �\u0013L��)�\nw9�\u001a�x�\u0002��5�i�����n������\u00079��g�5!\u0013������.�29Ex0\u001a}B�\u0014����Bq�\u001a���ۇ8\u0010�S@Ar�?��\u0015~�;h\u0003��F�*`���K-:F\u0013�r��Hh�=x\u0016\u0007)\u0001���I�Q�;Rk�^�3\u001a�I\u0001=`\\\u0006U?bk_r8��-/��\nC=n�\u0003L×��`��Z�:*cy�J��}��e:\u001c]n�\u0015�5̭D$2�����\u0014d\"��9\u000f\u0015)����`k\u001a\u0005gp�\u001dS*�gx�u=s�p�qZF�ʂ��\u0004\u0003n��%��pWX�^SS.zx�nNh��d\t#d&e�.W-���A\u001c�\u0013`���\f�\u0005��L�뉔+��x_Y�u�\u0006�p\u0012\t´e�k�:W\r�,\"\f���p��?��h�p6ѾR?ԥso,�ç'Ε���5'rP��e����Ij��c0ʌ�ñ�9�\u000b\u0005z=]�_�/%W�\fe�L��J�&�<\u0007Q塎�{��m�\u001b}<\\s�3\bbӁ��p�+��â��;�\u001f�\u000bKq�dS�����'��>{\u000e�\",r��Ƕ�\u0011�Q-\u0001�� �L�\u0001I\u0007�\r�f|ӈ���8�$N�\u0018(A���Q�A��T�\u0017��\u0017\u001fZRc9|��dO��DOz�@��\u000b��eCx<�\f��!1\r�\u001e������\u000b[���F؍�A\u001c�\u0013t���\r\u000f\t\t��;ܶ�H�\u0010�\u0018����f��\u0005&�C�\u0005�|�\\�L�?f��;�v��J�yj\"+F�{�\u0002��2\u0017���f��#�\u0015�Q,\" �q-/��\u001fh��=\b\u001c��|��\ft��$\\�m��K���m\t����]\u0004:h\u0004i�2�H�̜�\u0000԰iP=����ވy�%��K��C�}Z\u001cx�]�ǭ\u0014Ha�\u0019�\u001a!H�i_M�n%�LV�,6-{\\P��\u000f,?r�%@�ҍ�Q��ס� #�ψ\u0005��B�.꾤\n(-�7�Z�%��\u0007�r\u000fe�\tY�\u001fT\f��Sdb��\u0007\bG�y�o\u000f{X�b&\u0007���u��9a�qt\u0000\u0006��A\u001c�\u0013���L���v�Е�o�Z�\\,w�x�\u0013��6�\u0013\u001f3�Y�SE���\u0006s~+\u001cCP�\t\u0000j��P�\u000bF�\u0002\r�/1�sW\u0001�_�J�\u0001�̀�/�`�l���X&1D\u001f8\u00076l8A�f�!�\u0006S4�&\u0007\u0002G#4��0I�2\u000b\u001f�q��u�\u001f��V\u000f��t\u000e�Mz���\u0006O���k��\u0006�qqVF�Z\u001e����\u0014���)�y^�\u001f�7J���V��|Y¿!S�!U�:\u0018ބ?�C_��nv����i\bd��\u0019R\u000e@\u001b��� ~m\u001d�$z�\r�;\u0017�4\u0000�\u0014��k�;�H\u0000[�s�|�G��A�Ct�\u0013�Gp��N��\u000b\u001e\u0016�c�\u001b'\u0019\u0015D�}�A(�\u0013����\\[[���\u0013\u0007,(�)\u001eq�@\u0000\u0002�P*��G!L}b?�B �u�h$8\b�d�Jjc\u000f����*���s��Aog\u0013���۠��\f*�]��|�\u001d�\u001c$��\u0010���p�!��|\u0002�\u0018Č�/���E��M�\u0013�}\"\u001bg\f���H��!끀�Z\u0012��T�o�NU/n�v��f�\u0003��-�\u001fys\u001au\u0019\u0018��G9�\n�'ۆIp�C��D۬�\u0013|$��F*��U�\fp����І7bؔ{��_]\u0002��\u001f���%|\u0000���#����\u001a\u0000���dž\u0006E\u0004�����@��si9(\n��\\{.����Ƣ�O�ט\u001a�.���\u001e~�Ep\u0005���*�E�y�Pj�L�A\"�\u0013���\u0001�\u001dJ��#�R&A�u\u000b����-\u000e�ґ�{�\n�\u0011ʆ_���*�\u001b�K�%}�į��2L�\u0014h]\u0003lK\u0005b^R�4T�)\f��\b\u00125t\u000e~%w��K\u001d���P��W�ǯ>\u0016�^\u0000Q�L�\u001c`�0\u0003���ma\u0002�Ci.8�E\u0000�<��9���=����)U�\u000e\u0003�G\n\t�l���\u001dq\u0018��\u000f'���-�c�Ť��Hr�C$\fh\u0007\u0013��\u0002����~iju�i�/�5Rn���:�\u0012\u00037D�\u0000���ጷ��$����\u0011����+l��oK{�IB/�\u001bak��%5�wF����\u00121G\n\u0015Pf���G�;M\u001am.�\u0000��\u0015.�\"�\u0005Mi�\u000f���B\\�\u0013Ā�}�2�w}\u001a������N�\nDp�\n9+\u001d�\u0017\u0005��?��87�o��dI\u001a/�]����\u0005���Q�Db^M��1�'qH�h�'%\u0006k�i*��bT\u0002T��\u001c��@;�Z�1,�\u0019\u0016z�����1!\u001e�.��.�\u0006`Y\r�i*ϩ�\n\u0013@�\n���\b��T6\u0014,Nb��YGd8�M�\u0018f��\r�i��\u0013�'�$�����aJLB���8�_�~\u001e���Aup�jNk�ϼ��6��r9�*��Ԇ\"#�\u0004(B��ų�\u0005Z\u0016\u0004eU\n�W.B�$�X��\u001a\u0010~�(��\u0001qTO�,>�'��\u0016��]�����\u0011Vv��\u0015סM�0����u�0���\u001d$g�\u0016g��9\u0017G�E;BrY�\u001f\\�\t�\u0001�$k3W\b���\u0003\u001e\u0003!����u�O|� B�,\u0010&�\u0013&\n�c`�\u0015\u0000�O�_��W�M=�KJ���0y�Ji�T�\u001b�u�\t���!?<���ғ\u000e�ˊr��)ER��=�\u0007�\u0002�\u0018\u000f\u0005�PR=̒������k\u0004�B�>����e\u0002��e\u0007scZ��\u0004 �\u0007���Q�1�I\u000e�I\u000f-:�����l�y�\u0004�ψ�JÀk0�\b� Ncl%�\u0003أ�WXbQ�\u0015\u001d\u0011ܑ\u0003\u001fW��t\u0018�61�\u0018�d\u0012d\u000f�t�5y[@�!�q\u0017_���R0`��@X\u001a\u001aD�Ds�\u0012Ŝ\u001f\r����5�.\u0005U��f5�\u001aS�7����K?\u0003�\u001eX����J�;\u001dz6f������k\u0012��R�KR=\u0005U�S�����ȡG�yk*�G�bd���_U�m��qy�����5)�\r���.\u001f�S��bm��\t���\u0002ٶ!��v���[m�x�@��2S)\u0016�P�sYr\u001d_N��?\u0000���c>�\u001c�\u0003\u0004�Od@sq�X\"t\u0013j��┉�o#ԓ� ����s\\��\n`uob?�Z���\u0003�_Կ3�����\u0014�'�8:�c}�K\f\u0013�\u0004�\u0012�\b�v�\f�Z$\b�\u0006\u000f^�N\u000b�/]f\u0010�����1�-�Ι��%^]�\u0001\u001e\u001e�\u0012�\u0012��\b����/���z\u0015�Ϸ+2\u0005��\u0004�4y�i\u00053�.��\rQU���\u000e��\u0016\f�\u0003\u0000������WA�$2�%!�R\u0015�\u000e�\u0002ٝ�^�� �!\u000f��A\u0013�\u0013���:h�O\u001d)I\fA(_�W�O\u0016\b�U�2i�*%JOi=@��\u0005U�)�\u0003\u001e}i���^�KF@���耠\f#��ڰ�-\u0000�F��$th��i�\u000b@\u0002��\u0015��\"�T�L�\b\u0006]�u�k�Y]\u0019�;N��dd�\u0011i��\u0003\u000bb�\n�nT�\u0000��\u0015Ĩ�L\n\u0007�� �\u0011\u0002�aG��/��}\u000b���\u0003�\u0006?�a���\u0002\u000f������\u000f��k�&�eR!d\u0014�h��\u0014\t�L\u0013=��d�D2-�;��Gw��`Ŵ?�\"�V�K.\tH���빛�t�A#�\u0014\u0000��L�{x!�\u001f\u0000�-��E�x��ǩ��\";� ��v*y\"��\u0013��(-\u001d���(��>�>Lh�A���\u0015N\u000b�un��*��2\u001f�\u000f�u\u001b\u001a&}Ѓ\u0019�� �]�W҆Z�~�\u0017�d�'\f���`�\u0010��sh\u001a�=>�y�\r�C\u0012ZI����xU\u0016u��l��y���*Ǒg[�k۶d��?��ı��@$BrNCm��0�k\u001e��B����*P`�oe*�\u0002\"\u0011w��\u0016V+��k߂,u�БW��S1�\u0006q��\u0003���4s��-̡��?W���i`a��\u001e��MG�Y\u0004ԫC�����*��PA\u0019���x�c��!\u0018�I��5Y�\t�o7�A#�\u0014\u0014��M\u00148kC�h)�~����\u001d���J\r���$ׯh�3�\tk�%\u0010B�'�*E2�G��}kt�R��2qM�Ak���\t�S\u000e���#c\u0019�x��X��v\u000e�j������\n{57G\u0017\u0017�~'yڒ���f�����Y ����ܶ���J�\u001au_˶�4J\u00143\u0017��@���R�ꡁ\u0012��֬o-I�\u0001�\u0003�3��ɿE�\u0004>�\u0003[�*�\u001d� N�j������J�uX�c$�\u0014C9\u0012�z�-G���Qu\u001e�a\t>���\u001a=̥���R�\u001b\u0006#�V��Zcsm����W*H�`\u0001l���K���B�c�<ދ�J�f2��Ԝ\u0006�CI�:D�U�A/�\u0014(���8aۣz4W\u001c.\u0005\bt��Z\u0003%R⨳�~�|�i�\u0000O(�U�?�����دM_c�H(\u0004w9�SP|r^4u8\u0019�,]��\u001a�{���*�����(��iOZזx�1��^\u0003�\u0015Ŭv\u0010�\u0002f�n�\u0013�it���\u001a�G�s��x�\u0019R�=��yo�\u000f��;�i|���(�,7\u0000\\�XAm\u0007�-��/���ܧ����$��\u001b�B桦.��?\u001d���i�\u000b|�=�Md�6��䜴o�Xh�CD�\u0015Sߣ=������w$Xok��\u000e�\"��Z�!Uɨ�!��.J9�X\u0006�V��T�gI�\u000f\u001fTcb̾h0�p�\u001c\u0012������jP�!^��f��S��A+�\u0014<��L�-3�=��73J�/,\u001a�(��{C���ֻ�;E~�%%�D�����V \u0012���:1\u0003bB�\u0007r_i���ȞOt�\u0018aA�\u0005<�58�(w�\n\u0017���6�\\y\u0000C�Gc�\r�{\u00063p���\u000b�5щ���S\u001cdÎ�N�rKl��t�r+$(\u001c\u0005�Aj\"��\"O�\u0012�#����7@�\u0017�vo���\"\u001f�Њn��\u0005��\u0010!�#��ـ��I�Q\b/\t�\u0005�$���-#r,h�\rb���}�X��C�b�)q,+\u001f w\b]��0.Os�+�S\fl�O!:>j9b�2\f\u000f\u0013�\\�E�bb��\u000b#fb���̼�.������`���W\r�h��:~J��;�\u0014>��A!�\u0014P���\u001d�\u0016\u0005\u0012�c�ä#����9#�b�=%�|!5ݸ�loT\u0017�c]d��U3�\u001er��7z�IF|Gqljjv%uX妤y4\u001f�^��\t\u001bL��\u0019�\u0002��%�����Y�Ο�ai[�UJ6!\u000eJ���h����ݹ�;6o�'��\u0001\u001d�tf?�#�ki�QX�\u001d\u000e�\"N'Ȣ��Q�\u0001�Ko@I�S9���`�Osd-���6�E5�ܻ��;��\f�\u0018��y2�ڜ\u001a\u001a��&�v���4Le��5�7L3\u0013�\r{ǻ�\u001bk&�,\u001aGTu}e\n]�\u001f�\u00185\u0007�n$��#���ԍ� � \u0006u�\u0006����\u000e���wj�ړ%���>2* �M�A.�\u0014d��� u�=��-y�R�\u0000+Z\u001e\u0005\u0000\u0016\u0013`\u0018*w\u0013'p�\u0012��A\u000b����� �r��\u0017\n&\u0002����1���؉$\u000f\r�\t\"�28p�h���g%i�aʄ\u0010J]�?oҩ\u001eW6v��?�I>���-` �\u0006�$�1J�\u0006����mˎ2�E*�E��!�4�c��\u0001��\u0013я�\u001d������pF!\u0015��\n=��5)�p�\u000b\u0014��/!�Gy\u001c��8R\"�[윓�)*1*6B3��xb�\u0007N&��#�\u0000��O��폳\u0015q$T rS\b`�uS~Q�X�Z1�\u0016�\u0017l���\u0010Rn��\u0019:+����y1RZp��P)V��nhv��e�jw�9~��u�;�PȞ�6cF��ݵs�A0�\u0014x���̘��\u0002�~/�\u000fuOgs�*�5'��?����\tE��\u0004�\u0001cY�\u0015���Ŭkmi�gЋ\u0005\u0012'��\fA�j\u0007%����\u0011�Qt�\u001d�Z\u0019\u0010\u001b4�a�ܝ+�+��c\r8Cj5 X��k�h3V�xFy�\n�IQ\u0011a��\u0019�\u0007\n�9��Č�#F`1�!�ދ\u0017�\"���tC\f�3�?t���c��\u001cK,�m�p'�v����\b��$}��\u0002PA�\u0005�u������\u0019��\u0013!�[]\u0000猡\f�xd�����\u0006�\u0015\u0005\u001a\r�)\rhXf���̥�\u001e.�\u0017��z:0�:��\u0011��a\u0017\u0019́�rU�^_��x��/z����1w19~xY��!q;���l\u0006되*����?M+\u000fwq�A#�\u0014���\u0000N��\u001c\"\u0011�\u001c�k\u0013�Eɇe9����l\u0005\u0017�W�\u0007��<`��rM=!a\u0018\u001aF��$r�\u0010R&�l\"x\u0018�S#.\u0014`�<Ъ�\u001aɣ\u0014O��=��O`�O+9�����҃@�ל19%\terrq%zG\u000eoWjMi\u001b@�)���\u0007l��9��\u0007\tS8��\rlн��\u001aE��9N�?��Z[���d��\n\u0012����7�|�tI¶�\u00061-���Q�֬\u0010ѷ��v����V�h�]�WY�K;�V\u0007�\u0007�\u000b��^��]7��1+���O5\u0001\u0014ǖ�+;'��@�+\u0019\u0010��\b�>�\n�\u000e6[\u0012ʆ\u0003�����B\u0007{i�QCq\u000e\u001e������\u0006C��)57�A\u0015�\u0014���JsOn\u000fc���4�`k�\u0007���5�? I�\u0006@\u0019�jH\u0017�ꓤ��Put�I�Q\u0004/wN���$�\u0007 ,���\u0014\u001e�$�\u001c7F(�U�z8qd�B{�u�\u0002\u0007�+�#�a�\u00128���ԗJt':B�\n�xO\u0002r���R�ڋ}8ʗ�\\�C�(ul\u001d�\u000bm�\t\u0005W�}Uz�ю�R�����Z��\"@ab��(\u001f>~\\d\u000e@+t5+��\u001e��^���9ܕߗ\\+�|��T�}1谿����ɗ��������xp��eC�&�i�KFY0s�%]Xފ��\u0010Kc)E_��\b0&�\u0003�}��P#/V���!\u0016�\\�n����A\u0004�\u0014���-�\u0013T���K�r��8r:��Rϱ�\u0010F��'Kd��К����Ū����A��?&ˬ���+�Q_�\u0005z\u00022���|��ct\u0018S=��K\u001b\u0019V)��G\b\u0003�$̲\u00035Na����*տk\nԹ����+���\f��\u001f?s�\u0010�\r{�6=\u0003`��\"bE�\u0007|fbF�_�\"h}��\u000b�p�UBrҧDЊ\u001e\"Ϟ�\u001f:Q;\u001d�ԙ�##֪]@EF�w��U��\"����-܇ܵ\u0017p\u0004�-�}w\u0018c���n�v��\u0001m\u0010�8%sI�\u0003_`ਜ਼��c?�-�6�B\u0012�)��\u0003��\u0001:�7�BC�\u0014Ȁ�}b����*@/��x\u00180�ݧ$@\u0013�$S�n��\u001aZ��g{5T�\u0005�q��\u0001D�p!�A��DJ�,��9�_�y�L���Fd\"��-%���ަ팛\u0007\"�dk�qY\u001d��Y�/��\u0013\u00131깮�֛�����\u0002w}e�\u001d/\u0001��ٔN�~ID��\u0004A�\u0018��3\u001by[\u0005E��\b�E��r\u0017�w5'�j�閑H\u0016�\u0012��<�\u001e�1\u0011�0�\u000e5~�\u0013(5\r��.vn\u0019ʂ�C��\u001fp����n4O㙕�\u0010lj�\u001c;�\u0003�]�%� A�2\n\t��Y�7,�|^\u001e�>)�U\u001c��pR�\u001f\u0002iD�6]R\u0001�ݻ\u001e\r��v�K��'\u0000\u0000\u0000\u0000\u0000���i\f��D=��y�jI���<�fc�q\b�v$u�Ջ%y�]�0�f�E~x�'�b\u0015�4;�����Ŏd�;�m�����m��M����\u0000���H�}����7��9�g�\u0002�|Q4�m�*�\u0011��\u0003\u000b�����\u0006d��`�ۉ�\u001f\u0010�\u0007��Y�\u0011�\u0011\u0015eb�\u0018_q�ul\t\u0014\u0018Z3ݞ\u0014įe�3�\u0005��\r�QKf�^'N\\��{b��\u0006�\u001dm(��-�Ò�\u0012\u0013ls�+$*\b�\u0000�\u0006,1\u0005\u001cy��[9(\u0003�'��կ\"��j����fq\u0010E����\u0012�5�/�]{�Ĝ*�⚤�\u0014�\u0014b�I��&�o��e��ظ�ͬ�\u0015�/$��d�����ƞ�AS�\u0014܀��e�\t\u001cTF~z\u001dq$\u001f����v�\u001e\u001f��� E�Z�0X>��^�'%���:�g\u0012�U����gO\u0001�7�8��P�^nN�;�N^�ۙ���3Z]vQm��菾��5t\u0014�Wh�\u001f\u001c0l&\u0010�;w�\u000e7�t�f��5[ђJ���}�R�ͅ\u0007”\u001a�p&pj'\u0001��\u0014aJ�4+�N��-��8�ϝ3�����%�%\u001d˽�ո���gJ��P��\u0010R\u0017\u001b#�,QMΙ���$\u001chͮ��&\rZ��\u001c)!&/\u0014����*\u000e�O)��\u0002U\u001fj0�\u0018E&��x��0��\u0011�t삌�!�@��N�0���%c\u0019\u0007\r�j��C�\u0000@\u0010Y��av�Nb)8�\f�\u001aZӣ@\u0010ԙ��\f��J�1����6U[~���\u000eȓ�ֳ�-���g�\u000e��dn}p��x�^$O��j\b�ldu�`꧟��6�8�k�-�{\foCUQ\b\u001e#�R�4E�\u000f�a�M��$\u0010�\u0010ZuY(��\\S\u001cx�\u0012\u0000IB�\u001e\u0002<������N\u0006�6��{|��x�\u0016]\u0000��УA\u000b�\u0015\u0004���m3��\u0019��X�ᩥ �k�65��l\\\u0010�]������\bC�n�s$%\u0012��g.\u0002�;y؍��.̪�298�ҏ,�r�\u0004͠�\u0012���=�6\u001e�\u0014�\u001b�LoV0�\b�.�6\u00191_�3�Sff�qWi��:�L[���;�Fw� ��/@}a��\u0007��C��:�D�+z�\t\u0006z\f�p\u0017�����ؾll�V�\u0013�P�[��Z8vEF�\\r�'\\��~H��^\r�\u000b\u0006��~�@d�\t9�r��\u0000I6��i+l�h(܍УA\u0019�\u0015,���m+�p\u000bI�s��J+�}�̜�D�/��욺\u0019_�J��\u001f\u0001�U��-�\u0014���#\u0017\u0013\u0006k�@c��������T�̤�m�\u0000nΡ��Z��]�\b���F�\u001e�h��4\u001cՏ\u0004n�;\u001a!OJ�m/\u0017�mt�%ʔg��|xA���b�!\u0018���@�{�F��Q��o�e\u0003du����XN��Kѽ��ĢX.>6o\u001c\u0015!\u000f\r��w\u001b+�nX;\u0018u!G�\u0018^��\u0002�\u0018s���b���U�i\u001a�\\��\u0005\"76\u000eAASbhq���C.u+\\�M\u0000 �R/�\u001fL�\u000e����bXv��\fs�#����nנ:0�|+��L�УA\u0011�\u0015@���m�=��vf*=\u0017���P�c\u000e\rVs�⣙!�c�U;k����e�\u001a���i��iL��*�\u0004�&O.P%\u0016\t�\u0017Q-gE�לÏ�屑�\u0000�T�1�\u0004\u00185%��^\u0015~YU�\u0017�\u0013#�\u001dG)�\u0001pג��i;�>�6�]#.�p/��4\u0005�.J�w�f:�(���t�a}(w\u0006O�\u001d�Z��g�\u0016��\\\u0016�g�F=q\u0003���\u001c��.���Ѱ�+���\u0001��\u001b� �c�JW���R�RS��\u0015�uZI\u0000�[\u0010!�\u0004�T�\u001c;����a�ϔC�F,�h�|�\u0007F,O�҇�p\t3\u0012�\u001bx\u0001\\܅�\\k\u0000%P�A\t�\u0015T���f�G��h�-���G\u0015��7��z�'\u000e\u00075s�,\u001d�6*c���)\u0003���e.�s����n�\u001d,��z�ӌ\u001ax\u0001\u0011���GZܹ��O��\u0015%����\u001a�\u0000��6��c�i��a'6�\u0006p\r�8֒׻JU��G:Sa�.\u000e\r��[źA�&���\u001f���\u0002�}'{�6�\r����F\u0013��hc��R�Ɨ_��Ŗ��m�ݷ�\u0017���F��09Zǽ�\u000e�Q�\u0006�bL�$^k�F�\\��.w0ֆ�4\u001aȔ�[��9T�k\r��-F���إ�\u00116��ڟ�\u0001 ��\u0010�5\u0004^|�$УAՁ\u0015h���bi���q\u0000�\u0014\u001aj��Cy�\u0012�9ί�\u001d�y\u0018��l�&\u000e3�}���bbf���m�ӵ\u000e�1c{�ʆ�\u0006D�\u0005\u0013.�8�p�&SX�-�ѳ�\u0015\b�b\u0015��t�\u0012>i�Zra.\u000eu_\u0003W�jh)u��&�8\u0017�\\�k�юB)��E��8gj?2C˔�\u000b\u0010�GG��\u0015z��m����v���$E=م���ֲ\u001b*\u0017�dQ���%9\u0002��p \u001a��$K�[��3�\u0018\u001d�.�\u0005��E\u001e�n{��<0�{�l�\r�\"�\u0004�[�U��|�0���\u001b\u0015�\u0015�\f,���l.C�7(��H��\u0017\"�R\u0011������w唨Oq5\t��1�\"��!^\u0016\u0019�;\u0018|����-�\u001bǏ�J�\u001aB�\u0016��9b��%9\t�T�]\u0019���J�l\u0018�ń\u001a�\f�\u0001U\u0011�T��P͢�`�[V�w\t�z�\t\u001d\u000f��6B�.#�f�\u0019����Զf�D����K\u001djA��3�A\u001b�\u0015���2-\u001fi�2ә�}�]�C<�\u00161�m�@\u0000*d!�|}du�i���Z&B~�#o<���<��Pޒ\f7.;�sQ����A��lS\u0003�^�\u0003Xxf\u0010\bנ�'OT�\u000e�^[�5:eA�f�P�]������&���o�\"%\u001f\u0002�\u0004�xά���0\n�Cj~cOx‡�sFjg�\u0015l����O�9PĂm\br��`_H׉�P�cx\u0001\u0018�P$ G�*1ɍ��\u0018�c��\u0011ŊFS\u001c\u0018'\u000ec�,����ʷ�#�k|�\"\u001c�m7n�V\u0002�\u000f�՞)��\u0010���n��ا򙯊퉦GSx:�)\u000f�@ؔ�\u0002���.tQV�A\u0019�\u0015���2,%\u000f�b\u0007�B�Ȧ\u001a��o������\u0011X�\n�\u001fA�s����-��C���\u000f�Z�\u00041\bdɹS���vG�!\u0001\u0017Zx��\u0010Pv@\u00052�&A\u000ez\u0006�<_h~�=�w�xʸ�-�/9���\u0012��_};�9���M\u0006����\u000f��w'\u0005�Ąg�o|��9ꁧ\u001a\\P\u0006|\u000f�\u0000\u0011�S���\u0004I�8�;&LQ�����{\u0013�ç.;���&\u001a�PG[P窬f̶��m\"{y�xo���\u0012?��F\u0013\u001f��y��%�(��>�y�Í͊#�\u001ds�K�3,�̃�A��\u0007����X\u0012MƗ��z��a�\"\t��NE��\u0004�퍋�A\u001a�\u0015���0J*�8\fVS�9*\u0017��i3�L:��S]\u0018ƛ�\u000eK�J\u000f\u001a\u000b\u0019����\u0004Y\u0014��H�Te�u'�B&~\u000e=�]_�F�!���x\u0010��+�C\u0011\u0010v�\u0017+��\rT6v��\u001f\u0005�r��\u000eZqV\u000bԱ:Vs�H�멍\u0002\u0019��^�UV�\u001c$�6\u001b׷W�ޙ\u001b�K�����\u000b\u0015\u0015��m˘*k^��V`�谑��h�7��-�ϧa���hQ��Α6\u0001u:��S\\\u001f]�>��[X�:7>m+�#.�ܸ\u0018�ه�.���`���+��\r�u�l�ހ�\u000blD?��s�\u0011�O���\u0000 ‹w\u001eF�\u0015�͢z���/�\u001f�r\u0011GS\u000f��A(�\u0015̀�XXYO\u0015�\u0019-���;mo�I�V\u0016\u001f��v]!�K'��\b8h��.5.\u0015V�\u0015\u0019_/�dSi���\u000f!ݽ��\u0010�>����lY�K���0�,�6;�������|\u001e\nj\"\u0017�@ζY<�䗠\u001fW���\u0006v\u0012!�\n+-An.�{\u001e�X�\u0014�7 hk��\u001c��\r\f%�\u001f\u0011FU؟Ѣo�y\u0005;��\u0014qf,��E\tJ�g�h851/53��Ι\u000b�\u0006�W\u0019|R�^�\u001c���O�X i\n,��\u0012�*�\\a������፹#��F\tb��ϛ����{��B@E�ly�\b����\u0005�����M��?H*�\u0011��+��\u0004�Mz�p6r\u0015+:�\u001dR�?��\u000b\u00014�1�A%�\u0015���\u0018$)oH\u001b��N��u�s��?��<�Q(Ǘ�V|}WG�\n�+�X\u0010;�И\u000bvW��piQM�!HF0�����5̮:W\u0010�CL��\u0006��� ˾�\u00194��\u000b���Y����\u0000|�[M*���\u0019�=�n˴�)T\u000bB�$׎=r����z�w\\V�n�)#��C=�m\u001d?wBB�k�\u001c�a�9���$Ѽ�b�\"rk��Y�S���!\u001dt/����n\t�F:�AG�\u0016\b����Ddh�gJ.�g��3�͸�[*�#��\u0015��U�~�\u0019\n\u0017�գ��1\u000bǷ0��\u001b����[ښ\u001a�.�<߭R=7�\u001d����Z���*\u001b\u0015%�\u001a��6�\b%dz\u0000�\u0007��\u0018{���'��Ξ�D�\u0018��\u0015\u0012��/�\u00168������œ�\u0017]z�#mo]PE�����t�=#\u001d���\u0004��\b�g\u0011�IV�Q�\u0018P\u0003��G\r�Ҕ���jQ4����Yӥ��z�D.�*7�\u0000?�Dr�+\f�\u0015u{t�TOաo�\u0017E�r;\u0012���,c3�\u0018�\u000b�Y�vl7\u001d��\u0010C\u0013kaT�3[��EK9�!L�5��\n\u000b-��xjV�}(� ������=)a�8Й�\u001d@��L��тD�zZ�\u0011\u0006^Y��~\u0017�܈,r#�AZ�\u0016\u001c���+}�щ\u0012>c���B����Y�^ar֥��G@W�����\u0004\u000b��]\r\u000b���\u0012'�VJ��p_|�Rf������X\u0003��ʏ�\u0010ǿ\u0014���}}����>\u0006C3��'�\t���?#�i].��\u0015}�kg\u001e%�nw�q�����^��\u001f�БQ�S���J�V\u0004�\u001a.�3��֣\\\u001c�\u0000\u0007[ӱ�M4ő\u0014A��1\u0003���^�\\vI>%C���M��\u0011s�`E�\u0004S�`�.��\u001d\u0002GҪ\u001d�C�ت��x�}Y̥�)��\u0003�-H?4�\u0012���\u0012P\u0011\u0007P�:�`<��)��\u0013\r3�G$\u0006a2�>F���2-�\f&T�f\u0015G֛=\u0018��\"���[��j�\u0001��Ԛi~LD\u0004�g\u0012͉8�S�u�Z�y�H\f���Ů|a�܁���T���w�\r��%�Av�\u00160����2Xz��xñQ7\u0011��\u001e4�\u0012T�\u0004��3}�_���N=��rf��PH���/&c��uS\u001c�\u0002�G|��@�\u0003\u000bYx\u0001�6A��f�*\"�@C���\u0018�l�̝\u000e��\u001e�>sq�D��F�3\u001c\u0002\u0019W�Q����~����[�\u001bHL�ڞ8���?�霽\u001f�d�\u001f���\u001c\u000eЊ�\nkL\u0006)d��Hx���\n~�ؐ�SA\u001f>����Y���5\u0000-\u001a׺\\�77\u0016}�?�T�E�Tc}!�4ߟ��0�^z@Ji���\u0014�y\u000f�/���F���Dޔ�X޺��)�|%\fG�.�0���G\u0017��M\u0000Qޭߣ�Kձ7\u001a�|8�\u001d,�����A~`�Z��F\u001b�q�����\u0005�zp�\u0006����yV��#��M��r�fIW�\u001e^�i\u000e�G������\u0004?�k�I\u0006�0�t��%m\u000f�Ž}9w��\r\u0006%�A]�\u0016D���\u000e�\u001bQ��S�\u0016�N\"Ni1CIȋ�����\u001a�ڞF�VH>9��x�\u0016�똆��]���%��\u0011\t�yץ�\u0005�������Fa�\u0013b�k��E�\rlR��B�\bοBP\u000f\u0007�M\u001c\tc�=\u0003�W\u001d�\u0004��O��<.����\u0000q�.�{M\f:ax�����\tDmRa(�X�<��g)�5\u0013�k\u0013��QQl[�\u0001U�m�38�\u0001̛\u0004�f\u0005�w�\u000f.o�{/)ҳ\u0013���\u0004mjS�_���\u001f\u0002x8��t�Ś��\u0000ۮ@�\u0001���'�Ar�\u0016X����NR�\u001a�\u0011��L�\u0013y�q���Ț\f5P\u0013�%�4�4G����\u0002�����@�Xa\t�*j:1I\u0004B:�\u0006�œ�\\��W\u000fk��b�K�F��\u000b��XQ�)�(��2��\u0000-B\u0012\u0017-C���@��O��YK@\u0014���E-\u0017N�\u0006N\u0002_�\u001eٸ��w^~�%��A\u0007\r9o��Z/�%�\u001b��|j\u0006��+�T���\t\u0019�� \r��\u001f\u0007b��\u0018<�\u0000)�\u000b\u001d�\u001a*\u001f\u0013xi\u000b��9G^�\u0018\u0010\n���N\u0013�ׂ��u�\u0011\u001d\r�2:�z\r\u000e)�4U�����Sl��\u0015\u0003=�\n�ǣVts���\u0014ܖ\u0013�9�j�jS)\u0016l�2���G���QJd0�Z��\u0002'�1��\u0006Z��.z��PP���NDŽ��\"�%nU�7��A�K\n\u0011\u001e��\u001f��FK\u0003�E!=\u0018�I�y\b.�c���g�Lxj�Qq\r\u0015$�A��\u0016l��\u0000����\u001a��Y�\u001c���|�\u001aiV]t�<,B���?�\u000f�3w�Kz\n���d���fD�)�ք�R��fQC՛�4?�l�����\u000f��\u001cUP�ɄM�\u001aَ���;�\u0011Z\u0003E���<\u0018nw�\u0014J\u0014���\u0019��0�\u0019��\u001b�䥂\"\u001c)\u0010�CYWy�l7\u000f�jt�\f;ы�G�!\u000eW�\u0006�B��5n�1\n�K�\u001b\u0003Y�1���a\u0013�@K��\u001b�K��l�y\u0001Gk�\r�r�\n�lmd��y�Uu���,?s\u0011\u000e,~'T�C�6e�\u0001*�\u001a\u001a.��Cf��\u0005\u001f�8`c��A\b� �(/&\u001e\"�\r̿�0^���Eq^nG>\n��\u001bWyK)�$\u0003�,�\u0003��ok��Y��\u0000;��^\f��V9\u0010ЏՑ�8\u001b��䢳\u0016��\u000f��;{�<*\u0013\u0018���W�\f��\f\u0011�f\u0007-{p�;���(\u001f=vU�Xt\u0011\"����V���4��\"��Ti��A,�\u0016���\u0000\u0003b�\u000e3�d�3�%\u000f\u0015u#��E[A\u001d\r�_\u0002u�8�:�Y^��}\"�\u001b8���\u001e��\r��%v/��&3>\u0017��_'r�hg�oNd�S���SHZMd%���c��\u0019]��\u0003,\u0012�s5O�(\u0001\u0000i<�\u0016\u000fFKs\u001d\u0015\u0003\u001d��8�[��i'��t��b����~l��\u0010��ͺ�`��~Ƥ�9��3N��'u\u0017�\b �dw{�� f\u0017q̸��\u0012���T�EJ�n�4���oz��kt\u0013�\u0017(�+\u001a\u0011h�ֱ�BO��\u000esqM�[��K��u�K��\u0006��\u0010\u000b��\\�jXH�Տ��Z(p������?t����Θe�����E�ɚ���:�ƥ�\u001c����ԣA(�\u0016���\u0000\u00196�G�\u0000D&�}x\t��kq~�o����3\u0018��\u000b��ss&\u0003Y4�\u000bD�}�\u001dG���\u0017SbOC�wm�k�O��?1����\u001e�\u001e$j�B�\u0019��P��\rSBT��V�\u0006o�\u000b����0��2\u0000���\b�|^�iq��)<Я�q�\u0019��\u0000\u0006��H�3\b\u0015�_�\f6\u0010\u0018�\f�~�����R����kz���Q�]���l��B����\u0017�vU�TP$h�����S�k㊥t1�\u0016�J:�w��k�c׼ce@�=�w��A�]�@j�\u001e���\no�P�\"!|F�h\u0014+�Nj@D�iX�:�Y�s��w����\u0016�f�|(�$K&q��\u0001�\f+&3ݣBe�\u0016������\u0004\f���\u0010m���\u0004QR�[��rC�J��K~\"��Ni\\��f��kl�\u000b\u0018�C(�����<��g\u0013&Ό.�\u0000ĻQfa/H�� 0>���&\u0007��K!��1\\���>`�u2���[)횏�A\u0012NfV@P\u000f�dԽ���[��-�V��LL�\tl��;@�_W�[-9�'�ȏ�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017�~40���[\b�9�y�\u0001o���q�pm\u0005��on��(\u0002\u0011��\n(\u0007 \u001e�\n��\u0001��\u0004�Dn&�\u0015\u0010P��ہl�\u0006Q�W������\nL�۹�ԋ��\u000b�\u001e\t�\u001e�0�{�\u0012\u0001@]*+`�T&�'�+�\u001d�\u0005��\u000f�\u0003?\u001a2\u0005�+�m�t�\u001c\u0017T��\u0017.�{���\u0010��\u0017��[��M�LWc#�q1\u0004�\u000b�Z[Q3O�\u0014Bd�J*�;!q\\\u0018\u000b�V��D�y�\u0015�D��]�B\u0013�Z\u0000�'�\u0005\u0016-�� ;4R� �UQ��f\t�������Rĺ��]E�\u0013+F�`�X��%��Q�\u001b5,-[,B{��ϴ�3pX8K\u0003�E�\u000fF�2&s��[7��b�_\u0016��\ra2�e�d|cb\u000b8\u0001�\b\t\u001e1R��)Eٓ�\u0002Bd�q�I���t4:�A\u001c�\u0016���l�\u0004�\u0015��e\u0000\f\u0001v\u001d�\u0018嗉?�;�M�\nP$�{{D$��%���n\u0016�I��A�Tp7c�\u0011�\b�\u0007�\u001fյ\u0010�F\u000e�2~9�ݤ��z���.\rm\nNg��4\u0007�X)�����ڨA��\u001d��s�\u000e�\u0001�R��_�\u0001b\u0010Ő��ك�ƚ��:o#%Odt�� ��I�4e\u001d�0�\u000e�\b���[bJ�P3F�'u���ͽ�\u001d^,���c\u001b����}�ϕ|�GI\u001c��b���\u001c�����4T\u0018�;��٦��+���\u0015��q\u0003��J�\u0006���]!���t��=:�K���,7\u001c��\u0000>>�}�\u000f�F\u0004\t\n�\u0000\n�^0��Z�A`�\u0016Ѐ�|�0F\u0007ON�Z\u000b�}�Xb\u0006�G�3��\"�&(�S���\u0003��0a�\\پ�vHal��\u001d�\u0015���#���eR����\u00035t�\u0000�l�6o�|\u0003�����\b\u001d\u0011[&_B:~\u001e\u0004@S�죗\u0004�k�\u0015S)�\"T�\\V�\"�\u0017t�tzl.u}c�GDF�\"�ܥ���.�Q�S�\u000e��oB&DGjP/m0�F:�m\u0005��+\\m��(�-\u0003����\u0006�A\u001e�\u0016��M)ϝ�lM�.��)3�≴\u000f�Z\u0012�y��f?��vC�\u0013?��oz�ژYF���\u001b\ff#~\u001a�5\u0006�rI&!��\u0016�5d��y�.,+�L�w����\u0016�I�,O�,+�@=\u0006�u�f����,�\u0013�\u0000�t4��c<��\u0007.!o�5ȖTq~5�(�EÆ�UIm�'��\u001a�|��\b�wHr�n\u0016��_,��\u0014����~�^��\r���G�D��\\\u000f��\u001cW7P���\u0005��3�\u0010\u0006�5���#�m�2�J�\\/\u0006�E=�j�\r���V\u001b|�\u0015�k��L\u0019(}���f�P�ލ7�k,\u000b\u0013��UmR�)\fq�K�Rq�6t\u0011�C�\\�A\u0019�\u0016���L�){I\u0000��,N�\u000ev��/�mb}���E��������M\u001e���H-(\u000e�el�\t���0��\u0014���菚�\u0007tB��\u0017��W!�X�:�l�\u001f�)D/�\u0014�k\u0003\u0003V\u001f�sp���\u000b�z{���yO\u001a\u00049�-]lD[��q{�\u001e\u000e���1P\u00037��S�\nS��\u001e؜���^�i�Fu\u0001\u0012��^ٿ\f��vR���F����t����!]{_�D3:�\u0017���\u000f�}����}Z\u0001��V|t�v%J�-\u0004\u0002\u001b���#�69\u0016Wd~N��\u001c�$*!ܤ��S��*��F{�ɻ\"���2&p���L��dq\u0001���-j@�v5�%\u001f�A\u001e�\u0017\f��X��R\u0014��w����\u000f���\u0006\u0015�\u0012\u00127��9r����R�*�C;1l]\u000f\u001a�6Ա\u0002�p\f�\u0018\u0003w��=�\u0011񓖭�O:�\u001bj�ߧ��\u0003U�޳�#�\u0000ᜊ���e��\u001722\u0012�\u0016��K�3�=�\u0001���\\`'3[�E#�\r�\u0003\u0005�+d� \u0006CnyB�������8s-�Z�\u00122S�y2!���S\u0014M�\u00043�\fw�\u0019���\u00177I\n���Gi������cxU��e�\u0007���\u0011#�ya�(W���W���\\ܲ���zA�a_�J\u0003\u0010Og�׽\u0001M�;A\u0006ݯ\u001f�\"nj\rr\r4�C[3\u001eJ\u0003^���Y�P�mh҇\u001bi��WP��v�F@�A*�\u0017 ��L��\u0018�t\u001b��K}��o'ؙ�\u0005J��&k�kn\u0005@”\ba\u0015\u0019<\u00004#���'�\u000f�\u0002�~\u001dc�u\u0002t�5����1�\u0018a�\fV\r�i\u001a#w��ӎ�˓c��(:��?K�Y�x\u0014����BPe/!\u0013�(B�`��j_��\u0004�t�̓�gej��W�>���⍯�\u0002��V���U����c>�vN��!a��A*�\u0003�\u0016��[\u0013��O8r@4&nJ���\u00076,��a\b�-�l��ɞg^Z�oV���Ӆ4>1M\u0002��M�\u001e:\u0003B�tn���1�����\u0014C���Y��+�\u001e���k;\b\u0001b*֒���\u0017U�$)$6�T\u0015�\r�e�\u0001\u0011��\u0007�@��0�u\u001c�A4�\u00174���bjq9Єj�R��r\u0007Zy|��7\u0006���,�L�\u0001�\r�>�\nOY\u001b�`�!1s�7gm�m�?�!?\u0003��=\u0001��޿V�pe���.\u0005�@ތs�\u0013,N����#�^��\u001d���'i�%FD�d�w\u0000�\u0013�l'����#X\u0012�\u0005�mrɼ\u0012\u000b��\u0018�\"L�y|\r��YM3�\n�k���ۙ��T��.�DžK���s�̗�Y_DR\u0005��\u000f轕�\u001ek�\u0002�:?Nl��ܰ~c��J�\nʙ�<��6q���M�S<������)���OvB��?�\u0001t�\u0004�P\u001bz?�\b�|(�M�΅�A��\u001d��H;rG�b�\u0015��l�9\u0015،���\n%�ƍ3���}�\u0012\u0007�\" ����\u0002¯m$�A>�\u0017H��L�LN�u��_��1N��i�Ut\\.~\u0010Ό�\u0014 G��\u0011��.��C\u0016��VJ���Wa����}�ߘ\\]����p��R-��� u13�\u00057\u0013V�\u000e����;R\u0013�r�x\u001c5��;��\u001e��%uO>.�⟺\u0004\u0017�8�����_\u0017\u0013���2��s�\u000fiݎ�g\u001ad�R7�\u001c� d\u0002��K� ��TE��D2:��\u0001�g\u001b,M�eQ3��\u001f\f5���ꆉ�\u001e���cb��RS�\u0019���A���NK`{�\n�\u0005&f��\u0013���_y�00Sw��I��QB��W<�0�@�\t�3�\u001bG�\u0006\u0010����\u0015�d\b\u0001���^��;SѴ_f�\n�/�¢R�(�_<\u001a\u000b�3�;�ZB��\u0001��\u0016ݶV� }ȣAQ�\u0017\\���Ƣ��\u0011\r��R��\u001b\u0013�cW\b/1c\u0004�1��_��]\u0007ȏf�^fc�U�i\u0013�\u00184@3\u000b|�}�m\fg��U�h���3I!�5O�y�V�P4w̻�����w�V��|��P)o\u0014�˙F��˗֨o�[�t�v�\u0010IL�9����bi�>�½cح6\f���g}\tpok�r�K�����/=1�{���3\u001f�\u001akx\u001c�u:w\u0018DJ\\��jd��\r��ޗ5\u0015`CMP���mԺ\\�B���\u0011�06\\�l�\u0013\u001f\u000b�\u0018�O��0�顷��D��.+�!�:9CȔ��6�TE$�<񶱜�r\u0003Y�]\u0018*c�Y�����Z��\u0012r�k�'pV�(�\u001b0MU\u0000�+���1j\r֘��il\u0014g`m�_\u000e��\u0005�]��ћ�C�SC�AI�\u0017p��۷��=�\u000b��]�bgW\u0010�e\u0002��$��tO\u0015�)�+�\u000b\u0001���Ip�j�@\u000e&��_P��ؙ������0w�Nh^\u001bp�{�#���8�Q}��Ю�ũ���^/Q�%��\u0013l\u0006\u0014���y\u0000�\u0005��o\u0012�`�\u000b��\\���fg�\u0004j���\u001d\u0012��\u0014���r��ڄ7�#9\u00105��X�pP:}��l�#�=�A�����-3�WN\u0012Y�V+\u0016��y�ֶ4����\u00160�#�\u0005�e�r�R-E$�1�i�g�EA��i�AX/&\u0012�\u0011<\u0015����~Y�m����QyK�\u0016;\u0010wEuT]v\u001e��� c��q)e���sM\u001bn���\u001az\u001e\u0006�\\\u0016�{i�ۜ�_����th�2z̲lv\u000e�$\r��\u0003�KI�3�?�E�A;�\u0017���L�\b��]�v#?�j�r�3�H�g�ƥ�<��ˈ���\u000f\u0005���s@����\u001c��'�krF�P���_\u0014�XO 1\r5���\u001a�Ǽ\u00101\u0015\r�a�*R�An��eS��Ӫ�d#�Fs��s�\n��M���vU\u0013,.�\u001f8�\u00101�}�el\u0000{��Í\t�t��\u0017���[\u0000\u0013�6I�9�LrJ��D�t��Q\"Ҳ��?�k�\u001a_@�X�db̆D#bgw��I��ģ��(�\u0013��_��p\f\u0005x��R��8�|��2A&��������\u000f�a�\u0010@\u001e}\u000e\u000fQ_���\u000f����\u0017�Jw\u000e��d4O�)���\u0001��!��e��\u001f��T��!�&c\u0004w5���g\u000b�z��o\u001dJ2l�3b��nJ'���A6�\u0017���L�b���:�n�;1c1���&\b�\u0007����������\u0016\b�O���E3�\u0006�U0�\bC���N��\rș v\u0004V�RA�}�1�g�:����\u0018�I��1\nZ${���\u0006\u0013\u0004�5~��I]9\n�K�qu�]\f�6�C�8Vs��-����n!�\u0003�ez���2~>�:���@�k,�\u001e�\\(��Ы�\u0002�\u001ap�\u0015����ӈ�(�+��P�6G;����1�ɹ�i�ᕅߔ�\u0012�A*�\u0017���1�&���u�\u0016&\u0018L�B\u0019���\u000fW)ck2g�r7��E�.����\n\u0000)��N[\u0002L\u0014/�_N��r�jz[3�`��V��L��\"���\u001er���ߝ�������(/~\u0017F�O��F��ܒ��F/i�#k?�����Й�?��d��\u0019�g�R���g/�kB��(T7\u00077&\u0013��\nk�C!T9\u0010�%� Ҙ�9BX\u0004��Qڙ�_��\f�\u0017g��aC�\u001bGV��n���\u0010S}P����'����O\u0015�O��2S��\u000e�������n�����̻����tT\u0014C��F����\b`(a٭e%\u000b�Ur�j�rC�٢B�v�⚡n\u0012N�\u0002��1V��\u0003�A%�\u0017���/R^O\u0016��Xfu�QY�p�fҧ^��9�,oY��_�^�0�\u0007JY�Hf&!@==Tz\u0012�4_�b8��\b��1\u001b�\u0007������\u0019�!\u001e~��\n1��:�]��\u00163��Q]w�>{\u0010|\u0017黒\u0016XҺb\u0016��(\u001b[���z0�C\u001bI�\u0013@b��]�P;�y�b�ܢ��Kc�����zI�݁k���Ȭ+�P���U�/��\u001c\u001e�F�\u001c�\u0010ˬ\u001782{~gL34�\u001di�\u0017)���q��[Ð�Άz\u001b��Mp��\u00113�2�^\u000e\u001d�F\u0014��\u0013����\u0010�1����Ҋa�(��C��ۅ\u001c\t\u001b�nh�LT0*��\u000b���V���$��AۣA%�\u0017Ԁ�1�퇉?���gh�����U�ß��\\�X+�\u0007�H�}S�\u000f�7��A���$�-@%�uGL�\u001b���&�\u0016�>�?���|ʥ�L�8O�^!V�\u0011�Jx�\"��\u0016����?���;�DV9�\u0001�Z8�\u001c��N�X�\r��fA[,4t�H_�-o\u0017o+���\u001c谑o�\u0007��\u0012Q������X'�\u0016��9%��\u0001.S��~r9�����x�9X�\\���P�.9\u0007������)(\"X�I[���j��8��D%��U��?\b�\u0004ą��?�`���M�wmj\u000f�%��m��\u0013���z��ˣA&�\u0017���4�Jh:�&u@ܱFjX\t�mZ�:���~?\u0003[������\u0011��L\u001b�&�P�Ŵ��7A#\u0002_S�9~[�fHcgs\u001d�\"(my��ՙ��\r,7�P�FOԼ\u0017�\u0019Ww��\u0014�!O�ۤ�m�Y\u001bq+�/qy~u\u001e\u0005)Ә]�n\b]/*��=O-\u000exW�\u0007�U� H�\u0003����/i�9/�`��\r.��>\u0016qD��u��\u0007t�x�\u001a\u0015�\u0003���A׽]j\u0006��@k腹�mF�9�3b�u�\u000fgY\u000e(��¬T[7OvZ�\\��\u0017��B�8^�\u0007�\\5����KA�\u0019�~�}g\t�a@iuS\u0013Ў;^ZL@\u001f�\u0000䉒��4����jr��\u0000x���A\u001e�\u0017����-i7\u001c��0\u001b\u001b\u0013�1Z�E���F�x�\u0017l2\u001b�N�|�� ps�K� dK�\u001cG=�[�M\u0018k0��fv�@�H�Ҵ��k�w���:\u000e�\"���\u0018#�?���?�\u0007[���r�ٟB(r\u0017�ɇ+�\"\u0010AX[����Z�J���O^w�\n�\u0013\u0013�\u00156x۪���@�\nl\u0015\u0007�=�6�6��\"\u000b�_$U���*F��%,a}E�;cJ��N��'��\r6\fG\u000bo$f7x�\u0001/ʆ\u0005\u001aG=\u0003�x~�Qc\u0004�o���g�{�֣i�b���$h��\u001c!e<��\u0010t8�q{��˗�e����R�H*�D�5�\u000b*��\u0018�'���w�.�7�A��\u0018\u0010���be\u0019�h��Óۄ�\u0014!�\u0014��\rj\b�&\u0001g�+���^#j���\u0001\u001f\u0000`Ӟ�\u00101A\rf���f�9��dR\\S\\A��M��//����\u0018\u0003���,��\r\u001e���\u0001�=���-����1I��\f�ދ\u0007�2�̱\u000fۜ?OI�����CfaV�L��5�6��H#�\u0017�'9\u0001���=�R�/w��~��\u0013��\u001f�2J]���.��\u0002�K'\n�}�-�N$�w�]���[\u0017\u0011\u0014(�m�\u0010�!X�b\u0004\u000e~�@�)��\u001bA��Ր\t��\u000fk\u000fV�����]\u0012��X��*Ri�2����aƺp�<5\u001cn�x����������ǚ��Ff�䒝�\b>�����.�U�ws\rH>yj~�;��!�.P�\u0004�ùn�0�N0vHf\u0005\u00106���L�ۣqp\u0000�8߻Q�W�b�…\u001dI�\u001a7���b�\u0017U�\u001f��D��%�\"γ�\u001c�&S�&p9v:3���=�^zL4�\u001e���߾q\u0000��\u001b�F�\f\u0014�%9\u001f����h���t�Y\n?�}%XbRJ_{jB��V�Q\n��X=�j��9.��e�!\\�\u0004���w�\u0006\u0000����\u0007�퍞*�\u0007z��ەP\u0018-��~����6��7�q�D�*!�dr\u001f�\u0003u��Am�\u00188��\u0006F�7\u0014��n7r��\u0006�oB{v��ƽ����?)!����\u0005\u001ez�R�>�g̫�\u001b������p\u000b\u0006�Vj�p�Z��2����D\u0002eo\u0006��\u0013%\n-�Mr\u0004I�7��KqG�_�����\u0006i�ь�0\u0003\u0014�C\u0001E&�Զ_~@'��g5H�#�\u0011�C�\"�<\u0002��d\\Ϋ�\u001ezN�–\u001d����ź\t'ō�\u001d\u0003VJ�kǭ`�/.�dy�ʴ��'�W����\u0014�\tUt?�6\u0001i\n\u0004bN*�&4�G��\u001eů\u0002�t\n�Rk�0\u0001�0�1#��M��|i�����\u0007\u0013�Q�\u0000��\u0011%\f�o��4S\u001e�s\u0003���럨Aĉ����-f���\u0017�Ct/�V6\u0014����UƉx���Z\t<0¡fI�\u0018e+�?F\u0012�\u0007�1Jnw=��\u001f��`,��)S���ȿ\t3\u001b�\u0017�@�\tu�ӏ�A6�\u0018L���\u0014ɗ�ݩ��M��\u001a��̕�4��\u000b��`f��]�y\u0010�;\u000f i��5'�U#���B��@f�x�ې�\u0007B��]�l�\u000e�$܋��/�x7�����۷\u0016[ۡ\u0003Ͼ?^JF4m\u0002�[\u000b�����n�%��yFtF��sh�%���,��\r�\u0006Ȧ�f+�<����\u0001��Q&�\u0017���0Z�&�\u001c��oC�Zv����\u000e\\\u0003�\b�\u0017m;Y\t\u0016�8\u001c�\f�9K0�E�~�\r\u00142\u000ePz����X=Y��F2\u0001\u001c\u0018\t�\u001c��\u0015G��\u001d�EO[ib\u001aZѹ�#u8��_\fT'�R\b\u000b�1\u001a� c�c��\u0018�\\�E~�\u0016q�D8�=��\u0014�3E�����ð�����K�E�r��mP[���U�*H\u0007\u0016�\\��Jf&2�Iŕ���\f��\u001e\u0015����a���ś\u0012\f&\u0019���Xh�����I�$9����L�\u0015\u0006�\u0016��Ԅ\u0005X�o<�\f�q�0\u001e�#�\u0018��`2�qm��{�\u0002VP�h�!�\b���ʾ<�\u001f4A���r2�dV\u001bWa��UY�\fTa�\u001a�@$�M�\fj\u0018����Q\rTl�|��\u001a��<�'y�D�m���&��O��Zn�іЀ1�2'���y�F��h�<��A3�\u0018����Җ��q����\r\u0010c����w)��l���/�7\u000f���Z�M��i��\u0007�q)��Y\u0000�#\fc2U�ݢ��}d���XB5�k\u0010\u0019JBQ� �W��r3wY��*��b��7A��\u0007�͒\u0012���\u000e�\u0011O��L�gf9m-�U�Q�'�[�>U�pݝ�U\u0012-q,�p��/��\"��jH~\\ӵ{\u0002U��%(��E\u0002(лT\bGJz���mٯ�P���ΠD\u001b������:��f0�5/#Գ����G\u001c�\u0013/vY�>#\u0001\u0006�7�^�\u001cz�'���іz�(���\u0014�P�\u001cE��.�ܐ��5\u0004Sw���P�\u001f�\rɕ��A�םA6f!�v�v��\u0000��w��nJa��Bp�\u0018���|��ƃT��a\\ˆ�aq}� �eζ��g\u001d�z�x��{�!�ʼ��֑ن��$�,��)-`_+\u001e#R\u0006�h���A�I�|�����PJ���\t6�\":��\u000f�l\u0014����v�yp!�ݗmy��I�^�\u001f�����\n\u001f́���j�\b���4��E�L9\u0011�eI�0�W婜)�\u0010\f��l��!��=�\u0013:|�Ի\u0003��7�\u0002��.o���u\u001f�QHQ�S����@iw�^\u0012\u001e\u0011�f���������\u0011�cز�\f�\f\u0013\u000f-�I�A{���R�3\u0001�W5���\u0003n�Ǫ�/@\u0000\u0000\u0000\u0000\u0000\u0000=�@2\u0016�h��jld��]\u0014⾏0��9�\u0014]��A�mrE��=��Rk$�\f\"p\u0015֓!��\u00130��I\u0000ƫ�0��F! ���{��^�?�w�Re�8�I�m��[\f������\\ݎK�y\u0007X�q�0��d\u00067��\u001d*�Ep�1�4樊�l\u0018E�N{\u0017B-\u0006]�9��s��\t �<8\u0012Q�F\u0019����-\u001c0�K]\u0002�����a\u0005�3�f��H�S�pg����f�XA��\u0015�㡻&.q5R��q~��GTZN!\u0003�m�f�7q.\u000f\bw\u001fP��\u001ck��\u001b��)��֗y-�\u0014B�]T#P:8N=��\u0000������h\u000b�\u000e�m�ވ;��Ќ\u001b\u001cB��Ш���\u001db_���\r�UD.��9n>�W�\u0012�<�\u0002�l�\u0010���)+\u0017?����������\u0000�m\n��\u0018]Ϻ�A��\u0018���{\u0011����\u001c\b�{��p_\u001a���R\u0012n��U6��Sa\\��Y�p&<���\u0010Ơ\u0013M��+���c45\u0013�J�4�0�^\u0019ۡ�gF&i\u001b�z?}o�W�d�\t\u001e\u0014��`k��`>�.��9n\u0015\n9/)\u0005{n���o@<���h\u0001\u0014� ��]�\u0005�4�Q�\u0004�l�\t��>�h\u0003;v�4\u0015p\n�$\b\u001d ��X\u000fD\u0005Z\f�NU\n����HMc7��`��*��eq�\u0003�2�\u0013���Ť�Y\u0003�(Ux�,�\u001b��\f\u0003��p��w�<]��4�2\u0015e�$6���~����\t\u0015,x9\u0012y\u001b�l�-\u001f�� �:�\t�a�����c[ļ�\u001c5͈\\�)�\t����U���z ����ԃq\u0010-9a$�*�����Sf�����\f�\u0014�\u0003\u0000\b��F\u0015�';�؛��\r���\f�D\u0012�\u0001p\t�&���Y�`�\u0004�X���(�r\u0007d\u0004�%�\u0017�M�\u001e\u0000�\u0016W�^��B\u001e�+�zN\u0011a���\u0012�^M$���l���Os�h�$<\u001a�L_9\fϓ؜6ڡ�ρ\u0007�K�\u001b�׏\u0015\u0012�(?�\u001cN\"� \u000bJ����\t^�[���|l2�R:. s#;�q�6���9{�v��\u001dA&0\u001e7��A\u001c�\u0018Ā�X�s�P\u001c:�uiS�W�v3�\u0005p�@Y:oU�Sb�)0�'6�*\u0007\u0014-\u0013{�\u000f����5gM��\"In��6�\t�/\tܓtɶ�\u0006���?5\t'��z,G\u0007�h�\u0013�ه��\u0018P��A�j�L�Ο�\u0017���Ҡ\u0005���mP��%\u0001I���<\u001d�w���Ro�BN�x¨UЊ���\u000e�B\f6��ޯ�̛|�S}C ^���H�x��,q��\f*d��L��2\u0010\u0014�ͅ��\u0007��a\u0011�쯪W�u�\u0014B\u0006�\"�\u000b���o�mU\u000b]�A�fp!�@K�{�5\b�e\b'��\u000e��:����\t Hٽ\u001fE'���\n��\u0011|*jYVl�b�A\"�\u0018؀�X�oF\u0012�v�US,��,2~\u0004{�\u0001�Bj���%Q�\u001egd5ם���� ��H�J�����\n9QOa��+�,�C8j\u0002Z\u000e<_�H��I\u0001��\"��N\u00176�]ʹ��\u001a?��P^Z���n��{\n\u0013�$�\u0019*D���__�Vg��x���;�E\u0005�C���Ns�m‰�Au\r�\u001f�~���;\u001fT�U\u001a��d2�\f��>\u0016�\u001aPJ�\rb*M�su\u0004D��z����}��\u0019���Ɲ\u0017$��J��.-#�O�c�g�b���\u0013P�����T>��#�\u0000uT䄌��J�02��\u0002=\u0014%�\\\u001d3�M!i�\u0010-0�<�*�>Jk�y�\u001dt��ι7�A,�\u0018���kZ-�ۭ�)��\u0003����6K̺)�wYR\u0013\u001f��Vs\rW�/��\f�`�m\r\"2\f\n\u0016$�]\"�lB�?\u0003CBEOUp����*g&��]楏�Ħ�\u000eꒀ��,G\u0010:z�dCx�\u0000u���\u001bN,�4ey�\"T�eT�\rWQ�* mߌ��*!�t*@�\f��n^\u0000��j���#g�\n�g̓ғ\"\u000f��\u0013r�բ{vK@�GB)����k��q�H�\u0014�A���M�\u0011�4\u0017tR��\u0000l7\u0012V]^��w��Բ��Eb[�����a��Z5'L2`�eV�j�����j���-�F��mf�7��[8�_�\u0000��8�v8���v[H@�\u0011\u0011�1�\u0018�<�� �A4�\u0019\u0000��X����b8?\u0010*\u000b�!�\"�f\u0003�9;t+�\u0000\u0014�/�#r\u0002�\u0002 �v�l�&�К�i���N\u001eD�F�\u0018�\u001a\u0000&\u0015d�dh�>�A�Ӯ%�����Zsk\r�)z��ّ�v����6M��\fXr*Ȗd�L��}\u001aK\u0019��\u0018��\n�T�&O{W\u001f\u001a\u0019ف�H,���{8�kOuf��M̀�\u0007)cm\u0003\u000f��M�mz�~�$�NQR]�s\n�\u0017� ��(iQ\u000f~��\r\u001f�ӛ{���x�jm�z,=�\u001c�\"\u0006-؊��Ĥ�\u000f�\u0006\tg7޹����r\n�t��-\u000eF�}\u001cp\u001b��@$�R\u0017}≣A4�\u0019\u0014���b�G�5��R��\u001f��r�\u0010\u001c������q�7\b�.x:!̣�bE$s����\u0010�?^��0$S,gr\\��Y)�\u0000��B0�I��󄇌T��Y\\�f�H~D��Q��#�[��;n�\u0006!�1�vD sb~�<�y����\u0007Wn�a׫3)a�^k�ɥv+O�p�l\u001a+��\tU��d\"�+kxS�J�@\u0001XT+�c�u1�\u001b�\u0004�G#�\u0015\u001e �\n^>\u0010b�\u001b1�!IO��9�s0��z\u00161�*�����GN\f�2��\u0002@��\t�}��;\u0017}\u0002\u001a\t��_tKe�\u001d\u0013�w\r���\u000e��K�����\u0011,����)�[\u000fC�9�s��>���2\u0007mm�\u001es��\f���I��\u000e&0�۸C�leCw+\u000b��ML-�(|hjx\t׹DZ�rʕ;J��eؔ�5\u000f�\r��4P����º\u001b��C��\u000b��Ñn�\u0017\u0005�o��֏}4�\u000f@\u0006�І`\u001c\u0010�o$��\u000e\\�Vf���X@屍�C92��^�b\u0000_�\\t~�5|F5\u001c\rs\u000fy��=c�(�:�\n\nօ�ozW�\u0019�����#�Q�2*Y'W�EӗU:�@��u������j9~U8\fC�Y�Is��,�s~]{*Z��A��啾\u001c��_����;t�ر��'Ds\n�\f��+J��NF�\u0006�*zXJ�\u0014‘��A)�\u0019<���c��\u0014D���I�H\u0007[\u0014��\u00148�\n7�;��]İg)Cci\u001c�\u001a\u0007��\u001f��\r\u000e\u0000M�\u0016�Mq�������WK%��l��\u0004ŹB�)�$Ԙ���o�_\u000fr���\u0002;h�T�����m�![�o\u001a�.uPJm~틕\u0017��?\u0014p��� �ώ�y���\b�\t\u000f�\u0010/\u001f�_�� �=$\u0018x�ǠfyB,�ɧ��W(��\u001f@���\u0014��\u0016*�\u001bG'�(�'�Zb�,�(\u001b�S�2�O�M\u000b���\u0001�8��9�h�YX�1~E�\u000b^��ƃ���Ԡ�\n(j�Z}㏳\u0002n9t��B�Ȉ\u0012����@�uA���҈\te\u0013&�X���i\u0001\u0012��,=�\b7����AB�\u0019P���d\u0004^kBp�`7�wJf\u0010�\u001aC����-ڒ\u0015��\u001f�jhk1��$o\u0014G���*h�?�Jg1���?�—[�\f~t��Z��S�\r���0t���B�G\u00042\u0013���Y-�CX+\f����K�����\u0005#��!\t6F���]�ԗ��\nl�\b��(��\u0018�p�d�\u001b��G�n\u0017��-���\r���9\u0007�ڤ�A��\u0004⭶_�?u\b���\u00027�_,�>��S�\u0019w�\u001cʴM��\u000b�z��Z��\f'f��#�p+UKΛ������\u001e��\u00026b\u0011��\u0001�i����}��F�k@��X\u0005?��c�\u000bK�\u0019dO��hQ\u0013�C�芇ر��!3��HU�U3�u�\u0016 v(���b�$g�)[m���C쮣o�_ٕ�AO�\u0019d���f\n��#���W��V5��Ɏ���Y��2���3j��Ʉ\u0002���\u0010�v\u001c�5Fw�|,��/R�`\u001b\u0006^�\u001d4�D���b�\"��7\u0019�k�@�2��-�\f�m�(\u0014]\u0011�~�ݕ�(\tn�ʋ��l�'\u0016�nt�i���\u000f\\\u0014\u0011b�K�\u0005�\u00188��b�z�BKXO�^&߅)\\�s�Ɍ����1m�s1�\f\u0014�\u0011�\u0000\u0012�\u0010\f���u=���\n��{\b\u0001�u�%<�ٻ\u001es�;x�a���\u001f?n>�\u0002�]?�K���$wS�����7\u0000|@���w���3�BO������\u0016����Un�����l0Uѿ��z��\\ ���2#�����\u0018\u000b\u001f�f=�\f�|�O��\u0019\f�����@,DnG51�Fh��\nf\u0010���f�r\u0015�A�\u0019x��L�\u0019�%�\u001b�\u000fꌺ�h\u001b\n�\"r��!�\u0000�9a�٣�\f���\u0013U.`����u�=d}����*\u000ed�\n�z�=-\u0014YW\u001aQ����\n�\u000b�E\u0003��uS͵�:5�S���\u0015u\u0003�y:\u0019�y3����,z�\u0007�]\u0001p�<\u000b\u0006:\u0007ip�����yb�<אFH�\u000bו�e\u0001���쨿U�ۘ\u0011\u00127F;W�]�%6\u000e�db��Q�=�\u0019��c��\u00122;,��I��� �\u0011\u001e�\u001c������`��]�X�GLZ��y.K?�-�\u0015�–EO��\u000e갂ix�\u000e\u00058�\u0013\u001ei@uזJ�@�Q\u0006��Х�]�+����\u000e��+6$G\u0007\u000f\b�ƪ\f���\u000b�ĸ��H?\u0016�NC���Y9�i�~��(�\u000fC�*��o\"!�f\u0004e��P�a�a�p���\u0014�f#���\u0015�؝l�G�1\u0004\u0002W(W{\u001d\n\u0003��\u0004���#t)u��!��\u001e��g��\u0006n=�54��\"�/�Ӽ�|4\t�Ҋ�����C\u001d4�b�\u0013Z��y�g~\r�&n\u0010:{lnl����|o1\u001b��\u001e\u0017_r�A�w�Ë\u001a��s�������/\u000e5���=���1���y@\u0006��A�\u0019����j�\u001c�7_&\u0003\u000b(�qBC>�Q\u0011�.>u����\u0011X^\u0018M�:��a����\u000f�Z�*\u0014I\u0016\u0004\u0014��o�\u000e��y���\u0015\f��U�;���}ӱ��/�^�\u0015\u0002C=�+A\u0004?�)@R\u0002�3\u001e����ۀ\u001f���nB������~Rcn\b]T\n9��@�\u0018�J\u001cS�\u0005ޏ\u0019�L���0�$��\u0000c�'\u0005�e�B�3�ϳ\u0012�a0O��J����ާ��ɠ���W�\u0011�\u0011�\u0011!.�NQNܺ�Ky\u0011Eu�Z=N&�_O:�=�\u0006\u000e�.� �!i\u000f�\u0003=8rrյ��ڰn���Zb�\u001e���kz��G\u0019������Ț66\\\nf�c��\u0018��A��̪�)\u0018�\u0018ڵ9�ֈ��\b\"�\u001e��\u0012\u0019>jo�e�Zp~8\u0000\u0000\t��0�g\u0000�\"���y�\u000en���n'�\u0018'Jg\u0015\r#c4�}e-\u000f?��ܬ\u0000*\b�W��ߥ\u001a6l�f�R����P\u0017����\u0004���D�#\u0005��4��5^�3�žd�ᘸ�ҹ�?\u0013�\u000fg\\\u0010NJ+7\u001ep�j�\u0010\u0018�s킍��w�C�P�x&�`ƃ����=�C�\u001c2�\u0006Ra�E�\bI\b3�DU�z��\u0014�Ao�\u0019����d�\u001f�!\u0011]w�y`\n�(�6/W�6\u001b��ͣ�`�>��G�W�O�x��E\u0016�%êa��\fbО��n�$�>w������,��(^���\u0005�/��\u0011)�g�\u000bv\u0017v�f����T��:0���t�?�K�c:���XJ\no\u0007�۹���]��:v\u001b�F\u001b(��?Ǹ�rA%R��~�%ݦ�\u0014�A[�\u0019����mq�6\r�������ڭYc���I1����~Ei*2\tи\u0001rh��U���f��̠/��~:I,\u0000�Њ�\u000b�\u0007S\u0012+���2i5g��s�%&��h\u0018�\"�a?{�׻r.��\u0010�Og\u000f]�Fa�\u001f�j|�\u000eF�>�?|秳\u001cj��fs�x�[\u0006�\u0016�A�\bR�2�-;��S�\n��d�\u000f�~n\u001a��\u001e�\u000b��O��>QB��f�%[�\u000bV�?�{թ�\u000e&$��Z\r�G|�@�\u001c0Y\u0007�7��4\b���V��@\u0011ȗj�b'�7s�J��\n\f���Q꺼g�\u0004��1\r�O\"):��\u001e�U�\n�n��\"w��P\r/ڃ��NVs���\u0000ʪ\u0006\u0018[���v�*oƝw�]_�@�ki�gD}y���c\f��\u0005��Gg=u'\u0011B�\bV3\u0005`��\u0014�AL�\u0019Ȁ��s�_z\\}�o��$���ʡb�MB�G�9�z��-�����CJ�,R��\u0017\u0007zc���\"h���\f 9K\u0014�\u000f��ht�����rz��W��(/�\u001cŔn-���S��!@\f\u0014�\u001a�\u0004b\u0012�b�\u0004���fj����qb�o\"4t�\u001f~!+bZ+\r�*\\QV�e94W�2�J���ߎC\u0019\r��p���*-�==b��\u0016��7͑#w\u001e:`%��\u0016�\u0014;\u0002\u00046ۓ\u000e�9��X,�AI��h\b`q��[�\fN��j~RqJ\f��(:�\n_�L��Z�\u0016_�\u0015y\u0010=�%,\u000bm\u0001LI\u0007��M�y�2\u000fJ��\u0013z��Y���W8\r�U��\u001c�yp0��-�:8��������\u0000 sz\u001a�NO�\u0003v�\u0002��U�}�{��\u0014�A[�\u0019܀��c��׮�@�O\u000e2\t�\u000b�)�)����X�U�塚CtR��rGIy���¤�\u0015�\u001brՍ.o�N:��l%�\u001f�\u0013���FY�\\ ���.�$QB����N��K\u0015��ǞG�\u00118ODx\\#\u0006sE�J���H��?\u0013!�|,\u001a��s\u0006d�\u001fA�\f�\u0019�XE��\u000bf�v�\u0006��;�(�P��W�r2\u001c���Z�\u0001*V\u000f�\u0014����{\u000b\f�'t�\u000b��I����c}��wA'\t90�iʈ�I�\t�\u00189��\u000b�&�T��֦\u000f��o�\u0005]�\u0001�\u001c��\u0000���\u0015\u0013��b���؞�'��\u001b\u00178TqJ���(>¹0��^��8bF\u00065vv���wTx���)�Ѵ2\u001f\u0011��D�N\u0001\u00178W�E�\u0003�\u0001�����Z�8\f���<\u0006��@'\t�\u0014\u0018\u000e�U��\u0014�AX�\u0019����c�^��&\r�]��?148\u00102\u0003!e©f�������J\u0017���\u001fP�\u0016,��\u0002�w#�GggyJG�ٖ+D�1 �\u001ch\r\f�fE��5j��\u001e�l�V'��H_Ym\u0003=d��M��\u0016E�;)S��D9�KB\u0012���y��>0���W4FT\u0015�4-}$o.\u0016ߩ�/N�\u0019����}6�D\u000eD%����(\u001d���Չ�^\u001e\u0019��M��\\Y�\\�Uܒ\u001d�/�܄p\u00145j\u001c��_,�YT�&�\u0013v|?�L>^\u0000��\u00162��Dž\u0003f\u0011`�p�\u0012��\\B��%L�|>%$���\u0018�9B��Õ\u001fa�V��\u0006�V�!\u001b^X�1\u001b\u0003�j�ף�L��m��\u000b����]\u0004@��/�oՑ��Og�Aa}����%�\u001b\u0016���E�\u0018O>�$�\u0016�\u000e\u001e7\u0011f�\u0013+\u0018�\u0015�AG�\u001a\u0004���c��l�\nZ\u0003\u0013�)�-���p�\r愯��\\�PԹ�V\u0015t\u0014�}\u001e�\u0004P=�x��a�\u001d\"\u0014\"Ɠ�w��ln��\fހ3�8V�k~��\u0006/�S�?\u0019\u0004F,\u0005d�+��\\��\u0003V�u\t验M�T)5̖\b����9ָ��$@�\u0005�\u00037jg\u000f̓\u0004�f\u000e�[-�0�c��qy��G+�;>�6͓}�+�\n-<\u0005�\u0010\u001c�/�eP�*�?~eD�?D��ôļш׍^(��\u0007�\u0019_ٸzb�E\u0015\u0001���\u001c�l\n��9y���e �JM�s\u0014�~�,5&3���>yP���_��l3I\u000bq\r(\u0011��\u0007\tr\u0002���\f\u001c�]\u001e��_�hJ#�u\u000f\u0007Q��0L�yF\u000f����9F󆿟\u001dN�_pc-\b�RA�`B:p�S��\u001d�\u0002�S��7\u0004�y\u0006YZ\u0018U\u0017\u001c����r\u0001F��@N�>ظ�Ui\u0017=�yZn:\u0006\u001e۟�\u0005/\n�PI\u000b�xG�l\n�\\���~�\u001ec�p^U�9����\u0014|�m�h��\u0003GU\u00064�H\u0015�������i�xA'�7��\u001d�A;�\u001a,���j�`\t�4��e�ߐ\u0016$>(��\t7S\b^�Gq�:|W��d�[0KA�lj�\u0012�Z�\u0010��Z\u0014_/��H�+��\u0017k����-w<��\u0012���\u001e?\u0016�b�Ӛ�\u0007���-\u0017Ol�<�]��uā����xM���\u0015SN:�ծ䂭����\u0002\u0015�p��M��I�f\u0004��\u0002��É\u0002�x^\u0001��u�I���1W�)\n�H����HN�$η�;\u0005�K\u0000y=k��\n��\u0012I�S�3�\u001f��o={�?(��?F\u0012�4�ʲ\u001f\u001a\"\u0011v\u001e��[�2HP]*��}��I9\f���9\u001c\u0013�\u001c��A\u0015Q0�����xK�\u001f��HM\u001d�:��\u001dJ�IQ[�qyQ��;�\f���T�9\b\u001f��op$�x�v ���#�AI�\u001a@���bJ�ؚS�\t�4V#�E'e���\u001f��>\u0006q:-���_�������C��,�> a3`���s�d����=\"?Y�\u0018�~,3�����\u0010n�L�rQy}O�\u0018��\u001a\u0012���H��X\u0005#�<�C�ڇ�?-�\u001co�)�K?�u3w�Sg\rQe���n�\u000b�Z\u0010W�?\nv����\u0005xbY&Ι\u0003ŀݺ�\u0018��\u0004D\u000eO��P^3��Bf\u0013�-�u��\u0010�$�c�\u0011q�$9.6�揱本�=����\u0019ǁ����\f����؇�@<��В��\u0013�V��F@\u001e�����F�**Yš\u001a��Ӈ:\u0017��\u0006�9\u0018i\u0018�ᓖhg��\u0018�O4NL\u0007�Zꆓ?��S��\u0006�Ύǵ��\u000b�v�+\u0012�~�L �\\��%�AZ�\u001aT��ƈ�A��\n�_K�Z���rcɭ���]��.\u0010[ʵ\u0004��ڷ�\u0012ax�j��*�\u000b��A\u00174Ġt�ݡQ+bF*F�\u0011��Z��)$��K�\u0006E����\u000f�rؘ�uru`H���xd�\b\u0011{\u0013�p�I�\u0018\b�\u0017H��«\u001bD��I,{i�M���\u0006�0�\u0018ZW�,�yL���\u001b��5��D�~y�8���\u0014(��#(F\u000b\u0017�\u000e�+5\u0016gM\u0017��U�p$y4\f�\b�b�JՅb�_+�i���YX.Tu�\u0005�<7NF�dA\u0004\\\u001c)U�nDYHP����׋mըM�y����+�A�\u001aW��$Z\u0017�)\u0011�.\t��Δn�~\u0015\u0019��\r���|=�~w㠕w�S��Lڼof�H���NF�\u000b�.���L�d�>��cp\u001ewn<�s��N\u001e%�Am�\u001ah���i=*�'�8>\u0002�m�Ay�t}��\u001dto�����\u00036\u0018i��\u000e��\u00144��n\bb~`��ՉG$�)]�\u0013��w���ˮ\u0014��`:\fdR��\u0002Wº�\u001d:��O,������\u0011��n\u0004K@����3�\u0016�2\u0005ŏ��4��B�\u00102U�\u0017�\r���*p�D�|M\u001eD\u000f\u0011���R>kp���Gr�\r*��\u0002�ߖ��9Z����ˁ�^��+b\u001d~&\u0010�\u0005Ƒ��kEp[$/QP�uB�\u001d#�]�� \u0013�j\u0002g@�~�\b[֙\r��W-^J�{ݘ:�\u0012[�\u000f�yT��\u001c�\u0000���\u001c��ܔM�����T��\u0017�\u001d�)-k< b\u0015o���{���bD�\u000e���]n��\u001d�۝0��^\"��g�6�\u0015����bH���n+���˔�䤰�X��J��O�e:�2�Ӻ�Ў�)�\u000e��������$�A}�\u001a|���l�\n-�IL1@�E����?�Ӊ\u0006��?.�M!�Ӻ�\u001c�\"�#�cAC6�\u0004}�C\r�DV�v3R��~>���d2Q}V�p4O�%�r\u0011Ά�1d^\u0001\u0004� ��\u0019�:\u0014�#\t�b\u0000�\u0007e���\u0016��̅FDt\u00101�7h�!`���?�G��h\u0003NY�sgȧ˂)�\u0005YOo��),�ᢚ`Iaa�0�d�?Q��\u0005�\u0017{\u0000O�]N����G+Xﬨ\u001b�p�_�\u001cXMK\t\u0012g���#6��r�散��<`�&��\"D�H��n�,z���L��\u0014�ӛ\u0019,��_\u0018ց6Z�\b)D��k�TV륜�c��\u001e�h7��n��T\\�n�'\u0000E��\u0010�\r[�ϰE������?\u0012z\u0006�7R\u000b��䆂dV�B\u0002���v$�A��\u001a����e]�j�\u001f�ƬȐ�]���5j\u001c\u0006D��3��_�R\u001f6x��\n�\t�@���\f��\u001b�a��7�\b<�\fK;��Qh����\u0017t�\u000e�wSq�r�Ijyz�GB�Q\u0011�>j&�Ր셄�*��\"F\u001bENZq�]�'P@ۡ�\u0000g�{\u0015���p�\n�\u0018}V�\\�\u0003�7�6���J��.�y�y\frRJG�\u0018\u0004;T����|��țK�)[�tT����\u000fx���M��u�7�bG)u�\u0018�NR<�u���Q���\u001bw�\u0005{'\u0004���\u0014\u0006;����!�t\t8܄֩:\\K�^D������͢�-\u001f~��/Q%���5\u0014�\u000fQ@�\u001d\\X�`�1İ$��[A^3�<�\u0017\u0017��#\u0019�ћG�\b�\u001c��ߖGM�\u001b��\u0019���2��,T�M�k��Z���H3�\u0005m\u001c@���\u0002zI���#n�q\u0016&y\u0015�F�\u0018\u001do�Ym��(�y�2%�A`�\u001a����a��\fp�nV�uv�玶�k���ǚ��Q\u001c�=xiUr�\"6�dL�m4���i�\u001fo�Iy�fI��6]��\u0003\u0006S�v��5���Y¹U�-`Ν\u001fcŲ����B������\u000f\u000b�-\u0000�7�\u0019��}���2�V����\f8�2_�\u000e�\u0000��6[u��q*\u0016�A�e����*���\u001c{qU�\u0005\u0013M�B�xs�MZV\t&��c߮�4��/Yj\u0001�z�R`\u001f�&i҂�N��C�\u0003��*2�(u^�N*��a7a�9�j��ׁ��1�4-\u001d���X\u0000}ٖ>�7�A\u001a�\u0017GuuP��F�,�\f��Qr8۱aD!��.�\u0006���F�60S�T=�o\u001e\t϶���4�\u001bc���yS\u0003\u0018�Hf���7�#(�~�)BT���\u0005{4�E���kt\u00031����!�#�B4�\u001a���|��\u0019�mb�‚w\u001cmb�\u0002٦�*��1�MwI���b\t�~#0�g�0��\u001aVV\u0016��8\u0017\u000ftU'00����Z\u0011z�\u0010] \b\u001b�/i��\u0016�\u0007F\n�*!\u0014$�y;C�lk5�[�L\u0001\u0001�\u0007W�5�ٵ\u000f\u000fBɕ5\u0003�v��~��\u0003�\u0002Q���\u0002T,����U�C�e�лi\u0001jZ(\b.��䰅�\nI�\\\r��Ԩ�RC���Qq��j�0�&\u00041��E_Ss|<׼�.\u0019�\b\u0005��(���\u0010��G�L���\u001a�\u001e6���#�9��I�Lf����K68 ��QO>\u0014�4f��\u000b���\u001f�_�Z����jLA*\u0000ɺ�k��\u001f�U��\u000b��đ\u0010��x�Y��\u0016��\u0000\u0001�2�6��\u0001����E:��\u0002\u0019\u0010^2�e�������\u0002���fH޿(����T����\u0013E}\u0015�\u0012�\u0011pZ{?Ǽ�5LSd��]��\u0018m\b5���ByM��A;�\u001à�M1��9�Y,\u001f\b��69�\u0015k5�~�����Z���?�\u0005L��Rl����O+\u001bz\u0006\u001e��4� �Ǣz\r��0��Ŀih���A������\u0000�t���\u0019\u0004`8�o�\u0004h\u0012\rK\u0002ܕ\u0019�����\u001a�ךe\"�-��)������K���4p���\f�_��*�K��\u0019ѹ7|��AY��ep7�|+�=*^�����/�|T�F쿅�?���\u0013`����\u001bj\u0012\u001b�j3�j�.\u0001w��\u0004���Y�B�>:��u�97�9�\u0015Y<�׿�΋O\u0011�\r�N��;\u0015�\\\u001bE�ƈ�&�Q���'c0\n�0�3*A\u0012)\u00131\u0005�\u0000ʛ,pII\u0007lS���\u0003*����H�P�!��6\u0001�I\u0003o��wv_��`�A-�\u001a���X��9i���|*u��� �W�\t\f�\tF�,\b����\u0003���K�\f�R��]�\u0012\u0017��g��I�lxq���puv}B�\u0014S��g��f�z��-�Ͻ��ڠW`�R>��ch�d��>�1\b�3#\u0017��\b�ټP3�°\u000b\u001a-A\u0011w��WQӉNq�I@�F��\u0001\u0000O׹��\"���#�F���w����r��\tO�8(\u000e\u0011&\u000b�p03�\u0019\u0000���ѫR�xX\u0012���\u0002~\u0010ɯt�\u0002\u001e��ht��w�Ѻ�|����\u0015�d\u0014�՜��*NJ�0�׽{M�\u001f�_B�5�x��w\u0016�XQ�'�-\u0014\t}PG�-���U�$\\�5\r\u001dĔy�p\u0002T����\u0004!jm\u0000\u000e\"ţA,�\u001a��L�Ct����\u0015��� ع0�u�\u0002\b��&\u0004�\u0004\u0004�]j�4��Mh��\u0000�G��'��h��?z��W�DX��U�\f�/I��\u0001�\t�${-?\u0018e�6�\u0013��!i�d�&��\u00197���ס��{\u000f]/\u0012�]\u0010���a�Q*���\u001dd\u0006�\u0004\u000f���������v%��@��C(i;m�S.�t�\u000epl\t�8dN�o��T�2t\u0010\u000eC�~�jڼ6�\tB'xyh�� aX��D����]�p*R��1�e@�\u001f�\u000b���\u0001HE�GW^<\b\u000e�\u000f���\u0003>�f�����Њ�.�U\u0015 ���\f��LE�#\u0017E����偄��\u000e��\r)�|�N\f�9IQ,�\u0019���\u000f\u00124����\r����:-쁣A �\u001b\u001c��L�D�#��/\u0001\b�鄱k�c����/zpH�\u000eb,��`���i,\u001b|����w�T4�\u0013�Z����j+D!��xPsq\u0013\u0012J����\u0006��u����\u0011\u000b�\u0019\u0013]�$Q\u0017�]�������z�\u00134\nר���`\u0006ԆDž��菡OBo\u0016�\u0011E��Ͱ�u\u0016�����pB�\u0006b#�l�\u0000\u0002��(\u0004^e\"U��\u0015*�E�Iq\u001f \bv\r\n\tZ��\u0000[��Vǃ�K�Ko�\u000b\u00000'��t0K��A>�\u001b0��LɱB\u0007\u0007�\u0015jԼ\u000b��A\r�.\u0007���\u000f�?.����^�_\tv��\u0015�-�G��t�\u0011��b��8ҿ\u0012䰜_��e�=�\u0013\u0016\u0003JR^�����\u0012lO *kI�\r��9\f#z�XiW�d�\u0016{�m����� d�]*�J�\fʤ����\n�jZ�\u000eb\t�\u0016}��e���+��2=�OrY~�3K�\u000eN�Yg��Vz���Mh�K�����%�-l\u0015޴�1{y٤�ѧyh��#��*�S�PfC4�Ǩ.W)7Y�`��\u0015$r�^>�9o�}sM���,�}������}�d����\b�*<~t(�;�Qb�?>�\f�\u0013J@���Ǟm���1�F���ӣps�.�\u0005*�Ԫ���\u0001�\u0015O�\"ɣA-�\u001bD��l�\u0004��\u0006�i�T����ϼ�\u0014�I}�7��r,׈3����\"�֙�\u0016\u001f\u0006w�\u0018�76\u001a\f�\f��>�R�ko\u0016\u0019\"j>%Զ���Aǯ���\u0007B^ܢ������'�\f:�0��\u001ae�\u0019�RTo\t���.\u001d/j\u0011�p�Za\u001c�} �����x�\u0017���Vq�&��_��F�egǛ~ǂ\u0006�/\u001b\u001a�c�WAV\u0014&�L߹`\u0003�@����m����\u0019@L��.�z��QM���S�q@����zc�`t�J���\r��\u0016����\u001av��\u0017_�#�Q]+�w\u000e���$��0:�\u0002�6a+@��]-TU��,��6�\u0013���G�\u0001���3�\u0012�\u000e�v�\rZH�[�A\u0013�\u001bX��L�Σ\t+VD\"�\u001a�\u0016e�6�*��:�\u001e\u0016�k^�,���m�4\tZƴ\u0014�I@���9\r��3gfV��(ӴE\u0003�.�j�Iv���o�=�\u0019��jx�5�{\u0019�j�@�v��\\�ӼX.�ׄH];0��\u0018�\u00114�To���N�����,\u0005�ZԎ�S��k���y&4�|`�A�c�X�\r]h�\u0004u�G\u001c��\u0000U\u0002�\u0001s��\u001c�`c�����˗�\u001b�tb�*�����\u0013��\u0010&\u0006����V��\u0004kc\nd��y[����������\b3��\u0012ȏ(�U!�3������І\n�\u00118)Q�-��\u0019���b�A+�\u001bl���\u001fOM�j��~�U]~�dt��#ӌ`�6��%�O\u000f�v\u001d�!\t�p�\u000bQg����֍�m _�\u0013!t[���7�1�]����\u001f��7b\r�e;v�\t#����Wk\f�Ht[?o|:�\b43�\u000b@�Zf6\rj\nJ��d��-��B�,�����d�\u001e/\u000f�?�ˡ�鞷:s;�?���7\u0013Q�D�\\�o���I۲��TC�≛���\u0013Ӭ\u001c@2_�H�LbX��Y4uJ�Y�9~Yׂ�5��]v+�>�a0\u001f\u0015J�|�\u001b�D�\u0007M���\u0012p\u0012J�����c�\u0017�e�\u0018�p}h��}����C�~�\u0014!�qb��[��\nh�d�V�L.\u0019T\u0002A��&H�=�A'�\u001b����-M\u0014Cfrbv=\u0018a���\u0003�\u0007p�{z\rC�T��\u001d\u0015�2}�quЦ����k�.$�co�K�� �/=������\u0018!Ñ2�\u00154��)u)�R�8���\u0002�40�6��o\u0017�T�#����_@���XpV�Ph�J��ɜ�bX�*Z����}9��|�3�78���������C0aeB�g�WN\b[\u0019\u0007$ܥ<%a/�N�@��<�hV��UTB�,@]�xj�F3\u0002�_\u001f��+=gH\u0000\u0001�]$=�Z��}�\u001b\u001f*\u0012���k�dV�\u0018�L\u0015�a���\u001b���ӚvW��V���`�\u001c׵��q����q���\u001b�9m�#X�L�ZZ�$\u0005\u0012<�A:�\u001b����bE�\u0004���(9!خ\u001a\bg\u0004��� \u0017\u0019��ϔt!}Yl\nZ\u001as�|\u0015\u001c�t:�t��y�+v�\u001e�\u0017��‚IEfC���d�'�r(����1�Ł\u001d\u000b\u000fy�݀^\u00158���������ۊ�\"��\u001e�}�-`d\u0001�I�U�\u0019���\u001f�!O\u0015h��h!�HQ65\u001c�\u0010��68���ӟ�DŽ��}��d�|սPڔ�\u0010\u0007\u0005*�ByH;\"\u0010����1V0�;�.g���\nb\\���!)�eP.T\rҵ1\u0001\u00029��?�c�♣�\u0006p��0g���4� �.��}4�ϝ���\u0017�g�[��T��\u0016?ҋ����=���������>�9�\u001d���7n�\u0005�WK����R&9�A2�\u001b�����Gj\u0003�A|P�g\\��\u0013��C^�\u0013�\n^�\u001bJ�$,0︄R��L��\u0016�\u001b\u001a�\u001f~�&�\u0018/]�����\u0006I\u001c�<�7p@IRnѰ�/\u0014�~7����#8\u0010\u0004W�K:�j��j�'��\f��S6<\u0018���7��k���[�\\�L�P��R�G('���=�t\u0011���\u000f�^s\u0006�ڞGo\u0003S�\u001b|��#�-���?t�\u0013c�'�T�1��N/��\u000e�b\u0001_��ѱ\u0002\"��%���i��Z��\u0016;\u0016�]^*\u000b�\u0017�=<�¨��\u0016��m�j���X�H�0)�\u0017x���hT����_g\u0006%�a-�\u001c\u0019��\u0017\u000fZ\u0015\u001e\u000b��~*�i���&^�9hyn.�\u0007ő�I��z�\u0019��A�\u001b���X�7�\u0004�8�mi�zM�7v�\u0011n�\u0007ͱ���*�4�mU`f����<�\u000b�\"尫���d�[%z�}��\t��\u0001\u0019\u0012-�\u0019� �~��[/��r7�^n�H�\u0007oo�P�\u0000^�\u0001\u0007|8\u000e�\u0005},�qR�\u001fw�y���\u001e\f��ˏ䡃\u001b�FG\u0011\"\u001a�o��j\\��3\u0006 3G�\u000e��6�_C�}N���\u0000�Y�!��,�\u0003���XG~\u0000Sލd��v�\u0013���QDY��Ź�\u0012Re��}�'�\u0012���U\u001b\\��A ����J�\u0006�#���|R��q;J�� 4϶�pv/�\u001b\u0007�L�a�\"�\u0000��\u001c\u0013�?�\"%\u0003J�Pb���b�ԗ�0���8�'\u0013d?�#(ɱb�,��f�<��\u0014+!��\u0018�W\u0011.�9\u0018-_�!dOX���N��]�����&�s#��p��D�����q\u0003�\u000f��Y����n�\n�\u0006����ʣA �\u001bЀ�N�)����\u001f��X\bUfr���)�ZWu]�\u001d�T�J)s\u001dKjحe�>\u0015���ҟ�\u0018�\u0011�3Ȍ�\u0013�\u0018�Ǯ�ܧ�\t\u0011g\f�0�t�,7㓷i��M��\nm�D�Ր�4n7�!a�F�c]\u001c��+\u001b☴��O�$��w^[\t���+G!\u001d�\u0006\u0018`q��߰�N0��<��ռ�n@񶁿�\fR4=�r(ctT:�\n��i�S�`0ۊ?���fkl�`�u\u0006>�\b�F\"��Y������%��V�y)�ă�hM\u0000\u0014\u0019��q\nqq\f\u0005�i|Z�\u0001�\u0004IJG������a$/\n�`$����Q��\t~�r�\u0006݀!s <��?8�G�A\"�\u001b���\u000fH$\u0013�k\u0005�b)���{���u��W[��[�[��+��N�]�nͺ\u0014���0U���'�SXhm��Z;\u0006t&����\u001dZ�G���9\u000eK\u001a�>�D,�BM*jA�H\f>L_]~b�<��#�l�Ck]�K>U�%Z����%�V�Q��8\u0011\u0001\u0014_1\b��*�>ba\\\u0016�\\�/m�ң5^\u0001U#��`~4Hc�'\u0014s_\f^^8�m\nU\n���\u0001`�b��s��'>�8���@T�\fD�Sw~�IዖQL�{mr����L���\u0015!@Lc�rg$�Ε�Q�tM\u0007�N\u0015\u001c\u001bO�\\z�\u0000\u000f��)m#L����;\u000b�$�?��\u0019-�筟��a�A'�\u001b���M�⾞I�\u001e:T|�3�=��h\u0007���?����6�o�s\u0019\u001a�\u001a\u001a@��~��U�\u001d*\u001b{FEi��\n��\b\t&\u0011�dϔ��ՌQ�(\u001e�8l\u0001��,\u001d��\f${��c�OPv��P!�C/y���g\u0002\u0005!\u0013�\u0001)�w���BK���T������\u001f\u0001��s��+�k\u0002�-5��\u0015�`Ϝ0\u0013U�,��7V�M>\u0003f@D��_U)\u000fS9�+�5Ң�d�\u001cΙ�ZH����\u0011���zL\u0010zL�fA�\u0004x\u0019�/��q\u000e�\u0015�\u000f�\u0010�\u0015!J\t\u00154+���w�O�Du�xz���ґ\t*�z\\\u0016\u00051�09��MЇ�\r��^,�]��F8��\u0019�\u000f\u001f��\b���AO�\u001c\f���\u000f8�=\u000f�\u0006�DN�$���$=�\"���{�� X���d�\u0006 �§G�\u00053\u0010�\u00045S���et�\u001c�2��\u0002�omCT\u000f�\u0005�|j��3�G��B��1^�+�:�lMK��\u0004i\u0003��de���9늌�I:�������U\u0001G�\u0019\u000f�\n\u0010��GO\u0001M�q�nr�J���ǘ\tJG|��\u0019��^ �\u001c��E�Ű��x\u0007hY���}\u0003k�B\tMjשŐ�Z^&�i\u000bm����H�:Q�\u0014�c�\u0018֯�[戋y�\bp��A�2\u0014X�b��v\u0017i?�VB�\"H:\u001f>ۑ@Д�k\u0002X�𞭷�\u001f\u0000��y˳�TE-����L�7'�&��.�:\"��9�ID%��DP\u001b�7��87�}��\u0018������/\nh\u0007�\u0002�\u001f�����M�A)�\u001c ���\u0010�#3q�}ji���Oܺ�y��XLZS��Z�)�m+�g�,RM|\r@�%�|Z�ޝ�7����d���XT���ң����H[o!���o\u0000})��\ti�\u0019�;\u0003�!=�\n�VWɾ�R~\u001a�X��t_�\\F��H\u001bgʍ�1�M��O�|cl�\u0007��\"��\u001a�\u000fS���\u001b\u0019�\u001e\b�륵y���\u0017��npLo2��\u0017KgP�ܿ���8�!����d\u0017��u۷��K��\\�\u0011�WC��Vb(k�v�L�\bU��}ʃ��\u00004D�\u001d�3u�$5E\u0005u���\u000f3LW��2:��S◧�J�wڗ�gx\u001c�M'��=Ώ�F��\u001dQoQ1��i6�\u0019Y#q�A\u001d�\u001c4���\u000e\fp��y�\u001c\u001d\u0016�,\u001e��xn�T]^e\u0014��Xq���~�T6z/{�0�\u0007(ys\u001f\n�<\u001c\u000e��\rg���=�'4vz�\u001b��ˁ���\t|�\u0006�`\u0005���)��v�1]J@�WȠgz\u0019�?��\u0004\u001c)\u0012jZ�h�\u001fh\u0011\u001a熻I\u0019fY���o��m�l�|y_In\u0014��\u001d'`VoJ\u0003j�H~9M�i�q�g��E��\u0017��]�\u0018Z��=�6����O\b3]]\u001d!�\u001f���\u001a4DD�6�<��#/���o\u000f�]b�~–\u0001��ȧ�P��\u0018���Z�{\u0000j������4��P�T��>�(��Ck��\u0003faC��!�]o4�(Чo�A\u0016�\u001cH��M�3�.d\u0010����\u0019ek�W�qY�U�\u0014\u001a}��m��\u0014\u0011\u001e�e���\u000fZ��8I\u000f�K|��-�z� ұV����jc�ˏ�� ��\u0003곅�i7[/>�\u0001\u0003��Ku\u0015��Sx:HԞ\u001ab�i�9�\u0005��\\.�K\u000e��N�\u000b�u(JL�\u0013P7�g:>��T���\u0017�\u0005�t�\u0014����|\b.am�м\u0015.��\u0015��-P5���_dm�Ѣ��(Ͼ�q��,\u0000Ы&u\u0017��'(.��W֮�.~�9�g8�\u001c\u00142�o�BEǼ�\u0014r����:�Y�]�A���y�\u0017\u001f\u0017X2+Mtn��\u0016���aA�BnF����C�z�\u001c\u0002�A-�\u001c\\��6VI{3I��XZ��]���idED�'�D�3(�%�\u0011\r\u0011}\u0005��ǘ``����$�G�\u0005�h���{ӭ-\t�H:G\u0015�\u0015\u00056\u0012x\u001f��.K�z��L\u0016*���s6�?��\u001b�rA�����k\u001b�\u0010�\u0014��\t��\u0000a��{���\fNp�ӷ-����:�\f\u0002|m\u001a/�.r���f����\u0016���l�bGl(ш��\u001b޷ɱ���&��gi�Q[P@+��7���\u0001�01G��A=�\u001c����bT�cxB\u0001-���l��KՊt�*�5[���:Ao�4U\u0012�\u0007C�{y\u0015s��a��2\u001a��\u0019)\u0007��V4M�,Pps��>뫳�V0Јb�����v��,R��T���<��\bf�k��Hg�[ɀ-W=k�\u0002\u0002��އ`�����\b�;��ߚ�u;�_H�&\n�ָ)����\\���\u0007��\tdK\u000f7\u0013��\u001f�\u0000`�DB!�[n����\r��\u001b�ocl����*�۬Z&�\u000b���\u0015�l����Q�+\u001c�s��\u0006���%\t\u0014\u0010Y�S�0�8;Տ�/���\u0007\u0005��k\\#�yG\u0000V�e�BD�yFs\u0011\u0005\u001e�ÝJ��h\b�eǻ����`���/�2e���\fx�����\u0019�+Kh\u000f}\\I6�A\u001f�\u001c����f\u000b��r�D�n�R9ĭ�\u0000Yi�\u0014��\tگ[6z7�\u0000S�}+V����J Ό��\u00102�(��\n�]�i9�Zc\u0017:��%È�W�\u0019`�q�tv���SC=L�Ƥ[�v-��h?\u0003\u0000�2@M֕�u�\u0000\u001a�.\u0016�>�)q֡�\u0005�W��{\u0016.ۀ�&���vm�\u0002۞����\u0006��Sm�4�g,�\u001b���O��O�\b�\n��[�%r��2�&\u0005���)~������\u001f\u0002��O�\u0011P�nF�Y��\u001bO��z\u000f�qlD�\u00043�\u001c�A���\b�;\r�\u0016`�\\�`r�ٚ�\u0007't�\\�tXZ�)�\t\n8\u001f�o�\u001aK�v\b(ю�+��I)�A4�\u001c����mqb(�i-'3�j\r�[�Ǜ��\u0011���ZDHyD�~\u000e�x��\u0003!\u001a\r1�\u001d�a���\u0013�EY�}Z@\u001c�\n^l`\u0013ާ�>�)�q����p�\u0001�\u0016�@oQ\u001dÖ&k���*QЅ;i�u��!߶���\u0011�q�r\u0007zv��^�E�\u0007�\u0007�p\u000f\u001f��cu����o�-'y8\\n���^\t��Zp>l�\u0001v�'^\u000f���ːz�Խ\u0019ht\u000b\\��q�\f�q��-�ˇ_\u001fb�?��o;%g\u000e��cb�)u�{�\u000f۪�d�\u0018>e�X\t�����\u001a7�\u00079R4��)�f��\u001a�z���(�a\u001a\f\u0002\"t�N\u000e0V�FC�IP�gq\u001b�m-5z����_�p\u001eS\u0007�.����wq'�AN�\u001c���X��4���\"��\u0014�OS�!�\f��\u0005/�o\u0007r��\u000e�,��A�n�=�T�W�\u0006��R<��\u0017�\u00135���\u00168t>\u0010\u001a>��k}\u0004�\u0015��\u001e�\u0007�)�y�\u000f^ Vti�\u0012����U\u001e�\u0007����6s��D4&��s�\u0017ؔ+�\u0013���%*M��a^\u0013{K��J�\fq�`�]\f�B���\u0019�^\u001e��4�HV\b�bW`\u001d�`�\u0004c!2u�q���\"v�\u000e�\u000f���~_.��-��b\u0019��\u0015͡�����{Lx�L8��\u0003 -%�F9ö�n�8��ѧ�P;\u000e}I1\u0004�χ..�'�߻\u001crj��g����T�V\u0000�B#ֲh+b���\u0011\u0002_�N�=��`�\u000b�U؆N\n�|2�}??�N��(O\u001c�\n�\rlY#X�\u001f%�b���A\u001a�\u001cԀ�XК{t8��\nC�\ngL�즞t���\u0012G�F���c֦UWU\u0017��>��֦�?�䙥p���r�U�����sok.G\u000f\u0019\"k�0���B�$�T,3\u000f��2�{K�J�}�Y��\u001b���\u001d���r��:0���=8�׵���\u0000�����+T\u0019\u0010%�\u0004&3�v�y�E��$S���\u0015\u000e_\u0011�\u0004��[�!G=��^\u0013U\u000e�\u0015�~�\t!_�{\u001b�{\u0014ϲ��׿���x{\b>�|\u0003�gYg/�\u0001�\nR��\u000e��{\u0013�-�F~��|\u000e�K7��8u\u0005�K��|����1�Wۊqk���|�=���iJ�+2\u0004������\u0005ԉ�_��A\u0019�\u001c���b�O���y��\u0016v���Y\u0011pբ���w��L�OΓbl�4s�*��\u0007}�r~\u0016TB[$���\u0015��W�\u0002?JE��\u001d�k\nb\u0011��\u000e�h\u0015�\u00011���$�v��\u0001��#,X�x�4�|����P36���>�Qڅ\u001b\u0012/��79�Z�(�|22���V�X�\tk_9d5g3�\u001e\u0018�¸^��jb\u0019��\u001dH\t��w��\u0001\u0002(����@�d�iq+����_��� $u6\u000b��j{D���nxB\r�B�;�<~�T��۫�\u001b��}�d�K�nN�lF�ŋ\u001b7�#�u|���f\n�HU�\u0006�#ٮ�7YS���頶��A$�\u001c���X���Au�S,����X\u000bz0��&2b���`����Y�\"ͫ��$��\u001f�}��\u0016\u0016�ޑ���\u000e�#J)��Q���V�~lB�\u0010y\f�,\u0016��2y'��p\u0006��\u0003���\u001f^��u�H��<���3z�(ތ\u0010��x��9��\u000b�\b\"�`n���K�����!������K���*�*�\u00027%�K������Z��b�-�\t�8��7�Y�\u001e+YC\u00189b�]3@�u*M\u0003�e�XO&�~��\u001d̆&U��p��.��.�4c��I/\u001a\u0006\u00123�Jlh�\u001d\u001bK��۰�W�\u0002��W�\u0018O��P\u0016��_�����j�!/� ��\n^\\\u0018eOɣA��\u001d\u0010��}a\u001c\u00134+?nu�\u0016�_�O[,\n\u0012�\u0012���)\u0003o�#6��\u0019�e�f��m|\t�'ҩ\u0006��G/�\u0002vR\u001dvj|�\u000fY+@cN�����ㆊ�L�W�*�p8\u0001�.F\u0003�ˎ\r�H\u0015��|B�\n\u001a�K~\ta�c�\\\u0018��J���Ȝ\u001d�\u0007���G���h��zs\u0001b��d}��v\u0005ʺ�<�Ї\u0004�E\u0012W�mr\u001fL��H9^\u000b��QF,��#��;\")\u0014����*������'x���#_�0\u0011��>\u000f���&d�%T2_��k��B\u0011��y��ZFW;���Kٯ9��\u001e/�\u0015�D\u0017�K\u0011����\u0003,\u001c��nG��E��>n\u00115��\u001d��\u0000��\u001b1)�9��Y\u0018�I\u000e�C\u000fּ��Bn:\\IP��UnM&b�Źi�\u00146���^�3�J��\u000f�����d\u0001�\u0011\b����S��\u0019A�\u0015��\u0016X]\u001e�2+��)X\u0011�����{:�h\u000b\u000f\u0010#��?�J_f�gi�\u001b`�腵p#\u001d��|���'1\u0019�����q)+��d�\u0007���\u0003OQq�5:+>�7ۺ�\u0014�\u000bkr��V�v�u�����*/U�}�:������{�9��!�`�\u0006h.3���A\u0007iO���`e�Gi}?\u0019d��R+Mz\u0003��\u0005�N�\u0014Ǵ\u0011=B�`����\u0014'�C0��,��-���’E\\�\u0003���*��>S�QZ^\r���9�>I��[�?5i1����Q;��\u001e��l�\u001bW앏\u001e����3_\\�\u0002\t\u0006mj�.�GkT��A��\u001d8��}a*\u0004�DZjL�#\u0017���o�\u000eN��?F�&�tr�c\u000f�G[\u0002�\\�XH\"��K���{�\u0011g$��\b9�/\f]��R|KTA����q�A��@\\��j���\r������tm@���D\u0014�F�+@H�b�D�~7�\b�H�C'\u0016���/V�<�NS�łY����2�4��DT����\u001c�+�����\r��\u0018�_+\u0001�ވ\u001bj������|\u001cX-&NC����\"c�\\ܧ��\u0000��\u001f?O���,�\u0014�Ϻ�{�=\\���JS{\u001c�o��S�8���_Q�m�vĦ!��U�,Y=��k�M���b�><{�I��\u001a`����\u0003*\\5L���m%�\"��*�ϿL��Ֆ�6�H�T�`\u000f�'�GS��2�f8kP���\u001c��\n~t�\u0010p�t���8J�Ȃ��\u0013���\u0005���'\u001c+\f��\bv��hݑ_{N���-��Ak�\u001dL��M�Q�&ޑ�\u000f\u001d��\f:�\u00153�\u00059q{\u001eH�ѹiX\u0007��9B=\u0014�:'�,ps:{�{��j�\t�\u0000�)ړ!o,l\u0012�����)_�\u0003`=U擽�8SC\u0010h\u0000z��_��\u001e��؃Nר�9$Q��H��w����\u0018g��\u0015,�\u0004�)�C�p���\u0019�\u0016}��ds�������@sʃڣ���P���\u0012���R��QZw��J$��kH k:�\u001dK��l\u001f.��4D\u001a��\u001b�x���+�\u0002��FL�\b��$\u0015}J\u001b\u001d\u0002�\u0015\"�6O�\u001bZm��}�WB,\u0007^/�������e�&m�p\u001d�F{�oUFJ�~���ٳ)x����h\u0015t��,�A°��-:*��\u000f�G�\n��[n�\\d~����\u0010��2�\u001c}��S\u0007�ɕ��k�DvT|����\u0001�\u001a�=�\u0015\u0000�´]��A6�\u001d`��M��7��˂3�?�x\u000e���c�������\u001cA�\u0019~V�8��_�\t���W�Ǟo��I��þ$\u0015�9s�e}�U��8c-H6(:E\u0000�ٞ�.\u001f\\�Ύ�\nb�݀:�z;ܫ��Cz���\u001a��5\u0001�a^K\u0019\u0001�ֳ`\u0013{����s���R��Ge�A$�\u001dt��M1׎�BB��\u001bB.\u0018m\u001cʈ\u000f��9\u0018\u0003\u0015��a�u��w�g1�m;*>Q��zV��e�{����\n\u000b\u0012\b>,Rz�3�\b#[kۯ�oZ��\u0014��0�m�]Sr>��%@��\u0017��\u0016}�)YY=P0\u0007���\u000eT?��v�6T\u0000�?,�\u0007w��U���vf\f�(`�\u001dz|�*w#���\u0017,i\t-����\u001d#˄\u001d3\t\u0011\u0005#\u000b \u0013˚�\u001d�d�²�٬W@lu�hoHu��\u001f#��iB���\u0004s��\u0004��A\u001c�\u001d���MW��?hЍ�P�\u0019vd�|�\u0003\r�\u001a�8�';�W�C�\\89L��*\u0010�*\n|�~ت%Y\tT»+4MJ��M�\u001f��l��+� �F�����\u0011P\u0012Y�K�d�\u0011F�K\u000e�J�\u000bg\u000f��\u0000��:B\f�������}.W�\u0001�gef�Ž]�l\u000b���,@FT�9�c��g\u001f;\b�\u0006ap��/�\u0017�9dSe���>��[�Pq���\u001d\f\u0004ٛ��6�\u0005�����_��&��Ǥ�Nɂ�\u001f�\u000e\"�3\\Mq�T\u001b^�޴� C.8\u001eB\u0016\u0004��olh�K;�q����G�\b�\u0011�˴j\u001a�\u0019\u0007\u000e��f�Ήb�\u0013͓\u0003\u0018��U��)@�d�AY�\u001d���L�\u0017���D9�\u001e�hz><{K\u0017Z\"\u0010zX\u0000�Lޅ�v�Z:|Uŋ��:����R��o\u0014�`\u0019\u001f�3\u001d[\u001d���f�I~ejg\u0018��E�da.o��S�\u0005Ou�\u0000����\u0007YX$�xK�`8\b~�V\u0013����,`Jo#EHT�\u00149(8T:\n�䲔fO|��Ln�U`�\u0016'���\u000e���O_�\u0001�4�\u0007�K(�\u0019�}b��azE��W�̶�\u0016��(S\u001c�kK0>ˇ\u0014�F�DFS�e���<��\u0004˱��&��gF_z5x�~�+�\b!��Gv�j�\u0016�Fx��%��^'��������g��\u0012�\u0015J>+\b~\u000b\u0002^���iB��A{�\u001d���M{0M�|�\u0006\f\u0014`��T��؆��\u0012ӊ^Hl�*�t�����6�\u0006(iM�x�\u0003ݽ��hGgej��~�j\u0014s�Ȧr�`����[�b| o|L�\r7=1˥^�ΘKTy��ZѠ@�n�oҥ���iѤm�A7MV��g� �\u001eh$�ْ�'��FQ��H��\u0014�!���ن]$�fw->j�q\u0005\u001e��$\u000b���\u0018\u0016\u001a]��3򋩡�D�C�o��﹫U�\u001d��f�\u0016�@i��j�؄�҆�M\u0013���\u0015��:�I��Ʈ�s4��F���VԶ\u0000����Z��y�5x��\u000et\u001es�8�#.\u001d1C$�P\t�W\u001d�R\u0013�䛡S�p`�=ؿ�\u0011���p��&j�@4-sѢ��!�\u0002��yY��)\u001fJ�\u0016a��E�i\n75գ\u0007�Ȅ�\u000b����+�8)\nEˆ@\u0006�\u0005�Ak�:��c��I�B�\u0005>\u0004�\u0012�A�\u001dĀ��\f�\u0006�E(\u0012�K�+5b��ն�P\u0005M\u0001��o���\u0015d=E�3\u0007\u0017��0dC�L��B�\u001b -�\u0006H�\u001a̩��ۭkyE��o;WƑfSy�p�\u001b���=4�Qet$Vޚzε�ez;G[�a��\u0015�\t!-��;�ҵ\u0002\u001bK\n�u\u0015��x�3�i���/��d�4p�'��\u001d�98�/m�n��\bך.!;�'!\u001f��]�FK�\u00147\\�v���H�q�,f�M�uL>��J�9�zg��\u0002�ա�Y���Hh�\b'�k��f-\u0011�玮9��+�\u00156��H��x����8����Ҵj��>���p\u0010�-p��Q�Et7���MG\u00032B��\u001b\u001b1[_N\u0001�\bƴ��F-�Y����3�����\u00106:���\u001eծ�h�%��+\u001a�Y8\u0019�~�g��͖a!�C�3�;\u001cۗ�U\u000f�|�?�B�J\u001c���LZ��p\u0012�\u0010UG<��$��/�Kq촨��\u0006�\f��\u0013������~��\u0006�;\u0001�d2K�D\\��<�=�1k�Esc\u000b\u0002�Ai9�c)\\}��4g2�/��\u0001����U\nT�:1�;��i�ڻ\u001e\u001c��ǀ�\u001b��T�B�A$�\u001d؀����\u001e^�<_�) IK�:@2n\u00025�\u001a��ݎ�\u0014D��}�\rɏ�b�CP�4GW�\b�����v\u0006���QP�mN�V�>\u0000-�%(� ���+��V\u001f��~�J�NX\u0016��ϒ��g\n�,HG.\u0017�v��Ջ�\rEF�\u0017g�]�\u000f\u0017F�\u0000G��_?V��X�{x��\u0000\u001f��_f\u0004�\f ��>��\u0001��L�<���HwB��o�\b�75�,\u001c�\nP\u0010�\u0007E��7����)\u0012(����ˌ36ԏÕ�\u0019��qc�QF�޲y��+�^�!aO�_�R����U�4:�B����Q�x\t\u00121b�Y����]9o8\u0011�靭re9�e�┱;ٲݣA\u001d�\u001d���\fO\u001eua�>\u000f���\u0006q)A��\u0006�#mQ�]V4\u0016D�\u0011�'�ο:�����N(Y\u0000\u001e�\u0002f��f5WB� \nZv~�di�bM�\u0004ork�G`��s�7B۵IL\n��\u0018\u000fܴ��)��O�4c\u001fd�dW���Z\u0002K[�A�\u001e\u0014��ۺqlq�sq�(�-1�¥�w��\u0010ED�\u0015�w��X&&o\u0004��\u001ci���\u0013`u��:�_���d��C�z������g\u0000_&��Jι���޺LOA\u0006eqQ\"�}\u000f:��ٟA\u000f����Br\u0003�\f�\u0006OS�n>o\u001a�)k~�:D\u000f�/�\u001c�i(K^����\u0011L/x��cm��/έ��̬�z���o���v���ĥCQ�w�LU\u0017�Q�`�<*�W|�~���}D�\u0011��������`��)��If��y�/�\u0000��LM��w𧇌1�\u000e�:��\n�o�1:����\u0016<�y\u0005w��\nՁ�\u0019fOv�F\u001a��_#G�\u001c3ѥ��m�K �J�W\f��W_�\b\u0004��Q2\u0010'���n�G�\u0014e\u0003S{��\"���^@\u0018�3��\u0006��?�\"�V̱À��������\u0016v�������Fm�f\u001f�n��h��R)dH,�{�eq�E�� ��\u0001\u0014��SȊg�\"��\u0007�\u0018��.�vf뼷\u0000�l�EG\u0017\u001d����(S�o\u0010\u0017�\u001a\rbݯ%oN��k/נ1�PU��\u0013l��R�^U�+Do��A�VUx{�~Wq*۪\u0012�8\u0006�jE�����q$r�Av�\u001e(��۷�ƈr�\\H\u0014&j\u0017٤g�\u00161r4�\n�\u001a\u0019�\u001a\u0013߼\u0014#�;7�l\u0002\u000b����r��LJ��>���`���ܮ}WA��Z�J�t�p�\u001f�\u0016U]�^�1�r��\u0002�ۏ��K��-�����u\u0016\u0012/Q$�����3օIK/\u000e����s�\u0005������4�Ǩ�\u000f*�\u0010^���~�2\u0011�P�G�1��ת�'�v9��/���(�@� \tD�B����L�O�����\u0013#�g%k\"�NY,��\u0014.������\u0013n\t\"[�?��\u000b�\"��\u0010�+\u001b���`���\u0015��*��I�%���SA��,t����\u0011\u0011n�?���\\SS�l��\u0007�H��}3�F��\u0015W&]c]j1-�`�X�M2\u0011��#7K����~��\u0002��rq�����م\u000e�\u000fP���ݳ���u?\u001d$�:�-�\u0005����7�4�}[�q�Ag�\u001e<��۷��CD\u0011/�\u0004F�*V����;R��<�+�z%;���ƫM��\r�\u0005���6u�\u0006`��H�\u001d1S'J/\b\u001e\u001die\u001c��9��\u0001\fU�}Ģ����]YL��}\u0013�\u0016��],6�\u001b\u0005���#F��Z\u0012�7\fd��盓.!�}!97�+Z��\n\u0016\"=^\n�5k\u0001��\u0010��)^k\u0019b��بu5\u0015O��`4�?�iC��D�hW�!\"�\u0001�ʏ��A���^�Z��bɒ�\u000f\u000e��!,�1�k��\u0018\u0013{\u0011�j�Fx\u0005Xu������ӶUJ\u0018m�Z�`ڹ<�\u0015lw=\b�*J��?����&DT��`S�,\u001f\"�|��\u0001�.�gB�p�W\u001bʕ)�d�\u0010z`\u001e�\"\u0018%�\b�e\u0013����֚�\u0011�\u001f\u0006�\u000eys�K�b�7�if�k�HU��\u001b����\u001f�U�\u0010��rM\u0014�Dp�B\u0003�\u001eP��L��4C-f5'\u000eN��\u0001�y8���s�'\t��7?M���F��\u0019wc]�,\u0013<\u0019(��\t-��b��<\u0012+���$\u0019�6��D�\u0017��[I��+�\r���I��\u001c|����{\u0015��\u001dA[u�b�#6����^�:�s���\u001b\u0002�+ĵ�,8^\u000b�\t|�\u000b\u0010�yWa:�Z�e\t�>�_�\b�Ԡ�����T�貵\"0��6�\\��w�ǻ\\��|\n�e/<+|��-=\n�WQV\u0019P��r�\u0012�U��� \t�)!�\u000f�%�����nph+\u001e\u001d���\r�\b8\u0017��\"\rf$؉�����\u001d%b��\\�!K���\u0014\u0000��NT��+\u0004\u000b�*E�����\u001f�]�-\u0014������)R��Xg_.�\u0000\u0013��e�ךs�\\�ʛ\f@\u0003�\u001aFR,\r�\\K0�S*�Q={E����\f=�$\u0001,�T\u0018�(mX���>��?׷\n\u0015I$Z�U�gw}g�d�;c�\"���?�\u001dX7�[\u00172Q3\n\u0018\u0002��\n�\u0011�\u0007Y���p�\u001d�����\\\fY\rH\u0013�\u0019��P\u0015($�Z\u001dQYP���B\u0019d��F\u0012u�\u0000H�J���F�6�NH[�b_�F�>Q���4��:\"\u0015h1�\u001c�O�I$a'q�\u0000��0�\u0015iF���AZ�\u001ed��Mz�\u000b\"Y�\u000b|5Hh�x�xM��\u0005o�\u0014�\u0004�\u0006��*�\u0000�\u0011z���~\r���6�-������\u0015�,h�E�\rr\u001c�e\u001e�e����b�|\t\u000f�{��8:d�\u000f�T8�.�\u0001\u0019����\u001b�F!��\u0011\u0014�g$сty��Y�,Eo]�B1\u0005�L�% �|�\u001a�\u001c�P_��\u0014�Q��\u0017U=Iw\u001c���\b\u0010l�@N�[�\bk>T�\u0014芁\u0003?o&|\u001d$\u0007 r�[�#�t��둌?���9��Qeh�8Ф��b��IJ��]�?1�c��X\u0002\u0014\r������MbP�r\u001c�\u0003�L��5����NL�FI�f>�����-u�XV&��h\t\u0001�(�׎(�\u001f^%o��\u0016�̴\r*�m���ϡ�G\u0003��@N^(P8^�\"F[oYQ��a�~N\u001dP��Al�\u001ex��L��X(�AI�&\u0004I��I\u0015jB�\u0019o<��A����VAh%|�r��'�iu��\u0003}\u0017H��G�\u0018�V�/W�)�c|o��y3��\u0015\u001a\u001bW'Iߣy`�\u0012�\b�\u001a\u0015\u000e�&��t\b����gO��Zd\u0000�*<��\u0011�\u0007�ȸ\u0018�/� \n �Yd�)!\u0011>�X\u0015�z!�����\u0001$���\n\u001aj�\u001c��\nC��z�i'?BȨ�ɴ\u0012i.c\\���t�G���\"�Y\u0005D�g��+\b�5~Vv�4�G��)�v�\bіk�\u0014���!$\u0006�\u0017F���p�V\u0010c�-���v����(GU\t0=��>���lç\u001e��,+��\u0017Q��7ؑ�cb؇��j �y�s�%cB\u0001-�|#��T\u00192d\b\u001a\u001e��xj���9g(�[xh��#�j��|���\u0002�Ib�9�!y��D4BV�nqU�\u0005'FK�5(�ņJ��G��<�\u0012Y���C�dF\u0004�\u001f\u0013PY���A��\u001e����a���C'\u0012\u00021�l܄ȎJȹ��M*[����\u0018Z�\u0017$\"��r�5��\u0001\tě*\u0011���\u000f�M��{�0�H,�pԸ*�1\u000b\u0016�p\u0005O/��^\u0018{\u001d\r�fA(7G�\u0019��r�O�ܲ�I\u001e���\u001aj\u0000[,P���︹l��g,+4/C���\u0007x�c�m�����\u0006I\u0004n����R��J�;jE\u0004��*m�!�v��QQ�`9&�ׄZ$\u000b@���]����A�k�K�;\u0004�<�\u00009��0¯%f�Oa;h-7�{�\u00164���.rs7n\"����ji4^�V6�ݸO���\u001f\u001d����\f\u001c\u0004��f\t\r'\u0014Ҭ��\u0001�*֬���E��\bD\n�}m�y\u0004��z�ϾL�N��E+m(Sǿ�\t۽\u0005�\u0011�[���E�\u001eZ\u001c�\u0016�/n%��m�}Q�!�# 3�M%mk����\u0013��}#�j�}��UxL\u001elS�u���.�9�Aρ\u001e���|�rY�w*\"_>��֋bV�U���Q{�^\u0010�C�\u0001v�i�\u0004?�\n�!�2GX]#���:���ֲ� �l�2�ǜcp/J�S�R�W-q���\u0011���kfsj� �1!�6���\n��:���K\u001e����\u0000�^�P\u0015��s��S�\u0018�1@�)Z�\\�{����0�j)����\"\u0000m�\u0010����+r��+jQa�\"�ܿ�\u0001l�\u0014�\u0002f�j NC�by�u�ԀL��:;��X���J��\u001e�\"�\n;�H��P�n}T\u0003��X�����\u0017�\u0000���ZR:.:�v\u0017�d\n��\u000eQOZ�\u001a'���N{O{�w=\u001c��x^ώj}91P��qB���\n�v�t\u0018����KGg�9P�Of1s\u0013�\u001f\u0018!߯\u0011N/U��!\u0000��O^Z�\u001aV���zr�}`d�\u0014\u0007wϠ\u001ep�gٕ\u0004\u0004Gaܤ��\u000f��\u0013!����?zG2\"O�)uk��T�g[h���,ⷮ�\u001cB�\bi|�R(\u001e4:�\u000f[�t5����ɪa�\u0011�q�ڔ?�4r��j\u0011R�\u001d:�ڙ��8m/�\u0010`lu�A-�O�A/�\u001eȀ�1�93$w:�R�\u0010���3\u000e���;�{�z\u0017�n\u001b�()�}�A\u0019��\u0006p\u0002!A�(�=��\u0012�g��\u00165\\�)�\u000b\u0017��\u001f`f�dߪ\u001fm�:��\"Q?o킚=\u001ex��@\u0001\u001b�\"�SL�Na��m��\u001a�{׻��\u00008?�k)�\u000f_���xk�\u0010<*\r(tyf�~�>��\u0001g�\u001ah\n\u000b/\u0003y0r�Į�\u0015K/�\b�⊊U\u000e�\"\u000f'���R&#���mc��1�\u00000DYHh�a��.n\u0016\u0003�/�N\tՎ;��}:+�\u001f3:B���Ƶ\u0002���|���j\u0019U܀3}A$�Z\u0016C�-ä�F�l����%�\u001a\u0016��\u000b��Z\u001a��/�iG|$�Ջ�\u0013n��#��,_��b�*�m�1aT\u000e0��t�#�\u0004�`�2\f��^\u0014QW�6&o�ު�ƷdBP��BE�v\u001b\u001c�ى�Y\u0003����-'/�k>�誉91\u0002��Gy�3s�\u0000��P�\u0015��Z\u0002y��(�8���*\u0002��\f���\u001fgZ\u0018-X�Q��Oi$\u0000{��\n!�~8o�v�A%�\u001e���M|�X\u001d�z}��R�C��.u�N�\u0002¨x��J`�gū�K}�vL9�Y䗯�\b�\u0001�I��DI͠]�\u001c�����O�vʼ\u0011�\fR9�M�lK\u000f+\u000bH��fS#����l�}\u0013�]\u0004J\u0016�\u001d���n�6YI�1\u000ev�W�x]dј�z� �K���\u0012�I\u00001��qo,)�8��c�\u001a'�\u0000\u0013�r\\��L\u000faȣ\n���\u0014K���\u0005\u0019\\kA\u001b����k��Y�\u001aR_2\u001f�\u001e\u0014��!�\"�r4����?P�4l&\u0003�J�Zb��x�5���\u0019�o�\u0010�B�\u000f�\u000f��\u0016tVf�LJ���L�o�qrI\u001e���\u0000s��)-u�\r�\\\u0000\r��]�n\u0001hx\u0017%�\u000f�A*�\u001f\u0004���a�\u0018}ڍ�\n����$�OHTi٠o\u000e�n\u0012-==tc�>����� ��8�S�Ə\u001bH��9y�\u0011tf�^\u0003��~\rq|TQ�x�\r�x��~�vZ��y�y�E\")�S^�\u0000�?\u0018�Ohr0�1٫��c\"����^�L�͸R=��9���fIm����y�6�V��?���?�\u0006�\u000e\u0018���\u0003�h�W,!\\��_T���\r5�/h&]\u0005c����\u0016���ϓ�vJZ�l�n��\u00170\u001dk�\n\u0010\u001f�\u0015��k�-��/oj���v\n�S�=Os���0h�ҍ�l��+�8��O\u0015\b�\u001e۩���u���\u0005瀞���ۢm崪\u001e����'\u0019��\u0005i7�A/�\u001f\u0018���b\u0004�|\r�K����|%^-EA~%�K�u�\\�L�m&m�z`�*\rl����AE��\u0007�l�Gee��\u001a,t�M\nC�\u0015�b������\u000f�JJ�V(�f�B�G!Д����^��Tqu�\u0006zF����\u000f�����\"Om��`�\u000e\u0016(%]\r(ȋ\u0015Y��'\u001c�_�B�@EL��\u0017��\f�.��4�!\\���&Y��D�O�68�2\u0014���y�3O��^�|�H2\u0015�\u0014\"� 7L?:��\b'���\u0011�c��I\u0006u�\u001d�,d\\�=2r�\u001a��Y\n��\u0004+�\u000f~�>\"� p���g\u000e��Mt���{b\u001d�;=*���fB%7�A'�\u001f,���'2�0�_�ʞ/l\f�o0�,��\u0010�Jy9��}(�U\u000bD�)!b�3\u0011P\u00125�2T��V>��\t�\t�\\����)\u0004��\u0019�~A�&M!\u0005,J1��_X9\u0002�)\u000er�L\f&�ŵ�\r��`��\u000b\u000b/}nmq��f\u0007q�sd��z�#m�W_e(\u001a�V\u0011�46\u0003�<��\t�����e��?�0M��8޶z\f�\u000f�L��C<\u000bc����\u0017\fX����1�`S\u0000�l�pW��IԹ��^}�q ��ue�A��V�Q=Q�F�4ߔ�\u0019��Y��DW�\u0002{�\u0018�\u0004b\u0006\u001d�\u0011.��\u0012�\u0017� \u001f��SH�t��SI�qq�!��\u0003TkU�;�A/�\u001f@���\u001e��x\u001c��yG\u0013\u0003:o�\u000b\u0000\b;�x�r\tc�\"\r\u0001�0�}ytA���\u0011\u0007��(|�%���\u0005�ť`)��TIl�&\u0007$͗���5lA7�\u0004�\f�\nM,�\u001d��u\u001d�\u001d\u00117�r:\u0010� ��?��s5\u0005�\u0019\u0011\u0019��h��J��\u0007貓\u0013�g���R\u001e��t�\u0012\t\u001cS�'�>7�Y\u0015��g�|\u000b�8B|\f1d�fU(xu\b�6�p���\b�p7�3��$s��ו[5\u0018\u0013���\u0016�qp\u0010�\u0003/\u0019+�\u0001�\u000fA�\u0017�p�\u001bʏ��ȵ@{J�>\"\u001cT�H�?e�\u001b)��5�8�\u0019��\u000f���\b\u0012$�\u0015(+��C [h\u001bݐ��̈�_�R���\u001b��\u000e\"�GiUj��?�A-�\u001fT���a�����X\u001b�T\u0017[V��\\\u0018�<��i��q�c��_L��rڷͧn�\u0010��r(�\u0016���8xX�,[���%��(�z\u0019��<@΅(��ۗ �c��AU�%����~b4����PK�����\u000b\u00024\\\u0012~LU&V�\\�\tM�N��\\>xO&y61S����\u001f\u0002@��\u0002\u0013��\u0013<�]����4�\u0018 �p;�GY*��ԅ�h����\u0018Y�G\u0015\u001e%\u0019���*7�)��0�5x5\u00056�M$�`�\u001a�G-�Q�Ql9��\u0001�#�[\u0012C���&^G9u3n�,ߍz�wW�\u0012\u0003��#]wxT\t���e��݄�Ɔ��a��\u0002���\u0014����B�/`\t\rCз3Z-B�AE�\u001fh�����V���Q�z�+��cK�ZM,��\u001d��^�x,�g��r~'��hhG���p&�\u0007��b\u0016��{p�'PT7��&���\u0001\u0018�$NG�/g-~���F�,��Bj:�3�>{���X��/[��WlvZ�\u0007o��e�p\u0006\u0004��VV�d\u0016���%�Y��`�\u0012N�e4�\"hi\u0019�S�Ŧ�$�ۙ{8�8�pa�őx+Q�\u0011^\u0016�Qw����ŝ��iբ�ř�5z��\f\u0018�8u\u0006\\�W��f�S7�%\u0003Zh ��K5%��m�^�aXKM~�\bˠ�� ��\u001b�����_r2Zl�x? \u0000���j^��Y�h�\rRD\u001d\u000fM\u001f�^�d��3Ņ�\u0019L\u0019�$��3��k�+B��\u0019\u000f�ۉ��_.2\u001f�A�AH�\u001f|���!��B^6��Y��\u0017�&/�/0\u000bWTV�G��^�e��\u0002�7��(����\u0007\u0014f�`�\u0006P�EP��9Ω\t���n\u0011&�\u000b�\n�\n��չC-\u0014:��\u0015��U��z�\u001d2~�qUݜ]��\u0016���K�gX,�S�5=3XJ\u0005�1x��j�����]�)��p}\u0014\u000f\u000b^3&��E)��u;�1N���\u0016�S�h�\u001e��F��G\u0018�f�`|֤�7b.�xf�\u0014\u001c��:{Ϝ�\u00054�Y\u001aPъ+9Zua�\u001e�%x�Mz���,�\t�g҆����k\u0011\u000eM�����^��Z���УK\fl��bf�L��\u001d�-uxP�ߤ{H��>a��B\u0011\u0001�\"�y�E�ٸ�K���)~m>�N}+�P��Q��h#\u0010��\u0019��AM�\u001f����&uw���s\u001aS͑C��\u0018���}���&��\\\u0016#\u001b��\u0006!��\u0007�� �\u000e�p�\u0001�$\u0016z~��s�q\r�[ɻ��&\u0014ҙ2\u0015�e���\n��\u0018�1w\u0007���ڬ�\u0001\u0001s�\u0000m���\u0016�D6\u0005\"oy\u0016�p��4\u0018`��\u0019O��V0ğ ��o�Nɛ�N���\n\\؀#`?��qr�L.5�4%��<Չ?�7͚N\u0012��fS�a\bϖW��85v \u001bM�$a+˥�F��\u0013\u0002�Ã#\u0016\nh.�\u000bY���;ic���\"y!���/\b�;\u0010�����n�/����J���\u0005�Z\b`M�qƸ6f%X���J�����\u0002\u0013}�}_��c3\u001a\u0015\u0012�!�K<�n.�(\u0003�u\u0018\u0003�\u00073jIu���A�5�6ɘ�\u001b�B\u001c�\u001b�A�`e��AF�\u001f����\u001f��,ɋᾇǪ-�\u0019*\u0007�x�\t�څM��\u001f��x�OQ��\f;����M�\u0010�e*��<�\u001fR9Vx�vG��@{#�7�>A�B��,ͥ�u\u0014\u0004\u001e\u001f�����h���\u0014�\u001c\u0005 ��b�6|�\n\u000b�#Dㄖ�X�$N8�{:HF�\u0012�\u0003�jDR\u0019�z�5��/\u0013֊�8\u0018}O\u001c�m�&���L�=\u000e�R.\u0013�~ܹʼnھ��\u0000\f\u0000\u0004!�\u0013ωcj3���Yn�a�\u0007��J5\u001f�F;҃�n�\u0018oQV/���\u00066�*{�j\u001e�k����V0aK�\u000eIcd�j�ƚ�fN)��?\u001fՉ��ӯ�kf2=l�\u0005�F�iY�\u0001���Mrk\n4{]�����\u0001��q\u0005\u0015\u0001ptN�\u0001S�\u001b�6�,����k���K�Ը�AA�\u001f���Msl\\�kq�\u0002-\u0007l�K����=�����Ȗ˚�����j3[��(�d�͙!,RN��gp��x���s�J)������zï�κl\u001e�<;\u001e:���\n�%�3�\u001d���u�r�1��\u0011Cv��\u000e��F\u00108p[\\��t�[��9�\u0002�;X?F��*���n\u0000�:��w��{�\u001b,�ִ���Z�ET\n\u0005\\��0̈́�n�0�̑����!�\u0011>��\u000f�\t�����6��\u0002��m�L�\u0005nş�b\u0004�\nd ͥ���.�z�w m�k�2\u0016ht8�u�� \u0000DK�ć\u0012��\u000b8���}|L��'�T�\u0001\u0014O�\u0016\u0007\u0006\u001eDW�Ho�lN\u000fF./���:E_�\u001e{����y���m�/�?X��9�ٕ����A8�\u001f̀�M{�jL6���2�B�7i����\"\u0013�,UV>5��|����/P�<��SH���\\(��P\u0017��N���P\u0019�:�H�Fc��z�ɔ�\u0010]�J\u0007xo\u0010��\u0005\u0002Ԟ݁���]�s��p�y \u0003ws״��o��\u000b\u0000����h�zm��`�g�\u0004��p��DMP\u0000\u0003X��WAG\u000f�\u000b�.g�SG\u0012Z�M���$t�g�m��&g�Բ��3�5Q�\u001b�\bI�Ry\u000f��\u001a�q\u001fQpH,!��[\f�2\u001c&��@�J���Oǝ�\"�⭟���,�4r3\\i\u0006A�\f\u001aBa*\u001aT@\u0017�\r�`鬨NA����[��&K���C\u0003�t`x\u0000\u0015?�A7�\u001f����\fZzD.A�/�e��a�\u0012�b��P�=�\f��\u0001 �Gv\u001e\u0017��\u0012|\u000f\u0005�,�\u001fv���\u001aß�p\u0018jmj=����U����5����\u0016����g\t�m��sz.\t��=*��*�xq�M��I�P�J&��QD���\u0017�\fͽ?�w�q\u0018�k,��\u0016����\u001a�t���\u0012:�~7\"�ap�J�00�\u001aJ\u0000�35 ���\u000f��a���\u001a\u001f[[�lN\u0011�-�\u0016�j�.��q��\u0003\u0013�\u000bI\f\u001b�\u0005�\u0004\u001b}��e�*��%c\\9���+\u0018����\u0018\u0019�aA\"� �Se޼�\u0016a4��\u0017;/�N�t�i�}��\u0018�m�:�¯2\u001d�^�^e\u0018\r`p޶��t�IRc`dZkP;�n\u0003>�\u0005\"ӣA;�\u001f���\u001d�DT\u000e\u0014��XE��.A|�oeRO�1>���q\u000f!b�6;ۚ\u0003��\u0007\u001b��8Rp��z�|l����4\u0007�A\u0011c�\u000f��\u0006t0��@�\u0001�\u001aM\u0016�\u001f'\u0014~�>iF7SM����� �?�'\u001bf%\u0002#��O�V�;�\u0002ˣ\u001e����W|J�9�\u0015�ҧ���)\u0005}<�\u0005G\u0002��!�\u0014�����(��ŋ�������١\u0006\t�\u000b�F���x3gL��5�;�\f@\u0005f�\u000b�y���Q�~�p��tǷW�W\u0012/�a��/\u0014\u0004pV�x�\u0003\u0010��g}���>�e�\u0015�F\u0016z\u0019��[�\u00138-x�Q\"J�as\f\u001d�@��\u00157?dn�g�|��\ts�b G}\u001b���I�n�.�()��m-&9\u0018R����A�ݣA=� \b��X�\u001d�7�f9�%�E�:'\u0014�\u0019�\u0004\u0000E��0]��G�\u001e\u0011\u001d%\nydAD�j���[z�\u0016��\u0001B\u0012�\u0007�{�O�����3\u0014Y�\u0007,�_wM���ݡ!vx�H\u001a�ӹ\tZ� ����s���d\u0006���rF�1Ys}�j$\u000e\u0011\u0013e���xX���J�_�į��Rp�ZD�HO��5\u0012��;���Է2�2Z����X�U�-p�B\f��jiҿ\u0004W^�ԍ\u001b\u0013D��N�\f��\u0005Jڐ�w�M����|oG�c�e���s\u0004��H�X�z�Ĥ>\u0001�\r�ᘼ���d\u0001�����h�T\u001f�ŏ����$�N�rl�\u001fn�+\b�&J\u0007W-�+�S����=�i{TV\u000fP\u0010���H�8�|n�u��ӓM(^�b�\u0016W|��\u0017�‡X!��\u0012C|�s���Ҵek�cq��h�R�A!� 0���c\u001f��\u0001�ܷ���ֈ�\u0001\u00106lo��lT�5������r�����9��G��W�V�!z)��\u0015I�M鍙\tk�\u001d�����)mj(�7�sP]\u0015�olNJ\u0004V�+����H|�E�W\u000e�\\�\u000e�,\u001c\u0010V�_��^N��\t^�\u001dH\r��\n���dQ\u001c�\u001fW�rC��h\u00026�ڴ|� �F]�\\��\f���\u001d`���h�՟\u0004\u0016�T���M��\f�r�%<2V,�\u0000�B\u0004\"\\\t�l��)&�|�f�i�1�?���v\u001a{U�5���}�z}^���_\u0012\u001cAm\u0019\u0006���\u0011����G���s��Tk/u�6;�@���vv�eq�{S\\e�7+��8�\u0011]�yk�gP�ʑ�qrsD�5�o�Qd�\u000f�~��W\u001cߪ\u0003�N�����\b�\u0003 0�`jO�~p�GϬL��q7���X�A�7�AԘ���M�6�W\u0002L\u0011!\u0013\u0007�&��ܦU�/�'\u0005����\u0019��Kڎ��7�-$V t�\tG]q��l�d���\\��ʣAN� l��L�!�\u0003�D㗀�Ȥ��\u0017T,\u0007My\\�FG[$ʓl��\u0002��Ѫ�9�H�\u0004\u000e����-�f�\\�y\u0003�?\u0012\rI���%q�\u0000��ӼwG\u0007]���\u000b9no,s\u0017\u001d�,x��Y�9���\u0003�����9���N�V�Ī�\u0001�2\u0014V��6�\u0001�JyNq���e2g�_��[*��cU\u001d���b�\n=���\u0003��E���\u0017�Ď���\bL��S.{b��\u0005(����c��\u0004=[�S&iJ<.7)\u00129\u0002\u001e;T�uH��~u̞\u0016CR\u001b�\b�V⧥�P���G\t�`���m` PIZG<曂̙���{�r.\u0004�׭.1�èO�i\u0001i��E�vI�O�\u0010<0�\u000b:���Wx{/��[��B�4\u0010��[geq5�D=�\u001b��AU� ���L���|{�֫��,K�'1�5�x$�7�\u000b��\u000ba\\��\"��`�l*y���\u0007\u001e��P>�+���a���� +?wـˉ����P��?5�?�\n|F��|T\u001dʒǩ��9�^\u0016��\u0010�BB#g�&yJ��#9J\u0006��n�;�o4��\u001e���7�Et6��^��� �D�sl�\u0007��*%߂sֹ6\u001a�g�v�\u001330�\u0004��3�[�\u001d)#(��4�T�g�;�._\r\u0003��\u0013kM�tp#�]���}���\tc2� z��[��\u0004n<��>�҂��\u0002/��z��(��lk�Mҙ���Y�\u000e\u0003f���\u0016c\u0000�b�*Qy\u0010o\u0007\u0007>��>v��Kۺ0��C�\u0018���u��g�7k���q43�� �oY3Y<\u0017\b���\u0011��\u0019�lt\u0005\u0010�\t[��AD� ���L�ʴN)\u0018��\u0001���I��o���k�S�CL�w�{ˎ�5\u0014IN]�#�c�[EG�.���%���9�jMί�M�]��=~�;f\u0007�a ����\u001c�^d7\u001d\u0017�~+�\u0017?�أ\u001dn��/�����\u0018e�������u��݂�\u001aL-5�9\"\u0014���d���a~4Y�\u001b���eYn��e�EU$��RN\u0012��L�Px�A\u001e�WϠ��^f�D���zw\u0006��d��N_�H��\u001c�L��qa�$�����\tcq����=Fi���fg`\u0017t.�۔o��\u0016J�j� E\u0010��_|���\u0012��\u0014���\\\u0010���l�jrD���+��6y��cv����\u001c,�\f�+��潧�����{B\bp��kI\u0001�\u0012�-�c^&�A6� ����j\u0013�\u0006s\"L\u0015��ԡ�&Ux�%jÏ�T_D���s��؉)@w��O$��C��c�\u001fJ��U?X\u0016\"\u0018\t�\u0014K\u00151�����'k��kȉ͍_D�>�\\�)\u000e{d�z�Bt\u000f�h�O|TF[?���SŮ�H]��r�3�W�\u001c�Zݷ�y7�rSe\u000f�7a�(vW�/A�$�p]���\u0018�\u0016�\u001cH\u000b-P\u0017\n��z�\u001f\u0004�\u0007��\u000b\u000f������LF\u0013\\/�C��W�m�����Ⱥ����%��!�\u001eA��\u000bԙ$V#\u0004'\b{��I����ۭ;¡��K�l\u0014����ӓ�ғАz���\t��\u0000\rL�\u001e\u0002���\u001b�h�$\u0003�\u0003�\u0016�>��\u000b�\n�\u000b��G�\u0016;��٣A�� ���}�i6>X�\u001e�GZ��\u0011(p�\u0001A��\u0010^����7�\u001fE.�f�c��p�\u001d�)��4ʊCru\u001fFRi��Z\u000fg�w\u001cNʦ�w\u0000\u0018�3;\nI���!\u0000�X�ra}�L\u0006���Ҽ�\u0001�}����hNqp���^���<�\u0003t\u000b\u0019�t]�SP4Ĵ\u001bQ���\u000f�9F\fhk�Y,��\u0010*8�3\u0018.\u001d�\u000e|\u000e\u001f@b\r�\u001b�zd\u0010��7:��7����L�;d�\u0007v���*�h�}\u001c�����@�\r�M�[$aA�Md�b\u0019>�*��k\u0006�\u0004L�cz\u001cP\u0001���-���L�QDgba]�\u0016��\u0015�N�p_�q���Z�;�\b,+\u00008�oa���s�����9%h\u0018Q\u001b�\u0007�\\�L���޸\u0015\\�\u0011�[Z�r�lÂ���:��\u000bB\u0011#�0;�c�C\t��9(����\t\u0015K�\u0002��c�H\u0004�#��p\u0006mŋ@�G��-9Sd�vcL\u0004܆�\f���\u0017\u001d�\u001ey.�d J7����\u001d�x��c\u0005�\u001cӒ��F�I�A\u0016� Ѐ��n\b֌&v�W�Q%{���B�8���V\f\br���!q&'�L�8�\u0011n��*L\u000b`aM.B��c��@��\rI�\"oT����\n�Nzz^`]V���{��\f֗��Ӻ�֓Sk�v\u000f�\u0010\u0013��Z���2����А��#\n\u0019tP�\b*����|����d��b޾�zOq:v\u0016�4\u000f�\u000e��\u001f�\u001c�����c�\\Mg\\\u0016�\u0017\u00017;J���h�\f�z\u000fp�9d\u000e[ز���q����W�RLM��!���\u0019�fdE:�����\u001c&q�p�ET�la��\u0001\u0011�)�=Q�z#Nh��U�Y�j��䉔��\u0017AF\u0004\f�B�A\u0002� �����k�\u0016\u0017�0�2\u000bѪ\\LG�a\u0018y[\"-�\u000f<��B�f\u0014t�\t\u00135\u0003���q\u0018҇��\u0003f�x���\rG,���B���sk�Z��ͥ}��b�#�\u0007u�\u001c�5��A�*����\u001db^\u0000�\u000b�vƬ�\u0018�ab�]g\b�x2\r{in\n����.���^�~�Q�\u000f\u0013��f�~��u^�\u000f\u001d��)78�Q��sz\u00057���9�`�Ѭ\u001f9\u001e�D��*��'S眭b�o��`���>HJ��\u001e\u000e\u0019�\"�pn��\u0002\u0013�kI33oDua\u0016dIg��b� \u0010���o��G\u0013�|��Q���A\u000e� ����l��uf�i���3���T��тd��\u001c>��H7+jb�\u0000vz\u0015\u0001�CZ��(�!6\u001b��ӴB\u0004/^�+��0\\��\fZ\n�\fMޖK|��\u0000>��6' i}qo\bW2t�\u0002��2�\u0013���_+�\u0019�@�@��!\f��X�ct���S3\f)eO�21��r�O��U�gؓ�ż$ր`�,a$��-\u000e\u0016\u0006�.z�\u0012/�\u0001��\u0004�D���&k�\u000b���w\u0018t����\u001e\u0002H�ښ� ��i\u0004\"\u000eG�ڸ��>U�h��k\u0000\b\u000e�u���\u0004�X\u001c)s\u001b\r��'mM��Ro�\u000b���ij��`\u0016&{�L�3kh����\\6�A\u0013�!4���\u0011�\u0011e��\u001b,�h!A�^�u��\u001fE\rn\b�}F�ϸ\u001d<9V\u0005��c��<~�B;_���]ym�2T�$_�tt��SM\u0019\u000b�4qz4|N�\t\u001b�W �{x��+\u0004�ӯ\u000e*z\u0017;^����\t.Sm��\b�\u00139�\u001f��B�\u0000���_\u0014\u0006m���x\rN\u0012Y8+�3\u0019`�U��\u001a��+�tcԴ7�}\u001c�M�c��i�\u0001�r3ȷ���5��d/���\u0017\u0001�\u000eK�;Je\u0000�赁\u001d>=\n\u0007���p\\�3��ql�\u0015�錔\u0018=�\u0013KI|9�z;1�V&�ؙCt؈\u0004^��ά&�h�+Xx\u000b�{5�ij���\u001fMG\u001f��A\u0010�!H���m��(K$\u00038����录)�KP�.�sP6\u000fa�eH��\u0007��a�m�RчG��*l9�\u0002N�(>�\r#�;\u001a+��\u0016\u0000�\u0005\u0000�\u0013\u0010“�l%j���\u0000�\n�ݧ��kÏ���`Zx����Z���@\u0000\u001bW�^�\u001a� ���N�2\f!_� �ּ��:z]l�\u0002!�\u0000�\u0017�U���S���\u001b��\u0002\u0000\n�4�|�i�O)��e�Mr*�FJ>jxՌ�O�\u00058��+�\u001dEs\\7׏�]���Xվ��ѩ��\r��-\u001f6à`ю\u00059l�\u001b�\fN\t[�e2�\rîe�2\u000eR\u0016��`,��t/xה�m�A�A\u001d�!\\���\")#�R&Ό�fd��gRM\u000b5.\u001b\u0011(�\u0001�g\r��\u0010�s���\u0001�\u0018\u0015�d��T\\y��zRA��D;�p*�MC\u0016\u0016�b�\u0019p��cTJ`Ď��u�;�����\u0004*ɓ�&;\u001f�B]�1�\"�\t�\u0004\u0007?���\fE\ts�մjr���T\u000f^ꁢ���ZLy-\u0019u����ab\u001c�4��\u00102w����\n\u0004D[Vt:�y�)Q�P%����\u0018�6,�}[`Ҕ\u001a���E>_^/���S%������\u000b���˴`�T��p��}��&%�a\u001f��?\u00196�E_L}��\u000e\u0018��I�T;�\u0011�<���wnaJu\u0005}m�H��/�\u000bk��!�A\"�!p���d �j~\u0003��� \u000bx*��Jv�ˆ0�ӌ�f�_���=\u001d~5�b��h� H\u00027d$�\u000f�M���y\u0016:����.��١f\u000f���\u000fʖ���\u0015��A����J[ѸQ�T&+����D\u001b@6�u�y�P�_1m�]�ĸ�j�!�t�\u000f\u0003\t}]��<��\n�$Ѳ���m=�y3\u0004L[�\n>\r\u000e�\u0007p\r(0�Ym�/���j4��\u0005\u0001B���}+��\u0012�\u001b\\��\u000b;����a7\u0004T@o�\"g��\u0014\u0017\u0001�\u000b�I�M��8�H1\u001b\u0016O�\u0004�WD��چ\u001c�J\u001ḛ3���-O-���uNBr�\u000f\bj�ٻ�\\y$r(\b\\$��cu*UA2!�A\u001b�!����\"H\u0013\u000f'e��8�ܶ�m\bFT�����\"\u0013�\u0005�E�����\u000b\u0014�=|36�;b\u0012�{(�a\r�\u001bH�:\u0012-���K����n��S�X�qmޕ��\u001c7\u001ds֓\u001a�\u0014j�\u0014�F|D�\u0014�@�\u0006�l�\b�{������\u0003\u0001Ɠ\u0004E_X\u0011V���wwqh̠%�gj@L�q��m\u0013�IV�\u000e�1��\"\u0018�2�rإ���\u0007�\u001anŸX��?�\u0019g*�\\�V�\u0002� 9=B\u0015��'���\u0003��]�\u000b���#��-/\"v��)ߪ�lO\u0019\u0003\u001b�0�2�V\nm'�i�,\u001f�u\u0000�\u000f�\u000b�a�0�`�\u0001\u0000Ԍ�l֩\u0002o`XR|\u0007޿��A\u0013�!���L�'����.��%̪�c��\t�[����+�\b�\t�O��\u0014T\n��^��U��?m�6$ۍ�\u0000y>�\u00032h�\u0013���(���8��z\u0001<\u001e�E\u0010� �*\u0017�\u0014[�D\u0007���Jğ8\u0019H�f9U���zFS�Z/M��3�EV���Ň�O\u001f��ӽ�����w�^��k\u0007���H*�D�%2\u0019\u0005K��YL���s�sS;Ԁ�R;1�H\u0010���k�L�/��(S�Z*��6�\u0000�\u0003��\u0002 \u0010�w\u0014��\u0010���q���>#�\f\u0010�]�\u0003\u0002��-�Y�ͽD�m b0G�I�s����\u0006�ɲa4\u0016���z�\u001fE�|0�ٳ�>ўnq7�֧�\u0015H`lK��(;\n8�6���\u001c�\b��t\u0005�'�4��#�6N\u0002�\u0001^��\\�I�RJ����A\u001d�!���1��|N\u000b���F~�r�l��\u0006&WB\u000eV�J��d\u0019�Q�\u001a\u0012*Е��s\u000b�\u000fW\u0000�}ڥ�O\naR\u0004\u0004�K���J@O\u0010h�ѩ���6p)��;���!.�\u0017�g���!��\r{n�ôt�\u0002��0\u0017�\u0017��Q�`�O�r�\rs�k��5���\u001b%֨`� 0�H$ɮ9���\u0006?���;q3u\u0011Ƭ̴\u001bo�\u001b977\u000b���d�nԏi�\u0011пR��?9P}y��\u000f�\u0017v\u0000�Nt�\u0007�\u0002���7\\��/!�j����X�lq�\u0000C̵4�b5��q'Lj��/�\b%D�\u0007�eΥ��\\Ҭq�#\u001b~��x��\u000b��/d]� �\"��A\"�!Ԁ�Lò�Ur�x���$�\u001e\"��T�F�*���<\u0017?\u0019|�J�fR�jG\u00055p.:\u0019ڞu:@Vz�w�D��-f(�j�\u0002��\f�o�.�cp�c:��97̍��C�������|R�*�[�\u0004+�E\u000e�\u0001\f.���3�!\u0012�QuJ�\u0004���X�-65\u0007s�MM��,<3 p�\u0005\u0004\t\u0007\r)�puϤ�(%{�p�\u0014ZhQ��\u0002^��ㄬ�ChВM}\n�em%�\u000fޢ�F+�\u0010�ܮ\u0013�\u0012���\u000f;.̍��mV\u0007�7������^�n\b22`�@�n;�j���ಫ\u001cN3�\"�< ��1K-E���õIA�\u0019D\u0017{JG�\u001e�\u000b����F�ңA.�!��L�V��\u0006\r���#2-�\u0013�4�>əF\u000f�p\u0005��������y�iVw���J\t+�\u0004�#2<�h��\u0012\u001c��\u0002��\u0002��\u0001z��u��֨��^����\u000e���2�Hdv�\u0015\u0012tZ�\u0015e�\u0004\u0002Y�@So�&�ȶZ�\u00062�Qؠ\u0017�Pi�,ۓ>+�ɌYu�%�S\b���i����0��8&\u0011\u0016\u0007=\u0002�\u000fC�Q��hf}�\u001a���.�}\u0003�ڿF�tz��\u0000�ڴ\u0002>f����/��p�\u0007��kf��kZO\r\u000bēpJ��KPS�~GX`\u0013]���>4�ѻ�\u0007=\tj�:��N��i\u0000_3\\��R��\u0011W�.�\u001b�\u00179-+�V\u0001�-G�GP\tK|���Q�oP���A\u001a�!���M|�U�7M\u001eҪ�5O�\\'C\u0005����\u00044�\u0006�2J� �k%{R�-M�ȅ9!����&Z�{/�6�C\u0002������H�b��0�A-��\u0017��0�^\f0\r9���G\u0003B��\"-_����A��H�;C�\u0001����[�ST\u000f9L,UoC\u0007Λ_8�$<�����^\u0005�5]\u0017m�\u001e�pF�1@^���5�FiIR�Ŗ\u001e�\u000f\\r�!,��OI�N�\u0017��婉t>c�j9#��7\u000eZ�\r\u0017��J\u001d�]�\u0001=���?B���\u00040��B��3��Z�ъ�J����@\\u�\u001d��',0z\u001bv\f����\u000b�m�*xO\u0001e���\u000b�A\u0015�\"\u0010��L��5�at�\u000fC��\u001e&i�d��x�c���:����./hP�������MO���&�\u001d��A#�u�5�E��.�x�\b�\u0014�\u0010��mwO�ǣ\u001bvG�P�5��&V\t���ia�T\u001b�r�\u0018��E���`3�o\t�[�'�Ա0�;'��\u0003R���]�h�Ӻ�:�b;Wyh�AR�6�/�A.�\"8����\u0006ۈ𦭸\u0012��)I\b�Ly�\u00054j�\u0015�-]#e��Zo�z\u0005Y:[.�M]�Gjn\u0014�wu�-P;\b�3�!gͰQq����c��$p\u001dd\u0004D*Ÿ\f�\"\u001d��K0����\u0005\u001b�\u0010H��\\����-d�\u0018���~���\n^����K/{W�c�\u0001��\b:P�]�b.L�)�,\u0002M�=�����r�7#\u0007Al�\r\u001bO~<;yn��\u001b�\u0015�+�jr�ȡ�``\u000f��IDK�L\u0003�\u001f�eއJ\t\u001a�\u0004\u0013��.s���X\r&��`�,�^:Q\"��c\u0015S9�s��}*h\u0017�yUOt\u0002�2є��Y��W\u001b�Npgq,\u0018�-\tKCW��[�n�=Yd�L�?��4�A£A<�\"L��۸�\u0002+�R�:���%`P�Cr\u0017����D\u001e�bl����f�8�������z\u0018ᤫ�\t;߄��C�i��Vi,A�.�I�d�\u0003`}��\u001f��W���0�e�?�\nG�|S\"*_\u0006�*o\u001d�N�l[���_\t�ȑ0��ym@\u0004m���XsY��\u00074�+���\u000b�\u0006\u000e���*\u0003޹n�;��7�%$�\u0004V���iɪ\u001c����~�\u001a\u0011�@\u001b��4q�=Cd�\r\nڠ�g&��Q�k�d]��e����������;C�f��ۥ�\u0014}�\u000e����\u0012�\u001f��\u001e���unx�á\fw\u0011x\nq,�� �H�ވ����T���O�.Ť(\u0017�uR\u0006\u001b��^UŪ^�\u0018?ãiڑy\u001bB\u0018S��AG�\"`��۷q�ي��l[Y��˟\u0012�ý�g�,\\p\fN0�\u000e�(�-ͣɩF�\u0014\u0015��\u001c�\u0013L;V\u001d�>��T�<8�<\u001b���\u0013]8�F�\u0004��\u0004֋\u0016�P���ĸ2[���\u0000m�Ux\u0007\u0005�l\u0006�\u001eԈ�):��%+�Z;U�����Ő�\n��9�A\\��#FE���R��$Y\u0004f)Q~N��P.>�þ��\u000eN��.�EzzL��N��{�7J�>L��,x�l�J��/��_��!a�\u0007�^�F��k6\u0000̅�~W��\u0011\u000e\u0006�\u001d�!&S�\u0016�Qk�9�e\\[͏���\b�^Ռ'A�$\u0019}�7�-�y\u0003b�-��4�-&P\r�F�ۯ2�p�}\u0005@\u00167�p\u001d7ߨn�0�D�8�U�ڞ���E�I(\t&v�˕8���AG�\"t���}���FA�M�EFk�\u0011!��!<�Ps�(���`�aP*mJL\u000b1U\u0017\"�W�Ј\n��*�\u0011?K\u0002��\u0002���h:������!숀#���B\u00122��h�D@\u0018����ܖ\u00102�\u00023/]\u0011\b�\u000f\u0013�l�H�<\no��~��\u001cd����L�Bg.H�[A\u000f7ޓ;�մ�\u0010��Q�D���)�B�\u0004�H����c��t�!�\u0019\u001d~\u0006?x�T1~{�ހ\u0013g(u?{����\u001b\u001e\u001a�\u0004���1\u000bk�F3+Wk7`�L\u0007�@0\u00079��؂8�Ѩ�~�98�S{��hjK�d��<\u000f&�����Q�t��:\u001d{NU��ž'����8(�0�\u001d�1��%�߿������\u0006˝�\"�ZY�@^��T��/��ò�A?�\"�����K��v\u001d_PM\tm�1i�$�S'�\u0005�\u001d�\u001b�\u0004��(J�ڽ&����\u0015uv�\u0011}�\u0007�͍�OC\u0000\u00104���4?L~�rh疄y��\u0004\bi�\f����[�+�R\u0016�8�&���\u0005\u0004v\u001fT��]�IT�/e�Օ��o��e��{�6��L5��g���d˝r@�cT1�������m�h�6���X/��\"�`��Vl\u0003e�h�D�]\u0013Q���w�\u0015��\u001a~@\nt3O�ɠ��<\u0006F\b�S]�25u?�:ۺ�\u0017(��8���?N\u0000k[�|�\u0017MM�6W{���U�Uq���W�\u0006q���56{�\u0011`���\b�h\"�_�i��4z����\u001e\u001eN\u001c�����w�\u0011\\5\b��\u0018��\u001e�<\u0013��BQ�\"����BTZ����٫\u001a&�\u001c\\�G�Л���\u0017(�\u00184�N`\u0013�>'d�)\u000b\u0011ʹ���q�U����2�\u000er�\u001f\u0006��d�j�\\\u0017�\u000b�z\"�=�\u001f�;TTP���*\u001d{1�q1\u0005��\u0018�Q2H�z�\u000e��vy��;\u0012Ў0���Kd|�͙�%\u0013&\t�3�jɽ*�Bz�`�\u0001:��\u000392\u0007���\u0012+\u0003�V�b�c�Y5YgI�IH�9�1��υ@��+\u0017>Z��q�V��UG��N\u0013�����r-�]�\b����fX3�wR�\u0018i�\u001ac6��o$\rͿ�B�\u0013�\rB\u0019�s\u0000Ճ�\u0004���fg�������\u001d�\u001aX� \u001e�\u0000\u0000\u0000\u0000\u0000\u0000\u0000�o>z��\u0006��c\u0000��W\u001e�h0�-{)F��\u0007�l��r�fB��70輡㰔�[J�p\u0010�\u000eo�\b#�`\u0010e\u0014(����5�\u0010\u0012�q��.�UB�M�(�-�2�9LTR\fe��D\u0014\u0017\u0001�S&#��S����jS�C]앙~���wL��ȩ�xL���Es�Ķ�\rQ!��6\u001cB�g\tw�\u000e�\"��oO8�*\u0012�t�$*�6|D�L&6�U�\n-�D�*F�@��.Ή�q}��,�D���)SVK\u0005�V��D*:r��H��p�(˝�_��l\u0016��e���5��ra��.86��t�t\u0013�l+�\"O�j�\u0001�=�(\u000b�6̧�a\bĸOj�i\u001bnԬ\u001f�\u0012�I\u001b���A��\"���}b���\u001e��\f��\u0000�hI[�\u0013���\u001dSG�1rM�\u0004\t\u001fi�\u0007͑ƈ��~��\"����������w�\u0016A+\u0006ۏЧ�~�!�#l����!\u0019\u0000}^�Uғ,5��B\u0013��\b�*���P�7\u000e�‚\u001e~`��~�\u0005G\u0018�qoS�'�~8܋�����\"��G��3����/\u0001:��E=�a;\u001eK��8\u000b�<웈N\u001a\u0013y��D;��:�O�Y�71�7VI\u0018�\u0012몙�7#k5���\u001e�\u0003��\u001e�霐=H�\u0003���ko3�\u0002�FL\u000f�uw�=KK��&F�\u0006�=\u0013'�\u0010\u001a\u0002\u0000W�\u0018lZ]�֮��e�I7\u0012��)�)\u0014\u0001�yէC�w��eK��=\u000b\u0016*�sէ\u0012������%�}�ՂC�!F�}�?�sn�w�i�~�2ms�Fp\u0019�t5�Kb\u0000n!\u001a�\u0010\u0002M��D$Al��|v�/dּh�\\:��\u0003�L'��j�\u0007IA�|�@�����\u00103�n�3*��mIk\u000f��,��G�������$�%�\u0002B�ȣA\u000b�\"Ā�L���\u0017�.Upo\u001c:�B[���\t�W�u��\u000e:\u0000h\u0001\u0005^�����b�\u0001�{����\u0010u\u000f�:�9\u0015�D�(e�Ð ��v��6\u0015���Ϫ�Z\u0005�����L�t_c?7��\u0010���{7K��=�\u000b\u0010�~���\u000bl\u0000C�h*�U\f���o�\u0000���\"oh���褡���\u000b�kB�+�\u0017)S\u0006��ϲ$�����BNn]����P٢!�\u0006c\u0017\u0003�l\u000f^A\u0001\u0002�߷�J\u0018�h�Z�(N�#�\u0004z�\tƭ\u0017��^�WA/� �fQ�1\u0003������a./\u001dn��[k?�[+\"���\u001b�\u001e�Q�F���A\u0015�\"؀�X����\u0018V�(��_G\u000e9;�l\u001d\u0014���0�IS!\u001b 9�EB���d�D�@Y9��1J#�\u0014��h��?\u0019\u0006O*\u0004\u001a����a'�H0:\u001b&�\b�\u0015�&�~_�jF�V�Z!\f\u00152��p\u001cG��(�f\u0004o�\u0005�\u001b�/�=�.\u0017w8Z\u0012!�Į5L=��c\f����\t�?����|e��\u001d�����ს)q��ubelVX��f��jS$��\no����M\u0016��\u000fƂG%��\r'��X�3Q\u0004��\u0014ܶ�&���\u0014������=ۢ\u001a�\u0006Oo�1�\u0011c\t�\ne�A�*�\"%\u0012i���s+*q����w\u001d��|\u0013}��A\r�\"��X\u000e��^��Xj̰��z���J�h=Q<��ڡw`�+4բ�I�\u0018^�e\u000b\u0012��X����d�XfN�ӱ�|��K�\u0012x-jʳ�cӗ=�0�e|j�\nK�Uz����@$=����rH\u0014��\u0006\u0004�$�\u0002-\u0014�S����v\n�6J1�\n�\n?!��mP\b�EPR|��>��d;1�*TN�A�\u0016�\u001dYx\r�Lp~�5����\u0018=j\r׊��̒���\u0006���s/�����\u0000sK0\f��R\u0017E\u0000Ӡ� �h�x�y$UvG&�.�F[��bͷ�E�\u0000��\u001c\u0006�\t)��#[��A\u0001�#\u0000��L���\u0010/'\u001d�\u0011�\\[�iVE��\u001f&\u001c�V�����H\u001fX�Y#T\u0017��]�k����`<#�Y\u0014X�2�$���~�����p�\u0016\u0001\u0000�[N�\u0017�%�*�ޙ�sKJ�����3�^\u0019�J)�0|-�\u0011µ�W��TD&�Eû�ϩ�Us\u0004&�5/@���,\u0006�\u0018\u001d[s���\u0016\u0013\u0019�\u0001�\u0012lĸ�uW��t'C=�A9a5�Y\u000fvK��1�\u0016��\u001d�ɿ\fY8�֊\u0011�W��$�L�>\u001b\u001d0�ۆ\u00127\u0019W\u0006�����\u000bc��>����΍���蛏cھ�I�~�i$� `��DE�A\f�#\u0014��Lß��U<\u0017�\u000f�]�\u0004 �����\u0011�H\u001d\u0011]��M*fRs\u0011\u001a��QN���V~a�3�S���H\u001f��q�ʏ\u0001O�\u001b�[��\u0006��\u0003����@��HQ[\r��=�\u001d%ktA�h����i7v�'�I\u0010k��-}��㲭d}Ϻԃ���N�E-�>j��\u0016K\u0006CdB���\u00122�ݕ@Y �Cr\u001b��\u001a�6�Cur�@\u0016��Y�W\u001a��\u000b��.�Ϋ\"[\u0000�_}\u0002|�\u0019\u0012߷���S�Z����^\u001e��L}�d���((��nE�����\u0015��D���Ha�v0\\1�<����>�O�\u00145��8ˮ�A\u001b�#(��۸����s�]�\tfz�\u001f��\u0003a�O�0+�[\u0005HJSڛqWx�@�y�U|_hO����s�����\u0018\u0015,���\bf��c\u0005�=\u0007\u0018\u001e^>�i�\u0001,��!�I���\\Uy<���\u0004LV\u0018�{G,�w[\u0019\u001c�jk8��+�m�\u0014�˘��\u0018N����\ryu\r$B4���&�\u0004-hm�`��=^�~��S��A\n�#<���ڧo�s�\u001b�K���%j�OL!2м]NH��dTǍwF�D�U�\u001f��_\u001c{.+[����� �r$��\u00126\u0007�Š\b7��y���e��w֨���n?�WS��É&�\u000b).�\u0014\u0002`�t?]P;g\\�����\u000bt&�R���v�1\u0011׶\u0015T\u0004Dr�����Z\t\u0003�<��V��<���\u001b��\u0004g�e\u0006$\u001e�\f��p��� ��\u001c\u0000��\u0006|�l���K&��N�u��J�e\u0001�Ј\u0002�KbQL�V\t��_��=���L�h#Z8��\u000e�b\t\u0011�]���Ul��h�;�A(�#P���Ŵe\u0005Vj���qM�`��BCPg�ҋ���,��t\u001brh�\u0002����,�;��-:Z?�?\u0018�\"����L1�\u000b�\u0016�a�\u0016��P5ՇE����@�5����f\u001e�\u000fOp��\u0004���[\u0017z��0�7\u0010���IMҖ0<�_G\\*�6%I\u0003q�kNz��`�q��\u0015MČ�`�����p�\\z���8�W������WI��.Z�Q�� ��\"��\u0004�C���,�l�\\R��3J:A1M\u0019r�\b��$bn�t\u0015��>�2� X̵�_���XP\u0007\b��L\u0001e�%�3��\u001bC$\u0019��]����T/4U���U��l���uJ3\u0015[\u0011I�̈�h;cQs�A)�#d���t0{>��>�D�\u001d\u001d���z�\u0006\u0006`[�|\u0017?-�\f�a����(�M\u001d:��h>��\u0000��0a�4;j�\u0017Đ>!���P�\f�\\�~?DkH\t���E�\u0019y�.��l����~0(�B\u0010Gf�2e��\u0011�ָVD�^�\u0014��\u0010i\u0005�m��/R�\u0017�V����/00\u001ds�L1x2�d\u0010��!�b�njZ�9J0��i\u0018Z<��\u0011��7W_@,��E����Ԟ�Um��ԃ��v?�3���������1�d\u0005!�d��Ә����,�\u0018\u0019�\u0016�I���V�\u0019p10蜩�\u0019lB��ė\u000eM<\u001d�?�W\u0002��Ój,\u000b��LY\r��R��\u00010�O��A���A(�#x��۷;\u0012�:n�s��Wz\u001a�8\u000b�E�u'����x�y\u0000�\u0014�Ձ������\"�|d��d�xt(ԣFF\u0013L� U����l_,oJW/\u0001p�A�\u000e�<�\u0015Q�S\u00032X*�\u0007)+Ă�\b�\u0002�\u0001�/�٧�(��B\\��\u001e<����32���*_\u001c�\n\"p�}1z\u0002�?��1ha�\u0000��ei:.\u0018�i\u0011�[��`5\t��m���=~x86ǘ�2��`9�o�x�y�\u0005@'٢�;����]�d2��\b@���h[�N��d�\t�0��>�~���N�\u0007����i�\u0005ijp'r\u000e��4�Fnq�:�6ϧrڮ�ǧ\r~=ݕ�d����\u0002�?ƶ�\u00151A�r^s[��q\u0015�4�T�\u0003k�ӯ�2+���\u0001g͒�Ҳ\u001e��߻k3\t�\u001d�\u001b�,3i�o\u001c��i��r\u0006\n��Z\u0015\u0010U���\fs���y�H��z��|M\u000bX>�#S���bU��#\u001d��G̩��-1ur�A7�#���JT��Z�qZ�O�t/m��r+\u001aY\rP��\"\u0004��c1�����m��&��\"��:��<�\u0012��[�G\u0016�|\u0002'\u0012Ya��oԢN^(�N�d�\u0017\u0017��t���\u0015�\u0017'9��*#:����u�&H��l�(\u0006\u001d�ʤΑ��o����tS�0\u0010\u0011Y�\u0013�\u0015�\u001f;#�\u0019�\n\f\nf}fgN��\"a�,\u001bok��VZ#6�)g�����ѣ�\u001fGFT�\u0005+C3�,J�.*\\�!Ze~�?�p\u0006\u0018�W4ߝ�_2h�#\u000bǤ\b�\u0003��\u0000�9\f@�b�\n\u0007�z�3\u0015\u001ctlϟ\u001b��\u001b�&\\�\u001e\rK5��{)\u000b �\u0003q�\u001c�2[x�I\u0002�SO\u000b�v�1L���A[\u0016�º\u0010\t.���j\u0006�� \u0007\u0015W�B>�#���|�5{&s�X{b����]g��]�\u000ff�\u001a$�s�y6NA��K4�\u001eV\u001de���\u0000���Ҥqn%@HN\u0001�/l��4���q\u0002������t�,��,�`VRg�y�j㬱�ݫ�+v���\r��j�$\u0002\u00013�,�FIf}<��\u000b�AR���j��������\u0002,-�l����yP/'E\u00140{n��\u0002Q8ʡ��\u0006x�wݸҕ�|��\te\tW\u0019��d�5b\"\u0013�;�\u0018�f|�\u0011a�\u0006�K\u0012\u000e��\u001d�Z0�=\b\u0001�?�A�F���X�AE\t��`�nm\u0000�/SnR\u0016l�}�3ޔ�{~r\"+Zʤ��-�O@[�0٧\u0019��;\b\f�l���RV�&��2���W\u0013E�l�\u000f�xe�\u0010£O\b\"�餠��w\u0018�u\u0019ɤ�Jö�ۋ[`�i��x�,+�\u0004$\u0011�\u0002G��)���v��1Ľ5g���\u0004����H�o��_�fK\u0003�\u001c[�ϣA#�#Ȁ�L�,0sO�*��\"0�e �>s�7Ј��i�\u0007\u0011�`���*y5�s��t\u001e8ٹ\u0017\n�>\u0011��Π��\u001a?\u00188�|^\u0005�\u0010\\f/�C�vƝ�C�js4�B2� L��\u001e\u001f�\u0000!�P4�)��\u001f�>A9\u001aO\u0019\u001eZ��\u0005w,Sy\u0000��~��_E��cB�\u0012��P�\r\u0002x��W���~�؇\u000e\u0000�e՛ّ\u0018OY�&���z]\u000e[/\u0010��\u0006��\u0004��Ӫ�\u0012>��H\"b�\u0016%[�X<2O�z�ʼK�,$���j\t\u00113�C�ߞ\u0012#�l��;�\u001f����\u0000d���@[\u0006?P�\u0014��\u0015\u0004�\u001a�u�\u0003d�&n7�dD.�x���A(�#܀��\fMZɘ'�*�<ߒ����2�p_g�\u0015�f|}R��[��n��g&W�YO\u001e��+d�\b�\t�w�,y[��vm\u0018N$e��j�c2!��}'\u0004,���]F8��������\u0011���7\u0004{\u001b����S\u0000���4��6w�…ӌ�㩅�\u001e�?�@Z�z\u0001��&1��HK*�\u00104�\u0017Q���f\u0007\u0019�\\�\u0015r>6\u0016�>��+(\u0010͖��\u001a+�o��\u001c#�N_�q\r�ׇL���1\u0014v�T��j�S�\b��r���7�z���\u001e�O5y\u0003�4��\u0016~8��g&Jr�TG�6��e�Sg�\n���\u0006�����ñ��\u0019��؆y��K@H\u000f��dl\"\u0005U��\n\u0004F�A\u0018�#����\r�D�vp��\".��\u000e3���j*��)�|���\u0005S�\u0004�n�\u0003Ԕ�M-\u0012\u00133U�M/Z;����0�\u0007l��H�!�ք\u0015\u0016\u000e\u001dp\u000e���K��g�!�\u001fޏ!�.�c,���I�%?�3#9\u001e�H��N\u0003Fcw�/�!���7`X&L\u0005�3\u0018����]\u00181�3�f�4\u0018��䫿\fcN�\u001e�j\u001eh�G����؂L#�M�HKĸk\u00049xS�\u0017$ �7d�%[\u0010)�O0X�\"������\u0006�tz@��9�M�K��\f4��ᯠQ��Ҡ\u0005v������-��#���|O\u000f�a�\u0002�T\u001b-��c$�\u0018�Of\u0010��DG�A\u001d�$\u0004���\u001b�Z���.�g���R#m���cW�\u0011�|�S ��e!���WaXG��0�\u0012ƹ�+���։R^�ڭ�_��\b2ػT�\u000e\u0003C�\u001bm}�\u001f�npK����k/a-�\bӸ�J�k�/>�L�\u001d�Ә&��\u0015\u0018��a$�u���L�Z\u0003\f\u0015M��ҡ��\u0006�V��!�!�$�h�$Ak,.�\u001c��e�3�7]���3��$q37�\u0015�'��\u0000l\u001d]�i-\u001c��5�\u0015��m�i̟\u0010(�o���T4'�\u000e��.�e��\u001c��lqhx���1}��WWN�\u001b��M\u0012}�e�ʨyI\u001e�2V�+v\u000b�l�\u000e\nմ���<�����p�<�A\u0013�$\u0018���\u0010��|Yto��9�\nO�M$xL��\u001b\f|��|\u00141\u001f �C�p!fу�/Z/�_���0/�>^F\\��r�+���~0�n�ݑ���ε��_6e�\r�c�M�Ox�h�p�t�+5�Do�8a�\u0003�4\u000bX�)sL�\u0017�R\u0010�T�\u0015\"��\r\u000fz���;|�h�>[i��RG�_FH�]��e�D���\u000e��0�{q\u0018���\u0017\u0019�ُlb�O�?V�s����*쿑�(h\u001cx�\"ug\u0015(�OJ�d�\u001alg\u0000�8���\u000f\\J�V�\r�X��ʹl\u0011�wO�P�[;�\u001d�r�㸲镱��1�z�r��f�q�!�}s�?\u0002�M\u0015\u0002��&�ِ�|�W��T\u001auz�^��I�Pq���\u0010zFu��u�\u0006$����\u001b@�R�i�4EX~$��\u0007JD�%�\u0003�ž�Y�DE�A\u0016�$@��X�8�\u0013O\u0002��ܽq��r�c|Ar2\u0003\\\u0001�r���#\u0015��J\u0001t��6\u0003�\u001c\u0017���gY]�Ef�\u0012��\u0003@���\u0015��C\n�=\u0011D/\u00119\u0010�\u001a\u0017��^\u0001f���1\u0012��\u0007��1���\u000b���G\u000b�\u001e2STW7�H\bbf�$�k\u0015iB�S��\u0003��������ʽ\u000bn�m�\u0001 �'P7��Vы�y.s��\u000b'\u0012\u0004�\u0015N�9d��r���\u0002��E�y.\u0016���h\u0015���Y�Zy��5�*&���a4FPA5�;��V��\u0012\\���\u0012���٦ĉ�\u000b���Vq�N~�̞O^)A?\u0014�z%*�l�P\u001dLŊ�o�EA�A\u001c�$T��۷֞��d�he�B�\t\u000b\u0011\u000f\u0018\u000e۴Y<€9�S~ɠ\r&\u001e\u001fp��\u001d\\��\u0017�\u0014��(P\u0006a6'�obB���û�\u001d\u0006�8&�{E�6���\u000b.\\�\u0017�q\u00077dO��#�w�\u001aD��ӎ�c���x\r���-�:�/ve\u0010��\u0007��p�ZP�L��ΐ\u0003�AT\u0004\u0007\u00124\f:�q�>_Sߩ�wmc��RӀj�/��%6�`�4\u001bحST�\u0001Ql\u0013\u0007`}\u0007a�~��2�\u001aϑ���\t�0\u000e\u0010��B_�ź�\u0016؇P.Ïӫ�i)ow�0~EQ���k��-=�\u0012��l\f��\u001a\u000e!\u001f��N��\\�:���{J%\u0018���\u000f�w)\"�A\u0007�$h��M ���}Y�z��|Bi�!d�ΞK�ɰ��8!�y��=3\u0003^v\u0012�C�.I����e��;�qY�5�A]��=oƫ���H�Bz�\u0010�T�}B�\t��հ\u0007�\u0017�'�@��w6\u001cZ�\b\u001d�tؘ\u0002\u0002m|�:�\u0001���4\tH!X�d�I���x\u0005#Bo��\u0015\r�\u0010��3\u001a�B��'5O v+a[G��[m��鬦T�F<�V��Ɏ��Ϫgp�\u0016��e>�lZ�>\u0013A�~\u001e\t+��i\u0004M_e6y���\u000b\u0002��\u00043���vab��Y����р�\u001f呪\b-�9��@\u0003�Y_(�䦁��A\u001b�$|��L�'_�\u0017��\u0001E��$�J���C�\u0004��U�b\r���7wRn��\u0006�M�\"\u001e�r#�J���W��5�vBI#=����k��Hk�`\u000bJ�]\u0018$\u001a��ԽF �\u0011/�6�\u0001)�ٲM\u0000\u0005B$�j��R�+UZ$ɔc2\b���\u001b�\u0000\u001a'n!w+4����]%��\u0013�y\u0015��\u000f���\u0011\u001d\u000fYЉQ33�\u0000P\u0018ZzQ O��\\�[���\u0001<�=���ps�\u0006I�e)6\"��\t��t��я���\u0011�\r\u0012�)��]]D���w\u0016�\u001e�B��\u001a�\u000fdN�\u001b�XV\"�,\u0000��\u0003�ܲZl���2���o�$�'\u0006u\r� \t��R�s\f�\u0017aտ�A\u0019�$���51�-M\b�M�\u001b���W�L\u000b0\u000eR�< ����dP���t�\"\u0019B�}�}\u001aF�WS\u0011Ղ\u0018�K��=\u0015��k�n�\u0010\u0005\u0001L\u0016�5�Y\u0013^�k����l0��q&���?@3�y\u00136\u0018�gu���o]��F�N��8|��\u0015�l�\r�[a#\u001e5�$\b z/�N���s#� Dk[j��\u0001nڄ�-8�4U�\u00141\u0012\u001f��ҵG,�*\u001b_�-\u0011�:�X�\u0013\u000f'�5��3��^��ϣB\u001e�$����\u001ba[��-j�E/��!��ޠ�\u001aO�0;�\u0001š\u001d�\u000eĞ�¥N��b �&U����0^��2�zC==�\u00022\fRt�\u0012���\u0017r�'t�&\r-�34�\u0007AͰ���\u0010�ź\u0010�_m$C��\u0003h\u001e�%5��b=��\u0007+��|�����Aq�\n������<�&�X�K\u0006�\n�m�E/bƼ~�G�\u0015�[Gp�M�\u0007H�\u0019R���\u0017l��A�cF|��\n_G/^�|E�\u0000\u0003��`��\u0010I�*�)� �%���\"\n�.N\u001f�r\u0010�\u001b��^hh\u0018�����&�\u0000$��E�Na�h��h�+�\b\"S\u0007\u000b8K�R,a��\u001ef(�_\u0011b\\�\u0010��N93\u001e�&2$��V�\u0002\u0010����\u0011��aX��n!����\u0014��s\u001f���TJ\t\"��%\b�?a��}��K����_pv?\u0002�Sڞ�ы�\u0011\u0003��Q�C�Z�\u0002BP�\u001f��\u0007�Ν�l\u0000�\fݣ\"dAVl�:��\u0015�a\u001e�0)�Q�\u0007\u000bz흫�s�\u001an�5�O�=��%�\u0007\t\u0016��\u000e')��\u0017���\u0004t4�\n\u0004\u0017p/8�\u0011��Db���=7�\u0002X\u0005+\u000f�1H\u0001X%��A�t�\u0013�\u0012��kl�\u0006���©Ia[3Z�\u000f�-�\u0000r\u0004W��g�����[�[m\\���������y��\u0014;�Av�$���}a3���F�g����(�W��\u001f޼t\u0015�ȫպ\u0019��z�\u0003yh�)R�,��\u001c�ᾧ/�)��< �U��+\u0002hu��\u001d\u001a�\u0013\u0014\u0015.K�m\f��\u0015/!�؋\u0000�\u0012�\u001cs��3bm����\u0002����\u001e�-�0���o�>\u001f;���\u001a������7�\\C��\u0007\u0004��\r}�'�O�\u001eI2\u0018��w�\bZ��\u0015��q����X�8]��ɨMA6q,������L�D\u0005[����\u0003����W��1\u001e]�dfG\r�,�ܦ~툷e0\f)��8��k�\u0011��\u0019۔�\\\u0007Sx����C�:a�5\u001aE����@Y�c5�wͻ���XAP�X�G\u0011���4�c��f\u0018\u001b\b7��70�o�*Y��\u0003�i�\u001fK3�\u0004\u0011�Ħ\u0011����\u0011r{\\R�k\u0004���f/�g\\��Ͼ\u0018\u0003\u0004�P���\u000f�\u0010�8\t5Fۭ��.�O\u0014�;5�A\u0013�$̀��oyح-��rXQ�X6�A�v\u0015��KMS�Tn�X�χ5����\u0002�ݫǻ\u0014R�\u0011Á�$�8I-)�\u001c���\u000e'\u0013K�t殓�ar����^�\u0014�{Z��Iմ��r���:�j\"�\u0010��*\u0013��V���X�@�!�!2���\u0003��J۠^\u0007�x'N]w�˽�:k-l���a�r'&\r_.�\u0007�\bS?�z�O{V�z�,=H\b�Ѩ�/\u0000\u0001a��C���y�mH��m2Um�Z�Cy,\u0019\u0006�GԦ�^\u0016����\u0017C��͹\u0011��p�f��W�\u0018�:\u000fe�o�k-ƌ�6��~\u0007ܐ\u00044�\r�g\f��\u0004@�A\u0013�$�����9^.D]|�?�����h�C\u001dP�FV��s;�p\u0002j%�a�~�\u0007�2^\u001e2�q���hzˣ��,2���2�=ۼ�\u001aZ�U�9i�'0dٛ���FfNO�$�`����èm�i��S���TC�\u00151��5�'�~\u001dT2��9\u0001���o��%�P��鶢M<����+)��}_�Āi��t�0�|j@i\u0010n��{��[ ��m�w�\f8Rh�O���@�\u0016>Y�$#h֩���G\u0002\u0019B�{2����35�\u0018'�I��߷7֬�(c������b��5 x�\u001d\u001d\u0001�u\\\u001cpU���j��@��\u0011��b�6��A\u0011�$����:\bJ��Rg$1\u0012\u0001��_/m�m\u0013@\b����n\u000f�w�x9������U�\u0011T\"P\u0011�@��L�B%�U\u0019O��Vi,/q���6\u0003a��vj�<��E0Aӥ\\\u0010������n��N�6�)\u0007�$ZLl��T@ex���l(�;�V��n�N)+\u0003iXY�KD\u0011�\u0015}�d\u0001|/I�\u0013�-����\u0010|\u0003~��Tb�w�L�\u0016iC�A4��M�\u0003�\"z�õ?�R?+�[��.�#��\u001f\u0007��[}�)���(���=�MãwN�x�=M\u000bV����k���8�G\u001e�!<\u001d��h�J�Zj�f$lNġX�;\b�[�A1�%\b���l���\u0000\u0015\n���a�Vz��q����M�|i��m ��j=&�1G�^W\n��\u0017mx�#�2��?�>\u0013]M�y��y�_NI��\u0006]4�J_�P�d�!zX;j�W\u0010\u001dR�%�\u001b�[���W\u001d�o�8/�\u00173�2�GЀN�.#�\u0015\u0015\u001f��*rL��)N�:D\b\u0015�ƣ\u0002u��\u0006��*���y��;2|���\u0003OOZ��Ť�\"h�vu�M\u001d9�{�\u0014L<����\u0002Z��ׅΖ��\u0012��>\u001a�9I���i�\u0019s��3�f&\u0012\u0012����\u001a��'��6�\u0012\fx�\u0019\u001c٫€�(V�I�5�+2;��H����7P�\u001dh�[c_7� �\u0012�*+�k-W��Uw�|�\u0016\u000b�0�AB�%\u001c���m;\u001b���?a�B�\\>\r��U$�6�JߤC\u001c�W�a���4\u001e��c�\tS���f+��D�\u0001���D�ӵI�\u0011H�z�`�#�\t-�}�;�_�Qf�X����X>��D�V�@A�}���.��\u0006e�����W�fr�,(�\u001c\u001cU6���v\u0003�\u0010�����s�g�\u000bQ���#V\u0016u>���x\u0006\r�\u0010�gz䴊'�d��{\u001c-���w�\b��\u000f��\n\u0015�JWMƪ�ݷ��-Cn\u000e��}�r$\u0019u\u0007�ݤ��\u0013ZB\u0001�Z\u0018rM��\u0001��1��ؖ �UmRE��\u0017\u0000\u0005,i��,=i�\u001d��1�`��AVS�\u0019����yWQ�\u0015\u0004�VȥB\u000bY��V�\u0017W�O�x,#P|���5�6A��AQ�%0���c\u000f\u0006���H�\f28�\u000bnI�\u0006��P�\u00040%\b�\u0000��y�\u000eW\u001c�=\u0013��w����DOSF����>+��#�3(�}���ōk+?4Q�RY��y��\u0007aW=���\u001aq\u0007�\b��{E�a3��\u0014��4�&Ԧo\r��Qq\u001ec�!7\u0017���#pU�x�3\u0001�#F>\u0004յc\u0007��({��\u0003��7tg³wfb��0��\u00131S��\r�5?\u001d)��s�G�22�\u000f�\u0017Y\u0002�Ц����\u0000��c���\u0010F����\u001fz�[�q�\u001a��=c����\u001e���/�\u0002������٠��d̃\u0011�o�\u0006P�c(NFC\f>�\n��X\n\u0007����e˰�vtDë�β�)�\u0001o\"3�`P\u00193\u000b]]�5o�2�g\u0016��\u000b� ��+���\u0000\u0002�1��0�A<�%D���fÏ�z;ԏ:v���4Z*�b��J\u0010�xY�����\u0005�\u0007V�|�}WNM��\u0005��fN��lQ@1\u0004֨\u0010F\u0005��`\u0004MA\u0004��z�!+&N���:\u000e�\u0013,\f4:�N]\u0013/ɻ�Ҳ�T~\u0003�Ma*\u001c=��sVi �x/�%\u0014\t�2\u000b���4Lx\u001c\u0003�����3ab�4��$~�\u00054\t�TI\u0019�^}�V����\u0006W#r03�b��Q&t�\u0012��X�vy�s|�\u0016T\"\u0013qNr O��H\u000er�\u000b\u0015MH)��\u001b�m�O�\u0015z~ߴ�Z�ć�ʽv�\\pI--(�������D�\u0017�#\u001d�Y�$�h�Pi���'����\u0019��*Kta����c�ΐ�\u000f��\u0005���dz�x59&��\u0001�r�|6��A<�%X���\u001e�Zk;v���\r�\u0010��0\u0000_\u001f�o�r��+������;��w]�\u0004\u0001�����J\u0018�G\"'{9U�x��v\u0011\u0014��\u0000:�\u0013�P\u0000�9�h��noz�a�\u0007�ޗd�2N�\\]��KN�/\u001aC�\u0014<�ɷN��d !�sG%�9��\u0013�$<2�&Zҷ�����_ �9SJM����\u0003\u00125OԱ�\u0014�\u000f\u001dk\u0014�\u001aT'��\"���=C��t,\"�jK޺|�.(ea��\u00198�aϙ�ںU/X���m�|Ȧy\u000f\u0006���C�J���9\u0014��VH\u0018&xݱP�Y��\u0017k�1�\\�`\u0010˱\u0017F��.t�2S�>)\u001b��X�W��XL\f�����:QPg%��6\u0004���x��\u0005Y&�ߪ�G��>\u0018�\u0000ɣA>�%l����\u0003+�\u0016���\u0013*�\u0005�A��=f�1XXs�>����$g)\u0007\u0001Y��9u\u000br_��׺���6�%�u)�I\u0000�γ��\u0015LS�\u0017��\u0002�>\u0006��rg\u000f�Rn�W6{�C4�j��\u001dmw�<�V���$�O\u0002jWԟ4�\u000b[��@�\u0007uG�Z��k�pQ(��B\u001ad#�U�ɣA6�%�����\u001a�4\u0007�EZ���>�>����\u000b�\u0012�]@��r�Q��lZ�\t�F�\\���R�f��D`�)�\u0014����\u0019\u0003\u000fu\u001f)O��U���6\u0015�\u0002�W\u001a�Z���v�%�c�xe�s\u001c\u0002+�&a\u0016~�,`�-''�\u0017�ܸS+4\"Z�a\u0019�!��_X�\u0010\u001b�欐�.ns@\u000e�pi^�un�\u001d\u0014e\u0005���������'7.�A!BS)��K�d�_��B^�ס\"�M��҇fM\u0000V���}\u001fM�����Iv�n�K�0�O�I��چ\u001e�l��\u0019�\u0014IE�\u0011mi|\\2r��J�\\���:\fNwh���[ �m��W�R_+wՕ\t�?�\u000b\u0002��*�'��ܖ~'K�{�A,��ʣA@�%�����\u001d^��\u001f�X��r\u0015L�,:\u001d#�oA�\u0018�۝�D˷ӪU˾\u00057�l�i\u0014�`gV&��\u0007B`������\\�\u0012���H(�¯\u0015�\u0016�W���\u0012�\u0010\\J�フ5��ѹ޸�\r�s�2�c�}\u0006м\fW�\u000f\u0014Q7�_\u000ftӕW.V�jScS\u001b�m%lA�N�\u0019A�[�3�B����_���\u001c�yxW�k9G����u��5}N$䓞�VЀ\u001e�\u001e�z�êS���޴��WU�=\f�RP_b\u001d4h�\u0007H���n��� �ǘ�~|��J\u0001E\u0007�r\u001e^���=�l\u001cV���\u0019-6\"�Ni2�T�v�\u0010q���\b��\u0011�ƞbT���\"�br^�B\u000e��(Jg�~\u0015�I�JM�\"����)\u0005�=\"�\u0014ʣAՁ%���|���\u001a���c\u00007��f�:��\ns\u0006\u0002�`S��}k�\u0013���)\u0000�(1�vzÝ���{�\u00154Y��\u00043;��it\"!*���\b�\u001e�=օ��w]�n�Iu�\u001c�p\\�ɋ5�u8\u0013��s�����8��\u0003z��y\b��\u001dU��af�6$�-��һO\u0016[\u0003��C!F ��=Vt���nA�/��j\u00185�\u0001�>Nݶ�k�,\u0000�R6h0�(Tf�\t~+�;�l\u0014Ö���`�4/���\u0005��\u0011b�p�b\u0004��W���\u0014x\u0007xp��ͨ8T�R\u001f��\u001du,\u0006���G��fSY�5K��6�q�\u0014֬r�s�\u00065|��\u001c\"\u0002|�\u0004c\u0003'�\u0018T\u0015�fR+��[ԁOk\u0012��b36��Y\u0012\\�\nc1s*;�ƯX#?�����n�S搔\u00109\u001e\u001ck��M��t䍋6�\u0002$Z&�����a�e�)s>�k��\"[\u0019��Y���\r�\u0017\b�\u00015�k|=����[\u0013\u0004�H�`_�\u0015*���\"3\u0012�(S��U��(�\u0014\u0017�\u0018g��\u0010�����;4�]�k�F�p\u001e��ٮ��\u0000k\u001c3���\u0010�Kkm�ћ���ΣAA�%���\u0002�\u0012�f��x�!�|�0�o��M�9\u001b\u000b\u0013i�\u0015(�\r\u0001f�\u001f�E���%�𱳕�\r\u000ew�\u00146H\u0010\u001c���\u001a��v��ج�i%t2�o���O���\b\u001b���I\b\u0006\u0019���y*�ڪs1����r��T����\u0013��0�¡��Y\nb\u000b\u0005�e����?����\u000b�Ӈe|\u001ay��1�� 3�\u0000�\r#\u001a�x5m*6�.3�\u0010�\u001dD���\u0004)�Q�4�+\u001ck�\u001f|b�~\b��\u00032�&Y�\u0019[�\u001b\u0015n'nA0d�%\u001d\u000e\b/�W��\u0019�N�ˎ%�q�{�5\u001av�|��#}\"\u0011�{�\u001cX�w1�*s#�k��!\u001f\u0018��Jl��K\"��e�y��\u001c9�\u001d\u0018\u0004���\\յHf�K�ٛ�.k\u001cU�\u0017\u001e�#�\u0011��\u001c�AA�%Ѐ�.�\u0007n\u0002\u000fe�y����Z�^\u001b�=J8��\u001e���y�Vg7\u0003�\u0006kԎ�.���+�\u0018�g�5W�N\u0005<\u001bo��c�3U���Xք�*Imr�{{\u0017��R�\b�e\u0004+\u0007�����\u001a\tA9�\"�7+~C5����\u0007w\u001a�KnC�bF�D��\u0010�[�4��-T��J\u0013���p��\u0001���\u000bs���t7�12\u0010Ba�\b��\u001aA�X�� ���8@��ClLc�%i��s�\n\u0013\"i`�a��:P�\u0015�6>\u0010-\u001bω�?~\u00197���y�7��\f��23�\f�wq�\u0012\u0012�ó_�8��U�\u001c����kԙ��\u0000Y �N楟-��q�\b\u0003o��\u0012 \u0017����kLud�\u0012h9�\u001a\n״�$eQي:��b�$l�$��\u0010�AP�%���r'b\u0018[\u00068{Q���ړ.ׁ��q\\�Y��\rM�TI�Z�\u0017�>.�-s�x!�ɂ�Ҡ�Q���,d��\u0004}\u0004BC�\t�5��z��=�\u001b�MUW:ky����a7׿Tܱ�\u0019����>�Z�x��\u0003�\u0013�a�s|B�p��5c+{û~cb��!��ii{q6v͞B�K3\u0014���\u000e���^�ٵ\u0011ƆP���7s})�X5�J��TC���,0���0��A+C~#\u0012]���4\u000f�ϩ`�\bB�\u0014J\u001e�R@�v�0��\u0005��\n�x\u001f\u0006PY;���%bU\u0019L\u001e\u001e�B)Jn��)�'X0��;C�,{2L�K~�\u0005\u000f)V&�WM\u0001(�<\u0012\t�V?m:\u001e\u0001HO3��H�p�����\u0013���W[\u001f�*D\u0014�b\u0004���\u000e��Ar�%�����m}��ه�\u0005���\u001c�GB\u0013\u0001S�C�e�簼\fͤ\u0013��\u0015S��?���\u0012g�O�\u0013�VE���&/��P?��T@�4.oGrC�8���@�E!쒨�\\*2�$Ӥ�ub��N�)�j\u0002�<\u0006k'V@����mIԉ;q�Yd3�\u000e�^#��θk~\r�\u001c͖︐\"Ԯ\u0004dYې\u0011�՚U\u001f�\u0005�}\u001a\u0014�aʟ��6�\"sw7�j�G�\u001at޻�OD�Zv��j[�\tۯ��� orO�}��w�\u0014�\u000eʉ+2*`=��r�xr:�m�X-z����X+\u0018ɨupa\u0004���7�=g\"q>��E:?\b����K�@�DG�<��\u0014\u0014�\u0002o�˧\u0010��\u000e,�{Ù�W\u001a'ޢvOqu����d�-��ß��K%�!�\u001a��A\u0018��~4�`�R���\"/���m�ܹ%o�����\u000b$L���A^�&\f��1�x�6���(�F�5�[��6a|��P�P\"1^�4r#�b�\b\u0014���'�\u001bؖ����p�Z�˫��皦~R�/'��Zݾ\r��1�\u001b�!\u001b4�z\u001d�\u0013�\u0005\u001f:'W\u001b\u001b:i[�\u000bg�����X��6\u0014&q{�r\u000e9h\u0016\u0016��M�����X\t\u0005�B-B��ӑ�@`��\u000e\\�\u0012k<�t\u0011�\u000e��j�-�s\u001fC\u0017�mR��\u0013r\u0006��[\u001d����3�\t�\u0006\u001b��n���.U���\"\u000b�\u0002-��\u0010wYh�P\u0000�W9�'�*x���Z,��\u001d�S\t���F\u0001\"�7ʒ�O=ѯ�Z��M��}%����|��\b�=+/�\u000bը��\u0016���x\u001f�-H�\u0003��&���\u0013~�?\u0014\u0012f0,�ȿ5/�4���ά�\u0003\u0019��u�\b{Ū/\u001b�.�\u0004�s��S4j��\u0004�Aā& ��}a\u001eS��\u0001��ﴔtJ�]���a�u�A,�j�����M�H��م���qT�\u001dOY�\n|�)\t���S��_ڄ\u0003�\u0002_\u001b��\u00021F�0��\u001c�\u0018�����\u000e��-\f��)�9�:�\u0006�����A\\ae\n%S�������\t- \u001c��J�ں�6B�⸛�7�x.�&d9Y��pjʎ\u001fI�M]_&��I�sN\u0006\u0017\u0010�Š�(�%���@\u001e�\u001cv��]aN��mH���TQV�@H\u0010�$�w�G�5�;IH�v?\u0018ϼ\u0017��\u0011\u001e��=J,o�g�f�ȧ���c�e�\u001d('�;S�\u0007�m7��O��t\u001f�\u0013S�Y�\u001f<�\u001f1�\u0017\n�.�Ȩ�;J\nD{�����2w���lK>M6^At�0��_'M\u0002����n���u���7k�\u0019��p#��t��F�����ֳӀ������j��y�%���/Gw\r�\u001c*lL�|K\u0005-�\\A�r��\u0003��!\fj�����wXm_�Ӯ�\u0005��6ԡE\t7\u0015i\b����p㳤\tB�:��\u001fЯ�+n�W\u0012��\u0005�A��&4��z�$�@@S\u0004Z�[\u001b�\tlZ\u001b�ӳ%p�\b��܋\b�\u0014�b1�\u0000�\u0005������o�/D+���r`F%f\b������E�3����z*�\u0016vŀc_�)[�\u0000\u0006EKx\u0019HL��c�}�o�\u0010-D&\u0007_ŏ���\u001a�S',���A�{004@��!\"�\u001b׏\u0002\u001f��M�aw\\�b��m�_�\u0011���MS�\u0006A�x��\u0003[���C5��h�\u0004��No����\u0013\u0007C��s[�\b��1�����x�~��\\�$�N\u0017���<;_$�\u0007�K�\u0015����֧��\u000ffp�\u001a���hi�Ms�������=�H�8#&��q\u0019��.�8S\u0014@g�\t�P_�|0�\u0017\u000f�K(ó\u0003KEM\u000f�ڼQ�\u000b�_m_�L���\u001e\u0003�4���َ��4q�<��`0�\u0010�����x4�О��)i[\u001e8\u0007q{�2�h���y\u0005\u001b�0\u0011�vZ0Na�`�[\\�T��:K�߳��Z�Ys\u0010�e����[<\"\t�JuƂ�\u000b�F}y\u0011o�[it�A3�&H��\b��.��\u001e�>&����\u001bAL\u001a�A��討*n0�9&�stI��Q\u0003��N�oV@�ck�r<\u001d\u000eG\u0004�U�J#LM����� \u0006\u000b�̦Kx�N�2\u0002��2(��k���F�(|zi��p�\u0018d�J�$�U�*ͷg��ŕ�s�nd�4\u000e��`\u001fw4+�\"�@���CV\u0004&��ol�џ�e��/�״��z}�A��&e3��\u0011�\\�1\u0001��\"��\u0016Y��;Ԯ\u0018���}i@�\u001f�Cq�c\u0010[���\\\u000f?�\u001cfQ�5����5��a��p� l\u0007�J\u000b�\u0000@\u0015�і�X�@����lr��i�g\u0001�$�p�t��\f��\u001a�\u001c����\u001d*�Kt�K�y�g�(�T\rB�A��&\\��|�b�0��msͬ�]�k�}�M4_f\u001f�\u001f+b%ɓ�\rGw-�)�m��xT��}0����\u001f�8�%K�iM\u0010fr�I���Ïj�^N׭\u0010�y�\u001d����!��\r'���w\u001e\u0007��>�12�;(k5���s�a���a�\u0007\u0017B(\b �\u0004U�l_~�_\"��i\u0002\u0003}��3�,���ML�Y�w�ękL��,͆���@�{���1�?F�X\u0016dO��]�*/���x�Q�ٟ���%���\u0013�\u0016����{������H\u0015:\nms��\t�\f\u001e��;���\u00022�8�<\u0007,\u001aN\u00174�Y�!��yĀ\u0000��\u0001�\n<2d\u0010\u001a(�\u0018X4�<��\n���wO�>�'~\u0000\u0001��a\u0006L O߫M\\p�yIW�ϧ�q-�t�\u0002d­��́����\u0011\u0006魽�R��t�P�gJW脡���F�m��\u0002�j�ݑG��\"�H��v�M�l�\u0012UQ'�'�A]�&p��\u0002\u0014\u0000\"mč�c\ba��'�7|\u001ci�\u0010>���4�\f�4�\u0005�5�^Ha��븗;\u001eV:0d�r\u0010��zC\u0013f�\u00128V\u0010��]΃r��f\u001f�x U�ġ\u00116���\"2�ׂ ��\n�kbn\u000b\u0007hu�\u001d�3��Ix�\u001dKf]��W�)�G�q;9,�����0l����@�\u0018�\u0015&Do;%�����Z\\�<���\u001d7:\u0019�H��xy\u0005�G�t��$Ҽ�Cxs\u0019\\�O���\fG�,J\u0012\u001fՑ���\"�\u0004�A�j��w�1�֜�P��8��n���\u0016�`�5\u00061��E�ZLI��0�Eo��zj��*H\u0014Owƍ�G*�s�-��s\r=��\u0016��x��\r\u001a���x\u001eV�QanS�y\u000fn��\u00033�8L~Dll�|��ԁ#�&�ȎYB���\u0002@��Nௗ�A#�&���\t�IJ�(\n��A��2�Wg�\u0013x0\u000f�\u0000z��\u0019AΣ�4N|���]�\u0000�\u0019�]�\u0014��p�����H�q\u0010u�\u0019?�\u0015Fg��N��)2^�7�R��TS�4�\u001c�\u00037Ǭ[�P�\u001a�\u001fP�\u000bۆîW�0�@�ʀ:�\u000b�\u0002\u0006漧v(0|��\u000e\u001a�t\u0002�\u0005.�/�\f�v�/�>%��/\u0013\u0002V���2i��ؙ[�\u0013��0|���qNHW�%o��M\u0015]!��\u0017�� ':u+���h\u000e\f��\\=\u0013Hv0��(��=�\u0015�\rݪ��\u0003�GsߒV�[���@nb�i�_�%��^�(u�$;���\bn�#����W�T�,ɹA�Y����ͺUC�\u0004\u001e�v,���F\u000f\u0011�\u0016�pB� �ק��񧥽{V`�@'� ���^���m���'�}Z\f���ct��EJ�a\u0007��\u0001Mk�\u0019����;uz�À�yb�߷*We�\u0017��b\u0017�}:��'1�~�y+��-��\u001a\u0011�E\u0004�/�3zoE�t6Q�dy�o�\u0004�(U#�%�羝1\u0001�[�~���\u0019�`\u0000����\n��0�C��(��T/ĸ\u0002�\u0016���ǭ�\u000f�����\u0001l�}��a\u001c�7x_\u000f\u000b�^�>���,�_�KҐ�kr\u0010��屾�=���x�?c��`��+,\u0007d�;��:�\f��\\�b\u001c[���PO��!;\"�kE7&�v���j�\u001d��+k�i�����\tZ�\u0001\u0019zg|H#��VM\u000e�z\f�0��.[}�hr����X�\b\f�\f\u0015���FB\u000f�t�\u000bd\";�h\u0017AC>�<#�Vz�4\u0007g�ƥ-\"P��\u0004��\b�#\u001a(\u001a\u001f\u001e[\u001f�GXI}�Կ�\u001eJ�\u0016�\u0002�6>�N|�g\u0007x\u0007\u0018�\t�\u0007�)��AB����H�'\u0018�q\\\u0012\u0015�\u0001_6�\\�G��\u00150<$����C\u0011�\u001a1\b\u0012���S5�%,�h�;��\u0018ߕLݟ���-�~�JU>�Y�\u0017�mӈ#S�F\u001a2)��\u0014����\u0005�5�c��\u000f�A\u001a�&���X���F\u0012�3LK���\u001a��L��a\u001a���O\f=����\u0010����⤂�b\u001f��\u0001��\u0015ܓ\u001b\u0001\u001fp^�\u0015M�~�HZ��-��ǹx�\u0002\u001dy�\u0010�H,\u0006\"��\u0001����p��F>��ٴ�s���9�|��\u0007U�d��W�\u0007g��\u0017��0< ��ci�I�ƴ\u0006�X9\u0011���'\u0011U�l�r�4�e\u0002�1B\n��\u000b����`�\u000f\t\u001d��;�\u0001�w[��4�X��r�%�c\u0001�ܪ��\u001e#���\\���N\u001b \fa\u001d/��M�3l����\u001d‚`����\u001b�x���ڭ�v��㆛R�\u0014%b�Q�箃\u000f�9�€!�\u001c�3\u0011�\u0006��A\f�&Ԁ���(�A�\u001bf��5\u0014T<\u0001�!�\bR\u0016�/\n�1\r_ڢ��\u0006\u000b�\n�V��=y��j��*s'���^v�c���E�\u0010o� R��E�<���\"\u001d��՟'���%�am������\u001bf��y�l\u00128�{Hv\u0012�r��q\u001bKu]�68Ӊ7��\u0000��u�U\u0006�\f��}�:\u0012`�'��q�Wq��m6a\f�{���O�V{\u0003)�M�\u0003�[�Q\n���\t<,c\u001d4�m*qb�����\u001f���#q��a8��UCb��\u0014b����\u0004\u001e�Ɗ%�$�o��\u0004�\u00179�\f\u0000��\u0003H\r�&���$D��\u0005\u0002JHÇvU�A\u0017�&��W�\u001f|#!���1��2%�\u0012Ե|�,�\u0011:�����T�,��IKI\u0004g#\\Е�^��!tZ\b%��B�\u001e\t�\u001c��b�Ў�k-\u0010o�����\u001f�;TMmZ��j��d;q\t�γ�\u0005\u0006�\u00121R\u001d�\trX�!thGVg��fl���\u0017Wz;L��ʚĒ��z\r%�B~���\u000b.U�\u0005�݉����Bx>�$��\u0001J,U\"��NN�a�C�5��y\u001d�g:��\f!��8L�\t�?gu��_�k\u000eD\"\u0003�o�\t�x�\u0010��7�[\r�t�s��t\u001a0�\\\u0012]�s�<6�\u0010��Y���}�\u0010|�o#��͙\u0013�RH\u0010�B-8��{8�A%�&����\u000e�P[̶��F��D�j�đ\u0012��{�wh*���-��q��?\u001b�K���qs���f\u001bޘ��\u001a�w�ǽ\u001d.\u0019ʙ�NlQ��� �3q�L�#���\u0004��\u0015۝\n�'�!����A�5��\u001e*&J�\u0012g=\u0013%�[_���7�\u0012��O�c �L3��6P�s��_I�d�DHA]�Y8�D����P��j�\u0003�����^\u000b���?�\r\u00149��\u00192�F{F�}��$[�~�1\u0010�@���s�~�f�����D���\u00030���(�*�\u0019F'�����>WD���NJ��̥���\n��{y��6��$\u0013\u0014&\u0002w~��\u001cF��%Y\\�M�m9\u001fC�u\"�>��Q�A0�\u0000\u0000���\u000e�l���\u0010�\u0000�.��Bt\u0007�\u0011]Ȭ�?�-���>���\u000e��x��3\u000e@8``��O�����8\u001fKRt�y��?\u001b\u0018Ƕby\u000f\b:|a6�giD��cQ/\u001a�tE0��OE�\u0017=!\u0014G�J��F�=8#-\u0003M4���ۉ4:��l�uב\b\u001a�ޒؑ�q\u0018��\u001a�I�`.��l\u0011@����\u0013!5t>]!Q���R�\u000b�\u00124�~��u0�=\u0014��\t>�2+N\rJ\u0005�\u0000H���\u0007^/)O�\u0018�II#���g����mO`���?�|\u000f\r����6����Vė�\rN*~2���\u0019\u0000),��1�.�쿨\u0011���9�\u0015��J����5����o؃1�F�6��AK�\u0000\u0014���\u000e�\t�e��-O\u0000���\u0012t���_�_��\f��������˙5���\u000f�\tU�-��<}�Bl^\u0013�I]��a\u0014ij�M�F̿\u0012�( ^>\u000ec�T�G�ths�^��JǤ���j�m+/\"\t�vS�\u0011����U\u0004�\u0004A=�\u0011�[աi%�L��o6+�4�\u0001��\u0013��\b?��nUI�\u0000�)(2�O\u001390If�y�q\u001cR\u0013�>(�������뫒\u0000��\u0018&�Š��;\u000e{�A ��5p�K>C�\r�X�7`HN -�k���V�\u0013eW�3��ҥ��F]0\u0016뉝��\u0000N��\r���\n�OMX�#\u000f'.+��6�:J\u0007�\u0015#?ar��U�n\u0011s�w,�*crA\\��r\u0010-\u000b*̚�&�|�x�fF�0�\u0001�a��?w��S�;�Ah�\u0000(���\u000e(���ú�1`ʧ3�j���(K�\u0019��\u0017�\u0005�#\u0013������ժ&��J��\u0010\b=~�$Lj˽�((#/\\�\u0013E�,� \u0013\u0006N\u0019��_\u001fg�\u0001�\u0002]�`x!���?�����a�\u000f��{'��⨐�J\u000bx�\u0007�q�Xy|��aqn!\u0018��>���So\u0005As�L��*\u001d\u0016s�tQ�*\u0007���X���Bs�\u001a\u000f�w`�^1���\u0011x�ڴ�#\u0010��\u0016~\u001a\u0019�r\r4��P��w�\u000b4A0��uWXK�58\u000e�\rL?��\u0001�<���/\u0017������8�i�ӝ\u0013zן���o{ESL�����\"|r�/P6j�w!��\u0001�\u0017R����Qk�%Pm���A\u0017�z�\u0004�G�{����\u000ba1�\u0013\f~vh�cM�y�g\u0002m��#4�\u001c>��qg\u0013m��d�bcR�%���z�o;�Aށ\u0000<���ߎ�j\u00049e�1����*�NH��*�u+�\u0010�m�\u001e�\u00003����K�4#��ŷy�(־�\fk\u0017k�$�=' ´�\u001b\"��֘�h�Ov�&�Z�I��+�l�8q���*�^x��?,��n�\u0005�\u0013�\u001ef\u000f�\u001f�AV�֟��Y5G\u0006ι9ks�2�7�^\"�f�G��\u0018/\u0001�\u0005j��C\u0017���D\u0005\u0018\u0018me�z/��_���pk�t�\n��)����;&���q��ЌV,]�ϙ�\u0017\u0018�\fGLU�\f0Z��E�������Ț�\u001f\u0010�S�x���|ݧ�`6�\"e\u001e�\u0017�\u001e�=��\u0015\u000e�ðH��[�\u0006�\u0011Џ��$�#�\u0018oĔ�~�_\u0002�\u0000;\u001e���DS\u000e�e\u0013>�\u0018q\u0001�P�\u001a���\u0002��Զ!��NN�0�{��!੣�ߑV0�=\u0005����%E6���������\u0012��}=�\u0019�\u0003�d9pa\u001c\u0007�g8�b�XV����GEH�R?޶\u001d.c@�\nb��a]�+�\u0006�\u001d�\u001a��%�.3L[\u0011l\u0010\u0005Ê����U&�\u0002u���*�g�`*2��v\u0017���-���\u0012荆�ڞ/���AI�\u0000P��L��-N@�f&��&4us�}[B�\t���\u0000�\u0007���MG\u001f?)5}g��F��\u0018]�a���2��M�q��R:p$\u0002��&dC183\u0001)&\u0012`\u0017�[t����:d\u0006�\u0014C��w\u0007�'�F�\u0011����/��޺��{�\u001e\u0018*�\u0004�����\u0013\u0002-GV�\u000b�y\u0004���C\u0015��ݍ�v8���\\���\f��-��Y������\u001f\ts,k�?�j�\u0003N�F��$\fZ\bTW���\u001a�����vd�\bx\f\u001a#RI�E�\u0006�\u0017\u000bY�\u0017j\u000f6�^,���?`z��t�I��\u0006�\n\u001f$d^4�\u001fy�\t\n]�\u0005�S����?Ƕ�\u0000 �+���6�����˂�\u0000��\u0014�+��\u0004R��� �wI�\u001c�/]�y[�\u0012\u001az�L\u001eD|t��y~�7�A@�\u0000d��L�CPc�x<��;�m�p�QRʘ\u0011�z��{��l��\u0011�y\u0019��\u000b@Ws�1e\u000e2\u000e��GU~��E�\u001f\u0000�������,oe�\u0016��X�W(���R��i����\rt�h��\u000fj]����n�?��Qt�\u0015�7��u��\u001a�~�����f�tr���gѻI�,<��>ڲ�\u000ec\u0014n*{����]z�\u000f\u0017�Ȅqʔ�X�E�b����ĵh�me�W@�O�\u0018�t�\t�5P�O�{�X�Y��*�x^O\u0006���\t��\b�*QS�QE�F���Q�yQ��,����,q��<\u001a��j:��0��A6�\u0000x��L�9r��\u001f(\b�/\u0006��n�\u0010�~�&�\u000b�a���1�0�JX_�\u0004\n�#s� �R]\u0003��\t[W�:W.vע~&\n�}y2�A�1�Ԡ@�N���M<�)s�Υ��,?\f�\u001a\u001cL0*�_�D�\u0004�5��@�`��\r�­.��f�\u00023ݩ��dT�ko�3���CyyZ�M8�,\u001c�?Zz.������qfH�i#��]+#����mUC��a��\u0006�O}���@�~HS.�A8�b9֙��^�����5r��k��F\\ݖF�\u001f��‚�K\u0018p�0/���צ]�g���7D\u0019%\u001aT�{�����k�\u0011�Xp^\u0006(�(J���HS�A�aX���[���e�D�S��V���pH���\t�\u001eb��\u0014�(\r�2\u0011v\rw���t&��(8�_L\u0017����N��K�ԙ6��Dd�\u0014�_�]}w�j�ޠ �+���\u0006���A܁\u0000���}a�\u0004$t-K�j�qA����׊\u00061u�v�w�\u0006DM0����\u0013�<�����v_c���Xt��\no���aSC9�vƢ�s��l��n\u0013\u0019� ,�N��+\u0002�l\nH�I���\"�%5�x�\f�X�o\u0011��S\u001b�\f����e�\u0013�ɬ�h�+\u0018�����\u001f���]��\u001dl��>��\u0015\u0007���~�3�S\u0001\"k_����\u001b��\t��zSE�\u0017�4��6C�\u0003�1޵��y\u0001����r?ؤ'�R8��L\u001a]\u0014�>��]:�\u0010�ȌE)?�K�.0���\u001c��\u0016E\u0012�\\T�`�q\r\u001eɪl��p�����\r\u00154aX���>ӣ#q''�)��ފW���v�\u0019Mv��S4(�4��\u001b5ǃ]�\u0019����\u001d�\u0015�]�>�- 78�\u001eZ�\t\u0005k��?)cj�r\u0007�ŋ�A\u001d�\u0000���1��8�����\u001c7x�0�\t���\u001cZ�\nE�صt�\u000eT�\u0002�^�AR�ձ��ͺ\u000bֵ�\u0001\u0011�g����_ 4�\r\"Fx1M�S���y��ٟ�r���6�.5�h�xΎ5H�h���J�\t`��<�oC\u0002O��i��t\u0011:?\u0012�%\u001d{���q�\"=\u0002��\u001c�V\u0004�\u0017u��p\u0015��OC�i�\u000bPO�~U�\u0011���8��R�w�˓�g�lLR�\b��.�o��z�_�vn2uM�\u0007裇�_�\u0013:ﲢ\\W\u00165!\n�\u0011}f8.\u0000\u0015��g\u0005����\"�C�!�I�h�c\u00000e���E�� f��j�J�𥡠3�]�\u001d�#6�A#�\u0000Ȁ�M��ԑ��xd����x(�1�K_��V��\u0013$\u001eZ\n�LH.\u0010ݫ����]b9BEq��\f���>\u0018��i��||�[�*\u0007|�vl��l�\u00150�@\u000b�\u0013���)7�|�Ģf��YczL�d\u0001�H���5\u0003���&nR���ɼ�x������������{H���h\u0007�1\u0007��4)\u0010���i\u0002ۻ��.�NY�b�\u0011\u001d�e�5�a\u0012�ۧX;\"b�\u0016&�CY�=�9Q|���a�uF�T?\u0000�A��/\u0005V*��iaA��o#%��n�:��qFi\u0013���g�!F\u0012�T�mgh)KF�]7��sά͊�i\u0010�'\u001c�\u0016w��\t��$�A+�\u0000܀��c?\u00161�]�ܝ�\u000f`\u000b����\u001b�\u0017��FY���i�\u0014?ۉM�G�S|G�%Q\u0017\u0002W�\u0010���V�\u001faZI�F���w�Y\u0000�؛i�&��\u0004����qN\u0005�U����C�\u000eS��\u0019'��O����9��9e�7\u0002�~�v�y�.t)`\r�~���l�}v��g�\u0003ڂ<��V��&CbE�x0+n}�b�Jԫ�-CzUW\u0005\u001a%�\\0����\u0017�y�1�\u0018�ϢTB\u0010W�A\u0003ߜ\u0017�NF7஑�i�:�$�\u0019�:��\u001ai��\u0013�G\u0015��Z;}�l6��\u0001�M�\u00109�[�\u0006q��S(���p\u0007\u0005s�f�\u001a�f\u000b&��G��bC�\b�\u0001\u0017�\u000f�z\u0002&\u0013��\u0005��AG�\u0000���M��A��NZ\u0005_�81\u001a(ԻW�~Ŕ�ꎢL\u001c �)Q��`g\f�\u0001ƫ\f�]'�g\u0001�>L~\u0017�\u0017�\u0016R\u0007XRw\u001d�_u*��I\u0012�K����;\u0010j�G\u0004\u0006�\u0012-Q\u0016���浗da�?a�\u0012�G��D :�N�4+׫�F��5�a�#/~��2��\b\u0015O��/��^�\bu`���\u0001=�\u0004\"��\u000f|�\u001d��\u000fd��#H��9��\u0010�|��v\u001f��� �\u000fi��\f�ޓ\u000e�%�a?W�:L.P�d�ӝ^9�����h\nq�\u001a?X�~�W��E�\u0003\"\u0017k��8�o��4���m����Xw�d�r��k$vr�~k���;�\u0001��J����:�Mu���ږtB\u001f{\u001c�'\u0011�tn�Gx�d� ��r�\t�'�o��\u0015��\u001b�A2�\u0001\u0004��L�h�,\u000f<�`|��\u0002����\u0011�\u0014W�#&�\u001b\u0018A�>0E����\b\u000e����*��HE��5\u0012���5�\\d��\u0015���X�Q�x�\u00101\u0000� �nT���\u000e�x\\\u0001R����N+J;�A�\u0011�yȊ�ek^�\t\u0000�a����]��:��2�a\u0011y\u0012�\u0007D͐����I\u0001���\u001f�����\u001c\u0002�N���%��O[��I���,Hֿ��X��q\u0014\u0016��1��X��rw�\r�D���\u000e�\u0013\u0001��\u0011�\u0011�����}��;�L�z�F�s\u0004��1�W����{�L�?\u0016yF|����\u0013�n��)-z=�^���a(5\u0012:�W��\u0010z��jʿʜ\u000b�)�k�ҾC�@�'�\u0019\t��&S��AK�\u0001\u0018��L�G��\u0013�\u0010�D���|\u0006-_��W�/\rlG�F\u001e�HJO�c,\u00139�\f\u0010�qn��0\u0011\u0005��В�ؘ\u0000��׊��f�D\u0019����<\u0013�\u0005�8Z���-m\u001e�L5`\u0001XYUL*�`<�%�}+�f���u9-�G/\b��2\u00155#d�3yz[Ɓ%jF\u0002\b�Qޘc�$�Q�\u0002�,\u0006��\u0017F�u�b�\u0019�,�i0�\u0000p�ψ���k\u001b\u001e��C�c����>�\u0006���v�^��D��\bك��RB�.!��r\u0019��a%�A�y�sB~\u0011Б�\u0013��E��\u0004+�Y�1�A���f\u001d{M�$��?�\u0000k��Ű�p����AV�\u0001,���c�&\f�s%؄t���̙�F����j��Q6!���\u0015�tXoe������0��ڰ\u0003��\u0002��AL�\u0001T��L�=\u0006�\t�`�3�0��ϲ\t1\u001f�����B>RG�t�!�+�\u000f0\u00003�j��lL�Cj\u000fڳ3i݇����\t�Ѻ/x�Dp�\u000e�|P\u0019(��)Vl��oP\r�{��\u0011>fH9ؗ�f���\u0019��c\u001c���h�[(ʁ��j�\b�\u000e��\u0017�\u0017�S��M�+5��P���\u0002k`��7�)4������\u0019ô�Iڏ�$ԃ\u000b��T�9x�&\u0012�\u001a7\u001c�>p�a�!\u0018��?�pA�(��o��\u0001wm%T�8���k\u001e�����xٛ\u0018xo\t��yNmr\u0011����1h*�E禴\u001b\u000e&j�2k���v�W��׌�9\u001e��Cv���ޯ\u0004\u00181�au=z`\rY{�I�<��I\u001aRf�\u0014��8�#N,n�R�xV���U\u0013�{ɛ�AG�\u0001h��۸���1�u�ue\u001fmc�\u001f0�˅N\u0011j��!]�xn\u000bh6���\u0018.�NL�m2t\u0005_q&��3�&�؅Ү(ֆ�j�\u000e�$ӣ����U�z���Dusm�?mz9\u000fL�>�󜼫s;�m)A�\u0005�w\u0005\u0014�؛|��|�9���7e�IG�t�G@����g���.\u001fU#�dKL�a]~\u0013X\u0001޾<.i����CAU;d\u0012m\u000e3o\u001f��I���Tfz\u0010㏒��EW��\u0014$�&��\u001fW�Ȓ�,\u0011�p�GiqGќ��p*}N�E�g�\u0016�by��\n.'\u0018E}�c\u0010$&�w�8ug\u0001�0���#6{��ْ���\u0016�Gv0ꂠ\u0019�\u0001���Rwb��'\u000e�_�\\/�:�\u0014�}�c�2}n�9�u\u0013߳\"��Bi�\u0001|��|��+_\fz1�\u001fz�<9H�>��.�E����\u001b\\�f$IM���_�P\u0018dN:���C�x�f\u001a4�ks.\u0011�\u000f0����\u0014\u0006-G\u001e��$�RŨ\u001bm���cV�xo\u001a밵\u000f��}\u001e�9���I�L��۲�c�N��,������H\u0005u�/��\\H�/��p\u0007�oh\u000eh'\"\u000b1�\u0010b�Qe>�K����\f�t��O�\u001c�>�����\u000b����>�[\u0003\u001a\tQ��\u000eH�y\u001e%D�$��Az�hH\n2�?\u001eA��H�ު]惙�x���-jS!����;��\b���yC\u0003Yy��3'Z�0�(#�Y�A��\u0000\u0000\u0000\u0000\u0000\u0000\u0001�%&<\u001b�\u000f�)}:\u001b�\\&�3-���+�\u000fQ�g���*C\u0019n���0�&4���X�2��L�\u0013R�l6��BI��QWꕗk�\u000f\u001a^���\th5s�\u001c�Yc��\u001e@2$#�Ϻ�Z$�G�oK�#7�7Ss��YN�}�V3\u0002����\u0011ۥ�\u0001}��#rt���/\u001a-���\u0013�]�5�m���]�\r+�j4�$?A��\u001d\u0001L�Ԋ�}8�\u0017����(l����\u0016���>�۴���S\u0011j5���\u0015zC�\\�XԸ��\u0017\u0000v�[�\u0014\u001d\b<�\u0007Fp�T��CȦ���\u001a\u0014�\t���\u001e�\nn\u0013X�NC����n\u001a��\u0016�\u0005/+x;\u0007�`9)�q�=\u000fh�⢄Z_�X��3�\u0001�,A��^X\u0003�\u0012f��6\b�?`���h�d�jN�\u000f�?�\u0011�\u0013��\u000b���A��A+�\u0001���\b�\u0017\u0002cY���\u0016�{�z�����y2�^Y?���إhv�I�-c�\u0017Ѭ'���\u0004�\u0016�X3O��\u001c\u0011u\u001b���N1\\�E��oM�1\u000e�B��$Gr\u0019�0��\u001dko�-�(��[7\u0003a��\u0007�J�;�L��L��fY�9��Y?�Ja ���Q�\b��i�Rw\u0004��.����QZ�r&l�t\u0011\u0014�7��i�X\u001e蝄\tD\u001c�a��^ˡ�T,$4\u0000�������v��:�\r@꛳x�P\u0011��;\u0014�\u0007�=���\r\u00138YZ�t���+\u0017�a�k��%US}�_�l�<\u0010�}�\\�?�S˚\u001cé0�.�`\u000e�\u0014̎�\u001b���\u0001��\u001b�\u001f\u000e\u001f]����|�a�\u0002\u00107S�A\u001e�\u0001���]���nRc�\u001f1��x+\\��,`b�ǥ՞�P��([/Q�@��bo{�Z���k\u000b]Ġ*q�!��\u000f�C\u0017��5�*x�Ԁ��~�\u001d`Fo����y\u0001J�s��>���ys�\u0006�\f�'s�K\u0016�\u001clޑ��.\u0013;�9�yU��l�\r�=6\u001b�y��1\u0001N�\u0001�`P�\u000eN\u0014�n1�����o\u0002KVU��q��X�P�g\u0018�cv^�N��\u0003)�yy(\u0004T/G�\u000e;�E��AM��Q����\f5~Y:\b4-3�?\tt�\u00059f$�\u001cz�\u0002�M\u001fnz��gZ�1Ҁ�;�^ᐼ[UZZ\f��y`̋\u0006�1�د�ٱ�V��5���\n�ah��A\u0019�\u0001����m\u001fw\r\u0018H*[x\u0018\u0015\u0017�56z��z9^Y�試�0��\u001a#쐏����<=k�d%V�\u001b�(y�u)<�p��\u0000TD�\n\u001d�V�\u0016[Y��5�-M\\�U�\t�3�\u0002��#�\u001d/\u000e����\u0002Y�79�a����\u0012\u001d\u001e�\tv��V}�ź�PZD\"֚D�m�-�>�\u0014�\t\u00024�\u0012����\u001a|d}������K�71��\u0014�*с�F�j��ɑ�.�rf�\u0003\r��c�AP�NQ'6\u001dɲ�v�\u001e\u00078�X�o���V��7BL{��r�ٚ��q\ttMW3��\td\u001d��<\u0000��ϣ}�A�Q\\\u0013:�\u0016�2i��BR���A�A\t�\u0001̀����9�UՐ.�j�\u00006\u0013=\u00009\u0001���Լ)\f8y�\u0004�\u0006�\u0015��o\u0003[n�V�;+��|�De�}�ԭ�\r��\u0012\u0014\u0000�_v�*Soo4\u001b�~�����#�\u001e����Qvm���\u0000W\\U��=�\u0003Q\u000f2ڼ���݄\\\u0019��G�ڬ�ʾ�A*�����r��7=>\u0000�\u0005@��|�fn:�~�\b\t��zm��\u0007�b�Dy���~�gn�t�^r䣆\u001av�f+�\u0001Y�J�=M'\u0001t��\r���N�\r\u000bH���\u000f=;�Q��]�j)@��}RJ\u0003�1?s_��nr��n�U���\b\u001d�삘J�G�\t_�A\u0011�\u0001�����W�\u0012�`��\u0013�i�\u0013�O>��W���*�\u00139�\r��ٓ5_�Q������m\\\u0002��\u0000<�z�\u0012u\u0002�\u0006\u001a�\u00146�C�DJ\u001d�\t����H�C{ܼ�`�,Z�����H�@�f\u000f���ع\u0000-p��^��O��T��u^\b���^ה��h��h�����OQ�\f�:���3K\u001d�\u000f)ݒ��d\u0013�v`�[��*9��њ��ds\u0014f\u001bJ��\u0018�����[�\u001c�\u0000�\r��1�\u001c\u000f�嗸��Tj3�H7�\u0016\u0015Y[J\u0012�\u0019\u0000�\\\u0010�\u0017c:����{�k�`�h9��6��U*\u0010��%�H(K�\u0011N�\u001c_�^�A$�\u0001����\t;&U\u000f9�k�o�(\u001a���)a����D�\u0005�^\u001b]�\u00142.s��N��3\u000faD'*$���\u001c\u001bbh^�up�\u0012j\u0014wẤ�!(�\u0005j�e�j�6�\u001c-\b�ozu\u00034�)�_ҩN\b��\b\u0003C\u0014���V,��*�4\u0000�߱uu�+�$�\u0019U[s�\u0018��}�\u0018���\u001c}�\u0003-��/\b��Re\u001f�Z<(\u001a�%�&7�\u000f)S ��\u000f���\u001dE56bς��\u0015�7��\f�4�\u001dA�I���yx��F\u0002S���[��\u0011[0�/�[\u0003�bV�^/��w����I�&u�>+�\u001b2z\u0003)����\u000ez�y�\u0003�|ez\b��O\bT5R�\u0013��v�\u001c�\u0015��<���^�AP�\u0002\b����E\u001b���9�$Q\u0007G>�Y��7y�Sbm|\u000e�p����Zt\u000b��?V%��w(r��ѽ\u000bZ�gi\u0004g\u000e�*2���y�'\u0018�B�%\tm\u0017�P�{@m�+�d��iʱ(\u0016�eYx��&exrB�p2�\u000f\n�,t#�\u001eY�w\u0007(CSՌ��\u0007�x,��_�\r�$i9`9�S\u001f��F��(���V?\u0010�\u0015�‡�֎D9+B��XQ�g�;\u0018�Qu\u001a�V\n�d,\u000b�7v����%���ȕ��8\u0018\u0013�џ�a4Y�B�,�,̓b�\b�p\u0019\u000e`pP�r�?b\u0003��ϝ\u0004�/�$��z��6\n�8p�'\\^�u\u0018R6��A�M4�@��\n��'\"\u000e^JĜ�oJ�\u001dJ9e�\u0007\u0014�\u0007��̬�\"=�\t\u0016a���w%�u�w�\t�e^�AH�\u0002\u001c��L�sɌ|���3��'�^-A���m:m���\"\u0011#\u001d�\nK?\u001a53*T���Ȟ�ş~զ��~�h]��\u0018bh�LuU\u001b(�>�\u0006��\u00100\u0000W�PMZQM\rS\u0004\u0017���\u0005��G���X\"iĘ��\u0017���ī\u001f���JQhn��\u0018\r^.�\u0003m\u001f;\u000f\u0017j\u0000�r�pŅ\nq���0�\u000f{E\u001f�j%��[EE��(�I���)��X7�\u0006m�ī��#d��!ug�Qy�*�=\u001d���\u0000a\t\u0014�\"�cꖓ�v�\u0018t�z\u0004���\u0013��+V�\u0018\u0001e4п>V\u0011��A�Y�N�\u0003-��0�}KST\u0014�\u0004:�����\u001b\u000e�f�W�s�d��W�h\\Q\u0004��H?�{/B�ͦO�\u0011�K:ơ��\u0017\n\u0007wyb��R8<ݯ�!F���AA�\u00020���\u000e�2.Y(�jG�g�8�6��q\u0019��x��������\u0019$����*w��\u0018P\u0000�'6�Pw�T�+ɼɟ��%If��\n�<�\u0012�\f\"ʏ��&�/@��&=B_A%�ߦ•�5u���\u0017±�\u001f\t�\u001c|���3\r�Gc�Z����\u000b��d\u0015E� ��\u0005�p\u000bi�>\u0002���@���\u00073�TU��CI\"�a�0�b\f��$\u0004j���}��a�d�`ºt�\u0004\t�B���=�\u000f��w�mM,�F�2\u001ep{~t�P�\u0003���s؁�v�\\4E\u0010\b專R�md\u001e���S��\u001b�m搔��l�1�4�0�#��q��vp\u000b�\b�q�7���@�Y�\u000b\u000f�Rz5\u0017*��%�\u0017 �)_\u0012��Uᅤ��]\u0010}����A2�\u0002D��L�M<~u\u001cQ9\"kK5��\u000f��W\u0013\u00064T�%\u001d�R�L\u0015\u0016��@�}D:bi�����\u001b\u0014\u0019ôK{4+\u00139�\u0010�P@E���)H�\"��O�H~\u0007�P���P\\\u001a��$3�\u001a\u0003e�{��!8�%@���\u001d�%-�i\u0011��b�Q�d����i���[��\u0018Q\u001d]�\u00132a�V��~\b��t]�A,��\u0000�\u0016kXa�{t{�;\u000f�k��{��2�mO]B\u0003�_�\u0006(2\u0005�Z���|��^��F�����0�<���P��:�Z�R\u0005��eamg\u0015~����6�����\u000f\u0017kum�4��-���\u0002����}�V;�z�\u00178\r\u001f����\u000bL\u0006wM\u0016< �+�~QQ�ϻ9�H\u001b�R�A/�\u0002X��L���]\tP�\u0002�ӊb�(\u001b5��qcr.\u0002L\u0003�a�2�ʥ\r������x\u001a�g ��\u0014]p������<����\\y�\u0017��\u0002J%�\u0005j$��(��:g��������q!\u0019\u0013��n0�cw�E��V�;Gq��E�}-w[ƍY5���-\u0006�>q���ڎ��hZ\u0015\u0019K�S�\u0002Yo��i`��\t`��:w�L�\u001e�3��_��1g��\u0019��+\u00198��&�on$�\u001cČ\tS\\�\u0015����6\u0000y�f\u00134��JMo��C�o�%��\u00025�'�)�jk�\u000b�K��B1Xt��\r�>p \u000b\f9�\u0018�1�Z�WS7o��{\"���E?�wn�'d໿\u0019w{�[�(&��X��\u0006�\u00028�n�A+�\u0002l��M'�^�H·Q�Q����w�\u0012o��\u000e��Q�T�1\u0012#�?7w��I�~\u001fթ(�+=Q�� ���3\u0018�\u001d��`t/��=\u0004{a�n�\u0017�k��p��\u000e5�n�[%��M0<�z�\\C�5�f��\u000fd9�!�޺�Y{��Ik�z�\t��\u0019��s��\u0018�$��{�м��\"�e�s)�k���'�����\ba�\u0013�-~!���z=��@8\u0005�>��)�\u0019���e�\\�~��i����@\u0018OC�-\u0013Jmu;�d븋�������1�\u000e�\b\u0007�p�\u000b\u0012�\\\"\u001c��\u0018L��U\u0014�j���`A�\u0013�v�\u0011��m�\u0018x�)�Fw�ސ�Ao�U��F�J[yv\u0014��\u001c����4#�=\u0001�t\u0001��\u001e�h��&>�{w�W˴\u0001k�\u0005\u0017l�F����\fA\u0011й5���Y�]B��$D\u001a����A&�\u0002���M����\r;�@�$�gɕ����Hc����0�\\mI-,T�\u000f/M����m\u0007�3��\"\b�V�ۇJ_׼�q���N�;t\u0001�\u0004X\u001d�;��O�( �{^9�\u0015[��\r�޻d�bM�y��+\tu�\u001e\u0003\u000bD�SR��\u000e�>e�$+w��\u0006�j$H\u0003\u0001/m4ψ�`^�V)t�%ڈfa-x����o>�k��uӈ�\u001d?e\u001f�,��\u0007Z����m�V\u001b$\u0001a\u001dH\u0002�\u001a߁`aj�\n+uF��7\u0003�:]^d�Ѥ���\"����*^���1�(`�%�\u0011�tw5��7�)��|���2;�m \u001a�������Iu�P_��\u0007�*ˡ\t\u001b\r�g�� ��A\u0017�\u0002Ѐ��e�\t\u0001Zo+%Z�3��[�]k���$\"5�^��a6�;4~ƪ܋��\u0017(\u0014!p#r�!��nE\u000e��z�\u0003�\f��H|𤥐\u0014�#[��:�\u0015��ׄ\u001ar\u0002\u0006�H������\u0015g�>�Gg6�?�\u00156~�?\bJ\u0001������\r�ƳU\u0004u9\u0018��.+'�2;n��m^��\u0016����,R�̫O��㊪:6=9M�<̓⣍���Tͼ�\u0004^�r0\u00032q�q�0\u001a\u001dy/�1���d�ˤ�\u0011\t�Kĭ�\"6\\��y\u0000��RYқ��;W\u001e^�t5��}@+�Hd�ל�{)A\u001c�t�\"\t\u0002\fz����\u0015��-�\u000bQ��\u0013�A@�\u0002���cƏ?\u001eX�}�\u001d̢��M����n�I�\u0014�\u001c��\u001d�(�\t��\u0017��Sv�<��h��R��آ�C�����\b\u0002u\u0000=oNM\u000f�@�zƩ�}�׮��Bɪm�\u0018����\u0003�w+͛�^\u0003=RZ�K��#@M]W�\u0002\u0013k\u0012�ld��\u0013�[��br�OD�a\n�G��\u001bF�R��æ��p��qMt�T\u0018~���õˢ�PLb:�~\u000b\u0006�!g��� ��\f�8#�*&sh�p\u0017�:���FE���3���m��\u001f��\u0001��u�D\bi�±T#\u0013xF��l�oۧT��C�b!�ҥ�ooJMuS2Ԩ\u0012\u0001A)�\u0000���\n�\u0005qVG�WQ\u0018���R������(�����\u0018��!/��j\u0011�AI�\u0002����b��z���p��ؗ\u0019=�.]r&\u0015��x�R-g+�[罦��\u0019^\u0007HE\u0016�\f)i\u0019\u0015Pw����y�B�Y��#��\u000bRH6����\u0013�z\u000b�a�{)ĥ|j2Ne�_����,\u001c\"�圫�p�֭>�yq������O�E�p� s�\u0013ت��]�e>�\u001a`��\u001a�3���P\u0002D.;ǻ�ٿ@\u0013��\r�0\u0002\u0001��\u0006s7�o�\"uSs�\\]�\n_���ۖ�����oL4ܦ\u0013�fƄMZy˃h0��7x1�V:,\u0002@\u0007\fэ\u001fb�d4�\u0016�e�C�}�\u0010i3�t�\u0003yI�Z�\u001e�ڇ���,\u001c���j�o��QU�Ph*f6�U\"�\u0012{������:�aS\u000f���*��\u0003�ޮ�Ɖ���%�,\u0004\u0010�ے\u0010�AG�\u0003\f��MZ�Ō�c::Jt�@\u0004��L�\u001c��e���\u001d:q��#�v1~��4S�*�\u0015\"�îG�9n#\u0013�\b\u0000\r\u0002b+\u0006��z�����\\xt�#�\u0002�*\u0000Ȍ���(�y��Lwn{�Ԯ��\u0013&�l�:9Kޅ~���2ʲ\u0001�XL��i��.���\b�\u0006�����\u0001tE��\u0014��=X���}�ټ���\nr�x�3\u0013t\u0018��96�Dz\f�N���-��Q���m�s�=9w�逤�o9��PULA�ļ�\u0016\fz�s\u0000W�86\u001dN����cR'@(\u0006т��t)\u001a?�+/\u000b�<�zU�:\u0002��\u0004����W�PE4��A�\u0012��������~�\u0011�\t���Xg�wB��\b]<�}�\u0015���5��#\u001c��c�b�P��b\u0004-�AW�\u0003 ��L���k(\u001c�\ty��~�\u000fp�I�&\u000es����(�.�q<=��e\u000f;�?�@LX\bN\u001a�ȜK��zC-�\u000bF��:*:��!\u0003AC*9h�ɺRڼ[��\u0014��&�:�h\u0016qY���v�\u000b�P&a�ψX\f�\u0000uA\"w�k4�6�y�\u0012�~u>\u001e=J�d�6�p�ꛗ�I\u0018��Gy�r�13\u0018\u0000\u00076�h;Q�-u8_��q\u0004E\u0017��2O�U��_\f\u00160\bf���ϒ+r-\u0001P1��������:\u0018�˟\u001b�apg�mG'�ٔmf�Y�j=�(�ʐ!���n���H�\u000f��\u0010\u0018��&.@\u0007�N����!n/�Iʃ\u001f�\u0001h$*.\u0007L��\u0002�\u0004Fgh́v�ܥ[\u0018{5�6h\u0018\u0005�Tõ:�z/��7�#]��~e\u001a4f�\u0000l��!��x���A6�\u00034��L�&n��y�� �\"`��p[�1:a��t�J\r�\u001a�\"\u0007h@\"�^L�A��nI�J���(��V�h�2���\u0011�\u000b�\u001fA�LѼ�Vi?\u000e�2=%�x���q�G�W\"\u0004Jh\u001b��t\u0006\u0014r����*+.�n�Ue��\u0011\n\u001a[o��\u0016\u000fJ�JkU\u0012\u001f�[1�l<3:)P\u0002�h�\u0002\u001b*8�Z8����hby��W�\r�\"��/xg���\u001ap�}I;V��hn��fV��H<\u0017�F��x������9�\u0007�}\u001b��T$�w�i�\u0007����\u0000\u0016/ֆQCp��;\u0016�\r�;����6�M��\b���\u0002%\u0007=������N��C��4�C1љ-���\u0017(\u0007�p����\u0004��\u0017��\u001b�A:�\u0003H���\u0010v5\u0002C��M��&P���e��\u0002`�\u000bL�( �?ħ\u0006�li�[��Y9���@!�����t��R�p9\u001d^ԖD�O~oh�9a�{��\"�\r\u0013;)/�\u000e��\u001a�� %Ϟε���݁Лt��\u0011�^U�s�\u0002\u0003�ikWD�\u0005�\u0007$\u0006�t��\u0018;o\u001fE!�N�o�z������\u000b6t��*\u0005\f���\u0002��\nh��\u0000�\u000e�7◛\u001ag��f+N܊�\u0017G���Fv%�\u0018���o��\u001c��9TyAf��g\n\u0000:=4����\u0019��:��\"-\u001c��\"\u0000j��\u0014|4�2���ދbJo7���B�v\u001f\u0005\f����\f�M�\u001e=�RZK����\u000f�\u0012�\u000f�Ɠ_�7fjVWN9/\u0004\u0005>No��:\u000b���4ͣA.�\u0003\\��L�\u001a\u001a;�g��%��\u001b���\u0001�\u0016��5�\u001a��ۂlA��rRF\u0015�gf\u0013���<�ؾٱ]^\u0011\re�\u0018�MS���\f�\u0017*��:�-\u0003n��`��\u0006s#�x�%��\u001c{��@W��%3'e\u0007\t\u0005��\u001ab`\u000e\u001e���}�\u0000aS������]\u0012\u001e\u0019\t\u001e��9��\u0011��s�\u001a��\u0007��H�b߅%�e).�\u0019lb:\r\u0001b3ty����̸3�UL��\u0012��puș�����2���5��mӾy\r��\u0003�[ȶl\"<�v�\nE�?���*�8�\u000b��n�Y����]ee�Pn��@*���v2]�#u@,�?��#�\fu���2a\t^������ԥ\u0017�=�\u0007�\u0012�A>�\u0003p��L�L��\u0002E�\u00000.,%\"��>\b\u000b(\neEu�G\u001dŒ׏g�8���3a�\u0015�S\u000e��\u000e�d&o�M��.@�Q\u001f1��Պ\u001a�ʧ�ja���ȃ���A����\u0007D�/\u0004D��P O��\\�\u0014院\u0019���J����\t� x=3��ѩ1�b��͞&��i�\\�Y�\u001a&�\b��`��Y�\u0001۬0b�T�S�\u000e� c�\"��h[�*N��m���cb`q�������?�%V�}\u0005����_�\u001d���n\u0003�:�w~��0���xTL\u0014��\u0018�K!��\u0000�`��e\u0000��E�>\u0007�F��#<��*dp�AA�\n��\u0004\u0005F�\u000e1�+��\u0003%�����b�\u001f긚�\u0000\u0007+�\u0005�ݨ����߅�Yǽ+W��AB�\u0003���L���CV���������\u0004�u�`\u0010cg�ę�z$%�v\u000e퓐�[\u0004�4��1�`K�$~!��=�3\\\u0011ٺ;46�%t�Vny^Ө��\u0017\n\u0000���ޯ,�\f1m5\u001a\u001fd!��ۻ\u0016�2(!\u0007���\u0016]oa4��R\u0012z?%�6��#=����;�\u000f�ev0���sW,�8n\u0003�F\u0018�\t4�\u0006�#��u�\u0002\u0006\u0011z�<:GΣZ�d���\"(\f��\u0017\u0013��C����/�\b���\u001d�v�g.y���@\u0006��Xd3XN\u0018řE\fټ��J�E\u000f~o�W\fW�ɸ\u0003y��\u001cy���QZ�\u0000'[\b\u0018���\u001c�����yţAl�\u0003���}b�R̳=\u0017��F��zg~��\u0002]�FY\u0019HZ\u0002��\u001e!(�s3I;z\u0013f��\u001a��Ȏ9Zz�]��\n������n9��n+њ�\u0018\u0007���Ѧ�-@M\f<�\u0011\b�1KV��Џ�&�«�=?\u001aA�\u0006��tt\u0012*)G\u0013�*��\u000f���\u0015����\u0015v�\r��XP:�Ɨ\u001f�Ѿ(��:ܑ�46��b+���k�z}o\u0019/��r}��\u0002��!�l���ʴ&����Z߃�Xh} ~\b%\u0002�\u000e�b���\u0006��Y���f�\r��\u0016o���\u0016\u0005\u0007#��\u001e\u0007��\n�\u001d\f�����/�ɵ�,�\u0010l9[}\u001b�%\u0014k%.k��\",�ل\"t�)2\n|�w~Ֆ�+t����\u0007E±�\u001b\u0003f�\u0010��\\���\u0019��G�p\u0018Gt{�Z\u0001�s�\u000f�b\u0006�A]w�A\u0010�\u0003���M*=`\u0019G\u0002�Ž1'(��}�D\f�Lmm\u001b�\tC�#��Lc��1�O���=�a\u000f�+���cޭ�\u001dm~s�b\u0015�ƾ\n��W3oiYC�e�\u001f��+��岺\f��'\u0014bb�@�ٌ�\u0012렅����I��y�N�V���|\u0004rX��+�����o�(o.���%K�`&m|*�\"\u001e����w\t��\u001c�}�?\\%��}<3�\u0005\u0007�[s�B?�q�`�|��}�,�\u0016�R8�^\u0012�j(�?��\u0013���F\u0014ma��#�\t^^\u001c>\t��\\9����%\u000b�N�-��i�1^�^�\f�*�&�o�\u001e�akn�\u0002��A\u0001�\u0003������1F�h��Q4\\�P�_����\u0019R�\u001fp��\"\u001c]��j���:B�+\u001a4��-\u000e�\u0013��hw/�f�ՍkܜgA�twlD����\u0012;\u0004Yf=V�[̐+Df\u00043�\u0019\u0004޼..B\u0007=0¯�I*1{��o�\r�:\u0011+=�Œ]𘅡TT���1{CBU�r���5rS�\b[��Sw\u0017�+�\u0007:\u000b\"�c��2�-X@\u001ey���Q\u000b�v�O3�-����:mhb���z@=�*՘�+Kt\u0003+�l�\u0003�G\u001a\u0014�Cvr��φ��\f!����B�6��\u001aWc�-��\u00062��D�G��S�A(�\u0003Ԁ��\u0017p�\u0001�\f��A+��FفF��\u0014�|t>zR�bR\u000b�X\u0002(=��`�,Ơ����f/8LxS�I�h2Θ���m�����αi)�Z}�E.�,\u000f�����\n\fx�M�o�W�ML���^�G�\u001f�uljkz,�+\u0003⿤k�A���Q���͐�N���\u000e�˅��\u001b��`{�n�`y�����f��ېZ#k\u0001�z�U�0�$�Bs�\u001a�\u0003ڦ��j�o��\"���7�;�\n��5��\u0000�\u0000�[��v�\u0014S�)�(��\u000f�S�5�\u001bb\rx\u0016无����\u001a�|�ĉ�u�`�pςy��\r�\u0010�P@G�>J^��n($�\f�̭��[\u001bύ*���A)�\u0003��X�\u0012\u001c�\u0016\u000ek)���6\u001a���w�\u0010�#.ɉ�))�D\"��A��'\u001a����@\u0013k�\u0010/�\u0016\u001d�Q̪���C�%\\�~����\u001f�fW\n\fo�:\u0014�W��\u0017�y:\u0018\n�\u0005��a\u001a=��~�D�\u0013�\u0012\u0010�Ѹ�%B\u000b|\\��?k\f�q[~He�_�m\u0019F�\r\u0010�BQ��s��\u0010��&^�aȸ7\u0016x��B����@B\n\u0002����RBH\u00171<�\u000bs$��5���\u0018�\b:�x\u0018n���0��,�\u0015�}�u��\u0006�\u0018�&~�2��mt}ƛ7B.wA\u0005ʚ�E�,4����O\u000f�\u0002@�ңOc\u0005�{+��\u0002�\u00184��Τ#f@�\u0007�����\u0017��Ծj�F.��\t�Á\u0003����\u001e����e:a��f�!\u001eNV\u001c��GxH��k�r~^<��\u0013~C��\u0011r\u001f\b\u0004C�,��q\u0016-���!�D\u0003��\u000f\u001d\"W��<\u000b�,���\r\u0011i�b�Ec�\u0019o�l ��v\"�͑b�,�I�\u000f}vWװW����O�&\u0017v��7Q�����c��ט�\u000f6�r�k��v����ɡiD{C����5P4>���>�b��0\\+�Qόr2��F �\rk̀��HZn\u0005��f���\u0012u�\u000e�r<߂� i�}\u001d\u0013��^\u0006�Vr\u0003\u001f�\u0006�\u001f�jԧo[B�\b�QY�U��\u0017\u0003ߎ�\t��L�o�H���.\u001f�2����\u0013\u001d�d�nOy p�:��Amf�\u0006N�R\"\u001aC�Ŋ�w�\u00036\u0018��\r�\u0012<[D\t�-_\u00147UK���o4+`�\t5\u001cj�\u0002I�v� \u001d:\u000e8\u001e�\u0006\u000f�[�3Ɲޱ�=W������0\u001b���\u0019���O|��^d���w\u0018;1D:XPK\t�#�ʷa�2#�K��+Li�遣\u0002;H�\u001d[�7B���]�m���rƚ��\u0014�\u000eC�/j\u0003Zr\r\t��F7<�Ai�\u0004\u0010���\rG�x�����w�vk\f��\u001e\u0000Vʋ �jz�W�Դ��b{�rDaajM��\u0016��)��6\u0015�\u0006p�\u0000y\u001e�U4�\u000e�O��\bLSA\u0004��[\rU\u0005/���B�'��\u000b�\u001c7S�+\u0004`�㪞���&�A���Q$�n/\n��l6�\u0018`�B�R\b����tA@�\t��3\r1����\";���A?ןZ\u000fh\b����x\"�/\u00162�\u001c5�����~�k ����ы���ǯlb���S_a��\u0011\u001e6�6� ��R��\n�j����'�^�[��y�Wt\u0006̉�3H`\u0016����K���\u0017�`�K\u0002d^ �M�5�2,�\u0014?���n�ue8�HHx�O����[��8o������l�,�⳱�\u0014\u0005�'Q�ai�Mvjn\u0003\fde�\u0017�\u00033�n�o���%\u0018�b%�on��ʁ����S�Y$�;\u0007��\u00185��z%�ĒW\r��zi�<�ھ\u000f�\u0019\u0006��Jc�͓��a�~iI\u0013�n#�\u0019\u000e�9@�㐄@���\u0015:���L끂\u0000ԃ�M�\u0004�=\bۣAN�\u0004L���\r��XOTO&���-��\u0003\t\r�U�U)]`\u0013���(��\u0010�N�\u001e�Vg\n�\"ӓ�0�\u0019�hC�\u000b�_ql?E�;d�52�?�n1�C�];��k�B�s�\u0001���a\u0007\u0010�z\u0014�N*1X����\u000f:s3\u001c�\u001d�\\h\u0017�%�$3�>�a�'P��\u0001m�v\u001b��+\u0002�M�'�2{�F\f�T�\u0018�6ϯB1�`��R�oº��5\u001f(����Y\u0015t� \u000f�Q\u001f�:��Agh��\no0 c\u000b��\f��D�bE\u0004� �����x�\u000e��g��/�/ae����u����\u0000Q���\u0005�}��K�C\u0001��C��ij���Xφ�LI�%\u001d\u0011B�\u000e��\u0011�\u0013\u0013�㭭\u0015�&W�:؟��Mj\u001f'�_�\u0019�궨�H�M��ˣ\n�%\u001d�ɣA=�\u0004`���\u0015���Z8�[\u001d,��\u0015��ن�\u001ḑO\u0017�e��\u001e\u0002z,\u0013�8\u0018��\u001e0\u0019�hN���J�\u0010=��)[\\�֡\"�\u0005\rD�:\töA��o@2�l�}�9�A�H�TB�\u0017.0�c$�Z���`��D�$&�\u0017a-\u0014HlO�c0`����K���>�\u0001���\u0014��KT�\u000e��\b�_�~�iM��vֱ\u0019£\u001f\"�]�:�9F�\u001e8���;��L;U���\u0013�kl�7��TP\u0002*l\u0011�V}zbJ�\b���\u0017�ȧ[2{��Am>:���<���>͙m\t�~�\u0006�\n�5���r��\u0018\f=O����H��ɚ\u0014Ÿ'���\u0018/\u0018\u0003��U��61��ge�����F��A�]W\u0016\u0014�Z8�\u0019�r�+�gϒɣA6�\u0004t����\u00171L������l��e\u0014-0�2gĻ�h\u0001���^��= ����ƌ4\u0015c�i��Ҳ�j�\u0004\u001a���*�\rpw.\u0001\u0010�Rs�(*�H�Fv&��`�\u0017�\u001a�q�o\u001f����Q�f�*�E\u0013esR?�؜�B�4�\u0016jt��Ew�Bp@P�\u0015�ZX$A�R�oh���@F�'8�<֮`�\u0010�R+\u001awO���O�ml\u0001FN۱�V\u0006gB�G\u0012h\u0000����\u0016�fҺ���h�.�Y����\u001d\u0003����hx˗��\t�w��%x�\u0007Ҥ���y�YA�Ɇ\u0000hd��\u0016�\u001b��\f7�\b��}�_�\u0013�3�4��c�mJ�Ǔ5#����2�\u000e�X\u001c��z�K5\u001f�\u0013���[�hL_�\t�A6�\u0004���L�٘�\u0017r\u0016����,��W,���8�@��Mc�r�[\u000f,\u0016�qo]\u0015���]���P_Jg2K=a��\u0006�H��w�\u0010�ɏ�LA�c�Vƫ�T3��/\u0016�O[Ur�4��'Ljg�y9\u00159��kؘ���;c���wE�A���YK���+�L�e�T2w\r\u001c]VR\u001f�|�.�,9�\b�^�\u0004���j�a@��\u0010����\u0015�/�\u001btkk�q8}?u�\b[�*�;��\u0007F\u0002F�+ɮ����uC�H�@�\u0013�qs\u0016�J�r�I�_9�\u001a\u0010f��\nqs���ä�(w���\u0003�ݒ�\u0000�����T�(��'�d�;\\/)ly\u0006�\u001b�5~�����%M-Rݱ�ZۻBy#��ңAށ\u0004����Tɐ\"q��\u001b�:,�&kh�20�6�\u0007\u0003M1�m\b\u0004����m�\u001a\u0005��\u0003~c��C{\tVK~�\u0013o�T����u��䪼\u0006�\fLd�h��\u0002�l&\u0019�Wc3�h]K[k4�\u0007�$��ި�\u0012ú�����M6�+c�A�*Z���t��%��F\u001a����p4Ici�whB�g��\u0003�p�\u0000\u001f\u0016#R\u001eWS�������ϱ�3\u001c����\"\u001d*be���:<���Dܣn7\u001a�2z�—4RrY8����$�C\u0007.+\u001fP�U�c�8c\ns\u0012`w���+N�;N�z�N���7�oĤ�x�\n6�>\u0001{iP3� ���N�<�\u001b@�z\u0002{~�@B��\u000fs�L�Q��.���ڐȬ��錛�w��iߖ�ݐ�3�5��pd��\u000f�\u0015Y�?x�x2��;5=���b�\u001c\u0011lG�\u00103�S�wK\t\u001f�wבo�=\u0016�ق�6XIlOb�>s(?{U����%4��fR�>�*�i�}\t�bh�u\u001f/Lp��\u001a�H��\u001a\u0014��\f�O�6�Ȯ\u0001\u0019Е��\\��\u0005�9\u0015\u000fhI\\Z�G\u0016�;�R:Ҍ�\u001ba��5c/ӣA\u0014�\u0004���.��飓��b�옖}T��r$�4��^�%��ƍ0D�\u0018����F;��\u0014�\u00037\r�7I,sF�ET�ղ���Ζ�H0�\u00018TV�B�Y�{�Z����/����9�\u0011hT�P�ZOq�rnw��\r�'����g�\u0004V#�����oR\u001f45Ez$���}��`5B�P\\���jm�p׿/�y窠yt����Q�W�\"\u001cX��\"+��\u0004֨�,�f}F\u0004걈$-�V�K\u0017��\u0001y�<�a��]B�o�\u00045�(�U��\u0013(r�ʉ�g��ϋ�h\u000e?W\u0013W�YR��,\u001e����P\u0016�C�y�Rߪ\u001e�ҁ\f���A,�\u0004Ā�M���\u000e�����/�$�C<B�\"�uE����c��\t2Z>o\u001a�Iͣ����Yz�����\u0001!��-��\u0001�KM֦��\u0013\n۬�H<\u0010\u0015��w8�����M�\u001a�t�\u001a�弋Btc\u0000�N�~Y\u0012\u0013?��2��\\��L�\u0000jY`�����r�N\\��\u001c�L9Y\fq\u0005՘\u001d\u00045He[�oi��\t\u001e�B�w�L�;E\u0017:�\u001b�y�\b�4��y8�/o�L�]ܳ�ҍ��u������>��t\u0019����H\t\r0ܟ��F�o���b������\u0003���Z�:����7�\u0002y��?c���\tM\n%������x�\u0016����1�_i�{\u0000\u0004��ʶ/(��։\u0016�A2�\u0004؀��\u0016�a��v��c8^����y�\u0002y�!�m�c�qTo������vB\u0019`��@���'N�=��5�2����z���eF52���;s@���UOʢ��\u0012�ݯl�\u0000��9)N*F�)�l�(~]2��ϧC��\u0017��W\u0001ħV\u0005^_%�P\u0011��n_�T\u0003�\u001e�@��+\u0018���\u0001/��&V��\u0012)�\u000bd\u001b6�0j��Ŏ\u0011�L\u00012\tb!���&�g8zN*�2�p\r=,\r�F�$-ʿ�l��?���NH��\u001dκ�g^�<ˀ���$q�8�qd\n�\u0011C����x3N��\u001f��>�_�\u0015u\u0002'6�]-�jY�\u000e\u000e�@�\u001f�wŬ!�o�t�\u001cr���X�\u0004�w�S�꿣A;�\u0004���\u0011ǯ�\u0006��-��>@O$�c�-+��\u0014�&�\u0013E�\"\u0004���\u0006�3uʹ@�\u0013B֛����\u0007��mv��V-2<�-;dL�,aQ�N̅��\u0002��SmЅy:���Es\n\u0019St_��a��զ�R���\u0016Q��f�̾�&�����Y\u0006X#�W��܏A���)Y�F/�2�Nx�Ϲ�z�\u0011�1\u001a���\u0002��\u001eW|��E\u0006��\u001a�dx`6��ܴ,�\u0005x����O�\u001c807}\u0012b�)��K+�a4��\u0001r\u0013\u0002�U�jrߎ�sQ�����dėu�\u001bUjhHM�+�}d\f��\u001d''2���Q=�&�\u0007~PFE)R��٣\u0012`!�V\u0017�$�t]�������\u001cCF�^M�ޖ3$��\u0007\u0014�l��A4�\u0005\u0000���\rJJ��O\u001e\u0013=\u0014��\u0002�;v4Ы\u0000\u0005J\u0010;����B�U \n\u0019\u001af��ס�\t��e��\n�`���A{G�t��\u001e�⃟����\b�B��Y�F�%��ف��\u0006�\u001d��qt�\u0012\u0010���s�F�Y�-R��޳��\u0005�v1q\f�h\u000b�?}�k�z\n�jY�����=�\\\u0014�ߏʌYk|%�WT�I\u0013�9�h\u0005��xJ\u0010MwG\u0010�HT\u0016�\u001d\u0014�ػ�\u001f���Z�N�c�\u000f�����V/�Q7dt��xɶ�\u000f�Fw�F}��l`;s�\u0018)\\2��\u001bg\u000f4ufY��Ɇ��Y�J\u0013��CB�H�Y6{g�tV�\u001a�`\u0003+Մ�o��c�(�m��Q\u0000֋@8D�\u0015�\n\u0019$�H��A(�\u0005\u0014���\u001ez!7[����\\��P�3�\t�������V��\u000b��H���\r�\u001d�g���}�a���r3/t2�y`�8B\\�eO��\u0013PT�\u0012�PMr�\u0000F�v�\t+�\u000bL;�m*M�\u0003�o��\u0015�/�[�PC��z\t\u0002u\u0005���0�b���ڙ��Qxx\\Q�N�A�t.��Y\u000fNs��Yz$�/\u0011�\u0002�@\u0005�\u001d�\u0017��t�\u0019�\u001dIU��{׬�?�+c\n�b�\u0014�[�\"�#���}���&�q��*SD9LKl����A\b)G.��s�!�^\u001a�>j�h*Dz\u0000!\u001b��h�E!���\"�2�\u0015\u0001^��d�؟�S����3\u001c���\u001ad�t�\b\u0005�\u0013nP`� J�A<�\u0005(���\u0017�*\"\u00198^�\u0011O�sA\u000exD��II��|¼o�p��N����T$5c�E̤z\u001an-�~)�Z�\u0005)�ɩg7��V�,@xI\u000fk\u001f\u0017��\u0013��RV��\u0017�Hz��{�q���\u0004\u000bt�S^�^įՠ�\nM�:K\fS�\b\u000fdD���\t�-H-I\u000ev�;R��4�A�o:�\u0007�&Om�P�Vd�,��ɂ�uh�u\u000b\"�'ۮN[�\f��PET���!Z*o�A���{xd��_��\u0016�\b\u0002�u��o@{>Ti\u0004G�\u0011&��@z{��A�\u0000z(n��\u001f{�Jf3�\u0011a��� rbkq\baW�WS�\u0011\u001e�0\rԬ���!���\u00007���\bJkԻ\u000b\u0018\u001c��\u0003Z�u����\u0016�\u0018�~��\u0000��ע�\u0018���A?�\u0005<���\r\u0017�R����1x�DL�^��u\u00070S:�\u0014�\u0019�����l���\n�B��\u0003�\u000f��\u0004\u0016U����Xt\u0001ۊl�o$\u001cs�rKh WC�x\u0019k]J\u001e߮�1�ъFh�� :5&�\u001f���@�wM�Y��g��\u001a����uEe@4���wb �\t���Ć\u0011��\u0002+գ���{��\u0005n���F����RgV]�\u0003\u0003������/B�\u0017h�\u0001ɽ�LIX8���p `{�%S\u0012�K\"��L�k\u0007�4l\u0011�-���0\u001e���_*�\u0018�$\u0007����$\rU\t�\\��F*ۻY�'ն�a�IpJ�b�\fnʕ�ݶ�\u0011�\u001f�\f����L�\u0018�(/�˴�\u0006�N�0�M�u�i\u0013�n�Y��B]l@�[�\u0018\"\u0005�0��������-禇�U[T�\u001b��\u0001\u0001�\f��&\n/�A,�\tRF3i)���ߝ����\r�%�C�\u0015/6\u0015\u0010k�!c�����(U�Sق-\t�H�w���n]�G�󼍠��ĝ\u0011<����\u001fNjC{\u001bZJ�������ID\u001do\"�6�=��B�^Jt�\u0017\u0002�\u001b�\r�Iw%-�W��R7�p\u0016�ʽ97}:B�U\nw���y\u0002��@��辦\u001f��5\u0017�?�\u000b��h�NJ��\\Pd�}\n��F\u0000������-�ؼQ����\\\u0019<���U�\u0017 �&J?���\u000eź�\u001cn<\u001d�0�Ap�\u0005d���\u0019�I�%�\u0000m�����Z%=�)�\u0005�(@B\u001d����#v�\u0013Y�J\t�&l���6�sa2\\�\\��\u0003��+���6M<��i�(/�c\u0006���\u001e��\u001b m�\u001en#��\\�qI����\f5�}Ձ��(\u000e��=-\u0000w\u000fc�9��\u001a6n�{�S\f\t���-��u����RYv�x�\u001c\u0013\u0006i&nW'\\�!^?8�1E!�Y\r�A�|u\u0007e?\r��\"�\u0014��Ad���M�'e/\u0003��o\u0000�7�7鼳g��8�ϫ\u001f\tmtT�za\n\f��n||t�\u0017\u000e&+5��砥��e`��ˣ�-\u0001�X��ji\u0002\"�*��\u00019:��'s�Ad1���Z��-\u0007\b�\u0019����V)V\u001e|a��Z�u\u001a͗��=��TxB�Lg���.p��\u0001�Ns\u0002�!���\u0004� ڟ���Z\n%���䩞\u001c�(�r��5�#c�|\u0011��[��<����/�A��\u0005����\"^_>\u0010ze�D���Hٷ4��:\rѿHS5h$aޡ�\u001c�?Ce\u0002W��0<-\u001a]��(@m\u0013=BX\u0012\u0002\u0014Q�C��LxH�\tQ�����|�jr��qҳ���\u001bvqʏ\u0003�Z%Ru_\b3x��WR�Z���ZX�ZͤlX�\u0006�F�\u0007!n�Pb�v \u000fn��xA9]\u001dF��m\u001d�5��\u0004!Ri\u0013#(\u0019��C�;�zr�\u0000���(J�Y}u�A�ޗ��7\\��Xb�F�د�|\rmZ�P}]�vB\u0018����\u0000i~���\u001d\t�Ts�\";����Q{w�\u0007d�ꄵ�\u000e�!!�)\u0018�I�\u0000\u001ekM%\u0000\u0006��2���o�m�\u00166\u0002��S����ED\u0002��bCZy\u001cԍ�_�\u001f�M\u000b\u001e\u001c.�u\r1/Sq�e��\\\u0019Ԓ>���s7oC~E.�!����;\u0006��\u001b\u0018\u0002W�4�dkV!\u0006�����n\\���\u0006����ԃ��\u0013w�\u0010rخ��s=�\u0016�AC�\u0005���X�\u001fG��[���,�g �隳�U`�WL`\u0005��$\nZ�hy\u0006\u00014L�\u0003$.P�h�\n��,㿂��v�l�=��6T\u001d�\"\rrE�2m*�\u001fۡր\u0010��J�:.��\b*�7I��-���h1\u0014u>��\u0001\u0019�w�y\u0016�����ɰ-G%a�!Jn�+�#�����2�\u000bl��静z!�M��Z>��T�L�*{i�W_��\u0007��\u0004%���iQOxp���W�+�-�{\u0010�\u000b���\u001d�����U��sV%HU0���\u0004��e\u000b\u0002\u000f\f�a�K�\u000f�4�\u0015�h��c�U����\u0003�;,UD_⧯%��f�|�ʦJ�\r��\u0003�u�\u0019\r\u0016��\r�\u000f��\u001a\u0002\u0019\u0001�`��T��rA�o\u000eI!\u0000��yT��A9�\u0005���X��*\u001d\u0018r\u0002���N6��3�M`�.]�(��,r\u0013h�Č\u001fZ.�R$�G���Qn]B�\u0003��1-p\u0019�K�mT뾣^�@i��ڵ����\u001b���\u0000�'*~�y�\\��\rǸ\u0003��\u0005oN�E ��AB�\u000f](���-\u0006D\u0000A\u0012k�I\u001fi��˸ꋯA�'H!Wf<�\u001a\u0019�&/�\u001ac3]Zٸ��T�9s̝}�F��\u0018\u0012��\u00059\n1(I�\u0016�����\u001cE�P\u0002W�g㷙��-�]�\u001b4�G�E�Y�o\u0001�\u0019�w��u\\1���p�v<��8=�\u000eV\nU��2�\u001f+@lGlG��<9�s�v\b����_q�7]A(\u0011~\u001e�Z�|\u0018�\u0018�\b�Nj�u\u0002�8�7�(��\u0003��M\b�9�ңA.�\u0005Ȁ�X�g��\b\u001e���Q�ZA�@3���|�'p�x�-s�cXH)$>�.��R���\n����\u0011l�MB��X�\u001e.��ʝ|\u0001j��촻�\u0010k$�����!!x{�jݑ�/B|\\\u001e���\u0017�S��ug%�\u0010� �=f�6��w��E����\\E�#\u000b��\\�9�.�\u001d�\u001f�[\u000b1�݈a�N��[��.\u0003�V��8�0j��u\u0013!Ǎb� $7I�3?Cx�R�EY\u0019��\u0005��w��`/��ql\u0003�\u001c��\u000b0\u0004&P��q�9O��G�=����1RX�\rX\n>���6�x4Z?%�eN�Y\u001c���o3��R%�g�>zlw\u001d�f�R�w\"��\u0006�$\u000e.�6�<�_�ݹI�A*�\u0005܀�L��Z˃�I}d|BN�\"\u0002�2�\u0015Jө\u001d'ꚣe\u0002-�,}]����3;�\u0004.\u0015��+9��+\u0001(�\bq�q*���@\u001a��\"H\u001d\n}��*Y��%֕;����lgX{�7y�\u0003f1#\u0014�\\1�������\\�\u0010X�!�t\u0004���\u000b��&@F\u0005����s\u001a\u0018\u0014\u0016V��\u001a�P�\u00020$;�(n�I1ӝ���I\n����K3)p9�R+�\u0016���ս��:�a�\u0014ȼ�\u0002�T�AC�Sv�}8�f\u0003\u000e\u001aw�\rPD\u0005IBV�ľ ��tZ��~�����K\fuXC�$5�7+��фA�>4{\u001fYv\f��T�\t΋�Ș\"�-Rf�v�\u000fJ�zwgQg�\n�A=�\u0005����\u001b�fhM-%Q\u000b\t�u�~�\u001b�K�\u001a��R\u0012m�qoD,&F�U�\u0017>�\u0016�j\u001a4\u001e�\u0006�\u0016�L���S~�k������\u0015\\86�\u001a��9Hg\u0002�~��60\u001d��]{�A�L\u000f�N��Zp\u001bX��`rk\u0004\u001c��ك �)\b�~���\u0005^\"�45�:�[\u0004�gj�������\u0014�jz�(”'�\u0019a���%&����&��\t[��<��<�_\u0017�ba,BO��?�\u001fKi=�<�2Wj��6\b�\u001e=���\b\u001bN\u0018�\u0017�C\u0019��\u0018\u0005�ݪ0]@\u001e�c���j\fZ`�\b��\nrM�n�sq��\n�\u0012�\u001b�\u0005�Z\u0000Ƚf��\u001e�=~\r0!D�``�kx��S���桺\n��pH�7`���E#\u0002���\u001c�\t�Aށ\u0006\u0004���q�92K��\u0004gvҩ�y�t�~�\u0019,/M��ʡ�_��s�fSg�����ބ�\u0013D0�'M�jf�����\r��\u0014�9\u0010��,����;�H��6\u001be*:�;��\u0016�Q\u0010��Pu{pu���(ο[����\u0014i��V��%��\u0007���ǖ�9�J�3\u0000n�B�°b}e\rd1���\u0017d F��e��K��#�;\u0006\u0011�(�%U53G0�𴌬9\nk\u000b\u0001V��>썏��������yg��\u001cm쬆�1u'|����{��^���(뾫\u0002�\u0017�m�\u0006B\u0012Dž�!H�Ԕ�MQt\u001b/Be�}\u0007��\\\u001f^\"\u0019X\u0012�L_��Q\u0001~��\u0013H\u0011���?\u0014\u0014�\u001d�����\u0004`�^k'�`�c�y\u0003��H����\u0002����\u000fːU�n�{�u����\bqו�\u0006�ȭ\u0003�g���i�2[l|n���2Е7����\u0003�}\u0017�D�8\u0019��y9���\u001d�D�\u0007��ۼ-����U�:�}\u0019,N�v�\f�\u0003��i��d`&����Pn����֏�{��g���M5\u0019ˇSh��\u000e0g���^�m��@#�A;�\u0006\u0018��.M�h^\u0018ю�[�0[\u0005H��ޜ��^�t\n_�\n�/#\u0000�r�H���*���$b\u000f�22�8=\"�\u0017za��\u0006\u000e\u001c�\u0005S�m/D���t�w���\u001c�A\u0000�_u�\u001f��n0;�\u0003��klQP���9���lەh\u001c���pSf\u001e\u0006���/v��c�$ZQl��ѳ\u0015�\u0012��8\u001a�\u001e4E��Y{����O\u001bp{�yC%��\u0001M��~�F��\\�}�.\u000bt�B\u0012�{��Z4���M�ke�!�:�p�K��Ң�<ظ��\t\u0005;�|+��6���}�\f\"�����z�Yx��?U�\u001ex�q�\u000fq/\r<.����JI1Br��H�X�\u0011�D��\u000e�Q��J�p3Eq��H�\u0007�l5�֟�l-�^)�=Pq�-J\u0004r��m��\u0006�\bL5���q���\u000b����~-�g��\u00188�}����s�u9�^������0\u001f����Wu�<�a�_�D�vzd\u0001����}��8匮��1��5�G�Ð�]��™D\u0005����\u0003�iJdΜ6��AJ�\u0006@���\u000e�q�v�1}\u0018\u0018��}ʊ\u00132�/����v�s�ή���Ծ�/n^@\u0019y\u001aq�US\f����P\u001e��\u0001fGWs-\u000e\u0015�@I��|��\u0003}i܆d�S�c�C��a�PG\u0016\u000b\u0019��)TW�N\b\u0007{��Kso���\u0002,\u000b��,�ś\u000ez���>�V���Ѵ�aL�ޞ��\u0010���߾�e�����D����\u0005�4:;|��5b��7�w{;qSʩ'�CάCV��H}��\u0007!��\u0017wh\u0000p|��j\u0012�\u0002���5�\u0011E$�X�`�\u0011�~D�CT{�\u000f�h���IΜ��\b�آ2&�dʇq1\u000e�4����\u0019\u0015�\u0014�Sp���\u001a��E\u000f��\u0015�Y�ܐ�ȸ�*���gd��#T��������d;M�\u0004�]�{M����A>�\u0006T��1��B���^�\u0016��j$6I'*4�h���uO\"j\u0004R���\u0015#�C�\u00022�;�'\u0000�z\u001aFpC\u0000�,�\u0014ηN��^�c��8�޶.q���p%\u0003�87��\u0015��R�\u0007dWӿS��ΑąS�9�\u0015�%b\u001bДr�\u0016�q�\u0014\u0000�\u0019T�V�w�\u0018�\u0018�e��<�Β��bLj�U����\u001dxY\u001f�H�riN=�V��P\u0007b\u0012C\u0014o�\u0005Y߲|-\u0010���4��Q��I��5�r\n�;�\t����L;�цx�+���3G\u0004��p��=:����;��}՚m<�\u0002�5#\u000f�6� pM^p{�\u0017;��;P-$���µ5��\u0005���\u000fo�PYu���7���)f�&�o;@��S窥�\u000b�v�y��A;�\u0006h��L���\u001d\u0005�\u0012�\u001as��١pҨ�\u001a��x�x�홷��ٕW\u001e\u0007�8��ZsPl������� �\u0018�.��>��\u0013���^�/���}�\u0006;�:A�p��{��r~_�7q[�Ō0`�\u0019Ԉ��s�\u0013��\u001f��tp3<\\k��>L%x�\u0003\u001eo��|9�]aD��H��[\u0013Nׄ\u001c�qf�̿I2��1\u0000\u001b́�\u0000Q��h�'�s{\u001b\u001b`����\f���ί\n}�6�\u0005\rй�ٸ��\u0005#{�u��A/�\u0006����\u001c�'���8�.r|\u0000��\u001d���Y��4\u0002G�.�#�%6�\u0001n�d�(1\b��Ge\u001b�b�uu�\u001b�x�QwY�\u0016Z\u000e��h`7\u0012�/�.K|*\u0015v�\u0016��G��>F\u0014�\ny3Œ��\u0013\u001eX�̂\u000f\u0002y�\u001a5��T�t�\u001f�9��\u0018\u001f���\u0007\u0019��k�\u001cX貯�\u0002Pt\u001d2I[�\f?5y2+)> �\u001eҨt���\u0002\u0000�\u0010x\u0013U�Ay\n/rN� YF���J�s`v�d���\"��#c���($\b�[����\u0013��925�s�\u001f�\u001d����gY�\u000e\u000f�y4�狮�`>�\u000f\\)xɗ�!$��\u0019��$��Uc\\UX�\\\u0019}�@�^\u001a��\b\u0000[�q\u001c�ö\\Q\u0018��_\u000ec�\b����A9�\u0006����_�����Ht����n\"6ߒΞo\u0012�K<��;��w�9\u000fU &��<=�#��\u0011#�ө�o�þ��j\u0016�T_��)H\b�\f?8V\u001a�\"y���� <*���ԯ4��9��\t��H\u0002[rI�\u001c�ws�An��k\u001eR\u0011Y�0�\u0011���/;�w����j��T׫�nsbΝW�6����)�X]��mԉ��\u0007�\u000f2�_:���ŏ�\u001b\n^\t؏�f�z�+q�\u001c�~c�[�\u0013�U�Ǹ��M��cpI�B�%�b�Ȏꪢ���SŰB�S_�3\u001c7丄'��W�1�ƥ\n\u001d\u000b�)M2�]OmϿ\u0012s٘���i\r���+Y�|�\u001f�dz��#�����\u000e�X�(P#�霣A8�\u0006̀��'>�2������\u00171\u001b\b�B�\u001dGO��\u0000��>�>�\u001d)J\u0012&c���D��V\u000e?\u001d�4b�W<\t֞އ����:N\u0013\u0011��\u0015^\u001aJ�:\u0014�\u0018�\u0017�r�g\u0007U��\u0007Sk��\u0010\bY\u000b_J��\u0017���Gy�,��$]�n\u001bG���3�\u000f:\b\u0019{�i\u0014�q�$AH����%\n5i\u000b>�\u0019]\u001f�&g\u0007\u001d\u000e�h�'˹v�9�|\rj����b\u0002�o\u0000ѭz��M�y��n}�s�_�tbW\u001a��,�!\f�_�Y\u0019ݧ���\u001c~b-6\u0019tSߣ�\u001aB\u0018�\u001f�����y;�\u000fh���6Jĕ��E6�)5�\u0004�K|e�,��y/�իO.\u0002>\\�V#�\u0003\u0015��\u001a^t������H���ZI���h-e��A9�\u0006����`\u0015C�\\z=���@�{\u001c���H\u0003�\nj�\r8�B\f�����-�C�?%q�?XE\u0001�\\�u\u000frˣ��!��4\u0017��e�C��JX\u001c�X3P�\u0014�+F�s\u0019\u0014�&��\u0013zӇA\u0010�\u0001�p�+�Q\u001c�@\u0001\u0019\u0019�\u0006��Lq�\u0017�.7����\u001f�v�?W�y\r��.�\u0003?_�V=~`�\u001c�\f�fa\r-��r\u000b՘Z��\u0001;�@�ki�\u0002��!l�}1�`]���&�_p�w����\u001f]\u0001l\u001af;�N�\nj��i���<��wj4\"32l\r�X\u0002�\u0000k��)D��\u0003-��T��w@�}\u00113�;�\u0010\u0005{c����VHt{[�~����H^��+�̺δ>\tW��?��p�]�\u0004,g��~\n1\u001f\bV���A@�\u0006��(��\u0006���3���\u0006\u0012���\u000f\"�x'i�\"Z\u0005����ZL�5S8�D\r�\u0015V�\u0005�\u0014cHd�\u0016�\u0005�.��T]�\u0000뻩\u0012�G�j�qS�}�+^��PS�� �:LZ\u000e��#?�2g|�h\u0010��!:*�\u0016C\bܝ\u000e����Ig����IB�\u0016ٌ<ى!���͑�⫮p��P��Ϙ�q^s�U_�_�6�'�<\u0001��e\u001e,�\u0019bQׅ�-��&C�\b\r�\u000be4n\u0012+.lO��ߡ�i�y�K�QtK\u0016���\u0016�-�� <����N�.\"�{ďl��y�!Z�`���t�ӥ4\b*i��2\u0011�!a\ri�q\u0019�\bb�y�.I�I�cuT˱�űl�5�\u0011���#�GS���2�J�N� y�AA�\u0007\b���p��\b�@`��Q­)���%�˦l��ӑ�\u0011��ԙ\\�\";ypD\u0000���\f��Y�\u001a5�\\�@�[M�� i�\u0000\f���,?\u0011�2�\u001d-J�{ �t��]Zo�+\u001b\u000e񻩨\\�,r�\u0001�\u001b��03��\u0018��Wj��K��$BI�\u0013�F�J}��;��@\u0005��������@���\u00168J1Y�\u0004�E�\t��\u0015�U�\u0016�A#]�\t�l��\u0010�'�\u0007=��\u0010k\u001c�\u000e~�J㋁\u0017�^�\"7\u0017�MJV!�g�F?P2��z��F���Gb��x[�.ڤ\n(\u000b������T�c�Z�Mo\u001a2�?�G�.H6�6e4��]�\u0005(>n��:�\fC�v�\u0014i�6\f� �\u001cu�e�خp��\u0018� \u001d���\r��AY�\u0007\u001c���\u001f�$*HG3wû�\u001e,�F�齭\u001a��id]\u001a���u� ������W�S��3(\u0003�aH���o�\u000e\u001e)�\u000b\u0013�V�/d��J\u0019\u000f )�d��\u0000+\t[��_�f�~�B7�CQ%�ƴ�b\u0000\u0015$a�q+\u0010\u001b-G���L#�h�i��k��o�n�\u0016�l\u0018\u000eL�z\u0019s4�ȡ������8*�_�c00��\u0003<�t�El�\\H��\u001c�ҨQ27�V�6����i�k�t\u001b��(1In!#\u000e4F�(�\u0007՝v~�W,�ɳ/+!\u0005`k���P\u0011x��?�ﰰ|v\u0001\u0017A\u000f�\"Kc�J��u���w�\u0000\u0018�+ò\f8�(?\u0010�\u0013+T�&�\u001c�Ӳ�n��\u001bă\u0002�s�\u0004\u0015]�C�FU}U�1H\u0013�\u0019�L���e�v}8\u001fM@���ظ�\\�TA��M��AS�\u00070���&�r$��4��N�L���\u0014G|���\u0007���%�A�;�=8��7!^��@���\u001b��8�R>�\u0000c�Y\u001b\u0012\u001bz��̓ґ\u000b7|�it���}�<9oY�c��\u001f\u0016��\b����Y\u00055\u0014��>���[\u000f+�J>\u001e�(F�\u001d��\u0007��e��JW=��ʔP���\r�\u0010\u0001D0k�\u0013\u0005D���\\���c[3~Ju�k\u001e���\u0013�[\u0013H�}i�M\u0004���lq��\u0007�\u0002+f��ۦ�c���o7ۈ\u0019�H�<:�ϯ�7\\\"��:����x5����[��B@Ų}l.� �2<�\u001d\u0015�g�O\n���V<\f���a�\u0003��'�Sc�\u001b�\u0019�\u0015���(%e\u0004\u0010��*�\u0013�\u0006��'���辑b�\u000f�~t�v-�~�F������>R�\u0018�\u001bђ�A[�\u0007D���\"M�\u0013\u0002|\u0012���)\f�����!\u0015\u0013>Q\f��K=\u0011~U-U�ڀ\u0015_��~)�v$�b�\u001bN�%\u0011;\u0016&�\u0006�1��{!a��@Y���U�_򛎔w\u001dKJ���w��tg3��w��b`*E��1Ǚ\u0015�\n����#�\u0007\u0005cn|��!�<�\b�2\u0000T��\u000e�h���\u001eΕ\u0006k��\n�7̯9�\u0016%�lo��y̒��oy���L֬�ri�茍}L�5~��J�3=~q��\u0000۽i�S\"\u001a�\bC�ǃĸ�qAb�f��\u0017\u0004�\u0003��\u0003t�n���\u0010�\u0006\"x+G�O��3�\u0007<��=�\u0001�:�lJ\u0002Xը�e��ָ�Qb�?P�n��O\n���\b�y_���E�\u0007mw �i�����g�\u0017݅L���$z_X8<�փZ��uB��\u0019�~�~�q��AD�\u0007X���1z��\u0016\u0005�$MC\u0010�7;��#K�'5�����d�\u000b�S�_��m=�gM�.I�������\u0017\u0005��ڐS\u0001�2\t�\u001eR>����\u000f�e.\u0016����q�4�\u0011\u001bޖ�g��\u0013z\u000f�����9x�\u001a�;�}��UW�J\u0014h5d�.\u0001�]��XMR8���\u0007���C�^�_h\u0006L�i҇P���\"��1a�x9|�Y�]\u001aN��*FM��l\u0001P�Z\u0011�\u0014��)�fv�\u0017X;\u00044\u0017m�gs$�\u0000�\u001c轎��\u0013\u0000?�@\u000b°����\u0013x�)��\u00190;��\u0017D*�\u000f\b4Y%X�ܙ��ҹ�(\u0016i\u0003fLC�2�??�5R�\u001b&q'�hKc� ����v\u0005�Qܞ���V-����}��\"�'���Ly�mq�\u0007�3���AO�\u0007l���b�~����O|��\u000eܴ^�|�\tk]q_�bC�0=�5O�_V7�\u0005�B%rx+�8�;\u0016c�i���O���A�J)L�r\u0011L�&�HNMlxM���J@6>.�Տ����;�6�v�4�\t�}B\u0010�y�.��N�:S\u0019��\u0012�i�9B����2+��9�H�Jp4c�VK��\u001a�K\u0005�������Y\u0002\t��\u0006\u0003?8�;L�V\u0007r��J��M6\"!����4o�\u001eB������^\u0011��y!�\u0013`���3�sa���9��Q�L�k�\u0014,��!3/OY2ɒ��A\u00188��) �Bt�6\u0006_�@���n� \u00010a�kq\u0015\u0015X4�=��\u000bo�\u0013\u0006M|5\u000563��\u000bI\u0007���\u0011^�?t�\u0004��AV�\u0007����&i�����ɪ]�z���%�j\u0012�Jgp\u0010�z>ő�$jV�k�^��\u0013��-��\u001c4�\u0003��ɏ\u001b��\u0005\u0004i�$��\u0002۔\u001d���c��Q�W���\u0016jx�^\n�X��l�]� Α#���E\u001d�\f!��\u0013;��z!�enFa����P�;���$Qy�Dq ���\u001am#�3�V!\u0016d�41Tk1�\u0002k��\u0012U����p��o�Bq\f�-���i\u0010��fk#\u001f\u0006��5A�b��eR�_�8�E7$���\u001d\u000b�3:=�\u0010�����,����7�\u0016���nl6˲\u000f�����\u0000`n�gҏ\"3�������R�Vq�!�>\u0000�J�-o\u00069��a�L�\u0003�\u0003ڰ�{\n��9{�a��{Q\u0018-B\u0018W߳L�\u0019�����\u0013�`�@��7% ��AE�\u0007���]�b�� VURF.��s�˭!ˉ�Q�E^K���?*L��%Y��Mƒ\u001f�9~q��H�셇�b��:�U\u0007�t�^�!�%��`\u0010+\u000e���d�Cdd8R&�\u0016Ҷ�-&�8\u0006\u0012ݬ\u001d�+N�o�\u001a�(\u0001�3�\u000e�Xy���m\"\"\u0011M\u0005\"�a'4�\b��G�e�te\u00131v\u001e=.6?���\t\u001b��\u0004�<]��N��\u0012�ș��M�ʮ�R\u0018\u0005�X��R�r��0�\u0012���\u0004(\u0019���-������XM�\"���\"��;Y\u001d�S�<5�M�b�\u0000%�! \u0015!+\u0012�\u0019Kؔ��W���Q�y\u0005-ڇI&R\u0005�\u0017u�\f\u0006S�#\u0005�Yc�^K0S�\u0012$�5\f\u00174/M��\u0012�Ϝ�\u001e�l�d{�P\u000b�s�{⩣A&�\u0007���X�^�yU�6�\u0006�\u001f)�-�ͼ^X�ʧ�^l@��x ��3د�)�I�Z_YkQK����u�ڟ����b@�W\u0010\"��>֦(�(��p�\u0006f�Z�i����\b��v�Wu�3�˼?ͩ(\u001e`>k���\u0001\n�9�ڞ8�`��{\u001cT[�JO�\u001f?|�fg�\u0004�F\u0017�l�`�I\u000bY��n�\u0004ר\"޿�-��\u0019v����ߕֻ\u0013��K\u0014\u0012i)�\u0014��*��=�!��AL�&.)��O�R���Z�J\u000f�]�`�_B^\"�z84%*\u0002��r6\u000f5\"\u000f)w�\u0005��q�hl��\u0007\u0005C��\u0004�ǁ�H�LJ[�qg�KP\"1���\\@\b\u001f|L��A&�\u0007���X��\u0013/\u001b��V\u0010 f_����.}f��Ux9y�\u000f-\u001b��6r\u001f�\u0000�����š�IF̀ʛj�۝s�m\u0015`祝js��U*�w\u000f!��\u00178m4�\u001bL\u0000(2��\nm\u0010�q/>�{��\u0002���A\"�\u0007��X�]{[|E�F\u001bxI�I_s��\u00156��Q �*`�;A���w*ᕄ���Z@r�C��\u00112�5gS��\u0019��p\u0001\u0004��t�%�(��`/H�\bZ\u0004-�{1��Ls�ٷ]=4�\u000f��Fz��D�npP�^X�\"��T�����\u0005?���\u0017r��s�\r��3Ȑ�N�\u0001#�0҄Gx,�Y~L.*>���\u00116Fd�oj�=ch�3�EC�\u0000\b�6\u001f���\u001f�4��|�<ԗ�L\fx��p䁝�b�g$\u0014\u0012���gr'�\u0017��\u001f���:�M\u0016\u00010;�&4\u0015��X���3�6�-G��w\u000fD,�ɚ\u001eZ�>~�;b\u0014�9mF�\\-���\u0014�\u000e\u0014E<�E��A%�\u0007���Mz~u�\"td\u001e`\u0016\u001d}菱6\u0005\u001dxEH�@��j�'ضўo�:��y�3\u0000\u001d�%ܻ4&�[�Gwq�\u001a�U�43O7�t/�\n�\u0006�k�<��bj\u0018\u0007�FrϺjH;��l4݈\u0005�\u00150�'�7�_�\u000f�5���\t��ղSn}\u001aX!�˯Nr��U-��Bz���\u0014�^\u00152�\u0015�#�{��Ż��F5\u0016m}*Do�]���'ީG�������\f��j\r\u0016hZfM1�E�6�y�t\u0010�\u0011u*+�0]^Y��o!�\u0001�����\u0011#�j��n)/1�d\u000f�\u0015����+]��\u0010�8���\u0011��**��g�\u001b�H���a�́\u001b$\u0003Q�`�����0r6�A,�\b\f���b\f:�\u0015h\u001c������L�;\u001a,U�\u0003�u1\f\\f���p�\r���\u0015�a78��]�\\�?��\u0016��'$8���|�\r%\u0006\u0000�%���,\u001b�\u0003���M�7>�aD>�ee�ןP�\u0003�I\u0017)�$\u001b�|@p�N!�e{�!W����\u001a�W\u0002�&!�Os���)ʃ|'��\u0006�\rPL'�+��̐�\u001c�\u0016\f8��`�k\u0015��\u0012\u000b�V:'�V2�=�����^��\u0006z=�ϝt5xl��\b?��a�QF[i\n\u0001h�\u0007�(Q`\u0019�\u0018Ғ�ձ����ESe�q��4;�\u0011�i���\u0003ϱ���\u0014�*v,����\u0002Zߣ&�$\u001f!D\u0004|g+sS��0�oA��\u001d��k�7@�o(��A0�\b ��X�\u001e\u0017�_w��ZO\u0017��k`\u0016��l\u0010\u0014ic\b\u0010�#�\u0001�!>JD!\t�\u001cô�ԝX��a �\u001bO����\u0002`Q���{��\u001a\u0002\t�\u0002�p�ݟ�0\u0015�,D\u0017�)�}`\u001e]�\u001a��:C2\f\u001cI�(F�G�hd(��uf�?��}\u000eB\u0014\u0002\u000f�CL{\u0003����Ґ�V�HX\t��7;�C��Ь\n�$A��$ٓ���'�i�>7��GѮv�\u0011����B}S���m �>5B\u0011\u0015�� �kw�\u0010:�ݭ\ng��nh넏1i\nC��\u0012��c�����9b���5\u0016�\u0013�O�O' `\u001br2*�\u0001����\u0013A�,��\u000b`\t�A=�\b4��MW2\u0018ER�!L��@:\u0017�����߫���z�m�i�\u0000\"���*�\u001fä\u0010l3S��\u0017�t�\r��\u0019+�\u0003�\u001f�\u0011N�+䲟�$\u0018/��j�x]�>a��/���ͷ\u000bb�fer`�\b�\u0010d�\t��~����$K�'q�\u0005H�\u001c���Z%VWWg�ǽ�'�E��刌yi�����\t�r��4�\u0002���\u0018\f�xk���?�\"�~� :Fn�4�ҹ����s�f�\u0004�!,4��\r{pD�K��\n��\u0000%h�2&�ȳ1��u���,�\u001ep3>\u0011l�*&\t+\f*=1>Z\u0004.����e<2\u000e��������9^���J���!�B�n?�VG\u0007�����zU�p�f��w�b���6�CkT6�lH�AE�\bH��X\u0001�x�1�r�b\fc�y�鼴_����>��!$�zQd�x\b�r\u001d���\tY�{o/bx�I���\u000e�gY�it�\u001d�\u0014V��\u0012��zܡ��7�ѭܾg�s�\u0004��F'j���#�S�N\u0015\u0014�[�ňg(Y\u000f�\u001d;-\u0000�7�s����?�J��,ɤU�2�+ڃ3�W臙%�9(\u0014������Jb�}�\u0012H���NAi�X���P�s�]���g|yXË�\u00174nrKX@���+�d�D�W�.�k\u0006�\u000b+B�\u0014�\u0011��qVC�\u0010\u0001Nc�\u0018��\u0010�\u001f�C�\u00071+t[{\u0011�\u0002\u0016]��2\u0007�SIݔ\u001e�1|U\u0010��dN�e\u001aE�\u0011��N\u000fއ15v����\u000f�I�v��ZE\\�\u001b\u0006���.��ă\u0013~;/�󄸣AG�\b\\��L�kw:���ž\u001a�tF��K\u0003[I��ȩ�k\u0003,anR.\f���-��V��R�Ցh��\u0005\u001a�z��x�y\bF�|�rN5ѲC�S?�����xO�]e_}X0GC5L�Y�<}�\u000e�����_����F^�\t�t�\u0012�0�\u0003r�\u0010\u0013>u��!�脛mg�H����`��gA\u0017P�����\u0014٢S��zꇹf�_\u0016,��>�P�\\�h�'M\u0018�hR�\u0003�=�Y���\u0017>[S\n�k��\u0014�rN\b\u0015\u0017���go\u0004�ڔL�Ҏt\u000e�`�C<\u0000��6�U`0�\u0007\u0017��\u001eW���\u000e�)�y&ܦ�X�\u0002�y�޻��\u001f�\u0011P>��v�\u0018�i����%-�m�c?�O�T�4\u0011�AF�\bp��Mz��������k\u0007m]Eo¨4N:�b8�\f-)�F�ƨi��\u0017*/=4!{�#�_/|�k�%^O�\u001f\u001c��:��\u000eNDܿ}�P��=?�\f\u000b���Eȧ�ji�\u0004�\t,^!o�|�Ǜ���(��En���UQ��M)d��7����Bz?�j/c.\u0012s�O��?\u0010\u0017�`�n\n:���\\�C��:<�\u001d\u001c�o\u0002NK��\r�\u0018O\u000b�y{\u000f��t�~*����w�\t.Ҭ��{��ab�\u0002�{��g��G�\u0018�zW�\u0007�#\u0002\u0014T�Q�UJ`\"\u0004!�\b\u0004'�-����I�V \u000f�X7���AT�p\u0005�\u001f\r\u001b;7T\u000b;��\u0019��}�c�(\u0013��TV<\u001c�n�\u0012B�I�:N?���;�%���\u0003]�\u0004�\b�Qڧ���7�A8�\b���MWo\u000f��n��\u001e�!�y�\u0002]!;�����\b�\u0016�Q�E\u0014\u0007r'�6��V��s��,\u0019H��\t�O\u0007��Pn��\r��u�rJP�d\u0018^�T�&��\u0002@���-�?\u0017�u\u001b���\u00134b�p\u0005�y.k�\u00068�3�!�\u0001�t\u001b�\n%\u0010�ݹ33�����\u0001��F=^�\b��\u001d�ҥ\t\b�Q�|2�̟�~�;qq��As�/ڲ�ݨ=83�\u0003\u0004\u0010naY�} �€�*�;�&\u001d߄\u0018>��]#�&���v�\bE�6�$\n}ȕq�/�1H<;�\u0013\u0003za��E����uU`�y�\u0007Sv2\b4��6њ1�%[��b�k�\u0017~W\u0015�x@���w�hl�Ǽ\"��2\b6���ݷQ<\u000f2�Jy\u0012v\u001b�A;�\b���M��8)<\u001d\u000b纇�p�Su��T�\u000fN!8\u0019��AG��\b�\f\u0006E�>��T�TE�:1cj�\u0013��\u0012��>�uԆ��\u0001�\n�\u0005�\u0010�Q����\u0015�:��\u0007?��$�\u0013PA���rj�\u0006\u0001����\u001b譴]sΨ��c���u�+\u0012���\u001fΫ\u0000��K�\u0015���n��)\u0000F�O\u0014�*�\u0007�/�Wl�e\u001an8{O�w\u0006cǵ�T\u001cH\u0001G訖Yʗ������\u0002�P���\u000e��\u0007�\u0002?��p��y\"٩�\u0018\u0007��wgM��s\u0010\u00107�B���zU�w*\"�k\b,�B:�� �]���dZ�M��;c�^��\u001fc\u0016]�b\u001ar�*8j�_�V>v\u0004��VTo�\u0005��0��p�8\u001b.\u0001x{�G6|�\u0013�xh�8%�A2�\b���L�ԧ\u000fr�F�J��DG\b̽I.\u001f�)pN�\u0015\n\u0006K\u00128\u001d(���y#ˎ����\u001d���e�i���9�'�֝ĥ�N<,�Y��]\t�*,-�ҥ�N�m`��a�ZՊ��t��%���밹taq_�_���K�i4\u0002\r��ú\t89�}v?P��\u001e3������^9\u0003�G�g\u0000�\u0011�#\u000fE��\b�\u0005�\u0017�aF y��X1� ]�P�\u000e}�I\u0017�3�实s\u0012\u001dN\u0019�\u001cv^ʯ ��\u000b�a��$U̡\\\u0014�Y����}�v�I�'�\u0012��?{I���N�\\������\u0001R��uk\u001af��3\u0002��O��GF��A(�\bԀ�M{/פ\u0004����rt>#�����I\u0019�'\u0014Ģ��F(�+DUf�B��\n7�b�x���\u0017�\u0014v�0��߽\u0016�\u000fu�3�`��Aq�H\u000b,>���PQ�rk�\r����\r�Qh�d�K]�Z�9�vZ�0bT��{%���\u001a��\u001c�æ��— �\u0013ź���c���xŢnc�\u0016\\)�\u0000)YMfY�ޤ|�df\u0018�!]�Ǻ_ h_R\u0012-�\u001a�C�}mW�=\u001f�\u0012��k:�Yi�>;\\��Q�\u0013\u0002\u000f>�C���9t\u0014G���\u0007�C�~l��~��y�B�\u0001\u0019�\u0012:k�a\u0000Չ��W�?7��K�A�G�\u0000@4��\u0013�20\u001d�?ʓh�\u0003��\b�N���w�A/�\b���b���`\u0004E�����W��K�\u000eR�'��WI��?�\t���,4�\u000b� �'w\u0010�5\u0004\u0006�\u0018�)m�(�\u0013R\u001f��qK�h�\u0010��i߅��gQ�\nWê�Qt\u0014���\b�~���FNga\r��\t9R(�%{�üj\f%����\u0018���7�x��ש�,��/S\u0011C�)+s�.��T�A\b���~N�yW\u000eF�F\u0001�ǣ[�O����\u0015@\u0000���* �]#��e\u000f��f(�OX���ƣ��\u0005�xJo&�\u0001��\f�%_\u001e�_�� \u0003��D�Ͳ�y,{%\u0017p�FzP\u000e�E&�����Hxk�Bp�\u000e��y�}�\f��\u0013�L�pX��!��\u0001Fs��RE�\u001a�H]\u0015w2\u000e�h�hȣA,�\b���X\u0013���õu&pA�\u0010F�B�/�΄&h�$����Ao\u0013��p5���:� �Wip:d)� ��y,�æ�3X�fG�:�|��?��\u001d\u0005\u0002��Y�Cs�Y\u0005����̏+�Cb���\u0011C\u0018.\u0000$�-\u0003X�\u0003���!<$\u0013��w�� L�s�vTw��ć���\u0016�ՐdU\u0011�_�I7��7���k�v{<<�+ґ�|�\"�,c{Fi���P�86��7��\u0005��j�m�\n\u000b�\u0017ph�D�@�<*ʾ�T\u0001�\u0003Cw':�7E\t�[�B3\u0014�:\u0011��4��c�S���=q\u001f��\u0015�7�l\u0018���꫷�\u0012\u0010�BC��I\u0016Z��\u0013IOY��\u0001���z!�\u0014���ָ�A3�\t\u0010��M{\u0000��4\u000e�5��ܶ�D��\b��0b��\u0003�\r\u0006�K�p)C\"B�m032�(j6��\u0014UH9\u0017�T\u000f{�&�\u0010�Q�ə�n�d\u00038\u0000H\u0007�#҉5�9�_<\f�ކ��i�*1��z�ds��l�.�5\nxG�%�8���~L\u0015��Yk�C\f�Z1l�����$���x*F��\u0005\u001fG�C���l\u001c���\u0001�\u0018�b\u0001��;�zl\u0012�$��p�?L��3D�h�\u0018�ؐ���eJ�™?e�*-��R\fe(ن̈́\u001f�QO@��A�IZ$�r��\u0012P��5�Z����4GE�Nj\u000b��\u0010(�\u00010�7EG�\u0004p�?re,��k�S��{�:sø��\u0011�إ\u0003��F��6��\u001a�A,�\t$��M|}�s�\n��9�\u0013̄����y|��Mb\u0011\u000f4�}\u0019��k�JF�wn\u000f�\u0018<�\u001a\u0005��?T��%��Ce\u001c�/\u0016?�\n2\u0006�x�[{\u001a�^O�?LG�Um�\u0019U\u0007� 5^��`i�Q;E\u0019�m�odٽ8J��bռ��Nw��\\Bd!;� ��\u001a���6�1@_H\u001fg�\u0019�\u0006\u001c\u0000�!iu�MC�z\u0002\u0000��X�Bl�\b+\u0010H\\ӱ�2�?��C�xH��\u001e�>k�\u001c�j\n�\u0012�@ň׵�9\b��+w�\u0005��\u0007�S�H��\u0010�\u0017\u0014�\u001a�\u0002J���w<��(�\bIӧL�dω�\b�����W�\u0000�/�\\if� �\bט�����A~\f���X�\u0002y�@Iv��%�A*�\t8��L��Rd����\u001d,U�7ד*�\u000e��{Ҷ�����}|�Y\u00142)�I�+��O�xnR�,����#k\b:t��0Q��D��X|\u0000����%|\u000b�\u0000\u0014�Y\u00179TX�R{k��2x[d����\u001b_���Y\u001fUu�xUzH\b�A5�\tL�����Q�Y+��[�qa�\u001e��������)��\fx��<�\u00049�,�� }��3vs� MF\u0015i��\u0005\u0007�v{E�N=J���E^�<�uX\u001dC��Z�o�K /o`4tU��X:��BL@���\u000bOr�R��1�a�C\u0004#��\u000b�g\u0006���צ@�'z�l]K�ރ#��X�e�7[�~�[��J��O��P8�I�{˼�$�-�\u0004��1\u0014�j�����ﳈipd<��\u0002�Hp�P�\u0005N�(�\u0017���V��\tP``���\u001d+\n��}\u000e\u0017:c,�߽\u0018\f�\u001b_�\u001e��0��ў�T*͑�F�l'�[���}Q��+\u0012�ps�9��=���\u0002�-w��\u001b�d{⣒��A5�\t`��L�5拁eY�u��[\u0018Ś�4_!~�~\u001e&�~����Eo��|6�a�PKV�t�����ǘ؞\u0011���\u0005�*����%b(�tS.��kѩ��\n^=��2q�h]��\u000e�ۙ5]�K��$��a�*\u001d�\u001f�w�H:S�@c�\u0017!4V��\u001f�r��\u00052 ��\u0000���Q\u0012@�`dH�4���\u0006����\u0006�%\u001fr\u0016H��\u001a9������|)\u0002s2\u0001��V/�.s�T�'Ou� \u0005���\u001fߞ\u0005ϡ7���Q#7=�?2ב����x\u0011\u0018Q;\u001b\u0016#j�Ň�M�1.g\\�<��_�WW���A�/c+��\t���\\���\u001b^��+�m\u0006\u000e�+����B\u0011\u001f���o���k\u001fA\u0011n\u0002����A:�\tt��M|�͡�4a��������[k\u001bKr�D��m�\r\frj%I\f�#�%7��wo\u0006BW��>#G�.��ζ�!qJf�\u0005o\u0017ݩ�⏱{=\u0002�3B5�m@��Qh)|\u0005aЉ�q\u001f'���c�}=4(\u0003A�*�m\u0014mI.{ȓ��O�=Ǡ��ȮL����8?\u0002�/\u0014�D�u}u���_N�W\u0006��{y\u000b����LE��\u0015db`)�\f9\t�X\u0000\u0016oU���B��\u0006�u/Q�}4�P{�#_*�W�B\u00006�n��?�1G��U\u0019�h�\u0016�z\u0013��p�U��Wg~��K���\u0013L�\u0003(�O\u0015؆�w`]�\u00062���Ģ\u001d-\u0004d��t0\u001dMk�\u0007���s��Sw�\u0000&�e$>L�%Y��\u001a]��AՁ\t���}bS�q�پ�\u001c\u0006]�\f�\u0005���\u0003C\u0000X�̵��\u0007�䂬4�\u001dq\u001a��b\u000b�G\u0001�����a�era��8R��3,\u001a������s�WC��q�\u0006l\u0005\u001c��e\u0006>��\u001e�;/�\u0011���\u0010`�jO��Θ�\u001d�\u0000B�?�-�m�m\u0019<�r���\t�7dk�(\u001d�VS�֕�6r`�����=X��>�o\u000b���3��[Uأ\u0000�3?N�\n,�d�:\u0015�\f~ftg{%�IFԯ��\u0011\u0002��:�'?�#�+�fe�U�\u0010�V�\u0003\ni�}azG\u001aͼ\u0007֓\r%�F���'6�è;eFO��D��Ә,�\u001a@͵Y�#ծ�hD���2��H\u0000P\r\u0013�\fH\u0018'�(�B\"pK]�\u0012���\u0007@���Y��#�<�#C�5���U�0YV@X[Lz\"Q�Q���F���\u0011�\u0006\u0004�,\u001ekސ6b?�����\u001c`\u0001(�uP\u000e����5\u001b{0{\u001e#�[?7\t�i�\u0010�MM���c���\u0016�Ҋ�IKz'9�]:ۅ\u0015�\u0002\u0007\u000f����e���\u001c�T{z$���1uG�b�1GommE�6m���\u0015c��A\u001f�\t���X�7\t�0\u0005�컹���\u0015�E�>jx�j\r��4dT+�D��So�Wc��+E���D\u0015�����R�)���˷�pUň��6_*[�`��a\u001eu\\!_~ϋy!5\u0010y�-�\bp����������jvCzq�3ݩoۜ����Q�S`)T�pS<�W�\n���\u001a�Jº��f������Mt�7�W���ܫ6�]\f\u000b�P\n8b._ޒ\u0019�y�L�w��ͣ��}'����\u001aZ洔�g'>�˳�d|��,��\u001b~�\u0019-�-\u001eW�07)�\u001f滛P�떡7�\t�\u0004a�Y\u000fS��\f\r�Bm\u0018,��� \u001f\u0017A7�\u001d��{\u0011\u0017��\u0013E‘�A\"�\t����d}�\u0010D��\u0012���[_�,C��U�\u001eD��\"D\u0018�,�e����\\�g�\u000e\u001dM�;�p��n+u�i�ݘ�K���w��\u0004��\u001e��[Z\\\u0004�aeb9�-�����\u0012|���)\n�\f\u0019I\u0016UV\r�ن�ߞ�\u0018*HĮ[\u001d\u0014�;��n�[۫�����\"����{DN���%_��+��\u0006���Z`n\u0000��P=2\u001cM>T,�Å��u�\t�b\u001c�g�\u0010f�R`\u000b\u000b���Y\u0010�R�Z��W����\u001b=9_�t�%�@�0%�\u0010����\u001a0�J{�\u000b����Wu6|\u0019\u00193����v~!io��k=j\u000e6PL\u001a�e�r\u0019��\u0005�/�jBTЮ\u001c*\u00120�A\u001e�\tĀ�X���.��wr�\u001a\u001f\u000b�������7u�soj��\u0018��T��v�[�\u0010�;�V�\u0014���Õgϓ�90��-v>\u001f\"p�ڑ>��i�\f\u001f1��\u0015����\u001b�o��o�+��I�k�.i��%x7�M��#&\u0000Nӈ��\u0010�jM��c���hy��\u001c�g��$|)x㉊�tڤB7>S\u000bU��p��\u0003����\u000b\u0001�����B�4���q�e�-�\u001f\t�4��DZ~-�\u0014J�\u001amH0��]������Q\u001d�˾��z�� \u001d����J&\u0001-�MAҨ�lV�L��OY�=�,������_��\u0011��\u0000Āb'����m��V�f\u0007;R�A!�\t؀�Mz؈�9�؉�Q�a)#�Rt���O�\u001aE,V���lU{��\u0016�H.\n\u0018F\u0002�z�)/_�\u0012�q�n�{@�\u001f~��Z�0��v\u0007�Z�P\u0015\u0011��y�6�\u000b���r�t}=�Fj��V\u0004\"�\u001b��k���sKw��>\u0019DW�}l�g\\��\n(XB�$��[�y�-=X�f�\t]c\u001c.\u001c�yI���\u0001ڋ��\u0015I�h��3����PR��\u001b�\u001d}hѓ��P�6�\ni�'�2����\\W�R%I��e�]���X8m��G��8y�Y�i��7{��>�ͭ�\u000e���OE�i̢�yr���H�\u001c���\u0016VF�O\b�\u0002�l�un�\u0019�P��!�$�A$�\t��L�l������y@x��\u0015�!}5�\u000e��x䁑x�\u0019����\u0015�~ڕ��F\r��ۂҥy�ȓ8\u0010/�a{F���ӡ��+6�ǶM��c�?���,*T;�&�ׄ\u000bDB��]%-Xj�\u0017/\u0017��EuS �8Wn���&�,)�4f\u0001\n����\n��5ld_�w\u0010t+��\"#�g&`.\u00109�Y\t�.nR�\bF X�dҭV�(o���\u0016��a�pn�k\t\u0015��:���}\u0015��\u0011\u0013\u0004�\u0016\n���n�Ks!�\u0013=Yq��\t!-\u0018pZ�A�'���\u0000ᅫ�g��%�\u001ee2Ï`�\nf):aޗE0��d�狣�N����nd��\u0000`ȓ�T�[�A&�\n\u0000�����`.jz�4�_\u001ao\u000f\t���^h��r�],�\tr����\u0016��6�wA��`\u001c�ܗ\rb��+��XKV���\u0014��a!�!/�\u000b��8�ϐn)�$mc�'�@\u001f��/�����\\;z�vr\u001dؘ��b\u0013�O�O|1V\u0002�29\u0010�m>\r@\u001e�H�\u0006W�M\u0003�\n���d4�w\u000f!�`\u001d\u0017-7>��\u0005�Y�bE9YV�O�#�\u0002Q�at`D�\u0013R�/�la�%]{C�{�����+9�\u0005X1\"\u0001�g->+e�B��a��+~F��\u0018Ft{&\u0006���\u0018ޔ\u0007&\u0016����i��Ȩ�׳S0晦�\u0001�?�ӲРy��%)�\u0017�5n�:?����\u0012\u0003�pI�A\u001e�\n\u0014��L��<*�A�\u001b\n龦��~��k�{샘�߀R\u0007\u0004i_Z�y��\u0007�\u001f��ɸ�#�q���Y\u0018\u001aA��Xq\u0000\u0017�p��\u0010ĉ%�)�+�>7�k\u001e_���\u0015\u0015!\u0000\u001aU�R��\u0001�Ռ�\u001b+�<�%oW�\u0016a(�YFB�\u001aTnl$ɀ�P����@P��'\u0019�n�\u001f�\u0010\u00012������\tl\u0018�m�\u001bH�\f����\"А�\u0015�]\u0005\u0004�o���N�;�4�y,���B#��D�Ju}�Ӹ>���sN�=T���Zl\u001b�I+�F߳���ML\u0017�j��siN��:B�?\tP�J�!�8\b��x�V���\u0018\u0018#�\u0011���s�\u0016�XX�A)�\n(��Mz��!\u0013��qm�<\"3/�\u000e(_~\u0010��\u0010�F�V�H)����Ȫ�|�\u000f�\u0007�\u0013H�\u001fF�� �r\u0011��\u0019�e�yӊ�����\u000b�\u00193u��=j��Š#�7ٹT�%��r�9��I��P��j���?���p�\u0001���sK\u001aȃ+�iJ�\u0002�ܼ?9\u0016�6�\u0004���_�IM�\u0003�v4A~�\u0005�1�\u001e����\t��4��\u001cAd�z��b�\"j9v���W�%�S��򰾀Q�T/��W����+_3\u0019�%���[i:bܬ\n��y�����{�43:\u001f���: \u001a5-�\u000b��ѯ���jҹ��\u001d�h�\u000f&\u001ec��\u000b-�Sϴ\u001c�)���A$�\n<��LӀe��dM�nNLc�����v��\u0019�� 4�<1��.�qQ��(a�����R��N���W>y|)e\u000bI��)�)�\b�Gv��u�ޅ�\u001a�&�Z�8�8�M�\u001d8��\u0013�\u0004`\r�kl\u0012�: a�xLv������ަC�\u001f\u0013ʒ��p�S�q��\u000eļ:ƮT7G}�o���6Q2�;,���r�?� ����&?6I�5O\u001e?�B��56:W���\u000f\u001a\t�\u0006��&+��s��\u0018!�}1nXtP��&2Z�����\u0013�h/�u[\\nrx\r*��q�r�\u0012�A,�\nP��MzL�\u0019\u001fM5�m����\u001a���c�\u000f\u001f���\u0012����At����\u0014\u0019z\u0001�;8�\u00175+\u001b��P�3.E<\b�<\u0019�P��v;ߘ׼�I��\u0012���L!wR;&4mdղ���u��\u0004�������=\u0016 L0��A��)ϸc�$\fD�\u0018\u0006�lн�J\u0007�����\u0018=�#jjVe�t�\u0019\u0016\u0011�VG\r)pQ�\u0005��p�\u001ae�\n1\u0004'� \u0000P�V�\fƄŏd���\u001c�h\u0011��\u0013�2Y&\u0005�.'U\t�\u0006\u001a!5:�f�\u0017L��u�����y\u0013ST�\u0005��}��鮕�-Wo��\u00119!�\b(H��G�9yK0N�M\u0005�{=��.�|�4D�D\r������_�*W%�\"��\u0012\\�A.�\nd��0�)T������\u0007S�ޑ��W�C��nli�4�W\u0000��\u0004(2WV��~�97��\rN>�\u0010s\u0007*;�\u0019��Đ�;�9��U�\u00042,�y�7Ug���i���@\u0005\u001f\rX�Z��\u0017���L��f1�7�;R��rNf���-��b�A�\"��]Ll@wK)��\u001e\u0004\r0���e�\u0013�|�a2�\u0006�%ݺ$�#�TM��p�\u000b��f �H\f��\u0019����\u0012F[x�e�Z��\u0005}�s�a$Cl�\\4x�!���\u0013l�其4Ax�Ni�px�jY2�<>\\�-��9�+P\u0019\t���=��s�$\u00024\u0017\f���y\u000f\u0010��>���v�yrt#�-�A/�\nx��2x��� /�u.O�؜\u0007A�3�-2�Ώ»�,\u000eJ?\u0011)�3\r<�s������b���J�\n\u000fR��G5�\u0003��\u0017ieî��r�\u001a1����@\\�\tj�iG_u���(�����A��\u0017�_��\u0015\u000b!�=���hm�\u0017�hF�k&*{Y^��p�Y\u0018�o�=*ʼ\f>��>�����6�I�kyK�m\u000b��\\%���\u0001��\u0003�\u0006�\u0017J)��׷\u0010��v\u0018\u001d�3�����\u0003�,\u0005K��v��l����T��Ӿ�G/\f\u0012��)���V��׸�,\n\u0000s)WJ<�p�d��8\u0014V�4��\u0010?H����챔��1�\u0016�D����C��&Q�\u0016\n��\u0003�������XnD!�A�\n���}b�v�!W3����zvNՋ��eD��y�\u0017�tˮ��6^��\u0014� � �0|{\u001fR�V�\f���\b�m�Ӷ=��,%����1�%Y,���\u0016\u00183�T���\r�/�\u0018n)̌�\u0005�\u0014\r��e�_�V%YK}V<�l\u0014\u000e$\u0002�����`@�<>�F�`���&�PBdn���ϝq��.�\u000b�x���@4�1�#�D�$FƷ?���?��l\"���>��ߡb\u0001�ڸ��m�f��C�\u0014w��\u0012\u001a�xH�d�_�WQFqM�5=�����\u0004\"\f���u�:4+:\u001f{��z�Q\u00168$�8��\u001a���>}A\ty\u0010'��\u001cfT�0���|V\rB\u0017�\u0006\u0015Y��f~W��Ǥ��÷�LR�8?P���w\u001f>\u0001Z�Gh4Y����45�\u0018aL�;\u000b�~�ٝe��\u000f\u001b�\u0006�\"��2�\u0011��A'�ƍ�H�[��\r}�R7ؑ\u001e=F���R3�{?ofB�\\���\u001a_�xva�\u001e�17\\\u001f����G\u0014�뮥B�\u0017j@}g\u0010�\u0017j$aB���x_�\u0014ë\u0019\u0001�\u0004[�N���%B����y\f����T�\u0015�emW�\u001ay)�\\7y\"f�A$�\n���M)'��~\u0004\u0017�H4\u0005\u0002��.��eTC�*x����m�{�Z���$\u0013e�U��f����J\u0013�\u001e�C{ A\u001b3��|\u0014}S�D;������\n`9̛�e�5YG�\u000e\u001b\u0007����N�Rc�\u001dV\u0006��i�\u0015����jJ�r����՞S�\u0012bl�\u0011Z�8\u0016�\u001dڳ��\u0019��X\u0011\u0010BP��%v�3�E?|�L\u0018�j��\u001a�&\u0007W��a@��G�\u001d*#9�\u00131˜���2�4\u0015f��}�O�ߕ�\b�Dd\f|�G��$�ⲳ�f)�?L��ɞ���Ƭ>�D�`\u0014��\u0001^�\u000f\u0019�\u0004�N�z��q�\u0011(��7<�'\u0006�\u0015�|�Y�`vi���6u�m��R�A)�\n���M\u0011\u0019\u001c��!�B8�$i���J����\u001ejj:���\u000bT�z/,�A\u000b�0ڙ�a�]�UcK�\u0002v\u001f�\u0002Ka����x��\u0006(�&�^7\"�/ꗽ\u0012s��4\u000b�=\u001dlht7�]=�\u0013���3m�Ɛ\u0007o�>\u0010\u0003��d%�Am��J{;,0\u0011.�H�uO��k��\u0004ئ�ܧ�\t��?���K\u0016�:����G�\u001c\u001cQ>J�p\u0004����o�O�>-,%���,�JT\u0018y\u0019�\u0012c%�6�F~�Ͱ���$/J�.W�FN������\\�DP�\u001a�dm1�z�T������*��-��;��\u0018qƞ�J��\u0011T �!B�7\u0015�;�q��E�l��:N��?�u��A'�\nȀ�L�\u0014dK]sZd�\u000fN1\n&�g'�?���Z�5J�.+���YdW\u0002N�V��H���2\u001d\u000f��E���\u001b]\u001c���:N�j�S�E`��Tk.���\u0001��ݲl&ح�AF7ʙD�z\b\u0014\u001b���\u000b��Pg�C��9�\u0006v\u0002ØUe܎��BT؃�����7\u001f\u000e���2��A�\u0005��K��:;�FH�����k�k��\u0006gW�[���]8��X��DG\u0014���em�ټ�tɲ�h����b,jj6�ɜ�\u0000��\u0000�[�l���$���8�\u0010����#9gKQ\u000bw�%�ץ�n1E�x�\u001d�\u00180�n����^�\u0007w$�%*p���\u001c��!w\u0017\b��\b0d�A<�\n܀�L���I�����\u000f�\u001ca��\u000b��s�����EmU��\u0013����{:�ݰ�\"$��gC�\u0002\u00077s\u0000\bp��~7��Y�x5��EP����%y]�a�\u0012��R�\u0016�\u001c\u0010��\u0006\u001f��\u001f\f�m�n�4��\u0010���]J\u001d\u001a���\f�ZU\b��9t3�j��5�|w�}[��f��\u0003KªYmL�\u0004\u0007+��\u0002��'�CЈ�\u0005��{�\u001d�����\u0011�\u0001\u000b�5�*,�\u0018L�b�ʗ���:\u001bu �>[t���ά��Nr�%G!�{RI.㠰=�\u0012�d�[R~�˛�[�3|v�C��_��y`���|t��ȴ��kh��4�4��b��\u001a\u0013 }�\u001c�B�\u0013\u0012ZNN�;\u001b[\u001fGM+��*,H\u0013�\u0002\u0004O٣AB�\n����\flMG��J$�\u0003�ݘ�\u001aU����U\u0017��'�/m\u00149���_\u0014ɔI�D}:��\u000b\"?�U�R��рw�{�A*/�f5�`\u001e06�\u0003��B�'^�O���sN\u0010h��6���\u0007T0�� W�{�x5楓om4ٗ\u0015N�\u0019�\u001e��Ki��aIÜ^2�@���9�\u0015��)x\u000bJ�tрL/�59\u001aO\u0004�V��۹�Yo��\u0018D��E<51\u0003�����#;BX�h\u0017�\u001dܷ\u0006+1��_,�\u001a�?z�]!�z���l��\u0006i���à߲NV���i�l�U�;��Nc;f zu4{k+�ۼ\r\u0015���\u0000}\t�:\u0004\u001a�9\u001ctT�\u0017d�F\u0011�q�?b�Ny˜��\u0006C�>��ڸj����\r�Dp���N�H\u0014X�A>�\u000b\u0004���\u000f��\u0006!���`�t��\"�\u000e(\u001e�(�.5\u001b�#��N�؅�_)5�:�\u0000��Õr��\u0007w��u���\f�:}Pm���܄>=�s\u0014��Ϙd�V�\u001b�Xh�V2�\u00033-���ٷ,�1:�r k�-(�y�\u0007l9�G\t�A�ه��aò�\ng\u0015��\u0002-�� {s�R\u0014\f�<\u0006�@���ʤV\n�\u0012ז��{�:�S���ji���\u0016�L�X*z�5�z���ҙ\u0003\u0005GAӦ\u0019e\u0011��I�� kL�\u0005iJ��� *c��$m��y8����$�7C�\f`?��D�j\u001f@Z�`�5\u000b�ʩ�e0Z\u0002Z�\u001f�b\t�������c\u0002O8��~<�1��(2��k�J����!VO�э�ϥh���B�AB�\u000b\u0018��X�Zy$�@J�\u0015\"9HnY�-*1���C���?\u0014lk��\u001eO��,Awc��A�����\u0001ҥQ��ͺ\u001e�Or�#�\u0004D]�\u000b���{\u0010H�����yq6\u0013\f�sk��s�\\Ń\u0004������\u001d����~0�\u0005�\u0004���ӭ�^\u001e�N\u000b�wba�\u0010\u0017\u0005GZ�7\u0017\u000fH�[3i\u0016\u0018��e�>\\�\u0014i0�vt\u001f��]W���\u000b��_�\u000e���M�Wܧ�r�\u0005!��E�{Sh{\u0003�\u0011�|�\u000f9[\u0010\u0003��\u001d\u0011'�K�©��Yh�`��C\u001a}H��R\u001b\u0018yfB�I�I\u0000�C��ȕ1\bM'���DE,h�粋jb޻&�u��Hs�*y\u001e��k���\u0017�y2��H��<=\u001c�.��\u0013�\u001f\u000f�{ނ�^2B�AB�\u000b,��M\u0012�$\u001a;�\"t:�����,o\u001f��-�\\�����g�F��.J��Wa�a��S�\u0014\u0005q�j\u0010c&Om\u0004Z]�=���W��\u001d!.���o[�Y���(�����d#���\r��.�0����1��\u0003���m��4^�{�ڏ\u0010Y\u000b�ݫ\t��fϾ9�t\"\u0010V\u0014�b-2���I~Q��\u0012\u0016\u000b�p�]�4c\u000eK+��t��\u0006�\u001b�?#��LM��h�D!�\"��CU3\u0001���u�\tȲ�͵|`%�\u0002\u001c��[\u001bY0\u001d�/��\u0002�;�-d���\u0019��P䌤��s1j���\u000b�\u000fPx��B\u0000d���\u0011Rߙ��ңAG�\u000b@���1�\u00181���NX\u0017�U�t��\u0015�n�I�C����\u0012��\u0002`p�2\u000bΨ�\u000b\u0003ީy\u001e�\\֑Pn?X&Y�\u0014ýQk&���R\u0018�K���u\u001c\u001f�%�\u0015Mß7e��ן\u001b�++y�3�\u0003c0��\u0014\u0000ս���փ���\u0001h��R2`\\�%��c>��d�!�\u0005f�=�\u0012�h\u0005�h��;�+\u0000�\u0005�U�Fhv\u0000��\u0016��8W6�P\u0000[�\u0001$Fm��M�~��е��|\\�Rߖ<1V��SuϚ�W�d^6���09\u0013��R��l}(N�-}�^Q览,����P����׿gej�q��-\fF\u0019�`p��\u00121n,b����Hl�(\u0006��ė\u0007��t��\\\r�TH\\s��\u0003��*|�Q�+�ӯ\rc3g,T�<�AD�\u000bT���\r�g\n�\n��=H6\u0012��6}����T�]h�\r��\u000b\"�괵�\u001c�ø疟�\u0000|Tu��\u001b���\f�\u0004k�OS\u0004���}�\u0003�#�Ne���ķ�=�#��+q�>�\bV��N�CC�g\u0007�\u001f�.W�\u0017!�[�\u0007\u0005)Ä�$�UVy\u0001��\u0005*��\u0002ׇ\u001b5��=�'\u001d��x|� �/\u0018�\u0002����f31�%W\u0003#R��gԡ��\u0010��J�G^�\u0019�?��P�`V��r%��\u0019A��H`KfH3��Lv�,T,T!b8�\u0004�#,�<�i�\u0012j�\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0002*�\u0011�ӷp����6W�X\u0003��4�^�\u0014�9hp�\u001f\u000b���󵑷���l-\u0006�\u001al���M���\u0006ϖS��f��\r��,��{\f�i��q\u001a��ڣ\u0011(@\nj��q\u0012������(L�e�\u0012e���HK/E�\u0001c\\�kE��E�\tl�3{��\u001f\u000f4H��|�/\u000eY�\u0000�G�0�G#�]5�\u0012�\u0014$�S&���*\u000e\u001c֒�^z0j�;��J�I�k�.�X7��h�����Mvv��\r(\u0010+\u0019bR\u0014I�\u0002٨X �5�\u001f�\u0013����\t�]�e�kގ�\\~����ϧ+\u001b\u000e;½(iՆ'ס\u0010\nQ<�~��q\u0001M�m��@\u0010\b���\u0012��/E�.̧0#�\u0005�+t~��~%'5���g��-]�P̜�3���s���a\u001a���Aف\u000b|��w\u00070�PL_�\u000b���\u001dYb\u0006\u0006�F�\\:\u0004IS���\u0001�3?��!�-?�-nW�f�5�pz��%�7�8��5�Va�c^��bI}��JMk���s\u0000qZ�#x*�\u0005���z����\u0013�8��K\u000fnQ�\r7*\u0012\"[�\u0007h�*\u001cIZ�|;�N?��>v�T��E�i��zȽ��\u0010�\u001b\u0018\u0005��\u001by�(\u0013���\u0010�\f\u001c����.uX��\u0004ף\u0010�0\u0014�\u0003l��\u0001��S\u001b1'_y(���\u0005\"H�Z��lHq����\u000b�\u001c?`�V<��\u0006\u001b�K����:��˨\u001a�}i��X�ƔY�V�2E#>`y�\f�\u0012���m:L\r��py���\u000fS@'H6�.�wF���`݈\u0002:��]��E6z뙦8�\u0006g��\"86R��˴�ΏMd����m��̩$~�ߒ�t[aƒ��\n[4G�x\t�l�x(�\u0013`x���\"\u0004��l:�B�\u0000A�^�w�\b�\\��t\t���4\u0014��\u000eB���;\u0002\u0004�<�KQ�|��;\r'YЈ������x�\\�O*\t�4\r�\u0003q�\u001c�0A}��\u0011�q\u0017\u0014c\u0002fH�!p]�Kw�S\u0003��A\u0019�\u000b���]�m�I\u0006573U��\u001b��LW��;�o���R��\u000eg��P\u0005�1\u001cl�6kFC���؏\u0012��\u0004�B�+�\u00161�%����\u001b�d�\u0004�/ܷ���2[�6\u001a\u001f��}>xiX�\u001fG��\u001cB�p���_x\u0015�Y�aT ��1��hY�_L\u0013Vœ���Q�|�\\�����3,4�\u000e�Xݯ �zՃyt�|7�X��z��u���\"n�#N�@��J�\u0016��\u0007n��vEBr���� �\u001dk�\b*�1�5=׏\u0011��<ȶ���\t�\u0014�\u0000�V\r\u0013;�\u001eD�����\u0012�\u0006A\u000b�9�MQ�m\u000eW�̵YX���\u0011u���&�q�\u0011�����q�A\"�\u000b���X�bQnӱ�\\��VrL=nVu\u0001�a��\u0010��E��n�_��\u0010�\u0011:��\r\"�Q����J��\u0015\u0003��w�>���\u0005Z�a�\u0007+�\u000b�\n-#>�<6��ߣתe6�k\u0014\"��\u0001 mh�)��D�2a�e��=�u�ء�C㏆�\u0003�\u0003��%��8�8\u001a=\u001b�7��9�]��N�{�\u001c\u000f{|��+\u0018v\\\u0002\u0003�s��=�\u0007��xg�\u0015#p�Mӓ�\t��#\u0003]��&\u0002�e\u0006�\u001f5v\"��=��P6Z�y�+��n�\u0010��\u001f�\u000f�����\u0010WDz��U-~�\fCy^H�ܹ�W����~��g7\u0007\r���\u0000\u0011=�\u0015p/�8�2��VIq�\u001c0R�A%�\u000b���X�è|2L\u001d\u001e�;��\u001e��j{\u000f�S�Bl�\tP1�+��\u0015��e�w'�S@|\u0019�W�R���\u0002+0�pO�\b�ie\b�F`�'P-G���\u0018\u0019?��\u001f�3c\u001f��e'�X\tY�W�a^��\\ŵ��ߵ~N�V\u0002\u001a���?\u0007\u000b���f\u0018\u0000PLt�6F\u0003�\"�5#Y\u0006_��:�I]4��\f[��HԼ�Z\u0011z��l\u0003g�Z�A��3��.n\u0010�jI�_\t.X��9�^qe^Tƭ.趭{�����\u0019h\u0007S��2PpJ%�`y��,�c9ޒ\u0016Z\n�B(�\u000fT�V_�G~���.�\u0014�Ţ@�H�[�Ÿ��E�\n��v\u0000�_��dD���U��E@�'\u0012�A\u0011�\u000b̀�L�!Wd��a�+B@��gS��\u0018��Q�b85���㻎Z&ZKW��Z�w9}\\�`�a�&/��'�� �\u0006fQ;\\�\u0016\\�⨂�\u0010xw{�\\�+�49��s�Fd�\b�����\u001f�o\u001a�&���\u0003�衮�/c�\n�]�-�=f|\u0017\t \u0015(P1\u001f�\u0019'?��kgTR�dI\u0000Pc\"�A�V\u0014�?�k�tf��{��7C���]�Ϝ�\u0000n��G��F\u000fw�i���5\u0003�\u000e��&KX���v��\\�\u0003��B�\f���k�izF�gtP{f GG��O�ڨ����\u0006\u0005\u00034j]�n���\u0010���\u001b�\to^Ծ.�A*�\u000b���X�c���W#�?\r���0^RZ{����\b`��xS\b�\u001a���֢�D\\��Ga\u0016�W�]c�и�ì��_\u0004X��\u0002M\u0005��_\u001aI>A-�������;/@�t�\u0013-Le��<�S��\rI��9m��լw\u0015*0�ۺ�ד\u0000�����\u000b�E��A�Z\u001f2�\u000fe6U\r�\u001b5�S�S\u0001T��]�D.�\u000fjd�z����z�\\�}�䥭\u0005G\u0016;�+}�\u001dpV\u0002\r\\E\u0015K��\u001c9\u0019'B�V[b�\u0016�<�IV\"��@|ܿ\u001b\\q�������/���V?��(k\u001e3^�\u001a~\u0013����(1��T��H�+�2���6 =��\u0013�\u001bNMCR�q&�p����R��*�I�A0�\u000b��LϽ`��$N~���<_��߬\u00180̧\u0007�\n�Pi:�\r\\\u0003b�P\u000f�1�I\u001a\u001cT0\u000ee6��\u000bxP�u�yS�D\u001d\t��R�?.jx���)�j��z��`#f\u0003���M�@���ڴ�6�\u0019�#�����ܡ6�-C���3��c\u0012Fu�J�4��sX\u0007���+�J|eH�7��xHw���0.�3��Z\u0007�x�:��~IJ�2��H��2+\u001d��I�f@��\u0010�\u00010~�Pv8M���j�\u000b%:\u000f\u001b���MX+�)�\u0004�ko�ؗ�h�ڱʟ\u0016eĥzm�����\u0000�\u0016��\u001f4K��\u0019��6�\u0016�\n.�s�t*\u0000�cS���\u0003�E�\u0019\u000e�\u0011`3�\tt\tv\u0006�b�7}\u0002Ið3Q ڝ�6?�(���61��#��\u0018E-Hz\u0007����\u001d�&6��a~�5��\u0003��N����R�x늾q\br�V�z�j�3t��*��X����\u0002~/\u0000�@�a��\u0001��W�\u0018[���W��|��#]��*bR�^0��*�|\u0005cl-��J#�R�+\t�n�X�C��\u0004��\u0002~\u0016��'.T\u0004G�SՄ8���E�,�\u0019�\u001e\t�nt���R�kB�U=9�\u0015�n�C�LM��D��`!�E�Ix��9�lzA���_��A)�\f\u001c��X��i\u000b\u0016\u001b{�덀c+�)T\u0017�\u000e���CϢ�i��n�>qE��C��`\u0011[:1���\u00030q��zT2���ص�qqڡd��\u0001@��w[Y�\t!�u�l�\u0000\u0015��\n��0�Ȃj�L�DI׶OG����d\u0001��\u0000���\u0003P?bR$\u001b\f$�[Ylsą��EMe�櫹��i��g�d\u0000\n������\u0004���Z\u0011�c\u0018{\u0005�1�#0\u0017\\{\u0007��u9�\u00143����++�\u001bIB\t�\u0016��$�5�@\u0000���X]�A�+Y\r\u0017�ӥ)E�S�K�\\שU\u000f�.b\u0011�ޏM�`\"�VYĐl���mJ-\n��ŕ�a�$\u000b�'s�Q\u001a�[0��N�b�\u001fۀ�A=�\f0��L�\u0019ͯ{�\u0013Jb���*?}&_ŝ\r�R���۹׆m�v�Z\u0017��ms�}P\u0016�k#I\u0007`P�^�[�+\u0001�)�\b>�\u000b�m��D\u0019<\b�\u001bƮڣ\rR\u0015�A9�̴��V���.冒��s-w���}(�\u0016���U��\u0016\u0015U\u000e\u000b�~\u0015�\\m(�\u0001\t�^\b8���>��\u0006Ew����V�aU[�&J\u001c\roB�Md��\u0007g�/�[�\u0011�}���(;\u0011>��z��͉A�7*+�\u0013\u0001�\u000bP�o���C�5�t�\u000b��j�`\\�]�{Eא��4\u000bЎ%³Z���g�|��%\u0013JJQz�\u0003ٹ��C_\u0005\u0001�\u001f\u001b\u0019�nO\f�誯��>=p(\u001d��僸�T�ᛍ��4,[��@���@�\u0014��A�� 9�R��\u0007��fO���\r0�p���\u0017�x��|ΰ'd�4��aM`�0�\nv�\u0005�/q����l�t�a݇�e�\f!xMޠD�\u001e��[�A7�\fX��M/��q�O��J�\u001ds%0�\u0001�D��s\u0019��\u001d�'s��y�`l��D\u0007�1���S���\t���=�\n\"N����%\u0006�z�\u0001�\u001d D\u0011�)@s2���(���#�\nP\u0016��/�Y�+Վ��6���1\ftAN���M��}c��p\u0012�y��\u0000��gQn]�i�Vp\u001c��\r��\u001f@�-+���s�&��Hn�\b;8u1\u0005&/\r�K;H~#S�4\u0002�\u000b��č�\u0002��Ca�v�h̀hh:\u001c����?�O��-״�\u0007��9�@w��\u000ee�\u0013I��:�ߐ�)�\u001d~R���R(��\u000f\u0003پ]\u001e\u0004\u0000�\u001a\u001f�smh�\u001f\u001a\u0000b�!����ǥ\b\u0017\u001d��z�ӻ��;��LNo��(�:�-i���_�\u0016A�{C\u0012��M�\u0011\u0006FE�ࡺ\u000bLj�\u001e\u001e����ǬYZ�?�Yy��S��.���!n�\u00130��j\u0005��w�GEV\"�� :�\u0003\u0000\u0002���=L\u00128Y��[�Ƴ!��\u0012\u001af�P�K4U�\n5%��\u001e��{B�B\u0001�\f���|�63;�j����W3o�&mE�z�{�_Qၒ�����:+<����σJ�2ho\u001e���$t\u0005�\u0019S�pU�:z����Ns�\u0003��G\u0004\u0004�ג��L\"���X\u0002ƚ+�\th�-{��3�D���$��ᐈh�@�8�\u001d���d�k��1\u0013����\"\\����\u0003\t\u0011򞀍���P>�1l��\u0004jb\u0003��{��Z�\u0011��5 F\u0017A��:����r&�k�\u0018�\u001c��@�%\"N3��_MO��)\n\u0010�)�p+\u0019�A[ ɤ9��\u0006z0<\u0007�2�&>\u0011�e�5��`\u001d\\:򨘘}H#�{\u0002%��^��oߣ�QBAV>\u001ae�p�M��SSt�\f�5Đ�0�5ۣ΢,�+B�E�E�\u0016\u001a�v��G��\u0011�W��~�=��7� \u0002�n7�b�A�ZM�G�\u0011��Y\u001eo�p3�W��\\ۈ�L]���H?\u0003'�\u001cn��\u001a�N�u)\u000bB�\u0012�n��0y�?�D_J�L��I\u001c�-�f��c�m�0\u001d9�\u0010�\u0017�\u001f�e��\u001e��\u0018��\t�03���\u0004-�|\u0000�;ڇ�m�zk�\u001d\fPB��\u001c\u0011'�\u0015rn~2\u0011�$\n��_�%���̓��m��`C��|ēt�`�\n��V\f�\u000fϣA\"�\f���M2����� �E�/M���̘�@J�u:�e��;\u0001HK\u0004c%�4x.N�ę�\u0010rH���%Ѵ8�\u0019t�X�� �k/'@`L\u001fo{\u001b�'U�\u001c�\nw�J�\u0002ޫ��P��.�I�\u001f\u0015\u0018�t$�:@�\u001f�V\u0011_�/~�[\\9G�5�R���BB�#�+\\8 \u001a���\n�O� �S��fb��|i������\u001c���@5��g.4��\bv�.�E�m�9[�t�zR%�� ��=\u001c6�yu�*����'�\u000bw�7��?/bz\"`\u0010\u0016DC\r���wɷ�ٓ��k�-���z��ٟ0K�n�ʱ\"I,�^a7\"l�=�l�\u0012�\u0012����\u001358iգA\u001d�\f���L�K�:��r���T}t�1O��}�r�{�\r�ZI��\u0011��{\u00070��\u001a�r�%��i>ͽG�\t��JS�\u0002~\u0001i��\u000b���t?�\u0004�2��Pr��\b���)?���q{uY;����.d�ڝ>�r��\u001ba\"d\u0006��M�6e�\u0004I�{q�b��qO�R)\t\u001br�\u0005l�A=�Q�죱(+A���QXL��OJ�Ï�N�]5\u001c��&�Q�sE\u001c,��U�\tY ��\u0011��*9^�\u0005z�:��҃�v�poW��H!�-G%���/x�uY\u0013��T7�(�\u0003�\u000fv\u0017ײ��\f9��\u0017\u0011V\u0001Yz�1䶉�]S�B��PT_U#ϝ��A'�\f���ۺ\u001d�)��\u0002h���N\u0002U�'س\u0019u�\u0012��B,�c�`3g{�\u000b��\u000b~w����\u0017_(\u0000�\u0000U8Kޜ�Z>j���\u0019�\u0011\u0006�\u0005U����̱����H��?ʜ6��\u0006[�1\u0016\u0000+�)\u0017��VS7�\u0014�Heg���۠\u0014���\"EO�rWAWN \u0014\u001cTu\u0012c*(=+|�B\u0002|f\nUw/�۝��&���b\u001a�PZ�-��\f�Y\u001dN:�.w��\u0012�I�r��R@3?�CN��#q�vH�\u0014[�o��J�.�w�+�2\u0018��.|픻{�0%\u000f\u0000�J��z��#�Mo��$\u001f\u0019-a�ȎtVl-�\u0013�ݚ��\u0014��unT6\u0013���ͥ]\u0001��u!�\u0013��t�AA�\fЀ�ۺP�\u0001`�]��\u001eG�<�\u0015y\rP����$̻\u001a9��\u001b��\"����u�\u0002؂K�k�\u0015$?����Sy�P\u0012IηQ��<�G\u0013?�l�K�@\u001c4[;�Tq��Z\u001cZ\u000f/S9�t4��<�:7KG3P�''��q\"�u���-��f\u0005!�T��9\u0001(\u0015��\u0017\u0006@2ZK\u0001\u0016w~Xq�px\u001e6�!H@\u0004��R���(諦g�&g�k�\u001f|E�ّ\u0005����`��~�β\u001a\u001b�#�۸\u0000%��sh�\u001b;�x�B�*��1W2*�GT�ڏ�\"��A=�\f����1\u00021�l\u0011�S�A� ��\u0019��1?T\u000fI\f�_A)\u001eRGL\u0015���+w28%��x\u000bΞ����sKM�i���&\u000f�Ot�`��p����߉�\u001c�|�\u0010\n�4P���i���Q�%8�.�U�RM6e�O��J�\rBs��II%�1��*4�S�\u001bӸ���\n��\u0012���f�\u0016���Mu�����\u0015\u0018�\u0016�\u0000Q��_ ˿XS\t\t�+S\u0005\u0019\u000b$Œ1\u0002��T\u0007�#e7;�oC��H�}[���\u0006d̽q2Q@�{�`;\u000ez��\u0010)I1��8D�\"6�,��J�ob\u0002��Ъ\u0013ms!aћs�\f\u001b�w�C���\u0011�q�Bk\u001aK�\u0001�d,\u000e�d7�|���\u000f<^H�3�\u0005�2�J��AH�\r\f��LΟg�\u0017\u0013e�n��XМc5��Ua+�\t��\u0019���v+�Xm����\u0011�7∓�O���z�w�\u001a^��.BA�09�pa�t{� Q��▀�\t�T*�@�r-��~���\u001f[��hJ\u0014w��V-��P��\u001b�CލP\u0006�,�\r�(\u0016�\bZ{P����\u00176���3�\rI��oaXx���\u0002m\u0004|\u001fh.T�7ݺ�VW\n�g-}wl�'G�\u0006��\u000e5�l\u000fҡ�G��\"��ǁM�UG֤�\u000fj�e�S\u0012\b\f,��5�α'�d��\u0006#��\u0012��Ak�>l_C���6�\u0007�\u001f�C����8��hj��7mz{t�\f��\u001a�6�����j��f��:Y�V\u0006p�Nl��\u0019+�4~n7��\u0013U��\tG���g�\r ���0\"\u000f�\u0005'�)�d��-�g\u0019�\f���\u0010/K������<�\u001cs\u0010\u0016���٣<5�\\|<�X��&�B$ϝ�i)\u0000�Ȅj\u001d\bG|p�\u0016߰�#��7/��t\\�š�*��\u0012]\u0002H�s/?���p�F�c�����d\u0014,�\u000e��E��U��C\u0018C‡��L��w�vJ�B���c�`l�n�\b�ل��l$\f�U����\u0001)*o�!���!�Qj�L�g�h�8\fjF.0~s�=)٠��9�ѵ(ˇA����vWM!JJ�Q��C�Khcn�\u001799����@q��E��F�\u0012�<\b�\"\u0018�\u000e�S?S��x\"`�\u0014����\t�lb\u001b�ӵ���C\u000e^b�\u001e�@��V�����jW�D��ܵ�b@�*��A@�\r4���1�\u0005=M\u001b��0\u0015^Ըz�$�bʼ��\u0014�6��I�\u001d�v֫���?���L�=���~9���N>§�u�Y�\u001d\u001c�\b4�\u000b�[\u0017c�{q\u000e��[/?�R��5aU+R�tz��q��K�T�뒂\"e>��?a�\u001bd�|?*0L�#\fږp�g|�H�ֱ\u0010���I$E��\u001e�z/�\u0007\u0012��b0�\u0015��D#i?\u001a�g\b9�'P�:$}#L�[&�\u001a\u0013t�)ʯHX��Z$��!E&��*�\u000f=RN�\u0016�^�tfT�\u00156\u0000<4�\"�e���>b�t�Ж\u0003��\r���\u0004��)�\u000f(f��av��Ź��ŗJHv\u0004|��-X�\u0018�%ٿ�}�W)x#`}\u0003�[�M{��\u000e�w��\u0005�$��窸�AE�\rH���0\f\u0011�y!}Y��$\u0013U��\u000b\u001c��*�I3��\u0013�sQJ���J5�\u001a�����\u0005{��A\"�]i�>\u001fn=�e�[aD�\u0006\u000fK�Y�p\u000eۃ��ra8�\u001a�\u001c�\u0005�54��\u001fE��\u0011�*�$\u0018֯x��{\u001avӂ\bS\u0013Q��\r�����\u0011ӽ����\u0017`i�/�\t\u001ax�m^�i�\t#��\u0013uG}}�B�H�F%��8�>jܯ�*�\u0005|�z�x;��Wp��v&�CVy��si�J2��O�q���4B�A��\u000e�����m�\u000fj�Man��\u00158���:\u0002�F���3fSV;\b��*=g���t.̻������C��\u001a\u000bc�hy�Z���{-%�5q��au�t�[��4��\u0014B�k�t���|��~���{H\u0010J��A;�\r\\��.�\r\u0016d�\u0000�C�Ĺp\u0003���ZJ:\u0007�u�,l�\u0000\u0016=c�1AT��[����\u0017s����“n����Ҹ��dtk_Z�8kߊؽS;�\u0001�\t�\u0014Bsn���*2\u001f��v2e\u0006r����\u0003)�o�G���i��\u001a\n�\\�\bnn\u0010��\u0010+5q;\u0016_�'���Cah��)���h�胤�\u0016��ђ\u0012\u0002�\u0001�%*�8�\fʒ�\u0011f\u001a�nd�п{Ξ�\u001czd���p���\u0016����!��\u001e�&\u0000��\t\u000b���Sw~��*���f�R�\u000eA$ג�ݟK]\u0002Ƕ�F\u0004��\b-Xz&�\u0004�\u0013�n��\fh��op�td$&$���EAC��� |!���2��P�W�/.�$�`\u0003�\u0002�j��\u0002��r\u001f�n�\u001f5a\u001bQ,i��v�K�wb\u001c��\u0007��(\u0019��J�{8�\u000f��%]:(�\u0013\u0013\u0014\u001bۦ����7�8�#�\nc1�\u0012d&ߏ��|\\�\"�KG#�����H�E넗\u001b�m�\u000eD�T&zlS\\\u0006�o\u001c�X�\\jE�܀�w�\u000e [�P��\u0011{SP��~��\u000f\u001fs๮�1�z��G�}��\u0000�\bH�?�ı\r�ֹU\rN�\u0014=ʅ~㽓�����P,\r\"h�+�K�H\u001f�\\Xc���T\u0016�a�\nb�2l�tٺ�L�\u0000׺�kMx��]:{��s1��_�rƶW��\u0019Li�([�\u001b�\u0002r\u0010PW}\u001c��E#7�ڇ�Qk.\u0013���k)v\u0004I�}�X��-���*8n�u��\u0019VȺ\n�����D�\u0007t�%0�u�uܓ��s��:�~���S\u0016\u001e�\u0012W��A\u0001�\r�����ܺ9\u0010P\t�7'�F��+\u0010�(_�,+�H����j\u0017\n�\b{\u000e�\u0013\fΠ�#��g�F@s���\u0014\u001d�\u0010�i\u001b\u0017�&R�\u0011�g1�E;}\u0016��K\nm��L�+1�\u00032\u001b�4��(�?�����O�t:򠊡!M��)b��f�r\u000bոs��u��+?��=2&�*�}b_��9f\t�cf\u000bA�3��s>��Еa�\b�q\u0015̸9����\u001f;[A�t�b@0�|\u0012���ꉜꗗB{\"\u001d��$q��\u0018��B��A\u0016�\r����m\u0002�^�ٗ�\u0007�pB\u0002�_I�\u0011�\u0013z��\u0017\u0003}\r��t�ё����\u0006TJ��}�ʒ��$�\u001b�l��\u0011A��\u0005�G�5��ovD4E�q�\u001f꣓�mC$\u001c\rK$�2d�k*��-�v��N��\u0019zY\u0010��(<^���~kD©g����J�!�M��}=D�W|\f�N�Se���<5)�o\u0001���\u001d�'��\rĸ�>���� \u0004\"'U.\\�T��a?Pw�/�T-g��8�5S1�-I�:�z�\u000fd��Fn\u0005`0)�\u0018�ߠTۄ����=jY��'�a��N&���G\u000f(f���E\u0017��\u001dPh$�߬z~\u000b��eQ�K\\�nW�%��.<\u000eH���0���vVz��}�4شx]\u0016\u001a�7ޒ���v���zW�\u0014FTo�\u0001�\u0003<#@���&du��\u0014r\th�J�������\u0003��I��v�A(�\rԀ�M&����$�\u000e:��\u0000�r����g�8z4/wL1��^�c/q~we�xF1�M�G=�\u000e�\u0012A\t��R�m\u0017.���Y}<�\u001b�E\u001d\n9\nbA��]\f��\fd\u0005?{R\n8\u0003�NB\b��\u000f{�[^�W�~�5H\u0019��[OF�ı�I��{h2����A������X�����Sk�x�PD�Bk�w*G�N��-�2�2��T��\u001d\u0007\u001f9 �!\u0007rZ��D\u001a��jƴ��P֓�Q8�\u0003�r]\u0001�!.3�k/�.t00!�����E���bi��\u0006�5\u001e�v}\u0013\n�\b14��\u0005F���v�-H���`t\u0013L\u0010\u0006��\u0019�߂�\u0015�\u000f����#��E��L]J��'����<\u0014��Z@��nD=�&<�dG�\f����i)\u0000w�\f���[G\u0019\u0001)�b`\u0006�(%���E�ZbT!��\u0007 [{�' |H.\u001a��\u0019���Zr��\u0003��`\u0018�c�\u001cL�\u001d�\be\u0019e�S�'x�Z��\u0011�HfU��\f�x<��\u0004�1����̐�J\u0019\rC`ެ��\b&\u0015�\u0013��S��\u0002d`\n��(T���S\"H̑��v�\u0018\")�y�BB�4]\u0010�S����wJ��M�2.�Ƥ\u0005ΣAс\r����m\u0012\u0015t\f�Er_�z��u���r�|\u0003�9���)v7�\u000f�)\u001f[CBXԛ�\u000b�\u0005\u001c��ZcWk�r\"e��%\r�Q]l�L��ڱR1:�:�2[� \u001c�0�Vż����m�-V��\u0000Y��\u001a3EA=�^\u0017�3B�'A�й\u0003�5�o�\u0015���\u0007D\u001e���\r��fW�׆�96eJ��o#�\r4���\"h�Ȓ�DQ[ZƩ�\u0017,����\f��/�r�@�n\u000b�e!\u001c?���\u0002�ՙ�?�=�T\u000b�\f��\u000b\u0017vnl\t\u0004�C�*\u001b���к��\u0016\u0014\u0001��\u0006��lGij4zd���o\u0011�\u0002Z%��w���G8��\u001f�N�3y��'I\u0000\u000f%\u001b\u001c�\u000ecP;\u0012\t����6�<8�$�k�f|}tk�,�3�e�S\t���E]\\�Vi��B�\u0005\tWA�7/�?0%\u000f�ʭ���\u000b0Ԫ�%u.�v�80k�ǽ\t�\u0000\u0000T�?<\u001d�\u001e\u0005�(��(;�v>؎����A��!��\u0007��\u0011���š/�('\nJ>4b܂f�`\u001eVBj�0\u0011���Ve��V�}\u0019C�n&��\u000e}�v�R�Aԁ\u000e\u0010���\u00106\u000e%�\u001c\tK&\u001f5\u0003߀y֣������)��}�:E6�\u000f��z\u0003��~�����\u0001�=ς��qS�@\tX�=��8�C<\u0017+�\u0012}A\u0015�{54>HJ��\u0019(�)\u0019^iP\u0004�\u0016����w�;OU���US\"\t,����$\u0004�@��h>���M`Ω��I\u0019���zT������M��\r[q�`6Ò;��(�\u0010��xln�\u00155\u000e�X�v飗R�;N\u000b\u0000�\f��^w��lq�>N��V�Y�5�=��6s%,��\u000eybM�����x�nk�\u001d!�\u0003�q�Z<�\u0015��\u000e$6d\f�+P��[p6u:�\u0003�\u0017�E�(`��ٱ=��AX�\u000e8���\u001f\\S\u0000+��v=٢0�\u0018\u000eT���+fW˴]rH�\u0015�4�0��\u0004\u0005��hTϙn=�\u0001̩+��՚�\u0018{̫\u0003�������G��\u0002�7k\u0013?\u001e\u0011�I\u001f��w�a��\u000f�k\b\u0013�\u0019�;*O�>z�X‚B��\u00041NP\u0018��j�ؑQ>s�y�\u0001�.�p�\\?��u4ac�J�\u0006l\\?\u0016�{`����\u0007����骎]o�\u0012Z�@�*���_�\u001e@��]�����#\u0017}�ȱ��R��E՛P]��K��D\u001fH�P{J��l���a���zKS\u0007���K��\t@�a\u001b\u0005�\u0013���cm��mX��ٍ�c��f���il\u0011��K��-�w=��|flF�[_��\u0012X2\n�u�����]��I�&&rD\u00076X\u001b\u0010Fo*�\u001c#�\u001ad\\\u000b��dz���7ϣA_�\u000eL��L�jb\u0004����P��*\u0013J\u001d(\u0003\u001b�\u0011{j\u0001!'e\u0011����n�9@�\\�,/l�=��AX\u001b..\u0005{X\u0005\f�m\u00105�!��s\n���@$O��M�\u001d=y\u0018x��^ި~\u0001��\u0000����\u001fZ��V�R\u0005���0�R�­s�^�s��(�C����o�\u0014Un6B��h�U\u0011M�\u001av���\f\u0005GvO�\u0018�\u000e\u001c���v=��(R�h7vw���M#�2\u0004+��cd\u000e\u0017��a�~�\u0014GzA��\r�\u0002Jx�\b����SL�����\u0004�k��kW�֍\u0004�\"<&��\u00113�\u0006=\u0016ܻd��㸵ٟ�Q��N�;�?�E�^��������\u0017��\u0012L��g5�~c�\u0002\u0000���/RJ\"\u0016�\u0002v8t+�9#��\\2H��\u0013�w����̞�u>�\u000bãy�PYe��]�����AQ�\u000e`��JS@x\u0007��DM��j��KaUZ[/�\u0014�x�{oa6�\u0007\u0011�~\u0017�1��^�w3\u000eԚ��'\u0000լ�\u0014�į;f�ѧ�$�h��f���_Xj\u0000��3�w�>��zELG�p\u0014�B��[�̋�N�'Zu���[\\����OV��\u0004+|E�L�xz��\u0019kE���\u0017�0S1Q�c��\u000f\b�\u001a�����f\u0011�\u0015�.b�ak�S\u001f����ޝ)�Z���\u0004.[�����\"�\u00116��mv-��_u�\u000f�[x��GzK�y���X�\b�<��\bI@�N\u0013\u0014�\u0005\u0003ۨ��A�\u0004T:�\u0002��T�#G�Q,ѳ&��\u0012~��\u0017��\u0017]\u0005\n�\rb�\t��,�'��\u0005M��D�!�ָ?�`�>j��r�\u0012@��O�^���/Ƀ��m�ջ��\u001d�G]�Qb��y�\u0010��5����\u0011\u0014<<\f\t���35�\u0010���F���\u0017���]�hN���c[hK��])\u001d��9�]�\u001f��p�>?dx�UXYa&U��a�����v\u000b�V��\u000b���\"�g\n;h\"S��\u000f�y̹���R�\u0014\u0017�p1���]��/�tΎ��w���XzӶ8�W=Ji�\u0001�.�菕�#:��\u0019Ό��_�|�F-\u0001��H�LQ�kM�@-�\fL<��脫\b=����2Q\u0018W�+�LKw�{V�L\u0018��\u0013ʶ��N\u00005 \u000eu�yż�k�I��\u0013�D\u001bZ������z9�pJ@%��gve�;B��#h��9���||��p*�\u001dS����>(�\u000fTw/#`���0�iU?���\u0012\u0016�\u0006��\u0014�.oQN0��z�=�m0�7w\u001a�>�\n\u001f���)�n%�$�\u0011\u0010������=���^��þ!W��k���'��T:�\u001eP��>\u0006n\u000fz\u0011�VN�di��\u000bRyׯ�.Rm�Y�P`\u0010q�A^�\u000e����b\u001c�bu�T\u0012����\u0011����\u0000'�Z\u0000$D�7_����tGAeX��Z���^3\u001af��Qϝۛ\u0000\u0013\u000e\f�!|0��c�<\u001dزf��-.t�\u0019졄6Y'\n�Q\u0000\u0011d�֤]��\u0011�N���-�S\t\u001f\u0012\u0016�&��?\u0014)�����k��\u0004��~��\b6L�a!���.�� [\u001e�MۻG\bԵ�\u0013�E�<�}�=E��U��?�]\u0018���&�a\u0005��κx�;��c\u0002lm�w�mX��_@�~�\u00134�]_��\u0002u@���\u0002�B�W\t8\u001f�\u0007��6���\u001c8o\u0013sHU��\u001d��W;)H��Xr\u001d]KF�&�fW�dBG�8\u0006�/B_C�\u0001dM\u001bq�\u0015�טF\u0012u4�\u001f����F�K\u001bR�ܳ�#6̼�B�\u0019�\u0005�\u001fM��\u001c\u000e\u0016��(�������\u0014?\n'�Af�\u000eĀ��&�\"+\u0012���7V� Y$��>\u0012��-9�9S���G1~���\f9����f�΄�.�bg\\s�O�\u0017&;�$�\u000f�B�\u0006�v\u0000S\u0010\u000b�[+2�??�P�>���\u0015�qp�\r\u0018�E&ث���8��\u0015\u001b\u0001m7���F�J��[�����B��T�\u0015\u0014�\rK\u0015?�ųv_�(�\"�G~����@����݉��u�{.�F e-'��m\fgu\u000b���>نn��\\�LW(�X�\u0015�.W��\u0018�\u0015Y����옶��\u00134�}F��w؈��ߚՂ�\u0013��A�z\"�\u0019���Cr���;�n�SX[�\u0002��@HK6-\u0015�\u0016�\u001e���2��\u0010\r�\u0002��_1���o�,�&\u0000:(�Y#?\\L�y�!F\u0006����\u0002\b(\u0002\\\u0000�T��<��%H�.��\u0004F#�Y�\u0010m褣A0�\u000e؀��&z���i\u001b����\u001aƠ@X��Y!�_eZ\u001c2�jt�X%JI7��'���\u001e=\u0010?ȣPi)�z��m�nx!l���ҋ*-F�9���\u0011�c�S;\u001f�}_bA9)(>\"[YD{�β��\u000bTo�eoN~ \r��\u0018J2KMy`�x q->8��p����=��p)�/��N��;U���Ⱦ���]�\u001ep�AW��\u001b�$;EDa�FP�MFIzUS;H��3b4���uh\u0014\u0007Q�!1�<���G\u0005���P(ƂKV�-e�3�\f�y�;Up�\u0010��C��q����'j���E�\u0006��D�?\u000f�hi�*\n`e#n���ƺ<\n��Bּ,�����ۼ�}b�\u0010 ش��Ȥ�A:�\u000e���!yw7ś6�R�J5U�K+1��b�D[#0\u001f}F>P�O��\u0002r\u0002�\u001b�j\u00175\u0007O��\u0006��P���ޖ��2-�nv\u001e\u001a\u00107��}^���\u0003���i`Uv���_0�xdlϳH�H)7���d\\�K\u0001ڮ�:t��Č0ъs\u00138�C�R\u0012�����fu\u000e1Ex���1\fH���\u001ec��ޗƧ\u0004�YD\u00182�4��.�Qϐ0'�2�\u0002��4�p�ѷ�t\u001c��d�qQ^��d�y|}���\\�;M��[��Oj�\u001a��\u0018S��\u0014�Z��A�b\b�Iz�U#��\u0005yw\u0013xQ��\u000f+\u0016͙B@}\u001fw撷�\u0017\u001c�u\nH\rp~��ˈ�9\r�\"����6���)�jZl�#n��\u0014�d��P5�~&�A?�\u000f\u0000���`�?�8�ʷ�]����\u0017R�v�*=\u0019��g�\u001d]AK�M���!̰�\u0005�74�g}\f�E\u001a��R�rVa�brA����p[�oYD�>v\u0015�=R\u001f\t=v|닼�\u0018Ն��Z��=��_km\u001bk�&x��F�他n;�@2��\u001e���s�30�\u0001�yK��hf��w��\u000f��\u0006�\fru�n�Kh�=x�\n\b�r�\u0006��X���u\u001e<\u00028�\u000er�\u001aΣj.;,��je�|6�E�\t�O�G��#|\u0003�\u0010��p�XI\u001e\u0004�1�0�\u0018h{�oS�C\u001c�*\u0002.A0}a\fv:��-`�x��taDOw�\u000b\n\u0014���jߊ��1�V{� \f4�a\u000f5�.r�7��5\u001e��\u000e�\n�������Y��1�b��%�AS�\u000f\u0014���!Myy3\u000e\u0016�\u0006ƻ���]\fXW(��pb^����yvV\u0011�\u000f>���zN��\u0006�rL\ng\n��N2&�X\u0000�P���fS\"n�1\u0018�!\u0014�|�Ն^-!�\tȭ��ZQ����vG�Ib�K��GUP��;�\"\u0017�\u001a^��[�gS�:�\b��b�\u001a�nH��c�\u001ao�\u0018\u001d�\u0019-\u0003\u0016\\*\u0015!G\u0015\u0010�����\rW���d\u0010�Z�5k���~p����\u0004�>�o�ޠ1F�r�ئT���צ�\u0019Kv=�7ʴ�+%i,T:\u001b��j�i��\u000e\u0003<���`J4�C��\u0012\u001eR\tv\u000bԧ�;���8�>���)�/�~Gj۰\u0019�r*����\u000e\u0000\u0002߂�\u001f\u0012,\u0010a\u0013=�ۙ���&փ��BГ\b��QXs�x`\u0003-\u0007\t\u001fÙ��\u001d���N1e˚%�A^�\u000f(���(��\u0004�����\u0017��F�xX\n�S�&?\u0005��s\u001e��&*�t\u000fE�2�bV�\u00122��\u0001��1Y\u0017ЇE��zY�v��CQb~��R\u001e�~\u0012�F���\u001b�˲\u001fgM���\u0017$��_Ʉ7�s�/\u0016��g��)�\u0000��p\u000f8���\u0005\t�hM�/�Y�\u0013���\t���\u000f�\u0017����m��M�M+�\u0002O�=��z���$�ggmI4����\u0004:�|\u0007��̽e���\u0014��Q����!@�m5�O'�c�\"\r���qR��\u0012H,�#�\u0010���\t���\u001dຶ�\u001ac�@\u0001\u001d:�]��ZO���s�^�m\u001b�$�I�\u0019�\u001eݜ�i�d,'�\u0004�k�\u0014�gYe�A\b_k�?�s�z��J\b��=���^�̍�-�޲\u0003�x�i��&����K> \u0012/��[��4*�L�$�Am�\u000f<���&$jd\u0002o\u0010�B��~�\\P�|>2:W\u0012���{\"�\u0017\u0018]�U\u0017\u00068�\u0006��?��\u000ek#\u0011\u001d8c�cy7k���2���;j��J��\blσرM�?\b\u001f�\f�͓���\u0018{�\b��\u000b��t=��AX�f\\͜\u001f\u000fwk�T��\u0005@\u0004�|\u0003E��*��\u0013xa�\u001b�x�v;#��\u0001\u0000=ؔ�K�Ɓ�R�Q!oL�\u0015n�K�\u001c�1��\u0017�\u0010��'�Si�h���O�O�\u0015\b-T�,���Ւ��vM�#���e���ei��x|�8iҳM�\u0014x�+�t[84�\r���i�\n\\��\\�̗4ě�����D�\u001c��c�AO)�8n�K}�~�!O��g2�D�\u001c\u0007�׍�?+�]�LG�5\u0018�ϼªF\u000e�����\u0017����=`�1��0�酦��9��\u001e>陓�ic��L4V�R�$�Au�\u000fP���\u001fG3��T�x��;a�!jLe\u000fVQ\u0012�=$�̿6M��uWOT¡P��\u0010�d�;�\u0018��3\bܒÍ�@@\u0006�\u001b4�b�u\u0012G\u000b#����\\'�;\\���*��h\u0014��\u000eРd\u0015X�ƀO������\u000e�\u0017����t��S��[�0{o�O:�w�3T\r�\u0002�,\u000b�d�\u000b�(�\u0012I�\u0007�&Q��i\tr��H-(�\u0000��]�美��X���Q-�nX�o�FR�>x8�\u001b7O�\u0002�B\u000f\t��2'���k�^P�-HW�p�\rU�ɘ\u0015H�����ƞ/���\u0005��\u0007�B��\u000fzLp~�\rnn�D\u0019�݋�*��\\M��\u000b�S�j\f\u0016Ω���ƙ�>�-�η\\W��\u0012*��\u0010�����3��:�\u0003������G.=�|?�<�\u0014S\u001dj�gJyk����A��%N�O��\u001a�]���R�^$�Am�\u000fd���3�m*G�{�\u0019\u0010:��JI��6\u001e���M'�X���.�+�t}�Ou����,�����C���r\u0019�I3\u0001`�\u0002��܇N^I��\"\u0017���\r\neo�\\��k�\u0002����cA��j��ʎ�!�� ��\u0013g9J�\u000f7�\u0013���.��\u0001M��\u000b\n�g\u0013�r�.z��X����?-2>\u001c6�Z�\u0001�~\u0018��1r\u0001����K����\u001f�u���\rL9���\u001c�>���n���˜MI�3&��\u0019}�i|�):��X�+�\\.$�bA���ݱ|$���i�;l�G�`\u001c,�ɏ_FG��[�1\u0002��|�)k�L�\u0012�\u0001E��\u0012̸���Eus�e\\\"\u0007v��F�]��-.x�\u000b\b\u0016.^�J{Ǒ(��G�,;�����쐶;��=>j\u0003EY�����pa\u001d7��0Z���Q���S\u000e8�%�A��\u000fx���qM�H��\u000b\u0017�D���z(��c߃ר�X�\u0005z\u0000�\rp(*ptd!j��ۇ\u0014D�5�k�t���le���!��FT\u001e0S��.��w\u0016c��\u000b�]\"g����cd\u001b\r���1p�O�wL�ㇷ8�k%�h��mH0o0�ˉ6P�wQ�9��vSK�\u000b#��8��\u000f�`�r�]�u�S�_� ���\u0016<,��hv%�(C���t\u0018}�l\u000ff�'t�8\u0010�á\"w�'�����\u0012�\u0007�=�SYp��BVVqMf�<�M~\u0001�yL�y�d��+�����V�N�\u0003�����\nޤ\u0007��x\\���a,#<\u0010�q\r\u0013n\u0004E,m�!�#�+i�\u0005�!��f\u0013%��J�\u001aT�\u0004J�������\"�\f9��!�\b�tS�l�\u000b����m9w\u0002ѯ/Mf<�n��A8�\u000f�������i���ܱH=�\u001a��՛##vJ�=�Ƅkt�\u0016(€��v�6�\r\f\u0014\u000b\u001a1�\u001d��>Vo��\u0011��\u0018\u001f�|�A~>���ӟ9\u0016˦�I$��_U\u0012����\u001bad\u00160\\�,P��\u0019\u0019�GAj5a��)̘��\u0000�UD �ʁ�K�\u0013\u001b*i��5d\u0017��X����~�ex�˷V�.����08������\u000b��@�c��]�\b�\u001dxZ�1͞�\u0016�3�]������TO��E�kG��\u001cg)t5\\�>�o��}�4�\u0002Ԍ}<�{ ��#�;���w�\u001b\u0015D��5�T�?\u0015����������q����\u0007�c�wh\r\u000f�\u0016�1Paig\u0013�\u0010\u0000\u0004.\u0001\u0004)5#5\u0001�l�7�AA�\u000f܀�L��Am�;�4F�\u0015sĉZ�~\u000f���m^�9�ѱ��\u0013�\u001b�\u001eQ����g\u001et�fjn��7�L\u001b?Wlq]Z^:쬐�k\n\u0012�W�v�`\u0005�r�\u0019�l�B�G��%�OG��&O�\u0006��܆��\\��j�\\o_\u001a����L>K��ݺ\u000f��W�\"����m+�~f\u0014i\u001f��B�;�����c�5X�K�=o�⌓�А\u0002�\u0018p�\u0013k`\u0011�7o�8I*�˭_�<6�)|����G�Z��3i\u000eQ�M���e�Z6&���\u0012��m,��#�4�\u0017\u001d5B=����AK�\u000f����b l�#�(�6a�\u001b�A�G��@�uk#���g�J���I=It%4˚]/1\u001b���\r)�~%3D�츺N[�u^\u001a�1��qjh�l����\u000e��U�������ڕ�<�\\t��?�<�Rs��ޮI��]\u001e�����Q\u0012��g��C\u0000�x�sB�>D��W�\u0015\u000e�\u0001��\u001d��\u0005��ƫ�z^3�I�\u001cu�-C|GJ\u001a���S�>��R��?��Ƥu�.\u0004�@ #�蝵\u0002�H�)f\u0016w\u0018��eٻ��8}]��M�\u0017��m��/�#\u0014M��I;R\u0005I��e<\u0005�t����3)\u000bՉ�P�i\u0015t�X���+�d@�m��]h�)���\nf��v���&�b�\u0000���X\n��\u001a\u001cC��JM���؅�\u0003��x�%�AT�\u0010\u0004���cn�g�[as\u0012�/Bz��Ӷ\u001a��%���\u001b\u0011�\u00158F^\r���E�i$\u0004�.�-��r��D*D�HOrG�\u0018���=�ZRs��^m}��.^�:\u0015躁\u0007e\u0019�*�X�sP�d���^\u001c�_�]0\u0019q�o��\u0005R���u\f�P�����\u0010ோ�F\u0018�t�&%�+3K��\u0005�:�j���P���}p3H�%��[�J��pӼ�]�<(ʫJ�7��2�\r�q��\u001d\u0019*t���*j�\u0000\u0006�<*5{\u0019\u0007�\u001c�A��\u000f\u0015:sὒyc�~�� Iܮ\u000b�ɪ\u0003\t@�p'\u001c�d�7�tIu�6[\u0003� (V:����\u001a�FE��ODjo8���}�\u0019j���3�OJ�8��>�drm,f�~�~�5�c�f�j�݀��\u0000AV������Ԛ$�AL�\u0010\u0018���j�H^^���\u0010�A��\u001bcd\u0003��Ӎ`Xu�RF,��cxX)s�\r���\u0010�9e:��9̓���,�G\u00158h�\u0019���]`��>\u0012�b�ջ�����\u0016\u0003��XB��AY�\u0000��h\\����,\u0019�\u001f�:\u001bc|�W�m�����\r���L���\u0006�\u001b\u0016\u000fa\u001a\u0001��e�a�Z�:Ѧ8X��o'����h~1�\u0018���\b_�U/\bݢ8ĸ���O���{���1!���Q�k\u0005�ږ\u00029��p�\u0013;/�7M���\r\u0019�n0\bƋ�c\t�K\u000e+���Z�&�@�\u000e�K>q]\u0012&�yk���7p\u0014����\u000b\u0003�|��\u0007 iaF���?Ʒ�å�u�z¡\n.��\u0005Y\u001cd�Ԁ��&�\u0015B�+�OdȬ��)4��\u001f�#�A[�\u0010,���bE�\u0005�y\u001c\u0005��f�4T��;M*$r��\u0018ߵr]z���_HoĶ�\u0006>0\u0007\u0002M�f�{\f����\u0016���:���\u000bb���<���\u0001\u000b�<\u001f� 3�3\u0010~R�a��d�l�A�&yތ\u0014\u0010'ɀe\u0010h��8�_��ڨ�)gI9\u00167�g\u0016\u00009,�ŘU6�$���\u0007k��\u0010��RD�Gۯ�\u0007)w�7����y�h\u000f�=ե�^\r\u001aY‚\b��<[�^��\"R����\u000fV� �\bl\u001c\"�h��A\u000e����\u0004Fod{J����,\u000eI\u000e��xi(\u0003\f����D'-\u00045�>\u0018'�\u0013�:����eX ȒT\u0016\bFH\n\u0012�ew6\u000bd\u000e뫐: h1�'~\u0004�WKu�X������\u0013w*V�!�$��Y\u0001��\n*��WU)S��Ǽ�\u0003��\u0005d�\u001f;J��t��A;�\u0010@��L�\u0005���V�Rr{h\u0000��\u0004\u001d�b��J!v�\u0019�*��\u001aL���\u0003�I�� [ԭ�\u0017����J\u0010il�C/\u0010X��O\u001a9�Ɛ?A�W\u0019�G�J/�\n�@��n��v��P�ӽtmM�ڝ��j$v\u0017�(\u0012��>0�������\u0018��Cn\u000b�\u0017�ה\u000f�t}�V\u0016C\"�J�K\f��\fb���q��\t)��vY[��G��7��6���C�\u0019\u001c@���r��xn��B�b^�<���\u0016�=x���:E �\u001c��R=\u0010=�\u0006`��\rQ!\u0011�4��pt~&�Z�7��\u0000|� \n�ɐ\u001dgjmuE�@v�3��~\u0012���PT�}�UG�`#~HH\u001c���>�.�D�^>N`�r��Y�\b�Ԉ��\u0013\u0014�A=�\u0010T���\r���\u0003�`��IJ�����m�3L�/UD�uU2q��?�\u001eʀCE\tC\nx�J-zI�g���\u000f �Bs0�̾�ޮ�絅��\u0013������K\u0017z���Q��d�*p��`�*�D���iRE��Z���:=��\u001f���k�\u0017��L����P\u001c�y\u0001.�\u0015��6r�ޅ��9�)E-t�}���5�Jq�K���\u00036޸���f|�֥m\u0001��w\u0019ʷnQ/\t��\u0005��*�>9���\u0000\u00006VW�\rr�z0{=\\�\u0016�\u0006�ls`��ɽ�\u0013�\u001a���%��\u0014\f��n\u001c���n3\u0019��\u001bw׳D��'�+V�D�:�\u000f\nK�Ӭ���j�\u000e|?�n,\u001e��N<�\r��oj�\u0019\u000f�-�ϣA5�\u0010h��M|~�R~�$��\u001c��û\u0011�'����%˪�\u0014d�IT\u00197��\u0002+�mW_��V��c�FO�M\u0019�!�����2��D\u0014���G�&��Dsi$����D�,�n\\�qb�|:�V��U2\b_z�.[C\u00131�\t�4P��/#)�\u0002\u0007b�糼�� ��y^��>g\u0016b���7'�@y�i3y���1/�\u0007���\u0012�S�2ΗO��X(�eݭ}��h�X�\u001cV��Ώ:\u0002���WW?�\u0003���n����\u0004�\u0013��ZڼMcBp\u001ft�L\u001a��\u0016\u0015�i\u0000sEGŊ;wS�c\u001e��O�y1�\u0007rg3���zu��X\u0006�$�v�f�P���]�g�$$Ґ����U\u0005�J\u000bx>8\"��ǡ ��Aׁ\u0010|��|�c�J�ϛX@|8D* \u0011���\u001a� D�~_\u000b\u001b�DM���`LL�����u��\u001d/����)\"\bo\u000fԁ\n�V�Z��D�%KW\nıB�sY�5Z��f�\u001d��+%��V�\u001eq ��x�\u0006\u0005I��\b�\u0000i�a\u0017\u0012���E����\u0012b��\u0011$�k`ˆh�Ύ\nxی>h+��ᰞ`\u001c�L0�+yb�K�\u001f\u0000���\u000e6\u0002��s���\u0012���9�o�Nw���\u0018�P!D�V�k����s��H�3���N���K�/=D�рN�˄�9Z���<\"���;+ע� '�\u0017p<�e���I\u000e���c�]z\n)i�mGO\u0019�9�%Ӆ\u001c�\n\u001d�@ȯ�����Q�r\b$�ք8�{\u001f�k�e��Z\u000e��\b��\\V�V�\u0010>rb^��jń��Q<�@z\u0002l�j�/m��S��2d���O�\nTC�u\u0011p]��\u001fk\u0005\u001f�M�E�8��7֫���\u0015E��\u0006Y�$+���r��\\�}�\"j�j��hr��\u0016����X�\r\u0011\u0010�j:�\u000f<�3,Kp�OSU��f�\r��M\u000fh�\u001a�^\u000b��A\u0013�\u0010���.�kN�ɹr{�S<��txJ�ÌN�8\u0002zUҋ8\u001er���WQ�t�/>�\r\u0019\u0001.D�L�/+����m�\u0016~J���\u001a\u0012j��O����\u0006�x\u0011�H�#1�3�\u0016�˸��5\\\u0015��UЕKKF ��&9����ֻ\u0014i&`\u0006\u0013�\\�qI\u001a�\r���{\n*\u0001=���ll6�q��8�)�\u0001\u0007W��u��N%�#W+��C���ni;\u0011Pk)k����t��~ְ�_�||����o~\u000b\u00068h�-�ZR;�D!(!�\u000e�G��-x�}|�D9�)3Ѿ��qP�i�ȭ|��O���f��l��؟�\u0015��\u001d!d�\u0003��A\u001f�\u0010���l��qU�V}\u0013\u0003l5t^�>���a�K��\u001958���g\u0004���<\u000e\u0007���5r\u0002\u001a���7��ysWR�7\f�+E�d�mF���q�+*�A,\u000e�A���Q�3��W,w�Zg�\u0015�G�\u0010��A���P\u0015\u001d��\u0017x\u0014֖��-�c����;�֞.����6\u0005\"��\n��*l������=�\u0015�:0�gU�\u0003\u0011l�hH\u0000��\u0004�/�����j������c@��3��#�_���k/^�c%���Ǘd��r�NI\u0006dӁh�D,���8�\u001bj0��\u0001&'�,kfqYmB���@�\u00058\u001d�8Q\u0012T�\fͭ\u000b\r�ܤՔ��q��o\u0018&�A#�\u0010���L�v%sn�N��Q<�m���w(my\u00054|\u001b�$��d\u001bz�&}�}i�@��؀Ԥc1�4iq�el�n�i��\"Z&*��ln�\u001e\u001f�nZ�I���խ1\u0004!�7�c��gG�DV��ث���n�q�\u001f�,�:��RD�� P�J-�m\u0007j!�\r��I\u0002K�0C�蔽s���d���gt�=T��\"���\u0015\u000f�a�\u0004��\u0011���}J!_\u0012*�}-��a_ܘ�\u0016]m\u0015����xDbTk�曜�(����l\u0017C�u��:�~w(\u0004�����\u001f��\u0000����nȞ�C\u000e@\u0018L\u0011�\u0010C���D�7i�w-��a�c^��\f�$\u001f��A��L\u0015�F�A)�\u0010̀�Lɱ>�h������#C��I�\u0012A��\u0017�p��i4k_\u0007\u0018�\u0016��O�\u0007O\b-ti �\u0017�e\"��\u001a�O�\u001a)�o�x�\fE!\u0007H\u001c[i����\\�\n_c�hn�s\u0015B�\u00104g-LB�\t�\u001c{�=�at���.\u0010F��U{�n�v�vU��\f\u000b��b�\u0010�Ze�>(����o\u0015��\u00139��\r\u0013��N���)LJ\u000fD��\u0011�4\u0004!\u0015��cp6�o\u0004c�G��>?���z�\"ğ\u001a�]���\u0012.��\u0019�D�\n_vH��\u0007�۬؎V.�Pg���י\u001c�3u���R�\"�멋��\"\u0017�T+ki��7\"Y\u0013��|K9zT\"�lF�\u0012��\u001cnԗ�ӝ�&�A'�\u0010����b�\u0006\u00146wf81\"+=\u0001���(c\u0005��?՛��CqѸP��oc�>��\u0004n\u0006�\u0002��E�\u000b(ð�S�e=���]�W�=�&��q�Y��o}��Yj��\u001d\u0007vQ!9\u0003UY�\u001cj%俀@�\nM�(�\u0002�I\u001fC�ݹ$�J��P>V���s��p}\u001d~_Dd��+���\u001ea@\u0017�?�\u001d\"\u0000,�ۘ�|E�\f��T2��4D\u000b��F�\u001bt��\u0000�\u0001\u0015\u001b���ɺ1R٢��k�\t��Z\u0011@�\u000e\u0001g��G�S\u001f@F�!h�\u0005 }\u0015�w@K��X��)�\u001f-���{���\u001e����\u0012� r\t��hH��<���?w�]%m�UN�D\u0002�d%�A;�\u0010��L�\u001e�~b^�n�X��S�VZ�V\u0011� �x8{=�q�xH<5 �#�\u0015�`��J\u0013X%�\fk&`\u0011�q�Z�d��稯忮\u0012*n�K���H��\u0005B\u0001Ċ\u0003�\u0011I\u0015�ff�\u0002�\u0006��s_��z__0,LGp�\u001b#\u0010:�\u0016�hl��G��G��M-n6����X\u0018<�\u001d�b\"b\u001et��a�W����o������hKta�?t��f�s��Aþ!��<��n/@`��TD�\u001cf��]���M�V1��@ƒ���b`>�d�CƮTq?�F\u0006Q��$šo�\u0000n\u001f�¹�*L�Uw����\u0017\u0001>�FO�\u001f)kI�g����\u0018�:\u0016�D�75�L��*_j��j������\t��\u0016����l\u0010�b\u001f���K��RO*W?J�}�P�w\"��(A��ג}�/V8?��H\u001b���\u001a|q�\r�a����%���P\u000e��7��g���Ծ��(gX��^Xद\u0011~����=�����@�\rǼ��_���\u0006�\u0017�\f�\u001c��:\"\u000ec\u0011�W6F�Ž�0��\u0019Cn���\u0012�p`4n�]�ň��l����b\t�\u0012�gE��\u0006p./\u0003t��\u0014s��U�7�_��A>�\u0011\u001c���b\t9���\u0006��|�~\u000b�M���HH[P<��l�\u0004�8oFY�\u0011��;���\u000e�w��YJ6�U�5����\u001b����|�jJq�;�l��̾�}=���`��kB��e^\u001e+yV��\u0003�r�:���]\u0017#\u0013�\u0013rҤ�F�|⪗�.Om^\t�7���\u0001\u0004���\u0004�����g��\u0010:2�\u0017�r\u001c˸{��]蒨\u0000C%�h����\f��a������g�G�4�5�b@�W�`:M\u001c���&�\u0013��2��g�97��EʎW�1�W�oU�M0����5�\u001e3�[=�q��#��D�\u0013�\\cm\u0011�Z�U%|IG;账r���)�Z\u0002�\r\u001a+Ѻ�X\n�%\"\u0003{��2�FB�&�E��&�١�AS�\u00110���b�\u001b�*�����PSD��5�w���?kr��\u0012�\u0014���;���E�]f��b�\u0013\u0010͛v������\u0004u�L�\u0004�xu��K�O{�b\u001dQ��b��J�S��C��!��\u0000�4�\u001a��Q��+�1l��Ҥ�\u0014|��\u001fn���\u001d� �.�u�kV�\u0011\u0015�x1*����`���g�\u0016�\u001d\\G���3���p�\u000b�\u0012(�bN���-3o���L~�D˖ÿ��\u0001���O+\f�V<�\u0005�x�m\u0000�\f���%3�a��)쫓�)[���P��ZIE[�b��|�:���\u0005'n�$z�DWMg�kJ��v�\u0012\u000f%�‹ݐ�Z���\u000b�lNjռ�a�Kq���\u0017駕�\u0003�p~�g��J';����?�\t\u001b�k\u0006Z�ox�d)f~CQ��AG�\u0011D��Mz�w��0�\u0013*����`�b�qB:їnl���[�3�4��7\u0005�������r_\ruj�'s\u001d\u0017�̓�\u001d�\u000e\u0011\u0012��\u0006W�E�W���_�vƌv\u001b��_���x=o�2�T\u0006��T��n��s�*!\u0003�\u0019^\u0017��X)jɵu�P����$�T��)\u0002�\u0011�$X��Zm\u0010x�\u0015\u0001!~Ġ)\u001b���%�s!b\u0002Mwu!�ܕ+=\u000b�ž\u000b\u0000D�=s(�粊��`�\t����K�c�X\u001a&�\u001aW�e|N�=�~[�\u0017�\u0006>���Zbj��\u0003�T���}��\n��:�\u0018��t�We~ٲ3H͖���[�U`c����9M��;�]��:\u0011!��\u0007��,6\u001d�Z\u0015�����hQ�P�\u0003��5<\t��J�\u0017Q�޲�\b�AA�\u0011X��1���:�I�I�~\u0005\u001b��t����R)f�\u0017D=h�\u001co��\u0013\u0007$4\u0005��\f����\u0006���rp\f�\u001e\\��e-��*�X\u0013m2O9\\��3��`���O|\u0013\u000e2�ԼhE�H̨��`��K����J��3\u0000�J<�?b/R6D�jV\\�fA\u0006���>09(%�\fRN7{)\u0012l�(�\u0016j��%�5��7�,���\b_���*���E�d�\u001b�\u000fdM���\u0017g\u0005�2��\u0017�)nZ�Y��c��ݷ)��6�V�1|PQ��w��\u0006�\u000e�2��ȥ;�9�'�X֩Ҧ�\t\u001f1���uS�~Q\f��\u001d�r\u0006¦�\u001aZ�Gfh{R�C�XE��U��T��/�p9X��R\u0007V[�'�X�\u0000�z1�\u001f\u0004�Yt�o�f�%�o\u0012�3�\u0017'��*�m�?��\u001c��6K�s�$1Az,��y���BY�fÐD�S^�A(ϴKDͲ�\u0014�A\u0016�\u0011���]���`���PH�����m\u000f�=t�j)�q��Y\u0006Y���4$�ȿ���/]#}n\u0014�T���/��J�T���Y\u001a�r���d%\\ļ��\u0012�}i*7q�G\u0018��U����,F���\u0015\u0017W:5��2��\u001dGDl��\u0002���\"b�\u0014�M#\u0002��G��f����B�]-����Qz\u0002�ʫV��8v�\u0000�8P����c�\u001f����\u0006\u0011�_\u0006Qb��\u001e�^���\u001bkP�\u0019m�\u000f]]�d��[t\t��\r��\u001d\u001d{~*d��rs�ZSBwq\u000b����+�֟=f���0R\u0004,�����Ը��A\u001e�\u0011���X���\u0016��u:\"�\u0012��K�Δ ���b �rV(zm�l\u0007l��RU;�b|�n1��\u0006\u0019�\b\u0017hL�\u000f�e\u001f�Q�\b��8E�\u0019�`�(;TN͇|r9};ɝ�KF�\\*��\u001bE\u0014[B��QL\"��\r�͚�:�����\u0000�}\u0005�\u000e�<�;#��U\u0014\u0016\u0000\u000b\u0015��\u0015��\u0016)�\u0004u���׻�\t�F�\u000b\u0003��;��\u0006\u001b[�@@s���y�,��+T\u0001u�\f\u0013�p�����\u001a�}�p�N�_�s@�cu�l��$\\-,\u001d\u001c3���q��fx�7\u0013�Ѭ���\u0005\u001e����\u0006�\u0015�\u0001K3�z�sH��lw��ρd\u0017�{���\u001b\u0006B�5�M\u0000�A%�\u0011���L�v\u0001�\u0016��U<�\u0006]�Q�o`�rQ\t�<�\u0005�L��>�7c�ކitH\u001f�/F�&\u0003���KY�`%uO��\u0003Jy��\u0004�mC+l�!\u00056zr��x�#atZ։r�������h�u�A��eF#h-.��Z����\u0013�������\n�.TA\"�����+%B\u0006�#\u000eW|�@�u\u0011.�{����pŖ\r���\u0001,S�L5�@!\b\u001aB�,�I\u000e���\u001c}}S���A�%�HOM��\u0013R5�\u001b%�\u000b�\tG�\b�Ȑ&\b\u0014�;�o_��A�(��n�@.B�\u001e���\u0001\u0018~0\u001c�_�[j�6��z�Q\u0013�[�\u0004D�o���\u001c�w�oJ��]��;����A �\u0011Ѐ�M2�N& �z\u001a�ȸ9�n�'#\u0014\u0011�\r+\u0003l\u0010Qdt��!`�g2L.��DG\u0019��xw�U\u001d�ˮ�\u001a�����\\R:\fi�\u000f~��6RQE�\u001e�k��#�r�w���_aK\f�mD���:�\u001c��`�|����2�\u001e�M;u��#�:�\t�6\u0001���!ٞzEե��u�E{�\f\u001aG\u0013\r���S��tDz\u0002�k[������\u0004�\u0011Z\u001fj�0�~�\u0007�fX=ɖ�eʌ�\"\u0003�\u0002p����K\u001fܓ��j�`\u000f\u0015���K�\u0004%)���`䍹N\u0006\u0019�<�S��Mu�e|1xB�[y�R�.\u000eC�z���\u001f�M.�\u0006ݮ@\u0012���E�ק��-Z��A,�\u0011��L��ZG���u�\t*�\u000b%B����J\u0002�xl\u0016��+�L��#�\u001eIcB��\u001eӄ���\u001a��\u0018M�}Τ�R����v$�\u0005�����\\�+U�L�u-�o�����B�K\u0010��f�����^ҹ�K�8f&)\u001a�h�P\u0014����;?�\u0000f\u0001\u0003t]�oh�;m�\u0012���Xeh�Dt�Q��ݹm�\"b5�.����\u0005�\u0004\u0004\u0013����\n\u0002)+Z��H��k�������\u0003]x��g\u0017R���A��e�Г��\u000b�\u001a\u000f\"5�q\u0000�d��\b��\tѫPԱ�F\u001a5kߢ��X�|��R��\u001f{j.�\u0017c�^�0\t\\�\u0019��'�B���7(���\n��\t�T�|9�g\u001a�a�\u0001I\u001aT�A��[EvW�\u0018K\u0015@(�I������ㆺ;#�\u0017*���Z��\t�A+�\u0012\f���et�\u0011�\u0015\u0005Dh��\u0003�?�R��\u000fQ}>��\nz\tEQ��Q��I�^�*�|�N��L\u001c��O�����N�tͶ\u0018[E�\u000e\nf�\u0006$z�w�\u0014\u001b�\u001cϟ�w}Щ�c\u0016�T�\u0017��y〶�Q��\u001a~\r�r]�L�d�L�b�\n8�WS@lX����M���6Vf�\u0016�p5�<�\n�Y����eM��2!.E�F�x7ZW����/V�U!UC�Y\u0019�Y��zw�%��!@�R��Cw�ܤ't�$�a�H�X�\u0015�+Ӯ\u0019�\u000f��O�},|�[(+\u0001%O�KwoI\u001f��̶\b\t8���b�2�BAAt1���\tW�YώՕ���a�Q”�Y{#Rnu�\u0005�A+�\u0012 ���b��h�t\f\u0019^\u0006D‹\u0003bW�H0/��b�w�W�I�D�)w�\\/\u0001��w�O�5y?O\rq��R�j\u001c�\t_'b�JWԽ����3$�<�`S4Y��Si��’�H\u001a}�⌆�\u0013�$������ɽ\u0019\u0013s\u001eK֣.\n\b�=��o��]�F���6�*7ܦ��\u000b�ڜ�Z�k\btB�?��\u001e���ԧ���9��\u0007��BY\u0019\u0001�|�9�\u001f�S�Ed�\u001d��;y\rR��E����\\�L�I$��#܊¦�P{c�\u001cS�/�:d�XF\u001a��d�'{һ��pFFn�T�3�R\u0003\r0�oB\u001cNx���ڥ\u0003�\f9�=�\u001e|˼gr��cȗ���\u0006\u0011.[nx��\u0004�A,�\u00124���bГ�9�����\u0004R���Wd y�fp�0�<�P;z��\u0010���{\u000e\n�;(�\u0002\u0005�^�a:d\u001fl-�\u001d�\u0015�…�\u0004���/���\u0019\u0013\rQ�\u0010���8R�\u0012��1���Q�����b=䬠�u��r�m%�)]հpO�\u0016\u0013�\u0005b�\u0015eÓ�ۋJ_-\u0011�bߵ�;i,p�\fv��N֟�U���n\u0003�̱�U�\u000fc�� ��v.�hp�&`1��lpK��T��\u0001�A0�\u0012H���\u0018+T�I��ƮY������_�l\u0014��ϯ\u0005s��T/�\u0007\u0017{���6��8�2\u0011��ٱ�ʳ��S'\u001f���8\u0006d)7\u0003��\u001a��v\"�k�Uà�oF�}#�D�g\u001ehm\u0004S��pu�勀*p�z2gG��Ϟ�x�TB�\u0003yU�\u0005��\u0003�IeІ�\u0013��@�4/���5�\n�����\n������\u000eQ'�آ�\n����al��©��)��\u000e4)\u0001\"�z���Zیw�����\u001b� �a\u0007���B+�Dz�B7��8/�q�[Z|w�M�*s'5\u001e��Vq�\u001c:9ȹ�B�F/��k�\u0019H\u001c�`n9k)��6�^�\u001d��#,�O�|���\u000e�x���\f3F��AN�\u0012\\���\u0019�Q��\n[]�M���Ȣ��z�\u0003\u0011��y�Gu�\u0011�\u0000�w2\u0001\u0005�\u001e���G_���5�#�+���!�\u00153��l_h�\u0018�qz\u0002\u001e��\u0016�q�!�qVe\u001eN7>�\u001a;�����龁��\u000e)\u0007�V0` 8�{��\n������\u0001ʒkf|^ץ`\u001a=�\u0017��A�J\u000f�\"^�o5)\\�k�g�\u0014�t���$���\u0019�^™^*�e\u001b�&����.\u0015s�@}�3c���s�_��r���\u0006�\u0011X���sb��\u0013�\u001e�RE\u0004�t���[1��{6*4��y'X�\\�\u001f�{�\u001c@�^\u0006��Eis\u00068Q+Ս�$�_b[����6\u0002�%jL��[��\u0016����#/�4ϛ�\u0014ܑܽ:Rd�e��\u0003\u0010��***�L\u000b�L�E���=�A��\u0012p���\rH0�\u0000����\u00055c�!���G����H��~�n)h�\u0015��s\u0000��0�l�Z��>I�X<\u001a\u0016*}T�^I��T�\\���i�\u0002\b\u0017Yc�\u001e8�Jr���T�\u0007ˁ\\,�\u0003�e�g��\f\u0015�*�M�d�W*�\u0015u N�q\u0010 \"\u0000w�\u0017:��D�4³s&j�C!�7�x�\u001e\u001a}fbJ\u0016�6\tRM�\u001d\u0018|J�\u0004��5���\u0001q6$1\u001bi=�~�5[ډر4�Vq\u0015�\u0011Y����$i`�0��\u0016T\u0014�Bnx�o��*����Q�H2D�O\u0003�3?3u/�ll���g\u0004�\u001e��'�(_軨\u0018=�+�F\u001f�\u0000�g��\u000b\\��zW\u00043[��A]�Z��\u0002#ȯ�@e8�)�c����\u001a���+f�m�ti\u001dm��ڃ=\u001d��D�]@!\u001c\u0014Z �\u0002���F�:�cD����\u001b�S�\u0000�|��\"¼�ց��c\u000e�̚PKB�\u001e\u0016\u0005���,?��\u0017�݇\u0005mf䃤��»��O@�,���h�Q\u0000ȋcn�֟�8�:U�\f!9��bm����\u001d8�^A�r*���#U�~1�@\u0000|e4�I��Jh��\tB�-�Z�`\u0019\t��\u0017(Bd�IV߸Z����E0|(V)sbse0I\rw˫\u00072\u001d�\u0004��F����>r�Lbae��\f,��l}�y�����Ndy��|UfW���`��V\f@QH�)|p8�4-hR���r�4!Ox��D�*�\u001a�՗���M���/j�c>����e�yM\u0001gK%�bk�J^�x.�����!φ9��,�Fe<|��\u0016'�Gq8��\u0000�\u0014�z�\t�\u001f�N�@;n\u001aB\u0014Q=�Q/&\u0013*\u0001#:��\u00197M6ݫ�\u0016){NB�is�r�\u000b.�\u0001�Ē0�b��'d㽀4~\u001a��f��\u0016/\u0007���z�Ꝫڽ\u0017\u0016�R��=���\u001d��a{��R\u0004�=;}d]c\\H\f��\u0000s�t���\r��\u001fub�+�B&�I�Aa�\u0012����\f�h�\u001c<�<$!1\f��\u0005�\u0012����gϲ\\�\u0012!�̤\u001bf���`\u0004\tH��TDҌ����]6dg�ip��fR\u0018����<���ÿ��\u0010�\t3�\u001a~Ns\u0005�J5\u0002�p\u0017\u001d�-���A�ڠ�b�\u0014t�\u001c����\u001f�K�vYk�/�'f\u0011��#)9�`&��m#CI8o\u0003�Q�\u0010/�\u001ci*\u0012]����:�\u0013�I�&T/8�,\u0014h���s�S����;5�Zۖ\u0002���oI��&_5\u000b2����2�\u0001\b�58�{�\u000f�!�#b\u001f\u001ehr,4N�餔�X�C�f��p&50xyw�\u0001Dp\u0015���f?L<�\"goQ��\u0002�N\t\u000e��&;�Ǘ\u001c\u000b�8���<ʻ��*\u001ch�t\u0014��kS�F\u0010�4ׄ��\u001c��.\u0012ӣ�2q�)s�'��'����}b_\u0012\f�D������A`�\u0012����\rG�=d\f�s�2:GE��]��\"G�I�AM8?�0�,\u001b'f<�]\u0010\u001ed\u0017ɭ�-J#T����Sr��\u001a����Q�ސ\u0000\u001f�,�H��!�\f�2ޣ=�|:A\u001fD��K}V�3vV�Ш��u` :\r\t��\u0001\"�uO����\u0016{����\u00137u�$%c�!�\u0001eɊ������B�c��.�¤:DP\u0004��\b�J��\u0005�\u001d\u0015\u001a�[\u001aj\u0002���9�T\t����J���\u0016��\u0006�ϯ�BrYv�b(\u001az�f<�>Ld�����3�-���\u0000��r���j�\u0015A��\u001d���^VP�i�cfa�X�.�[YO�f$\u000e^5\u0016��\u001e�������T�¬}m7`�����\u0012�d�6�[�塷��e8�/`�hAX�\u0018,��\t�7m�cB묏��\u0019����A^�\u0012Ԁ��\rC6�X��ޟ\u0000\rb}\u0010�\u00142��bOWt��(A��o~��l?\u0014ñ\u0014zB\r\u0015@��W\u001fَi�h�ФF\u0001���F��\u0013�`�(d\t|�(�Y\u0003�����\"�B\u0018\u0004\u0016����u�[\u001b��u�.h��{r2�v�;\u0012\b7��]����?�+7�<�ٯΌ��F�P���u��9�ұ��Q\r�l��f��m����\\Q��S��\u0019\u0018�e�\r\u00178�\u0005��۹��7�\u000f�\u0003G\"\r=��\t��\r�c��U\"��~ɖ$��Ƭ�\u0017��Cc7ԙW\u001dT���Z`�v$�\t\u0007��G\u001ce��B��\u0002��p�e\u0019��c�~�c��nD�H8�\f�V[LY\"ĥb{6\u0000�=����ч��|��\u0000�o��B��_\u000f��\u0006(�&b�}_�\u001f��Y5�׼�e�r���S����A[�\u0012���\u000e\u0005$k�b��u�~���V��%7\u000eq$7�PE���H6Ѕ��9t %F=rJ���$Ɨ\u0019\u001b��W\\�{e��ϗb.,��\\\u001f\u001f��/B_>��;\u001dL4�'\f\n�A�p:~\u0010�񹎑g�(���Ţ��axI�̔�m���\f\"@L��{'��\u0012&�\u0006k�\u001e�M\u001efz�$*\u0012�!�܂�\u000b\u001dI(��\u001e�\u0014�\u0000O�V��ʺ=�O��\u001b<�\u0014]bV[C\u001a��*�S����}F<\u0004,��UE_������*]d�\u0007�\n^�Qld��7�\tّB3s=�wW߆Vz$u�\u0016\u001b�ɷ�^0Aů�⃥�\u0000��\u000b���̬\u0016��=����4̡@� �V�ˢ�\u0007�*�����A_�\u0012����\u0010��(SP!т�JN�,t��5����4�\u0007�h��Mz��\u0013�mI��2c<��ݯ9n���\u001eՙ!���2.��ƃM=s:!u��^)w+B�fi�\n(s\u0010��\r8qM���*\nO��xqQ�h�4~Y9N�`�2{\u0002��B�-8W��tF\t����\u0012���yo\u0002\u0010P�7�@WFt�9\u0010yIݷ�uM_\\�捏��QTm|���ɻ.W*7��}\u0014xMC*��6N���z��\f�S=�ٛ;2Ө�#Z�8-�,�\u0010�r\u001f}��p\u001c�.�&�-��2�Y@Ҁ�)[����d�A���\"\u0007TKX\bA��2E��S\u0018\f�\u0004���o���_�\\���\u0005Sc�`AP|e\u001a�f���H>y��\u0007\u0000��1�FO�� Y��\\��lP�%?���\u0010����\u0017\"��l��AY�\u0013\u0010���\u001b�{5l$�韛T�S�Z���o��\tĔ���\u0019�\u001c\u0016�p�\u0013T�w+�p!������\u0005\u0018i�'\b����S�)N@�ֶ�:���\u0002\u0007���JM�+@�F\u0014��\u000b�K\u0016}�>�1W8`�͟Su���\\M�s6]��,�M��\nS���sl\u0016�\u0000k?�h=\u001as=�^��|g\u000f�O܇�]�=|�̕��'_\u00024�\u001b�y�����K�ޕmm\r3��:�\u001eb\u00011�+_\u0015n�v&!E\u0011nn/a\u001a��G\u001e\u00006�>�\u0007��'�3`7�f\u0016O\u0017\f7�v@\u000e*ԙ\u001e\u0004\u001f\u0000�\u0017�.\u0005��O,\u000bZR\u0018�Y���{�lf�\u0002�>��P8��=��C/Áu٥���R.��TG\n�\u001e�yfGIG�p�%\u0006�\u001b���@^-&�����\ns�ۋ\u001d���X��^�\u0018tl��AW�\u0013$���\rG�ܜ��Z\b�vJ2��\u0012/�\u000f:�\u0001gNZ\u0003�ܕ�]U���eJ*��N@%\t������81B��\u000e�@-8�y\u0014BF9��P�6�r\u001b�'�\u0000��):1};\u0018\u000b��%���y\u0018Nw��oKC�SZ�@B\"v�����O�}:9�NLj��/\u0016�^.f\"\u0007�\u0005lr]\u001e�o'\u000f1\u0017N�H�/>\b��v��<����@@ৣI\u00195\u0013W\u0007�kŘ�U\u0006G�웞Fox�v4ǜ��dz���ɹX�<}Qt5����T���~���º{�\u0016B~�*�p�\u0016/���P�\u0002#�߰�@\u000fU �\r�9l\b�/˙�\u0012����&�F�Gت\"\bklk����Da�\u0017*�$�ݝi�1�l\u0017*�\"�E+��\t�\u0015;Z�P\\�\u0016���S����4��6��AK�\u00138���\u0015�ծ��iխ�\u0016;�4\u0005�F~�\u0016����\t��y�f�\u001d�U�\u0012pj�9�y'\u0012��rd�G��\u0001|���\n\u001c��h=�\u0001*\u0007��0\u000b�I[�\n��o\u000fX��3\u0014ͦ$ߚ���L����n�[�O�ʼnsHs��Bڵ,W��g\u0012g%/V7��~�Y�S�\u00117��L�c褿�@��\u0011�\b>/[b�S\u0010�S��W1�ƭp��5�����\u001f:�\u0006�D�4%����s7&��\u000f4�1D�\u0010vƒ[�\b!�_�\u00035df��օ�(\u0014���;QW͢P�\u0006�ul��4�\\��\u0015�\u0004�0���&\u0004��_P'�\u000b��v��\u0000uim,Els��z��,{�i�bо����Di�$�A\u0007�\u0010!�\tN�o�����n�?���AS�\u0013L���eIv\"�\u0017�\u000f|.�\u0017O�/�� 9?$_��\r�;�Q��\u000e�}�q��@]c�r�{��0�p�G������1_�1r�|mW���\u0004\u0005\f�88�n\u0015G7��x\u0006�;�4?σi�P}\u000e��\u0016�k�:m��ďëf�l�a��\u000b��j��Mq\u001c�{\u0012%����\u0013�\u0005z^��\u0015����\t�\u0007�H�\"E\\�#�˛\u0014��\u000e����\u0015\u0002�\r)4<�A����H,�U�����F��\u0007��N.Q���u\t\u001eU�ch�\u0017��(J�W�T�\u0004��2��\u001a1��}�\b��\u001f����\u000f}}(S��a!\u0001�����\u0007�\u0016:�y\u0013ȓ<\u000b冭\u001b��������Cm�„\u001f\u0005�F\u0012k��P3���mI�$��X���R��U�1�.��<ȵ\u0005�A@�\u0013`��L�\u001c� i\u0007�fG\u001fG�gH�T����\u0014$/\u001dW^j�\u0003�@��\\\u0012�Iu\u001e����R�\u0014���\u001d��Z]�M\u001d{r\u000fOI�/���}�j���Y#\u0004f�HX�ۇן8��/�2�=�>�Z\u0005恷K.�ag{@%�0Ŭ+��D��\t�ap�IP.�\u0001�ꐑ��4NjZ�\u0002��My=�:c���\"ʰo�?��>m�\u0013����\u001a09����\u0018�|��mP��6��:O�&r�Z2|`R0��\u0015$�e�o+\u001fd\u0010s��:\tA ���\u0006����n\u0004��vޮ�\u0001_����\u0005@���\u0010v\u001bX�=�{��\u0001�J�C\u0000�0��~�P���ڬ�Ͼ(�\"H����\u0017ˀ��-�V�\u0004K.Ʀ�أ�!���\u001c�B1�\u0013t��|�r6x���\u0010�+�,�J_Uu�3�Y\u001c�0�WQ4^��HHm�� ��\u0010�\u0013�\u001cߗ�e}\u001e�n\u0018[\\�yx{��O2�{���+nYd/ \u0002Y\u0004�\u0003�\"�����\n��]\u000bXS~�\u001bޥ\u0000֓����l��7�Y\u0004D&\"\u001d+���V\u001c22�9x��\u001b��\u0010�h�\u0014�-�R�\\\b��FXQ��4|��h\u0016ES����k5��k�_l}�\u001c���?\u0016��*�ߪ3[�\u0004���Vm���L��>C�*gj=S�:�?�\u0003�Hc~9LK|eW\u0014/ϖ�w\u0004���ƆD���\u0011�\u0005h\u0005֫��\u001a�x�\u0015#�p�㧏x\bm\u001e�ĞHu\u001d_f?�\u000e)@���\u001b��0�\"K�7�\u001e��\u0015;�sy��N\n�+�]�\u0005O_Y#��o�!&����\u0001�!1��}�zVs$X���DS�և\u001b�ȩ#\"t��|aС\u0017~E�U}�X_�[����(�o\u001fI\u001e�w±\u001d�J�\u001a��HUػ�6\u0002O��5��kDY��A+l���e�܆�n t�\u0010/W\u000b\t\t����t��A\b�\u0013���X�˚]���MF`x�BZ�IHt\u001d��ܸ\u0002FU��ę<�\u0000�\u0018�%\u001e\t,'#d\t���\t51��� �\u0006\u0010߻�\u0003cz�ʄC(��t�ŀ\u000e\u000e\u0017�trC�eN�$�vՓ{\u001c�.�R��\u0001&Ш��}�\u0013\u0013\u0011�\u0001\u0012�c[~�\r)t�2jZ�p65�>T�\u0010\u0001�x���\u000e�i�\u000b���K)Yl��5\u0010\u0001��\u001e1NI\u00060;8S�F/\"\u0016u�B\u000e\u001f\u001c����$F��\u001bR\u0010M\u000b���ԣAh�A��+f�Zw�\u0003B��+�nbZ�\u0000��\u000f^�;��f�79�Fѱ�!s�h��\u0012�\u001c�\u0018����Ǒ��A'�\u0013�����^����\u0018�|\u0014@�ޮ\u0000��g��Y����O4+VB���\u0016>^�\u0017\fa�2�jb�:\u000e�+s�@t|�c�g�'6�\u0007a�˧X�=v�. �\u001e\u0014ܺ�<��\u0007k�Z�I*)�\u000b�\u000b�mA\u0014k��{79��9bf\u000b�\u0016�Ǎ1��\u0001cЭPdz\u000b\b�\u0004c��2�L\u0011\u0014^�8�Nu6��\u001b\u0014�\u00058�X���\u001fxE;�Ktt]��\u0010��2�*\u0015�d݊d2�hFI{.��$�8���j�8MX�[��&��f\u0016X���d��#I�m���e\u0007��\u000f󴗷�,�V�'\u001a�\u001dKYT�6˱P�2\t\u0014c\u0004>�ǰ��i�zǡ�^��\u00056��D�i�o�ǪX_4�A$�\u0013���X��\n�=�OX\u0013��-g�F��ͪ=\u000b a���\u0000y#�T{�!\u0019~�]�QUr\u0015ґ¦]P�oݽ�\n\u0006���f���\\���~�\u0012��\u0016XH\n%{���!�\u0001�n�\n�ܨ��aq\u0016����\u0014/}�\u001f\u0003�f\u0013��-�\u001aJ�\u0017 �C!\u0012\u0000�?��7�B�c\u0013��E���&-bf��}Q�\u0002�\u0013���W\u0003蔀wE����\u0007&|���b\u000bi0g�{]7\\vOβ���\u001fx�}�z�c3Y�ؒ�\u001a��7n`��\u001d�\u0007�\f�&!�沨���؂W6�S�@�ܒr���8�\u0001蝐�\u0005�\u0018)�/@���6��-F�$J\u0004I��Q��G�@'��\u0002�]�[�A\u001a�\u0013Ā�L��P\u0012\u001d��\u000fw�|1��^܈\u0000Τ\u0000�\u001a��FO�q���V\u0000�\u0003`ui~��F+1cÖ\u000fW!Z\b������p\"(\u001a�:��ر�|�\u000e�vѓH�8˅\u00057�}�z�V��\u0006-P�ܸ�UYr�O�L\u001e��G?O�\"J�5p;���?^P��9\t�¦��h�\u0006������տ���'A�lCg\u0006@����P\u001a{�~��DP\u001djE�\u000b^�,\u0002{��{�\f0�V{R�L\u0000\r7O3�\u001fG\\�$|��r�b$�iNW���\b\u0011S���\"�\u000b\u0000j[\u0019dy,|�\u0011ۇ���t.j���L���0|��^_�0�\u0014�!m�A(�\u0013؀���r�ҏ�%��\u001c�T�o\u001f�����/*����D�W�q\u001a�r���XXo�>H���BF�5�D��0\u001a��\u001f���0D�y!�\u0006�\u0016\"�lqD+)@\u0015�\u0003��)�\u0005�J��%ݠ�IEu��\r�nڪ�\u0010��i�2�!\u000f�s��7Ii�[2�S�A[\b�X\u0004mm��E��\u000fE��p�u5��~�dC�����HH�𮿰�g[���mH�ܡ;m��9C���OV3���ŀA�ڗ\tb9%\u001c�˯`)O\u0005\"��4M�Z�=�3\u0015�\u0011�m�\r��|����@\u0005H��%�\u000e\u00143@K��_�f�f�b���\u0012�Xf]\u000e�.\u0004�7f\u0003D����@l��\u0017!S��p�A\"�\u0013��L��mRF��(=�h`�-i:��<����j¹�ЂrG����\n�(�\u0016܇\b�؟����biH�w�W\"�dK��/��SlՃ\u000f\u0012L_u'a\u0000���s�\u0010\u0006\u0003d��v��̖�sN�\u0012���<�mעfw3W��I�\u00182�\u0005_X�_ڱۘ���E��\u0004�\n��t�$��\u0005\u001e��xͩztZ�K ��g����X�\u0002���T(�T\u001d��-T�0��\u0006\\:\u0006����\u000bJ�uq���/F,�ï\u001d-Ժ�R\f�q\u000b��\u001c�\u001e1)��\u0005D����$�=�\u0012X,RHSF^,��Z��(�a\"\u0018.�����x\u0003�O�x4��\u0012\u0013g\u0016�H<��S���A$�\u0014\u0000��L�(.\u0012\u000eb�\u001e��r�#\u0003�\bm$ѓ\u0003\u0007\u0017�}���ɦ����Yc�kSr\n��\u0014�\u001e,�5\u000ft�7��������;Y��{L\u001a�|�\r�905���[� Ӻf\u0003���~�0�w�2����r�؋�/�B��yn[##���\b�C*:���TFp*�i�l������\u0017\u0016\u000b�\u001a4\u0014�K�7訕�\u001d���_*��u��o3�\\����7�u��X\r/ϞH��b���8\u001bk�0�\"GxVl�\u0012�n7\u000f0}-%陋�D\u0004U)����\u0018\u0017��\n��&\n$���Y(ҿw\u0010\u0017��Ɉ^��ǁ?�\u000bQnז���I��|\u0019\u0002\u001cJF}���ʉ���A'�\u0014\u0014�����W-��j=d�`�\u0001\u0005��\t�\u001a�\u0019����P���DĞ1�!^[��Z�31\u0013?$\b=�[p&��2�\u0000,Fnm�L���H\u0012��-\u0010��6\f�\u001bu�L�\u001f\\�a$AW�]�P_\u0006c��X�G6]��\"��2ZLᅰ'��/�&�ty�����t��\u0002���x��|��\bp�\u0019o��X ,D\u000f{>����z�J�g\u001b��7H�0\"\u0014/Η�������A*�f��\u0017\u000e\u001dk��ͽ��6\f�\u0016��=��2Ċ�Ei�V���ܤ3<\u000eUM��\t\u000f-9)��l/[�\u00148fnv\u0003�\u0013�\u0010+����r\u0006w�S�SZ�-aX쒮W�6���*i\u0001����o-0�A+�\u0014(���j��F�{\u0010�H�f�U@�^a�\f��}G��>_@\f*�QB\u0011&��,\u0013�2�KK��D\u001c���y(��N\u0006O\u0000�b\u0010S_\u0007o�N\u0012��T���K4F�r\\\u0007\u000b\u0013(\"�� ��]^�����e\u001d\u0011�T����\u0002�^���}�l�vs��^I:�s��l��ڷՂQ�0� 8�?����G��71�=���\u0015��:-��T���\u0010u\"\n���|6�f#H\u001f\u0002\u0005��q8*F�\u0006�A�,�A��9 ]d2\u0003�HH}۸�\u0014?�O�j�}���Fݮ�Ng5��u�zb\u000f���ߠ����m\u0017�2d\u001a���n=\u001e\u0019�j%P�Ӎy��yoo�G�I\u0001�\r�ϲ\t�A)�\u0014<���-�@\u000f���y�=�eO���8*�c��\u000bog�)?��\u0018��`���\u001b��)�t��/��\u0019{��\u000e�]�L\u001d\u0006S�\u000f����%:�\u0018Q\u000f��\u0001�\u0011U�\u0007&�3�M�k�\u0019<��4-֌0\u001dSe\u0005\u0010Q':�\u0019�+��ڱ�?�\u0004%9!}:p\u00153M�>�ׂ͙P�oc4״J��ESm\u0019�wj�N\u001d�\u0019���7Y�$�ڜw\u001d\u0001\u001eZz�\u001f�6���\u0000�X��M�l]\u001f��K>���Њ�\u000fcFpxzL4\u0010��Svj�ؽY\u00174� D�}�Jռ�\u0016\u0002\u0006\r���\u0001��\u0007�\u001a,\u0018��d�0\u0004��\f\u0005j܎�3}r��\u0005/�r�\u0013��7�K\u001aNs���\u000b�A;�\u0014P���mbd\u0018\u000fVN2r��/�B,\u001f�J���V�\u000f\u0011��`\u0002���\f��b�����BK���O��'�p��\u0013���\u0000zd���\u0006$���iJ\t$.G�j�����`�A1�⦔�\t��*ԝL~~\u0000�V�y�|���n�\"F޿\u0007g\"i�:.��n\u000b�ԯ\u001c�\u0002�H����\\<-�;�W\u0007B\u0016b�(F�\u000eb��. 0�˝M#A��l�L:೅���\u001f��vh�3�v��\u0012B�Rm!��\u000eh�\u0015*\u0004NkDO?�o�֫U��� �kE��)*�u.�\r\u0011?�\u000ee��z�\u0004��BQp\u0016\u001b\u001b�n#�\u0018\u0014pSՎ\u000e\u000e�\\�-EH�\u0002\u001e�\f�X-l��5F\t��\u0004i[\n\u0000\u0005�O�@C7!�~>J\u000b�AR�\u0014d��� q�t���B�ű�3����3�m\u0014\u0007�\t\u0015\\�r6=}�\u0012\u000f��Uhf�o䢙��\u0019�\u0007�؀\u0015��ۡ�g%��e\u0002\u0004k{��S�,\u0012�\u000b�\u00147�\u0010l�x��8��b\u0001��������`y���$ |�r�W����!�#{\u0011E̓�\b��T�Cd��/�\u0001G,R�\u001c�,�獼�p�O[Gk\\��p0E��I7E����q�}7\u0002�����Ǯϐ��Ǐg q�d�\u000e96yS�S��S@�e�_2�~`���D�\u001fu�2B�?��[���,\u0018\u0019E�\u000b��\u0014�x�\u000f]��l�~Q�t��s=*��+�?\u001c/�oG���M��\u0012���Ǽ��b����D�\u0000-\u0012)\b��EU`�t��AB�\u0014����e�(=�-��:�z\u0005�\u0005\u0000k\u00160\u001dct���\u001edB|��>p�t�@N��v�\u000b�\fz�\t����4\u0013��<\u0000��-�3\n�.�Ўϙ�Ȝ`d�)ʏ4� ��\"�\u0002u�gV\u000b/}K\\ҟ�7a֘v���\u001fdE�jm�2�9��8Y��8�D��ؿO�.܀���խ�ؘl�\u0011��k�\u0011���\u000e�\u001f­Lh��͹\u0016\u0011ZH��\u001d�\u00065|\t[%r���þ8�W�+����\u0003\f�b�\bboʄ�`$>0� \u0010\u000f��R\u000f�\u0012s7-�K��J>�r\u0019\u0015���;Ȍ���8?�f\u001e�Q�\u001d{�\u0012�^\\�S̃�����!�9�U�\u0013y�{���\u001b�5�\u0006C\u001d��F\u0006A�܏������(�c��H�GՓ�AW�\u0014܀�L��J�\u0019�4xz�W���\u0016��p��P\u0007\u0013��17�bu�E��\u001dN����W�E�]\u001d��XRгC24\u0017!�!�E�(�^h�\u001d��K\u001f��6iP#%�P���\u001e�8h���X\u0003�y}\u0012#囩��NC�Xx4��\u0000�p�e\u0019\u0006�\u0003������U�B\u00079#pKM\u0001��6�>���4�{%�z�_�9[��g\u0010m��Iе,^&\u001f�>���O&y�\u000b̼3�\u001e�~0�0��\u000by�hB��1��G�)\u0010�~�\u001a�s7@]�Ü������a�\n�\u00165ا��Q\u001f�L/�Ϧ\u0002w��\u00117[��5�\u0000\u0012����\f\u001e�\u001a��\u0011O�1]`w�8���D\u0001�F}WE\u001au��Z�\u0010��!H~\u0014����7\u000e\u0019���ڣ��*!\"܌'�F�b��r��\u0002��\"\u001b�Ac�\u0014����U�2�ڍι�N��c��,�\u000e�QLY�\u000e�\bd�' ?���\r\u000e��_��X��j��C4���P[�\u0012@�GO��\b�-�V�d^{��\u001d5��ք�)��-�H\u0003��X\u0002��_�B\u0005�Wl���J�� � �\u001a�5\u001b\u0014�\u0019@��\u0002�WՇ��\u0013��DԷqIQ��0G@\u0007B\u0001�k��Lxo\t��Hz]Y@���f��]���D\f�\u0006��ߥk���A��\u0019��E��\u0006��觃�2���Y\u0017i���\r�*>���=K�T��7�~C\bw�.<񖁶~\u001f}\u001827���W6P�z�kA<�?w\n�*�1�`�ph6\u0014��p1�\u000e\u0018���\u0019s$\u0003Yz�\u001a� ���\t��%�=�a\u001fJ�\u0003��\u0006�?\u000f�Ҵ\u0012��\u0005�������ť��w��J�m#\u0006�^\u0006\u0019���ᓣAi�\u0015\u0004��L�\\cr�q-�L\u000b�\f��GR�S~`�}|T�\u0001�����)�dt�\u0019%J��\u0000���B'��/E�%���I�Pu,�Y�A-�\u001d�(J�W�\u0003I9�u�9�\u001eu��_\u0005,�XF�b��\u0003t�|�\u0018JDR™\u0012�9.\\��NJ������)\u0014��|:I#v�޶&_�\u0005�y-�i�_3t8q�+1\n��4��-2�E�A\u0005r�-\\���<\u0004���G���͛\u0003�=3�^���J�*h�m\u001a\u0013K���a1\b�'O於[�O�-3f�S���.�\u001a\u0015k\u0003��]\u001e��;����@\u0010\u0007��&KL>)�c~��J�����\u0019QU�',8�d��\u0017\u0001�ƞ2i\u0014���\u0018�H'\u0000��}c�kr�Gq��w\u0003u\u0016��B\u001e�M�\u0001;i�t{��\u001a����3!\u0007�\u0013��L\u001fyR�r��\t�����Ag�\u0015\u0018��L�x��\u0002�\"\u0019�S\u0011{X+�&gJW�$(\u001f\u0013��V�Ŕr\u001a��^\u0000¯\u000b4\u001bD\u001a��>D��$7�'�B]����S�ǚlq��MW���\n������\u0013py��]\u0015%\u0019��6J�.�Q�\u001aF�u�)�Ѫ�^(�\u001c@e��W\u0000:������C�dU5�A���vt�G\u0018�J�Ҍ��t\u001f��\u001eo9\u0012���΋-�L2<���+��%UC$���d��\u001f�]lq�\u0015��\u001dFm0kh�y���\n\u0003\r�-�)\u0013(�:�R���l\u001b�9˞��gv�\u000e��~�a\u001c$:�JY�t\u0010V��\n\u0016�\u001f\u0000��\u001d�\u0013h�Fz��BW�T��C���\u001e�Nj�\u00016��0\\(\u0000�>��\u0016\bA-EL�*H�4���b��\t���〜2�_�\u0016��\u001e�q\u000b��6�\u001a7v�W򚯶V�H\u0007\u0002$�AT�\u0015,���a���4�7;\u0000}�p>�\u0011,<�0��\u000f\u0004;dő\u0005��?g�\u0013\u000f���w�d��W��*4��01Y1?�B���\r�F9\u0007ʃ\u0001=�\u0019�\u000e��MHu\t`��́]��e\u00195�|Y���h�\u0013�\u000f��N[o5�fTu\u0002\u0002\u0016�(��\u0014��(L};ۉy\u001cb[���~�\n�b�ޞu�G�ŋ\u001bV*��u�\u001b\"\u000f���.f�'n<��\u0018=\t�G��&&k���X۟�w�m\u0001x�)~�\nУK�S��w\\��j�!��\u000et�ij�u�*�\u0005����\tX7\r�\u000b\rd��\u001f�H[���Z\r&U�_\u0019T�\u001cy��L�-]z\\��[�����]����*.\n����\u001b&�0qr�>��=��7a\"�J$�:�2�v��Ӣ�6�\u0001\u0004�$�\u0011�AF�\u0015@���e@zP<��4\t����0)���\u001b�xl:0��c�����\u000e�v���E6��N�\u0005�ڕ\u0017���WR�\u0004\u0019�0\u0018V�^f9�~ЭT\u0016ϼ^-i�S/.\u001c�tЖ��Q^+ܢ_\f�ג>$�φF�\u0013R��D=�HC��#�\u0017\u0010��\n�_���)\u000b������n���\u001e�@��7I\\\u0012����\u0012�\u00154�~\u001e�?\\\u0007�F't��B�\u0006ٽ̵\u001f�x�\u0014;�̢\f�\u00138�Ⱥ��P5���-l\u000e�g�p�NC\u001bײ7\u0001p�P(�?>\\�3�!?Ϩd̕�i�Q\u00171/�����Q��u�&�ED�L���5�lK.��9���X\nOq\u0014��ƌ\u001cHBB�PZ��\b���)��\u0013w<���\n���n\u0013�,:��9*\r�AA�\u0015T��\u0002�\n�Ҋc������xqv��\u0019A�\b@.�bn\u0011ָȫ���$=�)�)\u0017j^T MC4O�9��?4\u0010�a0��\f��\u0000�Z����kY?#\f\u0011!�����i���=_+?�y��\u000b\u0014�\u001a���^�\f߬�M�Pٛ��xĵ�\u0016\u000fP޶�� �:��[n�_���w��\u001a�\n�\\\u0019�9Mb�$<.3k1�#\u0018E��Z@��\u0014�\u0000���,|D\"��wh-��-��\n���O�\u0005Ϋ�-���\u001b�\u000b��bs��D\u0011���)a<]���]E:�U�>�A��j���?E��F��\u0010��+�l��S�\u0005�j����_�8m�\u0012�K�� k�\u001cHB|��^w�t�o�L�\t��g��)�M���3%��\u0018\u0017����7�)\u0007s�Yd\u0011�Md\u000bZ�W3�\u0006EO�@�\u001dO��8�b\f�\n�S�>�Fc*�\u000e�OP�x�\u0004w��\\\u0018�R\u0016\n\u0005�(Z�:�|'�\u000e��\u0010#�aBU�>��`��R2Ɩ�;�3�\u0017�\u0017R}���@'�kfײt��\f��u�7�azPQa���;�_u�d$\"��;�oCϳ~e��$�X�ȣA\u001d�\u0015���M.\u0018�$�5�9� G\u0017�\u000e� \u000f���Q2S�W?��\u0016Ґ�]=L[QM\u0011\u0015P?C;������σ�a^�uQ�H\u0005B\u0019{%�,֌�V\u0013���\u0016N��\u0010ʣ�(�\u0013�\u001bE�U�㘮(|�J- #*\u001c_]��/15ev*����1���C�&�\u0011 ]�\u0016�/\f��\u0007q:r\u0002�de����}�s\u0004�<˫\fN�`��Q,��;]I�}��8�~��\r軀�\u0004\u0019���Z�G\u001e�\u001c�|ʔ��@�Uh���YQ�L嶙~|x����Q4�|q5V\u001f\u001c�:�d�ćuZT�=\u0006��\u0004O\u0010���:=�V8���A�#\u0002�\t�ƒ����8�w�A#�\u0015���X�-�\n\n��|?�'0��V�}薒�+5w�w �\u0013h(u���\u0019�W\u0004�{\u0011@�+m\u0019|�S�g\u001e\u0018��{�\u0014� �\u0001�c^��ea0~�\f\r'�}\u001cӌ�� �\u0000;�^\u0018�y\u0007�e7E��t��\u0005D����#\u001a��z���_G�R�s\u0018��\u0017�b��\u0000�y�qn>\u001f��Ō{�d��P�\u0002���u��LJV҈�ʕ%mJ8��M]\u0005�\\�V�ew\u0017��Uj�_\u0012��\u001a\u001b\u0015`io�Mx���\u0016���ӰYF0��Ņ\u0005\u0004\u0015(�@��bʳ݅�\u0013���\n�P���\u0004�\u000b�\u001b�f�N+\u0015�\u0019�D���W�\u0000\u0000�\u0017��r�! nf���S\\x��A�A\u0018�\u0015���Mv8��4\u0014\u000b\u0016��A9�\u0015̀��sg\u001c�\u0005m\u0004C�\u0011H\nW\u0015\\3\u000b�\u000e����Fb�r�\u0007�o�,p\u0016�/��\u000b\u000fb\u001f��rT�\u0001[?��yX�Y�?b���_\u001d>s[�z��\"�4\u00137#0��}]e�պ=mq��)\u0004�͵�\u0001̛������\"F\u0017�jG���zc�l��\u0002Q��0�\u000f����]\b�;P�����dA��2�\u001av���,C0�\u0007mH>�7�\u0002\u00036�\u000b�q�-����8p��D�;�CR[�����ܜ�I�!>\"�ǟvџ55c�4%\u0015~��+t|���G��\u001c��R�Ś�\u0017�h�`\u0004[�j�~��\u0016�H$\u0014\u0004�@��qL��\u0015���\f���/�\u0000R6�e\\�&I�ń\r\u001e0\n��H6� r�gAIi��A5�\u0015���MvA�N���\u000f/L�4��7���JQ���& }\u001a��V^��Z�\fd��\\�:\u0002��$�.�Z��e�w��\b\u0019�\u0014U�\u0005\u001e�\u001d�7HF\u000f�b�Y=Xp_-�\u0012m��2K�\u000b�\u0018�`K�\u0019�Q��z>eV丟�9�2$\u0001\u0011�\u0015�\u001b�Wx��\u0018O���Z��Kd���dr��̃\u001dh\f�P��y�\u0005\u0019-qa��*��\u001a|�0�l��+J���A�/�sNA����_>�g�\u0014�q�\u0012�ll�Q�(҃\"%��$ZWq��\u0004c��b`�\u0012nB��J�`�\u0010���\u001e�=\u0006�c��c9��O�D�M����\u000e-}���\u001cR�\u0012��n�\u001c��Qʽ��Ska���m��y\u0000{k���N\u0004.�A-�\u0015��M{�\u0019JY/\"���>KJ�\u0015�~\u000bJ�̐�\u000b=4yW��^1��F����]}���Er�֤cR4\n��\u0014u\u001a{_qK4���v]|\u001d���7n\u0015�}ʯ;\u000e\u0005�\u000bD�^�5�?\u000f�y1��\u0005\u0007�,\u000e�8U�{�>U�7��)��M&��U0��Y����_&L�u�N�4ͨӕ������FZ�.����\u0019�b\u0000�,��!�p����!\u0017���\u0016�0�x\u001c�\u0016�t�jQ�1�r�[�����\f\t��e�\u0001^��\u0012h�?C�3�ՇJ�`��\u000f\u0013���̐g�D�����uu�3\u0002}]���m�@NJ��C�t�Q��\u0006�{\r�\u0019�Q�������|�Ts��\u0001�P[�A(�\u0016\b���h�.]ʣ���T۵��@\u0000�X�}b�|���Ui54\u0004>P����ϟ��\u0004�9��^V�\u000f0�7�g\u000e�݂m!�\nW�\u001c�+�\u0013\u001f�9��n������\u0014�Z��i\u0002�{���\u0017kj�B�.\u0014K\u0017%��1�u@\u001f�\u0011��;�s�W�\u0001a�!u�����\u0013\u0014���ܖ�񓂘\u0005�\u0010�����\u001cE0~-\u0007\u001d+̕��&5)p�}e_�T�r\u000b8bI\u000e`�\u0012��X\u0007ѧu���4wB\u0011�\u0013�d\u0005&�l��W\u0000U`zX���\u0014�A����\u0019\n�W\u0012ؽ��\u0012��Q��a��L\u000f�H3w��]�j���I\\\u001d?��\u0003ũA5D\u0011\b��\n\u0006+��b�\u0006�'�VX>�ٗ�A#�\u0016\u001c���s��=E�\u001e�`�\bԞ�Yk�SL\u0006x\u0001P�VE!\u0018��U\u0000ښ'\u0007\u001dg\n�8�8+Q��;S\f��\u001f�\t����R�=�!����\u001e:[�\u001a\u0016Z�>\u0005�^\u000b\u000bD�\u0016�\u001bGp#�k\u0019��,@��jNƁ�Z\u0007��A\u0014:-����x\f3M;��\f.�\u001e\u0018Y�\u0011~�N��\u0004�&�=a��̞;p�\u001c����\u0016��\u0000�],\u0016��Q�č;@\u001c��\u0004����oX�ka��tj9�\u0005<0z��\u000b&\u001aR��o��\u0014uE/�}|����}'��\t�[�*+eu��2\t�k�-���&�C�\u0004sh�^���\u001bs�>sѾ6nY)�9�8\u001c�3\u0015WoE�\u0002��>����A4�\u00160���bo�\n�����Q�&O�N5xȦ���ݗ�\u001aI� !��\u0010�]\u0018:\u0013�l\u00030����v�I\b��\u0005\u001fj\u001b���噻x���\bRM�}a\u0010�itB�U����\b/��g_'hEd�ayG\u0001���\u0015r���`Y5&]\u0015�\u0003䒺�U�`�{0��]m<��\"�\"O˛RI5D�b:�\u001d:�k^�;��\u001a��I$5��ƀ�r�\u001c�#\\8P*��@�I�� ��\u0004�xE���iuɆ^\u0012����.\u0004{�z�������\u0012G'�N\u001c�;�^�k�\u001e�[ivu����r���2C8\u001e\u001dj)\u000e��:��9ө&�e��8��<8Ũ�\u0017{#�&}緎��h\u001c]\"�~���x.��VR6i��A;�\u0016D���buL\u0002xZp�\n鋗�¼�\u000b�4׹\u000bC��?�%������E,f��$t�6w�T��4�g�-�8�^���8��C�o\u0010�\u001a\\�4�\f���/\u001cK\\<\rvw�\u0007P(�]〷��9�7�b�E�O߹��A\n\u001d›�W>x��w\u0011�$��Avs�M��\u0002VF`SB\u0002�{��,x�2\u000f��l\u001e��س+\u0013-���ٱ���E�\"Ӗ�B�������YH�\"\u0012K*��يiv�����K)IX�*n��\fzw1)��}�\u001eP\b� \u001f�eVK0h���\u0017�]}aL��e��s_�����ΘI�\rt\u001ak�AJ>\u0001��\u0011q��\u001e\u0007�`\u0007\u0004r���u\u0015��\\qn_k���>Z�G\u0018\u0004����)�Փ�A6�\u0016X���s�\fjh?���S(M�ep����x�ɪo�\u0015R�.\u001b:�V�t���}�\u0002\n���b\u001f_\u000b�B'\u0013�\u001a\u0012��y��)�WX2���R[�%�0�h\u0015͢�\u001dvX�\u0011\u001cئ\u0019q��\u0007$�6\t\u0015�\u0005]���P�`b�w~��`��v5\u001a�棌�\u0000R�,��.�>�`�СtE�\u0001x;Y*1��ݴ�mR��\u0011%���iM֨�\fN�\u001c�\u0007Ro\u001a�������9eIng���pj\u0019s�\u0002n�\u000fX�H�h�&+\u000e\u0010˦eƓ`\u0003Q\u0012�y-,[�\r���iZT�x\u0013�gs`l����\u000b\tL�M���\u001a�D\n\u0005���\u0010g�\u001fhK\"�>y�q�X\u0006\b�:Ce�(\u0013���\u0003\u000e}�ދdⵙ��\"����A4�\u0016l���pф�|�;�X���s���0���ɏ�8��f\u000f�9_i��H���2\u0011z��hC;q�0}�r^�7]v\u0007\u0006�\u0000�s-0\u000e|\u0003�\u0016�ak�[�\b\u0005C\u0001�?�`X���T�\b\u0005\u000b��m…��\u0006U�!(T]늖�6\u0018=��HS�\u0012��G`��)\u0016-����\u00022�\u001b!Jй$8�\t�\u0018�Q�\u0010\u0015��g\u001e�=\u0007JC��q�a���{/h�2\b{;��3q���\u0018\u001f�[\"]\u0011�AA�\u0016����cͩ\u0018:V�c��\u0002���\u001b蛎�\u000e\u0003崈�{ϟ鯞X�/�����,\u0003\u000bܻ�|5u\u000b��B�����Z6K��`��.���]��QЫ�C(4�!����:!�wK�������fZ��\f\u001a��Zn\u0014�[;\nG4T?��(aF\u0007�T��G��^�\u0001�B��`�[��\t=�y�\u0012�.\u001fm�Cv��gq%�[\u001a�e\b͢.�cw��H\u000b��S��t��\u0004��#Gs��\u0011\u0006|a7�\b�pH\u00167v\u0001@s�j�.��\"��6\u0019\u0017V!\\)�zEZ��Z������dB�\u0005^�!}��\u001f��J��\u0006e��W\thm�A�\u001a*<��ǖ�O\u000e8w�!�kC19�k\u0014���UA��x�A�}�r�3��{\u001a�ȞՏ�A?�\u0016����buH\u001f\u0001���g�&`\u0018��\u0016\u001e[�I�%BH ��9��hEa�\u001d{����l{���ʏ\\�b\u0013\u001fS��G,aGe��2#�B����cF��\u0002Q����:��>N��Tx��49�\u001dI]\n�\u001a8i�m����\b�ۍ�Ew�s\u0004O��\u0003�k�2���!0�R�@{�sg�D!����Y\u0018�i\u001cʓCg8�\u001b�\bnNH`����\f\u0016��t��$}J�C^%\u000f�j{���S\u0003OI���~��S\u0005PQi��\u0000\u0013��S\u0016G��;&\u001eAj��\u000f��<�bGH����oYi�]�9C\u000e�r\u000b~�yk�]�\u00126�Xt���KG.�v5��L�,F���31\rL�S�#�� ~� �31\u0010��BR\u0007�\nr\u0013�tC�m��A>�\u0016Ѐ��cͣ�O�eW\u001c�{\u0012�\n�^�\u001e\u001eZ�MJ���y�v�3$�bw�ϼA\u0013��U\u001c/�,}U\u000eq�F&�\u0010tܖ�qu#�5�\u0019m2YLg�\u001a\u001f\u0014�����]�+��aÒ~���e�4��A��V���Y<�����w�G*ߘK\t����}LJ.\u0015��'\u000f�\u000bśf/\u000b��Ȇ����~�HY\"��{�vl\u001e���a\tIQ�I�\u0014ˊ+��T\u0015����\u000e\u0007�\r�+�2}d?;��\u0005J�=�x\u0018��x�5��N�P���\u000fH�iV�\u0017cY)�p\u0014-(��\t��\u001f�}���E\b��\u0001�,�I��p2��)_%��*\u0001E9�y�n\u000f}�\u001c�\u0002ij\u001dM�HBxH����-\u00184�������iʃ;�m��A@�\u0016���br�J\u0017�\u0019�SF��$Lĉ}A��ҁ%�n�@����яn�\u001blMe`C\u001b���ĕ\t\u0000l5��Vr���V\u0005\u0016��\u000bڸ͑����\u0000\u001d��Й\u0005|���ۉ/�Z�'\u001a\u000b\u0011#\b� �\u000b|&�[m�$&\u0018�k@�?� ��\u0003�ܑ`Z�V��mR\u001f�/[��\u0018�\u0001Ǒuw�\u000e�\u0002��'�J�\f�Un��\u000f?�6\u001d\\n� F�~�D`�u���Y=���\u0006f�Po\b���\u0019sFa��V�W�O��n��lWƔ5ǟ.�Oȯ'���>���īmT\u001d�~������\u0005p����� ��ދ�?(��AL�\u0011!z�9i\u0006�̩��\u0003�;?�&QҶ���7r��\u0000%\n�)W�����q�=�����X!�\\/5L�\u001f..���Z�\u001af�\u001d��t&$�Ǘ_�=�]�m>�0;\u001a\u0013(\n\u000f'�U�X���\u001a�$^��sn��\u0011�Q���\u001b��B��>�\\��������_�7�\u0016�l��)\u001f��!\u0010�A=�\u0017\f��L��Y�j��h�\u0006��Sx\u0012���r\b\u0003O���k�����i\u0017c���\u001d_g1�m;e\u0015�2�Q]n�\u000b�0u{D\r_�J~�ΰ�Bp;\u0010�=:aX\u0001��4��g���\u00059Ȏ�\u0011�\u0016�..Y@�D�\u0011w��ʖ�*�q\u001e:�-dE\b^ �\u000f\u0012j�e<�9�qPx8�a�\u001a��\u00149�\"�}�X���\u0000�\u0019�\u001c(�מ�\u00199Յ�ڡ���\u0014�,䊝SJĦO0�=!D��,98!���\u0012�>�u�%٩A�H^\u001a\u000b��cc\b����ڠ���\u001d�\u000b6m\u0002s,\r\u0011��\u0002Z�9:\u000b.o\u0012� -kXm��\u0001�{̴��h5CU�+\u0018\\�G��������\u0000i��Q��k'$\nY\u0013��\u001e\u0000X\u0000?ѣA=�\u0017 ���br{�O\u0015)em���gi��Zb��j�\u0011�����k#��\fz�J7�\u000bEZ ��s\u0018�ŭ�wMy��hv�2�l�O��]��U_\u0017��\u0016��<�\u001fό�����$\u00177\r��p񑽞��o���?�h\u0003���f�͘>w�ۂ�\n�v�,2)�bvzZ\u0014�t2N��\u001b'�\u000e��Y�u��'���_\u0007i8.�)n!�����q\u001f\u001d�\u0000�*�`(��|�+) �-�\u0015JwὈ�\u000b)%mۨs~��\u0016I,dt�#g��$\u0003z�R\r�\"��7\u001c87�9�\u001e�\u0002�JγO��S:ee�O�\u001a�z)g�\u001dH\u0017Z�\u0013�AQ�\u00174���cͯ\u00148��'<؛�����\u000bYp��\u001d�|ǖ�^uOq����Д�S����\u001f\u0011\u0007En��\u0007\u0001|��7\u0001X��X���G��Y�{��4���R�A?;#\r%�/[[*\u0019O�r�\u0015�x\u00040e*�󆪕`\u0013�B32[\"D\\�h��\u0007)�9:&�\u001d\u0013��\u000f�{Z\u0010ZY@��E��]_���\\N[�W�nsʼ��\u000e�r�����A�\u0012~��_ׂ�<��&�\u0004\u0002뒥%s�.��f������3���Hy�p���s\u0012�ϵ\f�o��*aN3ԟ��4��\t/�\u0002�p\u001e�{�We�o����1\u0017u�4t�\u0002\u000e{B��v'L����Ϗ�Wr��g�K���\nV\u0003��M\u000f\u0012ls��H\fES���q\u0001\u001e��\u0013�����ĵ�鏅j�U�%�\u0012�AR�\u0017H��L��ex��\bH����!١w97��l�\t��)[-'��}�J:Q�7���婕\tc��Uj��L�o��1\u000e���R�8Ut@\"���5� �\u0007��t�\u0001\u001e\u0013�2ϕ���i�\u0006����u�r�����\u0004kns\u0014\u0015؟}*y_�Cd���#*;6���w\u0001���O�����D�n%�Q\u0012��U��B���YQ�\u001c�@>�p\u000f;�\u0012��7R�u?�f�L����U��6,;�Pˢ��l�����$��S?yx;u��Xo½�$GL-�B˯L�\u0007\u001ek��~5������m�y\u0014�\u000e���Ph�/�\u001a��*��\rp�i� \r�\u0002L᫃͉��\u0012�k߁��\u001aT1�T\u0016���*n���}W�82���b]s�\u0013��Q%Q��A\\�\u0017\\���d\u0005+�\u0000��KG��}\n\u001a(������1G̅�E�2�Q:/�DZ���\u0006�\u001bn:�$�.�0S�%�\u0012�*��6\b\bw�QO\u0006�ԙ-�Uc\u0000\u001c�\u0012m0��o�l��4�t�K�\u0002\n>Rs��6:l��\"_��R�\u000b�����?1��X�vx�q��S*\u0007xe���\u000b\u0017�&�R�H\b�^1\u000b\u001a���9�z#\u0000\u0014\u001c�\u0006�ّ����\"^W�:���7\n�ڗ\u000e�\u0006�\b|��\u0006�\u0010\u0007ɡ4\f�*Ik�z#\u0001�zvd���'��Z��R��\u0003\u0013./lB\u0001Ҹ\b��\u001a@|c�0���4�, �\u0004�\u001a\u001aϋ�\u00070�TQ�]\u0005�i��\u0013$�'pŌI�����\u0010\b�{2�ӲS�\u001e�9��)�\u0000}X�\u0016�r�v\t������F�p�\u0018_��}m\u000b\t�\u0000Q�C<��\t\u0018%�\u0012�A��\u0017p���W/}�\u0003�dC���h�q\u000eҝd�V2��jݞ�\\�h�\u0003�9C$�\u0006f��\u0007\u0011\"\u0011N\u0018�9֕�7�4\u001bNL���A�\\��N��|�������r\u0003L&�\u000f����df��b9g�YT���p����\"��CZ�L_\u0015��\u0007ʻrb\u001f\b�f\t��v\u00015\b\u0012�CP���R\u0013\u0018��p�;�D�*�Je�\u0001v�w��������҃l��\\�a\r\tfE���8�?u�J�fײ���N[t�T>���C%\t��.��\u0015�\u0011Sn�D\u0012�1�h���0���0 �#\u001c�'���mho�!A��O~�\u0007d�\\��)B$Ф0A�\u001c�\u0019f�s�GH���\u0013�H�4$q�͎�HP]A2>#̺|e���'�\u0014:n�\nj$KR\u0001��o����\"�ʢ\u0012:ԣ߮E\u0015�6�'�4�^�\u0018h��/\u0017�\u0014��\f�\u0010�\u0005\u001e�U:z�r����\u0003\u0005�\u0006\u0010��إ]b����\u0012J��'�7����\n�5�A\u0013�\u0017���X��Gx�<�S\fުbQ�3l\f�q��j��\u000f�����\u0001_��\u0000\u0016\rR�\u0012���.��h#�\u0002�}��\u0005�\u0007\u0015\u000emyJ�\u0017|�`\u0005s2���c\u000en�(\u000eP#kv��'�r^[���½�k��\u0010P\u0001O.�\r\u0014��ı�\u001dJ�1e�\u0000rnjt��h!����Y��`NC\\����j��8>�|\u001b�\u0018���uO\u0006�V�\u001b@�p���\u0004t��_�p|��pdn\u0006�ܨ�\u0019���\nEPڵtu�\u0019�\u000f*�I�6*\tޣH<\u0007Ë[��j\t��Z\b'\u001bZ��H�\u0019Jmԡ�R\u0018w}\rAu\u001d�����Ǟ-��X\u0006�UT\u0005`�A4�\u0017���X��B��T�\u0006K�%1�fA�Q��آ�&.�(�\u0017��+���v\"��\u0012�,�@��#E\u0019��\\p$\u001b�A�@��\n�/Y�\t\b�����!cC�J[@C��Ş�\u0004]w�Q���@���L�0\u0012�:�+Y\u0001\u0015���\f6�!e���{����X�@2�\bZ�j��\u0019h@\u0010�~TQ�\u0016�%[\u0014���`�{����ff\u0012u]a��\\\u001f�L���T�lo��`��7t\u0005�n�kd\u0019UL�]�`1ҟƇ1�\u0006g��Z�X�)�BU�?�\u0019E�����\u000e�T4\u0011\u0004�x�$o\u0004�:��\u001c\f<\u001e�~�Bf\u001d��$�^v��O[FA>��w�\u0016\u0011A�F����M2{\u0004R\r\u0007��m��\\4\u001bKUD{쀣A&�\u0017���X�.K�C�'�E=�\f�\u0014\u0014��3�\u001fj��\r�%\u0006m��])7`R�W|��-P7�h\u0006�^�B�s��ի���T�͈���\nsD\u0001i}x\u0012O�~\u0018��P8�\u0005\u0014\u0012�!I�V�H�\u001c\f\b�/\u0001!dGS�<��ncP*�\u001c�p\u0004ǡ̚c���,���FDg�Z\"H\u001aEݹ�C�=���m�ڷ��\u0002\u0013���7a���e���i�І���ƚ^4|_��F�,_\"^a��ŊG�?Ϙ(�F�\u000f�1&Ll��?��ю��̠\b+.+\t�!உ�\u0014�9�\u0014\u0006^O5��\u000b�Z�>�@#�;3��R��E\b��C�\n\u0004�m�F�����\u0016�G\u0012/��A\u001d�\u0017���M \u0002�\u0001k\ni�jp��\n�\u0011������\u0012\u0019b�A�x�g���Dm�%\t\u0017�\u0001�\u001a�kxP\u001b`��)�x6��8��b��d�{�]c�W���AO@_�.�\u0019���h�%p�W\u0011ѡvs\"�gn+9�z��:��%~Dn�dZ�N�9N��\t%Zo��з\u001bm2��Y�.���|\\\u0016\u0015��C���\u000b`�V��\u000b�%��J���s�ʓ�׿/P��n6�Ļ��\u0019����\u00156~�q��P����?|M[�\u0004&��{#oR��SS�fP���z?0f\u0015i�;m��\"\u001e\\s\u0010_Wt\")`D�Y#�H\u0018���N2S\u000e\u0018a����FIԔ|`��A2�\u0017Ԁ��bd\b��&�ȇ|\rJ�\u0012(UgRDZ�]\u001a2\u0014Q���\tg\u0006�f8��IK���k\u0015z�7V�\u0012'��X�*�ԾQ�X\u001a\u001e��q\u0013zu�틂�[+\fK�\u0002�m Z#\u000fi!\u00061�\u000e���9^�/,�\u000f\u001bm����F���\r\u0004��s����\u001d��;�H\b�[���\u001d�,�A��l�ּXv�>\rg�K���Q�\u001e��m�<\u0018U\tڟaqgJ\nE\b\tA��8����\rd\r��C��\u000b\u0016\u001e\u0016;8�\u001b[X��\u001a��vA�p#��2��C%�\n[���ۜ\b�⾚8Z�Z�+��p38��ؚ�6s_/?�'R]UP�\u0015��\fݞ�n�-d�\u0002�\u0006�w\n$��§��k\u0017�_\u0002*r\u0010�A7�\u0017���c���\u0003f\"�اK\r�]R�8i��S.\u001b\u0014\u0006\u0012��~�N�ۤ�-Z�&�U`+�̱��%r��ǒ�F��eO9�lu\u0016\f��]�ᅳ��{1��,s���\u0006#f\u0016@'6�\u0011w#����(�A����\u0018Kr�Sߧ�&\u0010X\u0014\u0017�\t�]��U��*N{�\u0005�\u0011\u000fp@X,\b�\u001de-l>�\u001d�)�gT����3�RIj_k����K���\r\u0005\u0001�{*m� �G�j\u0002�z\u000b�5R�\f��\u0001k\bo�\u0012�\u0003�����Ƨ%�%)\u0012*�9�g�Rz:|��5���qJ���k�^$��\u0004q\u0016mgtpr�\\0p+���\t\u00029\u0019�ޣ�ݖ�C_2d���=�`)�Z������\u001b�V�5��Q��\u0010�A-�\u0017����c�\u0011t���ّ�y\u0014\u0010&W�13@��\u000bќ�3\u001b\\ֈ\bѱ��޶��\u0005���Z�\u0001�\u0006\u0013�p����\f\u0005[&#MǛN�[�-��\u000b<5\u0018\r$��lF��V�/\t\u0014\u0001=��\u001d�E�>�\u0011��Z!hb�g\u000eW�ͫ*\u0012\u0004\u0014%��2��\u000b\u000f����5���P�֋\r�Ü�\u001a�C���b�I\u0001�{�\u001dL�1�g�\u001dy0��{��b�(@�1\u0012/sGо��~�$����ˋ��<���O�ޘ@���,����u?vaj���\u0013��+J:?@.�y��}�\u0003\u001d��\u0000\u001f����+s�\u0004\u0000\u0016/|�@�\u0012_B���I\u000f>P1x3ij/�&�]��Z�q�/\u0002��*\u0013�AG�\u0018\u0010���b^1&��\u0019\u000b�j!�:�\u001d�O�3|,\u0001�}wg�t\\\u0012��ڡ��r��\u0011��h���\u001f\n�A�\u000f\u001a�J�L��3��\u0000�[�\u00001OiL��pH���\u000f#n��SXA9=fkT�\u000e�\u0016�\t\u001e�2.eg�Jc����/W_�b�K����GN��v\u0012\"b\u000b�\u0012\u0003^�\u0007���z����������F\u0004�Q��s\u0011��;�[�\u0015\b�~��\u0017���\n��J�\nE帔Zl<�C�\u0002��=P\u0002\u0017�}&b\u0001\fJ(^!��z�\u0001���L��;�[M/g�[B,�\u00161\u0015c��\u0006 �Cm��p���表ۊ�}�\u0017����!���o�6�g���/?��\fT=�~�v�����\u0000cm��oK�\u0013��\u001eu��\u0002\\wO���+���\u0015�AB�\u0018$�����T6n��y�(֚L�/�\u0005��\u001d�6�|==��\u001a��pp\r�%�RLp�(�]*�8�ɬi��9&���\u001a\u0013\u0011\u0018\u0002dAK�K�:\u0003g(��A� �沩F<'w�ĥ\r��\u0003.�{wY�J�\"�)'��+\u0014|��e�\"I\u0006\ny&\u0003�O\u001ev4�\u001d��a��[�wm[��^()�C�\u0006\tx�\u0017\u0011�?��_8�����\u0017 \u0014��2iii�Ɩ�D�n��[:a�\u0017�D\n��}`},k\u001dZ�\u0019�|�\u0006In�b\u001eo�N��*��$� (⬇��GS��̵7:Uz�^6�N�\u000f\u001f9}�\u0011�V�\u000eW*Y��8���\u0001\t�\u0005�/\n'M���\u0018�\u0012N\u001d[�\u0002M�ۣ��1\u001awGg�;�䍊�Yw��i�\u0001*0\u000f�\u0014�AK�\u00188���\u001d�\u001fa�����p�Iy�V�A\t�����r��c�؎\u0000�t\u000f�Lm� �r�\u000b�L�?�\b�N/+VW���\u001e�R\u0012/PW\\4\u0007���S�q:��\u000b��y\t�\r��|�+�D�ܷ�\u0016p�\u0007�?V!�ۤoa\u001c�h!��P�\u0018�/�ȍ�~��'��l����Ӈ�\u000f���\u0001\bL�Js�\b������*����l�p��`=��I\u0005s�@�9���\u0004\u0006�k��X�܈�*�Z����\u001fB��+��[\u001d������!\u0014\u0013�`$\u0010?\u0000�\u0004%\u001e#�\u000e@\u0006�\u001e��\u0016,��\u0015\u001e�\u001e\u0007�\t\u000fS�!N�\u001e`����\u0000���ʽ.�z|\u0014V�+��S.o�TX����`�Ԉ����(�XϏMZ:�[,\\Z��AJ��%\u000ehP��\r�v�\u0013�AV�\u0018L���!�]�7@q��\"��~\u0017eTpv�\u0018!\u0002Ɛf��\u0006�A��N�\u0012faC.P��O�{�ꬾ���,S�X\u0000�\u0015�x\n\u00119d%Q�\u0015���~\u001c<�Y.�&����yO[R�*Z�����>dk=\u001d\u001c�K�\t\u0003���j\u0014�_lΗT���u�ݼ\b�?7xD���(�.��F������\u0019�od�@\u000f�тT\u001e\u0012%�p\u0001v�\u0002�f��\u0001������}�[\u0010M�F�ϿK j�Y\u001c�B�\n\b�\u000b��\u0017�S�fZ����\u0004ҳ��l}\u0000�J:��~��e *�L^��\\E�\n9��,�{z�Փ�;/��\u0001�'��S��mu7F�\u001f�8�\u0012=w��D\u001cR�޼���\u0015�[\u001dy�oa�s5���O\u0019 �\u0010a����i�w�zCuK󸜰?\u0013�\u0011�AB�\u0018`���`�H=��ߎ:�P�T�\u00107 \u001a�\u0002��p����Bj���{��\u001c6<��ۊ\u001f�ea��\u000e�*�\u0005��=rG�;\u0016J��;t�X�n\u001cS����C�\u001cT)p��!����\u000e�\u0012���\rԚ�6���;��k��wM��0�A>��}�V��f�\u001b}��\u001e=a\u000b?�_���5�,fI,�'�1\u00191��淇����s�p?68f4��g\r\b@�=��V����ɰII[y?%�\u0013rZNp�\"{��\u001f\u0011��o�\u0003�t�+\u0010�f���\u0013:���F��|riV.F>x\u0012n�3�\b�k\u0017��U(`�� �\u0003\u0016y���?�Hb�aȰz\u0006S<��J\u001194���t_��\"9n\u00107��Z�A�U*h��*y\n�mz$�\u0013E���Af�\u0018t��L��\u0010�\u001f\u0006\u001c����$\u0006�x��ּ�^�%�ā�E���Ш�!��$�j=\u001e�w�,�ԥ\u0017��\u0005x��\n��&�õ����L/OQMP���)P�\u001c��.E�\u000b\\�\b�&f�\"�2J:���Ԁ\u0007�~��{�9�\u0001#�\u0016�*;ml��L��ś@�;�}\u0001)�_x���i�X@f3x�;%�zsQp�\u000f�\b�%*}i\u000bꩶ��\u0015Ў�)2\u0002%�?h��9���m\u0018)��\u001f\bf��\u0004du\u0018�L.�k\u0014\u000f�K�u\u0003 <��߾�T\u000b�O\u001d1�v\f\u0007C:���&���� \r5��9��Ϥ͇�L%�ӥ�kI\u001f\u0016'~i�^.AX��xb\u0017��Z\u0018̏�\u0018ڞ��y���1�����s��D�\u0017+���ux/�qP8�~8R�\u0014\u0003�X+\\���\u0001\u0000���\u0019��α�ԋ6�A1�\u0018���M(r�\u00035�| \u0004�\u0011�F^���V�����*\f0�R����z����� �kD�n��\u0002�Y�}'\n�~~����֢��\u0004|����0�M��\b�Y\r\\A�P�Ķ,��U1\u0014Vye\u0016��r�I@�G��\u000bR��\u0002�Rq߲c\u0001������Lq\u0001\u0003��BC\"�C\u0007�i+�4\u001b��+��'F����㦥Q�\f���\u001b\u000bG]M�%�<\n7�p���a�\u0000�x��J\b8�f�w9\u0000�\u0019\u001b\u0014Rn\u0016�}�(ɁRC\u0000�\txzg�\u00130�\f�\u001bKl����/\u0013T{y�w�����U��m\u0000\"�&FR�{��w\u0001��Ɵ�%��2*ݑ.�\rێ�����\u000bl�xy��My0�\u0001X����A/�\u0018����s��=��~Ϸ\u0012K�\u001a�\u0003�O�̭Z�ܨ:���Q2f\u001f\u001fڥ�sh�V��G$(ۺ�Ŕt���d%�\u0002&\u0007�\u000e��הv��\u0007\bIe������\u0019��\u001e\u0014R\u001f\u0017��fY��T�=L�ɟ*b.���5~ph����'��2F/��\u0000cR\u001e�DT��ë�\u001f���\u0017}�;;e\u0019��rU*iG,�*P\u001a*�u�\u0014��j��\u001d�\u001e��\u0018\u0006�\u0010���\u000fA`�&���\u0002�^G�\u0003F�M��ko�S\u0018^�w�M���i\u0018D�1\u001bjH��b-9j��I�C���wH�|�Rv�����^\u001bF�W2�\u0012p,���\u000f�Ď~�q\t_E\u001aE|\u0019����$n�f��j\u0018œ��\u0017�A*�\u0018����b�T�\r{�\u0005�d�n�l��\u0018Ā�L��m�����;�>�Թ���.�% �ð��`1�kO�%T��\u0007�p���L\u0010���=�$4�T�����\t\u001d�(�g1�spQ��}�M\b\u0017\u0004\b�,^bbx�xtѦ��52_.�W��3��\u0010s~�)����JG�p\u0004��\u0005+E%���w�y���+;�LS�c�`u��Q$\u0000O��Э%\u000e\bd�\u000f\u0016�[/_�����~�5�/\u0013u<��\u00196\u0012qg,4�&�B׍�\u0016\u0016�\f�IQnX�\u0018c\u001ek����)�~y�о鿒�N{/n\u001e;~E��g�*0q�\u000f�\u0019/\u0019X\n㖛��AP�\u0018؀�M����\\c�\u001b��\u0004N5fg\n����\u0007��an��\u001a\u0013�(\u0002�-�X\u001b�:��?v(\b�ph�\u0011��ܞ@<\u0018�\u000fRK�K3\u000er\u0010�e\u0002�\u0006F\u001f���86#+�H\u0010}�@�6Bb?\u001b�E\u001a`�p\u0016�X\u001dPk<\u001d\u0010��N�\u0004>��̂d��d��ki�1ًR� �9x\f�\u001fUEV����J\u001b\n�ߎ���a�`ݾ�����QX\u001e\u001e��ǺY�ܡ�)�WE�u}i\"7�!�a�\u0016�V\u001b���G\u001e'k�=�>p��N+Evp��w\u0019\\���]|�j���J���\u000e�\u000f��z\n��9\u000e\u0011\u0014���\u0004����k1�ױ_6\u0007)��%8C\u001f䎤\u000b��a\u001a\u0003�\u0019B��=��;�vO7�-�L�J\b9\"�q�m\na��$\n�\t��_\u0002n:�J�d�����A=�\u0018��L� ��\u0007Կ!0CG+ߘ��\"�4\u001f��3�����^�߅�\u0016��\u00112��2��Se�u��$�ջ6(�#�vRK�|,�\"Kdo�\u0013 �o\u0014=�&i\u001aA��p�N�Ah�d`�}������+=Ǒ��cR9\u0012\u0004\u0019\u0006=\u0003\u0016\u0012�ư鬣�\u0006�/�\u000el^\u0003?RƦxɌ�.�]�\f�Uh����E�w๩&J1aF��\u000e\u000f\u00078��c!ln\u0005�8�~U��U��\u000e�pf�Y\u000b\u000feoe\b�\u0004e:N\n\u00159\\�Ga���\b%<_�\u0015Q��\u001f!����j�\u0018�W��k�\u001c�Y\u0014\u001bV[\u001e;2Ix�_90�\u0013cZ�\u0012� ��\u001d%�a~V�g\u0015��\u0018\u0016�Z\n`�HR�\u001e\\�_޷�\u001b��\u0000�\u001d?W���e�\u001b�A<�\u0019\u0000��L�h�\u0001]�A����0N�\u001d]�2�19\u0001]\u0019������\f�Y�7ც׋\tF4�T\u0011�+L@���\u0011�Q��|��{m��:�\u001a\u001ax�Cjtm��k)x�Ov\u0002a��\u001d��4�Μ�,��I��\n�-S3Z\u001b\"~4\u0017��\b��|\\�ǖ#`�>Óp����t?�\u0010�\u000e\u0016\"@\u0013[\u000f��y\"\u0017P�����c��9\u0003��E9��V��F��F]xU*���T���v����C���\u0003��S��EA\nNe6\u0007\u0019�\u001d�W�3��f�sH�_\\��\u0017q)�{�+�EŐz_5P�koׄ7S\u001e~�(�\u0010�(\f[�/!�*�`��@|k�%���\u0005��#�_\u001ec��\n���\u00182���&�5�ʘ��\u000b�\u0010o��AH�\u0019\u0014��ܫ_�Z��9�\b����f�Dz����H�*a\u0018��q}�\u000f�f����@�%\u001c'6xY�Ǡ\u0015K�f�l\u0007�\u001a�B���~�5X�Gi�ٳ M1���cV\u0004�N��\b�*J\u0002P�o:��߭��`$�#�&\u001c_�ۄ�\u0002�˄�y\u0013}�\u0001�nM_^�1\u0015����\t��*3�\u0013��h\u0000���Д?��\u0018�\u0015a7��1��Μ/8�OHX�0��\u000f�\u001a�)4K\u0014�ö\u000b�X�[�,IS(�H\u0006b����gD��G��\u001f��\u0007\u00069 ���DB�^��\\s@TI�;�8FF7r�U\u0012j�\u001f9�\u0000���\u0015����\u0007%\u0015\u0003�H\u000f��ipQ�\u000f��\nX\u0007YN4.�J��D.L��sVM�d�=5n���Ew��!m4a�\u0006����l�AC�\u0019(��۸���D?l�9%�D\u001e�U�Y��h5m�\"y6ݠ�\"�!�0I\u0006-�\u0013\u00079a\u0001/H����q�.�\fuj������\u0004�\u0004�\u0004\u000b\u0012�|�����4��%��\u000f\u0016��\u0004b\u000fI}�Yۑ��Ld�H\u00063�F�a�2������ܹ�Ʃn4�E�WC�^ij\u0018|�\u000b%\u0005��GD��=�\u001eR{��MV>�X�㚁�/]�� l���v\u0002I�J�\f�;��@S���ܓ�Ϝ��{��׀}�0���H��T\t��{�j���&wz\u000f�>�*��\u000b>���i�j8) \u0017[X��\u0006\u0019�W5�Y�2!P΃���3�M�+U�-������2�\u0002Z)�\r�/Ar�\baO�\b\f(p�Ms��\u001bk�X$��\u0015���8�k�A?�\u0019<��L��%�Eg�xN2rB��\u0018���¡Oe#\u0017.�Nӟ�\u0001�9c<��K/\u0016���M��pIV#f\u0006�\u001c�|ځչf+\u001a�!�{\u0018�����ec�ޢ0��I��Yl�3�#\u0014g\u0016���g ��?:~���\u0019��!\u001bEa-�]\u00185���`��)�l�Lھ/-T+[\u001f�7�F�\u001d\nͪ8��w�A�D6��4\u000e�O�f����H�$yI��T��d;�ro1\r��#\r��u@ƓR�@�\u0001t6S���|���st0�\u000b4��\fm}[�i`�0S��X�}� ͺS�J\n�\u0014�P�k\u000e^X\t��\u0012>2\\��q\u001dK\u0003�\u0004�|D�9�{����\u0014�C8~`���t��8*��Ht$t���I�8�{7Vd�A9�\u0019P��L�1��G`���``��Q����~�+\"Ыl�\u0010���}�c\u0004���\u0005���D���1]{�YQS\\װLȻ�A��\u0012���6\f�h�;�\u0018�\u001dB�6J�w��lA��\n۴D������]�\u0007�\u0016�q�G��<�B}��c/�b�\u0011\u001b��\u000bH�G��\u0014v�B_�M����\u0001���\b�h���(\u001fB��|��3�1\u001e�'k�0��G�r��ꝸa/HEܙQ�)\u001aT8\u0019\u0004�x|x/�:aI�gس\u0012��x�]\\�&.����(S����\u0006\u001c��KE�=\u0001$Cf���\u0002�P�O�JA;\u001b풗BS]\u001d��\u001e�/�0���g���^���lo\u0016�\u0013�N���h��\u000b�'&�,�\u0006$���\n�A��\u0019d��}b��6��ġ�li\u001d2��Ae_m��4�-9\u0010��\tխ\fG�p3#'�)w�w���\u001f���\u000f5cp4�k\u0010�l\u0018�N1t�H’�f#ڒ��\u000f?��$CiV\\�{\u0005Bt����jCXGD-�L�\"�\u0000�\u0010aY��(\u0015���\n�s�x{R`�%ÿ(�e:C�����cdg��Y�>m\f\n�umN\u0012�m8�0ۿ@z�P�kc���\u0003i\u0007\u000f������|�N�U���q\u001e�\t���SZ�\u0017��uҁ�\u0000�7\"6\u0013gԭ�\u0005}���+��}��\u0013'I����>k~,b�\u0018�q����9#\u000e�\u0000|X62�7r� o\u001a���m�\u0010\u0013��ԉ����D;��\b�8[���\"N,��>\f\u0001��\u00173t���s�6��� \u001aU�)$���j\u001b����.��V����ԓ�%=.\nn��w�\u0000��k8���4Ԯ�\u0010B\f��$����\u001c|𬬢\u0007B=\u0014��\\�\u0019\u0004�\u0004�7\u0000R�� W��\u0002G,J�A��\u0019x��}b�����\r�����\u0019qKթr�\u0002\n\u00063!ͯ\u0016~��\u0003@��e\u000e3S�\u0018��U5��zc�^?�\u001e�K\u0001��\u001b\"!\u0019\u0002sq3�\r��6����]��\u0019U�w����ⷫk\u0016��P�̇2�\b`�r��y�Xde�k�Km\n\u0017aB�\u0018�lW�l��-dI��@�|�\u000e(\u000f\f�VTy/�WOWq(�p�\u0000�iÝ��. \u0005D�p\u0017f�����\u0003�=�\u0012��Ni���#�������\u0014�CՂ��?����\u000b�5?�3N���M��\u0014'@�\bB\u0010\"~�\u0003,q]�`C8\u001d�\u001e�8#E�n��\u001b��6%\u000f\u0007��6�\u0011��Mft11�Չ���3�\u001f�,�EHǶ�Z�d�M6\u0003{*�9{�F\u0016�-�m*ؗӗR^�u��zpD���\n9���шy�\u001a��\u0001i��֥\u0017�l��\u001e�\u0017l\"�]ЪA�˗b|s٬�xX/X=d\u0013�A'�\u0019����m�G3�h���\u0007c\f�].d\n�dYC�����'`�\u0010��;��\u0003=��\u0018(<6M8\u0010e�}Ϥ6^�Ơ���fɦS\t��b\u0003\u001a�\bo�}&\u0016\u0013Zڅq��0}��\bq77�<\u001b%\r||����'\b�7��1���!=�����S�$Aѳ�3��L2c�5m�9�tS�6�y��=�\u001f��\u0013~�',�\u0000\u0000݀�N��-p�����t\u0016�s��>�\\��x\r$.=\r|�}�\t�C\u0000\u000fC+h��'�m���!u\u0004R\t#���\rP���{�\u001b�\u0017��\u0006\u001a�LՖ���H~�ZI���n�93\u0000U+��\b\u00013��\"\u0010�Svig�\u001a�\u0006�~r��4<틄@�A%�\u0019�����T��W`\u0014��Dr�`u��\u0011��\u0001\u000bj\u001fu� f��#>�=`����42���\u000b\u001bӲ�\\�}d>�+��]����T�����փ�D佦��B�I\u000fH��s2�\u0004��\u0019��\u0002�xX\"]���1\u0019�t+�����\u001ee��\u000e�GϪwQX����gh(�\u0011���\u001a�\fG�}��\u001e�0�!�\t,�\u00054{��ޛ\u0007j���\u001eepv3�\u000e\u000fQb\u000e�\u001f\u001f��1�\u0005��|*�fr��\u0018C=8ڇ�Lи���i�{�}�k���\u0018\u0002k�\u0007H�O��@�f�\u0012�\u0010E��4�\u0013�����lz*_sX�>=�h��N��ܿ>�\fFO��ԙ\u0011ވ�\r @б���A$�\u0019���L�\\@z9<��.\u0013u9T&\u0000��wax�L�\ro�)��w�B�p�\\\u0010Yq\u001dL\u001a�-P����b���dCq���x��\u001d\u001c??\u0010�?s3�\b\u001a����\u001e���J[-�\rZ�����1�<\fg�\u0016�} �B�M�!�\u0007�\u0016�6hJu�q���tc�\u000eD��^�t\u0006�\u001c?�A(�\u0019Ȁ�L�P\u0000�2��B/�B�\u0000�\u001e�&�\u0018�k\u001c�\u0011\u0014��9c\rz�ϻ_\u0004֛�ݵ��j���v{o�8�\t�]�\u001bV�!�ʳ#m��E��P+w�/\u0017�7Ƴs��\u0007�L\u000f1H�޷ѯ�5\u0013\ns�\u0014\u000f4�J�\u0002�Ԏ�@�8oe\\-x�\u001a�̺�����\u0006�=�Ng�.\u0007.\u0013]�:6~��w,��Zx`��-��M/D����ؐ#�-6�C���\u0003?h��\u0014��0��\u0003����\u0005,iӂz�՚\u000bh��.�F6mV\u0000\fHs��u\\�ė�j� 7!\u001a�>;M�D�@�2�H�,F<'O�b��r\u0003�=�r`H��0�hcskB\u000f�\u0010a�o��\u001f�Bo��ܣA\"�\u0019܀�L�|[\t�H�&[��\u001d�m��J��\u0013q��\u0013�O�Tx\u0019[�jL�}�ɐ5:z��\u0004�(�ٽ7�B���>�&\u0006\u000f��`��\u0000�\\~���`�-�I�/K\u001bG��\u0002����\u0015�D}m���(h�Q��И8���_4]\u0018��[���Oُc��u��hƘ\u0011�́vZ��߻��9\u000e�,$1��%��r�SXD\u001d��U���e�N�8��\u0000!Ṿ\\�R\b\bJ+�x�\u0001u�Im��N�\u000f�Gy(�s�G��%\u0005��#�\u00159�x(�\u0006\u000f�\"2�6�\u0007�c�}���i�C!Vgl�\u0017cCs'z�@U��r\"�X�֬��fI\nrc���\u001bv�A!�\u0019���L�b\f+�\b`�K릝!0��q�F��ȀN�ዬ�����{�$~&X-��\u0016X�Yw��\u000e�s\u0000�Ģ���]��-��ķ�x����#��\u000b�T8��mJ(\u001ca���)V\u0016�E�\u0015-ں\t��\u001aH��t�\u001fNn�ک�dF���PE�~G��=Rg�v9\\ѣ6\u0017���\u0014l�lUB�i���+�{�4\u0014�zn\b��z��5\u0016P�:2�n�p\u0007��T\u0005�\u0000ư�Ez���bT��PI�CfB\u0006\"\n�\u001e�D�׫��/d���\u001a8Z��ts�|\f�\u0015\rx�/w�\"\u0012E(�\u0014H\u001b��2^X\u0006��#uԴ���\u001c)��w��\u0015I�_5���4P�m�A4�\u001a\u0004���b} ��h\u0002蛲ӹMt�_B¡}�R�\u0014�=��v\u0010E�y�}�13�\u0006Q��\u001f�\t�`[�\u0010����o+�T�NSL\u0010KI�\u0000�]\u0000*��h=��&+�]U گ��)�\u0011v&䐎��0�\u0006F��\u0007�\u0006y��\n�v� vZ���\u001dD�\u0015���#��|�N3��y��\u001f��A4�\u001a,��L�y&�}�S�\u0004[�N\u0006Z\u0011\u0004-�\u0004=�\u0015��>\fs�h�3b����&��D0Ӹ-�l�eF�\u0013�w^TV\u0016��\u0006-jk�o�T����3���eݞѬ��\u0001M\u001aۀ�+��\u000f��*\u0010h̃v\u001dZ`�\u001b�� ��\u0004��\u0000z\u0014�`Lx\u0015��Y�\n�n''B���\r~n���\u000f ��ye\u000b�Q���\u0001�x���u��\u0005\u0003�ȫ�V���B|\rd��3ys-��l�?���RZ&��5�`���TFD���\u0015&���=�.$=X_��)�\u001eM�`�S���6���� n\u001c[\u0016��� %^n\nİ\u000e��Q+�A�:���[U�3�Z[�ߙ\fL�z��Y�-���6��r����AK�\u001a@���\u001e`S5K<���\u0007\n/�����\u0006�\u0001\u001d\u00044�ʃi\u001a���e�>�/����0����~��*\b����\u0001HN�y�A4���\u001a\u0014�ns��\u0018�re��\"c\u0018+Sm&IK�-*g�`�o���L�$D\u001b\u001a1�z����a2Xs��46�\u0013;���(\u00067�\u001bJ��\u0006ApO.Bٔ���fK��G�\u0017vq4U9��6�aƟ.v/eΉ��t�_�y(�\b�Q+2D\u0019���НZ���v3{��\u001f���2{�k���\u001f�检\u001e��\u0002Fg&\u0011\u0006�`�&\u001f8_h�� S4�O�FEI�\u0012(\\L\u0005^\u001a��]�P,��+9�\u000f�\u0011�7�#c#=\u001a�a��\r�p�\u0000\\)���\b�Au��\u001aT���\u0010-\u0003\u0016�**+�^���#�æQ���4\u0006g�4J�>�^Yπ\f\u0005]Kѕ%�˲�=-\u0010�*0X�ŭ\u001f���R�<� �P�I\u0015���s)Ed�[�]�fb\u0016%�t��58�#��A�`��W�\u0010�r\u00005��\u0018����TKqk-;�\u0007~�\rzk|X\f�\u0003\u0001�G���\u0019b�,��\"+\u0017<@�\u0000�^y�p'�|���8_�(<~cL�U�u�g����\\10\u0018!�-��s7�\u0019\u001f\u001a�\u0017Q�w�c\u000f�k��\u0002��o�_e��b�&R���ӌ\u00005���-�0�3\u0004���,\n\b��.p�ۖ-$A�\u0019�n�\u0013�k\u0006�Q�\u001c�!\u0000\u0006�8Ft�\u0013\t\u0016M�e�h<��\u0016���&\u000f=B�V\u000e���\u0006�uH��>Z�E�h�>$���X�%1�V��\u0011���}�I\u0019�\u0010Ü���,\u0014`��F\u001dĥ�\u000b�O�\u0016��\\��A(�\u001a����hq\u0000\u0001��k8�#t�\u001e/l䏹�\u0010&��`\t�2�1Ϫ-S��F|&M̲B%��ܫ�&\u0011�hW\u001e\u000b\u0013`\u0003C�\u001e�n�h\u001e%T\u0001B�8\t��#�s\u0019\u0019����9\u0002��q�!\u001b\u0019��$�w�{��?i�#�\u0006�+�2�\u0017~����m�\u001cO��\f���\u001c�(l�*�_�3,Z-�\u001deLC\u0016��nOA��7W�dK�F��Z�и�\u001b�\u0015����k\u0007i�MOb�5\u0006�i�\u0010ྡ��w�0�ĕ-��7���\u0016�e�z.#������C�j�s{�\u0017����0g2�[�ݫ0��\u0016�x\u0013\t 0�_D7��#F�3'�I�j�'�T�\"*��<�xE�\u0004\"^���A\u001e�\u001a����j�|6Q9\u0006�I>���^h\u001bw\f�^�\\�\u0005\u0015��'\u001bn�i�'\\�Pxd��\u0012��Á\u001c�r�)$�\"'\u0012\u0000���瀉�`x��\u0017��\u001d��aŝU\u0014�O\u0000� 2��\u0010T�\u001d�2~\u0016\b��ٰ��ȧ?\u000bm,\u0014\u0011�\u000e�\u0002\u001c�wP��%�\u0015dx�\u000b��\u0019���R9\u0000j����\u001d�\"����V��a�6-Q�e~u0�T+A\u0004sJ�0�X>�iBu:͟\u0006��%��L\u0006���*p���e�����*+)��\u0001�?K�1�7�\u000e�wd�w����\u0018�\u001b���G�_��[�Ӵg��\u0001��F?�� Ќ\f�:��($U�P/��.ܮA�y_���A\u001d�\u001à��bq�\u0007ո8,��[t�R�\u0010�\f$�v �D\u0013���a\u0016$�SR\u0006}\u0010x&ZT�\u0015�$���vc$^�Q��K%I ���:�z\u000eKݲ\u0004^\u0005��^&§ڬy\u0007 h�v��3ɡ�Y���+�=\"\u000bW�i�2�Q8��b�Q�Po\u0011ψ��48����7��`��]\"/F����B,��1��S�\u000e�0�cMY\"]\u001bg����V��_\u0003����w\u001b�O-{߮�>U\u00135�\r���\u0015\u0013�a\u001c������?�^}�&!6�CV�%\u0003N��(��6�j䈎���B:�\u0018\u000b�t�\u0007\\}��\u0018���j���|\u0014�\u00023�4�;\t�\u001c\u0016\u0015�7���A$�\u001a����c\u0015\u00009K2\f\u0014#{\u00183$�\u0014j�� �C��\u001c\u0015\u0016L'$�\u0000\u0005�A\u000fb����D�5��nu�S�s�%\b�.Ye\\ƽ\f\u0010l�iR\r��\f��6B����\u0016\u0002�V��\u0002^@�A�dj}��\u0010�`��]V��!>&���\u0015�U����\u001c�\u0014|���@�\u000e9�̡S\u0015uq���V\u0016��\b�7)\u0016�+��:�*�H�'�VG\u0018SOfP\u001f�>�\u000b�\b�^���\u0012Tnb\u0013��\u0002��2����;d��Np�9�uL}g�9�CO�\u001c\u0019%p\u000e��?9?\u001b��\u0004\u0013\b\u000f�����B�u\u0005�W�#Jf\u0000mV��%|<[f����͐�;�Cw+��U9�\u000b:Z�si��A6�\u001a���g��Z��\f`�cچj?Ap�\u0016�\u0017��s\u0001��<6ǶQ�xI���x��\u0017�\u000e?�\u0012-]!\n�Uϑ��]�\u0013� R�\u0001n\u001e���\u0011�\t�s@z�Ad\u001f[�\u0018\u0011JM���+\b�v�(�\"D�p׶E�\t6\n�S\u0003>Pw�dF�,��A\"��i��������i�[�~�^�m�\t��/��a�\u0002\nj��@4thq\u001bT25[��\u0003�\tqTPH�z~ѡ�Y���[���4��\nv�����\t�\u0006�cخ��\u0019\u0011�\u0016r�8\u0014i\u0010^x��\u001b�w̬~1d$\u001acsZ���@�\u000f���?D*I�����\u0015@\u001dYz�\u00127�\u001e��ka���O����σ�0Q�\u00150���\r�l�\u0005���M��A?�\u001b\b���b�9�_{<�V�\u000e���\f5kZ���w\u0000$\\�����,������\u0011q��xt�o6\u001dt�ef&���Q�\u0006�\u001c�Ljڳ��4�+�S�O\f5�\u000bq��}k�e\u0005Pu*�%�\b\u0005�S%o̵���� �4�]���L�\r-�����܅X�m\u0016P�y2˺b��:ת�\u0012��\u000b��n�\"�ѱV\r�C4&mX�lG��1?\u0015]$����n�\u001fs�5ꈔ�5�?1�\u000f\u0006�.�`�F\u0012���>?\u0005�ۨh\u0002���5�\u000b�M�Ȍz͠��]�@�鴒�AJ�\u001b\u001c���h5�:2\u0019<6Tk!�+V�\u0013��s\f����8�\f6�l\\\"�F�\u001b�]\u0017\u0013\f�R���z����l�l\u001f�\u0019\"7̥�])�\tNV�&���$���.UR�����?�ؽ�\u000eH_y�(�9�\b,�5�v�Xɀ�B��#����;��g2պ���}��A���\u000e_9`i\u0010����_����\u0004�C#\u0010H�ơ\u0000T��i�\u0007r\u0007�%\u0004�8+���]`� K��ô%���&cR�\u001b�*��\u000e�H�?\"�D��>��ȿlup�RcOr�w��'$���l1�1����\u0002��Ɨ�`�(���\u0010d�\u0003m��8E\t�+��#�~���M\u0003�Y�>�0\u0010�.�\u0005w�d�\u0011��z�}ճF��Z;�$k�&O�\u0002Ub�%\u001a\u0002�^�M2\u0014�AS�\u001b0���a��ԑ����.\u0002�#;\u000e��[B��\u0010X5���T|\u001b6�R���|A[;Y�\u000f���bqMiUqz��4�Z5^�v��p/�Ɓ�\u001a�7+���=Ο�K�m&�*�.����\u0012&\u0003��#rC��X\u0002�M\ro(�=\u0002�\u000f�ʲ#��\u001b_\u0016���C@Q^k2�f�\u0016����k\u0004�\u0004�x\u000b�8�.�����h4T\u0011\u0013=�0X�\u001a_S�M�ʡ�\u0007�~G\u0001����ra\u0006�8pk\u0007��\u001c��FT�sY\u001e�xt�\u001b�\u001a��\u0000��\u001e~[z�N���ƫ���W��3��\\\u0007é�wv�\t�&դ�\n��A\u0007\u000f\t��ח$!)9�5�\t\\\\F\u001e��C��\u0012u(� �eW]\u0017N\u0002�~\u0002�\r���\\���_5\u001a��\bW\b?T+\u0002� i;��Spz���Ac�\u001bD��L�᳻ �\\֞�C5���ٔ�uyy����g`\t\u00023q�̿�o�--S�\u0015���ᢃ�\nuPp�t#��U�a��X�\u0002�\u0019\u0003@섎ѝuv?+.�\\��%G�\u0003��]_\u001e����B\u0017\\\u000f*\u0014�)�t@J���T9\u0006�\u001c \u0010�]\u0013n\u0010LU�r\u00063\u0014W���r;\u0017x\ng�3\n�\u000f�ߔj��R�o�\u001bM��>+{����\u001f��wɾY��\u001e\u0006 ��vqU�~��:��\u0012sj��U��:�p�F����\u000b����\"K��H�*�\u0007���?��[s\u0019�o!;��s�9|a�Yr\u0005_�\u0003z4NΥn�Sp�Mj�-\u0003l\u0010\u0003�Y���'\u0014A�~\u0003�\u0015/����4w{O��B׊���\u0000U�/Fi!��^\u0016\u00181�!k�I�)z1\u0002Ÿ�\u001b�\u001c�M��\u0004�\u0011�\u0004�ԣ\u0012j8:�\u0001qby��S\u001d���M��W���\u0012� y����QAw���R 䊭��#��&����;�@�\r��Y�I5��\u000e�Y��$��\u0012'�\u0013�#N��)l��\u0016�fS.���727sN���Ԫb\u0002>�k���!YBhPP�^�C\u0018T-���\u001b�U�\u0015�H�\u0015Q�\u0001��\u0014���\u001e\u001aj\u0000�\u001a\u0012X�\bO],S@��n5\u0005�Wc�Wz;ɮ�<\"���-��:�:{�\u0016<)��8*-��],cܹޕ�\u001b�S`3F��N9k#\u0001ؙlK�Ћ�\b ��Q\u0013�A��\u001bl��}b�\t�e�\u0004V��dW�2\u0003�Lӽ�\u001d(gq�\r���T<�H�d?R~$n�P\bY�>�>\u001f],���Pi�L��v}���P�\u0003�&�\u0014]|�[�5�Д)ʽ�0�\u0011���\u0006\u0013\u0003l\u0002��x���6ɖU\u0016i�\u000f��G\n��\u001b>�v\u0015�[�*%b��\f�>�\u001aG\u001a�C̔3\u0013\f���ܥ���]\u0018Jx�ƣ_O3�I��K�����~V!%�`b�Mg�8\f���J������lL�g��,���@�Y��M��~.�ꥻ\u0017WK�\u0012��\u0014��#�p�hn��u~:�+~�g���\u0007�F�.���9\u001c�<+*�`�Ձ������Ƕ\r0��Oh�f����\b-*|=q�L9���Ц�a(,S�ǤL3r���;�\r���[�����X5Po\ri3��F�Ȇ��M��\u0019^4�\u00155ⷣA1�\u001b���L��������>j�)BϒKHU�x\ttz�-�n.X\u0006�r�m>��6\u0000K\u0000s�B�*x��u�\u0016\u0003L\u0004��1;j0w�\f\u0012�9����~��\u0002�C�\t3�E�;,�D����\bM��@�璵E��w&0�}a(�C>|v��pb������Z�\u0016\u0017u�\u001c�\b��\u0001�/{�dP��>��L��CŔ���,;%�7cL�*Y��xҍ��8[�N\u0017@�\f�\u0012�\u0017\u001e��J���*֔���4X�\u0007�i?gu�9�\u0011�+\u0017����\u0005P�~���p\u000f\u0005�C���G0�l~D\u001e�p��Ԓ%S���������+�P�ő��T\u0005C!�j�r-�!)����i9'\"h\u0012�ZW>�A\u0019�\u001b������\bD\u0011��]7S\u0004��.t��\"����!�\\���\u0016��w�=��.\u0010�/��D\u0004�Tɢ0�N��l2�Q$�{��ykP�_�H�t�QR��kf�3\u001b:�ؼ��\b�\u0004����a0�5\u0015a��؏��+7P���'��\u001d��\u0007�������#X~\u0003M��)���X2:�?\f�2dP�;i?x�b\u001cr��\u0012\u000f^\u0017�@���iX��\u0011�;�lt6殸�oM���2qh�fx�<��-L�ƕG\"�9��pql\u0019\u0000��y�ǵO�?\u0001j�|��`\u001f잛��a�t\\���>�A-�<\u0015X��.֋�}������d:���oR�A%�\u001b�����O\u000eZ�-���\u0003_>��\u000f\\)�����Rƭ\u001e�Zr;�\u0010�]�AN�3\u001a����D�]O�Pgb���&�\nH���|��\u0004��P�Q�\u0003�\u001c�@\u001c��w�ۺ��M��_�Q�Q�`���\u0012\\X�B��R-��o�ד[\u0006#jU�R�~5@KoW�\u001f�T��\u0007���L���F\u0005�4Q��\u0015FP���B\u0017����e�\u001336R��JF9�\u001a�~�P�c����\u0012��>���\f�#��\\���Ʈ<\u001c��^!H���2�b�?�\r\u000bꀘd�Ϝp�5\u0003\u0001�8����\u0010<��4�\u0016���\u0016K1�-y���n��+U�\u0011'�\u001b@t\u0001�\u000f~�A�\u0012\u001a��V�A(�\u001b�������c�c?��@D�r*�'�=]\u001aZ��nY\u000f(<���Dz�Z+�\u0006�˔\u000e��G\u001e�����\u0006�ǐ��G�J���\u000f*��Vy��H~\u0007�P�#��>\u001fI�h?\t\u000e�\u0018m��{\u000e�_�*�\u0001�>���W�\u0015\r�vC�6�q�}\u001b�\u001d^��&H�_�iC������\u001c&�)���+����q��t�'\t\u0003Y�9�/�!�@g�wYE\u0000�\u0011x1�,�\u001eٸ'hۏʒ�}.!��Q�6��-s\u0001n�^��5��e(z\u001c*'8R,��\u001d`�*:���j�l�\u0014}\u0016����`�㟗��\r�\u0005}�Fy�S�Ӣg\rG�Um��=u�P����]�'����,\"�RvV�A\u0019�\u001bЀ�L�;�?7�qA�=�p��\u0014r��\fBC�'E��>�G��جo.�}���/�q�Z�\u0017\u001e#\u0014EH\n{��#o9\u0006\u0011Q-{�\u0000����\u0003o�c��t�\u001bMH�=n\u0017�aV�b����\u000fi�Ƈ�u\u0003�\u001c:b\"�\u0002B���j+ט��er\u0005NJ$�R�o��7��dz\nJs5uH�7�\u0018\u0011G�\u0007\u001aL[�Cz�.\u0015=��9:�̸\u0011hݯUWd3�\u0011�\t�\u0015���P��&���˞�ٌ�x\u0013�����\u0007�xUkz\u00198�W�'��w��uh=P����\\m {�1#\u001a�\"�-�\u0017'�0�@��&[�'ٜ\u0007�--d�A0�\u001b��L�-\u0014�Ԓ\u0013��M��b*�\n)���WQ�쿾a��91��P\f-\t�Г���dJ��1�Q���\u001e�g4�:�j�>����2��\u001dZ�\u0014���\b�rJ�L�hM\u0004XD?�̳?�,\"Ꮑ̟��\b�`\r�y\u000b�&����Ȃ4���\u0003H�6�<\u0012��\u000f�H�\bu�\u0003q�lu���v��,.�\u0010UAs���Q|��鸱юʰ�v���'�k�n�\u001c\u0003H���ן\u0011g&I��u\u0001�һ�J\u000e�\u0007�-\t�9�ѡΒ�\u000br�ë�!�SD\u0017�\u001d�)�\u000eZn���6]�\u0004����jd%9\u0001�AD�\u001c ��L�P[㶃�J-=��)��\u000f���\u0011�:FIgKJe�뮿w\u0014A�t8��ߊ\u0011�WZ�Ć\u001c����=�BF\u001f0\rq��|R\u0000��-U�ݼ\u0013A\u0001��&���\u001ab��\u0013��\u0015\u0000��\u0012�\u0011 \"T'Q�\u001a�y�[�������\r����\u0012�\t�ދfB9�\u001a:��a�6�\r-x��E[�O�U1IۼG\u001e���\\�T��8�2=\u0013� ���~�@�\u001fڨ4�\u0013\u0016FSv\u000e��39]���]�\u001d\u0004\u001d\u001bō�,\u00128�bL��xZE��\u0003]QEa1��\u0005�.gz\u001f]�#\u00037#�n�ZW�h\u000f�t?�O\u00175:#��?�f����d�\u001cTha����g%��'���\u0019Y̌o�.N\u0018����R�\t���[�Il��t�����AG�\u001c4��1�4\u0004�\u0005�)|>�@��Y\u000eY�\n�\u0000�r\u001cϏ��0��d9\u0017�R=\u0011�Ў%�hE�\u001e`����%���c\u0011�w\u0005��X�-���u\u0005F�����1J��#J��bv�X�\u0004�\u0006�\\:��\u0007��t�T�Wv�\u0002��j���܀��e��'�R�\u000eA�La�3P\u0015y`\u001f�XG�¤�r/H\u0001Z�5�HR-���w�\u0013�V���@\u0015!p�^��M>o[��O\t��&�rx���m\u001f\u0012)����]X�V\u00148�8\u0012\u0001�����7ʲ��\t�S�@��[�l�\u00006ʞ�\u001f\u0001Kw[Wq&L�օ\u001c��0f�`\u0016������P\u001e�\t�7=���&�'�[�����*\u0007\u0010�h5�>�>6�Ҩ��\u0001�\u0005�\u001d\r�m�X!\u00111\u0017��pS5�AB�\u001cH��I�AY��Hݭ\u001d7��l�j�\n���O}������\bzb+\u001dxA�`JX�eu�\u0015>�SF�:�=��m�\t\u001d4�|݌9]��g:�E�-.C\u0012��>���u\u00072�0�z8əB\u000b\u0016�\u001b�21��j����^��Cs�=�ֹ\u001c�\u001d�n�\u001c}�P��\f�J\"�\"�#n�RgJ�d�,��|�P�����4��.����q���-�\u0000�q&�iv\u0003E���O�\u0012�[t\u001b\u0004���\u00074��\t\u0015Qm\u0012?��Bii�\u0015�!\u0018��~�b4%h�7�\u0014Ԏ\u0015$�K��rs����6�HR����\u001a(]ǯƘ'Z�֧̻\u0010�K�n=\"Spƺ�����p\u001c��X\u0014it�#\u001b�0/C&��M?,�\u001a5���N��\u0019q�A4�\u001c\\��Mt�f�:\u000bsF\u0003'����ܸ��G�V\u001d&�t����P+��y=c�L��\b���\u000b�tXK�ey@���{}I\u0013#��x�|\u0019aHx6�\u0001e+�v�\f9�Iķ���ϿG�Q��M8\u000fW��\u001fR�f�m���|����\u0010\u0010hh�.��Θ�2mL� \u0005���~�5\u001f�\u0001T�..i�bO\\@��B�v��>��T�\u00073+�\u0019Sj��\u0010.\\�𕅈�{j�m��3\nY�1�h���|aY�i�%��P�F��t\u0016�S0���Zz�1x��%>�5��3��+\u001e�\f��_���dg��&:\u0019\u000f�'��̭��7Za!<�@�\u001c=��SɃ���Y\u001c��M�k���n�\f\u0007����q�%5�A��\u001cp��|���7]��eEg� 2���\fPe\r���+\u0006�(\n{p\u0012[&y���\u0016� �}�~Ky\u001d\\�\u001dz�q���\u0019r\u0018\u000f<\u0003;{�d&|6��\r�>�\u0002�Z]���4�\u0016Y�\u001f��m*\u0016\u001d�0\u0015^\u0006�=\u0004D�\u000e��+_.�b�\u0011��\u001b�����>>Tn���\n�i,*�=�E��~��겷S�\u001e�ބ�ɔF��*X��&��{\u0011\u0001a]\r���\b�;F�PӉa|��\rK����!���je��p2�\u001by\u0007%�{���sҐ=������Q�����Ӛ\u0014y�\u0004�p�_Ԛ��\u001f\u0001��X���n��g��\\���<٢\u0013�\u0002�l�!PO\"��ƌ�H÷␡�`Z wEB�z��րD���E:C�\u0003=����@\u00131:�k��\u001eA)�`�=��/�������\u0002�:�\u0014�����b����Z�\u0005�\u0014�`�a�g^\"Ѷ��i\u0010g���\u001c��ٷ���\nl�\u0010a]�\b\u0015�\u0011�qr�R�\u001f���\u0010!Y�����뇸B�-bU�\"ױ�6�T�p�W\tRi]��W�\\�5��\u001d\u0003�T_����\u000f�z\bodAI�S�4���\"A�`����D\u0011��EX���c�]^�\\.83Y��֝*]qD\t\u0002��ϝ��5�?ח���8ԇ�pB+�P�\u001c0l�\u000e^.U\u001c�[��th����$N����w�\u0015~b1?�'\b\u001f�dA�U\u0013}m�E���E(�I<5��Ulţm�A\u001c�\u001c���L�!O�٢����������\u0011�\u001b��s@^��ҺT��(�\u0014\u0015���\u0014�~\u0011\u00078�\u0005�<�8��W�±�K\u001ağ��S��RW\u0016m��G\u001d\u000f� n���\u001fϺ�e���1W�\nq���S\\%.\u0012�\u001b5�v\u0017_�\u001dU�tŝ�\u000b���\u001a��z6��j�-��q<�3\u000b\b�O\u0013��(.\u0003�\u0007���\b��_�^w6퉖�#[{�0��\u001db\u001d��K�R��h�\n�\u0016�p�jo��B\u000b��~�\f�ڿ\u0019$�!h�j8�\u000bԸ�2��K�Ç�-Yox\f\u0003���\u001cP|�&y�z7{c��z��in��B\u0001�=��F��L�JA�KSLEDh�+�%�i^���}���jI�\fjt{��_S%`)z �#1\u001fp\u0016r˄\u001e�sDI�4�]���_���ps���\u000bt�B[x�o\u000143��J{꫓�I�\u000f7_t�ki�\u0010)`7x�a�d��ʽ�i��@h��=O\u001a���;��(�&��4Ů��(Ʈ�\u0019|�\u0001\u0014��\\H�9��g4��|�HM��th�2�7��[��;\u0013�\u0002f{\n�\f��4�N\t��˦����)z\r\u001bU\u0007Y�G1���h�\u0010^�[)u\r�e��EB^��\\W���\u0010M_�\u001fr�W�.(\u0019�B:�>!\u0007�<\u0010@\u000bD�������X|@&2��H���qоzD�ţAl�\u001c��Mt�\u001a�@l�,��O��^��h\u001f�zH�\u001d�i\u0016��%�dS�Q���N�)G'`�Y\u0017��\u0016�SS�\u0010h\t\u0015�я�K5\u0002'�?Q��A\u001d\u0006.s\f�`\fG���#a�\u0010_�8��@�\u001c\rq��p\u0017!�\u0012�f�7��t�H����rS��x�4�m�b\u0001u\u0003Y�r��M\u0004��-%ڗI����U��N �\u001cڰD�\u001e[��\u0007\\F\u0003�Sz�\u0000P�R�\u000b4���9�M��\u0012h�z>R�E�F�\u0017�^��4\u0001K\f�)�[d��\u001e-)�\u001al��piU\u0006W\"썛�I\f�f�0]W\u001c\b���Ĉ{�<\u0001�#��O��\r���%�\u0006�p�{�\u0013��z���>�\u0015���\\z�pH)Z��S��\\�p�N���\u000e\b\u001c܈����w�}��\u0006����THb��޺�9\u0018���Ãt\u000b�;��r�y��$��A��\u001c���}a��]��4\u00126l��7�#�r\u0018^�yӡ�1\u001a_��U�\u001f��\u0012�\u000b�5�>��)\u001f�%�\u0002d l�\u0004�\u0018�0 ���Y�:���U|\u0006����\u0010D\u0016��)���Ym��\u0014yۗ��\u0003�9�g\u001aM�$�\u001e�\u000e�㬕�ļ�x�/�_`��'���|{0\u0007��7W�P�z�n���?���|\u0003?�Z7\u001a4\u0015�\u0003O���\u0001��H�6;�-����O!�ɧ(�lG�Y\u001dd��\u001e;�� �\b9�ס֗��r��\u0003װ�9}+�h���{ЧS�$����\u0001Z2%{\u0001hRJ�\u00125&N�\u001e��|��x���o��D�3@)0�~W��V�E�`�A.�z��\u00108�ɋ\"\u000e\b�b��f�/��Z��C^7�\u0015)Pt$�-�՛�\u001c`��+�����\u0003.��G;\u0014��o)\u0013�OF\u0015�Ǽ}u�e�?T��\u0012I\u0018������Y�-8 ��W\b�� ,К����A��\u001d\u0010��1��`�G����K�ە���\u001e\"M��A\u0016\u0007���yA�s�0��ʰ�T`D�b��y�\u001b�|��At�&Ԛn��\u0004K~\u000f;�\u0012\u0010_�C����3CNR�Q�d:�g\u0003��\u001f�M�\"��\u0013g��:A\u0019�Is�K��ܬ9�������j6\u001e�O��X��hKa�+d�̿���Fc�л�}�$fI�6� �m�`z/\u0013{]�/I���C��*���\u0003��YD�l�0}�\u0016I�\u0015{| nA��\u0012��\u0018����\u0010\r:�Tj��Ϋ�;7�o�m�PҬ�Ɩ.���q#%����b0\u0016�������\u00013\u0019��9�]����I�\u000b����~�F\u0005\u0010���L�J��A\u0007�\r�r\u0014\u001e�@��\b\u001f�&�K\u000f�A[�%ޭ��x\u000e=\u000b�+��u�\u0016�D\u001eGV�ph\u001c_\u0006���:�-�\u001c��\u001dT��Dp��If\u0005d�[n\f���4�j�;\u0001Ww��A2�\u001d$��L�\u0013\u0019�����jh�S��;a��3\u0000�>�ݝ�|-�6������\u0006�4�/ʆ�]�3�U�M�\u0001�fw�S~:��>~rh\u000b\u0012�\u0007���>k\f\u0011����z[\u0018�@�\u0001Z��'�.(�G�8�3�\r���W\u0000H�5\u0018��=�w��6��nw\u001bԲ!���L�ν\u0016\"]�n�T����\u0016�j��_�D�\u001e\u0014\u0013\u0002�\t�\r�\f&F�_p5\t�T�ֈ�\b\",r4r�,��I\u0007\u000b�!�\u0002�/�\u001e%���\u0017`W@Jϸꂺp�þ�Y5��J�F`�=p���,�@\u0016\u001dR�\u001b�'\u000eZQ��L���\u001dù.>\u0003x]�\u0006\u000b�\rV�)r��7�\\G�\u001fäv\\���(���\u0017=��\u000bؽ�&�+��6KuD��\u0002D�n8d�B:iK�0��A6�\u001dL��L�t\"nq�\u0013OH�c*\u001c�Q��3�P�U�)G�S�eX\u000f��Sއ���\"\u0001%M�v����՗�q�\u0012@�P瓢8�\\\u0017\u0017}�Z,�\u0011s`Gn9��\u0004\f�����;\u001ei��u�>�I��\u001az0�\u0005\u0006e\u0015r ҅��T��Ə:P�QjG�M�V{͎s���%�Wj�{�0/Gj�\\�a_e�ƨ�{E�\u000f���->Lj\u0007�`�\u001b^kXV,>\u0015�ƕm�ͬ7��g3��t\u0004�\u0005�\b�ۄ���\u0000R\u0001\u000f+���0\u001fNō�*yز�@�}@!�C�2[��Z�K����G\b�Uʣ-�؝ݭK��ԧ�l�$��z8*��K�o\u0011�b�C�&\u001e\u000bD$-ē����3S��gz��]�B\u0005�\u001d`��}b�2@�\rc\f���\r�,��U�j&~\u0013l�E�\u0006���S���,�Sk��\ras����\u0003�:�0aQ�&�9^�\"R��\u0018\u0013�z\u001a_7�\u00157�\u000e�,L�\\�\u001b�XH!b\b!\u0000̩�-�&\u000e%k�p\u0001_���\u0019j\u0000\u001a*��\u0012g9R�ibv�\u001c�`�\u001e�1n1L������\u0015��%\f&�P���JI�,W5�l3\u0016Jҳ?��\u0002_\u0005\u001dDϱH�Ł\u001byJ�\u000f�~���Y��\"���'�\u0003n�N��\u0001�ӧ�q\u0014�'��nR�\u001b�ajw��i���8^�V�o�s@\u0001Q_wd9\u0001�\u0000�PA���I��\u001aMTHE�\u0017�@DM�\u001a��y\u0010��d�wS\u0017h_{����Z�\r�g������H�\tP5�\t^�Xbx�\u0004��2f`�7R�R\u0012���t&�i\t\u0016smŸ�4��UI��䋩�I��\u001e�z8�����j��^�\u001d\u001cX\u001bz\u001f.�a;^}�n����\u001f�I���W��EI�o�\f�ˉT�8�X̮��d\u000fI�A)�C5���X��\u0018�e����eq�R\u00141�~T�A��\n�\r��[\u0018%��)\u0015�\u0018�\u0019�M\f�V�\\7��r:�j�E�BK\u0016��m��c��\u001e��\u0007i�\u0004\u001e�(\u001d�Syƥ�Aj�\u001dt��X��̮مiIX9Z���Ǟ�X��KqI+K\u0015lH��n�\u0007)��k�\u000f\u0012w\u001f]�\u000f\u001e$\u001fBޭ\u0019�֚�#��\u0001Y\\��\u0014���\u0002}j���\u0006te�f�;\u000eV�,f.�&�^\u000f\u0016�N)��x�h1j[��G�\u0018\u0005��8�ls��\u000e^ƨ�>d(ww�\b�;F�q�0\u000e\u0000+Z�\"�F��;��h���Jʩ��E�w�$�h(#䯣���M�;t��?>\u0004���ϭD�\u0007\u001f\"��\u001c���O�%���\u0013�u\u0017ե}�=3��P�x\u000e���5�RP\u0012�z�`�O#j\t�v\u0010z���f��\u0000\u0001�l�lA�ǩ?:\r�\u0016�;?D\u000e��%�ҽ�������4JF�\u0018��9���0e�\u0010�A\"�\u001d����b�b�яw�aB}s\u0013��U�Z����Z���2GQ�`s��\u0007�Y�@r�\t��p��\u001a��\nU��r\u0011�_9��BXk���������\u0002 ��\u0007���ݟh�g�^![Jq~\"��\u0004��F\u0014��V\f����t�u\u0013���\u0019՜�;��oB�s�!Z[xBU<�\u0001a\u0015��4�\u0015\u001b�L\n���,��\u0001{'�\u0010����O]\u000f���\u0004�������~�v��~P���ˡ\u001b�=�܍/\u001c��[�Φ\u00111`��j��\u0016\fZ1�{���b�!��?\u0016)&*'隗k[~��ng���\u001d�S��w��9+����ZL\b�E����w���,�\"�{@�A\u001f�\u001d����\fP�<�S�I��An0\fP�_��\u0012fj7,�\u001b��\u0006W��Y\u0000}�8��\t�e\u001d�k��g-F\"�=s\u001e�4A�\u0006xJ��x�.�c��\u0002\u0000���k�K�Eއ��>�s����/Ʒ�f�{���qeTn�x�]\u000b�}��J\u0017\u00047���:,�\u001a�7\u0006}��\u0012[�e��\u000b\u0003\t)}U��G�\u0006����Ji�P�ߖl\u0016\u0014\u0002>�񚮋6�� �'�!�i\u0001��K\u000b�\u0002M\u0015��]\u0002(��\u0014��\u000eR��+�\u001d�|8�\"&\u000bǏ�!\u001a%�.�G\\јW_�\u0012e/\u000fX\u001e<�[���k:Х�=G�-C���^N�ttv�D��~8\u000b���&�z���A5�\u001d���L��ky��x��g�GT\u0014H��f\u000e��\u0012>�i��I��̷Z7�\u001a����\u00062�A��@j�ݰ.���6�T�Re�rBV\u000e���-�/���u�^r�\u0012E꺯V\bn�u7��\u001f���$�\be�T\b�^�Q�\u0019=�O�>��UU��J��\u001d> �\bQ\u0000a�Q�\u001e9Qh9�O��r��bUݫ�s7�fQ�xpdh%�\u0004‹x�\u000b�\u0019ڟ�f1���a�>��l�n���0sf�9\u0000�>#�1#��'\u001d\u0014����*ǁ6G��D�\u0013����\u0003M,��%6j�\"��K��r��\u0002 4_\u0013?y�\u000e\u000f\r\u0017aɽ���\u0002��\u000f>;D#\u0014ʭ�\f����\u0016:V�a9���\b+�F���\u0010���A\u0019��\u0003���}��\u0001�G|iX�~�D6^�ZlN̝\rL���\u0003\u001a�jX>���Ͻ\\����d�DR��*�=D�|���50�\u001bJ�\u0004\u0003JQC�m˩���Ag\u001aR�c\u0005� +i$�E���ۥ�v_��^�\t�\u0007C[�w����eK�\u0014��ڣAA�\u001d؀��br\u0007i��-ʷ���'���o\t�ʹ��r��1��(�&9J�Q՚��E�m-��߷(���_2䲸\u0016�im�\u000f�w\"&��\u0004�\u000f\u0002�X�9m��铏��\u0010��\"]��\u0012�F���h%�\u0015xq\u001aP\u0018ppٸ;�\u0006=�\u001a�姠�\np�<&{\t\r�f\u0006��T`�8B��k���蜓\u0005��\r��ڮ�������#\u0002}XF\u0011zG F����C\u0012i�\u0001CO���\u0013�ݞz'����\u0011\u0013\u001d�Z��\u0014\u0013^�˶�Q;^\u0007�\u0010,{\u0013�\"(�-���a�\u000f�b1@@�\".�2�_\u0015b^�)[�et_� T�\u001d'9��\u000f�\u0005��~D]�7���\n9�:�\u001a�o�Z(Kl\u001e���vH\u000f��\u0014\u0013���bA�}�ڣAE�\u001d���p��OY�5�b9ۣ\u001831�ګ}\u00029�>�L\u0003�#�\u000ba0V\u000f��\u000f��!�\u0015\u001f߻�ك\u001c\u0001.����3��\\`\u0004Z\u0016�~Рx���R]/)�b�\u0006�DH�I��\u001e�\f\u0015t�&��C�F]j�-E�\u0002�M�\u001b@�;�\u000b�\u001e�J�\u000fb�c\u0010/�9\u000fa!�!\t{�ɻ�+��@\u000e�f��/�\u0005{4\u001bwZ���K�1\u0018�p�֒��\u0011��5Ƃ��<�\f�r�qF`uV\u0004YoBV��+�y!�HG\u0010�QA�:��h\r\u0017�r\u0019$���\u0012MY^�~f�T7����LXڣ�4�-�\u001b�/�I�\u0002~�2��Q\u001c�v:�-j��Ts\u0002�<$\u00004��|�?\u0004\u0014��6O;\u0007<��\u0006�p��W��\u0002hׯ9�T.|b�O�J=9s��\u001b��5*\u0007�@�T�\u001c��<����@�\u0014&��e���k�3�[\u0001�<�1�\u00041R]\u000b�\\��X��\u0002e\u0013����~!�5u���Ĝ��):�iX\te�?��lu�n\u0016\u001d�$~R��\u000e��b�\u0017��K�3\b�T��K4\u000bT�9���/\u0012�\u001a�u�p�\u0015�8�0\u000f^6l��:k\u0018��7tp\u001fA�\u0010:�6j\"\u0002�\u0016�R\u0012�\t��4c\u0002\r\u001a?\u0012��\u00101���)�E\u0015��\u0015\u0005�#��\u0016��#o��o#\u0016�ۻ�,\u0007GP����.M3\u0005\u0016ŕ\u0014��ƒ[�Aa�\u001e(��L¤�d��^A�x�w�p*��1t\u0011D���.�o4\\���u�Ə��O�(��꟱\u0011�4�&O۶F\u0012����I\u001f�<��I�c�\u001b|Jq�\t@���\u000b��\u0017�\u001e�CM8\b��~ls�Y�ţ�s�ޱ\u0004�.5?��|u���\u0001Eo����-����+�\r,�k桵E�c~�\u00111�!ΝX�)�T\u0003zc�\u0019~I(?�b�D��|��|\u000f*:��mԀ\u0010�m���񃯆�\u0013N^����ͤ��t�r넛\u0019�]��U+���\u000bJ\u0000�ߤj\u0003�I�n�BJ�\u0002��sd���IK���\u0014�a\u001d5P�R\u0016l_�/��Lf��{�ٗ]����\u0014\u000f�hN��2�\u0017�+��¤�B�\\ݯ6�J��*|��+[jM-�6�����X�T>Bw��B�|9��s\r\u0011�Ah�\u001e<��L�\u0018v�\u00118GƗU�������6��k��\u0018C�t\u0018e�\u0001n�\u001a�T\n%\u0017�4p\u00055ПB��\bGl��z#���J�x�*�6�\u0018yr�[���QU�\u0010�p����\br�+��}w1�����\u001a\rq���H\u0015�1��\u0017<\r\u0019Y��&�\u0012ؔ�>\u000e��>D�=�u\u0013��ѻ\bH!��8�)�I�8?���_��\u00036$�[�\u0000�ۗ|\u0004\u0001���dr�J���_�q���䙹�?���\u001e�\f���]~yl|iH07\u0010�U9\u0010�~oe�O���\u0013�Kc�p;̤\u0010Cl\u0006�M�\u0011c��=/j���+�Jޑ�����\u0014k\u001d�?ka�9����\"S�f\u0010U��0L���\u0014�\u000b\u0018�N(����`6���x��/\u0000lZ{l�\u000f�%�H��]E�����~\u0007���횹�\u000f\u0017\u000eʈy��ɣA\\�\u001eP���e��T�_z�C�I�:N�n:\u0002��:,ʹ��\u0015��\u0006)\u001f8#�4a��S�D�IN��8�b��Q�\r���p�b(G�F4\f���,���/�Aӣw�M��Q���g\u0000�/$���\u0000a�g\u000bb~\u0018g����F��w��Z/Sa�\u0013��w�h]T�\u000b����v\u001dm[\u000fc™,p��ɭ�b���\u0010�ET\t\u0003�z\u001e\u0011c��\rڇ����\u0014=�W\b��ۋ(G9�\n-C\u0005�\u001coD��CKV�p\u000f�h�P����\t,�S?��ßZ4א�b\u0011*��:�4�B�\u0001�?\u0015PP\u0003�_�\u0005s\u001b��;�\u0006K2Q�1�\u0015g��.D;��U]�\u001d@:����\u000b9\u0018\u0019��3dJk�H��\u0013N\u0016����r\u0016�Y'S5�CS\u0018sS��\u0000'L��Y\u0018�+���U��d�祜ך�w�u�r�5�}��\u001e\u0013�t\\<��[x�E\u0006d\u0018�-��su\u001e̦\u0013�/��3�U��n�\u0011\u001a ̛\u0003�W��;\b�/�ŌR�\r\u0003\nm��H�\u0017i\u001bh�(\buw�\u0013�\u000f����gzy�T��\u0005�3����\u0012�\u001c\u0002�t0\u0004�xz�\b��\fj���vZ���l�p�Ɠu´�rAq\u0007\u0015��P�\b\u000f��\nZ\u0003��3\u0015\u000b魐\u0001�>\u001c�\rAl����\u0002��<���],���\r�&�>�\r3����R�p�)��\"�\u0001�V�\u00160�\u0003�Uo�e��\u0015�|�3\u0006�\u0010R��Z�0^{�FH\ft\u0005�wM=�\u0018M�� �,e��h-\u0013�㪴��hwyp�Y���]�r?�6T̩�����\u001c�w��\u001e\u001ej.�ַ&�[컞L�e.\\�\n�Qn��h\u001e�q\u0004痔-�\u0010!R�N'�HG\bz�3nBL\u0010\u001c�I�ϴ�p����\bd\u0016\nЭ �:<儰='i�\rZ�AN�\u001ex��\u0002\u000b��Su\u0002IztϤ[�cwQE��\u0012B�\u0003��9�\u000f�\u001e����� w\u0017�cmӽ\u000e���l\u0013�\u0013Z���\u0005ƭҪ΃?}C��v�6�\u001b\u0002�O�Q����G\u0003\r��L\t�\u0012˦��CܙX��4�׏�J��лKH�WU��_bf0�/�<\n��\u0005ߗ\u0013b��v�\u0002��ϡ\u001a�\u0005�̘�S5����yh�p���\u000e�!t\u0000�`���.̯C�\u0002w�㌤�\u0014){�?'��5EZcty�D��P�PWS}p\u0002�\u001e3�uOW_�+�\\|�cp��!I�/�Ꮑ7óQ��\u0000]?�\u0000�w0���r�V����8ȭ\u0016�=͛�{�7��\u001eOVm\u0000ĥ�����\u0013���̿_c˖�*JTa�_`7�g\u000ft�&\u001eT�Rx0�\u001ciA\u0010\u0010���A<�\u001e���L�\u0012\u001b\u0018�ո}�\u0007��\u0017\u0006Ã�Z��\u001b\b.r�r��a�l+�\u0005��~��Kg���X�\u0017\n�6\u001f�ěa�7�O��\u0014;�#�5E���uG��H�v\u001b�8#�)V\u001e\u0004;]�\u000e��M��`��a��0bm\u000e�x6��,�8�\t$S:\u0001\u0019�\u000f�D/Y�K�_1��)�W\"c!�*�����\u0014���i_\u0019\bWNN\u0004Al\u0003��ڨ(�j3���P��W)\u0016\t�F�D}�\t\u0011Ō`�:���+�\u001b��}ߩ;{�\u001a�7Ć���R\u001c�Ǡ~�\u001dsF'/{w\u0019�#��f���\u001a\u000bt\"O�E�D(\u0016�8�V�R�\u001do�_�\tv��.nj��s�P���;��=έ�R*����\u0007d�~\u0004᳦V\u0018\t�A;�\u001e���L���I�\u0005`�\u0002\u001e�7���\u000f��wB}���M����\r����`�]���;�Sc�\u001c�\u001e��z��`�\u001c�\u001bъ�|�$�o�\u0019����\u0002��M�RbL�~\u001b�%�S\u0001�D+��=�fs�`m\u0003o\u0006�۳�c8\u0013�I�53���x�Gi�����^#c\u0019F�J~B��F͠(s��>i�\u0007\u0006\r��Cр\u001a���\f\u001e}8\u000e脺\u0007D��~���Bbzn�\u0016��ݗ��\b�Z\u0017?�K�z\u0013O�{��4'BT9���)�F\n�7�#�i�����GdP���\u0010\u0007Kl`��\u000by �\u001aу�w;�\u0003�3��N\u0006a�Mz�\u0010\t��H\u0013\u0014™U��\u0011�\u000b�4@�\u0017htI\u0014�\"�����?'\u0000+�\u001b\u0002B�z_�I�����d���5A�K�\u0002T\u0010\u0011OT�vZb�t\u0011UU����qw�욼�\u0015[R�P�\u0016\u001d\u001b�˥\u0010\u001e��5\nҴ�\u001d]T�\u000b\u0010�5��ߕ��^,\u0018�9T@��IW\n����\u000fS\u0007��b��ܐ�\u001acD\u0002�\u000b���ϭ;�俉�A1�\u001eȀ�L�\u0004�\t�$^�%���6n%��\u0002���\u0010�c�zWq�;4�Ƕ�W�[z?K�/6&��?��?M�O��-��̧�\u0006R�}�:�\u0002_�旙���k�/�ɱ�ͪ��>�W} #�e�q�釣��}\u0003tS��SFީ��\u001d,��w\u0014yr����;��'\u001e}�z���q\u000fP�.�\b%~\u001d�cu�;\u0018J86��\u0012�œ�A��\"\u0002kr�\u000b�Ӷ\u001d�^�G���\u000e���1$��si�c~we\u001fΨ���\"ZV��ʠ�p�Pi��}\u0004�-h),��\u0013K�+c�9r��_Gtn[\u0014ڼ\u0000�������&�\u0007��j2�[\u000f\n)2��\u0012}��V���-����\u0012�A*�\u001e܀�MW\u001c�\u0007i�I�{#�R}��\u0003�\u000b���\u0017U�?n\u001a����f�ƽ����\\���D��8D��\u0012E��m�4쩾���7�W�h���1���\u001a���\u0019,=����\u0003E0�#\u0016��\u0006�'���O\u0016���bb�z�\u0003y�\u001e\u0007���\u0018\u0011��߅6q*Haa�\t#���`\"z�g��a0�$?@Jh�2\u001d�G�I7��$��q/X\u0000_P�\u000b\u0019%���_O�\u001c\n�\u0003Ӻ\n�틴\"���\u001cE��\u0017\u0019s�k����MP{�5^�\u0000CdZa�z��B�\u001a���.�3\u0007��\u001b�͔��\u0001�z{EL���\u001aź=Z�3��\"O\u0012���\\\u0003�@��xr\f��\n�A5�\u001e���6Wܼtk�?\u0000�j4�;����\u0018Eg^D\f\u000e\u001fi�&tς2)�f�l��\r\u0017\"F\u001b�\u000b'_��}�w�x��=R���,����i�f���\u0004���\u0005? pRp���I�\u001a��C\r\u0016J�w�F�Un\u001c\u0013\u001e/�&�^�01��\\ ��J���:��L�b\u001b�\u0016J��-\u0019��{���sZݲ\u0015x{��\u0010Pb��z/u���\u001f�/����\u0006<۶u�%�|�=O����\u0010;�B5f:�������U�PM�hc��U�`u��0\u0018\n|�n9opx?qd|'WGc-���G�\u0007U[�U��d��\bB-�W:�K��py$�UZmBQg&|?\t\u001ffT8\u0013\n��ʹz��C��\u001dd�˂��ϣAK�\u001f\u0004��L��\u0007_��o%��h�\f@Z�>\u000bIfҘ��j�.[n\u0015<\u0000}\u0002��\u0007�W\u0013���`\b�\u0017v��\u0001D8�\u0017���[�@\u001aϙL%�����9��%i`���Q�NncG\u0019\rEh�q��\t\u0011�\u0018\u0019OOP�a\u0003�&��r\u0014�A1�\u001f\u0018��7\u000e\u001f����h�-�)\u0012W�(RU`\u0017\u0007BJ�Ĥ�\n��A��k�\b�A����\u0001��]\"}=zA���R\u0013��5XV\u0019���XY7<����`\"���3U���VҠ����vO�Sa'\u001eф��qhn$(�*�T��\u0007�{=\u0011,u��\u0002��Ѓ\u0000酖�tu�\n\u001e� ��&�5�\u0003�ANp�R\u0010�A��Lv���3�\u0000�G��ϼ�C�-|\n�\n)5QU�\u001f\n�-GW��@�w�LؚY�\f:�'_8�����D��ބ`�\u0011':'\u001f�6V{5pA\u0006c�����\n���\u0001�r��~�ve@L�&������a+\u001dIi���DY\u001f,�\u0006\u0003�\n1\u0007j���3�I�\t|2Jϱ%b��A,�\u001f,��MY\u0013�2%f�\u0016�\u000b�*�wjMV�V�\u001fӢR�;��[.�dC�9[\r*�p�m���$\u0000$u��\u00166\u001a\u0016�&�S5���t\u00122\u0016cO\u0003S����8[,��`\u0017�Ɉ\u0014$����E�E�����,M�'6�,v�\u0004}B���N\b\u000b\u000f�f-b��f���u�G���˖\u0000��H˾TCB2\u001f�\u0001F'�#\u0018�\u0016\u001c��Sl��E�\u0001^��\u0012�_E�\u001dB�O-X|�\u0000�\r�b���\u0006�F�ݜ�fTU\\L�ɻ]MK:\t��\u000e�*��\n��Fx��ܴ\u0006�H�\u001a�&�\u0004��$)*]m���[t$�\u0007�O�\u0011�\n���\u0005<^�\u0016\u0001&Q~�H¤7-�6+�\u001f��ʡ\u0018���\b��G�\u0006��eߞL�ӜQ[�ݰ�'�[\u0005d?+���‘\u001bɉ?\b�\u0003��ґO�\u0015\u001c\u0013��L��.��\b�\n���o�뒴�B��2���>o\u0001��A9�\u001fT���a��Q\bE\u0004���ђ\u0006�!L�6\u001e6��C�\b�Z��O��\u0014\u001a\nc\u0019���\u0011�\u0005e�g�_l\"먋�\t�\fa��\u0016�w���\u0016PL*ZE1 �~�Ҩ�ͨ\u001ce����\u001d�\u0013ҫoK�S�\f�\u000bk�!7�z3|�}޶\u001cu��A�N.����evO�4�û}����\u0001�7���GpP�Nh\n����8=v�%qJF���m\u000f\u0019��\u001eYA�\u0003q�3�t\u0011�g*\u00177��';V\u0006\u001ea�\u00169��\u0013\u000b�lp\u0003\u0013�\u0005lp�\u0018_��(���Wg덻�ڙ����>_\u001aX\u0014\"p6tُ鎛n\u0019����\n�΅����\u001d{�\u000f�\r\u0014>�����+k��j\u0002\u001d��#\b��\u000eG�w�P\u001b\\�\u0007�v蹥�As�\u001fh��}b��3�/f�����k���.���-�蓱\u0015e�1�8�Õ[_\"|8�}\u0005cBn;��H}��\u0006T\f=��k<\u0015�ı�Fu�\u0000Z\t�[?��\t9��y\u001el\u000f<���R\u000e�%��(�(�zx�!U[\u0015\u000f�u`��2BE3�_��w�A�V_D$k�\u0006��Q�Ǩ�i�mBl\u0001�~���R�Z}l\n\u0015-�&�*�G�u��\u000b-\u0007�\u000b\u001227���\\(-ŵ��\u0002^�-� \u0002�\u0017�a�#��ޙ�PS+T��u\\\u000e���lN���\u001d�ur�Ԍ�Gq�(�.�����!{���<\u001f%�\u0012ǁ$&��E:�>S<�聲\u0010_��5�(\u0015�\u0017h�Z����?D�~�J�+Ȃ'8:�I��mW:��D�(ΎI\rI�ꉧz�F�4ܚCCa��W�u8�� �\"��\r���\u0007:�Ox�ҫ�]����))7k�A �\u001f|��M.6�i�\u001f֜\u00007�����\u001f�G�Z�@�/��ǖ�D�dn�:�\u001b\u0001\t�3��c�l�Pb/�8�,������`��\u0004��\u0010�2�~���^��\u000fN\u00172D܀��&A�J�����*��QV��\u001f�L�yw\u0014񎎪-��Y\u001ej2s��O���.�86��\u0012ck�@$��e\u0002�%\u0016ƃkd�Z�Z��9N�P���vs���v}�\u0016\u0016Hɔ���H��q���\u0007�5+W�V]E��Ҧ��Y��D/�;ّ�\u0004R8�8>�f8=�\u001b�Úh:�&�qL��y�\u0017@��z��Б@�\u0001\u0014�k���.j���@�[�!�\u0006ݵI5V�-�/��A\u001d�\u001f���X���\u0004\u0002(���!bH�\u0005&��e�=��c\u0001Xe��\u0005�Z\u000fN�+��l�<�V�ᑩ\u0003+w�V�T�T��ܭ\\\"��\u0005�\u0003\"!\u0018�Q� 5�J'?�>��X�oJ�F8\u000e�3\u000f�0�Nh\u001f����\u0007��&�8�EO�}�!\u001d��ՊJ-��e��͟�\u0007\\��?�@B�^�%ԉI9�S�Yz;��+\u001e��$\u000eA�X�\r��it?\u0000Q]#w�?(�_�K����\u0014!\u001f���0�V��.z\u000e���&Ti!\n�~�i�n��Z��\u0000I)�� \u001dxM6X\"����\u001b�5�K0�*=��0H\u001dN1��ϕ�m\u0012)�\u001a�<�1kֹH�A\u0019�\u001f���L�\n�\u001f0`\u0012��/���z�\u0001X��.m�s�]�KRs\u0010\u0001j�\u0001]g@0�Ė� �W�^�'��Q��\u0005Ebt��\t�\u000e\u0005U�\u0007f9�\f�\"�\r~��Q\\1-\u0012廎Zf�^��oHx*����H;\u001b���s/�\u000e�\u000fg�\u0019�\u000e_N\u000fnh��\u000bog^�^���\\�В�o@�J����\u0018[ߊ�\u00069ٳ;�'$\u0019FW�XUf�y�o<��}�H\u0010���j�Q|9�Y�=��H-\u001aWL��\r�����p�3�\u0007�0���s�L�y��{�u�J\u0019t�/�\u0016D\u0003\u0005^���o\u0005k_E�)��Y2�l0DI�ɍ�\u0005\u001d+7!q���A\u001d�\u001f����k�g�\u001eQM�e#{g���V��\u000fVl\u000f���Z\u0015|<�L�d*���kp��R.3��w-#Z�m�\n����!�R,��\\�\t1[\u0006,\u0012��]Nv\u000f�Ilv��p�.m�<\u0016��L\u0002!�C��\u0014�On��Y�G�\u001d|�s���|i\t�\u0005��v��8Q�Ƞ��y����`O��]��^N���P�X-�Q�o��>���5&w��P����+wW��k\u001c�|]�9�72��yT�\u0012\u001c@8שl��\u0012�>(�Nk(\u001d?��4�㰣\f����\u0002wܚ>�;'#\t��\u001c��\u0004j\u001c`y��{��jl�T�$w�\u0000.���@x�|(ݢՕ�AB�\u001f̀��d\u0000��8�� �*\f\u0005@�l�\u0011p��N��a\r]i��%�s������S�v�C1�۬�\u001e��$\t�2J�8\u0012�\u001b����(Os�p���A`\u0002��t�\r7��aC�\u001f>m�H�\u000f�[9���<�t��v'�f��\u000f�p=�a��׮\u001c����B�\u001b\u0010�B\u0007\u0005\u0013\\\u0012\u000e\n�K�R\u001c�e���\u001a\u0013\u000e*ܠ\b�i-O\u0006����X�}!RBX-H6�\u000b�\u0014�+�\u0005�����BPz_Ӹ�'\u001e���=~���^�g�\u0002/;\u001d�\u000f:�\u0003C�u�;����ʦ�ނ3&�\u0002��l\u0016�7�֋�\u0004�����[Tyb�\u001c)x�hz-�'����$��\u0004��%�>\\�^í��\u0019�{\u001e!���&���R�\u00023�b�\u0012�*\u0015�AB�\u001f����c�\u0011S`d'\u0016ؖ<�F�|��i0S\u0015�PMP���(&E�\u001cJi֝۳���w\b���!IΟ&��p�ʛ8�\u0015dP\u001ew���R��*^t\f1/�R���y\u0005�\u0001�%���t��a4���ڃx�}�\u0016�\u0010�^܇�\u0015&2P��\u0010_T\u0011��~bT���|��\u0018�\b���\r\u0019\u0005z{.c��̻��\u0002�ڱ.�I\r�T\u0003O�g�\u0018\u0016hf�)1\u001f%6�=i�7rlo�;\r�X����5\u001d�k�M��q��oe��E9S��G��/;�\u0016��\"�1*��\u0000\u0015���W�ϒK�@X�ԐQ$��!\\\u0016��ݾ,����|Y~Q���\u001d\u0007Hu(�d/��\u0018խ�R�&#Q���������ڱB�9�ɶ���&\u0015�AV�\u001f���p�i\u00027�h�vS��W:g�\u000f��8.���_�\fC�\u001c����~\u0003\u0015���fT2@�(e��p� '-[\u001dsc��\no\u001dED��\fal,\u0013P��p��Gq\u001d��Awr�e`�&�ʚ�)���\u0002�z���eb�߼\u001d6�zƓ�\u0004',BM��cq�舿��A�.�R/ﶂ\u001eE%ԫ\u001c3�r)�eyFOj�M�z����\"\u001b�����ǖ\u0000�\u000e�n�5�I\u001a\u001a_��7�\u0018^@�a~���\t�\u000b\u0013?k\u0015��S�\t(Lr<�t�`�����\u001b�\u0007ي\r(\u0019-\u0007!�|9\u000fH7D�l33�r�\u001f�L��H����h�z�I����\"��m����\u001f�\u0007�����d\u0019�@*���\u001a`a� a����\u0006ݧ�h�q c����і[+H�\u00134���\u0015�A[� \b���\u0010�E�&�a�\fܮG\u0012��\u000f,�[���}$\u001e\u0015\u000bD�-+d������0����Uk�a]4�\u000f؟t��3Q��w���\f�O���k\u001c\u00023���0\u0013�z��\\f�\u0016��%��O���\u000f�!�\u001e��d\u001fS�ϕ�Vp�\u001ff�ɋv�\u001c|��\nG��֊\ty����x�\u0005\u0012��\b��YзIp,~I\u0019:�ϔK�|}\\����q�6�}��ng��0V+�8\b�P����\t�6�\u0014��\u000e�\u0015�\u000b\u001c8�1�\u001c�#>��W���A�\t�\u0013.�!�Wc��p4�=ń2�7�I�\b!\u0016�C%���9�\u001d~�΄Z:��\t_��\u000e�>�\u0011de7$[֑V,�\u0017\u0015��F�n����d�� Ț+��n�\u0016ҿ�~���.��o`5Ҕ\u001d\u0010�x��1��\u0010��\u0004���J�4e�6�a'\u000b\t~)ta����*�)He���G<�\u0012w�$��q^K#6�<�<�y�cΣ<�PN_ӌ�s��\"��}�$�[?\"�B\u000e��,\u0000&��AX� 0��.i\\r�T\u0000M�\u0018\u0005M��g�\u0018wt@��0��ҍ\f�7�׏�/a���s��~�n���Oϝ-\u0001���~���(=\u000e\\�\u001e��4H�\u0001U$1�M�\u0014���śP�]���;��\\�M律p7��ҍ�EZr���/\u001cgYT0ַ�OkY\fD��B�Bk�\u0000mꈏp[w�s�m�\u0017/�1ckh���Cbk���x�/\fW8\u0014i6\u0004\u0018\"��U)F��A�\u0003�s8w��Z�M�\b%�\u0001�\u0001Z�M:ͩ&�q���E�Z��\u0005(�q�5\u0011VS�B�d,0\f\u0014\u0005���\u001b��:\u0016�z�}2��3\u000e\u0017\u000b�L�\u0015��W\u0019J3U�Ou}��[\t�\u0016\n\u001fx\u001a\u0011�\"���B�\u0001%l}�5�\u001b��F\u001e��\u0016\u0014��\u001e�\u000f*N���qoJ\u0014��\u0006j\t)\u001f?�AV� D��I�J�.��EJU���-.���\u0010Z6��͂\u0016m��\u000e7��\t�*A�\u001c�nҟl$�@7(�D�\u0007�����������\t['��\u0014��ho��b|��W\u0017?�\u0005��N�����\u001b�~W\u0005�/��o�%�e���S\u001b%5��?*k_J��ʎЀ6..=�*�\u0004�\u0004�\u0004��\u001dD�v.\u0017\u001f\f��\u000b��P�%��)\u001e��( ��/ᓋ��$ĒQ;\u0015\u0004^^���\u0019�\u0017�x\u0015o!��m�Q�{�Γd����\u0004��G�,tQ�r�b�Q�Z��\u001c\u0014�N\u0016\u0001t��i9#�\u0019����lE�\u001d�\u0004\n��yf\u001dl`�j|\u0012��x�\u0006�g��\u0016K��n���\u0001�Ú�ǥ�䙲�C������ݤ�\u000e�\u000f\u0014�\u0006�ߛ�\u0017m��[��}�|�FGp��AA� X��N��\u0018\rJ�-�t���C]9x�﹝��K\nC%\u001e&�{zωc\r�\u0001�3&��el�Od\u0019��\u0010���C\u000b�R\n�F����]�q��\\�b�Q�U��RA�\u0017BM*?�\u0006a���A���\u0016\u0002� ���.7�e����]�\u000bRP���\u000bD�f%\u001f16��L-�-\u0006�3�:R`��s>X���Ot9��?[�\u0004{\u0002N����^j�l��+�\u0003�2ȹU���-�i�h��]��1��|@j\u001a��ǎ\u0004&\"�.zڂ>��-˖�\u0015�U�t�Oo\u0014����<��\"�\\�4[�_��z�yI��p\u001d܎�a0�75z��[�7\u0005�@�u1��Џ���[J\t����+�6\u0019��8�Jz�\n\r*�5R\u0004ș�Us�W�A�� l��}aC\u0007���\u0003�1��\u001aV�?\u0015\u0013o�s�2.\u0017�\u001b���\b9^\u0018P��#)�{�\u001d�Tx���бY�1���������Z05�:�4�\u0011Ď����0�.�?��C|-]����\u0019�2���.�����\t�>�\u0007��\u001b�_��'�[*�W�~z�\u001a\u0006G�f�\u000e�@\u001f�\u001eH��_p.'����<�.&���b_;�\u0013~m�\u001fq7V\t.�\u0017#<�ܯY��<���w�\n\u0007mW��L\u0002\r� ������j��%��\u0013�V�E\\Y+/�x̕1��\u0001�\u0013ZN�G)��7&���A�Z��f\t$X9W\u0006�\u0001�����G�A&��\f�X�h�\u001c�m|J�k\b���T�K�y:Q���\u001a�+���s��{8o xq��l�N�$�P�q�tԂ\u0017�\u001e\u001a��\u0017���]�Kx+\u0014�q\u0001���Q�\u001eMy�\u0006��ʊy\u0012�HH�\u0016�����\u0016�ۖ4V�'F�V�\u0010�#\u001f��E*�2��A(� ���M\u001dmm����\u001cJd�*`W�\t�E�|Jv߬�зbM��û\"�B�43�8[�\u0013EV��\u001eILT\"&v=}s�gX&�%�-�\u001e,D�\u000f p\u001a�\u000f\u001c�7]4}�Ӿ�\u000fa\u0003^Ї�6t\u0016F�I���5��̹�\u0011�:��\u0011\u0016ϖO�\u0006x\u0004����\u0018�\u001cioF����s�\u001f�F�D�q$��\u0017��\u0004\u001d`�,'�'�(˖\f�\u0004\u0001V/~��H6��\u0005��N�9�k�+�hX�dԜcc`\u0012���S/�\u0015��-�+��\u0012�K\u0001\u0002���3��\u0019���~,�\u0005BVP�\u001a��#�,U\u0018�'�+��%߼\u001b���֢Oͦ��=�w\u0014�P���O�9���)�[?œkBȣA%� ���lӝv䒃q��e�!�YVw�l0�\u001e�\u001c���(aP\u0015�\u0002U���P`�,�A(F\"��ϫ\u0010n�1����\"�\u001b��p��E���\u0016��\f���v�\u001b����\u00073/\u000eJ�*L!�L�^\u0013\"8�\u0015�w��b�\u000e$N`��80�\u001eC9E�x�M\t4bP\u0000���G��_�����m�›\r{�je\u0006���k�l�\u0017�\u0012\u0015\u0017��\u0001\f��l�im��\u0016�LM\u0013���摆�v4��΂槣�\f�\u0005}�\u0017\u0019�\u0019`��J�v�I\u0007c�C\u001a�x/��\u001b�+R��Dfw�g�R�h\u0015C�L��:+u�V�������\u0000u\u0005��׵K�qǼ\u0017\u0005\u0019v��o\n���3�m�A\u001d� ����d�V{o��;�*jun�fl�\u0012�?\u0016P\u0001+����\u00058${�eZQ����]���B�B�:�\u001fFXl\"����\u0014\u0019^��`H��6��F��q�����r2�.\u000bj>**m�.$�w��$��)e�EV֢%cv\u00118�X��O\"\f������V��%��4zՑ.��:V�\n�8���^^�kfL꼼�ag'�v��+1�;��/�Ot\u000f��\u0015���ӛ�\u0005I���5\u0006�kѽ\u00044X�9�4\u0015\u001a�\u001a|y�&�c��:*� |l\u001b@��N�T�V0\u0004��U�?䱧c0�\u0015\u0015\r��\f\u0002������8����y��\u0019i��6ښ٥�A(� ����h�O�/|2\u0007쥊��\u0000������\\���5z�}� ����[�R7�\n&2'*��ѯ�\u0003/�ӆIд�]9��5\u0011;#�FY��W\u000b\u0002`%n\u0017��*�~�\u0011c�Z���&���� \ba��%��+&\r\rC���AB\u0018��T�\u0003=+���<2g]�Ч��9A\u001aִ��7�0\u001c0D ��������2e���Ų��Od����>��!���lQ?�^��K$1՚=?�\u0013�\u0010\u0000&J���;sU'�¢��͍A��=�\u0002�3���&\u0004��DT�\f\f&&N�z� ��U�\u001f�/=>���B�XL��n���\u0011 8m=ɹ�\u0015�j�I:�զ�AO� Ѐ��b\b�[��\u0016&��Mt\u001aIg����Gߕ=_f���#�%�0o�\u0015�\u0019�հ�\u0007��B�w���2%-і��H�\f:l.����\u000b\u0017�\u001dP\u0007�q��\u0005�\u001e\u0007��\b�٭�ڔ\t<��I\u0003�>;�:Օ�%,��z\u0018�Q'r�\b�׋U��G��\u0000�\u001a�0\u0003�cK�ޟ�F��gK�mF��? ��Z�H\u0005KWM�+J��Q�\u0001\r�\\n�źv.�`R�����;\u0006a�]�ɤi@���C$$t����[G\u0017�\\y��IA�q�\u0014�R:\u0012��/t���\u0003�����O,8(|�\u0007��d���p`:�>��跚\t@\u0003@�h�閙��\u0016\u000f�$d�B�\r`C}�T�\t~WTJX��\t����^�S|@�`\u0014h��i�g�uMA���Al� ���m��'��O�\u0006+MR����U2�K\u0012�pݟ��6}��~�H�\u0018���8�y\u0013�\u0004|�\u0006O\u001c^2���A�ς�l��:E�a?��&Ƣ*������\u0018R9�����\u0003\u001c�Z}�`4��\u001cb��*d\u001c�e�{�P\u0010�~�\u0016�u�Օ�\u0006��\u001b�ڌ͍ʛ��k\"`\u000fx�R���H\u001f�x!2o�r.�?����\u0006�{�ۨ��j�ͤa�B޹��\r_d�Z�f4Q\u0016\u001e����[E1�;���KD-�~U�H1v�3P�48�\f=�`5쐻��j\\�!f\nj��^�s����;��l��\u0014 �\u0006V�5��3F��T>Y��1T�O/���\u001a\u0002�j\tC�;\u00152�A�C\u000fw�4�y)�?\u0018\u0016�j\\�:����٦�A`� ����k�˭�b#ךO����$��\u0017�18\u0007RI�G�o\ba*r�c�j�D�\u0000\"c?��e\u000e\u0011���,�HK#r�X�I-Y�+��՛Ut��Ib��֪�\u0014��� �D�C\u00104d�&����%\u001d�n`�m�23o+\u001e[���bZs)u�q�\u0018�qu��S���Q�,�5\u0013�o�������3G���}7dO)�\nЇ��Gv�㼝�O1\\\n�[�\u0013\t\u0002�J��^�2V9q�G�@�w����'�\u0018o�\u001fsy\u00198\u000fQ\u0011�a`m�P6����\u0018O�N�X�s�2\u0019 ��_�iu,�>���\u001d��q�k�:�d�NtFHd��:�Zs1y�0��9}\u001e��B�Mh�@vn\u001d$_�o�n���\"x�W\u000e������\u0003�v6e��1��\"d0A���0~f\u000fW��\t��զ�Aq�!\f���f�`���l�����+���\u001b@��O�\u0017�a�W�0��3�G\u001d�=�\u0004�x�\"_T5�on��QF�\u0002*�\"\u0003�&5Qw\u0006���\u000b�<ñ~�ټ\u0013V\n��\u0004\u0007Z9h�X��\u001c�\tDu�\u00176D+���!\u0001���/�\u0018z��[�\u0012^\u000e\u0005J����YV\u0003�8òkc��\u000b��e��\u0005��O�>�y��2\u00190�ng0�T._xQ\\|h8�ۖ\tX�n|�z\u0006�EK\u0013-�\u0013�=\u00069\u0010�/\u001c��+_��F��Ӧlڼ��縗}\u0002~yd���\u0004�s�;UD�#�\u000bk�+�32��\u001e\u0005\\\u001cզ�Au�! ���d��/� �Kp�C9KƤCv�4�\u0019џ��瀢�O�^��{)n܃�ԢC�t>��\u000b=��FJ���Y�E�M��~\f\u001b�ϩ��\u001b��S\r�_l+�\u0018�R��L��6�0jJ�\f\n����I+*dʹo,D�\"@gi\r��\t\u0005I\u0016��\u0017��\u000f�ԣ���\u001dU�,���J\u001a��P�5�c���{J��\"��ǟY���x�\u000e�\\�W\u0007%7\u0017�\u001f�7��\tx)��/�\rug��D��Q�h�x\fxxyc��\nÎ\u001d��@�s�\u0001�����)�$��$����;S��$tі\u0004�!�l\u0000\u0000�b�\u0018NU����{���\n\u0015�;\n\u0001`�\u000f�y��ݘ��s.po�����\u001a�\u0003{NSUK\u001c�qYg�Y�\u0002�oB!Y����\u0006\r��_\u001ee���t�t\u001aq��\u0010��/nۋ\u0006\u001f��ܗ���ϙF���K!\fa�\u0012�7nPө�h�u6�1\u0012+�#�h�νӊax��Bsq2If��4�q(6���\b�S\u001eK������^�����m;\nZN3\r�-\u000e�_;�;ohw%?Q�\u0005B�\u0005\u0000�:vM�l�\u0014�\n@\u0012��bx��M ��=ť�J��#�^#�g���Fr�����\r�s���T��Ǭ�0ݰUH?�Eo�X\u0003�5�\u000fH\u0019�6�)�g3]�&V\u0010�?>@m��%D�U���0��\u0005u��gf��a8�j�K�i׈0�6\t��oy�t6�[�C.�2_�ҮB���J\u0016�t�W�4�sٱIʊ=L>MC��\u0016\u000b���G֙~�7B)k\u000b���\u001aJp͖�B}w@\u0000v\r����~��n\u001c\f%;�=1���]u}�Z�]���N\n�\u0002�F\u0004�\u001b:�xBB���]¶�Y�k�ŭ�h\tw�\u0016v�:\u001c�'��ʵ��{���ԃ\fޯ��E��\u000e�h�u\u0011���d1���;Xq־��'�1�%��E�Š\\���|$ݧ�\u0002��\u0002�+һ��\u000e\b>@�6�;���\t7�\u001e�\u0001S�����=)DS�\u000b��\u000b~�}�壸�0W��6%\u0014R�(�%�Aˁ!\\���qJ�1\u0010f|'���&ٺ!���Mrhw\t�\u0019\u001a��ؽ2[\u00052�\b��Z��5\u0010�u@@\u0007Өu\u001c�~�\u001b\"KY�\u0003�թB�\u0007d!d\u0005�\u0001��G(UI\u0003\u0016��dR\u0003Z�&X^;7P\\�\u000e-D=3ȶ�ٶ䴥J`>h���9.\u0014E��9�\u0018�T\u0010�j�ʄ�UZq'��\u0018�]���A�Ea��eb��3��DEV\t��s�\u0004Qr{\u0012JQ�d���3�$��\u0017�!\u001b���g�\u001d\u0004JE����w�\u000e\u0002\u001a#\u0006\u0002�\u001c��p5\u0014�?$o����\u0016\ty_\u000ew\u001c�p\u0018Š\r\nJ�6�oEÓ�E��f��K�)\u0000�O��V�!!E\u0018x�A9�!���X���g�~eN�\u0019�K��'�\b{5i����\u001a\u0005�SD��\u0018(i\u0007�,�q/\u000bQ�$\u0013E�dg�޾�q*�x� ��hX��v\u0011!Y�J�Ip�\u0016AG�ۘ�ܪ�٦4 E�\u0007��\u00069[w\u001a+��*�@�\u00012v�L\b�sA|S����d\u0000\u001dD�\u0018��2�<\u0015R[\u0014�\u0013Q�\u000b�3���C$\u001fܪ\u0006HK��E�Я �mB�pQ�`�2�b~/�\u0007ن�\bF���f\u0011�s!�멑��4X�\u0016��ZǗD\fZ�\bM�\u000e�W��{���b�B\u0019�\u000b\u00014U��6��;wPv�\n����Q�\f�%�h��_a\u0012m�H|�Ǥ\u0016T\u000e^3*n7~�=w\u0012��fR�g�h���\r��0Cn�Wر��ңAB�!���X�{wS���=p�mq�F�\n�;�t�*�j�`g@���\u0013�.�n\f�)D�\u0000��\\����\u0017���ku��F����=-��F��\u0002 <\u001a\u000b��I�>/r��Z�-9�g\r�.�b�Sn/k\u001c\t�7\u0000�C|\u001a��\u0015�'ڻ\u0014��-\u0012`��k���\u001b��z�EB>\t++Pe���\u001cS\u0019\u0011h�;\u0011\u000ee\u0012��*|Q��m�������p�3y��#0��B�hxbZ��������\u0012���\f�98\u0003N+1? �?a��uy�\u0012p�X\u001c�\u000b�Z��<�e\u0002\u0004�\u0005�\t~�\u001b�OSɑu�F���Ϣ�\u0001�bQ�|\u0002�:�_�ӝ\f=cv��5\u00054�� 35�`�Ǣ)��mKNӧ�W�U�NQ�P��\u0019��8���'5������\u000eh�\f�}JhЩ��\u0012�Y^�S��p����\\���ضwg� \u0003�\u0018\u0012y&�~���\u0001�@�_m]��$\u001b7�.�7�~��C�\u0014�c�l�b8R��H�\n?.����e\u001fõH|�\u001b`#׋�\t`\u001a��\n7>.�\u000e�\u001b�ձ���\u000f&C���Ҟ�B6�\u001c�헕���\u000bI�e�AE�!���L�\f���~�\f��'��\u0001�օ�Ź\u001dl�`c�Ec{����Ole�i.�\u001dx\u000e�Q6$�\u000bF���\r��\u001f&�6�8^\u0001��\u001c.�X���o�A��&P>%ٌ�5s\u0001�\\_WЏ\u0007��p����Y���\"�r\u001f��*\u00047����3M�~���\u001b�tr�(\u0016�\u001f��\\�ŀ1T��U�mg�/�üX̱G\u001f���\u0004s�L��݉J\u0012QԜ����QE��\n��63\u001cÐ3\bj�\u0004^�cBT��8�{/�V;�\\�����9��z�����U��o\\\u0007F6�.,} �*8�\u0012mx�xwD�#4.a\u001a�u�\u001d�P\u0004�X��\u001d���䑸\u001f����)\u000e\u0005n�S\"R��.jV�\u0014\u001e�[\u0014�a�1�4\u001eX��D�!_-�A;�!Ԁ�M'oQ s\u0015����;*}���I\u0012�q��\u0007\\v$[v��\b��!\u001c�f�y�\u001cI�o�0��m���\u001e@\u00172&\u0011����T\f\u00060�)t�Iۣ8��j��X\u0014U�\t�^�ZS����&�1�\u0003�����\u0010^X�\"F\u0004���Lٴ��}�6�n�i.\u001bR�@�\u001e��\r��J\f9\u0014nu6a�ql=@���5��7��F��=x��N�\u0010|�rGc��\u001cI�>��*��Y\u0017֬�\u000bz��\u0013Of\"r\u0007i�@��uXhDVh\u0001\b��E&]���Z�n{[\u0017�\u0016/0��E�(�!sNL�\u0017諻��I(�P��}���xu1�\u0011�ҁx0�|\u0000X3��q\u0006+�8IɱԬ}�Gj\u0000v7�C��\u0006_�D0�H�����AE�!��M&+�\b\u001fk�\u0016Ί���Kc��k<�@�@ǔ�4��(�>t\f�\f\u0005�`Pw��m6S+)󮹎>���n��}\u0007C\u0003�°V�������\u0001ꭦH�5fBdu��\u0016{�k�6����\b��\\���\u001a��w���\u001e�j��\u000eM�\u0004\b�\b�&\u001b�A��g-fHj\u000b�%&��\u0007�HM�c�hߴN�;\u0005�n;��\u0005A\u000bQ9ݒM%�U\u0018����m�\f�yƻ�\u001dY����y\u0019(a��D�W.°P����\u0019���uL1(��\u000f�\u0000�=�_��!Eo�9�?�#�%-��aUN�`\u0012D���\\�6,�vK��v\u0015'5��@�b[�\n��\u0017D�Iij\u0013-˝�K�X\u0007����L�.��7\u0016Rc�vWi\"�!m�H�K6�A8�!�����BJ\u0014��'�|����~\u000bl\u000f\u0015(x��%Ss�\u0006ݭT�\u0007t{����,�-{��\u0001C/q�{�\u000ec�MB�S�g�k�;b���G���y�\u0003w���G��ۀ�w�\u0005-\u0016�t�o�F���\b7\"�a��:\nQ�FO���h����K�ʥ\u001aA=�r�?e\u001f�\u0013\u001e\u0005�_OFM\\()��f�!����\u0010��\u001e\u0005��\u00100Z�j�*��\u0016�\u0003�Z\u0004�\u000f���ƲO-�\r\u0006֏�,/�p����\u0014\u0016�v\u0019k���_���,ױ��W($�\u0013\u0006�=�\u0000���3\u0001Ȇ�@��~N�ATG�):΁��O�>�2ad\bSA��gv�\u0018��8f\u0000�\u0016�*�@�Lf'x߰�AO�\"\u0010���m�������{��+�\u001f۶�h�\r��n�h���\u0002:�����6\u001e�m�eO�s�<\u0018�X�r�@o�\u001c�\u000f(!�\b��m��+{�$��f^\u001c\f�r7�\u0002f��/c\u0003��[_��E��M�@;�\t�Y\t�9�\u0011\t���$~���~���%��\u0002�\u0000�d\u001e�\u0003|�Y\u0014��a�$��vӬl\u0005�%��\u0016�QS\u0004��E$�<\u000bA���?�?�w��\u0005�~ʢ)6\u0002\u000fԸW6\u0002\u000e`�ȿOFp��Z7�>�9<�4��y�Z����,���\u0003����\u000e\u0002���Up\u0010�\u001a�\"ZVc�����L�*��\u000bVw>\u0000RԤ�b�3\u0016�#\u0016i� �ܦmz�\u000b\u0012�\u00005�-)�G&�)��\u0014\u0006ǛVƓ�L\u0016\u00005�{���6���r4��u�މd{��0�Bj�\"$���b��!\u0005�\f���r�i�\nM�G�)U��ppp�:�\n�Zv�\n6q<�|\u0011�\u000b�7�۫��\u001et���\u0018���\u0018{\u0010���\u0013��\u001c\u0012��Tv\u001f�e�PL����\u0012<��߱\u001d)+�y9&�h�/�+��+Sk\u001bM���_Ɨ��b�Hl9s���B���۷6�[��\u000b\u0011��\f�\u0019�\r�#���a\b�� j�6q�\u0004E�\u000bYe4�\f\u0005��1�\u0012��\u00153F�i�\u001c�1w\u0000wҼ5�d��\b�\r�:�ƍpB���\u001bl�\r\u001fL]A�쨨�m�#I�\u0012\u001e\u0016T��R\tԘv�-���n\u0012\u0004��\u0000�֌��\u0007��w�\u0000\u0000\u0000\u0011�#��#&�,n�/\u0000\u0015`�����/v���\u000b� ��>�֟�\u0002ۡ��@�Ui14�\u001c�eO��usH`=+�{|��5��N8m&\u000e3�\u0017�\u0006���Fh��P�\fT3C[X�\"nm!��D�\u000f*q�e���vg|��㷾��\u001azQ�þ���ȴCz\bN�M�\u0012Ī�+-\u0004��}\u0016���}��Bi�q\u001b�\u0018u�]���MB� ���!�L�GB�1+\u000e\u0005Hq�;��\u001a���Y���P�mu�%�yd\u0005M\"\u0010���끉���\u0014�O\f�Mg�V���93uFQaE�[ڵ��v\u001d��c�\u001bzɬMJ[�&�/��n\u0005�.�b�\u0002�A�F\b\u0011>\u0016T�f�\u0006��a\u0011���$���5\u001b�·��Q`/\r�O��}��\nƶ���\u0010�xu�����aQ-��A��\"8��.���٩��Dp�DU�\r�\u001f�\u0006�\u001bQ�%[�=\u0014[_8�A��\u0005t�\u0004fe��y�\u001f�����03�7\rI�\u0016�\u001d~b�2<�U�������*�ǖ��ά��p+a\u00077��\u000fs�;�@[\u0013�\"�GC'��sK%��dl/Zm\u0004B�\bN���L�_v�\u001e���4u�Ô�y;�g]\u0004�I��&\u0002_��䏓Z\u001e���\u0014,\u0013v|�Pi���כ�\u0015��_�=b�\\\u000eh,��ep>�͆&��\r{��џ���v�9�P^'\u0012!�@,�!6\u0006���l�N�\u001b\u0006�O�\u0011H�9h�9t\u0000;�u����\rl��'\u0013�$k`�]d��̭�\u0017.d�+|J�q8E��Q�z(�y�M:�\u0016�Pu��\u0019�W�\n�I��H�@\u001dhJ���\\\u0007fx� ��[ċ��-ϻB���qf�퍼��\f�Y�O�S�M\u001d)yG/�-�G�\u0000��ӓ'�'h�~\u0001+�d�A>�\"L���\u000ew���*�GԻ��˷��55\u0003Д�.\u0017�N�^��N�i���7QyZ9�R�C�R䭨�K�����'�>)���ѧ�@�o�\u001f�❪�\tc\u000fu+yz��\u0019\u001d<��\"MR)��C�n��|J\u0018O\u0001�A�\u0004WUd��\u0004m?i��NI;w\u00067BP��D؍���L6�Fh��;���>9�`a}w��\t\\}ld�\u001cP����\u0010b�i���\u0011.Hd��֠\fT�\b\\�2dB��.�\u0017�M�\u0007\u00143u�@H:��ha��y4�\u0013\u0012�Dž/��������\u001eQ�S�\u0001!\u001fw\u0018�(N�'(�B\u0012JDž��s���WBuo_\f���\"�x\u001e3j���\u0002��mL�\u0015�\u001b/}�,�\u0007M\u001f�#�M0�s�\u0019��Y6E�A3�\"`��W��诼��!v�}\u0017���rBD�>��D�df�]�)���\u0014EFx���:\u001a�/L�h�*;���\u001e�%��\u0001u�\n*�^��\u001ce\u001e��\u001aܳ��3@1�\b#�=�ݛ��\u0014��)��cΨ\u0003\u001f\u000b����)s\u0000\u001f\u0011�\t��+Ag�A��\u0018Y^b؆ؖ�\b]{�n���3�]���a �\u0016ɳ�C�=�]\u0005(��w��U�5\u0016�>� %n�$\u0001nu�8��\u0004�.Z�e���\b\"��\u001c�a*�\u001bi��Wr��7g�\u000b��ۍ�d(�Ȃ��v�B`]$�S�9�h(u\u0018�\u001c3�Z�ã��\u0015g��C�W�R\u0003��E����/�/\u0011Y��Ƽ��]B��f\u0005�\u0012��l\n�,x+.�x�A2�\"t��L�_���\u0012��-q���˽\u0018�5M�1�`�D\"h�a\r:��8M��Ê�y�\u0014H��\u0002�V������\u001f\u001d(e��Њ\u0019z�\u0003M}!�\u001cn�#��\td�Ϊ�5]���\u001a����W���k�\t\u001a\u0007zzĬ\u0015�����W�'�uNF�K���0^\u0006�\u0001��\u001d��\u0003\u000b;�����8��N�\u000b�Xf.�;\f�]\u000e�\u0000�=n4#e�Ԣ���(�vy\u0005w� �\u001e\u0006\u0013��AϬ:�\u0006�\u0013�����ZV�DU�?{�\"\u000f��\u0001Yd�/�1,��w\n�{ԑ��i�U,Y�^Z�%��a��8-�y�*���M��-vǂ���8.Z\u0002\u0005���K��U�\r�\\\\�ͯZ��s�Wv\u001cLϜ��A:�\"���M%y�&U�\\������h���~W\u0005�\u0000\u0012�\rem�fL!�\u0005(H\u0004��C���8�D(C3\u0015�!>\u0017���L��&�n\u0004��9\u000b\fo͓߈\u000bI�W�k\b\f\u001byN|�N�\u0007iАC�#\u001cO\u0001�C��O\u0019�oS`D���٪_�޺ײ�t���I�e�\u0010ź(0\u0015\u0006�\u0000h\b��\u0012���\u0017`��\u001bk\r�+���\u001e=U<�An\u001e1D��'޹�; 8V\u0006�֙�������\u001bT�رk:*�>�\u000e\"ڌ��i|�\b��|��B�����V�ag���\f\u0016G������\t�e���m8����������w�b3@R!y+��\\=\u0019j�A}�\"���MBD�M\u001cx��N�\u0010��K�\u0013%��E���R��ɯ�!ԍ\u0004�/{\u001d��\u001a��} ��n\f�H�\u0017,\u000f��}\tQ6\u000eM�O��?$���:@B\u0013\u0005\"����C���\\IJ��ʀ:n\u000b:��ٸt�\u000e(\\d��!Q�no�`������ȿ�2��ߊ^�9؄ye���Khv�2[0�t�~���/��1���\u0012�\f�c�<�,:\u0004L�ƳVaĜ�D�D�����o�Z�w���.�\fxZ\rZ�ф�o�\u0004�0)�\u0017���A�:\u0019Dˑ�jͰ�\u0005i&���#\u0011ʃ?�h}�����:�����)\u000e\u0001\u0007�u6�\u001d��J��jU\u000e2l\b�)�X�Ѫ��A!X\u0004\u0010bטQV�\u001bM\u0003V�-�\u000f\u001fܚ���B-��\u0004���\u001e�JMk�N\t!��J��GK��\u0002��\r3��#���r5�\u0007\u000b&��J&e�s��1nPX1Xʑ��Q��ٵf�����X��V�Em�\\\rC\u0004>���|뾮\u0005\u000b`%H��F��\u0003�CZ\u000b\"���?pg�闉ڲ1\\�s�(\u001b���\u001e��\u001a\nsR�\u0013D��x��p��d��\u0019@lq�\u001d��At�\"؀��ml�99&�`w�\t��?�9���:*���ԫ��\u0011���pG,r��>��\b}\n\u0018�\u0018\u001eb�\n�߃[\u0016��\u0016[\nH���=�d�\u0012�p�g��'�\\��j�0�LGf�$�\u0007�MfH\u000f�;\f�J�_|\f\u001f�?�Y+�Zu�\u001a�P���i����\u001c)á\u0015��j�eC�|{�Zڸ}���>�rM\u0019\u001a���V�����=�B�����7���G$�۲���\u0003��\u0014�g��?���d��\u0003���\u001b�k^���Ac�#\u0000���b\u0007����)h��m�5�\u001a��fP�r�TO�/\u000f\u001b\u0003\u0004�*1iKgs�Vz^�,��\u0016\u001c�S�h+�\u0013�\u0012\n,��U~����HwH��\u0015�M\"|\u0010�B�%�g\u0019͊�iÄE�\u0007�\u001a�Ñ�C\u001c��b��Կz�Z�=�G�;)\u000b���tS{�I�\u00174� �A����*t\u0014��:�\"�&��V����j�\u001aK[\u0004~=��ڕ�\u0005?;�+��\u0002Fj\u0017k���D�0�3\u0005q���xO�\"��.\bOG�&c#\u0006Y\"qIkJ\u0001p\u0003�\r�/����L�2�?r�&\u000e��\u000f�����j]R���c�\r�\u000f��^?6\t�W\u001e�PZJf� �ɕ�u�j�hΑ@/��)�'�\u001f���\u0014\u000b�A�\u0006-ox�\u000fW��?��\u0014'K�vrYe�b-9B%]�R�-\u0017p{i\u0018S�G�ުO����Au�#\u0014���ZY\u0019��m��\u000f\t푒�� \u0019�/��pz.��j9\u0019����3z-\u001b�!N�ZSB�9�_\t\re�Ӣ��\u001a\u000f�f�T\u001bVjh^�J�5\r\n�\rꐖR���H��\u001a��a\u0018���?c�d,��^����Ś�W��i\u001c\u0002����>�yu�\u001f�s�[\u0007�R��U�ϋ�:0�'�]�R�8�L4�2��y9w�C���1���~g��f)�4V*N�I�uŨX�a�~��5i��\u000e�L�S\u001b��:\u0012�a�\u0016|�\u0004�^�X��C\u000e\r�%%�ۈ\u001d�x��6\u0001L#��,��ʀ8Q1Y�\u001d�k#�la�\u0011�Ś-ޱ7��a�V����o�o\u0015��T\u001cU�Jy��N��^KcbŌA�7HY?\u0001�G��\u0015��\u0015N��9�2�;�}™�Gh�\u000f��l#�&�\u001bm�n��RR�����M\u001d��,$=��%����As�#(���e��Ӊ��i��x�5��`v\u0014�8�4�\u000eJjd\u0003ݠ�GL c�>��nZ�%��\u001732S�\u000b!�u*Z��^J�{'#�5�I�k�� ���\u001et\u001f��W՛��#�\u0017��\u001d���g;>�G�i���\\&�1�(��Lq�^�v0ߜ�W\u0003��+��[��v&�\u001c\u0006u;:�ƫ�=&\u0019M<���j�\u0012�C�l�T�Kk�X��\u0011X�\f\u0003�j{�-�\u001e0��fV\u001e\"���\u0010�ƾ\u0005�\u0013��>����\n\n\u001bs�ӜE�c�E��aEt�&�H��o�'K��@�����Ν��ݭ��\u000f\u0010�.7�_̑�*Dj��UV\b\"��Q\u0005�\u000b\u001f�+���{�)\b%FX�f�G�B�g�~\u000eGr�\" TZV8��Ң�\t:�!�\u0014�geT�ڰ���~�J�%\u0001`d��\u0002�X�$�S�5���\u0011t�1\u001f��\\�q��Am�#<���a�_�x�0�#Kc�M�&\u001f\u0007����ɼ1#\u0016e\u0003M�\u000e���\u0006RT����hQp�S\u000b�V�\u0007\u000f�D�8��c�\u0007�0�\u0007����B1\u0000�\u001b��8YX\u000eh��T\"�\nŽI��C\u001c:+�φd�6�hp�\u000ei\u0003��; ����?7\u0005u��/������b֍�)T�lD�l�(j�ߥAr�]&�\u000b\"\u0015KISiR\u001e\u0015,�\u0006�/\r�K�L��\b�\"&D|�����ɾ�\u0001ĝg�\u0014'i�#�7�4�n0b~́�u\u0019�͂Cj�l�*�6�c�/\b\u001fPc����\u0017:��\u001d���\u001eI��\u000b\u0013�C�s�!6G3�Z���Q���}~̏�\b�\u0007\u0019U�@��h��+5�P��E�hf�x��d�cmHH@�| 7�\u0013�hAN��\\��\u0007�\\�s\u0005\u001cO9��\u0010�k��4\u000f8ՙ\u001b2 B��\u0015~SR7�I�Gk�Z��M\b(=�ŚhPT�\u0013x@�r�a ����vp��+��^�SA?��\f�I%��y�\r�Y�N0���(J\b�\u000eK������\u0015���\u001f�X�Ͱψ�\b�\u001c3�%R��\u0005�?\u0007\u001a{��Y�_G���\u000f�\u0019\n�\u0003�����K݋�\u0015�-\n\u001e���B��B��0�G�x���F;\u0016�啒Ι��!��A,�#d��M\u001e\u0003�\rj4�\u0005N\rN�G��3�n%�'[�X]yz[�r����\"��3���U�\u001e\u0014{\u0014����$�{̖B�a�_�/j(q@�]c��)��\u0018�Z\u0005/b\"�HE��B\\,�u\"�O���V��o�\u0016��%�����pt�_���I{�_w��ἰ#��\u0002B�\u000eﺆ�\u001ar��9�Z\"]\u0016eٰ�PjrkLKƦX[VވM�ѥ�\"#�\u0019�\u0002�A�\u0018S�j��-\b+�3\t�}�?J̮\f�\u0000s��=��꿢��E�Rba���\u001a�J5>�\bb�\r�\u001b&����D�F�t��?���\u0017�<,���Gv\u001b$��D�i���e�i\u000f��I:ƺ��.Sl?ק�\u0019�� gH�h�V\u001a�l.pH0:��\u0018��\u0001eu-����ç<�<�2�x����h��$\u001a��A6�#��������̿T��\n���W�y\u0007�0\b\u001d�,�������/�~e�jY�?\u000e E�l\t7;�\u0018�7\u001bmK����\n^�\u001d�����\u000b�!\fx%F\u0015��?=��xm��r�\u000e\u001a\u001b\u0015%���V�U�&3�\u0014I_���ޮ�>��\u0006��G\u000b��g\u0013Ol#�(�ikU9y���}�PBL[)��6���%Ř\u001b(��Lv��\u001b��\u0019\u0013���J9�a�e�5w;�65ԘQK��z8���p��Ǚ�\u000flD�����6I94|��(\u0015��;\b�\u0004N�\u001a}g1I�\u0015&x�d\"HT/Є4�J_!\u0007�D\u0007�\u0017�!�=p~1��[bߺ@\u0000h\"���7���²A�\u0007�\u0018p?I 3�\"��R�vV�A8�#���L�������\u001a<��\u0001��\n!\u0019���\n\f�om$�\b.�W��\u001a5x1=�O>�\u001c��\"�?V �\u0016�\u001d�Α1T�!\u0004�B�٤���JA0�\b��_���]�\r#\u0010>����u��\u001cS��t��م7�C֨fg�T�J&\u000b\u0001������7�@\u0017%t8Q��ѷCSG\fZ��Ss)\u0000����� �\u0011��<:)��FH�/^�C�=��\u000f\bR�\u0010���\rf\u0010�5t�©ל�=\u000bĩ,=\u000bbMNB\u0017�vK\"���8������:9\u0017�PO���HX�E�p�ˉ�-0\u0004؎<���t�|ɝO����d(��C[\u0002�\u001cC���b\u0000��\u0000�u#��/G)���da���-�0\u0011�\b�[�A;�#���X�g�O[���յ0��Z�\u0002�W��N�p�&4�\u000b\"c�qx\u0014� �\f!�lt�F\u000eǡz���*(��\u00123�/K\f��ZH�X�����j\u0000ԯ�K/�cy�j�ܗ\f���P���R�k3�ׂ�ڥ\u0007�n��\tL\u001fI23\u0012���P\u000e��+X���E��?��\u0007�\t���+\u0014�?>��\u001d͞Ӌ�hg��O�\u000f�\u0016Ӟ��n\u0007�!�e��\u0016W��i��K\u001f�F3�\u000f��^Y��O���&HBS\u0000p��w\u0019�i�d��s\u0013���*�\u0017lp^����B�\u0016��ɯ��ԛ�\f�\u0013h\u00037�匘���.�l�m�(�;3\nO��zp�\f�Pr�/gL�\u001c����\u0003�֣J�\"YR\u0002�G��sޛ�A<�#Ȁ�MWb���E�b�����B᪬�\u001as\u0013�>\u001c\rW!�.\u0018\f��A2[a/x�[ע�\"�\u0016_b�3�\u0016�؟�]P����B\u0018��:u���%w��{m��\n�\u001bJ\u0013Y�0\b����y���\u001e\u000b\u0011Mcf�\u001f��M���\u0011n�\u0011��\n���\n�NB�h~H��,�S��c\u0013rq����N�\u0016S�-Q���Aѱg�4\u001fg�j�?�\r;��P\u0018�\u0016uCd�͏+�dj���1s���!N�.�ʏ��Դ�\u0012�/���߯��\u0011�4oyh�ߺf����bT� _-���\u0011��/c+��2 g����`��葆SL�~Y\u0004��]����k�6�V��~Y\u0005I6\u0002����\u001cK�ŖY\n�nj�v�\t�Z�N��=\u000bڃ�0\u0010�py\tp5�\b��·V\"ÞW�\b��G��S\u000b��s�\u000f�9!�H\"�6��*c�\u00057�$(x�NF\"\u0017�/�����a.E�b\u0002Ml�\u000bbiN�MSG�R�$��+�g�\u001e�Q��\u0011\u0010�G�0�\u0012�?p��1���~F�\u0004\u000e\u0002�\u0019*b\u000b`iq�a��é�\u0005\"J{�*���ۨH2������t#V%���ĩRL���E�Ap�$\u0018���k����zE\u0005b�����6\u0018�rm��\u0014�\r*��Vl�7o\u001b����\u001a^��!�h\u001c���[�i���fVd+d?\u0006\tOEi*G�\tV\t\u0004�$i fY��\u0004KT���'5�*��f�����j\u0012��\f�\u001c$��z5\u0011�'��\u000bC����K�$�hƙ��\u0013z�qkc%,����V�q�DG�0\u0011�-�`1A*lv>������������k�Ԛ�Pq\u0012\u0015D�\b���\u0006wm�����]���* *a7��\u0001�l/k\u0010��7F��2<4�\u0010��G)�\\1�H��_Z\u0010P�S�`�ub�\u0001^�2m�}>�\u0017'3<{q�PN��DO_%�齏���V�9��!p\u001c�j��4��\u0002\u0002\u0006c,�Ɔ��,��\u001cg9���_�Y?�ڵ4�Dr̶v�C�B\u0011\u0004�I�k\u001du�β~5 J���\u0006E�Am�$,��ĉ���[ƿ;vc`\u001bQ�E����p�\u000b^�0@�A�PB�\u001e��@�*;�Rr\u0001@���eb�\u0015�39�\r\u0007�8\u0017��\u001aR3�\u0003�r��E\u0017\u0000qi�\t�\u0017b�\u0014Ot�\u001ch\u000f����6\u0007��\u0003���Q��\u0004ˇhg��\u0016?��x�^!��\u0002ê�T�F:_\u001e��\t\u001b4ȭ�\"(d̛�D�>1�Ǽ3)��\u0010�(����k-\u0006o��ʬ�$�uY\u001a�W���8�bt\n\u001f\u0003\u0001�do�4ޡBô�E�\u001d�ٴz\u001d˙�jέ��Ћ%\u0002M|dD[f\u0006�\u0007EU�c\u00061έuC���\u0017\t\fG�S�kx�G�o���S\u000e�B\u0007A����.'\u000fOd�u\u000e:b�\u0018�!����@ Ҧ\u001c\tud����\bD�\n\u001c$�ur�`�0�se\b#\u000e�H�����\u000eQ/#R������ZЋ����\r�qN�\u001aE�Ar�$@����[[�G+�<\b3�)�\u0011v�v\u000b�\u0015J��6��\u000b��M4��������\u000e\u0006\u0014\u0012����\u000e�D�G��C�V�����& �8\\����!�!�A�7\u001a\\\u0010\u001b�\u0005��ƛ�=�\u0004+�Y�Y%<\u0006\u0014¼m���\u0017Ÿ\u0014dx\u0001Cg2��\u000e�E�ђc\u0007�Svuz<�\u0006�\u001b\u001a�L�\u000b\f�M�6������WA���65�e����(\u001b���CluTsv\u001a�-��%�z�+�z��)h�ͥ��:iA��[\u0005V�B$�\u001dY�5��?�ϼ�cb�Qo&�\u0004�IA)\u0011�x���\u0001`A~�`�\u001b7u=��*QҞ��ʛ���\u0012���-�b�b*O�p'\b\u0003Wg�\u0005�ϩ�\u0017Ye\u00002�:\u0000Ͷ\u000bK�9����Y�� �g\u0013i��.���A\u000e]�Av���\u0000I2\u001b$T�N:�0��+sB���(u���N���-W×�]�m�~��\u0018�\u001aE~(٥ȍ�Y�e��n]~�b���lxÂB��\u001cV@\u0018oY\"d�q�ٚjA�*\u001c�h�������\b���\u001f�5#\u0006�\u0011o��9p{>ʫB\u0010!�7�)cqasq__W���M�G\\\\@�68z��:����c�A\u0019�\u0004>�c��K՚\f�h�RuC3�5�\f\u000e�,R\u0006��u��k9\\Ӧn�=\u0002�\u0014N0��fGF@D)[/��\u001c�\u0006��\u0005�6�!��޸�E�AQ�$h��.��UV\r�-�u׺L��\u0019\f��\u0010��!��C7{o���j��|B�a�T|�+u%��AH�59W��g~�a�rt�xI\u0001�w�\u0011\u0018\u0014k�\t2��\u001c�{�_����K�U�ڭlp�_G�\u001c\u001b\u001c��ݘ9gԪԦ�n�ً%�Y�X�\u0016��\u0004�\u0001\u001d۞\u0011�\u0004ɠ���E�2�ܞ�.*��V�����\t\u0003�R�ߗ�)�[�Lh��]\u0019W�K\u0004�h �\u001a��2fgG���#7�\u0013q31�i�sI�l�a\u0002�}\u001f�V��&$�V�6\u0011�:uEUjݳ�f�D�:�\u0015��\u000f���\u0005f\u0003�;�~f31��R_�R�n�J�Tt���AA�$���L�T?�E�P��V����c�z��ȧ����6\u000bj�7�\u001b�muT�7�$��h��F�E�:�\u0001��e-j/�\f�(rXR�\u0011\u000bG�eF\u00008fJ�\u001a:qfk��\u0014nF[\f�\u001c��c�\u001d�To��M\u000fw\u0002\u0004�~d�5\b[��g��\u000f\r�n\u001e�n�����.�\t\u000e\u0004�\u0013ϙ�����2�\u00102\\r���Yl`���\"\u001c\"�XQ�<\r�����pMƽ\u0014���㘺;�\u0006\u001d{U��\u0007�\u0003͈(#W�\u0004y��\u0000P�,�(�\u001f^��\u001e\u0006��#��\u0001�����x�\u0010�k���v6��S[i\u0012�����\u0007_��%�V��g�̄�g1��r�e�������{\\\u0001O����\u0017���JЦo�X\u0016�B�#SM�1���;}�\"A+\u0018�6�|��È_M\t\u0002T\u001a0�E\u0017'�5=\u0015o�a���(C�\f����_���N�\u0013\u0005�;��#�\u0007~�݂�\u0016��F\u0006_��\u000f�\u0005^^�8�Z\r��J�0Ԡ}�\t��D�TUz\u0001Wڰ�)�\u001a��0A����\u0010�\u0012�#���[X=���HU�H�>p;t\u000b��ْ\u000e\u001dSi@�^��Y�\u001c�\u0014�\u00007\u0003\u001d8��K�!<ը-�u`��z7e,3�\u0015)\u0000/�\u001b<��4,�z�\u0019�8\u001d�s��M��\u001418�\u001a<�4SZǻ'�J���O[щI��������\u0015��\u0000�۽s\u0019�w��\r(�~\u0016�\u0004\u0007�����8�s�Ev8��h����Ag�$����n��Q� �>��!����}Ŭ3�����\r6�S]cX���u�D\u0011��\r�Aڥ��xM?�R�[9��R��L��mG\u0012H?��B\u0003\u0004B�Ԡ�ϒ�J�\u0010Z>*\"��2\u0007<\u0005�\"�a\u0003�%+\u0006��O7�\u00067Lp����2��\"���&y�w�H� �\u0007���YK=2f�H��,0U�[����r�@�\u0014j��\f�2u$J����q�\u001e(���?���cH�σ�\u000e����g��o\u001dH\u000em���\t�V�� ڜ�.���\u000b��e\u0010�� �Tz�,�U�\u0011�U\u0000 �s6!m\n����+xM4�\u0017M�Z�%�\u0018GE (j\u0007�Kj�$���ꒃc\r�j��u�>\"Nι?$\u0010�Pqp��q*��Jm��d)�\u0004\u001f�)ڒ��Z�,a�,[\u001d�J\u0004T�hx\u0015\u001f��A�ãA�$̀����w7}CԻh�\u0012����$Fg[\u000bDn�'��a�Ӝ?�'�*F\"\u0003�\u0005��:��d��:�@�^\u0006�yo����B�\fGӖ�J��J�^��*&QM���\u0005\u00150�vH����̿���E�-<\u001b�\u000b�<�\u001a�\u001b\b�1�#�!\u0004є�\u0012\u001e-)VT~~{t�\n�+B����cj\r\u0012g��Kx�;L����Q~��K\u001a��'��w�fFk��p�ܓb�b�R�\u0018\u0016�@��\u001a�з\u0016��x�F�\u0010ݞ���\u0001��B���}g���FO �\u0015Ui.�\u0012�z�DZ�u\u001c\u0019w�\"\u0010�6@h�,��cR\u0003�1��F�Ц��{�V��t\u0012\u0003����j���S\u001f����V�0\u001f�d��\u00172����ޮ��e��\u0010g��\u0011/�.\u0016��lq6����J�\u0002��O�\u0004���g~{}+(0W���jVd��ӴҞkQO֐,\u0000*\u001a�NI�<�9��N:�b�<��R��\\2s�{$���A��-��#*n�P��{��:��\u0013'\"\u001cO�g\\L9������)K%��q�\u0018�3q>�ݝo���bݘ\u0001\u001f�V�g;�>0ݗ\n���@��C�B\u0018G\u001c��A��$����mk@��^&�<3Q��KS\u00133G-�%����u\n;�\u0015(\u0012s��\u0003��0&!5�Br5o���\u001c�������\u0018�Tc\u0014��+���/b�7A\u001eU�\u0017���s�B�\u0001~�\f�0\u0019]�\u0006K��6���E������ER\r��%]N�\b%��l\u001d��HW�\u0000Z�4\n��]�\u0012\u0003{�+7�d[��y\u0010Z\u0002Q��\u0012\\��?\be��\u0013㥫 \u0005��8O�\u0007�n\b��3J\u0018�.�3��\u0011\u001b�\u0013�}���\u0017�E�!K�;+���zG>\u0017\u0013[��Ci\u000b\rK\t(�w�8}\t�\u001ddi^\u0013�~Z+s�!����.=)�q�\u0017֣�s\u0013�#\u001aݫ5ok���\n�\u0013.��d\u0001:E6�ة�^�du&\u001f݆`\u0018\u0014\u0018_�P-e��68S��-\u001dWa%\u0018�pw+\"?��h�UwCb�\u0004�Fߙ.���\b�6�\u0003I�c�>��9'��a\\����2I��\u0015�F��B{pJBd��~��$yb\rt�m#�$�/\u000f��RY%Ƕ���\u001f�\u0018J�\u00172�xx�����8\u000f�\u001d\u001b'��y��\u001eL�I-�CД!s�\u0012p�(����O�NZ\u0010\r�����)\b)�0�\u0005�T��_v*&�F\f���\t\tm������t����@\u000b����P}\rs2�{qϞ\u001c5���ߞ�\u0016�\u0015msmmP�\u0002U�{l�:ۅ�\u0000����a�K�c��(��\u0007���t�� %<\b)ޔ[�#\u0000\u000f���\u0014�\u0019O\t����2n�E�8w]����@\ru�>,\u001a�\u000f(\u0010!\u00130\t���m\u0018\u0018X.B��!���}�LQ�\u0014��!�S\fJ�[A԰I#�,#����\u0012@\u0016�]b�Ê驇�/���\u000b&��\u000f�65,��E�U��<ĝu+\n��\u000eJɊS6�}^�SM�G�`\u001a�\r��%!KĪ�h��L������\u001f��[��l�@��AY�%\b��۷\u001fo\u000f5\u0003.�r�y�rz��.��M���\f\u0017�\r{$aY���:�YD�H�h�\u001fIҧ;,uֿ]�i��}�G�H�\u0005Nbל�G�ر��C�(��jCz�.\u00175�=\u001b�V����ܲ\u001a/�ҹ�\u0001�[�\u0011G��VY�O\u0006�\u0018�\u001fZ���\u001b%�WF��%u�gЉ+�׍�\u000b_ѩ��M�]\u0001cG�ר��_�\u001f���o�aYh�(�� /͊.�$vnqH����,X��I9���&�\u0011��臞?dI��ڼA�\u0014�$�\"�X�]�ů\r�ii(\u001cwCO�]5�I[���#�\u0010��兄�\r�Wo\u001ft�����{f����\u0004\u0005Y��u;�E��3�l�7\u0002P�Z�p�}�Q0w�j\u001f�Q/F��H�#�\u0001$�Z\u0005�P�\u0016*�\u001dD\u0018ڃ�AN�%\u001c��L鈀A��z��\u0006!+}k��/�\u0012�C� y��L�*`\u0003O�\r/\u0011\u0004\u0017��w��F����_m@�D>�\u000e\u0001\u001f�Uv��k\u001f����|7�E���_\u0012�Vi��_�6��\r\u000e��_����?�\"��I+P�\u0013b���z,�-�s�p��\u0000Ǣ�Nh?��\u0001�UV�\u000bRO�B���(�n��\u0019Ȳ\u0010G��V�f\u0007iU3&V����C�\u0004��OJ\r���~���ud%?a0�R�w���q^\u001e\b�\u0016\u0019\u001aˆ�\u0004|p�����\u001ba� �3b���\u0003}�����am�dg;��\u0004�[�%g�4<\u0000�ݚ�-�I���\u000f�\u0004��TD�c>�\u001b����\u000f�\u001c\f\u0010�}\u0001M\u0015�S䢱6�D�m@\u000fH�#�1\u001fm\u001d\u000b��\"�pq�\u000e\t\u000f�;\n\u0006��A�E��`\u001f��XR�����0���%�h�\u001f\u001e:�?�\u001a�>���\n��,�R~��%?�AY�%D���b�i�\u0000\r����7�i\u001d��Q*\u0014\t>\u0018��w���NT���\f'�%fh��V�,��\u0018>�w\u0002G�\u0014\n\u0004R\u000beQ\u001d\u0013\f�\u000eO3�\b��l�ӭ�QH\u0019C.��N�'Eؘ�/d�\u0010^&�\u0011\u0014@n�LpI�?jsDZ\u0003�[ą�p;�G��*��[G��m�'�\u001dr̦�t$\u0004g\"0�8L\u0012\u001dU\u0005��w��\u0013�\u0012��h\nїdg�����Ka{��{��3���d#��_2w�j\u00013�HUB��W����,\u0006\t�]�]`h�4�40��V\b\u0013��\"��z�s\u001ah[����n+�kv��\u00025��\"lv\u0013�-�0J�䁛\u000f�nA�\u0010� �:7�\u0010�f��R!/j��7�M�N�G�r�WWU5N���ۃ�Q�T}���\u0014�P~\t��X\u001a���@�Aف%X����^!��R�me�rƺ�m{�1<(���\u001a1�\u0006\u0019� �a���>X�\u001a��M��.m3��F4��D%��;\u0010=�Π�\u000b��\u001f�*\u0013v�\u001cX�#\u000b:k�d�\u000bwӉj���g���9�l(Ǫl[�%GG\u0017�ųc\f�$��hX����(�\u001b\u0019$�3�=�;��'�����W�y߂\u0010��i�H-���R)��\u0007���F!h��Y�\u0000i�H�IC\u001f;ӟ�c뀔���X_���G�|�hY��ł\r,pr��G��jB\u0010ŒU�0>�_[zDA�\u0004���ͨ�Q��w�g�V|�2�W����j�|�\u0000�\\���D�[�^�lG��;o�rSཪ�I�X���za��ՈY���g$X��\u0003���\f�\u0010�V�wXM��b,�~�H�{\u001a\u001fxZ`��\u0016�1%n�{\"+Z͊\n�\n�O;�F�|,\u0002\u0006h5�e�q�E!m��_A\u0000����kY�w�8t\ft�M�A��0|�\u0004�э�qb�ۃ�Uf�WL�T�\u001f�/^vP\u0005��\u0006�\u0017W�B���܆��PuH}��O��[k.<�\u001c�ǣAC�%l��M%�i%a��#aK\u0007a�\u00000y����δ��?�)�م�.m�#�ˊ.:�5��:\u0011+w\u0006\"��e���\u0014!�l�=\u0006�\u0003�m\u000e\u0001\u0011���Ƴ�[�\u0001\u0000N����a\u001d9�2�HA���~�jN͌��r\u001dr��\u0001\r�(/�f��y����o�\u000e?\u0003ˆ[���r�j����_����\u0012U�Ԝ�M�*�(o޻�z'uU\u0001e���HS�.LV�ׅC�<܈Ծ\u000e��uE\u001ft�P\t���ඕ\u0013\u0016�j\u00005Gxb�;:y�\u000bJ��\u001f\u001bAou�.4��.�v����\u0014��0-2\u0018)\u0011o�.w\u0016uY�v٘�P�\u001b󾽛<��]�t��B�Y��k8Z�h��Q\u001f-\b�,�f@-徠f��p��s�@���v�Ck�\u001a7��MTl���`�;���=��\u0013[\u0003��\u0019���\u000b�G�\u0007N\u0014c�\u001c��Y��E0����7�\u0013O��hu�䤄c3�\u0002b���N��\u0012�\u001c��[��8d�R��3\u001bב��!�.����=Rt���\u0014\u0013����s\u0018d��\u0010N�u�\u0000Q�oA�s��~=�6���%��I\u0019\u000bYݑ+a��$]\u001b떠߯\u000b��q��\u0006�YR7�\u0006��p���1\u0014�P��W����D�=��5��2*��\u001f�A\"�%���X�\"���2��D�&y-��K\u0018*\u0002R�<'\u000f��a�\u001e2���άc1�%��\u000e;�G�/V�\"�\u001a4\b��X�h�S?�\u0004iF>i�1���F�+3�\u001bU��=�Y\u0007�m��\u0007b�C\u001d�\"Q|��\u0017�c<`��Z\t�\u0011�����]X������c\u0013��z�\u0004p�'���?uS3~\u0004~\r����a���D�KV�/% \u001e�\u0000K\u001b{.�\u0019��n�&)��FMx>�>�\r�Yx�n�r�A���\t��;�\r�dη�\u0014�\u0003SO��1����u\"N,L\fP���wg]�L�fg�Y\u001e�8H_����bnp�:ƣ��\u001a\t\u0003>C9\b���֛gi��W�H�A,�%���L��\u001a�mH���\fT�f�>.Ew�<�N`�S�p_�+!.-�6�-U�)U}�‡DU\u0015����WA���\u0003\u0016t\u0017\u0016�\u0005�\u0007��CbAG�\u001e\f�\u0013�K�*U\u0015�Bq�+��\u0014ƌv�,\u0003�ڷ_x�E\bsZoj{�b\u0017�aC�d'>�\u0011Y���'5[\"TB\u0012�\u0003�\bV$U\n��1�4/BX�8����-���\u001d��\u0005���>��$�\u001d��-����0�-�V��ث߯x�PV�,��[Ȭ\u0006o'f�Dqacw��*_Z�e�B�EHq�r��P@9b6�!�X����M��|)��'A3\u0018��P�\u0007�U�y\u0002\u0003��;��i�%k����\u0011f�cvZ \b-\u0012\"_p�B�\u0019���\u0007�^n��Á�G��l\u001c(�6\u001fA p�\u0012&��\u0006����Y�N���/w/-9ɼ'��\u0005�y�\t��/�>$�k�z:O�tw\u0014���\n�3D��Θ6��76:Þb��h����!�\u0005�ˎ�+�Ɓ��\u0017�7\u0019\b��̸�I�I��A!�%��X���(�C`��9Oړ\u0007�xJ��0\u0002�p<�[�Yv������\u0003-(N�\u0006\u001c�!um2H�����m��ͪ�]���s�܇d�7s��\\�lDC&\f\u0001�x��5r���\u0001�w�\u0011DoM�FH�P\u0001�v^i\u001b�\u0019�D��6�U�E�\u0011D\u0004w�\f��ݯ��\u0007@{��g\u001cd0h�����NO��9�#!�p��x\u001eA\u0004_�A�7�[���\u000b�\\�ą�\u0000.#N��I�Z7�b\u0001�[l(�h,\r\u001c9-�J[AX=D�V0N���Ez\u000e���Li����\u001c��n�Ot������%�,\u001e$�\u0017��\u0012Efn�Ԉi9y��!����\u0012\u0011�A3�%���L�w.8Ί\rJy�p�i\u0000�\u001a��\\\u0013tš�7\u000b[b?���\r�\u000f���2槫���\b���\u0013�PW�W������܏��b\u0002tة\u0010I�5���>���\u0011�ՔE~�UJ�q\u0012����P���6`�\u0005OY��|�۝��i�\\\u0006\n�\u000el.�>ck\"]\u001e�뛅�Д�'�\u000e�1�a�`�P\b_f�����}/����_�����\u001c�\u001e*�p�\"\u001d�T%2?��ᄸ��R�򿜂N�n�1|�Y�\u000f�\u0011�qɪ2����/��<�������Q`\u000b��o哄-���(���&���@�M\u0017���\u000f�]x�\u001bm�pN��;�q�)��A0�&\f��Mz�\u000f~�v-g\u0002++\u0001\u00123�\u000b��w�����_Y�\u0006g\u001e\u0006�I3�i\u001cq�r�(�U��-�@�\u000f��!#���~s��R�;���q���\u0016\u001a��D-L-��(nh�c��i{��4� ��\u001cJ\u0017���\fy��M\u0005��N����է¶4~��s5�O\u001b�\u0018)\f\u000et!\n�eSPI\u0013B`�\u000e_0�嚙��%�REx�џ ϤN)���\u001bn|3P\\6�B8\\,@�����\u000e���}\n�Ƈ\u001dr\u000e�x�\u0006�x|Zt�}\b\u001b\u000e���E�,2���Ki��\u0003�\u0012![\t�o�!���\u0011\u0007��-3�RE��m\u001f\t>\béU\\^L5MP�`{��N\u0018�pؐ\".�8\u0004�-�Ӊr��A,�& ��Lꚛ\u000f\u0017^�\u0011\u0010�,\"G��o�B���R]n�ѓ��m\b\u0001�:�'w��l��\u001d�(\u0011�x�L\u0016��\n�\u0007�tA��{�M�Y��b�X/\u0001��\b\u0016;cA�V���,\\\u0007�\u001c��n��k�jV5M�r�,�k[��w�;�N��!�$2�h�π�΅\u001eU��K�KH�\u0017;��!�\r0�o׼O\f��F�]g֌g��\rn���!���+�kg��\\��hR\u0010\n@:�\u0019��\u0002\u000f�\u00060�n3�*/���\b6���\n��Z�brD;�1f\tO\u001bz�T�\\\u0014~\\\u00192\u0007��_;5\u0007�8l\u001d3���=\u0016ä��\u0004�P[�Qn�ꕱ\u0011 ��Ծ>\b�\u0006Ԭ�w�\u001c���\u0011��A'�&4��L��m\u0007�6�\u0010G*�+�\u0017�&M>��閴��ѐ\u0015\u0012���>DO�\u0004��_\u0007lҢ\t��\u001a��#s�\u001cB�F�eV�2�\u0010�|s%��Y\b�^�8��\u001b\n�I \u0010�\n�&%d��+yq\u001eσņ�gU+\t�:���\u0017�\u0005Hw-y\ty�ڜ�B����$��O\u0010\u0006\u000b�i����\u000f\r#-�߯�|=�v������\bM7�\u0000&[\u001b$\u0019��\u001f\u0017f�A#�&H��L��S��I&Ȣ\u0002xD\trg\u0006�\u0002����\u0000�ix\b��rvڢDM��d�4��\u0006\u0017��G�f\u000e�\u0004'��f�0���\u0002�l��}l�\u0013��Ej\u0012�\u0016�Z$�\tM�����c\u0015\u001c�>\bbZ\u0012�x\u00003�\u000e�d�qu!�\u0016E\n�;�15�%�&a��N�цŠ\n�m.P\u0004�ܓs���*j+^���{�\n>��x�����+\u0004��\u001f2�k�ٵ\"JQ\u0019~|=�b;�������N�c�m`\u0014/\u0003B�DZ��\u0013<\u0013%r��\u001b�kj&������T\n��4��1��7��8[�簒��r�<}�I\u001c��\u001a�kϯ���zv^�@�=�v{F���~�A'�&\\��L�$_�b�\u001bX���@�XBw������R\u0010�\u0010@09l\t=���\u0001\u0018�;7�0�\u001a��/\u001d\u00027��䃹\u0002#)\u000bS�\u0007�j�����,j۬t�\u001c�v�n\u0007��\u001a�,�̬J���l.�<�\n\u0019:�\u0003|$\u0014�<\u000f�x;\u0000\u0001Y0H\u001b͹���L�'$7��\u000f@���#=��<\u00191�\u0004���Bw�{���\u0004�q�x\t\fo�\u0011�r|��g�'\u0018\u001f�\t'�$z�\u000f�v����1�fr��^\u001e��d�زK�fOM?w���Ń�\u001cZ|D䃇x\f/Y���=�|{9(\u0014��z����H��'�(uK�p�\u0001H�\u00108g\u0010����_���2��F�$�T6��$�\u0005��A\u001f�&p��MzСW�P�14�Z�H��\u0002y§�.ub���e���\u0016<,�*�U\u0014d{��v�\rF���kk\u0004�����D��m�#\u000f��М \"\u0006���\b�c\u0007ћ���hRZͱ�+V�Jlك\u0006-���w��v\u0013��SY:�̩�����G��uA\b��\u0012�4���%|�\u001a3>�9�y�\u0005\u000f��&\u0016��\u0000+5Hc�,d�8�n���L�o�O�m1G��&�\u0001]\u0006��\u0002�@Y�e{���1<囏\u0001�\u000e�*�\u0007\u0013�q8J5�'�c��դMo\t�Ln!�\u0015�A���\"ԨD�\u0013r0۬ܕAZ�\u0017�p\u000eb��U2�4B\u0007{�\\��yiD\u0006\"fn�A:�&���L��+�vx~�J��\b`@\t�_�W�!�X����j\u0014K״==P(�\u000fXn�y\t���X�8�型���L“�m*r\u0001\n,��R\t[�\u001f�*��\u001ev4�\u0011\b��]�C\u001e��x���\u001b#x5�G�N�N�\n��F���aS&�<�V�\u001cD���\u0003��\rnj\u0011C�v�G��4��96\u0000��!�\u0002Dq\u0010��6�}\u001a\u000b_�'&6\f\u0016�>����)�J\u001d\u00139��̋s��>7��C���)O\u0001�\u0019 ��@t�k���E�H��8��y\u001fF^2t�L��\u0016���w�9���5��\t�M(u�$`�b�;�\t�AJ\u0001.BO�=V�d�n%Xv�>S�����I�k�!��I6�g+�1�.\b[�\u0003\rZ��A1�&���L���,�!�\u0006]���\"��:��}�\u001f��\"�\u0005\u000e:��\u0006��\u0019��*\u001d�+Ee\u0014�7��y�)_P\u000e�\u0019\u0001!�!9&����� \\\u0012��\u0012���S�\u0010W�I�^�jˌcl���\u0018W9��Z.�\u000e\b�aloz��\u0011*]�����p��<�(G=�\t�%�\u0001�oH|\u0002��\u001b��\u0019�۱��\u001a��-�ts�xc��\u0014�m�S��\u00002�R�z��X��*�\u0016%ya\u0017X�(�tf��`׷\"\u0019��eܕ�%�\u0007�\u0000QN���=\u0016�>��XԘ�N0\u0000�+{�\u0018v�K��t\u0013����XH�=QF\f�Y�8_�&\u0019�a�8�a��m7\u0006�r��zr��`c|�O��O\f\u0003O\u0004�\u000e_H��A-�&���L�\u0015�\u0001gʶ�ЪY�\u0003:ʹ�\u001e�x驞K��g�e�j���-j́b��v\u0019ݲ)�Ȅ���;��}�\n�M\u0013�\u001b�9qA1b\u000bzHՇ��y�!\u0018E##\u0003�{���� \u000e����QA�\"0v�r╟)�c>�>��\u001a.�\n�P^\\\\�x��O�F��\u0005�a�\u0012�Ö�[\u0017��b8j\u001a�^�]3��8�!:^�\u0007z\u0005\u000e^i`��U\u001b��4\u00001�ca\n���C&/K1HI�����Y\r�i��WW\u0000�����cR�uH�!OH\u0003��0\u001a��+\u0001\u0002Wm�@\u0019@X�t���v�3�ʨ��\f!�\\Y������GO���H\u0014�f�\u001e\t#\u0007��sNdsq\t\u0002�\u0001ٶ�A?�&���MW\u001d\nR�\u0006��\u0016��\u000f��v��7£\u001c�d\u0006�\bз�:�\r\u0006��L��6�zƶ�\u0016P��\u0019��.\u001c��\"c��by��k)�\u0012�%�tJ�/���I$�d�&ϛ�\b����?F���m/|�\u000ea_��_Ȟ�p�*1L�I�H�]s�'��?/�\"�ose\u0012�\u000e~]p\u0005�ÿ�,��b\u001d_������#������p��\u0002�;�&N�S\u001a�*�$\u0007A��-��?j���$*�\bF�`��Ǩv,;�z\u001a=̒�\u001be�� q��\u0014�j�4\u000e�c0,̫�\u001cѾ\u0006������dH\n ��\u000bN2�#̷�\f�6٬'_�;���~��!e\u000e*Cn�g�r���0}�\u0007�6*�\\���V��/:�n��A<�&Ԁ�L��p��.�8��N9�Q�J�\b@��B�?��\u0001y����\u000e{\r�'�A1e\u001b'Lv2�\u0017?�},ۘE\u0001NH�=�Zԗo�O��V��&t�Z�le՝7x�%Zoh��Z�]��\u000eG(9?�@2�sg\u001f���f�\u0013٤\u0005�d~���0kf�2��!\u0006�,� �`\n�M��_�\u0015�\u001bB4\tqc�P��N�=����װ\b����D\\��>�\u0013�+��f��`��*\u0002TN�Qϕd�>��8k�:��ט��Q95P\u0005R�\b4������[%�)JcJ�\\���.\u0018���R�nP1\\K(UV\u0016(.�\"�!�\u0013/�i&�\u0003��16��\nI�\u0012\u001cIRk�p\u000bS��_\t3<\u000b�/�@M��&2@ߜ�A?�&��X���l�O�\u0006�\u000e��.\u0002�;Ì��:�\fH�?�t\u0003����\u0000�T��%��1���~4N+?pt�ӖW��)<\u0006|\u0019�\u001cNUsfk\u0007\u0001\u0007�]��o\"\u0012\bb�y&���\u001cS�k�\u0012��>H0K2��y4yD+�IL�v�\rÜ�3�Β]`����a��+Н.�\u001d�F˹%�\u001d�b�[��c�\u0017�>���j\t��n�\u001d%�\u001c\u001e�v�K\u0007\u00003q���%����2W1\u001a\u0013�[.\u0018佶��~��z�\\^�Gxh�ym����>\u0016w�/5[��k%t50���x�����:\u0013v2&>M�\u0015�C�\u0016t�}�\nU�z\u0003\u0004\u0010\u001b1\u0002�\u001e�\u0016�s�\u001a\u0013�j����Ϧ�0ߨ�R�=/�w\u0012\u0007m��l�a!����A<�&����\r��+\u0003�D �}:9.� ��2Gb�&������d�xH��t\u0012��ת\u0003�P\f\r�\u0003��M��!��8\u0000��1��+���\u000e�������f�v\u0010N��翍�4�E�*7�H��j\ntc�\u0016��=�'9�����{�;FE\u001dR~`�М���6l\u000bލ�6#�<�+�nd\u0012����x�\u0007\u0006xX�k5j�\u0006\u000e��\u0018�\rV���W�g��\b���a�]���U�Έ�p�N��P����\"�\u0015%j�aO\n,�5z\u0004�ߖ�b_��c8�J<�خ�WA!\u0006Z��\u0017�\u001cS\u0000�ƽ\tb;}S֟���I&RC.�\r\u000e\u0011���\b걄���9�:�#�ȯ�ǼG�b-\u0007,��W̾&3�C?\u0007dE\u001fC�u\"v���a�A?�\u0000\u0000���\r�>�s��S��\u001b��\u0006}�dd������\u0002�`�l\u0012�6|�����@��Bx�\u000e���0'�e\u0006p7\u001d�zw[���8\u0010\u0014��\u0001&#�wn\u0019�{:�\u0017;��w(\u000b��mڲ\u000eD���f-{՘x�ܲKD�x�\u0005o�b\u000e��� $�&N��\r�5��A\u0013\u0017Z���|�\u0007\u0006��1o؆y�\u001e\u0007\u0006����Ȳ,\u0001N���W\u000b�.��\u0018\u0018�\u0019`d�(�t�@|F������\\�c&��\u0018�\u0005��T��\u0010D���8��\u0015*,L��1�J`h$:f�\u0016 ��׈x�!i\u0002��9H\n�5�[�F�\"{%1��Pa�ݱ�(\u000b�맼��p�\u0002�m+\u000b�{z�C�����B�`.�?���r>yk\u001a�\u0007#�#��0.ά\u0011�d���.�\u0003^�\"�e�\u0004\u00075/��h��~��F�f�G�A8�\u0000(��L���\u0010�Ñs�:�D���*\u0012�\t���\u0013��D��\u0006���\f�(R)UD��x\f>\u0018�Ib\u001f��+?ط�{����I\fI|���Y���J\u0015�Y�Y���-z����n^� \u001e(���XF1�\u001f#`�p&2�\u00001B;'��\\v\b�����w���\u000e\b�xi\u000e�@�\u0003Ww;\"��V��\u0004���e%Fc�E#u4Z��\u0015\n�{\u0012n����w�>�\u001cE�P57@^�}6K���X��6.���l�\u001f\te��IKm�����y\u0000��/����~�*\u0012`*��DA߾�\t�Je�\u0012�5\u0005��\"_��M^�,wѤ�\u0000����.��Iy��\u0006��\u0000�>\b㎪��\u000eJI c5�:�[il����A9�\u0000<���\r]l���:n���͝*g\u001e��~~�A�D\u0006U���D�_����V����҇�������]�q�,\u0005��\u0001�.7�@@ŕ\b��]���\u0019J�^��lcU�f�����\u0006���z8*�w�\u0004�~��\u0019�-������\b�!� ��n�H�5�\u000e�c\rpk\u001b(���T����R\u0013\u0014\u001f\"�\t6�~\u0011\u001b\u000f?Q3��@O%��L�U\r{xz64\u0000t���/_���i\u0012�|\u0011\u0017\u0013\u001e\u000f�\u0002v��qUa�\u000f\re6\u001f/�ߴ^�\u0016k\u0018�����N��w5K�Uz���\u000b�w�m*\r\u0012\u001e�9�6�1\u0010(4\u0000,�EH\u0016!a��k��j,ʕ�\\\u0018�/D]�F�d���d�V�~M1g�F9�՟�I�AA�\u0000P��W�/\u0001��\u0019�[\u0010\u0014C��Ģ\u0006��׾�\u0007���Lڂڏ�rT�\u0018�:�5�Ջ�5����\f��$�\f�\nlY�A`>p�\u0004+`MT;\u0007�\u0003\u0001a��-�\u0007:3��/�rش\u001e~q�\u0018��~|��Ss���c��\n����e��jA�4\u0003]E\u0015��(ƒ��\u001buk\rAs\u0006�f^�\u0018�\u001f���S�S�_�W\u0010� ���1�]x-\u000e�h,o���F�a\f�\u0016\r/�\u0004�u��+.,��)�G���s��af���F:�&�\u000f�pI�\f����6묺{��\u0019��\u0011J�\u0018y�4�94\u00036DO�\u0013�i2�\u001f\f���V�΃�P��@V\u0018r\u0017\u0018C����U�t�|\r����2\u0013��(���czJ\u0007�F��Ҁ���AX�\u0000d���\u000f�C�\\Z���=ӄ���G\u000b\u001f�f�\u0012~\u0016\u001f\u0002��\u0018k�U�\u0018\u0013\u0012\u0012�\u0011Le�zd��������ا�&�y����W�S\t�����r���D��n��\u001e}P��?\u0006^c�\u00022���n�C7|s���00�\\�ge�v4�Gp� (\u0014�9�vH��G�\r�]�vOjk\rdtD 7\u0011\u001d�6,rz��m\u0010��/�8[�a����l\"(�#��T�&q��8E\u0013z�Vޜ�(����\u0016n��G}�9A\u0002Z3����hV�\u0018���\u0010��l�?�W\u0014𬧶�]15\u0006U�8l�A�;��\u000e���A8`�\\����ޖ��P-\u0004�.���C�AN�\u0000x���\r���1�=\u0016\u0010�\r�3rr�K[\"1��i]M��\u000b� S���<|��l�<�Cm��\u001f���/�yw7Ά���=(��y=�]!�!�z'���-\n�Mh�|س>�\u0017?��G��k��\u001b�\u0017Α�JI�t�D[�\u0016p��-R\u0010�\u001e\"��uL\u0006�\u001bl�\u0013βO!o����\u0011)\u000e�]|�p�p��5Fj�g�\u001c�\u0012��{Bꅝ)�R�μaY\u0001m x\u0014(x��\u0012\u0006�|�\u0018����k�\\V�pE��V�*\u0010z\u000f�@�&�}�/)�UÜ�����,��P\n���F{�\u0000��\u001b���#�Pޓo�?���i\u0015�\u0010��\u0002m��\u0001q\u0013�\u0012�쉽\u0006��\u000ftu�\u0012r�\u0015˟��_���\rF�T��!�\u000eU0B�y�\r����N��E�AV�\u0000����\r��J�÷�I\u001e��0M\u001a�9�n��!Ƽ�i��\u0000���fR�j�|hk��\"&�\n-g��\u0007ԁÆ# �5�Ž�)9i]lD%t\u0004�͐ߗt\u0002K\u0001\\\u001e\u0011Т��+\r�R��p$���\t���_�\u0017tj�\u0010F\u000f1��b\u00142��Ӷ\u001b\u000f\u000fs-�@��P E]7\u000b|�ƕ�\u001a(FT*��8�|�lz��B�6\u0011k�5)\u0017A��h!\u0012�W��m�[���\u001b���� Ð!��\u0004����Y5\u0013��ET6�\"\u0000b�z�\u0001��B\u00186ܹ�,�����P]�����A�a!)*8��9�0�\u0010��\u0007�2�G�K��y-�뛌u�-�z\u0005=���\u0003O�� r�!.\u000b�׿y9�l`��,�\f��\u0017=�8\r�(\"\u0019�&��`=B��.�-<���\r��\u001e7B�cy����X�I��)\u000e��\u0005ΗRɹ.1�+�x�\u0006�UϼD�0�\u0015(���Q��AУ�x����I�\u0013u�/�\u000f�]���\u0007�姉Y�ߺbY�M�E\u001e/\u0010�nG]g����R��h\u001e�#\u001b&d���\u0000M*M�%�I���0�[W�܋C1\u0002?=�E�L��`p~v&6�\u001fn\n��&Fl�6��_��},��O\r�K���\u0017��َFG�AV�\u0000���L��_\u001cd��$(\u0017��\u0016��&���d�\u0011�`�(\t�n�8p4��ʤ�/�HS™�$�+�8�8�͛蠺�\u000eʭG!C\\�\f}�N��\u0002�\f!��4��~wu�P�_.G�B�Q.�����\u001a�\u0019�%\u001b�u��\\mI�m�6��\u0002I^��p\u0011}��2�\u00175.��\u0001׳���\u0007�4\u001f����x��z~\u001b�\n\u0019<�g��\u001eZ�~=�;������7���Ƅr�\u000e�\t�_��v��\u0016�Y��ggR�\u00160\u0006�(M\u0012�\t�\u0002�T\u0007v\u001a\u001bl!M�Ύ�\u001f���o�����=���\u0018�:ʼ�&��^�@�t�A.�2͎�\u0015ō\u0000�L�I�s�\u001d�B\u0010DR&\\@d/�D���\u0010��\u0014J�>�`=\u0014\r�`�T�8�%����1d\u0014�!?\u0000r���Ac�\u0000Ȁ���B�x\u0000Odtvbd\u001b�\"��D\u0018���տ�kf����t�\u0012�ڶsȝ-}\u001cd��E��kc�q�_t�Y�3��\u001f�\rїg�(���3\n��ܛY0!3t�\u0004��C�p[���Id�D\u0000\u000e�زMO��ٜT����b=6\u0000��\u000fB�/�����\t�W0X�B�!\u001f�F6�p����Y\u0002��N3�#+���\u001d�}.\u0005h�\"\r��\u0011J\u000b\u0019��Z9���R\u001eX�\f��+쉨�4n�b�g�K�\"�߫R�>�;\u00118;�g�Ҕ(�~���-=~�Rck�\u0011\u0001�.�A16�p�;fh{�k16?�(�ƈt��O\t\u000b|��b��:���˷�c\u001dt�١\u0003j}�N�AY�\u0000܀��l鴻��( �����\"\\��?�+���M��\u00178�w��S�)�\u0016�\u0016�\u0003���k[��(�sIU��U��t�P(�\t�^�4DVn���\nǓ�흱�6!��wV\u001b��(��ߟi�6\u0016�\u0019\t\u0019S^���mt�K�\u0001��o\\>\r��\u0015�\u0003��q��1��\u0016\u000e���{�O\t#Oŗƀ�f��\u00066|\u001dR�\u0004\u0003�l��}Ĝ\r��ܩ�H�\u000b�\u0014��J��8�\u0012�\u0018\u0002_%�$è$�%e�$�c\u0015g�Q\u0011���ǷQ.\u0019}(K�KQ׷#��=N��;$u�u3mtr+[��߳E�ˇ9�\u0001\f\u0002��~3\u0015����w�L�;a�ҩ�\u0007�\u001d\u0015 ���n*��!q|z�JR �\u0010\u0015�S\u0005ڬ�]�t,\b礉�r�vX%T�=�u+���0�AV�\u0000���X���\b�\u00019���%���\u001d�\u0003�>+µ2�<\u0007�W��@\u0003=Ҁςx���/*�No9���\u001eeD۽с��ۡL|�\rz��(�9;T�\u0002\u001a{\u000e�\u0001�>>\u000e�B���\u0006^�\u0016.�݂s�lx�~�\u0005y�%��$hA�.\f�!\u000f\u0003E{�\"\u001e�^#����Y!}c�����5Tu�\u001b�A��t�%\u0007\be\f�d�B�}�!\u0016�̾\u000f�\u000e=\u0005c\u001a\f�<��a�\u0005��'���\u001e�\u001d���\u0001�ݒe�\u0003�T\u00101?�\u001a\r�$\u00011�\u0003�{=@xO����+��J�f\u0015J!?#�)i*�\u0002\\@�Ϫ�6��q\u0012:�������21ܔM]μ\u0001\u001f�\"����\u0019V�3\u001c\u0005��\u0003)�x��\"�\u0016Y�Q~11p�jFOĞ�c\u0006����Nf��\u001fLF�_%:S�ܡ��AR�\u0001\u0004���\u000e\rT�����fX����TIf,������KK�X�\"L�}\u001ex\u0010\u0011I�ί$�ݦ�+r�g\\P��\\M�\b���]$�$�\u0002\u000e~�\u001bA������Y��\u0007�I��\u0001\u0019-\\d\u001fZ�u*Ot\f���lM�*���VW���Tޛ⠃\u0015\u0001���o��Z\u000f]Tό�&Qg�j��\t^K\u0005�a��&�Ov��\u0001�_�\u0004[i���5\u001e̱�f鶅�d\u0013}�����o\u001d^\u0000��k�\u0005\u0007�����^\u001e�K|\u001e��8���M�\"\u0013�Ͳ\u0011���\f(�\u0014<����������\u0013I}G�(e+yp�]�l��Фq��}��?���]Ys\u0012�����Ɍ��\u000f\u0018���\u0013{ֆ��i�<�.�^��/ܩ\u001d[�g��\u001b�\u0007{Z��]D�\f��Fu\u0000\u0001�?�AQ�\u0001\u0018���d ���/vr���G���K/��}�EزN\u0006�An\u001a���bC-��2bXE�I�7�;�F3����9Xj3Ԣ]�\u0000S���$�G�o\u0007�T�4�k�\u0011\u0011͵2\f#��\u0014��J\u0006�i�r\rr�\t@�G�b�U���)�؄M8��[[C\u0014?\u0001%e\u0016�\u0018B�C��zQ���\r69a�8�W\u0013��,߶c��{����7�\u001c\u0005:>�&*+*�(�:\\h\u0005W�&`�w\u0004\u00188��\u0010LxͰv�\u001cO��̼\u0007��10������\u001e\u0006�Wޯ4f�Z9�/�'\u0005\u001b�Qu_�'�����d\u001fԿ��\t���\n>~���\u0015���W�ʑ��\u0017G��ܹ#�&�ڞ�\u0019\u0012�_�1\u001a\"��ᦘuv�����Fqq[�h[�A��@{G�q��AE�\u0001,��X�_�N'�\u0019؎\u0010$�%���v�E��A\u001d��ia��\u00145π�8��Ip���%�V\u001a�/�\rjEત�0�\u0018�7��\u0012P}\u0019(�8\"��\"��od[��٨�\b\f���G�W�M\f#7=�\u0006z(f���i�b�t���O�\u0007�83�g��\u0003�X1貘\u0003\u001eq�ͮ\u0010�\u0012�uE\u0006\u0000��ҥ����wV\u0006\r�^�\u001f繩u>���us�Tk�I\u000fu�;�g�'\u0018�Өnb��Z�\u000b�K\u0015\u0015iku!V�6�1@V\u001d��\u001b�f\r�\\X&�EN�%\f\u0011z��Q�]�X��m�YE�r�\u0001��-8�&q��XaV���Th�1\u0007��_���y�/._\u0010S>��\u0011-����\u0019X��\n�B�\u0003�^��T�Z �\u001c����\u0011\u0014\u0012\u0010��AZ�\u0001@���\u0010r�}\u00151�1q���B�\u0002#���/v�\u0010=�ǹ'�BzJ ��P�1��4��\u001b�\u0014�6s�t�\u0017�;�\u001b\n���d\u0014�v��a�YT�\u0007�\u0002\u00193���\u0001֨^l�I%\u0011�\u0005,��^\u001e;�I�]�\u000b��ͣ\u0012e�s\t�R+|�]uBe�r;��4?1\u000b`֭\u001c@�\"���ͳ��*y��Y�\u0019�\u000b�7ɧ��Ƕ�CX����d�Yf����N�0�3\"\u0016\u0018�z�ъ�`�Ё7\u001a�_�#�\u0019\u0019~�=\u0004ҭ�s^�]h�f^{�(\rL��#T�\u0016w�8�Y��\u0014�� ��/�\r�:Î�Zz?�(�-�\f\u0000V�J��kR�\u0000\u000b3s�D�u��̱\u0016�\u0019T�T�8�С\n\u001cvx���o���\u001d�\u001a�nZ�n�\u000b{P\u001e�\u001ab\u0013k�eȸ���D�A��\u0001T��L�Z\u0016`�zr���`\u001f�\u001c\u0012e�E��:��L�P�z8�[�*d̠��\f`$S�4#8��mۘA\u0015�f�pÿs\u0006%A�d}���\r�\u0002�ᛂ�v���?�� ����Ļ[-\r\u00030C\u0014�6�`1�o.��2*��w�]\u0014�6M_ӡ��L�1e��f��hZgm�\u000f+\u0003���!0\u001eK�F\u000e5�J��\u0003�Mb=鰩3w��N�\f�\u001e,��*�'\n��o�<���#��a[w�pד1f&�>(E\u001c�\u0006q�3/M���l޻\"�ȷ\r\r\bళ��\bv��{꫽MS�ϻ\u0014R�\u001b;\u000b,�Y}�f�xI/�z�J�b>H�����%/'L#��\n\u000f�\fB�\u001f\u0000���=s� \f���̈́j�����>���\b���y��I�\u000b�����`�\u0014�x\u0012�]!z��%������U�®@�/�����{��2B1N�;2�rF�H#�(W�p\u0004�:�e��rΘ\t\u001f�j�$�V��z��\n\f-��<�\u0004��}\\���(�X�鴗�G�7�){������bJ-}t(�Ȯ/���.�\\q'C\f9�Ai�\u0001h���\u001f�ܺN�yw\u0012�~�{ݥ^���\u001bRķ��\b�n@(�E�>�q?\"�l�\u0001/�T\u0017��\u0005˞��Di7)\u0018G'P}hC�<���~��;i\u0006\u0007�\u0012\u001b� nW�����Ǥ����e�~m�p�E��Ml$��J�\u0013�g���iwl�\u001fM�tNq�\\\u0011\u000f�/B��q‰|\u0011\u001cz%j,}V*�Q\u0004�2��[\t�\u000bT\u0011��7m(,�l*=�:A\\w%���9=ɞ\tI\u001b>�7��\n��d�#\u001d�1\r\u0016\u0001!�%+�'z\u0017$<�C�7]2,ځ����\u0019M��a�@���&�0�.bE&\u0011`�]7YR\u001f��Wk��[�5�\u001d/\u0018�\"L�{\u001flbx�q'w��\u0001�\\������e\u0010a�j�����\u0015�vF�AW�\u0001|��MZ\"P\u0018�?x�\u0018��cwv\u0017\u0001�����\u0002��\u0013��FE\u0002c��3::��-��O��R��Y}\u0000(%��5������=��N���BS�K�'��nx\\�\u00044/|�#,�\u000f\u0006N|��S�\u0015�m\u001d\b\u0012��qgh]\r\u0006c\u0012��\t܈\u0016#%H\r\nN٠�/ݾb8+R4�\\\u001aƁ7��C��\u001e����ZB\u0018&�b\u0017\u0004/Uǚ�=���Jp���'�\f9\\��f\u0000��~\u0010V\u0006���������r60m�R�����\u0004�k�U�\u0001�2�.\u000f���\b�5z#@��\u001e������G�7\u0013��{۽�M>�2���pwT��j�x�_�a\u0007�ST�<��\"����*A�|���S�l�z\"\u0014\u001f*4㖇\u001a\u0014��r{ȇ������f+~\np�[\u0012Z\u0010�np�,m�A�\u0001����mxdl�K�]^�\u0013�\u0005�s����F�ݛ\u0011g~���1h��(�s���jjZۄH�0�{C�^\u0003G/���\u000e��}\u0007$\u0018��}W�\u0007KF\u0007�]w�\u001b��0�\u0012�S��\u000epZ�\u0004\"4��K��\u001f�;F'_��涒\u0011U�ͯ�\u001c>l\"O�S�5�]�\u0005���4��\u0018\u0019r8/.M\n\b�\f\u0001yG���,\u0005��% ���(v�r\u001a[��?\n\u0002U�J�H)վͿbr��e�\u0007i}��\r6Y��Er\\�O�J�\"F�\u001b,�\u001b��2IKӧ�s�����p�\n\u0002Ekb�\u001c)fv�*4��\u0019��\u0017s\u0019\u0007EUw���\u0011�˝��3b�\u000b�3TqAn�٤�\u0001г\u0005��9�D�C\u0015�ܔ\u000e\u0016X���V�\u001b�޷g?\u0016�%3��8\\\u0014\u0005�\u001e�(\u00198ՙ�[S(�.\u0012E#�P��,l�\u0013ʾ��/Ze��\u000bZ�@�\r�_�vZ$�D&�^�]��J}��V�׼-��&\t��9\u0003��J�T\r���A\u0000Nd)}>����%����+��=C��2DC�\u0005qv�w\u000b/�E�I\u0012\u001dU��u\u0014\u0017p��v�ӂ\u0001�\u0014��H\re����j�����Ah�\u0001����m�!��z���,!hp\u0013�<�Ŏ�\u001e]��\u0010�\u0007�8\u0010�􅑗`H1EŹ\u0000\u0007���{Pq��\u001e�eٖ΂\u0003\u0007aܴ7�ET�0�����o�؏�'*��&���l\u001cʯ\u0003J\u0005�qL\n���9\"/��xd\u0004�c��\u0018�\nW�\u000bK\u00024���\n�Dg!bXóV�f��7�j\u0002f��ly�\u000ewё\u0011��\u0017]�%�(\u001aK\"�\r1�\u0004\u0007�a³VAz�{�\u0003�\u000f���\u000e��\u0003ba9�g��7�8\f�\u0005j\u0005���u��O)��\u001a\"�&��R�\u0004�@�A\\�\u0001����m��$�m�N� \u000b4��k�ߌL(\u001d�\u0001�N\u0012���\t�\u0005�̠��\u001b\u0006�,\u000fLP�W���\u0002Om���O3�V�E�Ħ��:ݝp퇁\u001bvU�B+_5�sM�\u0019\u0001�^\u000068��;(Mh�;#r��*I󒛴�ĭ\u0015�\t�x�:^K�t�g��pׇ'[�'\u0010:~�[\u001eQ\u0018�0M2�=�uJt4��r�ke�^1�1�:���67<�\u0010ͦ#�0HM\u0006��i���2���4�u�vr�\u001ab\u0002Z���G� \"\u0019����~\u0011mk�\u001f�%�o�X'8#5-z��=�\n ⷙ�\u001f\u001e�;��-K*�ߦa�9_\u0016jB;�R�ؓ\u0011�|���XᳲWl�\u0014Y�i\u0011n�hu\u001a;\u000b\u001b}5�R�iu�x�삀\u000bӰ�B���8���u�\u0000�[\u001c]qW���\u0012ƭ��AU�\u0001̀��d7e�\\?\u0003#�:�?\u001aL�N\u0005�=���\u0013\f�I��-�\u001bĺv��*H�U�I��[y\u0014�i�٤��{�)��'I\b@�\u001d�&���P�1h��i�*�r\u000f價[#-Fo �\u0011�m\u0017g�\t��SU\u0005>�d�a1�m�\u0010�_����ٶ�lA�������W�g\u0014\u0002���a?�8��J��\u0001\r\u001b�\"�:��\u0007.ms!ڋ����\u0012�)uq~�O��~�\u0005K���E���\u0006��8���\u0006��8���8 �_D\ba\u0005;�G}�uS���[��e�<32�:Mw\u001b��e��u��\u0010���-�+3��M4<��]]\u001e�0�P�S��2��HNYI\t�xQ!\u0006�M���=)\u001b��p\u0001<-�i���3]\u0005)�s��Z�\u000e����̉��\u0015��#��$�a�M8\r��Ah�\u0001����eV$��\u0010�\u001c\u0015$�\u0007w��b\u001a��-�p�0��hȉ\u0000m��\u0018��\u0012�$�De��\u0003��o�t'�����S�2�M&r\u0010�Yz�V�\u00171\u0004�Y��쨿a^�\bfe��Vh�,%\tA'�p�9\u0005���*\u001e�VƩ)�I�ß����\u001c���\u000bx�_��E姡\u001e,�\u001b9��'��~.VB!0e����s���2�\b���<��\u0006&�f�\u0017�S��ő\b>��>��\u00197\u001fޏ=l\u0013&����9��0է%��GOj}\u001c_~�ˑ\u0000��\u0015D\"��8�@�w�<(X�g�K�\u000e��|�\u0000,��I�V�`z\"0��\u0004\u0010�Fj7��q�\bXR�<��\u00034�$\u0001���g�\u000f�W�\u0012��k�[�\b\\|o\u0016�\b$\u0012!!\u001b�lt\f���mT�������\u0013��y\u000eh�h\u00120�An�\u0001���c��g�ʛ��_�\u001d��ߔDBƇ\u0019�\u0004�+b�UkX$}��t�&����1�\t�:z��\b��8�\n����\u00003L\u0007dh���@\u0004^X��U��X��w�x`m\u001d5�R�\u0019kn\t�\n�Mr9�z��/�\rf���ϖ\b�Io0#�<�\u001d��\n�o�f씁�+�ގ!�Bz�~G�ʗ�meT�o��̢E��G'\b��{h\bw�Y���p��`\u0010SI4JO]�T�\u001b��n\u0014�\u001e^�G\u0001�{qA T\u0011=�a��Ok÷\u000b�\u001e5�`�\u000f�@�/_��\u001e\u0007�E�x�\u001d��R�\u0012a\u0012\u0007US�\u001f�R�K��\u0004�9v]î񔯧3N�5��\u000f\u001d:j��X��6\u0014?�<\u0004�\u0019��*�V\n�Lnι\b��\u0006��.�\u0014�Q\u0010Mq�s\u0002J���;S@�dLTX��s\u0007ɵ\u0007z�o\u001b��\u0019㝪Ŷ4�%�r+��Ad�\u0002\b���m\u0005�KB�IS�L�3OgoK'��ha���\u000f`�^ro�>I�{8�yn\u0013ñ�\u000eZ�\f\f��\u000bsG,L�����G\u0005]l0l����P'\u0018�\u0006�7�\u0019;;|\u0013�6�\u0016I\u0017R0�A��\u0002\u001c��X����۶~õ��_ۓLA��\u0014\f�b}�<�\u0014�$Q�����.ȞX\b\u0003�(��Pk��\u0001 �\u001b�x�\u0017�Y�\u0011���� $}/|\u001c\\�2kP4��ͳߟ�4�+�\\��:���{R��D���fV�t�bxe>(��֤��\u001b�\rH�z5�݃^��a�XL\u0005QP%A�\u0007��N�h.�B\u000fr)����8����,\u000fm��)!%�~���\u001a��\b�X׎ŧX%��t4�\"ڼ\u0001\u0003���J��5�gF\u001a�E.d\b��%�\tˆ2J�ARQ\u00059��T\u0001e@���Q���\u0013�=p$\"����9ܘ���\u000bt[M\u001cM�'�0�\u0003�����1e��k�[Cb�J�\u000f������0*\u0017���;��^g�\u0013��}���j�^\u0011\n�k�p�#��[�2���C���e\u0011a�\u0006��ڬ�4d�u��w�-D���~�\u0001z�5),w�V}?��+{�5Z�[�<���̈́��'������'\u0002�p$�.�\f�u\u0016��P\u0000V\u0002��2�\u0006\u0011�AX�\u00020��M'\u001d�v;�\u000bpB\u0014T4Թ�f{poF���\u0005�H�#b�\tu�\u0018�!���.��e\u0015���\u0007I(��ݮCLyB�E�����X\tf������V���ث\u001c7�+������\u001b{�ߵRr8\b\u0013\u0003&Z6SO���N����G\u0016��1�Z�F�Ւ�3r%\u0013�\u0016M��R���c���)U>���j��\b\u001e5�N�!�Z���\u0006Y\u0000�\t�T4x��v2��(TѹZџ\u0014)���+\u0016g��k[6$\u0019��U\u0019����J��dkO\b`����#�z&\r����9J�iW�ݣA`�\u0002D��L�j��W��R��X�\u0002�9èIh�/Kw\u0002'\\���y� �Z���N={��8�\u001cK�\t�\u0016~\u001eaV�A�b\u0012{O�I\u00026��[\u0012�B#�5~�!�\u0017�n\u0005��^ �cX�\u0011!�\u0003\\�H)\u001e\u001b �T2 ����3L;@I1�:Ó,�m�J��r��J�\u000f�;�'\u001a���\u001b\u00050o;�\u001d@�\u0010j��\u00126��\u0000$��̊E�Y!v~��E�\f������n-�tkk��\u001f\u0000\u0006�j���^�l�\u001a+��X��M���,�i�՚�+�\u0019���L��k�G��BL�k�U���n�{���7\u0011CQ����2�H�G�R�K�-[���\u0016�\u0004\u0004ZI:�c\u0005�x��{����d}ܚ\u001a�\u001f��s��l~y\u0010��cJ�`@�����u�\f�[�L\u0003���G7���㤺��\u0014\u0003��Ad�\u0002X���\u000e\u0001�\u0007$�N6\u001aX\u0004�;�\u0000��M������&�\u001eg�'\t��a\u0006\b��\u0019\u0003\u0003��_\f�1\u0003��hg/�,�=D*\u0004�\u000eby���!eI���;�\u000e\u0015���>O]:C��P�x0p�4�,�|L�\u0012٥Q�n�\u0003B��dڴ4u{n\\�O�\u0013D�,~�Z�_!��+\\2�\u001d3�g\u001e��\u0003~�j���c\u0002�j�YS#�f�%Ԧ��\u0000_Б���l�Lk�`_c�p�G\u000bY�\u0003��\u0016���\tz~��N�\"!g�q�\t�\u000f�zub�\u0001�ݬ0��Td��F�Q&���\u0013j\u0010H�Թ��u3�T���^�x���\u0003J�4\u001b��X+�ׁdW�\u001f]��-�4�\u0010�0'\u0004�h\u0014��}\"a̦�G�(��x��U۠t\u0015�Nv�I\u0005NY\tX�$�|w��܃��.�n�@l`T��\u001dڱ�D�Ai�\u0002l���\u0010N�8\u0001\n�2�6\t�l9^*�\u0010�ȧ���I\\�6ys��h\u0012+\u0007���鳄\u0017ܩ���Ζv�Ȩ�)0\u0019Dk��If�㠺4� �g���I�5\u0018!ŋ��.\u001b�����*H�{\u001e�켲�;��+�g:���g��\u000f`\b*q�\n\u000e�\u0015�����\u0005�SP����=�I��\u00015oe\r\u0012]HY��nGZ��;����6s�\u0003��l�>)�\u000e��S��J�En+J�إ4\u001dv\u001f\u0007[�n\u0006)���\u000b.�\u0018iO\u0002@:�|�D��k\u0015�=\\�m�+�G��߫hc���glN{��l�?�'�\u0011~Py/�h`V\u0013���R�8Xt7�h�m��\u0003 �թ���a���z�\u0014��tI�Q@�\u0005^j�&��:^�\u0010�{�D^���B�()k\u0014'̑ɐ�K��&\u0000�\u0010\bb�&�C�Af�\u0002���X��)h�\u001brS�S1��K˨����MF��(�6o�Y䵈t�\u0006�]m�\u000e��\u000e_�`�Dr1.%��ω``\u0016\u001f僧6\u00150^<�\u0005a<,$\u001e��l\u0001s�\u0006�|\u0016�C\u001e\u0005�`]ɇ����1��3@��\r�-?�>��T\u0012\u0011T�6|�?�\u0005E,BtUw���\u0012\u0006\"�C⿦��dod^�\r`\u0012�Ol�l;��U�(�K�P����'�.�5����\u0002�ʮ�[�RD�C]\"�\r����Ha�W�ۿ��1|�\u00154!�\u0011'�9} \u0003�\u0011J\u0000�\u0007�9��ʊ��\u001d24zMNɋ�-�Έ�\u0002��A��u8w���|�f%�j�[��A`�\u0002���M\u0013P�����,q�`�!�\u0002`F;�@�(C�\u0000��ΰFd\f6\u001ck���E\u0006s���I�u/\u000fe&b\u000e�k_\b\u0014\u000b�\b��t�� L��E\u0015&���\\���ۿ8�\bjC�c\u001c)�(�]�Ɏu�kT��\u0006��\r�\u000f'�%TsȒ\u0007mO�\u0011ؽ3��\u0000�\u0018R\u001d\u0014\u0010����^ي��2�F\u001b1�{�����a�a�\u0011=E��5�F-�\u000e�T�׀\u0002^\u0013~���i�g�\u0007\b\u0014��LS�a�\t��\u0019\u0019�\u001bKS�\u000f�#K\bb�&���d��\u001fmI�\u0002 \u0007�!\u0019��\nN��Ab�~khE��\u0019\u0013M�\u001fgK��7��!g?���!�$\u000e�1��V���.FE�[#\u001f5������iN��kd]�\u0006�!Z�C\u0007��D�s\u0004\t\u0002O����v��#D�P�\t��:��a�\u0005���$��AY�\u0002���L���n?�\u0019\u0004.}\u0002yxG#M\"\u0002�\u0018ne;u���€����\u001c��5����v�\u000es���]�0g�!��c�\u0010ʔ2U÷�� \u0013���Q��4ݮ�~�bRN\u0003i�=\u0005���%�s)�BE#���5P�L�\u0007������;uxL��>��\u0007�\u000b_�n\u0016r�?��\u0006��Z\u0007t\u0017�!s\u0001���\\3(\u001cTC\u000b�ڄ���^\n7�?�X�l�ݒ�u�]7��[�wOѶ��\u0016\u0003�v0x���;:@�\u0019����\u000b�\u0012q�{�g�\u0011��m���\u0019�L-�]��/L�����j��eIƈPd]٨\u0014\u0010��\u0016C����\u001bW�Z�\u001em�%DQ�.�/�om^�^n�Pd\u001e�\u0016�\u000b�B #�/���n\t\u0004?��8>\u0002��\u0016�\u0018��\u0017�u��$�sI���S�\u001c�r\u0017m�AN�\u0002���L�Ff\u0001��I���m|�[N��\u0015G{@�n\\�Px�Y!�\u001b��5�,}��{\u0013\u001c1I).>\u0002n���A��\u0011\u0017!�6\u0012\u0018�!��\u0000b�G'��\u0015\\�V\tl+P��5�П��h�1\u0001Aq\u001fB�\u0010��o���\u0017\r\u0000�\u0016�t���%��#\u0002{BM\u0013s��\u0003���b�*�\u0012���XnIX�|H�m�\u0016GC��\u0010�r��O\u0019\u0016tT��\u0018��!]\u001b�?�j��1ʌ5\u001c�F�|wo��c�\u0010H�a'�4�8=���>�G\n\u000f�&���g9Kp'�R�\u0016g��օ���9\u0005\u001d�&��/��+%:�\u0019�T���\u000b@^`5�9�H\u0001\u0004�\u0014�\u001c���o\r\u001d,�#zo�,�\fK8N`�M�,9�!�\u0003�*$K�9\u001a��!���0\n��#�<���\u001d���AN�\u0002Ѐ��\r����M{���\n@XV6��'m������B\u001a�8>�Yc�T�ѪE#b�y��\n%-:�\u0002�V��b��Dx��t\u000b��6�J\u0012e�ٟٱ��/p\u0013>�\u0013^7��>X_�\u0017�l\u001e�H9Q\f�2�\u0017퓠��k��{Ձ\u0002b\u0004?�Ju$�m�����\u0017��C�\u001b�z=lQ=��k\b=1�\u001cZ�~ܽ���h��fܺ�'��d�(]W��yƘ\u0011�!ՠ��c�\u001d6�\u001d*�h��h���OӠ]v\fpu���JB���(�����\u0002Hwg��z���A��\n\u0019\u0002#Й�lc�s3\u001a���D����Fg�$���yX�loO�ˁs��9\u001bN#���(�����\u0012�5\u0012�^���nO�\u001a\u0001���$<�wE&_�i���C�AR�\u0002��M����1���lt\u0010��\u0005Յ\bЌ��3��\"\u0016Ʌbz��Jj Q@���骬=�@��� �CW\tu]�qD1cG���\u0007��\n!\u0016=�nʖx9!��\u0019g��l��#���/��pQ\u0012�6��9t#\u0012���\u0015\u0016K!%}�����\u0002��—-�6\u0004�J_\u0018o8����Sr�q\u001b&L�̢�/n�A��\u0000����~�\u001d[8�P��ߙ�\u000e���j��;��8<����{�3[#��R�ܥ�Ȏ`\u000e~��k�F\u0002Ҡ��?\b��s#$�\u001c��~!:��N ʒ\\\u001e`\r�v\u000f\r\u0016{�(o�x���a~�8s��\u0007�\"�?\u000f��q�M>�\u001e���\u0011���\u001cKW���b\u00061\u000b�o%e�T��u\u0002�\u0000�Üp�\t\u0013\u0006K�\u001e #��I�\u000b�\u000ff�AI�\u0002���L�R��v����=��ZJ�����M)\u0016\u000e�{��P.I���G��6��I��#�5U�‰7?�ӿ� @\u0019�ЈsD��y\u0018�H)�sC!xw�\u000b�� �\u0014�'��1�:�3�\u0011�֧�k�8�˛E�T�ҭ|����IL�\u0005��<\u000f\\�TگZ���F7�\u0013�B\u0007�h&Xn|7����H��J�\u001c�\u001e��\u0001ĝ��xt���7�N\u0013<���ǂ���\u001d�E\u001bAB\\~��=\u000e�����i���/�3��L8\tr����hJ\u0014�!�\u0018�q�d�~iC�:f�M�-\u0012W���$~� R\u001d1\u000199��\u0015��+\u00188B}wp\u000e��&�7��\u0011L��\n�KߖFI��O��\u001b��\u001c�fFf\u00047R�x��\u001d��\\B�m�Gu�AO�\u0003\f���\u000e\u00109\u001eᤣ�`]�n�\u001bjF�.`(�\u001bEh�T5PL�:�1y��6��a\\o�ީ��i^���+�\u0005�(��\u001b�������I��\u001b�/��n��Q(\u0010M$FE�\u001b����\u0017��$�QС���U�[Nت\\���\u001c��%l��\u0005����t�\u0012o�9��u\b���\r�P�Sz-�Q�_W2��\u0010���������\u0001�\u0014�2{�������I�<ۅQ|��n�[LVQ�M9�q�ܖ\u001b\u00108�\u0002�\u000el�E\u0017\t\u0012#�fӛ�}�\u0015��*-\r�J}F>���rL�g��\ng+ؔ�\u000e�`v�\u0012�u�\u0011Zc�L�T��Z���\u0010�lޥ\u0003��4Y\u0013DvW����u�ijY\u001c�\u001f�0��T\byZC.�A�\u0019\n�~K�\u0002��Y�SQY�U&D�AT�\u0003 ���\u000e\u0003�:��b���\u001e��v��Pqk��P&K�\u000e[�\u0013�]듗�ʄ\r�\u0003\u0018z�ş�n�~z�\u00133=�]��޾��W9�\nc��8�\u001b�\u001f��7c�\u001dc��6��o\u0016��ߍ�t��/�(526\u0002���H7\u0007��*0�u\u0004�Ns?��<�jh).S��\u0010�\u0000\n��in���Pr�z}.��P\u0014��\u000b�\u0003o�\u0012\u0018z~\r�f\\�\n\u0018z~���`\u000eXn��\u000fp��~�T�\u0018,�\"A�,\u001b\u0007�X� �\u0010S�3D2\f3Gʚ>\u0013\u0014��\u000eʊ�\u0010�\u0013��I�\u001b�\t�����0kC�|����~�Jט�:�\u0002&\u0003ഏE�[�@�\f\u0002��\"[�wK�\t\u0018�E�\bx\u001a�|�` y<�q�\u00138G9@zvL�\b�~�\u0013vD��`�ڇ`K\u0000�\u0006�l�\u0004B�AV�\u00034���\u0016�\b\u000b��rw� ��.��{��=.g���l\u0014�\u001c1[�����N�''\u001a�\u001cp,�b\u000b�8\u0017rԞVIX\u0000�ߋ���\u001d��\u000f�`\u0000e�����.���F>�c�@���\u0016�\"�\f\u0000�%�\u0003Ö(�t�ҭ;�q�K�\u001bJuq$�D�d�*�4u�H���M-H�\u001dX\u0010��6�(|�⑻�y\u0019Byu��P4�6ˌ܊�4\u0015��6a���e�\u0005q�\u001f�X��\u000e�\u0005\u001e\u0019J�%\u0002;�j%�N\u000e#��˫D�3\u001e�1\u0003d8\u000fŻ8��t\u001e\u0003��&Fm��J�^��HLF���bfH},�A�5{Ni����}��\\*_Jm�ɋVM+�PH'\u0002Bs�U�N\u000bX��F��}����e�6���\u0005�����\u0014�u\u001e…t�����l\u0017T%1\u0004����=�A��\u0003H��}b��I\f��\u0006�\u0001��g��<9m�£�4��\b��_����3N�B��v�,:�`�]\u0010�RXX=��]\fD$�*\u0003;��\u0001U\b��`�iU:�Oj�Z��t����@P�e1HUP��m��ue�ɘ#l���2A4K\f�b[��z�+�d�Ϩ�Q��\u0015_���t�m +H\t+՗Ύ�F0�8M�^��\u000e`��)2_W�\u0011-�h�\u001c#ptb\u0012�@/�u<;���P�H�#$�\u000f\u0000w�e��T>�\\��㜑\\j-�\u001d�\u0011\tz��oK����[���G���-�Y%‘�H\u001d���������4\f6\u00014�jh�\u0011$L\f:p�c�h\u0003v\u0013����}H\f\u000b\u001c�j�%Kq:�\u001bK���\u001e��$��/�'�z�[�m~�Y���'��.\u0002\u000b�R�՜�~�AM�\f\u0013��gGx���r\\d\u0007�����\u001f�r��k�Fi��!WC���k\u0012\u001f|<\u0010PCi\u0000�E�����Au�K}t�� �$��\u0014�\u0016TU�k��-\bF�Ĩ�>��*!o\u001bïG\u001c�A5�\u0003\\��L�2���^�d�\u001bo��i���\r�~���,(��m��!��\u0006\b�,u�f^�\u0004M�H�C�7�&]�<ȋ�S\u0011�sѽw�xp]C����k:��g����t�e�z\\�\t�I�.w3�Y��\u0018���4X~N�R\u0000\u001a��A>�\u0016�������kF\u0014=����?��2|k؞C�\u0004�\u000f��*^aM\u0003�5�k��\u0019�Ղ\u0001r��l�HA���Yˠx�\u0018��\"F�,Vu�RW�4=\"\"�V_1wy�`���\u0001\u0013�§\n��l\n;�v֥\u0003+�n��\u001d��_��O�\bW#���\u0014'.�\\\u000bjqcE)mK�G\t��ߜ+*��\u001dg����*\b2>�6Q�NY�\u00171�\u001au�(������A2�\u0003p��L�\fq\u0016B���m=K���{�\u0001��ؼ�\u0006+�C\u0010o���1G\u0015�Q(`\u0010\"\u0003Y�)ߥId�$��\u001a\u0011�4�o��\u0019E\u0007-//��?��\u0000��\bA��X= ��\b ��W�n\u001f\u001b'�����\u0005H���UO���k�h�M\u000b��L\u0012�/aL\fV'�F�y\u0010��<�A�eѹp�[�\r�ߴ(~�\u0019C�P)���O�nX\u0000�LEUI\u0007\u000f�O�@�eӞ�pꘌl���<����)�\u0004�P\u0019Wv5K�h��M�w\u000fL�uM����O��\u000bb�Ӏ���w���A$ܚ\u0016}$���PUY�J\u0017F)���9���������Zѻ�NbY�\u000e�\fh�B6NMjM�=�Ol�\u000fw�A+�\u0003���Mz�F�a�%ذҜ4%/)���}�|NG�}\u0013\u0005�㷓\u0003�g_a\u0014�P��4�ˀ��){�C����60\rp\u0013��\" �f���)�\b�Zb�\t6�\u001c�o#��`��+�Ч\\\u001d\u0018\u0004�8�g�w��\u0018�2\u001dI\u001a?\u0017W�ڟ^,�:h$�7X�C���7O��S��䤴�bc�4\u0006ܐO�\u001ac�<���|}�E�\u0011�>��<�)�9��[��\"�E��§�e\u0015jnUGHZ���\u0017���Z�*\u0006\"A�:�b\u001d��|��͘6��41���\u001d'�y��.$r�Y���i\u0002eJ�c\u0000�\f�lzj�,.s�m7�\u0014�\u001e'�/B\u0016�ή�n�ϒWF+�=\r�)�n�A$�\u0003����\fV�r��TϹN�6\u001be��X�\rML�\u0005�^��\u000e\u001c��\u0006�\u0018zo]�u㌏2J�\u001d�!u�R�zR�MI�\tPτ\b^��\b���'�\bNԅ��\u001e��\u000b\n���\r\t�<�$ȋ��\n�l۪\u001e4kO\u001a\u0007ra\u0001Lr�%��\t��h��P\u000f\"���\u000b��?H~���G�\u0017;\f6j\u0007\u001a_�Q)\u0000<\u000f^sO���'��+�JI߆���S�q@\u000f�2}1�^8/�:�,�\\�ʡL���B����\u0019�8�R��ؐY\u0006GM�t���\u0010X}<�\u001aM��>n�o�p3���\u0016,�Ԃm�a�Vj�����̜P\u0003��a�>\u001eL�1�\u001bʇ\u001aD\"�\u0018\u0005ܤ�A,�\u0003���W��?��T�7���7豁û�0�v����_��vy�\u001bG��п��bܡ��\u0000�\u0000�����\u0011�R�\u001b�\u0016�Nv�갎ww�i��J����>J1'��&<���h�{�Wޗs�\u0019N�9�X��\u001b\u0007#\u00164�\\\\%�p���\\��x\t��Ƶ~���`�Ԋ�|�\u0011��T�<�Y\u0010\u0017����\u0003�\u0000�!\u0001��-����x������1\u0003�\fN�4ِN��ߣF:_�\u0016\u0012�c�VO<��\u001f�'y!���v>���\u001a���\u0003\u0019C\n�#�\u001f�6R�f�\u0018\u0014>��q�;J�TwS��s�u\blXJ� ]u�\u0010���J\u0011\t��Q��i\u0011�k�?�n�(ju�\u0016�A.�\u0003����Q���j\b�@]w��}\u000f��[\u0003\u0000#(P�9�n\u001e��\u0001��\\,�ui�=I#\\��,�ޢ�\u0004�0:�`P�x�A\u0019�J,%\u001d��T�eR��K���q��ʆĺ*H�\u0015�kK�K^�C�&�͟�K&�m����\u000eJ\u000f�0\u0012��u��bz\u0012�\u0004hn��ω\n\t�\u000f<\u0011R�\u0015��{��)\u0006���=��\u0002~\u0006�\u001e�q9�~c-�q�)3�=Z�{��c\u0004�EQ\u0010���I��,��֟4-+c��M�T�i�58��\u0016}�ړ��\u001c�\u001c+�$Mr\u0001�[\u0000�RS�l�X�E�v�H�%\u001aq�y�W\u0019�Z}�qL(����~x�/1�\u001a���\f�@�n�\u0004�\u001d�\u001c�ḣAJ�\u0003Ԁ��U\b_��$\u0019�c\u001c\"F��*wW\u001d���E_�\u001a{�Օ\u001e$�P�q.�\u0016E�`��n\r:\n鳬a��Xv\u0018\u0014���#�4�^\u0002���/�G\u0017\u001a�����%�\u0016��\u001f�ˤP\"�k]�v�\u0000�Һ~0�e�݋\b��?*�\u0000J6��=z3$�WU����KK7�\u0005�\u0014���O+���:�\u0000mj7�\u0003@�瞙J��\u001b羵�O�\\�\b�֜�3�\n ���&aɯո�y2�5\u0017<�\fq����(\u0007\u001e���;�mtf�:\ra�Zb�s�|�a\u0012�N�aߌL�;�T\u001b�&:\u0004.s:M�\u000e�Hv�=^\u0019Sd��q�!��\"�K�$���k�-݁���O:���~I�\u0014\u001cXڰz�H{�J�\u001f��]\u001a��@�־v\u0011\u0005F'�\u0012\u0006\u0012�ṣAG�\u0003���s��t-��S��@\u0004D�t;�1ݢ+[_�]b+�\u0017�o��}L-���iw��k*���O��xb\u0015\r;t�~�\u0015[yL�\u0003,&�\u0018X\r�k\u0006�A��%Iޭ=\u0000D��\u0005��[•��_��\u001eN��!��3p~i��W�ȼэ,�p$�Tk“��\u001b\u0016�\u0006�_��N�~\u001c2\u0017�7IJ`�Ϟ��,N,�v\u0019&V�\u0010���`ߋ�N�Jۍu_\u0016k\u001e>�L9\f�q�h�l���\u0000\\f]J��\u001e>����t�h�b8�ۍ\"D\u0011P~��M�x�\u001f\u001d|n9mѹ6�B�m3���O��������Q��\u001dR���\u001a�%o\u0011X�\u001e�έ\u0004>�/H�z�.f�țƾj��m�\n\u001a����֊����m�����t�0;@���AD�\u0003����b7�\u0011�O3�!��-aR�2K����%��d<���)�$0r����2�\u0001��7��Uް���1���xP�}D�\u0005Ӆ�\u0000�Ңr��\"\u0006��R��d���c��˭�b�\u000e���p0��A�fG\u0016��\u00105B����@x��\no�@�\u001c�n\tO\u001a�\u000b5QQ���~\"���cx���t��X1S�S02�{;sĠ\u0002��ߧ��9��\u0001u���Jf/2���>>K�}F��p���f�/$/�\u0001���P��R¸��q\n\u0003�q���q�G_�f�\u001a��g��6H��w�\u0000�v����R���|>$�Q\u0011�Q`\u0013�4���7��\\m�\u0014���GR\u0007\u001aXVt̬\u0015�`E\u0005�H�p+^i�ث� �#mZ�=4�Q��A>�\u0004\u0010���s���:ԕ���nH�\u0015�\u001d\b�e�0](�^�S헥.A�񰄰�r\u001c\u0012[�V�\t�`�Bg�l��\n�zR��E�Y�\u0005�j�?�Lt\u0015�fT��#�\f}%O�\u0013-~Tz��l�y'\"I\n��/{�dg�d�/�\u000bh\r��i\u0011nȆW\t��q� ��\u001e1*;4/���-N\u0016z \u0003�X�\"K�0�Q|\u0014Xq�\\�$��҅Ⱦ2H�\u0000òġ����w��Y?@�o��'-�gR�̭�[��� �H�F�U�\u001e>�\u001a\nR��ت�tI�6\tt��,C-ͿŖ�ګY�� ��\fN{��j��\u0000\u000b��C�j弐¹�/�Ӷ��V*\u0014O{<6Q\u000b\u0006l,]�\r�l��bĕA�:����AV�\u0004$���bE�\u0012P~~�l�\u001a\u0000x��\u0007�mf\\��\"��QL���9K*޸�Ӟ�R\u0010�d�S�B\f�,\u001dLC��h\"�\u001e=\u0019g�N\u0016u����gZ$Y�p%��ќ�)K�|��\u0016Ar�'h!\u0010�W��_��c'��y\u0015���a�0��g�ʁb\u000f�\u0004�%Q\u001eQ\\!\u0012\u0012���C�<�]�&�au�7�w��\u001a*\u0004�4\u0014�5�s\u0014޴I�W���1��\u0018�$gL�����\u000b$���ȹ\u000b\u0001�=Ŝ@�����\u0017��\u001c^�\u000008gɗa\u001c{���SJ�KK��\u0017\t\"�\u001e\u001e�����/XȐվW:���$���\"�{�S>�b�z�`�gE|���-^\u0007\u0017\rb%������&� ��\u0015�CY^u)�h�N�k��\bw\n�\r�d�\u0007L����cV�ڷ#�9�Aˁ\u00048���p�u\u001eA�\u000b\u000bY�G\u0006�\u0014\b$ X�\u0019Bkw\u0017��P�C�O`$;�j��z�K�E�\u0018\u001f�k�l��7k\u0010����\u001c��\u0017'��aT\u0002G��#���f\u0004#\";��{p���A\u000f\u0012,�.�\u0004M \u0002\u0018F.h\u0004���!�y092FW;\u001d�!�^��8-��q�_*�\u0005H/z���\f�\u0018�x9�:��\"�]'d\u001aH�\u000fq��\u0016�\r>���_�A��\"5�\u0017,�\u0011u~�1�CH@S����>\u0005�\u0019&\u000b�\u0002�Һ\u001a\u001d�_�Q��#��!�,~$,Y�9�J�\u000f0���_x��!�q#E˓��k\u0002�r�i��0�~��UF�|��\bTm|FmC��)j*3F��S�6\u0006Ѫ3��'xLVs��O��l�^2��:�0�+\u0002��5��ׂ����h�*��g��/�l\u0000\u001d�-(�\u0019#\\˟��j\f���{�\u0012\u0002\u0007a\u001bBb�����w�:��jV\r�\u0018�8�8V��\u0002\u001e��\u0000��&<�\u0013\nm�\f�lda�H� C7\u001a����L\u0005)%R7\u0017��Y\\�\u001c��p{k������j�e�Ng�ຣA}�\u0004L��L���v�̐b���NJ�r�\n�e\u000e/\u00140\u0013\u0013׈:����-\u000f��db\u000e\u0019|�m\\%�����*�b�;]8\r:}$�\u0013�w��E\u0006\u0000hЄ'YI�`V\r�Щ!Y�,���s�\u0010pz\u000bC�1��-�C1=�K�0\u001eZ%\b�B?-x��-�ث���J�����\u000e\u000e.�J��\u00181�\u0010DӅ���f�\t}n�S냻���GO��$������+��� i��۰X\u0019\u0001\rZ\\(XcE���,\fP{��*�\u0014ppf�b�w�\u000f,�\u0017\u0004�x}\u001c��4��\u0012\u0005��DQ�qT��(#^��k�Ư|�\u0003\u001e��7�2�\bw\u0014��\u001d�����=s/��%�Vw 2Q�\u001a��[�%:\"��/�@�#��n\u0016\u000f\u0002���\u001bm\u0004O\u0000\u000bx�ܥ́-Hr��C_)-+1O����A:�\u0004`����\\�0*z��\u0010\u0003�Vڕ�J��}�\u0001{]�\u0000�oP7[W���\u0019$�\u0002\u0006\u0017P(�\u0006}�֕�\u0001QP��+�0I��Q�KW��ir�\u000e\u0000�޹^\u0007�}U�M�\u0005�\u0014��\"�\u001fE%\u0006�g�̨P|71�M\"\u0018���G�Y\"�����\u001a��\u0006�YM��\u0018�\u001f͡�²\u0007�x��\u001a���RT��*5���C}W\u0007�BdJ��;#��c��\u001a�._G�\u000fU���7|�\u0018��O0�L�\u0001v�\n���c�Rƚ�[����8�Vz�o*��p6�X�n�\u001e n#\f��y�Rp4\\��Gqqg�ai\n/�#�\u0003�@E\u0003,�R��ǚ�װ��e�ۨ-�_\u001e\u0011\u0019�F�P��\nIP\u0000��@\b\u000b�?�Ҵ��v�A4�\u0004t��۸\u0012��\u0012�T�c\u0019m.�*����C��p���Ļί҈TC\u0014�$,#��\t��m�\u000bي�WF�jx�t��P;�_�DЮ�A\u0018\u0012�'N(\u001a8\u0002JW�#��v&N\u0004����\u0015)E�\u0012\u001a�Ws����\b�_�I\f��_|z\u001b�C_og/O�`\u0014��^�^�{��/|�\u0011j�\b��򞒥�P�f\u001a`*\u001fs�0Yh�;����b%�-FHWT�r\u0000o��\u0000�\u0017`�a��&�fK�]6���W�\u001b\u0011,ׂ�\u001b���7\u0001\u0013�_*\\\u0012u0)�h\u0010\u0007��B\u001ay�v1�[���#s�Y���B3eܐ҄�T\u0000v�;�@��}mv5Q���M�ݥ��\u0003\u001b�%\u001fdV�u��C��\u0010Y���w�A4�\u0004���MT�P��ㄣ���8ܲ�a=j��/�Wo\u0007\"\u0015Dǽ�T}�g�g�'�\u0006\u0019\u0006Kβ9c��\n�O�cВ��Q�\u00065�Ѿ!������\b\u001e�41�];,�zw^��\u001c�7m(\f8��﷝]\u001e�X�\u000bε�\u0003\u0017��Io�\u000b'�W�Ϧq��h�?�\u001a�x�\u0001\"�4N�?��\u000f\u0010�͞(�?\u0015\thW\u0018�\u001b��&��:��E�hA�f�y\u0005�\u0012Z�_m�e��1�u:��`�+-�TDN[����k��\u0007\"հf�h�\u0010<_\u0007�d\n���\u0017�<7��E���3�[\u001cY����}[p$\\q�.#�M\u0000?f8o�1Š\u0019\u0015ppv>����uP��h�C\u0004�\t\u001e᫉\u001a߭�C\u0015���A4�\u0004����s���\u000f�y�3��OHK˪q���\u0013�p�Y�r��\u0015h� MUoW�kD���2@�^�w@�\u0012\u0011�\u0018gq�:\u000b��\u000e��?�w��a����Wnx(��Wk�\u0015�##AR+&6�C��SZ�t-cF�#��Q^�7�.\nU�i�TBZeL���D0�8\u0012\u001a�b\u0019�9�(\u001e1\u0007��2�\u0014�[\u001e\u001b p~�c���b�?����\b�5�h0����&ϜL�\u0004\u000f�F�<��\u001c�n\u0019ɰ5\u0000��ZSbDf��I�\u001d��-�E0!`(�\u0007Q/_d���\u0015���r+KFv��ˬ�k���o?e,���P.\f]y���5��\u0019j�0�u&�[\u0002,�4��(�\u000f5\u0018���H�9�A6�\u0004����a�����\u001axa\u0004#�\">5�G����\u0007���cX�\u0010�\u001e~\u0014|�\u0007�(p揈k!�\u001c\u0015F��>Gq���!@��u\u001b��T�l���UF8��Ū\u001c\u0012ܿr��^��\f�����\u0019A9Q��\u0018\u0013�o]-e+��\u0015�G�G��@��k$ny��ʝ\u000esQ=�8\u0017��x�w�)c�`�R\u0014b��j���w��՗W2��Mf�O_;\u0015���ũ�\bA�,Vׄ�)�ظ�����\u0006���qK�G�K������ۂ�f� �D���QG�6�\r\u0014ϵ�smL���3>��\u0017.����&\"��GM31js\u000e�\u0017��Z(\u001a1+a¤��\u0002Q��‘.]z��x\b�S�m�e\u00027nu8�AA�\u0004Ā�Mz$*�E����`����12\u000e��\t�\u0004>ݖ�z&��l��/� ��}_�S��\u0016�:�dA�+� �\nϹV�6I\u0007\u000e\b�\u001e[���\u0015����\u0003��FX󿘫\"g�\f�3���\u001d]��s��؁�,\u0003?��R\u0006:�~;G����g좡K#�Ws�ߒځ\"��!��?∘\u001f}\t�A{J���*��$��n���;�KLb��Xŷ�������\u001b-����׬#��\u0014�i\u0003$$���\u0002`I\n�\u0011*2y$7&c�!�3��/V�\u000e\fKr�q�IK��D5\u0004��C��V�\u0018�f\u001b3���\u0014a��=\u0016+s�\t>݈h� \u0013\u0005L)��1�\u001b&I@\u0014u��\u0010�\n����T-�ȑ\"b�ڲ��\u000f�\u001cr]�A<�\u0004؀�L�L�?\u001cS\u0014q�f\u0016$?����\u000f\n\u001f1ED\u000b&����y�ii\u001b��hSZ8q\r�t��$�{�5��ߩ���?���1��)I;����e�{s#E�I9mk=�H�G�_����Dp�\u0015�$�t��xde��6\u001dKu�L��R�:��S\u001a\u0014���eA&�K2��\u0015\u0001\u001c�{{b���K\u0016q�y��(^\u001d��1\u001d\u0010�MsP\u0011\u000f���l���\u0007\n!���︉Q�1^����U�v�~b\"�Tl���z*�#67z�<��\u0015NB�@}<�Z�:����_�������'���w\r���v\u000bė�a1Ȥ\u001d\u0013\u001a��\u001c\f#��jЌ�����;�^��k\u0002qU�zLZ\u001e\u0014���\u0011֣��*�\u0017\u0015�A1�\u0004��L��+E.@��O֜�\u0018�\u0002DH$��v\u001dȂ�{Hz;�ǜ��a�2\u0013>�z\u001c�1\n^��\n�t,�a�O��\u0014��\u001eO�\u0017��'\u0015�O\u00023,�)�\u0006�=��D�7��(,��SɬJ�\u0003�5�o-�]\f\u0012��\u001a��#[q�l�ׁ\u0000\u0012���\tNIΎ�{M�W|�\r��q�Q��Ё\u0015\u001fH�)�W��U�ogd��/��\u0014����b\t��M9�\u001eO\u001b�\u001fr~7�\u0014�]t���\u0017\u001b\u0013��[r\f\r�}9#�T�����\u001cR�ͅ1\f�\u0000~M\u0004pܜ�\u0004�4�c?ڣ�ì�\u0005����Ķ����Y���\u001fI�o�-e�X�\u0016�����\u0014r\u0001X/j)R\u0007\u001d����UUI���AB�\u0005\u0000��L�,2�\u000e��t\\���z��\u000b�_\u0005M�g8*A�T��buD�\u0010Vt�dn堧*܆\u0002\u0007����g�m�\\z�\u0017��\u001c-qv�_����\u0011F���F5$��%\u000e9��\u000b\u000f�,�O;��R\u0004l�\u0013�\u0015�]Ų\\ɴV���!�NX6�\u0007��'�\u0016�{���-5\u0000�/\t\u0010�����\\��P����ժ�W�\u0017��M���\u0000�\nyS7�^�K��\u0006��LGe�\u0005>Ȉ�8�4o��W\u0004\t����\u001b=!��%����z�!,���/#|a��0G��w\u0011���Z��\fl���UЬ\u001a��\rd����\u000f�����p1:]����7nX��e�g�zNaĴ�j\u000b\u0002>��\u0006l�F��/���V;���z(3\u000fF��AI�\u0005\u0014��ۼ��\"V\u000fK��y��\u0001\u0002�g�\u0010�[zx͹�h̨\f䤪Lԕ{�}a�<<�\u000f5\u0003\u0007p@\u000f��b'\u0007\nɭ�\u0003��ܳM(�Z�\u0013\u0018r[/J>��Ĉ\u001ct\u0003�\n�\u000f�%�*�E!I��[�|}���F�-�¯������\u000bA������V�Z}~�ִ�Q�\u0002��\u0012-�Y��/��h�y����D����\u0005L�:�6P!�\u000b&^Z��N�\u0011\u0015�#J�ٰ�\u0016 P�'�wbw\nPW\u0001�.����\u0006\u001f�D���~�-\u0001�iF\u0019w|T�-����K\u0003�\nq�k��1|��6O�D�����\u0017�c��\te�\u0003\r�\u0001b\u0011;ˢF<1[�t'S�R=1e*΢N\u001b�<{4wo�@G�\u000blL?�6�\u0015T�πM\u0000\u001e��m䇿8�\tO�\u000b��Q���ӕ^�VaBV�\u001dK�R��Q]�TH���\\�9��J�i�?!ɱC��#}�\u001a�\u0017��\u0014Y�K�G�\u0017?��\r�A��9�\u0005\u0013o\b����!9v\u0006�c�+��u�dG�A$�\u0005P��MD\u000b��in�\u00139�\u0002h�g�JBgS}���l1����@��_�~\u0010�G�^?K\u0019�y|R��8�e\u0000���W{�ؙ���E'�B�~��'p��\u0011%�w\u0017�(J�\u000bS5�q��\u001dМ,=N�E���q0�\u0003J�*EC\u0002N�a|\u0010M����$�3^�L=.iV\u0010��<�L�\u001fA�D��e�̬Œ>t�'t��B�J4�{b�br1T��4���\r\u0002\u0019wyo��0�����}���\u0002q��D���{.K[v�O\n6fzF��\u000e\"�A4�\u0005d��L�\u0019\u0001\u001c����\u000bM9�AY;A\u0018pA�,�F�\u0007KL�!&��\u0004��}c��p�|\u000f\b��5�T'\u001e��,��0�M��\u001b�����\u0017�\u001a\u0010��\u000b��c���\u0003=\f�?���,�=�h�\u001c�w=?�j�\u000eO�\t\u000bߝ?L.\"t��'^\"aP�\u0014\u0005Ϻ\u000f��&\u000bx޾��/6m��4\u001e�Wl�<�4@��[��p�r\u0004��r%J�\u001dUp��\u0003���\u00054�m)a_k���\u001bR����k����1�P�\u0010�]w�I\u001c8�k��R�\u0010qn�\u000fRI:}kJXV\u000e�|\u001bW�\u0003���E�$yP\u001e#no(Bc\u0012�##���6�ۨ4��W\u0002eZ-��!\u000f��e��4m\u001ay��m$�J�/U�\u0016)\u000f\u001b\u001e��A\u001d�\u0005x��X�x�^�~KW��H�#��>.2AG٤C��1�gg�\u0003k��2\u0006ܖI�|�( Cw��(\u0010|\u0011����b\u0018iQ���V�\u0018G����HO6�\u001b����~\\\u000f�ϡ�M$Ѱ\tN�s�3ȕW��<�e�\u0014��a�I;-v\u0004\bM�\u0014��5�\u0014\u0004\u001c�_!\u0007ó�㧫]Ӹ���d�\u0002���Q�����U��U�x\u0018��&\n�̽U<�����c�s�\u00039����-��\u0006�ז��\\�Iȡ�\u0013}�Ņz�o�δLQ�$&y\u00110j\u001c6\t\u000flؐ_2k�R���:�ijJ.�#��\u0019!}�(x\u000f�pc+��\u0000Kt�����C��\u0000f@�A$�\u0005���X\u0000�j\r\u0010vL��l�'q��\u001a�I\u0016�Y7���M��&�\u0017܌\u0015�m\r>��?\u000f��k�2\"�\u001d\u0002}c*�p\u001b���\u000b\n��+\u0003�\b�K#�\u0007�&ir',��,w���h��ɪ��\u0013�V��.oL��\u0011��k���F!\u001eSy��g�\u001f���ShKQƗݰ|\u001fJ��*T���4���'a\u001b�{��)e��\f��ǃ܁]��AO���.��K�JOv��\u001a�\u000b��\n���`R�����\u001c�O����4�V9��K����{�%f��\t�|jP�w�\\\u0012<\"qy1�}��̪k�A3]\u0010zW�\u001e�o��p���rD\u0002��+\u0005\u001e����ۡ*Gj�\u0013\u0019�)p�A6�\u0005���L�;H�*⪗��wn*�\u0003N��\u001b�k�\u0005\u0005�T�\\��\u0000��\u0016\ne�!V\u001e�g81��|&���h����i������\u001d���A�A����s�|�1�;�R�6_�-:i�z+���\u0018/�qE�}��j\u001b':b\u0003��\u0016�;q�S~$On�\u0012[��������\"�\f���(\u001bm)�\u0014c�D�Wq`��u|��㻿}x��!ZN�'\tt|\u0012�o��o\u0011��\u0019����'J�:��\u0007`�jN�t�\u0018Y�G[\u0004�u�Oܾ\u0001��Gw��~����\"QW�\u001bNџ�\u001c�\u0003>�8%ʍ�a\u0006}�D��\u0011�.\u001b�\u0001�OZ�=O^��';n�D���h��e�x��ޚ7SiD�\u000b��\u0010�xb\tjI�z�Aa\u0013�J�Y*��u�7��\u0019\u0003#\u0018\u001f\u0011��~WN�^\f�*yN5U}�l.n�H����׻\u0001P��d\u0015�\r|\u0006�獌��v�Ǹ���\u0019^�M0�+�%#�Yv�~�Ϡ�{�o~\u0004��5����rr��y\u0007��;�ܟ?\u001a�w\f\u001fA�\u001a�=���OU\b0��p���\u0015\u0007����h!\\]��\to[�B]6\u0006�\u001f{>�~��9#��\u0011�4,��j-H�m�\r\u0015��z�xs\u0007\u000e����A+a�;�O\u001f�pT�-\u000fF��*=�PVm��\f8����3o�k�o��@8?5�|DeX��K��?ĸn�S3)Dz��3�[\u0017�\u0019�\u0014AR�\u001f�-����\u001bUI��ێ�@�\u000f��>~|}�Y<ֱRy��\bP�6��#�d��Ye\u00030v�($\u0000̓�NGY\u0005]��ӟ�f�\"�F�)���\bL��\u0004G]�ӏ_b�4�c\tT�?���ҋ��g��*�9\u0002� ��ѭ�\u000bo\u001b�Hc\u001c��*�,�`h\u0015\u000e\u0017B�2{�\u001d��j\u0010K7\u0013�A�����H\u001bsn��4�B9I����X�\"h�\u000e�{Z:��+��+\u0001b~�\u0013�\u0016���L\"����\u0011:\r�\u001e�\u001a\t��k\u001d�޿\\�\u000b�B^U�\u0019[+���F�+\t.�zk��\u0002\u000f&�\u0011M�;V�/F/@�o\u000b��'\u001c��%_Z�}�p�T�\u0019�\u0011�Sdc���m=]Tw���\u0018,\u001f\fT޸�\u0001*��~�à9�$�A2�\u0006,��I�Z���q�h�9�\u0007Kb8�^3N4*��3q��1��h��/��w\r\u0000\t�Yo\nIƒ�&|�ɟ��\u001a,���\u0014RO]\u0010��\"���}�o;\u0003�U�Iݚ��0�k�\\&,҈�\u001e3e1 \u0014EϤ\u001e\u0003�/\u0015\u0013��}�\u0016�q2��f�������qs����OW��kTR��dzÜ{$=��@Ȣ'A��Q\u0000 iU\u0002ݼ-䀞\u000e\u0011}�/D�\\}\bU\u0006�&��L\u0004L��C\u0011ǀ0\u0004��lv�=�v��J^������\u0002��t��5\u0004I:�\u001c|�\u001dPiYD�ր�k�I��}\r\u001a�M��L��W�:�ZO�}�A\u0015��\u000br[��ӽJ{j)\u00121\"\"��r͎k�\u0017��N}�A\u001a�\u0006@��]��:D���\fjY�d�\u0006mh[M;*�\u0005.�⇦L���r��QOIY�cS �EAٰ�o���7r��\u001c��\u0001�ڞ�)�;�ы��Im@5�/H�]��ie,�[i㦳������)J_m�\u000f���B\u000b��>\u0012�$\b@��N\u0000�<�\u0003�ܸ���6�\u0000\u001b���s�}�T\u0019OT�A\u0017�\u0006T��X��.�0�\u0000ٮx\u0005�\u001c��|\ft\b\u00101�\b\u0004�P��L<�<�\u0005G3������D[�k`]e�7ׄ\u001d��\"̓\taʔ\"�䝸�\u0002�x������'D�_\b\u000b�u|�Ճ����,\u0006!\u0012���\u0011��B�\u000e�c�����\u0018�\u000b��\u001e�IY�\t\u0006�*�\f��~3>\u001b����O�f��h�gH���\u0003�@��6[�iJqWO��!O��؀�H��Z\u001aQU��(-.\fi�\u0016`:ؑ���:�Ћ���\u0006+A\\\u0002�����\u0002tMc v,\u0018��\"� � \u001e�\u0001\u0011m����,Oʽ%�y�:蒳Sn\u001c��\nm�\u0014�\u0018�P$�A\u0019�\u0006h���dMK�\u001a��\u0013\tn�v��>��\u001a��]l�h4Rq3�.��\u00062XIK�G��\u0004v*\u0003Dz\r��\u001f\u0019�\u000eVlX�\u0014�Tp���d��4sͅ�\u001d{j�\u001c\t��Nu\u0007N#�:���iaE��_�?����@H'Nq��#��%�\u0013�1�\u0019z�u0F�\u001b�ۦ������\u0015,�g4Wk74+�?la:\u000f9\u0018[B�A\u0007\u00121N\u0013z�A�\u001fۍd��`��\u00142qa���l�h\u001d�]\u0013��\u001f��jZ\u000e��Ip�~�\u000e�����f�K�k[\u0007\u001f�r�o�.�دs\u001a��M�AX�����\u0007Yh\u0004�*o��`$Re���NAR z20�A\u0019�\u0006|��L�M5npk\u0019�ajDGMR�(O��\u0014��\u0016�D��Vϡ6�@V:=Ӿ�P�x`y�x\u0019\u0006oT��Fw�#��)\u0019Up@Q��&\u001f���Z\u0010`��\u0019�q��h�C��A���r\u0016�/��~�&ƒ]G��\nb\u000f���\u0015���2~_��fh\u0004�\f���y��ظq�)rb*\u001fN\u000b]��/>�z�`\u0001i�O'J\u001e��G�|H�\u000fH�e��?�\u0007�R\u0011d�\u0014(��\u0000\rc\u001cSV��ٱ�3\u0013\u0012`6\u0017\\q��û�\t�Q��X��Lԡ}<��V�*��Σ\u0015���)\u000b�i�h���#�7~�5<���?;��#<7H\u0002\u001b���Y_�\t?�A'�\u0006�������0�b�Tp\u0018�'�d�i���I�/5�5\u0014�%\u0015\u0018I\u001f�h�)�.m�S�8��� t����R�\u000eVI\u001f\u0005��M4~\u0012RUnY.F~I���*�Ձ����\\|x3��;2�ΦP�\u0000&��Lg��\u000b\u0004��Ǐ��Y�/�ΐ���\nOgc�\u000b���a���x��`��\u0007�H��\u0012�q��\u0016S�t&P����MZ\u00051�\u0004��\u0015`Yv\u000b~^\u001b�\u0018����M�i����1���1f���z�Xgq��\u0000j�\t��\u0003Ǝ��Ԗ�o\r`\u0004�ee\u0000�\u0017��p(C\bw+��zc����\u0014Q]���h�Q.(t�MP�`�?\u0016\u0005�K8X�>�A#�\u0006���X�a>r�8@ue*�\u0012�;/�G*��n��\u0016���\u0002\u0000�����w��N\u0004`�v��u}\t\u001c�0$'t;�27\u001c@�y�(|�i�\u0016\rt�W}-���w\u0018\fL \u0015�a�B\u0000?�\":�\t�~�\u0013\u0000�(\u00146K�!�o/��R5�\u0005\u001f�:�:�\rs���\u001f1������_n���\u0018��ߗ\u0011sw'ϧ��`i�\u0015�\u001dn\u0006BHn��[��&�i.�!�YwFQ���d\t�l%�\u001d�#*\u0005�>\u0018���@9a\u0007�����D��0\f����[@�A$�\u0006���L�G\u000f\u000b���_�*��7@��JU�vo������1S\u001fg��\u001b�p�nK\u0011���\u001b\u0016쌠\u0004�\u0013b�:e��+�b���{4����{��\u0002�\f����a\u0015\u0010��6\u0012��#kH\n��J\u0002`5�i\u001d�\u000f4�,lU\u0011`PU���e\u0019�ѧ�l�띹\u0019���{ m#��\u0000\u001e�\u0013�2�W�\u0015�|\u001f�W1H�{�9\u001d<�ϟ�(���A\u0005t��O^\u0012�Л�$�n�\u000f ʖ+�K�e��mr�|8\t2Tb23.@��k�\u001b\f]�\f�Q��Y�\u001f�\u0004��-\nl/���\u0017�m���4��[,�\u000f|���t�دS��\u000e�ڏ�b#dV��%���&R�}�~d�A\u001f�\u0006̀�L�0��c�O�\u0001g�|\u0002A6[\u0004���\u0007�n�i<��V�X��\bC���\u0004�s�)�-n\u001d�<���\bӚV�\rS\u001d!��,�\u0003��w�E\u0002pHZF\\o&\u0005�R�\u001e��$�����A\u0005\rIc_��(¯�����\"���\t\u0019�\f\u0002�\t�����-�=���׹�-bK'\u001e̾�\u001c�á�.���\u000f��\u0011�u\u0016�\u000b\u0005b�f!��6�A�E�hJ֗u*�n����e��$�n:3|\r���I��+.�0��?�ƩW����5�\u001c̳l�5\u00051����j�\"�\u001aL>\u0012��$�_\u0012�_ۗ7�_�Q��<�i3N��\b�������\u0005��\u001f��A\"�\u0006�����0��A�0���Z�o�0�F�:hY��4Z�\u0006rn���M���\u0018E\u0015wBul���d\u000e\u0019#�����z�\r�g�\u001c=�\u00138\\��C.ۀ7\u0013���*\u0012 ��ּ!\u0011��|\u0000r�s9i��#�bc�s`,\u0007�rr���\tvf\u0012BG�95�����d�\u000e�9�Zx�\b\u0019�\fK'|�\t�N;F��h�Ƌ�7D���\u001e\u0017i!���\u001e0�\u001a����.-I���r�B�Y��i��\bd��~큅7\u0012'��\u0011�g\n2�\f����x�錫[�J,�\u0003�\u0007e_t\u0000�ׅ�\u0006zŸ�z����\u0000\u001aJP����_\u0003\u0002\u000b�\u0016\u001e��\u0010��[��\u001a0@�.\u0004�Y�A)�\u0006��Mzט�:[/��\u0014��l���l�C��d?�\u0014YQ;яT{̃\u0006O+\u001a�X2�\u00171nf�8�ض=��Ov©\n�\t�����\u0000#+V�tlTLϟ�|s�\u001e2q?���2�|\u0015k�A��.�SG�J$�[;Lʘ�Zp\u0000!FG\u0014F��������Ћ��l�h�{���\u001e85��w\u0014h\u001fO�Ԭ�\u001e\u001c���W��I;n^M�\u0003�Y������t\u0007p'\u0007��.ͼ36#��H8�&0\u0010�O���\u0015\u0005h~�$�9�\u0002\u0006�j�|��eF`x���Z\":�j�֑�)����r[��!ma\r\u0019��u\u0016a�ކ��\u000bX;U��J{y�\u001b=G\u001b�\u000e��h�UR\b/�$��A,�\u0007\b��L�|��Y�J��0*B�u\u0013x\u0012�7�`��\u001a|�\\��3\u0014���uG�ͣsZ�i�U\u0002��t��~h\\\u0005p�~�b\u0018\u0001\u001bs�\u0000���^����\b \u0004�\u0000+�\n��J\b��qt����}_S�G[\f��Z�NP�\u0011\u001f,,�΃ț�h�{\\?�[&�\u0002YT��*q`�m�\u0007n�s�l^B-i�<���zu�\u001b��X�?\u0016������T(��\u000f!��<����7^L\u000f��(�\u0006���}a$\b�;�w�GC\u000b�\"�\f8���y\r\u0013\u0003���Y:�\u0003�gXy�����ň��Z�\t�g;\f��N\u0018�b�W��Rd��N\u0006�\bj�1U��`�����\t`U��{k\u0018��@(�\u00160uv\u0000�k-�i��F�&��h�E�]�\u0014C�C�\"4*��\u0017�V|��z�wk1T+5r\u001f\u0014AG^\u001a*\u0010!���+\"���z�$T�+������o��#J�\n�ʽ;|��w\rWX�mQ\u000bGu��\u001f\u000e0��`�A�u`\u0003�(��\u001fu�}hdq#\r\u0000�l\u001c2\n_�#\u000b�˹����$���4�¼\u0010[ſ�*Jտ�є;������>�n�:\u000f��ś:M�\u0016d��@�\u0015\u000b)�o��K��\u0006U\u000e��`r���\u0013K<�%7���%��Úk]3�MGzΊ�aˣA\u001f�\u0007X��M{� �\u0004�d�\u0006oާ$\u0018�(0�\b��a�𫕕\u0006���\u0005(��O�@}�\u0005��@�'�dM��\r�\u001cK�SQ_��\u0011&UĚ\u0000)譃'\u0002�Sґ\u001ft\u0015cEL\u0017�+���T�v��|��#�5�3n�\u001bv�k�\u0003����� �ް�r@��k���`�>�\tQ���\u001f\u0019m�\u0016,��\u0018�\f�� �wo\r����#A�'\u000fo�D��\u000b5��\u000fz-�zH���>��.x\r�C��X�\u0002�\u0017b\u0005�ֱ&\u0003�\u0017�^|\t)���Q1��i��8��\u001eNN~\u0006��}\u0002k��N�#\b�<�\u0014Qc\n��\u001a\\��\u001e�{��[�\u000f��r\u001fcr�\u0000\u0015�h~�A(�\u0007l��L�\\��avj������\u001c\u001bO��e��\u0005Sw��`ވ��J�\u000b\u001d8��Kx�չ\u0014���\u0001��F(��z\nf�X���0�2r�(A��\u0018\u0011�b���wzp�\r\n5o!\f4K6N���Tޟ�K�̡\u0005\n�NC�\u0001�\u0004*\u0015��[ {�\u0017\n�\u0007\taoS�p���^(߾���]o\u0018�\u001a��\u001b9\u0019�+����Z�\\|��h�\u0010|��\"�ؕX���\u0010�Ż}��\u0011�\f�\u001b���\u00065˗{��f|�+\r~R����\rc/a\u0005O߼\u001c�r4��}x|�\u0006y�^��.(��\u0019�1�\u0012\u0001�� Qsk�\u0011��`Ɣ|]vn�q���\u000b\b狾�C%_*�}��Sk��A%�\u0007���L�\"�Zs:�Ӏ�\u0010Q�=�6G�Q����J����}�Y��U9Ʒ��e\b�'J�jyf��\u0019�5\u0011��\u001b���I�4\n���O�X�n\u001f\b/��&\u000b�^8�z�b�0? �;tpg\u0017!�\u0010^�#�$���O�r��\u0015�\u000f�X\u0013\u0014�Jf-<�K�Ż+����d–���3\u0002&�mIr��#���j��X8{\u0017\u00126D�gZ���\f\u0019\"���7oS��\u0002 8�H3'����\ta]�w�F�!�=�\rZޞq�[�w\t3�\u000b�`\u0003!.62B<٬\u0007V�!t�Ք\u000f�����d�2R���z(���\u0015A\b�\\{^��]\u0007�A��Z\u000b��(mDy�L���9��A#�\u0007���L�3\u0018w���Zm�\u0004g%Y�c<:�st�O\\0\u001a2�E�Œ�\n\u001cK͵��e\u0003\n�y!}=��\u0000�\u001c\u0013�M�Q��\u001c|�CoF�S*U�M\u001auh�(�K�뾗M�\u0001'HQD�W\u000fՕ\u0015����Z<͊ET]k^]ۆ�1\u0002n�=,\u0012�Yx�\t�`������ng�\"�w�Y�܏\u001d�qݖ��J�/V�\u001b\u0004�=�5��?o�P-�2#J`�3\u0003�`�\u000eJ�A\u0014�[�\t\tH\u0019��7\u0012���6M�\u0018�U�\u001b�;g�\u0015_)��/\u0019^0N�-k3�J��W���\u0005��+1_L�M�?�\u0005uw�\b��n���\\\u001e��T�z��qP�7�Oo0�(���3�\u0016\u001d�A&�\u0007���Mv[ڥ�=�y�\\=�'�W�1�r\"o���^e�b\b�J�\ry��U:�)|���\u000e\u000b.�S����(�ǃ�����\u000f\u0017�O�Q���o�B񬨑>��7�'4\u0005Le\u00036W��\u0004���l�\u0012X\u0014\u0002J\u0000�.����(�Y$�<(�;Au#!�y*$��~��p��1��\np\u0003�\b\u000b��ʗU\u001e�*����MH.�i�\u0002�Z}�u��{\r�\u000b��ˡ�3f(u�4�\u0017��b�p��n���`ˏF�Ʉ�\u0012K�?2L�x���f]\u0010�0��3����%.\u000b�����$�\u0000��A'�\u0007���M|��QD�\u0005M\u0003м:qZ�Y!U\\>�^'�\u000f�$�k��\u0012�*\u0018�!f���\u0013p!lR�P| ;>��&X�\u0014ծ|�\u0012��)r�ȴ��&�\u0003EE;nt��\u0011��\u0018���|6�'_\u0004����;:�ON\u0003�E�\t�T[\u0010��a�?j���7b�\u0007B;�.y��&�yL��v��\u0001#/k�\"P}�\u001d\u001a���w�\u0013�T��s�\r;R�D�q o\u001c�Ȥ'�js�\u001a:�a���.����t_\rk\u0011� >��7�0�Ѹh�{2\n{t{����\u0015�����GVK\u0006�\u0006B���\u000f&���>¹2��\u001c�_^\u0011XB��\n�g�(�� �\b6K\u0011�H���?}�\u000f���^/\u001dv{Խ�0��\u0017<��ҏ�;ݳ}�A&�\u0007����\u0011\u001e]K{�\u0007�\u0002��g��k��H\u0011��ZtG2�6�\u0019���O��hEm�mu�2뜧�U��G���}2�J���\u000f��$A-hٻ�?ŨW\u0016՞�\u0017ѻ\u0001eƥ�`v�\u0007Pw��Ȗ ���\u0007��W��Q \u0017\u001f�B���#�2��*F�ʘ�\u0007�[|�\u001f��N\u0013��w8��NB����5Uㆫ��2�<�\u001e���!'\u000b~��!'\n`�����~\u001a����C�\u001e-\r4�� 䴾IB�WSz�>��i�&�,s�=]�=�r�y\"0�뒦�p�&!�D�\u0004[\u000e\u0006�\u001f�Y?})C�р�Y2_�Zw�&#{]F���n�@@�\u0012\u0006W\u0013�\u0003��A&�\u0007���L�\n�t�ɑ%'j$��՜\u0006\u0013\u0001\u000f���}�K&�.��Ka|��5<`���;�\u0013o\t�U��4\t��o\u0017�{��\u0011\u0007�V~1Sp�=�rF׳���-cw�NI�\u0005l\u0013ɰ{�Y��ɻ1\u0018��vS?<ϩN\\���{ݐ\u0014�o�e�{Th��ҧ�GC\u0015�0�������Ȝ�f\txiT򎶤]gA�2�&��d֩�c{Z���O7]\b��\u0000&��\u0016�P0��)�w\u0007\u0017�I\no�Y!�LƝdU�G�l��\u0006�����i�\u0011��ܐ�\u0004I��@Y�������Z@�T}Q9\u001d\bQ��Ӹ�@��=]�g�n\u0016��9\u0019���]\u0019l�.�8\b@���W��A5�\b\f��M��@}\u0007�a��~jΖZ���j`c5�>:�=&��X[�p�\b��\u0007��*&�9\u0007ڎ�\u0005P�s$\u000bD�K���v*�\u0005���LJ�\u000b�O���\u0019�\u0005���e\u0016�e�\u0016���\u000e��\\�\u0001\b'�\u000b\u001c��X4��X�7\u0001�5�0�\u0000\u0016��x{:\u001e� D��B�\u0007���\u00148R�Z%L1\u00052�\u0011\\NOF�\u0005�*��\u001c��`�T9l�=\t�\u0004�o�7�\u0019�\"�B\rf����>\u0013���\u0003'\u001dP\r\u0010{M�8>1��\f\u0004o��z\u0010\u000b|V>\n��=�P;\u0018\\1���f�ew\u0017�8:]������B���Ի�t�H\u0012pW�v?��ځ@(�+@���g\u00129\u0000YA���\u0018�\u0016��Q\u0011'�ٟ\u000b`���A+�\b ��L�o)=��\u000e\u0000K��oz\u0010���U��\u0012J��=[P��\u0005���\u001b��\u0000���8W2������ջ��=k�*\u00132|��\u0019\u0007���\u000e{3�2�S�\u001d(�i�L��z����5��;b}�0n�S\u0011K-G�4����\u0003�\f���:\u0017���^�-Oz�\u0001>�|����\\�w�-�X\u0016����\r#-�1�Y�{4Հ%����Տ\u0013�^7���==�拾y��O-\"�p^‚e|�zg�\\�XX��D\u000e�6���@��s��d�{��Ú\"�\u0003'�̱\u0011�?�����^�k�q��\u0011BPJ5L���\\��\u001e\"\u0007\u0016P�^�X���\u0012FRs�.�����/<'��\\ڝ��AS�\b4��Lɀz{\u001c���Ը\u00174�k\f�݁�����ъ\u000e����MlG}y'TO�2\f�W�zP�C#��K��_w�J_�;�\u0006/ìr�\u0014q#���=��\u001b٣��)\\��\u0011�tQ\u0004��\u0014}#�\nO�&\u001b�}`ƒPI�,\u001b�½؉\u001d��v��ϐֻ\u0015\u001d&2М-M��� c�c�q%�j��Y- \u0011*'M3;\u0010��\u0002��M\u0014��������.��\u0001��i�\b�\u000f�1�[`�X��eE߇H�x\u001aX�Oћ\u0010��>z\u0014�\u0003\u0018�x�u�$��\u0001�hbsZb_�� &\u001a��<э�~\u000b�NǮ�΁��o�K\f\fe�\\����~��Cag\r2)Ի��yn�\u0015���`����W�6\u0017Fu`�\u0010Y$´�{�8�*)�f����i/���\t��ڣA\u0019�\bH��]����m��\u0007b\u00145�N�\u0002st�\u000f\u000fЋa�ij�B��\u001cd�>����r,\u000e���u�\u000b[�&\\�ZfpZ1�13<,��G\u0007ɧ-��+ێkizb2�\u0014?���p�-4�7�Q6n\u0019��\u0000!�K;����t\u0015��b��l\\&%^�FP�3�\u0002B\f���t���U�����Ἅ�\t\u0006�|\u001b��\u0019%�ā�\u0017U�\u0011\u0017>@\u0006l\u0005�J�ֱ\u0004���\u00010�$a�%�Ks���N\u001bQ)1��\u0016��HE��\u000e�\u0004�X�6y\u0002�����S���9躰e��;+�Ik�sP_ �q���\u001a8'���ji�K�<{�z���Ю�H)��ңA,�\b\\��M(n�A��D5�Uq��^�4���\f\u0006@i��=�j\u0015&�.|\u0006��1�����.Ȥ��j)1.�/���\t\u0005\u0011aZ虽\u0002Y@�v�\u0013\"1[]�thj,yl.e1���!n\u0000�\u0015�ݞ��9�[+\u000f2@�N\u001cSzT���HQ�j�!��̠�ai�78�\u0019�lWױ��\u0003s� �kO��\u001e\u0011G�=�\u000b����нz\f\u0018X@� \u00012�k�i��\u0017\u0018򏅌��\u001f�@����U��\u0007O�\"�<��0�9H׳l�<��8�cF\u0016����\u0005{o�&�8�l\u000e#R����<�\b��+\\r��8[\u000f߀�)-�\u0017\t\u0004&���U+A۽\u0019]b���'o�Hg���̹qi��A,�\bp����JU9M����7\u001f�1�ntp>���g��j�eI�4k�1_h���*p��0A���h�\\�ґk{�0\u0016X�Z��������\u0018�~�$��t�N��x�;�\u0001���\u0013^�����6�\u0019/0���X�\u001a؅�\u001c\fZD�trE�U,�\u0016D��\u0000h\u0011̒!r\u001e\u0010ޭ�\u0018z�D�A �\b���M{�kx?��[W�o\u000b��4<υW��#���\u0016\b����ɵ��Szd1Y%�۠�o�z\u00175_�����_��ީ&'��nX?�1\u0010\bAP��tɴ�JX(d}\f+�I-�}k`̣��U\u0003I�\u001d��X����n���R�d,��|�C�%-H\u0015���hu����\t��\u001a�W5���&��j�\t�P�U������.]O�wJdye��@\u0017�\u000e�+�&\u001f\u001d�&\u001cY�\u0011\u001c%�'4;�FDp�-7��[\u000e1֖��XJ_ƽd��`�\u0003�<ϥ^B\u0010mm\f��\u0017\f\u001c��jҽW�:��4���!�#s�\n��\r�\rF��\u0010%�Pn44��g�L�n�A'�\b���L��)\u0017��\b\u001f��WdG�m,\u0006�$Ds\bΫ$�m�?�iO[��:�U�z�\u001e8��Z\u0001��r�H��N�\u0010��\u0013G�Os\u0006EծA<��{���B�9\\�b��'��\u0006ܾ��D�\u0001.��\u001d�\u0000�=�\u0014\u000f\u0002&�~<�\u0002-8ޑ2eT\u001dA�fU�3\u001e;����:�U2�/�8�\\�c �r�!��8��%�E>\f�iypB��\u0016[I*Z�u\u0010�h3L���۟)��(��\u001c�1\fj�-޸F�WB��؝%���L�l~s�㐂ߜ\u001a��\u0015\u0018̇���V�2\u000b\u0001�|nn$/��?aK���Y���߀�?[����\u001c�1`���0UF�N�⸥��g���~�A#�\b���L�'$9�m�]\u0016\u0001�XHf�T+k\u0001jsj\u0000��-�h�N~C3����\u001b=V��'��\u000b���)\u001dD/��\u0002\t��\u0010[�����Ԭ\u001e�P\u001d1��,�NR�e�\u0019���H����`\u0010�}�:|�\u0018��Pmf�\f$S�v\f�K\u0016Yj\u0006l\u0010ݷ~#�˖�kMӳ�./���\u0012X��\u0000�A\"���r�|S��\u0019��m��zD\u001d�w{�S(e��j��=C4d�;8���\u0005�W߅\u0014���\\��K�#ф��D���%�g\u0004ș�~y\u001a~\r߿���zk��k�\u0017\u001dC{���r�MSٍ]���B�\u00037��F�w()�ڡ\u0015̭�PbC���ش�q�[�A%�\b���L��\u0011�\u0016d�c�|\u001a\"G[�\\�D:��[s\u001c�&�\b/2;�//G�ƿ\u0010i�$P\"�8�#?��Ϳ��)p��)�+|�4�]<��sH�4��O����lM\u0019s�SQ\u0007�4�P_�A�d�\u0010�]eD��\u001e�X�����\u001b[�ڊ\u001f�����̵�Jɚ@�\u0002mH�\u000b�\u0013���]+�� \u0016xyCz\u000e\u0007\u001bu&�?\u0006���ʡu�\u0005�K��s\u000e� ҙ�$�>��֛n�\u0014\u0019\u0004�޾\t\\�_\u001e����\r�C6A���\u0018�]���+��l�xP8[���~�7�\rV����L�j��_8��~���$\u001e�m�q\u0012�\u0000Qn�\u0011\u0003q��P��K\u0014C��2��A5�\bԀ��\r3$�l��|3�rm��,tw\u0013�p�aD\u001c?�$l;�^�K�\u0007�\t�J\u001caYg{�at�(\u001e\u0015�a��sT.���\u0010�'�9�s\u0013��IK�T�<��\\�*�8J 6�\u0000~�?�u��i�\r_�#�t����ã����[��Ϝ-=\r��r��1\"��2N*��`�`v�5���\u000b\u0007���=\u000f�\u001dګ��k��2\u0017E�հ� yR\\��P\u001c�;D\u001c�P7m�5?�l\u0018��%V\u0019�gFOi�\u00031�m�\u001f�?�>�\b<�T�!>\u001a\b��{\u0006�$��A1�\b��1�Ӷ\u0015\u0016>\n\u0010��8��tB����9��m��������\u0013�����\"*H苿���\u0015uҗ+��-��\u0003��[�yc�ȗq�DƐ#k��Z��q\n���Z�H\r��\b\u001b\u001a����7\t3qu�Z���e���xdq�$7���A��\bz|���n\u0005���-#լ��k����w�=[\u0000F\u0011��\f\r�NM�Τɱ����I�k��1�^���\t�\u000em�y����ʖ�\u0005\u0000\u0015�:\u0000�{\u0005\u000b��,\u0011���nB��M�\u0005�sYV\u0006��ѻ\u0019��qo\u0019?fn��p\u0002�\u0005v7\u0014S\t�m�\u001b��(��UD��&��>8��K�˴\u0004�\u0005 A�\u001e�R�e+?Owx�d>Ao��A-�\b���L��\u001c#C�`}b[��\u0007P���\u0013\u001a-�*R˥�,���\u0003?j�бZ�q8\f�X�Q��!R��a\u0011z���Z`�-b\u0007T���!�g���\u0002�@�ű��GA\u000f�Wwf&�([�A�IK\u000e\u0000�\u0016�f�@�`h^\u0015�+^�\u0015��\"g�S瓷\u000fU����\u000f<ĥl\u0015�Rޣ�-\u001d�;(f�i=5P\u001f�֝����_Ȗ�\u000f�����\r�R�%m\u0016���� ���U��\u0005H��j�T�9����2g��{��J�g�\u0002\u000f����C�=x��IH�-�Q=Z�m�\tn����?$˚�*V�\u0010؛,}X�ט���ӳJZr\f\u0004�(Q�c��w�L�=߬ԭ�a�p�\u001a;Y�A)�\t\u0010��1�I�Ra�t�g��s\u001a./�|O�ϭu�\u0002\n~'�om���:q�\u0006{��W����C�\n�a_�fi\u0003j7�\r�\u0011\"�B�=j�D]�/�#�����K�Ǜ\u0001ߨ�@\u000f4���v�\u0006?&��\bh6����/g\u0018;\u000e�'���C\u0002ֹ�3��@;�q��Dhzz��� �n��FI��\be*�|�\u0002>�C5+�\u0002��\u001d�̈́Z�_\"L-HD\u0018��\f\u000f4�ʳdw+sR\u0001;S<ƞ���\u0017��]���Ne�؟���(�\u0013�\u001a��|��s�H�wA�\u0015b3@�\u001b�)\u001c\u001ej߰����\u000fܨ�`��ƛAf�@}�\u0015��\u001b�%�צ�ȏD��e\u000bUT�A9�\t$����\u0015s5>gM��Z3i�K\\s�\u0019�|IY\u0000��+���\u0014n\n�r������R`\fl�G[\\\u000f�u�Uw���<�O�R*'*ڷ\u0001�\u0016aa-ʭ`/��!��\u0010C6?�s0(��E���K'�\n,�㺬Co�2�}�wA�2���԰��;�(����3�N�6�'\u0007�~�L�\fS ��̻\u0007��Ιb�+`\f\u0012�ᓧ�^�C��7w�F�*1q�]�*h�4\u0012.�5���\u001b\u0011 ^d����T.���6��e[�v����t\u000fFt������k���\u001dy\n��s˂��Y�3�\u0016�\u0001)!\u0000*G��\u001f��J�\u0003-D�\u001bgJ���*�߲j�F��ۤ�$�;b�{<-�b��\r#���A݁\t8��|�\u0017�c:�J��\u000bFX|\b�����㹜��'׬���\u0015��\u0004�)��\u000e�~^\u0006���\r��a\u0001�\u000e�\u0013�9�p(�Fj�mJ`#\u001c���Q�~�In\u000b����N\u0014���x(�U�N,t2\u0002e\u0005��}%\u001e\u0014<\"\u0019���\u0018K����u�\u0018\u001f�9TU+\u000fڣ�:���֮_�9�&�\u001e��k���\u000e㝦8!gA��I\u00036/�\u0003\u000b4��jc\u0012F�_�t\\�\u0017��0�9\u0013\u001d��Iu��<��G�W\u0019�lCgZ\u0016+K��j�ka�~��HV\u001c\u001d�;�\u001dP@���\u0018?��л���?���^����A̒\u0010��n����S�\u000eY�\u0014(���'�\u000b\u0007��/\u0007z��m���Rn�j�QÜh�g��\u0012����V��J\\cr�8\t�\u0010U\u000fR��.�O�t�Ї������8-jڴn�t������3�Q\u0013�V?�z@�܁de\u001fC�O���RX\u001d��G��S���\b~U�w&ΤՉ�\u0015�\u001c�f����\\ېM[���Z\u000e��\u0011����\b�ܨb����BP�\u0001%F�R�=q)��\u0010�(\u0011�v�jM�M#����P]���d�y@�����-�p�6�I�KY|�\u0007�p�a�\u001cڥv�\u00019P�ޯr��t\u001b�A8�\tt��L�a��\u0015{��>\u000f��\u0014/!;W%X\u0000CH#�5�4��7\u001a�����Za\u0002��z�HP㪣��\"�tD\r`/\u0014�-�I6�C�W\"R?ܘ��\"W��a\u0006\t\u0007�+K�q,\u001b�.��@�\b�\u001eL��j��we�\u0010V�\u0007_�`�p�\u001cp��\u0000m�*�-�n�\u001b�\u0016Ü�\u001b�[��n\u0000t.8��8��\u0013\u00174�S�f\u000e�\\\u0007�\u0015�LyJ��qQ�I\u0019K˚j\t�w��g���wG�&���v�g�zْ@)9��Ko�);��\u001e͝.<�Hz\u0000'\u0004�s�9!���g'�*%D��\fF�>�]qP_�oy�p'R��a\u0019�C�o0�#b]��\r�\f��\fGߩ���[�r\u001f~�^�*!c�A2�\t����\u000e\u001dA�\u0006�U5%�T���\u0016���<��SJ\t�柞\u0010I,w�\u001f�\f7l���\u0011H��w�M\r\u0000��G���>�����A\u000f&�[�-M�}��\u001b��\u001b�8t\u0011�\u0010�\u0011U\u0005��\u0004�\r��p\u0012o���_|�\u0013\u001bY�\u001cĕ\f]��\u001c�\u000e�M�d]߲~\u0004�\u0010(Q�����m�@\n\u001a~�`ƨI3��3&sz/ɭ\u0013Jf��߯�*<���6\u001e�پWH��e�vp�l*m�|�{Z8\u0019���xV+;�4��\bb:��9�\u0007���\u001fS�����\u0011��UU\u0010�)Rݳ%����55=Gc���M��blG��:���n��w\u0005Fה�\u000e�+5��K �(�Pu_\u000e!D����\u000b��\u0006�\n3g�A6�\t����\f�ץ��\u0007�b���Dz���+%/ ���S�@\u0010�Q�@�jC?�����������L\b\u001a�\tJ�*C�}9\u0015�\u001e\u0018QK�\u0013!u��A4/nF�7��کW\u0018.����\u0005\f]*Ԩy�;x�Y�T\\��\u0013�\u0019�Q����i�\u0001LO§�\u0005\u0012AC�����ݴ�(`�D�R���U��\u001c��ct�}Ɔc\u0005i�[\u0001ڢ\u0001�+�zu�Y;�Qx�\u0014�㐊�\u0016$�{\u0010n�����L�!+�Z\u001d��[8�\\�?���\u0019_����^Kv���j|��U�\u000b\b\u0005�(C\u0005g\u0018�)B3���|�=��3��\\c���{ڵ.�@\u0007;�,\n��<�V�A�9\n\b`��g�\"\u0018�\u001c�\u0007K�%7A�D�d�A;�\t����\u0017�9�f�\u0013�����b�İƘ\u0002���7e'M�5\u00052V\u0005|@���9���\u0010\u000b����\u0000D�D\u0018ƙ�9+^���C�\f�2\u0015����\rK�\u0011`��MJ\u0004��+\u001dh)2w��+\u001cY'���\u0014F�X\r~3�\u0016��N٨�~1��\u0013��C\"=)0�p�±7J��b\u001e��r�\u0004��gBl�b �YR\u000f�֏pL�\u0004G�\t8p���v<����A���EM�z�؟^\u0003�mtt\u0013��ú�x�����\u0016��Z�\u001e]�f��{��y��)�l\u00135q\u0004�\u0010�����\u0011\u0018�\u0007Zr,�>�$����c�E\u0003\u0012�\u0014��[�82M\u000f\t.\u001e��s��X)$؃\u0013m�L�p��Y'��Cn�=�1d\f\\�\u0018�?Y\u0015\u0012Z��`LR�Z?%�\u0019�Z\u0017u����K�s=�\u0001[\u0013/�;��\u0012-��A���\u001f1No7@ffo��[~\u001d\u0004�\u0019�qW|T\u001e[�7\u000eC��r���5�\u0017p\u001d�v�\u0015�SB\u0000�\u0007!6�{�Y�p^�Fc��\f\u001f��<�k�AK�\t؀�L��\r�cjri���\u0007����\t�T\u0012������0\u0004\u0002��T�mZ�����չ�fEY\u001ey��*�nߓ\u001c�\u0000Y\u0011bnE7[ߥ\u0019Q�t\u0011��bK����P���IcA\u001f�X���\u001a\u0015š�����Z>�!$�Q�9�Rf�ښi�xvK\u0017����\u0001���>\u0006\u0002�ڕc��m �\u0003�rA��+;�]Y΋��T���Nο�5P[�aJ�!G\u001ey��D(Lό~��vL��ö��\u001aJ���gZ�3S�\u0010a��P��@\u0003==AX_E�P\u0006�T\u0003\u001a�>��K97˼_����U�\u001e���\u00023��58V�o���Hk�[c\u0005)*��y�nϩ�}¬̥3���8w]n\u0015|��N,�B�x��@Ȃv��bBF�\u0018e�AJ�\t��M/�G>Zzl�z񴡅(�N�\r���o\u0015�Cl�\u000f�\r\u001cBʢ��O����s�\u0014�3�\u0013�km��{\u001f����z�zs���,c����o�Nk������\u000e��\u0010Cw��S�'��� �i\u001fϑ#).��l\u000e.�\u0006Um��\u001fp\"3d��n\"\u000b���w�l\u0018�Z\fB�q0����ˁ���\u0010F\f{\n�)\r\u0014\u0012�?�i��<\niI]\u0001���K�kՊEՆ�m8y�o�W4�+�dR\u0010N�\u001c��1b2�-�p_v\u000fQf\u001f�[_\u001d\\\bÓ\u0011y\u001cj6�o\"��\u0005czR\u0017+\u00109\u000e%Q�{�o2��u�^s\u000b��A\u0005�!HL*\u0016�#�<����\u001d{=�R�������G��<��a/Pz� H�8�3��\bF\b\u0002GU{tH�ѳ\u0019��AS�\n\u0000��M ij\u0003$��߇:\b�X����4_oC��3id̺�WWxG�@�f\u0001[��|s\u0003΢��Pc �xT�\u0005d�\u0006\u0001�������fE�qV\r]5\f�1uv=hu9,�����2\u0003SU�����\u001b1�=꠳\u000eeQ�[\u000e|\u001f޲�j\u0007ԗ\u0016�9a�Kb��\u000eFz=���׺\u0012�:\u0019�\u0011+�?{S��-{\\� �9\u000b͟=�-��bonX���ĒٍY*���ZlVw{jO�Do�k�߾L�\u001b\u001fU��\nz\u0019\u0000�v�\u0010`����\"p�\u0013 �?���A���toe���=\u0000\u0013ւSY\u000b^\u001fk�)�\b�\r5�\u000f\u0018��Ϡ��%J7C\u001d��#k3��ңA��\n\u0014��|�\u001bN{����\\\u0007�@����k-\u0015E��f~\u0014�\\֬\u001b&�j�\u0016���,/A{ȁ�Z�pӛ�ʌ3v��?�;K�­�5y��į�Zg�\u0016��6Q-k��\u0010�od�\t�A��ԑM�ܮ\u0016���\u0002�\u001f��}{=�i�*�\u0007��m����T�������;~#�\u001a����x��'\u0014k������,�,/�#郮(�&A\u000b�\u0017a5�z~܁U\u0012D�.��ر4�L\u0017F�p�;!S\u001b�j����V\u0002�(\u0006�>&�o�U�רP𸞜\u0019��Ӆ\u0011`�\u0019~���E��������$��?X���$�� Q�[��V(����n;����\u0013�2\u0004�\u0016३h\u0013|��r�0I�s|2 \u0010�\u0019�9��Ӽ\u0007 \u0004��o�2�r�T\u0016�ڑ���hb�ф�6���\u001e\u00121W�h\u001a4'����.̾��4�\r�\u001c�f��mI\u001a��\u001bx��\u0016�������,\u0000��׆�@\u0018'z�)Ғ_��\f�\u0018Y�!�4v-��I;��8����>b2��mw�Y��A��\n(����+�Ԃ��2�}'\u0002\u0012�\u000f��<܋�m�\\�I�\f�iǭp<�\r�JN]��\u0001|��9�%����Q+\u001a<�6Hj\u0002�\t��\u001cE��E����\u0003B��mQ���\u001d��)�u\u001e��3�\nl�6\u00053���\u0012�¾߅S\u001fq��h\u001fKL�ɍX�\u001cb\u001epo�yA��VX���\u0004Vz/e|�E��T���qY\rl�\u001b�!��y‚�)o\r�8V`\u0003ˍ� \u0003�\u0005���X%���\u0011=F�bUĘ:4\u0011,�\u001b�;\u0013\u0005>]r��tec\u000b��M���\u0007���v\r\u0011\"�`��gd\u0001R\u001f��\u0004��҈�}����n��Mq��6�5�B�\u0010��ˆ�\r�dZ�QC]�����n�W�\u0018'\u0015y\u0016J�G3����a7�N}����[\n�yV]`9z����=G�'�P���ڰ��\u0015�5\u0001�n�\u0017Z= �\t}��T#)�\u0004����\u001f\f~^�\u001a5S�AR�\n<��]�)�*n�m��_�\n�%A�˻���\u000erJA��[S�kFF\u0019`8�#\u001aH��\u000f�\u0017���&G���q�`:Cv��s�|�K�0=�\u001a��4�8\u000f_b�\u0012a�5\u0018D�\u001b�W�\u0016b{U\u0010\u0010�I�\u0005\u0012G\u0002Ӎ\u0000UM#X2�uU0�\u0004����\u0000���#\u001e!k\u0018��\u0000f��4�[.O��\u0004�p�&\\��\bR�\u0015����\u0012CWע\u0015�'�sn���3����C��\u0012���\u0010�*�h�}���7,\fe9o���p(�#��W2ͯ�\u0018~8�[���\u001cӖ��\u000f��ev\n���\u001fj�7uO\u0013��\u0015�e:m�����q�Tb��\u00056+I?)J\"�[\\y��AF�^=�h�e��Z�8:qf\u0001w�\b�)#`��k-���\u001e\u0018}�8�u#I�\b&f��ңA-�\nP��X���\u0007m�k�\u0007�\u000f������U �'��\u0013�Eő���QF\u0016��\r�Z������/�\u001b�V��\u0015q,��\u0002�A.1\u0018K=*F!�FP���T��b\u001f\"?����=^\u0011\u0016���\u0018�!K�ᮯZ�z3f ���X�S�3�@��P�\u0010'����BE�s�n%��Հכ��U��\u0002\u000fZ��IAzq��Z�BH�p��\u0001�?-.\u0014��Q�k��\u001e����\t��\u0003T���R�,\u0002���{:��J z�c�p̨t=ϯ\u0013�;�4grV9���\u0016g��s��\u0010�ѓ~���r��TjVѬ(���\u0014�G\u001c��K\u0012�Y����\u0017�_,�\u0010DRs6\u0007��̨sv_Hf�A*�\nd��X�U��s���9?]��!\u0018��T\nƂ�l>��%�f�\u001a�<�l����U��Y�|�Z�B�43\u0014�%�x��ʅ� \nb�o�\u0004K�d�U��76 )�%c�<�j�ef\u0005\"�' ���N��\u0016\u0019��\u001a\ff��N�\u000f=x\\��\u0015Dw��* ����\u0004}�ݼF�~_�T���A\u0016\u0016\u000e\fT�ϡ��CI\u0000�\u0010)��}Z8I2���X��牱�-B����I���y�By�\u0006���t��v����) �kd2|�0��x�\u0012��r�\u0011��,�����녮�A�j\u0019�&ۃ\u0005J�aS��E?\u001e�с�\u0017v\u0015{�\r�,����F�\u0013�P\u0003(��:�8s\u0018��vQY��3��>���V��\fo\u000b�������\u00148�%�S:\u0003�/vK\u001f��a��=^�̗ N>Y[W�y��hФ��)rO�m]� ï\u0003\u001f�\u0001FYK�\u0000mǺ\\�ߺMVt�ϴj���\u0007�'0{�At؝�k�͵뻯\u0016;����Ш�*j�\f= �\u0012\u0015�\\W\\\u0000\t\u0001\u0002�G+fX~��al��A1�\nȀ�L�\\Wr�\u0006�\u0005�\u0000=3T�֫�v�H�(�����\u0000Z|�\u0006�!�\t��C�4m�s�$�T\u0007���Q�y$�����s[��lcId�g�y.)��]<�FM�n���g���4�n2��\u0004�?`i.4�s��Ǽ���^��~�^\u00149fMm@���|M�\"�\u0001ȵ�\u0001j��f�!�\u0001\b6�\u0003�%y\u0003\u0011����\u0001^,�o�_0��4�L�r�\u001b�\u0019Q\u0010����2\u0002�:�'�\u001b�e�\u0011����\u0014�)>�ԙ`�䝽E�����sR07�B��&��\u000f�V��m\t0g�\u001e��<\u001e�v�\u0004�ϟҐ�k�nrh\u0012��<^��I�c:��=$\n��Nqފ�\tN�\u0012�A.�\n܀�Lݍ�rgS�\u0019�{��\u0002l7���>9\u0013\u0013Q�t�PH\u0015�1�$��\u0007���q�^1\u0018q��^�\u0002���aƌ�Y?��H��\u0005�\u0019���(\u0018�c�?�hU@s�q����A:��U��.[;z����\rdyP�%'�����\u000bi�\u000f�X��Һ��ѡ�3I\u001d�l\n��ۆ���>\rO�?��^�T/JS̋���D��$I\u001c\u0007��A�\u0010f[]�T�\u0007H\u001a�����ԝfz$��-t��s�\br�ۛ�^\u0018���\u00050\u0014h���\u0005�/��հ���\u0013\u0012���|�e\nQ\u0018[]�2t�\tlL\u001b�@�S\u0004 \u0012\b��x\u0013�&*��.�;;�hHmX\u000f\u0000�\u001a\u0013d*x|����f5�A+�\n���L��zźgQ��Ku\u001b�R��~\u001e��*�֤|���|�\u0011�=&�w&\u0001�R��!la�r�\u0017�u�O�\u0018����IDO��\u0000�8=�}f�\n���m2}�#cͦ�M\u0016��!L�x[h�����S�I.��2�k�RHj�\u0016׀(HY���ȩi�\f7��Xˑ�Z���/�����\u0003�#M\\��v>�7���T�\t\f�a,dReY��ۈ��g^b�3{=Ȅ r�%Xg�];��C�,�\u0004F^#�������ժ8��o�N�œ�\u0005=�� \u0014����͘\u001b��&Y���BnV��ɫ`�b\u0012:�\u0001d�aV�/\n�t�@\u000e���Y2�\u0011����f\u000e�?žg\u0013�A-�\u000b\u0004��0�Vˠ'&\u00078-�&Jv�Jf���~F_\u0011�,Xʟ���#z��+\u0007�.��� X�I\u0018�_|�\u001a��M�)\n6�\n����_�KZ�)��\u0013s��\u0018\u0006�\\�\fG�@�${�+��;Ο�qH��w�b�\u001em\u0000��\u001b��]�\u001f�\u000e\u0002�A,:�[p�Ƃ\u001a�&7���W`\u001f \u001d�_�TW�vV\\S�d@_�\u001aW�*\u0012ǝWHcRý�W&X�\u0013�\u0014���8�\u001dʜc����\u0015\f���Bf�\n�8H\u0016\b�p\u0012�h�ӿ��\u001fZ5�v����:��X5�z�׽��W�e�|��:\b?(t(�\u001b�U�\u0010\u001f�;�\u0003C@���8¹�Ua_x#\u0000\u0005œ�����g�05\u000e��A2�\u000b\u0018���b#B��x/��I���\u001a\n\u0007S�i;IB\u000eƝ��e�!\u0017DL8o$v�\u0013��P�\u0005��u>\u0005=\u001a�\u0018�[�\u0007;sjxF3�n'�\u0001k'D\u001c�\u001a\u000f�O�嗒�|l���l3-� �y\u0001~�\u000f‿�&=m���\u0005����e�gcb�\u001c�\u0019�;\u0000\n _#� )}i��G\u0014N�\u0015I�������u\fx'�f[��t*��h��A1�\u000b@��L�s_q#chzW�1�\u0013\u001cǍ���U^��\u0011�R�3e���W\u0012φԏt�\u0006\n.��$&jn5_����\u001b��&�b#{�����₞�w'zJ��P�� .�\n��:^M@\u001b���K�_\u0010Z�]`�{P���W�i��\u000f���DS�U`\u0011�\rUb��\u0016�l'6\u0004$�g�7�;1[/I�Ո�\\�\u001c�\b\u0006���[Z�1�᧕��\u001c\b\u00135��vD�����n�\u000fG�\no���$\u0004!5\u0011���#�X�nx�'�۩2�,J+l�����C��u���\u0000\u000f-��)ހ��\u0016�\u0012��\u001fĀF']!�\u0010E�1�[��\f�L�V�2Z#\u00045E>����\u0019{�-h�P�\u001bIF�+�?�A0�\u000bT���\r��\u00001�˩?\u0010\f����7E[d.\u0017���sl\u001a��X�N\u001e��6��ā�\u0000O\u0004�.���}KM�]_�������ZAw4�4Q��c��\u0010�*�gc�\u000f\fw�m7��[�ct/P\u0016=>�A�=?��^6&�G���\u0006������I22R�Lv�c\u0002��ɇ1\u0007�����\\� ��Կ\u001a��馥D\u000e�\u0011\t[�?`��bIuQ>\u001bo�\n[�j�l&�Y����,�8V&�ZG\u0001;.0v\u000e�\u0004=\u0003�\u0015Y3��b�I�\u0014\u0003+ԇܠ+��\u001d7�\bD��\u001eȀ��}FT�������\u0015\u0010��h���\tw�~Z�)���`��|��\u001b\u0005�z��Ni�V���#,\u0015&��A1�\u000bh���\r.����SͰ�>�/��$�`\u001b\u0007�\u001b���\u0013`C�n�����*��\u0018.�r�uC\t2�y\n�Lg�cW�٤�\r,�4�\\�Ȃ*��#�I��O���0e%�};ӶHW�y�5��y�>������v,�3\u000e0imjD�6�̤�\n5��N���ߡ��\u000b�!ҍۑ\u00177��C��.��KZ��r�\u001c�z4�w\u0000��8bo��\u0007\u001d\u001d��\u000e��w�kR�\u000f%�\u000e\u0006\u001d�\u0010A\u0018\u0018��j����X�H{\b�n�!Ȉy�\u001d(\r�\t�<�\u0007�\u0015m�lt�M�\u001d\u0013\u0012z\u001c�|���>6lVgb�A#��r.^A\u001c�y�tUjfb��r�@bc�j�9mұv��&�SB�\u001b�\u000b\u0004쉣A/�\u000b|��L�\u0018uU�g�xo\b����ǟj�\u00121'?^�vB*�\u001b���\u0018\t\u0006�\f���^(\u001fnt����}H�#Œ�cA\u0006z\u000f���tDhE\bM��~�\\|\u0007��zJNp)\u000b�Ad�=Х�ڏ�\u0000��\u0010�D4�\u0006�N���\u00015����\u001bI{\u0011N-�`\u000bZ�I��\np]�\u0004�\"{/�K\u000b�Y\\�M��b�T䗆����5�\u0014��lU���A{�*�J�!�\u0004\u0010�wO'���5�8�\u001fc������}�\u0004TŦ���v�ͤ\f�\\;�86\u001f�P�?�aO\u001c�Bj����n�7.��l����;>�>���,��\u0000��\u001d��Neެ\u001dc|汮�=V��f�4�3:�w�@\u001b��V#�A0�\u000b���M\u0014��,�\u001b�o\n��߫j\u0003���Ѳ\u0002-�=\u001chH�i\u000e��u���\u000e�h��\u0005\u001a�ei�<%/�=\b\u0017vW��Lb\u0019Tcy�\n��:V�\u001b:�X`MU���\u0005\u0011���Հ��&f\u0007$.N�`o\u000b\u0001�\u0006�2�f�dS/z�\u0005\f���8�\u0011�\u001a:\u001a���Ĉ\u000b�:Q/!�ړX�w�\u0015�\u001e\u001e\b�G��>L�y���\u0007X\u0001K6o\u000e:\u0019O�m4\u001f\u000b�\u0006��,<�r��}�\"�\u0012\u0015R��S�\"�c3�$��X���4q�r\u000f\r�]n:\"$};��j���h���I���Y�M\u00071/]aN\u001b�����sK\u0012\u0015��}}�!\f��\\���\u0004�D�A�|B�AR�n\u0012��8�g��N\u000e���*�`�\n�tB�o��qK�M\u0004�ZN��T�խ=\u0005\u000e��:R\u0001�\t���l�O����W'�������t��\u0004J�u���m\u0016��\u0011\u001f{�&���\u001c�\u0013�C_���\u0019��\"��ʣA(�\u000b̀�M\u0014\u0019�$\u0011.�'��\u001b���\u001d�@\u0011�'\u0004�4�c\u0017\tRJ�\u0002κ��(\u0010��o�m��G\u0012-\r\u001c̖�[��p��z|M\"5����'\t��nM\u0014����R\u0013�r\u0004621G��!洢�L҈k����\u000bRѶp���U�@<5�1��I�\u0012\u0018;�i5�Vj�\u0014^�\\���yn\u0000��.��ݠ\u0016/��e�s4��Q��\tW\u0004\u0001A�Xp�\u0002Ӟm^�Y\u001f��H�p\u001a�\tb�IT<�Ǡ�;>��I?�Ѽ�\u001cl�\u0017\u0014\u001f�����&�\u0018$�5$4Hq�6\u0003QT�X�Y�\u0016xj�V7u;�?--�Y\u001c�l�^O\\�AOW$5{ߟ\u0000�$dz8��V�:��N�\u0015�[�tyF][_iP޳6�\u0006\u0003x�J\u0005\u0011\u0014\f�\u001e)۲1p¸wg����\u0005��uqݪ�\u0014Z\u0005�LE�.�\u0006\u0006k���A7�\f\b��L��\u001e�n�\\b��VN\u0013��(\u0015?KgG�e\u0016w\u001f�Bi�]��5ɀ�⎟�F\u0007EG�?�ɒe�h�g�?\u0016�\u0018�u8���(�5%Z`b\"�I��M�p�����0vG\t;�gۖ��-�\u000e\u001b2��`%\u0005�\u0013\u0019#)\u001ff\u0000�\u001fE���'݌�9��\u000f�#�r\u0010�!\u0019e���ŝ\u001bs��Q��ݩKUضʯ�\u0000�5�<`B�c�O��\u001b\u0010�����\u001a�BVhd\u0018�\u001bX�nl��<�/���c(�?��\n\u0007\u0005\u0000X,n�-�p\u0013�c�3���\"�&s8����>��z��\u0011mށ�̐\u001c��\u0003��\u000bޯ��\u0003\u0006��\u0014K�m�%�\u000b�\u0007�\u0014�l�݆�ȹ�z�R�BC�\f\u001c�����\u0003%�s�v�ٱ�riLnKG�Z��m/4W�\u0001&5�2\u0015�2:\"�(�!����٥�.�ɟs��GC`W?^ι�ھ�nL_B�nLM��\r���d;�\u0006�@�u�J����j��\b���c��:�\u001c�t�����J]�'\u0017��yA#Ұ�������<\u0006���Ѣ�*�]�m\u0003@�ٝ {KxC\u001d\u0015�\u0011��<�l\u000f�9���8���O7\u0002��섞\u000b�P[�g�fĮ�M1i�\u0002\r\u00117���l\u0019�M#27�)���(�Ԭ�l*\\����^�$j iLJlUF)�\u001e9���\b���\u001c�s�\u0006��H3��~��S4\u0015\u000e�\u0000Uj�\u000f|�����\f�n@��r_%�pY��2[�'O\u001c�L\u0006�5�\u0006��T�U`�1�<\n��\u0010��YŨ�\u0004�I����Dk�Ɉ������a�O8:���d\tb\u0010Y ZK*0`\u0006���/�\u001a�����7s �k\u001d~��f��J\u0012��'�r*��\\�\u001eul��\u0012�1��e���^���C]bd��rK����b��\u0012I�\u0019�b�F:}�ew,#���\u001d��\n���?#'��x�1�\u0017�k\u0013�-\u0016���t\u0005D$\u0007�\u001e��c�/���Z�~��:�m�\rc�~��\u0000غ���Ui���n�ޔ��\n\u0017To\u001c�%`-T\u0011x��_\u00012��\r�2�ĮG���N�)��A��\f0��{\u0017�&�()j�����wR����\\��E�\u0006�ap��h�'�d\u0015\u0018\f\u001aX^���\\�\u000f\u0017\u0019�Z:a��Ĭ�Ux�^��/�QI)Ϻ�e9�\u0016�'\u000b�+)NZ\\^�g�AI�F�\u001d\u0018T�˴�\u001f\u0006!Ӫ�Ck����v+�\r�M�\u001a�]\u0006�(��7�\u0002\rFz�ᬬzfhڭ�.��)�h]�r\u0011$B��h����*�d�?h�\u0001y�~�\n��5�R`5��0�~��;\u0006Z��}\u001e\u0018d��yFԽ\u001b�r��j�\u0005ē�\u001c\u0016\u0010eIu؆�����:�?�����=��yE��I^\u000e�d�i\nB_JD\u0004M4+��3�q��\u000e��P�� �� ;nJ�3]���0/o���\"=���š�1����=���\u0011M���HR���K��$����޺\u001ce/�i-P��\u001d;������`U4���_�*���\u0003��eC��z\u0006\u001e�`�Ii����Gvp�KI;���R+�A#�\fD��XД[��ͪ\u0011Vy2���;\u0003�.��s��DFr|\nS�MB�6UUn-'�Oe�A��Yn� p�\u0003+6�bRd��e�Y\u0015�_��44�J�(R�$��1\u000e=^*%N�V}1�(|�ɍq�;C\u000e����-��\f�\u0016���~ϭZ\u000f�#�\u000e�X>Qan�\u0015���f:�n���f�߃fS��#]�C�\u001e��8#�X�k�Y=\u001a/\u0006����Ƶ�;/�7\u0019׊d#\u0012o\u001fW�IU��Λ?�bm���@}����t�v7Tb�Z�\b��\u0003CXc�B�2�\u0005b\u0012\u0013�\u0000�L���C�݌ǽ�F\u001e*,@\r\n��0%��i�O\r\u0002]���Sǀ��.T���A\u001f�\fX���u���*2�\nY�*����[N�*�\u000f��\u0013\u001c��\n2�PS�ol�\u001d��O\u0018� ᵒLٻ\u0014\u001c��Q�c���Z�)�@�1l\\��\u001a��q\u0002_�����j/�7Y\f�nx\u000b\"e�\u000b\u0005�P�\u0012��\u0016�+1-\u0012����\\>/I\u000eL\u000eq\fH�h\"��se�4NRT�\r�x�Q8�\u0019{C���#c�)��n\u000e����\u001a�Kk�\u001e�c��`��Jl�y/L-Nr���Y\u0006���r}9::�\u0010���A\u001a�\f���X��ɳ�\f�\u0005ό�L�\ttc�r���k\u001f$b��\u0013�(\u001ePY0\u0006�\u0011\u0015�$�p\u001f���HI�����\b�e=\u0007z�hǑ\u0016$\nvO�H�Rm\u0000�d$u�kc\u001dQb\t�\u001c���A\u0006#\u0006���`yl�\r�^\u000f\u0018�\bXW���e��=�>'US�(z74�\u0004:�\u0013:i��\fϲ\u0004\u0011�}H�}4f�5�\u0004��҅�'��$��N.��$*X�Z6q�|JP/:oϪK�\u001a D;>���&�[�\u000f�k\u0005�T�9|\\�\u0014��\u001c�\u0000��uj��O�Z\u0016ig��$6��#Ó\u001fI��� \u0006\\\bKF�`FM\\\u0012\u000f���L����%��=�r���\"��A/�\f���L�\"���>\u001ft.;R4�K�\f|��7^b���\u0012�\u0013y�y��D\u0014�����[�\u0013���\u0013\u0016^�wŻ�\u0004���xj�Ͱ��v9]�^����\u001a�Do�������Qag�\u0013�R\n붆ڲ�\u0017!\u0019˓\u000e\u001di�!�b��^U_T��w��c��\u0006�\u0007H��\u0010Ϩ7�f�q,2�n���`\u000e�b�S�պ�\u0018Qޭ,b�M\u0000��\u00140\u0011F�J�\u001cc��ʠ,J�\u001a?�����0�w���~=\u0010\f �\r���\u0012�L\u001cO�t�Hт���z�z�d��2�\u0012�l8�;\u0016��^\u0001��6ԥ��N�؋���)��\b0�:���Ѣ�ۺ�$*��'s ����� ��\u0014���W\u0006��A0�\f���M\u001e{�)O�BΣ���\u0006��i\b�V\u0013%��f��3���a{\u0019�Fz��\u0007��|_\u0013��p�;\t�C�Q.���]C1�\u0017+h{�2�G���+\u0017\u000f���@\u0010��4�\u0018�\u0016�\u0011�y�\u0006�{��rD���@~9-�S�c�\u001f~e��6�$��\u0014�'��|��\u0014)\u0016\u001dR\u001e��e\u0017W$�\u0017��b\u0018�\u0014��\u0011�?�w�\u0012�\r�ℳ��F�W^XR?�\"���3F�:�<��\u0005?\b�MF.ct����Ђ�nX�$6+t�\u0017�R�\u0002��Z�|Z�G�� �[6j��\u001er'�\u0018�0\u001f0�ͧN);NvL��c����w��P�ĿYЎ�+<���r�\u0015d�n��\u0002\u0001��V���.�A4�\f����dF���\u001d��츐��t\u0004�#/�$�\n�=*e9U|@�r\r��\u0001�\n���Pbg�\"z�^M\u001b[ٮ`2u�Ir�\u0005ӎ�2\t��\u0003[w=\t6{�\u0001ǩDϢ���*��<�YPA�Y\u0007\u001f/�?�\u001fH�\u0005g�@�?U�\\0e����L��2-wqR�\u0006NU\u0014\u0006J�|���Pl��o��\u0014�L�V�>�}=\u0017�\u0010�쟄K\u0012��g���t��ѳ]�\u001e���/F\u0010��\u0013��\u0017�\u000b�c{�9�-�Mч�\u0003�������\u0010c�J�g�5?��\b�T\u001a��_�\u0015\u000e�gI~�H���5�1�W�����\u000b�{\f��M�L\u0013\u0019��\u000e\u000e��`�N�;�%J2��\u0014\b$ւ��æ�ʱ��I&�A1�\fЀ�L��?Ӯ!O���|�Z\u001f[y\u001f���M|X�'�($�4�\u0011'*�c���\u0006h\\\u0003��o��{��aC�t�����.��\u001ds��@﷭f��-[sʼŒRF?˜�0V�\u001eu�^\u001c�A\u0011�6q��iǘB:7Y�1�穩��\b�\u000e��\u0013F�=�B0p�'Rńk�}��i\u0018Lܓ\u001c\u0016uʭZ��rd���5�e�p��V�����<��^�w�\u001em�����Q1�k�M�G¨\f����]�@�O��Cc\r\u000fH�R�%\u0001=P�f\u000e6G\u0010�\t�\u001f7;ֆS\u001b\u0001��N\u0010�Ы.\u001b\u0010K?3�\b�bL����#i/�vbZ��x�M�x_���8���\u0001�?)\u000f���R�A=�\f��L�2��^F� �7kYSY�U\u0004A\r�\u0006��'Y\u0001\u0013���|b�<�\u0005\n\\J�=��1�n����՟��U��\u001a�nD�M���&~����\u00178-���\u000e�V��\u00007�����l4�\u000e�\u001b&�Յ \b,�\u0016৑��Tn~8�1�s\n|c��:4/C��\b�\u000f?�\u00137��˖t�;\u0006\u00057�=������0�ۤ�\u0017\u0017�\u00048����`\u0015�[�&FU�p\u00029�*_\u0019J:B�f�\u000b~Y���\u0010RE�\u001d//f�'+�*\\\u0016��\u0017A`�oHEp�� 7��\u001cä�25�@�!.�N`�lUcg��\u0013+\u0015\u001f�\tC��%w(�ʐ-RK��l�\u0005\\�\\�a\r�5�m8�PȎ�a��C�p6��\u000f��\u000f�\u0012∁�A8�\f���L��(��ц\u000b��:ș�\n�m�E|�'Z���Ak�H{m��\u001e\t��� �K|������\u0015\u0016��N\u00132Ou��k;M��\u0007M\u0000�ȝ���\u0019s\u0000Z8\u0014���F\u0017��0̞\"fs��4\u000f\u001aڷS�q�\u00105�D\u0013��\bã�/��ҨU�H`�\u0019X�˥�;Z��\u0007��)��~TԂ�#�)f�\u0010���\u0004��* x�I\u0013��\r�D]�*\f��sPk�Q�d6\u001bi80�6�P1�E$9��Z����\u001f\\\u0014\u000er��Mҏ?ǭ����2���:׭����\rN�@WFk@�H�)a��\u0005\b��k,mn��vf�7��\u0017}�\u0017�y\u001b�X�1jH�6m1\\�B�\n�\u0006�S\u0011��nԚG�d٤\"\u001a�\u0011�AJ�\r\f��1�\u0000\u000b��k�\u001fV� �ʅ�}\u0001�\u0019\u0007����l���\u0001��+\u0005��\u001d}\\�\u001cܪ�\nzU]�����^\t\u0006P�\u0014&$D���g1�;��},;\u0015r�D4w�v\u0014�S�eC�e!\"��:��wu\u0010��\n\u001bҏ\u0011�\b��B���N��\u0014�4@�X�Y�&����\u001c\b��O��@q��kX��ՙ�\\�S=��e\u0019�NR\u000e�ܿc\u0010L���J�\u00062�t�'�\u0014��z\u00031�@J�\u0007wm!�)m��﩮,�\u0017\u0018繌!Fs�Ѥ_\u0004M��\u0003P�\u000b|ͰЊZ\u001cnF\u001d�\u001a�yJy��1\u0017����/\"P�W��&,��\u0014*\\�ގp��qx�ɠ�I���'m���ڲ���e�9m�ۺg\b\n�$�\u0003$�4��V��r��\u0011�*{H\u0017���B\u0006�\r ��|��r�)�d�\u0013��*�-��\u001a��b\u001c��c9\u000eQ�����Ϝ�L�\u001c��Z�*���b�<\u000f�2v��\tDi�\u000e�n=Ȉ%\u0004�����UĂ�R!�#�{꺷D\u0010V��4�VO�����*\u0010>dv�#BB��m�\u0015�*bdL����٥F\u001enA\u0006^�no�$�\u0007V\u001eo�-\u0005Z��y�\u000b�^q�yє��q�7?0�\u0004\u0001P�P\u000b�\u0012'�]\u0017$�Xq\f�p1�7��%TlQ�\u001b\u0011ϐ��]��RC�I3���M���bTC�3?�|/8�$㻆F\u001e�`\u0016��@Jig��\u0001;������-�\u000f\u001b�Q%1ʸ\r̚�4s��i�4QY�x[\u0006�\u001da�O��Z�Q�'\u0004S��-�\u0000���\u00058�j�%��\u0002\u0000\u000b��W�\u0013�)T�\u001eB-��@wr��j$���R��RmA8Yo�`���\u0011��8��G�R�\u0016��:�-\u001a���E����\u0017�b�fH\\�5���\u0015�)��05=\u0015-_\u000e>\u0002G\u000b\u00137|ܘ�G�0LS���ٙ`3\u0015�\u001f�K�����\u0018��\u0015W\u0007i�9A�\\�du\u000e\u001c\u001b�J(�k��o��&\u0002('\t�\u001b?��\u0017�poU�t�3y\u0017kK�kڋ\u0015ڒ�]!=�\b�{�A4�\r4��\u0001�\u0013j%s���[C�\u0015��Wծ�\u0010\\�\u0005��\u0007z��r<�\u0012��v\u0001�Cu\u00199�:\\\u0016��ϒ�\u0002��C�G׊q�\u0019�\"�\u0012}H� �K\u0013�ٸ�3��M��j���\u000e�_���#�D�\"�O�X�x�\b؀<\u001a��zn*�lQą�}�:�pUQ��!��C\f��`t%*�9�ѵ�\u0019i�W7U���˃9�v�5%ɢ\b��%ИF���,<|�\u0010e�\u0017�&���ts�&^{\u0017Pù����1_[�鉟����B\u0012�\u0002*1\u0005B\u000e-�ٳ�3���\t����r^�H�OA\u0012u��� .J�Z�ha1�.\tМ��zm\u0004\u001dLY�\u0012���S\u001d�8@7�]\u000b�A.�\rH��X��\t�r�a\u001b�\u0003��\u000b�?a�ý�u\u000e���w.�`N���\u0000&\u0018:ў\u000bg1\"g�Y�n\u001b;��\"�\u0005Gb��\f�\fP�=)��\u0000{�+}�21wM�\u0015V/ɀ=\"�\u0010qx�\u0016ٟg��\u0006\u0005\u0003\u0002ŷe�6�\u001f�qO�\u0016\"3H\b�m��I\u000fS�~�y�/\u001e\u0001@\u000f�\u001c9�ٕ\u0011o�y����L���W]��R��\u0018ٓ�[�+F� ��\u000eo�!���C&�\nv#^_X�\u0014��g\u0003�0����\b ��\u001e2\u0012�:7K�]A�\u0013jb}�\u0019������\u0004/;x�\u0004\u0015q�\u0000�_���\u001f��\u0001��l|��zR\u001f\u001f���n�5Y\u000b�6\u001d�A\u0001�X\u0005i��\u000b�0�\u000f�r�>���`)K\u0011vL\u001c��A<�\r\\��M\u001c\u0007ȭ{(\u001c�^t\u0005\u0003m]��'��1�lP\u001b�|Z\f\u001c�@�\u0014j��\u0010\u0015b���\\�>5�#A��G��\u0015���Tݚ8�g�59�BXƢ}� 4�\u0015���F&�J\u000b�1\u0010��\u0007䰭=�\u0011\u0004\u0012�q\u0010�&`�Egٖ�3D\\3�@�n+���b�!\n�ܦ@h�fO��\u001d�]U���\"�&�|��U�:�8\u0013�\u001ab]������Q�ٻY�����M�\u0016<\u0014`D��\u0017W�-��)��8�\u0000�\u0014�[�\u001f�kzш�V6�\\h\u0007�+��>L�_��\u000e�D�T\n��_�\u0002��\f��l:�dt��4�m1�-�1���\u0010o�\u0007��z\u0017.\u001b�g�_���J�0�ƅ#�w����}n=�Y.>?�H��>�ѣA/�\rp��MW\u0017\u0019���f�j\u001e���8\u001a��E�7o�}\u001f'Ȥd+ῼ�}�\u0011����T\u0011�V+_�~�4���2@��\u0011�\u0003R��\b��\u0018DnJo�RBp�!�7U�'� u�zx�]B+��C��^ۜx\u001a��mv\"Af�\u0007��9\u000b\u0018j���e\f�g~sK&�ӎ/uA�e_v\u001a��~$NMT�\u001bԂx�i�ʫ��H�\\|��\u000e�c��-c���-�\b���}@���.�\\�\u0005\u0007��reb��)���Ez\u00198'sð�-�W\u0000^�w�(�8s\u000eO!\u0003'�x�`�\\'���Rl{]\n�a�]\"� \u0017G��X\u0006K\u0011�~\u001a?�B�x�K�kN=��\u001c3��W�8c\u001d+�Ƹ.\u001b�A)�\r���M*�\u0012_C\rׂ����c5V��-9Z\\z�6\n�\u0006�\t=�*��� o�<7|>�Ák�1�`B��Y�\u0019x�Q#�«��I�\u001a܊P\u0016f\u0006�wN�!��(0�Z\u0001��M?�/\f�4�}ڳ�\u001e�\u0012\rU!\f�^`���\u0003z�:����Z�\u001a9\"���yG�s%0\u00108Bgj��cI�g��Z�9�M�2K�$;.�*=\u001f|�Ī���D�������B�_i�g���cWlY�nϜ\u0004�h\\�̌�\u0012�+̌S��)0\fu����_�b�u(c����XF�T�k���~���T�a\u0015��)M�n\rc(�x\u0006l ���CU��\u0019H�RKy�w�\u0004��.\r�Ӿ]�i�Y��\u0000ڼ�\"gӁ���#\u001e�~��\u0017�\n�,\u0012ѹѣq��ji\b�A(�\r���L�L_&��\u0017l�t}Ix�/��\u00134�̪�!\u0005A\u0007+�v?vԹg��o8\u0016�\u0010/��\u001c-�\u001f\bDؙ��C�fU\u001ajKn���$�[N\r\u0002�w7�L;�;\u001aҵըI�s\u0017���aZ\u0007���ˏ�\u0005(f^��\u0013\u0001�:f�|�ǚLQZ��b�\u0019g���VP#sŔ\u0000̠]\rJ�'�\f���k�\u0002J�\u0003l1�����F�4���UJ�\u0016k�_��\u0007X�x]�ꊲ���M\u001a9��\u0006�8��{ ��E\\��&r������^�L8.T&��L���o#a+\b\u0014��\u001f�0X\u0004�9�\\�S\\dl`�9�Q�\u0002��\u0018��‚S�j�\u0016>\u0011Q\t�n��I�5���J]�6�A*�\r���L��y�ՠ��:��}I��U�D��hN���F\u0017��G�<��㳼U\u0013g�kJR'���k�r�\u0012�p�P�L�_φ��>\u0005\f�O�O���M��Sx/<Ӟ���2\u0014i�\u001f�p��Zp\u0000�!\u0019�d\u0019��\u001aUşR[�n�O�#�j�X��`�\u0010E�6���\u0004�����d�\u0005�ӏQC��y\u000fN�?ܫm�2QC\\�}89��k1��5�{\t��c\\�\f�,%˝A��vM�:��\u0006�LKO�n����)�?�Ґ\u001d�G�\u0012�מ��\u0018�Փݴ�p�z�.;n��_L��\u0019�};���E��go�^Vѓ%\u000f���p#,\r���_�b�R�Ϸ�E}XG^\u0015`5�M\u001dHl�a���kC\u0015�狸]���+2�!L�\u0006&�\u0003�!�K=�Q!�\u001e��p��f�\u001f��xn5z��h\u0004D���_5�A3�\r�����h\u0001g���\u0006�WFB\u0004\u0016����5�\"SD�N�<�i��[Pґ�U\rd�G*\u0012fV΁�\u001b�{d���x<�6�e�\u0017�wb��Qc�\u0007Z���6X\u0003xg{G����׵=�2�́��\u0004����4\u0012\u0012���\u0005�(:y���z�P�R�P��u(�7�\u0011\u0001��\u0005�C�>�z� wR?6\u0005\u000b�ư�;Ɨ�\u0007\u0002.<{�1�\u0013���h\u0018�>6�'�T�\n�\n�M��n�83z�������wG'�YЖx��i`_��ܼ�����~#\r>�݁������~K\"A���XG�\u0011�\u0014@�f-�����h�a�\u0005�\u0003g,h�\u0013���j�,iH+�J6�\u0012��6m�\f�Wϙb��\u000e�\u0007�A?�\u000e\u0010���\u001d�=�)7�����>�C���X��\u00028h\u0014��+��tbVɀh�S�_Aʊ\u000e���L\u0004\t��/�B���s�+%�r(�E�Y1�,v\u0002�)|z����c���\u001eq�^cڑ�\u001a��=�2T@*���QK4��9X#J,J8^Xk��T\u0005\u0010Q��\u0012I�RIly�\f��⣓g#yj:�[��6��y\u0004M�\u0006��\u0017(����A\u0002'º�\\�\"0�\u0006\"<9��Ѳ/�\u0006�i���9�AHV\u001c��z��.hU��dw}h\u0015\u0002���)�\u0010�\u0007���+E8\u000e[ω)�5�NG�t;��#u�\u0019>�\u001e\u0019�e�\f˳ީ��8���\\���\"\f\u000e�\u0000F���v��\u0011��\"����9|�n;=5�d��V~�\u0012��\u000b�A6�\u000e$���#A��+\f\u00078�Ky���\u0016ڴ���<\u000f-��:�Vo�y��<�bz�\u001e���*�c;w}��_9�\u0001�\u00052�m��\u0018�g\u001a�\u0014\u0003\r�&�\b\u001d��\u000f?'~�ˌЊ�\u0000�y~��\u0004\u0019\u0017\u0012[�G\u0015��>BW��H��f�x�\u0012_�5KTgn�E�E�\u0005�4�y��\n�����2�-��D�Q7>\u00148������ۮ��\u001d\u001c�Un3�?��_Лq>F)\u0013E�F��ǘ��\u0018��o��V\"N��N�:2���ǐ\u0013\u001e6�5q�eQI8�\u001f��\u0007�F�qW��܌\u0018\u0018N�U\f�ju;��\t�� ��\b�~@�<����\u001a\u0002h�������v�\u000b��~kc\u0012$�F;��F�ɜ�Bok��\u000f�AD�\u000e8��]�Ir7�w.F���3�e�_�F�\u000e�H�i�\u001a�\b\f�(\f�)1\u001bJX���u���$\u0000���tn�B\n\u0016Sk�\u001b\u0006\u0011N\rN�ô�Q�,\u0015�E��w�\u0004�C�pZ�w�\u000fV�\u0001�zٟ��1R�ts�D\u0002�\u0018��\u001f�\u000b\u0003�\bs��i\u0004=f����\r�5o�����[~�֕��!�ގ�\u000f�\u0007\u0001��>k�.���z\\��\u0007�Dz\u001f\u0004u�⇳)?j4ޤ\u001c��S+\u0005�Ty���彉�\u0003š���IX����;i�sA�4�\u0000k㢴~E����'�/҅�p�\u0001�@\u000f� \"2m%�\u000bw�g�`��gЛ�\u000f!�#\u00130�ּ��c\u001dQ�ݐ��=�*�,�\u001d�-���n��T�\u001d�\u000e6!(�ᴼ����\u0015�u�A1�\u000eL���d94�4\u0015z�\b��\u0001��\t\n��۬n\r�q�\\\u001e.�W\b\u0015\u0002��t�4?�<\b�7}�����E��n��܋�r\u001a\u001b�X�5��l\u001b�A�`������7my�J\fr^�\tW>>��1wJ��?t�6���zm�\n�V��#,;�k���Au_�^\u000b2 ��\u0019K��]=�\u0012@ \"�cH�)����\u0016\u0019�J\u0000Zg{�m�>e� c(�N\f���I+y%\u0013v�\u000f�f��S���\u0012�x�\u001d\u0018��,�(�f��F��\u0012{�]0?��7'ܬE ���\u0014b}7q�\f�b����e\\��g�g���S$\u000f\r�zN\n\u0002t�**h�T��:�!\u000e\u0005Gί@ڇ�\u0010�\u0010\u000e�ei�`*��r@�A*�\u000e`����Y��\u000b~�G�%~Q�k@��\u0003��\u000fN_�\r\rvG��H\\�� ��y\u0016k%��tn��\u0016��[V����\b�Z&\\\u0005�\u0004�\u0017�\u0017F����\u001d�&o�,b�R�l��f���2\u0017kb�Dj�r���#y���x��˧\b��\u000e�Wz.k�t2�E0F�Y\u0006��\u001e�\u0018>�ɣS\fH�L�\u0011���E�����6����=��ZEޥݢY\u0018�3;\u001b'��\u0005w�5Y�E��c�Ox������Zi@:�Ȉ����\t��nr��:4��7�\u001e(��u x�\u001b(:l�� �_�Wy\t�})'\u00182G�U�Ӿ\u000f;��&��\u0016\u0006���t�[�s�>�!�) �\u001f�c��\u001c�����A+�\u000et���m-\u0011�]�>�Rp��f`\u0010���_�P�7Xc*�G�jKp\u001b+�Z2?f\r�\u0017���\u001aS��S\u0007��JC,ݖ�=\u0006Y��W<�}\\�\u001e\u0010����\u0001,�0)\"��~�5�\u001f�~\u0016꿱5@\u0019?n��!>'� �C❨\u0014\u001b�뮴uv��Ux\"�ܱ`e����}s0|7��\u0010�q���;C\u001f�\u001a�՗�\u0013�T�#[\u00020�5�Zďl�\"\u0006\u0000�jAr\u0013g\u0010�`\\�,��eQ\u0003���?�`��\u001f��C�\u001e�T4z�$����b9O-M���W��!1�\u0019=GCba���WM�\r�wU����)X7U�sz�y��**I���v��\u0001��|r�3��\u0012�wi(�K�U�%�q\t>}\\\u0001��q�f�/@�A/�\u000e���M�… 0$�\u0017e�/�cE\u0001|�j�!��H\u0004}\u00030\r�5�b�y\u000f�\u0013��{��j�!,e���;���<% �\u0016�\u001at�|���6� %d\u0011|�����Y�:z�\f�/�c�c������RH\u0001�ެ����J�P̀s����ALҥL�\u001bn�\u001c;��\u0016FFN6\u0007uc�\u0015^c;-��Ǟz��\u0002�Ϥ�\u0012�ޞE\u0002�\u000eC�0���1�B�\r9��%\"�\r\u001e$=3\u001a�c���4��w�3סӫ†��]c�\"*ƣ�sg\\O�ׄa :��c���F\u0015k�hk��u����A�]�j\u0000��r��\u0014\rsgv������_i�������H�K��Y.j�oP�G5��A'�\u000e���MZ\nh�r镌^�JE�\nL}ǪЬhƕ��z>�\u001cb���\"�\u0011/q�q��R+��\u000e���Px�beH\"��\t9�+݌�\u0006{��W��/\u0013�\tu�u�!4�N\u001dAIփ���*���O\u000b�G��\u000e�f�\tq\u0002��'� R��c�6�:{�%F��/�8�\u0016]_�pž�j�\u0010Y���<\"R�����#(m���\u0004�@��=.]�I<�xb,eh��Z\u0018�\u0005F�3_�A�Ք\fRDtw%�31�!�����[�8��,��}L�\u0014U})2���n<\u001c�a�\u000e���\u001d��tN#�\u0016Q�}�\u0016�%���S� Կ�x�#���Dg\u0016�d\u001eI�_A�ޏ�6�A*�\u000eĀ�M'��ah�瀉��\u0010�D�^l\u0015>��[�'��\u00044�75��d������tE q*Z���R�*\u001f*&>�����?_\u0017-M�G]x��m��q�@zrLJ-\u0002λ�4�珖w�?*��ݓ\n�������w\u0012$\u0011�n\u0007'C\u000b\u000bqRx/�,�\u001e��F�\u0006���o\u0004[Nj�0/�$*\u0014\u0011���\u001f��_�ȉ�-�y��(�:�W�\u0013�\u0012\u0015�`L�!�\u000b\u0003����4�Cu�ٵ���v�>�{d�4\u0007m\u001cd�j��׫\\\u001f\u0017��\u000br,3��/�dn{�4G�D����\u000e39��\u0002'ض��\u00175�\b��?��2����Z�[\u0012���2\u000f��\u0017\u0000�\"���x#{ӣA(�\u000e؀�L�z��G�H_\u0017�!���4nPp�u\"��C1\u001a��ڻԮ\u001ae�̼�����|�V?8i�V�#\u000b�̹Te�͞0�s�†�ݾ\u0006QW��.<\u0015<���Yҿ�����V�\u0000�ݍKk\u001e�\u001c�eM9v\u0005|�f\u0013��\u001d��Y���Ί\u0019\nE���ߝ�d��ә�~@]��\u00183!\u0014\n$ɬrջ1�C���A|�s\u0006�\"C+���zk3#D�O��\u000f\u0015S\u0013��g7H���6\u0002\u0018��?��>���U�L����v��v\u001fA\u001dT\u001e*��F�� \u0007��D??'���D`�>�)§��j�\u000e���\u0013Q\fR4��y�ҍV����X?P�\u0003���\u0011��kD%��A6�\u000e��L�6\u0014��J����H\u0012G\u0012z}�k\u0005v9�U\u001e�׎\u0015��\u0017\u0015�ȶfW�\u0018�jo�q�]�|�U�<���v:�O󍓝%ixH��<�P5���b�\u0014k~9�&r7�\\>|���`\t\u0019y�9�Va\u0014\u0007�d�z\u0002��!�\u0016�Ө#��؛5�\u0001<\u001cM�X��ڟ>��8\u0000p�\u0011w(W\u001d!o\u0002�wox�R\u0017\u0017Q'���8n.�$�\u000e:Oz�j�e���7\u0019�'��[ba���*\u0003�wu��� �>���\r��2U�\u001d���\u0011dP��\u000b������oZ�n�}W�3�F��\u0003����_N����ĐBC4\t���>\u0007y;���\u0019�\\����6G�J���y�\u0002��\u0019��\\��\u0013�\u00003�A8�\u000f\u0000��L��շ�'�P[TpV{f�F!#?|\u001b\u0017���\u0017J�\b0��D�q\"�P�w>l�\u0004��\u0017�ºB\u0011�d\u0012\u0000k6^s�\n\u0004�Dl�\u00129\u0003�[o\u001c\u001dJ�qf�w\u0004cf/��i�rz�x$M���2Z�w���cX\u001a�߅\u0011�f=ٿ�\u001b\u000e�+�V�<�[��UW�\u0017k�\u001b\"����8\u0012�\u0017q\u000f\u0003\u0010��t���d��v\\�ɢ���;�ӏ\u0012��:R��ޱr��\u0012���Ẇ�\u0017�!~\u0007'�\u0003�h\u0013�pw��ͩ�}S���]��ϋ\u0014���0����zʵ�%�y��\u001d*���\u000f��\r�qܶ��9��D�p�3UЬRѽ��U������m\u001c\b�Fd�v\u0017�l�!���_[3�$|��]\\�B#�\u000f\u0014��|�Jʉ�\u001f��\\L�.�A'��0�V>؊�\u0001����A�e!�._\u000e�m\u0006Y��T\u0004\r6~p8�M\u001e�����=��b�^�����\u0006fK�ѓBK\n�\u0014�ly�(��XMV��ٳ\u000f1��x\u001c\u001c�>��\u0001=��`\u0019�w�_�dZ>azQSm�B���{]��is\u0011�tk�\\0<\u0003\u0014�_@�$-��H��ndl\u0006��1î��<}���L+�b�\u0011S�X�@W��qv#$K��(2GP\"pS�dl��-\noi{����\u0015��\u000e�\u001d�\\���d�8�5�9T:L�\u0002>��#��s|\u0016*�\u0013]cH+Ѩ�\u0017;\u0015y\u001b�X�6\u0003���0~\u0010�\u0003B@\u00047�H�ĺ`)�`���hc�޲\u001e��������%��˹����w�ՙ������5م�����|�\u0011��\t8�\n\f\u0019vk��\u0007�U3�\u0018<��H\b�]���V��#����|���\u0019l�5)�3\u0014�N���v��\u001b����\f����,�}N�0�0S\u0011%����F\u0002h�?�oM4B&�uN��s�\u0013�(����T�z��\"a\u0017\u0019���v�U�\u0011���\u0011�U�t|)WPܳ�^Ye�;Y��9���\f2�f���$˶\u0001o\u0017[U�\u0016*P �B����#-\u000fQC�Z�Ǒ�@\u000b���o���?�A2�\u000f(���h�U��\u0006��o\u0001�\u0016Q*�܄5�W!W\u000fOQ��7p�::�B~.�^��C�M��~�f���-Ʃ�\u0005\u0005��9�3;��p��$�>�\u0002�ŞC�\n\u0016�D�r��\u001b5\u001a��\u0019�u\u0018���7\u0001j�Fw\f��Fh\u0006\u0004����\r&\u001b#\u00172^��%� \u001e�K\\x�T^�\u00184�QN4#�(�ᦠ�����^��hTz�r�\u000f�]Qa*'�o���a��j�,\u0006,\u0010?����^}\u0014T�K��qٱ\u001er\u0005%1�\u000foo�5(\"��)u����Q����kLS�\u000e�E��`\u0018�\"6}g\u000f�����O��t���P�^|��\u0014++���\u000b�\u0018��\u0019�\u0001��A�u4����\u000e�/\u0011MT>�␣A/�\u000f<��L�]<.�z�/=���I0L�*G�\bRj�>A���&L��\u0005?�36+ꡌ�\u001fv���>�\u0017F��ȎUR���Ե�\u001aA\u0004��\u0000�9i�\u0016�5�5~B��{\n$�%��\u0001���^�kݢ�yr��\u001c]��097i��p�&\"�;=�\u0003\u000f\u0001*\u0016G�\r\u001a��!�3�\u0019K�ݝ�v\u0013)�tL\u001fg\u0017̧�^\u0012[B�{`��A=7\u0011�!�\u0001�FW�N��d��n˧m�\u0014�AH\u0005~�A�<�g�\t�}�f@i\u0007 \u0019@xr��[;X��O\u0018��ք�Rs1���Kac��\u0018XB\u000e����v#�\u00102=\n�K\u0005��\u0019~Z�9l%�\u0010^Z�p\u001b���\u0018R�^��D��L\u0017��-�\u0014�W��A/�\u000fP��L�n�\u001fk�g\"V�ݓ��tt+�ؚ�㐘O�p3�an�`�(�6;.N�º���r�R�\u0015\u001by\u001d\u0004\u0014��I\u0019.�늗�q��VQ\u001f�_\u0014<ı/\u0000Q��%�\u001bp\u001c\u0006�䵮$�I\"E���\u001f��q��\u0012�Ӟ��[J 2�/\u001a�7\r}=�\u0019_Uoh�b\u001f����HƋ��u;PX�S\u000eq���8�׵�\bo]�,\u0011�\f� ��\u0015��3���Dh��\u0014��xd%����ܥ�d�<5d�\u0016�^^>z���\b��z��M�\\��\f1a�\u001a�+�Ҁe��m�\u001e]r�l��X�B�$�5�綹�w�&r�LN�0�\\]NaNzDŽD���A0�O�\u000b~�]�\f�\n,���A6�\u000fd��Mvq�\u0001\u0005��'9\u0011&�\u0004돶O#p��G��K\u001a€��=��=�\\��b�XG\u0017\u0015�\u0016m��}�\u0004��\u0011z\u0000�n�W*aK6ٷ_.���$�>��'��P�\u001aJ|<>^8dJdM��h�ۃ�9\u0014��^��\u000f�Ä޾l�\r2U�ݷ�\u001f \f3&��)䔔�<�~�ܛ�\u0002����l�\u001ep/w�E�Q[��^sM�\u001b{\u000e�;꣹T�J�\u0016�4�p��} u�[Y1��%�|�c�g�p��d���̎�N21\t��+p�3��A�(�ֈ/�u�;�\u001b��<ˢ�\u0012N\u0004�\\#��9ݘ<*�i1U\u0002a\u001b\u001f�t��,\u001f��LV�w�otx'D3�\u000f\u0002Lt�I�ӵYP�S'��\u0016N�A,�\u000fx��L�\u001b)�/�V\t�@Zz}��\u0010��]\u000eO��r\"�\u0015T!Ym�ٿ`H���_p�OͲ[�\u0018�\u0012��v�]ᄬ�I+b�\\�.'c�.��ӈLT1cC���JX\f�QC�V��:����\u001c_�ݻQ>\u001f\u001c��})`����\u001d\tl<��$\u001c�ٗp�YB���p3�'��\u001a�\u0004�Aٝ~����#��Ϝi!P釅��y�{��os�x\u000f��\u0017�Hw�/�5���\u0012Ǎ�/�0���{�].�Y$!��&�a�KV�\u0015weA��n��\u0012�A�\n���I\u0010�MLX�\\�>F\"._���b��X\nP\\%��^����\u001d�p�T�<�slr���M�\u00045M�JB����A$�\u000f���L�G&\u000f\u0002}�2��t�\rzq��v!�aId�\b��t\u0004\"�\u0004\u001c�\"\u0018r��\u0015� \u001d��3w�����]�\u000f��n\u001b�/�q;o�{2�f��\u0004�&�m*3�Ҟ\u0011<��L�a�m�\u0013�ˮh�,���ά��\u0001\t场ݓ7�\u0013�JR�]\"�.�q����\u001e\u0000\u0005J��э\u0002�N\u0000V�m��n��=\u001d3fao�c��I+�9rM�5�z��,.�\u0018ݶ^]��QR��f��\u00178�\u0012�^_�Jv\u0012O%��'��Y�#܅q��#p/\u000f\u0011\b\u001b\u0001M\u0004hw��׮$�(k�wfa\u001ea(�\u001d�\r+c\u0006\t\u001d�\u000f��_�ԝ*I��!�\u000e��q9��Kn���\u0004r�'&�A(�\u000f���L��x{�R\u0004��d̜&9�d�-�r6�P!�d\u0018���\u0007�և�0_�נ\u0005�\f������J� ���lA�\\\u0014`\u0007/��)(vY� \u0017Pʃ��O�$Qc�q`vYD\u0005�\t�a\\\u0014��e��bg��&�[Ap�q.�nk��[�\u0017X�\u0016�8Q�p�%����OpW\u0004�u��2�8�@�\u001aKB�S\u0007d+����_7ӤH�}64(\\�QQZ��{�l��㿫1,\u0001��\r+\u001cn\u001bJ�M\u001e�m%��\u0018=�\f�r���[?�\u0015AA�\u0004�+\u001b'O0(����\u0000�'\u001cT�\u0000{Ҷ(�\u0017�~\b\u000f���7t����\u0001;\u0005��\u0012\u0011k2�$�&��B�Ty(<�s[A���A&�\u000f���M{ik�Ճ\u0017\u0006��~��\f^\t�?\u0002/]8\r4\u0014�\u000e\\$�r�3����͖��VGXL�\u0018�:�1����-\u0003��̸M\u0018��r�I<2x�\u0014\u001f3K+�LL��D�\u0011n\b\u0018�\u0005K\u0010�\u0015���:T�Tߝ~lĢ\u0007���<\u001fC�����L/�|И�\u0000��E\u0011Z[��{�\u000e\bz\u000fF}�Z\u0003�iK�9�\u001eɱ5���\n;\u0016�j�6�콰�oo�f�!����F�\u0004�Sm8�4֕�vz�[q3�x.��u�w�\u0004�\r-Aݠ�u�T'�\n�c&V������\u00012��`��k\u0017+�\r\u0017�\u0018�h�Q����\u001eF�l\t\u0015�Nm�� 7�|�}L�X�[�`�5U���A1�\u000fȀ�I��\u0001odèX\t��?K��X��O���iO(lT�\u001f�}!^��ZÛ'��H�i�\b�R�\u0018�\u001b\u0000�\u000b�MK~���+r\\�6'�K;\u0007�-�&�����\t“��_Um@�/��V�B�p��AȚ�`��7��w^0��P�\u0018�*H�Hl�e�c\nX\u0007��f��\u0001$\u000f)�/ �:���͌�4\u0011����$\u0005 �2ڋ$�Y�\u0015\u0017{��_�\u0003E��y�h@\r\u001c�Na�קQ��{�\u00065��F�\u001fy�\u0011�k\u001b\u0000���\u001d?(�A:\u0007S&\u000f�#&\u0017O��Y6�\u001a\"+\bT�r���!V�����FX���\u000e$��G'\u0019)�\t��jF�ٝ!�t��*���y�\"��aTݹ��A=�\u000f܀�L���O��\u000f�\t1��Vch/\u000f�?��F�7\u000e��`\u000e�a�\u0016�\r�E���w��+\u0014�«\u001e��Z���\u0005��&�*���aJ�Q7ν��vq3\u0006\u001e:��vދ\u0000iX�KJ�\u001b�V��.DS���\f��NH�3�z�`�/8�b���=�-Y��>�d`�}\u0018XF֛�C���l�\u001bP�@K�r\"�8�f�ה�#\n\u000bU�%G�X�!C\u0006�^\u001e.\u0006�ƹ���ڝL�u���y|Oi��\u0004un�\u001c:�P��v\t�.�\rp�!Ҫ�����0�C@��\u001c��/�XV��DgpkYF�B�ko6�U��հ&��M0�='\"u�(t8�q�E��enap���Ӊ\u0001\u00015lE����sv^|3$��d�R�A8�\u000f���M\u001f�E\u0014�����ﹲ�q\u0002�S�\"\rḭ�ww�N\u0017O��Fo`�O��ۚ\u0004��&��G\ftΒp��8A��\u0011 �.�\u0007r������f,@���x\u0005�U��\u0012h3t\u001d\u00173<����\n�x@��d�O�z5��i�Byi*�WS{�}|��u�My�J�@3��\brS���\u0013K��[���\u00162\u0013��C�R\u0003R�q6����)G&em��$_126¹&�6�Q\\\u0003\u001f\u00078�;t[��D������Ǐ��.@�\u0019��>�\u000b��Y�(-�i\u000b9�3�(%\"ٯ�f��G�\u000b�~�$DB% �\u001e��p�&}�\u001ea\u0005��%�c\"\u0004�a�I\\�h\u000f���v\u001b��r�]Y���i�Ҵ9\u0017��Xj���\u0003\u0012'�+;�=n�cc�+G�a�Y���X�RB�ny�\u0015\u0012Lp�|�\u001ds���;���`\u0006漐\u0013�M�^[�*�μ��\u0019��E�\u0014�\u0017��B\u0018l������_\f\u0013A\u0006�����\n���\n�0�)�\u0012��x*�B����݊�@�\u0010��Dq\u0001�[����b�1�l�\n춦>��oYh��\u001a\u0001%n\u001d�Y��4\"���\u0010mB\u0016��'\u0000�\rZ�׫����~ \u00011\u000e\n�s�'�[�ÚZ��A&�\u0010���L�\u000b݄A�\\���\u000fAT]���\u0015�;&\u0004�d�Bm���!r��fg�[t#\u0006���R�P�8�7u�\fzJ8B����\u0011^F\u001b��.0P��\u0007�y��7IdNn������6]v\u000f��Zk�Č\"�����}�4\u001aE�\u0005u��(n�#\u0003V��l�\u001cN�\r�W\u0005�\u0011�+����iI���\tj\u0003�p�\u0010H�x�\u0013k�4\u001f=:C^\n�>��?�o���\u0007bf��1�1�\u00008�\u0015�\u0011\u001b��,T��C0\u0005�lP�t��\u0016s�U$��\u0003��\u0017\u0006v�Mr��T%�C���Vf\u0013����P\u001ce\u0018�$Ry�\u001aj-#r�C(��c\u0007\u0011�t'd\u001bO��\u0016��wD�d�A+�\u0010����e�D���$ׯO{�\u0014�� {��,Udw>�\u0017���NI�\u001f`DY\u000b+\"'>�'�\nY�pUD�Wk�]�3\u001c�T~X{��h�•@m\u0019ź5f��tά��s_�t�x\u0018�_�\u000b$\u00121\u0017��2�l\f?d���࿎�%\u0014x\b��̨]r5�{�����m����=�̶�v�dz�z�i\u0004��\\�b��5��>\u0003Zu� \u0007��b�>�h����fU��\u0018�(C��nL\r��\u0003A�y\u000e�<��W�2��ih�\u0017!\u0019�xJ7n\u0014uG\u0007iv��K�JF�U�\u001b\u001c���>z{����w��v��7�w\u0004�l�Q'$�˂?\u0010�R�\b.L������@�*.JO�Q�\u000f�.i\u0019G�\u001c\u000brkbb��>�)�Uֈ8\u0006�?���&\u0016\u000e�ؖm�\"G��h��Q�\u0007�A?�\u0010����e��/\u0017�p��M�q\u0013�~E�g\u0012�s��*�ܬJm�\n�Q'{��N�!�\tL+���wd�\u0019~ֱ�Z22���^5�\u0011��6ܸH�H\u0011qh~)M;������>\u0001$\"h��=p�t��B�~3�������\u0003\u0013�\u000e\u0014mE���\u0002[\u001e7�\u001d��cE��\u0019�A/\u001cDT.\u0015!�\"�\u0001=������:����]��;v�!8\u000f|g�\u0014�%GA�\"�hRY\b�d\u0019��\u0005��������鳤�������\u0004�C��H=[9\u0018� z\u0019Fu1W>�F��8�B�.\u0017\u001b�+�3�x�<\r���'3��s��_��HMW��h#|�Ȝ�� g�\u0016��k��)\u0010\rXƈ�I+~��di'\u0004Ʋ슨�?���I\u0007�A@�\u0010��/Z5�6�n�~)���\u0018�F�@�\u001c���\\�\u0012(��\u001a�\u001b���щ��>��p��]6i胥�`�\rt1��%\u0011\u001a�%�B�-:\u000b8�Cv�G� \u0004Պ1�tG\u0006\u001b\u0001M�h�4w�<\u001a\u0001�\u00062�\u0004o;1k�\u001d\u001c/E��b�\"��Q!��.��J�p=�;��M�ȉ \u0013W�����ha�\u001f�p0�\u0013��?-����]~\u0005N4\u0010��rjg��A�\u001c'�����L#l\u001e��\\�\u0000\u0007˩��M\u001b\\��qx�Ю��㿘矝$9�T\rڼ:K*֒ב������\u0010�����\u000f�\fw��\u0016�h�\r�1���t�o=%!�\u0011ѭ�|����mS�\u0007���A<�\u0011\b��1��X��0�\u000b�z_0\u0017��\\�\u0000���ű\u001e�3'\f�\u0014�M��m�>��vg�,H7�0X��b\u001b��\u0007\u000b�4\u0001ޣ^Xw2ʟ^\nf\u0004\u001e�՚%��Al�\u0002��\u000f��P�\u001dl�֦����\u0014U(�C/$�S��������\u000b?��\r�?a�=b��\tS\u0002\\�E�\u0014p���\u0004�e��#\u0017n�;M���c�X\u0017�ki`~�$��t�W���4dC���[t�υ���ۜ_9��b�\u0003�8X��7��؄#��+�y�N#d�ۇ��,�F���H��\r$e��\\\u001b�J�c9:\u000b�_!(='��\u0004G)x�B<���h����Dy`��QW!���L�Ō\u0015�\u0005\u0006\u00118U�OoE\u0006��Z���\u001f9�c4v�A4�\u0011\u001c��1��=\u001b/��@�-x��a���\u0000\u000fn����Xi�88���\u001e��\u0014��\u0004�\\�&E�\u00193WU��\u0010���{\u0018:�c\u0015�I��\\>��6z�\u0018�oc�dux��\u001c�ɓ��ހ�ML~\u000b!\u0001Y]�x\u0001w�!�Dfw\bP\u000f���fY\u001cMr{�L�]��N�]���4\u0001T�'[#7f�'�\rt�\u000b#\u0003�o�]1!�-�.R<\u001b�h�\f��,\u0006�eY����\u0005{p=��d9����:��x�S�M��\\\u000f�ǽ���~\u0012�:�b��ƚ�fc\t�:��[��3\f;����\u0006\u000b\u001bH�,\u000f��������q�S��E;i�[��\u0006CO'\"!Mf�\u001b�\u0006�^�\u0005/�\u0010ނb9�h�Vx3�WA��A��\u00110����tk��\u0006Ǻ�ь;�\u001b,B\\�]�\u001fo�EQ\u001ac�;� \u0016Kr��\u0000���'k�?k���\"\u0003���TF�D/\u001elЦgC�A+z�E�����m�\u0004�D���1�����L_7��;i�y{\u0017Kp��u\u0017e�\u0005_���\u001b�Q�V�-��ȩwX��xl��0b���_p\u00103��ǧ%\u001an�\u000f�!J1��WD^�}���z�\bP����Q���;�-��]o�Ɲ\u0012�F�C�1\u0011\u0019)��\u0017��$`���Bz1�T\u0010(e_�1�K��E�MA�����T\b%ʎc�&Ŕ\u001bL��8!�z\b��n���\f��L_�U\u0015�(i ���\u00045n[���䴁O����9����\u0019�èZ��U&u�=�%]\u000fl\u0000�\u0011 �1\u0017\tB\u0013�m�\u001808a��\u0007=\u000e\r�\u000e5�c~((\n����ͣR�+���Q�T���|0�'9}��H��xTa�\u0014���>����\u0019�S�~cK�(���J���\u0000դqb���jz�zm7�$.V�l�Z�YyG�A!�\u0011D��0�o�C\u0010�ނ\u0003,�C'�M�Gn\u0003�q\u0018v�S.��e=��x�n.I��@�\\�Ľ�׍>!\u000f\u0006�D��\u0019�_�^�\u001fF�ThŒ�)�\f�!O�JE�Mj\u0010�b1\u000fa�I\u001a\b���⾏h����3s^w��%��@�F\u001b_��\u001f�ᮓ��ݰABDz*7Q�9\u000b�j�+��\u0018�ᔡ�V�D(Ճ\u0012#\t�\u0013�\f\u0016��!\u0013�\u0011�\u0014���-�5�?{0�\f���A���TC����礍V���(b�V\u0019����񤺠-\u001d\u0000TN��D��?:���~'2{�\u0000��{b��KC�V��Du\u001d�\"\u0014u�D�ƌ��q\u001d�!b>\u000e=�A.�\u0011X��L��'�+�A=�\u0010e؟��\u00059\u0006~�\u0010߭E$B�y�f������\u0007z���\u0011\u001f\u000e$%{`��V���\u0016c�OZXp�SA�LN耮�\u0014�����џrl�\u0000Fd\u0018�8\u001dBh�\u0012��d�k\u0014��J\u001c�I�\"4v���\u0004i�f}!v�\u0017\u0011\u0000��2\u001b��VN_:�g\u0000\u0002Q�#���)p)<<Ξ\u001f��A'�\u0011l��L����$B{�3\u0006q��~<��B�hW\u0018|k�U�\n�19\n��խ�Gh'1��,'D\u0010{��7r\n�\u001a�j�f��qմ9�w\u0017����-A��\f��&�\u0019\u000b�\u0017G\u001c�l�2Q�\u0013t/U������\u0006 j1���\u000e�$�nh\\Wkyî#���M�ܙ ��fZ1�=����\u001d9�\\�\u0013�̎f:��\u001b�r�����A�\b{�\u0017[m��?���hЕPb�\\�1\u0010��-�)�9�۱J��\u0014B��O\u0004���ә�<$`I\u0014?�;���aQH�Sr��~�\u0019p+N0/u�\u0004x\\��J�o;=���@$\u0002�l:J�S��;�;\u0006\u001a�~ߣ�\u0000\\I\u000b�,�A*�\u0011����ӟT\u001d��\u0007��\\�D���Z�|\t1��T��c#N�O+�\u000fG��GC\u0006׹��L�en1�.�5�P9��*[��\u0014�\u001a��\u0012}Y�X땖�i�<3#ʹ��J\u0003I�\u001c���G�~�ӭ0Ɗ\\���ک��Vϖd�y'�,<�����*��0\u0015\u0007�\u0000� E\u0013�*O�#�ɻ�v�n�\\�B\u0001/\u001a�\u0000�b����\u0015�h�ߜ[�E�\u0002��q�*T\u000fUSjQ\u0005+Kӊ��\u0006��\u001aN\u0016��\u0004mAd\u001bq�\u0007�*x �\u0001؀-\u0002\u001d\u001d�?���������=þx����C���DI�\u000f�LQ���bN�\u0014��\u0011ܭ\u00025�5�a�\u0005��O\b��\u0016�x�\u0015=)\u000e�|�\u0013���A@�\u0011���L�\u001084>�rU�g��6Ҧ\u0001֟�2�'�0����g�_\u0005���N��nB�S;���w�W�ˆs\u0013�f��\u000b5��gxǘИ�쩳Ũ�j82Jy�Ôs6\\aJ��V\\]\u0003��\u000b�_����`����l��yw\u001e\u0018r���$�xӦٟ��D�~�����7d����!]S�\u0016�>\u001fC7�����.nu��zj��(��\u000b\\![�C�\u0000Б?lI���c�\u0013�L\u0012��U��*�w�Bˬ�\u0007T��M@Lm���s\u000e^ʱ�g����\u0004\u001fg<��pRV���C��ȧ����3lW����|�X��\u0011�f8�\nC<(\r�\u0019�Kl#W�3\nb@i�u n�O\u0006��):\f�\u000bCY��\u000b�\u001as!\u001c\u0015lyQ�AG�\u0011���L�h�W�1[�[Y���\b`�q�@���2\u0006\\���\u0001�\u0013)=�\u001d�Y�x���\f�d�\u0010�R��停�\u0012'b�\fh<�q�w<��z0����F�\u0019�\u0015�m�b�\u001c*\u0019�\u0014e����n���Y���k�u�\u0014�xT��5���C>W6(����#��=�Yؔ\u0004��S��{d\u0016���eжL�6\u001d�c�;\u001ed\u0000L���V \u0013�\n\u0004\u0004j~�O���q\u0013\u001b�\u0017 P���\u0006B\u0000�\r�\u0017g!��\u001e��K�\n��\u0002�\u0006\u000f4�\u0016��Z{\fv|��P��\u0015\b��\u0014-�\n#\u0004/dc܌-M\u000f\u0000R�?�\\*���\u001b#\u001e^�TBQ��N@a$�i ��A\n\t\u0002]Y~�\u001d�L0�(�\f\u000b�%�]����c�\u0016���J�����%\u000e\"�d�AA�\u0011����u\u0017e̲��\u0000,\u0015y\u0017U�OlV\u000655�3��\u001d��淼İ\n��\u0006%z��RN\u0018ԧ?��)ԇ���\u000eg��V����S��'qz���8�{m���\u0011�r�X�\u0004Z���2�\f�)��/�.0�h������}�/\u0015Q\"4��/3V�\u0014ڪ��͖cG1\u0000�����[=I��hN�l\u0006�Dl�Ć���Ý\u000f>l�Z�֝\u001a9M\\fv�D���:6�\fbz\u001d\"\b����z�~�^��wE<\u0010\u000f$�\u0012wY\u0017\u0005e&ŘțC�1<�\u0003��\"\u0015���1�\u0006R��c�ښ��$��C�\u001b\b�9�H�m\u0015\u00026tf?��\u001a��5L n1�Хb���h@k�u�ڂs�w�{�\\J$�q�y\t%���͆�Х�G�AD�\u0011Ѐ�۹k��:�@\u001eP\u000b��\tVC�q�\u0011\u0003���f�\u0017Tyx�\u001cC\u001aآ�L?�\n\u0012Z\u000b\u0006ݧ\u001c[��\u00007�����\u0019)u�\f\u0000� �A̵�ֵ:�\u001c\u0002\\����,v���˧dV젍�m��\u0003uV\u0011�\u0012��\u001b���u���}7\t��\u0004\u0000Y\u0015qHixi�]\u000eBuݲ;��(�a\u0006ҨҎ�W��5\u0015\u001c\b�E\u0000v\u001a�נ\u0000c�\u0004\u0014<�\u0018\u00047�\u0012-\u0013�U�\\dx��\u001b�7\u001ab��������\u0011��\t.��H�N��\u0018\b�Č�\u0007�D}�\u0003�r�\u000e�^(\tmM�r\f�H=3$_a�n�M��\"I�\u0001�Fa���\u0018}�¤�Z�:G\u0014��\u0013�%rX3{F��*w�ח�g����� F\u0013ڰ���\u0006 _Ӽ�\u0001W\u0016�d��F�AA�\u0011��L�\n-�\u0019�m�\bW[�,�G�N;v�`�\u0007�W�\u0010�&[�`�0\u001f�RNR�������L\u001b���U�����\u001d+�\u0019�\u0016��\u0000���?d�����?C����^BR�\u0016\u000b^�49䜺���!Y\u001e*!~ך\u000e\u0016��47B�`���e�&\u0011\u001b\t�to��\u0013�cZ\u0014�\u0011\u0005\u0005���,���J�$��T���f\u0014����\u0006��`V�����\tJ!�ÔC�m�6�N����_J�h\u001d\"\u001b���MT�X`\u0012��^��O�W���{�\u0007��\n\u0011Xã��$Ԯ��B\f�P��`�n��+t�>�\nN���ZFɸ\f�ȴ�\u0007��_k�\u001afよ�M��<��j]?�\u000f>�)��\u00104���*���\u0000Q����ѣA��\u0011���L�K\u0019+E�\r�����8\u0002��ai�����b�����\u000eI��bzl�\u0001v�w���Pr�N\u000f\u001f��2��?)��bmDw�bO��L����\u0015<�\u0012��\u001fA#U9|�V\nw<\u0004��+=��\u0016\u0019�\u000f\u0013:ݯ�\u0019���&���j\u0018g�\u0000��{B%(�O���C\t�-����&\u0005b�$}\u0019A.�c��U�,\u0003h�1\t�Y���O��[�\u0016�ԁ`x \\��\f����iL籣\u0004|�*�r�G�����y��t3܆K�,m\u0015\u001d�w��\u000b\u0017\f9�\u0011fز��@��;��'\u00069�8՝\u0001)�\f$�����\u0019��k�CG�x`\r�Xt�U\u0013��\u001c3\u000f����c��064#���]�6��Q���\u001a�D\\����+�r�DP�_E���u��m��x��$�=ߡ�\u0004��ר�Ft�@\u0017�q\u0016Q�}\u0018��|~�\u0001>m\u001e�..ۭ\u0007(���b�&Q�\\�A:�\u0012\f���A�Z!\u0003�[�w�\u0017I&%+8��ra���2�o>\u000f�'�I��\u0002U�ĉ��\u0003��]\rS�c�c[�f_@x�^?�1c|\u0005;ֱӵ��7A�`8^�\u0006(�Er�\u0010���\n��46+`%�k]��i�=��J�X�\t�0��D͍�TI�/\u0014���œ\u000eۻ�2��8`�Xt\u0007?]�\u0010I��9�\u0005�+�h2\u0010\u001c\u001a\u001b٪����\u0019\r=\f�Qm\u0016���ERI_\u0006c\u0016?�X)sPe�U�AN\u0016Bh>T�>|Mx���!�n����^�I��A�<:Ag�e�-^\u001a���4\f8h�Kg�x\r����Ǜ�tR\u001f��.�6\\-�~�-H���^\fʗ�� �G���\u001d��O�Z�Ę�\u00197�RF�A��\u0012 ���\u0006u�.׫�\u000fd`xz�\u0006�\u0013ܗ��j\u0004F�*&#F\u0018LH�{�ta\u001cԁ^��ۥxﭘ�$\u0003�>f�u��pƘ����s��N��p��P\u0019�\u0006Xa�Ķ����Q\u0001������T\b<�45\u0015��Y�A��\u000e=Vm�/��^�^M��{�B9�W�o�\\�|���!�\bj~�lĶ�wD[I���c��\u000b���\u001cH|$\"�G�F��\u0012��(��\n ���0�j�`&��G��W�OZ]\u0011=]\u0005ۢb:\t�AJ$�!�L-�J����82\u0007K\\�fT\t݀\t�~#n���.ND����!wÔ���C\t�|���b���C���\u000eИ\u000f�ڤca@I\u0001\u0017��l\u000b��*\n�o�\u0012ہ\u000e�Y3�~W�;\u000b�M]b ��b.�$�\u001eb7\u0004�\f&6�~S�5\u000e��L�\u0015���S=�\u0006\\a�b�O��狊���\u0006\f���i9�TK��r�Jk�8��)$Ae���JC�jlx��&#�\\�7'�&s\u001c��^d\"�=�X�D�E��vn�MQ�\u0011\u0007�T��\u001fp������\u0017F��nٿ��\u0013\u0017k@\u0015\u0015����#�,\u001b�M\u001c\u0003��xvKwJ�\u0015L9�!ۣA\u0013�\u00124��X��\u000b�id\u001a���]���\fB#}�V�T�a�A�l뢞q8*�aM\b�w[��F�Wc)C��x\u0000��u����:�Wu\"�7o�X��\u0007�陻8�\u0012O��=\u0005}>�ܶ�DWhѸ\r#C8C���ݰ\u0000(�b�4��8�`�9m�*:Fs|�Y��h�?\u001a�`�*L,ғO)B�o\u0000K��ߛ�s�)�L�l~/��|i��Y��3g��\u0011��`�9PWĥВB���\u001c��H���EVX%{��G�\u00058�6�f�Re\u001c=��]��)\u0018�\u0001i��\u000b\u001e�\u0006��\u0010��\u0001}���@����\u0006�P�\u0002!\u0003�?m�A(�\u0012H���m\u001frr�����+\u0005z\u0002��x+;�x1�/,\u0005%h_��I\u0013�V7>�\u001f�x\f��)G?�U�&ϵ1�|�\u0001�C�ܝo�\u0013:�Rq:�J�Y^��R�줱��Z!��{\u0007��\r\r�#�+\n\u0004\u0001j��~rUz8\r+�?L��X��B�\u0000��4/\u0013Z�\u001bm�Y���$ݪ�k������\u00164��t\u001f'�0�re�.~����P�:��K�-<��E��I�W=\b\u0000�)Ѥ\u0015����*s\u001e?r�9��z��emM�8쮐�o�>�� `��o��HIFC\u000e��eE!�+�'.\u0000x\f\u0016��#\u0003\u000b�9��=Q�G$��Z\u0003�1\u0010��(��*\u0007�FʼnQ����A'�\u0012\\��X�-�RUʏ\b\u000e�#H�^�9Ȉ?��\u0012w\b�k�B2,�0]\u0011j:3��<����+cÛ\u001f2 ���A6n�\u001e�v-��mU)�zn\u0001�\u0000�;Bޏh4F\b���\u0018�\u001a@�l�,��xk�A�4�Qj�\u0019�O��w��¤���G\f�\u0004i*�\u0016D\bᑅ�t��!�8�H'F���l?w,\u001a\u0003�w!R�ĭ��\t��\u0003q{8�\u0016ce>\f�9�;��\u000b���k�If�� \u001f��mk���\u0001X�Yl�\u0005\fTɶ��P�ؠ\u0017{���\u0017\u000b���!5��(��u�8IӘ\u000f��,-\u0014\u0000�Y�F5]Rvb���۔\u00130�P�&Ԫq��A\n�ѯ\u000e#��Е\u001bT�A;�\u0012p����\u0017]\t�>\u000b\u001c\u001f�8�\u0011wUw\u0007)��WS�\u001e9�)��\u001aE\f�\t\u000bJ<������W>\u0004����(��\t�QV�KJ���'�\u0017�\u0000��4\u00149&�\u001c+sWz0TM�;_��ռov��O�\u001b�-�\"4�S]Gh,\f+Uy��杔>��Y�\nƈ2��9��IO�VA�V��8�Vwȇ7x��2J���8J��~���WE\u001d�X�\u0016���5pPQ��G\u001b�\u001f\n� `�\b]��j�\t<�/Ƕ�ͽ��B*\t8����\u001d����)�^\u000b\u001aԛ�7�\"h\u00165�Dd�����ޑ/Uk\u0002�\u000eۅ��!ϗ��C\u0015���C���5i�5��\r�J+�\u0000Mq\u0011��H\u001f\u001cl2x\u0004\\2k��oK�Z��4ډ߷�A6�\u0012���L�\u000f\u001a\u001eC\"�\u0010x��\u0014y�g��KR�'\u000e���k\u0016��f�:\u0006�b�2�r-}�;��9F\u001fd)�.�b����F\u000e�*�^=0\u00113&�\u00189~;[a5\u0001�L����\u0005F\u001dt\n�88���T��\u0000\u000f\n�1�&ީ6�u��6U�_\u0019/�IO����oj^\"�\u0012\u0011�I�Ħ�\u0003`Ʃ����\u001a\u0011Ҙ�3f����q#OZkՎֺ�8�bp]\u0001��\u001a\u0002�\t�-\u000f�\u0012]}!(\u0001L`�\u001bK��%\u001b���ԁƗ|��}d\u0006\f�L\u001f��:�2�\flS\u0003�5c\u0014Co\u0019&+H��9��Ϧ:�'�\u0015�i(\u0014��))���%_r��\"cW� ��:�e��\u00019��M�\n��� �Ш�\u0005!v�&���AB�\u0012���L��:\u0005\u001a\u0012S\u0002�qĔY�g`�^�{=�?�N�[����@t�\u000ft�bSE\u0007�\u0013�\u0001\u0003+\u000eW���^oIk琘���\n�;��\u0016݀�8x�\u0015@\"\u0013�]ʄ�7��\u00073���m�O�b�\f�쩒�\u0011we����&��nt�wL\u001a�f\u001d���q\u000fפ��?m�d�j�����#��a6�\u001aW\u0005\u000frx�\u0019ڧ\t\u000fv(�i���\u000f��M� \u000f_A�.n%\t|��aɲ��\t����r\u001c\u0002{e\u0000��'JC�o'h6Ec�3�$��ޱ6��Sa�b���Qێ�$![*q\r��8�b�s��;�LG�cT�9\u0004x\u001a��7.��i�|:��\r$;���\u0004\u0001��\u0013��A��E�]j\u0000\t�\u0016'��\u0019��#����x5�A;�\u0012���L�nܑ�\u0013d\u0015\u0017�\u001cZ\r󡾎\u001e�I�\f�[�Q�\u0019A?-����_��>i%�\\p����-4�N7\u0015f\u001fC\u0013���\u001c�X@�'�\u0002\f0\u0014\u0004/\u0004����ИقG`+����K�*\u0018�L\b#\u0004�\u0007�W�ce���5��Q�����b\u000f�Pݵ�%R־.��\bW\u001f��W�������=\u0019���B���k�G\u001e˸AYx\u0019\u000b?f��B�(\u0015^R�@�0g��ž{��w�\u001fF+\u001e�_� \u0002���>/�\u001d�\n/J%cJ\"��\t�F�A™��\u0018Jeئ��%��1\u0013'{h�ʌ���1\u0016���\u0006�K��\u0010���O7_��R�\u0018\u0019����\u001f�-�Z�خ��\u000f��z�0�Hj\"��{G�\u000fL�=�n�A8�\u0012���M0�s�0���D2����\u0006`C\fZ��y�T���*H�v�ǀ(���C��K1���-��$\u0003;X<^\u0018\u0011P_4J�U\u0013�\u001f�\u001f@�����\u000f��`��n#�t�o���\u0002\roKz\t�\u0001^��;���Өr\u0010�Jv1���o2��}H�5�rŊ�:\u0002uzXx*u\r\u0017��\u0006Q_�~\u001fV�PW�\u0001D\u0018�6�\u0007��5�\u0010�\u0004�\u0015�6�a���_�\u0014�\u001dm;�)NK�� ���ӑ!9a>r�S��/e�:�h�ʀ-yN��3���2Ǿ��ft\u0006\u0015s�\u00003�40��d\u0011��Mb6�\na��޻�Jv��3^�;ߐ�r��=�-\u0019��8Mn#�S���� ]���l�]\u00059qr\u001a�ڵ\u0014e\u001f2+\u001a�A9�\u0012Ԁ�L�\u0007�huv\"��#�[\t%�}m�\u001b@�Zr\u001a U��S\u001b�Gmހ��ζ�*�A��K%�D\u0017��\u0017\u0007c�˪+%��(��2B-��\u000e�䇼���h�\u0018\u0007j�aa�\u000f���{����ٺ%_�G�����\u001fA�^K�}h��\u0013|S�|��E\u000f/��{�Gvg2:�Qh4��*}\u0011�6�\u0006\u0004\u000b����\u0019�q�P��U��/�m���\u000fK�7%�9ƈi�s\u0005p�{�\u0012�\u0010�*A>4\u001b�3ה�n���\f.���B1�\u0018�\u000e'��a�Eh�_.T|�\u0002�T,y�\t��\u0004����Y�~i�I�\u001b\u0016�Scar/]�1`������|�,���ܩe���0v6�)I�^& ���R�`@r���uלY��\u0015*�!�e��zm�SN��d���,Id�\u0012G\r�]\t�O\u0015�H\u0012\f:�ÇГ�\u0007�\u000bx̱.��.\\s#���\u000b�v���;ɣ��V�[�\u001c���w�9��>o�0pB��\u0014�\u0004�\u0017@n�A���\u001dǀqz��J�{FGʼ�\u000fct�K忍~kh��k��u��5�\\�A8�\u0013\u0010��L�8�5.�l��\u001d%I\b�\"�\u001c�(���n\u0017���u�р�\u0016}5��@\u001f����t�D�\"�\u0004��=��������|�*��4�ϡ�Kw�\u0018K6��8���\u0007�+�,�������\u0017|٬�YXֽ��7!W$V�dt�0VT\u0011\u001cPgT\u0017I9�z�\u000b\u0011�\u0014��K�Q�w�U�٭R$��[�oA\u00065!\n\u0007�(��\u0017�l�V\u001b�A4�\u0013$��2lx�v\\\u0000/�8\u0012��v��l~u�Fuδ�/)1��\u0001\u0002�u�\u001a���UA��ʭ)#$�����l\\`I[]Q\u0000WY���\t\u0017�J����)[:�\u0000\t\u001d<��/>�����0�\u0013\u0012�rT\u0001E���\u0001�9S��o\u0002��\u001f<��RF���J�^��>��![��zڷ��\u0011[��%E��\u000b��2\u0005��\u0017?f��$\rTy�����P��´\b�=n�\u00189a��Myb�����L����\u001e�X��P\u0005�.\u0012��\u00151\\��Gj���\u001fG@p1�?�[u\u00028��(�{���\u0011��A�wx�_�qD��\u0004c�c���ݑ(o\u0000\u0014,ב��9;yU�R�$�a�\r�<\u000b���\u0001\u0019\u001fv6�A2�\u00138��L�����p�\u001cã%U\",�$\u001bE\u00191��3�I\u0007\u0006Z�R����U��bl{�\u001f\u0018���<��L˺�����6\u001fh\u0002��4\u0001=�a��5m��e�*i\n����u���:��J`���Wq�\u0011�����\u000f��D�����\u0006\u0007LB��0*���\u0016mVuI�'JoǢ��!b�\u0005��&�\u000fz�o�\u0010��ɔ������\u0010i�`��/534���D�9�\u0014�QQ\b�`��\\�(}�\u0013�.���+\u0003(\u0001�{�(J�\u001d\u0019T�\t8؊�\u0001^�\u0015 �,d�\u0002�Z\u0014F��\u000e�J��ۅ���]\u0002׼q�θ<�&��30�ha�\u0002�\\��\u0012GFXekC\\d9@��\u001ax��z��'$�A6�\u0013L���Ȣ�\"�\u0004�`\u0001K+\u0002-<\u0005D�\u0006���~\n�p�\u0001�f�\u0012�~��l��¥\u0011�Zx���G�:�p�B��\u0006���n��g@�i2��\n���_�PFHo\u0002'R��\u001c\u001cA1KlTr�5�llp2-�\b�@�|�9��1���/���\u0011R\u0000�\u0019-�\u0019ZΧ\u000e�OGZo���H��r�]�\u0018'���Z� \b�c\u0017?��i`n2\u0017F�#״�/�6E\n�=\u0011HWvsy��\u0017n(�\u0018m�H\u0017@\u0018~*o+\u0006\u0004>J�.�J���\u000f_<�\u0000��x�Ǖ\u001c\u000e���_�\u0004��M��P�%����j�Ip\u001c�^�S��ޘ3\u000e��_9ߛz'���9)`�\u0015 !\u000f�y4(�e#�*J\f�@\u0013.�i\u001b�*���򌣝\t�\t��8�\u000e0C�4�J�fXx��kaH�*��\u0019��$�&�\u0019+��\u001f�\u0001@,\u00194N����\u001f�(�~���xZ�E\u0005�l�P�'��\u0018\f5��S���H�k��IAj{:�{\"\r\u0007@�����ǹ\u0006\"�\u0013�A4�\u0013t��.�|��dՃ�����L���\u001f�lE�:��3�\u001eTBB\u001e-\u000b�٪Wf!�@W�n]��~r���X��\u0014?ܫ��ҵ�\u001a�\u0013��\u000b�$-��\u0018�\u001fV\u0002=�aq�B.�h��$�~S�\u0000���\b�6&��٩Ap\u001a?��\u001c�y-��ӈ��\u0000��^�s\u000f�I}���������\n�<�\u0017�T-<��b�Ne3��\f�\u0012��(�\f\u0019���\u0016\u0005dQ�\u0003�\u0003\r�\u0013\u001d-\u0014�M\u0003$\u0017^Z*��\\�g�P�\f�R���5���([��ZlCD�c��)\u0015�ߵ�,��lޣP�J�?\u0003������Pj���?l:zU\u0006��C�VW�U;{��\u0011L�K�K�&�7\u0014:W��*FdV.я������A;�\u0013���X\r��\u0013�\f3۞7}A��\u0007o\u0015�k�\u00018�������JŰ\u0005�[�ئ\u0019�\u001cI\u001a�i\u0006~�\u0015�Y�&或�D�m�φq�\u001ah�3�`.�i�����*\f�2ײ�C\u000e~,�\u0011�ݱwD\u001a\u0005Bn�Χf���Z�G\u0003�.�\u001a~��ҧ�fV��u|q\u0003!]!�\u000b�:��K����cߪ��\u0007y\u000f�Ļ�P�^\u001e��Z�\u001f\u001cE ��\u0013;����m��#U�`h@�Ⱥ�[�\u0005�\u0000 ާ|�η�>B3Ԩ��E��|ipg����Ri���ͼ�I�<�f8'j�\u0015!\u0019\t�\u0012�ڇ\u0002�Ҡ\u000e#P7Y����jWY\u0012���t\u001f�����#h�<\nX\u001bO�k�*3��r\u0019k�㯍��&�Ep�AA�\u0013���L����>�YE|Q;����\u0013�h�@K�c��k��?��u�l��\u001a��u�vU�\u0018f�V��x侱����l�:4��f�\u001c�T��\b�ga`�`����\u001a�\b9׀J���;{\u000f@\u000051q�D�\"�\by�c=Z֭W?S�f��\f�IJ9���,��]�\\V��@�\u000eK�j�S��vt\u001a�ٜ��|�ۆ���Ǧ\u0016�\u0007�h�\u000e:\r�\u000f�\t���l\u000b\u0012�ŠE^������r\u001b���DD�\u0011�;A�\u001f�W!�\u0005��.&�ʇd=�<5%�F��)ǯ\u0006�;���e�?k��W�1ő\u001c�\u000fXV�\u0015Z𞉾��-\u001a��k�\u000b\u001b|�7�g&4�\u0004\u0017\u0019�D�M\u0000�\b��\f\"ҋ\u000fA� �\u0012�\u0000���]�A=�\u0013���ۺ�\u001e\u0010\u0011�\twU�L���#�������V�ޜ�F6\\v�\u00103��j!�.Q�&�\u0012�LV�pɢ�\u0000��\u0013㛨\u0016�� �i�y�w3\u0012Y�Z:��[�X\n�:}��۱�U�j\u0018¯��\u0013�\f���b\u0016��\u0002�@_�G�ɘ�ے��N�FC��(�\u0012����iÙ���-�7\u001f��4��t��u]�*�1E��#\u0012\u0005�x�m̆�\"n��R�2c�rPn^G۬�r��]\u0002{\r�\" lj|D\u0005�9�b�F?�\u0019�Ɯ\u0007\u0000٘��$A\u001b@�9�ALG��\"\u0003����\u0007���E\u0017jZ�r\u0017�y�����m7u��\"�Id��Z���ց/��\r\u0014������cv�;X��Tf�\u001d�!����\u0014�A[�\u0013Ā�L�7^�\u0013��p6�d��J#HP.�k�\u0016ұF���1�����5\n����:\u0012\u001e\u0013\u001c�?��\rV\u001b�\u000f8sr�\u0005�.�� ����0�N��w\u0013!�Q�-Յ�\u0005~\u0005�,\u0018�U\u0002��\u000b�ж��Y/#�\u000e\u000eS\u000f�D-\u0019�\u0019��μ\u0016\u0016�i&�f\u0019�Z,�h\u0002Im%�<;W�0�N�拰��<\u0004\u0005%�L�#+Q\u001d�U�C9���|�,D���[����\\�n?~�\u0018\u0004&ſ��i�\u0015I�1��HtYl=8?#5p3W��aG�Ew����N`�C@r~���F��\u0010���UEM\u0004\u000b���=���S�\b�D/�*��]C\u0001\u000b\u001ds^b�,\u0001གྷq�����̪�x�6r\u001e�F�L0g�\u0005|I\u0000�>�a���\u000f7XB�?�Y+3��\"���6@x\u000f��\u0010�0m�AW�\u0013؀�1�Qz�v\u0002�L��b@3�\u0000�R�%��9���� i\u0014�\u0000?�Պ\u0004\u0019��_9��ڶ��\u001f\u0019�\\m\n3\u0005���.4�\u000b%\u001ah�T�\u0010\u001b�\u001e˪E��tW\u0015�N�\u0004ИF�=\\=۵j<�R�\\��5�L\u0006�; �ij����v�:\u000e��\u0010���_H]�BW�D>%`^�������Ǖ�A�p2\u0014a �Z''r�9�ɁyG����%.:ý�%{�\u0011�18���Z$��K�\u001d�ó��\u0000\\D�ah>B*P(#+?����P�a�9RD\u0010�~T�i\u000fe\u0014;�Um�o9b\r\u0015[cAo��d\u0005m�|��[[\u0016=P÷%�i\u0004\u0001��lY���R\u0004:�gm#�@Ɓ\u0014�Z�]FA\u0001Yr�ހQ�\u0000�(��R��E�B_��=dg3p\u0013��kD1p�0�<�\u001a\u0011�\u0019p\u0011�4�!CkZ���K�=��nHw�M�oq���\u001e��9s�5~$~��Jq,�z�\\��4��,\u0003��\u001b�a���]\u000bM�>\u0005�\u0004�\u001c�Bo�\u0014\u0000�������{|rW���S�m8P�N�{�|ըմ��\u001d񺖲\u0002�&��k�N�N<�H�\u0005��i\u0004��'�\u0007�kx\u0002�����A�tyǠ�c\u001a�\u0014`��W.��׹�\u000e\u000eX���^\"���\u001f\u001d��[���z*f\u001b�C\b\u0002/�27+-g�=�1�\u001f8���G�\u0000�^�5\u0017�\u0014\u0011��5E��\u001aY�/gy{e\u0017���g�S`����)�.8�W\te`�\fk\u0015A�hX��\u000e\f$\u001209�\u001bw�e�qr�]��\u0012ҝ��vC��B\\�T6/V�l,\u0003\u001e7\u0019 mR�\u0019���A*�JC�^5GS�I�\u0000\u0000\u0002�=}��wg�[\u0006��Vck��SB\u0016J��Ƴ:x�1Md�16����\u0006D�9R5��Wy\u0010\u0005a\u0003�Ҍ�\u000b�k^\u0006�\u0011}+�����|f�U\u0016^N�$�q,�׀��\u0015�O'm\"<�\f���O�>��E\u000ev�\u0001hIt\u001a��F�bOYNB`�\u0007��L�'����x^���/��W�T\u001a\u0018�P�\u0011�c��\u0016=2hoH�e�aNo\u0017K�!�ZS�{A*|���ֶn�m��v\\�}��Z�o�n|&]����}�9����\rKX\u001e�/od�Y�j$]Z�e?�\u001d���5Mn��D\u001f���\u0000oA#�]c����Y�z\u0007�%[�q�%,ν�\u0003�ʱ��\u0019\b\"�Of�f�ޔ��Yj{����\u0016�ǜV\u0013o0�\u0003�\u001d����Ŗ\u0019\u0014��#z��\u0001����'<�\r��\f�T�,��sY������:�Jr_��9m��Qâ\u0001\n~D�\\�gm�<�,\u0017�bS�\u001ah�k�_�\u001f��ܻ9�2\u000b8����ap�\u001d���z٬��Z�I�)`��v\u001b\u0012\u001b�u�Q\f·��./\u001c��ܵ�;{���� +�S�PO~|�\u0019|�\u0002\b4�h�2J����|;e�\u0012��\u000f\u001d��d���A\u0010�\u0014(��m�\u0014HӇl�a\u0010,*n���U�~\u0013\u000b���z��m\u0000/�g<�l�F�\rW]n]\t\u001fك�\bĞh\u000f��\u0005�\u001fn��P�{�� /�p8\u0014\u0018�\u0000�u�\u0006�6#�o\u000f�.���-o�sh��O������#��>�I\\Z���\u0003�Nk�k\u001a{���^��h.m�1l���D��Q\fȥ\tøS^.�̣E��2NjX1O\u0010���\u0014�<\u001a�0E\u0007S\b٦��������G�\u0010���)�\u000fl�\\���b�\u0017�'���&P8�F�Żdh #� #�Q�����R���袐r\u001b�xHR���<0m�x��������A*�\u0014<��X��%\u001cb��a\u000bK\u0005�d�Q�����\u001c\u000ee���\u0013��Jm�Aʹ���ޢc\u0019�&\u00106���s��?�mqK\u001dk@O�s<��|����N�$��E,Ԡ�-b�@�\u001f?�\r\u001bʤV��_o\u000e�M�>9|��,\u0001gB\u001duV��\u001et���\u001fZ��K��~��ۢ\u0016\u0017ޑ\u0007N��\u0003����;�?�H��@��բ��D\u0019��\u0019���;��\u000f\u0014\u0013�\u0016V(�u\u0000\u000ec̨�~�\u0004�9@W��\u0003��G�}a�ݭ�ÎC������V\u0017�[\u0019'ĝwF\u0004\u0018U/S`}���K9�c�%��3�2=\u0017��q\u0019�E*+p��g\u0000��<��Z�9�0��G$��~��bd�A&�\u0014P��M2�,�3��`C�)=�*�Ɯ��2&|�8��YJ��\u000b\u0016�@�\u001d\u0019\"{d��N�-]��\u001d�|B�W�d74�\u0007c��,�cl\u000f\u000e�2\u0010��joE�\u0018-\u0018մ\u0013�\u0002\u001f����i����A�\r��\u001fk��K\u0000f]�\u0007Q�[��8\u0012x\u001f6\u001agA�hՇ\u001a��<�^7�A�`��'�\r\u0012�Q�n\u001f�^\u0003�O�lo�&u\u00196\\|X���Y\u001c�\u000f!��IM^����pǎ\t�A �\u0014d��L�\n�\u0001��\u001cXKk���f�����,�b�\f\u0010%�&��h^�\u0003,�\f��^��{�\u0018��Ϊ���?c�v��-TE���K��K�j*�xvj\u000b�\u0000�5t)\\6���8����\u0016�(�\u001c�y\\��\u0004#<ΛЯ�^(��g�\u0011����W.�����A�\u0015����'e��\u001b�\u000b�\u0005s��C�H�5\u0011\fk\u000b[ �l�ɒ��ct��@>6�\u0018�Фr�6X�X\u0000l�\u000b����qV\u0015��GH~\u0018\b�$N���\u0013V�X\u0000x`�����Y�\u0007gԨ\u0018v�U��%(�l\u001c�>�\r\u001dyOW/\u0016�K\u0013cI@\b�n�>��uՃ���'����A$�\u0014x��X�\"n�:�X��\u001anC�\u001fx�\u0000\u0004�\u0019?�o��6��c��y�ݢ\u0007�R�\u0012\u0006gh8m�\u0012���G0n?�%ǖ\u001d8��P^�$ʼN\u0005�\u000f��\u0006P�\u000fj2\u000f�@R��\u001f-��]?�\u0002�`���\u0006���Û��B�\u0001�EeŴ�\b�\u0019�\u0016�=����M�T�\u001d?\u0014���ݎ�E\u0007�\u0001��\u001f$��H�\u000e/e��\u000e�V!\u0010�!Ϧ���\u0006\u00165�3N3��cf��\u001ce�Q� \u000e]����q�\n2\u000b�⠞Ⱥ�Fl�IYG����n�\u0016\u0006\u0010�R\u000b)�D%b$3Iv�E�(\b�\u000fF��-i)�uB�#Qm\u0002\u001dm�]P�\t,[��Z���{)��؊-^�\u001a�\t�a��D�g��\u001d��Ӭ;��\u00066Y:⫭�Ӻt]H�(�\u0019`\u0010,a�Og\"���)��09'�Q���;\u0011~�UƲ�\u0015\n�A6D3����\u001dT9\u0011-�&(���F\u001f.��8��� \u001d��;�Qސ9M6�0K�u!C %����A<�\u0014���L��,Z�تl\u0000���}ϑ[��f7�?�\u0006r��/����B�q�\\�$X\u0014K�\t�+�0+{�Q\u0017g|�\u0012�$QM2�3�E�Ѷ)�}C��g��f$C˯M>n3ơ��M*o�aL'\n�k\u0013פ��\u000e��6���!�yn7��Dd0�uQ@\u0002E\u0002.��ks�L���F�\u0015\u0017�&\\��(��3 G\u001b�.���)��k�j+e�d=\u001e�\r�W;r�\u001a�jmZ\u0012\u000e{\u0014_]���{\u0017n�,҄R\u0015n���\u001a��\rZb�˭+C�Hr����q\u0013�x\u001c��#�\u000f��f8��,p{y^;3�?-\u000f��ol\u0011�ն�&�к�L`�\u0000D�PZ�;�G\rX&q��8�>\u0000�\u0003�@/�-�,{J����\u0013��A4�\u0015\u0004��1��:����Thai\u000f�\u0013Ro�\u0004Cxӻ9�\u0015���?�a��i�U�\u001dд��|�\u0002\u001a��\u001aU�V�����Aq����m�\u001a�\n��F����H=���\u0019u\n\u0000�����w����Q��k\u0015�?}���\f���on�e��Q��NxQz7Pl\u0015G+�\u0005��\u0011\"��\u000b#\"w�`������{�Յ��w�ByS���b\u0014�,�%w�\u0006ƻ\b\u0016����7�\u000e\u0005=aGS�,T�\u0019%OeF�b��Ʒ�5��u]g�����6_��[.�U�)Ɣ���T�.�\u0004�y��4]����\f�\u0007��j*�C�5����\u001d8�\u001b�#��n��<�D\u0002�\u000b���\u001d�`מc�\u000e$����\u00127Sb�A��\u0015\u0018��|�\u0019c\u0004�n$��Or�\u001fPۡ.�\u0011��\u0018W?.�ˀ\u001c���\u0019��\\z.�n�'V\u001a\u0007@�\u0012cռ�y1,\u0012%x�]�K��\n=H�]\u0000Ci�B\u0018J�!7\"(w\u0002����ϥ\u0017\u0011�i&1���a,NX{$�<�-���$U)��+wj��\u0017��u\u001f�ꆀ�Z]�K�'�a��\u000f|ܾ�X'��FJ&O2�6�v3����\u0010��E\rx�Z\u000f!#�[\u0017��~Y<ײ]�\nV[��1s�G���$��$�,���h\u0003\u001dkW�� \n�Xq��'#�q�C\r�2,\u0018��Pb��8\u0003��\r��n�Xy�\u0003\t��>b�\b'�c\b�|�uB����CޱS—kö>%���؂����>��a��M�\u0000���\u000eM@mV��4G+�\u000b��Xw�\u001avd\u0012��j/�ˮT`\"N\u0017\u001c\u0006Jh/���X�\u001a�K����D�@��Q\u0010�\u0003\u0017����\\�\n)\u0005�r��r*�\u0017�%��\u0015�\b�[c���X\u0000=S���e[Y\u0015x�\u001e�\u00059���c���kܹʫ��M+;�f�5<�e\u0005�cw\u0002\u0000\u0012�,\u0005�6�\u0005���q\u0001\t޷m���ꊌ]�L*Vg�cNx)\u0000�\u0012chڑ�\u0013\u000b5\u001a��'M��RD�co�Qm�\u0004\u0003�%���o\u0006R��\u001c&<����Λ������\u0018�w�%j܄J}ws�Ҿ~�Pa�\u0019\u0017��-�K�DXr\u0005�5�6 H\u000e�rƔ��?� �#<#4\u0012��\n�A$�\u0015@��L� �\\'rlT�ǟ�����\n��\f�σ�H\u0005}\u0001:�S�����g3�j�l\u001c�@W��$\u000bZ\u001cSoz��ϧ\u000e+*�R��.P>?z���G~��m\u001aDo��譌5�\u000e�\u0018dD\u0015�q��hF`�����z��8�z��$�\u0015�����\b ��\\�Y\u000ePJ�b�f�?�NW�Ŋ\u0013�,Wj�ֹG3O[pp�0�c��X\u000f�8�>^���>\u0007n���=�u�v[s��o\u001a�\t\u000fb@�`���r>e��W�3~��\u000fy\u0015�sc��\u0010��U�Y���[�I\u0012e��k�Sҭ�X�⏤�\u0011e]\u0007�m��\"��\\E��\t#s��\f\u001c\u0012zMU���A �\u0015T��L�F31W�\u0001b��+d�3����\u0015\u0001���~.�`���R>\r=\u0000T*l�Q�\u0014��)[�\u000f�@�x.��F=\u001a\u001a��G���^;������q\tm��\n�_�\u0007��MA�D��\u0004�'�H�������Ǵf\r�/��\n\u0011T^����s�+�\u0005+\fF�&N\u0000`bMg_�e��a�UUS�^Z�\u000f���Y;����'�n�8?��J9|�7���ȣ�?F��\u0003�Vܕb�i��U�\u001czB_�8�ڷ^��e����^�AȮ�\u001a���D�e�Z^r���֪�$}r���,�\u000bg�,�ּ[�m�Fq�~\u0015آ��\u000f�L\u000b\u001a<�U�8N�\u0015�A$�\u0015h��M\u001fS��c\u0012s�pM��T��S�YǓt�|�@\u001a\u001aHt�֓��\u001e\u001c�'��k�ra�򅴨K�Nq�F\u0010�;\u001d��O\u0016�fT\u0010m��-i�}��^�@[y�Vb\u0002���Mk\u0006[���]c�\u0018\u001c�\u0015\u0010%\u001f�m\u0012퐩���V�T\u001e��E\u0000v���І��\u000b�׌��\u001f\u0010�\"\u0010�������z�;7��n�f\u001f���f�wa�\u0005���cX�,��1�փF�V�E��)̑��\u001c\u0018t\u0005>�č�+\u0005ɂ�4��\fm\u0002����x[9�P��d\u0001�+m]����UR�I\n�q�����\rw�:�~R\u0012\u0012�e�+�Ȩ$>?�/�m̀Z\u001d�\u0003�����A/�\u0015|��MZ�6I^�ٌ��jr�\u001d�\u001d�$�H(�\"�2\n�\u0015X�����(ߧ�����9\u0001�U��5\u001b����\u0006\f\fc(��`\r\\\u000e�B{���7%\u0013�{ԍ����\u001d�V��\u001es�Me6�׷g�1:�,~>h\u0018d���hY�A�r�\u001aU�����'��.|�\u0003�\u0003_\\C.�V��\u0018�yů�R�vZ �D\t{F�6QZ\u0004$)�T�N��=��i-ؖΑ��煀\u0016�M�A1�\u0015����\u0015(����[�1��[\u0013�������n�t>�w}8~��/�Ɛ�r�^:\u0004�·� ��\t�E�.j\u001f��\t�ίw���+��\u0012\r��$�\u0012\n���Џr\u0001��]�9f'\u0010�\u001b�\u001b�H�T�wx�z��\u0001,\u001bֲ�x�\\B\r5�/��\u0007��Q�⯒\b\u001d�\u0007��Q�⯒\tʄb�\u001f��\b1���\b1��\b��\u0004�\u00128\u0015�\u000e�J�#�_����L�N.Ĉ\u0007�@�I�#��M�^.\u0004o���#9\n�5o/\u0012A����pT�\u0006E0-D�h�\u001d`{\u0017�|,� �\u0004H\u0010j��\u0016�\u0015�\u0014\u0000Vj��\u0014�({��d��R��cN I�X�h�y��D�/䵴�C�=�}\u0006�F���%�A7�\u0015�����%2\u001f\u0006\u0001�I�_�\u0006!��\\�l~aJ�\u0005\n�q����\u000eh��\u0019ꅀ97\u0010v?�4\u001f�s��!\u0005��?\u0017��7/�_#���V��\u0001�'7+p\u000b\u000ev\u0013�]����3�Ө\u0012^C_\n���i\u0011\u0007\u001a����CQ+���b\u001fU���\\�Z�A\tr��L��!\rT�������/����[Y���C�\u001a'\u000f٥\u001c�Z�wW��y8س�\u0013M�-�� �����}\bU!���5\u0011�9��\u0019&��@�\"\u0004\u0019�.�Q@ܹy\u00062�#�\u0004. \u001at��K|\u0000A\u0015Ϧӏ��xe�����V�-�Im�R�R\u000b�Y#M��4�C6bYEE\u0016����m\u0007���e�&�8�6�4��7ߜ��,3O�A�A/�\u0015̀�7�\"\u0012\u00051�O9����\u0002������\u001aK�]�)��K�{1��\u0007`�uI���60�h��\u0018�ދ\u0017��X:{Ք�\f�cF�`\u000e������\u0000�4\u001a5��\u001d�S�@j�@SLR\u0001�;�h\u0014�:b(hk\u0004�\u0018\u0004�A�\r�\u001dW�0�S��_�\u0006��sL�{ z�\u0010��\u001f3���؟�I;$E�t\u000e���y�A?�\u0015��\tl�����oJ\u0012wL��S�\u0012��\u0013��?E_�\u0007;\u000e\u0005�\u0005�9�K�r��)��)��\u000fpC�\u0017K��Hp�۩>\u0017�KA.nrn\u0011�k!EΚy@�\u0018�O���q\u0019�9٭t�|y���\u0010�\u0002cω�^F����xR�c�$�,���zi[$ѽ�RB2�_�BhH�Xs�i�\u000b\u00045�[\u0007�\u0015\u0016w��\u000f\u0011�\rYc�w�u\u0004�m3��D'���Dn�Bp��?w�ѐ�vh�w��\u000b��\u0011(ͼ_��\u001f��]�ꪦU�^y��6�\t`��&��n�\u0015PE������K��K���*D\\܀��\u0007�fs��[\"N\u001a�+�K\u0013���1Ky�w�\f\u001a�\u000e�w��l6��\u0017�T+�\rc\u0000@�@\u0000H��-W�������A9�\u0016\b��1�d�x���\f0\u0018\u001d�kѷ�@��@���h�R\u0019@�����/��\u000f\nX^X����Y��\u001dM\u0016/u�z�1��\u0001\f\f,[�\u001f+�B�\u001aS%\u001a�G��2�m3^\u0003�W\\��\u001cX\u001e�m�����T\u0001�\u0014\t�MA@j�Q�ʏ5�X�\u0003��R$\u000eY\u0000\u0001�J\u0013�?$2�R���ٌ\t��3{��+^sZ%�c��\u0001������\u0002[�=����S��\t���72���P�pf\u000b¶�=�\u0003\\1�$z*ր}&�O���tђee\u0012.��u\u001b&1���)�\u0016�?���٧gݠ\u001e�ӈ�u3�K��FQZmL\b�S��S��0���Q���\u0001��Ò�K&u�CC:Fc��x�\n ����R��Z�J�&\u00144%]\u0012{�Y�O����c؝�\u0017PU���\u0012�0\u000b1n�\b��\u0002����?�uC�\n�^��s�E���W���AS~.�\u000e�Ұ�ă�V4�Ɣx�����w�_\u0007��f��� �D�� ^A�<\u001c_���:HC�\f��Q\u000e�iN3�\u0004�J#k�\u000b'�Z\u0007ޖ8�\u0004�A3�\u00160��X�fc\f�i��S�4�\u0002��4�\u0005?\u0000t�HZ\u0011��j�_ ��:�&������,�՜8vV�\u0010/�Ώ�\u000f,5\u0002u��z5\u0003\u0016F0��bQ�D0$�X`}�3�\u001b��R�)v\u0006+�\u001eB\u001fwI�h!�\n\u0004\\O��LV�\u0014�B�>�O\u0016\u0014�!\u0006\u0018Y\\2�܋���!�����o�R�L{ ��Z���n�&��I\u001d����6\u0003b�ۑY��T\u001c\u001c�x,2i�E6��+���L�\u000e\u000b\u0018����~�M�_%vC��M����\u000f��&�6e��A�ؼ�&�Y+�׈?\u001f\u0005a���w\u0013:�����sf�@S\u0017\t�J8fw�(�R��ҍ�0Y�\u0003�J]��;fd�͍��\u0010\n�A!�\u0016D���l�7�'��p�\\qX�l\f\u0001�WK��H�ߤ��p8\u0010����~(�A�[\u001f�I\f�^\"�e?&5(���\u0012��n5�3�G���G��5Y;\u001b\u0003\u000eB\u0012K�\u001eP��/(�,-�[\u0007�>��9�(1Q�y��%�Qe\u0005\u0002��H̊ô'��\bDn�xʧ\u0000���I��t\u001d\u001fnj\u001f2M�K���݆��\u0007�-j ���j�\u001dI8�A��@&\f)���\\з��\u00197H�F\u0018��\r�\\R�~\u0007aB���y�Ԡ�NW@\u000f��S=�7�\u0002%�)��\u0016\u0013�F�~�d��\u000bCF��ʤ�F\b\f/\u0011�gK\u0018�\"�E�,�l,\u0017nf\u0011����DM�\u0004�R\u0012DУA\u001f�\u0016X�����{\u001c\u0013�V\u0007�h�\u0017�n~���즈iݼ(Iד�:�+KUg̾G'O�?�κ��q՞��@l��ĹS�\u000b������\u001f+\u0018��\r�^����;NS�ܷ��͇=�\u0016��\u0003�\u0019�ociuB�Av��L�, �C�n�\t\u001bZق�,b�VdlOr|6�\u0000�\u001f�\"����|4*�\u001csR�R,����7 \u00121\u0011���`\u000b���0�A.�\u0016����m\t:���+���E��F�H�I��N\u0010A�\u0013\u0019\u0013�.ڢ�\u0014�־7\u0011�6h\u0019�Hн\u0000\t�\u001a�\u0013ô�J>39��gԧ~�c�C�˰EN��\\$�:��j1��ZN P�mP�̇hT�Fl�{��~�zž��\u001cp�?;S�4�]߉�S�d! \u001d\u0018�E�\u001b�d��:Y�������dp�x\u0002#\u0011��Ͷ���\u0017��>i��\u001cVA�0��\u0016-r��\u000fi�af�'SB��c��D褈�T�z�\u0016����m�3����M\u001f�E���\tۭ����\u001c��â�\u0005^e$p����O#�Z\u0017��؜\u0017\u0011Yn���>�C�`ϖ\"j��ӆ���$K��\u0018@4�=��I7������\u0007'\u0012��6\u0010����j����j�ʄn�؎�R�O�[\u001a�RO�n��D\u000e6I=ڔ\u0007��\u0014\u0006mvo�=��U�,jwy}�2�p���v�f܊����q\u0013\u0015�\u001a�g�L�H�\u000b��ۘ\b�e�Q��T\u001c\b��۳��\u0003��c�\u0019��@~i��\u0004lҴ�䎡wO)��=�'?-�\u0013�#Й��-��n�Oe^\u0002y%aB�\u001a����$�P�ƙa�c)��Mc\u0006��N�Q�;o����Y\u0010\u0005\u0019ȕ�X����\u0006`�İ�A?�\u0016����o�2�S\u0002�\u0015��S\u0006`�.\u001e�i�\u001d{C'?Jj�D��oʫ\u001av�~.Wy�jn���\u0019����\u0006��S�\u0019\u0004�X�X\u0019����wRw'��\t�5@41A!�!1\u0002WY0-x���q׊54��݉�hr�,C\u0011\t.4�\u001ff�OZ�hϋ�\\�\u0010~67����k#�(6�M\u0012E�s⋭5��>Н��UKK�,ps\u0001�p�Z��C\u000fc\u0019\u001b����C�\u001dL��9H���e�����.\u0017�\f�V�Y},�\u0019���NÞ���樮��2\u0001\u0013\u0002ȋ�Ё�\u0001�T���AK�\u0016Ѐ�L���\u0002f�L�y\f��#P�\n`\nV�\u000b�%��\u0017�\u0013\u0005>�>'8W�g�e\n\u0006��?k~�^|8��x�\u0007e@\u0007Jāw�2�<�3�>���p7J���m���s\u001a�S�/؀��߹Cy=z��d\u000eC�\u0005�\u0007�\u0001v'�\u001d���%�;�Lr\u0002k���;$�2\u0010̻�U\u001bg�_�\n�AC#\r��MV����\u0014�Ć��>\u000f\u001a��F75@�\u000bb*\u0003fRyޣ�A�}����ح\u001f�c�9=��&�\u00029��\u00199�\b� ��}��\u0013�ZFI!S����q6�{�,ٱ��&?�\no�d��/@\"�\u0005j�����]\u000b�\u0013'ٙSH\u0019���\u001d�\u001f��J�\u0019}�#�ǰ�\t�SfM�@\u0001X�a�\ni\u000fZ���^���B}�\u0017\f����0�y��#��Y��[�M�{I�ö\f���.�^�$ui:\u0014:_�Ol8�>�6ї=qa��F��*�\u0014c:�\u0014�\tD��S���R��\u001d\u0001�8�#\r�M\u0011�yF�|�2�O�#K�0V7\u0005k?$n,x}�\u001fă�/�}Uk\u0014�R�\u0005 �ߘ!�21+\u0017��`*l>���K�\u0013�\u001c\t\u001bOI_nC\u0013�\u001d/�\u0007��\u001e�n���.5�T�\u0007\u0006�s,\u0000��4\u0016hI\\KA\u0017ҥ�/`�O���1��\u0011�\u00031T��:w���]����$唱��33�3j�,\u0015-?�A\u000eҾ�\u000f@�y�0�Pj7���\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007�\f�jzbۚ\u0007g���r�ď�����D��\u0001���|�*\u0014)� �\n[�t�?r\"\u0011\u000b�3~\"�&���>YAeί\u0011��\u0007}&w��a2�\t�e1G���٤&O\u00067\u0014���i��\u001c�i<_�Q2sj\u0004C�6��c<��\u0003v��2ɇ�U�@��,\u0011�����f*�o�\u001b���E|c[N�,�j�(50�b��aDo�+�Q�a�X4�'8��ը/��՟č��glǂT�Y4?�8��\u001cx�\u001c\u0015\u0000\u0000f\"4y���\u001f�L'Ս�{�$R�kd�Q�R���'\u0010J�$���}�}\u0011��g=\u0016\"���\ran�Q^�<\u0015�&\u001b���S�1Ӛ��\u0006\u000e�G<�Vj�9>,������\u000bi֡�B\b�dҥQ�\u0002\u0014m���E�\u0004;\u0012!���I�~\u001f\t\"a��lb\f��~�\u0016�ܣA9�\u0017 ��1���\u000bw�,Fर�� *�(�\u001b�]�h�Z��~�!�?��n��9~tq\u0016y�d,��\u0012\u0011�aF\u000b�C8�N�El\u0000�V��(k\u001c�\u000b\u001b�؜\u0005�\u000b\u0016\u000b�ͱ2�\u000f\\[���\n\u0005�Uͽ��~�7�\u000fm\t��)�\u0013G�#�d�}�\r�Xᵿ�'z���P;�6����+҇\u001c�Y�;8Y\u001cs=�\u0005(�����\u0006\t�x۵���4\r7Q���J�0�ehq�C��\u0016��dr�#�k�(�\\45�H�J\u001ez�p.�u�_�ٟ�jX�)�S�(d�\u000e�@��ク�ƜY��\u0013�\u0006\fl\r��9o?�;�IO\u0004\u0007�1\\_9�\u0003�q�=\b\\Ւ)����b\u000b\bURJ����\u001c\u0015�R��eoF�ܣA-�\u00174��6W>\u000egP�C�4�%\u001f5��\u0004\u0001��ȉ�\u0007`�/?��^di��$�\u0002�n˟�RbΫk�Q�n;}lj�As[�dLhbi�r��~�#<3ȍ�\u000ef��\u0012$@\u000f�4�!\u001e(nS+)r}���?+�\"#�ю�V�zE�) H\u000fߴ(\u001f:\u0012\u001f�\u0016�U]9i3�!��d�\u0011�W@n?�o~6�k�l/>���g+�C��6��b\r�,a�r!�[�L���eT<�\u0013JZ�tɝ�c\u0007_�$$;�;Z\u0019?�g?ث�jg�\u0010\u0014��Vh���\fq�B�H2\u0013:�>�K\u0002��\\��ٟ��\u0000���\u0015O\u0006l��f\f���#���i�-��j,��\u0006��\u0017P\u0002\u0004���6���^!x\u0016�A#�\u0017H��L�!�\u0007\\\u0001=@�7(�%\tؓ����)H�<\u0013y�E�O��\u0004��Bf9������c��q��\u0006|k�\u0014����\u0014�\u001d7��T�d�\u0006�\"G\u000fT,�\u0002ysJR3S��%Ll�h��[�}e�#�~�}��r$�\u0003�\u000b��K��a�\n}�Ҽ?��{\u001a��P��q��%c,�\u0016j�\u0005��$��hZETM?Т��%!\nl���.�a\u0001����u��3\u0003�Q�s��7����O�K%�[&`���D�\u0012an…���#��\u001c5A��#4\rm\u0004\u0003e��\u0017�j�`\u001f\u001c�\u000e�`���$|P9uRҶ\u0013\u0004\u001e�s�Z |\u0000a������fI����\u0016\u00014ңA0�\u0017\\��L�Z[ֱ�0-L�Pg�o�\u0002}Č�\\2iV|$���H��ݑ�\u0016D~i)��\u000f5Q��y�T�����K�7o$��S��\u0010;s��\u0013��\u001a6p)�N�-?9\u0019�K�Ρ��$��X�����\u0018\r����`j\u0004٦:��\u001d�b�b �\u0014��Y���?{�&�\u0018�\u0005u��YZ�^��o�[\u0017\"�\u00019P72T.<���(p\u000ehC����-*>�Pw]�����Y\u001b@�\u001b�0S�=�u�\u0003.�VE���e?+3p\u0010���~�ˤ\u001cq�y-�Ϧ\u0015\u0006�rgr ����-�^ù��J��\u0006��}H��~�h^k�\u001fA��\u0006\r,=\u0003Âr��W�`\u0007��ݫM��\t���H\u0015����A+�\u0017p��L�o9��D\u0003'K�+&ُ\u000fg\u001c*ʈ,\u000b�ēS\u000bf��׬�ܸ\u0012���s�f�*��`7|I�}��\u0015����Q\u0001�t\u0013�s���Ș�A6���W$S����p>�gx�\u001c\u0012\n��\u000eJ�2ϫ^B�\u0016�۵��\u0010���ч�z��t-&�ܖ|?N7�?���ŋ^-�,��A-�\u0017���It��\n\u0015\u0012��\nC\u001e\u001f1\u001a�*}7���,13�6t��2�\u001b�&�\u0006\r\u0019�3�C,\u001aL)�>� �;C�:8=�P�����0bY��e\u0013\u001eD˴\\��ny\u0002�^��M\",�C?τ\u0001��\nc��IW�YWKC��\f��ř�����ar\u0011Iy����.\u000bv\u001b}\u0006���#,�D\u001eѧ�_�VLg8�r\u000b�\u0012*�\u001a��#��\u001a��ݠ}�!���\r9��������\f.r=�1���6���\u0006��\u0007\u001d�o�\u0018�\u0002d_��ٲ*\f0Yw��� 5%c�\u0018�G�+\\$��J\u0005Eݲ(O7�Cv�dOtq\u0004�x\u001a\b�\u0007�e��~Iiy0�\u0018Wd��\u001870�@$vYo��A1�\u0017���L�\u0011\u0004�g����#�\\�\u0012FX���6;\u001a�\r��\u0007V�3���\u0003��ړ���D�\u000f\u0010�kIM\u000b�Dߦ\u0011��z�\t�Չ��s��,O�\u001d7W^ia���L�y��8^�&l�H��8X\"k�K�E8M�4@f�G�\u000b!:�Х(�\u0010O�R��^O�\u001e��R7dS\u001e��\u0001\u001e:_����\f�~��_��\u001a�ՙYKQDK:�\u0011�Vs\u0003\u0014��u�\u0012踢|%.@��\u0011a.�\u0001��U\u00042\u0005�Ýb�ImETfE�L<��\u0015-J��\u000bb��s�\u0001\u000b}\\����\\��a�~\u0015��\u001d��\u0002�\u0002�FY�O�\u0012\u000e �)\t*-Ԟg.�0����knu\u0011�u-��c���p���2p�m�})=%R�A.�\u0017���/�O{��Ot%{�n\u0007F��\u0005�\u001eq\u001ch����U�C�HXz��#�+Ѓ\u0005��\f�;!��dq[�i���-x]�\u000b8\u0004���A�h�M(<\u000f\"�B\\����e�m\u0013�e\u0004ŌD��\"a�6�'L-�ƨ�\u001cdmw���TL����ND��u��1�\\\u0005\u000b\u0007S\u0019�\u000e��ﭥtn��G;�4��\u0019�Lp\f�{ˍ���<��bd���2\t�#�zܨ�\u0000\u001bLUr�\u001e��s.X`_n|v:��B���-\u000b\u0015&���/H���_\u000e��\u001al\n\u0010��Q��}?Q��K_��2�\n�z2h�N�8\u001e����\u001d,\u0001�\u0014\u0011\u0015\u001b�U�g4����\u001e���\u0015�\u0002�ť�\t~����>�A6�\u0017���1���V�3��\u001e�\u000f\u0001������,LYD�d�.��\\7 \u0003�BM�?�U�r�|\u0015\u001c>���\u0004��^u��ya�u�\u0001!��f�(O&�,d\n�H\u0007�>?�Тӂa=���\u0002����2mƼr�/\t\u0006\u0012���2��Z���Æo�8�ٜ�_�V9\u0019�O��?�r�5_��gt)I�\u0015���%����):�`�,:\u0001*���\u000e$���\u000f6\u0007�\"�\u0016K\u0004���6�D�$2��RP����W\u0007\u000eBi�X\u0015Hzv��\u0010v���Q7B\u0017������tpUw�����q6����4O�\u001f�L6��>R�\u0015�p2]ڣ��\u0010�B�st\u0007��ɦ��§�*\u001b�\u000f,[D�w|\u0017����\u0011&��>��A=�\u0017Ԁ��x\u0018�_�\ryLA�J}f��n�k�t7+�#/Y�j�a? w:\u000f�\b�>n9�܈�X�ܩ\u0006�\u0018iNh�\u0002Q�^9���l�����ʝ�5n�\u000e?K0�(�S��V�L���\f�qxؔ1��\u0010i\u000b�޵r�7\"$T\u0004�3\u0005����.4�q�x�.�BC�orڮ�\u0018�4\u000b���m�Ph�\u001dʡsQQΟ�qP\b\u0014��sW5�]|\u0018,��\u0017�F�S}\u0016��\bp\u0017����/����ss\\�����ܹ�U�w\fk�I��L>�\u000b�%w>%O\u0001\u0014py}���\u0005��)������>TN��r�e\u0019=��Ť�V�LRR��\u0003�\u0005}Ү՟\f\u001d4�Y\u001ah�U�|�\u001a�Ș���r��O\u0003r)��E�A7�\u0017��K\n\u0006\u001f��IMA��7���^S�u�6t�N�j\u0000�AnX⌸��\\l\u001c���\u0010Ք�/g\u001b\n��\u0013�����;��\u0000$�{\u0012W��\u0001'����\f(hr����4\u00066�V�\u0016��\u0011y\t����v���d�g�\u0006\u0007zFI\u000b�W\u0007�7��[8�C��\u0019\b�&����\u0007/�s�E��-\u0016\u0010F�\\���u�*+\u0004�Mu�Q\u0000e�\u0018�$tb�#�s9�\u001a�2\u0006i\u001f���\u0011�|\u0018\u0006�L%�\\{R��H\u0017\t�=�*�\u001f�[�Zqa\t�W4Ӵ�\u001a��\u001eD��Xc�\u0010��[�$��r��\f�bߕ� �<�I1�J�R\f� t'ѴO���\u0003��Q\u0012�\u0016\u001e��|`��\u001e�\u001cH7M�(S\b\u0010`�~�y�A6�\u0017���I�0�`\u0016\b0R��РWiu\u0006��|\u0014\u0004\u0017gR��Mn��fE0�]�;]\u0004����&,��2���OS\\��k�G\u001a��e�zm͂)��QV\u0016�\r�Ԥ3�bh_�~z\u0016ǃ�����H��G���M�bJ�=�xZ\u0005�b/����`-S3\u001e9��}0���-S8��Ȕ8�v\fl����\u0002���g>��p{@��s\u0019�n���u�g?�'�\"�'�\u001f�}�\u0016\u0016:#O�=Z��\u0001X\u0018�'3D;��t�\u000e���P���S=��Y�\"\r�g��\u001e�Qisiy6\u000eW��oÀ҇\u00171\u0005SJ��&���\n\u000e,\u0017���]�\u001f\u0018?5�N�\u0003�*K�SsTdy�h��N0\u0005��FGM�g\"\u000b\u0002�AV�\u0018\u0010��L�\u0011��­4\u0001�}a�\u0016��G�\u0017��X�sL\u0010D=����^�&���\u0015\u0000�|%��\u0011�Kj`G��\u0012\u001d\u001f=-\u0003ˇ(%�i>�>b���]z)�I�.8�+�#\nU#(~͟�\u0004\u0006�H;0Ӵj-���\b��U���v�O\u0007L�z�ˍ!\u0011��G�J\u0005k��;\u0018�aj!���A�\u0005{?��?\u001e���s\u001as%��3VpYM��\u001a:���<�.�z`!=\u0000\u001fr�#\u0011[��ڃ#i�'���S\u0002ܦ�\u0001՚8\u0003����#�W���R;>$�T��u�!C�\n��\u0004.1U?� 5WQ\u000e\u0010�@�l�:�w\u0010\u000fM\u0017\u001d\bW`S��7\u0000�s�\t�ѡ1�8$\u0019jd��y���q�r�( ڙ�\u001bG ٖr����~�L�oJ��#&��-d\u0002[��(�\u001e�k����$�A �\u0018$��X��^�H\u000e�3e�?m�Ԑ�\n+�n\u0002\tO��m\u0019>��\u001f�\u000b�iJ�jH�`�sЪ�\u001fs\u001a\fQ\u000e�R#p�\u00153d���U��\f�s\ruO\u0006~G�\u000e�����\u0004�.9*؝`��ݸ�:\u001a$y�\u0004'�\"VY�F��5�\u0003Lܴ�Οx�����5����OЄ\u0003o�)a(�\u0007���\b'x����S1\u0014�/}�RF�V;�\u001e��5%�h�;�3䇦L+\u001e��C\u001ar�Ч?\u000f���(�<�se3�w1@�_iCt�L\u0019شA?�^v�n@��G�\u000b\b���g���[�\r����{�7\u0012O��\u0017\u0002�8���#��K�<\b�A\u0003��\u001b_m_T�Ք��\u0007�A\"�\u00188��X�\u0017�\u0011\u0005�|LR�e���\u0017\u0019�\b0\u000b�\u0018�@�\u0001�Pu\u001c8\"\bVFB�\u0011�.1=D\u0016\u0017��R����O1��ė�\u0019���\u0000O\u0014��c�\f������]jڕ&�\u0017��,0\u0003��\\�I���\u000bvR��W� \u0003H�ݝ��\u001ac��� \u0006}�k�\u0011�#���T�*}P�,g(�o(�Y�,\u001c\u0010��\u0015\u0000q0�\u001b�ƵW�d-�-�����\u0014���%b� �:��}�\rY�N�|0�\u0007���2�5C6\b�=��\u001a\u0019�t�D�Q�z\u000bF_����ʼn|@w\f\u001d��\u001ad1e�VK��!�ú�\\_\u0011\u0003aRqÒY]%�\ffS{��\u0003v��>0\u001f|�\u0019%���A%�\u0018L��X�ĸ�k�!'�t�\u0000��\u0013�].�\u0013\u0003\f�h\u0001_\u0012aS���=P\u0014- �\r�sf�T�/���D�\t�t\"E\r\u00181\\\u0018dGnT���#\u0003���'{y\t�2\t\u000e��4�F\u0004\"��K*\"�\r+���y�Ձ\u0018omO�\u00100�R������°�5L0\u0012[ȏ�>\u0016~\u0002����S���I�\be��+z1�/�h�\u0001�ǔΌ�8gh�\u0005�H�y��X�TdL�\u001es:�j�(]�\u0012�\u0015��]%$9��eQ3�\u0016p\u000eL��:���z �\u000f�$�Y�\u0004��o�1�j\u001d\u0007\u0019����n\\\u0002���ݜ�\u0013��9Ŧ*���i��\u0019\u0010^��\b�\u000b�F�D�uk\u0016(yqnue�A!�\u0018`��L��ڣ��>KȎ\u0001��Ҁ�f\u001a�9b꼠�V���N�ƥ�\u0003\u000e[G:��\u0004�ǵ�ٰ\u001bs �]�\u0017ªϑ4�P�\u0002�+�\u0013\u0012 �\u0018ښ`J!�x\u0004�\n6%�'Ԓ �МC$�1\u0004��\u0000�FA�x!e\u0016�;q��)cw�:�uN=%ld�w8\u0016\u0000���2{�s��=/����wt�-zg�U+|�+��;����\u0004F�\u0005h\u0014��!x\t*`�n�M�D��a�9t�\u001b?!oI�\u0011��L���h\u000b�:U�Ժ\u0007\f\u0011]�Ƣ\u001e\u0000=�iZ\u0003�\u001c\u001dv���.�\u0010�&y�=i\u001c\u000eLe�lX���\t�T�E���R��OzT��A#�\u0018t����G\\O�)c\\����TzW�\u0019i�\u0016���68�E\u000e�ё���2'�\u0001�co�`����\u0003��Z\u0010\u0004���.c�?ڴN#`9��'����=�K��U�5��=h��T\u001eOM*�\u0007\u001e\n%_�J{\u001c�\b^�;T\u0012�sm�\u001c�@3���y%��\u0017\u0014�_��s�\u000eI_S\u0003��o��\u0001\u000e�Ş�\u0018p\u001c�k�� ��޺gt\u0003G1��0-�������hD�\u0016����#��Q�\u0015h4\u0017�B�0��fܷdR��E\u0017����T-��AݕՁ\u0012kuE͜�`\u0011n��,\u0016�C�1\u001d\r\u000e�\u0003Iw!�&�V���#\f�\u001bw^\u0007n\u0011S\u0004?Հd�C\u001b\"�C3��Q�h�X!s�~\u0013��teҒ�@2}��FO�DW�T�3 j45��e�w�\u001e��}uEcϢ9u!�$��\r��ԍ8\u0001��\u0002�\u001f2&�א;�HE��ͧ��s|�%�fZ�WAI���'|D��������A)�\u0018���LхZ\u0001�1~�\u00161�\\�+f.:\u0011�;�\u0019�ѣ�U���K�^�/����\":\u0017���d�f&��fQ\u001a3`�\u0001=9\u0006X���A<�y�a\u0016\u001b'\r�C�\u0016����.�@�`��\"������!\u0005E\u000e���s_O��rT�q\u000b���\u0018\tz��o��^PE*qe�~\u001b�\"[٨ݧQJ�Yx���\bz�r\u00044��\r-�3�\u001c��C��\u0003ab`c^�\u001c\b?\u0017Z�E\u0002�\u001d��\u0001�\u0016��\u0016E\u001dS��lˮ*��L\u0016�}z\u0014��?�;��\t�����&��>�e�f��\u001d���ʵu��`�W]藗'_\u0006�L�Y��\u001e�ʅ���|`��~,mL2�v�2�O�B�B\u001b�A2�\u0018����\u000f2[!���\u001aT�����\u0003�:�\u0013I-���CQ���ٝ�W����%�\u0011��;�\u0003����.�2��\u0007*u�.;5˂\u0017\u0005S�m��\u0013��%��\u0012�\u001c�ʡ&A�g]��l���_���e6g�\u0010��#U�\u0019_\u0017�v���]k6��'\u0000�r;2��4\u0005b\u0017\u0017�4�� ��8�\u001f�I�u\u001d�Ⱦ���\u0015>N}\\�f�u�rymZ6\t�\u0015[���ju�����/ ڏ���c����E\u0016�%���;�R=���\u0005`\u0013��\u0015�Q�л�`\f�\u0016�,���U�o`^�ǣ\u0007'�5���\u0014\\[q�O�Z�\u0000l\u0015N����v�%�\u0011�O\u0014���\u0003XB*�W}q��+\u000b��ߡ6�H��A*�\u0018Ā�L�2�q�1z{\u001d\u001c|^%;�BS��c�ƻR:+%R�i��\u0011/�\u000b��\fF R���\u000b\u0010�U�)�+$��Oʞ�I�ZL����!�+�\u0018m��N\u000b�T\u0019�}���?��sV����K�e=\u0012ԏ�Z�\u0019�\u001e�^-R�K��\u0012��6�)�R��[�&�2d���\u0004�ZK1*:�M\u0014ьmו4�n2+pe6���om�\u0019\u000f���\u0004~t�P����!�㞡�xi+����=�:�$|� \b�\u0006�\u0000�@�t�s\u0005\u00172=2V\u0010\\��f��}�;��7����^J��������m�0�L�ro�P�L,���)\u001d����͏����FM�\u000b��\u0007}��\u001dU\u000eV��t�O ̄A-�\u0018��5-4J�=� \"tk��|�\u001b��}x)C�\u001b����\u0016�����:��c\u001e\u001f��=�4�c\u0018�+-�x�k{��h���\u0005��*��f#\u0012|�� \u0000ԏРC�\u001d\u0016\u0006��\u001a\u0017��լb\b��ʕ�&�ZpD$�3��\u000bJ)#�~�2��.)�X�2���\u000f�\u0011i'����%m`��h3�\u001e;�\u0000[Y8���T�g�x��\u001e��~v8W��O��h(�0D���\r��\u0007\u000f@s�:��4��!����c\\\u001cXP���8�rG\"���W�y�h�'�\u0019����T[��0|Kp�dL5�KbEɯ�\u0017(\u0002xP���R��@�\u0006��\u000b�xh�xN\u0015C��r\u001a�J�g\"��NA\u000e�H�G�A0�\u0019\u0000��1�@Ҏ���6\u00142�P�u�^�sm�\u0017(�[�;��Of��\"\fꮚ����D2~O.�����ɯ�\u000e0.,L�\u00119bw\u001b������#(�M\u001e#eePNf�2\t*WB9�wkMӀ\u0001��_0�eߺ�ʘ�m�2��)��\u001e�;w�S��\b��v�Y�\u0002��Y�·�5�t+\u001c\n!�\u0019]��?����\u001an����\b�`�\u000b��Xʅ��=2Kt���\u0016�~�\u0001{�a�_Ȭ\u0006Jۑ�RY2|^�~ԓ᭵p�\u0015�\u0018�\u0010��.�R\u001bko��\u0007`\u0015\u001f؏v\u0014#ɒ5�@D��CKH�\u000f��v�\u0011�v�1� t0a$d�Wc�\f��<\u0017�ƿ���\u0007\u0010TG=r��d|Ze�A/�\u0019\u0014��1�9\b<_@Z{�^��\"mc�\u0017��lj�`���5&v%b��\u00113��(�\n���\u0003\u0019!O�Ҫ��b�x瑙FwND�G���\u0018�\u001c%�`\u0019Q�\n����#6�x�S<ޢ�c��t�\fa��\u0004����7C����JbC�\u0006Q��8���nY�Z�0����1O�H���h��\u001a�d1c���\u0019���уF/�ܳ�\u0004Q�*��\u0015T�X�\u00025,s�pJ=;'\u00063� M`^A��{D��4�\u0003w-�~�\u0002Vl��\u0002��8�O�\u0011p��[�[%�����$�����ש\u000e����!���n\fo��I\u000fHMG�Q��gɨa�\u001e}\u0018M8 ���8zL�\u0018 v|�aj�~�Ai�\u0019(��}��@{\t���zx\u0002q��\u0010wP<�\\ͫAc(�\u0019d\u001e)�n���n�e�\u0012Y\u0005=��q�n�m��\u0001ɨ�ATF�\u001d�\\v��\u0004̶\u0014��s����3��#\u0006��\"%^~C��\u00183���R\u0016����}��-^x�\u0010���ތvU�H*�\t���h\u00157~�_aӘ\u0015��?=����� ����\u000b�\u001c\nt�w��\rj/�\u001c)fɓX��,�x��_q=Qz�V`P�<^k{\u0018m��f�s\by�2h^>8��+����iQ\u0007�ʲ��h�^�\u0018\u0002���2A`�2I�[.b$\bQ��\t{�\u0019���\u0002�8`c-(�D&ͭ;\u0013r\u0005X�\u001626�r�l\u001c�S! ��\u0012[Nj��1��$^��e\u001a9tB&��P1Gw\f�[�a\u0011`�\u0018؂�\u001f��ܵ<18}�d\u001bȡ%\u000b\u0004�G�n�}��v�C�8�A#�\u0019<��1�FN�����\f�\u0007�8W��4��q˖��0\u0010S݈S~#�\u0018\u0010�ͅ��?rO���\u000b惼R���QcJ\u001b\u0018�ߕYN\u001c����\u0013�n�[�mf\f�Z�x{\u001e8z�t�ȎY����\u0003�&r\n�?W\u0019\u000e����\u00184e,'��\u0005����˒�*\\���DK���\u0014�\u0007dL����U\u0000q��\u0007�����|m\u000b�(�\r}�N��-�у�02�\t�\u0015�<�\u0005�G�;\u0016�?�B�\u0010\u0016\n�M\ny�s\u0005�b䗞��\u000e�w�P��=���\u001d�t9H@g)��2\u0011��@�\u00183{��\u000fg'��\u0015�\u000f�\u0013\u0015����\u001b�������ʴ��}�3�q\u001d����-\u0016,�A%�\u0019P��L�ٰ2�f)0БN��/O�_;\u0003a�K0\u0000ɑ��9�3�n]�Dn��N��.�>괖ظ�U�.�\u0015\u0003��/���`S�p���A#�\u0019d��M��N�\u0006���S�LQ�+�^��\u0007�\u0006I\u0014A��9IR{�\u0006�!��$ �\u0011*TH�\u001e~��o�|�i���c294\u0013BQ��/\u000f�����\u000e\u0000������\u0007\bN�}動b�8A,Dp%��\u00035�,SA\u0012�4���I\u0000\u0011�\\v��h���'A\u00159\u000f�o��?\u000efT�)����T����R��|sү�6�\u0013��\u001d\u000b=Vc\u0011T�\u0007���(&��Tߴ��P�_9��H��G� �\"��H48���\u001e8�Α��X���\t\u000f�Y����U\u0003�ԐvO�������S�t?눸�^\u0014���U8�5\u001e\u001c\u0001#.\u0004\u0011b\u0003Q�\u0001�d�I\u0015���Z�a(�\u001a�R6�A4�\u0019x��M\u000e��������\u0004;��d�?������.=?�\n�Y|��Q�Wq�pTqjP\u001a�\u001d �F\u0019�պ]G\u0017ʱç�[��\u0000n���\\��T#u��!�1�vjN��r�ha�q�}�����\u0001$�K��\f�=.\u001f�2\u0004����F�8�{���>d=�Kb\u0003@\u0001���2V.\u0005M�&u=bD��3�~Z+�L��ݜ&�i�~:\u0007�d��\\>��rZ�+Ml�Eیس�X�\u0010�\f�\u000bO���Z�\f煼�\u0001Y���?�\rL\u001bT��jx\\�n�\u001b�Wό��\r�@<�eu��&\u0019�S�Y�\u0011\u000b\b��%��\u0007\u001eJ��U��淧0��|�U�����v(t�8�B�W\u0004�.WD\u001fXt\u001d�5�A6�\u0019���۹a�eQe\u000f�Д��\u0005N~C�����fD-O�Ә��\u0003Κ�S\u000e�N�\u0011\u0004+��gM��l?��b�\t�\u0006S]�:\u0000/E~��֮�����\u0007�K����h^�K\u0004lR�,��#�J�.i]�K\u000b���~4r[X�\t� F(\u0011�\u0018�\u000e���CEB����\u001f�xP�\u0015\u001c\u0015g����G�w)�r\u0010P�A������\u001bޑ\u0016>�=�z������M��j6�P���4�x��\u0003�Fh\"��+׍j�Ԛ�e�'lQ�Ck��U'��4�v�,_\u0002\u0003���[2w�\u0005\u001f�9�\u000e�9�\rs��*�B͊B��n\b\"�����Q��[q\u0005oPX\u0002�\u0003����_I�+5��]���v�g��D\u0019$��G�A2�\u0019���۷ԃD�T\u0015{�\u0003��d\u0016�w6?2T\u001aV�<��\u0019\f���\\���ɺ�zY���F�r m��� ��/I\u001f=A3�p|\f�e�>��H\u0011{\u0012���Șb����=f�Z�*s��Ň�U\u0019\n�o4��IN��@\u000e���C����{4�A6}���\u001f�w@��+�\n�}�y��{5�\b\u001f��F�e\b��疼��fz�����j��V�M\u001e�Kp��Ι\f��װ�N�\u001b�`NB�,�x5M���b?#YM��~4��\u0010u\u001b\u0016�2�̌[ml�A\r���S�V���\u0004�R�Y��rf�l�\u0005hZ�kG�A5�\u0019���۸��c�x~H��{�}��I\u0000/\u0017�ዤ?0C�{��\u000b�y.\u001dX+��\u0019���C�s U�H�h�\u0016zƎS���`c�\u0013�.z��m>ˆ�O\u001ct�\u0012#�ms���\u000elI\u001a�����\u0012�?�G7��\u0007�~�z�\u0014\u001bw�U��sc�IA\u0004\u0015���b\nٺ��s�w(Hv\u0013�a\u0007/^\b\u001e`\u0002���$�e\u000b�\u001f�7:#O\n�3P��\b�\u0019h�'�Wi����3�Ki!�t]&fR�[B�L�Ҋ먚�.#�A�\u001dSX�9�U&\u0007�Bkз\u001a9yR�ު��Gy�6.C�\u0019�I\u001a`�0Ƅ?.6�!�}�ul\u001a�\u00045tX\u001d0H��q)\u0006Z��\\:QP��\f�,�P\u0011Oq`�c�\u001bG�A6�\u0019Ȁ�۸{\u0015\u0013,s9cc�h��\b��\u001c\u001fY?�^\u001e���#w�\t��\u000b�n��~�ď���`\u0016�g*a�l�?$��v#�\u0001�RW�4\r%t!���c:\u000b�s\u0012\u000e\b��H�YJ��9�IA_��r��+�z��I@JE�ے7���\u0015�\u0017b0(�_���TZ�\u0013�{�\u0010I5OI<��>����m`��0�;m�\u0016K��\u0011Z�ǧ���-\u000b���/�\u0010����Zw]���,M_Ҵ���Sy�\u0016�^�p?�J���\u0006�9�;\u0007L��~8\bh,�\u0012�+X��3mf�p0`��y��?������,�\u0013�z{���� +;b��O:�\r!�����.\u000ff[`��k�\n�\u0013�4�\u0005�F%�E��Ҿ\u001e��y/��6e��\u0004p�_�0ۈS\t��\u0014��)�\u0000�\u0016\u0017*����V\u0018p�T���|��\u0002�j�7��|��\u001dg\u001d\u0012^��n��\u0003�#G��rBl<��/'֮0�:b�%5Hb�\u0012E�e�\u0000���ر��u\u0010��w�;\b��\u0016\u00037\u0018\u0013\u0005���\u0012Ҡ�\u0007�\u0000�1��\u0010�\u000ec�2ک�8\u0012�\f�7\t�\u001c��\u0001�Þr�\u001fΌR\u0002�!H�AQ�\u0019���M0E2����\u0014\u0004D\u001f\u0012\u00115Ů[���|\rr:\u0005\u0019#���ʠ�_�ڸ�\u001c�\u0005uU\u00055\u001b��Olj3\u0003��Y�i�\u001aBˬ\u001eθ.l��U\u0003v6����N-_\"mm\u001bB�iZT�Ǫ\u0006y��{ʮ�Q����r8�.��o�@)�\u0016��ܱ��\u0001�-�\r@�\t��| �󃱮�\u0018���#���q��\\L\\�A�$�U�$��C\u0010�AeՃ �8��H9Na\u001d��\u0007�%)��$\f\u001ePlF��n\n��J\f��=\u0011YH7�_ѕNu��k�\u000b-�q�CA�y\u0004\"SYo\u0006\u0011�Sr\u000e�f��!�p\u0010�C��\u0006�T��:\r��l��F\b\u0019u}Pf���՞H6�Y�j\u0015�B@���\u000eCM�\f\u0003:�\u0002]aSIa�Fax�/\u0007�#�s��_�\u0002\r!f�AD�\u001a\u0004���\u001c�=��l�UwK����(&\u0003�X\u0005�\u0001����\"؁G��x R�]�{�����g�\r\u0004\u0017�v\t��6�����h�\u0016^�{�%e\u0015'���]ff\n\u001d�\u0006@=\u001d�%�I(Җ�5�\u0015�_���\u0016\u0001[�$k�Q�(�\u0013K\u0011��H\u001c�3�,�ֺТ�R��\u0011+�a���iR\u0000=I`�Xɑ��QM���\bQ6\u0012���Y��AW�H�C/�g{\u001aB'Jh�\u001czK�\u0014�`��g���<И�\\Q�[����\\\b�iʇ�Ԁ��~6.���\u0012�g\u0010�u�\u0010c�[\u00158�\b\u0012\"XG\u0002��z�\u0001G\t�uz{*s�&\u0004���1�I\u0007�(t�\fޑUoo��O\r�������o�w�O��L4�{�~{D�n�ֻ��C�\u0011$vS5��a�Չ�\\\u001a�&w���\u0014�����\u000f�\t�\u0011nlL�^\u0014�blI�,�\f���O]���+�ox\u001db����\u001b\u0016{1>\u0002��G��;r��-m��?��\u0014|�\u001a���.�BB\f��\t��J�%I\u0007�\f\u0016\tZ�����m���CC�N��S;i�7Sc�\u001f�ƕ���UiQ\u0015]���\"t��\"\trs�\u001f]��-\u0001���lE�rv��ܷ7Q�~�\u000b\f\r����\u001b��D�$��\u001f�\u000b��s�;L��^��飷\u001c\u000bvutgͳ��\n%��eW��S\u0005�����aM�0H\u000e���\u0018$�Ӎ��C�^\n�W�M��k�Bd�-\u0015I���\u0005+�.�u��d�\u0005C�w���BwI���|�x\u0012nR�\u001b���Ԭ\u001e�{[�A*�\u001a,��X�y['�\u0006���q0�\u0017�#�7�I\u0000�:���+�LXu\u0015�5�&mTA\u000b������R0��z\u0016�\u0012'\u001f\u001f-���@��\u001ef\u001b\u001f�S���7$; �9\\\u0014#�\u001f����w\u0012�d\u000b�\u001b/��k�F�\u0019\u0006�m�d`���\tןXD�韎�B�?7Rm�X\\\u0003ށip^i\u001d����%�(�4>v�2���\u0012W���\u001ae�]tN\u0018_�@\u001d�/C0T\nу<�Gv*1wA��ѹ��;'��� m��_v9��t�Sy�%*�w�\u0003rm�J��\u0010����d0�r��\u0019\u0006\u001bf�Tu��yC����,͟Kـ�m��\u001d2�\u0000��h*92�d��ۣ�R8�9XQѣA*�\u001a@���m_\u0017��\u0019�X��*��!�>�4�\u000f\u0015]]�5\u0019�H\f��4�7\u0000��p�%\u0012p���B�+\u0019&���\u0016jB��=�W3��o\u0001WV\u0005Q�L�6�\u0010d�1�\u0005�9X�H�ޛ�j�u���\u0004�\u0014z�Ŧ��,��d�/���C�a��c.��\u001e8$�;\u0005a�t,����:U\u0018\u0019 ��Ҿ%�~�7F�\u001e�)d��&���TЈ����\u0000 �t\u001eU\u000fi��\u0019��\f��~-2b��%rJ�2kCN\u000b����\nׇ��+~eE��\n�(/��A�\u0011���<�� \u0019�\u000b{\u0014�)1�\u001a>\\��E�ED��\u0003�\u000f�y]��[7�p�G�H�$�9�(�߱3����݊�*��0�A-�\u001aT��N��,�6tU\u001f���(�}/�:L��}����!��`0d�~d'̊a�c����LSފ\u0011�<��>�u7�3���'C���\u0001�Q$f��\"V��W�~h���}�+ŀ�\r�\u001c��\u0013\u0003\u0002�����\u001e�\u0013�F7,`(O��Lt�k�\u0003&\u001f�Y��n�\u001b�\u0001�\flP�o><�J���XO&�{�\u000f���Jq)�\b�eY\u0002h�w<�W����G��\\�k����'|�I�\r��U�x�������m#\u001e�\u0003?�\u0015�\u000fۼ�|��]��\u0014p����zO:4��@Q��_\u0000di\u0004 0T-�.\u001b�&��S\u001d�\u001c���\u0001�\u0004Q�@��]�X>Y-��}}�!\u001b\u0018F�?\u000f�A+�\u001ah��L��\\{�z\b;���o�xU7{\u0012��@���ŋ��m�i�sJ'I�\u0002�:�\rg��Ф�]Y�xˆ\u0011\u0017�<���I�W�/���!Y�-��j�4��̷\u0016g2_\u000b��g\u001a������������_ɱ$�\u0000\"ធ\u0016�������9&\u0015�{\u0015\u000bG�t�(��[X�1���;*�yA�l\u0003ڷR\u0006\u0012D�h+�\u001e�\u001c�m*3gG\u0014:\t��J6\u0006�^I�a���X3��,����!80y���4K�6\u0006�Nv\f~ժ3\t�W�r��f�A��\u0013:��mb5���_\u000bR��\u000e�s�J2\"{���{*宅���p�\b��\u001a��F��j\u001c?���\u0016dC��\u0003|�r ��A&�\u001a|��L�vp�_R�\u0002����\u001a��_�d$Z~��7o��\u0018פ~��Ӱk܍��\u0013�\u000fo�^r�/�aZ���b�hk��\u0000�P� T\u001d]T[����(���\t��y,R�&�x-��j���\t�,B���T\n����u�\"��\u001a\f�\u001f�B\u0010�\u0005eQ\u0003߹�D\u0014�A�\"\u0013�E��?֯���#\u001c�c�wGϚ���\u000b)\nSd�d?'�m�s�XŸyFeQq�J[\u000e\u0014�y~42mQb�g�W\u001c�����*\u0004\u001c�|��Ic\u0017�sV>�G�tu�C�=\u001c�HN\u001f\u0011��db~8�M��V��x׈GDAF���ʞ�D-�\u0013Þ�\u001boP�d-�\b\u0004�\u0007;o�XP��\\\u0012�A3�\u001a���XϏ��r�㆓�\u000fh�g8'��i�h�s�\u001d�ŊM�A\u0017'Dk�˰��D�z,\u001a�-��\u001b��|��\u0014�p\u0018+���4Y��Ȱ��\u0005�)��m_�bE�\rX���\u0000�\u0019g^Y\u0018AM�ѐ���T�F������F\u0001�!\u000b3<�8by��]\u0006���Ÿ^X<|\u0018�A�萍U=cN�2\t\u0000�hi\u0018�n͇B?\u000b���Y�R~YPS\u001f�%u�(&j!�\u001b��Fb���h]\u0012\u0001���p�����S��iUE�(*������Ro�[+����z��'�`�1K\u0004\u00003t�\rC���\u0003\r�\rޞIyᵛ��\u001c�*�痀��|��t���U��)��ʀ\u0001kBI\u0006�xh������A1�\u001a���L��\b)���K�\u0000ќ\u0013���i\u0004��gZ���JƬ1\u0006�\u0018�ߺ%�4�֓!�0\u0015�s��\u001d��W���,\u0010]\u0012�}����qc���~�2�����A`\u000e�g)�\u001a�c�6�l=Q��U��9p��ر:����1\u0014_6-=\\{��)\u001b1�K�\u0004`җ|��2q��7)�~��6\u0016�\u0005�ȋ���\u000b���}�\b�R�K\u0012׻?�\u0015^dA�F�@Ȏ���)\\�������\n��9\u001b倕�7ָX MNO��},�\u0006�n١dXl��ދ�$\n�ۼ<{�td~���}�\u0011�k|\u0001\u00013\u0015���[e�\u0006{���(Pee\u0016-@���_s=�?K�\u001f4�\u000b�$��Ɵ€�N��d�A.�\u001a���L��n�`\\po?ÿ\n�s���Yק�\u0010�x@�2Z\u00005��!��^+l�����j�\u001f2��|\nȒ:�lbe:\u000e�\u001fQ�\u001d�4+E�ċT�\u001fM�\u0017c���E:b��t�pŒܐ�y'\u001d�\t�9\u0006����h'\u001a^���\u0011_��������:.��\u0018�\u0011�S\u0000�l�\u001d7��ƥ�1\u000bB\u0016^�M�Z���<\n���KŲ��v� ��\u00128�7\r�\u0011\"�󞇯^_�8k\u0013rCV�\u0016|�_UQc�V<���J_��4\u0014�>~�כs`@<ǖ;�`�\u0015�\t���\n\u0002�ϑ\u000b-��>c��a�K��\u001b\"�\u0003\u0016^���ZXxbX\r$K͠*@[�6��\\ ��2��m�Z��A*�\u001à��m}��J�E9�^w\f�|[KwAX�8�<��'�t-��m4=L�ꐉ\u0005v��\bAg��'�\u0010wٽ[Qs�V�\u0000,RI��\u001f��\u0004�Ā����;��7��{�\u0019���\u0015��#�rǰd\tB/s=�-�\t�RS\u0004����\r8�4n\t.kN�d\u001b�\u0005�x軸�u�)>\u0015:#\u000b�4�\u0001�\u0019$Vk\u0003\u0000:��=\u0006�\u001a̹��@0]Q�<\u000f��\u0011��DDž�2\b�[��C��gh��-\")�W>��fǓ_��qZS�p/���\rŮ�R�E���\\�]���l7�������͗�\u0011�d�J\u001fRh�i�*r�F�\u0002a�Tc\u001a^Ea�륆�y\\�\u0014\u0011\u0011\u0015�eI��A;�\u001a���M4&�\u001c�,\u0018�{2�*\u0017�hc�\u0001�F�dqw9q�\"0��r�\u0014n���|*�F�\u0013N^�mwI#��\u0007��\\�*֝͐��R�I�̈#`�\u0012\u0007��۷�'o��Ѧ'd+�\u0003:\t��ym��UX��ĭ���E(\u0019s�\t��k9�[�\u000f%xt�4ۻ�[�\u0002_\b�\u0010\u0018���}t;��˝g^�h\u00170���!*i�-h�p\u0012��\u000bJgl\u0004�5��\u001c%�|u������i\u0014u���@3��r�CΡN�k��S\u0017v��(\\c�{��3�aizs�x#4:/s��\u000b\u0006[�#���������h�\u0007W�/�h�EI\u0016;t�F8�\u001d\u001a_�;VZ\u0013\u0018�\u0018.\u0010�Tb�?1F\u0001uݷ\u0014�: y#��̆��R�A>�\u001a��L��4.\u001c\u0019�@�\n\\\u000b7t��a��zf\u001a�x�k:)9�^a\u000f���X\u0013\n�N�mn^rQv6*%��f���\u0005���y�*r\u0010fqS��3�>l�q2f��$l=\u0002�5Ƽ2�\u0018�\b\u0019�\u0004���f�=�M��~����c�>!�j�7�\n��3�9;�9�\u0000U\u001a�IIk���D�D��\u0010�����\u000b��jb7\f4!WnO�����.�Ӡ�����\u0006PP���\u0017��\u0019҂���':�zaw�?�\u0007�\u001ar�%]�X��V����n�%\u0006?\u0013�{�M�f2s���|�|�'�G����\u0006u\u0003>҅=\u001d��\t�9�����\\IVM���|��]2��S\u0018�\u000b�4\u0003\u0018�D\u0003��k|\u001c\u001f�|l�{���ѣAA�\u001b\b��0�<�I�j�pz�L�\"P\fe�\u000e�\u0002r�\u001akb\u0013 \u0006\u0004�\u000fx?ʮH$Ȅ���y��?�G��J�됙+!�\u000f`8�z�'�pD_��ͼU��as>L��v7A�~׿�\u0018�\u001f(������u\tT�M\u0000��c����j��&v�wc]?_�c-\u0000���P���%�n�j�Wx\nd��Ýʇ�'��T�:w/{̫\u0004��S:_S�X̚�86�\u0005\u000fS�\u0010���e��>\u0016���\u0012p-��5�4?\u0004n���$�&C�V\f�\u0013�*k�.ڪw�☱�G�oF�\u0000(��9���>P�\u0011\u001aZ8��\u0011=�N��\u001f}~�7'C�2l�\u0011��๭4[��{�MP��\u000b�`�6��\b\u001c1����:��uM�9Y?�A<�\u001b\u001c��X�P95��h�$\u0005ݣ\u0010�)*k�\u0000��\u0002�\u001e`Á�\u0006\u0015�5\"�;0���S\"W��,w2��w\\7��u�t�(j��\u000bk��E�O�\u001fu�ހn�$`�\u000bX7�u\f|�e�\f�a\u0018\u0015�q_��\"1M-h�A��\u001cr6ZR�^�\nV�\f�5�\u0007��Ek��T����[X$�]�\b\b���0�6̂���7_�J�\r4(W��\u001c��V�q�5��X����_��.�\u0014�W*΋�–\u0003M���v�G��\u0002��&\u0015�K�D��E��S��O\u000e㩬\u0018�-N�~a�0kc�\b�^\u0003����{=[\u0013�\u000b�\u0016�_�6���]�3��ښ�����1�^\u0014կ�dF�muˇ�R�7�E9��h�Ӏ�A>�\u001b0��L¿\u0002���Q �Ƥ1|q�Զ�=\f��@���\u00187�#�\u0019e�]U����\u000fiF�fJ�ժ����K{x�_\u0017�*6U��\u0011C�R�w\f\b��9S\nw�\u00038l��\u0007\u0001>��@(ӥ\u0000�jձS�lce�\u000e�C�я���'\u0016E\\��\u0011\u00070X����ߑN�6l�XV\u0002R�\\�+�{�9�\u0002���|��$+�����*\u000en�'�T\u001f�\u0000����LrO)lw���4o/m�N�c�x��̓8��u)�\u0002r\u0004~�A�i9���Λg��ͤ3#�9�#��Ig-񋃁�t�0�&{��ћ*�[��ڔQJ\u0010$L��|UB�p�@�\u000f?��H�\u0000S\u0014\u00010��%���z\u0004\u0014��\u000b\u0016�\b���\u0011�S�A;�\u001bD��M$�^�uc\u0018��h��x�7\u0016��\u001c\u0005\n��`\"\t�b�\n��\t&�S�zAob.킁$,\u0001�KM]M迃\u0017>�q\u0007��7�$�Nf�\u00043W\u0003��O�\u0003ū�l\u0019|\u0015#���o�\u000bj\u0013/M\u0004t\u0007\u0002����7���9�\t��o�Ķ͕�N8\u0003�Ƀ��o#\"����� �\u0001�X�;�x}\u0002�o\u001cvO\u00164����#XZ�Q�������j�\n�a\u0001�6�:8��e�d�3*#K�p\u0003% �+�A���ͩf�\u0006me\u001a'/�\u0015���^a�L�g�=�\u000b��\"\u000fg���'��8j\u000f��ˠ+�&[A\u0015:�\\���\u0012c�w��x�V�I1���&T\"8V}��\u001ek����[�����dI\u0013�\u001f�\u0005{lj���P�7����*Gi0��\u0017�{@�1fOD�\u001emz9�\u0006\u0004\u001b\u0013�u\u0015c\"\u0012\u0018Ӿ��k�@\u0000jN\u0019�k]��`'�����p\u001e�6�d�A>�\u001bl���\u000ei�R�\u0004��\fl>$���o@3\u0000��)�e\u0006Ʌ\u0012�\u000b��^_1�k���5[J\tSۉ�}P�\\\u0002\u0014\u0004�H��u\u0000��KX�`�T�;�\u0002�}�>�K\r(O^�&�p\u0016Ѧ�2�cY��\r0\u0017G\u0016mG��7Ha\u001eٻ�\r�+_\u0001\u0002\u0013�>�G ���D����?�\f�.\b('�eP8##��_\u0001K\u0012���\u0015F�o;�CB,�`\u001c@7��S�r\u0010lzp2����Kbg��*\u0005>GWޥ�\u001cݯ\u0001\u0001�.�w����~���hE�)/��y�j;mn��V��9�\u0000��9��\tj'��S���/�Z.�x�N�\u0019�#@���lD���0�N\u0011k�r�����\u0013�%�W�!�NKطC��籜�{�Em�A7�\u001b���L���N��N\u001e��A���!�\u0001x\u0013F��\u001e\u000f��\f4x�g�9u\u001d3�xo\u000e]�&�\u001c��7�\u0013\u001f�\u0010���\n�v\u0018��p\u0010�m��uˈ�E�\u001a\r�\u0007 �r��k�R�׀�L\f�d\u001c]��\u000ehB��G�����ժ��{j+\r\u0016 \u0004\u001c���z.�Ы�Q��l��%rq��;�b�a0\n`�¨D��t\u0005� i\u000e\u0005W���ģ���H �D��v®\u0014\":lt'��DI$�N�\u000f�RM\u0010oؕʔ�\nA�\u000f7<)\u001aPEf�A��YO��+�Ĭ��\u0012��p]/y\u001c�d(L�C6\u001ak�,�h\fC��&Lϱ\"�;�^�6\u001e���ʞz炲�\\?��M\u000f��w���)]�6\u0016\u000b[�\u0010(���A8�\u001b����\u0017� E�9\u001e\u001e�[��lڬ���*�#C*�A���[�BA.߂��sJ\u0019�/P&�{�o0c�\u001c��w�#��32�h֘�h\u0006\u000e�us�!\u0004s\u0012L0�Ϡ*�\u000e\u001f�T��F�dB�5\u0014\u0014�\u0010�\u0005�\u001dP�\t\u0015\u0013��(e8\u0011�z�8�Kj5�\u0004���W�\\���T�X�\u001c<�v����c�2\u001a��\u0007L��|�\u0018i\u000e��6\u0004��\u0013#�Z�G�;Y�\u000f��?r�\u000fT�\u0017\u000e��\u0004��q� ����NJ��O\u001f�]Lv\u0003I��v�p�<��WV\\�Q\n\u0015n\u0000\u000e���ߋ\u0017�\u000e��\u0004\u0004V>]=n�{\u0004P=��p\\f�F\n�������\n_��H\u001d�;��\tW2��1\u001e������\u000fl˅�/�A8�\u001b������7�V\u0013w:��w}\u001d6_@���&�3��\u0010�\u0005��,�IK-Oe��\\�\u0014\ri'����:�f�\u0014o߃r�#�� M\b����Y����\u001fg��G=�߿�Ϧ���P9�}\u0003�KT�~�⏪t�'\u001fd�ib��z�:V�#\"�]�vl�m��\n���C�X��R\"8/�m��\u0014Y[G8�B���/\u0016>�m��ᑏ��~��\u0014���4�\u0014���$�R��/��O [��޷� \u001e\u000ea#ƶ����0�))�\u001eBd�\f�A߅\u000b��z� �\u0002�̛\\n\u0014�\u0018�\u001cכt�������Bǜ��\u001e�qn(Ti��Ȧ���p.ө�M�@���\u0007/�gა�tP��@�p�$�2]Pރg�AA�\u001b���L�iX�$�j'o���˖�\u0013�\rCX�O�8�(����U�g�wP�\u0015xgas��vP�`!�p�36�2\u001fh4w�t\u0000�&��{I;�GYbE޼H�V�!=��-x�U�K�F�\u001fZ*O\u0011H\u001d�S\u001c\n\u001c������p2C�x)\u0012i*\u000e1ʿ4;zK\"�I���D\u000e\n\u000f\u001cT�a\bE?��eG\u001d�3�\u000e @�m��NX �g\"e���A\u0007�<3A@���/�m�\u0006����K�L�%���%�����\u0015�\\�V9\\vҒ$2Q����G\u0010���ľ<`��~�q>�r䈷�P9�~\u0006��\r�E�~��d�\u0019Q�č\f�f\u0011�5fut���\u0002%�x�\u001b������管[/m-i�\u0018�H�9�K��E�\u001bo�\u001b�A9�\u001bЀ�M �\u001dp�\u0011�\u0010��[֏�\u001cQ\u001alp�\t#ߠ�+�Y\u001d\u0019>#ሹ\u0000�a�0|ng�t<�Z�:��\u001b�\u00118�t߽cN�\u0012g\u001f\"�m\\�\rt��\u000f�&�(\u001fZ\u001e���\u0006W��\u000b`O2H!NRWc����#N\u000bjx���7/8���::��T<\u0011W���'\n�-��>�nj�ƙ�Dbը]�q�v�\u0000�)c��$M\u0018��5؏ڤ�ùW����\u000f�A\u000bA\u00120�OIx^�{b�a����6�ANbxN\u0007O��>�ǜ�6�\u0006�p����\u000e$\b!�k(�Co\u0002[Ӄ�+�N\u0005��?̍g��|`ϗF��VB�I(T�����\u000f�O\u000b���:K�O��\u001f�\u000bǡ\u001e�����l�\u0012�\\����\u0001��A;�\u001b��L�X\u001e=z\u000e\u0003�\u000f���ee�\u0016���ξY\u001f�\u000f'\u0018��GxL��\u001d��251\u0015�\\\u0014#JAlF��Yƒ�����[s9�ݙ�ڈ\t�{��\u0006oR)�W�yn�TX\u000b��*�!�@�\u0003��x�fc�<�I\u00199ä�\u0019��\u001e�=�\u0018fUFf�^�\u0019�:.�35���b�T�N�\\#(D(`\r�D<�Լ�u�\u0011�ؔ�\u0015\u0011릅��Gh��\u001d�T��#\u001c�*��p� %��~[n�_�^{\u0018\u00003�r�ߐ�\u001f�b},,��a\u0010�u�߱z�\u0014�*U��.��\u0019�\u001e�֨��d\b��S�\u001c7��\\�Gp^6\u0014\u0019\u0015����\u0017���?`�_�@�\f�d�Hd��k�&�\n\u0002?�7\u0003��\u001aY-�Bi�\u001b���|�\u0010�<��c|\u0001\\�*IُJ��\b�xp��\u0004k󨣕^�\u0000���\f�\u0000����\u0013;��>N�߱�8\u0007�_IJT\u001d���]�����w0X�S&��it�H5o{\u0005ǃ���G\u001c.�֚K�sa�\u0016hz'���\bU4~�N#�Ò�\u000f�v\u001a\t+h�25�\u0014pY׶2��5c0��c��P����V�@�(�\r-\u0001\n�S����9��2|�����f��Ù\u0004=ƛums�/Jڇ6\u0017L��B�\u001b�Y�N�d�\u001d�]�C�/�������H�\u000fݬ��<��Ei\u001c�ų�}9vC(��\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H\u0012�u�e���M�3���@\u001d8C��\u0016\u001a.\u000fd�=mn-�N����\u0019�\u0017^�:%�j\r�\u0015{�tn\u0001��5<�kO.^\u001a�&ɐ�ҕ-���B�\u001e��\u0017\u000e�����{?\tw�\u0000�KoelVN���n\u0014{_�Z}F�!����Ќ� \b�\u0010\r\u000b\u0005P�ӑ',M�{�m�J[�\u0007u�LꝈ\u0010l���'�\u0007���f\u000e�_A\u000b\u001d��n��0*�\u000e�oﲌ\u0017��8���l,���\u00027cu�1�N���y9�\u001fM���\fRM_�p�<�猐(�Iܢl+�\u0011�2*ޒ�'�\fS��;�\u0006�V��\u000b (>�f�R�\u000fu����݋$�\u001d!�\t����j��\fڴ��ܭ��_��jO�8�ӎ%�CN��i���\u0017(�b\u001f˭�A�\u001c\f��|�\u0001�r�ܡ��a���'�4���\f�����\u0001�?�~,�a&�]^}0�5�\u0010�\u0018\u0002 RոR&\\�$�-؟=���t6�\u0019\f��DEE��s��*㫅ѕ���U��4��\u001e}Cy�˭\u0012��l\t��� S�^o�\u0014�\u0004NN�؆��t��N\u000fg\u0019��0�_\n�U.�yf֦��\u001f�ʋ:�v\u0001��//#����2�py���\u0017�SR�eH�;u��S��\u0011c�*\u001dޒ��\u0001g\u0018Z�3 ��9�w8�\u0002Q{3�';�^����+���U$K�.`�-͹i/��8���LK,“B�������\u001d�\u0019\u0007�$�|������z�ȵs`�]\u001c�����\"���4�a��yh\rH9o�\r7�� i͞��x����v\u001b2\u0013����tǩ:S���6\u001a\u0001���\u0018w��}�ƈz2D�#�S(�3Pէ���\u001f���l֭>��\u0001����p�ku�Jی >8����m2��Z��v\\BG\u000f˻L˕�^�y�{�7N�\f�2$�O��Ju2���n\nT��\u0017�3m[��VB7݆bc5��)\u0016濰t�)�V܉iۣ@�\u001c ��X��������#��BgY%j���\u0012Y�ʲ]�A<�G�[��>����on\u0001��~2��$��]��l�e�5d�\u0006��8�\u00020�fk�W�H�w>�V�/wj0�=�vz�Q\u001e�\u0019\u00059��\u0017vi%�4�\n��\n�cMH��z��_�b\u001d�R�zs��\u0018�9��E�NZ\u0018�w[=����ΎN�\u000b�D\u0003�<7�@+d\u0003D�\u001a�\\���g�p��\u0001F78 �ն����\"Q��\u0015��6G�3?�8�ђ�\u0007׎\u0005bTh�nX;�ġ�\u0000\u0017-'�UT�\u001a��A\u0004�\u001c4��������\u001d|7�>(�8:?ĩ�ny�gSn�֖����w+\"Ø��V�\u0015�u9i����L;���α�%�(<�k\u0007d\u001c\u0005'-w\u0017Ȧ\n���\u0013�����2\u0000\f��ɹ8�~���tg���\u0004\u0000\u0006�\u001d�\u0018˳��L�$E�A�*?%���8�k!]3ײxZ\u001aP�h\u0002]�X�1�pG��lV���>\u000f�W\u001f�\b��r�KF\u0002�\u001c\n��\u0010 Yj\u0001�g��[�()�I�LJ��K|>�t�,\u0005!t�>b�zQ�X\t�\u0002�8�Xq\u0003��\u001cq��\u001b ��P\u0019��hN�%@\u0019\u0004i]\u0015;��U�A*�\u001cH��X��\u0003��-u*,̇�G\u0007M��\u0019��.�?�dϲ\u001bр�q�殔h�V>0����q\u0013\u001a�Z\"��)s�֍\u0007��\b,��V�{\u0015�5dz%\u0002\n��x�\u000fӠ��\n��`{��4feE�K\u0005F%���i\n\u0013]��+�Y�$�\r��8�~=O�F��NL;��D�4����ၗ����\u0005q\u0011�\"k\"5 \u0005,%�#�TG�3@���\u000f�\f�9\u0011��%��\\�8#\u0018\u001cH��-c2�Ђ�Nh}�m���\u000fZ\u0014�>%xf� �_��״�)K�D�1EAR,�S�fф�\u0003��\t`Ar]�������i\t�fsZ��\u0003�Y�,�:\u0004\u0007%\u001fl%�n�}���v�\u0004��\u0000=�iP\u0019Cm��؟�\u0000K\nJ�\u0011l\u0002\u0001)�ܳ �C�8�A$�\u001cp���m�\u0005L1G��b�8J$�v�-�L}\u0003�\u000fJ7\f��\u001akPvr���̈́��/\\L)P��N츋L������C\u0007(�{�\u0016�#_,�\"�\u001e9�ЫKQս�C����_g�\u0013�(���\u0007\u0017����}�ow\u0015����\u0007���}&;�8��?\u000fJ-z\\\b�\u001e\u001e4��f�\u0011�M`�\u001eY�\u000f�a�����\u0000�~�v\u0004��H���˔\u0015A�ݦ�ta�U���$�\u001b�q{\bRo!���@�z\u001a��;��(�0��VhJ�\u001e�u�%\u0017\u0004:ڀ\u0019�\u001a��B-��\u0006����y\u001e�X�lRHdd>��a$���3��WGb�L��;b�D�\u0007��\u000fוJ\u00194��B�A\u001c�\u001c����fJ�h��5�\r�qt�\u0012�\u0015X�\u001f�5�W�䧖u4?r\u000e,�.�h�eV�a���b���[߯�Ą���J|�&�K�?\u0002�1��ڼ�# ��Q\u0001\f�!�Hg��M݉.huB|=j\u001cp}4�J��\u000f4\u0007�I-\u0002��\t x���{�ɸ�\n��z�5wn�\"'��!�\u000fGI\u0007�f���ӸM\u0011H�R5�Y,�$G�W�(�^�\u0001jqhg9�4\u0002\r�f������_�e���,�'��\u0007x�[��d]�\u0011|]��\u001dS�\u0013)iv|\u0007!\u0014zI�#����*�r��~hkX\u001f��y���\u0003����� 5'�\"[���_1�!���%2�A\u001f�\u001c���L�R�G\r�VJ��t�4t\u001b�\u0012\u001bԡ���\\�;�RUZ���H�|��w�R\u0011�\u0010\u0002K&\b�\f?\u0010���/Z\u0018���lD)\u0016�i�\u0006\u0012�n��f`yU$m1'W��<��Ź�\u0016p�[\u000fL���Te֩ӝ\u0006�`iq;���\fPD\u0013y\u0017�\u0019�bH��c�\r��\u0010%�eܾ��+a�\r�ɸ\u0002\u0019��h��[�3�4V��m��B�\u0003B��\t$\u000e��[5�1&�L�\u001eQ�@\u0006\r4��n�\u0011\u000b�,�.���������åY#v�K�\u0017�\u0018\u001d����\u0003��\u0013Ǒ.ƢU��ݘ�A\b4W�ZҌ��'\u000bPX��� ��\u0011�#f�=�)d$3����[?�A\"�\u001c���LЛ\\�\u0002�]�\u0014�EH\u0019W�}�R|\u0012ksu\b�m�f��׭\u0001ۼ��=�\u000bH�kL���&�\u0010G0h�\u0003qE�3�Y��\u000f_�腜6\u000b̤�`��,\u0011�\r\tG\u0015�\u0004i�N�r�e�t��i_���1\u001b��\u0006\u001d|�tc���z�(nb5��Ŵ\u001b3�5���\u000fi;��\u0003�\t���~\u0005\u001fu� \u001e�7\u0004�sȮ��i!�a��S\u001b\"D\u0014ikCP�����\fԯ��t��BO\u0013�޿�\u0017�i˿ͧ${�����o\u001fq(�b\u001b(nj�,}��5?o��\u001cȫ�.+��\u001e0!i�0Z�E�n�͙O��bd�U��h\u0013�l�vh�]����y!�f(-�A5�\u001c���Lˡ\r9��5x��B.\u0003>81�\\�\u0012\u0014���!Af�,\rxO�\u0005�iBZ\\i\\�\u001c�\u0007�?�\u0013|\u000bɡ�a��gtz)2ӛ�9yC�\u00016y7���?a_�f��_@��\u000e�2咊\nir��\n-4��A:S���G\u0019ӯ���9���dž��}G�\u0001�d7p�/(~\\�'b\\��7�k1V�\u0005n_\u0018�\u000b��~cgf��o�Wߙ\\@���؅�A\u000f���U�֜�#�>P���T��\u0014�\u001c�Q,��x�u����\f\u0012S���j�\u000b\u0018�Ei�k\"[\u001d��B��V�*�\fMh\u0018��D�L\u0010'���^) 0?a����\u0019�}\"7�K�c�&&�SJ\u001a&{dȱ�/Z��sG������t��]�ݔO�Q��$�5\u0007�*�u�\u0017C8��-����zR\u0019�e�dbUB{��\u000e�o��֔\u0001�@��l\u0018����K;��&\u0000\n=~��NT����o�h:&\\R2�~;T#\u0018r�\u0016�l�O�]�|Ť�9\u0003�.��Q+��\u0013���af\n�zT�\u0006�z\u0000cI�8�\u001d2\u000e$��j&9V;���9\u0012�s�K�V�\u001d�\u001e�S�l��Ȫ�ڹ\u000b�! q6ʡ�$A�D�t�/�R8���@ݰ)̌Վ���qnn��:4S�*,���\u0013Q�ic֜\u001fz4�\u0006ς4�\u0016\u0014�%ZL�[ԁp���Mad'}�fS�C�^�+�\\\"9���\u0003�\u0011\u001dS�g\u0019\n��V1��\u000e�*&�����\u0014�s\u0007�n��Y����\n9�\fw�{��L����mT���vi+\u0004\u001f�I�\u001c\u0019�\u0016>j��I?�A-�\u001d$��Ji\u0003�^znw�~�b�\u0000\u0000\\��M�2i\u001c\f�\u001a,O�]?�\u001b�6w��'����g�\u0002�_�)ؖȗ�Y�֕�xYN\u0003$�0ݽ陚�Jj\u0011ND9M���I;H�m\u001d�@��+�`f:����H���\u0013�\rq\u0013U\u0001����OB\u0011Kj�1--=0KS`5ύ��V\"\u0003�\\R�f\u0014���ih��r����E_�F*S\u0012���>��b��d�k*\u0016z��i\u001d�\r��͵�Ҧ\u000e\n�\u0003D(ED���e�\u000b��%�,\u0013\u0017�����zj�v�%T32�?\u0007���v6F\r�Gg��~�x+_L=\u0013�f���\u0019\u0014���Ť\f�.���:@�P������\rL$�7��/��A5�\u001d8��L�B\u0002l`�ę�C\u0016ⲣ�%\fTՂ=�\u001e5��H��铔Ʀ�\f�<\u0019�\u001fIP����ژ�\r��w\u0003i��9\u0004�@`FH�\u001b\b%c��Q�Cl��\u001aD\u0018ș��Q�ϔ�%\u0002<�G\u000fR�_�w%K���x\u0003w�\u0004��\u001bJ뎘��\u0010�\u001cmæ�+={q�cO5�G����:\u0006�O\u000b葮���J\u0013\u0014X1$\u001aP�2W1ߕ�m\"��vZT�ֳ�HWc?$ٲN�v3�4\u001e*9�\u001ab���<�R\u000e�X\u0004��m�\u0018m�_�4y\u0007������2��\u0007넁���2�\u001c�\t\b��^`�g)\u001d:w�\u0002\u001dkXM}Aj�\u0014��3��H؃��v\u000b\u0002�Q\u000e\u0019\u0013\u0004oxU��J�71x}�b��S\u001d=��A0�\u001dL���h;\u0019�\u000b0'yw�2\u0016��}���*���^�3�4zW5�k\u0000D����\u0004��W�k����uG۱��-\u0011\u0018I��Q�\u0014)�E>�,�@$��yh�C�ME\u001d�K�p�l�\u0000�Ί,|R���\u0002�}\u0005�'�\u0012�}(ǣ.xƔ\u0019�σ�>\"`��f�5�\u001d\u0007�7)�u��}�c\u0019�Ս\u0016qK�\u000f$`�7�ڶi�a��Se1줼)��\u000e_���\u0011����\bA��\u0004#5�\u0011S�9�Z!��G����3H\u000e��9\u0006\u001d� [-�|�0�͊v\"\u0014*&\u001eDz)\b��\r.�e>$�\ff\r\u000e3�\\\u0011䊵\\tm\u0012s��RY���ۢ\u0015O�g�(\u000e�}\u001f3�iY\nM\u00159E����M!\u0011�A*�\u001d`��NO�\u0014{�D��jI�f�s'\\4=v�s-\u000e-N���#�\u000e\u000e>؆�9~VM�D){�s~C�P�[]��E!\f\t���x?_\u0017\u000fʤ\u0013�R�b<�bW\u0012�7G��\u0011\u0016?�>\u0004HC���1�\u001f��`�i\u0011�`K\u0017�z�\u0013tZ��%��q�{Ε(�E��6�E���M�\u001c���\r�\u001d\u000777,�6�r�d½�\u001b��x����|���}�i\b�AZ��'\u000f}窄��1{�Z\\wS�u�W���D\u0007�5�\u0003�1���*\u0012t*�icY�����ʌey�\u001b��M:�W N{�d\u001f[��43�a\b��f�\u0015+��9S\u0012\u0003=\tx\u0001�p�J�)\u0014ح�\u0000QE@�ǣA+�\u001dt��L��\u0015�\u0001��\fm�I4��\u001d��TH|�ݣZ��؟��o�֖^U'3��9j8h��\u00105;�BQ\t��}��Uo��J�\u001a�\u001e9��\u0004я\u0001���'\u0017�����l\u000f\u0014��:��̂����ڷ��9X�\u001fa7��o�\\���׼��\u00056�N�\u0007\u001e���\u001b���R�\"�.��Q�\u001de��ڸV�\t\u0011Di%�i�jt6�{ˆ�笜�y��}��\u000f�j��\t���e��\u0015���\u000fD�U,�f��\u000f�\u0006���\u000eh���IpE�\u0010�>�I=���<��[��f�\u000e`�8�L�0v�w�U�_u����0�B�Gz�\u0016�:�Q��C3\u0018��\u0015!\u000fů��P�_/D\u001a\t�A<�\u001d���L�XT\u0005�\u0015�Έ3��\r���($\u0001��:պ\u0002���\u0014\u0013ʮ%@�&:a�u��!#�q�OI�5\u0018\roX��\u0019\u0015���L�����̔�\u0006��S�4�$��=׭�f�QIl�Y�q��ژ(�3X\u001f+\u0011�\u0011\u000eOY�t��Z�.�/ø�����L}����&�Q�\fQe�\u0006�{\n,\u0002��fc<�]��\u000b�\u0017k1�yk�+J�\u0011e�\u001c�7�\u0012�\u0014;r0��+,�\u0013p�\u0016ַ��B2��d�L�\rQ��*U�����a\u0004\u0017>�/\u0017\b3xO4Bɨ�\u0007b���$��\u001c\u0013K�C�\u001a�u\u0018O0+�GA�\u001d��-!ܹ:�\f52ف�A8�\u001d���MDV��TIj�R=�̱�d\u0015v���5�������օ*�1�zذܯ���x��X��ޓ2���@�[z'u�\u0003f� �3|M���\r\u000b�ar�\u0007&+�\t~�=<�%\u000b���K\u0017�WG�\u0015�\r�\u0010\u0017�`�a,��}�ڱ��\nj�#����3M7�L�U�>�6�F�����x\b��Y����l\u000b;��x�E\u001b��Bܥ)t\u000b\u001d�u���\u0018\b\u0015k��Q�\u001bG�z��>�nex�\u0000q绒�Gs�0�wd��KƱwC6��\u0001M\u001d�\u0013;t^��!�����Ix�ܼ[��IW\u0003^�}���X\f��z'����\u0018\u0017��@�\u0001{�I �7\u0010�M��a�>ޱ\u0015�+9u����\u0011.#d/��[ʣAA�\u001dĀ��\u001f�\u0014)f\u0004\r�4��,�A�P�zLJ\u0005 !��\b�Ō\u0013����pIq�ñb�\u00104����\u0005U��ꞩ2�Cz\u0003\u001dp��β{\u0003�\u001eh�y+�\u0018^JE\n �)P��\u000b#XP��v�{>\u0003QLA�ϞK[Qc�\n��c��\u0016\u00035�\u0001\fv�¡?��Zx�\u000bD�􃡌\tQ|\u0018�bxs�_y�Ǡz��3\u0013�R�\u0013؇���5����\u0003�`�^9p��UV�\f�s\"'a\u000b��\u0017��j�j)�l���D0�qC�����|Y?8\u0012���n��\u0002p]M�\n�e8��\u0006�>�#�@����\u000e�G(��\u001c7qS@��%]\u0016\u0001�8\fC��A��B�P��g7���5�٘��6\u0012��?���\u0001\u0002\u001d(��\nW����A<�\u001d؀�����2�.\u00006�!\b�yu\u001d��N�i\\2��Ak:��/ES]0`����U\u0002m*\u0003\u0000OKa�\u000f��>ʆ����*Vt������b+��Ds#���+Z|�y�I��+�׍\u001f\u0002bD\u001e�5m��o�\"\u0001����K��<3j�6��ڝ�\u0019BNȬ0�d�/� t�}5XH�<{��\"l�\u0019>p�^Lڑ@/6\u0004R�g\rϵ�UJ�R��Y���T�Ӊ���_���jL�݆q�\u000e܉�q\u0012ojQ��1��\u0000ھ���\u0002�*��4Y]�W���\u0006*\u0005��d)t�H��F���\u0006i����(>�b����\\\\�VQ�z0�������A�Q�@�.M�T�뷐%ŵ\tE\u0019���v��\u0011]\u0011�A2�\u001d���\u001e�\n�\u0010���X\u00107(�۠D\tK-0\u0018L؍7r����*�QO_\u001f�6\u000f6\r�f��I��KPW\u000f�ѩ?m\u0014\u000f�ҿ�\u001b�P)u��!@�\u0007�ΰ�\u0013\u0006\u0016����֍\u0010�~\t�6��zⅧ�N��5�Ww9�\u001b�4f�Ɏf�Q6�\b�wx�8:�\u0013�A.R�FI:�\u0002��>1��f�G�C\u0010\t�\u0014቉,l�\u0000�m&][���[��H6%�S�+<�\u0012��0�g�\u0005c\u0005b��)�T�Y\u0019�g(gZu�X�j�\u00071�\f��W\u0018��j]ɋ\b�\"E�I{��Cx\u0012����}d���\u001d�\u0001j���^ہF2_�QL\\�\u0001�\u0011CG�(�\u000f|�\u0019Hna�h�rAJ�����u�t�\u0012�A1�\u001e\u0000��Mtb;�\f8\u0016\u0000e>Ï�X\b��e:,�(\u0004��\u0014�w.���\u001e�T\u000eB\u0004�\u0003\u0007U�u\\�o-�� �3�Å�èDϝ%sq�B��)�Ȟ��|\fid��\u000ff�f����U���F��*��R�ROn��j>�[~��k��ک\\Bi\u0005\n��S\u0018�Z�ӳUY^yiH���\u0010n!���I��\u0012��n/\u000f��?�|\u000eӈ���A\u0015�#\u0006Z��{L�.�L��\u0004��Лl��(:����'�8�=;\u0001��̅�ik��\u001co\u001c�8�J��,�������&�~���0��;o� A��\u0004I�%6�{\u000e�y�ձ���u�\u0014��\u001f_�LTo�i�6�=����>\u001aԩi��H\u0014)�A��\u001e\u0014��}�\u0013I��B\u0000f\u0000��n�$T����\u0002w-�BP�\u000e\u000b*���-�_�Dy��y�<;h���A�_%�u����� K���p�N�s\u0015�ۍ���ތS�n�x�Ffy�h���+�\u0007���^j!�(q3葞��H_,��.yu$�Q�V��6aHn��\u0003�ڟ*���2\"�g�x\u000eF�7B�\tri����c�P�[�iө_�\u000b��\n\u001cK=��Z�:?��‰,�\u0016 \u0007�'\n`Im�3B�MF^�}�4?��t�\u0013\u000b(\u0000O\\\"\u000b~�(� ]�?\u001e��3�[N�V߈\n�*8r\u001e\u0019�o��\b\u0011�4��|W1\f��~�kH\u0006�\n�\u0014W��.�\u0006��������M\u0014�b�\fb�9>Q�xi\\p�i&�l:[&\u0015�R������bf��?\u0000y\u0004\u0012��5�\u0013uj\t�+\u0019>\u001b\u0014l�ż��~���>[J��\u0004\u0015'-� k�|{�T�ڦon=����U��K�A'�\u001e(���v�WI����f}pP�`T��ti9�]ᤷr���F3�c\u001f�\u0015���(�f�g�\\�놽r��mv\u0000�Ԣ��\u0000�H?W��\u000e\f�/?���\u000b�!s��ck�\u001frC4\\��a�n�9�\t\u0015��ԉ�\u001cNy��E���\u0012uS�\u0015Ǖ�k\f�3���p��\u001f4�B�l\n\f�.���\u00036V�'�r%�>�1i�V��,��P��<#��vdP�K`\u0003�C>�j��ѝ���\u0006��Q'�IM����r�X�B�\u0010�\u0013n\u0018�\u0015C���s��\f*+�R�gѾJO����\u0016\u0000�\u0006{�V9rN��#���I�\u001d\u0005@�Sx�\u0010{�#B_�������z�<���A$�\u001e<�����y\u0000�\u0015�\u0018��f\u0018uR�iS��9w�4\u0013�B�(�Ftt�T���\u0002����S3痲��5\u000e����\nv���/)�\\�(\u0019��q�\u0000�\r��^S\u001d�JM�04,��4\u0002�_C'}���\u0014\u0004�~d�\"|�X�\u001f7\u001d!�t��\u0004�vT�9���q�m;n�oU\"����ĵ��F���5�����-|\u0019�\u000e)\\\u001b=��M�Ng�Xځ\u001c��|�2�l�w��&3�+\u0013j8T@/�\u0010�nQn'ͺ���`�\u0003?�.���FY\t;\u0013�_��K4j>��\tj!Vu�_�\u001c�+\u0017�I��\u001aM5����\u0014�����\r�nM\u0016�;�f��\u0014T�9g�U\f\u0015r�A$�\u001eP��X�LXV�&�UQvq>��\u001bI�/�\rN�N�_�\r�\u0000Yt�����M\u001b��l�r1��\t�*ٿ��§�\u001dg!�x\u0005*�.�\"8��As`k\u0005d�Ē�䗸��\\GX��\u001f�|�@;�A�h\u001a2���eEGu]\u0002pS�\u0011��\u001c�7iٖ�)\u0007~kM�h\u0002��W\u001b��zY�ԋ�4�iߡeV�ψ�+ko\t\rXj\u001f�\nؾ�{T�����\u000ex�LY�\u00064\u0016�)d�T�����q���Jed��\u0004�{Zoȱ��I!�ⳳ<\bC�P��L�%c�\u001a6��\t\u0001\u0007�:��Y����`�#\\F\u001b\u0005�I�\u000e\u000b�S\u001f�n.�K\u0011����\u0015tS����A&�\u001ed��L�%|�o�\u001e�\f�屮���\f�_\u00076�\u0013k&.�o��\t\n�����%�>G6c\u0006\r��EY_�\\�u\u001c�\u0010/�\u0003i�?�`\u0005+h�o����ћ�\u0019\u0003f�,yc��P���%\f��ۑ�Q��]/P�G\u000fBm\u0018�4�\u0000\u0017BT�_I\u0007|n\u0014�\u001fax�S'�\u001f*��6�\u0011V��K\u0001j��f0�&މI�\"HeD�0\u0001c�8�X\u0005����\u0001 ��s\u001d�\u0017Z�-\u0017@�C�w��\b�P��\u0001�77��\f��d<��%d���\u0006B�\u001b�\u0013�\u0002!\u001d'�7��ܞ�s�x����ɂ\u0017\u0016�Ub�%}�\u0010�\u0013>;�\u001a5�\nW��x\u001d<��ʏQ���\u0007����쩍��S���ת\t��A2�\u001e���M�اdx*L�\u001e�d9���$6w���)<��ʘ�L��k\u001a��L³���n�ZǪ\b���y��3�Թ,�����Е�I��hRN\u0016��9\u001b�l\u001eV�Ldx���\"7�l-��W��P�/�o��\u0017^=|�}T��5�\u000f\u0002Բ�&�߭��M&�P�Fھ`){\n\u001d��-BD�f�\u0016\tP�\u0002��\u001f=����:o��T�\u001b{[����\u0018%�H�\u0012࢔�܇�4\u0003��\u001dWN��\u0011�T���b\u0000����̚8�\u001b�\u0015���\u0014�P\n�A7�\u001eȀ�M\u001fE�3��˦�\fYKi�k�F��L�-Q��Y��Q]�s�f�o�{��\u001a0�1�+f�\u001d�+Ӻk\u0012\u0015�\u001f|�<���'��\"��T��\u0011�,0Y�X\u000evh��'k��,.��>��\u0016�\u0019\u001f�\u0000\u0002��\\�����8ir^\u001c�\u001e'S���rhŢ¹��A=]o�H؍*,S�\u0011ۇ�L\u0014z�V�=DTGb���Ҹ]#٠���^x)��:�:v�ӲC��|�Ӡ\u001a=1`q�U�xQ�gD���\u001fk�D��n`�\u0015�B²Ӑ�ɠ&f����q\u0002s�;$\u0006'���ݯ̰[�����u(�\u001d(�d��̾>�n�Z��\u0012� �$���a[�(h\u0012O�:G8GRp��,�\u001a�\u0001������AG�\u001e܀�L�\u0012�Ř��ڻ�^\u0003�(SÛ���ٜ\u0016\u0002hp;�E���ϋR����MY\u0016Ԋ0����\u00178��/ܴ~\u001c9K�\u0014�H��oZ�\u0014��I.[�(ks5`}\u001f����O�o­@?� �\u0011�\u000b\u0007m'��\u0002�$\u0005\n�w�'\"��N�\u000b�h����V�@��\u0014\u0000�P\u0005\\�B$o��$2^N��kT�\u0015��T${���0�!��iV�C���:�����\u001b�5\u001b�\\@�D���a�`�b��cm?ci�o*/���\u000e\u0012$\u001a��JP�y\u0002�C���q\u0017�ʇO��\bU�4v\u0019\u000f�#`LO\u0014�&ČG1��\u0006�l�����F}G\t�[J�R�\u0007��j\u0006V\bl�\u001d����e��>c���yÿ\u0012�R[\u0019uů\u0001��y�;�w�AG�\u001e���L�\u0019Ei�\u0016��E\u0003\u0013'f�eU@o���\u0019\u0000��+�N�f�\u0015Fa�7f�U��0Y�\u0013\u0016�\u001e����\u0000k\nX��4]�\b�?\n\u0007\u001e.�ۆH.P\f�\u000b�\u001fK�;C\u0019��iT��mS�;9I[�;������u\n\u0017hQOt�V�\u0004A�Ng\u0012lt��\u00111�qpC\u0006�R`�\rtDjhW\u0018�A�I�M�j\n\u0017\"��A$�4\u0007A��ʹA�\"�e\u000f\u000e���Sr��~P8���?(�\u000f��E\u001b�zן�-K\u0012Y9~��\u0011�/�P��\u000fQ���'ܔw*\b�o��\u0012:zmM\u000f�Q��}\u000fY}�ޔp\nGt��C\\�8w���Xp\u0004��0\"��6�~��/��a����b��T�ؾO{�Gk�\t�!��[�\u0016DtRu4]<\u000ee\u001b�Bi�\u001f\u0004����\n#6\u0016\u001f��Y�w�\t�hB�J�0�U\u001b�u�5\u000b�(�:�\u0000����^ᬷ+S���\u0015�H��\u0011�hۅ���-�2,G2���5�f�KU>^�z_�\u0006�Z�\u0010%r�\u001a��t�.ӿ�\t����ïF5w2SQ����\u0011�M���Ϝ��T�\u001fÖ\u0016\u001b:�_8�d`/�Y~&��m��0�H�k�����\u0001G8knm��L!�W��ا\u0010�nMӤ�:�4�ƙq�����q,(��\b\r�K%\u0013�>;{q����wYp�~�3\u000b�uƘl��Bu\u0016��JoG1�\u0011�\u001e�\u0019:S���>�����\b\u0000\u0000\u0000\u0000���U>��h\u0003!�T\u000b�\u000b��\"r�\r��<��C\u0011XHD{v-���Q�\u0018i�����\"� Q�K^���Ц����)����>-ރy<(ԑN���ڼ\\��i\u0000��W@O_se�<0�J��Pg?@�\\H\u001eU�o@�\u0007�j���'�}��\u0018\u0014i��M�#�/1\u0013�\fPw� ���TC�\u0001\"��\u0016��S����o\tP\u0013X|?(�\":�*)1W�/���D?\u001c\u0010&����\u001b�}}w\"X\u0003oeUl��OyU�t\t٠�8�NyB�&�u>����W�f)���s}{~�\u000b���N��\u0003w\u0014�\\�S�\u001f��Q\u0004m\u0011\u0011\u0002\u001cN(dQ�Z�ʬ\u0016;\u0013֬I�k}��d\u0010T\u001fYր��ֽč\u0014�}q\u0010i�m�\\��X{D�29\u0014�S�,(�\u001d�\u000f�|4)�\u0002�A1�\u001f\u0018��2jLk��X���\b ��\u001c�8�I�”\u001c�\\@b�\u0014�־1���\f�\u0004\t��d��\u0007Փ��R�+{4\u001cH;\u0014�7��t���L����`�\u0004\u0010�z<�\u001eQ�A-�\u001f,��MN���\u0002\u0005�y���KΤ�FY�J\u0003z;mƒ�#\n��O��P_\\��\u0001��06�Okj�z��*� �Q�@a�\u000b��M�}��*��j�i�D���K]>F�X^\n�\n�ß*�+�8\u001a\u0019��+�=A�ߢ`�\u0010G:\u0012#\u0017F\n���g�+6�t����\bN�XA�\u0010�y6�\u0011�\u000e\u0014�A5�\u001f@��L�+�DɤȈ��+\u0004K\u001b0+�*X��,��\u0011\u0007\u0019�ֹ�����G50\u000f����?���h�\u001a�T\u001b�\u001b5�\nu)�v:\u001d�a\u001f�aͭ\u001fp�/\ng]\u0016�]_��{��\u000e����Wp`�C\u000e\u0014���q��eQnW\u001b�\u0013N+�i���R�[��r��:`1cކU��X�� \u001d��ՔU�lfXc� �)�|\u0001�\u0016�Z���z�b��\u0011:|\u000b��H��\"1�5�vCMEr�#\u0013i���>\u0017�콇�[nU��]\"I\u0014\"�:$���6D���v���V\r��5��\u0005G��.�_1��\u001f\n�����\r�l�\u001aQf�T�:�\u0003�7\u001d�󿤩o&8���6}��Z�Q��!��\u0018��\u0005��A8�\u001fT���\f�Ԩ9y\u001a�o\u001a��k���Ŗ\u001f�%Ս*)�9փ�V�2�``�\b\u001c@��j-���#p�`�\u0000��]\u001279����\u0012��V3�\u0012�B'�\u001fo@-ψ?}\u0017�\u0016�Qtˎ%K�N��j�oѮ�y���g�\u0003��=e�[����w\u001e@\u001d6���mZ\r��%�\u000bK\"�3Xv�|H�^:'�A+�I!���\u0006\fYJ�\u0018\u001b�\u001c�\u001d�3��qL;O��\r��/H(¾��k�\u0007�^\u001fi|+�\u001c�Px�C*�\\����K\u001f!��̣!=*~��\u0017��ᓒE\u001dg��D����\u0001:�\u0014^�qw\t��tW\u0003f\u0004Ṅ_�\u0003����\u0017��T���<�Dj�\u001et��GGm}�\u0003�ةa�R�%\"ܣA5�\u001fh���\f�U=ʺ�Z���7�\u000f�����\u001c�E !\u0012\u0001Q�5��6T\u0002Ήʆk1�UHk�G�\u001b;'�\u000e\u001a�6�J\u0006�Fr��9v���<;�?@w:[c��t�����t�J\r�֭%�\u0015Ø��9�n��=\u001ff�\")�D���\b1�3�\n�$m��#��+��Lq-F��N\u0001�\u001f_�J>�`\u0013/\bi\u0019��V3��\u00167��d\r�\u0004z\u0002��v�\u001f\u0013\u0013Տt�w��$\u0018M��\u0011S�ֵ�^U\r�\u0014L.�PFz�y�l�T�җ>\u001a\u001c0n\u001b\u0010Y��ƨa�\fb:�>���6�{������v�h#\u0015\fmR�\u0003�ӿR(\u0013��Ԙ�5�ş��g)\u001f-�ȸ\u000bag\u0002�%oϮ2�\u0004dh�\by�>s\u0012�B�A;�\u001f|��L�Du�1UOSI\u000e��ӱ�o���$^=\u001asIO�d��!H�\\S\u000e���޾��Q\u001a\u0003iu��d��XN\ræO.�.\u001d2ͧ\u0007�4�\u001fI��2�t���\u0007Q��O�3��lv9\"�\t��ԁ\u0003P�{`����4Z�\u0003�9���k� �P��A\u001b�N�\bp�\u001e$}|��K\n\u0002���\u0010���`�N\u0004��x�\fґ��\u001b�\u0018���|�\bؾ��ſ�\u0013\u0006�(�ǩ�S��Ύ*0'��\u0019��a��㗗����_�\u0019Z��?���h��\"�K�7���X��Νx/s,\u0010ش&I\u0019�S��P7Da+Cɴ�8�_>%��M�ǨFa�\u001b_��y�c0�\u001e5��/�4��;p�_�ű�pJ���A8�\u001f���M��X�&+g\u0012���%�S�1lʺ�y\u001d�)\u0001�\u0019�{\u000b\u0014�e\u001e���,�N�.!կ��Z`��z��ϰ�\u0006<�M�,��\u0010\u0001J(\u000b�\b��\u0019\u0018�0��_P��\u0002τǷ\u0005�)\u0014�]o'0��yc�5��夵%\u001c8\u0010����\u0014Z�C���~4��\u0006E4xd�\\�o��e��p�Љ��r}6B>eY��{�h|ʻ����\u000b�9 �\u0002�J\u001a��H|w\u0015%�I1�Z����\u0019T}�\"tX���OCG�h�DW\u0006�����\u0016>�\fY�ݙ�f��_��n��?I����#��\u0004�٣A8�\u001f���1�O\u0006U�\t���͙��õr��\u0000�����VP��2�������y'���\u001c�\u0012*j;\u0015[�$��v��o���+�\u0013)ʸ�^����pb&�s\u000e4et���\u001e�(�^je�\u0014�l��貒14�֥��Lr�<�/����\u0011�e�\u0005�)@��3H���)m\t\u0015d\u000e\u001e��]vH�Ŏ<��;�\u0001�B\u0019\u0005J�#\"�\u000eW��\n��>���j��$��\u001f+'��=�y�xԁ��q�\u0015��%#�;�//;\u001e�\u001b8Q$5��T�\u0000s��/��f�q�XYU\u0007Ԣ\u0006�%\u0010�����\u0015�\u001bм�E&Ƹ�o�U�*c�\u0000�������+�Dj\u0007B��k�M���\u0015�I��~��\u0019I1\u001d��YNG��A7�\u001f̀��p�{��R�4�2�\u001fJ���wd��R�V�f�j\u000e\u0013l�<\\j&G��x�3�p\u0006X�ݒ���b;Ƨ7\f�\u001bf4�,䶜�V���v�U�-2��\u0006�-fWn䨳�\u0005��}�G��:ϊ�\b��s���K��Zm\u0014Ewˎ����\u000bƧ\na{��k��^�\b�~���W\u0015�}�g�*#;!�K��%�*U�/��ffgHQ�z��=*�9��WCD\u001bI&�;9\u001a>y'z�\u0004��6�ϔ~��\u001e�R�Ŀ\u0005��,O\u000e�$�.>����~$mL���\u001a7\u0013��~\u001f=\u0002\u001e�@�D�\u0016-�\u0011rM�O�\u000b|�\u0017\b\u000b$\t��\fWo$ګ��M\u0003:�c[��o�<]I?�\u001a���6�m����A8�\u001f����\u001e�\u0013|\u0017�u��㒕�\u001b�\u0002����{]�AS�\u0010ɉ\u001f�\u0007�q?�Ub#~|��R�q�\t\u0007\f�{�p��\u0017!xNI�\u001a�n�\u0017�D<�B:v��'��s���%O\u0003孅��]�\\Ĥ��C%a�.�˽�Q\u001b�=��M��i����B\u001d\u0012k\\}B@�\n��M;zo�w�����\u001a�\u001a?,��v[>�C�j���p㖷�\u0005��q#�\u0010�ԯ8�.Cb���&d%5b��|�7��I�����n��\u0005��\u0011�{S7ӯ\u0000��m>:?KYҰ�m��$�P]���a\u0003�l�����rnc��-����mC�\r�q\t�\\��\r�Cm ��Z��d�;�\u000b:@\\����Y�\n���\u0011�A@�\u001f��2|\u0007\u0018S��Nm[3�MO�?\n⠓ꮓ����h���C}\\Q�Ӑ�#ۧ�tb\u000e'�&�^�\b]�z'��rdI0J�xDE���9�%=\u001c�^�gd���!��t]��\u0018��@\n�BH������4\u0011�\b/\u000eO��ef�Jp\u0001�R؉͒t�yu&\u001d�\\g��+&\b�\u001f\u0018�u�E��p���9v�Ř(�r�\rc�y\u0007�+k��庤2\fd�\u0013i�2�<)4m��t\u0007�\f�3\u0002z֦�l��\u001b�����5\u001b?WP��\u0003\"/0�Q�0���w\u0007M_���ha�_ğ��e9\\��\n6\u0014�v�|)ٹ�̭�A\u001e\u000f\u0000��?���;��\u000bg\u0003�h�\u001c�$\u0015�o��A�R�\u000b\u0011&��/�{P|�V�PE�b6�A^� \b���Ȅ�\u0011��eq]h\u0015���@\u0011���6�浕Ꮋ�DH��ʿ\u0013�M�\fŁƶ��3/F�{�dMSD\u0015�h\u0001\u001e��\u000eԊ�(ɚ\nN؅5���KN\u0015\b�(j\u0005\u001c��\u000f:Pn\u000f�t\u001fF��\u0007x:�N��[���wX\u0002��A�*�`���UrQ����\u0012�U\n.\u0016�����O��_\u001c\u0015L�\"\u0003�5�\u0003���I���V��d?�Z%A9\u000bjd�\f��^��\u0000�\b�c\u0001�sN��\u0006KT\u0010\u0007�����[\n�\u0018\bq\u0018P�|:���2��&��E\"��\r\u001e�f6��1o�7%\u0013��QdQP��m�$<��g�\u001f�\b���ұ��,\u000eՐ��oJ�\"�b��'�j)�bӐ�#��lr\u001f�wt��Z$^�\u0014�6�\u0014Lg�7a��<\u0001@\u0000\u001b'\u001e\td���̩�0φ�A\"� \u001c��X�E� Ʊ�/ 2��7ҝ�n6��r�W\u00100���[!\u0012`��x�\u0015\u000e�\u000e\u0014*��\u0013��'[�y\u001c��c����0���W#��U.��w�S[\u0005��]\u001f��_�\u0000HoݕH�\u001a�<���>a���%��T�\u0016�\u001d���\u001dޤ'D^�w\u0003�Jo�s̚\r���\u0010�LSkq��\u0003{�\u0006��ݔ��*~j�l\u0000_��\u0013�����ZQ��G���\u0006=#ZXPW\u0014�\u001a�\u001f(c�\u001a}��Ż�q�s�~K\u0010r����\u0006�� ��u�*�R���ڣ?��[^a�%`F�@\u0018\u0016���h>ݞ�SY���7Ó��\u0007�V\u0011�m�\u000e�0���@j}\u0000��~�T!.�A&� 0����J�Έ\u0001>��P@�g��)U������q#6���oM�\u0004l0��,g�W���i����M*U�V�ʩB��0\u000f\u001f��\"AM���GCh��Ձ�\u0006��]\u0014#Ai��\u0000B\u0017���3��1�ّ\u0004Q97F�5��ka8��@����Ȥ0�,$�Z�g�\r{�'�S\fDO���L\u0018��B:�&\u0006�j#��I�����Թ��7c���LJ|�y��]\u0010^ǖ\u001fO�'��P���KJVo\u0005��-�:Y��\u0004���h�\u0005+��#�U�\u0007,\u0018@ܰ\u001b5ߍz�P���l^���k�G�i�\u0019D /Wt��)�3n?S�\u0018\n����&�mI�\u0002\u0014~ߦ��66�A*� D��X�)�Sp �³�b\u0007��\u0003�5\u001d)����\u0019� \u0005\tN\u0003\u0017n���9`[I�F�J�j�_`�?ШKb�@��*�H\u0018Gh�\u0011�A(� ���L�\n2�0\u0013#��0��,)�=�\u001c���\u0002��=e�@�q�\u0004� K5\u0012�\u0003�\t�}@\nLa�`�I��UY�ڸ*>X[(db�3��DH�N\u0013K\u00164\"+�*\"k�T�j0\u0019b0�y5=�\u001fXE:\u001aӧ�ca/�Q���� �\u0011\"�ܫ�\u0007M�~hT���|\u001f�\n�X\u0018�A�\u0005qX\u0006\"=\u0015��\u0014H�Py�L4�\b��V�\u001eb���ێW����X\u0002%��q^��\u0004�\u001c��vE\u0017\u000b_r�HOOy��W.e�z뇀\u001c\u0016`T2@hQ��03?S -%\u001d�b��JA\u0014��5!M�3@_ݡɜ�bݢ�wq� \u000bj�S\"\u0005aTI[�=b\u0006\u0010��8:\r��E���t�v̿���j��d��\r1��6\u0006�*B\u0019J^��M��!\u0005�\u0018$��@E�\f��\f��E_�{\u001b�6�\u0010]\u0007GV� 3\u000f{\u0001��OU{\u0010����4�Z��)�\u0014U���fo�$$4�ތ�w�s��%�(vRʅ.��\u000b��]hQ���7\u001cyRUL�-��\u0014+!�\u001f��J����'�ʇ?�W�)�֛3\u001d��BԐ�A5� ���L�\u0015�%�b� �do�/�'�u�p�'�\u000f�%!?\u0005��(\u001e�Kǜ��>A�Bb��\u0007\u001e=܇�}�5���\u001e���\u0011(�������\u000fy����)vK�+i9�l��ڪCԁ��O&gh�W��\u0000l_\b=�\u0007G�2\r\u001e����z��l'z\\��U[���m���.�\u0012]W��I21�\t5��xW1�3�V��h+vdfv8An�a�\u001f�D�\u0018%�\f��\u0006j#�H��=�h\u0004\r��f��\u001f�\u001a\u000f4�r��\\X@��2#\u0004?\u001e��+I��Gʑl-%@şT��\t3?���LR81��'۠����G����>\u0019\u0005f\u001c��r�<\u0006�T���i��\u0012cZ�Q��Ec�\u001b�9�k�\u0001\r�A-� ���J]/k+���x3q�D�)Ra�ׅ�A=\u0013�V�ʤƛ�Hk\u000f�ۇv.�E��*aFO\u0014xy���1*��*ao!#�W��s��%�\u0018�'�G�2:\u0001^\u0013k�M@��|�`n�\u0019��ݯ�X�\b-u��@�\u0012B�\u0002�R()��A�0!c��4���b[�\tws��\u0017�i��l���wa�1�\n�^�������D\u0018�:�vH��e��\u0011��\f\u0016�7\u001f�@rH`Y�j?ܔ\b�\u0015�\u0012\tr\u0003\u000fS�|���\u000f����?M���\u0003�\u001e����C��@W\fa�!Z�=��?X\u001c\r5�(n�\u0018�OZ$�*t�� ��`�����W�1��\u0006��yw��j���,?�\r��%?0�A1� Ѐ�L�ï�\b�\u0004�\u0013�8\f.�\u0013��I���\u0004�\u0019���\u0019͵m����jw�\u0011�S��a�\u00194�\\�?u�sL,}���<�\u0019��*g�y���A�t �f���A��\u0013ʆ����GjC�=�\u0010-�4-^2�}~��\u0007\u0001�Y3^��Pm��L_A5\u001d����\u0019\b����4�\",YJeеw��O��̹t_�����2�\u0001�b��\u0004;\u0017��x^93�#�y���i>�\u001d:��n<�U�^j1��\u001c��w�\u001e�h\u0002���ߡzi86�\u0013)\u0003�j|\u001c�m\u000b0��{^\t�\u0015�X?����\r*msfT\u000fS-�Ի#Ց獦(/�i\u0003C?�F����P�\u000bT\b��`�cLR\u000f�\rGҤ���A8� ��I��\u0012R��k�k��ڙ.[X�a\t_EᤨG�d�\u0004�d���(V>��b\b����v�۳(\u0017\u0005���J\u000bZxʚT\u00077#LO�cA��\u0017�&\u001f�\u001c\u001d'\u001f���\n6�p������R�\f\u0019�\b�?r¾@�6�;\"\u0011��}zbq��\u0006�A�C\"ێ���\u0014�f\u001d�ģ\u001bꨩ•=�M�Y+�p1\r������u��Q�k���hӉ�����qC�g\u001c��\u0006�xr��\r\be|l}\u0010XN\u0014w��*\\\u001c�`����u�ܶ�:�\r�t�k#�\u0007��\u001f@t^�\u0013GC7�}q;s�`�(?��ԼF;�\"s8 $Q���\f)\u0001��:�\u0007�\u0004\u0012e�\u0000z�y��]����� �.C6ރL�� �A1� ���L�@)��\u00069��w$e�?g�@���\u0016����ւO�(�9�c �\u0017��g��0�|�zv��Lk\u000eܘԬ��'�?�\u0016(ꀬy��>�N\u0013h2�_�܁.8�k���$��s��2���ͭ�B:�$\u001e�\u001aޑ�\u001bh��P�2�P��U\u001d)bY�6���wJ�%Rfv\u0000K���®� S)<�ª�)�8��£JA�K\u0019�N\b��\u000b���ZI1�$>K�r�R(�~�R\u0004\u0016%�=�\n��Y����H8\u0011�\n�L\r\u0011j���$����)l��f&p~?C�׀5��l\u0007Hc8�\u0012��c�6'\u0015���m\t%�+(�>u7dt�t�7�\u001f�K�E�*�\u0007�.���7r�A��!\f��|����`2\u0012�+����,�L3�CS\f�K�\u001c���s���CH�{/���\f�\b@\u0003 \u001f�f�ɍ��;�\f��]:H�5���\"?�5���5+��A��;G�p����\f\b�\u000bO�T�\u000b�R&\b��\u001f$o}S{�{܇����sx���dL�\u0001f2G�\u0016$D5�>1M��Ɍ�!�hIf�����\u001c�i��^\u000f��Z���C����)���7\fi�\u001b��e�o���N���=��X�a��E�`Vޫ-��C�kǝ�&w��\u001ew�Y���+���L�\\r�f\u0019�\u0017!��b\u0018\u0017\u0015�\u0016�i)Q\r�����o�d>/�>>�\u001c�|��uM����\u0003��\u001e�F�p�-մy�~\u0013!���/\n�uE���2\"���\u0004�F�m����\u0001�!\u0003� \u001bw�\u0015�\u0016c����aۮ��\u0012-���,��`|\u0003�\u000b�!\u0011\u0016&\u0017\u0012bG�ڀ�i��2+�H�\u0003����$�0ݰ\f�0�s�qv\u0003�2��z�\u0005C2�\u0004�V�P����dF���(-]�)s�ZЙ�ʦ�:Ѓ�\u0012~\u0004��\u00163�j2(\r����p�֒\u0012��ά�ܣ�L����0��]��oZF”\b�45��E<��\\�}�/\u0013������u^�\u0015;\u000f}�1���Jy�={�\u001c��U�|G��ȽJ��\u0001v*�Sx@\u001c���\u0013K\u0003�?K\rXu�u'�O�l�s�ʣA0�!4���\u000e\u001d,��)����\u0012{��\t \u0005�3?կv�;�1U\\Q��@�\u000b]{���W�\f\u001f�.B�\u0000���Zt�\u001c�dp��\u00128·�r�yi�ao��8�”\u0011��h�;���5TC\u0004!8q�\u001d\u0017��?XǢ�\u0005Q�2%�r.�V>�83���*k?�c��2vx�aX|<٧�\u0018�im���G��E٥���\u0001ѿ��\u001fI@\u0018p&��\u001c]�����Uۣ`���'9\u0007<��\u001e�;z\u001f3\u0010D�:�uX�s���\u001cP���>�jR#0��\u0002���u�\\����M��3I7\u0016���1/_�\u0019�\u0012��\u000f�i޵;�%���b\u0007�\u0019d�2�\u000b/����뮜�T�7\u0005\u000b�\u0015��LB�؂٣A(�!H���\fz\u0016�'\b2\u001c�p�������ݪd�8�-�t�z�\u000f�m6�G/��9�(\u0014Q��\b�R��z\u0011\u0018\u0007\u0012=^׌*:b4�#Ogyt\tt\u0013�n\u0012�v,����\u0015�Hbr��\bq���*���\u0017�z�\u001e�\u0005\u0004��\\��z��K�\u001b8�cYF�#>�w�\u0016��F�ʴk��D�%k}��\u001f�ֈ\f\u0017n\u000e�xYn�g��=D�&�7F�}L;2JR�\u0016.�\u0003J�ד����zC\u0017��}=�\u001d�\u0018 �b����\u0014�\u0011�L\u0005��\u0019S*\u0007rه�S\r\u001d�\u0000l�(\u0011���\u001c\u000ex\u0006\u0012I\u0002Dp<�H̜���F>��\u0003\u0011\u000e\u0006]���_�\u000e��C��j��3\u0007����0\b���ףA*�!\\����\u0016�D���\b�\u0013\u001fژ��*�]h\u000b\u0007nL����6�\r[��\u0017�}�*�c/��Rm��5I*�\u0013��U\u0012*{�*\u001a�\u0010T���BH�\u0016����C��^�£�m�c�\u0002�Q���֐Q]�چ�\u0014�U{�r��`okU2�}��5�*\u000b2���F\u0005Xdw큔\u0016�x�\u0016��w�\u0000��M�f\rf\n<�=\nXHť��,$b�jX\u000f���\"���ϒ��Z�s�\b\u0006��m��x���P�U�\u0010D���Pι˧m�s]�;�eZ\\�#�����c�c�k���\u001c5�ק����k�\u0003\u0002��\u0012b\u0019\"����8�f\u0019���[4\u001f�\\{0DK��{;q�����\u001d7�ۣA$�!p���\u001d�Ƀ5�\u0012�2#��_�����\u0003|?�\b d<�|�0�v�yf����'�y\u0019o�-�\u001f���\u0001^bF.#\u0003D�-�M�wm(hs\u001d�7&J��a6d���\u0007o�qH��=��O\u000b�<��G�8��h4�\u0011\u0004�Q��_VKD���U_(�}g�\u0016\u001ez\u001b�p�K���㝵�l>!\buG\u0000E�ؕ\u0007�PFŴ�#�װ\u0012[4?G��,����e�Y����t�Ʊ\b<\u001b�k��`�A����Hk��\u001d���\u000b��x�\u0011,.ֹ�zr��\u000f��Y��\u0015�qC\u0004�\u0018��b\u0006�s�-�R\u001e\u001b�\\Ǒ�N���9��,!0ךb��t���h�aT\u0000�գA*�!����\r�ۀN�\u0005#Qػ\f\t�ee�����0���;���AT�E\t3��\u0004���`�e���}T\u0006D��+y����\u0011�\u000e>�]\u000f�l��2\u001c����m��k��\fa~��*�\u0007�m\u0015�\u0001r��\n�M�\u0005��A\u001d�ʉ\u001f����F���h\u000f,��\u0018�lW�/6\u0015\u0011\"b\u0006&%�⏤Y5䶌\u0005$�5v\u0016\u000e�pv�L3��=��izh\u00037���r\u0011���Ż�R.\u0011� �}�Cu�Wّ���^V=�S(/�K\u001b��Ɩ�\u001a*�)p=Ǜ�����H:\t�k��W\u001e�Cy����\u0004\u0015��f\u0004�KJL����y�s����\u0015nSt��by���Wh�7�Ѳ]�\u0006�ڣA8�!�����*X�TpB\u001f\u0013\u00107��:�p%\u0013�\u0010\u001e����\u000e\u0004{\f��\f�Z�F�{^�v�ɮ\u0005$(��\u0017��\u0002�ܙT\u001f+\u001f�\n��NG��q�\u0017y������\u0010��H�i���w\u001d�|)\b\u00004𷞔�7����`\u001f\u0004\u001d��\u0012����`�����\u0013\u000b\u0011�0\u0002�\u0016�]g�Z\u0019�Y�\u001d,u��I\"y\u000eș\u0002 ���\u001d�\r:��9��~4�h�K\u0004uj�)`�Ϊ�L\u0019^X�߂g�]o��N\u001a\u0007����^1\b�\u000b�:�v�۴\u0005\u001fɠ\u001a�MΗ*��-p��P�r��L�\u0015��r��f���a?Ϭ4\u0012��[���\u001a�\u0012�����\"\u001aCȿa��x�]\u001e��h�\r�Ʌ��\th�iʀ�D�.\"�ݣA.�!����\fM��{��k�w�ˇ2�K�\u001a1��u|�T��M\u0018(\u0003¡;\u0001��28{Р���Y���\u000eK�9�{�>\u0013.v\u0007?@=\u000f\u0003*��\u0005Rn�D\u0000\u0005\u0016��\t��\u0012f\u000e�:�������:uz�\u0016���&��M��1�3�Wc]\u001dio'pW�\fK\u000f������\b��\u0010\u0004��2��J�������gr�H�\u0010�3�\u0017@���Aɕ���Lp���\n�f�\u0001&��ye'�Wwi���}�טL�G\u0010�t;2�|\"�\u0019;�\u001b�\u001e�\u0004l\u0011�l\u0003��\u000f����\"�5�2A�^��Q���\u0015�s��\r����\u001f��L[9P��U)h� <��|ayVe�t�^�_�\b\u0014�� O\u0002\u0001V�ΣAE�!����\r\u0005$��Ӵ�z~��<\f�o����r�����#N+ΣE��Lus�8�o��i1�\u0000d\u0000�o�SwO`�NA�S�*&�\fe:�v����?~��ɛ�\u0002�u�E$d~s�<��P`\u001e�.G_\u001e��`:\u0016�a5Os,�\u001f\r?�\n\u0000R&�V��,�M\ne\t��h���N\u0003\u0019�����.B3-����\u0000��-uU�F���Y\u001eѾE79?c��tY'Y\u001d��W�3ʸO\u001d�ܨ��\u0003��_���Jུ��((U�\u001b���J����h���@\u0006\u001cχe�$�5K@�\\�7��5�\b�}~D�^�\t_Ӄ���T�m��<�U.�^�\u0012\u0005�\u0010�T%N\u000e:KdE�s������9=�N8Ee�\u0010\u0005�ϣA;�!Ԁ�\u0001����vL&����\u0003\u001b��ѷΩ���8E��g\u0002W\r\t~/q\u001c^\u0012Z���K\u001c\u001e�)\u000f���g�`���b����H�m\b�X��,\u0004�ޙ-[�\u000e^��$T^�\u0018 \\�d4�K�\u0019\u0011�W�C����1�wbU�\u0015������'�����V�j�m���rY�����Ld=$�>\u0011��o\u0012\t��(C�ӧIk\u0006#(���D��KZ�\u000e���s~I)`;��\u0002�\n�&,�Ƿ�\r��ق���\n2\f[�{��ꈱ����:XF�iv2��[\u0013�z]Kڇ�4Rj�HD��43\n\u000e%\u001ar�+\n&FBve*�����\u001e��?�ul\u000f�jM��\u0006`6��dB��:q\u000e���T[{`�9;�\u0011\u0011�kt�A8�!��JM���c���\\��\u001eGؾ�>�@��YM%���%]ή\u0016kD����\t�>FK\u001c'fIͪߩ��z�E�F��\u0013���\u001d���٘;\u001a�\u0001\u0001b���Q�D{2�\u0011�~�d��D��Ɗ���ng�V�E�S�\u001c���B�����\u0005�e��{Yeo�\u001c¦N�\u0004��P�t�(\u000ec*\u001a�sj\u000en)\u0019zpܭ���N\u001b�ܭ�?����%�R@��c�jN\r�-��\u0019��(����U\u0010S�0s�d�Ӑ4k��e�ey��$�\u0019�=�KV��P�#��9>Jm��7��wd\u001f�':�dz\u0019 ~�\"�G�wW��R\u0005�G?��0�&��L�šBy/9�/�ߔ.y�s��,����C��A,�!���M%�(N[k\u0010)�\u0011��e\u001a�\u000f5\u001d�\u0000rS����\u000f��Pz�:P6�����SF�b\u0011\u0016>j�覊�&\u0007������&У�莞?�3�j' ��^�.�l��y�\\_�P��t4�\u001c\u000b�\u0013�t��\u001d%�Vǰ\t}�}54�c��f7~��ќ\u0004�\b��\u001f��,�2Ƌ,q��S\u000ed���m��_\"We�Y��\b�ޕ�i�Ge�\u0015�\u0012��\b�\u001e�6\u0004V8�!��\u0012Ü\rDY����_���l'�e~�U��X�n�L�������j�{H�.�`6��\u0007�T�Cˇ��l�\u001c���]�R\b�\u0007��,����>x\u0007�\r��@).����rP�<�\u0016�Ɨg���ңAف\"\u0010��}�f\u001a?�M��\u0014\u0016+\u00046�����@ZZ�\u000b���ny\u0018^'�^��\u001d��xs\u001d\u0002z'a�X��[k^�0���F�q�\u0013���DE��ASO\u001e2o\b�5V*g#���\u001a‹��8�r�8\u0000H�CN3�_r:L\u0000w\b\u001dT\u0006�\f1Yľ�\u000e��i�s��'V�\u0018��W�~\u000f[�w�%Z�h���S�T7��Ȏ�Ŝ����/��\u001a��\u0011ߡv�E \u000bH���z��=(������-�!'�\u0011�^�M��N#��K�k\\�n�M#��h3|q���?�q���[Wdyq�\u000e]�\u0003��P7n�h}\u0000MH�A��R�⫰�k���\u0011ԯqڮ\u0018T\u001c�3b�\u0011 i\u001c��?\u001a?/��v\u0013��\u000fB�\u001c�E_rw�Of�l��VV)�Q���M\u001c��\u0010�\\'�-,٩**�廹���h���@B��u7�o\u0015a�J\u0011�J:��W��m6\u0013Q3��;�\u0016�_\tsѣ2U!zM,\u000b\u0007̐n�@���x��R��LwEƎ�eM_��%�\u0006�߆O]LP\u0000ံ�=��(��/����B���l��N��\u000f-~�A\u001b�\"$��MC��̸9�mY�)�8�\u000be\u001a����/\f��N\u001f�B��\u00015n�.`~}e-���;��M@\u0015���#ㅢ~�\u0010p�\u001dz�K\u0012�a��\u0018�G�_\u0007=����ښ�\u0010LX��ʝŪ�f\u0001_sa��m�\u0003#�\f���=���a�Պqs\u0001\u0000�Oq&ƣH�+�\u0002��Zlpi7��D\b\u0004���s��\u0006K�^$\u0000�\u0003)wJm_Oo����\u000e���(�ӵ%H�t�K���-\u0017& \u0012 oV�5\u0007& ���yL�<���U'\u00057W�s��]��\u001a��\u0015A*\u0015\no��\\���#>��\u001a}\u0007v���H\u00007B}YB4\u0012���\u001e���\u0001s�?A\u0016�d�A-�\"8��Xе�I \u000f ��͈ݛ\u0001P@({*E�Ra\u0015�L\u0004�œ�mRQ:m\\n>��\u0006��؇�\u0003&�h�\u000f�\u0003�6,^F�r��[�b��\u001a��\u0019\u000e�x���)Zh� \u0011��\u0006�f��q���|R7m\u00111��z\u0007�\u000f��V�׷\u0018�E��1�\u0003\u0006�\\%o �/\u0003E�������bn�_s,\u0003#�$��47N\u0011c�-B\u0000�AN\"�QPF�D�O���\b�\u001e!\u0016���f9\u0005��Pu���<��c9�Σ�җ��;G���&ُ��n=�I#�wU�ڞ0%\b$Ca\u0015Tu�(ϰ�\u001ccGtXE�S�<\u000eh��Q�[x\u0005��H�A%�\"L���\u00135�\tO7�m��7;W�#\rX�+�q\u001ah%$\u001e�d\bqkQ<1B�%BNm�\u0007h\u0005iW]�;5(\\\u0019�>r˫.vT`A�\\ի̊�-��0\u001cwo��X�ხL�����c�Li��4�Z^\u001d���\u001bQ�<=�C��[�{��E���\u0005��з�(�K\u000e\u001b򒓖\u0011r�b'o\u000ejS��\u001a��Q\u0017?�6'�y>���\u0013�/B\u0000�8>Z�f�\f˂�\u00062��\u000fh׵�O�\u0003���S�Վ�p$�)�S��8��6���H�'���\u000ff��I,Ṃ7mb;�_\u000ew\u0017+����)�@n�)�\rIyo\\,\r�?��I�p��d�U)X\r��G]6C�OwR�\u000fy\u0019�bm�׼����\u001a\u0010_�Q���A*�\"����\u0010�\u0001\u001f��8�}�����t��\u001d�3�q�v�\u001f�\u0012��\b�c̻�/�\u001d\u001f\u0012S*d\u0003Ȭ������\u001e�15|��{���@׿��v�q5�r_��\u000b_��l\u000f�\u0013���b�\u00179j����\u0013D��Q(�i���\u0001\u000bp��Q�bҼ�d�6��A-�\"Ā��\u000eq\u0014D󱴯��R����,X=b�ո^�\\����7�\rY!.ϰ�3�`dDbу.�8\u0014��\u0011\u0004�!�\u0019\u001e\u001e��\u0007Y�\u000f\u0007\u0016]\u0014�&(j\u000b��\u0002\u001eY\ti?�\r�\u001d�pTc��T��\t'�;͞2A\u000b���GV�.�\u0010nl��\u0006��L0�\n+�9iӺD^λ\u0001�Q�\u0019��yƸ{w�T\u0018�\u001cB�\u0011�\u0017�p\u0002��>D(���˫-�zxH�w�&z��\u0015`B��_\u000e�B\u0014����u�H�{~U6�t\u0010\f�\u001f\u0014�\u0012��L.~Mc�0�&��\u001c�,,\u001d�\u00078�0��>�D\"<\u001a#\u0014�v\u001b|�w�\u0002\n��\u0016��;\u001a�\u001e1\u0000Y\n�q\u0000�Y�*����=\u0010�M{X��AY�\"؀�L�M���b\f�p~\u001b'�C���̵ɫ���l \u0012K���]����\u001b�'��E��p\u001e��\u0003w��1h,\u0017�8��ٴ�I���\u0001��g?��i\u001eqydc*���s=\u0007�)1�k\u0016Og �\u0004![�y�X�\fe�f�tD������\b-�\u0018*Ahc2ė{�y�Ӈ۔��0HD$�K+�\u0006{���􄜁�@\u0000����H��:!F@��2�u�\u001f����y��\u0004�\u0019\u0006;�i�zT\u0004\u0015�'��<�[�D\u000ft\u001f�B8�'��q4�\n�j;Y- (,�6\u0019�Az�f˞�/dpm2d0��\u00020��\u0011��P��n�Z+TD��o��\u001e�x%ճt�\u0004�h/+K!�)Ԅ�R����݆3N�Н�,��2PrY��k�q�;�V�\u0000(�Ycw�\u000b\u00105���AT�\"��L�L��}�\u001a��A�\u0005̼�L�ϒ1R�͵��iU�\u0001\u0010����L�\u001e\u001d�0�{�Ѓ���w\u0002��ժ��[�YH���\u000e\\�6t��\u0013�i\u0001S\u0000|��\"\u0019�ⲍ\u0013J�lt�/�_#���Q��\u0001�Z���'�9�\u000b�)\u001cN\u0005�\u001d\u001b s��N�e�c6��+E\u0014ES���x����oT�$\u0018\u001as��SNI\u0011\u0012\u000b�\u001e\u0015�P��d~<�\u001c��zF��t\u001fs\u0000�\u0000�@\t�!\nb������\u0018�y�'=�a�Q:�\nY��\u00197�^T[�݃�\u000f\u0006���\u0006��IE��\u001b��\u0011�}��{p]p>(0\u0012�L�SQK�]�+Hm�u���k>-\u0000�\u001d ]�ץ��R�T��G(�bn�X��e\u0003�\bT��Sב�!\u001f�\u0019tzn�����K��e6��A9�#\u0000��Mw&k\u001b�C�&�\u0017f\u0012}{\u001dB���ƊC���\u001c���wC�'���Juj;\u001a�\u001d��F�`�F�__�x�\u000f�Y��6�fu��G��E�\u0007�{�ݹ\u0017v\u001b���\u001fG���ؐ�gR\u0007\f����\u0012���[d�m#�\u0003)���\u0010\u0004��5O��bwZ��\u0017��hޒ\u001baNM4�ֶ��ƣ��\u0018��`ЂZ&�Bs <�ܼ���|2\u0015{�ճ%\u0010\u0006\u0001g�H-^��F��X��m�\u0000��z+j\u0010\u001d�:�ٞZ��&���q�\b�ah��\u0016�\u0000)��=B��o\bA�������.��C��\u0015��~}�\f�\u0017��\u001a*k�ch>�;{�B\tD�\bl��ɀa�O�\u001e\u0007*�^\u0010��V*�dP��`���fN�-�A$�#\u0014��X�\u001cK�H'\u0006\u0019�(\u000f4\u0002��Q&}&�t�!�u�w*ۏ��є�T\u0006�`�)*��-��+G�\r\u0016\u000f�\u0004U\u0007H�\u0014�\\�h2���E�\u0017���\u0015hv�����e�3S\u0005���9�\u0006�4\rL�2ט�}h�\u0018����r͏)�E�'ų?g!��\\V���'Q���ٮ^b޷���\u0012��3�Po\u00176G��JP�y^<�Ѳ\r�\u0005xL�-\u001dF�)\"Q���\u0014�oU\u001aY\u0005\u001b��� ���=5iH��\\z \u001d\u001d\b�&�#Ta�Y\u0001����\ne�~>�P$\u0003�\u001e3��j?��}��@`��2��̺H\u001b�O^\u0007K6{��\u0010A�N��&\u0001\u0003'*U}�fD�A,�#(��(�$�0x�7�[rr�i\u0003��(!흣ả�HΑ�^���\u00019ݧ}��9.*O���p4_���qi\u001a\ra��QU\u0019E\u001aSxm�DY\u0014+#�\u0001����`\r1c\u0018\"P<�\u0016�K�\u001f\"�����\u001d`�\u0018��;�pĤ֬�\u0006#\"\u000e��ܷ\u0019�n1A i�:aأ/�h$�}7H5ׯf\u0016\u0019h\u000b�h4�k��ٷ=-:�\u0000��� Un��w�Re\u0018�v���k�\u0012\u0015'\u0018\u0005'gů�+x�el����\n���^B�-�\u0018(��\u000f\u001f���Z�u'�2O��nԬ��\u0013�SW�Ѕ�s<\\���dBu��$HKeuϼ�;�R��r�\u001fD��\t�\u0007��� af`>�A)�#<��7\n�*���x��m�6\u0013-\f����dT�X\"o�\u0000��*\u0015o��v�������\u000fc�h\u0002pe5;�0�_\u000b\f��T��;�ܨ�{���t`'�v��㦷l/��8q�]r����N��\u0018�v;6qRJ�y'\u0004_A\r6.�0��\u001e�e�%\t��Z\u000f`k�U�{�\u0018\u0014�\u0005���\u000f�k\u0018\b�0\u0002Ool�n`��>�\u0000J(�|U\u0005�_�\"�\t�v�b��s�\u0010\u0006���r\u001dp+\u001c؞����A��y\u0001��w�S���l c�\u00013��:I@CS6��Eg����)a��U\u001f/a�\u001a�\u000b2�\u0014�E�HmHc�52 �\u0004\u000e!\u0010?�Ը�_�]�d>vD�OiR%8\u0012̣A%�#P��M2�lL�E1��s~���z�b��?7�\b�?r΁f�goDB�1\u0016>@q�/>��E LK\b\u001cʜN,|\u000f�!���䗕e��!�Nc*�(?V�H��6X��\u001evI&\u0005��-ݬ�BA�\u001f�)g@�\\\f�2f�{��a\u0016\u0019#8�*�\u0002� \u000e�3$\u0014F:ߺ&�X��O\u0012�}�Qi\u000bx��\u0001�ԢY��:��aV[�E�U�\u001f�4�\t[��~�MNlX��yL\u0006�֫,\f��E���C�\"�y�2��Γ��g�Uk}W\u0006���\u0016'\u0013���@i���,�\u000b��7������I9\"��&�în�c��`��G�hT��U���I9�S\u001f�o�&��p�A%�#d���s�FQ�U��V\rq��곢�2�(�\u001a0�\u001d\u001fU�]\u000fo�0��n�z�+ߔWj���m`�����\"[��e�c�@y���r,;\u001a\u0017���)-w�lH]�?��\f\u001bu�ت���!��\"�#\u001e�;\u0001\u0010\u0015ʍ�\u0017���\u001e��9�O�*�<��5%�>�g\u0001�{�*.�G\u0013S[���n�%�:\u0019�\u0006��Qg�qy��%�ʇ�:72R�B�*\u0001|'���#��^yFh�K>����\u0003[2\u0016В�|6��������T�U/�t˝Y\u0005\u000b�Wn𶥋-�U+�A/S-]g�Wh���g�EԔ��1ON\u0011\u0000\u0005�\u00048꬐\u000eˑ�s��j�g�!��A2�#x���U\t�\f�j�3���#�\u0001q��\u0012�ur�d(\u0000�� ����\rO�!p�皉W�����4#�a�\u0011�\u0001\u0017��&�\u000f�}�n\n�\u0017���U��\u0006M=\ryAj�o͔�=1�&1�u�<�9H\u0012������G&�/��\u0010C\u0018QM\u001a���\u001f��A\u0001\bQu�/���skk���gL“�/\u0002\u0005y��݌,\u0017��\u0013/D���\u0002���B�(�#���\u00011�{}t,>�\u000f&/�X4з�0��,�Kte��L��\b��\u000e��7\n8Ix|��\t�됼t��X�\u001b͒b��\u0006�RZ���\u000f\"p���#���>��13n�&�n\u0014tT��\u0017��\u0005��\\r$�D�\u001c\u001d�;���&u麣A��#����a\u000fمx\u0001)O�����\u0012>�>*\nڤ��S���w��\u001d�I姅��]�U\u0016D�ڌ\rg3\u0013�I��WX}&\u0004�2|�0�\u0019D\u0011\\P\u0014\u0015�\f��*4&��\\5D\"4X���\u0004�٘pM\u0012;pjqn�\n8Y�KY�c\u0016\u001b�n���\t��g��\u00071\u0018d\t�PA��Ւ�_\u0005�\u000fV7�~��J]o�XTo\u001d�TGHa=W۲\bwfx�sNe6��nԺ��ǃ�7/�@��L!w�\u0015(s��c+�\u0018e?Y�;��&�lL)\u000f)N�����P���\u0013\u001aK��\u0013��\u0011.F7>�\"��Kt�hټ�\u00168IJ��^Ά\u0018.�\u0011�4�I\u0014s{�\"sC<%��x�u�>��͟dQǞ�\u0012�AG+tze\u0013�2ρ��(\u0018��Й\r�\n4E\u0014�u\u0001Db\fړ��\u0000��\u0002В\u001b�s\u0018u����W\u0001!E[j�d3��ҷ�pB$�)\u000b9[�1$�x�\tc��B!YA/���ݓZY\\�H\u000b\u0001��Q^Rt�d�Y�9�A5�#����o\u0002NH�j\u001e�q,�zk8�$�;�P\u0019��W$/\u0019��D���N�Q�µ����@�\u0019�B\u0002(�X슋\",\u0002�#8\u001egt\u001f\u0012\u001d�H=�\u001f�N��_�f���9-t�C\u001bpps��\u0010 �\u001a��L��]����x�9ψ�z:�\u0000�޻�\u000fV�:�p�$���\u0007�\u0015��sH@����/���)��˹3�5�\u0019�q�x��]l�3ly^*�`��祷n�\nޛ�Ӌ]��:�S��m^z���^��d��I�\u0011G�\u0011Ģ\u001b�I\u0002'��\u0004\u000b�7I|\u001e\u0016�p\u000b�\u0002[\u0005w���'�VJ'���\u0007\u001a�������O�Ҡ��\u0006|\r%\u0013��R�߂ܐE�\u0012��Y\u001fJŖ�!V�}��A2�#���L��|�h��L�xM�ȃ��E%L��K�1G���X�\u0004 2v��k��{�\u0012�a$wM�J�N�g\u001c��\u0007��K�\u0001ó\u001fG���\rh|���-*\u001b�(FF��\u001f3�w5���\f\u0005\u0000�O�-��\b��\u0019Jm��w\u0003��!��H���Ԛ7���>�r\u0016���k\u000f�\u0012\u0007��\u0001\u0015\u0016�l�Xo�NV��ʇ`Y�����ǪD�\u001e���R\u001e\u0014A������\u0012~�7��'��\u001b�Y����vU\u0019(�����l�\u0011W���i��;\u0015f��z\u0001\b\u001e�\u001b���@\n��۵���:�Yl�\u0015�\u0006f\u0011�M\u001b\r;l�gK�\u000bX�\u0007\u000fe�y+7F*���'���\u001a{dM�Q�7������;X�Ah�#Ȁ�L���\u0011s�\u0016�/x�fl/V��V��\u00148\u0013��\u0015)7\u0010�HS��~�����\u0015Z�\f2�\fb*�S��')�\u0007\u000em\u0016�pXT\\^r��䪝�����wPP��\u0006���:�?׆��\u0012�b\u0011\u0007!�\u0015.���\u00017����0U�J��ʕe'�\u000f�l\rX�t㜰\u001c\u001f\u001e��\u0018�D���'��\u0007�\u000eG\u001b�A7�#܀�Ð\r�k�g%��\u0016<7j�����\u0001\u0013hcZyI�\u0012\\�Z�P\u0000\r)�~*'X#]\u0014\u0006q���쐑b\u0002\u0002>D:\u0018Ν�礲\"}\u0019\u0013\u001b��V*�2<��1,MR�m)x��3�F#km\u0018�.\u0013�\u001a������\u000fO��}\u0001��3���Ԯ���u�\u0000ݹ�E�|̚$�s�\u001f\\�\u0011\\���\u000f�Ya� xJ�\u000b�p\u001ee%Gx��44u�\u000f������P���43Ա\u001e_=��ۤ�jEA�\t��kL�[s�N\u000e�~o8\b�����@�϶�+imV\"r\u000e\u00146�`ك�@0h���U��\u000f��G����*\u001fd]Q����W�\u0014V\u0004�\\�W�&���\u0017�$�\u0002�\u000f\u0015綠\u0001���\u001a�\u000f*>|��A��#��������W��#Q~\u0001��\r:�\u000f\u0017 *7X��G���\u0004��`9�tv((���;)o�t\n�\u0006|��~��HL\u0019Ubp�3/z\u000b\u001eݿ�eL���T|�.L��Sx��s�\u0013\u0014��p\"\u0001�i�'b����\u0013�E��½�d�&�c�H�5(�ϲ�N��*�TH���+�24������ט�ȇ\u000e�C�����\u0014�\\�n_z��]P�d��\f\u00038�G��i���V��\u0018\"����`*\u000f\ta���\u0002?\u0015�.`�\tU]/�a?�Wv�\u0016}�uj�T��B'�ʝ�S��x�=D�������s�\"��}\u0001\u0005)㩷ό�U���.[�N\t�\u0012�\u001a���e�Ž\u001c�\u0015ѽ4�Q�$@����=4��a箭;}\u0007C��2_�\u0012�Ԧ�d\nF�\u001bh�5�א�1jG\u0017Ƀ^M|�\u0016_��\npVs����^��c��P���^�ԫ\u000bY%ҋ$���\b���r�A)�$\u0004��&댠 \u0018\u0006�B��BQ�}�Q �h?\u0000�B\u001f\"�ٙ�W\b\u0013$<��.9n�\u0004\u001d}�H(�\u001d1�\u0016�]����ئ�o\u0017�\u0014�)�Y\u001e���-W`��\u0001�H��ƶD���q��_l��,�z\u000bMAk��4�u&���Du�\u0000\u0003E�b��F\u0006\u001b\bf��o�!�\u0010����\u0001I�/�\u0003m5�5\u0013��@8���*��\u001bx��\f\u00147#\u0016�X��s�'&\u0018\b\r\u001b�\u0014tl3���\u0016(+,��\u001f�1&�x,�R~�x�4��v`O��b9�ٻ�.P]TcC\\/lg������Ae����l�¦J]D���\"7{/�\u001aS�]��ҪW�K\u001f��t��s/T\u0018s\u001e\u0018�鲾�A,�$\u0018��M~˱(}:�9�kh|\u0002�\u001b�O\u000eR���.C:/Q�2�\u0000k�0�)\u0014PoL���:J�xV�<�]\u001a_\u00129?8y����\u0002\u0004>��x��\b�<\u0007Vxv�\u0003��\u0004�u��k‍�@k9r���\u0017�f]۬|���.ob�\u000f\u0004�&�kuw��2\u001an��\u001a\u0003?\u001e���\u0006�����?���TRkL��\u0013�\u0003���\u001d�ӷ\u0018�\u0018VMA‰��\u0019\u001a\u000f�p�z���~��Ɵ�Rl�$�l���fHŗ�#s��$�^�*�)(�(��H@��{u�:\u0016\b\"R���7ȭ�\u001a:p��%de9���s�\u000f���V�\"/�{i4�\u0019�s�N�?�e\u0018h��������*;�\u0010�A(�$,��1�\rZy\u0001�g��FK��w��)\u001d���c\u0003��͓v�\t��\u000ec�\u0001���?uu���h\"\u0000��\u0017��^C��;>���-0��M�0�A\u0016�\u0001/f�0�d%B�\u00199Z��;��,@H��r�qxu`��.$��\u0015&9\u0011��wm�\u0000yW�\u0017�\u0013�*\t�>1#\\�ŭ0��\u0002\u0017����1���13����\u001a�\u000b��B��\u000b[v�oN;#���\u000f��3�+dM��B��t�\u000e\u0017��Y��p�`��8�\u0003_����t�q�)a��\"��E�\r}��\"\u0017\u000fg*�?���=��8_��\u0007�܀f����\nCt\u0001\u0000\u0014�~)�\u001eg�֊��ŐoD�\u0013)dB�8�ޣA<�$@���#Q�*�d��8�\u0019\u0005��g���>�#��0a�Qe�\u001f2?�R\u0001��b\u0002$��Ѝ}\u001d�,���\u0011܃^b��\u0004^���2�j�~@f�\u001ct�\u0010B\u000ec��ٸ,d�\u0006�*\u001b*���5g����\u0001p��Y��\b���t\b\n� \u001d���\nhIZ\u0014\\���\u001f�ێ�@/�\u0015^\u0006>d�E-���棡\u001d�5\n�4M�\"C*\u0005�侍�vۇ��(�B!pL%{�fţ��d�?;~������N�\"�{]\u0014\u0016�D�^47�%���}W\u0004:!;�!�,�<�v\u001d�S��g-��-7�1�\ry���Y�.++.\u0018c��#3\u000b�\u0003\u000fA\u001e��O���+o��c\u0005�D�v����6���M�����2�\u0000\u0010�£A=�$T��MT�X%'ְw�S%:��4\u0003/>��!h.p�\u0019>�q��-����F+Ş\nc��W8�K�t��ϣ\u0014�`�ӗ!\u0003�� �2�jC`�\u001c�\u0007��}g1V��o����\u0015�<*�E\t�\u0010���)�<�oR�w������X�X��/���~\t�J\u00186<\u001c9�yU�Ea�!�nM�B���sc�6���˛�(����^��\u0001߸Q;�p��dF�7\u0011�W\u0018&�s5���E�f�����n�Ū\u001d�1��H���)48����J\n_����m�\u0019\u0001M\u001a\u0019t��(�.s\u0018-�Z�,�A>��O\u001c���\u0004��2�1+\\�$\u0003-k�\u0004��M\u0007\u0018�j~lD\r��Ml��[-��a\u0003\f\u0017\u0019��&�=��{��5��$�CZ�,qQ�נ\u0019n�\u00164?\u0011���\u0006n\u001d���Bfqx��d\u0012;�>G�&x�y�\u0005J�\bڠ�ƸCSZI؉\u0014��,L\u0003@�b��lQWLQ�f`�gw�t6��Gw�=\u001bx�ºk=��c2^�}G\u0007sXۤ�U��C��G�\t\u0004a��f\u0004�sV��Y;�� QǛ�G\u0004v��@�\u0007ZA\u0003�\u0010�[-��ଳg^�U�A�\f�q��9�I����BA\f\ny\u0006���\u0001KgE���\u0007SHpi���Z\u000eF��BF\u0005\u0018�u��50-A�\t����^\u001d�� ΣAN�$|��L�\u0016�k�\u0016x($\u001a�I��2<�R���\u0004��~D�r�����M����T��y:�J�Cm��-5IK]��Ҥ��H\u0016p�\u0003\u0005�]\u0002�\u0017)��\n�\"\u001bK���⭪\u00059\u0005W\u0012���~��\b\u00164�.�nS����o��\u0010�o��l���\u0011\u001c���e\u000e\u00033\u0018�j�C������D87\"��m{\u0010�9�\u001a*\u0012\u001b���2%F\t��0kH�(<\u0012�%)�;\u0016��d��X�ϖ��\u0004ʂ�H��!-z\u0007�~\u001f%\u0013\t�l�gZ�\u0007���7��Fy\u0002,�-ɉބ��]/jg��W��\u000e�OhY�\u0003��\u0015�Hh\u0005cp�r����\b��r�)os�ܒ��X\"�v\t�CJ�ל��m�i-��.\u001dR���\u0015\u0017p�\u000fȠ�m��o��7oh1�\nK�AO�$����d�_r�u#A�\r��U���Լ��P�a)��qƿ7Y�\t�&�)o�68�K�^�,�f��\u0007�ѵ����j�KM\t�P_t33b~�\u0017�Ų�z�\u0017�`�\u0011:|�wv�\u001d�\u001cs�9�\u001a��Pv�@�W؝�7�\"kK�8>Xpx/$����Q\"�\u0001�\u0018ѿޑ����*Ʉ\f�z���\u0007%8�}�ü7\u000f7�DYh�Q2]���\u001c��0��}�a�\u0005��՚��x%��Ut���Q�吙�U\u0013��\n#Ts�8hk�`#Ď�\u001d\u001d5UM4�QGdo/��e�\u0003]T�\u0019;���YSR��\u0000oڵ�d`n�\rU�\t�\u000e�/�?�\u0000��`�P����l�\\|\"_Y���\u001e|��Q!��o�E��]����mNz�\u001e�C�AO�$���� �j�Ϗ�\f@�@�w�\u0013���K��&3i��\u0013�Ѫ4\"9��<����N4{3-\u0007I\u00126Y�s��\u0011\u0001�1�������)\u00189\u001f]�퉩�t\u0011ڰ\u0005\u0002hl\u0005Ҫ�p[\u0005(.�睎7n\nZ#?ؤ��\\�k���C}H�\n;�wR���\u000b���K'\t�}Tf\u000e��ؠW��@��:\u0017�{E�E��\u0014> �\u0001��7�\f&��\f����Ɩ)MPr�X�d��T���p�v�J3-�N\u0005�:��n\u0006o�A�AF�$���LȜq1(��Ps��_1\u001a�A��\u001e��x�\tC�\u0004�ZQ\u0002��\u001b�Z/�↋nA\u001d���Ն\u001as�Ģ�\u000b�1\u001b\u0015O:$\u0010uU��X��\u0010����4�l\r\u000b�E$t�{���4L��������'Ȳ�Zs��S��\u001eT��0�˘\u000b�\u0013��=�\u0004�vMԣ2`�\u0019g4���g�ٙ{E��\u0004Lh\u0007\u0011D\u0002J��d�/�d�5!'�BՆ0/���п�߀<�S��<\u0002���X�\u001f{&\u0016�l��c�_��Ѱ$to�[) \\Z�x�Ƣ��\u0000�\u0018���\u000bI퓍�\u0013Q����\n���Q9����\\F��Y�j<��+!�\t��\"}�J��_m�\u001e\u0013�\r�Q\u001bfz$��|���/��/Bu���2^���\u0001���\\W��A?�$̀�Mt�%����Y��\u001c-��ul�\u0003њs����7�0\u0007�\u0016h:��/M9�UD�\"���\u0004��-�\u000bi�%�~�Ox�bJ=�X\u0012!Auǧ��ǻ$b\u001a#���t�\u0013,%x\u0004u�=\u0011T\t��;n�=_�G��\u001d5�kۆ�M�\u0010��=P��f���\u0001�\u000f8ܱq��\u0018;M;_��\u0011\u000e�k\u0002��n�\u0011�yW��-�����ju�(b���X�+Ǿ��\u0006xՓ���\u0011�]#}/��8�t,�k�\u001dS��\u0014\u0019\b�\u0011^\u001fr�Q\u0014�7]\u001c��@}\u000e_�m�=�د�\u0001�\u000b-���\u0019xί��\"��@\u0001�\u0016��A0�$���K1�Sk;��m���2\u0019�cw3��#�YB��\u0012��¤\n��\u0007�|\f$���<�70f\u0006��R�c�F�� \u0012e��̺ \u00148�Ȕ@�c�\t�4p\b\u001a����b@`ڱTG�nW�ҋI\u001c��Vq�E���ǘH\u0001\u001d\u0017S��9�1%��Tdt�Nf7d��\u0011��*���\u0011��\rP1�R9�9\u0012x����N }�B\u0004O\u0011$W�.��\u0000�t������CP��\n��b�_L0�4�`��S�Wv�����\u000b���n�\"\\\u0001:l�?~v#`\u0011k\u0012�w\u0000��O�\u0018ڧ�&� q.\u000e��\u0019\f\u0007�h�\u0004V⚼�\u001dL�?�\u0006�p��E\u001e�T��<\u001a|������T�jP`a�`�A+�$��L�ٕ리T}\u0005��&�P� @�i\n�\u001c�\fX��mǪ�g��\u0010��t�Kn�L\u000frs��\"Br�\u0013��@�x��\u000b$�9�\u0001�ˀ�„\r\u0006fuO|t�e�\u001d�d�%�5,\u0005t�\fb�\u00124O6��n5on�|��K`�7\f�\u0010.�>����]\u000bA���\u0007\u0014���N$��{1�T�%��O�Y+=n�޳�\u0006{�)���՘���\u000eN�i�x���ײ�Z�\u0014S���&�0%r\u000b�\u000b�Ԃ��O�\u0015C{\u001c!���R͍�?�-/uR�\u0017�,��@�\u0000���sx�x=�L\r.��\u000btS�\u0019<�\u000e1�����=M���!X�(�?��K��\\���\u0016���Y;�\u0000\u0012-\u001a\u000e��\u0015��!r\u0014�\u001b���\u00012Pįhos#�T\u0003\u0015��\u0013��[E'�]>A�\u0018����y�m`�_#ǵ\n�\u0005^C\u0006���\"�l\u001eaf\u0001�@E\u0017��ac��Z1_��'��I�Yr8:�N�ɰ�,\"�\f)�A�\u0005�\u001d ��\u001f��jL�I\u001dG�Y�:\f�\b\"H\\�#9�hu\u0010��\u0007rSF�\"��\u001a�˖��7V�\u0000�\u0013;�6�+�̦�݂[\u001c�a����>.B}�i��[.SP\n�\u0002Z��n^�\u00141��@6�wL2��tC�\u0017u��V#��2���׬��\u000f��:�U�V\u0018�'ΣA\u001f�%\u001c��&�/]ڇ\u0006n����.�K\f\u001c�et��+�\u0014\u000f\"��;���\u001cB\u0000�\u000b\\0�\u0013\u001e\u0002\u001d�\u001c< �{>\u0017ƚ\u0013c�8�\rʬ�\u000b\u00056�\r�V<�\u0000��y��.�橎%��{Vnr���\u0013.��\u001e\u0013�咇�u��4:N\t�9�x7����P4�U�i\"]�7��w!�ې�H<)ir�bpX�$4��\t\u0002�ЅT�\u0014�否K�+=6c�u�:��+J9DG\u0016�5x�v�L�e(���\u0006�MĢ��ķI�\u0003:���C\u000b��6��\u0019,e\\�v\t��)�\u0002����ʯqx�R�\u000bU\u0007c;�п��G��h�s�ٽ\b��(\u000b�Aׄs�j�6궣A'�%0��I�Ki�O\u0007�\u001f�r��6��\\I�\u0003��\u0012��-�ӳ����{\u0003U'��\u001e\u0010\f�\u001c�����\u0006g(a��\u000f��0Y��`���������+ϙꩻ��S#��\r�����\u000bi\r�r\u001f%\u0017�\u001a%\u0000�zd�E�\b\u0006�w�\u0011\u0019�L��u\u001eV�o�:\u001a\u0003Y\u0005\u0012i��PE�o��P\u0010�����sg��ǫ�(�}�/Y��\u000b\u001e�,Q�����x?̯��y�ܝm*��(n�o57�:�Q�\u0011�\u001f��\u0005Q���\u0010ҽb\r��Z��\u0016�_z,G\u0019�<�]�0\u001c��L��~�\u0000`\u0011��A�#!7�*��5�\"�L\u0011��\u0001���f\\�Ǵ�{@z�ow�u�B\u0013䪣A!�%D���\u0016\f^P\u0019�Ķ��n)��\u001f�\u0018W\u0012\u001e\u0016�v��7�I\\�[l�\u0002\u001a��%\\�\t7�֍��U4�W��\u001e��\u001b\u000f�ay��H�;I��#�\u000e2A7�`:�FFa���P\f\u0017F\"�x؉\u0003w���\u0006��\u001dO�\u000ei5|��d!��>He\u0007����Y\u0004�\u001d�\u0014׎E�\u0002���F�\ff�vU��;���\u000e}\r�)7��\u0002K�D�^��8iZ\f���E��\u00063�\u001fn�$!r�.�m�yTD�ӧ���C� �\u000f�\u0005�)�뭃F!\u0011�h\u0012\u0019~�\\�\u0014�No��=�S�A����EF{%a�\u0007�����6\u00149,L���;��\u0002C\u0011h�\u001d�Ӌ��k\u001c���٣A\u0010�%X���gw�\u001b$E�*Z�Ǹވ`Ww�\u000f��\u000b���\"R��ɹ�ša�[Y�_E��~��(�Cw�\u001a\u001b�F�Y�l���pj��؍{j���\u0018��\u0012��\u000e,v�MSr�\u0017ށ���v���\t�ؒ�\bM�旺\b\u000e\u001cx~�\u0014wj�V#x\u001c�Pe�x9 �\\\u0016�y�>\u0018�\u0011�F�\u0013�Y\u0007�q�C�E���d����i\u0013i�ڒ=Hw�A[���$��8\u0011\u0019�3=�`\\h���;N$�,@�\u0019�\u0001E\u0004\u001d�\u0000�҆�Ns�LY.\u001f�A១��+���X�%�V�d���G�Ү��T��/%P��U\u0005��m����\u0011_�A\u0018�%l���bn��46���b韘0ٞm\u001c��e\u001dq��d��\u0001�+����\u0002��h,G�RU\u0003��߽*��3���͢5ϧ�\u0015g��c�G��\u0000Z�\u0014��M�>\t1!}K��@>m�ZfPp'6�\u001e�\u001a��H��_$�T�թ���'\u0006yG0����Rp�O�;¯{c�tQ�zE���u����\u0018%ژ�8Rc�\"fr�\u001f�}\"-.���\u000b�\b(]Ǯ+\u0011��{��X���P\u00148�\u0004\u001f��\u0002\r�\u000e\f<����`��\u0013_��1�K�9\u0013=\u0011,(��jHh1غ�~��o&\u0000A�\t\u0017�G̾�g�U��\b\u0015�\u00023(ŰI+\"P\f��c�A�%���|���\u0010�+|h$l'�..4\u0018�]D;C���q�R\f��\\����H��;���X\u001eP&\u0010]��ۊ\r&�|!3�����ww�M�G�\u0015�+��L���\\#�_\u0004��,'�~�C?��\u0007x�\u001cY�\u001d��F�nؽl�;�\u000b̯~fB �ʛ3Ʊl4��H�7}p\t�|�\u0001G�e]*��G��\u0006�a�V�\u0010�x\u0017��=e����kL�\u0010�ES:���&� \u001c��\u001d�\u0001\u0006\u0016��c���\u001c�L�څ���\u0003P��X(����\r�K\u001e��L&˰\u0018��]�\b�*({\u0011�ؘ0Q��佪n����[��(��\u000fD�\u0005!�!��\u0003�\u001f���P��n�\u0001�h}\u0015~����Q�. �P���\u0000W�L���\u001f8�k�Ҭd�$N�\u0017)U��\r�9ة���¤�������\u0019��O@I\u001aC�>��#�uH�\u0012\u000e��5l\u0006��z�H\u0004�?�7�A\r�%���M1פ!�=*\u0012?\u001eq�\u0002�\u000e��� ����GB\u0005L����ȍ*�VE=�:b\u001b�`�\u0013T:#�\u001f.?�����t�.��\u0012��\u0014�\u0015\r�y�i=(�����Q,�v�\n[ͫ5��\u001d^>���5Lg�+� N�)B��1.a\u0000&2���޶�>��\u0013+���5�T\u000e,w\"\u000f��w\r,��b\u0013�\u001f;7��\u000e&�{+�9\f�c&t-�\u0000_S鈰\u0004��V�p+����W�{��ɝFs�N;\b��{C��p45��\u001f�\t\u000e�V�2\u000bv� U�F�|^K�,f���Iԋ�Y����\u0015�A*�>��\u001b�\u0014�\u0003�A\u0017�%���6V=8A���ŤSB\u0006摪Q�=�Ӷc\\u���^'9\u0012��mQ֝�n28��`%�]�h<\u0010\u001e'\u0005\u00183�\f���ܳ�q\u0010�y����\u0004u��l\u001d}\u0005R�w����A魪\u0014�ug'h\n�\u0003\u00026��n���j�\u0017i�Q\u000e1���r/P�吝�\u0019`\u001b.�gHǣ�v��F\u001e4\u001a��1Վ�)�Y�\u0005�EӓxC]J��\u0002Q���2\u0013@�\u0000�(X]��C��X��8���@\u0017�4����/q��\u0016��\u000e\u0013\u0010Q�k+쥹3>x�=7B�DJF;Io���>�\u000bR�C~\r���՘�\u001b~\"5\u0005|˒�\"\"�\"|W��6��A\u0010�%���X\u000fWN���Y�1��P�V+��$\u0007k���=vK�4�����=I�W�����\u001d\u0013��\b�C\u0018^\u0006\u001d��2Z1��U\u0012\u0000��\u0011�\u001a٬\u001b�w84�\u000b6]�x,�\u0018�XP�A�̹�fU�(Ϛ\u0004C�\u0002�$)ȗ\u0014/S�\u000f�c���|�&p��/\u0012�R\u0002|p�7����蠲ܠo�\fSiSX�K�N\u00021�Qj�wm�\u001bq]AO�+���0G��\u0002\u0017�\b���j0Z@0�?�Ct��\u0004�E8���W槄K+M,;��H���\u0016���Η�\\��\u000f�K��:�Z�lXr�D)��݉<\u0014]�A#�U�:��^�昮I�Ϝ�u'5\u0007m۝�\u001d^A�R\u0011{^�\u0000)�7��\u001aKck�\u0016&�>ݱ�+��\u0005�e\bLpr�\u0001\u000emI�Eȅ� ���s09J��\u0013��x�&�Á�淉\u0018�<�I���p!�/Um\u0016r�QV�4\u0011-� \u0001\u001f��\u001e�\u001a_P�A\t�%��L�\u0007�=jZO)'��ꄫ��`�����cn�3�~�Ɖ0.��u�t(4�\\^3\u0006�\u0004)����t��\u000b\r\u0011cө ��RP��\u0012K�ޏ��]h�v�{�ܖ��a).��8�X�ۀ��a�o�Ƥ|8�꾦\\��{�����mm��j\f��-+4\u0004&�= \u0017\u000f\u0019�O� +a����X�CP�ɴc3q\f3K+�)!��\\��VCp�R�\u001bZ\u0011׃�\u0011FK�\b�Qʎ�P�ږ\bƒr��y._��J�\u0011��ixf��o}UKG&5���67R+Vɽ�8���\u0016?�R\u0000�H���&\u001b��e�AB�%���MY\u001f]��E��\u0000\u0003tn\u0003�\u001dg�.\u0016�'��|�,�9qj#��I�\u0017ܜ\u001d\u0003���H]��l�6��P\u000f0~�)�s\u0019xR�����p�{�v��B��\u001fl!��6�(���B�������M�'�,j$Sv��\u0002&�.\fHڸԘ�\u0018E��UO�\u0017��\u0005��4Z1��,�N���[�x�`L���.�T�_vT,��Gm�����M��(>�\u0002o�\"�W�MT���\rLZ)��\u0019Pۖ��S��� Ė\"tn'���²��8��\nx\b�����\u001fL�e�\"b+�U+M����ʐ�s��tH/��2��\u000f\f�\u0003�H\u0010:-��\u0003U\u001b���n\u0000�&���Ch�Շ�\fM'�h�)�S5\u001d��v�l,\u0013ܲ\u001b��/\u0019�Aq�&\f���\u001d>\f��[�h�HɻQ�P\u0010���=W�/X\u000bZ8���r��\u0018�#t\u001d\u000f���\"�1>�=�u�o\u001e�U�F=��=�\u0002.\u001d\u0014`�Q��\\+#\u0015S�{\u001a��#���!+}�02KX�\u001cmT�\u0014^L�\u001e�2\u000b\u0013\u001a-�t,̒6\u001c�O�ECW��l7��Nc���A����+jz1���\u0016_\u0016�u�\u0017��\u0002�`�NLx{�\u001d\u000f���^4�����e�*�\u0016��u�]\t\u001c��>\u001blz�=\\��\\?��s\u0005��U�\u0007֠�˴�L\u0017\u0018�c��\u0011#�N+�����5<\u0006��F��t\u0004\u0005S��u'l��}�?�\u0003v�\u001e�\u0017o�涮=M(�>��\u0017�|�\u0003�>!��Lqh|r^�\u00175���B\u0006(�\n\n��m\t���1�\u0017�yv���\u000f\u0006e(H�%��g�\u0001TO͈7\u0017��ȗ��2RL�6�8�܅\n�\u001fܣA\u0014�& ���v������\u000e\u0001�Ri�wU�s\"�O��h{���=�h��3�\u0018\u0014c˶,}B\u0005sT��'�\u001f��O\n�\u001d\u000b�\u0016�i\u001c�\u0012�\f\u001cH3��\u00033(\"��O���\\e�+\u000bt��Ea(K���B�c��0`D�\u000fv�\u0018҆��?�X\u0014\u0013�i���E=\u0007�8\f\u001e$N6ϩe�Dw5п�\u00172=���\u000e�c�%����3�p�W�>��R\u0004�\u001f�F�3r���|&�Wc(��XD6ܨW�N\u0017r�䲣A(�&4���m\u0019/}5\r�����\u001bD�}�y��I\u0001/���2c�ϔՆ�uE\nw6�i���\u0015Uʽ\u001f�gj:\u0011�{�\u001aa��0i.�;\u0015���o�}ǐ��\u0003ٮF���_A�[ML\u001b+:�L\u0005\u0004T�C\u001cPmj�vF�\u001f��ca����n/���)�y\u001f�\u000eCb���j\nſ�Ycy~�>\u0013�k5���YN�~,\u0014*L\u0001n��x�\u0017e�P�5�\f�\b\u0005���h�)��<�0\u001d�M}\u000f숏�\u0011V}ng������\n\u001a�k��H_\"4c�1#��:W�;��\u001e:q\u0015\u0013\\_��G�K˟�:=\u001aL�:�c��\u0016��i_�\u0012�uxq��35�\u001e6u����#�4\n�t���A\u0012�&H��L�Lg�\u001a���\u0001�B��IJ�c\u001dP�\u001c�=:�Ï��6�ɹ��X�5R�S\ffK$~V�\u0004G��\u0017��\"Xv�\u0013�%��$\u0018z��Z�@@,xp>�(�ϐty\u001e��q����?���v��)qާ#�D��IQ�{�`\u0019�vFwDu��?9��Z��c\u001b�{�#�t�!\u0004,\u0019�|�\u0000�|��y���ً��P��\nE�P`D��\u0001\u000e�JT�#\u0000M#��'�l\u0003\u0004�=]�s��MZB.{�\u001a_����6'i������\u0002\u00175o����AȚ\u001c,�2^I����u���3x{,�g\u00061�gVGx�w\u001c\u0014OIP]#��A\u0011�&\\��L␕�O�/w���|T6��^�^c\u0010�gn��\t\u001bޣ\u0013\u001ftdZk�[�\u000f����I�Z!�15 /�{Z�R3�v��a�����\u0015�`R��-E#�J\u0004\u0001��\f�>\u001dك��$E>�\u0017$\\fK�ʋ�\u0006V�4�R�� <��w-���ˈk\u001f-pHg;\tF��R4*�c�M\u0006&|iO~��hf�*M�\u0019v1v˹��o�=tQ3oۥ\u0015\u0007�q!��z��௛c��\u001d�\u000f<�%\f:��(�K��\u001c�|���W\u000f\"KXg�L�Z��^�n����g�\u001d��\u0010��I6�ƒ�p�\t!om�k�~�{�`�;�6�A\u0005�&p��Mz�L��\u0005����S�(V:���'��)��5A_�\u0017\u0006\u001f3�p\u0018�7\u0000+�\u00008*Rn�\u0001y��J��\u0013\u001f���\u0010��R��P45�\u0007�� b�\u001b0\"\u001aD\t�\u0010�\u0013v\u001f'����j��]�#�\u0002\u001e6��>/55A �dN\u000bpi�s�7\u0006�4=�A��\u0018\u0017\u001f��b�ɋ:��V3\u000f \f\u0000]@��A��uWEŴ�m��^r\u0006�d�\u0017\u0016q�2��r\u0000\u000e�|�b�@�S��y��y\u0007�lj�)��\u001dB�˜�X'!���4���,�\u0003f��\"\u000f\u0015��n~�K�eʳN6�\u0014�\u0015�K�\u0002R�A\u0010�&���X\u0001\u001b�h�ѻݭ�\u0019i�C�D(O����Wʂ,V\u001c�/�lĒ�$�\u0014:fk��^�G�2�S�\fV�.s�l[�%l\u0011/�>�]�%���nU+��0��\u0004V�\u0006��w\u000e7`^��<ƨ\u0017�\u0015�\"�\u000ei��O�\u0005U�\u0001�[|J���\bJ���\u001b��E\"x�3ǝl�s�׃\u000e���0��\u0004�(2�ZS��#0��J�v\"Tp��_Gr`�ξ(�����\u001f͗�����,��\u001cB�����'*\u0010������B\b��%��<��\u0004\u001e\u0019!4���<���:g��nK\u0001�q��B5v�<��\r\"�8\f�%�Űx�A\u001e�&���L�3�\u0011MGU���\u0001�r��^���9����i���t��x�2R�`!dw��d\u001a�h'\u0013~}X!�1y}��s�մ\u0001\u0012��m���Z *\u0000��K@\u0001z0�;5�]�|�A�f�b����]�i���\u0007\u0018�\u0010\u0018���uq���h��4�V�c��s�\u001f\u0019M\t��o\u0017��\u00125\u00174��\u000e�k����\fp^7�O�2�$U=\t]\u0017T>pæ�CA7� \u001a�X�F\u001f��M�4��_r�U�x�5�o�\u001e�\u001d�/���\u0004-\u0003(��\r\u0006�\u0019Y\u0005�l\u001c�R���^�\u000bJ��\u0005�?�f^�Kh8-��y���\u0015�2\u0019/�c�{v��i�\u001d\u000fH\u001a�A\u001e�&���Lڇ�F\u001dZ't�ĄPW����Ķ;���R\u001bl���R��Jm�Lb�5��@M2�E�|��X\u001e��q��Z\u000e�*E!�\u0018�T����%��2���#{{\u001ck��a̷ٵ�\u001c\u00050\f��\u00141�E��B���F\u0010��l��d\u0007ž����CC���wO�\u0016�'�\u000e<4�p\f\u000bZ�\u001c�\u0007�\u001b�&I����\\��4�_���\u001c��Y��$��V@/\u0006�G�\u0005ࢦ\u0006Zf7R�߇��ϙ�zO'8@��+d�'�d��\"���PxMi��\u0007\u0013��h;\u000f�:747\u0015b�`���z���h?\u0010FP�D�#�\u0019�\u00147�}Q�ks�H�,�1,�c\u000b'�\u001b�A\"�&���L�CG�ݏ����K��@?��<�w\u0001�T\u0011ّ�jm!��\u0012&\u0013��z����C���o�\u000b�f��|ؤFޢ�/�.'&�\u001a� �VF�f\u000e\u0012!C�\b�\t�O���É�����ȩ�\t\"h�měm�5�\u00054��\f=\u001a_%,\u0003��\u0018�����i����53�\u0011�A\"�f=�=�\u0014\u0018���T؈�Z��%��x\u0005�aƞV�Z�-�q�\u0007�-R���X�A�?���\"v������\u0004���Mp\u0018U6>��#��\t��\\�u)�9��6�&\u0005�\u0016�}\u0014rJ�*�� ������1;ځq�I��\u001e! ��M�;��#��t�Ya��?q��A\u001d�&Ԁ�L�4A�ܞ*U|0HP�\u0016Y�=\u0007�!f\u0010�F\u0005�!��2�(o���� �KaPg�ۥs2B�$\u0002\u000e51�R�3\u001a Q?\u00140�$.�\u001c�J��\u0016)N��m��&a���\u001dЀ�f�!P�\u0018��߯\\\nP���O;��\u0015�\u0015\u001f>��@jIjG�+[���q{:9��Zr:�m����C�gأ�\u0014�)�$\u0017\u0001�*\u001f�O�\u0012�\u0004Qz&�.̻�{5�\u0006Ɍ)�v� ��r\raM0�^D�\u0012>׆�����4B%|�f���\u0007|\u0007\u0005�O�p�\n�B=r�\u000br\u0015�z�j�z�̀\u001c\"6I�ʿ\u0001�u\f܁۳�N\u0005�e��/�\\I�O�\b�\u001bm�A\u001b�&��L�l��S���G��3�o��ma\u001f\n��稵�SєD9R\u0015ݼ��|L=%\u0007�DĻ\u0002 e}T`R���\t`%C\u0002J*�ﶵl���f�x�#�g\n域Po�c\u0018Č\u0010-�t�\u000e��f����_S\u0013=�\n�\u0016�����&39�\u001c�y0��F����-4)]��\u0007}����j��A^�v4�T`��\u0019�D\u0013\u0007�\u0007�Cۮk.\u0014�\u0006u�kYU'C��N�\u0006�O�\u0012�#\u001fN<-—���\u001bM?�篰\u0007\u000b��X�4O�D�'uz|�:��\r\\c��rP\u001b�m���Kt!s�c���,�\\\u0015v�\u000f�=��;�\\�\u0000�G;�lr\u0003��[�A#�&���۸�j\u0012&\u00134h��\"Zj��`����P�j\na\u000b���xN�\u0016��x3.��摤|$M`��\u0004����&j�_rdC5M���\u001eL�\u0003R'�H\u000f�V��Һ�[��IEO�͑\u001f��5kqk%��D�1�Ɓ��>r��\"�0�5\n3<��\u000f\u0012�F!�\u0017{X�T����B���NeW��yG�a��\u0004\u001c�0\u0000��CYIh�.B�\u001a#\\��V\n���Hf��W\u0005B\f4�Of��<���M\\�ۿ�\f7e�4|��֟�:�.<�C)��5)Z�@�A��\u001a��\"��5.A�J%\u001609'^�3u�W�f��\u001cG^��\u0001U\rg��ſ4�\u001eF\u0005��^����\u001fC�u\"i��\u0001\u0011q�A$�\u0000\u0000��۷�G\u0014\u0019\u0000U!l�f�\u000fPҲI��Qk������r�\u0004o\u0016(a����|�\u000b\u0005��1}�:\u0015p�pJ�Y\f`���uP��N��/^�\u001e��ZV�\u0003\u0002�\u0017\u0010N~�\u0019%\n�n�2-h\u0001�(d��&lF��C,�Ћh��\u0017V\u0002��m�J\u0014V�\u0018R�O�\u000eō\u0006V}�.��4:3\u0000r\u001e�P\tF%\u0003��B�\u0001�u8�\f�&{8�Ú�n�\u0001��\u0013*�J_\u0007/D}y��vBu�� %4\u0001����}��Z\t�S�@�\u0012[�Z�\u000e��+�9�F\n���˺Y��s&����Q����\u0017���T��A�=���\u001c�q[�$���k�a��mq7�\tDQ\u000e\u0006��z]���A �\u0000\u0014���u;B\u001f*�{J�z}�O\u0014U>��+#�<��UY\u0018+�UX\u0015�~�\\p��&������)�6��]�\u0013LWV{*�T�5�\u0002�U\u001cT�\u0016X%\u0005�6�[�n᱇�t\u0012�%,K�\u0005k;��V\u0015�t?�&^S�3zBY��r��80�{\f�w~�\u0014%�\u0019?�E\u000fD��@��\u0017��Ђ�M��I@��g�_>4�!i�a�,A��^���'~-b8��\u0000�S�\\\u0002\u0011��%$�ٓ��\u0018�R��#�x��a��\t�_��M�\r\b��@��<�=˚��A��\u001f�݅\u0015���.@�@�x�׺`\"��\u0017j������\u000e�xt\u00140IĜ-\u0005N\u001aԡ�\u000e��M��Y�\u0013��T��\u0006`�S\\\\ڀ��\u0004���t\u001e\u0015[Rg#k6\u001a��\u0018[�Rt���0�p�p��5g�F�)hƋ�gԕ-\u0010�u�V~�\u0003j��6m�I/$�z�%)~\u000ela\" B�߬��$���ۛ1���] \u0017����r\u0012-��cJ:E��ɤ��\u0004\u001e˳d�h\u0007��G8F\u0018jӾ�A\t�\u0000P����-�\u0003�\u0018\u001aţ_�ɪ��`��|qP��\u0019�\u0012>p\u0000\u0013�\u0005]�z�\u0017\u0004�������5N�DB?�4H\r\u000b�d���|���@����;��\u0000|!�!���\u001f\u0003~�E �ks�;\u001a�v}�\n�dR�ٌ�\u001f�\u0016(����V�<��$��@\u000f͚\u000f����M�6*\u0002�~򞻌�d�\u000e>�\u0010�\"t2\b7�\nGA<�u�Z\u0002 �����j�w�#UwS\u000e}1�$��ZK�����\u0005�\u0019nU�g<�ϑ��~I�8��?\b�%�/\u0011sj�H#*:\u0011�9�}\u0002��)e��\u001d�\r\u001a��\u0001�}P�|\f��A\u0007�\u0000d������7\u000e�Xh�=�dz�g��*\u0017�+F\u000b�(a�9CF���y�?��\u001c�\u0014&\u000f �F*\u0004ջ�n�tj\u001c9=����r1�\u001b\u0004h�|y\"or���)\n�\u000e\u0011�A�\u0004���B��\u0004�\u00130��5�\u00195��k��j�-#ٺ�\u0002���bM��wn'\u0019U\u001a��cw`�6�.\u0006���\r0��=�oNqt�����!�\u0004�Ɩ��\u0002�I}2=n\u001f,�F�m~�SAq&\u0016��&;\u0018������[P�>�3B��\u0001�1���x�\":ĺ;H�i,\b����\u001d�O�\f����k{8\u000b�-��y\u001c�|\b�L��@��\u0000x��۷q\\\u0005 �%�C-��:\u0015Ҋ��⣱�y/*�N\r�\u0011Aߨ��E�KI\u001bE�g(��\u0010�\u001d\u001c�d&�4�\u001bE<�bX�-��\u001fA{�޸\u001c2���e��\u0018��;�L�5�ske\u000fͯB�6\"�Wu:�:�\u0012�F\u001eˊ�H�\\)7\u0014Y(�$h�� I�x����pwD$��ͽu�4�W\u0002���1���|)�>[�\u001bj�6W����ȡ�4=�:�\u0007[C\u0012�|�\fdhI�\\ɂ\u001eQ��!�{C�엯\u001a&\u0011T��\fРb*{��2\"��ugZ\u0018�R�HI2Vq���V~���&L��A\u0018�\u0000������D(\u0012C���+�<4\f�b�R��|\u0014Ü��pF����y\u0003ɾrF�r\u0011���i\u001f�=vCOAH\u001c�\u0013/��z��F�R&���O�_�G�\u0014�_�����+\u0013n���׏�\u0000�_��5[�m��qYo�9�<1\u0012���z��5�R��\u0012�}\u00105\u0000pf��q��Ȟ�\u0011�,�r@�ꉚ`Y~�F���ES��\u0004\u0018�]ݞ\u0005�l/*b)��\r��\u000f,�_���>#����c\u0017�0v��j�/!P��\u001b�3�\u000e1���9\u001d�SO�\u001f5U)\n2\"쑲�޽�;� ������9�z�\"K�`QX\u001dv�Y�Fs̠&�ːԀ\u0004��A\u000e�\u0000���۷u\u0010�Xm�\u001f_\n�6�\u001d��3\u0006���^��8Z\u0011\u00065�\u0013���|���N�xbB\u001ee\n�'��k�\u0012��O<{��3id�\nz�Y����8�� ڴqiS$\u001fi��~;\"�\u0000\u0007�8z#��)\"�\u001f\n�>�D\u0003��\u001c���[(`�BC�Z�V�>Zh!\u000e��c\u0012ߣ{��\u0018��N��b����a@L�9�qb��^z�\u0005V<�\u001b'rt]z�fO���!�N�y=�\u0019b�3��<�hϟ��KGgj��ݭ�t\u001c��rè\u001b�'K�Ğ}~\u0004b������\u000e�\u0005p�;�e!�߈\u0006ߐ�r�\u0007�\u0002���$L��A �\u0000���۷����ںڡ���v�S֟�qC+`Bz�[��\u0001���6-��m�|~6�o�\\��(a8\u0004\u0017��Z\f�t���~�F���9HOm�u�%�oYSCc��H0ψ��,,4��Ƚ\u0000p벶��6>]���\u000e\u001a3\u001c@�|�w<�\t��U��\u0018k�\u0019Q���̩j}Z�uD?�6H���rK뿤3�*�3��,C(\u0004�@�����z\\ԎN�\u0016b/SQD�2\u001f5��y��\b\u0015\u001f\u000bk��\u0003�\bP:��\u0017ŭ�\u0002�\u0015�+/����t'\u0000f���A�Ƭ�C���u�W�2�\u001a�q�\f\u001cえ���U&�\b��`��%ςIeq\u0000\u0004��A\u001e�\u0000Ȁ�۹)p�~\u001d�^��k��@�u]��o�e���\u0016e��Ϡ�=i\u0015�&\u0010L�ib�\u0003DIH\u001e��S�.�m�!�\u0017ۿ<+V���pVި�'\u0007쑬��b�kN誼eay��yUW\u0012}���/J\u000f�c\u0011��x\u0006�Lc������s\u001c�bU!?6U���X���F����g��a��GN�W3l�Ӻ]�#��\u0004Ř��Z�eB�B�ek\u0017k,n%\u00169\ro�\u00021B��D�=�5>���Հ �ڭ���\u0006G]q���H\fH9�gAF\u0005ח\u0017dc���Tg¡{\"!� �8��q�s��|�uA��&�\u0003?\u0014��F\u0019��\n[nL��,\u001f\u000bK6ܸ�A\u0017�\u0000܀��x�e�)���<����6��3�L�\b���0�k�#E \u0019��\u001c\f\u0010g)֋۲��'��XF�6\u0017�π�5\u0015\tP�&?\u0013�(\u000f&�]�<\u0001Y��J.�������;MaD�Rc�Pr\u0017�܎��<�\u0004����\u0003���\u0018��ޖ\u0012�Ot��\u0004Ù������8��^���A{Aڲ��D&��&�\u0019Č~�V9g�DX\u00148'��냔;�_��\u0015\u0013��\u000f\twӻ�\u000b\u001fs\u0007�(�c�G\u0011Su\u001a֤���\u000f��C\u0013�c��<\u0018�3\u0019�(�\u0003M��P\\Q\u0012����f�����>A\u000b��\u001d��~_`\u0014�'�m��&��ő���A܁\u0000���}�\u0015�����*�Qfu�R�^���`��:;(��\u0012�A�\u0013Y\u0005LJ�-Я\u0003�-\u0000�\u001b�\u001f'��_��g��3\u001f�~`��k��\u0010�R�p\u0017I\u000e\u001f�>\u000e�׬�U�e鏏��7�\u00118�Nj\u000b��g�u�AWB������¶a����1\u0016���C���R|a���k�k�N�#U�\u001d�<�'O�:�v#\u0005U��\f�nn���\f\u001f�a\u0017���X��ά��\u0005i�R�\u001f�B>9~\u0006£%\\���:M�v�\n\u0016\u0010��\u000b�rIwt��\u000bU\u000ev[,{�A\u001d\u0007�睳KJ����\u001fڅ$��� �g\u0016��2�\t<+DH,Y>8���2a�y�@ݕ�⼿�-S��ߖ���o���IA���I����4Md$?\u001c=�E�Q\u0003�V��[\u0002�'��@�_��5:.\u001aI6A㩃d���o92��@�\u0001\u0018���v�_\u0017��v�?�C�\u0011���\u0001���}`�ɭ��\u0006X��\r�uԊ0p�\u0018���\r���� �:\u001cʥq��\u0001����4\u0016��M��S7I�Sru\u0018�\u0007X\u000e\u0003߄v���\u001b�\u0000\u001eN��\u0003)\u0010q�\u0014r@\u0019~X��\u0017�\u0005X�T\u0003�6� ������nT�P&#�\u0014t�1�=���31=�\u0012w\b\f\u001f�\u0014�V·�\u001e$\u0014�&�\u00042\u0005��\u0014�\u0014��.t���,u�\f�\u0010�6P�GL^�\u001a5�<�\u00024H�*��\r\u0013\u0000\u001f�\\���O�6\u0004�\r$�\u0000\nqQ���A\u0001�\u0001,��������m�\u0004w����ދ����\u0000�\n\u000b��Q�\u001c[��Vvŏ�\u0013\"uL1�}Mdlc��{��!E\u0014o��\r1'9��*@�$��I\u0002�ض�%\u0018�J�c9�x��K1ϸ�L���l^C��T7<\u001d������$c��\u0017���\u0016Z��[҅�e�� �F�����O�~,l\r+�\u0012�2�eo��b\u0005�w`O�;�-�ʻ�J�4\u0001�p��H�\u0015\u0011Y\u0000f�{�\f�U͒��0\u001dXUm��\f\u0004�\u001awUY�1��M��f}[:b\u000e���eO��8E\b����k>�5\u0004��\u0017{��A\b�\u0001@���֩틳\u001eѿ�\u001a�P�%��OW����!���\u0002�j����\u0011+\u0011=�t���T�g��.�X_:~ݮ\u0011�`jdu_\u001d���\u0010*Ƕ\u0017l�}�\u0010�\\xd����\u0010x�?��J\u001cZ@%�wb*홴(\u0016��[!|E\u0019n�z\u0001^�w��\u000b\t��\u0000DC�C(ڡ�Y\"r\f�����/�\u0005�v�~\u0017�՝���(�K�ٴs�\u001e\u000e��w$V�>bF\u001aA¶D\u0017�G\n^Eu�cۼ��k\f\u000fH؛s�og�\u0016�\u00124{a�[� K�F�9�\u0015F)\u0015Aq�4\u0011��n��^Ç\u0016\u000b�D�ަ�XRgX\u000e�r2Q�A\u001a�\u0001T���ք�\tu��\u0016O�\u000e�k�iK�������*�,�g��\u000f�\u001e»\u0011\u000eQ��\"�,̀K�$E�4��q���k���⽁�ō%�w=���)���\t�&D\u000e�-,S��5BQ�\u001c\u001b�����fu�\"����?~Hy�(��ܤC�\t2YvMc2�\u000e�ܜ\u0017���7dU�|78�c��&&ML)\u0004�V�ff�\u000f�极�\u001cyL\u0016+�\u0018����v��x\u0006��z�M���,��%*�?\u001fz2�RG�N��KHʘ�����~�>�GG�B��\u0012�\u0001\u0011��_��cE\u000e�\u000b�*rtM�k4\u0010%�\r\b\u0013Xs1�M9P�����#�\"���A\u0016�\u0001h���m2�6\u001a�'C\u001c�֑�\u000b�=j�\u0007hq�sdG����Na\u0005���!�a�K�`\u0000T\u0006��/�;��[�Y\u001a�����r\t����;B>�\n!�fd�\u000e')uᆰ$Ԏ\u001e�F\"pQ)�x�\nN�+�֫��\u0019w\u0001�1U\u0005�`�\u0010I���3�k�����)8]�\u0012�\u0012b���\r�A*�칸���'��4���\u000f�T\"���FT��(��\nv��TB\u0005S���k�nA\t�\u0007�e�l�V�V:\u0000.\"0H��5`�*�\fT�F\u0005�8Ε���*�[\rB����\u0012;�\u0015?Ι\u0001�FE\u0015%�A\u0014e��0�7Wa�͕����\tP�A\u0011�\u0001|���\u0004�s\u001e��\u000e0�g��2����0�C�G�R7\u0014b\u0012�(�\u001f*\r��0�Ps:������\u0016ogN\u0005>9<�\u0017Ƴ٤\u0006�v�q%����U\u001bٍ���\"�\u0016~{ʡ1�\u001c�eo�MnS�/��'����������Nm?N�\u000bv�\u000es�VHW\u0018��gv��\t;�u��)��l�(��$\u0001\u0001��6\u000f�Լ�\u0019\nL�\u000e�Ֆ�L��|�;U�q\u0004�:�_+?$-��^�c�D��Ⱦ�`��G&[*�f4*S5ѐI�zh����]�L%$\u001dwT��|�<�ـE�\u001f�~�\nܮ����v��s��%�j{\u001a��P�A\f�\u0001����࣓4��m�s�!,7�Y��\u0015��\u0013���[&\u0007\b펾\u0003\bm�\u0015�`��\u0019�!�͛0ߺ��c���9+Ԍ����0\\�U�\u0016�\t-A\u0011q�/��\\��:�*2w�\u001a�[�\u0002\u0001t0|��\u001e���&\"<�����=�Գ<���5N�\n��ݙ�:g}B���۪\u000f\rNKYV�#\u0002\u0017�\u000b5\\�\\\u000e�0�FQG�]h��������GbC�5���\u0015��\u001b&�ނ�A\u0014��?\u001e\u001cAҜm\u0015���� ��$�\u0004��n����׭\u001c%\u0005�u\u0007���\td,�5?9�-\u001cS㤑\u0000n�sj\u0002���_y�\tQ�A\u0005�\u0001������F�b�n�\u001a�|dց�䉰w9�h���<�I�9�\u0006R�\u001a[�C�j�#��fz:76\u0014(3�����0\u0000�@��g#c5-Tx�����?�(�\u0006�y�c(�*��ǁ�eW/��\u000e�?\u0019�y#\u0001�R�HM>4�\u000e\u001e�dy��s�X\u0000߭�5��߈MW\u0007��m��gd�a :S��\f0��\ti|�i�\u0005��3��5I��9�5�&��\u0007N���\"�J�K�\u0000r엤ҟ\u001e\u0006�84�a8�\u001d�2H��zP#�d\\����-�\u0013,6�<\n�\u0000\u0012�]�\u00030���\u0003dF�\u001aZ�Ҡ*�} \u0012P�A\u000f�\u0001�������`)b�_���򤡗�R�m���߳\t�%c\u0002�.����T�ȷ�\u001d��Y��g�w\u0014\\��Ө\t�Rb�Y˓�\u0018Բ�;��ń�,��,3+\u000fŁ�\u0013�\u001c�'\u000b�\u000b�\u001bIkWGp7I\tEe\"\u0017�\u001bm�Y�\u0015��\u0004�/��:i�۵�K@�����\b�fx$���)��k'���gv��W�:Bg��\u0001X�\u0016�v��@�7\u001cR��Q��׃\u0013��\u0002[y�����L.�o��j'X`\u0002�G�\u0019���S�ㆼbhB\u0016h߄\u0019`�V�z�����)\r��ӑ��D4�\u0017��/�p��v�-\u0007\tD5�[���A\t�\u0001̀���Û�S�@�㐤�Z.T\u0005�<�?R�|��:��DQx�̅�\u0014\u0000\u001cv�ӡ׋ɶ<�r��c\u0001��)�sC=\"s�,w�d���IB\u0019o���.\u000bX�-���:ǐR�mZ���4��Y�\u0013r�A�L[ۏ�9s\u0016?2\u001e� 9{�\u0001p$�|\u000b�i�@A�ƙ��a��U�\u000f� \u0018.rzWRG���r�\\zf5�i'�s[��k�\u001e>�T�U���sl��\u0006���\u001a�4����\u001d���0^�!}��b\u0004�\u001d��z�r\"�Z�]�c\r�M~�S1����XG\u00183��9\"���\u0016���SS\u0006\u001dÃ\u00055�\u0002h#�v\\_�%X6����!n�AEŒh\u001bx�l�} Y%�c~x;���\b'��g�(��*�FQ�?�v�9�@7�ײ\u0013�\u001cLu\u00166���y�:k�/��|��4\u001c�%T���7�m���~��\u0010�\u0017�:􍩞ڗj|Q\u00121��\u0007�\u001cjIM#g���c�A����s\u001d�շ=�A\u000e�\u0002\u001c�� �\u000b҉�C��M�\t�\u0010\u0018kW��*\na\u0012�Q��T�$\u001f�K*�����\u0005��g�L����{��`�\u001a3�����QFCp�\u001701z�\u0003��k�$\u0003uB�HL�\u0010�w,?f��\n(vs�E\u0018�\u001f�ի8�9����\u001e���6\u0007�\u0000$�*�Ş�j~����x�\u001cꚗh�T����t�ޯ.Д��ͯ��C7��2L�y&Y�*���̴�5A�C(�/+l�i3�^�kr?�B�\r-X�Y���-G\b\u001c\u000e�s���#K��>��&�t���\b���\u0010����u����\u0015��J�}\u001e�\"$KA\f�q�A\u0019�\u00020���\r��-�˩oኪ�]�<�\u001cu\u0016]�!]\u0016\u0016\u0012\t3��a>=9�(�F��j\u0014��\u0019R��d�5F�e\u0007_�U\u0019��,7~s�KTE�\u000b�\u0006��;5�!�Gb\u001b��x�Hrm���\u0007��t,v� ��z\u0011>�\u0014\\�y\u00034o�t�;�)T\\\f�cs���r\u0017h�\u0002�t�\fR���@�\u0016U��`�V�\u0001n\r�vlj������96��ydk�כ˾��&%\r�[� �퇘\u0002\u0012+!���(�]'\u0018дs�\u0005C�\u001b͢\u0012��w���1P�1^�P��Ic�vج\u00174�P@F�+\u0011`5+�X\u0000�5���'��D\u0002�5H��`�\u0007M�A\u001f�\u0002D���\u0015�`ͧ9�6]&~-�bK��\u0016�\u000ec�\u000e\u0004�b\"!m'������>\b}��c˒k��]P�a�\u000bb���\\��Vf�g9�H�f�=����GF�UT4~��9ʏcg#����\u0007n\u001c�}i��>LXb��\u0005��>�\u0003�6u(PS\u0005��\u000fx{Ձ���qD�C��-j~F�?�m�[��6$.\u0000\u0006�$\u0010��\u0016\u0011��eS�r�\u0019SwۮT\u001dV6��R\u000f�!8�q\u0013$I!��\u001bU�3�1��T�R\u0004�/��x��\u0013���:���\u0005a@�t1�Zh�[�\u0002�4煸��l��\u000f4'�?��J}�Bl��/;8\n8g\u001f�\u0003k��a!���uA�ڃ=�WY�4\u0011\u000f\u001d�[��}r|\u001e�=�b����&\u0017���u\bv��r&\u001c�5c\u001a�H'b�r�/UQ̛Ɋ\u001bf�S�꠲Sev\u0013�J�d\u0005������]�K/�}\u0006�U���<Mo3���y6��� a\u0005\u0003�)��t;\f�z$b\u0011�muD�|\u001dd�~^\u0001����y�ҡEb�-���\u0014��DL�\r#a�\t�̂�G�͋\f��=)�!�\u0019\u0016 xGrN�֤\u000fJڢ�\u0012r#�\u0011F{��������B�k���]�3��Z\b\u0006X���J\u0003����\u0018�&\u0007\u0012t\u00005���\u0019\u0012q�\u000f\tf@S�\u0003\u001e�c;mŻ$T$�&\u0001ε���t���l�\u0013���\u001d%+\u001a�p\u0002���\u0014�k$�m\u0003q��= S��f�A\u0017�\u0002Ѐ��~Ý�\u0005��|�V���5|�<�,U���p�]Rh��Oa�WE��\u0013�Z��`{�\n\\\n�60S����\u0017y�@�Mn����\u000e��=�\n��)z���z���2�V\u0010\u0003��wW�cL-�\u001bS��\u0001Vᄒ[\u0018�+�\fRoŒ\u001d$���~\r�\u0007\u0011`��8\u0018\u0011��J�\u0004�Źu�&���4�J�ˠ�nY���\u0015��\u001feP\u001d\u000bȑK�\u0011 \u0006\u0007:�#��5�\u0018�\u0000��R\"o:D���\u0005\u000br�mP\u0010�\u0017&���G,��5�r�ؚ�����\u001aA���\u0012�\u0019\"sԅz\\�v\u0003|���\u0007\u001e\u0014��F7u$���\u0000,��;��\r�C�B=�\u0002���I�ޮ\u0012'?�m8�K:��%�|�\u0006?o�\b�����8}y���JKv\u000b�\u00145��#�V��mq`��k\u0002�zm��\nY��ÛU[�2���ʰ\u001a1Yt�\u0015�ƲN\u0003v^o�d\u0000��\u0011Kt�du��\u001b�ֿ\u0011��rF��7�v\rR�h��H��~�\u001e\nAwr'��\u0014GkzB,k��wR�p���^Q�ǰ��\r\bi�\f�\u0019\u001d8��Q��V��v\u0002��I��K)<ۦ\u0014�9�Џ�\u0005̟�\u0002]\u001c���itޜ�\u001b�j]���\u0013��\u001b�_،\u0019?Q\u0018�\u001b��P�:�\f��q�`�p�!��V\u0016�9\u0003\u0017]���IP�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006lu�a\u001b\u0011����$%r��\u0016=�� �@\u0001#I(��\u0016\"A\u0002�gm�dZ��\u0015�xr\u0011��&/m׬f\"lk\"��0��\u001c��-\u0017�� �28bg�\u0007��\"�\r�9����{4<�w���m�+�k�Sl\u0015��gEy\r�sm�yʆ�X��\"x\u0019:f�Q��z���+���TG�:?��r�I��C!\u0018^���0o��]b�'4��\u0011�\u0016��z-\u00120��7)1�U\u0003!��\"\u0010,(�:+�\u0001@\u001cB�h��Ǚ\u0015*~ٴ\u0012/7��ڙK�z\u0002���\f��Q\u0004\u000f�\"t}��+�i8\u0019���4s��\n�]�=���$�D\r�����ۉ��Y�Aā\u0002�����\b\u001aB��sY�90�ȠQ#\u0005\u000e$K�\u001c\u000b&R0Sڴ%/�Q'��Z<8\u0013�9�\u000b�\u0011Vz�(�e���VpRYb\u0000�������_\u0000�������m�Qz�2\t��\u0015܉��,����N�4�����_o,�@R�c,!r|\u000e��؞�\u001dS\u0002f�xK\n����\u001e}���\u001e�B3\u0017�\u000e7��{J\u000b.�ɝ\u0013\u00042�bﰬM|V���9^\u001aED��ڶ��3WխTa�F�8�ޖ���@�\u0014*7_�\u001c��\u000e'���-�}~K���6��p\u0017r���23�\u0019�;\u001do��8tFl��4��O&�uB:ӝ\u0019\\<�n�\u0011\u001f`Al1mGDŽa+�h~\u0006��%���4�e�\u0012�,�\u0007M�\u0015�J�L�E�7[`0�A�Ro�F\nzX�\u001c\u0003�I+¡0T�(�[�\u001dMC��Sc�+(\u0019:\\�����Л-\u000e89+��bW�:�<�wo8��\u0015\u0013�ޟZR�Р%��:-�p8��Pd>\b�FI�vlm\u001c�Un%\u001d���\"��f7�����&�a�L�lI$�l�\u000f�_*��@�A\u001d�\u0003\f���v�c\r�L��[�d��5�J\u000f�)\t����͇\u000f\u000e�Yк��iC�Lk�\u0018�\u0013�Z�,\u0003qG�b)���)\u001f}�p�bO=�\u0006\u0015%�0�8/_\u001f�Œ�'�$!Y�]\u001alo��X��\u001d��Of\t�'\u0014�\u001fS\u0010i��_�2=�FT��\u001c.�iټ��c�\"�T�\u0012�zӛD_:s�\\���K�_���3b�_���H�P�7uTA\u001a��\r�q��\u0000����_\u001f�P\u001ai(P������[4�r{�}aU�GH\u001b���4?\u0016��0\u0017�B�Y��G��Ey��h�9�-k�����\b�\u0011Iü9=��Oh�6�R%�f\u0014�\u0016��/�v X\t��\u0005?��o.�ln��v�e�l��\u0013y�t�/\u0000r��#\u0003�hm�8\u0003x�S�x\u0018�.c\u001d\u0011��pH\u001e��O�Oc�0ҳ���\rZ\u0016k��&\u0018F�k���\u00167a߶;���1�\u000f{�P�\n����\u0000*y*�b\u0000T�䏩\r\u0000�\u001dp^q\u0000\u001c�O� :\u0006��˘�Stắ���?S�PU������P\u0001\u0018��c�r�\u0011�0�O\u000fu��\u000b����݄\u0003�������teΑ6�\u0012�ɵ\u0003\t\u0012��~�1^�P��s�˜[\u0005\n,�h0�A\u0007�\u0003H���o�M�\tp\u0006ƕ6�EI�*}~q�վ�\u001e���7�%��;�\u0018m�|��Ʉ�*g�0\u001d\u001e{-��\f��\u001dN\u0000F����~G�nG�`����U�\u0010�[M��y`)gbu��Qq�P�U�b3^��V\u001d%�z9��\fb�q\u0004\u0013�:��\u0015��~���ß��w�\te�\u0013�Bi\u0019\u0016����:����\u0007O��\u001f��\u0001�B6�-G\u0018�\u00121���0�\u0003��G\f\u001a��Q݊[7D�RM\u0001)i���^N�\u0018[�;O7�\u0012�\u001b�\t5C\u0000z�+gsH�P�\n�sM\u0019��'rf�d�~���O���q\u001bZ�S`�K�\u0004��A��\u0003\\���b阨\u000eΚ��򟹧L�3��>N�3��\u0004B�5�0�Sq<��珞D�`g~��\u0002'�ۧ\u0014�\u0003��\u0019��\u0014A�!�\u001e�K,+\u0007�\rP.�?\u0010\u0018��o|\t�-*2�\u001by6�\u0011��\u0006\u0017�\u000f>�\u0001�QÞ�\u0002z���]��\u0018��B�I�B裺����F��7����~ى�m�\u001d����I���$&�e�I�$O�#��(�v�\u0019���\u0016ފ����`c\u0004F�L�=�w�Z��f�\u0005��3��F\"iw��7g\u0004[w�(@︱�8f����♟w�+��;�!0�τ����/a;�\u0003�ؑ���\u0017��<�D�8Hm\u0018.�=�\u001e�5�P[���\ry\u0006`s�\u0015��+���\r\u0003�\u0001��Ώ���y�\u001bA\"n�V\u0019��w��հ\u00156\u0003��\u0007�,�P����3����{8I�I#��|\u0014a�,�!�n�Ioy7�3$ەʹ���?�5t\u0005��������l�@�\u0012!f[0�B\t�\u0003p���?�a��]„:\u0002�\u0017c˪]8���q\u001c{�I���4��\u0003������՚4��T��&����\rP�N�';B\u0001h� �zb�)�b�p���\u0017m�]mN������6}�<�\u0001���P�X���Q[�\u0005�:[��c�\u0010:��\u0001\r6�%�\u001a��g�����8\u0012\"��3�:�5\u0010�yQ\u001d�\u0010��\u000bky��B[�%w���^��Q�\t��C���foi3�x��5uC�&�2S3lU�\u0012�WC��3\u0000�����\u0001�uwb*_��[7\u0003�K�^R��_P%B�l�\u001a�K��[>�\u000bb��A����ĂM�\u001e|��ծ��\u0015 ��\u0010�\u001a�Nw\u00005u6�\u0005�\b����\u0015�<:�B�g�H�?ħ��O�Z�Y���\t��N(�\u0001]�\u001a����+F�\u0017\u0010\u0016�Ő��$�K���M�y\"�#$fE�\b�! �n�;�\u0005��+~\u0003h!c���\fC�K��V�q[\u000e\u0016\"+\u0013޳on�†��4��\u000eӭ��X����Au�\u0015\\Բ��׏\u0007\u0004l� NR�x\u001f�>�6��M�!��\u0014u3\u000f\u0013\u0010�)�eL��}W����`I-\u0002\u0019M�N\f>��V�Ю\u001aŒ̓z�\u0011�~�ӄ=䷙��-\u001b��h>�ѣA\r�\u0003����\u001a�\u0018���W��'ަ����K�\u0004�\u001f�W���5#�\u000bD�2I=��\u0010�(\u0016XE����B\u0010Ed$7�Z�\u0001�Q�c�\u001e��v�NYw׭<\u001a��&աά\u0011)\u0004:k��ڀ\u001aŗ�pK�L\r�4�y�Om9C\u001d�\u0007e����~\u0015V ��T�����d�m3��\n��^�JQ�G�\u0015ři��;���\u0004�\u001c��)\u0001\u0015\u0019�b�U�܋Z�p}\u001cە��N�\u000f5I3�8p\u0018�w��b�wm_�Ec�\u000ej[\u0004¥z#�\\�j�s��!�9\u0014�B/e��lu�t�>.�>�c�\u0011�n3[��~��$\u000b�WJ_УA\u0012�\u0003������\n��<�@\rt\u001d�H&��.L|o\u001d���\f̿X��7� �\u0003�(��do�:�8%���\u000b�\u0011ƾ�X�ƶ\u0012��\r��-2y�\"��\"r\u0001���/\u0014.F!��\u0018���Wm�\u001c)�vi\\g�F&���եS�Y\u0000l%B�����/L�����v�\u0001������\u001c�h�����P��f0U\u001f�|��`�H�\u000bݔ\u000eƼ���\u0012U�\r�랄��k\nar\u0002�\u001fG\u0001�5�e͸�/{v�,=�\u0003�\f��zV4�U�#�\u0018\u0001;\r�\u00004��\u0012J�\u001c�I\u0017�7�\u0002�sM�\u0006�m��\u0005펍�N�����j�~�\u0018�ңBC�\u0003������ŤZ�W�:�Ц�9�*����7��;Y���C\\\bH�QU\u0013z��\u001as4C�\u0000�JZ��\u0006���uyF�7�S�\r��]�~��pt��o��4\u0006�����?�\u001b����3���>��~\rW���W���6\r̎�[\u0015�M�\f+��c�qG#�d����-��_�ڨ�%�\u001f�R4�\b�\t�\u0019����;f\u0012U�KN�Cm�@F����\u0003�&�\u0016mñ��JC��A�\u00104z��=\u000f�`�~x���򺯱W��|��k����� lQt�\u0007�&��v\u001d>l��*�\u0016��\u0017��\u0003�����/>M&i��\u0000\u0000\t�E����I�)U?`�x&R��K�\u0010[���W-⑧sr����f��+4\u0013���;�M\u0013߉? �2Qb�n\u0018k�>���n�y�7\u0005r!m�1��(��ըe;�6�\u0015��۶��Wy�}\rh��,\u000b�\u000ff(A�Q����\u0019�#l�U����ZS�͉\u0015=Y���\u0013%Y\u001aA�{�\t����~A\u0001�1�)� =\"��&S�uW,�E�����ii{�7�w�\u0001�jO\"\u00004Bz�\u0005t��L��\u0013��\u0007;QTU�f�k7�\\p\b��G\u0015�<��e���j�\u001em竔\u0010ۘ7�Q\u0010Ϻ\"����V^�s;�i����xu�͇��\f\u001c�܍�f;�~�\u0011ϗ\rlʻ�~J\u001a[6�Dx���]�0�@��\u0003���kZ�\u0010�\tX�/�c��\u000fծx_��}>\u0012�a�?\u0013@t�\u0004��\u001b\u0012{>���\u0016q��H�ea\\<\u001a���0�k�,Os�\u000b�b\u0012\u0019_��w|M����������DԮLՈ\u001e{�H\u0017�¡��Φ\u0006eM� ��+�\u0000l��)[�nӜs�\u0001c\u0016�n!&#g-���|<\u0019P��\u0001��\u001d�\u0010t�X���>�]t\\�\u0001�\u0000y�-\u001ai_��n�[��ԩ�ڑ�G�G�9E�y\u0018n����\u0010�+�Eb`L���g�\u0015A��XF:�S�F�U����T�Ī��f��$\u0006�����eO�@��\u0003Ԁ�1\r\u0004;s\u001c7sC�e��llg����ǎt��B��<{)�\b!'�F��h�S���)���9-�t\u0017C\u0007N\u001cy�$��;7�z��(\r6�ܪJc���n��>\u0006�\n�7GB\u0012)\r���D\u000e\u0014���4�2��#�X~�\u0015�;�8W�9��p����\b7\u001eg\u0005�\u0004��U*�[�̶E[�.Oh��&\u001f���Gw�C*�:R�b1�)�\u0017�Qb+\u000eIO(w)���\u000e�Ꮶ%g~��\u000b\u000etj�\u001bm3[���'Ѡe����ߥ\u0019R�\r��]tXՒ;��\u0001�-$\u0000@��՟�A\u0000�\u0003��1���z���\u0006��\u0000\u001e�2�@C\u0018]��=ȭ\f4���ooX\u0017�r5�p�\u0014��j����1��ڱ,�\u0004C\u000f���-t�S\u000f`\u0015<������bP��gE�\"*|���|�[\u000f�6�\u0002咁��RYc9z\b�{��\u0003�x�_h��Z�\tM�\u000f��׬�I\r(_�ҹG\u0001�\u0013��L�fk����f����&\u0016.,)�\u000e1Cn\u0015Z�\u001f/'�no�fFB0A�l���\u001em\u00017\u0001��^(x1�%\u0015q�\u0007�Ⱥ�e��KE�F���}J��z�\u0011Q �j��K�D�D�JF��o�ҏǪ�A\u0010�\u0003���X��\u0004�e\u000e}&�՚�g�L�f}�|\u0014�\n�\u0007�h�m��j���j��4�g��\u001c��rꊪ�=��烿��gA����hp�����Y��\u0010�H��a�m�A�ۀ8�5W\u000f\b%E��\u0017$.pF�ɑ-�@��V�2��A\u0015�\u0004\u0010��Mu�Z�`V\"\u00113�o�|�3�pT��\u001e���*\u000fuəM�\u0015�O�9�S�����3�8հ薆\b�\u001e�Yꕲړ=����e�[rा7��Z@\u001bg�\n��ɮ����@�y�Kgf���<�8���.�/\u001arG�uA�!~\u000b��I�\u0015����K�ٴ��g�X\u000e&��U���v���R\u0012��(��m�=�568�!���]���ӂ��`�\u000e�\u0017pL\u0002\u0015\u0011>�?�S�D���h�< z�{g<�?q���\u0010Պ�D�{��|e��6��m��@��W��@\"�����π��Y,���\u0012���������J�A7�\u0004$��M�\u001a�a�ԓi=rIvj)[n��\u0004��\bd?\b\t\f��ҷ�lв�ϻz��AT��)`�\r_3<@/�Ϣ\u00104\f��U����\bW�����q�qv�\u0018��?\u0011^SNr�b\"�\u0001ħѝ��1R\"Q�K�yȅ\u0005����\u0004��w�jp�z�&\u0000\u001b���\u00022�ˀ��¼\u001e����\u001c\u000bi9\u0003�Rh땟�\"\n\u0011YI\n%#�\u001f�¶�W\u0002bQ�E���9�i��*� ��Y���a)8��VZ�����䥊zq߷V\u0016u>f\u000e��� T�V�e�G�~�ݯȴC�\u0002�D��S\u0017VU�1���W�\u001d\u0019R\u001a\u0007��\"vM)\u0017�A>yPե�A|�\u00048��}aU'��!أ|;�\r\u0019�*����+t��r?�t�.6�\r-<\u0014�]���aDlr�!2��)�$��HI��ǹ\f\u001e@\u0015�EU9�����\u0006j\u0002\u0019\u0003m��R�%�<���0��C[��Q���R�~v�\u001be��\u0002�΢\u0004v�)g���2��V�ߕP�\"��%��`y�Nז\u0003}^\u0005���#H�\u000bʻ\u001d[rBU���,,���`�!\u001a���M�*��9n�\b��\u0007*�2�\t[c8�2\n����b�l��\u0003��\u001cJM�\u0002X<�����\u0015M)�`W��\rȣ��#M`�K�C�&v\u001bX�\u0014\u0004�Z�&|��N�N�E1�.��x{r@^^_��4ۂ�E\u0011\\Lւ\u0015��C\f��\t|��W�q�G���\u001c\u0018\u0017\u0017�!x}S���U\u0012�\u0012iH��\u001c��]�v7��8��\u0018�L~\u001c�ǽ�\u0001t\u0003����E�R\t)O�od��\u0015���@�A\u0003�\u0004L��0d�i��t%�Cv_��\u0002c�x����b]C�Ф<,�S,ꈍ��:DZ6�|�}xCU�����*L��\u0017X�<�s�'\u0007\u001e/��ٸk�[l]�HD<������|�y�_��۴��B�W�U�y)��yf��9\u001f{\n͛\u0015\u0006�0‹���k)X�3��6_p@�\u000b��D\u001d;��\u0014�f������E�\u0012Z.7^�ooK�T��q���\u001f=�ү�\u0012L���{�\u0003o�\u0010�����������\"�\u000b��d�p���Ƀ���qLD��{$�6ކ)*Q=:�.���i�/8B���A\u001f�\u0004`���c\u001e�ofjA��W6���d���a�\u0007���'�\u0011Q��-�nW\u0015z*�4tH�hۺ[N�Y�\u0019�0�\u001e�a�����\u0010�.?a���P�g�/6�ہ��\u001d���\u0011�)��ڇ\u0000�)R\u0007IC jo�vSF�͵+zi���f��fe�\u0004���9�e,ù��z�L��V�\u0005{�L��\u000f��?bT?��\u0017�8��\u0002����[��ޫL9İV!\u0013n�\u0013�޷���p\u0003���#+��\u0017�gCvP\u0015n��w;�\"���d�y���\u0016\u0017q�͋�{�!����-�BT���\u0001�_\f�w��� �ZUo��\u0004\u0007t��\u0002l��-�\u0017��\u0001��A\u0011�\u0004t���a�����\u001a\u001e\u0007��\u0007�x\u0001�/Ŋ\u000b����G6d2�J�'�����l�Օ\u000f@4��}uz�t��� �?�,�|H���٭�����N}T��tOt�\u0014\u0011�\u0000�(N\r\u0002A�Ы,w��8s�\r����ׅ���tJ�cM\b KW����b!#�e��]F��.�l�WA��\\Zk�A��;�x����o|��06�E\u000b�S�C1X�,�[��1\n\u0001\u0015t\u0011ۜ�\u0007�E��3l�\u0001�\u001c��\u0011\u001a%���{\u0010e�\u001d�2�u�a[H�����\b\t\u0007�@��!�[3�2\u0012B3%c�-�ݲ��2j���nwV���A\u0017�\u0004����mhY��O��\u0007\u000b�\n�rǓ�j��k:\u000e\u0000� $�F�_p�с[\u001b'�ޖr��7& ?#�a��\"{O��\"zQ\u001f�èD���~�Ws���ε_�)����R�����:sL\u0018\b�@nr\u001d�&�T�\u0003*LKD\u0018���4�x�}ťis�أ�*V�\u000467v���\u001c\u0017���@�4]\u0004�\u000bD�\f�|�~��5��#�����\u0010B�c�j\u0017���\u0001|�Ӕ���\u0018�$��\u0017�A��fэT((K�sר��qk�����\u001b�\u0002(�L\u001f��]OQ\u000f�\u0002�r\"&��K�>�\u000e�q1�b�>W��\u0016D����������m7�A>�\u0004����b\u001d|\u000fX������Yu���V�����5�?\u001cV\u0017\u00102'���\t\t/���d��\u001a�>��a�\u0014�Pg���Q)��\u0002��'T�G\u001f�FٯF��1B�s�l�:�������7H|y\u001d�-n��8�\u0010���1�f��\u0015[]�ۉt\u0007\n�WCbW�W�(F7�#yD�\u001a`�Jߔ3�\u001a]��\u0010��2��5t⽓H��5�\u0001-\u0004\u0019Y�\u0015��{'s�-�� J��4X*Kě��j��U��1x\u0019���a�B؂ք�cF/zV�\u0010�;����4Z\u001f�A�̂\u0000Ew��\u0012��\u0013\u0011�D�98�\f4���i��Q�����x�b\u0001���C\u0013\u0017tx����\u001b�nҐ��՜��\t�˚+�uޡ�犵��AV�\u0004����brF\"ԃ\u0014��\u000b��,+C\u0013��\u0012\u0003�\f\u0010��$\u0015�V3n6�(�Bw�����y����u�@��1Q).s.�CȜ0y.\u0004��Ι\u0011\u001a0Ϻ\u00112툓���:\u000fr\u001f�O�!�P\u0000��5\u001cپ�b]\u0019Jx4�dQ2�>�ةc\u001eB��}t��b�n'@\u0010�ag���`�f�\u0002v�WN\u0001Y�a�\u0016~#E�:�jɯ�Q��\u000b�\b�E�ӻҭ��>���#�}g��x��n1�K�\u0016��wP�bnEz}��4�v\b�C��e��z���9\u0018�#�\"n*�y�z�@4�+�\\L@�-\u001a)�;��\u0015�\u0010\u000e��W\u0017���\nό8k�!7��Ja��T��FƠEَ�ZL�M�6�[V�\u0004�\fX�ӎ��O�Y�p�Ce\u000f�\u0016ҭ\u0014}��@�P��m��A~�\u0004Ā��mhZ\u0018��vY�#�$��F�\u0012\u000e_�gJ\u0012,����Ϯ�w��\u000e\u0005'[��э|�[�)-\u001e���\u001f����\f_��vac\bIaY*�B_�r\u0015�<�-���\u001f�%n\u0019�\"h������\u0001����f,cR9\u0014��6\u0006��\u0013E��OԒ��\u0019���؆?\u0003I��-)BpEL\u0019�XF�\u0014-+\u0013\tE���E�!��DF3-'\\8q\u001e���h��{�\u001cąO<\n\t�Թ�\u001f���9�1_��{\r/��\u00029ٰ���\u0013q\"f-���g��\"\u0000���Wr���[n7�A��\u0004؀����L@\r���\u0003Z��g�\u0003�*C\u001f�TI-�d6o���0��n�L�\u000b@�^U�N��WUZ�A.�`b�k��1X}�\u000fY�`�\u0017��\u0007��!j���d\u0001\t(y����&#�Lt���ĕy&��0�_���\u0015��k4A�\u0018ޚ\u001d�\u0003t�j\\�#A�펜f)`���\r\b\u0002���\u0006�\fTZB���\u0001Ɠ���d\u0019ȴ%?�1��A\u000f(D�'�.���P݊�\u0012��c\u001f\u0003����8��f�\u0004��\u0018�YQ\u000f��M�k�2.b?�\u0013*\"�ӳ��K���\u0000g�L�\u0004��#煬[8\u000f��� �W6���1\u0011\u0014������,��L�מT1>��u�\u000f���\teH�J䡃�\u0012f�*?��\t/�m��\u0007�& h���K�晬\u0004qw�+�\r�Y�Ӗea��)@���I��Z_����?Q�&�\n�4���R\u0000�\u0013߮\u0018\u001bRSO�J����@q�\tO�Ԫ��c�[\u00146j8�B3�\u0004��}�\u0015G�H���V�@p��\u000f.�׿o���\u001a��m\u0001��\u0005�\b�(�v�4��\u0017\u0001\u0012�`�A�qZ�y+{\u0019�_���1�|�\r\u000e\u000b\u0000>�Q�j����W����r�ɀ�h�ԛ���N\u0010�\u0014q�QK��\u000f\u0010��\u001f\u000b<�z�zc����Y�\u0005y}pR�G\\\u0006Wf*\\��iDi���E��f4���d�m����m�p��]�5�\n.�K�fӬz⇑�\u0011͛�@\u000b��6cg�g��#�\u0019�M�޸ͫ@�m��ߟ�Wf\u0002�J�AP�\u0005\u0000��XБ(��\u0015r\t'oW1�8�\u001fJ�~���}=��\u000f�,f�0S�Cg`\u0001��\rgz�'�x\u0003���v)���'\n��\u001ď7lȧ�\u0014�윭g\u00196�v�,A=Z���\u00100\u0001ߑ\u0007�����/KL%e�\r��\u001cʴ�\\r\u0003�\nX�����M�\tlqIcB6>\u0013�lr��\u001a��������{\u001bb@����XSԇ:�\u00170L\r�\u0000�q��4��mX�z�6J�*����U���)�\u001e�c�I]��C4�O�\u0000(\u000e�\u0010\u0004�z\u00145��0�\u0010�}�[\f�W�\u0005�\u0006�㥥�ֿ\u0012�e��ʴ>WfP������� \u0010��f\\��=\u0003�?nY)����\u001b���\u001b=�F�~_\u001c�+�(�\u0017�}��Q6\u0014��\u0014��?\u0011g\u000e�#���\u001d�\u0002\u000e�W��\u001d��AK�\u0005\u0014��XM���;[��*\u001a��K�=\u0010<�\u001e�\f��3��??��}z<2i5�J�\u0012kd>.+i�\u0003\\�ɖ\f\u001cX9ᑧ'�\u0016B�>E\u001d��ν\u0004G\u001f6Y���\u0016�4#�\t�0\u0000�4�\u000b�\u001fr����\u001b�c��\u0012�|\u0010��NGb?k�D��r�U\u0015\u001cy�w��:���\u0014�\r\n�<��=��+�����]N��N�?����)N��~m��a�_ZN>�Vp\u000b�0:R�dAj�U�����/�\u0006��Ŏט�X\u0019Fʽ��\u0014~\u0003Ǿ��aC{`�4�A�l�,\u0007�O\u0010��㔩z\u0004:�\u0016��X��\u0010>��H��hi�t�<�5�x\u0010\u0004�A�5���\u0012��.J/lx(\n7E-E#f�l�\u0003�eR\u00069j��m|�����\u0004�Sp&�Aҁ\u0005(���e��@K.��%bק*lN�i\u0012�\n�G/����(�ת2���1?`l\u0017\u0016/\u0003�%R.�0����:�&��MyD�6�o����ˑ�Ow6%���\u001a_�t🄹\u001d���2�h�z��\u0017\u0010������LC-�U\u0018\\��[�D�A��ݘ\f�L]Q��\u0006���L\u0014\f�Z��!��Ni�R��\r�F����Ō��x���D?�\u0000.�T�7+,#�DZa\r�A\bǸ�\u0016�a�n�\u0006��(��4F\u0014\u0007����%�*�P���\u001f�\\%7|-���k\u0013�jw�͟�-����S�\u0019�\u0010e%��z�\u0002�展��v]=�t��u\u0000��\u0005�\bR�\u000e���-�yw,\\\u0014j��y~B��W�a]e�\u0005W�Aya��� ��VboYP�\u0016\u0015�հ�Q���v'��*���\u0013�\"W�`8aK\u001a�]\\PN�o�\\C��;Q������9��{�\u001d\u0016%�&�;�\u001f�إ\u0004&Alѷ�_�\u0006�\u0011\"�)�\u000f�K���%\nT��\u0011�\u0011\u0019\u0018\u001e�减�s\u0010�\u0006�w��\u0019|��\u001b!�m�Z�^ZnK��J�;�AF�\u0005<���bE,n�1iԎM.�\u0019掸�|F���`F9�˭${Ã\u0013}\u0007C�\u0015�Sx\f\u0004��:^���$\rxw�����\u0015�Y�X\u000b\n������u|4�`2�}\u001d�)e�>ܷҸ2�}\u000b;�?�V��o���)�vI\u001c)�NM1\t\u0004�h�=vd�\u0015���c\\\u001e�\u0007���*���[��]\u0018�\fI_���\"p�:Adu��\u001f��\u0010�\t\u0016\u0001*�W��\u0005&a\u0003\r�R�\n\u000e1$��Z��k��Hx\\�����h��#QX�Ω�c\rcd5�}�\u0004�\u0007��{�x�M$���%\\\u0015\u0016D\u001cm>jQ�G^��\u000f���\u0002󻍩%�L����{g_���<�а�\r��g\u0018�̏�t[S��eas����\u000bH\u0007�#h�Έ7�n=�A^�\u0005P���mr}�B�=+\u0017^\t�w\fB\r�����\u0019\t�N����?y� L̍-a�p9\u001d�\u0015�\u001cK.m�\u000e:��<\u0016�MZb[v\u0019\u001b���\n�pe䘞0<*�ݹ�Ah�+��Mk��-\t�җ�r�\u001d���\u001cv\f�����\u0012�,���\u0007�ؾ�8'5��9I\u0011�Ԫr�eOE�/�@uyj\u0002\u001d]��\u001b&q\u0018��1es�fPp��s�qN��0߂ʐ)�\u0006��v�\u000bv H�\bz�����\\5�^[6�1��kC0���\u001e�\u0007�:��Z��|���*v�-\rŴ|PENL~�D�5�Y��+Z\u0010���Q�\u000f�D�$���\u000f�H\u0011��$=��;�|F(\u001a\u000b\u0013\u0013�Ѿ�>�s�)��\u0018���?̆>'Z�/�,I\u001bJΊ�Ho}LuC�xZ���E>\u0019'[p���\u0011�{�jf?�AB�\u0005d���mp'E���р\u0005�ˁ\u001d �p>=\u0017\u0010ߒj��\u0010��A�!��q�\u001de�p\u0000Jq\r�\u000fw%�i�\u00129=}t��p\u001el�\u0003�)G���R��_�r�j{ɜ�\f�t6LiU�VE�&s�=�.h��fS\u001dE�H��i�rw2/)oG4*�6��\r�j� ��u��\u0012�n\u0011\u0006�\f��x,�0f�r�n�Ac��Zx�f��B\u001c���\u0003�|B� �\t�䔁�\u001eq�M\u0000�ݷ����~��XUM�M\u0007�s�O����\u0014,\n浈�C��6Q��큟��\u001apS6��\u001fr\f�0�g��\fDc\u0002\u001c���N膙���\"A��\u0014\u001b S�����\u0013�\u000fȂ�dv7R`�p��\u001f�Y�ҙ�a��\u0005/Sz�����R {}Op�Aሶ@�AV�\u0005�����7��/� �9\u0018��\u0013G1��\u0000�_Ȫ&}-�'r\r�k$��\"{�:��� <�.�Q+���\u0007$�1��M�ԛO�{;Оd\f9k�8<��02T�<>\u0013qP�|��\u0003��@>\u0001�\u000fS�Ҟ���x�ِ\u0016�̼��]��\u0019�\n�b�iOI��{N��\u000b��z���r\u000en=�0�?H��aw;�5�l0z�\fvd�W �!���ז�ԑX��Gex�\n\u001b��:\u000e4�C��\u0005���&�\fB�Ut\u0000$E*ՠ�XV�x�$~s\u0012��ր�3#�%�� |f�DP^��Y�tI�3���Qq��S�1�I��a�\b�H ��\u0003_����b���k��\u001c������\u000f�\u0011hK�+�̟�����d��\u001bB�N�&��b6����\u001b\b\u0003dW�l�\u001c�?�AW�\u0005����gL��Y��Sj�a,8<����\u0010Wg\u0017\u0010I ���$��\u0001�j��mGiH\u0012��Ӡb�\u0013�1�.=��\u0012�\b�b�\u0010'c�u��@ʬk\u0005F֊I�\n�E�Wm�}�[&okL�����X�'xI�x;G,q��\u0003�K�AL�����\u0003K�\u000b���@\t��$�.\u0002Z\t3GcXO�\u001cp�S@��\u001dDo�k;�=�ǥ%uӄo����\u0001E��\u000e ��\u0015�7�$F\u000e?#�J�ͅG�\u001a\u001eJ�����\u0010�մFn���k\u001d�����EIZ\u0001���\u000fӁz�u��V\u001bk�f�ҠV�4�b�\u001cIS��{�\u001f���׸\n�I<�AN�\u0005Ȁ���Y��_1��c�����CD��ac��f�$�A�\u000e�df<�Hnu��gݡHh*^�_)٩���J�Ïu\u0014W�M�(Aw�����ˉ/H\u0001u�Y�j���%H�����щ\u0000�����U����Pr�t��%R��Z��kԅ�\b��B��\u0010\\|O\u001c쯋I\u001a�w��N/�{�d\"�ǫx͑[,T1\u0019�i3�`@��\u000053(\u0002�����\u0016e\u0014.��x�*?�/Up��hT\u0007���R\u0019/��M(�6�����09��|�?fE��\u0006[�۩F:�ף|i��\u001f5��V�\u0005�5�K\u0016\u0015������/\u0013l�~�C\u001a�ad|uW����dX�7Y�a25ƀ�����G�\b�*\u001f�H�]w\u001eڔ��o\u0011\u0003�x!�\u000e{\u0001x��K�n?�AA�\u0005܀��b\u0011��\u0013e�i?�������s��m�Co1`cKAӽ�\u0001���%r�\\��ekH��WxHT\nJ��'!��E�e�&x.@��N�\u0006�䨇�&��w�5\t���$��)?�sd�\\ �\r�\\�M��Ì�:A4�6jo�5��>z@\u001f�\u001e�.��\\ɼ�V\u001f�\u0016�L9�\t���n�ȖF\\,�)�\r\u001cK:\u001e���9H�\u000fq�=��18}蟚\u000b\u0002���e\u0010��ϖ���\u000b\u001aj� �\u001b�j�T\u0019�ea1�r~,��\r��@+6�����\u0012]P�M5?���\u001b�(\u0002��;Y�f�&�\u0011E�V9\u0018�X�H\u0014��Hs_^,j�u�x��gt\u0017e��x-8���\"\u0013��#/1�F�{KAj��&?�A8�\u0005���Mt��\u0000�\\[��<-s�������L\u0018\u0002�d�\\��]df��ʨα�kF�\u0017qH4� \u0005����p↴C\u0011g��~���\u0019\u0005�(\u001e����ұ�\\�\n��%�\u0016�\u0001WO\u0017\u001e��\u000f4�n`?\u0015\u0016�-��\f�\u0018����G0��A��#����.q(�:~\u0017���h*�ӑ�����\u0010VI\u0018�.\u0004����\u0017\u0001�\u0001F\u0006�а\u00178��;�F\u001b23�\u0005\u000f7U�j'DGF*���u��\u0016��E˝�+?%3���\"�}>�<\u0014\u0005\u0017/��Cr�S�V�\u000f+�Y�\u001cUO��+��\t��Mx�\">x\u001c0��,�.Z\u001d\u0000JVx���`��c��\u001b�(=�`�H�`�\f\br#���n[ZZ��\u000e��aŐv�A8�\u0006\u0004��۷n�#�-\u0017� ��[�﫺%�}=�VP �\b�����\t��^�\u0013ڴ�lXps\u0017�s�7�p�ׯY�5��^bC/d�qE�\u0014�\u0016�f�sq��YVY�\u0006��'�ATKp`\u0011\u001d�d�=پ;��9wdBo�(���툓�\u000e���x\u0002s�h�V���\u0016���\r�\u0004����\u001bg{���\u0013E3�8�\u0006�-g\\5�E=ʳ�t\u0018\r�4�x�\u0014?�۷\u0000���E]�u�2�aX�*\u0002Ϋ-\f��;f\u000eX�P��7\"\u0000\u001c��V�����\bG�����+�\u0012�=� D`�)ݭ:�\u0017�\u000f\b*�Y>�u���)\u0004\u001b�>K�Xh�\u0001����\u0003�08�C�\u0002\u0010\u000f$V�i���\u000e\u0001(��ɻ\\�M\u0015_��④A-�\u0006\u0018��۷`�\u0003\u0003(�Aty<:\u0012=N����:���~�ʾ:7�To�*�\"����bi�H�0\\��kRr���ٍ\r\u0016c��AÊ;��\r\u0016t��\u0019�g�har\u001a�&w�\"g�f��aE���U:�5�\b��}m\u001c�>�Ď�\\�)�ڄR�9{\f���.J]\u0013\u0012�)ѥ�)^�\u0000愻�3@\u00136� \u0005W\"*�g2q\u001b��Yb�e#&�\u00122C��\u000e(-���\u001df��\u0005�Xg��\u0004���0�Q$��2�4�<5\u0001v�͜ە�\\�'F�>/=p�\u0001����A�\u0004�:\u0004it��\b�\u0018ǯ���� ���\u001bn�%.@��\u001c\u0010�Uw�t�}H܁�\u0018|�;�\u0004����\u001f��9�?&J��A\u001f�\u0006,��LɄ3Ԟ\f���8\u001d��\u000b�s?�\"���2��w�ύ���q {�F��\u0003�&9��J\u0004\u0004Rڅ�\f��\u0017'́#j#�!�)\u0016ŝ�y�32�jۻ���o�[\t\u0003���/=�q�i���ZQ\bK|/����\"\u0004�\u0015凚��#�(4\u001e0�)�\u001e6�l~�|\b \rET�a�\u001c�^퐞\u0004���\u0015\u0006DCb��\u001aE?�@\u001e;�X�c�>���\u001d�.���\u000bp\u0005�ǽWX\"E�\r&\u0013]���u\u000f|�bmG\u0000�.�\u001d׾d��X3l\u0014m[����\u0018�\b�٣�E+`j����a�A/�\u0006T���bn�[+�^�ܾ-cZ\u000f�#\t[Y�{�uB�p8��j�Jm�J�B\u001et���oՑw%��f>|\u00006B����+v$�s�Ë��=\u000e.�冦c�L��L|��\u0011\u000fh\u0012i�?;j�^�T��u��\"Vo8��\u0001<�f�zZ��]v%�����|�\u0012X@\u000fp�^F��!\nS��\u0006 ���|\u001e��}p��ȍw�,���\u001f�b[\tN�S4�\u0016\u0015\u0007��e�q�|���麥I�G\u001f�\"h�C\u0007��o�.\r�A�\ng�&C���9�\\OD=\u0017;N��!�\u0013�].](?�ض\u0010\u0018��\u0016C�!\u001dL��˶{r���E$�aB��B��/����Q\u001a4H?������\u0005m$�X\u0001\u0010*Y�AA�\u0006h���brKf���!�\u0006De��b�s�\u0002�\u000b埔��7\u001d\u0002�k\"�\u0004<�,\u0019N�52S\u0017�\u0011Wܚ\u0011灭b:v&%6��Z\u00102i\u0007�&��.3\u0013�E�{�%ٲ����=$%����&\u0001$�a\u0001f�\tr����\u001c\u0019�Ǘئq��\u001b��FŸ�[������9`\u0001�a�+�2F*nI�\u0002v\u000f�G�\u000e��Ri�\u0013���ywwMZr��7�3~R��7W��t�,\u0002�,H�|ڋ�ߒ�\u0005���S\u001eK��_8`�VP\u0002~��5Il\u001b>��rJ\u001d���T�\"p�䪲���\b\u0001$�\u0002M��c�’Y�A\u001b�\u0006����bn�\u0010\"�<\u0013��q� \u001e \u000e\r�s\u001a-+S��T�\\\u0004�\u000b��$^m����>�\u0013&Ұ�\f-D�_�ݐ�;8\u0006\\�aeq\u0017��\u0004�\u001d�|��-ө�\n8\u0019�ѣ��f=_�w\u0011\u0014�\u001b\u001aN�o��� ䷈�\b�\u0018c�s�d��>`\u0011(��ޚKԵN�-�?�z�\u0007�ykӡ��.{I��Z�NR�c�\u0001)�\t�����ii|\u0006�b�zi!`�0#\u001f^��0BP�N[\u0014���rc�Ш�!\u0016(�\u0011�m�5��\f��J�`̜�5\r�����C���\u001aQC\r�j)Ͱ\u0017��N\u001a����\u0005�n>0�ػ��Jd\u0000'd�\u001d2j��}PE�J[�AN�\u0006����o��\u001fD�P�\u001a�>��=�`�;2d.�4�\u001d\u0003A�?��̦GB\u00016�\u001fC��Rx�\u0012(��BC>��+~g�\u001f����\nI\f��\u0013��N���\u001c&\f\u0013V5����$s�7\fo��9K��U�9Zki�>���\u0006����\u0019v<��s��G�չ!=7��\f��w�uwD�_\u0017�\u001a�[\u0001\r���;�;���:k��R\t�F�\f`a��&�)�ǻA�5Z��ύ\\!�\u0006�Ͻ����Xbз�PX5�\u0005^\b��_v(�V\rX3��E�|5BLuZ�k\u0014�\u0014\t�\u00116���.j�^�V�-q����m��/����۳I�ݪ\u001e]�A[�\u0006����\u000f�����TB��g-�{�$ƣ%/-\"q<4��\bG��:\u00041p�og^\u0000h��|\u001dг�\t3\u0018C\u0005�/�j/(�Q��jY�?�=�O\u00199\t��Ȗ�fN�m\u001f�#������Y�l��6\u001b\u0019\u0019�I���L���A4Ο���L�\u000e\n�\u0005�q2>��\u0007�]9�+`��J��:�\t<\u0011*�\u000f�Լ\u0007��law<|H��g�o\u000e \u0018���\u0012'>�!\u00057���,UQ�\u0004Ke/\n#;H�U\u0007e:���aH\u0012�o:�jނ�\u000f�g�p4�P�\u0002\u0005t�\u001a�1�!��d�9\rB^LA&�d�,��A�3��e�\u0019_\u001d�;}���V�B,~�jU2\u001a�\u0014N\u0011�q�\u0018!\u0017\u000bHl�EE3͐�+~즿x��ʱ�$�C���#3���=�%��<�\\c\n\u001cú]�A@�\u0006̀��l��\u000eQ+t/�~˻�\u0005x\n\u0012�e\u0001%l�Yx^\u0004r�#\u0002\u0002u��\u001a�33�t��v�U}V\\���\u0013���5m\u0011�=j�-x�\t���\"��7��=���>\"�;f\u000f��4\f%݆O�\b^��F�O&�cN���N���\u0018R�ۻݵ�׆ݮ>��u�\\;/�P\u001e�ߏ\u0010�Za�YDt;2(�ЮD):��*^���j��\u0002r�T幹�&�װ�� �k&�W����E��`?W����Q\u0012Dh��&�R���\u001fŒ���o̹�:��!�\u001d�2\\u\u000fYW�-\u000b�d�/\u0011��2�\u0001�������A%�f�H��ګ}���\n\u0004��|2���]���u��\u0016�/���}\u0013W��O��I�G��@�e�m\u0016]�Br�\u0006���}b�\u0015���9�\u0011\"\u0002J\u000b1X��/迤�\u0011�\u0010�t\u001c�tB�;!��UkM�E��ȸ��t��\u0016�s�Au\u0011\"j�K�S��t\u0001�'��\u0012����!�gl.�8��w��ވ%�\u001b\b���p\u0003JT�\rDnu3/�'��+F��)\u0012ч\u001c�s|r\u0015�^�7\u0005曶A��і��\u00113g\u0012B�:�\u0004:!����AX��u%�=F�MBL��Y���dʓ�|0I�A�suj���<��R�ʉ\u0017�\u0019zq\u001c�\u0014� �䮱��\u0002����\u0016~-K*�ej�����#�g\rV��5V ^\u000e�$M2pn\bf�\u001b{N�\u001d���\u0017\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016��/�.�c�T,��\u0018Ϋb�)΄F_�MW��\u0015�Iy���k���\u0014�E�.�&h�d��\u000e\u000e�a��\u0012a��pR��hj�TL8�N�7eyN��d0�\n2����ʙ\f�\u000b��Ә�\u0015/��\u001d{ǂ���\tzK\u000f�_�8:\u00170h�r���\u000e��\fו��i�\u0011o�s��6E�\u0005\u0005\f�ٍ����\u001aب^��\u0019�\u0001�PL��h�^�.�x�*��\u001eb�X�\u0006���FQw��<��µ\u001f���\u0012Q�E�RR\u001c�K9��Y@�X\bK�,l�pt��еqɃ�$в�}�����\u0002~S�xBҵ�\"��h\u000e���[>�ΠN�4@3��.��')@W�n�\u000e\u001f�jUY�&]�ܱ�Fg\u001d���\u001b\u001d��Vwl]?\u000f�\u0007�����n��}�yD$s�*>��\u000fa�i\f����¢m@�c�\u001a}G��G�G�*���c�2!m�\u0010���B\u0005�2TA�S\u000f�;G�\u001f\u0012�Hr-�\\md߾V�@\u001b�!`��4�����\u000f��\t�91q�yZ�d��RO(�\f�\u0002(|�\u001f����K��(�Wb����\u0012\u00071�#[\\�|��eKU\u0002��q�r���Z�AN�\u0007\b��XЗ=:\u0019��\u0013\f��\u0001�_�\u0001�>Ѫ�!'i\u0019��R\"��\u0004g�\u0002�W�{�����ѝK�O$L��^c��}�R�\fu\u001fӣ���@zw\u0006�\u0000�z�1\u001a���v\u001d���ᝏ ™r̺<�+�dp.�֤]��6U�\u001a�4��o8`\u0018���M���8����+��ڞ\u001bkf�)P���M7cQ�9�d߶l<\u0014�zilHn\b��}w�l�`'Ϗ��]��ڂhh�76Ha����\n��R,�\u000bf?!���!��h� e0\u0005R�_%&\u001a'����\u0014��+��aM��y��rF�5�hH�;���j�t'��·�Peײ\tEZjvQ\u0003��E\u0015\t���y���\u0012�L#[L�.�r�!\u0017�I}Nd��\u0003Ɣ��~܋x�\u0019�H��\u001e�?I���F���3��\u0001\"�A7�\u00070��MzҸ+�����\u0017��\u0011fu�\u000e缶\u001b�\u0006\u000bѱO��\u00025K\u0005��1���a\u0007����ic\u0012��D/`ʆogg���C*�,\r[�!8\b�f������.��a�����\u001a!�N�^q�k�?f?�\u000e�\b����\u0003ɑo�'v�h-\u001b�-ƜK=`*��:�\u000b�)��U�-�*������W���[\u001fC<҈�gL\u0011��\u001f\f���\u001b�Z����n��D�%�#�b��p\u001e�1��\u001e\r\u00018ktS�_Xg1Gr\t7q؅�9�Jy�YG\u0010L�\u000b��4f\u001e�`+�4M�\bb�]%��\u001cO\u0015A?��ҽ�\u00063b��F\r\u0012�؇ծ�-j~\r\ta$Od�Hs'��م��nH��\u000b���l���35�\u001cԩ\u001e^D�f�O�ԍ��A�e�Y6�A\u000e�\u0007X��L�I�\u0007����0SYb�����8�\u0018ʕ=\u001a\u0019�O\u0000�‘��EW��RE���R\u001c\u0015\u0002��'�]��y��R?x�/[�R��\u0013�p����`��Ж\t��&ܕ4T{�����|=N�!���\u0019ˇ�2[#�}2x=��k���b\r���ѩ`w\u001a�\u0018������������9H�u�!���(~��g�^:\u0011�MMks�\u001c3�s�B\u0004Z3/)2D��3?T\u001d��U��Al\u001b�@\r�'S<�]����='0ݥ�����@�[f%�>�;�U��\u0001@��0Ҭ�$`�\u0012�В���6��|)��5�m�v�A\u0011�\u0007l��L�\u0019�p��x������\u0006$Gtv3�v�x\u0017ͲxE��f36V\u001a}��l�Vw�t\u000ek(��D\u000e-��<�\u0019�Lj�\u001fұ QQ��C�=��n�%͞�\tSŵ���4�\u000f��B`���)\u0013G7�\u0015A�_F��I�xce����E��\u001f�\u0016�J\u0013���\u000b�\u0005��\u0011��9���\u0014����\u0005<0�\f�{/7\u0013\feh��iAI�y}��N��yZYN��\u0001�^}�\u0005GSL�\u001a����?^���%��S�\f�m�\u001a��8V0C�k$�\u0011M��P;���C͚\u0016�\n\u000b�Dޒ�C��@\u0006��5��ߍ�N��\u000e�FS����A)�\u0007���M1�\u0003\\>�G'���ʔ���������T[�Qق�N�����%N��\u0003��9\u0019�\u001aJw�P�ޥ��I�HqS�w�2\u000e�����\u0002�\t\u0001\"�\u001a�*��0�UZ�ѝ8�1<żZ�y�Ƞ\u000e-(\u0002<3�Y\u0014E5o�3M\nӔ��\u000eu3��ˣ�5[��-�h|ݦ \u001b�=p�f���/���[O���!̔���>\u001fN\"k�P����O_kqg�ܽ*ur��U>���)�\t�D|j�+���O�B��6r�|��M:2��\u0002ˤ(0l��d4�r\u001c��1�X�Qo�k�<�MT�S�ނ�v'�\u001c�t7H��\u001d�_�v�\u0015���5�A\u0019�\u0007���L�k�rǒI��A�?\bs����\u0013���*����a<˲{jV�-�\t\u001f�x�=�`����o)�\u0014�n�?�\u000b�\u0019i�\u0018�\u0001\\�\u0015R7� X�\u0000�����#�O��.\u0015�\u0003��as+6M) d�y�X\u001cI��B�p\u001b7��\n�K�d\u0000\\\n�ɼ�\\-i˾�\u0010��{�k�x(���|[AN[\u0000��;�\u0016|��z�Dw��J�H)Nb� �D���r$_������cR�`�1\u0000�\u0019ef�a.�X]�\u000f��@zKN�}��\u0007�K]NhRi*3�\u0011����&w���ٕ\u0015?҃��釡�I\rM�f��%���\u0005�\u0017F�~��A(�\u0007������f�����V|���B���.p�)��t�C\u0002���\u000fUê\u00031�\u001a�/l\u0005�B��8ĭ@f\u000fWs�\u0019\u001f4m�\u000fu��}r\u001b�*�G\u0013\u0015�\u0013�B*\b\u0019\"T#\tȉK��QQ�\u000b,\u0006Pd�NP̕������*ڳ��\u001f�~2\u001b\u0015�F\u001c-�TL\\�Vy��ֱ�\u0013�iK��\u0010\u0017T\u00197Z��@\u0002�^���\u0005\u000e��\u0005��εS�\u0019W\u0007|�k���7\u0005b�_��J%���7�5Ť���@�f��AW����XEB\u0004�\u0002\u001a˘�O�ou\u001f8�K��ޕ\r$+�\f\u0000?��D��c�V���ŏ��Y-B6���獬\u0018��\u000b@��ר�k[\u0000\u000b��4�s��q�=�A%�\u0007���L�mz�!w0�\u0004���$��&xW�A�7�;g��A�ȥ���k��u\f���\u0012��R�If��P�\u0002�a=G���]�\u001dG�\u001a�N\u0012h��\b��^\u0015���oA�\u0014p-;��kr��י�W�\r��1�\u000efS\u0003a�er?jTU��\u0016n\u0017\u000f?-�\r,\u0011�!�l)ێ�+\u0003w�q�+���\u000bջ\u001c\f'Z���ǣ�1\u0018Ӄ�E��\u001b\u0010V��\u0019�z���aB�U�\r�8\b�`��\u0002�1�F^\u0001�\u0017���a���&)�\u0013�;���1��\t|����#��!*���C\u0003��\u0017�(�~ĺ\rL\u0014\u001a���7\u0012�����\u000f\u001c��\u0016QK��i�$p\u0007\b>|�\u001a\u0010�ʻ\u001a�A\u000f�\u0007Ѐ�L�r���U�(Vaѩ�\u0015!s�ەPuT(�\u00184��g�L��,�\u0005�FV�r���\u0006�H�;m���+[uxi\u0000\u001dT��҈�ʋJ�alS���o}�M\u0002�\u0005�\u0000�A�#e�\u001fnxZ*rÿ\u0006\u0019�\u0019�.$\u0004��\u0010�g\u001eU�b��6�QVC\u001f����\"=�]��\t�\u0004���z�q�sE��Kկ�Y�8�}�.��xß��I�k�����\"\by[2�+@ �s\u000b��XWB���N\u001eK�~�Y�k�zRߏY5� 5Ѯ\u001e`�\u0017'\u0005iL0�D�+I2�\bR�a�Y\u0002�Z:��F����\u0014c���b4\u00132�n\u0000�A\u0013�\u0007��Mz�|!=�`U�\fK��%�\u0001�\u0003!\u000fh�\u001b\u0010�z�\u0005s�h��\u0004�S\u0013Em\u000b�S����L9֘����o�#~_��n��\u0004[������s�ܤ\"�\u001b�v�\u001f�\u0010�/�Q��\u000e��\rҔ�\n\u0018D�S��7���f^\u001bɱ�@�‘��q��Pyv9��9sͫ�t\u0004��!�Ч@G>���NA��FK�+<\u0002�rl�\u0003���KaC�����ftҧ�t\u000e�_�l��[^���;W�\u000b�uz�7\u0003��B1\u001dp:��=%`\u0018��\u0016AR���tk�O����/ͻ������_C��z���v�\"�\f��\u0003�M`�dd�A$�\u0007���`\u000f�q��~\u001b�O�_�D�����-���E\u0010)HV\u0018\u0007�s�\u001e�p�?�\b%z�\u0004ʊ��/�1\u0015m��\u0018\u0001����μ!�&f��%\u0000��~\u000f����\u001d&�6�� ��%\u0011�ϛs�\u0013V\"/hU>\f�F\u0000YW�w\u0016Pu��]s���$�7C\u0012�G\bIP�\u001c|V���CV�#vyE?�vu��/�D]N\u001e�eb1m7\u000b�M���;L}��Hʄ\u0006\u0012�\u000b\u0012���y|�1݁����o��\u001e/��8�QV:(^�K�u|&\u0004*m��\u0016V�\u0007��W/��k��:�Q'�e�L\u000f���n�DRB\u001bA�:��'��\u000e�����;\u0002#d�j��\u0014��\u0006<���r�A,�\b\f���\u000e\n+�\u0006ҭ�a��/\u0019����z�\u0016�\u0004jg�Յ���(\u0002]�{q��eI�\u000b�P�̾�I\"J\u001e��ҷ+sb\u001a{]ڸЈ�y����%, 9��9ۺt���8\r:@s\u000b�k \u0001T\u000b��a\n\r�-��|;0k�7��V�}�\u0011�5�\u0005�Щ8�OҜ����%�,~llw\u0014��3�a�p�%�\b=�-\u001a�i\\�*\\��_Y�������W�\u0010��\u0015F\r�\u0010\u0013Y�k�\u0019J$Cǂw\u000b\u0010�k�j��Bq�\u001a���u��<�r$�MGӻ\u0004�\u000785\u0006~\u0013ېl�>p�L��M��e�ywR=\u001ep8O,[\n\u0000@��1”�\u0007F���w�\u0013��}�D�B������\u0004��A7�\b ���\u0017'�UZ:{��>\u0011>[\\\u0011-1���\\!�p~\u0015Ix��\u001e`oz���\u001fp�\u001e�z�58�؟3h0�N���\u000f>7�3\u0017\u000fR��!�;ß\u0000�W�t\u0003FA!u@\u0014�'qUC�5\u0002��n�7���׫\u001c�p���.���eʆ��u��8\u0016�\u0001\u0010�93�@hU\u0019^xS�\u0007U�|*n9!&4u �\u0002\b!\u0014x�\u0018�[�W\\l��|�m�r�r�^�����+�T�-\u001cy�:)\u000f\u0000Z>���:=o\u0007I���rĖ�G򢯕\"y�JhD��m�d�k��*��%�\b�-c�����Pž\u0011�J��~1���V�����BM���\u0001�4b�D\u0001e�J��\u0010�܌�,��n#�\t�w>���$��A/�\b4��M.\u001c\u001e�a<1��>\u000eW:�ѣ�r\u0003�Ebk�n\u0018�~80Ч��3\"o�\t4�C\"M�����~�ռF�KvU�\u000e\u0011fh\u0001^����4\u00111j)���\u0014����cPb��)(�%����`\u0014J�\u0006\u000b�`)��@H��W�p��n \b�uFaՏ�\u001dX\u0011�\u0006��e\u001e}�v�����\u001c�p�m��UO`�\u0003��yBT��\u0011K\rIu����\u0011�RZ22p\u0015\u0001��\u000e$\u0014%`:�5;d�X-r�&�U�H��\u0012\u0012��k�e}�D���spC~3�#��M�e�? �\u00053~�\u000f9�Z Q�\n\u0005ś\u001f������\u001c7�_Y-�x+5�9'���7�\u001cN�\u001f�r�\u0000�Ҹ�0xm/�{��饣A-�\bH��L���.�\nb�x�S?\u000e��AV\u001d\u0011nC�\u0016�C`�Ɨ�\u0006� |����p3���dl<�����N�3.�П\u000e��U`�i�\f�`� \u0005\u001a���\u0005���\n~�\u000e��L\u0000�\fFS�\u0014\u00069.��5�m�{�.x�r\u0010�4�Nq*\u001b������9���Ӓ��V��.at�3�X�ؠl`��XbDL�Ó;��� \u0010F����ǭ�>����뿋GB�\u001c\u0001�K\u0014\u0012I�aY\u0006��Pu��ۆo��M\u0010\u001a�J@ACM6T�'2\u0010\u000eqA�M\u0015:3t���?\u0007��J�蚄�\u0000\u001d�V�\u00199$�\u0012�\u0019�\u0002'�^�B��+�v�Ή\u0006��қ\t�~fKH�����LF~{�_\\�/p���KQ���m#����\\\u0000���\u0010\u0019\n�A �\bp��L۬��)$5\u000f�\u000bG\u001c�ғ�t]q{]�\u0004sk�\u0003�\\\u0010\u0016�;[�Ȗǩ1!�x�\u001f�\u0000�~[]�*�G\u0018��k��9�N�DIv��{\u0007���]\u00168Ub\u001d\b�\u0011\u0018\u001a�N���)���f\u0002d&�bE?S҈1d�?�o��≏3f\u001c��IC�.�\u0002b�{��\"�zX�\u0010�h=\u0014���.�����a/�`�na�\r�E!�\"\u000e\u0011�j-D�\u0001�?��jA��a\u0017�JK�4��*Qs�����\u000b�P)\u0019��oI�S�Ҏ}�\u001b�9�\u0001\u0005�~EZP.\u0011�飛��m����\u001c>4]�\u0003_t�\u0002p\r��Rc��Y�G��;��\r&�O\u00058'���܎��\u0011�A&�\b���M��_0X�T�?�\n�gv���ζX\u001d-�t�%��\u0006\t�3�뒭R�����u�4�Hv\u0017�\u0010\n>�os�\u0019�&���\\��X^@X�]��#��jA�Re��H3��9:����Y��#\\o\u0000!�}q\u0012F\u0018;\u0015�+j���W��Y`Z���As��\u001f�Y�όڠ��0�>SX��NI�먈q\u0000�='K��o�A�%��\u001dD�\u0011`��\fS\u0012���\u001b'�x\u0017y\u0007�^���/��0���:\u0006ʒ\n�>\u0014M�_�*\f\\��o�\u001bi�8\u001fV�������\u0007��8*\u000b��|�c�k�_R[\u001bR����d]�e\u000b�g��'��\u001e;~��\u0007���tH;��&�|4TRh�@JX�l�7g�\u0002y�A-�\b����\u0016��ޠ~�\u001d5Yh�۟�/�\u0003d��w/�Al;�Qj\u0005�^#�[�fpX\\\u001a��OɄg\u001d\u0002�/ �Ӥ�q\u0015��LcAb�i\u0002PZ�ݣ]���9^�\u0017\u001a�\u0017�\fj|�3��e��\t�\u0019�r4���\u001c��o\u0018�6���H�O\u0018�:��'��)\b�N\"��û+\u00040��*�,�v��<8%L\u0016�Vl2��\u0001�`^�Z�f�9�\u00008\u000ec!�\u0015г��ټ���Y�b��\u001d��Y��\u0010ajul�3P\f��Q�@�K�3�d0'�c�\u0017���}d���\u0000#6ܾ��;�N�q�v\u0005̒�iE\u0019[���I�ԅ7�\u001e�1\f��\t�Y�@�*3�\"\\$�\u0006|�.ؖl�\u0002��A6�\b���LˣQQ�Cu�U�bc������\\f\u0005�#5��L��\f\u001c\u0010`~�&��ǰ�܂�CöR9L�@A���\u0018�jݬH��\u0000�\u000b9\u0007J\u001e��V\tϮ\u0014\u0003� ���r�\u0004jΕ)�\u0010�\u001a�\u0006�Ч�\u0016\u001f�\u0015���Q������4\u001d\u0019�WHJ?��Hһ��s�_�~�~3������\u0016g�ԏk�\u0017D1Y\u0005�1�֢&3\u0000R\n60`\u0002\u0003g���>�\fp6c3x1���\u000f�Z�&�\u0003\u0002ݬE�#�&b\b'�h\b3a^�z��<�\r\u000f�=\u000b���\u0012#�\u0000�|(On6g�@b�\u0015\u001d�\u001e>\u0002i\u000b����\u0010DE�\u0010�:E��ø\u0013\u001a��t,�*k\u0003��\n�y�+��\u001e�±V{\u000fj��ۣA\u001b�\bԀ�M'/\n�w�k\n�/�B��\f=�V\r�+ܯ�\u0013v��;F�\u0006\u0006t`tC��iKA̸\u0011\u001d'�\u0007Qa\u001at�{�\u0015�>Ɇ\u0002��:p�\u0007�˘\u0018������:.���N\u000b\u0019�ƴ��eݘ�\u0012��P_����{L��n��0`�\t�{�-t�g�`�Xl�\u0010�mF�q<\u0005߂�B\u0010�A)x+�\u0004E�?'���U|��\u001dًd���E�߁\u0002��j���\u001d��\n6e�ta*p\"m��~\u000e,���\f���9D���j2����l��Ȓ�z�q�>5�����0\u001f�'\u000f�Ko��2\u0013\u0010�nn�1�\\\u001f�\u0011�{��(�u\u001fo�ʷɣA��\b��}�ic�\t;wW�F�S�b���\u0012�>���>��a7q-��nE�S\u0007M~���\u0007�t\u0006qǭ$\u0014���\b[w��)\u0003!����.�G'�No>�*�3\u0015r��k�5('���9��So\td8Q�������\u0002�[ȩ��$P4.���\u0018\t�g�\"��\"\u000e�l��C./>\u0016x��o\u0014�!�ytq'ɦGH�\u0015w�\u001b��,�-=�\u0002�\u001f֊��l\u000f_2��[x\u000f\u0002�C�BM�ǵ<��Ŏ��\u0016��4PNwj\u0003a\u0019�}_�o����C\u0005K\u001f��a�z0�K�����mz\u001b��\u0019����\f0�G\u001e�<�/\u0003\u001a��\u0018>t�B����\"��b��\u0019��y�zw$G���P�n��t����yٿ��6�J��\u0013�D�Pz�*��h���[�d�>i�1b�nR��lu��\u0005�c-�X�\u0019?j�Nz{\u001ako�'D8\u0012Z+���\u0005\u001c \"�ǎF�V\u001b��1�\u0002�ۆ�*���\u0015OF>C\u00107�\u0019��D��N5��Ee\u0019�\u001b�A\u0001�\b����v��Xbj,��}��|\f)\u0004�����Im������j\u0001ް�n�\u0000�/\u0002�K\u001a�\u0012�c��2�}\u0010\n��岾�t�W\u0016��8��z�{@7\u0012�s_��ψ�\u0012�\u0002�\u0004'~0��3\u001d@�\t?��/\u001e\u000fxSF5�]�\u0014ѱ`r�+-��2��\u0002�G�\u0007=Lv��&\u0006Z(o\\1Z�\u0007\u0003��D�B\u0003Y|���?4P�ݪd�݉0�7[�leE�M:�\u0016���,��눒̜\u001fl\\�~,��Z3zB���}%�\u0002c�8�5\u001e�2J��\rI(\u0014[�rkڧ�A/�+��\\uR���T�P�A\u0016�\t\u0010����|p_\u000f\u0011(�c�eBl�\u0013Q�x��ߪ!Ai�L19_^����\u0011\u0010#�,8�\u0014�>�ӽ�/\bbf2�\t\u000e\u001bɝN�}�Re��9���\u001a_�����+q�\u001cc�W\u001d��\u001b���KL`O3����Y��]{�]6�.��;\u0005��A�ف�`58��̀\u000e�8�r>\b\u0005!.�\u001b�|{�* }���\u0012]9J¶���ɧ��1�\u0000�D~��K'��\u000e1��L$�Y\u0010c��Y\u0004\u0019uD�{����,�f�\u0015\u001d\u0016��a���e\u001d�����\u0001v���'~3�fvǁl\u0006�\u0004L�\u0017�:祅n �#H�����\u001a(�\u00130���A\t�\t$���·!Iw$a��S�ɀ�7\u0001����OBX�1���J��\u0016�\u0004���qf4&o/_��\u0017o�@��\u0013w[ޮr1\u001b�G`ywQ�C&�̳��\u0004ڀ�&�q\u0010�d�p�����@����\t�\u0001�����1\u001cX��(5�yV!��\u000fԃ=�춪'JlQ�\u0001�z��ȏw\u0010�+��R�.�q��v4x�D�������(%ř��->\r{��9�֤R�\u0010M\\�o�4�0\u0003$�\nB�I��Xj�U\u0003�\u001dbo5�伵�k�i �\u0013�7sV��\u0007\u0006iن�\to�خ޷�\u000f���\u0014��p��th\u0000k�z�A\u0007�\t8���m��\u0004������\u001c�t�P�P�Pd�(\u0019�S�֍?:vP��Z %���\n\u0007|./U:t\r��ۯ;o\u0010C�����k�U��\\�5��'�';��Oy\u000fC�w�r��l\u0004l.�ʻ�U���HO\r*��\u0003�y��\u0000�\u0017ķ%��\u0017\t��\u0014\u001cr�-m�g��\u001b�.�)Z���)���ԥ�1J�⦶;%������\u001a�\u0010��t}\u001aU�]�\u0018�����\u001a�6�b��a�m�ė�����\b�W{���=�u\u0005L\u0002�\u0013�\u001d'�\u0003�D�\u0003�k���93\u001d�����\u0015\b�\u0013R����0�A\u0015�\tL���ed,��V4���\u0010@����|��\u0010�����:�;\u001ayR\u001e�W5\u0000>�\"\u0004�xp\u001d�;��\u001b%�\u0016���f�;�^0{���l� !yXeh�O밙 KѬ�K�{\u0005�\u0007�s�\u001f!3ᣆ���8LZ��5\u001b�\u0001\u0010l��:Ts7�6�K�gF\u000e�:[}6[\u0006��¶_JO\u0010P\u0019O�,~�vU��(?�\u0015�W�\n7��\u000e�M�\nv\u000b���{��`�\u001f���/\u001c6�Ux���ڳ���/��\u001cK\u001c��\\�\u0015�He|�=\u000fťx�\u001a�R�\u0003H��ԯl\u000b�\t�\f�Qwo�l\u0012c\u0010�\u0006�\u000b��Ї���\u0007/X��oc\u0013�@��A\n�\t`���\u0004b;��SUBêA\u001b�Y\u0017�*@�2o��������Y����'�b*�֗�\u0000��XN\"�,�0��O��OHB\u000f`�L\u0000�\u0005\u0013�Hj����\"�>�9���\u001e3:��u�J���dsʧ,�I4\u0011\u0006WN=Il\u0002\u001b^�&��R\u0015h?�9A�I��\u0005Y��7�N��4\u001c�z\u0002��Yы�^\u001e���\u001c\u0000�a�]\u0015\u001f\u0001ES��9wv�\u001f��1Sݬ�'J�lS�VZKu�(\b-_���P\u0011\u000b+�}I!G\u000bjO���L]�f\u0001^�Ҩ�]�y��\u0010�R\t����{��:Y>I�3���+�5R=�m\u0000��R�A\u0016�\tt������|��\u001a��2�,����:a�P%��\u0011�$a������g���㱚ǽ�Z��\u0010���}�І�)j��t.��qr�O��h�\u0017\u0006p���5��\r\u0019\u001e�3�-�$=��.�\t_^�S7h\u0001�\be,p\bd�\u001a\t�2(\r��N�\u000f)�=�\b+��8[�\u0004NL�z�����8�\u0006\u0000ӂ��s����V�\u00179�[j-@��ݰ�8ܮ�b��@Cץ����p�_r\u0003c���h�a\u0006�I���Q-\u001f�\u0010\u0006`\u0000�ʤ\u0013J\u001dj#�\u001f�n�!�s\u000b�d� #Тw\u000b��/�\u0007ʳ$�\u0019p�\u0012��\u0000��L�6\tZ-���̩\u001b��\u001bP�A\u000b�\t����\u0006D���\u001d\u0007�_���\u0014��G�h�ҋQE�,\u0011�f��SJO���rGe$�ioM���ߛ\u001e0:�f|���1��$a�\"�\u001b�\u0003�\u0016'���,p+��\u0016�W3\u0015��PVʡ�\u0006�1��:0d\u00100��\u0003��L�8�\t�\u0002;�93>\u0000�z� \u001c�Z>��0K�g\u0007V�\\�\u001c�^9R���\u001c\u000b�]�mM'e�P]\f��2YfJ`�/\u0007�?\u0017\"j%<�\u000b�\\!7�e�h�MYH����s� l��U��c�\u001b�©��P\u0017\u0011�2�\bs;Tw�Z7�\u0002dEi�(l���n��U1\u0004�*��D;�bؐ��Pu+�\rңA\n�\t����\u0006)�����D�\u0007\u0018�8\u000f\u001c{Z�GWSV�l�_�N\\�;\t�/-s\"��Β\u0016|��\u0017\u000b��ˏIL�=T�OK8�g��$�%�r��\u001eC\u0011@W\u0012]��\u0001�l^~΃?e���\u001e�o�?��mp��H���D�ݍ��ϴ4�T�w\b�\u0010/]�r\\�w��`�#=oF��NO��ۏ�\u0010�V�\f�i�,\n��\u0014K}p�X�nK�D���(S�t\u0016�Z�{?�l��&\u001e*\u001b�\u0003�z`\u000b�[%\u0016�#���=�~�0��&���j����T6�\u0013�׆*\u00151{�\u0003M媆�j�{��\u0010�Ҭ��&�P�A\u0000�\t����\u0006\f\u0005\u001fT+K�z��\u0019�B`�\u0019�p�BT�� ��\u0015���V��`\b\u0002�*ޭj\b\u0019t��p&�\b���`\n E�d;����Y���KkK�%k�Fg�Ē�\n����f����\u000f�Dրw���}�CI������0�YۇSܮ�m9\u001bu}k�ӈ��L��\u0007��\u0003\u001aξ�Y��L���'ꊆ��ꢙmE=�(բy�ߝ1{f� %��ЦN�l�����vi�W�[��9S�PrC��@T�\u001f�ᑮM���\u0002�\u0010����s\u0017�.[mS�H����q\u0007á�a\u000f{@�@��\tĀ�.`2>��1G�ڃ~#STT�\u000e �Αz��ŢO\u0003H[oF�A%D,�\r\\L7�ӊ��S�\u001d�\u0019n\u0006�6���b��[��ovZ�ҏ���\u0012��ۋ���M�-;��\u000e(&�2�;\u0003�ií� ?/Q�\u0007�\n\u001a�$0X?�zu�\u0019���\u001a���y�.�|����P�hD�4��� �C#��Us�o���n#X1l�\u0018�P�\u0019+�=,_\u00035\u0012���\u0003s�q\u0005������\u0007�\u0016)��b؝XO�i؊�x�\u0010��I��B�풀\t�!\u0000��[S��n��~�_�@��\t؀�M�\u0014\u0003���_FgJ�����.v�\u0014��ה�7�~�\u0005�V_�\u0015�u�F\"c�\u0003�VI�������&\u001c�\u0001�>q���d\u001bny�UPDs\u0012'���'\bA½1��nT�`U��'�P�N7\u0012B\u001b5\u000fMz/\b�\u0017V�|Ņ\u0017�\u0016\u0018J��&՞��\u0000�c󶉣\u0014���NE�CF��/\u0001��e�f&A\u0000�Q�`����}\f\u0001�T\u0014ȷ\u0005�UP��>�\nP\u001bv�����ï_\u0017&A��};�_��!�{{��*� sd�xy����Q�g�W\u0012�\u0010\u0013��xN�\u0001\\\b��A#�\t���\u0015Ε�հy�\u001fِ\u0007˪\u0005�\"��yq\u0002|�C\u001b��k}�\u0004�X�a�Ϗ�O��/\tRqS�\u001d��l�\n\u0001q��\u001c��㕃7��Ď���J��x�8Si�\u001eJ9�F:��Z�:�&O:�\f�E��\u001fwZ6h�K^Y�\"욄�\u000biR�\u001c���u�\u0001\u0012�>CF2�i�#��,Cm�S\u001b�t��\\��\"3BQt3ל+?�i� U8�\n^��$y��\u0005��e�n\u001b5@�\u0016S�0��\u0006�9ժ�\fM��Uw\u000e�\u0000�\u0001�\u001d&����u[���@\u001a�0���!�4҉�Z��\u0017���iסk�?\u001cj����V��+��k`�\u000fN���\u0010\u000f�ܝ\u001f&\nY5��lX���荈\rH\u0012;�\u0017�dT�%�����E���\u001aBh\u000f������\u0010���.�hU��2�\u001e�\r������)��]ٌ�ih\f\u000f��\t\u001d\u0015������\u001d�P\u0019‹7�˃Y��T�v%�z@�(2����R�a��\u0014�\u001f\u0001�uBxTaZ<_���&�痓��\u0014E�E0�F|\u0012q8\u0016\f.8�\u0004�e\u0012.6��\u0001`B\u0016o\u001b.�m��FWD0S(֞Lo��7\r����(�W0$XԿT�6�\u00140y�2\u000b�������\u0014��\u0019|���\tuT\u001d�\u0012F�:y\\j\u0011�#�����~����n�\u000b\u0014#�O�~��/\u0018\rj�y*$\b���¤Ǻ�S��i�ܝ�n\u0005\\���\u0018,��SQ��I�\u001c� �{�K��'��J��\f-o�b\u0016�r\u000e�*嘲0�\u0011:����,\"\t�W���\u0013N���1x�\u001bm�\u0013\u001f\u0007��l�\u0018����ԓ{6\u001b��\u0010�ӷ�%j�'0ڲ�\u0007m\u0003�c\r\u000e�Q��\tzEI��@��B?Q\u001d)%�\u0005���\u0004�\u0011���;�\u0014T���ãW(��›\u001az\u000b\u000f\u001c䭛�]p�o��]�K�\u000f\u0012�j\u001bT�@�j[�m�\u0016�,�\u000e�g���m4\u0016j��Z�㔅MQ�=f�7\u0005rm�3C�gh��A(�\n(���\f�-�\u0004�сNJ�ԩ�����ovy\u0013\u000b\u0000Ƣ:��\u0019$�,\u001b볫dR��o\u0001�\rL3'��jxM\u0005&���\u001d�A#��\u001a��/�m]>o�!jc)\u000f�\u001a\u0000�k���/iw\u0007S�)��N�>\u001e�\u0005%t�2���\u001e�n\n�܌(@\bm���\u0010�W�W����Py�/�͞Μڭ\u001b\u0001�\u000eK5\u0014�%����\u000fM����\u0007*�A����o|�\nO\u000e�J\u001f�I�.\u0015*'>\\�2�@ךw\n�\u000f��\u0005�+�\u0006�\u001d>�+�\u0017��m\u0014{�\u0003�uv\u0002��\u0018���T�6�\u0005!���j�,�G�\\ż�\u001b�6�\"�\u0016��sc\"����WV����C�x��.\u0005X�K\u0005���d��A:�\n<���\\*dݠ쁆��F8�vyJ�Ӗ\r�7�a\u001b��@��\u0019\u001a.~cv�ڠ���lo\bP�w�_D��� 5]|�\u0000��h����|w\u0012\u001c�\u0014\u000e'\u0004<֡\u0012PϹ\u0001۰\u0019�\u0010����ͤ���b��~�\u001f\u0005$���\u0014\u0007���y�$����P~\u0000��{\"@j�Y�w\u001f\u001dg�_�@�c��\"K==\u0016���@�FN|�B�����\u0001-?��Ӱ�[\u001e\u0004F���4C\r��\u000f�U�C�G\u00144�ӷ������uJ����VFhX��=M\u0011/qA�A\u0006\b�~{\\�m�>ȒW�^�8.�[};\u0007���^���/A\u000eђ�\u0004���\u0003�+��\n\u0005��\u0002\"\u0019��ҡ\u0017�^�D�z��@]��?��П:�V��TFOӻt�l\u00027\u0014�[m�L\u00065��C�F{��z���%.�N�-���h����~�&�%2��z�d�C5\u0002����#�gs\bz;�[�lڢ��}Lϐ���6���1�]�\u0010����j�U�\n�jY\u0011&wU�9S\n��[\r�S>ؒ�AD�\nd���PH��'��81�l\u0013⚎\u0019���\u001b�\rk�FP�.�\u0003�\u001c\r����;A\u001fqPM\u0015\r�\u0018U�:�q��'�\u0004}q�3!�r\\|\u0014N�F\u0015�柱]�!c�D�傆\u001b�-3�t��\u0015r�Y�\u001c���\f�^��ÍLI~��<��'\u001e���3�\u001eēv���J^��;d\u001d�?��\u0018��_�q�r1���t��4l�\u0017\b�^^I�D��P2U\u0004�^WS8�\u0019ZW���=�=���L\b�#I˂��h��/�A�)\u00033~�\u00144�������p�uuR����u\u0013Gm\u0014�/\t0�I\u001cFR@-�\u0012�*�\u0018:D\u001f�S�׳a��g/8z����:�z�/1l\u001f�o[\u0018\u0019�M|�zގ�g�vd�C�x\u001bU\u000e?����A2�\nx���\u000eS�\u000f\u0005,ֵ��\u000e~��M�o�r��n�H8��jm���\f3z�_�\u0002ކ�C�JO�\u0006\u0019\"�{�\u001dj<�Z�F6\u0007}(`�W�\u0012�\u0017�\u0007��\nf.{\u0000��1�.���p��\u0013.>���/﮿'g\u001dPpl�J�S��\u0017�(�8��>\u001d\u0003��\u001a���M��Do��`�kW\fٲ���c�a��|V\t�Q��.!d7\u000b��9G\u0017�.(r=y\u0003��;6��\u0014`u.�\u000b����q_�8�X��\u001891 w?��zd\u0018��\u0015#���Z\u000533����\u001f\u000f����\tÀ��W?L0[Y�Q�q���>i[�d\u0017\u0011*:��\r���6�%�\u001cnwC\u0011o���gL��n��ԝ�\u0006�q$\b��AB�\n����\u0017\u0019�㲤&�\"N��\u000f\u001a|�C�W/b\u0005G�\u0019�V�\u0014�\u0006�w�_�:�\u001dX��EQuU��)'�bP��&�\u000f�‹�kf35�k��e���QW\u0002\u00141�(�9�w\u000b�A���҈�\u001c�sp)�\t��ZHؕ:k�5~ɪ�7�\u000f����?V����6xU8X�]�T����}&��1��\"f&?\b�p��ۄ�#����\u0019�e\"�s% �E��\bm�\u0017��V\u000f�/�����,�Fх|�i+���91UZ�����~��?�W����ħ\u0012���d�\u0011S��f�O���Q�Y�\u0011�\u0007\t�mӡ�Be�\nV���\u0000�g�\u000eTk�|�/y�x�0Y�,�=l�XK��6���ʝJ\u0000�ڹ�w-��W؄���AA�\n����\u000f+֣Y�\u0018�F�\u0018}���\u0002��j\u0013�\u0001gXi�XDo�%<�R�)�\u001b�\u0006��\u0006\u0001�\f��\u000f��k�Td��3�ʿ����w\u001c�.���� i��9�΄ce���p��X�\n\f!�άN3�<��\u00036� 7q-�u�\u001d����ׅ�y\u0002�>���3���ݳ\u000f�dl>[�\fB���\u0014��{C�t�{|h��6\u0017\n�0��̘��\u0017\u0019\u0007��\u0006X�%f\\:\u0013�l\u0016�P#��؊�ۉk���\u0019j�\u001e��\u0004�\u001a\u001f����*.O��\u0015\u001f\u001aA\u0017�lI��������9\u0001�\u0000�>����\u001d��\u0014�r���lbR�~\r\u0003$��R\t�\r�e�^���\t\u001a�F\f�ԃ&q�?��c\u001b\u0001D�_{�΋�c����%[�\u0010$�6q�!z#�`\u0016\u0018SDwB\u000e%@\u0000*�\\�T�\\Y\u001d�И��A\u000f�\nȀ��\u000e\u0016\u000b�$�U\\<�'f>\u001d���e�\u0002\u001fS4]3\u001a{1=.o`��#;��x�`K��DS��\u001c�\u0004��\u0001).j�\u0018~�ہ�����\u001d\u000b\u0005��\u0002��5�\u001e�Օ\u0005\u0007\u0012x���7�omtW�PA.rۡ�폇�6\u000b{u\u001d�\u0001\u0007�5������&���e����e)����q\u0016s�}\u0014���'�#g[\u001e�T׾RJ\u001b\\\b��\n�{=3\u001dzV�\u0002^��\f�;7��\u0013\u001ffy���\u0018�\"*9P�~5\u000fhB���.��\u0006��@9���T9M\u0016�\bV��gL����jdP�\u0003Ã�wN��U���\u001cH�����/��\u000b\b\b��Aʁ\n܀��\"�\u0013[|}�\u000f�5���wV�\u0017�%�cGV��M�_���'S�\"+�����8�\u0012�^M�\u0015�PZM1�1\n�~Y\u0019�j\u0014S�\u000e•3��\u0004ד��\u0013r'�ar��q��Ip!� Pƪ�b����,�)��\u001dq��.�����Mۇ\u001e\u0012�\u0000}i�n��\u0013���~jHh�A����Vݱ��4\u0004��\u0006���x��߬�G�\u001b���w`\\\u001fG�z�\u0018�y\u0015�%�SW\u001a/2E/3PX~\u0012��;[L|\u0005+��m��r?\u001emh���&x\u001f&�鲾\u001a\u0014B\f`T��]3\u001a��4k��\u001c�����u�(��]B[#�?�JD�n��\u000b\u000b�3vX�g .����\u001b|�S��B��P�Dŕ\u0012K�ݯ�\u0002�\u0003�o��!\u0006$P�\u0011��-=4�$\u001d\u001e?�������n��\u00162�-��a�ڡ�\u000e�\u0007ػ�z\u000e!G�5΁F\u001dK�5�*ǖfIbAҪ�UO����$�\u001e���s�G�6\"!�lD��洔��A@�\n�����L�\u0012\u0002W�G�<�_���w9���M�L����CG���\t��w&�ˀ�pG=��{y\u00170�\"I\"m�7i/���muۀ\u0013�\u000b�B�\u00159��q:Si�\u0003�d>��ؑ#p�\u0013{=YY\u000b4͛\u0018\u0005-b�t\u000f����m&d��39�\u001d�j$c$�\u001c�y�7jO{u�:1\u000b���\f�.uz�Y?\\�B;˱�H��n\n��������\u0015\u000e��\u0019~^�;\tT9�MF\u0017/\u0005�c]�F�\b��7\u001fc��Z\u000e�\u0003\u0019��r�9*B�!B�o�\u001b�\u0017+[���e���B襚�l���}銟�\u0014���VpdxSE�0�20�o��π�\u000b����6A\u000e��\u0010�\u0006sj�Nh����A#{o \u0017q-�6A�V�\u0007�ѣA\u001d�\u000b\u0004���m���A�mr\u0010 u�!�\n�V�\u0005L�Zޗ�1PXi��Z6hH�-ۋ�\u0012ʕ�\u0005%���(��Q�`�v\u000b��\u001dӗ�^��x�ɘ���j��ϥ�G�w��\\���'���K\u000f�i�\b<\u000f���E��\u0002p�O�\u000e}�!\u001f�dZ���%·�\u001a�\u001e�WM.]�f\u000f����AtKo���\u0002\"\u00132ZC��K�d���gʵd��,�i��ܭ�.G�D��\u0017\u00196;ni�4�6\u0012��b��{��\u0012U�m;V���6�y��n5��L}�w�����g\tK(��\n'��j��J�exU�_\u0016ٿ\u0014�ݶ�k:\u001cr@�'\u0000�����nP�A\u000f�\u000b\u0018����\t@_\u0010X�P�~S���/*C��z�o�F\u0005���Y�>��P�E�£\u0011\u0007\b�պ9|��ڰt�@\u001c�/ӽ @�\u001a�{��T\u0001u���8�%/��͇�e\u000e�xe}\u001c�rҢ&\n2�s�F��LX3=�=V;)\u0013F����T��+��q#�I{�~�:\u0007�e\u0004w\u0018���@��q&��Q1\t^G!L�\u0001������\u001b\u0000\u0012�=z\b�\u001d�\u000b`\n\u001f���\u0000,\u0015�\u0017�9A��`��#+��#�gy\u0000#C�N~K�\u0001�m\n��^�A���ջ��)@\u0001�<��OĂ|\u001d]:�/��\u001fCH\u0001U�\u001a����\b�\u001f����x�A\u001d�\u000b,���m�\u0002t\u0001��B���~Ӓ\u001f����)z��7�\u0019H��/�鹌�H,���\u0012���[8�3�\u0002F��\u0016�톕d�Qݼ$+9��1��GnR!ҏ#�\u0017ת\u001302%�vف0K\u000f�\u0003\u0014�\"\t�\u0019�jO��7͈\u0006�\u0006,��f�6��Ow�]\u000bD�n\u001c�A\u0014�\u000bT���l��p�q->։s�e�4�&\u001ay��*Y����=�3���i\"�4�6GՋ@��&��a�-��\u0007+�P\u001ft��\u0015T��-�������=�\u0005�à�\b\u0016��F�\u0013[�fNR�9�'����\u001e��S�{ +�dц-�\u0019�U�W�0ʣ�\u0016*B��N��i+&+W�\t=�Q�N�U����O���@\u000b9|N�\u001c��\u001fh�\b�<�\bz\u0019w���\u0012\u0010\u0015��J\u001dծ*_\u0018\u0006�n\u0000�C����\u001fN\u0014��P��\u0005�؍K1�\u0003et}/x�mw^/��y��\u001fgDR�k<\u0001\u0015\u0012u'����J�A��XF�y��IL\u0015�+;\u000b\fAZ\u0007L^CV}�=H��O�NWi�u�T�s\u001e'������\u001b��\u000e͜&.43��\bc?r\tM��W�3y�\u000b�C�55I�-Y�\u0010r\u0004o����[�ģA*�\u000b����\u000eS\u001d`�v|x\u0001�e�[}\u0013�\u001f��Qw��o�҈H,s���ӊ�\u0004���\u0002\u0011�i�\u0002m\n+���P�\u0000�N\"�+Q}n�(��o�x��սG��I\f��{�\"\u0004�{�\u000ej�a���P�\u0017���eU\u0015\u0015Zȿ��ϴ�M��\n\u0010�b�U�?����\b�B��B�8��*��\u0005rR!\u001c?\u0011�\u0019DQ-��l�f\r��$t?{�`���'g�@w�;��F\u0016\u0012h�}\u0006ֵ���R\r��\u0006���L���\u0007nA��ix���$�\u0016f/��3K�\u0005���C�Y\u000f\fE�Ló�G\u0006i�\u0007J�7\b���p\u001f�/<)�\u001c��v4\u0005��\u0005Yyz���T\u0019\t\u0000@_�\u0019?�b\u000b_\u0017�\u000bv��A#�\u000b�����O\u0011UӪ\u0014}[�\u001b3V�/��e�p`;e;��rXWD[�G �4�\u0016X�����|�\u001f�����=��\u0001��~l<��Q�7\u0001d���%�(��6�OC���I��}7,��\u001b_\u0001�t�4%Mm��d�\u000f5�4#�\u0014o�#\u001dܩ��q\u001cu��L|\u0000�0-��fA��E�cv�*��7rݗj^�\bߥ��\"\u0005D\u001e\u001c�b:!��XF��\"��cn?\"&h�:�3�^!���P�u��\u0007\u0005�R9�\u001eY�Q��V�\u0010�yۯ�Mk{���N��\u0004M�I��Q�+髗\u0007�~\u0013Q�ˤ���¡�t�R�\u0001�D���̊�\nO��w\u0012\n`\u0001t4ym��w��߰�A��\u000b����\u0002h7\u001a\b�\b��\u001f~M�N��&\u0012m..���w�c\u000e�cA8�j��\u0004�\b�\u0019�D\u0005�&T\u0017\\��b�:w�����!I��\u001b�4�D2Zr)�>�5g�M\u001a\u0007�\u0000ܪC��\u001b/�!�\u001eI�\u0011'�g\u001b}R\fm�>�\r3\u001bf͒BG�0:d���d?\tG\u0004D�\\�\u0013��A��\u0012��?��\u0011Cv,�c%�����ׅ�s��B�\u000b_\n��]M�\u0005�l2�\u001e}�w˻<���\\�|�~�`��O\u001d���%\u000ek�Pw����K�\u0003\b�棿�{��r�YHPU��ԉ\u001f�\u0003T\t֯�qB�|�K�:�o�O�R�E��7�Ys�\t씯\u0016^g��m�\u001c\u000b���i0�Ǿ�o�ejX�y\u0019A�zjT���uKk\u0006�9���F��\u000e\u0004ִ�@�{\u000b�k�1��\u0015+��\u001a\u001cg^��\u0007���ҿ�{Pq'V����T��A\u0016�\u000b̀�.Mۭ����vK��+~5&�V��&�h�,]���fO\u0018�u\u001f&���Z�Yj�]������\u0013\u0007��\u0007L�zO�\u0001;�e���p�����UmM�P\u00167;�\u001e�y�+�\u0010�'��ˀ�aq��(\u001a��\u0004_'WB�m��Ba����\u001eܵY��L3�t\u001c��5��\u001b�6�\u001d4���5Mv��%g���P\u000fy\u001aY\u0007mn�(\u0018�\u001a_\u001a�pw��\u0012��p��\u0007�������իvj�\u0017\u000eÆ_t���\u000e��^[�e��^��7\u000bL\u0017J�H���T*�vc:�%S��{i�|՞�2֜�\u0003�?Ųq\u001c�w؟�і�ɣA6�\u000b���}aX\u001a\u0019}�)Ӏ�F~S�y\u000e�{\u0017�C1�B��(�uϙ�Ŕ&\u0007���\u001a�-�\u0007�U�����.\u001b\u000ew��s\u001f\u0017\u001c˚\u0013\u000e�e��N�n�#!h��7�S\u0003����\u000b��'&{��Ž��:��\u000f���Uk��w����m��V,\b�\u0003�\u00048n6\u0017\u0003%A7��\u000e��p��A3\u0004R�O���\u0018�'\u0004:\u001d�\u0014���W\u001cĕԧ\u0005\u001f��\b���G\u0016;A'��H���\u0011A�R\u001a\u0014m��A+�(�\u0010�%��@.��w\u000b�Az��k5ӫ/b����\\�Q\"��\u000f���_m�i#\u001e��8\u0003J���\u0017'ގ�jޡ,\u0006��%7�\r�1�b�_�U4�U�ۊ����o�2�\u0006�n�n��j0�E�\u0010�A9�\u000b��1�\u0000yLH�q�1�>��q\u001a��X\u0011���{�t&Y뉅�'�鞗3-S�\u0007f��t�p\u0019���JxN�^�s�\u001a\u001b]�qk��\u00161S�y\u0017��^h�\u001ah�����ӚB]\u001b���\u0003o\u0000���\u0006��6s;K��`p4�(�g�ɤK��@����\u001e\u000f:�Xyxr�KA�K3�;\u000el\u001dz�\u001c���9���\n\u0019\u0006\u00031�w�\t��!\u000b�E���U\u0003���U>���@�TO�ؗ�Θ��Y=��󃅷A�4�o�Vp����mJ[���s�tYk\u000f��\ts�D��Ar�'�0�ڒ�-��>�JM��\u0001��l����ТYx�h�\u0018��$J�W\u0011�N\u0004�,|g���$�[\u0004\u0000�Þ%\u0006���$6�A\t�\f\b����ک��h(K\u0018Y�2*�?b�@��Ѯ>���WTy7����V�\u0014;y�_m�)\u0001\u0010\u0000\n'�n\u0005\u001d\u0000�ʡ��6��ֶ/qo^}�\u0004�s��.YA�h\u001fɒ)�D_.��Q�~ڬ�g\t��Ї�R��\r\u0002��A\t\u0001\u001d�\u0015�ou]��u5�\"�b�m\u00102f�~�#�=�\u0005�Q�T��r�'g\u001f�\f<\u0012tͪ�U�T����\u001e�C�B�!�����C���>l�~\"������\u000b{\u0000x�-O�-z�\u001f����q�k�\"\u0019c�־7�,e-E\u000f\n��p�B��\u001cW\f�B\u0012$r۷�r�\u0011�vS�@��\f\u001c�����G�hlY�x\u001fj�c�V�jGW��Ǻ\u0005��X�3��FQ������o��6��ƒ�f�G��-\\V�l;���\f�&�U��1:�.\u000e�\u001et�s!S@�VsP�X�v}���ߝĘD\rUSӒ\r,a\u001cG*��/\u0019\u0000N��\u001e��P\u0006�/�f��\u0007m\u000ehw\u0000�\u0004P��1\f\u001f\u0018�\u0019�Iy�KB�&�!\u000bA�3�)ERIu����]�7��s\u0013ԄG\u0013*j�Ȅ�\u0000\u0001��8B�x�;�l��\u001d|q\u000e@ڰ\u001fl)�:�\t#Z�j\u0000\u0016���!�����P�=�S��S�@�\f0��L�#A�T.�\u0019\u0006�Q�K\u0013\n�꘮Q��*͟=5#�;/��\u001b\u0006}g�V?��<1LP��hW�o���\u0006��\u001e\u0017V��\b\u0004s�����=�\n\u000ei����\u000f/���|'>[�G\u001a\u001dp�0��\u0013�\u000b\b$x���P�)oMZ��������\u0010�Nm���?\r\u0019�\u0006���j���$<�����\u0015B\u001au�S.FK-B�z�è�kP�9(S�vT]�3\u000b�\n��\u0003��\u0000��\u001b�\u0006��8�N�&�\u001a~�\u001fҵ(ζ�qW��\u0010\u0010\u001b\u0000��$�@��\fD���b\u000ef�g�_3\njE�u98*S\u0018a\u000f\u0014��޲����^L�F\u001b���C,W�8\u0014G^�N�?T.`��=�\u0006gXc! ��\u001dCN9\u0010��.�$6�ͼ\u0016\u0018}����O�ӳ�_���\u0011�=\u0003���\b�bn��jDK���.\u0004+S��Uwȥ\u00052A\u0018�e\u001a�\u001c/??\u0005i\u000fo0�*��n�O�����̛�����'X;\u0004��5�*���Ma�\"J�%�HY���:\u001dtǠ�0[ ^�N�����P\n¢�f�O;�:�q��E@A<�#�?QDῖ�d[\u001br�\r���?�A\u0007�\fX���c�nl�,�;Ou��V�]��Z�$�*\u0000����:� B �\u001e�Z\u0005���2n�9�0��.BT�;�\u0018M�*��c�\u0003��S����\u0011��`\u0012�]���fX�R��q��>�\u0005��fӓ\u001b�\u0007[:���͐\u001fp�$�,��8���\u0015�E��*�(⏬�h\u0015<�-��U\u0014�k���G�\u0014��\u0001�ʀ\u0001�\u0000\u0017̮_̜�nŌ\u0019p�\u001a�;\u001c����\u0004�WԔ�|����\u0012�)����\nu�\u0016�k��s\u0019pH\u000e��\u0017\u0015�}�\u0010m�+���ޚ�c��>�������+eW\u001d���6�=�A'�\fl���l�-�گs6\u0006�zY�\u000f����e=5�9��N�\u0014��`\f�\u0010qY\u0011jE\r\u0019������L���s,\u0001\u0006��9w\u0013�9U�\u0010��ׄ�m\u0019�\u0001~`��]F\u0004\u0018t�b����j��s2x��t\u0018�î�u�em��\u0002��ӱ\u0016��m��o�\u000b�@��b�\u0001�\f�#��\u0017�z᲎^�h*�c��ߠێ�#ɸ�\u001cjS���R�W�O��8e'��S��f��\n^d/A?`j�B�E�'\u0006�}�\u0006/_k�7��\b�믫,���-�{�sx�Iˍ\u0010��F�\u0017ЙT#�\u0015-<�nY�s�5��\u0003��5.\u0004k\u001c�B%\u0007;�)\u0011�x�e\b�k�\u0015-g���A\u001c�\f����c�L�b�\u001b�\u001af(t��[��\u000e�\\Q�{�&K��q$�i�)����\u001a�=\u0014+93��2�rKN\u0004\u001e<���ŸE�Q��8��f�w Jƞh��$�\u001eBp*\u0013!�,���d�!L�\rB��\u001c�R\u0014�q�ڻ�0��vp�,�8�$�C%�9]��|ͷt@� ,j���\u000bP)\u0019,�݊�y}�\u0016�W\u000bv��/�\u0016\u0011\u001e�O�]�֧9u�\f\\�\u0001����nFUy�.&�C�\u001c����_}\u0007Q�5\u001f�bH�Y��}1�X9���\u000fJ�ɏ�\u0004<��Ҙ'���w�\t�fO-ku�ž��\u000e����|#�\u001e-�\u00195_\u001b�3��ո�AF�\f����c�}��L�t\u0002�S\u0010��\u0013�3J\u001b�pv2_|1�l@�\t\u0003䈍W/��\u0018���'�t�o\u001e�|��b\u0006�歑\u0004q?�\u001b��p�m\nL��1�r���;��/�\u0012^8G��&e��b�:�b��=��\u0007x�A\u0018�_g��8A���2K��J/r\u001e�\u0003\r0dH\u00067��~��d��\u001d�t~\\\u001a$_�m\u001d�.�\u0018�W�\\肣BL��\rB��z9\u001a}�����A?΢Z?t�\u0014\u0015�O\u001e'��\u000b��8\u0007*!d��\u0000�$0�q#{���ݗ���u����iT_p\u0001���Nͨ����{i� s��D�Dޔ���)v�zZ�Mm\u0000�k��R��\u001d�Km��uQ�w�y��A1�\fЀ�L��Ф\u001a�\u0014'XH�������5�u���x�5�췱�Pa�U-�\u0004z\u0004��m�Am��\u0012�j�{���&9�\u0018�\u0016�$��d�R�MN�^o\u0017Z Βǝ�4�x�CO\u0006���#�&pj�l�\u00191�t�q#hM�n��:Q�k�����$R�T[\b���oLhD�m���S�\u001c_�����؂��#9��\u0011�OU�E��\u001c��k7��Yxx�fk-\u0007u\u000b}Y)���P()B�u\u001dW/�\u001fg\u0007a����QM\u001c�9M��^�\n���W�\n��\u0018D\u0004t�\r\u000f��5O>��h��kQ�\u0002s3�>���1�/�\b�B�V�Y-^��\u0006����'\u0010ܡ��q�5�ԓ'�3\u000b��ȣA\u0012�\f��]�n\u0011E��{\u00067\u0018u�6�AY��u�&\u0014��M�\r��l4\u0003�\u001f\u000b��%\n+�\u001e�|\u001f%��C�w�\u0000؈��<�@��ʫI\u0018�4\u0006��z�\u00101-'UOu�8^i��S\u0017�\u001c����˟��L�V1}�z�\b�H6��A;m�#��>�u\f(�9����c���\\'����*��\u0011��̏�\u0007�\b��n��t�\u0006RY����\u001a��z,�N�Α�N���Lc���:\u000bQ\u0012���ܦ���}��\u0014Bg���Y;˘)\r��Љ�ҐM\rwN!!@r�\u0016��E�)�\rF��\u001a\u0014�'�O���,s}*�Q�!� s$k\b鰣A\"�\f����dKܪ�Kh\\��I����!t �xPsQ�i�'�N�Z�-��\u0019m�2�\u000e\u0019\u0017��5��\u0019��v��:�o�}{��uSQ���R�\u000f��;K_��(���\u0004�-�SR�ޫ��c��\u0001�j��z�\u000eZi�6�ƳO(����@�Rq�\u0012tU\u001by��\tp��#����*2UX�%\u0001hڵ]�)N��\t\u0013+Ĉ�tȰ��L�YV�\u0004\r��$�+�+���#���Sj��oNƓX�O(Y\u0012��U`��\n��g�Jp<��gܨ\u0002�\u001a̸9~7zi�\u0004\\FTcW_T��\t�\u0016�\u0000�;\u0006;\u000bT�}+j�ޮ›6\u0002\u0005�R���\u00025�䡑�'���\f\u001e�6ңA\u0011�\r\f���\u0017]K�Vg�\u0003֙�7��v.ph���0:�8z.�jǝ\n1���\r��8�/�z�7b�-�:�G��K��P!�\u0017�� \u0000z�v\u0007\u001f��i��8jNy+��\u001e[����A�\n���+0s�t\"����kԬ�b�)�~��\u0001�\u0019urb8�\u0014�T���F\u0015�X�Q\u0010*�c�a4Y\u0005~E�j\bY��I�\u0003��`h��J�\b_��gS��\u0004BGNX�\u0007=bK�\u001b�F��j$M~E��4h\u0012���\u0011ȳ���=˺����R�\u001fA�\u0018�=c�>aŤ�K�'P\n��Ò?C{�D�+�\u0011\u0012�=�KZ��F?3r�(�A\u0006�\r ��Lɱ<#u��j��\r ;��ހ��V�� \u0007��Z�B\\���s\u0012��N�\u0016\u001f!]U\u0017i���>V�Е�N/��WУ\u001fDgg>hs5h\u001b��\u0017ꢳ2]��q�?9\u001f!H^��\u001bu\u001dҥS�ß�\u0007�U�Z]T6�V�Mٌ�'fRB\u0019�d\u001c�]�Ub����|\nQ���QL\b��-�@�\u001c��ox�\u0011�_��\u0001���r��@�u��P�(\u001d\u001aJ\u000e_�S�!�\u0002�2\r�`\u0002�\u0012���jƎ_QG�\n����B6x2��[����\u0018�SM��\u0001\u001c3����\u0016�\u000e\f<���k]SR%\n]�AJ�\r4��L��śzaJbc���ߎ�+\b;g�9�3�j�jj�;v�\u000b�}\u000eӓ�F�t\u0005\u0011��%��C�\u0003\b[�86�l�b^!`�\u001a�\u00143��>\u0002\u0019;lƮ��\u0012X�!�_� u�1O��u��{��d߾qt���e�A�\u0014�fJ�D��7Iv�\t�\u001c�\u001cO-�J��th\f=7r��B\u000eU.���\u0000ݮ�� Р���v=\u0010�)�L`%\u0002fj%N���Z�7r^�0�r�2Œ��\u0019<;t�\u000ea:!���N�\u000eV���{}�\f���e��eA2�\u0015�s�U�G�\u001d��7\u0001�\u0006��I��U�\u001e\u001f\f�h��~\bGП��9���g6�/t\u0003�:ԉԘ�������@�o��h��\u001a���R���^iRe�\u001c\u0016��]��#��?K�A\u0007�\rH��L� ��Y&���+ƧpAfI=��<_Ǭ�K�R�\u0015\u0000P\u0011���@\u0003�\b%�l��&.酓Oi�2�)R1����\u0012�\f\u0019�M�ъ��*d\u001c���\u0018�\u0005�\u0004(��ܼ:��-��6�g�+C1�\u0012��\u0014�ͱ��\f�y\u000f@��V����1�5\u001b�C7�5�<��\u0017C�W���7:�\u0004��=���J�hw As�F��; wVVΕ�3\f\u0001zc\u0003�\u0014�*���T��\"\u0016$�WTv�Yd�\u0016�uw%\u001b\u001a�%E���\u0001紝�\u001d\u001b2�o���;�<��\u0019R�����\\�\u001b�� @��\b�_�A$�\r\\��L�/\u001a�w�R���aL�\u001d�$���\u0000Չ��6�f���!�zܶ���w�\u0015�H����\u001a;L\"�|{\u0015�|�\u001c]\u0012�U�t�\\����@3�.�\u0005�mu������WNI\u0006vn��\u000e�*x#�\u0006�s�.nA^I�K\u0000=bdΌ�.\u0006@�8vk�E�\u0016�\n+���\u0007#�S�#H�\"Q?48��N�V\t��B4]����i�����(�5�1�y\u001f1�#���ўm�\u0019��\u0014�eO?xT�\\K�04\u001467��\u000e:2�5t)ܸ/���\u0017\u0007\u0012�F��\b��O��9�������<���nG��\u0002\u0013\f�)�!�N����q����\u001f�,��B��T�f�\u001e��W6\u001e����\u0017\u0004�Ω3���{@�\u001f�=f���T�\u0002�lۣAU�\r����bDA�Y��&���Dk�XOEw\u0001�\f\t���&�\nF/}��v\u000fX\u001e�\u000fn�D�sʑ�3��\u0001 ���A���u\u001cC�X1�1��n�Wf�}�׋c�\u0011pv�PAF�\u0012��_��)�P�7w��:�q�潅\u0001?�\u001f�)�\u0012�<�'j#�ҹh��ُ�D��]�5�J�\u0003OV�@�g�Z��&�~/v��yj�68\t�8\u0002I��\u0017\u0015������\u0011A��}����o'B��m��{�\td\t'�A\u001f�`|)����nF�ş\u0005Wm�Z���Ò�\u0014�\tN�$�`/7���~I\u001c�ڣAE�\r����bI�.�mY�����&�\u0003j:\u000f3G�`�xg\u0016&���F���6��OS8��ټ{f�\n��꺖�-\n�=�Er\u0000v��\u001e���E\n^��@\u00016���9�[�\t,Z\u000e� .�e��\u0004G�hK9�T\"�]�\u0018I��j\u0019>4�q���ӥ\u0015���Tİb�\u0013j�m~�\u0005�\\�\u000f�L�\u0002�\fS��5��\u001aN��x\u0015ڭ��*ma���ȕ�al-r��fKX�\u0011�d\u0010-\u001dC D�E\u001d'ͷc&P�yhQ�'��-\u001eW��q��i\u0013by���Μ\u0002B=�9��u *\"%s/n\u0018;�^�TC��\\�\\�����\u0006ۼ\u0002ÜN��VO�]�M�+���\u000b\u000b�#s�7a�\u0011\t]dPǢ��\u0018�ؐ\u0012GnA%\u0001�z�\u0000��I٣AL�\r����bI�0-J�\u0005p�\u000eu����D\u0006�`��\u0014���\u0011��)3�\u0010�GuT\u0011�O�\u0019�d\u000f\u000e��Α\f��侭$����)�\"��x��\u000b~\u0013�OOoՋ|��?�ӭ�\nv����&�v�r\u0001(�\u0002\u001b�]$VZ�!\u0010`�\u0014���\u0018o��GX���ˁ���iG۟,\u0012�C��\r�����L�!7��褂�P�ι\t{�B�>�R\u001bd�0N�szsTeE��\u0007���g��X\u000e�\u001f�쐹\u001c\u0011�s\u0011W^ȵ\u0019��7:4�\u000b1^�=(��\tI���}U�ԋ^Ӽ�\u000f�o���W\u001f\u0003��$����j���\f\u0007�\u0013��{��x��xb.���:�J�/%�0\u0014(~TЃY0��KՂ������\u0002��\u001c\u0019?���\u001f!�\u0018�[�cq٣A��\r����a�*4\u0002\u0012�ǔ�ț>E\u0003�)Y�\u0017\\��\u001b�\u001f�\u0013�����rY�\u000b0\u0007I�\u000buS��F\u001apft_�i�h��\u000fZ�%?���gq�H�jލ!A��hy��zi�q�%���Ѧ��+FB�����\u00145HD֥w�Nq\u001e��\u0007�U7\u0005x�K_c�@.0swxb!g��+&�uH�\u0010T<��v��r]���\u0016�[�F�\u0015\u0014��APs\t�RI�v��Y��\u0012�k&�P���0[�\u0012#�=kˊ7eY�x��F�{[���\u0000_\u000f\u0019\u001a�\u0015�p�\u0016�k\u001c\u0006;������\f�\u000f���D\u0018��\u0019�\u000e�ޚҖѥ��� \u0007R2�E�hܲ#�\u0003�X��#�%�gPu�\"���O�ml�F'w8eQ�gS�\u0011�\u0019O܈�~i��C�~%S�a\u0001�+*M�> f]�C�Q��nB�Xב�V�ф҇�\\k�W���\bXx��\u00156|�/��i\r�\u001a٭�*I�\u001a��\u0013\u00003K�'kCnf�\u001fM?\u000f��7�ڣA2�\rԀ���.�L��q�9���ٿCϘ\nPg���эS��\u0012FY5���K�$��?0\u0016֗=�\u0007�\u001d=r��c���2�NB�Z�\u0010����~�FxxK���\f�^�\u000fÊ씕������\u0003?��(WEhM�C\u001e�!7�A��t����4��AH�4\t�TX��N���\u0019��\u0010! `Px&0��PR\u001f\u0001�\u0014P�-'XI����z�N��\u001e\u001a\fJ\u001a��\u0012��\".�0�ώ��ۂ���(ki�K�}\u0017�'X\f�'\u001e�+h2s�\"�\u0000\u0006H\u0015'�,\u0018���9\u0011�\u0010��;�M\u001dH��\u0016'���)�'i\f�ȔT\u0013\u0005���\r'����\u0007�;\u0012x��+\u0005��M�CjG�w4j�:�%ݣAS�\r���d�$��ڀ�X���&N��\u000f\u0006n�1f�+�i�\u0011҅!\n�m��^�r3_\u0016E�9��N��!��͋�R\\X\u001b\u0003\u0001�|\u0003��\b����j\t\u0014T�Ir@-���q����\u0016�k \u000fQ\u001dV\u001bޥi�{�\u0005I�L���g8kd7b|�٩�l\u000e�zjK��\\�>�\u0005Z�\u0018>&V\u0019\tg�M�\n0\n�X$\r��JqwǏ�7\n��f�\u001dYƹ��\u001b󳱂bKv��\u0014\u0007\f�7\u001f�\f���m�)e�(u@DO#9�μ�S�\u0014�n�\b�F+��-�\u0017\u001a(6�'��w�w�1\u0006o'\t\u0013ٜ���\u0011�J���Y�)�I\u001f�S�ۉw5g\u001e�)��ǯ\u0015�h�Zߐ�\u0019����۱�(����A�\u0012\n�\u0018�~��\bv�L�\u0012�c�����\u0004Q�`�A��\r����qc����\\gf�Ee�5\u00052+9y��o\u0012a�O�̄�S/\u0007���꟎��*��Ι�\u0013xRyM,l�ݩ��\u0013b�)����B��xk�\"���8�?�j�7�o�ׂ\u0001��\u0013K�C�#ab/:�H�\f\fH�ի@w�\u0016\u0018HP3!��U�z\u0007�Lj#�leyJ�1A�\u0017�s��mz\u0005ާ��i�SR[�^J�Ժd�D����dp�]lV�-�n��\u0016��?�'�t%\n:ŵ���Гo`��ޮd�\u0003���_W.ҡL�j\u0013�N>\u0001�\u000f���t\u0010�\u0000�8���h�N��y�HBQ͹eƈ�G\u0016��\b�U�\u00139\u001b�s�̄����\u0018����\u0005U��\u0014nl�\f\u0007ߕ�f��YA����*e�M\u0006���e��1M㿯7�/-r�=\u000f$*i\b޺��N�B9� \u0000J��&&�Uh��4\u001cU\u000e�f/�b�q5S7:yBA\u0013��Kd����߹\u0017����i^�A��\u000e\u0010���a��1A��\u000e�Nr�Ot��8\u0000#��D{\u0018�F]\u0015m^�̈Ӧ�߃�\u0005�2�Q�M{Al���m��+�d����?�@S'}�\n��.��gd6jm\u001e\u001cЕH�\u0018L�s�-�h��+��\u001b�HML�\u001b���-A6�E��vҚ�\u0011��B`ѿ��a\u001e>S�q���P��k��]��\u001f5}cn�\u0000\b�㔕4@q\u0012櫭��}���\t��*\u0007&��\u0005\b�`O\u0006�\"��d� �t�1d\u001c�ex�A�jփ��+��d4S\u0007�dT���e�\u0014<�k|�:}O�Xǧi\u001b\u001f�K\u0003jq#�_�91��\u0005l�x�ؽq�\u0016kÍMB�T��e֧f�n��.ٜ���8v�01��t��0B����`\u000e왳�ϫ�K�R�,v�\tW$��P�ȥ\u0017�%�M���m�����M�+��\u0011Ȉ8�\u0001Z�A\u0017�\u000e$��2/@\u0002���\u0001GG��<�<\u0017��\u0006���\fr�U�\u001fh\u0017�_R�\u001d�c��9A;�\u0015�O��7`\u0019��a�D�\u0007u�Mf�_Q<'�\u001f)\u001d!0W���`�8�\u0012�5�\bqO�6�����\n!\u0003\u0017�h��9��wZZ�]�\"�6ƕ�E�\u0014h<8K�L�\u0015Ȯ���B�`�Cp�:���'\u0003��V\u000f�k�۩��fN�[�&h�p\u0010jy^\u0012Z\n���He��\nj�^�p\u0018%]\bq�\u0005��:[D'�nf�t�(��\u0012��)곢\u0003�j��s��v��2\u0016u�e>v':7i\u0002��%�:��{v�\u001d�;&Z��x�\u0010xR��\u001d��C��A\n�\u000e8��L���αn��B}=�/�u�]A\u0004�ޢ�xa%��c P\u0018\u0018�\u000e����fQ\u0003$����q���\u0018\nn�P�����\u0013�dS�l�c��[r\t�w�=��\u0001n\u001a�Q7/�]�^*�8f�U\u0012l+���${C�`ג\t7���[c|cq\u001e�1�\u0018�Ó^w�c�ehU�%C�`?�Ey�c�p�0�\f��e=@^7��j%Q�a]�\u0002��褗��X\u001c̸��I�$@,��K&|\u0019eGK+=�\u0017��\b\u0013\u0019\u0017��w�Y\u0011hs�1�d�۝d�@��\u000eL���mm�\u001aRU�����\u00172��@@��\u0004?�T\u0011����IS�N��y&4�}\"Q7,�&�˓\u001b\u0003q�\r��\u0010�s�\u0016����\rC�3[�u�\u0001�\u000e�o�\r\u0001�ܛ�\u0014\f�\u0003�d�E�t@(��^�7�m�\"ndZ�_0�;)K�@��\u000e`��/b[t\u0005�a͞��6H�\u0017q_�ʩ�7���|KpPT :�S��KD\u0006db\u0002��Sa@�d�Y�\u001ay\r\b.����\u000f`���:��Cx�\u001a�K�T��:�x��\u0001!�j˞\u001a�˧Y�D�\u0006(�qBm�eM�\u001fǷ1/ù�A��\u0011\u0014}\u00120 ��K�G6>\u0005?��uMC[��$\u001a\\o�ͫ��xB�T\u0006y�L��� ���ڂA��O$���J���_e՛�^Т9\u0002���59\u0011TnZ���\u0015�?���E�8L\u0017,>���Y~\u000fM\u0016�M��ʀ\u001a���\u0006Dɽ\u000fjG\u000b\u0006\u0018~�A\"�\u000et���mh~\u0011\u0012���\u000f�j-\b�h�ļ�P�'NS�>�жu\u0001�r\u0014Z�Y���'\r�]�ZV\beIИ�`�r��h�\u0011Nz[6�&�h\nߝ˔\n4���yXa���阄Wò\u001c-*�ɧ�f{�)\u0002�\u0011������W[\u0018J�P#�\\\u0015�D\u0002yI2�1�)\u0007��K��xwiю��r�Ze�\f��Ml�>\u000eͿ��\nAʙ�%�\u0011��\u0004\u001f[\bY����\u001a{�(����\"\u0013n=��c\u0014m�\u0017�\f��3O�t�ј�N\f�F�Z3�ee�\u0001\u00119�[i��:�C����[��ǨH\u0003����\u0011�)����ő\u0000q���N�:�l�;R����ʿ[>�B�AF�\u000e����mm�}�,{�\u000bC�\u0007b�b�q���Y��������آ@��}�Ȼ���\u0006�[��d�\u000bYP/A�Q���(\u000e�/E\u0010�'�rv�8\u0003\u000b�Wx\\\u0013 +vN\u0012\u00077�8Vg\u000e�֋`R\u0000z���z҉�-?q0�\t1�v�� Y*W/�\u0018��A\u000fg��F�_\u0018�\fx>tVۻ\u0017_$�T�\u0006\b��\u0001�\u0014��EsY�Oͬ-�L�ݰ2D\u001cp\u0017�g��ybd���s\f\t�\u0004τ��\u0015��|5��^���۪�\u001a���i��h@=Ls�z�K�[\u0002@�A?�\u000e������.KQ���\r݉��\\߅5�\u000e�.����'��x@��j,�k;��\u0003�N#�\u001aԷ��\t��3\u0010��F��x��)S\n���>\u0006�Т�w�R��/��\u0001������Gy�,\r�U�t7��,^��c�y�\u0015?I����:��r�y���9��# LzÄ4�k)*?rY����\bқ�\u0005�Z̏�F&3n�]Th\u0019�~V�8_2�F\u001c�/��1�(�\u0005����b��%�El�T���1�zM�yT��/~���nf�����k>��R-$\u0012�鼪\u000f�}\r���&���p�\t��J�w2u�ED\"����Ӿ0�\u001fO��\u000e�\u0014��(T�3������v\u0014��8���\\+\r�(a�d.�f�n@�Aa�\u000eĀ��\u0013\u0015-�\u001e\t�cn��l7�����Ww��2�؇:uOj�`Ϟ�{Xr��Y�p���_-\u0006-�6��%�f� Z��A��8Z���xt��E��t\\(�\nͳ��w?sj���&\u0003�\u0016n��B���A�w\u0002!+I�~\u0000;aG\u0010Gc�\u001e�\u0002��\t;`|{ �\u001fHga����\t��T;\u0000�\bh�\u001f\u0014�=d!'ƶĮ�;m�}d\u0006�f;�\u0017\u001c�h\nPߕI\u0019��\u0000/��4=��)\t3#��\u0003�Jd�? CR��_A�\u001f�\u001f\u0000�\u0015\u001b_+�+ľ�X\u0002��$�<��#�?\u0019�Y�F��S�`�\u001a#\u0004�\u0000 �\u0017�p��[\u001e0!�%�LY�?g\u001f�%\u0003�kA�P\u0006GD&+\f�h�&G\u00113qK�_^8�]\u0011�\u0004NƁ6�dp��$�\u0016��06�M����O�����AƁ\u000e؀�ʤ�u�m-D\u0007�\u0019,'<�\u000f�\u0000\f+�\u0005G�\u0011j\u0007�H��3�$}�Ӽ\u001b�\u001e6\u000e\u001cc��EG\u0013��}(:N\u0011\u000f�+�ə-�h�����B\u0014���9B�uq�km|����#YU{7u��\u000e��tC1]�\u001eQ���c�kҥ��%�\u0016\u0015�\u0001��\u0005�w\u001d�\"\u0010.~\u001a\u001d$9���������-\u0003vtKub\u0010�l\u001e�R\u0014wK%T\u0015��bO-��w4տE{։ZX\u0003\u000b\u0011�\u0005v�O�/���ʹμ�>@����@�����\f#�\u001f�\"���ت\u0005m ��\u0017�1���h����c�\b1�96A;�\u0003ŧ6�����n3#I�=+�t\u0004��\u001b;\u0016�V��4��;L��\r4��@�B�\rI/\"/\nԓ}3�\u0005�ĝS���օ�B����W�ph��IP+���\u0019��x��x�$.���/n\\l��M(�\u000f�\b�P[�\rn�P����.\u0014\u0014Q\u0003��>\u0015\n .��U���\b�\u0012�4j#&m��ߦ��b#\u0015RlT\u0013���9v�C$���UO�$#\"[��Z!\u0019&���M�(��A��\u000e��n� ?������@��a/bah��mx}h��fT�.\u0002��w^��\t\u000e���*���/qh�\u0015�C��\b\u0019[�\u0019�\u001e9�\u0005�:r�\u0002�\u0004�U�v�y;\\\u0012Xzw�@�����\u0006/Xc w�I\u001e<�P��%��ޭ��\u001d�_�/\u0017ث\r\"s\u001fڠ2��cy��v��[!�L_c\t*<\u0017GQ�,+8T��\nܔù���\u001c@8%��X�D�Ҥ�u��p�/Bd�F�i9ۊKX~�hq@d/��2�g�q�F턗�I\\U\u001c�u�N\u0007Ν�Z�\u0007e�Y�71Z�\u0012w͗Bҗ�]�\u0016���\u0017\u0001��.Elۃ��t^����df\u0010%�\fƹ!S�R���qá��\u001bm��R(�\u0019��%k(�VG9M\u000f?�\u001d�3cv�;�E�VB���8\u001bā6�&f\u001a�2����{P\u0014���\u0012���&��Z\u001f�-�\u001d\u0016\t ܁#�\u0014���*��0\nn�p3�)�A��\u000fذ�\u0001R���!�AM�\u000f\u0000��X�\\4�W��G���\u0007�Q��T��(\u0001�[<�\u0000��TމZ�s��Ǫi\u001f��H6\u0017�P&�fiO\"z�n�^�qH2E�n\u0017�s��d.��3t��y�\u0007H��6^.�\u001b�5-������v�lV�wDf��Vo\b\u001c�݂]څKȁ����8ڶ ��3!��\u0001\u000e!\n�\u000f��\u0006�X����;\u0001\u0016�]1,��\u0012\u0006�~8���6m�>>�dd;\u000e*<�'C?��+Kͭ�a�4�܅^\t\u0000\u0006��c��2�\u0014�4�Yw����|u�\u001d+v\u0007���\u0019}���g�=�=��}A�\u000eY\u0017�e��;�S\u0012n�����l��=��&\b2V\u0004l6\u0001j�2臣��(�\u0010`�\u0007���u\\R\b;$/��\u001d�KI�\u001eJ�\u0007�f���\u0010\u0011�[�R�AA�\u000f\u0014���\fS.���5��\u0005�q�O�\u0006]\r8\\��-���J/�,�0�\u0004��^���[)�X�D\u0002��`x��T:��k�cy��\u001d3\u0016���[ﻝ*H�R��\u001e��N��\u0017��\u0004`\u0012�{�S}=\u001b=b��B���\u000b���,\u0004W���!��x.a���5��e�_�=t��!�o��6�6g@g\u0005\\���w�!��� \f��A�\u0001���\u00105�\u0007���!�\"w%7,-x/*V���\u0017�x|F\u0011+�\u000e\u000b\u001f���.\u0005�\u0010���_*�@���O*Gt*\t8��q>�����\u0003=�f��l�\"\u0003��o�\u0016�w���n��B���;RC\u000e\u0006`��<�����}\n��⨩��Bu�\u001a�%@̸o\u0002;S�/�\u000f��7�z�\u0000�\r�AS�\u000f(���a��wϖk\u0000�\u0001�FJ�J�1�\u0011aP\u0004U��9��<3$Q�\u0003��c|\u0017�sփS�!�$�X����=\"j?62i����F\u000eV�Xu'Vt�TFJ({$�ET\u000f�e�xV�,K�\u0001WL[?��Kn�Pk�禂�\u0015]�d�����\u001bN�~�u6O�j-���ճ~\u000b!�u�:�+��ʐ�Ǘ�P\u000b%m|Xv�j�f���H���\r4JI�y�i]1��Ƹb)�Yq\u0013�R�m��]��W��i��p#m.,j\b\fv)�h\n\u0010��\u001b��J�d�\f+��ef?L\u0010K���-)��\u0018Oʚ�z@\u001f\u0000\u0013\u0002�\u001e���F`��#�*gq0\f��;�q����/�D��w��9\fT�B�4FG��J����<�?���h����g�]\u001a�ţAs�\u000f<���mj�`H�\u0013��\u000b��i�S\t��U2bх+�x�׾_�J�W�\u0001�>�֯�!�$\u0016���F8n\"��X�9��Kֻ���@��\u0004����$'M�T\u001d\\\u000e�X�\u000fl3\tYhX���\t��\u001bc�:�U<\u0017]�l���>�F�@�H\\�2�bF�}\u001d`��Z��G\t&\u000070�\f�\u000f�&ԅ ��H2�W�?�MS�d�\f$L}�B'lyEGg|ͷm��;\t��>����\u001ehO�\u001dD\u0006l,_mţAH�\u000fP���b\b��\u0015r�L�JC쉞�\rKԮR�K&\u0001��/(\u0016��]�6{�j���\u0006a��|:�I\u0007\f��Ʋ�! �\u0004\u001e��_�y\u0001t��P/=�X�\u0010�9�!ú\u0016�\u0012��,�9�Yfc-ų�&�>�r�SE��'\u0019����E��?@nY�#�C��b>�_\u001c�n&B��VZ\u0010��r0俒�\u0004��)\u001fn`3߽P;F됄tW0n�{y=�\u001e�QV\u0004R\tJ7�暸�;ڪs�\u0013yE��\u000b\f���.֤I�8�ʽպ�\u001d�����x�W�6&Y�M���E�$F�3�\u0017�h\u0007��9\rN�k#�����ЁS.\u0002a`)�\u0007�-\u0002��k���\u0003��X��\u0016(��u\u0005;5mD9�?�Y\u001fi��^V[EN�U��|�QM��Z����\u001dx�\u0018K��F�\u0012���B�Q��^�C�@$,�g`�F��|�]�8�\u0016�\u0002J�yI�]pWuE4���u��U�\u0014D1O~W�7�\u0000\u0002�$��/\u001c\n13�\u0000�cj<���>����剧p6\u001e��Yq)w�%��&�w=78!������B�5�l��KV $�:\u001al�\u0002�\u001a���\u001ci9�?\u0003��\u0004�\u0011N2\f-�!�IF�A.�\u000fx���a�\u0001E\u0003��З�‡8����o�n\u0013���#5�@\u001eq���}P��0�\u001c���͊M�w�!\u000f���K�n\u0006�\u000eVt��Zh��mw\u0003,���X�\u0003�\b�ɽ��e�\n���L$R@\u0000 Dr�w�*ZU@۞�򝌖�'��\u00028ށ9�\u0005\u0011��\u000e�U'��v\u0016nY��\u0001w��G�\u0005f��iԣF�?\u001e��\u0003c�tI��\t�n��\u0016B��\r�]�\u001b��lŰ\u0019,\u0004�F�F?&��ئ��\n<ѳ���u\u0013אc\\\u0005���\u0003�3v��\u001ePR֯m\u0004R�Cn�5��\u001d�1}\u0012��\r�:\u0005;g�0H��&W\u0014o\b�٢��\u001d�@\u0001H�A9�\u000f����mi�4��\r�>Ą��\u000f�\u001c\"p�M=��\u0012F�\b]�Y�u���%�\u0018P+�'��/\u0003\u000fS\u0014}�\u0012���ѐ��چp`���n5�<\t��=���Ү�.�\u0001\u001d�XےT�\u0002V�\f\u0019��\f�O�\n\u001cW6�z�\u001a���l:�$xž\"�垇tv|���;��x��2\u000b�c�\u0005�s\u0016��Ur���\u001d�A�!Aج�pP\";\u0002��΁B�_�9��\u0010<5\u000e�+�D\u0010E������������>�H����i�0�����v\u0015kܓ�hݑK�e^l��|`m�J����G�B�;�B\u0018�[\u0010�\u0002?5Jp�@\u0005Ń��\u00009�ں�6\u0019�\t�j�^O��1�[7�XP�\u000f���3�]�?mS�A/�\u000f���M1�m\u0015:x�\u0006�=�Nh��-�ϔ�ך\u0003\u0017Z��Ql�$L���\u0010�[������\u0005\u0019ƶǭ�y���R�8ZU�;�Y�^�����+v��l#�y�%P�f�\u0006?[��\\z�5� ^\u000b�X/�*�\u001e�傥ϐ�|�N�2���#6ꞛ��s`��V�\u0001\u001c\u001e0ȫ�C�G\u0019h\u0014�ʢ�R\u001b�ޠjmy�4�\\z���G�-\u000f\u0016���%��,����m����^)0(�T�hT�+\u001e�մ�p�s\u001bɺ�1\u001b\u0013;�5�ݤ�s}ڷ��pd���ft�\u0017#:�6��g��.��Є��\u0002)\u001dy��\u00166���f�u�\u0006�\\�h�0��.gm��\u0018JΎ�\\\"IA�A)�\u000f���L����\txe���PM� T��q���\u0002���,���^S�p\u001c�\u001b��}G��8ǭ�\u0017[��p\u0016\u000ejKMEf�3*\\(\u0014���6��-�i\u00195��\u0006�4�\f�U�W�9\u001c�\u0013,H-��n����o�5\fa$.�\u0001*N���n\u0005\u0018�X�c�dv�V\u0015�~�\u000b+�9�\u0010\u00199Ҹ�\u001f�:��F\b���>��P\u000f׽Q2��\u0004kő���X�П@�f+�`�|N��M�\u0018�\u001c�\u0015�R����\\\u0007\u000fʢ>\u001d�\"[�����\r��A�\u0002����E\u0015\u0010���\u0005d��\b����6���n!O�b�BL�\u001e\\ڼ>��:AU\u0007LCw\n��0\u0000��\u0014\u0000��B k%�\u0000�A+�\u000fȀ������x���W�\u001e��rB/wn􏰗\u0019��4��U��\\ғf�����^�A�\u0010�B�,�ˮx(�3��F+�U0���\u0013�~\u001f���h��;����\b\u001c�=Yg��+�c\u0007I��͡`\u0019\fDz��\u0015����\n��gy�\u0015�2+U&bK\u0018��\u0012��w�!t{c�\u000e\u0012�\u0003j\u0005���\t�ec�\u001c����\u001c�ntc�nj\u001d��ik���e1V��������|�$ٵO��1 �k�5h�`0\u000elSznא����^��R�\b�}f�S�%��\u000eo�B\u00184\u001f�9�œ��^%�5�7��\r�\u001a\u000er��ROz\bj�Ȋ�Ԗ\u001d$��\u0004�-&��6\u0002v�䛙8=\t�j���l��9�����zK��.;��`'�U*\\�~Ŋ���4�ַ�[1�d7�\u001f[Xn�=�~�yE$_���ꨦ\u0010������'��\\6�q)o�7Wi��֝�t��\u0013ͺ��%��i�*�\u001f1/�p-�E�co(.\u0000_@\t��g=.?\u000b)L@r�wA,���\u0019l��\u0002\u001c��H%+.��%%��a3�p�ԣA\u001d�\u0010\u0004��L�M\u0006���>�y�\u001a�]W\u001cU��V\u000b�%�k\u0010}�\u0014>�_�\u0016���i7�{\u0000�\u000f\u0017m\t��\u001e�v�<`K�gk\u001f��\u000fw\u0012�A$�\u0010\u0018���u1�z�\u0010�n\u0006�҃��VJ����3� �Ϡy#\u001c��\u0019��Q_��/�R�\u001aR�9\u001b�u�9�k*U|/����� ��s�f�F�T\u0006��\u0006W\u0000�b!bkL��\u0011؏Mڤ\u001d)\u0006��xq���%\u001doD\u00000���\u0006t�}e-�RY�n��EFDB\t+-�^�\u000b�a\u000b�dtSYԸ�kՎa6\u0006�7i�\u0015��qĿd��!�H�u�?�ό���`A��Q\f��\u001c?d^b,�\u0001)�\u0001%m���\n5]\r�\u0015�!a\fּh�3�\u0002�\u0019�z��.~\u0003�^\u0011|��9\u001d\u001f��9�AF\nȆA��)Z\u001c\u000e���+$�',�:���\u0001_�3ſ}:��I��A%�\u0010,��ۺ\u0012���>\u0005�C\u000b�9Et�\u0018>\u0012�S)�n\u0002[�jR�WՕd(��oZ�\u0011fOE�\r\f-H�r��`�o\u001e�L�\rap;�\u001eh���;6�\\{��<�l��Y������3��r�:����'�p�\u0005L�q%P�\u001c�\b&�\u0017\u0000A��\u000fD�|u�\u001dt\u001a�sfJbk(����\u0010\u000e6�\u001b����<\u001a{o����L\u0013DbP�U<-����\u001e,#X��\u001b�\u001f\u0007K��`��$q��\n��4\u000e�I�\u0003\u0017�β@0mO��E�>�L���ݟ��-�iw�e-\u0012�\u0000��n��hP�k\u0016o�%[�\u0007��6b�����3��ł'6]\u0000v��D��\u0001[��g�\u0017�ӖJ��A*�\u0010@���(�\u001a|Mk쎐\t�M(_&��\u0019,�:��ع�w\u00045��Q�i�Ĕ�;���U�RG*)Vx��+�\u000f�$z����1Y\u0010�࠹C��\t���\u0011=���A{wq*��\u0015��pA�\u001b\u001dz.b�\u000f\u001f�'�\n�4*\u0007i�&�����s��\u000b�{V;\u0018]��&��O%��N�qO2�F\u0012���'M����/��\u001c$�g���\u0011�'t\u001ex\u000e�\u001f9���]���ڀ�#?�UJ\u001aA��$\nt�k���z�\u0013�bSs��ƫ�\u000e���Z\u0019��F\\\u001b#}6��3�\rP\u0007|4wgs\u0010烘���&��T�0�W&�֒Ӫ�����7\u0005\u0001\u001f�l�ƼD����A:�\u0010T���}˔��\u0016���R�\u000eX�\\\u001f6�!���5ϙ �e��\n11\u0010��\u0004� \u0013��\u0005�3��2xB,D\t:=���#0={��5\u0013X�\tJ$h�f�T�k�\u0019�Q��d������\u0007x&��t��\u0002[Z��\f֤�*l�\r\u0011���a�C>|��s�\u0007\u000b�Dd$���}(Vu�R�v�j!��&�\u0007�`A{Uޖg�E�z�Ѱ��Q�]X�$�y�=\u0016_���B�l�o�\u0015��\u00164�\r3�X��\u000e��\u000e�\u0006�Ș'9(�0�\u001f��,\u0012j�\b5`fAF��c�\b�\u0010\b+v��Չ�\u001c����\n�\u0002��5:[< �ƍȥ�Y\u0003�\u00124Kd\\W�Nl'�\u001c�����sp��������Q:�Jpt.���A5�\u0010h��L�jf��d-Kd\rp��@���*er������#\u001a�<\u001e�b\blTG\u001f�\u0019���fn\u0005�O�f\u001d�\f�b^l�{�c�\fʰ\u001e<\u001c\u0000����*�BR�0;�����r�����mҁ%\u0015kc\u001f�t,�\bK�oY�$l��N\u001f\u0000=b�����\u0017hC����_������SwG�3\u0000=\f���M�\u0007֫�X��^�E���\u0004P;��g�PT�sѲ(���$)\u001a�Q\u0002\b�aH+Ɍ��\u0002x@�Bǻ�y<�?LV+�8�0��s\u001c�+8�p�[hƣq&��Y��ڊ½|���[��?�J��p�\u0018�#�7�� H�\u0015�k-\u0006\u0010�ІB�2�w��IWl�[I�r?��F �G\u0014��ɣA6�\u0010|��� \u0007���)X9\"?�K?輻�!v�w-Lj*?S4#�[aU��\u001c�좕�9\u0017aˡ\u001e;(�����\u0012Z�#E�$\u0013\u001c��X��X\u0011���Š\u0010ߡ�a.��|6;\u0019��;d��\u000e{d\u001c�DC���L\u0015x�\u0015k\u000f���3u��S\u000f^�6\u0000s`h\u0011�����\bCX�E����ҥ�\u0007�<4ai\\+����'�0n�Cڷ;Z�f�\n�@��Ș�C���3\f��\u000f\nR�J�\u0011.\u0003�\u0012��x\n����5RM��A,�\u0010����e�Oh%\u0006���-�x7�\u0013\u0018u\u000e@l��;ÖO13�v��\f\u0013`�P���W�\u001ba6�>Ԇ�����\u001e�O!\u0000ʺͺd�'�����ش\u0014����U(�xӘmI�j+\u000e\u0015��dWjC�76\u0000�ɣ����ǫ\t;�>T��^\u0014D�\u001d˂�^�ɶ_`��.o\u0014$�\u000b�7:\u001d�(�\u0014qT�n��Qz��\"��_o{��ۏ\u000ez�ޭK��1�%�\u001b\u0001\rO�\u0003ۅ�34\u000bg��\u0015�5wK��\u0003h\u0011S�Y�q�\u0000\\����yL�~�O\u0007Ғ\r ��4�疸3��E�\u0015!n��e\u0007�4\u0003Vt-�#��\u0016K\u000bf�\u0011�氤MT\fr�: ����v&ԉ�\"5�tZ�P�0m��A4�\u0010����jJ��?\t�\u001a��\u0016��1k\u0019\u0006�r5L���T�j�I���s�U�\u0006�Y�\u000f�!�\u0018<�\u0001\u000f�Th�(\u00116������>�\u001f�@��T\u0007����s�\u000eN㡖��ۤ�΃4�\b�����2u�_��\u0004��`0�U Pr�X;tŗ\u0011\u0017�\b���t���vd�qŬ�O/H}��\u000f�K�w�U���x��՟��7ف+�U9MC����Id��h���\u0012”;\u0018\r\n۸]������H\u001cT��F�l�\\����\u000e�R�[�a]'p�.iG�z)���x�����y#�6=��G򩆎��2�j�C�\u0010��\\��r}32�\u000f0\u0004�]?�\u000bq��;��6��Z�� KJ����\r�A\u0018�\u0010̀�Mz�t�;2&�����.��\\��\u001d��յ\nVn�[��W�?�\u001c\u0012\u0012�)5�5,)Z\u001f��|r}�4j�]��&�5Ll7�\u0019�?ud�\u001c�\u0000\u001c&����A��b\u0005������\u0012v��d\u0017�@\u0007b�L��\u000e�֧\u000f���.̯�ݻ\bmK\u0016��\rt&��\b���g��bp�B�w@[\u0013�Q�\u0017E^B�%�2�Y�Hw4h�\u001e\u001c�d\"2��)�\rx��%�\u001f£A*�\u0011\b�����O�x\u0006����p��C�D���FB\u0017\u001a\u0019\u0019�c����9�٥U\u0010�۸h\u001a� U^v5S�~�E��>\u0019+�\u0017\u001f&\u001aN�\u0019�����Ǜ�\u000b^\u001et�\u001bɭ�\"��L\u001c'��OJ�\u001d\u0004\u0012�,�1bj\u0006׋}\u0015�n���J%k\u0001⺀�v\u001d���[s��B��}�x\t�銹0n��u�\u00155���Y���/U�^Xi\u0000+Y8��\u000f��zZ�Xȸ\u0005L}�@�X.�\u0003kr�*--R���?��.͸�U\u0011\u0018�n�S�ɷX���1�xq5Ғ�Nw�ySB��\u0011ab���j�;�/����@5`ͥ�'w�k��jŇ� L\u001b���\nL\u000bW\u0004�x�\u000f�ɭ��A\u0013�\u0011\u001c���b��2�\"�\u0010H������b!\u0002��e,\u000ef7�\u0010㥀fog��D>�K^�\\�\u0010C\u000b\u0002\b\\{�0�\u0017\u0017�%�T$�u�Pu�\u0001���#=�\u001b�Y���(j�͡H\u001b�ǰ/SUb��pX��\u0011�f���-�\u0011b'#�_�~����\u0019h\u0007\u001b��\u0010������U\u0018\u0010\u0005H(\u000b9�xi�&\b����c\u000e!V�\r�yJ�!�\u0000�\"�;>mwi�|��D�������?h�k���|\u001d\u000f5�_�\u000f������d\f���%��;��jf��ڄ\r�m��'&�PC��3���i`��2[/DB��ь�B���p���\u00000�A\u0013�\u00110��X�^�o0�ǿ\u000eV�yS��>�y���`\\��R��vY�m��4��\f�Q�\u000b�ﳅ�\t�qp��������������#�D��\"mԠ$ѿ� \u0013��Hr�\u0002������`P�o�TO�8\bѿr� a��H��Y��<=�\u0014��\u0004�\u000e�M��d��j�\u0016�f�_\u0010�&2\u0000N�_����\u00039�6N�!�\u0005D[}�\u001f�#��W亶�\u0001��M8���\u0007C4\u0000��r@\u0010�pn�)k�,\u001e\\w@�wK\u0019h���-<\f�\u0014�l���v�$�`��\u0012[�'�7\u001b��\u00067�K�[�E�j��`Q��ٛZI�J�ツ��D��AB�\u0011D��L�I�K\u0018|���7l�D�ߝ�``��)-����ŝ�;)q\u0015\u0017,�AV�Z�_ʲ�\u001a�Z\u001dm\u001aj��\u001e�\u0013X\u0003/�������:caQ�t-~�;�_��'��\u001f�!���;-�Ez�\u001b�ٻ(�\n\u0016 �����\u0010���Wz-\r���\u0005L�l7N��:�s{�?t�r����6�7��\u0017־��\u0005�vul��]���\u0014x2��-A��S\u0002f���x��W(\u0016RR�^!Ҋ\u0005��=���cg��\u001b^6!��\u000b+c�{��b� �*\u0001x\\���V�^\u000eʜ[\u000b�\u0016Ƥ��Bw\b#�\u0018�1��e��\"Z�`��\b\u0012o+��\u0013���YB�#\u0003v�0���&3�'I\u0019V�J\u000e\u001c\u0016OB,ܔ�\r�W#@H��r�ʣA/�\u0011X��Lɲ+�����\\�\u0010�KD\"�Hi\n���bz��#�\u0003��i�i\u000b��Vbz�\u0003WgqRŗ��ǂ�q.(�qJ��\"��g~�\u0015�y�w�G�̦hr�Y��;�\n(�(\u0016��NZ�_\u0010w�F�\u0004N�_����h2^\f\u00114'6\b�e�;\u0018g\nUt����]\u0016�Ԯ���������گ���ao\u0003��R{�^�]\u0003��Y�f�C�\u00187k�\u0002b\u0001\u0016�G\u0015p�J�]uL�=�1G\u0015���x\b���E�\\Bdc5\u0005z�܂\t���\u0005&�^���'\u001eRy�L!��\u001f\u0011��M<�U�l�5�� �>��2\u00165��j?\u0019��r,-\u0016�L���\u001a�ROfh[\u001e,��Z�L>�0��}6��A\u001d�\u0011l��Lȶ�\u0013f{/�\u001b�\u001e\u0001�*y\u0001�\f;-����~Ɏ�QƊÍ��\u0007��W1�?kw�T\u000b+�>\u0005\u001d��US�-��¯�\" g�\u0017-)\nY�s1-Y*��\u0013:�a���t�ǫ ��FmfY�o�9\u000b��\u0005\u000b�R���)4�����\u0011�g�wѢ�\u0014�\tq7̅�����7��6���_\u0010\\\\2\u0004\u001bLޞ?e*\u001f��9ٲ�\u0011�nl�J��\u000b͎��~V��eu@%�O7/\u001dIP\u0005x#\u00153f ��\u001c�q\u0002&\u0004PC\f�T-��\u0018wA[�a�VoI�\u0001[�\u0015���8��}���D&0�䑿���\u0017I%�0#Y*�� �X�p <��\u0000.p�&s\u000b�.� \u001c\u0002�\u001bz���Į4J$�Af�\u0011����&�Z\\��1�ةo| �ϕ��\\�yA~�!�~�\u000b\u0006�\f˘�/e\u0015\u0014�7*t~\u0018g���,�9\f�%W�U+k�\u0017\"ğ-�-7C8�J@XX�\u0011\u0019 \u0019\\j\u0014\u0016{�8@U�6��nQ0��'\u000b\u0007N~�\u0011*S2�ȟ\u0002/\u001a�6�\" \r\n�2� �nej��ğ5L�\"\u0018~D��\u0015��PF\u0014Uuk̃\u001d�\u0004=\u0012�\u001cފ��k��\u0019�0�.ϋ{q��\u0013V\u001dh���\u0010(p]���� ��z���݃���觸-���)��\u0019LJ\n\u0016�0�kr[\u0018�&P�� e���AN�4.�\u0013i@p��oJ#\u001d��OD:$h�_�x>0��FN\u001a�\u0015;�~�}T�Q�\u0004����\u0005\u0000%�T\u0003�\u001f�L��tV)�1�px�\u00130z1�s/j�yAQ�\u0017��{�X-\u0006��\t$\u0003�F���\\�\"����AS�\u0011���L���x\u000fޚ���2���鐎W�p�O�\n�\\�WC�mo�ݜ�\u0019xm�n\"�\u00103�\u001e��S��)k�\u0000w���}G+�\u001d���:eG�M�j\u001e����&�8X�w1�j�A����\u001d\rÍ�H��τ��\rϠҨ��=�d.�\u0007!\u0016��\\���\u0016d�=�\u000e~�>��ZO�\u0007�5\u0000�a�\"�\u0013�\b\u0007�^��\u0015�/��3�J�\u0001d\\\u0005���%g9�Kˋ��\u0015ƣ�*ٲ��v���\t����Bgq#�\u00158���\u0012��xWK\to\u0005Q\u000f\u001b�\u0013s��Z�1�j\u0018�u_��o�\u000bt\u001e%ݜȍ��-6����=�3\u0016L��58v�\u001c;�^�������6��n�)X\u0015I1�\u0018b\u001d�\u000e}T�\u0014nxm��uq�nbP�*s�g\u0000\u0000\u001e0\u0005�\u000e\u001c�\u0005$V.�A\u000f�\u0011Ѐ�Mt��� z�\u0002�Y\u0018���z���lV���~���zs�\u0003B�\n\\�t�%��\u0012��\u000f�}C]e�\b�V�����\"\u0002�8�4�O�O�\u0003�|�J���\u0003�l^+*\u001c=C`��\u0001ȶ\u0013D\u0007\u001d��d�њMq\u0012c�\u0005T��0�hG��C�\u0005I`1�7�1�EO���\u0011:���*)�\u000b�?�~h��\f�PN�X''R.L#ٗ/$w\b�������K��\u0005�&��\u0012YO��!�\u0004IQ�G;���*���\b4\r�=\u0016-���s��\u0005���\u0011\u0011\u0005���=��h*����\u0019�\u000f���\u0019�2�JB�M\u0014��\u000e�����A\u0003�\u0011��M1�4��g�q�f��47\\�P�q���R��(>Z\u0006�,�4{A���H�F��\u001c�s\u0015u=ҋ(\u001c��ch���Ft`N�H�!�\u0016�q\\|�g?!\u001f\u0019\t��\u000f�f�\u000b5�<\u0002�a����y��%��~\u0017�\u001deׄ}RA���01\u0014?�[�t\b�!_�gj����r5�@\u001f���̷0\b\u0004w›�:|�aJ&%8.d�����PlY<�ě�S��C̥\bd\u0016c�\u0004(��\u001e'3�Ȕ�q��ѓ�Cl�ܥ\u0002�\u000e�`7\u0003.=��\u0015�\t\u0002;�ӟ2K�\u0019��^�r\n�\u0012I\u0003\u0000dU�@3!��@��\u0011���X�IXW͕bGH��a鶶\u001d��6I_����\u00137r�n4c\t�J\nr_���g\u000f�Q�\u001bƐ����3\u0017����XW��\u001d\b�L˓{�@i+��g��8R�?�ݦ�=@���g�\u00009\u0018���oZh\u0016\u0005��\f�~�\u0010�\u0010�=�\r����\u0018�q+\u0014w|��w|���\u0005\u0014�\u0004�\"g\u0012mOax�\t����)6N��d�\u0016\u0000i�N��b*\u000bҜ����!Y�\u0006�SZ\u0003�\u00114�\u001a\u001d5��\u001dL��f�9\u000bXy�\u00119�Y��\u0004�f�0Uk�51W�l\u001e6�I�DR���@�\u0012\f��L�,R�Q\tyZW��K�gG��W\u0011�b���'\u0003%m�mq�%R�ɫfՔO\u000f�P��>��k\u000f?��j\u0016��\u001f�֥>>-�\u000e��0�9�:�K�r�\u001fd\u0013f�>�\u0018�\u0003��Z�ϴ�݆�U\u0001��{���\u0003�yU@&�\u0014�wEA�,��+�)¬%\u0010b���5�����&B���6�(1�>�W\u0007Y;�\u0011][��\u0010s\u0001�`������d~��9@ϥ�T�+��\u001c�oܠ�=�\u001e�k0;&V�\u0010�_\r���\n� \f2��\t-\u000bk�y0^\f]��@��\u0012 ���mwn:g΂\t�\u0012\t�Zi����h-.����\\�!��BJI~4a�\u001f��!�\"����R�wM#��\t#T�wx/\u0014�O��;�t\u000f�M\"3���;�EMK�>5��JQ\"?�9}�'�\u0003-�Je\u0001Uʨy�A�ϭDQ\u001f�\rڕi=�����s뛳�@E�\u0001M�2���\u0004�[���pK_\u001b\u001e�h�W���~\u001bU���bT,��~�xC'&\"���2Xl��\u0015N�C9�侫\u001f�3ų㹹�+���y�s�DM��L�*�\u000b�{�\u0000��1��Mj8hѣ@��\u00124���bm�\u001d:M[�\b�:\u0007k(�\u000e�]t����3��B호������f-\u0003�?a\u0017���$'c�\u0000�O[\u0017��\u001d�\u0014i/�D���iz4�ӵ\u000b���:D\u0010���\u0001�\u0013����=\\��hU�&x���:\u0001.#mZ\"R|�^�\u0001FN2L\f5��\u001f��\u0013�9RG#�M\u0014��\n�\u0016�=��hh\u001d-��z\u0004 c��&\u0012�G\u0019\u0006.�N���\f�lI.A\u0004S=jYl\b�\u001c�cN�����W�Q@\u001a��\f\u000b\u0001r1_�V���9^�R� 7�A�[�tɴ4\n��\u001c�Ri�N����\"��\u0004C�$�^�p�AZ\nm��ǣA.�\u0012\\���bm���M7�?;���\\:\u0017�r��\u001e�f����蚁w��;��۠�\rb�#��y\\�*�^�l�\u0011��V\u0014Ƽ�F��~A{�b�p�a�\u0019\f\u0004��>��nh\u001e\u0000���0[\u0018�b5����\u0012��\t*�j���\u0015U�� �y��mX<�o�r���q\u001d��XS�d�\u000b\u0018�\u000e��1�\u000f>� Ew\u00112�yU[�lV�S�A�R\u0002|\u001e�(����ȜLե)Da���\u0012\u0005\u0016�-I��\n�hm�F\u000b�FCA�\u0016V�5\u0010qg��\r�\u0017mJ�&Ú��n�ߙ\tհ�L���\u0003��q�\u0012\u0019��#ļ6��=,$�\u0005\u0018�&�LBd����a�\"1\t\u0007�̄�ƿM���7#�ģA0�\u0012p���c��3\u0002,W\u001az� \r��Rd�;��^]D\r|�=�7w�\u001c�ʝ\u0019�]W�u\u000e�\r�`�3$=��!�e'B�y\u0003��y@& G��\u001a�\u0000\\3�p�u�$f�\u0004�Ê��$�d���%ǰ�T�\u000fˮ�l\u0019K\\z�2��.~�����n��x�i54.>H��\u001e߶0�\u000b�K��)�L\u001eF\u001f���� ����j'\u0016��\u0003\nl�'��\u0004��\u0004mJxp��o���҄'��\u0010�����\t\u0015$��\u0004�DN��T=]\u001c̹�\t��<<\u0016\u0003��_��5���ihUd�su�v�:ͮ�Pe�bαT�`Av!\u0011��I\u001b����箋7ų���\f�1L�`6%&&(\u0006�נ�HڶC�A)�\u0012����b\u000b�B\fL�y��\u0015�|{\f�G\n����\u0018�{�9�K鵱�\u0003{���0~U3>\u0003��P\bg�R+L��\u0002\u0006V������8�������|��mp��\u0002q\u0014�lA�3�O�=�.�sh2o+�1�v\u0006�CH7Dc�K�������\r\u0018!\u0016����\u0011���+�b\r�\u001c|e�>��K�;�wW^��`[١�\u0019�w\u001ej��\u001b�sl�\u001b�\u0006��\u0006��7L_̂ۿ\ng��gN�\u0000�|;\fjjG��\u0002�P\\ n��\u0012cOYz��/?��Ї#�@E�9����\u001cϵ\u0000��K\"�t�t\u0018&w84\u000b�_�$a\u0012x�K��7�R\u0004��qǓ��o��\nT��]�C�A8�\u0012����a�0u\u0018\u0003Z�\u001d��e���Z�a��,rh�aT��I�������\u000f*Y�;Wf�\u0010!�\u0017꣓\u001d�p�\n��׷�K�\u0007v����^��\u0011Z5%S��N�8����\u000e�Uh�I~������W�Fv\u0010c�֗�\u000f B�,�|S��1�8�����P?��K��[�\ti��QM�#�ɐ(X\t�+6��\u001f&J^��֣���q����d�bFJ���8%�Ǫ\u0013>, \u0013���+p��\u00008{�3�'�ҟo(�a\u0006#\u001a��6~�M@��\u0000��S�3�u�q���\u0006u\u0002!h�{�$��)]#b\u000f�X�S�}R�����1\f�߲\u0014���]u��5�&vO _$��%���\b��A\u000e�S�B�AB�\u0012����b�����/��s9&5�+��� +f|n\u0012U�\r7\u0003\u0015\u001b�w��\u001dK#Z`�7\u001d%�c?���ɺ�R\rI��7�NB�n\r�W1�`Ҷ�Ta�O\u0011���v�?��[â;F�3�e�\n%!�f(�B7K}?�'\u0000'!0iW�����\u0001�`��h���\u001d\u0002�R�v')��O\u0002L�KVb�s�\u000f�����^n\u0013\n#E0ظ'�?��N�;\u001a,\u001e���A-�A&�4�\u0000���z�~���#r�\u001cw\u001e�\u0007��}T\u001d۷,IБ�z�tk����b\u0015��%�Һ�P[\u001d,�K\r螘�h�e\u0001-�D\u001e\u0001Н�u�HN��A�AF�\u0012����f%4ȇ�\u001e�A\u0019�\u000f&5%{�u\u001c�g��/�'\u000b~ah��\u0017�\u0017�?��\u0001�1y]�P5\u0017��:�!_%�˜���+���b\f�P-O�2��z|�_Aཪ�OM��\u0000�J\u001f4�ꃴ\t`g\u0018\u0011%�ے\u001b]���+լWӓ�\u001d�p�@j#J�П�]�5\b�[��a��\u0014�����(���S\u0006�y�$���\u000b�}*&ll��\u000f��\u0004;���\u001cAs��}\u000e\u0006��O\fr��E\u000b|\u0004��ͽG+ֱ%�\\�KTս��\"�Ă���q�\u0017�+�s�_��o@���R�]LJX+ٓQ89��;�/@�O ō��ѵ�\u0005����\u0002T�<)q�!=]\u0012V����o�[���S��x�l�6�\u0000\u0007dd���s&��mãA��\u0012Ԁ�}b�k�����!�P��\u000e\u001c�NDZ.��Ј;���'�9�\u0015�\u0003S��\u0019�\u000f�.g*Z=�\u0016�����\u001f�\u0013o�T�g�ZJI�ǑrvU���0��r�\u001a��>��\u0012\n\u0006K�yU\u0001\u000b��\r�nI��\u0005�A~+�٫W\u0010�@C \u0013\u001a\b��\u0005�\u0013�V����u/�\u0016�3���2�����\u0003FK���x�\u0010\u000fת^��|��\u000e\u0016��5�sN��6�&G@�H7ׄ\u0003�5�D�\u001e\u0017��[�m��FV��T��\u0005��mZ\u0004g(\n��\n�#��Kv�3к�|a\u0010=�~x��k�#�l�F\u0018\u001e�[@N�-���ɾ��I�\u001bW\b\u000f\u001c[{��߾#��M�\u0010!\u001c����Dn�\t��\r$k\n섫���ut��w_4���UJ�\u0007��9��\u0012<\ba���c��c[ː>\r�Ί\u0001�P���u��_И+Æ���\u001e��d��k\u0000ެ�\u00026��U��\u0013T+5\"@-v�ǐ9�!�&G�\u001a�b\nGi��q�\u0003m��\r�8V�n�r���A9�\u0012��XЪTb�\u0019\u0012�x#�8\u0017\u0005&�Ժ!��\u0013��͒��f���-Y`{W>\u0003�x�m�Bȷ\u0003K�\u0007�\u0006z�\u0013�'ٗD�|v�GVd��_o�w3\nN��\u000e,���Ԝ@��*9�y�O�\u0016b)\u0007�}��\u0016U�PC���\r�,�k&-��AO3f<[�0\u0010hJ��z��U*�Q#�yc]�h��AΟh���\u0014yIx��G8g=,K|\u001d�X.v��r��v\\�+Ϊ�5eUU� �Uc.tDe���f���M@��ֿ�2<\u0015��>�{�\u0010Ί�\u0004ܽ\u0019��zK�U�wU�AVѤ�@\u001aA\u001f\u0000D~\u0001l2�2l���Y)*��%B�o)\u0017W\u0014��`g^\u0002�\u0001�̐\t'h�K\fӹ�uNdV��AH�\u0012���X�����!\u001e�\"\u001dR��Zb��oi8��e�iOg膭\u000b�6�O�.5�MhtC�\nL�̣��`��Ќ���?B�����o\u0002tN�k��&ٱ�\u0015x��\nzc?�ǡ0ʳ*�Ֆ��$��k*�Ï\"M�\u0010�%�Tm\t�8��KR�Ӆ���쌏�lÝ\u0001���e>k�B�\u0012��+\u0019'!�\t�\u0002�ɑb��������E\u001dQ٘\fI,Vn\u0013IF�\u0018�sŪ�o/\u0010�V�0~�\u001d����\t�Pr5\u001c��x�\u0005�\u0004����̥!X�\u0016�\u0014\u0000���XƂZ�������ȫ7��čVpq^�8�\u000e��h\u0014�\u0002LȶHa�a\u0015���!�\u0015���ݷh3bfA�\u0005^id��|'�f\u0012vR-G��H�pH������\u0011�`�\u0011�A%�\u0013\u0010��X�B�\nd�1\u001dI\u001eTZ����Fg���\u0002�):\u0002�|60�6�ڔ\u0014\u001c\bD�DF�\u001f��^�0�ʲ>V��_�jU2��ҝ�(q�eA�g\f\u0003�O�m���;cQ��w\u0000��P#�dĨ�\u0011U�\nF^�<�R�{�8 ݈ןEI��x£�\u0017\\:4NO�<�.w�\"�|9�\u0012Œ<\u0004�����3m%H����UlX�zn\u001eĤ���#.b��\u0005��d��R�����'?�jqͱ�Ҹa3S��\u001b�\u0011�\u0019���F\u0012Ӣ,�4zA\\A����%\b,�N�\u001fϣa>x��SΠ}LS'=�%��\"����k^�rv�\u0019�V6\bh\u000f����k�^�M���A\r�\u0013$��M(\u000f2s\u0010��?��%`ެ V��68\u0003��\u0014j��r��\u0016��v\u0017t�}�t���/m\r�ַ9J�ČO\"E~�W\u0006\u001f&e.3�C\t\u0005_9\u0001�9��SV�t{�\u0007Z�Is��\u0012a��LjR�M���[̷\u0005�\u001b���$$�8��R�ÊuƚЧ�b7^���ThдZ��㍔�L\u000f\u0019�k�ċ�~�um���9���\"�2\u0012��.�&|ο�\u0004�(�N�\n�*�m�\u001b�������:��}\bh�#TZ;\u001b9'�b�\u001e:)$7�3��W&�\u001d�Bss�\fd�WO@y)u���;�;V�--GK\u000eh>>j~J�/���\u0000�F�\\ݛ\u0001|I�~�W�R��\u000f�2/n�\u00044L\u001cRP-5V�6v>�Wn����\u00018���\u0000��+2�=Y!\u001e��S��#�F\u001fEy�@���\u0003z/|�湆�^�\u001d��*�\u0005�v�,,J{��4��\u0017C��&0C�ߊ\n/��(�d�'ɣA\u0018�\u0013`��M0*+Q�\u0001��,�\u0015Do�\u0017�\u000f�é�������\u0004\\U�F�YjH��U�G\u0016�\u0010)��\u000b���w�=�y�;�\u0013b����\"t�\u0004\u0005�S\u0014HN�\rk�;|\u001eG�6\u0001�B\u000fګ��(�bZ�\u0005b䛔ڂ�\u000eU�\u000e���Z�W\b�\u0013V�\u0007�\u0001mڗ�y8jX��\f��f�a��v�\f[+\u0000�3��j~�@�\u0002\u0013F6��t;��b�ر癘%�{E�\u001d�e�$��e��\u000e\u00181��ݞ��\u001bx\u0001�`p'x~w��I���󡋋\u0003\u0000N�f�\f��:g�Q_�~��\u000e\u0015h��E��f���R�oک��)-���V�QG\u0011\u0003�v�A(�\u0013t��M3��\b�\rl�S�X�QP�߇�8�O/�:#��h\u0004ODә���`�\u0011����\u001a6�k8\u0015\u0016����\u000e\u001da=��v\u001f��ܣ�u\u001c\u0018���4D;\u0016�?�Ǿ���\u0013\u0010�h��F�l�ؙ�\t37|>�N���u�|W�}�@��\n\n���\u0007!\u0003�\\��H4b8��)�S�(o�ns\u0019#D���k[NZ&U����[�\u0016\u001d\u001et�.r��\u0010�N�\u0014��L�c�\u0015\u000f\n��(��b$���d��\u000b#\u000e@?�\t\u001a��cXT��j�߿;C�\u0016�7(;�IX6F\u0013�#�\u0019��q\u0004X6;�*9%=\u001a\u0014�d^`�����+��[l[���!\u0004�t\u0000@sq�\u0006���G�f�AR�\u0013���Lˤ�k������2;�4�\f}[?{�\u0000Z\u0013��f��D\u00140K�\"�F��<�\b\n\u0012�XI���喟������SZ'�*��3\u0015�~\u001ea�6c��kt\u001d//􃎤l7��5����x\u0012\u0003\nz)�S�u�?�#�<�4�#f \u000bHY����#�ðt8����p-k�E��J��x���ND*�eى�\u000b����?ۼ�)ǩ�\u001ab�n��6(Uqt�o8>��(]\u0001\u0016{\rkv tyxE���z\u0010�Pυ&�9K�S���\\ʚ�����x�5#�~,\u001f�\u0018�yO��LƋ�\u0004�N�l��\u0004��\r~\u000b�b�o��.�\u0019�;�\u0010��\u0018)���Ɋ�Mٰa��ֻ�\u0003\"��b�wc\u001ca�!�\\�ӓ�{�Rj��I�̖�5Z\u000f�#�A\u0018�\u0013���M\u0013B�C��Y��$I\u001ck!�Vbؘ�������z]��ptL�p\u0017z\u0015�\u0011��&у���\u000e���9b��ա��Qc\u0004�\u0016���\u001et�CK}�\f�\f�?�l5x����E��#��\u0006\u0011+�D����9�\u001bİ(���e�D\u00012�e\u0005�gIL\u0001n�:c�7f�&�-5\u0015�_�/`\u0018��-��y��V\u0017�|��\tÇ���tq%h�*��1�>��4�\u0006zd�\u001a�\u001f�\u001a��.�\u0016F�È��3���Sq�Ѹ�\u001c�|0\u0012\u001d\u0019���8�\b�\f�\u0001�hD��_c,d0\u0015f��\u001c\u0017�\u0016��P���^wZ:M\u001er\u00143e\u0001'\u0011&>GSE�R�ʣA\u0011�\u0013���-�z�KC rb�%:\u001c\u001c\u0011b�%ه�����\n\u0005\\h�X�˨f�ͱ&\u0000\u0014���*:��`�§+Ӥ���6B�N��|B�btc\u0002�\u0007<���%�@��Bӂ��>a\fU���\t^^v,�e���7�(\u0013�� 7g���>6�\u0004��d��zB�S�\u0005\f�\u0015�\u001aɎ0ʥ?���A���\b�\u0002vJoT�&\"�G�\u0018��C�Szا�����\u0003/9o\u0016h����;Z�Q\u001a�\u000b\rb�\u0000��X$\u0016��\u001dˋ��\u001bh\"�ii\bM\u0005��\u0011�o\u0000\u001fff\u0017x�\u0016�t\n��Ώʦ\u000e���r���i����F4�'�[Jߝ�m�$�A\u000f�\u0013Ā�L���G�<8�-�\u001e�]ܔ��������3��\"\u0000�57~f����4=ԓ� E��*\u000f�6-�\u0006�\u0004�\tć�\u0002G���J\f�a��+�2�vё�[�T�v\tXP��F%��FQ��<�0�랹����s$9=���5�ޕ���4)\"\nJW$j��(����\t^Y�\u0010��q\u0005ړr\u0001\u0004즓s�o�\r>�\u0011ˬ\u0004���n8(����\\^��\u001e��\t�\u000f5�n��p�ʦcv�M��3a��O��B���c�K�\u000e�y\u001e�ź9IU\u0004��n��7S\u0010�i�^[�;\f\u0015�V�P��l��[���~�+\u001b�A\u000e�\u0013؀�MWD�\u001f\u001fc\u0002�rq�\u0007�h��5��րKkW[�W\fG���\u000e��8��vIy\u0017�\n�\u001a�2\u0013\u0011�e������ȑDN\u000b��[��\u000e�'L��D\u0014\f\u0014\u0004\u0014�a\u0012h���Z���\u0001��p滽�g_$���5��9���>�xk�\u0013J\"��ųR�X�g\"\u0006\u0007����>h��]oU��\u0003��u�l��#8��:$�W�\u000b��I a��a�n�P%\u0006�#��\u001f��� R�Qme��!d��a��k27�!��P�\u001fl�w�\u000bV���!�8\u0005\n\u0003�\u0014�o2Z+QW����d5��\u0007��QRRI ����`��>�A �\u0013��M'��;$yf��\u0018�B$�\u0006� \u001c�\u0011�ҫ�����+��\u0012�% �ͻS �],��f��m\u0018�cc\u0003?;\u0007�aA�\u0005Y�#Ã�\u0013\rkB1�{\u0019\u0014U\u0018�����\u001a\u001d�t5*������S��Ԓ��{�I�W7=�B�u�y�\u000f!x�D�\u0007FyJ\u0007\u0006�7\u0016k�x3��\nq��~�\u0014ڿ\n+���_�uC��\u0005\\�O-1���A�V=�hK\u0006e��Nf\n�l��0d\u001e��\u0003b{S�h(RR�;+bҋVc\u0018�OO/�&��B�\u001b�\u000e\u001b\u0005d\u001b\u0004Z�t�up\u001e����H�!����=��{v�T\u0015\u000b\u0003y���\u0001��\u0005˷���k\u001e��Z9��A\u001f�\u0014\u0000��M%��\u001b�7���e��S�\f=\u0005�yO�ͭ��_d���U\u001fJm��U$H\u0007;�\r?�����@\tB�߄*��H@����\u0010BT�\u001coq���j�z�\u001a�\u0002'�`z��7��.�r\u0007m�g/�<�#<�Aa\u0000$G�����\\?�Dk�]j\u0015\u0005��!#���&\u0007��>SYy\u0001ja#-\u0013��2Y\u001e�x��T�{oLI�/~�<�\u000f�\u0004��㽎\f�`r\u001dHu��\u0015�l\u0010+���\u0013r�B5�\f<\u001e�՘��x��*i\u000e\u001e�`b`���M���<��o(�䫩 Q\u0003�\u001b�ɬ1���Um\n\u0014�\u0014{\f��\u0012��;\u0012��6!�K�-��\u0011ZңA\u001c�\u0014\u0014��M{�\t1h�S�[7[u�`z���O���,|*�\u0004y\u0018�\u0018-\u0006��r̝r3C�Y��gŴ�\u0011�\u0014KQ��5��F�EBA�7`,:%\u0017�\u0013��\u0003c\u000e�q���\u0003���)�/^�۶��\u0015��o]�\u0010�?�47����*�ChB>�`\u001a\u000f[���~C\fT\u0016�\u0000��\u0012y�L�8��dʂ\"J�*5\u0000IF��-F\u0010r\u0012�t�S\u0003s�СӜ�+\u000e[ؘ�\u0019�\u0002\u001biF�\f�\u0005����\u001a|�_*\u0000��\f�b�\u001b��2��e�r^�u\u0007GE���\u0000\nh�\u0014�5�P���\u001f�\u001cj�3�$\u0005�t����i$�\u0006\u0002�k8�8�\u0001o��\\�l�\u0000\u001b��\u0000�A!�\u0014(��ܸI/��`'oɎU���(VJe\u0012�t�D\\� ���il��*���\u0014�b���A)\u0018]0� **���Pl��is�qR�PIaҦ�O�\u001e�\u0005�-�%#V�u�X�u�qϘ���\u0018\u0015�|}c\f�޹��|�b��M0t�4�Ɋ�\u0010y���({6��IJJ\u0006�~��[���Y_���$4�\tܪu��*�E}B\u0012�iu���i�����lB��ظԪ\":�\u001cs\u0000��=�|\u0002X\t�\u0014��\f\t\u0004n\u0017,�|L�b�m/\b\u0001�p\u000f*�4�2�9��}E!�u��&\u0001�B�O$L^\u000e\u0015�\u001e,+��^��\u0010f���I�?�(��r�J��A(�\u0014<��Mz��9��m&\u0004\u001c]Oy�e1�]�\u0010H*\u0015\u0003i_���*�ll�ۓ�J\u0003����\u0001lY�7\u0002X�dۉ�\u0011�V��Oq���\u0016��Shl��V��\u001d&����\u0004�`j\u000ekd��*[��l�o�1),�\u001eZ�A\u0003������y[�����L\u00064$�\u000b���r�\u000e\n���_\u00188JaW$U��\n�cݓ�\u0018}�\u0004��^�\u0007�l*�\u0007+��\u00075~���9b8�K��pz��Ճ��I\u001a�\u001d\u00074\u0010�sܿ\u0011����n#fy�fm���M����\u0001�V�e\bV�E4�&\\ƾ2�����\u001f�\u0004;�0��3*\u0019Մ*\u0006��9�N_�6p��O�>�$�[\u0013vu�R�A\u001b�\u0014P���c\u0005��MbqT��=�\u0002��p]\u00024w;oi�Vڭ�)����6��o>\u0018ia\u001e\u001a����;��\u0003��\u0016ӫ����`.�\u001f8O����/��j��\f\u001c��I�\u0003M\t\u0005�ՙ��6��َ�h�\\tX�{�/NF������:\f�d\u001er�:O�t\u0007���mb\\���o�\u0002,�\u001f��\u0005�ׁ\u001c�\n\u0010�~\n�7�9��O\n�d�^(I76VmJ�:���J��Xq\u001cPU�1��O��T�ݼ��{_\u0015]k.P\u001c{���\u0011\u0019����p� `-��a3\u0003�H%�V�-\u0002��\u001c��\f9�i^v�K��X�\u0004��w��C+�, \u0012�ގ��\u0004U���A\u0016�\u0014d��MXs�[\u001c%��%V1���\u0010\u0002�:�6j#�vM���=�u�o{@��#̶4F7��-�������\f�zC]�@���l���^$���~3����&e�����7ݙ�\u001d�\u0001}\u0007̢K�4�\u0016H\u0007\u000b�����\u0005���:T���Sx2\u001fb�¹^~\u0011}b�bo�N�xT\u0017�\\a�D��g�LLxh�\u0010\f\u000fy]�m^eM��^P$�@�w�~\u0007��hW��M�n�~�^F2�R�Z�r��6��Ї\u0013�&���\u0004�ho!�3�ó\u00049+�����\u000f���O5leAd��\u001c�\u000eB�jl�w_E��\u0006���O\u0000[�%�\u0000�A\u0017�\u0014x��۷/gf^q���%_�%�]nPb�E�Bb�\u0017�6q\u0004���i���A��\u001e-���_�{��E�jy���)�^�0 ��\u0007�p�i�MyX` ��\u001ad\u0016\t�8�\u0005\\9\u0014}�l撼M�\u0002\u001f<\u0019�\u0015�ǭZF����)@�\u001b��d\u0002�bJ�\u0018N`/��Q*+e���޿��X(�d�\u0014\u001e�M\u001c�[\u0011f�-D�����fP��qq�#�N`�>�Lc�j��\u001a�\u0007�\r]�\\\u0005d��k���!9��9��(�`�ŖBqc0���8Eǩ��^1�\u0001�f,�m|]e���W\\���6��\u0002\u000f\u001d�%;���s>��|mzt׳�A\u001b�\u0014���L��jC�?�V6@�L\u000b�\u0017��Sc4���?\u0001�\u0012�`�$w,���\f\u0010��`��\u0016��>D�Qw��������!k*�\t����̭\\�gM��d]��]����;��t���̩\u0003�읞\r�\u001bݯ�z�ܬ\u0005.\u0005y\u0017*����\u0007xKno�\u0005\u0019�F�\u0007��0�C$�H�{��gn��I�V/�<\u001806��<*!n���ʹ�䬞O�\tx\u0018������g2E\u0004�\u0013�$�T�X�Z3��:�Rr���R��K��U�\f���\u001a\u0011�MG����\u0004�~-��;��\f3䭦ōϷ����Z�Fǻ\u0014�;b<�dk`\u000e�D\u0007��A1�\u0014����p�w]d��𧣊��sE��\u0011-�(�;(c�~�\tɊb��j�Hr$�^��/D\u0006ܵ���<\u0014\u0006�\u001de3������|+��¿�\u001d�¼�\u000b�(x�\u0001�D��S�J\u0010�\u0014��a��oҍ������g3���u-h(��[h�\f��f��s�\u0000����1\u0011��@i�����o��\u0007H:\u0007��;���\u0006���\u001e��Aᆤ4P��l�ߘ�P\u001a0)\u0018u��C9��W��8{\u0014O�\u001f\u001d4�r+�R��ǩ�Ob���tQM�E9/*\u001ebnx�={�\u000e܉�\u000f�N�O\u001d~C��\u0011N�\u0014*x�^��R�D�,��ڊ��ѐ��4v2HlW��$���$�I�����xmv�A:�\u0014���L��L��j�R�x�PC3G�\u000b\n���\u0016oXD:I\u001d�I\u001a\f�݁�B��G�����\u0018��[��:4K*�\u001b�В#�O�\u0000��0�<\u000b\u001e@<@}���\r\u001c9���r��m�BC\u0014�o`CФ\u0014\b��c���r�t-9\u000f'۠\t5��<%=������\u0012\u001a�|$\u001cY��\u0017\u000e��\t���Z\u0000�s�m>GY|u�\u000b�>v/���w��1\"G��u\u0006L��� {5�'\u0007D���߬P\u0014\f�\b�3ɄV׏�6����\u001e��X�F��\\\\�_����%�\u0003�\tZ\u001f!-\u0016��\u001d�\u0003sf0g궝tDfp���u?�I��5\u001a�W��*�0�&��=�>�\u00077� ��<\u000bp\u0004��K=A����\t[��A��\u0014Ȁ���tk�\f�Wf��6�a�c.���{5Ւ� *�\bf�]/�\u001a7g��G�\t;\b�O��m��W�\u0011|D�_4�e\u000e�p�żA\u0001ޫ�Nje�\u001ao�՛�~u��\u000b\u0013k\u0019\u0007��\t�7�lVY\u0005��Wa�}�\u0001�\u0001nη\u0002��q{E7��V��)��B�������\"���4𕅩m=���\"%\u0000¸��8\f�\u001a�[�\u0001��\"�b���a�����U�1Q\u0005�J\f���\u0010h�eG�\u000e��ߒ�a�˺���0���\u000f\nT\u0018��+��\u001dvK�\u001e�eP.�&v�\u0000��m6̹���Q��<\u0014�K��W�_���X�-����\u0013��1?�\u001dq(D���X�.���2\u0018���\"#P�b��.�>��v\u001com�\r��(\u000e�⚀����dem�\"L�\u0015��\u0007.��Q3\fy \u001d�\u001c��j�\u0013[P\bkS#yҡ���u\u001f'r~�p7��Ka�]��R��I�\u000e�\u0006���\u0012G���A\u0015�\u0014܀��m�� �\b�9����\u0001��\u000e�%��\u0012��� ,m��gWj��(�T��jcЄ=�͌X#\u0010T��\fR�{nD� ����g�\t�s�h\u0015Ȋ\u001e*l�G�$*�\u000e��GN4�$�_\t�s�\u001b\\�K�L3ڴK\u0015�\u001c�p�����P}��XŘ�I\u001b0s}�ຒQ�8ZعM�����д'YM\u0012����̂g@\u000bn���\"1\u000b��=��]'\t��u�4=S�6��\"j�i�}�\b��?^�7cdmv��;�\f?\"[0�A��\u0015\u0004��}a@f\u00106�D��;�]\u0003@\tv\u000f�b\"�L�, �d��7�>q�����m��咣u��\u0001(������\u0012N5�e��\"ޤЏ<�i���`G}=����5E��\u0019M\u0003��0�����ZG%C�����\u0006V�\u0001O\nw�D\n���ײ�\u0014\u0013�\u0016x����޶�M\u001a��\u0001z�\u0013����)g%�\u001e�P(u��\u0006�*�Ŕ�6f�^F$PP�ʮ\u0016*ɑYm�����j�7\"\u0002��\u001f��E�!wVEur��_\u0014\u000e6\u0017��\u001dO\u0012\"��N����\u000eI\u0010t\f�R6\u0004�\u0019%X`5�y\u0006|k(a1.B�����V\t_g��u�uH4�����S\u0002�����/%U�I� \u001cO�X\u0006fp�H���^\u0010���t��\u000e�\u001c��\u0015T\u0013�^�H\u0017�\u0005$qr\nG5im\u0019�A=�+\u0004�1W�;�p)\u0000�0��O���,��e64�i\u0013�+E��;��Ƥ�yڊfe��@��\u0015\u0018��.��Yu�\u0017z�JVB+��Y�(v��?#��m�/']\u0006�\u0014��qH�А�\u0013(Χ_}B\b'^�\u001a\u0017BD�\u000b\u0017'K��\u0014ļD3�r�W5������q\u001cd4�:=��\u0017��y\u0005L��#8��r��\u0018�\u0012X.���\f\u0018����\u001f�6���&Z\u001b���\u000b��v+�?�SB�O�\u0006��\"R��C�\t�>d &�|�\u0006��q��icp�p��[�Z�Q�#�\u0000\u001b�i�9~�\"�\u0019�\f�\u0003�$>q\u0016�Ֆ>+}\u0011\u0007�]�{S�9\u0005�&H�Y����wʶA\u0005]�\u001eF���@4E�j�@��\u0015,���\fMe���\u0019\u0015}��\u0000�N\u0016�|\"8����:��(1�I�h�\u0012T���Xd���i(��\u0006z\u0005���>�!�u���_Ȗ�/eez��\u001d\u001e\bR��5\u000b�֡\u000ew���W�iS:�8�Lế\b�c\u001c�\u0000�\u000b���vQ�۳��L\u0015��\u001a�f\u0007�a��\b�lB�Hiy\u0007� \u0010!K��f���[hP�F�lS(\u0015�$%Z�+�q��ìq��\u0001��x8V�w\u001af7�Y;H��\n/�T&�o�ꍟ�`bXL��5\u0003D�ɵdy�}��\u000f�a�\r{�\u0012���xl�� ����@��\u0015@��L�bD\u0011��9\u000f\u000e T��J>Z��cٱe��e\u0013\u0005?�{l.�LE\u0014�EH�ǂ�\u000bDW?B���Lya��\u0012c=8���A\u001d��\u0013��N{��t\"ػ�ʹ \r��r�\u0005\u000b�������ƾ�ƈŃ蜉%D�\u0010�\u0017������\u0013%��;\u000b�09�1m-ѽ\u0013\u000f���5��\u000e!\tZ�\u000b��C��p��z�m߂\u0003u�x�\u0014�\n�\u0018B���&E^�F �r�\tӱ��zmoM� ��ճ!g\u0006�@���\u0007]bz�\u0019�2\u0000�=�:UV��c$s��\u0010�~��A��\u0015T��߷:MC\u0002z��!�є��C�5NC%�c�kw��T���\u001fgӉ�*�T��U�NH���\u0000_\u0003�:�NmX���O\\ �[Q\u001c���Y<\u0003���T&q\u001f\u0019\u0013O�v&��\u0007���I�/��Y��yl�H@�0\u000f�ex��z\u001f]�\n��q��c�\u0005����\u001e�\tQ7��\u0010\u001b�\rg=²��r��ji�\u00158oQg���gM\u001d�l�\b�r�z�)\u0012�Aρ\u0015|��ߕ\u001a^�p��0�1D}uQ\u0003�:�j}zJ8y̌\u001a��-7�_�`&�%\u000b4o�u>�\u0010[�I�\u0017/W��OD�k�\n�\\��uk�렀�9H��������+�����' �һ!�Ǔ��#$E�X\u0013r�|�{��\u001d���\u000f|( �y\u0005�\"4���g\u001b�q2\fR���y�\b��\u001a\u0016��ڠ2��\u0006��T�J钷��,�?o������5����ʫ��/6�g�:\fo@�lC�\u0018�\u0019�P6�:r[.�<\u0014\u0007|�\u000f�7G�a4��P\u0018r)Q���,ɿ�\u000f��^{{��MTy4�̴Ju#�\f�̼t=\b�%\u0012\u0018y�\u0004�\"�e�dM�������aJ��9f\u0005���K۽ԱbL\u0011��'�\u0019i\u0016u��\u0002�p�w�\u0017+�l��B܁��\u00181����4\u0013��\n��7�\u0003Ze32�V�|�\u0006������\u001d7\u001c�\u001e �C%7+\t�t\u001d�OI�\u0017A[�1^��\nK���\u000b؛ҏ�ga\u0000\"�9���I��\u0000�4\u000b�Xѩ���\u000b���z� gx���Z\u0014��}��H�uU�\u0011#%�AɁ\u0015���߷b�&A+����j�9����u���\u000f�ˌ\u001e3���������\u0014��\u0015\u0019��ё\u0003]}�.�z��į���L�H�\fUGQ\u000b�1$����cNwҲ\fopʎ�\u0001�[/�D�\u0018�&٥�E���WqW��\u0013C���\u0006��ڡ�m�GV+�k~��c�\u0015\u0000T�Cd�N!��Y\u000b�+G�O��\u0019Db\"��^�g�\u001dO���sFk\u001eK@n� VB��\u001d�6c[\u0013~\ni���G�\u0004\u0014��O\u001c�\u001e���7��lh �\u000f u\"\u000eW��X\n\u0012���UB\u000e�7��#|X��\u0007\u0010t�_t�'�\u0005˞��*ݼ\\V�\u0005-�\u001fs̑9R\u000e8>0�fi�\u001cOĪ\u0003#p�[\u0013�pZ\u0017 \u001d�tM\u001f�����^�}\r�g�|t��(/��C�m\u001a8ȶQ��D<\u0018��>:�&հ��.�2��0�a!H�\u0004�Q�\"\u0013˩���A�st#��\\VHu\bB\u0002�S8\u000eb�Tk,/(\u000bz�ko/@�s�\u001e����x1����\u001d�4\u001d¹�A`\nqV!\u0011K�CM�\u0012��:�m��D�\b40\u001a�K'�An�\u0015����Zxژ�&� ,ʊ\r�t1U�\\�>��i�r?��–\u0016�g(��\u0014�m\n����/S\u0010��~K��\u001d��R�'��)�I��_��IM��N +ϼ���\u0015��}[�\u0000\u0003\u001f�)Q\\hƘ\u0016A���[T�\u0001��)w 0%�q`\u0006��@�e��<�6li�`3M�F��d@�fτ.�:�B�D��\u000e4�F\fy��T����\u000ba�\u000e�U����\u0012�0,�ԁ��\u0011y�^؞�\n�\u0005��[a�\u0013�jG7d_�QɩU(u+\u0012R{��\b��\f��L֏�\u001d0��3-\u000e���\u0014����t3J;\u0010��\u0007��r���\u001b���\u0010�\u000e\u0018x�Ɯ�)�\u0019��|�9�ŕ\u0000�t@�I>�i$����\u0010�}ږ�\"\t�\u001c9��5\bL�|�ù����k�Ŷ�1�H�\u0016�\u0016�\n��ns�!6[pt&�\u0001��Wl��#�A\u001a�\u0015����x}W\u000b�q\u0002���y�:�ڣH�Nr�'�Τ�\u0019\u0006��\u0007�x�\u001f��\\\u000f�ƽ���2H��9o��\u001a��V�3���Q][����h�\bU�z��{�%>���\u0002\u0019L\t��OS��/����;�\u0000},\u0002��&�\u0018�H�v蚅��'�'���Q\n��Ʊ\u0017aàja��R���c9V����R�8�\u0004\u0018�lV�\u0012\u0001��.jȠ'~��\u0018� \u001aݽh\u000e�ԏ)xV�׷7��\u0006�R\\��l�\n�{�\u0016i<7;͍\n��~;�ȱ\u0005g\u0012�D�j�8�q�\"j�>��h��\"�v���HL��u~XwvE��]-\"��B���Õi\u001e�A>�\u0015̀��������`\u0018\u0004���6�\u001d\b��\u001c���Y�\u001bk���\u0010���\u000f����\u0019����n��t�Y�lbLz����=�Y�\u0017�E�\u0015��\u0000��[��qǃ)$�WRس�\u001e\u0001R=����������� \u001bT�$F3J�\u001c�\u0001I\u0007�j�&p��(1+\u0000�\u0012\u000b-�\u0003@�ciΊ\u0003�.)O�$���t�y��x�����)׀w5\rQIʍ�rD\u001e�3��^��Ɠ�Q���\u0015?���U�j؊\t�;߅�\u0001ϵ\u0018?H�~���DM��s\u0011�҆Р�$�m\u0004�h���Y��\r�\u0007�@��L�\u0016I�\"\u0003t\u001d\t(�\u001c�9�\u0015K�\t�4GY4��\u0017�:E�Ԗ7������\u0004�\u0003hH/���,\u0012��z`�\u001f�B\u0017�\u0015���}a3����6��\u001e�\u001a5k\"{C��Dw��\u001ax�\u0010)kq\u0016V�����2�hž\u001c&\u0019\u0016��t\u0011 ��0u䄅`P3���\u0004$�JS��G��^��-pi\u0011�\u000eii���ŭ���y�\u001b�\nZQ\u0014\u0016\u0013{]ε���\u0004��\u001f�֗*���\"�\u0005�HR��I�c�ӓ)��ߺz\"���+�3n��ԫ\u000e޽x)�*콈\u001f?�O��\u0015a}8\u0007bT�(��]���\u0018�\u0016�E�����E�,���\u0005v\u0014�\u0004\u0015��\u001e!��W\u001f\u001c�Y\u0013_(�\u0014�\u0006�p�\u001d4w�4��\u0019��)���O�\u0006����م.��y�\u0011�\u0001�kJ\f�g\u0004;�;��Q|u*℮Ƅ\u0015�RWmbRh�$\u0011E\u0004/\u0012%�s��[�����B��o��I�B\u000b�\u0015���W���\"\b�ѯ6z#\u0011y!��n\t/\u0018(㐦��4���^�8F\u0013M\u001a=Y\u0005w�NW���\u0013=�&�G�,�̸'���m�\u0013�\t\u0013FC�\u0013;�w�r��ߐ\b�����\u0019TӚ�\u001bd~j�הx�\u0015\u0019Z�^�s�A���52��'�\u001c��$$њ�h/\\Qo���ˡˌ~�'Tk�4.%�\tm<�\u0016\u0010�p�0{��XD�9�R�:�K6�����G\u0003p�X۲o^�p=���z�5�}�L�lr7\u001c�X\u000bQ^\u000768�e|7q�9\u0001�&�݁w&��&�'%Y�9\u00198��?�c\u0018F��Ռ=J>~����v��\u0010�G�k�������\u0019ֈ��0��Y�Dci��O�1�װ>����d?\u001b;��8^���c���iܱ�:�۱e���ڄ��L~r\u0000h���Yp�/�\u001a^@\b\u001f�\u0016k|\u0019ו��S��\u0019���5�Q�C�4�\u0007�������p�\u00137.�p3�*�\u0015\u0016+�y\u0019�Z�އ�G�-_:$h\u0016\b�6[�C��N'\u0000=xXG�\u0006�_=\u000em���d� \u001a�����6/颷c�r�,�\b\u0011b+[�4\u001e<\u00178Yǖ���G\u001d�\u0004,\u001by,\u0004[\u0003��mє\u0004\n;��N�f�%�d9k+7v�9l!�Aс\u0016\b����s�vֺ�ev�����o�|<�G�f�%{�����4!���\u0004�%U_'pJ��ޚ}��v�e0�Et{��)��y�XU\u0001���$�i\u0013�Hڿ�4�(��U�!p�\u0002�\u0007�H��\u0016y�\u0001�\u001diU_��,�͂�q���q\u0001>�*�,�?�~6V\t�ι\u0018�f�!\f\u0012<�\u0005NGg�\u0017�:/�e\u001fJ\u0019�~k�n95��K�+�רv�}��\\\u001a�)B$u��\u0014dW�0*\u0001Ո����g��\u0007\u001c#\u0010��Y�\u0007�>Hfq\u0015rh�l�\u0003��h�~\u0002�\u0017v[�ap\r\b\u001f&�Ҡ|�S1\u0005_70l]<>bI{�k�͘t70Rz��z�.U!猯9�+XDmA��#h����=�Ni�O�l2�9\u000e&��\u0007�����\\P����DP^_�o�Bx��e�ر\u0006�gѢv��Ԁ��?�y� �\u0016.�����T�b\u0007��F�\u001b|�$[��Tơ�-Y�O6�\u0007\u0017$O[%\u0003�e�Pz��$>�ϐ�b���F�x��V��;\u0017�\u0000�2?$�f\u0013�`�g�\u0001�\r��_�F\"�Ty���E�\\�����0UR:G�{T\u0011�V��y_�\u0001��\u0016_�.\u0001\u0012\t��p.�#J�\u001f����3/�\"�A��\u00160��ۿ�ȑ;-��Џ�Q\u001a\u001d�\u0016��;���\b�m�\f\f�\u0011��\u0003�J��)�\u0016\u0016�9�\"��+��\u0010�,\u0018x��o�m��7s]E�\u000bš�`8MB��\u000f�\u0015{�\u0018�$Є6��Ɉ@3!�}�ƾ�\u0006!?�N�\\����ch�TKˉ3����\u0014�2J���\u001c\u0007(IV\n\u0013E� �\"���\u0011~#�v��E�~[P\u0005Ý�����\t\u0001\u001e�\n\t�b��d�X���m�9B\u0019\u0000w\u0014\u001b�hۓ�;���jI��(]\t�m��\u0007X4x[�� ��6\rP�6��]�C\u0002׽\u0012��N��n\u0016�4��^\u000b�^\u001b�\u0010��O\u0018;�͡�\u0006�\u000b+\u001c�a���0#��\u0017C��:�QT�\u000e�:��(a\u0006\u000fK\b'���ݩ�\u001e���\u0010K�\f�\u0016�!��a����\u0001v��9�tF��ύ�@����\u000b�\u0000p_V�ҪSKб�[��\u001e\u0005 �8W\u000e!\rje\u001a/\u0015��$$�Ah�\u0016D��۷\u001f���i��ԼU��on\f3�$��\u00132��e'nM�,\u0012\u0004����\u000b�����Y�;!����\\��\u0016pц�f\u001b�\u001d���1\\`)V5�i\u0011�E\b-�w�\b�\f�W\u0007a��@\"�\u001b7�#\u0019Q\u0006߾�\u0011�zX���t,�P)r�'\u000b�X\u0011�:i,2;G�P���`\r���Y\r�j|��\u0012\u0017U�,I4�����\u0004�L��9[!��U�\u0007���#���\u0007\u0017u��0\u0003���x���֪��j���Z�}`��P�P��-��\u0004���Ư\n�n�|x�\u0015�E]\u0007\u000b�sz%��W'\u001e��i^����Y�\\&�2��Séw\u0001H�NF6\u0011�\u0018+m,ܡ\r~e����|)!#��s�\u0016\u0005İ0uk��W5#���\bΰy\t�-���\u0013ݴ�x�o\u0015\u001a�'\u0007�]�41��/��<���2�'�As�\u0016X��L��U�Vp�����������\u0010�X+CK|\u0015B\u0003�,^�n�\u0004��=��Ʈ;�ۼ��aƩ�\u0013�\u0012Az�{ųl\u0014Sϖ �_�(�5\u0018�^\u0010��pp%�\u0006r�e[�����,�'�\u0019h�\u001ck�z�\u0004\u0007r�\u0018��Lz���m��S߅�J��!\u0019.����&8j�+�-�\u0018�ɣ�l�.2V^\n\u001d�\u0002D\u0019�q\u0014V���\u0000\fK�L\u0016��]֜n[.\t\u0018=���\u0011Ǩg���jT\u001bL�Ǥ��q$f�!ּj\u0000Ʒ^\u0000�\u0001\f�i�U����v\"X�mm��.�G^s��2K������pa\u0000*\u0002�7�\u00075Ȯ���?%(�N�ij\u0019A{�>8]K �'�z��\u0014�\"\u000f\f��`�\u001f��/�OXg�ʕ�P���d5��'WH��_���vt\"A\u0004���\u0005_�\u0003����Ӗt�m�z�$)�\tܤ�fۭc}>�ۣA\u000f�\u0016l��L� �C��\u0018�?7�L�3\u0001\u0002�\u001e0\f���\n\u001eW_�\u001c�j�\u001d�\u0019Ż�׽��\"\"q�N��\u001ch\u001d�0��Py>�dB�\u001d\u0019By;J�8\u0016L��\u0011\u0000�6��=<��\u001f�]sY}݅R\u001f�\b���>��h�\u0018�\u0003F��1`���\rE�L\u0010g��\u0011'&\u001cl#��\u0014t�\u0006C�J3h��B\u0006���П��0F\u0000\t�|��\u001f*X�\u0007�#��H��-�;�\u0001�)3��u�鈅fN`�U�z�^��\"e�,�K���\u0001]�Fv\u0019,rËaj@�\u001bG(>�mԣ����4q\"��\u0012�\u0005���]\u0000�g�\r���9q�\u001e�!d�@��\u0016���M{\u0011C��'~��7��\u001e��\u001c#Z\u001eXC4\u0003]\u000fe�c�BjN���F{v��\u0003/G\u0017�����\u001f8ޗ�u���|���\u0012�޲I@�\u0003[j��n���'\f�SOf/�Rh�1{g���f���}�I\u0019\u000e|�=8��7m���\u0004G�.�l��\u0010C��L��a��p�>/��\u0017O\u001c��v�^]�G�\u001a�į\u001c\n��\u0016o@�G���\\Z�\u0019��\b\rց��.A>-��W�I\r7Lo\u0010�0\u001cկ�҃��CG\f�\u000eVX5���g�ރ_�8ˑ\u001e��&Lj�\u001d��\u0015Ҽ\u0000�@��\u0016���.��6Bl\u0000�ͺ��\u000f,��µy^1��\u0004{�\u0010�@�\u00020�\tl�ݕ��`/8s��g a㨹훇��s>�N��z��rU�I#^vΰ�5�\u0018$�V��H��ݢn��w�ё��G\tZ�L@�Xd��z �4\u0015:J �=;8\"8���;T�jp�H\fy���A�0u3\\��;��i�O5\u000eߗ�Ggo�4;VM���D(�e�\t��@b�\u0015�j�FyN?�;k�\u0000-�\u001c>��\u0002�\\yw^Q^�z��\u000f���\b�t'�\u0005��h:`�\u000b�?�\u0007PU\u0013%Q\f�գA\t�\u0016����D[�\u0000��\u001fq;���(�s۠7�����/�°>\f�mڀ�\u000b'�ħ�Ho9�Gq\b��\f�dG�7\u000f;\u0003P\u0012-�1�pW�S/�y7C����!X��t\u0011�P\u001b�a\u00038�o��ۃ�<`o��WD��֏\u001bH�ь�ߘj�U�������\f3�\u000e\u0012�y��+I+\u0007!�ر\r�VU,$��N\u000bl\u000e\u0003\u0003��KIn'$>-M�\u001d�Bk\u0013�u\u001cM���+'C\u000e��\u001a{]� \u0012d/� 7��p騘�������^\u001d(��\u0006 ���D� �}��^�\u0006�J\u001f=�f6\u0001���Y'��\u0004d�\b���\u0012\u0004��r\u0010�A)�\u0016����”Ă�=T�h�`rb}��`�\\o�\f�8�.��\u0007տ}�\u001b���\u0004�0,���$�c�\u0007@kj����)g�Y\u0000\u0011�$?\u001e\u001a��'CB�\u0019vR��/���\u0001���o>�\u001f�8��\u0007�\u000744�_u)���cICSty�Ie�\u0005�\u0007~!o\u0006�\u0015O\u000bM�W_�\"LIR�� (�*0����i�\u00146\u001d�\u001b9����{`4�\u001d\u0005em����\n\u001bEŸ\u000bh��]�)\u0013�v,�*_s\u001d��o�6\u001a\u0018�h�+�^;\u0010�M\t��y��u\u0002�΄\u001c���\u0015�/�\\�ˑ��0�Dx�\u0014��K\u0012ċ:����Mz\u000e�f��\"���ʓ�_�q��>�\u00007\u0018��bV7�E�l\n\u0016�A��\u0016Ѐ�Ȍ\u0004:P\u0007���|��-��*��N�}/�U$�\u0000\f-�_۽�P�V��ҪL��F�=�����)[F�\u0016�\n\u0006��$�u|p+�\u0004�dd\u001b�\u001ey_u?��+s!�0\\�\u0019Pxo/���唰��|���\u0003\tҜ�|KY.|��&������\u001c\u0004�\nJ�B�\u001bI�\u000f�\u001f^^#Ǯ~��mQ���Ҟ�r9�>�\u0018\u0007�dL��ۅ��\\�}GF��b�\u0002ع��,&o\r^ZH�l�@w\u001d�\u001b�>�@�\u0015\\\u0014�0�@\u0019�B��1\"m\u001c�%��}��\u0007���h��7�m�E\bV��\u000b���3\u0016�l��k��&'�\u001c:\u0001\r�*\u001d��J���W�č��Y������8��B6\\2������b�t,����� ���T��]�R����\n|��\r�~�����H�%SϰH2�����5\u0013�s\u0000>���+���a[7�\"��HS���\u001a<�B;=��;OwT����h0|���\u0015�)~E���yaN�y�2>7\u001fZ��e�UU}'�%z�\u001e�3@\u000fIR�A\t�\u0016��������4\u0012�0\t�MW�IVK$�;��p �\u0006��N6q^����zuf$�]�)�Ѱ�\u001e�|��±)��_�>6�T�œ��=nSb�\u0014�\u0015\u001e�h\u0007�\u001er\r\b�d\u0017���?�z�Y�p�\u0003��\r�`\u0001A\r�����j���Ώו\u0017\u0007���\u0018�‘!_4������x��g���p,a�\u0018G\u0015^��i/���\u0013\u000bl�+��\\�t�y��.�.�a0�\u0000Yh�&�-��v1\u0012n��\u0017�\u000e\u0005��;gt���2\u0016,Y�z o��:�\u001f\u001a�\tY�\u001f�Q���C\t<:�mzk�a�F��:���\u001e�\u001e���|�\u00124h�/�p{j�?\u0018 r�ev\u0014pz�\n�L;.\u001d�Š\u0007�a\u0012ZvU������!�U��P�@,e��-]�]�\u0005�E�O5�=\u001a\u0005�\u0019�;컿\u0011�L\u0019z�1`�&8\u001d'��\u0006g�\u001f\u0003�y�\ne��(�#\u0001��H�\u001e��S�k�\u000e-?�nf3���q~T\"\u0001�{��h�`���,�&䓦<�Ԥok@\\�\u0003\u0006V�O�@��\u0017 ��M%�\u0001JmP�\u001cR��{c����t�i\u0001�C�='2�����\r��@�*�3��a'�B��'3y��4j�\b]�=��\u0013i�*\t��.P�tN\u001c��rJ��Y�\u0005����M³Qp�\u0006��˭�]f��F���\u000blu @���/\u001bEZ>շ&��\u000fU�׀.D#���8�����������\bg��jYi+4��\tBs�cq9w��d^���疃��\u000b,J�\u000f�ҽ�/��S�m\u000f&�EC�\u000ba?*ב\u001a\u0004��V1:�q~D���\u0011.�]c\u001f0������'\u0018����@��\u00174��L�3%;�*U�6V.#����a�-Y���S4\u001a)6\u001bgxP�\u0015����7��A�ޝ\u0002\u001eY\u0014�\u001d$R�^���+��&��c���_8f\u0003Q���-�\u0011@z�d��:p�\f��ߏ\u0019���xn�\u0011\u001c��x�}��j\u0014��k!1�'M\u0019n���\u0006�H�a���Lg�]S�\u0010߃�;�M\u0006�r�����].��V@�t�\u0018���\t7�U7\u0012��?kO�q`�K�\rJ\tQ���\u001e��\f'\n���U`�'1rY��Y2\b+u�����y�J���O\u001eD�e���\u0019�J�A\u001d�\u0017H��L��w\u0018���th����K���r�K\u0010L�~M�\u0018����.�����U�C��}�E�����q����K6CV�K\u0007\u000b��.�-�\u001d�\u0007\"��C�A�*�?���\u0019>�#��H\u000f�O��P\u0001��s��A\b�\u0017p��M%���Y3bWY\u0001��o+7&�.I�\u0005&��i��w\u0007IA>��u\u000b~���9r0vj�q�٨]�7Vo���.(�Q��.��٪��ӹZ�;՝\u001b\u0017vD)��#��%똥w�`\u001dٴ@kwQ\u0001wR�x�$���L�\u001a�l\u0006T�j͛��\u001c�\u000f5�I3����D\u000b��;�7\u0010n���f\u001b�uF�,�t���IS\u000bg�Q���v�\u001enS�-�љ/��|�\t��X\u000fP�����^_ʜ�^�|)5���\u0011�P(!�/��3�Ȉ�����<���^���s\u001c3��\"q�QN_$�z�s-��A!�\u0017���M{4\u001c��A�@��f�B\u0012T���/�o�D����w\u0000������dzJ��!>f���N�{A�d�[���\u0013\u0005o\u0010!��\u0013\u0010O\"�t:aKU�~nI\u001eXV�GVl��5�!ء�B8��P\u0013��t\u001c\u0002\u0011��m]<;D`(�P=�߄+R\u0000g\u0016\u0013���\u0001����¶PU�Ѱrr�����#�%A���+�\u000e\u0004\u000fA�d�ӣ��{\u001d'��\n\rDB�WH!-F߻�\u0010�@:U\u0004����\t䢤�=�\u0012�\u0018\u0016AK�=\u001b�W���ݻ\"���P�\u001c\u0013���`�Jw�S��#��\u0015D*D$7�\"��$N�\u001a����To��Z{fH�\u0012@x�OnUq\u0014\u0002R�A\u001f�\u0017���L�ҧ�n����V��h\u0018٭6\u000f�\u0004��x=�\u001e�}:�\r�E�q3 �\u0001�,�=�]\fR6 h<�\\��L�c�\u0017݃���_<%L\u001a��!\u0012�EyGR:V\u0018.Om����\u001e�\u0000�=�Ea\u001d\"C��\u001b�19�b,YX}\fS\u00023�q�&RF�[�\b�Q*)\r\u001d���zo�ޱ\r`\fp�9ҷ�b\u0005ő���4I^v���n\u0005-J��[���#:����tH.u��w����V#0�ey�\u001ei�\u001f\u0004wr\t�5\u0011\u0017\u0007\u0017�F�9y� 7�\u0012%�9����\u0018�7�\u0017\u0002O���'*�M��Ѝ����Z�\u0005'\u0017{�\u0004�,����2��y�~\u0001յ��\u0012���A\r�\u0017���M&-�s=:�WV�\u000bv��=�*���J���p򠀟*��uS�mJ\u0013-��Z}����D\u0005��6_\u000bC�\u0005=��\u001a$^\u000f\b��9|VS���8�ʦI�\u0014_moW�\u000f�M2�i��h�t\u000e��au��\u0015-���]\u0007\u0012���d���i�\\���\nG�4t1v��׶��Z��,G�/���ӈ��!�I�\u000e���,\u0010H�\u0014.�w��w��)�P\u0014e����t�\u0014Ĩ��D���r\t;\u0006\u0014}\u0011�M�Ł����F�\u0002л�-��2ڣA\n�\u0017���L�\u0014�Ĕ\"}��v\u0011\u0015H� ���w\u0002��2?8\u0000f���{�䲨~��D�*�\u0005�w�/�8j�k�g��\u0012\u0019�\u001d���bB\r�\u0005=�0L��\u000b�|�S�zf�\u001a�.�Cl�\rc��`���adp]���٪�MȂb\u0010����p��H��\u0011�2\u00044B;;�\u0013��&��\u001ba䣁�}�(6s4H򣖐��xp�w�Iq��p\u0019��V<؉����Z��^�\u001e��g\u0016��ܒ�R�t���j�`�mt\u001f�\u001b��\u0007$��!lNT,c�u���p���E�(ā�.��\u000f}gJ��\u0010���\"4\u0003u�'��R�A\t�\u0017Ԁ�XЖ*j���\u001ek\u0012\b����1��\u00066���`��z!�]�qT\u000e�o\u0012\u001eb�O�Bx�\u0001\u0018w��M�\u0005*z\u0011Ɛ��?\u0014��\u0010)y�wPG5��m6�T��\u0003s�p�I%��\u0006 JW\u0007\u0018\u001ae��\u0007\\�z\u000f�i �\u001c�����̯\u0005�^�8m��\u0018%��\u001a�q\"`�׏Ĝ��3�\u0016�\t�\u0002����F�L�v�)��\u001f��\u000b�v�.z� �9^�\f���6�\u0013٘�F\u0006\u0006����}�r���\ng55dN����D�(\u0012\nz���\r]�01%~5�t�I�}4�*'q�_�\u001d\u0000��ߩ������\txe��]��@��\u0017���\f��VY��e�T�P'�ɾ���>Ŏ�U����peJ�hb��.�^7����A��o5H�$��r\u0019ۻ0�3��E��\n\rr�2��e��\u0013XM�7|�^��x�=��D��\\��V4�\f�\u0004b�.\u0006�cO�\u0000b�M��\fJ�u�����$9�V*\u0012/�uV$�:s��nwC\r+�u\u0012�~g\u001b\"�\u001d%c\u0016袔�|6�\u0006O9�Ѿzwk+��#��c�I�fY�X�[�h%?��4�.|p\u0010\u0003q\u0010-�z>��;E�n�h���G�謎�փG\u0012�\u0001\u0000n�\u0007)�W\u0006\u001d\"v~T��@��\u0017�����\u0011\n�B+�Ϝ\u0007�$\u001e�����\u0000d\u001a'�\u0014AJ�\u00068����H\b\u00190�[��\u0003L*|��C��ʼ�'�4�8a_\"�i��C7܍EYg��t0��k\u0013��Y�\bQ\u001b�箲\u0005��t5���p�ֈg&$�|,��rM�[\"��۟\u00141y\u00173|\u000b. :z�.�X\u001cIAN�'f��!\u001f�Y4�3�Q�c���]��TulWV���kH��^^?�&\u000fX�bv\u001e���KHI���\u0018>��`�\u0017y��EsUh�82��g���폼\u0005�p�K��DL��\u001e\r<�q�\u0005\u0004P1�*\t��A\"�\u0018\u0010���\u001eR0��\"d\f�[��2G�㒒�\"\u0001u�&�ū(��~ܜ��Z�1\u0010p�0\t��P�R9\u0000���\b��a��fpu�De$Y(*�\u001b���\u0002p���mi]Dj��C/\u001f�\u000e\u001f�\\}�J'\u0012�.-�N]�ǫj�+mB\u000e�϶�(r\u001a��&\u0007\u0019����Lj۞�k��N���鏕!�j��\u0013��H���w�V���<�8����}4ŋ���\u001er\u001a�엋�o�\u001a�����xB���(���u����\u00117���,f\u001aX^u}��-\u0015+Y\u0010\rSnA\u00151۩j6H�uEΛ��?��(<�Bx�{\b�̩�\u0019�o�W>�ϔ���\u0003dۣA\u0012�\u0018$���ɒ��IU��\u0003[%jHP�םS'.�[\u0007c\u0019�!�2�ъ����G�0nM\u0019#,{�j��՗��Z���r\u0003\u0013��\u0001��C�?5e4{n\u000fݳ\u001d1��C�L����\u001d��(�-\u0015\u0016��.�\u00103^�U����\f��\u0012�tI�fHx�tQ\u00192�̣��mb���7\u000e���SV�R�\u0006��\n�jd]9��\u000b�}� �F\u0004TZ\u0014�]vk�\u000b6�\u001c\u0019�J\u001b��\u0000��@6\u000bڇ\"�T=`\u0007�d�\u001fՐ\u0004����Xr͒��Fp`\u001c\u0005\u00033�,+��|�\u001e��_sF�o��~ɍ����r�5G��r�\u000bH����)\u0012D�@��\u00188���a#�\u001eZ�U�Gf3xJY\u0001l!S$��A�r[\u0014�fԾI8fT��=�DԳWD����@�d\u0006U���\u0002�y�����\u0019oӔ�d\u001d�\tSL`��{�h��Y*�\n�z�rC\u0005���u%�Tn�\u0017��/A�|>C/c��a(\u0005�2h*�T�\u0006�t�r6P$K^Y���!~��\u0003��x�m�\u0014B;�\u0018﷿�s�:Mҭ��H�5�m��֑��q/�\u0006��+\u0014ubA��\u0015\u0015b�̒����֗����-���\u0006�.��\f��ur4\u001fN�\t\u000f\u0010���T�\u0002���_��\u0007@7��A\u0018�\u0018L���\u000e\u0017�f�4j��wr{fƤ'�V�`\u000fs\u0006�p�\\����\n�.��]��\u0006Y��CI\u0004^��\u0015d)�S�G�8s�a��\u0001D#��s�?\b��֠���_*�4{`�ڵM�^����\u001a����TǷ(*p䯩%�Ux �8��\u0005���\u0019�\u001c�oUli�R|_#ȥ:�;n�\u0012{-\u000eB�z}���=Z)W�(�\u000b;i{�_�:�\u0011����Q�s\u0005d�R����!)φ�q�\u0000�$<�f�\u001dZT�\u0007F�i\f�3��\u001e4I91�\u001f�Z_dࢆH��}�����ԧX=hRe�����c֍31�3T�@\\���D�T�\u0017��ԣA&�\u0018`���\u0017��^m\b�D\u0002u#�vx�;؉ܫZ�S�p(���\u0015!\u0015�˜L�i/ߗ\u0001�\u001f\u000e����z�FA�|)&601pd\u0005�™�M\u0019��l��\u000fY��\u001ay�$v\u001c�-W\u0010\u0003S)���\\7v|��P��ɵ��w\u0018!\r� \"�\u0001�m���a9-ӏ\u000f���A����Y��R��QR)y�K���\u0001+�*0��z[�.�K�.\u001bAY�\u000e��&���^6gX\u001d���VH�r˺�w[�G�B��$�0�?�B�_,\u000f���S\u0014n��ri����H��\u0013ΆY\\74\u0001���+�9�~mi����\t�\u0006��k|���=�\u0014+��mb��B�\u001a�V�Y�$ݣA.�\u0018t���\u0017\u000e70\r�\u0014���^Fk\u0001ϵF؋aO �/\"��<\u0018\u0018x��\b��\u0002-���m'i2������COV�0�N\u0018�\u0002W����^��I3\r.9]PSJ�\u0017�\u000ff\u001b�7�\b\b���\u0006i�G��\bɃ\n�����^o(ؽ2�(\u0000���E\b�2X��l�\u00120\u000f\u0005/�TN\u0001��vbv��/7\u0003\u001f\r@Ĝo�\u0001d��Щy;�D������tP��hE��(��\u0019CCߊ-�{-c\u0010\t����)�'�~��<쒱i\u0019M�vI�3���kӻ{@L�ϯ�Kt\u0017�F\u0001�>L\u001cj�^����i8���#������[���;[\u0000Q:?\u0019�NP\u0006�h�\u001bl�9.�����~�&&�$�A#�\u0018����\u001f�`�\u0010t�5�0��\u0015�pf�\\}J�Q&�\"�����4�sB\u0004�5�\u0005\u0019\n�\u0018��d��0�U;^��!k���\t�Nz%�?r@�)773\u0012i\\2\u0013�q�_�dc\u0012�\u001dp\u0010@ZS\u0007C[f�{�p\u00194rދ�tI�EG��)C�\u0011�dY/9���A����0ij��\u0001z{��\fQ�Dv�S\u001d`\u000e\u001e\t�m�KЯ4i~��H�J�8\u0010���\u0014ص\u0010�\u0016���\u001c\u000e\t�T�?8J \u0017� A�z\u000ezH����\u000f�\u0015��.�f�P�\u0006�\"\u000fsij\u0003�`%���}�d�;O���%\u0002\u0004\u0003�\u0018`��붚�$%��E\u0014��w��x�6ʈ\u000f�+�4�f\u0004\u0018\u0006ߣA\u0016�\u0018���M��\u001c\u0013��ϧ\bbomD�k���9ezגl<�>.�\u0011)�7|WO�5��\f����<%s\u0019�M��uGB7���a\u000b�]{�\u001a>&8����O��\tIP\u0019�T8Z�_�SRs��.t��f\u001a~\u00037�[�\u0016�\u0017\u0013\u001a�0�}/x�{��g���\"��:\u0004��M^�TR\u0011+�`\u0007�\u0004�e�QѶ\u0007\u001d�����\u001d�UU0�I�uW�z\u0007��Zn�A��X^\u0019�\u0019Y\u001f:u�kk���6�\u000187�l\u0010\u001c\u0017\u0012\u000f6�\u001d�\b\f�u�\u0003�I�\u000fE���m��V_�o��t�t�FD�Z�KA.\u0001���\u001b��'����VO��+@�\u0010P<����A\b�\u0018���L��R�b\n�\u0014M<�]�+\n>z�F�h4̾����\u00063hW\u0014��U�!g�\f\u0005&�8��\u0006��H�+8L���\u0003\b���\rJSQJ�%`p�/Pя*�=q\u0002��2-\u000e���/Mh�.�&��2h��C����?c���B\f�\u0018Ā��{̹�=�\u0012������s9\u0013��\u0006\u001a�1�c�\u001fC\u001aD����j²�j\u0001�\u0000��F��B��N��[�e��\u00016\u0003Wc�k\f:Py���3�\r� �u�7o�J\u0019��������\u0004�#0���P\u001a\u0003�i��K\u001d7Je��$�\u0004'c1}��\u0011?�>���%\u0014\t����*����G�rǀ>(\u0007�\u0019�\\�\u001fր��^�\u001c�@�8�\t>,sэR�d�y\u001dH:�\u001dęF\u0012�G�;7�\u001d򉚸\r�8:Sr��4E>�z?��\u0004��BLfY�1vCF�`�i�\u0013�~n���f��\u001f@�RO\u0018\u001b�+[i'.��r\\�E�T\u001d�+���ll�\u0004ѽ�\u0003N�}vF�1\tu�Q��R�\u001b�8\u0017�\u0012\u0012���dmy4-5u�\r�\u001a\u0015��\u000b�������T��$�Rd��IH�h��O�\u001d�\u000b\u001dD�HʴEq],�/��\u0004'ԺyR:YڳL�{E�uT���\r�h�\u0018Ж\u001d��\u0005�1ve��L0\t�\u0006\u001bF^k_l��>�K��\u0010i\u0005��\u0002�P܋���cM]��-�׌9�\tH����F[̮�\u0014�\u0015�c\u0006�o1�طؗ]�c�\t B�zr�����f@'\u001f��\u0016\u0016�+�vR�G-�dr���$H�m/8�ZRn�@�\u0018؀��m�;k�AD��-�|�\b���.�\u001d���\u000b�ǕT�#��\u0019�uVEDAD�jr�u��\u000b�Y0����k2��IϑF9�9rM\f�\u0014i\u0011ӊ\u0019����W\u0015u2�&�G���*A\\�T�\u000f{m�@a��D\u001bͩ\u0011B�\u0011ڋ�\u0002��*�I\u0003t�V��/�)�\bC\u0001�������Y\u0000�0�D�\u000bo:�<��j����{�O��JV2\u000bc�`|\u0015�s\u0016��\r\u0019a�\rβ�,��v\u0011�\u0015\u0003r�N���\u0010���Pm?w�̍8NCq\u000f-��F,�\f\u0003��P�A\u0000�\u0018���m�y��$L�O�孨ät�\u0003�Ϙ\u00145�vI32hR\u001c�-=j���B�\u000f԰P�O�\u001e�� \u001e\f���֙u�>\u00003\u0005%��e[ב��\u0010�\u0014��i���U7�Z�����hT$u٘?AJ\\ք�\u001c�b�~>�t�B܇h&+ԫQCM��{��iĜ�=M5�\u0019\u00164M�\"\u0013O9-,����\"��/r�D?6���Jqq�V�t�z���K��%h�)ȷ�����\u0000�\nZv��Sؒ\u0016�\u001b�̦�\u0015+��Sƈ��\u0017�k\u001c��|>W\u0004!x�d�h\r�l�\u0013�>��+�ңA\u0011�\u0019\u0000�����[l\u0000V��u�i�\u000b��\u0017%�`�f\u001a{\u001c�{�\\����!DFX�(�c\u0007���2�Ű�~/0si�\u0019E�\u000fG��\rP\n���\u0013\u0004q�Φ( �:n4�\u0012t��O�߾d�Zg��\u000b����ޞ>�)K�}\u0019�Z<׃���4�s���k�KS�\r���\b\t\u001a�����2��;SL\u0016�K�\u0018���\b��\u0019T~Մ���]�`�|�\u0011nU�Ԝw���P�-d�7m))�G,�S�\u001b�/\n%���\u0015O�L�|�K^�.m��1\u0013�K���\u0012�?0 H�_�\u0017a����U)8ڴ/�9~�D��\u001bGX\u0007o�)�����A\u0001�\u0019\u0014���縞\u0017\u0002�\t��\"�D��\t4���$�.�\u0010�:P�.\t\u001c|x'I$�\u0002�V��\tn+\u001c0b���+fz-\u0006�����؍&�qyQ����?m�����i��f\u001b�]��f[$�\u0005d=�����g\u0017�v\t�%��;���\u0001�\u0004�#[d+2�,\"V\fQ6N\u0018E?��A\u0018�Fd'W\rZ��&\u00122.���4��֧R�c�\u0014=�\u0006'�\u001c<\\h\u001a-œ�w\u0012[�2x��ň�\u001aP�_�פ+Hdt\u0018��\"s�W\u0002�Ӗj�����9t�T�+���\u0015?t�?����m�X��xU\"%x�6УA\u0011�\u0019(����m��$(r_��e�'b���x݆��<�\u0018z����=��ŏBf���U��\u001e�LH\u000f�ih\u0003�a\u000b��\u001b�?#�|��\\\u0011\u0000�9�G[\u0000��y�}i�Z�\u0013[\u0003��\u0004�*�\u000b-HR��MC�e}A�ըɽ\u0000�atCY�0bO� ]\u0006�(���=o\u001d��˗>�\u0013\u0002!\u001d\u0019b��l'��\u0016�V�$��]��\u00035]w����V\b�dը��Q�^Jq�a$�S<��b�����4���W�R���1�?����\u000f�ɘm��\u0012_R�ˋ\u001f+{���6\n}�ϢfmZ�-:��%f萚\u000b��e\u0018�R�P�A �\u0019<���v��UD!�\t'2vg�\u0011;\u0019iRυ�7�0W��=�\u0001��\u0013\u0002��o[RL�{\u0016;`>\u001b��,0�\u0013w����3��\u0002\u0007\u0005���'�la�\u001f]����Ҽ�O��_�Ġ\u0001�J�2\r��\n\u001c�I�p�-����@5E�ZsR\u0000�>�P�A\u0015�\u0019P���ٲ��n�`\u0002����j\u001f/���g��*\n�a����\u0014�a�\t}�\u0013��A\u001e\n��I*�\u0017d\u000f'\u0016�a�U�@E�'Hu��ey�j�\u001e\u000eb�t���U\t�Ç\u0001c;Hp(��NWO�S����#��]��[A¥��6���E�V�S� ��p\t;g���|�ؓ�W��Ѽ�Q�p9ĉL\u000b兢��\u00055z��\u0019��\u001b\u0000��Ͷ�9����خ��b5fb�Y\u0015`Wh�F\u001e��h;XF�r�\u0005�Ԛ�mu���\f���\u0004a�5�[�9��\"�/�\u001e9���2��T����v�5����\u0017u�^���\u001bP�A\u0013�\u0019d���\u0000։u�~�����5A�˂��⑧f\u0011j\u001c��\t�\n���\u0014\u0014�\u0003�D\u0005sP\u0011I�XJ,/�-A��WP�����Y�y\u0001zD�_h��_��\b�E)�8�5%�����f\u0005������U�R!#Ƥ�\r[j�T\u0007�X��r�k±���\u0000�\\Iw�Ͷ��f�N�}�����\u001c�_\u001c\u001a\b��3/���c7s)u5)W:\u0000�9\u0019Um�o����*3���u7\u0004���t��08(�~��F\u0005��]#�\u000b5��8�5�YY��\u000e\u0007*u�#���T��o���ݞ�\u0005�\r��j6�\t�\r덈o\u0000�\u0001\u0010�kJ]�����@�A$�\u0019x���Ԃn9�\\��%�)܉vߠ�\u0007/-,�=7�\"�����\u0007)�\u0007�BM}hL�U!�\u0013�\u0013hMꃏ�M�9\u0012\t٭�jx\u001f���{�\u000fL�(-��<�E�L̕/h`\n��6(��\\�lˌ/\u0004\u001dFaҺ%MV�ma\u0012;����\u0015\u0013b>�\u000f\bQ{�\u0000��\u001e*5��a�\u0006�\"�Z��N��\u000e\b���1�ʲ��+����\t�JT^7���aye]|\u0005\u0005��>�ۥ�RUc\u00164\u0006ER�\t\u001b2_��V-ַ���)QƔ\u0015�/���te!���7�\u001dl籪�r\u001f�3��\u001e�~�p\u001f5��w\u0011o�0%�*��ǀM5��rO�^`\u0014sVqBjnD\u0004�E�_֠�A=�\u0019����m\u0007�a�F�͍�y���GJ����]ճ+o�4��8+[�J\\�f�\u0003%Ɗ�\u0010�OQ�>\f�C\u0014���E�i\u0005�%�\u0010uIcv\u0014�)\u0013uGZp�\u0006�\u0018Mω*\u0003%|\u0016H�tV\u000e9q~��q2�\n�\u0013mj�Q�nL��r��2��3�BKo׼j؛�g&�� �]��d48(�\u0019\u0001��\t���{\u0000�顭�uO�+���>�c��H��U�c�\u001c\u0013��B\u0007l��\u001ctXR)�\r�\"[[����O���p\u001e\u0017_�:�\u0016��ψ�E�3�lA�&aՅ�\u0018�P4�Z;:�6O�P�V�v�zh!�Db�7\n6\u001d\u0003LjcV��\u0012jZz=.�2Չ,Sx\u0019\u0003�\u0005\u001cPik\u0006�\\��o�\ft[huq�M��#md���A1�\u0019����!�ݞ�3�뽮$��W�A�\u0007�����F���^J�\\�\u0007y-�^\u0012!g�.�@�;���z\u0005\u0004\u001b��!��\b\u0010�T���,\u000epO�B���Qm\u0018(�\u001a�\u0014���:t�C\u0016�\u0013u�@�\u0018˷X*��l�\u0003�7i\u000b��94ҏ��H�\u0019�ɔ�4��i ?E�Z��^�5�)Ȏ\u0019If�<4\u001d\\I�?!�t׏�i�G�(Յ�,�\u0019�!p��J6�Wj��=�E���\u001cӥ�'��\u0003��ߚ�-����:h\t픇ܼ]\b���>\u0013�%\u0016�v�i�O�s�6w8(\ts����{8.�Il3�\u0011E\u0013T��4�\u0017\u0003q2G\n�\u0012֬�6�=�E1���q�f���N\u0001I�_��B\u0018�\u0019����Q(@>�h�j��ŚZ��1B��j�-��\u0006G����u�a���;���W���\r\u0005\u001f���TJ�\u001c��c�-,�\u001c��x\u001b��\u000fw�\u0012�]�12qV�\u001aJ=\u0018�\u0002�;��GY��fYMF�b��mx>�-�q��)\u0004ͩ�\u00005~���'J\u0010��4$�\u001d�\u001c��^*MH\u000f\u0002-j�\u0001/\u0004mz��\u0014�<��5<&ؼ��\u0012\u0006\\\f$Vza�\"\u0017cA�_.�(�.\r�2�<+�7�\"�mW\u0018{+nZ\u001bxi����c:�9v\u0002*8.���T\"�+��rA��\u0017���v�W\u0014�*\u001eF6���\u0016\u0010��s�]�o�����\u0007�\u00105�\t��\\�\u0005��\u0010�;\t��An�=Ը� �<'rP��ڪ�VyN)��\u0017E���l^�\u001d��2=�9�#��A)�\u0019Ȁ�L� o�8\u0016��g\u0013ƞ\u0015��ʎ��%��b���wg)/g\u001b�=��)��R\u0007)f�\u001c�6p�ꁉGXQ��ۑs��\u0017\\T�H\n�\u001b���%��EtE�΄��\n���_\u001b]\u000ef<8�\"lO�n�Yt�v�?��H:���W�9FR�1=�\f\u000f<��\u001e�t��*y\\��`�\u0015��;kG��U��ʋ��\t6\u0007�\u001d��:�z�E.�2r\u000b{4\u001bc�߱�\u000eq���\u0013\u001f��:c�k�z,�F��fB�6\u0011.�\u0006{�x�aQ)����\u000b����%�\u0017cZ�u�z��e\u0010SEP��_�oO@�kĺ&]g��!��ɫ\u001b9^��\u001eJV\u0007ގG\u0000��\u0012Z=\u0011�A)�\u0019܀�X�s7��\u0015]^���:\u001e&����옮�^4_%�~����ȟ׮]b�\bt��D��\u001b�n�s�d0;M�n*͔?���\u001fX�E�\tX\u0014�2�^k\u0003�z~�#\u0010+���u�A�ڷQhL`\r�Q�\u001c�\"�ˆ\u0017\u0002,��\u001e�(�JP2��'�kn�Lm����gӅ�j���u�\u0015����\u0016�`0~�ߪ\u0000�rSM�XT`�\u000e��\u001ee��`�ӭ��>\b���s�eO']�?�\u0016�L���{/�Jl����8���TUw|��`՜>�\u0003Ћ_�.D!\"�FPVY_\u000bV�u�O�:b\u001b���Y��\u001a[��\fq$m����t���E5>���\f\u001c%��6$ժ�&ɣA%�\u0019����c#�e��\u001b�\r\u0002F2�!��\r�+���P\u0016(\u001e�\u0014\u001e�\u001d*m�a���se�2�f�������.����C-;\u0019DH�\u0007�5�x��\tHϖN\r+j�S\u001b\n.�޽-V�f>g\u0012r��F7�|�ؤ�娻N�N3<)�\u000f5���*�Zڊj���[3l��\u000fJ�1\u0002����\u0017�ϰ�� \u001b�&N�G��2H?<�\u001e6��W\u000bZ�ń��k5��Ύ��S̗\u0004/���j�Pi�\u0007�\u000e0h]�P$�uѯ�9��<�\b鞊)�\u0019DA���Og\u0017�CFOW�]���-��kfa�kn����\"�P���k9\\�\u0010\u0011����~�r\u001c�چ^�\u0017��A*�\u001a\u0004���\u0016gx��\"5�m\u0000f\u0016\u001a�\t8�\rK���R\u0011�\u0019���]\b�v'wŌ\"��1I|�3\u001d�}��D�jV��\u0007\u0010��\u0015���^g8h�~�w��Aٯ�\u001d+�\u0011T<�&d\u0007X�\u001a�oEXf�Cp���Ʃ�/s�B�R-�X�)��v�+��|�=\u0018�6���b�.~��E�\"�\tr��\u00053��\u0001����X�\u0004����\u001b}ꛦ���>�&:R\u000eZ��)T��^�o<�ᇺl��\u0002�\u001dlna\u0002c��qv$\u00161����\u0002Q��\u0005`�z`\u001e��\\z\u0016�+\u0002M�䔻R�t\u0018���ԡ���\u001cU\"���Q�\r��΂�G�S\t�#��#Nk\u001aMLq\u0006^�\u0002v����)\tT\bףAŁ\u001a\u0018���\f��y�\u0015L�L��!QjVC��\u0012�_\\�҄��͟yJ\u000f{fr�z�\u000f�]S�\u0011�sa��褌�����A*M�Rd:�\u0019��\u0006�\"����Pb�\u0002����+�6z��+���\u0000�j\tAod\u0014��O8�|�S�\u001d��\u001e0S&��+��t�U���\u0012Y���Xm��@+��j48(}�B�}\u000bi�2�\u0006]��\u0014�*ץ�m�4+�z1�c5O�MO,��2��t\u00160�s=ރ��\u0019�A[,��\u0000���\r_���\u0010:�\u0010���Z��\u0012^kl�j�\u00190��\u000b��zLJH�g~���[|'{Ea\u00016\bA�=;��3j茜��ή���>�a��*�\\\u0012�)&�!���<>+)��\u0014\r��N�����Ywx�n�3�޵Oc��`\u0016QM�\nK\bX����؈\b���vD>�=X�\u0019}@��U�@v�Y\u001e\f��T��¾0,\u0010\f\u0018\u0016e�}��ƶ�3��w↣G���|Q*1\u0019)�P\u000bj�'�\\��\u001cG\u0000�#\u0010̮E�Z�_�\u001b�G�ؖƥf��5�\u001c�a�%.�W����i:rյ���;4sDKY\u0018Cs����}-\t�,l�\u0001bl��s�\u0015��\u0003l\u001c^\u0014���%�6�\u0011ǯ��G�!z�ʣ�\u0001)�\"ذ��{t�l@�����\u0017���Ή\u001f�|�'=��Ί�e��\u0007\u0007%&�h�ό�T#(ʴ�s�\u0002\u0006\u0016\u001ak��JO��ak\u001f�\u0019\u0006]ms\u0002:X�E[��n�J*H@�L�vz��ٝ6�s��\u000b}�O\u0017�T�S�\u0002\u0016Vx�5[�=�<����M�\u001e�Y\u0018<\n\u000f\u0003\u0013�e�a��\f\u0006��\bL���\u0001�*\b����@�t]�^�R�A$\nɊ~>~�\njl�-�3��T\r�(��\\�~�\u00065܌5�5��r�r.\u001bZ�\u000e1��uzw_��ٳϾ,�W��n`-x��\\\ri\u000e�h�&��\u001d~L�5s�T\u0010�3\n\u0005��\u000f7�m����\u0014��S��I~�\t3�A=�\u001a@��Lø\u001a���ś��ˉ����u�\u0015RA\\��^���^\u001c\n�\u0013F���|�،�nE�do�e%�=��*J���v�����\u0018y\u0017����\u0015/��;���33{�a��F�����\u001d�a�#@\t��o��Qtq\u0000Ѵ-\u0005�P7��� \u0016�\u0002C,_tT�\u000e�Q����\u0000��f�|\\�\r\fp�$3�C�����k'\u0007�p�-\u000fF\tF����\u0005\u0015��\u0002��`���\u0015e'\f����,(�\u0017\u001d�{�o�!�Ҟ*;�t\u0012�\u0018�\b2�\u0010��\u0003���v[\u000bq\u0003�{0�~~h��j�\u0017;��,j���Rj�1�m�����fP��a<���(�()��U�W�H$��\u0012@z�9��\u001eo�y�#l�]r]\u0006m�tqU\u0015��AO�\u001aT��Mu�vQdDfR\u000f�:��6\u0004�\u0017�SD-)�O���g(������Х�O�����ÕP��\\\b_e�h�*��ߟ6���\u0015�߆Sz\r��ݶ�\u0002��.�ۘ�\u000e�b>���V�\\(�+����?�7fOP\u001b��M�7#�X#PQB* o�T\u0005}3K̢5��o\u000f}do\u001ee!\t�\u0010��Wڲ\u0011'�׼�\u0013w:��=D@�����A�[���O�y�\u0005���\u0019������c�\u0004\u000e\u0012��#�q?��ua�i\u0019�G\u0019�weC��R\nG�@ \b�S&�/�y»\u00036��=\u001f�5�]�\u0000N�ы�=5��q\u0001\\�\t��!�>\u0007]���\u001aޟ@L��\u0010\u0013\u000fY\u0015�`!.�к���/����G\u0018���o>\u0015�\u0000\u0001p��8j������\u001b�AI�\u001ah���¢��,�\\��waV��T�\u0019���8:�Om��T�\u00055a�P9ڿ85�������f�>9;=��o������X�ȄN\u000b\u001c�Nܹ������\u000e,?t߫�8\u0012��ƾ$/;\u0003�M�|kV&J\u0005�b\nn_\u001f���\u0014���1�g�)���tW���p\r Aa���\tB�\u0011\u0010�@�\u0011^�'M�W�)Zо�G�h3���\u001f����\u0001�\"l�A��\u001a|��|�C�1�\t�2����)��u+bg\t�\u000f�Oݐ��5\u0014��A\u0016)*y\u000f�2Ͷ�G�_}!\\��ӿ\u0016��Ft���J�\n{\u0014��\u0017��Vg�\u0016��K̀��\u001d\n�yG'ɲ�x�MU\u0000M��\t�5\f\u001fk#kȻ�!����~БK�k�uK�}�\u0002����h\u0006) �+&�\u0013�\fq��\u0016�X�!��-W�<ÞG���]��n�|�=Pk���\u0005H��:�*�\u0017�@胗�2g-��n\u0014�K�9A��N�\u000eB4�{�����&�m��Zpl\f��\u00012�ߕү(�H���Ao��ˢ1S^4\"�\fR5��\u0015\u0011~?�F���tڍ�Η�����!RZ�%��܎<��R\u000b.��\u000fpF>`\u001e\u0001+�Kz籗\u0002�K˲��Y\u0006�\u0017ZRq,�\fJo���\u0018�\"W[��\u0014���D/�����&\u0010�\u0002p�N��G\u0018�=��Q%�NЩ��/e�ů����\u000e������]��<�޽\u0002��*�i�c��]�ċ��1�\u0010If�c\u000f�U߉� ܣA8�\u001a�����\u000b\u0005\u0012D��:\u0016C>���b�c��7=�!GT\u0007ܢ��d��02+q�@��ż�-G2\f�Q�ڹ3�I��8�w;\u001a��30�\u0019����(�֦_��\u0002y�\u000f�qp�u\u0006��\u0006�lQ�P��ضMf�j\u001b�C{ȥ�0\u0000�`]�^����\u001b�\u0015\\ڍ�1!2hHY��CH����&��)�\u000f\u000e<��U�ߌB\t�\n��\u0012\u00156��\u0002\u0018��\u001d0�\u0012џg�G\u000f\\�v!j3��ɨx�4z�g�9\\>��]�=�y\u0002�g�P��~S��\u0018��m�\u0015�\u001cY��\u0003�‘v��-kn�\n\bx�#�\rG���=[A�_l\u0003�:�\\�_\u0017���������r�Ԋ�\u0005�:�\bh�{\bO�XX\u0014�$�A?�\u001a����\u0011�CO�\u0011Eh7\fuq���\f\u001b%�\u0012�ϕH`�׋�\u0007\u0006��.șNޢe^�܃�d\u0001I9�{r�q(c�\u0005P��;�\u0001�a��Z��Z\t��pf�D�a��\u0012��=�cRՁ��\"\u0014w�uǘ��\u001e�rqj/���\u0012�:\u000f�\u0001h\u0011\u0014d��k$.c�\u0006/hlfQ�x��\u001a\tM=\u0014��~b-��b\u0007\u0013tr�o(WhW�)�y�����pKZ���¹z\u001aUowH[|��\u001e�YH@w.�2\u0007m�\u0014\t}�K�}�\f������5�U�:���\u0016�\r\u0013\u0001�Q��\\ɪ\u000e5���C�Ŭ����^\u0006#�Ga�[\t��7Uh\u001f�s�\u001e�\u0018�3&A���jͺ�Sm.������E�\u001a㴺C�\u0002K��z��?�l�g3`�\u000ftm���+\u0007��ƚJ���(I��L�q\u001a�ů�����4��k�4�����{w|�e����N����\u0015lv\u0016�i���F�{�v��\u0010�\u001b��_5~�;R�q\"�D�D�ڼ�\u0007�ۊB�#�/#�7\u0013yd����r�3�\u000b\t}$�\u001b\u0018\u0000:J�\u001e��m��#�|��1�:\u001bu�x�\u001cA�E�\u0011M\u0007�\u0005i�18�{c��w��(٘{0��̐g>gՋ�������ppY�`�oۆ�y��v:5S1\u0002�a\u0014O\b�����ϟ����S\\\u0019\b\u000f�6u��\t$�/A��@�3\bm��2�*v�DFض��aЯ�\u0000��9_�H�����ۣB\u0006�\u001à�}�\u001b�\u0000�9ڐ�6�r�炷\u0011D�\n�\u0006�\f���\u001fVД\u001b��u���\u0016҃A��\u0004\u0019���������=\u001a\u001e��\"?hZ�����\u001fh������\u00025�\u0002��Q�Ԗ�\fqJ8G޶��\u0000۲�Ρ�\u0001ʵU\u001a<��S��\"�����|��4���\u0013Jj\u0003�\u0018ħ%��6GҜD \u00132�\u0015��\u001b�\u0010^�\u0015�����\u0017�=�\u0014���oS�\fp�S���H���\":�\r��t�}��Ѐ(��W\n�q�\u0003������|��=�E\u001c��'\u001f�Wl83A)Yu)n���ye/?{2�\u000b�*�?�C�]�̧�$��J��6��cA\u001a7\b|L�����tM�E,�\bu;\u0012��H���\u0006�\"�\u0000Y�\u0011\u0016K��:�Z\u000eݸ[�\u0005\u0003��\u000f��?�u�V����\bd\u001e)��\\h�s��c\u000eu�յ\u0013࣎m\u0010\u0015‡kM�\u0001�ޑ\u001d|\u000f�9�\u000b\u0002��Ł����\u001cROfS\"��\u000fq\u0006�Kr�U6��йCf_G0@���M���?0?I�wc�쐼$���Dҳ[���E;�\u0011�$|PPB�DD򘦔\u00164�E\u0003�����\u001eÚ���]#t\"m�y�R�j)��3�͓z�\u0012?��_���\u0000���ӣA\u001a�\u001a������0��50i��^n8�*���P\u0007P��=\u001f@r!5\u0014XhzM\u001b/Ʊ�\u001c��� t\u001e\t�K��{��6�N�\u0002��A�z\u0016���Đ�$o��E\u001c�X\u0017̎�\u000f\u001f�ì�\u001658y\r\u0012\u0010@��n\b˥��O�|���^�\fMݽ{.�X>.�|K�l��gs\u0011E�\n�kT`$+J�\u001d�;�Y\u000fZZ��C�^����<�\u001d��bL�YAr}���D���\f��p�aD\ngwO\u0000\u0011�ңAY�\u001a���v��\u001f~�\u0000\u0002&�m8�Z�݉�%@�wN�R�]���\u0002�X�Ӟ�A\u001cv�;6%z\u001da�M�8H�pi�sۄܴ�\u001bBH��K�\u0004���\u0000�\u000f�7��O�j\u0010�Y�p�fT\u0003IH��&\u001cg;�1�.��ωÚp8|\u001e��3@)��#\"�J�QW\u0016��\u00008\u0012��}]\u0010r%\u0001�Dt�$�͸?��471��vœy��]\t��m���Aa\u0003�E���#\t�@�\u0002Wk{��Wp�݈\u0004�3�+���\u000f;��\u000b�\u000b���-���P��8\u0007W\u0019y��4ëd~MXy��Y�\u000e�J��Iʒ�\u0001\u0003�_�`�}���\u001a+����\u001b/�\u0005v�e\u0003�� Q\u0017IΉ%պ\u0005ŷ�q�F\\�u�\u0012�e�l\u00076��\u0004+�;�eݽ�^��l��m�oM�3G\r���@�A*�\u001b\b����yB���\u0010�\u000f7\u00040����z��r��\u001e}Bb\u0018ٷ�{�v9{\u0001���r$݁R�p�&�U�_��c#M%�����>OPt\u001e@���F�׍�7��IJY),�$3:JS��VE}x\u0016Oo�?C�,��\u0010碱c~�I�\u00141g\u0000i�1�PLuӅ�ө!���T\u0013[{�]_�\u0004Ɨ�t��a�����<�p\u0002����\u0005\u0010�L\u0015�5.$�C�R�\u001c�þ\u001d�u�4U�=\u0012aG��\u0004�z*!B��\u000b����\u0017<��\fd\u0018���A�-N$\u0002�\u000f\"m�UuNk��\r\u000bu��d�����6Yn�A�N�����kc<&Mx׺�l\u0005\n�\u0007�\u001cO$��;Z�\u0019�*���O4�,\u0012&\u0013��@��x\u0001�.��7�L�G �X�5E��A0jp?���\u001b��a��C�{�;q�# �V��-�׻�|(C�˧O�-2�Z�\u001bZ��Q�8wlOq�z���`�H�����AH�\u001bX��L�NT��b\u0015���7����#��8\u000fSH\u0002�D��/,9,�f%8m�\u0001.`�\u0012�`w�Q��D�9�Db�w&��V-�1�~v�\u0002��y�_���g%cF�\u000fǸ\u0003�{n\u0019\u0015\u0016�.\u001e~+�J�|]Ͱ���V\"�\u0006[��@8G�/�!q�6\u0010W�6$�AG�\u001bl��L��,�_�\u000f���`K\u001b^Do�I>x���\u0012���˓h\u000fs\u000f�s)�N��d}\u0015�8�È��-��\u001b��]G\"�uJ4Ya\u0014�T���\u0006r^rU\u0013z!'��u���r�2C�I�\u0006���\u0000��\u0003�-�v���/\u0019$\u0016a,��\u0012k�v[�\u001e\u0012�\fw\u0007m�(t3��l�T��k\u0016F3�\u0016j�g}��b�����t��8\u001b\u0012��*�G�Y��7�\n��t���y��\"\u000f���Kr��;צ}��\n5\u0014.��R��|�M6��z\rŠ�p�3�|wa�\u001cL�\u0005џg>q�\u001f\u000b�5 o������4A�\u0004\u0012E�n�a]\u000f�{p����¼�c����W�/�3F�SFF\u0007�&NP��yD��99Y�7h��\u00047\u000b���]K�B�vɣA�\u001b�����TrQ��见Tr��\u001f��\b,��Qo�ګ?�2�\u0018��\\����H����7\u0015������p�\u0004�R��ʧ`f��'.c`p��{%h�Cy�d�ً��\u0012g�*v��T/\u0003�(\u0005g7����x�� #l���\u000b\u0010�F�G��ͨ�����`$^�bim+��M.l\u001e�� s�;\u0010kv]��\"�\u000f\u001b0D\u001fį�݅\u0014��Q�g�n�/D�r��b���6�A*�\u001b���L��N�;tF�\b\u0003��� \u001a�3<��mx�\u001dz������\f�׵�]��3�f��\u001eu1\u0019�V_\b8��qD��@x�=��\u0003\u0002�#\u0011�\u0016/��Hҭ{؀�\rb�_3e^æv�qQ���t��IU�\\,5dq\u0012\"��g>�,\u0010o?\\\u0019�m�r1Zv'�&>�\u0011#�\u0003�\u001e\"jc��,�Į>F\u000f��u���\u0016�Iޕ\n��wXF�wX륶���B��@A\t\u0001{$`�Sma��`.��n'�A�\u0010n\u001f���\u0002\u0004I����5��|����:ݪ.5J\\�\\�k%�7�\n\rݥϬߡ�I�!�\u0012\u00124-����.�Fo=v��׈h�%'J��3�θd�X��\u0003\u001bk�H\u001c�\u001a�����9ρ��@ձ��ހB>+��9o盨(�'��.DQ�\u0007���I\u001e~l����Ƞ�3�O��\n����#j����U�lgl\u0007�KW���ĕ�T�\u0015��d|\u001e�Nӎ\u000f��<%\u000f\u001cIZ%\u0007��|2z����-T�M!��j�`�{΀֎v��\r�b3rf�\t\\�2*�\u0011;0��Y�s\u000b�bZ\u000e��МNJ%L�c��\r�njA��R��n\f\b�@{��B�\b��TB\u0019���y�\u001b��MB��\u000b��[7\u0007����;\"��l��BE\\\u0014=n��(�G��s;'�tu��\u000e�@�eQ�+gw��\u0011@�-�+�R���Hmu\n��A\u001a�\u001b���1�YS�c�I}C�\u0018#R�\u0005(5��Z\u001e�\u0011���H�\u000bU\u0001\u0015ԕ�\t�&���A\u0006�YՅ�A�GU�_e�̵q7\u001d��S����O��c\\��ǭ��1��\u001d\u001a��w��@�\u000f�(\u0017����끞X\u0006\u0007���n�4p�L\u000e4�(��'B8�\u0001�s�l�1\u001f��\u0007\u0017▍��(�\u000b���\u0000k��F}4\u0000q+\rK\u0019\u0007���\u0002!|T(]\f��\u0004]�\u0017QaX\u0006�i3�\u0007��^���� ����g�\u000bua�\u001bb\u0018�\u0010C$\u0002�ĩ�Y\"��\u0007�um�Z1�����;�Ҝo\u001f�ʌ�p%=�\u001fo\u0003l\u0018\u0017��ئ�{Ϳ�D� \u0000N�F����A\u001f�\u001c\f��L±6E�k�}���;�H�\t\u0004\u0014�Z�AB4z�'�n� \f\u0002�\u0012��\u0017\u0002\\��V\n�*�\u0003~kR>�z�0�6�`�xiq����o\u0014F�iɐ\u001d)�\u0014��0�<(\u0016M��\u0018�Ce��u�6G�q\u000f�Pr�Ņ�Pwg;�\u000b�'�u��l_\u0002\u0013kù�\r\"(�}�J��.���\u00136����ݡ�W|`�\u0019����b�����ݕ��tJ)\fe{\u001e#:b>�tS�%KJ�J\u001d�t7��|�\u0001p�(*@\u0014�fy�ګ.\u0006�$G]\u001dV:�I�\u0002d E\u000ekYLThD�2��\u0010i\u001ddM�\n �\u001cO�\u0016�Z\u001f�I�o�_�$�O�l\u000b��\u0001��\bƉ�A\u001b�\u001c ���r�G�N��6\u0000r@B�_s>j�2ŵzLCdc5��\u0019\u001f`Q� ITnP���E�b�`G�J-v��|Q�d\u0017�/L�\u0015��N\u0019V��H\u00164Qz�$\u0001�!P.y�\u001c�\u000fi\u0018�eMm�O.���і`�\u0007��;`�\u0013Bфf���0�&p�\u0000n�/�sg���Z>��\u0000\u0016��5�!�\u001b��ϥ��z�G�,�A�\u0004�]�^D�(A�\n�\u001etS�w\\�tϤ���`\u0015(g�6���\n�\r�P}�l�諰�x\b��o\u0017Lq��\u0018���O�\tE ����`������j���r��ON\\Y�H���҆�Q�G�߉�x\u0003\u0002@���A\u0010�\u001c4��6x1�\r1�T�}�Ńi\u0007g���9��15���o�\u0019\u0001�����Px�h\\fʫڣ��,*�-��\u000b�\u0004|�V3x�\t�\u0007���G�p�����\"�V�\u000f�\f�����Њ�W���\u001fA��X\u0000$�Lʚ��Z�\u0015�?,ś\u0012�\u001a����\u0006]������\u0015�\u0001�!$��P>�z\u001c��K���mc��]~�c�i[�#Jۅ��M'����[��X�\u0016yN�\u000e���\u0004\u000f@]\u0018�aT�?;�:�A�9q�%�X�E�<��Y�\u001b����y(��d!��n�A�\t�\u001c���fT�,�K2����N�\u0005`3�\u0017�]ǣA\u0012�\u001cH���b[��P�FS1�K��yX\u000b�}[{�P�s�\u001c�1ǰ\n�P\u0002�S'Ay�#�\u0015���\u0017��\u0005\u0004lp\u0015\u0004\\ཅO����N��\u001a�q\t\u0002����]þ�0(�i�D\u001fvϥ�/ݼ��ţ�\u0011�S�\u0010*�U=��J�熁�P8\u0005_���ГK�'�lDc�XI4e��9\r�$!a�\u0001��\u000e��\u001c����nȕgE8�7�H��U��薤%�Z���iH8Űk�����{�y��\u001b,G��������u�Q U&�mc�u\u0004�\u001e>/�(TZ����5*�͠�F�4���g�����bk����4�~�j�p+��9�A-�\u001c\\�����\b�!�s0�O��\u001aw@�E\u000bT�Y:Tz�\u0016�`�M�{��FQ��Ϗ�ٶɂܯ\u001c�\u0003��{\u0017��\u001ce��\u0005|�1���K��\u0017��8�\f�\u001f\u0001�\u0010:\u001e�a2�\u00178ϴ?l[���CV>\u001ao\u0006\u001aX��+���`S\u000b)u\t\u0010Еlc�;���K\u0000�\f��N¾�s��\u0010��L��\u001c(\u0003\u001d\u0000��H,�9��o�9?��)�˔�FH�\u0001ꎑ>Y�:�A�5��yT�J��\r�J${�\u001a@.�O�P=��\u0007q�˱�\u001f1��qQ�)p�H~�Fe���\f�\u0012�n�h(\r�t����Q�\\�\u0010�Y���\u0010\u0003�&ͻ�\u000b�Pm��6\u0001�8j֔�\u0000�>�E\u0018�9�A*�\u001cp���\u001e�����i&���#H\u001e�\u0005p@߱g4�e��p��\u001c�v����\n���r���N)!'\t��&QX3#K�j�`\u0011[W���n�F��h���9��\u0006\u001a0�\u001bmw�@s��Y��C��!\b��\u0011�/2.����5s��ՒS��LHk�f8�4<�QK�+İ8���\u000b�\u0005��t�-6��B�p�s��Qٯ�b��4����4��\u0006�^��_\u0010����P��[j�e\u001f¢�p\u001a����y\u000b)��a�Y�6\"��\npw\\2�E�B\u000f+�\u0000� ���g�Hs\u001a!�K�\b6���۬��R��ԣ\b�\u000e7 !D%\n'Z\u0001�\t������&�Ǵ8D\u0004���Hn��A9�\u001c����l\u0012�\u0016\u0016�TS���i\u001d����}��CP���\u0012��'\n�\u0001�\u0013>u\u0018\u000ez\u001f�F���\u0010(�@)�\u001a� )\u0001\r\bE�\u0004�\u0014�3{yW��\u0016\u0011�\t*��g�1�L��y}��\u0012��Ϻ<~\u0010y.�\u0004R\u0005�ɳ�\u001c�H�\u0011�%�\u0019*B�!�T�M\u001cX`K��τ�k<\u0016�#���\"\u0014�Y\u0018K��mR�[�`T\u001e���!�\n~H\u001cBu�/�\u001bM%�8���_�^��\u001e7���\b|\")�C=���.�>\u0000���lc��$r�8Y}?�/�B�n��:;��v�\u0015�\u0019��s��\t�\b9�?}ud\r\u0017\\o�SD��R/����+jV�\u000bm\u0013�ݜ\\+�q�B��3m�Uks��\f&E���O\u000b1\u00052�F��AQ�\u001c�����O6���e`[��q4ijԞ�R*��&��jݍ��p�����,�\\�a\b�\u0004g\u0010-\u001fU���6���\u0012\u0007\u001eLyF\u0000a\u001aL?J\u0017�\u001c/�ι�ϖ&\u0016y��EDn��(?����g�\r�2�\u0014�l)�6\t\u001d���D\u001a\u0019|��67�O�\u001d�Oxa&�Y\"V\u0019C�\u001b\u0006���\u0000\u001d��5\u0014��7������B�c�O·i�M�bN�\u0012\u0001a��HQ��p\u0001�1��\u001b��NĠ#�9�OupF-�Q�\u0014�֖&\u001e�\u001fm\u001eR:��\t���l��W�Δ�R4\u0011�\u0006\r�Bj6��\u000e�-��O\u001f�QG\u0012��!c#v�\u000e�^Ӏ-o�K]\u001a����0�9Q�\u001ez\u0014F�,S�Uq;��m\u0011,\u001c�o�����\u001e;��,�aO�O@\u0019*��|\u0005�#��~\b�N\u0015 ��\u001f�Ѩ�n�\u0013B�]�\u000f���A��\u001c����#�y�!\u0006+%c�\u001e�\u0006�U\u0001\u0017�\u0012H$\u001e)0~Y:\u0006�g�N�6]NJ�A��\u000b!\t��j�\u0002�\u0016\"�D�\u000fr�\u0017j�l��\u0000�)��Rٍ�\u0004\u001f��\u001a6\u0017����H��fN�?�8x��\u0005ۂ\u0011�D\t�.�\f\u0007����#���F�@?\u001d$�\f�q\u0002�b�\u0016i\u0006{�o<��D-y�SV�LW��y>Y��\u0017M\u001d�\u001cZ!\u000351�л�\u001c2�����Qs�r�ni9�M�e7t�\u001a퍋\u0019��4\u0010��5�*\u001d\u000e��=�ގ�Th2�j��\u0013D�d�{�\u000f���,CS3��.{�n?7��4\u000f4��,��=��*p�\rˍ�{��\u0014I\u001dL��?��7�\u0011��1>��)�\u0002\r�(�^�f`�\u001cX��&R&C��M\u0002�\u000f�{g�X�8�3\u0002\"._\u0011�n\u0004��!�a\u0002*�\u0004C��ubpIbE$ ���i\u0004t���k\u0016!�b�\u0019ߔ'n@\u0005oօ������\u00157�&G�g�N�'Ƕ\u001b�ڎP�x>\b�h�Շ\u0014�Q��8�\u000ex��o^\u000f\\9���^q_s�.>w<�-�\u0016)��0��]-o3\u001bNI�\u0010�ͪ�x0�������Ž�rJ\u0003�\u0011���`���\u0003`@Y�A�\u001cԀ��v��Zj�Mq\nS���\u001c�1�X�̼S\tw\u000b�i�&+E{�ᛀ�)J�\u0019�(OU��H���3�߆\u0006\u001c�Á\u0016���lN\\M=қ��\u0013��t�qʮo�e?{�?\u0017��\u0012x+^�\u0019'����]�Ԫ\u001f�\t�w��Z\u0006~ERH��\u0011\u0002c/���57p�V^�\u0005��^}��\u000eiA�Џ������$D �\u0005�ձ\u0002y\u001a0Q���4�%�\u0011\u0012r���R��(s8*M�(=��\f���M_lR��e\\�Eg�\u0002�M0_r�\u0012�\u0011]�X;ȃw\u001f\u0004�����\u0019��f%�������r-\u001c@\u0018\u0000�\u0015�\u0017D��m�AW����?#ڦ2�Q\u0018s6�[�v3��\u000eԟ\u0017ڕ\u0011\u001e�LUD�B�A1�\u001c���\u0017���y�p?|�-Kݤܑ3�dž��\u001evٷ;�\f�!��*�1J)���}��\u001d���[��Ѭ)}\u000f%,\u000b2��_E�7���yO�-�mu�\u0014�pZ���CHO��\u000e�\u0011�-���\n\u001aV���f2E\u0007\u000b��\u0019���r\n�\u001d�[\u0005���UƊ#��Z������(P��o8'��\u001a��>�02�r!\u0007\u0003F\r��e�\u0017\u001dخ}�څH\u0014��A��r�nA2�\u001b�AG�y�A�o�����U���Ƈ\u001eL��caLrU\u000b�fq��\u000fS����\u000eT\u000bkz\u0017*���� �K�\u001ei�P�qun��n+ \u001bulj�\\&�:\r�Zy�)Q�\u001e�N$\u0002X�/�\b9b~����A5�\u001c����\u0015E�{���\u001d�«�\u000fb�F�\u001f�\u0011h�\u0017)\u0015�n�\b\\�UJ\u0001�ꩦ\u0016`c�I�dOe��k\u001b �%n1�W����S�C[���L�3�]�}��c)_)��������ǰ\u000f�\u0013�\u0000k��h\u0000�T��6�\u0010��g;��.ls�!L�f{�n\u0015v�R;�W�Մ�\u0007\\�W�l�\u0001\u0012\u001a���v��\u0013\u001f�Η;q�B��\u0006S!O���*����\u0015�\u001eǝ��e��\u0006&�)#��\u001fl[\u0004�_:7���<�2f�1��\rG�K�\u001c ����x�RL*\u0005��\u001d\u0013s�$�?����\u0010Eh#O�3�G�\u000fgƭ`]'�*VHDV?T�f\u001e���T<\nv��Y\u0019�*�\u0018�\b�3\u0015&�4!X`>��A��\u001d\u0010���a�~8kB>\b�x�L��rN��\u001f�J`K+�Q\u0007\u0007��b*?>Q�\u0001�\u0005\u001ee&>���+���%�h�\u001c\n�����X��Y��\u000eQO_<�\u001e�9�\u0010 <�����I\u0018��\b\u0002�nd�6��'���0'LG�\"�_ib�C�ɥ.\u00145��\u0003,f�9�!7�DȆ�\u001c\u0015��\u0014���Ձ����\u001b�?��e\r�G���x�\f���S~�Q�M��i�?�\u0010�[�~�Ĩx\n\u0010G8`7�H�\u0004�qH�\\K\u0006�Eh��J��\f��!Ƽ�;U�����V>�P\u0019��R5�}\u0014�D��Τ�߄\u0007'eD��f\u0010%\u0014�6�\u0018`�o�QF��\u0005\u0010�Hg��6��Q�Sb��\u0000�L������v�\u001d?���Ӄ\u0003䓽x%ƑM\u001f��S,k���ʑ#��\u000e�+\u001b�\u001dו�k\u0018`�*TG�|>��\\���Ҿ�J�j�z`x-aH=��\t섳����\bP?�4\u00017m�e�\u001e�:\u001a�]�'H�2�A��\u0010�\u001f�T�j�*�\u0010��#E�-�Ì��P�=�A3�\u001d$���k\f1�q�|\u001d��,A^�\u0000p[E<��s�U�\u0018���1�\f_���[\u0019m�##�`��\n�܌����\r�*\u0004a]��\u0010����oO��Q�3��nw�3\u0001��i��J^����b-\u0014��m�/��N�`�\u001d�/�l\t\u0018cx�\u001f��\u0014n�0o�\u0001�ϲ\u0013\u0001YA�LSxL�:�\u0005�4z\"�nݚ\u000526�簪\u0017��֭f'��Y��\u0010��3I��8\f��k�J������Ƀ\f.\u000b\u0012����՘��\u0006�B9��a~\u001f�\u0007�\u001a��*\u000b��[;y`L/��\f'�@x�׫�OVA��iP�fJK�c��\u0016!.Aɾ�M\\y\n/PE%C����\u001f��I�\u001bA�(\u0018\u0011�8�>8<�\u001a1��\u0002qLT�YBq)�[��\u0001�r�M`\u000e�S\u000f�Y�:B�P�<Ě,��Ѫ\t�!\u0000i�z��L�X��\u000fdu\tp~�9�2\u0017������\\�\u0000\u0018-�\u001d�zD�1\u0018L/�j���F�v�.?�\u0013�\u001b9\u0010�Խ����E�����h\u00078����\u00140�C�Al�\u001d`���o��ԧ�2��\"~� �h��]2V�b��б?�\u0004��>��^��4�Vq-�\u0013�lƤ�Ts��x����=�#-�@ҍ�z�C�A�bl���nt�xC�.\u0013Tb׀)����\u000b*C\u000f�a�E��V�cd�4o�\u0015�\b�kJ66�\u0011�F\u0015�\"H�a]F�\u0012�Ç�z2\u0014�C����5�\u0018\u0003�\u001bgi�ܸ�S|������FHZ�l,S5�Dk�\r��t���!pc\u0005�'P}�w\u0007\u000fQ��v\u0006�m0�\u0006Zf ��\u001e\u0019{\u001a��S���cG^H�N�������p�t\u0017ƢuK1V\u001e���_pTjT��\f_�%Ư\u0013�t\u0017\u001bZ�������2f�7\u000eķ�\u00051'=\u001d\u0014z��=^A5����>\u0018��6\u0005p���\u00022��m.g�C(�ȡy�|�\r�[�\u0013ٳb]�w�}\u001eĨ�\u0014��\u001b_i\u0001D�A-�\u001dt���d\u00181\u0010\u0003�� ���6�� ��\u0001�T޽��ۆH�};|@��>����,�9��_\u0001&\u0019fg\u0005wz\u0016Q�Wd���$�npzo_##��\u0007�͜\tѻ��9�kC����\n��:��?t�H喣�\u00196�P��π}\u0017}m꫕%TZ��\u001d�R���\u0001hzf�\u001396#�j�92���B$�\u0015�\t�Y1�q��55��\u0007�a�z�\r`���_�c:�\u0001�e�D���K_����Dg��OA��[:U���eÓ�W}4�<⼬l[n}��t�\u0007&e���E�_%{���S�L��_�\u000b1U�K�epK��\u0005��/sճ\u0007�\u0004\u001bv���\bt�sd\u000f)£AC�\u001d����b\u0019dرK�7\"~P|�>���\u00146zg:f��O<��(��<_�\u0015}}]�o�M��������PS\u0011�\u000b�@��Ź���\u0011Q�\u0013x�����\u0004�>�X�����q��\rI˦�(Y\u0002\u001e\u0001қ��\u0013%�\u00114��籙�8�C�p�[.�\u0019J\u0005�L����A�\fK���\u001c��\n�n��7V�6/.��^;v\u001e�_�H~���\u001d�)4#�<��n�ǀ��\u0006�yۥ�n\u001d3�Y<�s��\u0004�l\u001bR��t�\u000e�'\rR��ֵJs,\u0017�-���� ��Ƹ\n\\c\u0001�{�\u001d����\u0017�\\��v.U.�\u0015ԼKpc�\u0002��UW\u0005�7}C\u0013����(�;)X�vO�\u0012�[�:��U\bC�\u000f�\"���+ֵ��?�B�A3�\u001d����s��k~,Z�qH�8=Y�{�\u0017D�v�ļq�b��5�\u0005���5[xG\u001b�\n\n�kC=3�\n_\u000bL�\u001e�\u001a��\u000e\u0005��\u001d����)�;&����%�sc�S��O����\u0003�j\u001eI�^z��������҉���\f�G��¡NX;�T�1��W!\u0000\u001a�@\u0016���bQ��|����_�=A\n�W4s���!�rZ\u001d��.\u001da��\b����-�\u0006s:;�����2#�5>�����\\E\n��$�#X�\u001dt�Azȇ@�������\bwJ���ة�����\u001f{\u0010zT9\u001a\u001f�Ȋ�o_N*�{C,��D�\u0016\u000e�\"p\u0001��E�����\u0012�]�\u0006�>�O���S��?\u0013g\u0003j\u000e�%C�A.�\u001dĀ�Mv1�S!\u00140D��\u00031�\f��U���'��\u0011;Od�BЀj��\u0006�D�z}p�\u001a/u���%�\"�\u0002Q���=^(��t\u0013��{�\u00106r2.�\u001c ׭۰�\u001c\u0007z\b\u0011����@�q{\u000e�\u001a13�\u0014o�2\u0019�N,v\u001c�J��^Z�-lT9��z�\u0004�|���Z��\u001f��\u0003�����5�9���G��x\u001d�F.\b\u0012ٿgF�\u0015��Q���\u0019n�$��C\u001e�\u0004�I+I�^w쇮�X��b\u0013%/�J��C-�]��H�\u0007+X���w���,���V��\u0011O��,A��T}4\u0006��!]Fc|R��\u0012\u0013\u001a\t�R\u0013}�_Ɋ\u001a\u0015�&b^JQt�+���\u000b8�\u0010 tz�\\~�賀R�A'�\u001d؀�MzFFюߋ�4�`@��\t��O�\"Id\u000bk�^��u]}����[c\u001fu\t��ݞ�8\bt_\u0012�\u0004��\u000e�(�+_�\u001f����U�\u0007�\u0018RŎ�n�\u001c0� �����%��xxJ*L�h#C#g\u001fs\u0018\u0005��~�}� ��\r�B>\u0016%��Y��� m\u0018�M�Ę�m\u0012Nsu��x���:|TP�H@ \u0014��̀�\u0010�2�2r�M\f\t.�]�i�fЏ��ѝ��\u000ej��\u0000\u0010��Ȇ)>\u0011�\u0010�8��*07�\u0014\u000f�q�tW�w�\u0019v^Dg�9����q���ͫ�����J=*o?��d\u0010�@�\u0006�ʡ!}�\u000b{�o�E�r\u0010y\u0011��mI�D63\u0000؉�A\u000b�\u001d��L�^|O��\u0015�y-�\u0007D��72L;�\"�R���%`�\u0004��\u0007�o�Wc�D����\u0005�H�^\fF*���x��;�\u0004\u000f.<$�F\u0012O�\u0019\u0002?�T�\u001c\u0013\bY�l�d\u0015\u0015��-�\u0013p�dT_�H��3퀔���~{K\u0006\u001f%�k\"�e���a\u0017�5�H�@ed\u0015\u0004TUXIⲿs����O\u000f~@]r�r�b����[8c\u0019\u0011�Ԛ���W�w�\u0014�i��-\u0006���`-�u#��?>��\u0016BΝ�ê&\u0006[Bik\nQ4ͬ%�:���\bilEL����\\�^�\u0014݃i\u000fw3}�nF�n%�I,�ң@�\u001e\u0000��M2lx�q�hGb8x\"�_�X,��ym�>\u0012\u0015�Ƥ�����Ɯ\u0006���\u001e\u0014\u0010�\u0007>r���+�n|C`�I)\u001c,���\u000f|�BB��Ԍ�[�D2��N\u0015���.�>ߑZ6����F�ҩ:��a\u0001�\u0015HH��Bc$5�\u0013�6\b�p�~|)]���4�\u001f�)�̈�\u000b\u0014K�\f=L��\u000fB6��2Y�����=\u0010���\u0013\u0016�Kk����*�\u001f�����\u0015��|���\u000f�\u0016��:\u0013X!�\u0017\u0016N�-��\u0010bL%/�/�nC>$��\u0001�+$0�\u0003V��I ��0IS��@��\u001e\u0014����L�前읽�\u000b�\u0019�^#���i��O[u��]�Dt\"E�55oT\rN��g�d��֏$�X�M�'5���N���\u000e�\u0018l�\rAz��\u0000)\u0007G�QԄc\u001d]�Y��\nF�\u0018�Xy:�R��?hɓ\b�`@c�Y�\u000eec����:6d�P�w\u001e\b\u0002��\";\u0016t\u00049�>U�=y�\tt��h�:�?\u000f�`���\r\u0000����/�\u001c�89�4���U�\u000b\f��0�9\u0013>\f���F�*λ��k��\u001c(l�K\u000fx�D�J�\u000e��֫��\rNUے�B,,b�>U��[�$\u0004�&I\u0015�ߌ.��%^�A\t�\u001e<���c�7\u0016��t�jk%\u0006_���j>�b���@��|�[(M�&+�\u0006\u000eҍ���^\u0010\u001d'��d�\u0013\u0017� �M)|���D�}z�>c�h}�\f�dN��½���\u0001IFbN\b�ō��;���'�\b��X�\u000e�\u001ddo��r\\�^�M�����_j�S��`����\u0015\u001fW?Ɲ\u001c��*��B�I���G>>=G�}մƳh�<�V,�K4�@-��\u0017�ᆲ!�{mu�g\t���DL��.\r^>�}���dNv�\u0000H\u0007���p\u0019�P��\u0007��`���\u000b�e���]<1K�+f����~�Q$�I]�A8�\u001eP���d�2�/B\u0014k�[�g�)�b��{���\n�Ȼ����\rB�5z*��.�&CZm_#\u0006Qu���D\u0016�6\u0010t�w)�#\rW��\u0010�V!�=z�\u001dە\u000b�\ti��h�\u0007�#[�\u000e�C��<`�FH甈�YV��F�ՠ.��`B�\u0017[S!�\u0000ܣA��\u001e����T�\u0002�G?Hq��\u0013\u0014���A�E\"]iC�F���\u0014\u0014@a�>\u000e�]\u000e@�g\u00062���\u0016\u0003���:�W\u0013\u000b$�2�\u001f� �\u001d~��a\u000f���G=��A��X���\"��)l�\u001c���dl~^�\u001d�M��z��\r�2�A\u0010y���\u000f�\u0016�g_c�f����\u00079Pm~*\"qƮ\u0002���pt]���'�g-��‰�{����[�\u0000 At�����Jl[�\u0006�2��CHl~\f\u001b�\u0011\u0001$���!�\u0004_���-(̇�\u0017�\u000b��O�+I�0!\n�k��\u0005��� J���Gve�ٺ\u0012.\u001b��B�\u001f[��\u000bu�$��mZsT\u00116ڶ�1Õ���Ȇ(z*�6f3\u0003\u0006�b�l?�ӗ\u0013�]*��5��r\u0018\u0010ѳR��*�_#�mi\u001c�#��\n{�\u0004\u0002�\u0019\u0005�\t\u0000�(��`4�\u0001�c\u001c��X\u0006d�j_�\b\u0016�\u001d���\r�P���Qh�U����ܢ\u0016a\b�2�{�\u001c\u0000�\u0005�\u0011V\u0011zN��\u0007\u000e@�[A�iH��R�}\u0017�ɾ|�yD\u000emsظǛ\u0017�\u000et8�2i\u001a��x/kd�Ж`�k�Ǘ\u0017e�lQ��.S\r\u000e�SsN\u0015�t�\u001a\u0011o9̑��Ga@�^Bݛ\u0005.��ŌY!9!�����@;�d�\u001d�X\b�Ɛ\u0010\u0000�&�\u000f�}�O8R����\u0000}�&��I\"���O\u001a>�I�A\"�\u001e܀��dF��\u0003�t9����BQ�\u0013�\u0010���\u0004��\u001c@�')���\u0010\u0004ouB/����WLSB\n�K�{\bp�^F��l��m�\f�a�_��Q��|o�\u001f��p\u0018\\%\"��Ci[�\u0017�á���19�^X\u0014��KÏ�d�,5[�s��i#���\u0004�@���5\u0012|�P�����[�Ml\u0016��\u0000�ygGwC{�G�\u0004\u000f�\\G���s\t��OX{\u0014��\u000e5\u001f\bf�`�\u0013e%~\u000b��>jO��D>�HI������.��1��z2A�Oz�O���\r6�\u0018��^��u؄����'u�cW,0k�t�b\u0017��>�t`I�;�u�����R\u0014/)\t:��A\u000f�\u001e�����i�gd\u000foEGf}�r�ћBKl\u0010c\u0002��l\u001f�G��\u0005\u0005�\u0017��\"� \u00051���ܰ��͵<�xQh�\u001b�\fm\u0005�\u000b�\u0012�]�[�6ܩ�\u001d�j%R�{H0o�\u0001c�h�a\u0017\u0013���h�\u0007���}(\n�w��}{\n���_thLT\u001b�s�\u000f1g�\\#4��9ԟ�}9�{¡x\u0014#菂�x�m�\u0013��=b{�s��Džp�]3T�9���D\u0003\u000f���\bW�\u001e%����\u001du˂�o��\u000f\n\u001a�KZ>��\u0001Dc�>\t��o\u0001\u001e+���\f��-�[:�^%��\r�y�\r��D����\u0012�d�\n����x�A\u0013�\u001f\u0004��L�\u001eBظ\u0003�7O�w�f��Vb��+�s�\u0002{�\u0002�Ɔ��B.�_BP��\t+M+���ٶ�^S�\u001e�QMM�\u000141\u0017�5e����\u000b�K<�=��\u001d8\r��q\u0012���l 9qN�X��?}\\�d�\u0017�N�\u001b�Vz�*�(w��f]\u0017����̀�Z_34�B\u0002�}R��y���s��&����A\f�߃��J��D�8Ѱ7u�s\u001a�\u0010����z*�7�m\u0010\u001d\u0010\u0018��\u0014��\u000bm�Y�I�X����\r\u000bs���kaL����\u0011;�i�_a�\u001c���G��8�\u0005BX�����\u00062�8QT!ATKkJ\u0004̃\u000e\u001a9\fdf��@��\u001f\u0018��L�\"���'�Z\u0001�\u0011X���H�\u0016�\u0014%?\u0014�\u000f\b�7W5�rO�\\������hz�d)m�\u0004�e]�|����]��\u000e}\u0002K���\u0003}C�k��\u001a証�B��I/�E�\u00024��X�hĥ�o5��%io��z�?��j5yM�\tѴ\n/��֨��zw\u0010@�i���Q]1��zY������x�\u0019�I\"��\u0011j*�M_3\u0000P7�ZSS\"z�}ȫ�nAC��m]\\�q.��\u0016K�OL6^�\u0005�\f�R�F��V%�K��Y�0\u0005J�\u001b�\u001d�QE\u0012k�\u0019�_�l�-�@��\u001f,��L�\"s����{\u0003�EX�D�e��\u001eQ�Z��o'L\u0018�2T|�'\u0010���\f���lqUW�ؿT���8����\u0013��DPږE>T�_�c�\u0019tGF��\u000f�{F^8)\u0007/�\u0000�AQ\u001dZ֫�\\���o�\u001b��Yؒ�\u001f�E��}�1��O\u0014 Jo#�v\u0011�,�ce\u0011�N<�ޛp෭\u001a��g^\u000b9'�\r4��nd��5Yΰ��w\u0017e\u0003=���z�5)�'\u0002�����w?�\u0010m{k\u0017`��\u000b��Km{D4݆n̎������aJ]���o/�l\u001c�(��$\u000e�?i��A\u0007�\u001f@��M(\u000e1�@Yo\u001d���9+3�HY��w�\u001b�\u000b��\u001f\u0015E�!>�<\u0015Oy�&�Gg�\u001a�v��c\u0015.����J������.c�� Q=��V�ڠ�\u0001'\u001d\f���U�\u0010bn�l��jV��4���_�+*\u0004��`\u0013z�ے�[�2\t�u[\u0004�\u000e1��kݵ_��w�\u0002�I\u000e*v\u0004Ō����T���b�G��Z3\\\\�����7=��=\u0003V��I\f�j�p�>���\u0019:\u0010���j\u0019\b5M_��X��e>�\u0000\u0016$��\u0014;�\n7\u0006\u0006NX���U�:$R_�wI�u\u0000?�KA\u0002�s�������A\u0016�\u001fT���ɣ�xKQM�)\u0006�\u0012���G>�y����s(\u0004���\u000e�(�\u0002.E\u000ew8\u0018\"\u0018L��k�������e\u0002��\u0011�\u0011I�FڦQ�nwi�Ff\u0012���\u0001S�.��A�,�xg�\u001f@E7R��8�3�k\u001d���\r\u000e}�\u001b�d\u001a.=���T\u001f\u0013R��4���\u0017�oy��\u0004hY�\u0002��U�\nEPٰ\f@Up�$��~�\u0001�\u0002?�#Z���qˮ0\u0015@s�oICK\u0006���^�B���*�|���s2��\u0011\u000f��ژ�³����6G4��n\u0017Ҿh$��h-X\u000f~\u001b�\\�%:�UsH�Uޘ\u000f��R��S\u0018l��f\u001b�5��Q�3l��A\u001b�\u001fh��M0�\"xkE�c=WEe��\\Y�/6ey��'��W�n\u001c�\u001c4\u0002r��Ӊ�SӺ�qE�7�{e�\u0006Lsm�!GC�\u001eM�\u001c�0�\u001e�pzŻR�\u0018gk\u0007d�\u0015(9^���\u0005��s\n[�'M+n�W,���L�C���\"�ܒ�o�)�\u0018;eO��c������%��\u000f^���C~N������\u0012�`�#Yp0\u0006�2Ʋ|T�U\u0019�\u0012���F���wE:8m*Yd�\u001f\u0015D��0Mjg��\u0002BԟjA�\u0018v\u001a�}\u0003#��q7�5 #Vp\u0003h�l�9��Q����c�\u001d�#����\b:��\u0019\u0007ߪ\u0013���N�{���NKJ�K����\u001b\u0012�A\u0004�\u001f|��L�\u000e�_�HMt'�^�:P~�E>`\u0012k\u001d�e�\u0015�jB\tW�P�-�(��6t����U���P�Jޝ���r\n���\nX\u001dQ.�@\u00068p춀�\u0003\u0016\u0019N\u0014�MO\n��\u0013����S��/�@�\u001cG--��̪t1=�5�.�\u000f����w�{\"o����/��/\u0013J,Ww�9�}a�i��A���Z�\u001a;�.߼U'��S��v�8��M)�<\u001dA�\tJ\u001a\\c�Ad\u0001���c�o\u0018�y�\u001c�\t\u0002�rh�\u0003η����ߛ�c�$�E�\u0002�c�K\"a&U�G�bi��7\u0010�edۯk��q�e�@�\u001f���L�O��l�Q֜��k���thc\u0011h=u-��_�o�7�\u001e:\u00110\u001cߊ%�eH�EKW؜��1g�&�\u001e��V\u001e�8&߫�\u001b9 ��\u001e\u001a���h�_m�E����r\u0010+OD���@�C;�^7p3�Ѿ��ϳ`\u000f�`:��|aw=\u0018��#�\u001d\u0013<֫�WO[I:1\u0010Z7_�J)���|\u0005W�x�\\F�\u000f\u0000�8�f�\u001c1~!pQqZL�+\u0003J�ˍmQ\u001ad'5j%X���K��w#\u0000��\u0000�j_��\u0016�\u0001\u001e�q���\u0011Y�#��]�p\u0004��[�ө��A\u001a�\u001f���/#3�\u0017�m@ڶq�5!\u0004��|?K�O\u0001�BY\t�@����\u0016K\u0005�\u000f�\u0004|��\u0007��\u001a��\u0007�ҭ��\u0011\f#�\u0011��\u000e�M/��N��!\u001e�\u0014!�\u0005﮼��x$ï~$��`�N*��G�$Nȋ)J5��K�c\u001c�\u000fοWלӑ��T8��^���yU�����f=\u0012Q�X�vR��27~�p\u0013\u0004ʈ\n�X\u0018�!\u0018.��h�\u0001�l����0� \u0012��\u0010S�>�;���'����I\u0016�[����\u001co\u00013�T��XMɀ}:�\u0018��f��!��N�{�\u000e�]\u0010\u0005�����\u0011o>$\u0017I\u001e��Kz\u0002��\u001d����k���-���A#�\u001f���ۿ��)��%��D�č\u001c�窭K�U\b��/���\nz�\u0017\u0004~m�/B�{��@yr���\f\u0015�e$�gȮXbs�1���\u001a�[�ݎ����iܪ\u000b�O��\u0010�\f9~pd\u0001�k\u0012\u0017Y]��\u0017\u001b����M��r4��\u001e�ADp�\u0017ɽrjA-MRt\u0001�A6HErir i���D�5�o��S\u001eBz�GI��ؾ�=\u0000٨�o\u00063��eD�KY���0�D��\u001b���]d\u0019ѷ�؄�<\u001e�=�V9��g}\nֹ\u001c;��H��~��\u0014��V\u0004N.b\u0000悩{�\f\r�5H5����\u0010��;�\u0000M���b���W@\u000e\u001c��,��x�0�[(+;�\u0002ˣA\u001b�\u001f̀�۷=�H���;޹(��&*\u0017�B��\u0001B��*Y�\u001aM��_ݫl�@\n\u0011)OiE�wOs\t\f��\b��$x�c����R�/q��M�]^{�n\u0017\u001f\u0015�\u0016�v,���'H�A\u0003����AUg�\u0019�C\u0014�[9D6����|\u0016�g|���x�W���\u000e'����a\u0005�\u001b��z��|J��\n\u0003�K\u0005-˲���Q��M%\u0014N\u000en��rf\u000e���\u0013��e���l�ō\u001aw�\u001a?�����\u0005N�����bN�X)JH\u0011R��\u0007�j�P��Z��.�{N�p-z옋��W�rJuS��67�\u001a��Ք�\u0017�5��7�<�l�QF����v[�\u0000\u0005Τ��8X�i$\u0017@\u0013d�\n�H���c�\u0010XWG%\u00196=l�;����5�\u001a��w.�A0L1r�O�\u0019�B���\u0011c��\u0017̜\u0011��͢\u0012�]��.���}r#:%�u\u001c�%c-�w\u0013z�d��\u0004�d\u0005W�u�\u0017�\u0006\u0018���q_C����\u00176��Fo]�E�7�P���p���59k��a$\u0004�0��K�OT��\u001c���Q�A!� \b��L�v�q���B/�7���pJ�LVh�Q[�j�)�1q�LE���%�*� (�XĘ�Y��ú�\u00154�\u001a_<�%������\u0004�_�\u00027�P�\u0017\u0007�g�8\u0000J��]���_�y�\u001db@��k�b��\u000e�x�,{���.H\u0005����<͛\u001e�&z��`���$+�gL�<]��T��[UR�~ksak��j�]N���o\u001dt��C`�`v�\u0006��{��\u000b$�POި�Y��-]\t~~{q\u0016\u001e���GK\r\u001f^\u0001�9�8�\u0016t�\u0000?M�\u0005gR\u001b��\u0005���*�\u001e����XK�Ї�t\u000f'\u0000\u0003��J��F蕗��T��T����\u0018p\u0011��LH�?��\\�A!� \u001c��L�e_+��nj@Ӈ�3F�{�F�\\̇1�ӭ�\u0010B�ap_\u0007E�� j�Lf�\"k\u001d�W�T\u0006|�פ�Qc�����@\u0006n󐢍�6�d)�+���im\u000f��\u0003\u0001\u0004\b�߮�'�m\u0006���=\u001c����=S�\u0001\u0019�\u0006'��U�\u001e\u001aU��!A=��\u001cP,�\u0014���=]�i�P�\n���\u0002=A���a\u001d�%���:\u0006H�\u000fw���e����KB�/�h�հ��`AK�Ŧ������7c����/��@dV���;H�X�\u0003�#\u0013�J������\u0007�h\u0017�U����:tWv��\u0003uzcЦc,\\�JYDH��\n�\u0015ƈ�ȉ�A\u001e� X��L��\bD2c$�\"OУ�c��O�Ѹm�Y��1��5\u0019\u001c����d��g0�_=��v�(�\u0000�\t9!q\u0015�DK�/�U���7Y.�\raD��9c���a��K�\u000b%�Z�k'�=\u0005Ҭڈ�\u0011\f�\u0013ܱbH8��\u0002�\u0010[�;�3Dվ\r�@��|�\u0015\u001f\bx����!̄Z\u0011��_�.�\u0001=�B|\u0013@+�V?�\u0004�,K�^\nc�3�s�\u001dZ\u0007�\u001f-6{r@��7\u000b o8�w~�\u001f�(C\u0015��ŞlY}W��ζ��I\r��\u0019\u0003ʌe1R�h\u0000�\u001b�Z\u0004|��Z\t�)���5�v�4\\\"�=\u000fk{C\u0013\u0004���lAY��S�ȑ01\u0007\u0014�ܥ���AA� l��L��qDă�m�ht>\u0004�m���4�\u001dS�/6�洴n\u001e�?�\\���\u0000�c�� e�0\u0005� \u0000a\u0001'�\bβ2\u0006�\bG8����r��\u0007?\f��`^MUU�Q-�\u0005�5�9�\u001b�5F\u001fv�a>d��\u0004Q�0L��;���\u001d�\t\u001e�\u0007�P�M�CA�#{��\u0005�.\u001c��>���\u0017\u001de��JN%&�\b\u0015����5��6����f��6\u0007+�����A\u0015� ���L����Eh��.���IO�T\n�Y�ͷᘷ�W\u000fD�%�����|P-��aÔ|�V�\u001f�l+�\r\u001f鐍+\u0012T\u000426�W��)w/Z���\b�q�˔�LT��u\u0014�P��Lf��a��M~����mu/\u000f�X�� ���b�\u001fE���tU�\f��g\u0003݀-�{�\f�~ar\t�\u001d�سň�Ҍ]�c)6�\u0016�\u0005VA]+\u0005��p�s�u�tbU2�͍x�L�\u0001�����qB�S�B#Dg��¤E���V\u0012�\u0019/,��?!���k\u0011\u001a0�1\u0015M%\f��I\u001e���\u0006Oa�S<���l�����R��xp{�v/�f���B\u0012� ����\u001d�\u0013\u0007ޡ�\u0006����B�~{G����\u001b\u0013�\n�/+\t�\u0001\u001d���7a,\u0001�ͥ\r^a�cA�\u0005%�c\u001f�\b9�uD}\u001bw����J�!�+��w/�\u0017��?st/�oW=X\u0006��\tj��\"��\u000b{\u001c�\u0003C�3Bފ�\u000b�ٓy�\u001e�\"ػ\u0006Y_��XcJ�\f�r�����L��[⪹}\r���@��.\\E?�sy��K�R\u001b?�\u001ew�����\fE,�H��'�|�p\u0013E���f�Re�\u0012]+\u0012%\u000f�N\"&���y:#������\u00176\u0014�cEU���ڜ\u0001ڵ�Gb��$`u�(쨬,��l��F;�O��\u001c�~�\u0017{ \u0012G�&#:�Y\u001b���Ր��E�+��\\d�p\u0019~Oᝋ!��Ћ.V�\u001c�r�\u001e\u0017���{�b������r��tl\u001cfg0Ӹ�w4�z��=\u0006�e�\u0011q\u0012�5ɥ��|ި~O\u0014@A�\u0010c��a1z�y]�\u0004^���\u0010\u001a�x]\u001e\u001efO\u0012����!\t5TY��:v�\u0001��\u000e�tF��\u0007K���� \u0017?>��C����O־nG\b�\u0012��gM��H\u001c�r%�eL�������\u0016��6�8kw˝��ά5�|�f�Ŋ�N`�0��� �o�/\u0017\b~\b3��P���\u0014�\u0000Oh\u001eL���A\u0015� Ѐ��ۜ\u000e\\?�v��T\u001c�}b�i�\u0006�j���#��%��=Ә����;�\u0001�\u001b/;{m\u0019A�)\b�?\u0000W!�!�h�z�V>�K��@��\u0003�)T�\u0015�G�x��`�Q̚\u0014�7O�\u0018��!}l��k\nn\u0003���2&m\b�\u0004q�_����&��X�\u001c�����Z��\f�4+�N*g�u�;�r\u001b��\u0018����\u001fg{w�\u0016�QZ�X \u0001\u001bi�\u001cM/�V�\u0000�\u0006���U[�`15�c\u001d\u000f�`�;��b\u0002�:��`ҧ�5[?�N�P�e�S\t�� ��U9�\u001c=9U3V\r���y\u000bՃoR�=\u0013E�u��P�A+� ����\u001e��ߺH\n���`�2��͙�\u0003��xIoT�\u0010��}�\u000b��*ޕ����\n�1�\u0001#^syh\"��P t\t�%7W\t/�{�g�1����6\u001f\u0018W\u0013��:�1�@\u0003��å\u0003pLzpD\u0005�`�j�2/�3W�yI.[�:��M�9\u001e���\f�<��u�}��\u0003�^X�\u0014\u0013x��N���\f|���[]Ǵ��\r�X�m��\f��|\u0019\u0006\u001d�\"�!T0�(V[�\u001bM\u001f����C�mG�V�O�:�f4Ç��p\u0018�\u001e��t�\u001b�f|Q\u0017��$|��t)�ed�f!\u0007�.tP0pc{ӛ��V�]�|���\nPmd\u0013�9d\u001c~C��\u0007�\u0017��\u0001��-�c.��7I�A>�!\f��� �\u0005�^��iW�jK$��\u0014���\u000e���`ہBv+\u0004Z���\u001c��\u0013H!\b��E�N�<1�j��yĻ�Y1̯\u0011Nq�2�+ȧ�yX�}�8 b��p�\u0010ti�\t-\f\f\u0018\u001a�:\u0001�I \t��\n����>�\u0011�FC����[�\u0011`t�J�(�\t�͊���S\u0019\u001c\f.dmX�]�y\u0017_A�\u001cm5�����<֌��\u000b5d�4\u0015J��R2d\u00152\u000b\u0002�'�qߥg͈�W.Uo���\u0003�� �+��T�y���G�s\u001e\u0001�\t�m�jH�\u0011��a�����ԭ�G��+��xO�\u0007����e\u0010G�HQ�d�u�t#Ѥ�`F\u001bkW��[� >�d��M��Z������5��P�\n�lt�I�A7�! ���\r\u001c���ɂ\"\u001d9npd�\u0016�ġ�d\u0019p�����Щ�\r/Hz$F���s'\u0015\u001ac�(@M�\u000f_+��\u0013\u0013�m\u0003\u0013�e��\u0004���\u0017˘5[\b�\u0015\u001cG�����aN$D�ۓ\u0016j�h�c\u0013U\u0000\u0012$��k�D��Ƶ2\u0013v����Hb��]\\��N�Z�Iӄ��\u0015�8G��p��5��\u0015\u0019�UF����-R\u0016�%���x�siJ(9�p�\u0014<�?�\u0011���4X�\u0015_\u0019������F���X@��3\u0013�(\u001b&ɣAO�!4��M�J\t>\r�3�s�ؤ�|L�j���Fs�2\u001a�4C,5\u0007�l�@�����\u000b��~�\u000b������\u000f�[\u0003}�_W\u0003L�b��\u0016\u0005��[~4�_�&@J|�\u0005���\u000e��\n-~����C��_�\u001fa�.�zP��Y�z�'��M5\u001cef��/Z\u001b�|�\u001f2 J���f�\u0018\u0006�#w9wھ��RP�E�x��(�\f�� \u000e�0��Z�>�}�K�\u0010��4߯b�\u000fઆ\n}V�F��E\t,Q��?K\n�'p\u0014��1�K^�SH�2V�����\u0006�@<\u0012�N\u000e}��pu�S��ȩ�ۆ�}�?�ag��\u0001#wz��\u000b/s�R*��0y(;\u0001��2���D��:�{+ڻ�\u000b���\f���/�F������;S'�n\u0002gƯ m\u001c\u001fz1�A-�!H���dA�\u0006�W�,�Ma\u0005&lu�v\u0002���԰\u0007P�G������q^BU,\tVgX�z��5�Ű\u0003��\u0005\u001c�O�1о�ryY�7�ۺj��x9�z�\u001d\r�\u0003���B=\u001f%@��n�c��Bs\u001c\ti��}]o�\u0000��r^mԲT�\u0005�Ah\u0002����\u0007A\u001d�t���.N'��+��H���\u001b�>F����%��hڰ)8\u0011��\u001b�4�4��)9\"fj\u000e�$�3G����W\u0018�ݝP���!H\b(��I ����l��ڂ���]�\u001b�\n\u0017xh'a�%�1�ҧ^j�\bUQw��9�\u0000>�@g\tQ���7|��;YM\f���ٸ�]�����4��:�=˦Q����`@�A(�!\\����\b@����u��ue�ķ��(׏̧���B֖\u001f\t<�\u0005�}:wIщ b�t{�����\u0001�ͨW#\u001f\u0013�#u��p��X\f�ٽ՗���&\u001d��ɚ\t\u000f�ѝ�/َ��=��L�C�Gxl\u0010\u001b��CSt:W�\t\u0006�E��u8B\u0019���\u001a4\\\u00118mr,J�;���\u0006\u0017/R餜��@�+� ?~e\u0018T\u0014VΧ?��\u0018Sٕ��N�\u0019e��~R�\u0000n�!f\n7����<���R_\n��P�����}\u0002�zH�x\u0001���XӒl\u000b��Y;L�.�����i`A��Ƽ���A���r��Z_RX\u001c���\b�����ǀ!m�d��_r\u0010�+u\t �A\u001e�!p���m#�\u0011Q{��?{L5\u0017\u0012��t�\u0002\u0013���G���V��_��\u0018}���A�J\u0019��xQ�\u0007I\u001a\ri�P�:k\u0011�2\u0010�� ���\u0005��\u000f��-R�AG_�\u0011_&�7� 0\"@\u000ffs�a�\bgw!���+b\u0001��\u001f�\u001ff�맧5�� V��Cj&�-�*��4�n.���of��\"fQ.\u0018\u0000cV�\u0003�[a2�\u0000I8]�J���3��;l��U�A��\t�\u001dr?(}��C�پj�\u001c�\fdI��\u000eg�O\u0005\u0004O�y=4%S�V;i��y�8\u000ba���Z�J\u0014�װH\u0010�2@{� ?\t`�\u0005��6]�.+�����G\u001d�\u0010ޚ�B� H��A/�!���.Q������:��\u0005\"�\u001b\u001bo��&^֕���xZ�\u0014���\u001b��=�\u0019�L!�v�MP�\t���X�G\u0015�aD�l��!q\u0019�r�z���\u0004Y�\u0013��•E\u001c�M�\bX\u001c`~\u0004��F��1Ah�\u0011��}c�Gd�<7�\u001a�U۾�-��5\u001e ����\r�[u4�\u000b���\rC����/b_56t6e\u000eBS*ؗa�e\u001e09�v��\u0012����$ӿ�7=}��\f^7Im��E٤[XyԤ`�&\u0001�Q̉�#��\u0011C1F?�\u0000?�`���Iq!NK. �6��\u000eZ!w\u000eҐ�4X9+\u0002 ��7� ���X�,{Q^V���c\t]�,�|u/\u0013Ώ��KvZ\u0003gW8\b\u000e\u001aN/���A,�!�����޹\u0001���i���Dc�B����ܩ�\u000f\b|\u001b�|�!)I%r�n�.\"7.9WY�#5�V�V�V�z�f�;:s�T2��\n\u0011C�p�o\u0010�U4z�j�����O���:��\u0002��(\u000e<9��ˡK�%Zy˗O������x'q\u0013��[�vm�/��f�n���\u000e��SڥËkPj����\nC\u001d��Úv\u001b\r�3\bKQ-��7\u001dL�\u0001\u0002|Ⳡc%�mvG�N\u000e�\u000bW�WÝ��e%,�u�x�F)��\r��\u0001t�7��G?B8\u0012\b�\u0013�n���\nႀ�TF+\u0018�x\"KC��\u001f\u0012Y\u0011 �F\u0016�8�蹎@IɁ���gBZ\u001e�#��v\u0017In�\u001e�\u0018#Ѿڇ�A\u001b�!���M!\u0016�0(E�I�\f����\u0010t\u001a�'#����o\u0002�C�\u0005i\u0006\u001e�\u001e\u0016 ژ�8ܭ,���\u001c�x\u00168���&\r���M�]N�k\t�����g\u001a�e��\f�t�>t���̂\\7K*jk2' zA��:-^k�^���G�zH�%pg\u0010:�\u0000>\u0012Ĵ�\u000b�ޖ�`mjf��|�X��\u0011�A\u0001\u001cj]�\u0004.e\b��C\u0003����\u0001�u���w�\u0012�_���.\u000f�{\u000e�\u001a�C�{l���l8 (��4�\u000fW���Z�X��c\u001e��6e\u0019�8O�ɂ�e\\\u001d�\u0006��z�*dfj�v��<#H\u0012F�Z�\u001f¥S.P�n�q�\u001e��V�PɣA\u001b�!���L�ɾ\n\u0003A���\u0005�J_���7\u0018&�\u0011�X�O��'eh�\u001eQ#j�\u0001�dA\u001a����Q�u�9���k��<��I\tm�tyM𱚺�I\u001d��z�Z\u000eY1s?\u000e�)�2Gl\"\u0018���\u001a��\u001d<\u0015p5�\b��h�����˝\r�i�S\"G]\u001e�_�n$�T\u001f��0\u0003)U(s7\u0004�\u001a��M�F4��_��&����E�^0\u0000����F�E\u0018��M'�Q\u0015��\t^����M ����.��Wǹ�Bż\u0014��\u0015��=<#\u0000\u001c°2[e�w�裎��\u0014�a2+_�\u0002⨡��\u0002y��\u0007�\u0018��+e茛�&\u0003�$\u0006��`H��jt��$�A\u001f�!Ԁ�L��Y\u0004_F�6e�]��\u0005K���T\u0017�\u000e+0�8{���!�G�A\u001c��KhD��S�/�!�,\u0019�q�¼������f�\u0014�\u0000�'�Cb�t�\r\u0011���[+��~C[M����j�_\u0001�`8����0��@�e�|X������UXp\u001e�ԋ�=�|y9b�h�����r����n2-�E��y�.Q\f!���\u0000 �-+��]�\u0003#��G�\u0016x�!�\u001bI�0�z\u0011�\u0013�\f�$��Ef�h73u�������R�\u00052�O�\\�ĵ�Sݶ��lٹS\u000e\u001c�ɤTg?�1U:T��\u0014�}�\u0017\u0000\u000f��O��7��4'�'����,y8�/U⮣A&�!���\u0016җ�oa�\u0017�\u001c�[\u0007��&\u001c$/\u0005�\tK޾節}HIw\bٚrܟK��%6յ��\u0004|S��E\u0016��cT�l.���6����R��3V\u0016\u001f\r�hN�\u0003�\u0010eg�U��0_�qˍ�H[\u0006�\u001d�ӂ>�N5\u001d\"��\u000bA�8�E��-lsX5;ZU��e�†\u0019\u0003�?��\u0005�;�K��\u001d#�!%\u000f3�OO�\u0015���\u0019����ͥ+W�������+������p�vy��X8\u0013f\u0018m�Bo������]�ݩ�)\u0001��'/\u0012�K����� p��ڑy�h�e0\t��\n\u0013�'\t���=\u001d̻D�����I�����ݤW\\�{#[�vC���\byP���v��j�Vg��@�A+y$��r���i�P7&��.eGҚCHpwg��\u0000��=��d���\u001b�T�y4}���\fO����W>�f\u000f\u0001\u0012|i�ʗ<��c��l\"\u001a�ʢI]�\u0006�\u0019JZ����2z��d<�W$��\u001dH��Ȁ{�\u0006Þq3\u001b�7��y�ow�-]��I�-7⹘�\f\u001f�\u0019.�\u0000?�]�е���Q�A\u0015�\"$���\u0010Y�1���@d�b�f�\bȼ\u001f�,��~\u001c\f��4a����\u0005�;O\u0015|\u001cQ����Ů]�\u001f.���R�\u0015O\u0017�V�N�T5\n\u001d�x�2��J!\u0005���<�_�JD\"tc�y�\f�\u0018T\u000b��� \\�2����zJ\u0000�l�\u000f\"�ݯ\u0007�`�U^\u0013�d6\u001f�`F��2U�`ᨄn�\u0018|����\u0016T��_Te��\u0001oɑ/�:~�U�_��4�ɪ�_�uQ\u001c }\u0007R(!�dd�AE6\u0001�L�lPXH�\u0006�\u0017��\u000f\u0000\u000e��!�Y���\u0010�s\u00116\b0�����S��%��>��YnΗ��HG��QG\u0007����3�(�܄|N:���\bf\u0004�Wsu�SD�c�)\u000f�j��=�\u000b���`�>�\u0005�9�n���z��E���C�m�z3��\u001d{��\u0001\t�\u001d�S�FQ�ɖ�;5�C\u0012�ɥ^[[��L�Y�3�]e�i4�\r���\th\u0003�\u0003I�\u000b���q�8\u0000���\u001a�g�i�A0�\"L���X\u0014\\\"8z#�5\u000f����IM����*�U�H;�q�\u0003P�N�r��c��x���vR1�c�;\u0002h\u0001*�B�C%Z�M�\u001bH���]�>�\u0013�##@�J�Cr%\u001e�X�#~5��\n2��X951\u001e�\u0012#F�\u0007D�^�=\rf\u0000���J��4�q1��k?0�y\u001e~����6���X\u0000\u00076��@k7R\u0017{\n.٬N\u0013��N\u001a\u0015�]�\u000e�|�-\u001e��CU8�I�Zǎ��\u0004���\r7�b}q\u0019k�R��X�v^qD�\u0016_�N?�ۈ�O)ﱊ�\u0007����m���<���(5=5^v�J�;\u0003��J�c\u0017BǨ\u0005���U%���#\u001a_\u0013��:��[�!�\t��*��U��f_�u�A:�\"`���\u0016ۄ��1Ӓ(mVj��\u0018��\u0004ܕ)V�q�W�f\u0000\u001f�u�q׆��\u001c!�\u000eW\u00015�[/���P\u0003��5[����b��,�\u0018��d!�����9�� \ni�i:�;���,��-rOi\u0015��8��|�7�&V�2�@�\"�]ݗ��\u0003�z�\u001c\b��\u0017�D�*s��`\u0015�yQ2�c��\u000eX8YAJ��\u0001���\u0011\t��œ4�ڥ���A1���J٣-�O�\u0010Q\u000e\u0006\"��y�Gxc_M;�O�Coc �S�.Ӳ�CB���ܹAV���\u0002�|�\u001c\u0014leq��\u001f�\u000e\u0003�\u0017L�R[F\t\u0012�K3�H��o���#B�p\r�b0���\r63/�TAf�ҦP�1���Jv3o�\u001f�\u001c\\�6ߚ��\u0018(��rR%:��|\u00006�P�\u0017_Y�_C����bX-У\u0011\u001f\u0013a��:G\u0017�\u0010S\u0017p���\f�ւ\n�\u001d6�|}�B��x\u000f�Y�x֤�@\u001bΤ�g(U���)ͣ�\u0019�v�pA����R8��e��N^��on�\u0010�B:\u001b\u001ayx�o\u000e�hp�3\u001d�ti���m��!%�$\"U�8��v\u0016E���m�t\u0013�Q\u0013�Β|Z\u0013�%�_\u000f&�W92>\u0015Wzes�]+>����}\u000bP��d��Џ\u00011���n�C\u0006X�\u0015�\r��/��\u0007���^\t�����%�2�m]�2�Q�et&\u0019,\u001b�Svh��\u0002T������.�߂\u0001�?��dG�z;�\u000b5ewQ����\u0001\u0017\u001b|�yA�Vih�B\u0015�\"���}b�v��猸y��\u001c!�a�;�\u00023��A��\u0018�_\u0019��S��8��V\u001d=\u0011�fP���\b:\b�\u0012D�\u001f\u0011?\u0006���sf�*dnp,r���7Ⰵ�@��v�X\r~��e�\u000f?��%z�\fY%\u0010��lb�8�\u0006?��,��S\u0000\u001a��$��u:V���\fa\u0003�\u0002�}�\u0019����;<�?�\b�BL\u0012��w�1�Q��AN��ly�+.��K�zg\u000eR�=�\u0007|��\u000f�\u0010f8�� ���\u0019�?\r��`���_\u001ah�/!�W\u0018ئ\u0003U\u0010��]l���Z�\rJ3ܲ�\u001e����9�D�se�.v���b��i��8���GC�|�m���ɪ��B�\u001cy�sb�Y�ۚ��h\u0013~\u0004\\J�m�hb�\u0014H��\u0015�\f\u0010�]\u001dx�醮[�}���*\t���WV\u0011'��d�V��6��*i�\u001eT�c�vq��rw�\u0016&Bv�(�醼�\t�@��\"Ā��v����f�\bQ�\u0017�\u0003�a��\u0006bT�\u000e\u001d!$ą�&F\u000e��0t���Z���D����}���R@��\u001f]���2�D�\bewb�\u001b��凁�\u001ep*�F0�`l\fX��I�\f\u0012cN�\t\u0012&��iz=Lq�\u000b\u000e|w�Nh�\u0001�>���E�Leږ�{��,F�3�:�l�[��郥��,\n�)�ea>O\u001d�/�տ��\u000e�N�b��\u001b\"�`�������\"X15*\u0016�TF�� 5\u0005��>��!:S�@�\u000f4#1\b��_�\u0014��\u0013KEP�A\u0003�\"؀��v��Wo��\u0001�O\u0015�a�]�]���%ߒ�t\u001d=�����T����hnK\u0018�\u0010�\u0017�׮c��\u00010��NK�����H\u000f�b�G�\u00174M\\n�v�h!*�ZH\u001c7QxF�gB{�8�\u000fL�:��H����z�\u001e\u0004ܣ:{��Z��j+o$Amwc{Oz���&yiV�AX��\u0012ɾ\u000b���3��Z\f`{��p�\u0019�\r�\u0006\u0014ą60\u000e�l�Sw/��\u001b&����R�\u000f��y�` �y\rsQ\u0013��u\u001c]/� �����\u0011\u0005�ˏurч�\r�V����Fw�t��\r�ٝ�\"�$�\u00004�<�IP�A\u0010�\"��������&e\u0017����&G\u001c�^^��^�Rk�c��y���%s\u0013\u0011�x,p�}Z\b%N���W��&��( t[�����\u000eTu=Q)����7~\u0015�s:�@\u0004�,T�L^P\u0005� ���A�if�@Yܒ�;\u001c�e���81[��\u0019V��Tvf��\u0006Yn26H/��\u000e�*`��\u0000-�s�\b�\u000fM1��\u001eY�Q]x}��\u001a\u001cg�\u000e�\u0010�%�Li�Թk\"G2�R\u0019$k���\u001bԫ�\u0015���T�U�H?��nX�Š��\\\u00055.�\u0004�Ӎ��\u001a��\t}\u0005^7V \u0007�8��OY,\u0004�@%\u0000\u0006ʶ��F���x�@��#\u0000��M%��k�]q@\u0015�/\u000e�En�Ҫ;�(o��,Զ��dm÷P�\u001d�\u001cČ(���K�\t!͍������1'��\u0003����*@\u00057��\f����f�\u0013}�s����Ӽ�͖�\u001f\u0016�p^�S%�\u001b�M\f\u001f�\u0012���2β?��7\u0014�����F�[�IJ��:1\u0013^\u0017��+��m�p�1�\u0017D\u0017\nR\u0013{mfJ\u0005Q\u001d\u000f�>t�l\u000bI��\u0015\u001d�c�f��=Q\\\u0010ױ� \u000f�\u000eMv�F�e��Q��s\u0005�FS\u001d%E\u0015ƕ��K�\b\n���0x�\u000f\u0014����\u001b\u000bVZi\u000f�\u0012\t�A\u0002�#\u0014��M';o�S�\u0017�4�{]Ph?j����\u000b��ɇ��\u0010v_�+�ll�z�\u0001P�\b��X�q��Q.<�\u0002z�+Sx\u0002�\u0005J_xن��|:b-=d'�DFyXZo\t���\"�l0�\u0015:��KVM\u0011\t�\u0015��&�,�Z\u001c��_:l\u001c3���p2�Gd-S�z�4�$��p�\u0011@�@��#<���d)�fE�\u0001a:�/d���\bػ��ֻ ̓P�&E9`\u0001'��\u001c�aSG�\u0003ݐ;�%\u0015��}��=�����\u000b\u0003c\u00181c5Ud������\u0015J����0�q�ޏf�MR8���F�b\u0017���\u0011\u001d߀�\"~\u0013e~���\u001a�ŽBա�<��g����IC4�R�\u0012^��\u0004�\u0000�WdNd��k}�}����\"��WN�%ty�\u000e/y\u000b��z dl��\b\u001caxbR,�ƀ��\"\"8X�͆\u0000��\u0006\u0017�\u0019j���f\u000e���\r�\u001c+T�|�6�K��D�� �R't�R\u001f\u0013~����A\u001e�#P���v�B\u000bޒ�џ4�y�C�򍮕��5�Id���^n>\u001d5��摧dY)\u0010�\u0003��\u0018�f���\b�'�| ps[���e��N\u000b,\u0002�����\u001e\u0016�1�ω*X�!�\u0000M^�{�ݏg��JC\u0005t\u000bT�̕O�,�2\u000b6H�\\\u0017�fAS\u0000v�\u000fS\u0005n���ML\u001c��n[\u0001��x,\u0010Vb��o\u0003�K���F%\u0001�cz��Β\u0001�\u0017\u0019��҆&K�͋�ZF���K8;\u000e��\u0014\u0019\u0018v�ȉ�|��'Wz�I\"/��n&~I*Of\u001bS�g*�S4޸�y�\tb5��`i�Q�����^�(T!��D�\u0012��m^\u001c�))�%n�uǞ\u0001X�\n1e\f7\u0006��\u000e��)|R����k����w�\f��\u0000�\u0003X������l�S�21G��%�\u001b�OSmd�\u001b1���Ɗ�Zk�\u0013=�o�I�S�r7 vS\u001c�R`�ժ� ��k�l�\u00124\n\u001dʍ3\u000e�����\u0006q�;O\r3h��`��\u0016��ni����*��83��}�ڨ0`�p_��b��Οx+lR�\u0015_��n���\u000e�lN�K����8^�.�O%���<\\ʨ0~�#��r\u0001ٲXmM����\u001fX\u000fj�D\u000b��F�U�4��'��Ba[��\u0015n2�A[�#���0A���|�4\u0004\\��]e!�H��ٿ�6\u0003��\u0001��cK1��\b��nľ\ns�w�\u001b\u0010�\u00110�\u001f�\"\r8��3�\u000fۂ�w��@\u0004I�;w=�����\u0001�u���\bɆ�\u0018��\u0015�6G�\u001c����?m��}�pX\u001c\u000e)�.���\u0019\u00181I\u0007�:��\tK��_*��13��zvqV'\u001a��\u001abV�\u0011��(�M呣\u0018�ǣ{���W7\u00172\u0003u:\u0016X\u001ef�\u0001l&���t�TQ��3z>{LJV��&�E��i��R����()���Nn��e�5�����+xh�m1��\u000b��؍i'��\u0019\u0003��\u0014Q^���:\u001eg��x\r��\u0018C�\u0012z\b��*z'��\u0014�\u0016=���´z%�]�Cwv\b_.�E\u0010F��� ��v��']����\u0014����Rw?�zK\u0019v�ӝ�L��A�#���|�Q��\u0019����Z��n�\u0007$��@\u0003\u001aj�#U�=.d�����#�F�\u0003?2j\u001e�W���\u0007B��VeV\n$��X���\b\n�N`�\u00073�TpH]6G7\u0017!{��\u000b|e#0�=�\u000f��g{�����ړK������\r����Z)N���$�\u001c�ӌש���R\u0016!����a���[���%FLnE\u0016?M_�s�(�f����c�1_�*۟j����\u0000W|߱\nJ�'��������b+�bOP��\"z�e��z���lJ+��Rr\u0017�ZGq\"����Z!X�k�m�`-\u000bP�\u0006~�y-\u000b\u0010����[���ۭ@B\u0018\u0012wC\u0007L��Wʯ��N1r��}���\u0011<�#�n\u0006���\n;|�\u0018~��gZ��{&�p�xV{Ⱥ{\u0017\u0003��\r|\u0012\u0014g�!�$8O1գ�\n����\u0010�\u000e��*�����\u0003�C\u0012���\u0003d0q�N��V\u0014&��Yd,N�|Rv\u0005�72\u0019Q�֊�����\u0012�Zv\u000f|��x�W���\u000e\f\u0000 ��\u0006�\u0017'�vI���ɜ�\u0000�!\u0006)=}GJA�\u0002\u000f����-�\\\n?k�\u001d�L}�_�B�_F:������\u0005��-�O�7\u001e��Z2\u0002]k�\nQ{�Ň���\u000b�k<��_�0\u001afG��,\u0000yN�襂]&{4=�T��A%�#܀�MX�����{8�}��Oյ�)k�I\u0004��)\u001e�����\u0003׈�\u001b?Iz�t�@Q��r(��\u000f�\r�I\u00104Y.\b�8�`D�˦CǮ\u0004o�BUY\u0011\u0018��ג�_\u0018%w\u0010\u001e��%h�ˤӢ\u001e:�Lٱ+\u0015y�g�RE\f�ή|\u0001�bw�ZZ\u0011_T��aC���ȑ�Z�b\u0019a�\u0002`��\u0011��ϩ���ɣ���\u0002��-���\u0007*��-\bU�K�S�\u000f���[ż!����C:�0\u000e�\u001a��>���\u0016�G�C�g�#v5�\\���\u0007�y\u0011Wf-��h�X�}�1�Nop��1�:�}�~,��$\u0006�K�\u0012)\tj�\"�n4�A/�$,���f�\u0011\u0010;�\u0013�_��\f��f0aH���\u0006�0��%x\u0012�-�\u0005��A\u000f�\u001d��j��;7���R.��h��>�z��\u001b�Ѓ\u001d�տ\u001c�]�3Ǡq�f~�3Y�4`�Oн�\u0012�=��\u00043)��\u001f�T�xf+��\u0019�~/��`�\t10�8��w,lǢ\u001d�Ġ=��i#�Cv\u0004�A����\u000b�\u0011�m�ѰeC~�=p��+��\f\u0007\u0004@;fx��U��\u001e_Z�\u000e�xs��Z�`���V֌�X��\u000e>r�ׇ�[��_\b�7�I#N'x\\WL3ض\u001d#\r�\u000b�\b�n\u001e����H\r\u0005V>N)�,�M$��RR���]��\f���~>\u0013�,}���%\u001f�/\u001apB[>E8m6�AG�$@���l^P�����ȒA^L�c+s\u001a�9ba4���J��\u0011�˻)Cy\b\u0018:a�\u001b�2뿃�\u001aC�Y\u0003��O$�ao\u0014�H��2t�XNtKS��l�8\u000fx�̯�w\u0011J�2j�9��iN|~&�$\u0004\u0005k�\u000b4h*\u000eO�\u0010���͡�\u0017\u0007\r�Vl=��\f��\f�\u001c��S\u0019��\u001dO��� 2M�A�.Qb�\u0011���Ab�L_���\u001b��g\f\r6t\u0015%'\u0002XW�~���]x>\u001c\u0001\u000f��7m\bШu�\u0018Փ7;r6%h`\u001c�D\u0003A�\u0014�m\t����}V+�)蝩z�\u0001H�\u0019H�\u000e�߰\u0015Ώ\u00185�S��G�ǐ�k\"\u001f�)�\u001b�]mm\u001c�:\u0003k@����3�$�ZF {�k#����#�BF�l�[\u0006۠\u0010����\u0006�7�A;�$T���d�.�Ϛ��P;Fp��b��\f��i\u001fi�(\u0017��\u001f�\u000e.��h�ӡ^��\u0000!\u0012e�W|G��(m;��(��a\u0013��Oʶy�f�ӫ��p�����\n�\u000e�[%/��(�غA��\u0013\u0006\n�N�\u0016'�\u000e\u001a�\u00030��nI�2F�![-\"z��1k(�x\u001e��\u000b�N�B�ޢ6�ZG�}�M�\"�L��\u000e\u0006�s��\n�b\u001c\nSb��\u0006��*wܯ�B����EV���\r0�Y#��};wV/��b�e%�\u000f?�\u001b#vw��\u00007�\u001b�Z\u0014�F���bHF\b��|#\"n�\u0001�Z\u0014̰���6\u0012\r\rI0�ڒ���\u0006\"�X�&��da0\u0018>����\u000f��~Oږ�%,��\u0012�\u001eO�Hb�B�%²\\�7�A:�$h���k�E����\u0011�u�\u0000���0f}��+wn7D�t㔋X8�؅cjg��`�&�[��\u000f��e\u000eq'�7\u0011��nx��i�\b%en�+Gw�����N�j�P�lp-D4A\u001d��U�s.\u000b��;��7D��\u000boŸ\u0018�a��\u0005�0=�x�\t���k}9��\u000e\u0014��0�6o�\u0013���\u0004,���U�\u0000\u0001�^�� ��W�q%����\r@\u000eR;s^�B���Qa����\f��`��z����r>\fC�<��\n�l�*\u0013p_�wX��L\u0003P%}�\u0019�0A?#>�$ƅ��_N\u0011�7\u001b�|gf�ʟ�/8���\n|��)R�\u0011�t��b�sG޷#��\u0010�wC�V\u0002~8K�����\u0003n���I��A5�$|���a�����/�f�5v�r�^�\u0015�qmy���W\u0019�K\u0018��[��\u0006��+[��\u00141\"4�u=�ݹ�D _=w1���FM��,Ҙd��t\u000b6�؞+�WŜ�N\u0018\u0005*DR��c��\u0013���x�\\����KtV��R:��'�$��\u0006J��R��\u0017�Q��\u0016��\u000b��\u0017K\u0003�\u0017h#:�\u0015�\u0002��\u0018\u0003\u0014�|ts\u001eg�o\u0007�\u0001ҟk�@\u0010\u0010(\u0002��m6q �\\�%�\u0003Џ\u001adi���O+\n\u001f5�Y�ɾ0A�\"�\f��\u001d�\\\u000f�\u001f�\u001f��B��NT^0�B4�l\u0002P�UL�l\u000f\u0014�y\u0005nx��\u000b�ʇ�\u0011.��\u001f6�������\nb,�M�V鷷\u0014�J�~���S�\u0012�����&5�A��$����mmLץ�ү�\u001e�J8�\u0013�c߮�F�&\u001evNވu�D7F\fp\u0012cP�\t~� g��i�!�\u0003q��\u0013g\u000f�i�@R��> Ϛ�,�7�թ\u0003\u0016��h\r$��\r���Y3��l���'��2G�\u0016�Tp�<�F\u001a\u0012L!)\u0019\u000f�\u001d����ݦֳW��.�ț{\u0005����\u001b����١�нg�2�\u0000FB����f�|4\u0018o�\u0016)�6���3�GM^p��l�3z\u0016��O�-.��n4�MQ�{��i\n�t;\u0016@Z;E��,�A��Q,\u0006\u0000������qz�\u0016ץb\b�{x*bU\u0001��\f̏�����\u0018A�L\u0014\"=�\ta���ЙQs6�!�\u001f�4\t\u001b0�\u001f}sD<�c\\\u001aBW˒��P'�����H�^��9\t<�[�=\u001aO\u0001�f޶\u0016��6$�s+�Tۙ�=�\u0012=2'�I�F�c�%\u000e!7\ni/[O�@�X�0�#ߐ&���#O�y3�>�7�AK�$�����׿ݶ�J��E\u0007�PFeܡ2��^�\u0016\u0010<�dI��*�����K�M�\u0000�sU��V\r�1ȕ�L��I\u0017�\u0014J��7tp�g\u0012{;zVj-��?�\u0006���}�����h{\u0004P)��\u0000�N\u0006涷NF\u0000\u0016_�.�����s\u0000��ܘ��\t[�:}o�}�'_��,�l؅\u0000Q�?ai�LD�R��%M�1N\f'�W��DKn\u0010F��+�U�i��\n��)n#R�z\u0016���믩|+�/�$:�92����:v��{2��S\u0017\u0017qG�����\u0007���<-\u0004\\\u0016��Q�sȸ4�����\u0017\"�XM��,\b�%\u001bԸ���j:?�Li�\u0001��N�|�<#&�ec�e�G��BN�\u001eT�d#\u0016\u0002k)�J0\u000b�e�]�#�<�\u0018^��8�Bo�$���}�i\u001a�{\n�\u0000`H�4��\re�Gx\u001d\"�5>�Ae�`\"�FRۈ\n-QD^�`i���Nmn@�?��\u000f\u0013&B��~\u001au&�\r?1�B�\u0012_V���.S\u0002����!ěD�bh�;D\u001cs\u0010ym�P3�/�Դ�삑�8�W�r9\u001f����r]z�\u001c��cvb֛M�R�\\�y��9A��\\Ϛy���@�s�d1�`���i�`���\u0004�Xa\r�D\u0007���9��n�괫�]��X(*�ҞX$�}�0�p}�\u000f\bj���\u0013\u0018�8Ԃ��u��^�`�\u001c-���m0?/,�\u0003\u0018\u0005\u0012��\"���\u000fB\t+�\u0002��/q.\u0003�te��@�r\u0000\u0000\u0000\u0000\u0000\u0000�F\"0���\u0013�T��f��F\f�F@�c�2����X�b�N|�\u0012��\fi�qm��U\u0006N1\u0012�\"^�?���j\u0012���Em5\u0019e�N��\n=t;���<򍦰�9>�D�[t�b;\r-�\u001d!��AspӍ��\"\bJ^����s\u0013�V>qn�\b��n\u0017aѓ�\u001d%\f7-\u001a�f=��\u001c�*CFu�U�{��ba\u0014\u0005�Sj>?��U�?���GQ�ҹ�I\u0014:\u0011ħ��&�,\u0016����%N\u001c�\\\u0002q�D$��p��1&{��͢L��@K_X�]x5��ϭɾ��E|ǫ\u0007i�BQ�65��ts\u001bTq8��-��lĚՅ\b/��Myr�z���9��MyDo�̀�O8E����d���BPX\u001d\u0002|�9�W��'\u0019��|~�d*4�Q+�$\u001d��P\u0000�A4�$̀��m\u0002�.�\u0015%b��|\u0014\u0007+��$%�/Δ��Y4Z�<|�I��\u0015H\u0002�����,\u0005H!�J\t��Ƈ����ײ��\"1�$%.]�xu\u001d�/{\u000e\u0006\u001b��$�%���)&k�8�]�S&��&4;�.�L\u0004>賔cݹ�\u0001)�u�?{w��sc�KE�Ft������DhF�1�;=|��N�����7R��\u0011��\u0006\u0013�`��\u001e�7F}.�X]��q7��\b�\f�\tP�A)�$����\fY��,�\u0015��S\\�u\u000e�x\u0014�7&yW+�.d\f�:\nG�\bf�Y9���t�5Fu\u001e+b�+��%��\n\u001e�8&�:\u000e8,���hҭғ�,_V�3i^{\u0017�Ѵҵ�\n��wh��Z�m(c\u0002�&�0B!�@PX��B�\\u�sl��b+?\u001a���\u001c��(\u00167�Q�qn����t.�z�q�|y[\u0004�\u0003��O\u0000\u001bVj+�K���E��젍�Z�w�\u0005C��odž]��n:x����#�:F�([Y`w\u0000\u0005B�!�Z��[�Y7.~�\nE��@VX��;y_�Ḩ-M���,\u0000�>�o�oe`s�qq�=Y�\u0017�(mI\tvR^��\u000b���7O\u0007n�\u0011sh�A3�$��X��^\u0015�kj\u0005R񃅔@#�\n\\:\bwp��)ݩID�G(#/ox4�S��z��\u0018T�?�'h�1�\b3�+\u0019��\u0010��qh��\u0014N�\u0003}�����u\u0012�vd\u001e`���#�ZsjU�-�\u0002\u0012*2q�����Q��66j��u'�.�Q�Z*�����:\u001c�\u0013K4��@`�e7h�ab�Ft����\u00022��z�/\r��Z���[z\u0005@�v-��`ScW\u0004��dfR�|�)\u0013���f��S�F\u0013���8<��]צ\f3\u000f\u0013�Yc����n�\u001e$:�:/�xB\u0012bT�p�%�\u0003��0n��D\u0003�R �\u001d�_qu%ED5��6�k�&���o�&>&�P�\u0006�>aN\f�2��A\u0015�%\b��L�c�P�\u0014��4Ua��&�\u000e�C\f���&8V�\u000bk\u001d��(��k�\"�]6*q���N�\u0001t�\u001f�w\n\u0015��U�@)�:�u�\"�\b�\u001e8��K��\u0013L�\u0013��4���yHpW\u0006?8���Ց�/#�\n\u001bn��e��H'-Aͨ��Uⷚ|O���R\"�\u001ai6�P\u0013�|�\u0016ج5M0m�m\u0013�I��m\u0001+��\u0018@��\u0011�-��W�1Y��ZP�\u0013[\u0019�0\u000b�� ����z�R�B#d���\n�'�\u00190x��KQ����\u0000�\u0004���ϫ��\"h�x���eN�\r���Y��������\u0015�\u0002\n0�\u0012m+>sa�kl�s�xӣA.�%\u001c��L��\u0013��\u0016������*��C�½lA\u0002\u0014*!�#��_-�\u0011D?��\u0004�����ٴYr\r+4s_�]���\t�L\u001cvw�闃���\u000fev,��v��=��@\u001b�3�d�\\�dRR�n�L�q�T���|�\u001d��\u001c�^8!OeG�ӞގV����b��X$�Y���c��a�]Z�j_m\f\u0002Ɇ\"\n\u000b�\u0018\u0007��t��o�\u0002�Z��Vqb�'ާT�\u0007�M�u���\u0004��<7��\u0013NJtB��r���|\u0003V\"\u0003���v�����P�I*��23$%��~�O5���?����ȃ#�D}���V9�\u001dսl(w|X3�IdY?�\u00075���&[��mdξ�ͭ�A0�%0���c�J��2�k��\u0004�GD��O}�w�|�Cyd�\u000ev�$#c\u0017H\t\u001d��\u0012#d7����\u0018�y>)�\u0018��y�3.Bjްgf�5�H:v:t\t\u0010��͇@N�\u001b��ZV�QNW�\u000f��\u0010&δ�\u0011���su�i1\u00026ſ�d\u0018\u0012��o�s\u0019�ť�LF�Q��\t�\u0017��Js��������\u0005[�gɳ�Ɛ�\u0003?��<���s�Q�\u001a;>����O\bH\u0014�\u000ba[��E=\"hᮺ�����o�vs��|�u�zeӌB\u000e�I���Ԗk\u0014\u001d�:�.J�$�\u0002\u0000X�\u0017��>@|��E�ͲR9ї�y�?,ئ���\u0000i�;��v����Q��K��͵���bJ)I�£A)�%D���l��/\u0006�\u0015�v\r=�\u0005���}�\u0004Y����aQI��ጣ́*e���G�\u001d�g!�zs\u000bm�/���k��\u001f\u001c4�'\b:�9���R5vk��3}N\\Zz\n\u0007���ن�N �k#&?��|7�/q\u001f|�\u0004:��{��,����E���[�\u001a�\u0000FA�似�'�Z=^v\u0000\u0010r\u001a[����\u0018��C�&��(��z��!�0`H]#N\u0017��,��\tJ�O�}���2\\��Bx��/�D�v������KG\u0006\u0004����[���:����-,�8��\u0014�pڒf&��0�f�*\u0015Z�k\tx��Ŭr\u0018�\f�\u0002_!�\u0006�����\u0013C���)/\u000fJ٢F�\u0019mnC�A<�%X���\u0014_B�mx����)��\u0004�&tx�i�9\"r]�\n۱���'\u001d�E7��)Z��,�u5�F� .�bV6B�7�\u0001c;�㈯\u001ay}���U�Yn��U�\u0000���1�\b�S�c����,�Y~B����\u001f\r�Z��xӮgޝ�l�0\\.��\u001b��ڒ��\";��bm�N2#�o�\\bGV|�_\u001b�\r6��`Ol���r��'��\u0016�?�%H��\u001d��\u0002*fB�о�4vU�\"\u001a�dԉ|�)����\u0012G��SM���P��\r�N���Sf\u0001�Bx��p>N�`�\u000b��!�\\��@�%\u001b\u000e�.��u�6�xz��E\f�֠�U��\u0007�n���6<��\u001d\u0017I-��\u0000q¡���7x�C�A8�%l��L�u_33-ͯ��b�4�N�sŽ\u0015�x\u001c��av�Ne�5y�}9�\u001a%�om0���[1��ϵN+Q+h+ۜ\u0015�h�d���~��yK���\u001f�Ǡb�ǾK5�\u0002�d\u000f`�l�^�\"@oh�+�?�]\u000e\u0002�c\u0018lcx8F��N\u0010r3��_\u0001�˺�ƱC�\"�(!���^�\u001f���*\r,\u001dk��\u0000��\u0007�Cil]��\u000f��b�%�2��Ir�^+�o��;����QBr\u0011���j��(&7\f��Qq����\u0019P\\�)e&\u0018�ɾ\tOO\u0018��_<�.���n\u0006��:���|o8��Iֹ��I\n��K����\u001c��UQ��\f���D|�8ޓ����d��l��Y\b�\u0019\u001f��A7�%���L������t�p�2�\u0007��;�tږ�\t\u0015n� �\u0004�Փ_�5��S��/�\u001fO�F����+K\"\u0007����!�Kss�Dx�p�7U��\u0010��v$��\u0003��79�#C��\u0007�Gr�0�\t\u0017x\u0006\r�߽��OX�F�H�<��V���\rD��R����;9�\fe!���8��I\"�����{G����\u0004\"�&�\u0016�UWr�x��\u0003m���\u0013t���|�?�ق�3U\u0011\u0017��\u0015\u0006Ι\b�\u0017��\u001c���t�¥��\u0018.�h��5�\u0010�g+�\u0015W�L�\u0010�[�Q\u00122ӄ���\f\u001b�l7J�'/騟��!\u0003mK�풯��>$\u001bX��\u001aJ&��\u0004������f����eQ�\u000b��I�A+�%���2\u0017��\u0014�Xɻ\n\u0005�*���\u001fy��O0����If��\u0019>y�(8t�i�h\u001a�;S��!&Z\bV\n���@\u001aHR����`cA^��&4[��\u0007s�\u0012�=D���\u001b()J��$����+�k���\u0007\u0000OzFq�^N\u0014�0�_0�\u0014P!�׏2�,y�\ri�Ё�\u001aX\u0004��\u0015gw�X#�\u001d��oz\u0007}%\f���h��\u0005�E��M���\u001dr5��\u0003b���\u0004��ߨ\u0005�C��h�[�\u0002\u001en\tdt���N�ۃ�RC�*���\f3�xL����Bc�.\u0011��N+,�*�{�����-����嫨\u0011u؃��6<:#��>v��\u001b�S/5\u0002!\u0015�A���\u0001w�ɭ�BG�%������z�_�� [3�B����\u0004^A�h�\u001f6c^v t��&4�\t0\\�݈\u001dO*̐ų�\r3\u001f�؍���q���R�-�C��Q�mj�Fp����P�g�Ƽ�v��\tR�\r#7;��V\u0010p�����*ר{�‹��B6�3SI�XٟQH|\u000eؤ\u0010hn~��0�s\u0006�\u001b�vx\u001c���]�t�r�P\fZt��E�\u000b��F\u001dd�\u000bZyD)���\t\\�(pp��*K�\u0002�\f\u0003�V�l�\u000f\u0011 V�\t<+G�7��g�~���\u001f>\u000b��T`䁷��{ ��\u000br�T7o�Z�r�l\u000e�XB]1���=�Mگ�� ����\u0018Xf{:�4�&\u000f��\u0012��@1Wݜ��w�R;?���&��\u0019Z��\u0013dP0\u0001�vuO���Ԉh\u0011��Z���\u000e�qj\u001a5�1��^qB�>�RU�\u001f-\\\u001e`Zzxr�ɴ��z�\f�[n�t��z�f\"6:�V���j�hij6a�>\u001b�p\u0017���{��\u0003\u0015@�\n��z�E�\u0005#3�2\u0011��]$�{�\u0003��\u0014m��%ȟ@�S0Y`.�\u0002�\u0019A��e(h',A�\u0018�\u000f:��\u000f]��NQ\u001f��Z?\bˋ��O�\u000by�����l8��̎��'Q��\u001b�#1~�Y�H/�T���\u001c�N{���_��.1T?�[3F-��W��&;I��\u0011\\��\n�陭�@\u001e\u0015�\u0003�`kB�,z0w��3��A&�%���L�ڣƳ���\u0013Ind�h{?�r\u0018l4��WF�LU\u001b\u001e�ʨ�*O��7���p��X)\u0013�1\n䣚�l��i<����y\u001cSec�.@먪�h��X@�\u0000x��6��4u�\r\u0007�{�/\u001b}nG�\u000b�Xa�N\u0001FjS�䑖2^�Vd�W��E���l�:P7��\u0019�t�G�:]C�ۜ�1��\u0011�\u0004�J��i��F���C�N�@]\u0018�{�O5ͼ��}z̊\u0003���\u0002m�G��|k�0��mX9tmu�\f\u001cyH�>���{ǗG?\u0015Ɣƙ\u0016b��\u0000>\u0013�_On\u0017��^5�/�M\u00067�\u0000�z�@Ľ���\u0006�|\b�;N���\u0006F�d\u001d\n��N�;\t�A,�%Ѐ�X�\u001a ~�\u001c\fqɔ��:�z\u0012m��#Q\u0011jFw���3\u00040�ʽ��\u0007B2kT��+��~��\u0018�\u001ez/��P\u001d^���;з��9��O�}���2�\u0000��?\u0014S�e#�si���A\u0017�%��L�K\u0017��\u001c��/\u001e����\u001a�\u0011ut��ۻ���I�P%�\u001fw4�\u0015%E�\u0004/Z�0�t\u0000c`����L�\u001fB������\u0013\u001b<�z\u0002,�wY\u000f�X\u000f�_��ҳ\u0002~\u001f�c�_tF�˵_�\r\u0017\u000f�\b�\u0002R\u00034\u0006ʢӖ}\u0017K\u0013{SȱEe��EK\u001c��-o|G\u0012�\u0006���_�C\u001c����;յXV\rΑ�\u001f����*Q(�\"ԙ�E�0�ֹՃ\u0015���ƣ\u000b��U�wҺ\u001e\u0006\u0013\u0016p�im��+�+Е���e���� � \u0016�o��\u001d�s��Y\u0016���j�\u0016�%FP��!F�\u0001�''+7�DE��ȅRI���\"B7\u0007}2�Z�A\u001a�%���L�ƫ.S\fZ�5/��\u0001RE\u0019@�\u0007�P�v$\u0010��/.��?\u000b�L�����K\u0010Z\u0010�0v5��\u0017HP�ұ\u0017��k�d�?N~a,�iSD�b\u0019�,�<�\u000e���V�-��'�z���&l�%��\u0010�$�\u001d��_ex�\"�3܅�\n�\u0018��ل\u001e��'�.ަm\u0016\u0014AGnI\\�����[�8��Oo5&\u001f��6ԍ��E\\<]j��\u0005���i\u0007�����\u0014����R�fx��\u0017a��&P[\u000b���\u000e���\\ҭ�Y�e�)1/\u0003G���;=V�\u000b���ut�Aa�\u000fcVDu�\u0016�-�]Rc��x��\u0007v�\u0018Re\u0002�v���\u001c�A\u000f�&\f��M4'D6�L�\u000b�]1\u001alh\u0010˴է<8�\\tőn\u00194��Q[ʤ���\r�����>����}�vN��s�\u0013D�k��5�ֽ2D��HW���G�\u001a����\u0004�F|J��\u00078�\u001c|y�W�F��I��\u000e#ZXym�\u0007��P�\u0007Gd;���ЕYP~�y�ϓ�T�w\rN\u000b�(\u001c\u0005�\n˗.\u001c,:\u0019fI*���dbyei�\"89\u0000ե�u�󐈦�>����a��\bS\u0019�Q:�K��ʝ��b�NI�nK���à��\u0007g�Z<�\u001aT��N�p.�y�y2\u0011qP\u0012\u0000�j�w,x���v��\u000f���\u001f��\u0003z�A)�& ���c\u001d)�)\u0005|���6e��@�C��@,�\u001foS��_�(���\u0010\u0016f{�ۈ\u0002�\u001d�|�Uc6��%�n�|�m\u0011\u001eK�J�~1�%�����!!t5�\u0011�������;��Ł;V5�L!��\tNJI�t�\u0018\u0018e�!T���Q\u0018f\u0001�H^�*��iG���ݑt�E^Y\u001a\u001a�Nj撰��J��E��oQѰ�v�F�L�6�r�b�a��U]\u0017�\u0000\f���F��Z\u0002\\�����3���3���\f��\u0016L�I�JA,\u000f<���9�Qbm�\u0010�})�8ILѨ�����>\u0012Ʉ��ăg\u0019\u0002�FG�I\"\\���FAD\f�I\u000fJY�0F�\u0000\u0006��\u00016�\n�^0\u0001ڣA0�&4���mw�U\u0010�\u0011��4�=���uv���M3�#�\u0016��K0�;Ă$BB]�Fq�\u000f݇޷5JQ��3=�-�\u0019�+�up���mS_#+�\\w�\u000f�X�\n\u0013�q�?c+Z�\u0016\u0017\u0013\u0000��\u0004�*���F��I:� ��~\boc��1$]yci�̃\u000e\u0001��\u001c:(��\r�&��r��\u000b�Vj� \\\u001cA\b��\rt;����Y�f��m\f�2X�9�dJ5$�yj��H)�,\u0006\u0007!\u0007�MZ�`\u00014\u000b\u0007\u0010��z�U��\u0000z�Cw��ZѢ�@5��\rO�i�o\u001e�\u0000qէ��\u0017�ďf����ߢ����8:�*�i׿��q�@7�꘲1�\u0004�d!)\t�[I\"��\u001d\u0006�mۣA(�&H���brK{\u0001I\u001b���x><\u0017�}��,�Q��{K�N����k�IX���c\u001a�O+_�xR>.�\nj�N�ms�f���8֍\u0019j#έ�Y\u0012\r�gB�Y�W�Y-\u000f\u0001\u0012e~��\u0000�\\��!\f\u0012�\u0015�ݱ3�>\u001b~T>�l�����/\u000eɭ��ω�F�G��ģ\u0013US�\u0004qi��v�F��C\u0019�������^��=�9��M\"���\u0004\r���\u001bA�N�15\u001dl���a��\u0014E\\\u0019�hyhY��X~\u001d�VĜ�������������i\u001cI\\�A\u001d�&\\���brH\n$\u001fn5GwZ�oL� >eM�ߌ}�r��c��\u0006�\u0006A�I\t���\u001c����\u0010��׳ �\u0001�4�4o]�6�\u0011�D 9��ދ\u0002\u001d�\r�\u0019zʿ�\u001a{\u001b���X�_j�9�5���r=G\u001a\u0017��(:�\u001f�����cHut�ܻt�\u001acI#\u001b�D3�C���\u0011�ѹTz��\u000e\f\u001b\u000f�?/�Ș1\u0000�!t�6��p}A�\u0019\u001f\u001c 5h��\u000eq}�8��m�\u001d���+�KF�؂��\u001d\u001d�c$�w�\u0004�����f}��WɠN\"��ް�\u001f�\u0004\u00105�H��^�Ax��g��j��:_-�8)\tp��-q���;~����ԛh��I\u0001]�AV�&p��0�\u001d\\m��e��\u0013\u0002Y�ټ�Zf��\u000fܺ�\u001e�����R�Ȧ\u0014\u0019��G\u0014�L��=�\u0010�\u000bϰ:\u001b|�+�o]�\\�\u0004q��\u0002U��[��\u0002��};�Zϵ�\u0004m�\u0002\u001d\u0011#B�IӇ�D\u0019\u0017�l����:2�|��|���8�?]�>������S:\n<�k�B�����ؙ,.p�\u000bl��n����\tO�μ-�$�AV�&���M2���\u0010>\\#l�8fz���%��\u001e\u0010a`n��;2vV&\f���JZ�o�B�6A�;Z\u0019�U�[�E�\tw\u000e��C���xU�n�2+H\u0001���\u0014nndt�\u0002��A�DO4\u0018��qp�X��>J�����(��G�\u001cQ؟�J\u0019�\u0003�4�����t�6#�\u0012�:\u0013Tn�iӈ�d��\u001a�^��8<�\r���\u001d����ː���a%�['k6�\u0015e\u0006�\u001a�l���}�\u000ehY���u��\u0014ֶ�\t^�.6D�ފ������۠/9�;V\u0005'��[�h�k�2�I?\n�c\u001e-�Z\u0019\u0011l�h�/:��ó���@��\u000b��\u001c�����d\"Ⱥ�<��o�w��j���K$�2���Eg\u001d���\u000f�GY�\u001f�_�!\u0014��\u000b\b���O꯹�M\u0000�Ad�&�����\u0015`�\u001aA)i�L(�N\u001f11m\u000b��\u001e<�k+�\u0018ru��Ь�<�\u001ep�1c��A|���\u0006\u0007��m���L�\u0012�U��y�wO���iDˆ?\u0013K�Һ�\r\rk|\u00066Ǚ=��\u0014��w���t7\u0006�\u0007���)_i5WS=H�9�}<�T\u0014��\u0002\r�#���m8��,kM�\r�9\u000e�^��&Ɠ9WN����V$\u000f9�u\u001c�\u0019��\u0000Gw!q)���R2�0�=nN��a��w^����|�_d夰���\u00052!'�\u001fVq\u0001��R\u0002��\u001a9��e\u0003��æH�\u0019V����\u0015��[����\u0013������\u001b\u0000\u001d���\u0005\u001dP���\u0017�4�|\u0018g�K��u���a�\u001b�u0����=Z�a$@���bc%�c��\r\t��\u0019E(��j��T�⤟�\u001f�kk ���Ӟ��7����Ւ�K��\u0013\u001c�\u0007�TN����{�!|��t\u0010(\b���C��]߃]�ȑ\u0012#vɓ�%.I�o�G\u0011�Aс&����m��/��\u0012��jX�4\bDi\u0007����_��G�6�j)lv`P\u000f\u0004�Y69���\u001a�m\u0004�r\"������� \tK!��ᅡ[�ڢk\u0007q\u001a'�\tK=#�q�\u0003z��`\u0011�u\u0016ս��Д\f��\u0006�G���\u000b�n/\\�\u000b�x/\u0000�m�\u0012̰�hhk\u0013\u001b/6Nmʠ\u0003\u001c�\u0004\nw�J�Ϣ��h��q2�]�\u0006M�Q-ESb�\u000e����\u0007�ao��\u0000�fŇ\u000bU\u001e���_Π硽\u0003j\u000f^\u0018�!��\u001f��g5��ϖ�s\\���\u0002s%Y�W�o�a\u000e\u001e�\u0007LM���4���(<�m�\n��\u001b\u000f�����X�]\\��%1�\u0016�|�2ē��\u0002�15�\u0018+�(\u001c\u000f�)���Rߔ���>�ݽ�����@[QZA}�͢C�1(ށA�߯����Q��\u0005I���S�cb\u001cQ�j���\u0010�\u000bg(��S�~����\fĞ;�y�a��p�=�u\u0013�:\u0015�p���U]\t/�4����=P���%�� ��\u0014O�߃t�\u001fu��\nէl�\n@\u000bef�}�� �$'�\rȗ��qi;��A%�&Ԁ���\u0014�`763�c��܄���X?�4*�Õ��\u0018���W�T�\\^t؅��&\nh\r61XY#m��\\�,�\u0014�g��\u0019\u0012\u0017\"�Y^\u0013:*�$%q6\u0006/���V���L����ڕv���ɰ�\r�n�G��)6��p���vn\u0015�jOZ\u001a��A��\u0016n��>X�\u0007�v��w�\u001f͈:�+H���}�\u0002�j3O\u0001FG#\u0017�S�\u0003�\u0010\u0013\u0004<,KJ\u001e\u0002����v\"\\�S�����\u0001\u0001�=��c\u0017q\u0002�ynZ���d��~������t�\np����C���r��0Z�%21|���\r--�<<�вE4�.�\t|��lOE�6I;��p\u001d$�S3�[���A\u000e�&��X������r\"j\t!v\u0019��]\u000e!l\u001e\u0011\u0011�\u000f�S\"���&���'@,\u0019��n�\u0007Y��~cG\u000e6�M}ڔW�F�Ô�~����[r���Z�9�����Lf��f��.�\u0000k\u001a��+Kd��Ӵ/����QX~G�$�\\���Ad�¦��VI\t�R0\f�6��Ħh:���s>��\u0015\u0010�$�_������\u001fԆ����\u0015�\u0005�\u0006��\f��)�\f����|֔H���x��/�\\�\u001e�h�\u0006�\ng��ت�D%b������6\u001b\u0010�\\\"�q\u0017cYxá��{�\u0018F�\u0002�&wxV�2\u0011%��S'���ңA\n�&���L�\nf4c�\u0006�\u0018a\"�)\tB ��\u0001q�\u001du�\u0018W,p��Wc��b\u0011�\u000e�5�\u0016��\u000e�9���1\u000e�V�8ɢ~����eYzk��ț\u001e\u0013fz�ؐ�Qf��!\u0012����?���oJ\u001d���I�(�l2L�\u0016=�H\u0001I�\u001ao\u0001s����e\u001a��Ɲ1#Kl\u0004��#++�鶜+-5`�G�A�F\u0002_�\u001f�@6�$Q\u0005z'�\u0002���\u0012;n��K�k�f8��D�9�\u0005\n�W&�\u0018D�l�\u0015_/��/R��\f�\u0017A]�M��Q���=Y�|�\t�%�#<\u0011Z\n#dZR�Q\u000e-���e��R�e��P�\u001fC�u\"l��\u00018��A\u0013�\u0000\u0000��L�(��,��\u0006�\fL8\u0004�\u0014��ɿe\r\u0015�#<�\r:\u0018vQi�0�\u0002�����Ra'��\u0002c�4ދ2i#��h��v��R��\u000e�\fRn5��V��\rZ\"~\b~��\u00029�\t�r�7\u000b���\u0015����\u0001u\fݘ���\u0013��\t��V�T\u000f���X8\u000f�\b0\u001d��C�2�h�z��\u001e�gLs�k.\u0013u�ϟKaiH8<�z؂;�yW�zxC�㭂'�\"V���\u0004���Zps\f�����/bC�~'�80����pfo�Fs`S�J�*���֕y��$�[w5Ht�-�i�f�O^��\u0017��)�u>y���t�ٿ����I�A\u0010�\u0000\u0014��L��������93eZtUJ�\u000b����of.�mYŋ�\u0017���x\u001e�\\弼�*\u0001��\u000b�nU\u000e������\u001cY�a%C��w�~�\"Թ���ٽ\u0015��\u0004ˉg�0��\n�P���\u0016�\u0006N>-\u000b$�D꘲=��\u0002��/��!r��uu��I}\u0019��\u001e�S����\u0014> u�\u0019q����MG^\u001f/�Ϩ\u0011�.�$�:r/�\u001e\u0003=�\u000fOP\u0002��P=0��W5\"����SK=\u0015�H\u0003��V\nP�\u0006-{&�\f��Jč�\u0010\u0012Tq�~�Yz!X��2��]�Fh~�\u0019�{<�\u001a\u001cP���l�:�m%�ٌn-�����A\u0000�\u0000(��L��\u0004?�g/���x{���P\t��}<��-B\u0018d\br�wd,�\u000e!��Q\u0006\u001bD\u0003�%�\u000bE�—\u0017W��S.�`h�z\u0006��$b\u001c�0��mԙ\n\u0006�=\u001e{!�{��q�\u0000؇���\u001e��*�\r4;g�<�\"h\u0019ur�ބ�\u0003܅��$��(Hj��O�8^��ۙD\t\u0012��\u001f3�U�@��\u0000P��L�}\u001b��)�vM: �\u0010>���Ս3Ò���J���5�\u0012B�\u001b\\50��n�ڳ\u001e'\u0012��\r��n\u0015/�`�\u001e^�hmuf��?�;����~ve��\u001a\u0005��\u0014B���l�4\u000eT�.���i���\u000f�(X+��BU�Aa+\u0003(�8�r\u000f\u0010U��n\u0004��h\u0007��]�k8ScIJf�̝n\u0015�[��an%|]d�?\\�!�FZ\\��DU��#=�qWआ\"L��ht��pB�\u0011P��\u001a<���ڻ�X\u001f\u001eI��C����d�P��\u001b�j�N��F�?ղ\u0011�M�c*C�\\��g���\u001c�͕�)��Gx?�A�r΋s>�H\u0007�%��N�\u0006�b�<��7�}w�$��`�\r�\u0011Q�>3�E���K�љ�E6䋼\u001d��� �4�yj\u0002^R�xw��\u0019�\u0005�YY��L͹�2A�C4\u0014n\u0015�j9,\u001ak��NV��?�bS��\u0010\u0016\u00146Օ�P�\u001e�c`X�)��v�\u001c���GM,�A\u0012�\u0000����\r�e�G-\u0010X\u0014H=�]\u0018����\u0000;\u00035��\t\u000e��Ɵ\u001b6-����\u001d���5�I�~�Фi\u001a\u001eO��_N�\u0014�Bi]��3�p#�ϔ\u001b��\t��l�C�G&*\u001cN^\u0017.@\u0005$\b��`��\u0011�n�޴֘:=�����?\u0005\u001b�\u0019\u0015��@��j\u001c�Zf��������1\u001az�z:��t�\u0003/L��q?B^�v~�\u0007�\u0019���\u001e�\u0013�(N�a�[鰠J�\u0012M\u0017�����o�\u0011n�_\f>���գA\u0014�\u0000���L�%l�Ӫ��m�\u0003�@kC�`\u0015\u0014MkӋ\u001b�\u001aԚ�?�\u0017oɝ���b�\u0007��\u001bQ3�¶�ؘ�`�M�ۇ��Ğ�\b��3�G��pp2%c�6\u000e�E��9�\u0001\"\u0016��\u0014�ǧ|pOAp\u001dW��\u0019�\u0015c\b����&��\u000eXL�\u000f�x=\u000e&K\u0000�\u0013+\tIX��ЍB�\u0000�^�t�sM\u0019\u0014��z^�3�\u000b<@�g=�ʑ1����O�+>f�\u0005ˮ��\u0013��9�ӗ|lVkO�켜;; ����\u0006\u0000�̧���4���\u001do\u0017#�\u001b\u000es�����Bh��z��-�\u000b,n�7��\u0003��\u0015��g�e�%�Ҙ+�\u0018�ni\u0002d�A.�\u0000Ȁ�L���yW]m٠D�{�߳�h.)9D�g\teŮ�\u000b6D�\u001e<��Ee�c?�e{\\&dNb������y���$h��W�y��Š��^\u001c�\u0017�01��y�\u0000�i�9=ȉ�ji#�EE���-j�Y7����N�;(��\u0000�U��\u001e+G�/��\u0002�%��E,�2�����\u0001�\u001d\u001e�:̫�F��\"�\u000ft=1-�5\u000f:%�|\u001b�vQ�y�׀Ӧ��p�'�~��֒�\u0001���\u0002�s_(�\u001aٌ�(x���i�\u0012\u0004`/����e���\toA!3����\u000e�D\tH��\u0002�jlA�0�c�a��Y٧���~�\u0005��+n(��:x�+\u0006c\u001b@\u001b�������.���Z�A)�\u0000܀�L�pv}��D�\u0002AĆ����f\u0004�y��\u0018\u0002��9��*\u0012r�/���vg�L��%�4�\u0005Y��t�\u0014\u0016�j�\u0000����\\������\u0011Q\bt[�|�Tp�.i�^\u001d�1\u0019i�v�c�W��W/�C\u0019��).��q�v��Ԙ��6�m��'\u0001r�Ţ�\t�L����B+�\u0002�)�kuq��ʆc\u000e;;\u0014\u0018��5�/ȱq\u001d�B��-�v���$��,\u0018���x]Do|Z�B��\u000eݓ��K�.a\u0001�[�i��RN\b�臔`<��\u001e\u000f\u0005z8�Q4�S$�LY��Թ\"��eN\u001b���\u001a�b��\u000e�0*b? XҐ|��:�DҀ�\b0+��\u0006Ke�e�\u0015�u�[�A\u0012�\u0000���L���\u001d[2�n�{��4.I>�}�s�5\b�=�\th\u0018�<\u0017���o��\t\u0015�\u0015�C�\u0001ToC���v\u001d4�WQS�S*&y��O�%���o�x\u001dnkV�\u001b(�d�c�7\u00128��^��-�\u0011\u0003p�4?C\u001a���rk��;b�\t����\u000b��\u0003x)\u001f|���\b�\u0005Ac,\nP���J�x�L�-\n��\u0005�\u001dX\u0019O�\t��D��\u001d��VVm��5a�B�=�e�YjD�\u0014��O�ui�!\t�f��+�1���\u0002e\u0003b 5�ʅb��V`�i\u00181\u00192�5�w�M�\u0014���E��\u001b�\tq\u001e�`\u0005�97�Z�I\u001fD;�IR�A\u0011�\u0001\u0004��1�ڑ��!!�\u0017�C��j*�<4:x��T2]��Y��_q\r�mu��0\u0007Fn��\u0014��ϸ0?b\u0007w����[�Xp��D��5A�߫��\"9�z���G�\u0000��t2�����`x1XX��\u0006���HKѹ��jȶ,��x\u0002aL�CF��w�\u0012\u0012�}��■ब��G�o��R�Wq���\u0002*2��\"�\f~w+xO�\n�K2�C2�֕�i�|cщ�_X��`oV�H�]o6\u0000�g\u0011}F����\f����\r�(s�\u0001�d�g���&��\u0000���.U,95�며\u001eMq[\u0004��\b�&�\u0011��@�pF�\u0015\u0016��A\u001e�\u0001\u0018���y t?\u001f���Z�Y�\u000bzG�\u00123���-��b�^t�=�I/i�oT(Rk���5L�������%�f\u0013r(ì,\u0002{:�\u001c��J�\u000b\u001dv킰�<3E��RdY�A�AF�r�L����{���\u000e�Lj\u001e�s�ܺ\u0019t\\�\u0019D\"���]B��D�H����f0��s2�+���gL�$��\u001e�\u0004��\u0014K�P�\u001f��� \u001d*f�YV4\b��\u0007�\u0002�T7t�5�I��ùT�\u0019�N��?J[���\u0011 t�LL��%!4���d�\u0012Lw�{\u0014�QP�\u000fQvu\u000eH�����\u0012������`�\u0010G�V��\u001a�z��͉qx�y\u001b7W�b��A\u001a�\u0001,��.k�^-0C���j���`{J߾u���\u0011��Q�=,���\f^\"7rd$JvLlj�T3�˳�~i$\u0005�\\�j^^��`�\u001b\u0014$n�+�(f&a�UH\u0016s�A\u001f�\u0010�W�O*5'���@Л�F�ǻ3�\u0001�Ɠo���]�\u000b�2�-�@`\u0013L^�0���fM����\u0007���w\\\u001d/��D�C���r\u0016�����\u001f�_I�l���\u001cjB���m�\u000b\b���[z�|BO�nY�+�(�B�[��s��$,�a�\n\u001a�\u0006���\u0007u��e�D� �x�\r\u001e1.�\f˅�.�G�w\u001d�\u000e�;��ឲIT��\u000fh��wV�ːP�\u0004���A-�\u0001@��6Y�cN�x2�/}\r$\u001bEʦ=|١\u001f���~�^]�\"���S�l���\t;|�J\n���i��&O=�\t*95\u0017t��v��5S�q�]\u000f���y\fi�K^m\u0010\u001a�\u0019�:.��<��\u0017\t�����c�\u001d�LW89�fG=�\u0019��3����\u001ed\u0006��=�o1�p���!}�j��#�\u0011\u001bv�p~�\u001b\u001e��.?�5��1d���K&�\u0015\n�p�M;��B}�Gڌn��v\u000fF��UvZfD$:����3��T��\u001b\u0015�B�:��T$���\u001a=��QS�\u0010kW\u000f�Ǐ�����b\u0006+�?�\u001b��#�_j鞍,`ȹ�\u0017\u00060�\b�|�߳��\\+\u0014����\u001d�u��^���G�A8�\u0001T��1�Um�����|z�\t��W*��&:��;BpT,;\u0019�\u0016�\u0001�ՙ�\\��\u001e=�uOf\u001av\f���e���0ߐ\u0010���\u0011\u0019\u0002uj\u0003�k�\tuT*YU\u001dPy\u001d\u001dܥ8\r@H/Rס;P\u0015�i?���$ʢ�vN�\u000f{Ùd\u0005N&��Q\u0016�$���r\\�\u0010�\u0006b���т\u000f��6օ.�Q]�\u0019G�g\u0007@�~��x����L+���G��N�\u000f7��P���E��8�ј�\u0005d�J�u��G\bV\u0019Zj��\u0004�~���>�m�\t�T��j�\u0005�ԎS@2\u0000zW�\u0017�� �_,\u00154\u001fQ����\"�^�qj�Y�g���V|�\bp%�\"\u0002eY\u0010UXH\u0002�b4��+�\u0013YR\u0005�\u0012)\u0001��\u000f�y^0��A2�\u0001h��M(p�\u000f��sB�&^��#5N�ڧw�4�:\b�(�\u001b�\u0000�^$\u0001� ���\rkm\f�ZXW�io�RP?�\u001e ��H^�q��\u0011�Š�6P\bFb�\u0015��У��(�(�q�\b�\u000e�F\u0003Ȉ^����S��q8�\"K\u0003\u001fݒ\u001ej�\u0000EfH�L�IA\u000e��(`K���ײR�ދS�P?6�k\t�wڋ��\">y\u0005^�u]�]5\u001eى\t1�c-ϫJA�Q�i0D�w������Y�5VY��VD'���_Ec\u0007�YTݍ����Ŕ��5u�Č*�\"\u001f\u0001\f��2�5��\\Z����^�5��}R���hr�Yx>�sr\u0005\n�M��X�\u0003\u0003o�\"�ʰ�\u0013#\u0006���p�A\u001f�\u0001|��2|\u0006��+P�l���+�\u0011�i��#��Hםݗj���B���\u001al?�4@\u0001&&v�,�;���\u0005��\u000bD�M2�\u0010�\u0014��-\u0002���\u001c�\u001a\u00135.��xL\u001cZ\u0018�����F�I��,�E�\f�X�M���A\u0019���boy\n�Pv7n�2\u0000�\r~[UK4\u0005w�z/@R���/֙�\\�\r^�}�����\u0002IL�o \u0015\u001at���\u001d\u0000������\u0017!\u001f\u0012%�߃6��г�\u0003���.х��k:\u0012��DF,n�4;\u0018��\u000e�ˏ�ڃ�'\u0012�Fk�\u0006\u0010�\bV�\u0014�&>��e��hU��\u000e>�V@�\u000fX��&\u0011�P�9\u001f(\u0005xH\u001c\u0014N!/)x�v�A��\u0001���}a!\u001d\u000b�[����eA\u0011λ��9Y�9�sl�\u0004B~���q��\u00020\u0003�p�Dh%�>�2m\u000e��y\u0019b�I`|c@�OTu�(`\u0019u�\u0001�B�t\u0011\u0014��!i�\t�\u0011ċ�L�Qܢ\u0006�[�o#�S�\u0019\u001f�eU�@��\"O�\u0015']���a��v\u001d\u0011��\u0001R�\t�\u0006�\t{7������\\�~Rus��\u001a\u0007��%\u0005]�8���f\n�z�8����'�U=�\"]\u0012a\u000e��ès���\u0018�\u0017�]^����qX�h&$\fM\t����IM�r[��\u0012\u0015t�v\u0014�}�\t�f5�{�'7�:�o���hlfw��\u0017\u00182\u001d���\u000b�*ը�Rߨ��\u0016l����g\u000b�\t{��Z\f1'օ�r\u000e'\u00101�D�6\u000fG��\u0007\u0018�\u0010w��7\u001e\u0000.mͦ��T38��:\u0004Z�A��\u0001���}aBQt\u00041�2,�6/�{n\u0011w��6��\r/`}+���\u0000��*��{\u0011�*txg���Q��TB�ʥ\u001b�55��|\u0003p�ԑ\u0007M�>�\u0000���sIq�l8�:�M�ˋ;�\t\n�j\u001a�\u0011R70%�D.5�,�\u00143Af\u0005N�(�w�//m8R�t\u0006����1S\u000f�e)D4C�]\u0013%s8��^H��(����uZ+��`\u0010��\u001f�C{zi嗀��2XU�(Hbh8B�� ��^�\u0010\u0005�/\u001c�2eO`�h�Q\u0016�\u0004�$�wS\u0006�\u000f\u0012^��b�{1W\u0014~]��J�>\u001f\nhm�~\u001b��>�\u0001\t#�m}�v\u00040Όo��\u0011���ɘ�u4�@bPi�&\u0010�ո?\u0002?\u0010�4}oO^��n��q�\u0005���(\u0010YE��9���b��eBc��ej!�\u0011�����6����k{|\u001f��8��1�G~پ.�JEa\u0003�nE7�D�~�',��-�\u0007�涄��\bǵ��a����~��L$�����I=�\u001e4p�mm��>�f���m\u0011�Crt\u001f]�8�pZ��ߣA\u000e�\u0001����\u0004F�Q,�&r�qu\b�G\u0015��@��-��\u001b�7Jʚj�.4B���\u0019�?��9ax}�N8�����|�\u001a�\u0019#�Bz�ش\u0005�\u0005�ح�嫙r���\b\u001e_�]���(�!_žE�\u0000�\u001e�B<Ց�j!K}��\f�Z\u001f��z�xp\u0013�g��\t��6�\u0018�v|��ؓ���\u0004\u0003��t5�w�<[\u0000�\u0005I�8�5���\u0014��Q����t�m�rTy�VC��\n���>\\\"��i�� ���2n��\u0011��\u001b�b��N��`�� �����1\u0015o\u00166�*�†��v0x\r�=�O\u0019�]�|��l\u0010 \u001eэ��]\u0004-��M���x�R��N�\f4m[\b��f|�!��I��x�Zv��\u001f�8��p����1�r��A�\u0018��\">^��a����z�;\u0007��\u000b�k�'Ȑ7!v���\u0013���8�L����ܸ�۹X�_�r�,s\\�z/;���Z�\u000fl\u0000=\u001b�����?�\u0016/ҿđ�S��n-�?9\u0005��/\b�\u0011v�A\f�\u0001����m�V�\u001e�\u001bۣ��&�/\t�LX*�\u001e%��k��\u00035\nd�MY��{��\u0005���nɉ�\u0018.4(��1\u0014\u001b4���g��4c\u0006�t:9bW�c�\u0013\f��H���򺎉h\f�U\n\u00184�29��` ���{��y�P��,�c.s\u001f6q\u001d& \"\u0013\"���<��D�?\n\u0006�\u0007C�U��fn���\u0011\u0013��7��\u001c��w헟�u�*�dC��/�}�\tI�&�\\`çq��}��'�z%��\u0017w\u0013\u0013�$j��p?2��6g%e\u0001�ܘez����׿��[v�R�ͅv���}bZ�\"K\u000fr�\u00019����d��A\u001c�\u0001��M0�+k��\u001f\u0013R��\u0002��\u0018۞Z�\u001d�L�G��U�U_�@[[ f������6\u0018��*\u0012�;`��zy\u0018}��&��ɽ���V�Dӆ\u0014�p�\u0007{�B=Q��\u0002\n��$,���\tAq��o��,��\u001a�p��~�T�7(�X�����X�K�\u0005П2�\n�7N\u0013\u000bѳ/RG�۴�eb\u0007�S\r\u0011����S�>��!\u0019����6�V��0�\u0001\u000f\bW\u0004zH8\u0019\u000e�����b)`dj�G\u000f��`\u000eRfb5)_�\u000f���m��\u0016�TV�D5�t�\u001coQ�7`*g���\u000e���x���m��\nR��\u0019������\t��P�\u0019���tGb��A\u001d�\u0002\b����1<:6Sf}�1\u0004�|<$X�0�>d�\u0015qC\u00140\\�\r\u0018nu�'��?\u0019b���W\r��-B�e�FZ|���R͋k�{�{Jn�?\u0000\\h+-\u0007 �cޛ�n.&\u0019>����$����F�S�ǖ�\u0003G{KM��l�\u000f���&>�{i�\u0000��\u0019i�!`��>�3xo�hC8��1�\u001e�D�oR���\u001eh��Z��\tSW(�w�֟�\u000f���(�4�\u0015���$�=�pB\u0000�h�<�u��b�\u0000��\u0012��\\Ȉе�A�8gS\u000e1�K\u0007B�����u/��9�8w�\u0019�Y֜WaWp]~\u0016�l����Qc��>a��! �hJ�H�3ܻ0�A\u001b�\u0002\u001c��XЖ4�\n�\u0000L_\n\b�̠�H!��կ\u0005�c�>D\u001b��\u0002h���N�]\u0013^��&6�Ħzݓ[�l���?�Q�d����hY\u0016�\r:��\u0010%���=�2��ң%a��Jr\u0004|͵\r\u0014��\u000e^�j\\g��\"�`���~�~��C\u000e��\u0007\\N\u0018'����d�f�K7mzdΏ�\u0014��q���88���*�\b��MecW{ԅ��\u0000�\u0014�\u0015]�\u001f\u0002��(�\\%��a��\u0003'W����5!�\u0010T�@�f+\u0005\u0014�\u0002v�A\u0014\u0004�S}\u0019�#\fH\u00118��M�l\u0013wk��?���Œ#��$�M\u0011\u000bt_��\u0016^yb�F�������.A\u001b8�I��A%�\u00020�����|n�Q�W�~�[(�}\nѻ��k4\u0018$.\u0010\u0014�ye)*:B\rp�?s�\u0001%E�\u000f��g�R�\u0018���J�\u001e\u0000�q��a?��k�~\u001es��G�(|fҙ�\u0000���ĸx-�Z\u0003\n\u0002\u001bm���7F��fR-�\u0015��ʭ��[�UJ����f\u001eeQ����\u0006I��3K]\u0004P\u001f�'&�#�O�L�\u0006m��в�\f1ЬP(QA\u0010��6e�L�7(\t�L�z2�\u0017;&\u0007\u0005�Л%�\u000fT�;⡂���e�Пpa5��Y�\u001b�\u00179\"\fn�P�c��4#�Yt'�+��[�n�8c�`�\u0010B_a��Ȏ�M�p����7QhU��(�\t��\rC\u0013A�\t\u0012uP'��������j�\\�3+?�\u0002f'��#��L�[��\n��%�6�m��߅q�9\u001e���+���c�\u0013��}U7���\u0006\u0017�\u001d�q�����.�&x�Ȃ�ms���P� \u0012�>���/���Ci�հ�n*��a��E�\u000bL\u001f���\u0006�\u0013m\u000b�?U��\u0007)�z�\u0019��{��*ࣀ��1��D_���Zs���Qi�c�/�\u000fl�����P\t� �[嘅Z\u0018FN\u0013K�'7nN\t�{�p�\u0002\u0004#�\u0016;\u0015h�i\u0010�j���ɣA)�\u0002X����Ð\u001b/w���2�QSY��^�������ژ�\u0004�z�\u0015�3���\n\u0002|�Ŵ`\u0005�\u000b\n\u0011�\u001b�X&�����\u0017.����k�=8�UXӀq�?*\u0006\"5P�q��-�W�#��h\u0001\"[`��\u0001��\u001c�\u000e�i���\u0005�����Q�|5WD~z\u000eB\u0004�g?��\u001b���\u0012}3?�\u0006L�z\b?���\u0013T�$\u001f?�\u0017ʏ�z`\u0000V�W\u0012��g�c\u0004m�9\u001c|�\u000e�¢�,�S��?Y(\u0001���ܾ�Ŷ%\u00044S���C1,\\~���,\u0003�<�\u0018�Z�p~��q\u001c�\u0018��D��\u000f+Y�\u001c\u0013i�5F�d������=\nGA���N�T��\t���6H\u001ao��<�:�z�ɣA#�\u0002l��M'约\u0011UNy�bR�C-�f\u0012��\u000b/\u0019� �����y�b@�J�9X|lbBM�N^���J�㘬��ظe#�?��³Қ��ˏ���V����f���8\\A|c��î�`\u001b�j\u001e��\u0003\u0014���S�t�zHQ<ĴM��\"&V�\u001b�\u0019����5�+���)���$�'��c뱩V��7�*b \b� ٝu�\u001e<\u0005^�\u001e\u0000t�?j#A?� ��G������[�\u0018Svzo6�v�\u0000�ГI\u001b��C��M�\u0006ig\u0000\u0002fIi�wg\u0013�\u0010��hE)h�ʗmғ?cc�w;\u001bkבP�X\u001e�AN\u00167�T9|�\u0004�xR�O�|��N\u000b�y����A��\u0002���|�p���\u0018m�����(Ԫ�\u0015��~=o�5\u001b69��@�Ұ0ci,�k�H�|�씱>8Ӳ�W~˵ ���v@�;�ө����. /z�A\u0013+�\u001d�}G��<#�\u0015�n�f��Թ�Ee8���+�~$PxsR{�k���ӞS�ĦV\u001fp��['M�<�H��մ�=\u0019ytO�4����\u0018~�͆0w�?@�Q�����9\u0005'��MU����/1�\u0018\u0018�+�\u0019D��)(\u0005>#��\u0005ՆE��\u0013�p'{p=(��:Ľ!k�8@\u0019�\u0002�����ܕ��-�~��\u0003�6��_­��ܸ.�\n�ڷ�ݪ;h\u000b�!1-:nLY�i�$>;bd��`�+\u0019\u001c@H�ۥJx �\u0010l��F)�?^{��-γ�X\u001c����T!yj���_�-\u000fW�E��v��7{d�.�97�\n��CY�ݘz#�9��i�4�2��ѐ��,��D{*di���٤�\u0003l9��\u001cc�o���\r\\���/?����k��\u0006�� \u001bd��)�'\u0000�A�\u0002����b�j�Q[��\u0013Q;��\u0003'/���m�'EѼvT��r:n�[L�2��\"\u0012����$\u001e~|�Q�r\u0013�Y[�De� �\u000f����I\u0011�����\u001fY�\b~�V�&��#���<��W\u0017�-S��n�Y��6�(�q�C\u0002ve3&�\u000b��!r��\u001c���sg�AN�D��Ù�^Y�3�>,\u001c�J\u0015�D&O����t%������\\��e��u9�E�\u001e�$\u000eQ\u0011��ڲ�\u0011��V��\u0012�y�#�־@'^�4\u0003ΰNV5�ۇ�۱,}�V��\u001d����.\u0013smv\u0003Y�b ��r#���\u0001�\fP��}P����\f�\u001f��[g�x���\u001b��h�\u001a:o^��\u0003�V�\u0004\u0004��?�ͽ�\u00066��~�.T�h\u001f��������:�f�\t#��r\u000eK{�?�A���1l�\u0017\u001c`����|\u0000Q���a\u0019��sc�\u0013��������s(�\u0018�꣮oZv�\\ߘ�z��^���og�/��#�L��?�\u0018G �tl\u0017V�z\bsG���\u0001�ʘ�6���oi\t�\u0015\r�\u0018���\u0013�T,��V<1�B�E�\rr˶-˴8\u0002|�ki�Q����w0�A��\u0002���|��'\u0006� Qu=|�zgm4~����?�~�����󨻧���$B\u0017\u0000c쉐\u0015�\u0014�I9#\u0005�Z�0�T&\u001c^l�uU�&�\u001d��-�Ե�|��XF�lז\u0006��1�\u0013fX�\u0017�\u001b_ ����v����(�k!$5\u001f�5b�-\\}�M�6��\u0002*pLH�bܮ�� ˲� ���\u0000͌õ\u0001��H��D�@i\rg\u0006;�pN�Zρ\u000f��%�5kV�����\u0014\u0002���җZ&⌖\u0012\\X-���ہ+��\u001b��ʭU�7�9�\u0006$�s\t��VA��p�`�ɱTݞ�|p��n�p�\u0003��\u0000�g\u001f�S;.Ӣ�|3͏��`��\t\f3�k���B�k���\n���\u000b\u0004���z\u0017\u0000篍��!M6 ��(RG[Khe�-�6��t\u001b�֧�E�\u001fzo)Ε�vI@q<\u0011\u001e<�G\u001fH�\"�Κ�\bh���b�?C��l�\u0014\u0004�t���\u0002���\u0013�5\\��\ref.�n�t\\��W�p\u001a��AV�\u0002���؄�\u0004az\u0012���\u0016{Q���s\u0010.?���\\�?X40��,���bۉ�W��i���3!��B���N67�g\t����%b�B��C��\u000eP���f5��G��\u0002!���/��|�,�,KUP�d��6��^��˷��\u001f�\u000fE\f�\u0010�8^#1W��\u0007W0\u0004\u000eOg�D']�o��W�a��E�9ɖJПJ�q�_�5$�t��Q\u0017Vo�֋�k�\b �!:_�y�2q�w�\u0007p���G�\u0012�ѫ��\u0019_��=e��%$ _�LH�q&\u0006�h˧�Y����X�dϸ��w\u0016��I6��A.�\u0002Ѐ��\u0017������N����4h�Xz8�\u00041\u0014\u0018zC6w�l�i$�{R�sc\b\\�p�\"8x��cG{�[��\u0011�]\u0013;n���/~��\u0000��i+�%\u001e�\u0003]���C��\u001b6�k�{����H����ѩ&��)����\n}��lj��I1�dG,\f��U�l�/5��е\u001e� ���a\b��\\T�/F>4\u00119��VƬ��1�eQ�t��I�ۉ_~i��^sH@���_Cʁ� \r[!��:\u001f?�p�3�\u0006\u0001n\u0013��R��D@�\u0006a3�)�\u0002��\u0012\u0000͒H�qgd�_���_�q>1��\u0014u����J\u0003�\f�G��\u0018\u001d^�^9ēT�;��q�F�\u0004_\u001a6X�Ƅ�A=�\u0002����I\u000b�!�\u0010\u0006~�^\u0017\"�΀TMج�3C�%S�%��KCF�vG*D<�d\u000b\u0000v\u001cF�^�\n�\u000b\u0003�\u001a��ضeD�h�\u0014Q���\u001e��-Up*��u\u001e�>j>,�H����I\u0010~IKu�\u0000Ax��jJ���U��&E\"\u0011���\f,�2\u0010�Ů�J\u0002�h��Q�M':��ݖvt\u0017�fJ-x��:|�1�\u001d�:-�\u001b.V�\u0011��Wܡ�2\u0007/�v�g��uˤ��\t/�o�~Q\u0012���e�o�Z\u001dR�\u0014��\u0015��|k�A�R\"\u0012���\"@�qK���2\b �&ˀz�]\u0019�>;�ې��0�����.>��U�a��;\u001a�\u001dg��Q��OB\u001eڂ~&�겣�v3�\u0004\u0019&Ӝ��*\u001f�`'���A9�\u0002����\u0015�h~\u000b\u000e])�����3����̪W��\u0003����#\\l���\u0013�A6��ha\u001a_|k�\u0001֕\\\u0010o�.J�B\u0015���\u0014��.c�\u0010��8\u001dڻ��TQ\u0002[T���#\u0002��x4�JM\u001d�M`O�\u0016�ҝ�D�J\r!t��e��r�_���5P#��L��a�:T��+��-��p�\u001d�R�~%\u0005q���ԝ�(�sξ��qu|���X\"*�Ԧ�EÅ2.�P\r�6�+�1��(s.[�|,��\u0014���Ӊ\u001cS�#����i;�K|\u0014�‰����\t�g\u001b����]�+�k9��Q��\u001b\u001d���!� �\u0000��q�KG�\u0019J^���E��\u0001��p\n;6�7b\u001e�w��Q>}\u0004��yv؇�A�\u0003\f���\f��f����j�\u0015\u001f��g�wm�%�'�\u001b�>FwF���;'��a�\u0002\u0017�k�+��i�����6�\u0003�\u001a��W\u000e\n�n�<����\u000e�\n�[rS��t/z�6\u0014\u00063\u0016\u00128,&�L�W�uO~���T]\u001eEC[t<��|�\u001cam�\u000bx!�,?��6�0����\u001f�1�Ja��0E��ˤ3\u000e���^\r���\u0001\r���8w'�\r���\u000eG�u��;��\u001b�E�\n�\n�:@x��`3�5�\u0012c\u0004�M0{(�T\u0000�w�KXf�>���\u0018l\u0019�\u001f��j��\r��+���Ի\u001bP�s��KS6\u001d\u0017��m7ڎ�;nJwqI\u001cvP\u0019�˛��h�G�J­�\u0001V�k�G�\u0016#\u001es���@\u0011w[�4�2\bQ\u001e���x\u0012��W%q/NߝI���*��\u0018z•@�,/\u001c+\\Q�\u0019�\u0006��\u0002�0]r\u000b�mcM-+��W�b~��\n��ybD�e��\u000f��p�t۸24��\u0000�AT���U�\u0002h�\u001d�����\u0013�%�aO���\u001bi���g?墎\u001a��!4Xё0/��wP6\u0017��\u0011�8/��@%���z���`?���q���A.�\u0003 ��\u0018p�V�+�qDJ'N�\u0014�>'�*CՈ�F��vZ�-��`,��.�3B����i1/8��\u0011P�g�\f�\u001cSi;��\rV{�Z��\tO\u0006��b�C������\\�F\u0011��\bO�}*�\u0019\u001a����sL\r÷C`Hn��CTe\tG�\u0012�5�$�1|������$\u0007 � �\u0017�x#��N2�t%�\u0015�q�鯾K\u0000�zď,H\u001b\u0007�\u0019��µ�o��\r�\bq�#��d��U�,@Mfz�#�\u0001�\u001fr��>�A�\u0006W4�`�\u001eWˊP��F\n�i�\u001d\u0003��\u001d�z�\u0019�����ע2<�\u001e���{\u00002_Wat�\nRmU���]?Xy�T=���P����\u0007���.\u0005�{\u0014�&\u0002�',�-��ί��\u001f�F��)�\u000ez��ukl\u001es[=�0{����\u0016a�\u001fs��c\u0006�\n�\u0000}��2R�\u00105C�\u0011�\u001e9\nu\u000f��_\u0017�n!=�󾮰~,5+�A3�\u0003H��5՞\u001b�u:X7���t�z\u000f�~\u0000�\u0012�T��eo�BUA\u000b:#lE6�\u0019r�\u0002>�\u001foF�K7�����\u0000�*�������l9!\b�B\u000e���\u0001\u0002Hy1\u0010\tT�J�IR7;�J.�!P29���%�%\"\u00003\u0011\u0018A7\"������Uc8֑gֺ�x���m�&�\u0012\u0005\u001d47��e\u001a,��DN�([\u001d\u001e�\u0011�\u0016(��`���0��\u0007\n�\u00101�Ԭ�[�\u001eV�=\u000f���A��\u000e��h�*ؿ}��L}��j�Х'�;!�]��|(�\\�A�XqRO-��\u0005�Dd�#!\u00143�DG�D�\u001f?7���x\u0007:��V�XT\u0016����RE\u0003\u0017��\u0014=�{\u00121�\u000e�\u0003n��m\u000f�MV��\r���A8�\u0003\\���7XGr�J\n�@ˠ�\u000e���1��\u0015T\u0002�{��+�`(%%c3Ս\u0018A�9'ɮn2\u000fo2\r��ej):����(�M��q9\u001f�\u0010�$��I�~?8u�\u000fA\u0003с�F\u001d\u0001Ŝ��W�\u001bZ\u0013�\u0001�~\u0017z�5�=��H\u001d���g�W#�AR�YE�f(k6+�~���nޗl\u0007\u0001˨Z'��\u0019_\f�n�ٷ\u0001�N�\u0014\u0000�8|��Y\\Xn��9�6'Q�\u0013q�j^��\u001e\u00072��ze�{!\t:��S���0\u0000�{�hV�ނ��X\r�X\u001a�\u000en\u0005�jZ��#\u0018\t-9�\n�t\u0004�x\u0010��\u001b\u0018n$㌦r\b��4�V�؞O'\u0013o��\"^�ۈ(�\u0018@�\u001d�x\u0000��l�d-�^*C�7u���sh��A.�\u0003p���\r�*�\u0004�E�\u001c��ը��X<�7\u0011\u000fW���cox�&p\u0003���a�כ`@��!����}My��g�j(���@\n�C�$c�WbT�y~-\t3��g��P\bI�km>\u0015���ڔ�6�\u0015}��NE���f�����\fΥo�h�\u0014�r�\n�8\u0000] ���\u0015�\u0013�<�^�P��z$P�d�0K�����a\u0003޼4\u000b�\u0012Q�ܹ=Y\"��H�Q�<#��@��\u001f�]\b3.I\b�x�g\u001e���{*�‚�?�^\u0019W�\u0000\b��\u001a�\u001fXDN�>�I[f��KL8n���,ʙ{h��e�t�{�d��4\f1Oz�\u001cH}A%��T�\u001c���A�M�ܮUq�q�㉨��A`�\u0003���\u0005��� ���\u0012��ů���������ׯ�,\u0000�\"�o��F�!����ܬe\u000e�W�S\u000fq��!�\u0015��Z�,M�!��σ�*7�l�J+������<��B�W\u0012�\u0011���e��D(�j\u0010-\u001d�1'T\u0011\u0014��V;V?�g\u0011q�ꎦ�U�-�P���'�|_o�����\"\u000f\"@{J���ST��#��]�u鍥\u0003S�*��B\\\u0014Ȁ������\u001f���\u000e�n���\u0012s�ۢ+\u0002�\"�sJ��1\u001a��$�Q�ʟR�Q#\u001c�'�w��1�Vji=�jq3|\u001e\n\u0001�ig�\u001ej\u0019��ةB������\u0001\t��Gk�*\u0004���V���\u001b8���cd\u001f\u001c\u0007\t�U��c)�ǰ�\"\u001b�+\u000e&#�^?�dk\u000bR�\u001f��2I�j\u0002ʵ�n�r�q[2ɒ�J�?h��B\b�\u0003����\u001b�q\t蔃S\u0005�\r\u000b�L�|IN�(JJ�|�U�RH�\u0017gWc��PX���'�\u00001�M98�I����e�'�H�{+��Q\u0013�\u001fU\u0016�|Y�9�7���\u0015}�!���I\ť�\u0001E,)eXR��\u0017\u00164U�1�]��1�����=fZ�~�T�I�lS�g��f�E{���������\u0016�B����/�:��s�a��\u0011��P��\u001e�Z<\u000e\u0010N����iH �p�\u0007\u0010i\f�G�\u0017\u0000p�\r�\u001c�P\u0017�\r'r�\u0015�\u0000����'�\u0004X�� 5�9�[��P��\u000brg\u001eȘ�\u0002�P\u000bS�\u0013��ن��o�n�1������5D��\rG??��K(�g\u000b�K�ir�=&�\u0016�o_�P\u0016�ȶڧ\u0007\u0001�G\"�������Ȋ\u0014,s2����(������d�\u0013�6}ȸ���<Ў������A$u�\u0006LKy�ױ�/a#�\u000f����揀4A��^5��MWn��b-)us[>\u001cs\u0014c�\u000b�fg�\u0019���\u0016�V̝�e��\u0000M.�\u0000p»6\u0001\u0017�\u0003=�P��\u000f\u001c�P�����8tV������d+\u0018�+�� HUث���|�\u0011�R��C���\t��w��ɏ���Lm�\u0002$I%�\u000fD\u0012}\r[+�F�\n5txY�x�hKRO�T�oh�\u0016�V�\tG��g\u001c�\u0018\u0017\f��@�D\b�-i\u0000Ѱ�74<��~DZ��=���*%\u0012=k�\u0014'��\fA�dr���MO��a�\u000f\u00183&j���6\u0018��n{r�\u0017��m�f�5����r��uL���X\u0018:l�@T�@�\u0003Ԁ����*!�V�\u0018�����ݷ\u0010����MN�|�I^��{9Җ�S+\u0007F���-ճ\"%\u0002�a�G߯\u0001\"�����\u001a?����O��C�4�-��T�ƴ�n�;j�\u001f�Š�Zɭ\u000fB�\u001fG�#J��qMDz�c��\u0015�\u0001�r?\u001cD��i���K�\u000b3��mA8�d`�冪�.�M\u0011�L�,d��\\y �e\tC\u000fB\t7\u0014�\f\u00123\u0015���R��?B���|\u0016j�{\\4�T\b�\u0013D�i�\u0010R�+�x5�v-�\u0011\u0019�$.�\u0018�U�-'o�u;\u000e�\u0019�V�A\f�\u0003��L�����pl��F��xw�{�մ�.��Q3,�\u0019&W���^aO-�5��\u0016�\u001d�\u0003\"\u0014�rFK�\u0010z$e�/W��T�\u0007\u000f��\u0011�38�|s�DaH\nLw����\u0011�a�R��H\u0013+8\u000b�X>�\">䞎`�\\��\b�rH\u0013���f\u000f�'��0J����\u001d\u001f�\u0007\t-+�Ě�-�\u0015�gD\t�����7\u0011Ѧa�ǜ�;�L.�\u001cɘ����(Ƒ��\u0012�sp����Qӥ�\u0012\u001ce���pMi\"\u0017����\"�!u�\\�K�܋�(�h�\u0000�3\u0003��>���)$t?[�㻘�����Jø\n��\u0012�@��\u0003���L�3�\u000e�4\u0002)[nX��uir=�^޺��\u0019!�o�J��s�\u001d��oFW��q�-![���&)�� ��3���Y�n�����\u001f&��Y�yѡ]f�@Ȏ��g���70�\u0000�8�0,C�\u001d���dak�G���+��P]�}����\u001d �:=�eC\u0015�w\f�_�0��Ƚ�V�Y)zJEQ��\u0004pz�uҾ{33\u0017-�;�Ⱦ_Ug\t\u0004�\b|�\\�*ţ���c:_\u000700�E��\u0007r\u0011V��Ua7��8\u0005�,d�x\u0012\u001cE�g?��\u0015u��}�Z+g��\u000e�f\u000e��\u0018Ę.\fO\u000e\u0017^\u0019�{ݸŧ���\u0016}��>��\\�/�����k�\u0005�7?�A\u000e�\u0004$��L�ދV�Bg+�w�cng��h-���\u0014_\b\u0006�D���|�\u0013/2D���|��M�ۻ�����7�\u0000�.��ʋ���ʅ#��h�Ѽd�d���\r��\u0007\u0014\rF��M%%�9�π�%��N��\"\n��'}�R���\tZސ\"����4*#)z\"\ra>L�j��К\u0014Bϕ��Cq����I\u0006{\b\u0001�Su�����y��+�8P5̖\u0019]��z��?�h\b\u001f�E$�Aݒ-yW�d|\tLm��cH�'\u0004\r\u0018��\b�T\u0001#�g�\u0005D2�0^��^^&^�z£@�t\u0006�Csݦ]��Й|���%�ɣA\u0005�\u00048��M\u0010��f���In~�1��rWE�����_\u0000#�\u00060!C�yL���;Yo���� �T�e8�&�N\u0011�a:���\u0016OҪl}�[� �\u001f\u0013ܺ�\\QT�]�d�eቖ�{`����\u0010�\u001b��\u001b6(i��\u0013\r��b\u0005\u0002\u0004�v)�e3�*\\\u001f�6�q\\�&XG�����ի�D��,�{*%=�#A�o�p!Jz�\u00154pBz�]\u0010�\u001e\u001cBw`��\\��7�N>\t��f�AR�\"J��qx4\u001cx�����I\r�j�PC�z���n�<�\u0013\u0011}�4�ZA�\n\u0000P\u0012\u0004��q��)$�\u0002��\u0017���\u0013��@�\u0004L��M\u00113�,��:�:U��>�$׿�\tዦ�F\u000e�H��$�P{FT�\u0012Q��\bm~���\u0011V��*XQ�@\u0007(�:A�w'�*�'7\u0007q�$L\u001f\nP���\u0019`v��Po�fG\"�[��/�\u0013\u001e\u001fx�8���\u00109h��*\u0000z\u0004�����\\%����Bl�\u0001�u�\u0012==ԓ�V'q\u0017Ș�\u000fk7E���\u0006�Ii�\u0018A:t`\u0014���=\bϯ3B(�-��\u0016��;�u��ʽ2����T�$|��զ�\u001d�`���(J\"\u0016��ܚ����ƶo0�)\u001c\u0002����\u001dz��D\rR�W���Ę>�����؝8�Zz��]��\u0007%P\"�����\u001a�f�\u001a��c\u00071V���ƨ �}����\u0018��%ݱ\u001e�\u0019z�\u000f�^[=�\baW��}�䒍�`\t\u0013��P��VPO-T�e\\#�q�M�a�]v6&�)�Ŀ_�Ddm[��+���\u0007�p8�u\u0019�|�\ft�X�~ܜu�3?a�}p��\u0006Jk����������\u000e�\t�g�|�#b�b��7�z:KKn\u000eխK�C��ڥl\u0011�e�\u0002�\"d\u001a^�@\u001a��I\u00171ϭ�����\u0000��(\u0010���B\u000b�\u0004�����c��}����uJ%5\u0005\u0013Ϊ���}RV\u0016��\u0004L2`\u000f^\u001e�t�'�\b`�9?�����\u0013��B�\u00071\u001a:;l���?P\u0004\no)�4�����$+a:��Z�p��{\u0001dķX-�����Z\u001e�M������B���k�vx����G�ƀQ0�0-��wl̕]\u001c�hq�o҇\u001d͊�&��k��=��^Q̝� \f��S��K�vͤylE����S�To\u000f\u0019Z�ǯ�އ�0O_U���o�\"th\u0013&H\u0007\u001d�<��(~~�ˤTEa&E+8r�%|�\"��)�O��\"�T_�$�\n�:�Ns7D^��a4\u0004#�r���\\lt�v���|����m\u0000\u0006r����\n�\u0015'�m�\u0015�#\u000e6�v�<��Ri�{�\nI&�/�B4\r={gm��>e�@ \u0018|ľ��tN�p�j�\u001d�%��f���IZ\u001a�S��\u0018����\u0019��j-\u0010R\u001a�\u00180�\u0018��j��c\u001f��$(�\u0001\u00021Br��P7��\u001c�]n�\u001a�1�dYv�����z+A����u���\"��\u001a�{͌��aZ.vQ\u000b��ۛZ���T3a��YuO?�N��/iz\u0000�OK!�\"\u000bj����K�6�U'fgls�!���!�\u0014~Z�A\u000f�\u0004���M.>\u0003�,S���\u0010V;�9�R�{�{����\u0013�T�j��٭�M5U?\\�9���M7�d\r�6�\r3$F�{�ŗ1\"<\u0010(\u0006��<�%\u001f�#3�8|��l���KŌŭ��E�: ���\u00158��{MGNF��\u0017`��_4h�h�վ�> �ӫ�\\�\u0017��@�W�ߢ��~���C\u0004�\t�\u0015\u001f��ۺ�\u00109]��\\��*Au��o�4׿��(�U���\u0014i�g��\u0016W�\u0003�P�n\u0015|\u0001e-���B�W���{P[|��<��̪\u0012\u0017����Ԁ]S�~\b�h�8vql��Ӥ�\u0012N!/���wn\u0004���M\u0012�AW�\u0004Ā�L�#�\u0013�\nRg�\tZT���&�C�N��.�Wg\u001f��p\u000bc�\"�2�ݾh\tt�|��7�\u001e�\u001f���y���cC�\u0004�V�-)]=�}c;<\u0004��\u000be\u0011�Q2�� \u00139�KZԆ�C\u0005�.1�dl���?��|�Snu*�\u0015ހG}]\u0003\u0000��'�u\u0006mvH\u001a�:�^vc![��6����JO*J\u0019�\n+S�\u0017�(4�~\u000e\u0016�\u0018e��k����Q>�\u0007�$\u001bj�\u0007EV\u0010���r��Q�\u0011lV\b+W\u0019*�-iw�+N��,c�%3�@\u0018i~X@o��(G�(:��B0?�rj#���\\Ƌ�l��\u0019=\u0018`)�����ޣ�|���\u0012\u001bBK9Hs��k��?[/\bI,\u001f��#�%Ĉk\u000b�\u001c�,\u000f?�N\"�\u001b��?�X�\u0005(���5Bm����+\u0013oQ�\u0005Y�A\u0000�\u0004؀�L�\u0005BZ�Z��{��CU]�\u0004Y��7�(\rq�K\u001c\u0005\u0015<�=P������_\n2\u001aP����c�\"�\\+pן��$%e�s0�\u0015\u001a�`zwNnb�YZ\u0012�\u0006XLS\u0007����P�D�\u0010\u0002$(N1L\u0011v\t'\u0017\bL�Y3���DYp��g������\u0018\n�d����=\u0014�l�UG�\u0016�&��,\u0014đ��=/Pp�, D0��w���?���/�B��n\u0001�o'��\u000e.#;�~)�\u0011c��e\n*�y92�猦�Z�t;n^�\u0007I\u0002�C�\"\t��PDq�R\f�\u0005R�Ϳ���+\u0015�\u0000\fw/�A+�\u0004����q�\u0018��x�\nH�� p2\u000e�h�����\u001d�\u0006\t\u0005������\u0004���5�c7���\u0015Z�ͭ�Ɵ�2\u0013�n\u001ene�ّ\u0012\u0018\u001a�\u0012(�\u0003BP\u0014��s\u001bs~k6�V�CI���T��7j��*A�\u001f6Hֺ\u001ezKda��Of��*\u000b���@��\u0006�!=��Ӧ�?E���:�E��T��\u001c?�/c�yj�߻kA�Hq�\b��OkP�\u001fy�� �\u0006�3�>�{xݝ�\u0016Q�k\u0000%Ή\"�@�A\u0003\nҋ\bf/�*\u000b�:���¢j\u00046�v\u0005\u0003\u0005Y�����;��\u0005��(�t �@�ϗ;����O�@O�q��a#�6\u0000�\u0019��S��&���d[A�A�+���Y�A\u0010�\u0005\u0000��L�A�eM�O�\u0005sg�)����ު�\u001f�\u001c\u001b�Lh�[j%�&xy��\u000e7�\u0002J�~\u001f�\u0012�B4�L�yj�7�HW�HD�?W?<�A-�Cz\u0006�\u0001֙\u001e��Ȃ��ǘ���\u0007[����.2�O�\u0007\u0018\u0019���V�\u0000�=&���J�YDŽ�X�x\u001c\u000b�\\\nM���ǎZ;E8��[mJ8s�pn'K$��~\u0000d\u0013�\u0018n��0.п�tX��̈́h�URR�\u0002���ɯ��euQ>%\u000e�\u0002\u0010�`�rȈ|�7|.$rs��e�<�6X�s��S]6����#�V\u0019�\u000b�=�J��.+�-Y�-�O�I@[\u0001��A\t�\u0005\u0014��MW��X��9[��Q��s�O��E�wl�����$>\u0015�O�|�\b>~�ˏ��\u0013��B��\u001a�]��,)\f\n�w\u000e��\u0018�YO��\u0017iz\u0015+�\u0001\u00025pF\t��^��\u0012�]\u00041���\u00068Լ���\u0015\u001c\t\u0019�-_�&7\u001d����*,f3ҏVҙ\t9\n�)D��\u0018��c�`H ��u�'\u0003�j�\u0019\u001a�Yik��)��w��!\u0006�2\u000b��#�tJ\u001c\u000f�M#A�K�{3�\u001e\u0012�\u001f^\u0013��JB���1\u000b\u0012�)�����c�\u0019� -��u-���������&��g�}X��\u0010N�;�3�T�Z�UJSʟ-^����E���Sf�\u000b�$��ty�ijyz������\u001a^\u001eM���^�\u001eRh\u0001�_�m\u0011G��V�J��7�A\u0001�\u0005P���l��ۂ�\\1���!A\u0004[3!'`\u0011U�Ś\\������e\u0000���Ӌ��#<�4T\u0014F.��n�>�P��\r5d�O�/��[���̉TvL{ƙ\u0017.3�\u0002\u0003.¬\u000e\bW�}Ŕ#��c�^I\u0010[dg��v}\u0001��\u0000�8�\u0002��K�ۇ��;z\u001c����c\u000b�\t-�)�70�1��&l�yIW=���#���)�[���t���j�I�U�x&1+�`��,å{\u0005�5�y?�:5�x�7\t�[ٹ%�\u0004�[O�\u0018?�?�Z*��\u0002\bc�)-p�4Q��<�\u0015\t.1o�����Ӌ\r�_�:.�,\u0010A�$���l\u001e(<��\u0001\u0005��aG�!�+�Y��d�m����wq\u000b\u0017�\\��{g�tm,y��\u0011�\u0003���Z\u0015+��3\u0004`r[s\u0014c��mX�����G=�\nX��9m\u001fM�Xťc�J��12�<���,_���V�N�n:v�6�\u001c�0��k���(��@�Q��\u0007E�M԰��c�\u001aXu���3�\\ϏЭ[\u0001���R\u0013/n9+�\t����A5�\u0005x���l�Hn�4f1�\u0004����Oz��m&Lҙ���C��s��9R���\t�B�:�_\u00051�\u001c\u001cV��\u0004��ze�:z�\fs\u0017͟�HS�?\u0012��{�/\t\u00150����j\u0007-o�\u0014��D�?�$��}T�\u000f���z�>��\u0001.\u001eh\f��̆Mb��j9,\u001e��\u000f�\u001e\u000e�A���W&\u0004Y0D��4�?�M\u0014h\u0014Z\u000b�\u0018{$�/�9E�m��\u000e���<�h4�Rf(�=��v�c&T8O)�\u0012����\t}2\u0012�,L Μ\u0003d�4E8G��1[�\t\u0013�U�i��Xq�V�`�SF\u0000���H��AQ�!\rKdq㴦mߟ�6���F�jU�Z}�\u0012+�o�Ĕnؗ5���'v8��X�I��A�\u0005���|��vD\u0002����\u0001��r\u0004Y���U��h\u0003��ʧ��k��\\��\u001e��\u0004��-^\u0006�\u001c���-5\f\u000f\u0002Z;-N(�Z�!V[t���Y\u0000��������+\f7���7�i\u0007���\u0019\u0019��a�\bn8�\u00155���E�1y�?}dg�\u0002Hn�Qt\\o^�k���iV\u0001�/��lv��\u0016�p_��\\�NE\u0013@��!\u0007�C*�\u0004�����'\u0012��3�'RE/ش�$��f�\t`�^��\u0015�~60��\u000f�q]�y�=\t�*\u0004�;�\u0018�������Z\u0000)��`��.6{��4���\u0005������2\u00034\u00110��0R`�\u0001�ߧ��\u0012CBu�O܎�Z\u000b�j;\u0011R�d�ޕ\"T�^JҪ\u0010{\u0004�\u0002w\u0000b�ڋ2�k����l~��A-u�\u00036�[��Lc�!p|s��'��\u0011\u0012(\u001bq\f������-��#`���\b����\u0015��\b�Q�YP�u��s\u0012�>2m<`e�s\u0014�8䮥�\u001bfd��jx/?1\u001a�,-\u000eͦ�>Qp��!1P�§\u0011�\t\"�\u000f\f{\u0015vͶm=d�>>�\u0001}�\u0016\u0016zJ˰��W�z'��`�KhwU�*�TKd�j0�ѣA(�\u0005����c�h��/�c��#Z-�\u0011e3��\u0019�<<�;zʒ�%x\u0016�U���\u0014�7��\u0011>�t/�P0g�*��h>\u0006��������Hip$�K�rSʒ�\u001f\u0012�܊`�˱���`/Ȃ��`���˂1�\u0013���\u0001��\u0013��(���\u0019��{���s\n<�׵H��Gb�qtq\u001f¦��&�I��WA�� P>�l��(�݋�#j�ȉ��fn�o٤�\u0013?*D\u0017҃խ���\\�э����+`��\u0011��4k��n)y�����3�%\u001cS�K�\u0017,g\u0004*\u0016\u000e*BY�.dl!��\u0005\u0012@Ɖ>��o�w'\u00055;,X\u000e&Z\u0015��Bg��$�|@�\u0010�j��\n�iB�A!�\u0005����m�b��\u0018א�xg�mDoW���\t{�\u0002ms�9z��?��+\u0014˴Qr��Чyu�\\<�}��yUt�&�F屪��\u0012�������\u0012�\u001a]\u0000s�K�\r�\bͿ�\u0006��R�+�U�ܕ��~�\u0019�jI�\u001cص�ʳ?~�\u0004�r�d+6��(��\u0004�fܖ'��Ht�\"�����?�ޱ\u001c�ڀ\u00119.�n��)��vnLv�j��\u001c�\u0002�\\!�82\u0018\u0019W��,\\24��KҨ�\u0011T1·A���-�JD\u001aD����0�|b�r,���j��-\u0000&\u0014d<�'��8R\"\u000fa\rzPX\u0012P�A\u0010�\u0005Ȁ��������]E1\u0000f\u0007�![mݤY\u001b[�V��|F6o�:�����vK��:\u001c^��l�1�4_-|��e���w�)\u001b�\u000eg�\u00107�\u0012ZO9\u0002�e:�$N�#|���$�qn\b*��\u000e��\u0018�� <��3�\u001aK`b\u0019��/#f%\u0018+ٚm�K\b�Ӵ\u001b�B\u0018����;#\u0004�ȷq���t�O��\u0011�z�U�ٟ���s)\u0011�TH�\u0002\u0014��w�u\u0015G�j\r�\u0016i�ݞ@���SJ���B\u000fG��^I�k\u001b�a�\u0015�`�x\t�r�8n\u0004��\u001f�\u000b_���D/�o�2�\u0007ך�:�\u000b�?vl��\u001d=ChL!\u00064@��A\u001b�\u0005܀�M&�Z\u001d\u000b�Gk\b17Y0\u000b\u001f�B�\u0012@V���q��#&�\u00113�������=�\\\u0004��V��p�Y\u0002F�>l�\u0013�d˺��T\u000f>�)�W�ݜ��$��i\u001c!W��ey�-i��~yt�:>�<�ؠ\u000f�?�fB4\u0018�PU`�\"�Zb��c��>�\u001e��ڇAo��\u0018+�pj�9�\u001a \u0012\u0004��#'�HF��q2K\u001a�ռ�<�\u0016�m}��]By/��\u0019�VoHUC\u0004��p>W�#�9A\u0012,?Y�\u0001�����L/��\u0016��*�*�\u000fG���I��R\n��D���W�?M�\u001c�R\u001b|y��Ub��\u0010�c\u0012�`àf&�k\u001e�{\u000fŢ�<~ۣA?�\u0005����d'TO�rd݁� W\u0002�\np>���x�\u0014|���SJ������`�\r�\u0012�I\u0004\t$�%�B�#Y�)�c\u0003�\b�{��qL$\u0013l�!�\u0017��\n�ч\u0011�h\f\u00144TD�ع\u0012�5e\u0010�ιCi�ة\u001ef�D\u0019co��`�0�MK�\b�\u0000��\u001aB\u0007e\u0019\u001cWS{�u�m��8cX\u001alTK��D�pГ܇a!4b\u0013�\u0011�\t�ր�\u001bax�\t��J�T�����5���GZg=h�(3��\u001a��ơ�4�r�u�^\u0007\u000b-,��#G�ҝ\u000b�X��\u0004�>�\u001e�L�!xj��T\u0003�N�\u0010X>�ɯ�\u001d\n�p��\u0000�9T�Y\u0001n�a22*\u00146�:��\"30<�\u000e�Q�\u001f\u0017��\u0016��_Tb���\u0016�x\u0012�-��=�iB�A'�\u0006\u0004���v��i�\u0010׬�\u000f���|����\u000f�\u001d�\u0017��\u0014E���=ptg�V\u000f��\"�d�F�\u0019j\"�h���[���\u0001���~/��HF��\u001e�=��m\bQ7b�SCgQf�\u0007��ljmJ����G�^\f��~F�遑\u0012�pm@u\u00183:��m��l_��huޘ�4JX��\"�:�%@�Q#����,�w\u001c�ṅ �;�7�L�po?}p�\u0013_��$^H:��A�\u0019��`�A�\f�-����7BQ���;����,\t\u0017�K\u0013y嗓��}.p���YA���u�5�-|3�)��'\\`\u0004]4�\u000f����~�CՓ�S,KL�_�H���\u001b\u0017>1'4c��£A��\u0006\u0018���b�\r�;D�.�E�\u0019T�ϒ\f�\u0003�4?�P!�)���2>p^�{��{\r`Mf���V�NA�~\u001d��� �\u0015\n&�\n�\\���p�?�Аn���NjQ�>\u0007��c\tQ��\u0002���.�R�\u001bR\f�\u0007h�M�Xi:�l���\u0005���pފ3~�L����SF��ί�:�f�z��dzѶ�\u0018}=��w�}\f��25�Yt\u0019�@�S��\u0015_\u001dJ�|s�'��@��\u001a�O�\u0010|�9��ʺ�9�\u0014�À�\u0014�!t�F�cCo�MN8[��*�\u0010v�dZT��P�f���v\u0006��m\na�X��h��\u0003\\�ze_�k�����3� ���W�mH�����\u001e�\u0003�#i �\b9\fYެ�s��?م{�x]���\"g#�\u0011_�£Ax�\u0006,���>->ŝ�Fe�e�[m�N�\u0016�?��\u0017�@\fI�T,Vl\boA\f�+�Bh�\u0005��\u0012�'�\f�]��¹�.A���7�lqb�\u0004.\u0016|�0��-�A�mj��\u0014'�|\u001e\fvԞ#�F�y�~߸wQA=�ՅU�\u0001����\n0\u000f�H\u00159�s�L�L\u0015P�Ɩ�U�\u001a_ԅ+��ϘF��Y\u001d�5\u0002�^\u0018�fPp0�8��d(�r�בMNK�K'��\"�m>\u001b)ȏ�Gd�[�a��Ҿ��A'�]7o��\u0013�_h}�\u0012\u0007�\u00071�x��\u001f\u0010'♇\r�ښʩ�ƈ����\u0000�%�h����ҳ\"����U���^�ci�O\u0012F��e������,��_�C\u0017[$�\\3�T����`*�V��v�B�@��\u0006@��L�rN�V�_�\u000bq�}\u0006hZ�ٴ�\u0014\u000eӹ����_$0pF�N*J�\u0018\u001ab揋�R�c�*%f�l\u000eܼ����p/�H\u000e�0h�V�#�M�������\u0004��%��\b\u0012\u000b�=�����n:�[�[�P�I��9:�S\"\u0001\u001a\u001d��o�\u0019�cf�y\n/�=C�\u0006H���$\u001bܞ�\u001eF�5�\u0011�P��\u0010*.�#}̦\u0017�!d�%_��Dj�\u0002���j��y١�\u001a7oz�\u0003k\u000f\u0001\u0015��i3�\u0018\u000b\u0012h���cO-\u001a��4�R]HH��k\u001aS\u000f�@�P��믣�|��I�B!�\u0006T��|���[�D9��D�G�/���`\u0004O�V�D`(h�f.���\u0001DĻ�\t\u001f�\f�G.���UXYLB^����#gj'52����p@t\u001b�w\u0002��g��g�E\r<\u0001՟\u001e��[Z+�f��\u0013�tޑ\r�e\u0012*\u0019.!ֿ�#:�(�1�����^�4�2����<���Ұ�}G��\u0015�FO��*a�({nR��TOr)�#\u000b564:�VД�q,h�x%�H�7��\u001c۾�/Y\u0013�\u0002���v'=3Q8(\u001b��i-�T�����\u00179mO*��\u0000\u0016��x\u0014��\u0002����(dz=Ɗ\u0018=�\u001d�\r��2�\b��\u0014g�\u0001�^K� �\u001c��9%\r��ߠ2Bv\u0010B�\u0015Q�[¡;&⍷��v+�B�\u0002 C)���\u0005�N ��-;����c��@\u000b��{Ŕ� �Y:�f\u0003\t����\t]��\u000f})\u001d\u001b!\u0005��5�\u0011O9�ͥ�\u0004t\u000fǠN���QW��\bû[Ć�/���UC'@����JA��\u0017N����p�s���\u0003��~Y\u0010���\u0016wo���|�\u0004�\u0001�\u0003\u0002AS�}͉�=ih�L�\\��gT�\u0005ߖ�}�e�\"\rmU\r�bc����#\n5�D7�&R \u0005��k���U�eY�����f\u0005�\u0018`��9�\u0002H��^��O��\u0013T\u000e'6��ۣAD�\u0006h��0+0\u001c��lK�Ə#��Bu7m%\tr�~�2�\rU�2�;v:�߅8���R<���V\n��dsS�\u001b��$\u0006+�5\u001a1,�5�'M(O((\u001f^͖��ر+\u0007q\u0011'%��\u0006!��\u0005��O�\u0013���\u001a����E\u0002\u0001*�r?�\u0003��p�̂\u0002\u0005+$�PR\u001bc��\u001e�\n���z}�\u001a,�D9�du���\u0007X�\u001c\b�m�W\f1����\u0006\u0004;k�\u0012�_��.&���,OE\u0012�\u0018�OuՀh\rگ\\\u0017po�ߟ��-5R;�\u000em^;��Q�\u0000ќ�B'�\u0006|���b\u0016�B!\"�Ƹ�\u001cރ�vO�ҩտ8�-\u001c,#���j���\\\b��9-b�~�Nz�g ul����d��?�G���xs�(~N\u00144rUy�\u000bl�>�\u000fe�¬K��^\t�T�|`J\u001f`R����B�S>��y�G�\u0001��j��W���x �t\u000e�r�2�\u0016F�6A=l_\"�HJ™�,b�\u0001\u0019\tN{\u0007�����\n:'��%�����������w��*%\u0016\u001b�B�[a�Ue�1\u0001׹%1��\f�8�h\u0016�G��7C�(�x 2�_�\u001a�y��b\u0002'~s�1Bn��]P��$\tv�\u0017��$_�����\u0001�/�����`Qw�^�+3,��g�|\u0006�&����^��GdAB9�\u0019Fo�M��'\u0016�\u0017�J�eУc\n�ܰ���Ӿ�3u\u0019n��M�w\u000f�(��ks�өW\u000f��\u001a�\u001d�Z�*3Y�AJ�X1Ȕyr \u0002����-����=\u0002�?a'���.������a�\u0019K�wo�\u0001 \u0004��\u001e�=���c+���������т��7�)\u0011�Wo\u0000-I��Ey�\n\u000b���?q)����M\u0011�\u001a��;$�i\u0015Y\u001a�u�&^\u0011���t@�\"��E�2�^��,\u000bp�T�~�S�\u0014���7�\u000b)�F��i�}�K�W\u0000��?�+j���k�\u000e��n�8�A\u0006�\u0006���M.B\u001c�<\u001d��\u001a����p@�m&�c7�\u0012�쳄�_��+\u001bBwJ�w�����\u0016D�Q\u0014\u001c5�MG\f�R \u000b��Д���\u0004]\u0003m?�4��\u0004RH\t\tm\u0010v\u0004�P\u0002ϣAM�\u0006����\rBzq#�&���!뙴�q�_�ƭ5����h��7;�����;\u0002dQ\b̎�K\u0018�'$���\nn*^\b)��ZjmQ\u0012�K\u0012�_{C�|\u0004{�.9\r6nmĩ��\u0000�*\u0011H��؃\u0004)O�֧��\u001fP\u0016�Y�\u0006k/��ni���\u0010����~N8��>UL��:�'<��- 1!�z�-c��?u咍�5\\�i����ˇt�>���\n\fJ�3�K�%b�ɴ��z�w�]��[�;\u00126����E\u0005A\u0016�]�RF�>�\u0004�\u0016!�zc���\u0012}�1յϰ����\u0014��T�\t�#��\u0006yP˨\u0006_�\f�̔���+x\u001e�4%[�eP��o#Z�JA\u0007�9K�q�!\ry��V�+,�!��\u000b�I�Z�0c��\u001eTPC\u001f�\\[�&Ƒ�Q9\u000b��hz\u0015�j-Ѧ�~�/\u001d�C�$��~XG��7��\f��Ȓ�+���\u001b���q�\f�\u0006Y�D��/�8��]��ͭ��?�~�ē�\u0014��Eu�RIӣA\u001b�\u0006���d�\u000bQ+���Q�\u001d\u0001N��%#\u0007d\u0012��x\bn�t�\u0006�\u001e\u0016���S#aʁ7u&��[c�#]�@A�\u0007Rb{\nV�}X�D�e����?��@y�2�˖e�\u0017뉅�!�`�8��A�7g��K���nRA�P�7\u001d�� �g�,!��6�*�Oʳ�J����-�T\u000ey�,#����1�\u0000\u000f�Q�o��{OU\u0017\u0004�o�|���/Q[-!�X2\u000fXc�\u0001\t�\u000e�c��\u0010\u0004�L��CI�t\u000e��:X5�}wً7�}El\u000b@�:�ٵ\"�7ɖ�uD\u0005��]\u0013�#�-niY�r��\u00193|L��P\u0015��Kr?kQ����\u0012I�УA\u0004�\u0007\b��L���y\r�����\u0017�z-����5Un��k�\t��Қ�8G\u000e�'�-�.��\u0000��\u0019��a]�\n%��\u001fU��}ʯ\u0006z�/W�G��+S��O��\u0007ʼna)�\u001a��g7H���GNZ�8_Z�Z�p����W�{1��b��\u0007��@@V��7Iq)�\u0016:�<(H�:��_E�A�g��T�\u0017xɪ�R^�dF+ �U\u0019˾ҁv�r;�\u001c�%Ҭ\b\"\u0016�uM��Ƈ�V\u001d����]��ѭ8#_�49�`��� ¨:���+�ET��#H\u001f��\u0011\u001fc?��$�Cx\u000eO.�\t�A\u0013�\u0007\u001c���mnɷU��I�(�\u00197���g����?3�0X{:yΉM�\u001cKT�\"P\u0013\u0010Đ\u0000�\u001c���T`�mɤ\u0010d}˟51\u001e\r�_�6�\u0016\u0016.�}F�˻�����!\\-�(?f��p� Ǜ�J�4r�/��l�Y-\u0006�C@8��&m\u001b�4\u0006�����F\u0018�\u0003A��)\u0010^lP�.\u001c�\u001e�v:m*�V�w\u0000�\u001bL]g�.&���\u00005+��U�\u0007�k\u000b��V��#��9��0��\u0016��~̂�K\u0010��e�}�\u0014��W�ݟ4\u0017��b�Ik�J\u0010!�K%\u000e?\u000e�\u0013\u0014)6�jX�sX0F�r�A/�\u001aF�.\u001e[�G�A$�\u00070����\u00198c!\u000f\u0018�َ›���.\u0014,�Y�=J�N�x\\f\u0017��\u001f�-\u000b%\u0011\u001aʁ\u0017���S�\u0018n�k�k��$�A�_s�#\u0015\u0011��㇉��U�#\\\u000b�m\u001e�-�w�\u0013o��_z\u0003\u001bM����SP~��f\u000b8�s״x4X\u001dq�w�R�Ԫik\u0012\u0010\u001f2���)S��b~Q7AIߝ7�o�*\u000fm�=�aN�\u000f \u001f\u00143W��MB˨[X&8#�����\f>Nй'y���UT}ό��p��R�������\u0019�\u000e��/����k5B\u000eߡ$�iA�\u001b\u0014/X\t����\u0007�v�]�ְ\\�a���\u0000�Ng?�I�0RUJ��4��\u000e�yH�\u001d��\\��Ys[�£A2�\u0007D���b\u0004,\u001b\u0013�����1 e�`Mxv\u0018�Hٸ�eD�\b�\u000f\u0013Ǵ�V���uYd�-�Y�{\u001b�a\b���\u0012Q�a�S8�D=9�ڌgQ$5��9��\u0000�QEQ�w�?�\u0006�����\u0016T*)�8j>\u001a��}9_�\u0014\u000e.����%�֔Q�����a �mP��\u0014�Ȱ���\u000f?�\u001a\u0004\u001dk�0w�}\"|��Ap�;G�\u0018گ��{�\u0010\\��YU����\u001d��b\u0016������\u0012�*]_���&�\rur!_��\u0014L�lH�ܖ&b�J��\u0011�\b��(m���\u0013�G\u0014\u0019�h�t\u00156�;�DN/k��dC2\u001b�`�\u0015\u0003B�!�έ��~�U��&Sz`\"��i��ܐ�q{S�{��\u001eܭ��A�A0�\u0007X���mp`{;���\u001c�P��l\u001f�v���=%8ȽP�\u0011�}\u000f3p��M��\t�~*�E>\u000b�&��.#�\u0006.\u0007hKe�\u0002]���\bă��\u0000�\n=/��B�{�� ��Z4�\u0012��=��(\u0011��V\u0015\u0004�R�S��?���ٟ��&&��my\u0007 x\u0018i\u0018\u001d\f�\u0011��v\u0001r��j7F��\n���\u0010�gӚ@�\u0006��:�(�Xn�<�\\}ΰP\u001d�h`\u00048�ˢ,\u0015�|2\fQf�^��\u0001�g\u0015\u0005ր��\u0004|�\n\u0014\r��jp\u0005\u0005\u000e\u000f\u0005���Э�Bo��,\u0015X��W�ayP���\u000b:\u000e5�>*N?yT�+\u001c=��^Êg�9l`�\u0005�v��2շ��rm�\u0013�q\u0018�\t\u0004\u0010��B@�A`�\u0007l���8ɢ�\f�\u001c�\u0012;�@�a�\u0011V�a��.t��ƒ�\u001bd���cé�Z����QQ\u0013N᣿!ڱsv��5b\\�Q��p�<[����$.V�\u001b\u001b�ʏ\u001c�iZ��\u0005��b@����X\u001d�۸\u000e�M�\t2�?\u0001��]��Hh\"��S>�*�zC&3\u0000!r�F\u0013�\u000f�U\f}�'ء�ޤ�@�֎w�4��:��V���\r� \r'͢J�m����Wey\u0007�\\6T���P10��V�Q\u001c�Y^\r�fb����vP\u0000Y\u0006V�uP�0&.�\u000bU2\u001b0t�]\u0005����H����v�$c�3�\\��v㬮�#eMq�V����z1��(�~��\n6:�;��K�2J\u001b�(�)\u000bl�<�q�[��g�\u0013�\u0007\u0018��M���=˴�R�t\u000bIG\u0000�ֿ�qu\u0004\u0005������?�A9�\u0007����b�:�\u0011�\u001e�\u0004:�2�\u0010���`'�&<��J\u0001�=M�۵��\u0018V\u0012�p�\u0005ǒ���\\�[���C\u0013\u001b2���]�18G�d���^~U�\u0011�s��\u0013q��,M�8�Ep�\u0018��-\u000bʗ�!\u000f��a\"c�sZ\u0010n�����,y�LB�v���o�\u001f�\tۛ��͉}�ޫuч�,\"\u0004�w�ץ�z���voj��̬�\u0010\u0012�9�]�4�i�_��\u0003M�@�T����O]ѝ&��\u0015l�\u0011�n�P\u000e.��9U���\u000b�\u0014J�edT��E\u0007\u0002\u0000��T\ru�8\\�����s��\u0014J�d�^%\u000f�g?�A�B\\ca��^�aS�ɘBݴa���~!}���\\��S�\u00074pY�m�I��&A�A�\u0007����w�g����\r96�\u0007�%�NY6p�\u0006K��\n� ���4\u0018Ԓ���ԏ�h�\u0000\u00151�����j\bxq ��do�~�e\u001c\u0019B��_����U��o��J\u001e=�~1\u001e=�Z����8���A\u0006����Ө���>K���'�ͭ�ՠJ�y2&?�s��t&D��g6\u0015��F�\u0013�f��UC�?1m�p��\u001d\u0013\r~\u0001g\u0019�k��\u0014��\"�\u000b\t�C'ܱ&��\u0010�W�=\u0017�LRm\u0011\u0017G�Y\b�\"���\u001a?���#A��\u001b��\u0014�bK\u0006��(��7Ja���~\u001c�?@lm�N\u0001�w�\u001bt�l���7|\u0010ݻ�б.&�x\u001dt����}v��4����\u0012\u0019�y�R\u001b���2�\u0015�\b�Q�\u0010)�p�];:\u0000\u0018D���\"\u0007x�PD��%�%�����~���F���V\bf����8N���u��\u0017�^;�m�p�\t ,��p����\u0015I���ݹ}\fQ֨�H\u000f��X|��܎��?�_Y w����ţ�y�\t�U��C����=T���&�38R�\u0011��J�hm�\u0013h�|�Y'1uoq�Z���\b\u0017\u0013�S�PhZ�A��km�ӈ�^ɡ���A\u0001�\u0007���X��w�% ���<�we��\u0001d�p���)i/\u001f��m�o���i����t�9S���ڇ�Ņ�\u0000{��1�:\u0018sW��l��X\n�FD9�14�(\u0015Œ������š4#\u0014�:�G�\u00077*\u0014��]�ѱ\u0002ᦺ�l;\u0016K�� o��V8O�\u0014B�e�8 ��ۛ�^���}����\u001bD��Nt\n�c\"\u0004����\u0000��hJ��\u0002�u��q\u0005��\u0018�;�6\u0017�ب1�O�\u0004+�%bS�?x�\u001cl��S\u0018\u00188W�򹊋<�⢃3�N����$\u0019\r��Ǐ\u0001\u0016D��<�\u001b|��]c�A\u001b�\u0007���X��\u001d�lc9�9�m\n��xk#V�N��\u0002\u0013tێ�g� �厨�\u000f�g!�\u0019������\t����\u0003-[���\u000eH�O�|l�����5���6Q���P����Va���V\f`�\u0017�E�ɷ\u0010\u0012\u000er\u0007��/R���\u0017�\u001b�ޖ�.sm�6 \u0001\u0012\u001c��h\u001cFѢ����&vw\r\u0012�wz����y>(��y�P]�i�G]S�q�S�@�\u001c\"��>����AK�}�sN(�7��F��-v3J\u0006x���ݠ5��}\u001d�!1�\\�g\fcu'|��b8�O��\\\u0018N;ʣI�P�!\u0000\b\r��\u0010x�L\u001e7M�͌�=�zR�\"g�R�+�(4�A\u000b�\u0007Ѐ�L�LX����\bDk�9\u000b�V\u0011�@\u0004�q\u001c\u0012\u00032,�>}o���{5\u000b7�����jʐ��\u000bU��w�So���g$� �\f\u0011��0WY\b��\u000b\u0018���m�R����(�+f���FK\u000fr�7��!]�RWS~�\u0011[2~!����ې�;��H~\u000e}��$���pܞI�\u0018���#�53‰�����t-���^`3�$mL\u001e����\u0014��p�������\u000fÌ\u0000��\u0014_\u001d\\iLJ\u000776���m(�I����3�������E�Y)����\u0017�\nw�9�N�P�䷫\u0002���\u000b��j+����Jw����v�E\fD��[W�y��0�f�\u001e���\u0001���x\u0019�]��*&������� _�\f5��\u0017\u001f�>(\\\u001f�9�ˣ@��\b\f��M%2�k\u0015�v�͵�‹\u0013��\u0001�\u0013e=)�v)Y���\u0001b\u0017�\t�\n\u0018Å�Ĉ��[�u�'�k��F��s�\u0018\u0000wJ��L�$x��~*_�.e_n�`�\u0007�V�ѯ6U�\nA�\u0019O��@�z�g,�\u0019OrYf�\u000f.��˲�6S�W��j�v~�Ă���,\u0006��y�\u0003�2B�J�,>��\u0017�\u0013�5�~oAE��6��x\u00184��\u0011��d��q16�[.\u0017:�\u0015v��\u0004�~NJ�\r0�M>�\u000e�zb\u0000�\u0017 ��,�A�^�_=��ܢV�\u0016-/�\u0003 \u000f���EM�@ܣA)�\b ��L���$��D��('b�bh�ߣ��p\u0013\u0015���\"��M�϶��\u001aF��7\u0000�YL^�\u001a\u0007�KL3�-�M�Hr�v?�\u0007\u0005-�*j�\u000e�Z�oVn+����\bz�M\u0019��H���,z6�/�~\u001dn��2����[Lq7�\u001fC�n����\u001a�&I�ɝ�@��?\b� y��\u0015�p�TP\u0007�&�\bQ~l�2\u0019g)Υ?�\u0018���y��]���\u0016#ĎJ5��Kn��\b�W I��o`�iz\u0015�\u0001\u0013�Ý:8D��b�۪C�#�\u0001SSM�d\u001b����\u0018)���p��,�\u000ezKpx�[��\u0007,5��\\�/�����\u0012�ŝ\no\u0003�1�3��\\�\u0013�P� �\b\t�v�A\u0015�\b4��L�lն���\t\u00038�MC�\"!��\u0017�\u0014��b�\u0018�e!4��=\u001df!��G\u0002ܗ8A\u0012���~�9F�sԞë\u0018i���\u001f�Z?6s�`q���Ǟ���4H\u001b��\\��0�\u0005\u0017��a����\u000e.�����,dc��Վ͛�5'��\t�������\u0013�gq�s�\u001c�r��Ci\u0000�)'��)A8�\u001e�з$��f�p\"^Ȟ��\u001fI�ܚ�\u0000�@\u001e\u0015J߈�:\u000e���\f��i�o��\u0010h�}1򛶃�_~IȺ�O���r�\u0015���Q\f�\b*~�&9Qh��B��\u0005+\u0018���Gw�#yV\u0001��pݫ�yd�T��+�$�$�A\u0007�\bH��L��\u0001WI���Έ���\u0017��/j���_���\u00011�\u0018�`�8\ffuo�\u0003\t\u000e\u0015�}�nX�\u0006\u0006\u0017��oPˏ\u0005\u000b���шS�1��/�\r8�߶����z\t\u0003Z�֪@���\tR���\"̢\u001d�}\u001d'���%h\u0000\r4\u0001��\u0005��%X�3K�r�Aa�b\u0003&3���'g�7�i[���:Rn/m�\\��\u001e\f�\n���\u000e#�R6��!�V�iY\u000f�4�UJ~��/�'0�\u0015ׄf���\u0004f5���Z�\u0006\u000b�\u0005\u001c�ˬ\u0015W%��0=s�6!�9ؤ'��m�\u0006\u0010^?4\u0006 K��@dp.�؊\u001a\u001b5��A �\b\\��L��A{L�\u000b~���$ʲ�(H�U����a��zq���`�=d0����\u0000�\rBm��0�\u0015�\b�N���\u0011�Jf�r��$44v�Ns�\u0017y��.��A\f��\u0012���v�IԴ\u0017�%5�O�\t\u001f���\u0018`\u0010��c�P��\u0012����\t}\u0013��?�<�ߐ:j�\"\u0004\u0019�S#\u0012\bU��ZbW�x�\u001a�.�\u001f��i��\u0000���CW��Cg��\\�o[��[�\u0001w\r ���T���P��8��w�…MS��\tۙt�C�\u0007�z��\u00170S��4e8\u0019\u0002_�#!qA�\u001f/\u000b3#�>�\u000b\u0016\u0014\u001co(\u0013�&�\u0005\r5���!\u001d��JPmߑJE�c\u000b��A �\bp����\u0011\u0014�^\u0016�U_���*����sk#{�t�5\u00161q���\u0000߲{,��`\u001f\b�G�\u000b�׿ ��eu�Wr�$��٥͘�v;a�\u0014P���W)J�\\\u0011{]|��uʫ9J�t'ۍ��Q8\u0013o��9�/Õ\u001cW�ư�נ���&���Z���;$��\u0003�¤��(,���H�|\u0018��|5������xV�ޣ\u001d�V��\"8[��ORs��pI�rNj�ۯ\u001a�\u0019��\r�\u0006�wsh��l�.�����P�+]2_gmwd\u0015�/�\u0003\u0005�2�g\u0007e�s%O3)��r����\u0015;a.�KR�\u000b\u0005s\u0013�+�7I\u0005����c{0ӭ�o��A.�\b���Mz��H��+\u001dMY,\u0019��@�&>���ۧ}\u001f<ݬ�]~��gq-�P�(\u0017\n�!�\r��\u000e���\rK�\nT�\u0006�Ķ�\u0012I\u0006�������!�#V{�iR��X~i\u0003]�B�@\u0007k*�L�I&e\u0015z=\u0004xr1�v\u0014?�vkQE����\u0011R��bv\n\u00126\u0002o\u0014Mڬݐ\u001b��JԼ�>dD^H�\u0014����߮���ɾF��C�9\u0011��+ę�F��;i�O�\u0015u%I��S�R ֧��=4�I��\r�j������0�x�z�\u0005�\u001b�O��i\u0012���ۨX@�\u0016W6B\u001e��][\u001d�:p\u0016��i�`��ܬ�A��ƨ9\u001cV\\�<`���\u000b[�-��(��L�����A;�\b����\f^U\u0012�z�1r@�\fvR�Gr0`8��q���\u001c\u001c��b#��\u001e?R��L���%�9W��Njƙ���Ǧ�[0,$T\u0019�)X�\"��~o-�;����qG�\u0002jLh���xA�h(��9��\u0013�e\u0007-�T|��\u0019�ߖՀ�g�-�\u0003�Z\u0018&rF}\u0007$_?5��\u0011�����\u0019�N\u0011�w��[gn�z\u001f�J�W�Hl��s��b6�Y_-�*\fȮ#�S�Vz�G��3�}͚Z�\u0019`��\u000f�u7t�\u0017�\t�$�\u001c \u0004�D�\u00179{���|����ڧ���*'Je��l*\u001b�Mjp\r8i�͔���t�����/E�\u001dh�qw�w��9�\u001a�F�[�E���8�O���Ê\u0013WV��{��\u0015���:a$#o]�\u0019\u001b�\u0004L\\��y��k�ˆ�e�������\u00074\u0010!�\u0010F\u0015�á4�\bY�����W�.PQ��N�L泐�Ϥ�a�g0���Ò�\u001d��X��X�M��1��T�*b�1���bդ\u001e���q\u0015��Dg�\u001c\u0004��R\u000f\u0006���3r$�f��\u001d@/\u0006��B9\u0013£A'�\b����\fZl^��e��&�yo�VC�@=\u0000Skm�\u0012�\u000b�޳�\u0019d�-b���E?��\u0013��V�?�6�G�\u001a�\nt�\u0019(�Y\u0017\u001b.Ήm�_��\u000f\n/8�\u0013lt\u000fp`��ß���ˡ�4��U\u000e\u0004��\u000e�\u0014\u0016�E��\u0004��IR1�S,���1\u0014�No��&�\u001a�T�#��j���F\u0014$�8\u0017i&��|�\u000e�\u0003l��잴�����7�L�٥o�\u0012\\����&�%J]�8\r��%���ȓZ�k\u000bQ\u0013\fz�9��xf�B3��\u0017�{�\u0005\"\u0000��bH�=\u0016�\u0011\u0017Z�\u0001�pGם\rD�ć@Y�\nŽ��f�kk\u000f�>L�\u0007��A\u0012�\b��L�٭�fV��n\u0012A�Z�̼��csY���=���6\u0001����$j��D�\u0012gG� k\u0000���\u0005^|�ξ�\u0010m�[V\u0005M!�&\u0007ٕҩq��$��\u001c�p\u0012�>e��b/\u001b\u001315V�ܶ\u0011\u000f�R���\u0011�%�H\u001aœ�ݎ��\r^\u0018V�\u0018\u001apC`Xq\u0013J�M�\u0018ϖ�R���\u0018^?�H\"P�%2Hܴ:y��6Ϫ9�]�嶓�b+b�+nY=�s\rr���I��.��+�^\u0017��&���YE�y\u001b�����l\u0013�.��PB?�*�\u001eU.���-�'�p��\u0012�Z\r�%[��'S���W��j½����޺����A\b�\b���LǤ�k\u0000?�'�d�gN����\u0000��\u0014\n��=�\u001fA\u0005]R�\bN��\\�_�bG\u001a\u0000��9���������X�!�0\u000e���ɮɣ�Cj�3�@'��)~\r^O�V\\�憏X\u0000�@�ߓ\u0015��9�F�\u0017\u001c��I�+lIY�u!�L;��\u001a��\u0010N����<���%p��=��\u001e0\u001a'�\u001f�PC2{����(�\"c�TD\u0006��B@Zy��\r\u001c\u0012[l+1��\u0000Bj_��\u00074D\u001d��G{{(W���_3�\u0016\r�m�U��F��v\u0011ہ\t\b�!�\u0013c����S8\u0010���\u0010�i����2�n�7���\u0002\u000f\u0019\u0013�AR�\t\u0010���a�\u0006\f\u000f��M�Mm�`�\u001bF������\u0018�V\u0018񊾆�u ��sL\u001f�K\u000e�\u001c�\tlfiң�N��`s��*D��%s�-�V���\u0004����hs���X��Oa\u0007N�5w�V���\u0004\u0015DAj�\u000bѪ�CU���y�\u001f��A�Ji��4\fv�����C3���a߹(�X�8���\u0004�I\r-ΑYW�`F�$Y-�\u0017��\"B+�\u0003�\u0001��|g�=p�/IV\n�LT���<+A�n\"��\u0010\n�\f\u001d����+D��fs�\u001bCT�\u000f\r\u001d�ѓo�������©��l�\u000f\u0004���|�\u0019��a������I{@�\u0015O:�}Uފ��\u0003�`��8�و\u0003��e\u0013\u001d�# ��p\u000fpt�Ԧ���$\u000b���kv�nK\u0007J#�mZ��Iq�A9�\t$���a�$q�����;xP/�����A$�\u001fzGq~�,�pn��ו*+��V\b��JW\u001c��ѓ��y�\"�јI[�\u001a���MskUuI^V\u0001\u0012�[�~�\u0018�����!\u0018M�2����l\u0002O�Eb�_L���)wd\u00077��ߤ\u0003�ɵ��B+j���\b\u0014C\"���\u001b�o\u0012&޽� \u0017�}ϵ����\u0013\u000eR�\r\u0003�7\u0012�\u0011v�8�\u001e��\u0004\u0012\b\u001f\u0017n,\u001aa��\u000eh��,u\u000b��\u001a\u0013.\u0015EK9��L:�~�\u001b%�W�\u0017�>��b�\fO�\u0010\r4�q��:)��߱v\r\u00026IVy3'o�&�b�\u0001�V�\u0007u+�\u0015f\u0018^Zd��SA�\u0004_I��\u001bP�Y�O��z[��2�r�AK�\t8���a�\bY텂Q��i\u0000\u0015\u0001v\f�|���\u0017�ABS�\u0013��bo~xc#W�|ڋ�G�\u0010�u~\u0004G�u\u0016Y��q��@�Y\u000b��,u�j\u001b�ܷg�\u0013č��(\u0005�M�\u0006\u0017��Y���DQR��\fB�:l�.�\u001c;���D��o\n�:\u0013�0�\u0016�%\u000f�\u000b���\u000bq�/\u000f�3�i����z������U$/T�\u0019�\u001f�V�����X �\u0010�\u001e�\r\"g��2k��\\}mGMn��\u0001=^�B>Q����\u001cϤш\u0017�\u001e��\\t�T�U��5�\u000b���1ݻ�D\t~�#`�j����*��1��\f/f6\t�8\u001bQ���p\r\u001a�G�[>�\u0005\u0002\\��q�~�qq�\u0007��e7��\r\u0011�ʣ�X��\u001a�fh�l��M\\�X��>�mt�A\u001c�\tL���d�\u000b�Š4\nY\u0000j��\u0004���\u0016W��s��6���kW�������\u000f��<-������s\u001a�$�x/\u001a��ݨ�X�m4�-El�ԑƒ�ß���\u001d��vS��\u0016�hLq��ܥ��Q�T�dY��\u0006=�\u0018‹�\u0015�߯�\r��\u001a���v\fC���r^��\u0014J��X7\u0015���@֣6c[��A�'e��[��W}�G;\u0004;C����\u0010L�C���t�_����N��#�2�ʇ3\u0013.�\u0002)�(u\u000e�����$+1�Y:�UG\u0015\u00003ب�9�:<�V�\u000b��;�[8\u0001�t?��?�\"��T�o�;�H\u0015�\u0014N���JwW �0A�k)��Ƴ��6(BR?�%��P�Zw�\u0004\u0017(�j�\u00049ov\u0011,_���y@��\u001c=ҷ��1P���\u0015��sN}���\u001f����:e�Wѝ�FS#�o��;w���,�TI��\ng���\u0005��Ҹ�D\t\u0012�\u0002D�\nT\u000b:=�v �nl���\r�aOmv�A=�\tt���l\u0016]\u001d�^CU����rW\u000fҦW��\b�Q�\u0004rmɣ�#dQ/DH?�T�ح;G�>�{�Xv�\"ƈ2��c�ZA�Ø}\u0011?�=銩�,4.�����\u000b��g�\"����\u0010D��\u000bz̈WCs^�x�4�\\�Y�\u0014�i\u001d�\u0001�BV\u0002\u000e+�8�I\u0016�\r�PR�\b�q\nM�3\u0011�%���d\u001b��������\u001e��י�����U\u0019��]mDb>�Ɨ�=L�Dm.U��a\u000fV\u00164]�\u00167�&E{��@\ndx\u00055I���Y�w\n���,�;�lH��VZ\u0019��\u0002��ux�G\u001fh�\u0017V)�2�Ig\u001b�6�(kp9\u001d�;�9A�zHI�݁�7���\u001e�\tE\u0012�I-�I\"�JBe�ξ\u0000�qv�A��\t����$,\u0017<���&�K��I\u0003\u001d�����܅�+���M��(�j�E��2\u0001�oߖ#c�0��\u001a��(�5��Fe�\u0001��\u000e�>�\u00047_ŧ���'̀�G[\u001e��mM��\u001c��p�fʦ�Ey�.9m���Q\u000ef�R�����G�\n��\u001a\u0016z�|��\u000b~��q�4\u0001۸�lJ�t_$`\f�R!��Y\u000b�@i��6E��#J����%�4-�c���)\u0015\u0002��Xa�a�ȴ¸W��أ'��\u0006t��=&`�Q_��S�cW�\n>E�U\f[��Z�\u0015h�֖� �?�\u0006�_�W�n�oT��v��p\f��n�\u0004R��Z�Y��k ����\b\u0013�ܪ\u001a\\\u0000Pk��\u0011{_v�x\u001e�Ծ|\u001d\t�\u0002\"_�\r�\u0001U\u0011� Y\u0012�ˬO@&��J{�t��m�$�j��6���A�_\u0004D�l\n9%`3\u000f'�;\\�6�-\u0001������wB�ǫ�D[,�F\u001f�\u0003���\bmY\u0016ʍ�v(@�,X���V�Xʇ9��\u0016s��\u0017\u0012dE��X�/醆�p�+�pT\u0017ʲ����.�~\u0001�sb\u001a���k�\u0014\u0016�#i��,\u0001�N/=_�%�H�b�?���F�%��J����A��\t���XоFB�e_�\\Y �MR�\u0016�\u001e/y\u001b�\u0000Y�\u0013�Z�ap2\u001eז]?o\u0000����)����B�\u0015Mz�J�\f��{����\u0014BL}~MΟ�s�ۀ�\u0013ƇNN�Wwj�\fk�\u0016�ө�\u0013��@y]���\n���ƒ�[n1��\u0002�)`n��CE@�mǟS=v\u001dC�̾z��\f�\u0015��]�X��ͮ�m�\u0015\u0014�=�,-Fk�����\u001fkĶ5�I���\u001b���{�8�����9��\u0005۟��N\u0006\fu��#������A���3|Q�1�\u001d�1�q�\u0007Lfj%))�\u0012��\t~{�.� ۍ\u0018����x2���\u0005d���\u0012��;�D��al�`�(���gv7���݅�w��Q���\u0007�Bt\u0019\u0010�e��;kQ\u000e\n�ު�'d\"�d�\u0019�a�� \u0010ۣA'�\t����m��<.�\u0014޺@�m�\f^Ur����<\r�H�0�\\@�\u0017v�j.�\u001c��\u001d���\u0001%=r��\u0012[�V���\"��b׊�z�H�R=B.\u0003~�N:�\u0018\\ϊ�\u0005�7\u0005�\u000f\u0007q���\u001c \u0012!�\u000b�A�\b�:\tc)�DGJ��\u001ci���\u0019,���ձ�jw\u0015���\u001bt�\u0011pt���^�蓗�H�ɕׁ�\u001dR�il:o\u00055\u0001\n����3�6��ɵчƠ�0�\u0000��l��\u001b���\u0013ph\u00151��9*\u0018�H\u0010�=���n��$13q��ڋ���t�͏�(\u0019u�\t���,U�;�\\���z�\u0002��b�hN}�~W��-|ԑ�\u0006�[\u0013s�\u0002�<\u000e�R�A\u001b�\tĀ���\u001d1\u000b u���\u001f>�\u0002�S��%�E\t\u001e�B�\u001e4餁�#��rZa\u000fC�,7�\u000e���FII^_�A�lD\n\u001987\u000b\u001c�\u0004��J]E!Ͳ+?J�HU�\u000e�\u000b �!U�l“����s.��f*��\u0015�]^�MTl\n�,2Ѩ�L�ۧG���Ts�\u0003 ���jI��\u000f���\u0019�Rt�v�@��\t؀�L�\u0000�z�i�nC\u0001`�v�`gL\u0005���@��x��ݝ�\u0004)K�\u0019Rg1�T�\u000b���F�-1��U\u000e�;�\r���SG~�졁Q�ӽ\u0005\u001dO�LL<;�*����`���i���k�R����Z\u0001J$fV�\u0018�3\nu� ���7ϵ�@xY�G��\\EUi�v�kW�(!K��\u0012�\u001d�_V\u0019�aIq\u0017C\u0000��6�\u000fmU�WN��S%�ET�\u0002,.�9���q3\tŔ�z�\u0013������]�V�vnJ�v\u0012�\u001f\u000e*�NdT���.Qf\u0018�6�\t�\"\t����\u0013,d�\u001f�f'f\n&X�h[���j� |U%\u000e��*[/_�\u0017×Z\u0010�t��B��B�.�����-��\u000bg\u0015��\u0003s.\u0018;z�H�_�>���$�^��\u001db�\u000eI��u�\u0005�4��\u000f���5\u0019�� �h�\u0000��\u0011�b\t�{%�\nx\u0007<ӕ��\f��\u0015��3uۛ��\u000e�T�k��)��w֢���?$�A�� .���A!�\n\u0000���cP\u001by�\u000bP҅е�\\��v�\t���a�;tŝ%�L@Z�\u0003��36\u001ce�Ĥ˭jh^ڳ�\u000b���0�m�\u0007��‐\t*u�諛����-�\u000eA\u001a��<)}����+:7N\u0015v;���\u00128�X�A#���C��\u0018Ժ�AE�\n�P�\ny\tb]&7ri\nN�]:���\u0012\f\u0007���&%��B��L��+��\u0004��\u000f�F��bA�\u000f�P���\u0004\u0010D;^��AS��\"��h���\u0006������O\u0002|yɾZ�����Aپ\u0002��_��=��>}�x�A\u001f�>�)�N�J����\r\u0012H�\u0003�c\r����?s�Ѯ��?�-��x�Dl����o�Ax�\n\u0014���qIy-�3��d�7������&�F\u000e��y��H�\u0012�}��8�=7d�&s�A0�\n(���Ӹ7\b�dw�\u0003\n�J*>P��\u0010ZZ�\u001a��D3Ԇ�4��I\u001cyz3�ğۭ�}�kИ\u0014��Y�4�;�=9\"���\u001f�I�J?�vd��`�'\u001b4�:=�\r�ZR���1�7��p�0-x\u001a��L�N�\u0010�����A�\u0006�I�RM�^r�\u0011�s�s�\u001a\u0001�t\u0013�P?�v\u001c���ki��$�\u001c�\b�-�\u001b.U\u0011\n�� �W��@(r�\u001d��9l���+KQ5h�\u0001��j�g��O��Ѥ���A��\u0013��&_��������#\u0005�̔O\u001e\u0012���W�hPgqS�U�p�h!���\u001a��%���ꢤ5�G��#���\u0016\"�dh�\"\u0011��0\u0011\u0005��pU��Jy�AA�\n<���q��1��T�WM'\u0019\u0005\u0019��\u001cQ��\u0011��]�WW�:����\u0017NN�x\u0000��e�`���c%�\u0001%��S|U(����]�j(k�\b���o% �(�B��o� �{�\u001a\t���DiVrh�x[\u0014�wG�\u001f��\u001d6����r'4\u000bW�<�}�eq�0� ��d�Af\u0018훔���m�\u0002�ڠ�@��.���!�V���\\R)�o%!�xK���=I�\u00165�vň'�6*\u001c���|�f��\u0017��\u0018�:?&�$��zcF�8[�-s��F\u0011���Ԁ�\u0002ml��\u001e���\u0016v��_�\u001a|�\u001ck��pK�!1����S�3�T�}r����NT��3�)�\u0003\u0012��Ȅ\u001f ��2(\u001d�J�x\u001b�\u001e.�q��*{�Ad�\nP����\u0019�,�ii�\u0003%ܶK�.�v��`Lg�/��\u0014a�*�Z��,�\t\u0001,/�L\u0007&j\u0013�\u0018U�\u001am0��c���\u0018�-Sс�E\u0001ϒ��v0|�\u0000x\u0007�\"�xKd\u0003Ђ�b����@�p#��'\u0012��c���ڍ\rH\u0014�1V��˳��Y�K�(�˒��\u0017N\u0002��Yܻ���?��\u0012�b�\b�\u0000+&�-��L��+�\u0012Af��\u0015v�T�t�\u0019�\u0014\u001d�Ƕ!�8�s\u0013���I6f�~�EEBFZ\u0000�Q\u00146�w�S��8�ʓ�8f�\u0017u��΍\u001d.mN��>�\u001eٻ�h�/|�_\u0010\u0006�\u000e�����\u001aϟnCsÊ�vk\u0016��;V\u0004ǭ#��\u001c\u001da\u0005\u0011�� +��x����a\u001a�|��l/ݖ���m�K�&�I3�\u000b\u0005�\fV�IF�qm��電D�Y\u0004U�\u0011��X\\�y~���=FO\u001eO�y\u0011څ�ܣ�?�f�t�����\u0002�¾��z�\"�l�\u000but<�\u0012>�TA�ҽ��\u0010�)U\t\u0012z\u001bn��\u001c��ٵ��\u0017nj�������=�W��,\u00193\u001aR�d\u0007\u0019=��)kO��;P�p�>B�����E~n��j�\u0017\u0002�?\\���.R�\u0013v�h\u0015i\u0017�3ל0\u000bL���]\"V\u0000O�\u001c�1\u0018�\u0012�M�Cӎ^p�\"y\u0000h~��wY�Tf1���\u000f\u0007}c���h\u0017�\"ک��>��E���yc�JK\u00003�P$��,�\t�����Js�AB�\nx���\u001f\u0002��%4�5�6��(�|m��H�f�u\u0011��$�8\b8�F䡾�@�%���i,<��ƚ�7\u0013\u0010����h�ה�\u0017\t��`�:~��a�\\���\u000f�\u001a�\u0016�\u0012\u001a\u0003�����!��Z�YM\u001fkv\u0005����&{[��\u0001\u001b����\u001d��֫\r\u0015a�^�L\u0000����gc\u000fHg2&�BXۂԓ\u0010�Ue\u00145{�L�ђR�ߌ\u000ei�����%d\u0015B\u0017\u0000G�Qn\u0003+e�$�\u0017H�H���N�q�E�}+\u0000���\u0015\"�j �{�\u001bv�]�\u001d\u000f\u0012�m۬\u001c�R3��u�\u0006\u0005R~X�\u0016����ZZ�oRX?����:p&��]���1\u0015\u0015?\u0018�/�)\u0007&\u0006*\u0013\fՂ�\u0011����oU���~\u000b}�m�k/0V\u001d�\u0005n�\u000e\u001a�0,Q̖ ��\f\u0010f�\u0000�e\u001e@N��h�E\u0001��?A࿜ex��*\u001c���3\u0019�X.<�h��\u0013Ӄ\u001d�l�F����潣jji~\u000f��\u0011�7�A\u0018�vC�{�.�)O{�\u0016�-�r��)\\�NsZDJ��H\u0006��[G��qTӛv\u001eа�A��j8\nժ\u0005�|v\u001c�'�{P�P�N1\u0012f�ҽF\u0006���\"��t\u0001x�A\u000e�\n���Lȸ�rK�d�n!\r�{D��d1TP�\u0011�\fqc�\"�'�����*ܳ��=��3I[���Co�,�5�J8��\u0010BF�n�K@6\u000f��\u000e\u0010���� �\u001bA�-�u�\\JZ`t��#�S\u001c\u0004`bbQ���j�d��@I����Cm�\u0018@��R��0\u001f\t\u001eF��r�^z�\u0018r�\u0017\u0002A'8��\\MU�J3Ɂ�}��[�*\t�\u000b߹��B$_�߃O�\u0000ʪ,C��}\n������i\"G��p�����ьKx5�\u0001j��$]ǻ\u000b��YӢ�Ǒ֎������i9�\r��+L7I\r_̨���-��?R��o\u0002�·�0�^T6(Ńz�\bH9������Y�,���\u0001���ij\u00165�~o�0�G]1�r���`��\tx��LE��\u0006��JKz\u0012\t-P�#+܍\u001f�R�m�|�e�3��@��h�)�\t��{��r��p\u0014?K\u0017a��?(�\u0003�����K:�|Q\u0015g����vIrX\u0017H7\u0000e�1�ܰ���\u0013��c\u0012�\u000e�ܼӟV�J���\u0016]\u0004�2\u0003[��\u0005�Rq�\u001b\u0016@lG)\u0005Q>vv��\\�5#}\u0011�E��jfK���� �\u0010^��vR\u000e\u000e��kIs�R�\u0010�e��\"a�1\u001d�WlA>�{x͜�D7+��\u0005}�\u000ea�D�o\u000f;�Hsv�w\r\u000e\u001eh�ɿ��A\u0013�\n���L����a����W��VO�,�?�\u0013c\u0001���;г\u001fH~}I֤��q�+�v\u0007O�g�&����ɑK����7���\u0005��|�yg�*���ŷ~��K�]\u0017ɱ���3\u000f\u001c\u0000\u0011׳ܩ\u0005�L\u000e6LgLR��|�(�#��Y^�5����un\t�\u001a��\u00146�c6��L\u000e��[�����T�$�yv�d�WP\u0014�߬�=�j�\u0003Svm��n���P\u001dux'{\u001e\u0005�\"����\u0000#�5�\u0013����\u000f\u0015��\u0019�5~�K�`��mb�*�E֮��F&h�{�\b}�\u001eb�%$=\u0018\f}�7�i�BH��Jϔ��'��?�c�A\u0011�\u000b\u0004���e�܏�L�F��$-�|gaq@��\u000f�.�vL�\u001d ��v\u000f�ڱ��$�\u001e�\u000bP`Ym�ҿ�6��@��\u0005ݣ��@_D�'��b���\u0000\u0015�\u00162\u001f`\u000f�PS�Duʫ\u001ai6��B�&\u0015\u0015\u001f\u001e��$*\u0002F)�G��^b\u0016{�U�n��\u0013T�\u000f31:,ƣ�B\u0014]\"�Yi�l0@�Zb׃V�=�\u001ba���kmy5���:%�\u001e\u001cˇ�\u0017�[��\u0004f�>�<���䳒�E7�ڬ^�F�{\r\u0019U+Uw>�������\u000f\u0013������F���>]\n\\A='Q�\u0015x\n\u0010Q��d5�cˀ\u001dN�E�\u001c�Ҳx�G�A\u001c�\u000b\u0018���a�Vm�����\u001e*��]�pS�0z��Q[D���&��Η�.5\u000ep���^��\u0002\u0002H�'���-zC \bt���g\u0017's@ѵ\u0019��f�S����D=)�\u0017\u0002��a\u001a\u0017x����9�l��\u0018�K\n-b#`a�|������CWɐ�b ���n�rѐ��@lu�U�v���n���\u0011�-.�u�=^�\u001a�a��RJ�E\u0005�%�\u001eLE��\b��^�XZbs�N��V�E{�p� �f\u000e��:vk�\u001ahVS�0��!���f\u0010u\u0002�<��\u0011\n~U�i(|\u0016>_�lv��S?~6\u000f��\u0018{�;\u0002k�!ꈣ�����}7�����ãA0�\u000b,���bn\u001e�=��w?kΖѺ�\u0013�����\u000fr�\u001c�\n�\t$�\"rr`'��\b�G����\f��_��7�e!\u0000��\b��N$�a��X�\u00116�r=�z���\u0010��\u0006��\u0010M��KLپ�ң�p��}{\u0012�\u000b�\r�����\u0017\u0011�v�8Ji��}n�\u001d��ý��q\u0015\u0003��\u0016B�W&vu��x{��C\"�ݱ�d!)ȭ��`�m\u0003��3��?4��)��_{\u001e_'�\u001b�z\n\u0015�\u001e���.�P{\u001d��$\u001a�YY��|�1N3��5�㲂���-�� ���?58\u001c\u000b�\f���|@3�����d���ģ\u000b���\u0005�\u0010�*S�\n*^�\u0005L@%�?�E�\u000b?�m��0\u0013��@)\u0000-�qB�A\u001d�\u000b@���b]i�\u0015t���3��X���\u0012�V΃]ތݦ\nț���i��TD;��4�\u0002��\r\u001dm�m�g\b����@��bg��\u0010臯�ۢ_[Ll��\u0019\u001c5�mѺ\u0016�3[��@\f\u0000c�\u0003v��.\u0013Uf�K�aX�c�M�w6(\u0000�L�.��\u0001�z?\u0011���h\u0005C�`�\u000e���t�gBg\u001c|E��!ƾ������\u0002\u0012��2��pmF=vj�\t骘�~A�MI&�OCk�*�4 �W�\u0015\u001bN�����\u001aPΊ,;��Jb\u0005\ng�(�4��\u001f]ϧs^K��2Wq\u0002\r�\u0006�\u0011�\u0015�\u0005��\u0018�M^��\u0002\"\u0000��[�q1�D�=ˡmE�AH�\u000bT���b\u001fÍ(a E�5N������>ݜL�z�kh��.��6\u0013a�b3j[���c&ϸ�yYdx��\b�\u0016�)�D*\r*�\u001a�\bK�2��\u0014Eh\u0005]V���T�-��W}\u001b�\u001a��\u0003�>_��h����p��\\��q�tQ�qz=/���2�ʈ\u0013�I�…Xج�\u0014Į)\u0006b���9\u001c߳�<���\u000f� x]Y���?�\u001a����\\�k;����ޥ5\u000b��0���r���,\r��\"\u0004ʜ�O\u0019$\u0006��\u000e��R\u00014\u0017\u0001����!2�3�Ⳕ�\u0015\u0010�<��k\\��Z�Be��g��\u0006�i<��$\u0017�_{��n�Ƽ\u000bG*�����b�Ci\u000f9�q�����S������G�c��Q���$\u0007k�-Ԧ�y��ƣA+�\u000bh���b\b�^���A\u0002z&�R*�\u0007�˜بI-�G:4\"sO�~\u0005ٞύ���Kn��\u0010E�`:ָT\b8_�^�d�_��6o�\u0000W���cdG���^�\b�y�y����'J�Xc����M0ư�mT�h��:�ˮ\u0013\u0001YWF�ӱ%7\u000e��ց��m��W\u0010<�D��PI�\n�V\u0018�(جfd�\u001a�{�\u0019�Fߤ8\u0005Ia�\\���z��U5K\u0012Z�ݵb����$(���i��O�p��Al�O�Ժ\u0003uO�\f�iz�����\u0004E.�/��?:?\u0011��\u001a��o��G�K\u0013\u001f�j�ϊ\u0000\u0010d���18\u001b��!ţAӁ\u000b���}�i.�\u0016,˒`4�<\u0010*�-�^�d~=�E�P���\u0015ϋI��:\u0004J~c\u0016���؈�)��ňB��}���ǒ�X\"����\u0013ڤ@Ÿ����|$\u001e�\u001e\u001f��-!^Ap2�,Y�jy\u0017ѯ�\u0001�����5q~�^�P��Œ蟣)\u001e����3������Ҥ��\u0005��kk��N\f-�\u001c\u000fvo3��\r4�F��O\u0001 �\u000fL�m��L���(�#�\u0004\u0002\n���܇�@s\n�L�\u000fI7b�B\f��ڸ�,n'\u0003�)1�י�\t�B�y����O�kO�\t\tk�t#�\u001b�}]g#�Y�ZčK$\u001e�'�\"4uG��؋�:\nゥi��$3��˲\u0007���s����o�\u0012ae#\bk\u001c�|�\u0019y@�\b�\u0015q\r5��U����\u0011$�\u0012\u0012ӊ\u0019���\\������� [��Ǖ�G̯4�@3Oy��/\u0017\nJ4f\u000e� �\u0010����\u0010H(@1�\u0001���\u000f�ޕ|k�KA\r\r{vY�E�y���zS�qضs\u001e�1^��c��̖��B\u0000�\u0006\u0004?�6\u000bIM2(I������Z�g�T\t\u0012�݇Ƹ�\n���$���N1ͱ��\f���Fx���E���>m/��a6`��2��+��|�O3�F.��9q'pI|f��S�ʭ{o�j�+�j\u000bb�þ�?��M����x�\u0004�`7#@���++\u0000,�?R\u0015\u0011\u0000H���ں�ﵬ_�ٖ���ј.\u001b\u0003m����\bڷ��@��\u000b��L��PWٹߝ2(�5pJ�S�{n���P��WQ^�m\u0010��\u0003ψ\u001cq�c#�����=�){0��\f\u0011��]\u0002�[C�8�&E��\\UR��8A#�2������m���z�����6��a\u0012C\u0017��\u0001�\b�\u0012<\u0005Y�\\��\u0005C���\u001dMx���nF*\u0005��z5�\u0014!�����\b߻G�\u001c��D�\u000e]\u0017! �#�\"�᪾�iȂ#-0\u0010�\u0002��5�7ڍ\f�&;]�)�~��\u000b�WW\f\\h=��B��\u0000Q�S����\u001bQ�;�-ku�o��ջ@h`=kY}\u0003���A\u0000�\f\b��L��b�!�\u001c\na��I�\u0013xJ]aZ@�\u0015ۈ\u0018��j\b������'�JO\"1'����\u0010\n(|�\u0017l=Su;N�Wև�\u0019�\u0013f�d�\u0010�����<6\u001f\u0016�g�R��\u0004G\t���K�Dp##\"r���rD����U��LQ�)�����\u0017}ػ�\tE�w�eu�ӑ��\u0011d8W�'a���ώٟ�Vk��\u0015ҹ6\"�r��\u0004Q�@��;�O�Zқ#�\u0006\u000b��\u0010#�ൃ���%i�\u0001†\u0018f�����r��\u001d��m.�'��\u0000�]�\u001c�\u0003{�����׃\u0005CI+L�$^p\u0010�\u000f�O�A\u0005�\f\u001c���\fnf8�+hEJ�7.�P�׼��pV���\u001bD�Lj�(\n񰐅s�:�O\u0015G\r̍�pM��e\u00188�)\u001c\u0001Ӓ�q��\u001ax�6��t��H\u0018�W-#^':g�����~z�BR���TR9#%�an���d�#z\fi��,��p�?%\u0014�\u001b\u0012%�N\u0001?�����\u0007�='�`\u00039��\u0015h�w�L=[����5��\u0014�rHW�\u000b\\T��Nrp��{�!n�?�j��?�H�H��a�\u0018:Swn���>�8a�٦�\u001c�̺\u0002�\u0001�d\u000f\u001d8����繐�{sc\u0011B�3\bV�'{�C�R\u0013��\u001c�ɣA!�\f0���\f�\u000f?\u0012)�ڭ\u0000&\u000e�w|7z9\u000bY�\\Ә�;��gY��\u000b��p{s_�j��$$@��\u0007ҥ\u0001%.��Y�~d����\u0004X\"�?�\n�������\u0004�U7B�7�2�I\u0016���sa�!\u0013.6�1�\u000eAh�\\��\\}�Ž\u0001�qd�\u001c\u0015�֝3ٶ�\u0006@#�Hu�\u001d׿M<�M?�b��\u0015�\u0017�cC��\u0000\u0017��iH�kO+?S\u0018�\u0012�\u0012\"W�\u001d��\u0007Kֹ���\b�f�P�\f��y�W\"O7=�D�l�#e��(��\u0017��E@i��\u0016���\u001c3s�>�\"\tZ�+\n�O\u0011:��n�v\u000fn��\u0019��x�>�n��Ї}��x�\u001d\"��bC���أA\u0011�\fD��1���j��\u0007����A~l�vǯ���v��\u0003\u001b�C�\u001a\u001ffomR\u0005�-�<-���\u0018�ƬX7��TN)\u0004�:�c\u0004h;��4sO��OB~�M\u0001�5\u001fw�I\u000e�m*\tw���\u0017����7b�!>}[\u000b(���\u0012�̺o�f~�>Ж@��\u0004au\f$O���\u001e���\u0018�j\u001d�p���$\u001dlj�����\u001eы\u0007��\b@�_0,J�\b�ü�K=\u0004G*��'X\u0018\u0011�8�I���6�v�V~��U���S�����-\u000en:n�~$uqe\u0012�\u001e�\u001eb;\"\u0015��N5f���-��v\u0019N\u0004�ќh3p ?��f��S^G�A,�\fX��ۺ�+��'�9Mq}X��\u0007�h�;��&x=Е\u0018q�o&\u001d3�\u001b5�kVL�>C�x���W\b�\u00156�n�9�,�\u0002,eF�0�ИH�%�tK�7�X�p>@��b�Q�\u0011n�q9}1\u0000�\u0016�\u001a!4TӜ��]M�r���B{�z�<�(�[�u��\t��\u000e��v��?*��X\u0011�xْ�]��]F�\u0000��U�x�:�F��v�>ߌR\u0001�P�2틾P~\u0002�'\u0010\u001d�\u0013SNPP��F0<�\r��(3�T(E���Fz,��\u0003��\u0013Ni����\u0012\"�\u0000�k�\u0014'��X���ܕ���H\u0005=�b����;\n�\u0006Wa�E�=R\u0017�8�pc��׼��X\u001e��\"2�K�A\u001e�\fl��L��|�r�s�k��\u0000�\u001e�3%��-�ާ��\u001e\u0011H�\u0012d�[\u00011X�/�B6�@�U\f�\\�7C�\u001fT}�\u001c<\u0001��ڷк�1\u0016�JE�#Ih$�\u0012�\u0014:�\u0006���\bT\u0005�F�#�Z\u000f~\u0003���ĥZ�ߪ2�\u0003|\u0002\u001eO\u001cY��G+�tR\u0012i$�;�����L*�\u0017\u0019ȑ\u0011�x!z@�lcAS�l�1�2+����i=\u0016�����4�u\t�\u0010�d��{&\u0005t�(L��T�\t�9UW���-F\u0013�W��=���\u0010�\nDx�b\u00052�\u0004>\u0006/���PjZc�{�\\�\n�ꢜ\u000e��ȋ\u00023��N�\u0007=�]�\u00134=�?�[twM�;�iQ�\u0012oH�A-�\f���M\u000fLF���sn��\n6����7�#\b<\u000ee_���p���\u0012�̔��@�9��\u0014\r�kD\fh�;z�\u001b��\u001e1�yg\u001b�̘f�\\\u0012-�smƆBzJ{hmx\"bl\f'�\u0018��3\u0006�\u0003�3G��-����%�i)qʹ5I?<�1\u0017��x�\u0017G�foD�J\u0001,eoj<\u0011�2\u000b�\u0012s\u001aA´\fF�?a\u0017�cn�+͔#��A���0>�i\u0003\u0018\u0013��viqTh��=��=�v���]&�\u0001\fP\u001a��p\b\u0015�R.��P\u001dS�3�ޜ\u0014ܘyP\u0017�-�1��F5q�^9*p����͗YT#���b+\u000e��&��$��&��G�����\u0014��%�;�A�@�W�H��(����A �\f���L�\u001an�{�w[�v/�\u0017\\���9�&\u0012�~�ϕ;��Ͼf\u0016��\u001c�\u000b���\u0016�VP�����\u0003��f+om��X\u0019(\u001c\u0000i\\/�#���JD \u0001���dL�]\r�A\u0019��xg\u0005\u0015H5CU�E��e�\\\u0013R2�'O\u0002O���1�v$\u001b�\"��z�\\;e)T��Ekx�r�9���}\u00046\t-0�a�07a>n���M\u0019A⻨�\b\u000f^3�ݨ\fw��Hjn��K�Ic�_\u0015w\u0019�\u0007��g�t|�\u0010�Q`�\u001eY\n��ws�Z���ߘ��颉�,\u0010\n9\u0000��\"\"�\u0003q\u0002�Rn�v�\u001b�����A�d<{\f�\u0011�\u0012�x\u0017�\u0002\u0014A�&��U�\u000b]$�Ax�\f����\fK:�V',Id��z��\u0010�\bD�\u000fp�R�]�SQ\u0016]�'���ݗ��\u00115cQSV��8A��6͘�\u001dv\u000f�+�ƪ�@һl��#X�����U\u0015î'߿��O{V\u00198�Æ`/��'a\u0001?�������\u0004A�{|�\u001a�9���\u0017�a3�\u0015\f��fN\u0018z�XoArn�\u0018�����6|=�ʳ��SlE�=#��\u0012�?Z����Zw)<\u000e�C��\u0017sM^_�\u0004��_v\u001f\u0011�ϲ�i\u000f\u0015L���g\u000f�Y��$x�;>\"\u0006\u0005��8��ux���Z�%��ܦhǾ��:�:U���J��\u000f�\u0016\u0004��.!3/&P\u0011IIX�\u001dG\u0010:\u001d��]i^3�X�\u001d\u0000�~k�U��\u000b��sS���q����5��ܟ\u0014c8N�\u0011\u0001�z����Ux�6��\u001d\u001c�'����k\u000f|~�̠�W+<�/�\u0007\u001c9��\u0011�\u0007l�sA#^�A1�\f���L���;e�-\u0003w\u0000��\u001f��\\�4�z���d3;��`U�3>\u0006�%ż��jE��\u001e\u00026g�G\u001b\u000b�ا6��m\u0005�A���\u0001=\u001e����\u001fNė\"�ޣ\u0000�I�b��Z]��\u0017�Y���\u001b�Z\b�n\u0007���\u0019j��h\u0016(RO�\u0016��\u0000q��X`�6@3Qr���Ŷ\u0016�'\u0015�\u0011A\u0011���\u000b[�l1.�^�\f$l�.�D;��s�j|Ү�^'#����v^l��F��1yGy\u0006Uݼ��6��%�=���RG$�#��%�\nYc�\u0017�V&\u0017r��З��H�e\u0002�\u0007�\u001c�\u0004�$��H��'%Ή�I�GC\u001fj8hQ���0�Ϯ�ÔGkd�����i������Aa�\fЀ��\u001b\u000f}�\u001e��9\u0014-*���\u0016�Y$�\b�a�\u001c�����\u001f�\b��^x�0����o�qC���@c)��\r1K�\u001aZw�E��\u001f\b�P�Q�tm��c�\"��/dB\bL-�X�yL?5\b\u0001��\u0001!N��A\u0018�\u000e|�i[�.b��W��;���XN�N\u0007\u001f�G~��\u0004G�6�-��<����?�����9i)'�\u000b�\rg.~��U1�����ۣg���|\u0007{��]�(/����P�E|�&��(\bG�L�\u0015�l��\u0004�'���i��Ի�_�\\\r6^��\u0010ld2�(shct�\bp\u0011�&�\u000fU\u0004�=�'g��oΟ3)\u0007\n��U��k�߹m���\rQ��D�1��\u0015\u0013�a$Ѡ7��^�\n|lWd�f$RL\t��l�7\u0010\u0002�z5b��-�\u0006?���\u0012K5�jccY�A;�\f��L�%�&�ܷ.\r*�OW\u0010�wGV������,z\u0006ڟ��x�Q\u0013���)��~��\r�j\u0006����\u0004/we\n>��'{�ْ�w�<�\u0002\u0013Vi[�!\u000e���I=%\u0013s-�;�`��x��㷱S�\u0000\u0019�]��\u0004O�\u0010_-�/�*3��\t\r�6\u0017�j��OJ^d��$�\u000f�\u001aiD!����Ɂo7�\\n\u00071 :�;\u000b�}Xg�%\u0006�j�c�ٜ��\u000f=�&�Yܟ���\u0017����\u001f�'��1\u0014j|o��'�~�\u0006O�n\u001a�\u0014m\u0015�\u0007�c���tG�\u0013U�2w��$�NoV[R�._�]#&��F:O\u001aO_w4\u001b��.H�Cwf\u001ccWO����)�\u001b&��A-BIŠ\u0014\u0013W\u000b\"�\u0019��A\u0016�\f���Lɧ^I��ّ8�\u001aG�\"�nCE�\u0010j\u000bTI\b�z�\u001c�\u0001\f�cT71e�V�F^Д�\t�\u0010��\u001a;u���\u0005��dK����%�\u0014�jL��\f\u0011x&��\u0012�~���\u001bZ2\u0016!i�vh=U\u001dxQ�\u0015��=�K��fу-�gwCߐ��A$�\r ��۷.���\f\u0016�Ao/'��7\u0001F;?\r�N�O҉�\u0019?���.�s�Vy\u000e\u0018!b��o\r\u0014\u0007��������9�h�;�\r��A{>�\"J6\u001c[��A�lP�{�qD52��R\u001en�bo�T��������i�[,�X>�/r��'�\u0000��c�.m>�\u0002Wq�Qk?\u001f8�8n��@�ʰ]�@g���\b�5O���Y>����NX7\u000e�\n�o\u00167�9�c�g\u0001�j�)�)� ��n>�ɠ��x\u00145k�\u0013����\u0010\f��rf9�do�%\u0002/��\u0004׈�\"�}�d��\fjHQJ�RUq��ҥr0�9:z�ם�\u0005��;�(�\n3(Lj�\u0007�v���V\n\u0005���0�\u0014�u�įMlw�\u000fn�R]�\u0019aO�{��\u0018�p�\u0007��&r�2�q�\u000f��7���q\u0012J{�\u0011}��K\u0004?7r�۟\u001a�i1\u0013L\f�\u0001o\ni<ˊf�\u0015e^my+��7\ry���5���\u0018\u0013Z\u0001?@��\u0012\u001c�����ڻ� \"s��\u0012��A5�\rH��۹d� !p\"��$�\u001du�xC\u0015���\u0019�}�Pg�aF�Q\u0007�M}��Y~��zy5sԓ\u0003�G����`oc�����E�S\u001f��m�\u001e�%��p�O�U�cٯ�\\l��ՙm�&��dF\f\u0013��@��kW�\"�A4�\rp���\"�F7`W�X�1?��'�J��Rt��m�\u001b�\nk1�^� �懢�X�h�dv0\u0007}��8��x\\.w��RH��\u000br-ٹC&���:-'f�EF�\u001e`�j���\u0012ߌ�G01L@�77���t�s�Z�MR%\u0002�Sv\u0004\b|���D%�X�E�Ё\bQATq�\rb\u0010Q��.��ꪊ\u0013\u000b�N\u00146\u0001��\nD�\u0016�\u000e, 4�z0s�00™���!fD�1�\u000e�ƀ�~2\nAo$�\u0006{2V[�o��\\k�b]���\u001a0�\n��#��#��/��\u0019\u001ai8�%5�ݗ��\u000f_ѹ����\u0016ҵ���*���*Q����[���\u001b*��,ґwX\u0015S�ki��\u0018\u0015��P��K�)��A��\r���}b�:7S9�Ti!�\u0010 j�Iݡ�-\"�t�s}i��5��C\"�f\u0013�Q�?\n������EN�kģԏ}�\t�Q�\u0016��M�y�\u0003+��ILN%�8r������m8�\n\u000bF'\u001c�.3Y��:��X��f�\u000bY���S\f\u0014��\n�c8��\u001bRs�����0\u0018�\u001bWDW,���\u000eh;��\u0015�Z\u000bW%a�Kx�1gd]T\u001b�\u0019�\u000b�ٱ2�j�u�8-�y��5��0!���ʦ���\u001f#X��\u0013�0b\f��rRR\u000e\u00186�\u001fJ�\u0013\u0001�-��@\u0007�i�L��\u001d\bo���\r2���%~MNP3�\r\t�T<�I���%!\"�QHś��v���U�}�j�\n9I#:+GI���@�稺����\u0004ء)�\"��T��6\u0000�\u0016�\u0004�=+�T\u0015]n�˖{��]�\u001f�����95h\u0019�\u0010����A�v*˱��s�\u001f͗��o|\u000b#��8����,����#-\u0012H�\u0001�2��K*�=\u001dǵB{]Z6�R�\r�>kߒx|\u000e\u0014Z�Q�\u000b��S�J]P��?�'Ӥw\u000b��T8>\u001f�������Y)⒵��)����`ߔާ\u0019�Ii\u0002�]B�A\u001a�\r���������]GJ�g\"�\u0001F\t���n\u0017\f�\b�52F<8g�a.�����9FR�|\u0007�$\u001d&�V7&�\b��l}\u001a(��fD���H!pz\u000f0�U\u0002�\r-\u000bș\fhzg�\u0015_���ƥP\u0018����7���٨�\u0002��\\����G�\u0018�+\u0010���\u0007^�\n@e羱�h�d��;X�\u001c�7�P��Oo�ן3Y��4���{���\u0013Aۅ\u0002)b��\u00147�n\u0012�#Z��}�/}\u0018��a߮\u001e�ws8��@9���dJ��H��,c�.pǏ\b6\u0011�4���|ޫ\r�\u0001�iB���\u0010\\P*�}\u000f\u00155�\b�@�\u0002�\u001b�E\u001aB\u000bK��)��\u0001���A\u000f�\r����\u0012}��9V��\u000b�$��Y�S�8\u0007����\u0006���G��\r$f�\u001b���F����\u001e�Z���^�Q<\f^=�\u0010R\u0001Ͳf�E��~!��c���MP�$�6۳i\u0005��8\u0010�Ӏ�M�Kڳ\u000b�I��S�T�<\n\u000e�\u001bMҵz�\t����\u000b�\u0013ӌ�\u001f�A\u0015�\rԀ�XЏ*S,�y\rF+�A���?�^š��‹�+\n�U�-E�|��z���ƶ\u001b�g��s4�%[Q=;�L�>C��>[\u0010�\u0001��\u0004fY��8�\u0007��\t�ٗF�^�o��_��AQbɈ�\t���;�֫�'znK�Zn�\u0005C\bLg臧��@@\u0015\u0004�wS�*�\u001c�w�\u0013V!/�[�]|��M;caϲ\u001f\"�Pѝ\f��q1r�EC��L�9=H8a��Q�dڴ\u0011�N\t6/�H�>*�z��-`ԉSp[.�\u001ci����P��!�!��ŀo\u000f\u001d���rhd�Wi\u001e\f�W\"��\u0004ҏ�\u0014���'D�\u0003�j�Û��nd\"\u001fGZ\n.�Gw����@ U!?_*�k\b\u000f��̔��\u0016\t�O�T~hu�E\u001e51�m͂��\n�@8�Z�N�������r�u4z)V%���\u0003\t.�J�b)R�uŔ�E<����P{3p�y���A���\f����(�D\u0004\u0004����\u000e2�\u0003\u0006��A\u0013�\u000e\u0010��L�v�\u001b\u0010��7�I�\u0003ׅ��?7T��n�p8 �昄��*�K�4\u001f��\\b�\u0010fdMO>!Y�������Sz�#����d�w\u0006v��y%\u0000O�9uX�~s�Ԁr�m�kE=��\u001ej��z]�\u001f�9+\u000b\u0017&�Wɓ9�N�P��\r��Y\u001c�/\u0011#�\u0015��z&\u000e��TнU�\u0005�\u0013ҷ��M�\t�\u001e pf\u000bR�\\\n��K ��\u0005(O9�HR�L��\b@�e���΁�D\u0019H���(_\u0018���\u0019���瘒ޘnN�'��B��#\u0011P[�\"\u0004�\u001fzr\tV��\u001f$�~\u001f�7�b?\u0015^�\u0001��\u000f�\u0011�2g�\u0012��A\u000f�\u000e$��L�\u000e7�\ti2��&+WZ\u0017Z��9&�yX4���M\"Q�>\u001d���./Z�\u0003�>��6�݇�kD�\u0013t��\u0015\u0000z���\u001b�\u0016�p�\u000b���xnuV�+�\r�0Ld��\f\\KA\b`+z`r\u0004\u001d\nm{\"ɿ�F3q�yB��\u000f2\u0004�KÁ9:\b�!\u0007�n��\u0000S�Cn\u0012�e�V�\u0014��?j\u001e��^ڞ\u0016ȏdl!�{\b\"�����\r`��5��k:� �(���.�Cؚ��/m��^�FKv���\u0011��\bڮ\u0013�A\u0014�\u000eL��MD�SK�B�K��|]�I|�A2�6�\u001dI�\u0018�:wˎp���e��(vx�15;:���r`�r����6<^��\b�\u0017\\�\u0011R��\u0017��WQL�R�v\u001f�X9d\r�\u001f���E\u001c\t�\u0015��W�d�b����=�;�|���`�@W枽\u0013\u0018\u000f�i�2R����A��\u0011;�A�y\u0011\u0010������O�K���\u00013T1\u0016|�:;�v�H��%�d4��M����\u0016�\u0007q�]�a�;�0�H�ˎ�@����p�\u0000�J܊{S\u0000�\nb\u0014�\u0003}�\b�����\t��\u0014P��f�P\u0010$�n��S��\u0018�B��8M��`S�@إ_\u001b�A*�\u000e`��/\u0011��qyP\u001b�����;j4\t)�|ܫ�c�u/3p�eZ�\f;�l���#T?\u001703fIx\u0013\u001b��P�\u000e�/\\\u0006��I\u0015W��x�\u0001W�u�n�Y\u000f���\u000f����%��z��S��\u0015\nQ���,\r�5\f��NBp \u0013�\u0000�Q[���y7x\u0007\u0007�����\u000b����\u0000��\f\u0001��Ƶ�qW\u0018}V\u001a�-ۛ�\u001c�ɓ�<��M�\u0000�e�g��\u0015םbbn��䐭�Í\u0011b��\u0004�\u0013��\u001d\u0018\u001b\u000f��\u0001�\u001a\r~�W��ھ\u0007b4]�\"���XM�LQV��]\t�\u0012X\u0010�}�\u0000`�V\u0006�Rk3-�I�4�\f-^�V��s��eJ\u0012���䬦�e�(\u0015��h�:(��r_lO�\u0007Rt\u0007Ԟ���JC9*�D��\tF+�%\t\u0019�\u0013��ߚ���6��bH\u0011\u000fx�\u001ex��4\u000e�X�\u001b\u0004j��q��\u0002=~}�����N��q�#\f�\u001b*��vtA�ۦ(�X\u000f\bPP)1dl���u�W#�Dp�CY�:���ht�|\n;�3�i�C�Z��)=,\u001b{�+i��I�ףA\u0013�\u000e���L��Oa�k:rd��&����\u0016�H@�?�{�h�;���'�́�\u0001ШR��\u00079I\u0007u�:�\u0000�\td\u0004ِ�Ąz�G�<:��{�B�F#\u0005U}o�\u0006\n �\\W_���\r�ݲ\u000e(}Q����DB\u0004]A�\u001c��l?�g�y���ϺG?�~8�wڴK�����b�ၒ�b���\u0011�� �\t �b��9X�9�(��r�>aP�06�$�z̸F�P\u0010붻M\\%�5|\u000fO\u0002��\u0003\u000b�\u001fSk�фP�!�kf\"B\u001b+�r\u0000�DQ@�]�xX�>9:n&eѨ��}BMW��\u0000n��\f���n��3��K��A\u001a�\u000eĀ�۷�'etk\u0011�[\u001fݛ\u001e›\\��j6[����Oخ�[��\u001ew�U\u000b\u0010V���%�)C�����t\u001d��hB��2B��OY\u0006öfe�c1̨�\u0005.��h\u0015�a�yFH|���a\f��{\u0019��\u0003\u0003��8�\u0001�\u001d��N��o~<�P|\r�:��\u0003��!�8ߎ���IF��A&J\u00190poG\u0000u��\u001f\u0005J����A\u0002���?\f�\u00011�b\u000f�z�\t�d#���b�I�g-��R4�ZJ9���gY�~5k_DӄZ\u0016vP\u0012'6/ Cga��\u000erLĶĥb҄�\t��m('����߽\fO��w\u0012R��oPw\u0003��[�:�\u0013�!��6�ik�A%�\u000e؀�L�����^vpl\u0000\u0000i�Vw\u0017��u\u0018��\u0004�;��R��\u000e�\u001c���W�;�r\u000fv�H_H}u(2�k\u000e�*f�|\u001b\u0018��(W�\u001b��\u001b���ӗO&\u001a<�����K�b�fW*�V��\u001d��L�g\rO{�(�\u001a��A�a���H�\u0017�y�H�3��>��<�n\u0007y�!¤]k�Q@��ޤ)���\u0018�@�A�ꛫ.y�Y���}��3�$ԆF2\u0004iG:�=�_\u0019�b�ɐ^����#�?t��W\u00041\u001bv��\u0007�\t��Ϳ\t�^Y6��}�$����L\u0019��)���w�**\u001aS\u0017��w-�\u0005&kp�њv������\bX��\b�te��8�<\u0011,��I�A\u001b�\u000e��M\u0012\n\u0019\u0002��j���\u0019����$\\����{1�$�.�_����]u�Fn}v�.���m\u0018\u0019\b\u000f\u0001�Z�\u000e\u0003��*de\u000b����\u000f X\\$�s^�NF���`\u0017�\u0012�:�\u001f��ԉe�k_XշPogx�\b����3�Н0:�m�n\u0010�R�T\u0013��ZĞ�\u000bVaw\u0017F�\u001f\u00148X_\u0010��cn�\u0001c;{`Hf�=\u000e�hM�K3c �\u0002k\u0015��\n\u0005��=x���fb\r=&�R��4ޚ\u001a�O��\u001f���\u001b��q�Ya��A\u001f�\u000f\u0000��L�\u0013|����P�>K��|~\u0015Km���q-b�7�u\u0017���~�녥�\"I���Ӊ�\u0002�Ī�\u0018�o�\u0002\bj�����3M�7#z�N.�D�^�f�\u0001�׮]3\"��P5���t\f�̌T\u0015_73�A`C��\u0017?�\u0005��G�/%,\u0012*v\u000fp\u0003��ڀ��.:)\u0000��l\u001a\u0014bXVj0r��}h\u001d@\u0001Y�\u000f�\u0003\u0015�3\b\u0019yЬ��89�,���?�ڸ�\u0015@\u0000ϴ%���|\u001f\rK�15\u000b��I�\u0003Lj�X\u0018�a\u001c��֒���X���CJ�`�w�˕�W\u0014\u0007�MR\u0003G��\b\u0016��L�A�;ι�&����\u0004�����S��\u0013����-t��A\u0015�\u000f\u0014��6QXO��͔���g�(ԇ�*T�+���M\u0015%.{8e\u0001��\u0014,�@�]���Gξ��_O�%�\n�<}���غq\u001b��\u00144�͑'�\u000etE�\u0015N\u0006\u0004�\"`'E��'\u0015\u0000\u001aS�\nm9ls\u0006�l�#�\u0015?�E\"�W�r�2|0��]�\u001an,�8�=�UD\u001a`T\u0018�\"�>c�j�qE|��<&�-��� �<�:�\u001b�>�\u0018��Xڽ\u0019���\b���\u001d��c\u0011rRݶw�J1�͔t\u0018\u000b���\u0001�KD{\u0019�(��ˢ\u0012���\u001c�S]�U��V0B\u0005/uD�D�~�>����)\u0017�\u0006\u0000��\f�I̩�\u0011�+�\u001bG���A\u0005�\u000f(��M \u0005F�e\u0005B��F�\u0006��&㠢�S)\r:\u0005?M��O\u000e=��k�\"��`�F�`���H\u001f%\u0006��ӏ\u0001x���hk\u0007�s�\r�e;��K`&2�Ad�E3�ЅV\nE\u0012����\u0019��R\u001dk��2��޽Z�r\u0014 �jE�,@���\r\u0003#�\tY%\u0019\u000f�����Z\t� H������8�k�\u000e\u000b6[\u0014\u0011+�#��\rԄ}\u0004���s�I�x�b�6�r���UI@���2j�\u0011��\u001f�D��aSKD[�Z��:M+�\u001f�\"ʾن���\u000b\u0014FG��C�EIZ.c�ީ��z�%S��C����@��\u000f<��1���&�\f\u0015�j��:��©<�\u001c~��P�Y�\u0003E��f.\r��{w\u001ce�\b\u0004�̦.\u0018��X��\u001a�\"�OkH����_���\nmV\u0004\nawGZ��X���D�R����_���RPm�Z�Ŵ�E;}\u0010�d�[o?�\u0006\u0016�sW�DE�[3&�s�X��`\\j!,1vW�*�q���\u0016X���K�\u0012'�^~n\t3���^���ȑ6�r�9)�Z\u001d/�@��\u000fP��L�8\u0000mg�@\u0010\u0001l�\u000e��O2\"(d�\u0010\u000f9I����\f�\u000b�8�ޛ��E��\u0012�ى��O��g��{�G�ߢ��'����\u0011���%;�Ĕxl����Wo�\u0000��tR�\b6���m�ce\\��B\u001a�Ȭ&$�y���\tՃ�(��\u000b��\u0012�\u0013\u0006\u0002\u001eC��Ϭ]�>�\u001b�3{��g�u�؟#\u0000�{�L�M\u0003��?s��'ԉ��`sW��9�O��\f\u0015�\u001b���N&�!a���5��U+Y�\u0007�I�v�\u0001\u0002�� �\u0018�\u001ew�n��STg�\u001f����,\u0012\u0007*�\u001f�@��\u000fd��۸˯\u0005DY'�M�6Y�ψc��0\u0000�^P��(\u0005��J\u000f��\"-�I�0 i��\u0003��a�n�\fw_u�c��k\f�@U\b\"���3�j3S����\u0005�V�j芮�;�\u000e՚\u0004��\t��\u0015Ѽ\f*>5��\u001d�F���\u0015��p�\u0002�f�'ᡔ�N]��ёT�} �(<�\b�\u0003\u001af�\r�N�䞪�\u0011��X4�\"�Ԣ����\u0016d؊\u001d��'\u0005\u001b��R\u0002ѲEK���\u001a��c��N\u0002�缐��R �c�p\f�XU\u0015�\u001e����'��\b��(\\��v#��Ɓ\u0017�AD�\u000fx��|�!b\u0013d��*E�uF]��KN��x_�\u0007D��\u0007\u0018݃�t�xd�\u001dkѕ�\u0017{>��0��\u000e'��>~7\u0003�lr��\u0019ᜒ����\u001f#�\u001bR���\u0000W?SA�jN5e=i�\u000281�]��i@6R���w%a>q\u0016�F���\u0013�*HF���M�0�EW'�\u0000�Γ�9��|I�A+\u0000�ζV���br��\u0010c���qQy��4z�6׽��/`���\u0012���\u001d��\u0013��`�\u0019�Om$#�W�\u00060�p�+ͱ�S\u001cQ-ǽy�볼��w\b\u001c�\t�B3\u001c�<��z6\u0012�.X8Ʈd7L���M9eP��\u0012�5W�P�\u000f[P\u0018�\u0004\u0010��7�\u0004\u0011һ�ׄ�2\u0002\u001f\u000f=�IX����\u0016JN�\u0016\u0003䦯�ٴ\u0012�C��)�m�I�AL�\u000f����-pVS\u000b��=�\u001d8�[��`\u0004\u001b��\rv\u0015E��m3k�D��g�a�R\u0017L)��k\"\u0013�?���j�z@�5\u0001�\\f�G�mW��\nWP�\u001a>���V\u0002�!�h�8!\"W_>;��$X��\fDʃ��*�6r�\u0006��sѲ\u0010\u0010/X��E����{���\n\"v#��0��\u001fԌ3n.9X�k�����\u001e1�w\u000fr�uڑ\u001c���*[������1��\u0001.\n�\r�L�\u0012�����.$���.��\u001b\u0005'\u0004(yc�XF���Y�?\u0016\u000b���X�\n�,�r\u0015�T\\\f7.d[\u001ecp4�,+FЭL\u0014�:�n�D3�\u0019L������F/f�M\u0000\u0003`\u0014�_�\u000e��'��%�DM�\u0007��8��i���\u000ef�*\u000b�\u001a��G��É\u0006�k_\u0012�A\u0003�\u000f����\u0004\u000b�5��9N��J�8���jk\"��ݐ��ᲊO��?\u0017�9��\u0015n\b�}]�y����P|\u000b&&�1kD\u001e񦊭X��CN���C�S\u000ez\u001a�}Su����ԅj�w\u0001!�\u0013ؕ[\u0012U��x\u0018$+�\u0013��܊�X#M�Ȑ\u001f���_2h��K_\f��R����\nSM3\\�D���\\��^��]\u0018(\u00041�� �L��\u0014��\b(�L��\u0005w\b�K\u0006\u0012��\r)5\u001dj�`C�\u0001�d�88zxs�\u001c�d�\u001f�ǎ�k��#;��`�y����ϰ��ui��[߆qa=X��{Q�@��\u000f����/%5�/\u00017��\u0000\u001f�?������vMvEz\u001bd\u0017����o��E\u0003$��\u0004\u0006��S5\t��\u0000D�Ye��&�y���Q�2%���W�<�\u0011O����\u0001]?����\u000b�>e���H�r��5�Y\n�Y�l}~�\u0004ȑ��6\u001an�\u000b%QV�|�)�c�%_�e�\u001b�\u0000B�\u001a�A;)ńE�4%��\u0018\u0018�Beu\u001c��r-�V��CA\u001cOHg�{�%MSб�\u001b�\u0006E\u0013�|��\u001f\r���f�\u0012�J��q&�P#��\u001c>��|A�\u0016�;�6N|ĤH�$\u000b@b�Q\u001a�7\u0007�@��\u000fȀ�M1퐮\u0019\u0001f���\u001f�g�h���� �q��Aw�-�V\u0003���R\u001d\u0005:��)��x��,�ױ�}`C��P�\u0012W\u0013�\u0003�����7�KY�g��`���b\bm4ǍT|/�q�ʒN���/i8\u001e'j���&_F\u0000\f�K�j�\tC�~��8]��M��+�4ܥ\u0015\u0014}�ra��4�:\u0000\u000foIu��[r�@�54a��/�\u0012��\u001f���VR�K~&U�>w�H\u0001cnl��؏y&�� [g:1#���s�3_�Iu�\tV,|\u0017\u0017EQ����l�C���E_�kT�Dk]����7�A\u001b�\u000f܀�L�ox���(@�r\u0015��\n̥�7\n���\u0016�Lj�\u0006����g\u0019��=}���P��bu���n�����B��@R�ʄ�\b\u0016�����GΑ~\u0006\u0015\u001b8���4�$�\u00151�]y��ȑ8e\u0005}�Ւ�;[B�\u0004Cbg\u001c�#�~I\u0001�Gr�\b��\u0015#\u0019Ð\u00156�\u0017�f$�\u0012��r�KeěTFw��C5K�D��P�v7t\u0005\r���?�S%��\r*�qHגҀ��:\u0015�\u001f��\b�ԬL���*6�1�o^���荇 ͢=�B��c��\u0013�fyRi}hPW�EIvI�ʲ*�������x/\u001b��\u000f�g��F\u001c{K��3�%�[�A\u000f�\u000f���X�\u0002���0�V�gJ=�&�6\u0018Nќ�\u0013\f+Hq�M��쇇\u0003&���_�R�g�Ldb�&\u000eW��\u0014_��\u0004�J\u001b}�v\u0016�ƂaK��o_�\u0002U�bL���=3K�����%)\u001a��(�D���\u000f ��\r?� \\��b��2�Z2)��1fs�˞1`8��S.�F=�fm�iR\rƐM��ģ�\u001b��j�\\mc�,���\u0010�\u001b#o\u000e�[M�L>!�g$d�~��~��\f\u0002�cugW�����ʂk��\frۜ7�����t�4b\f���D\u0016T�6d��\u0002�M�ە��~��/ڟ>��M\u0013\u0005C��'\u0013\u0015��5���~�.w�w�?Ϛ��B�Z��M2��n7�r1w �\b�\u001c\u001a-\u0000d�qU�\u000fX\u0005e.\n\u000f�{��x���\u001aJ�Lo���(�B�\u001c������7��\u0002��W��Ná�\u001a�k�%;\\��cgGCiþg��:�Xz�����V=`W\u001e�p\u001f׷|@�b[�-�JP2--q��\u0007F~rI�%/�A�|� �y\u001b�kL�o�P�XV\u0018�LJy�Z]���$�\u0012�F�vzby��7���yk���\u0010�J�������I�v�A\u0016�\u0010T���\u0016��˖E^ɥn�L�'&�W\n�f��\u001f�y�D5��\n��y\u0003�����M^\u0016-�pg�_�V�@`\tC�o�Q�;\"w�j����l�+�P���StE1��9�\u0003�\"�_k��Ǡ\"(�x�\u00142�i���\u001d!{F�\u0006\u001eI��A����+j��L���N\u0016����r\u001f��W�-T\t��v��\u001b�\u0010�x�\u0013.�K\u0014#O\u0011'�1����o9�n���q�^^��\u0016C4I�\u001f\u001c����\u0006π4��B��O�\u001c\t���X���1.�\u0010�\u0011\u001e�=�򩥰�\"=���������m\u0012ȡ\u001dc{���p�M;\u0012\u0006 +�-��k�2��A7�\u0010h��L�R\u000f�\u0006��%�\u0018\u000eF�]�����\u001e/_â��E!`�\u001e\u0016�'R�L�\u0013�1��\u0012���\u0017<��C�%ڙ��\u000e\u0002�FU\u0003�'��A��ko���\r(��+|i�@>�6\u001c�zj�U�5^d�[�l��9\u000br�;Z%�Q�j\u0019\u0000��\u000b\u000b�K㍊�\u0019v\b�\n��\f$u\u001f��\u0014���:c7tD\u0011�{���P�]�BkJEWc[\u0015;}\u0010���)ދ%2�8\u0011�ц�7��e�{3\u0005�)�\b9��\u001d��E\u000e\r��W�\u0014��S�����\u0003���M?�~�;��\u0014J�A\u0010�G\u0015�G��fV媘ǸO鯽|�R�\u001d~0��}#Jtt�X�Ý~\u0012 �3�=�\"�~d\u00022[*lymඇR�'�-�A\u001e�\u0010|����\u0019������W5�j{�6�h�|�\u001c[��}�g����1n�^����f�붻�]�i67�����Q��eƞ�(�:\u001bx��\u0002�~�%$���t�\u0018\u001aO�?8w0@\u0000��!�H\u0017Ǚ��\u0003�k<��/cd����d|e��\u0012_C5C-u\u001fs@k\u000f�)�\bAⲵ\u0013��\u0013�T\u001b�d\u0003��\t(2����\u0010�ݻ2|Y&�\u0002O�T۪Q^�#��2�B\u0000\u0007{F�\u0000/`��\f�\u000fR$��8O��9L��>*�'����\f(^W|�\u001d����`��\u0016��b�b�\u0007;d&\u0019��r���/�fjnQ�\u0013��'��!��\u001c\u000b9\u0013/r\u001bo�\u0004ۣA\u0010�\u0010���L���?/^/&��t\u000bN�x|O�J��,�K��\u0001�@�\u000fk4<�\u0013SH\u0012�\u0006���\u001b��\u000b\u001fh�\u000e4�r�ш�Z�ϋ�v�o��S\u001a=>۶Z�f�[ļ0�\u0016�^+!\u0014?5�\u0002/���\bW���M����6wt���d\u0017�h��t\u0004%�ۄ6���Fz?�n�tG+�%�g���g�wK\u0018)��\u0015Q���ռC�p��DT\u001c�M ����\u0013riFR�p�\u0006�H!dd\u001a�\u001a5���n8�e��S\\\u001a�\b�Q�&U\u0015ۙu�3,�������4�(�\u000f�\fzZҟ�Cc\u001fMё�鉵9�,�%L7���'\rJ�A\u001e�\u0010���L�*����\u000b�װ\u0007<��z�z�'��Z��h\f�t<\u0005�6~\u001fbV.��l\u001d\u0015�Һ���\u001cf\u001c:�V�\u00113\u0004�����h!��F@\u0006�|C���71��\u0003B\t{���>��4�|u�\u001foBB�iIV�ѵ�\u0006m�q\u0011�E�M-/\u0014�ݒPѾ\u0015�uLw��O��/>�Z��m�� 9L.�f1|099G0�p�Zs���f\fw:6���rs�\u0012 �s�@��Pnݫ\u0013e\\WH���Pj\u0015<\u000b���\t$�j�[����1]\u0019G_J��mAN��~\\t�Ež�>�]dԯwO�\"\u001em��t\u0000\b�g�P\u001d�y@�k7��M\u000fa�d�A*�\u0010���M{j��\u000fW\u0005���\u001a�\u001b?S\u0000�\u0003���D\u0002��H�f̩�~+����<%�h��h\u0000~�n����\b�>5{y��\b�zqM�~�\u0016�x�ю�͉�\u0019k/\u0000��怸�j�\u0001e�-�ߗ���:��gЉ��A��O?�FL�����\bD\u0003f�&\f���wW��:�����\u001e�]���آu�2��i���\u001cs�\u0016�~�\u001c�� ��\u000e�^\u0003ޙ��D%�\"F��\u000e���4d�o\u0001\bӛ7x\f�\u0018�N�\u0011\u000fE��\u0019�U��*QW�n[��7-F �4.�ncw��|6�rXCh+���+�#�!/6d���ˉQ�\u001d\n��4����6�xٲZp��2����Rm�A\u001a�\u0010̀�L�NVh�e�\u0011�8%x\u000e��!@A�\u0017;�\u001d\u0018\u001d0���\u000f��׿�n�m���-��B\u001b,��\u0018�\u0019a���=\u0007��l��o\u0003�Ś�F'/�wHh���|��\u0015\u0012=\u0015Nsd\u0016�\bo�'j$lTi̝\u0011�pt�֩�\u0011u��\u0003>��Y3�e�\u0003����\u0004Ac���\u00015����\t!I�A\u001cR�C;��\u0007#��Ã9P\u001e6;����NB�_@{}���pN��Tu�r�\u001bQKr��<^�0��\u0016\u001eJn\u0013�\u000f\u0004J1���\u001fɍy�X����.������Kp��T�&Af�\u001c\u001a7\n\\��E?-�+\u001e�:+|^\u0011�O$\u000b���}#�`�@�\u0004��A*�\u0011\u001c��Mz,=j\u001c*\u001c�\f\u0012@����:N�V[M�x\u0019�8tt�\u0010KS���kǦ�\u0016\u0011R��캓!e#U�GbGH\u000e\u000b�GKUV\u0007=�C �Oe��r\u0012�l�L�w�\u0018Ӷni�2>nʒ[�+:�\u0001*�c����?�>\u0015��J�a�\u0004ֹ\u0018��Y\r���À�u�#�\u0013+N�\u001c@.�k�[�X��7�_�P\u000e�;@�3��_�p�\u0014\u001e���\u001d\bxf��)~\\�x�^\"ا�\u001a\r��|�^�3`����'юa$�s\u0006�\f��I}\u000f,Ɂ\u0005��x�����x\u0014\u0012�?��\u0006��:\u0017&Eg�s\u0002\u0010;\u0016m,Ok~��>/\u0019��\u0013��1u�T��8E8��TI�[�3�2v�A �\u00110��M-w꺰�q���\u0006\u0004\u0011�@Uj��J�%���o��\r�aBq\u0000T�^�����B\u0011ɴ\u0019\u0003�l)h,TP~t��T\u0001���q�rHю�rw��:��gQ����N{�<�2`Q�ks\u0003NL�N�<�ۉ-\u0018��:w�l\u0011�-�Y��2\u0000��\u0007Nl��3J�\u001c��W�cO�\u000bSP�>�zg@�>�����X��1R#.rR�'�P\u000e�'&��0�\u0004��|mq�{��Ԇq\u0017��8�D�\b���L\u0010�\r�yQ�\u0015�h\u001f\u0014۳�K4��o�ͣ����ҕ�(��\u0007]�d�\u0004:�w����]�+�\u0013L���d�\u001b\u0001A��\u0000\u0012�\u001d�\u001d�\u0000\u0000S����$�A0�\u0011D���\u001d��1��P�)@�\u001aRA��\fz���\u0003�1\u0004�M\u0004��^!���\u0002\b\u0019��-�3�Z��|�\u001e,wu�C�u4�l\\\u000e@f�c\b�\u001f\u0010kc��\u000b?�\u0017�����m \u00059aPg٥��t�\u0013���3,\u000bw2`��hè;��u�id�U�y\u0015��Gu�\t�x\u0013\u001b[�;Wz������Z�#\u001e��>zgC����,m�Y��\n���%^FbX�_!�r��7�)\u001enl6xm�PWv�8�e�\u0002K��_)���%�uC|�υ�ܾɅ܁=c;\u0012\r\u0002�\u000bu�� ��y.\nH�5bu5~?>��υ�,�0mc���/K��|(�װ\u0013\u000eK�QvV�!\u001dAo�\u0013�\u001a��I?\u0004�ԣA8�\u0011X��L�P\n\"q�\u0001�[��PbhY\u0000���UЪ.�#\u001f\\�mΨ��{4�\t\f�\f���T\"l'�t�؁(��R|���5;�x�?\u0014�\u0016�'�y�lDq���B�M��g�\"\u0002\u00074,\u0017��)���P�$��F5�\u0010q�\u0003�\u0006��l�G3�\u0017��\u0000ɼG�\u0014;��3�ү��T|��ǁЏSArW�\u001aB�,�\u0019��j����\u000f�\u000f�6�AB�\u0011l��۷Эͨ�|\t���a~�\u001dM�\u001d�BZ\u001b�f�h\u001f���Ht?z#Մ5��D�kx��`���T���NɈ=9���o2V��bq$fG�`9g�N�AM��|�\u001cQ\u001a\u0002\u0015��\u0007�\u0011��{�\u0015 ���\u0000+w�P\u0002���Q\u001ea}\u0017:�[��{�\u0000\u000e{����~\\x\"yC,��(�:�\u0012�T���\u001e�\u000bG�\u0000��|L\t2\u0017c�\u001fO�^\u000e\tIx�'��\"�;�K�l|T%?�pnA����T�aX�����j���՟K�AF����\u001e��i�\u0010��w�(��䧗.���9�F�\u001c�\u0004\u0013��]f����3�ҊA\u0013�G�P\u0013��D\u001fI;\\1B\u0003��\u000f\r�\u0011�_̓�Ic��g8~���\u0006�A/��s���\nm�BP�\u0011���}b��XAW��ĕ�����)�B)j,��$$oBE�nƷVV�Gm�\u001e׾{؃��C\b�™�٦!�\u0004>gh��\u0017\n{�b�8(�[\u0019h5�+�\t��Z�&sɈt��=���7jS�3��͖)DKȖ���n���\u001b��\u001e\u0017\u0006�\u0010��C��7k��\u001d\u001a\u001e�_4~t\u001av��s{5KI�Ei4xLO>\f�n��\u001f�\u0014ͧ��S�\u0010\\]��IU�lA739N���\u001e\u0007ٔ��X�\u0006?\u0002�s���ڝ�j��B\u001ba��\u001c!�-@�\u0019xϠ��w��R\u0015�ɫ�E��Ğ۰\u0017�l�5\u001e}����=ˈ\u0000\u0000\u0000\u0000\u0006����׾���\u0005xM�6�rt��s��<�\r_�A|��Iv��h?���*0�Ĉ���\tJ�\u0012h�\u0011�Zֈ%+\u0000�\u0010�\u001b�\u0017v�i\r�Ӽ=�AI��\u001b��$�L��B\u0002�Agt}�d�\u0017�\u000b�2\n�\u00054i2C;��H\u001d۵\u0011�\u0002�x�W���kȧ�ܻI����LϾ�D��X�ۭ%�uK=�E���L���ɀ�\"s�lG%Z2�\t;-_`3���1?<�������G\u0011g��������\"��?���zLy��~\u0000*�${\u0000�\u0014~6m�\u0012ѐF�����\u0013pm��7\u0006�8\u0015F���>�h�)i\u0003��\u000e�\u0015E�vΙ%(�@��\"ՆH\u001c\u0016�7y\u0014jf�OT�E\u001db\u0016y�'�-�AT�\u0011����m��-��_�6v�S���\u0019Q�(��<��*�UH,d\u000f���;�~��e��h9��\"0YyH���b�C�Tq��\u0018��e�F�[ӕ�\u000b�#��/�q�5j����O]4Ô<�V5��T�� �,+X�\u0011�\fH@�p���E��\f}U[��jV��\u0006[���\u001cU��\u0016��\u0004\u0018\u0005�Y�j��`��=�dlk����\u001201س�Ǯ��b.]6��r)�S�B�W��ɛ;�9�\u0016*C.��N}yb��{\u0002~�\u0018�G\u0017�c�K�\u0017�,\nVإpl�9YB��lo��;\f5\"M�d\rW�:q�\f�\u0000�|\u0019H���LJ\n�s�\u001d�\u000e�RS�@����<��\u0003\b�8\\�f\u0017�\u000f��*�kc��2��WX�ޞ�6�\u0010\u0018�1E�\u0016�ңA\u000e�\u0011����v�9��)���y\u001b�a\u001a\u0006_\u0000I##�+�B\r>�%\u0007�U�P�u�a���4��T*\u0017�D��Dg��`\u0005Q�ZI��Z2�\rW����C꯫���D\u0015Z*�X\u001c��ە-?M�O˼�_�����;��}f�~�;9S�\u0007���\u0016ˡh��r�\u0014\\ϡ���h��\"J�\u0003�'�s���{/b��bҜ\u0006tb\u0012֙$��Γ�`�Mk�o���F�5d�wv)A�>��\u000e�7\b���[=��^YT�)>�:U\bb>-e�\u001e��m�̶SgL\u0000��C\u0010��{\u0014\u0016f�\u0000�E\u0013H�\u0007�\u0000�W���\u0005s�3꾩P�A\u0003�\u0011����mA�kp��z�>˄V;��B\\�߅�\b-\u0016ՇUI��eu3��\r�|����(v㱯����\u0016�\u0003��f՜Zc��T\u0017� v\u0013\u0012{ȲB3\b��ڭ��\u001a�^\u0011�0�rN�7+\r{Tا��\u0007\u0007_��̖\u0018\u001e\r��_�!�F�{�j�?�\u0001�Xc.<7T����\u0010��\u0000��a��=-\u0014�3,� gl��6���\u001d�ڂw\u0001T}E��\u0016��7$���2��\u000bF�8���<\u0019\u0011��k}�-+a\u000bm\u0007\u0019���P��&c3�+)1zw�����,s�'�6�)$�Y\u0003�\u0018b�_'�P�A)�\u0011Ѐ����\fZ���fگ]��7��\u0007$\u0017��՘�E\u001c)\tBM\b�č\\�%�\u0011ݱ\u001c�-T�ߪ.�(i�\u0002�.y���y�-\u0001��\u0010\u0005đ/0\n-V!rA��q/�����//�3\u0004��\u001f]�ܽ�\u0013���I#\u0006���Ke\u000b\u0015s攩(�\u001cH\u0016�z��ڣ�o2��\u000e껮>ۤ)�\u0012�z>H\\r�)~�,9��)`��E/\u0011���2�\u000f����l�_%���s�甉\u0012�D��N\u0011b�{Ko\u001f2`,����\u0007���e���g�@\u001eW\u000fA\f��+�Y\u0019��\u0014����\u0016Gp�Q�Ο���\u000bG��\u0016��D\tըn/� \f$�\fk��\u0015\u001fV����\u000f\u0004\u0011�#��\u0015�УA6�\u0011���m;���x̹\u001bx�����~\u000e \f�\u001a�T=�ؖ<,J0���� U\u0018ƣ�\f�\u0016��|-�������X\u0005�\b�\fY�\n��ܴ\\�^\u000f�W��=<\u001eN+8n��\nr`I��\u0013�=�o\b:ԇ�(\u0018?�[\u001c�/��5�\u0001Q�X7�6ĉ���}X���\r�H/vV�EG-\u0013�L�RF\u0010�9z~\rg,���`2�C�m���\u0012,���rn\u000e�I�jշ�U�)X��\u001eJ�V�C�P��ʓ�y^�C��0�[�\u001a'�\u0004D !����^\u0015ē���aZ��b\\��Z\u0015�K\u001d\u0012e5\u001cG\fȌ��\u0019�4[�J`*��и��j�O�\u0004�2\u0002D:�\u0010Nw{�\u0013�\u0015𲨚i�|X� ���0�A/�\u0011����g\u000f�K�\u0007C�\u001a��a���\u0011�6�S��\u0012�\u0015��-��!g�w�pZK���&6���\fZ��:|�C��.@+�ՖB��\u0014W�\u0005��p�D��R$?�q\u001c���yD��\u001d\t*����^\fހ��:��i�h\u00051\u0001�̊�H\u0003�K\u0016q�\u0003�K�\u0011Q�蒻a%-��ͩ��כ@$���3CRƹ�Q�`H�~�\u0016���KB!�\u001b\u0018��iۏ�ߘ�\u0018su=GX����m5�K�\r)\u0004r��Qr�\u000b\u0007ֻ��������H\u001f���^���:�)x��\u0003$Ƶ\u001d\u0013SG\u0005\u0018\f\u0018L�!����\u0018�N�si�c�($Jխ�\u0019�\u001e��\u001aa��\u0013uE���k6�2�7�!>�\t��AO�\u0012\f���m�N�\u0002!\f\nR�\u001d\u0007ud\nveQ�\u0004\u0016\u0014Xl�P̌Z��^��~V��/��\u001c{Gп�����KUc\u0012\u000e��;��ne���\u001a\u001aXp\u001f�G�\u0003*,�V��9\u0018��^�-�Ѥ�%�m���2�m(\u0019�\u0016!��{Ax�}�P\u0001a�ձӤ��&0���U�E\f�H��\u0017�\u0012툒P;\u0019\t l\u0002��\u0011\u001a�-�a��5\u000b�Jo�yH�O;��������Y��.\"n��\u001c~�^��i��\u0013� PL\\\u0001\u001e�\u0006��fqdɬ���-?E\tl�/�t(�\u0005>�\u0011�\t�e�v�Zs\u0004F����-\u000f\u0005H��9\u0005���\u001c�h\u001b\u0018�[�\b0��^�S7\u0002\u0015�y�Ql�W��e�uʺG?�\u001f�Z��E��\u001b�\u0001�\u001b��FTz�mn�}��\u0013¶��W.��g~\u000b�\u0002��ά\r�\u0001�S��Բz�z�\u0016w����n������:\u0010K0\u0013���~�\u001d\u0011�\u0004\u0002��\r����kT�Mnc�.����Ae���3��w���U\u0004\u0017J:��w;0�AD�\u00124��M\u001b\u0004�d\u0016P\u001f���/z'�f�4O�\u000e\u000f%�\\�IB��wo>��K�M\u0016Mc�X�\u0007��\u001b�9�w��\u0002s&\u0016|��\n�R��&��+�ހ�@'�.%��7��杁;b/D��\"\u0013\\��1\u0000=��R\u0006�\u0013m�����ޒ\n5w\u0015/�_\u0010r?\u0012&��ˁ\u001d���q<\u000fx�9��q�J�;��y,z�-6�B�@;_ǕJD\u0000��$!]��h�5%\u0014J'�ad��v�t�\u0002�l�m9�Ν�œ��\fl>�_0ȉ�&�Y�b���\u0017IMM��Tv>�\u0019d��l\f��1��I\u0000\f��1�%F�ܫHP�{M\u000f�*�Ĩ-\u001a��J^o�V�{)٣�\u001a\u001a\u0000�/EX�+��Z����\u001d�2V$��z�G��N������A;�\u0012H���ؖ�8\u001d��5H�\u000e�_�_���ϕ�\u001d�P�c�M�W�7k�E��\u001f��U��M�-�∺�]�Yt�����Vؓ,��aGG���ц�ӹ��_z�\u0014�|z`�\u0001��\u001e��\u001d.A}eȢ��4E�()f>C�Z�QHa���L\u00032z&/~ExM뒣k⁥�\"o1\u0005�\u0000e#D@\u0001�\u0007��m!�X\u0004����u��\u0002qˉ\u00154��.e�J��\u0006�͎�\u0012grɋ�){��D��%\u0013�<�\u000b-I��$8��\n��\u001c����TkJ��g͢��@��(\u0003VN�)�s��>\rg{��m?�'۲\"�Uj]=��l_;�3\u0004\u0000��@�U�\u0018eS���>ˠ����\u000b�H\t=��\u001b����A��\u0012\\����\u0005��8�B�\u0000��9��\\A���\u000fv\u000b\b��:X�����}U!�o���~s>�\u0001�\u001d�¬`9L��2��=�,\u0016/�iǮ�㟀��\u0001�r*\u0016)�%�q=��\u0005�1�$�������\u000b��\nʼn�\u0002�~E&�5�3ַtZ3D���]\u0012�##�'4��ʴ�\u0012\u001c�#e�+��\u0002ޢ��*�:�#�;�h�U�dpn� \u000b\u0006|�\u0019��DW���d��>�a�{�C\u0010R+���ϖ�\u0007�\u001f\nV���iQ\u001d�\u0017�H+\u00029D�\u0018���K-�жy�\b)�\u0018�c�AԘ����]\n&��f�F�m�\u001d���QA�&³�'A�`����\n�\u0005Z�n��Wv��\u001ff�\u001fx4\u000e�Ux\u001f\\���HgP4\f�R�2J�J�u�5e\u0000�\u001b��\u001b���p\u0019Vu�?�ї��|��+#h�Uք��:�\u0006�p�s\u000b��\u0014���\u0016�M{\u0006�\u0004�I|р\u001d�5!_ \u0000�\u0016���4|��+�{V@(\u0018��!�F�����I~\r\u0016�zq����\u0001%t��A��\u0012p��}b��5\u0004�\u000b\u0012~���}�؃+��cj;۹iR·�%��\u00132�~]֙��'�\u0013��L���2�\f\u00114�E\u001fnBC�!��\u000b\rO�@Ͱo�i&�T\u000b_�~`\u0014\u0017�쐤��ˬ�?-E\n��W����'�/z�s��Y~���\u0012Y�\u000f�PR�E��\u0011j\b�M\u0013a��~��\u001b\u0005k�;��\u0011�\u0005\u0017V\u001b�s���NR\u001eg\u001f�P�(\u000f�\u0002�̥V\u0013@QU_\u0017ª����\u0013�˓���L/\u001f\u001c\u001a\n��~��t4�5�b���z�\u0005}\n�m\u000e\u00107�\u001f�\b���$_8�B�Y\u001f;[��}���\"���\b�I[�z?l��ա�!�o \u0015Z4_a��V���h{��\u001bS�P\u0007ΐ}3J�+u�Ʈ���5kY\\��{\u000e^���B��xd�.\\f�Yn�妈�D�.�!nܞT\u000e�\u0006���\u0002W��w�L\u0017\t���ДJ��Q���\u000f�1S\t�\u0013��ҕ��-\u0003;�g�y��Q�\u00131�D�c�-\u000b^\u0014�V�t�\u0019Ǘ�RD�T�����ӮI]�@yJ� ���\u0017>�+V�\u0014@-5�CԞ���tr\n��\b\fF:J�\u0018���hd��[Oc�\"e �@\u0004��A݁\u0012����\rS�\n�$�R-�\u0014����6.i�= G����>�uC\u0012�('&�f4�m�]��&���N�28?����`�ȿ��D�p!�0f��\u001e\"�G�1d���g�RM5��[��d��z\u0007X�y����S��\t�Y�#�ܼ�]K'v_�Ƿ=��v�?ͻ\u0018�����h�\u000bл\u000ez)?�]����5�\u0011���4�����\fy[[�<݁a�k��̀v�h�h|�I9��y\\+�#�eA��\u0000>9\u001cӬ&/.���]�\u0003�,k/�ZW5�d\u00159=�~�e����2C\u000b���2���x�\u0019 �:�œ��\u0016\u0002��N���S4}w=���?D����]�~ҫD�\u0003���0|F��6cSBy����Go�{a6�Ȗ5���X���r�56^ϊ8���+ߎcR;\u000f�VK\u001cj\u001b��q��à��0b�\u001d�Ʈ�L\u0015א�u\u000eAMs�و�\u0017���)\u0007�\u0012�N�\u000b�΅e_Y�k�\\|)�{�縫��J�c\ntn��\u0011F�(�H����(\u001e\u001a�U\u0018��\u0017\b�\"��އy3aD�rjf0�\u0002��prңAS�\u0012���. �.�T鬵�a�\\���\u001fgA�#�\u0005�=�o����\u001c�\u0006l�\u0011�\r�\t�p\r\u0013��G\u0003��ݢF���U|\u0003��DE@�����N\\�@�+R_zRl���Þ.�\u0019�4��3��K\u0007��'\u001a�א�\u0002K#���tT����Pថ\u0014�Q�7t{�\u001d0��\u00109'k��\u0002̢XY�h00����+��,\u00168'��v��<�0��s1�H�+N����2\u001fuL��7\u001cؒS���T��D\u0015��\b*\u0014U���o'�\b���B�t\u000fOϩ\"�\u0004�/N\u0014\u0013JB��͆BV�?j\t\u0016��\u0014�_�ڼ�J��j��A\u0013=\u0001���� �v޳�v7\u0006=\u0006\r�4.Bջڜ:\u000e*!��qK�(e�h���������\u000b��M�W����6̒\u0007m������A\"�\u0012���I��\u0013\u0005Њ�v�A��!��`\u0013�]\u001f�&��\fwgv��\u0003�\u0011��y�.�Q+��@5\u0002��\n�#�T\u0013\u001d�4�\u0004�\u0015�}�\\�ޗ\u0012\u000e�>n��\n8��0��B2�ѧ\u001cƆj�\u0011���l����>f.\u001a��+�O\n��\u0015L�c;^�9�\u001a�\n��s�?�*7P�:\u0016��\u0016\u0005ű��й܋R�ŷ\u001a?Qp|�\u0016�\u0011���\u0014�$�T[GxǪ`\u0002\u001av����:��\u0017����\u000e�QN$\r�3\u00170d��!�'N\u000f�j\u0012\n\u0013�b3�]���#\u001c�d�\u0007�=��j\u0001\fi�X�\u0016�-�\u0015'\u0012\u0006v�?�sZ�\u00168-��%�\u0015�4�B\u0013��\boNc�k��A2�\u0012Ԁ��\u0017Y�QH�*���V,�~��Dh< ԛ�\u001f\u000e�l��yB��(�0����B�'\u0011�����֖�\u0013�\u0016���~|���L��N\u0000\bf�\u000e\rY^�\u0007ѐ3�~H��\u000f�y��'�\u001f����B����Z���Ҷ�H[�%��,f��\ns\u0000Jd#N�L���J�a���B=�\b2GY'���􊎧,� r%��lK��*�`s��\u0007�8\u0010x�\u0007%Z�\u0005T?:�Al�\u000e?�\u0016ףA��\u0012�����oDfe�y���X1�wT�����j\u00131��N\u0006ɗpw^���{=�����𑰺=QE\u0002�na�\u001e݆d�2��\u001a�0\u0005�u��lv�i�\u001f��уS\u0006Ǚ�QJ�\u0017:\u000b~#/� �\u0013�w\u0014��\u001e\u0014\\VE�!�՛�~X���0�#Q�\u0010���ic�J�)�w�|h�\u0017\u0002z�\b֠�\u0002��蹪@�+��o z�\b��A�0�c���`L\u0002��Ku��4D��r,�C\u0007�^m��\u0010��t�Q�t\u0002#:\u0001�H�A ��6U1\u0018t\u0006�x��\u0019���\u000f��mX�e�M/@\u0011�_|�k�H�\n�W����*��q27�Uv�\u0010�ٴ+�M���~X�q@�[�:k�ߣA��\u0012���/<\"U\u0002�t����.�V*$R��>\u0014-�0��DI~�\r�`�\u001b���\u001e�o#�>�\n�\u0011��.�}H\u001bwp\u000f< �HM�\u001ft\u0017P4\n��0�e��fA\t\u0010n\u00011Q��}AW\"��(\u0010x\u0014؃&�8���1<<\u0017�n�<\u0015\u001daI�t\u0001Jt?O\u0019TM$f�bg\"9�=&��{Ч@�\u0001�����c�Dd��W�\u0014(��2\u0016z�4\u0019`�K\u0016v��I3��%m՜��uP��n�(0�\r0Ed�?ܓ\u0001��\u0007�\u001fdĶj�\u000f �D��^\n�\u0014��v&�\u0006\u0019,m�;\u001a�\b����e�HȒ�X\u0003ȭ��Ri$����>�u�\u0013C��}X'��Y,ʾ]\u001c��\u0013�aԔ&x��\u0004D4�xW^}E�i\u001f9�\t,E����uÕ�(,;j���[�{3JX�[L\u0015��\\\u0002A%�\t�iG��x�&��!:�j��\r�/b�\u0006\u0016�}a�>\u000b�\u0004ߣA:�\u0013\u0010��L��2�'�\u000fB�\u0014�X8~��}����\u0004\u001d��\u0016�R�İ�w�\u0012G\\<��p\u0014�\u0004T�[��\u001b\n(aK�Z���\u000b�\u0004�i��|�T��(\u0006X�PDM�)Z6\u000f�\u0018� zȅl\u000f�[\u0014��?C�b�\u001d/c���8����xO��ؾ͇\"ݨ�:a�D�j�\u0013\\Č���J��\f\n�E!��}x�/�!\u0019+\u0005w�a��o\u0006\u001dd��:��Nk�Id���䪞����o�Ȭ\u0013\u0000\u0007��B2�2�%˕��`Bri\u0015'�+�5L[\u001e@��\t����Q\u0005l���=�����-C��\u0004\u001bLiɿى�vy�&h\u0019͏�=������'�`\r���#���a�~\u0000ͫ����ܤ����\u0006�_ۣA��\u0013$��߷�\"e����D�MN4�����#\u0000�d\u0016zOp��`Z�\u0012��*U�┈9�b��?D>�\u001b�\"\u0011\"��y\u001a��6k[�\u001e�wG4j�B�����@���\u00199�b���_\u0015\u0006��\f�u�[?��\u001d&/<�\u0010���/\u0011{�G\u0007�9��O\\T�+�\r�x~��\u0004�\u001d\u0019�I�\bx.�{\u0002�mj�Oc\u0013�l�Ϣ�\u0006%�E��#�e�ؙƢ\u0002��հ���wb��3�H\u0000\u001d�R�V6mbkg��w�:��g[kk>\u0004 �,�qb\u0007������w\u0013��@��\u0004�Q8�\b���O~���\u0019'��\u0017\u0007Mǻ\u001a\u001a�s�\u001f��r��#��\u0018\u0000x\\�m��n��M�ټމ���=����*�}VJ\u000b�F�\u0004�r_��Ya\u0005���:XǔzN%н'��A\u0002�\u0007�8f��\u0001\u0015܏�<_0�$����-S�\u0017*~\u0002F�?龙\u001eHU\u0014hl�h�+w�\n��\f���\u0005���j\u001eP��mM��\u0004�h+,�U0�$\u0005�ɲo�A?�\u00138��.��\u0013��\u0001�\u0007�J\u000b^4N��ڍʝ�FV���$5�=��$S� s���4�x���\u0000C��\u000fh\u0010��t���[�\u0015X�>{�\r�u7���\u001a\t\u0000�X��73ށ\u000b�\t7鼇U\u0002o�q�۩\u001cQ\u0006�\u0018\u0010s��ك�T[w�\n�Ź��\u0002\u0013mj\u0018m�\u0011��\u000f��ViNd\u001e��R\u0017#�����I�gm�r�֡U�\bS[i\u0018\u0001T�?�:\u0010)�ĤF���+�l+��\u0016�F\u0019a���StdR\u001a�4���\f�;˾��~�|s:\"�|�\u0006ۛH�6t\u0003Qf��Z2I�̊�x\u0016Z\r1������ɺ��\u0003���t�VQ@�\u0011Gs\u0013�\r�|\u0011�L�c͖c\u001a�F������Jv�n���/[�\u001c��\r��A>�\u0013L��L�D�=\u001c�\u0010�T\u0004�\\��F�7B�q��O'��bz=\u0017��ѻ��'�Mw�w�R\u0014\u0002�\u0004&\t�*U��kP�GQ���\u0017\u001b�@�H�\u001f��������\u001d����\u000b\u001f��3{�\u001c�'x�A\u001aa\u001a�&�z��ɡ�1���z;f��\u000e�� �A7LF�P~�F\u0013\u000e�/�K���\fH�\"Q�da&x\u0005������Ro����\\�0\u0013�\fc�$���b��\u000e��P\u001d\u0012Ϯ\u0000��/�>c7�4�3�JL�za.\u000faC\u001eapz5�\u0014\u000f�N�s�\u001d�\u0014zdO\u0002\u0016\u0000 �Z��\u001bb�8�\u0004���F��C��h$�A+\u0011�u�����d�\u0016_U�.��\rP�y)�������F}�f�f(l�;\u0019'z���)p�}�U���\u0013R|\u0003L$�\u0004q$�DL7^�\u0007N=�\f��\u001ewj�iď%ɖ�\u001b���\u0001�Rxl ̪�q��ﱐ��~b\u0010l\u0017�󰭘q�n��cb��\u001b�w\u0007\u0007N2\u001ah��f�@�\u0016�@�\u0000\f�\t!��_�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003w��H�#�p��Bl��1�\"�.��\n1��� \u0014�$�\\��8�px@�f(��?ď�R��o�e�ب�m�\u001e��4b�_K\u0010���\fݯ2�\u000b�] |\u0013�\u00075�D�(%%�چ5\u0010�wT8��\u0000I�\u000e&W3K[�Y��-edR}P��O�T\r�ܬ�ͤ�j\u0013\u0001+(a\u000b#\u001b���*���p�j�,�\f�|?��vO\u001c�߳=�_z\u001a8^\u0012��h[��W�5+�74��9K_�����;wm�D\u0011��x�I,\u0017�&��\bE�sl$\u001d\u0019\u000b_>G�a�8 \u000f��6\u0013�V�Wх)�Q�\u0016q����\u0006�\u0011\u0014/?��;v\u0014u#KW[âqC�r\u001c��nԶ� .xh����A\u001a�\u0013����m\tnI�!��K\u0017!���<��6��%ˁ�K�� ��\t4G\u0010*�#�\u0000�6=.1p��Sm�H�5\u0005�8c��s~mc5ӄj4ٝ�7�q�=�M��ݲJ{e��\u001a����I\fI�� \u000es��\u0006�C\n@@�y\u0012\u0019r=���D�M��l\u000b'�H3���.d���'��\u000b��=�j���\tB��Lip�$�\u001e�6q�AA�ۭ��\u0004�I�K��'zd����\u000e9�˨Fcr\u0015����)\u001dM��\t\u0014`�\u0019�\u001fn�\u0010�2�r\u0007i\u00111*�d�����\u0003�\u0019c\u0010�_u���A,�\u0013����l\u0004�b���L�������� �m=�\u0007#�7$\u000eJ6y:���)Ӱ�\u001b���\u000f�\f��?�y\b�\u001f΢Fh+�֧�?h&-��E>��E��A��_�H$�\u0007�\u00194���¼�\u0014���\u000765�-�\u0002;2\u001e��Q_�mD~\u0005�\u0017D9�f�\u001b��_�t\u001chڹ���A(�\u0013�����$8�z�!������\\U��ޡ�okoY���.B�bU�Y�DžBCt�z��Pc�Gg<9�'J��\\�Y��\u001c䮜,��\u001a�\r\u001f!�z��e�=���i\f-\u0019�8\u001b���?�ݔ���׃Į\u001e�aJ���?\u0013�v$�4�T��:S�\u0017\u001b/\u0000���>���U�l\u0016�q�\u0012\u0006���D���P��7��Q!R�\u0001��fn\u0004�M�e���\u0000�\u0000�\u0016M�!Eh_�= �0A+\u0006O�q���\u00024�9�\\��1��.f�>����\\-\u001ex�xV&�r��2^sp\u0002��d^\u000f��O]���I�x�.e������-\u001f�����8�Og\u0017R�^~\u001b�w��A1�\u0013Ā��n\u0017\rrb�:��G_@\u001e��\u000e|���\\\u001f�����[)����Z�\u0018h�\f}\u001b�&\f�9+�%\u0000�\f>WB��v��\u001a>�.Rc!�o����w���m\u0018�\t\u001ea���8m{��C�\u0007X�H�\b�\b\b��I�\u0011�\u000b)���Y\u0006�4�Ȑi�v�\bs�|K�t�'�Kz�\u001d�i�\n+0\u00144x�\u0007�\u0000N�\u001a��\n\u0013�dGs�;9�\u0013\u0000q�.GZ!��=rr�\u0003)\"�\u001eP\u0003���r�\b�|k�z�-t�������1\u001d��׺�Լ�\\j#)\u0004��{��\u0015@g�����\u0014���\u000f��$~��;�cKK&\t�H\t�2�B�0\u0012\t?3϶��\u0003:gq�\rx|{%.-*,�\u0014\u0003���}C�\u000f+� �\u0012�%w��AT�\u0014\u0000���dD��5 �C����\u0011\b<~\u0015\u001dq��\u0006lʻW�m�D��i���Z��\u001a�R���\"R�qX\u000bC��\u001f*3��yz�)\u001ca\u0017=D�c&��F9�x�!\u0012λer9�E%�t\f�8\\��#�\u001c{��Oj\u0014��\nS�}��\u001b\u0013����c��\f\"�A\u0011��Sq��n��x/�IK�Ŀ��\u001f�S�,��Rf\u001b� j\u0005��\u0017u92���$\u0010��t�{Y.[�]�\u0012��,GqU�dj�E�����ft��\u001a\u0012(̰�Xp�,���\u0018�J�yT\u0005s�رLs\u001c�Qx��\u0011*�9`W�iJ{�JYb\r�q[���&s\u0003N�h�9\u0002\tQ\n`��=)O�R�Ӌ\u0002���\u0010hR\t�\n-M|w®�n_�����\u001cI'���)\"Òo��\u0011\u001a8,\nC\u0017\u0015��\"�22�AC�\u0014\u0014��M/\u0006dF��A�18�Ĩ^\f$e�0�C�ǂ.v\u0004\u0012ݠZ��^n�\r�ԭ�m7f�\u0017 P\u001fVnV��|�M�:�a���t����ıd\u001b\u0013g缳kF\u0001�\tC)�R$\r\r7]\u0015�z�\u001f �լ��(JA\r��\u0015!\u0014`̋�t�4\u0001�0�s�\u00196lQ���M.u�\u001e\u0018��w\u0013_a\u0000_�{!æ�8���^\u0013\u0003\u0019���\u0018���_��o�����@��\r��;���\\��m�]����\u0010p�&\u0013��-��>wW�1�\u000f�~�\u0015��I���c�2��c޾^M4�@���ܕ\"\u00025�8�/��Q�*4(`3���s\u0019sDh�x��l\u001c��\u0010��پ�\u0005d�,$\u0015S{p��#�W[�\u001f� 4�ߘi���\u0004M��AW�\u0014(��M\u001b���nk3�/��8\u0016���-����\u0011�dw�Z��57����\u001c�j�\f�o�����3��A>p��>%8]gvM�q�]g���W@a5,\u0013\u00136��t����O\u0016��'\u001c�\n\u000e\u001f�����J<�Uz��{�P���������\u0019S��}�\n��\\X�e�������<�*���T&�3\u000b@���t>\u001akr�\u0004\u0019p-�Ѱ0/U�\bWto`��)��ɖ���V*����W��^\u001b���n�Iq���\u0019i ��ԟ�(\n\u0015O���&ߣ�[u\u0016�\b��\u001bw��AO�\u0014<��M\u0015o�ǔ9���Xk}'�:��\u000e\u001c؁0�7/p�����p�\u0013�0�\u0014��*\u0017���*^a\u0007b/�E�f{A�0�qe\rp?e\rC2�oS+�,��֯^�\u0010�׭\u001b\u0003�9�|��S��[{\u0015�*�\u0001�:G���\u0005V����a����F\n��Vb-\u00141\u0010�_��@�Y��\n�GkH\u0012\b�]}����\u0003�\bD\u0019��M�����s���f�\u0001�\u001e��L�'�;�\u0010^_`��75��h\b�\u001b\u0004C���p�,]z/0��\u0000�=�g�\u001f:�\u0016\u0006�]$�\u0012k!dVU(\\\fj\u0010���ԧIJy\u001b|D\n����Q)Z��!(��\u0002U�'��~���\u0011}��\nT\b�������M3��0�)��\u0000\u000b,XD����AOI A�켎s�V�(̷�̣AB�\u0014P��M��z��\u001b��܍��@�o=S�\n�\u0017���9�fB5fL��Hq�\u0013���\u0007\u001e���ߚNLةD�1ih���q*�<�I�O�C4�q��De�i$�0�c\t�3��T�]�^A�tg\u000f��1W`��L7�ݓR`߿絞?\u0016&7fT\u0010�n��\u001f��:�#�ù�ة�8\u0018(��\u000e�����D°����/5�>h}�\u0001��\u0018h�w�v}I.;��*\u000e#�0���^�/�g%�$uN�Q�\u0002ћ\u0002��R�0%���}�׵pQ�\u0005�u��ؔF��\\F�\u001b\u0010@�\f؆/\"C��Qx�\u0012��r���G�/��\u0007����}E�\u0015\f\u000e1_�����I!�+P\bQ����5s*;O��\u000b�AFIB\u001c�A5�\u0014d��L�*�M�w��_���m\u000f��K�v��QYW�I��|��kb��v��^N���ވ\u001e\b�T��u�T�tXgZ�R,�ߖT)�2�MU\u0005��\u001f,\u0001\u0018\u001b��y0\u0010�ˤ�x�T͢\u0019M��\u001e=��#�bs�=?\u0016��~�OR�\u0000pb�\u0001\br�\u001aVN)rѣBK�\u0014x��}a?�DrC\u0017k�pV��\u000eQ��y�\u000b��7�\u000f�\u0019h�4K�\u001e/����^p�x\u000ej�C;�ؒ������Ďغ��X�U\u0016��,�>^H\u0017%e\u001f@n�VӺ�g�qv\"���w`�\u0006�G��{��&E�Ȇ\u0018E�~������\nUF�n`��B��\u001a��\u0000_s��IvIbSt�(_��5Ҫ���@��\u0019o2(#��,+��$\u0013�3��d.\u0004Q��\u0019\u0015)\u000fs�\u0014im=�k3e��\u001a�Ր�}_gmd�Bj!�b^�Dz��R[~T��K��̤;0�~�\u00132��j��\u001f\u0004D�*\u0005hc\u001dPc\u001f�G��{]A\u001a���?2������N�$-��=���\u000b�z>����x��\u001a�\u0010���ڲ*��C�r`�KsҌ^�\u000bj���A۝\u001bi^��c�#���I��f���C��JS�*|�����\u0014�ډ\u0002��\u0006��KM\u0013�oܬM�]����\u001bX�\rA)A�T�&\u0012e=�\u0016�2�]<�m ��5��]�T#�e�r(:q\u0007�s�\u000f�T�\u000b��5�@ʉ���¯�4`��b�x�/_�+(��D�Ȁ�\u0018���\n3> ��Y�0ӳ�ר\u0011�?s���\u000e��\u0005�Hsf�4\u000b>>���nth�1\u001a2zo�>�<��V&>�q\r�4|��3U�k��S��[��\u0013\u001d����\u0007e͉��G#�����P�W\f瀣A!�\u0014���1�����A\u0001\u00062\u0018\u0011���pL)7�2\u0007�'4\u0004�5\u0003<��Iʷ�ϲ��3_bC�9�Ye�9�>0U�I4v\u0000:(����\u0016�\u0017�\u0019^^�S\ri1�V\u0005��^��R�̜#m\u0002\t�Ӷ���V�>��ʠ2x\u0014\u001b�\u0013/�����\u0013<���V���Vn�R�N��U���\u0004#���Y�\u0014�e�RV���z!�pe����\f���E�E\u0014\u0000��\u000e�oxi-���\u0002fż\u0016�xF\u0005z�R��S֯\t96.\u0015�oH��a\u0003�_�\u0014A~j@�\u001d�U�I&�y�&��;��u�ت\fbM0�H�Lp���c:w��_?سO\u0017\u0010�\u001d�*/S_��WF������S\u0006狭\u0010ۏ�o�?|=���\u001b�D.x�W�~�\u001b���4v�i�\u0018�y\u0004��@�\tD#af�=E@\u0017��8�\u0007\u000e�ETB�e�\u0004*�NV��/���Z�7�fS!�*��(��;\u0017J%L9.�[��C\u0012&^�\u0014Sa͏\u0002VxV\u0014,��D��i\"d\r�\u0002k�m�A\u000b�\u0014���M���/���;c[���S�ܪi�!���\u0015v�6�a,\u0001%\u0004���\u001c�\u0017�c���P�IJo\n�\u000f��{�\bAK]��\u0005C�Ht�θl�*��\u001e\n���\u0006�\u001a�b�I�.�딊�L/�B`�\u000e\u0011T\r������$�\u0018D�XO���\u0017\t8��\u0001=���Y�ֻ�\u0018���u�����Ra�-SH%�l�7�\u001a�$�\u001eG��fY\u0002�uEg!�?�˖��ǘ#T{\u0016\b\u0006�\u0019�5��#\u000e��r��\u001cե�aF.��\u0001%0(���Ù�/�+G&�\fsɂ\u000b�m������_4��H\u001c��q��X��[�A\u001d�\u0014Ȁ�۷55��o%�q��3\"&K\u0007��i�\"\r\f�����I�|���A\u000f`\f�Z�}�u0济&�Fp*����\u0019\u0019��| yb�Y6�\n�γ��Oib�Y�B�b�3��ń�w�If-��Y\u0013�~�h\u001f*��@��\u0006�\u00006݃t�\u0002����S��eq��\u001c\u0010v��\r\u0019�Sw\u000fG�\u0015f2�G\u000f��9�a+o@�\u0017�\u000bAL�\u0005w���\u001a7\u001f�>�\u0000ڞ�L\u0004/�0\u0000J�^��S�V���\u0005%�X@FX��P�\u0014�\u0015u�\t\t���\b���\u001a[-\u000f��Ԇ���i?�\u0013�~�.��ޝw�[\u0015\n�\u000fZ�-�n^&g�{ɿ�D�\u0000��b��J��A\u001a�\u0014܀�۷x\u0004��@���$\u0013\b\u0011g\u0011�_t[�<�\u000e7�5g�h\u0019c W\u001a��A\fc^7��Q���u\u0017��s�,!�\u001a��M�pi���O�ZW�ō\u000b�z\u0013�r8l�����\u0000~/\u0004\u0018�E�gq\u0011O<1i�����>yo^\u0019�ND5�m9~\u001c3_���*O��\u0007rv\u0015�򙢂\u0014\"i���%�1��\u0015�\u0000�\u0000I\fJ�!�)hT�E\u001d�O^)���7�|�XD0�1�hO�ض|X�A�T�h��>��n�\u0004-1�\b�$�Q#��p�� /\u000f�\u0010\u0004��uS�\u0001�)S�=\\��M/��\u0017�\u0014�Њ��N7��>\u0010��L`�\r�m.�\u001eY��Jt�A\u0011�\u0014���۸\f~6G~?\b���Z�����\u0014�4G/\u001fC2�\t�p/v{����\u001c���o\n�w��f\u0005�\u0019Sa�9\u0015\u0012�����\u000e��\u0015\u001b�u&���[ڇP�j%��FJN�\u0005�p��.\u0019\u001cx��5���\u001d�>׳ɾv�9���*\u0011��$\u00165S��-\u0018靁?\u0007R����Ҩ\u0003����5�˲ �.��\u000bߣ$�\u001e\u0010��˄�P.<�\u0017�n�)թ`�$\u0016Jm\u0018��C��\u0012�\u001aJ�\u0016\u000b\u0003\u0010����Jm.'�!�hl��S�7W솪3L���w\u00163�wp�ԍH����4�t\u0004L&���G\u0016F�s��e�f���\r�\u0007��@����4���_,\u000ek�\u001c��o�\u001c���F.�Gwa\u0013\u0016�w���4�#�B^ ��S�[\f֭�.�~�3����SL%\f\u001d����\ry\u001e5A�;�R��\t�r�(/\\\u0015:�\u000b�FK��v\u0019Y��\u001cb�\u0019�\u0016�\u001a�A��&\u0007�K\u000e\u0014E7�o3q��[���'�92R�A4�\u0015\u0018��L�j�S50/�\ro\tiG�\bn�](An�/~��k\u001bơ\bn�� 9�\u001a�\u001a\u0018��)#6�M۸å=���{�*,�tt��$�����&/\"�ԷGe#u����B,�d���AJ\u000e[�Б��݊�JϪ1�Q�j<�L��Yn�4�\u0005\u0003~�-8�g���#�~�\u0007Dz4��6�QN�7\u000b��2]�\u000bM��0\u0003E�w�����XT8U\u0000\u0013\u0007�k6h\u001f�ȓ�j\t�\bxak��\f\u001d��=�\u000f�\u0017\u001c\n�\u001c{�)h�ri4,�\u001a�\"��A\\�&Bﷃa�\n\u0017\u001faM��*�n&\u0013\u001b�\r���K?�v Zu�J�:�\u001e\u001dC;ܢ�\"p\u001do4%\u0016q�}�h'\u0000\u0019`\u00188e�\u001eش��(ug��Ρ�\t$ \u0016�\u001cS�7@���_\u001b�\n��A`�\u0015h���\u001f\u0018\n�\u0010KBU��g��y��_�u�Q[ӛ\"\u001c&�]\f4λь����[/IX��f,GB/�Yu��i��=<�\u001a�\u0012/��l�G�+�s�h��{���}f~�w\u0010u�\u000b7�BO���ǩ\u0005����\u0015\u001d9\u0000ÚRaR�b\f�rp�y��UY\u0007B���˼K����֞\u000f�v�\u001d\u0014v\u001b\u0016j\u0004H�<�\u0003�<������c���ԥ�uԾ�0�8\u0015/٭�\u00108��G�,�N�^�?\u000b�6��jE�P�A��\u0018�u��\u0003�unQv\u000bj�&7+G\u001fʿ#�r��\u0010\u0001�X�s�-C\u001d\u0018�\u0004\u001a�\u001a~oM:\u0018Ĝ\u0010A[LZ�Y����6�Xk#;:�\\{��T-\u000f%�&s\u0002ڡ�>pw�\u0013K���sL��\u0014�(Tt�֢�:O��x�7,�/�\u000f���)[ؠ�AL�\u0015|��]�O������7��\u0016á'|�vczi~��Sn�^�<�tM�>P�@�&��E\r\u0002/^\u0007=L��Z�\u0012�a�-�,O\u001c�\u0003�:Sċ�\u0001��S\b{��ɶ'��\u001bł�\u001c�\r&!\u0018\u0002���qФ�|xB��\u0019��\b�{�?ު�\"k\rn\t����\u0004�m��\u0000�$z��\u0018��\u0010�?�\u000e\u0000�������/��[h\f�Ӡi\u0012�����f�K���\u000b\\d�fB�L\u00066\u0015�����P��>��\u001e�f�;�\u0000���\u0001NW���B��f:>���:l\b�,5?�Atz�Ƭi�Ad1{3�7r�:�����<�\u0000���;�T\u0019�\u001f������\r��n�\u000b&��\u0013z��͟��U\u0007r^\u0014\u000f�_i��?}�Y\u0013�!�\u0004\u0016⚩\u0003�����A\u0004�\u0015���X�S\bgQڡ�E�\u001e5V[[6%\u001e�?'qޭm���O��Q�/�\u001e��^���2�8������ R\u000e�+p�Ɲ��\u001c�\u0016\\��\u001c�^W��\u000e\u000e�|\u0015���`v\u0016�kb��-����\u0007�\u001bSz7�ĺ�E\u000e\u000f�\u0016Wf�i�\u001dy\\\u000b�؟�\fn�}�D�\u000fk���-�\u000fAa/ �3�n��iy(��]\"\u0013 \f��QR\u000eBd\fj�N�C\f�-�S�X�\u000f�w\u000b�v�I;TQir�\u0015��B12xL*l��\u000b��\u000b�\u001cQ�^slu�\u001d�J�]�Gbdݒ�'ݞe��4�E#�4�q+��\u001fFV{��A\u001a�\u0015���X�r�y�\u0013\r%��)�V�j�\u0012�\u0012�\u0006s\u001e�<8\u0017ȫl��\u0000G�$�w���b�J�I����E�Tܤ��?��N��T@�Q�D�;�\u001e�XN�Z�w\u0015��\u0014D�iU�M�{\u0011\u0004�\u0019I�2M8��'pvݭ�����`���\u0015'�+%\u0014�8�|�7�_\b�\u0016��*��\u0013�-�����,s��fW\u0012\u0015�t�mF���l\\O�ӵ�[r�4\u0000\u001b��\u001b\u0006���A\u0004�\u0015���MW�{��\u000ey�&YI�ax�s\u001bUA�7���A��듉'�f�\u0005���oRƨW���~�Ú,�\u0003��\u0015�.�R\u001f�#Us�\f\u0014[pl8�$4\u000f�d_p;�-\u001a�\r�$_;�}\u0012��\u0013.�\u001b�\rFΤ�o�c��`�v�v\u001c\u0014n)<�5��\u001a�˹��?HAl���:�볈�ӎ.5}�\u0006�L�G�q\f�·Sp�υj7�������KJ�\u0014\u000f�u��4S$� ��y\r\u0006�̹Q��\u0019�x�\u001f\t\u000f�Nc�\u0013\u0013\u001d%��u\u0015;p-/\u001czE��*7�Nֽ�#m���\u0001q\u001f�ݿ^v����-�@��\u0015̀�L�۔�҉W\u0010��n��>�-dY����dQZh�αK��J�\t�ȷ��\\�\u001aW�\u0005q��nF�z\u001c6\u0003�8��\f�\u001e����?\u0004�ai:ێ�\u0005n\u001b��s�X\u0001a\u0003�K�%2b��*a����W\u0002�\u0012\u001f�\b7TD�v�\n͂v�mG\u0014\u0015��'\u001b\"����N{�����d\u0012�\u0004� Xk�\b��@�\u0019���:�wΜ)��ٛ��ىgKх]oт+�\u0005UZ���\u000f\u00118,\u001e0z<�S_}D-\u001bpX���5�\u001c�i�~?=b·\u000e4�Y��zt]�J�p$\u000f��F[x*�@��\u0015����p��Z�%\r_p�\u001d��\u0019�٩��1N\u0000O�e�\u0010s�KA� Ώ\u0010\r3\u0018\u001d6�q\u0014'ԶR��\u0005\u000f�\u0000�ܜHJ5tJ�p_X��r�K�WE�s�6\u00011@��V�����;���i��2p+A�\u0004\u001f;\t�r�\u0010�if]d���\u0011\u000bd�\u001b\u0016�,��\u001f�G��^6c�����;��^�J�;\u0017�c!&�>\u001aD�9V\u001a�`�\u000f��&Q1�rj����ȵ���)�%\u0015�W�g!��\u0010oX��4Ϟ\u0005xq���\u0013�\u0013�\"�e���d`\"@\u0015\u001a�:�\u0013N�Zr�gJ\u0011��\u0015-�A\u0006�\u0015���br�\u0006l=\"��Z)A\u0003'@�tqkLE�\u001a\u001e�=fs�P�~\\��¤���3&\u0001gK\u0001��i��}8��\u000fQ��\u001dA���k�'.ؐ�>��e�\u001ex��M��\u000b�3�J��\u0019y�>��I^6fu�4<���j�q�$e�l���ڐ��y�à�\u0001\u00188\u0017�*a��z�\u0002!�9!��=�\u001a�ⲥF�5����΄�dÑ�h�q�\u0006ȫZ~�\u0007��\u001d�ǰ'1\u0015�y���k�\u0003�Sj}�fG�\u0012��i\u0011�Yl�Q�G\"�Š�˰կ2\u0001��Ff��~�[�\u0012\u001c\u0001�m�۩\u0005��}2\n\u0001!�A\f�\u0016\b���k�c� ��*�\u001b���q��\u0004܊�\u0000Ҝ\u0002nn'�K@��G\u0002��\u000b\u001f.�7�'��{��ȴ���.�gz\u0017��%��sd��\u0006���\u0006\u001eWP<�6\u0007 y �Ly5�X�\u0002pe��3��\"2�b\u0016��u���ބ�����\\nh���,\r��\u0003?����eUm\" (�5�;D�\"�V��0/xJp2\u0006�\u0004�@�\u0019x��0�0,cA��X\t؋7��e��\u001d� ��y�\bе%�v\n�ڂ^S�L�|��q�?,�ε��\r�G�eH��y\u001e0>����q\u0013�\u0017��mG�&\u0019�0\u0003�]�x�����.\u0007n �A\u0007�\u0016\u001c���%�\r�b̃aR&\t�R�b � �Tֽ��p\u001dz\bO�z���z���U!x\u0006Bmy�\u0015\u0017�=��pFWY��� c�v�*�jO�k�֣FJ��-�b��[}83����P\u0007ا!�jlҥ�)�\u0001���!�[�Xk\u0001o�0o�]�C��f1��Qyy�6\u0010��2��nw��\u0015��-C�\u000e\u0018p<\u001f\u0011�|bF���m�L\u0017�I��#m���7爢ִK|�vp���>V\u0016U\u001c��\b����b�+/Hg\u0012;Ĥ#:Ū�\u000f����)��0rI�8�D�Θ�n�9ļ\u001c�(Q��\u0016\u000e��#�A'�\u00160���g�\\ࡿ\b�\u001eq�\"�-�\f�}�d\u000eL�Xi\u000f]\u000b��7\u0014g\u0014�\u0002��\u001dX�iS(����\u001a��6��n�UcH�2��:c�\u001d�\u0013A��I�C��?!��a���z8�[����J�7y�\u0003;?�[�����߱i'�4h|�/\u00153\u0000b�@�m`?b�22\u001e�;l��\u001d�\u0007��\u0004�\u000bw�{�1.z�(\u0004\u0010^��rLx0\u0011��\u0012�D*�+\f�C�GT�S7��\u0006N\u0016\u0013h�\\����^��?�ܮG�\u0005��\u0010�װ!�\u0007H\u001dP\"\u001c�ZP%}��\u0001+��a�`NY&��\u0019��\u0003#vŐ�s�GD�_w^V�\be�%AH���g���\u0013�a\u0010��T�Փ�W�w�\u0002'�A8�\u0016D���#j�h��\u0011��x`����\u000f����x�R\u001c�\n��/�Ew�,q�R���SD>mz[䢛\u0017\t�i\u0015ke���r�\u001c'/G�D�y)(Gw��\u0012fPh LU�]�Ϫ\u0004U�����+C����\u0015�}J|�f�kۀJ����0\b鎏z\u0015F��c����-�8��O!H\u0016\t�`�0\u00055�T��ƴ{lS��X��0�5-l,\u001b\u0018?���\u0007�\r����a\u0012<>�D������L�G��Cnyw�\u0004}�\u0001ـk9�����v\u001e��ւ�����g?���\nAj[c��|dšr�\f㢍Q\u0007 �\u000b�?�ݜ��[�,�\u0010\u0014a0�[�cz�ՔX\u0017)-�n*+#l��>�d囜�\u0014�W�J@�)�A)�\u0016X��L§ս��j&�\u001f&\u0010I�)C���h~���6�}�]X4e�\b.\u0003���µ��\u001e��UQ���0�ϧ1i���\u0003-������v�ܭV2q'w�Ⱦi�e��S+�\u000f\u0013���A\u001f\u00026�(za\u0018��n'�\u0013\u0001�go\u0000[h�\b-\u0004��9��\u000fnl^+��\u0007���c�\r�\u0007�\u0014�M\u0019�Ea��\u001d�\bV�$�9��6\u0003�?sm\u0004\u000b�ӱs�\u0006]Z��\u0011��.A���\u000f� � �$|y\u0011�0\u0007��45�m]'I}�;Ӳ\u0005�jW�E��٩��B\t�\n���\tT�2s�\n�Ө�W@\u0013g�^U�\n�c��l��-�\u0016\f��P���y���7m��I��\u0010��[�ڣA\u000e�\u0016l��L���L��Ҳm_���O4�^G�a�� ���S\u0016\fZ��ბ�6-�;\f�J���#�Qy�9\u0016ʀ�s֡r�+\u001bz`ƣ!�8E����TAm_=/\u0010?��\u0013u&7�\b���\f\r�C��s�)�}w\u0011���\"\u000f=\n.�=���뮃���d��7\u0007\u0002\f�[��oĨ��ذ��x(A\u0000��:��u����=�r�Txc��)�\u0019�!�\u001a�\u0019�F\u0014�&?~a�NUVrbߧ/�}\u0014�\u0013�'�5�\u0012bڈ�nׁ���<��Ȕ�P({��Ѱ�_\u0005�An��.pԐeHA�\u0018�Cq�\u001b��02\u001b��`ۣA$�\u0016���1� \u0004o\u000b�\u0003@YK��f֚�#\u0014\u0003���o/k\u0006^��I/�\u0001\u0003���0 �(�P�[[�T;/<�%n�|�\u000b��碴S�?.�\u0007�\u0016R~DA��pӳ�20���ē#�y\u0010�8��\u000b\u001a*��\u001c�GE�\u001e͜&Z�ja\u0015\u0015�S��4 5\u0002%9jE�W�[�EV\u0015x�UP�\u001f�X��O\u0016kٟ�8%��D��\u0016�ccq\u0019^ӖӉ*�\u001d�_qRX�F�W��t�-R޵/�G7\u001eࡗ��\u0015K1u�p�g�\rC�\u001a~����ł�O�\t6\u0014&ɴ����2�\u0013�)X�T�4����_�\u0010p�Lw�@E��'�\u001d?�i��m��۷T�\u0000��)�>�\u0006[�<\u001f�px��\u0007Y\f\u0010�G�T@ �\nȬ\u0011�7]�\u0019�'\u00013*~\u0010Vj��3*y���R�뺧%���t�\u0015\u001d\".�hz�J�dUC�h\f�@��\u0016Ѐ�1�V/u�Y�5\ty��1�G?�\u0002��\u0018�\f���/I���%Ҁ���ܚ\u0003h��'d����\u0016q�%���aF��8�~j\t��\u0007\u001eK,Rӌb�TMg�� �\\���K�e`.{�Et�\u0007\u0018Y\u0003?�S\u001d{Z�\u0005�\u0002W?s �� }{&�\u0005s)�%�j��\u0013M�ĉ�~�«��\"��CfG\u0018C� )L�O��\u0018b�s��~�xUo�N���q\u001c\u001d��vadk�e�\u0011\u0007ɾU\u0011e2j]‡\u0007H�#\u0010P\b�~\u001d�/\u0007�Rr �RӬ�$��BC(q����Oirs�\u0005�\u0001U�$�A\u001c�\u0016���a���\u000fЕ\u0019\u0000\u0015���\t\u0003��.�V�:M��\u001f0\u0016�N�L\f�꽞\u0015m.EL\u0006]��3�s�V��\u0014G�D��h�\u001c��~b,���2\u0000���׮<�L�\\\u0019���Ge\u0003Lg�\u0007\u001e�{(�ߝE\u0011vA��z%\u0003+d\u00123\u000f���LC�o�9A@&ok��}Ļ\u001e�\u0018��qӃЭi[@}%�\u0001űB�[�J\u0004HIm�\u0018\u000b�\u000f\u0003W�\u0000�ʎ\u0007����@#�(5���7�%x\u001b��7�K4�J!��=H{�\r�\u000e��\u001c㓱�Nhޱ�iQʀl:̲��w\u0007令�\u0012��sΓ��r_n�r�>���ƭ�\u001d��\u000f��\u0004��V�\u0001!8�A\"�\u0016����\u001f�\u0012r9�\u001e�y�v֡�\u001cCS(.%.��|Y���0�\"\tH?4�M��&�͹�=3l��U�\u0002=L�\u0003�/��\u0018���li��\t��p��6��Vpy)�����C7\u000b��?��“�z9�f�\f�%^ݦ�5#k�))���\u0016�\u00104n\u0016X\u001d�c߿�\u0012��3\nP7��;#A�\u0001�k��y��\u000e\u001c��5U�'Vg��h��@����m\f�d>\u0013�\\?��\u001d�~*o;\u000e*�\r���K�\r�0k\u001d\"q�uu��Hh���\u001fS�\r?��(��N�T\u0015�;�\b& ��SQ�T�X7�\u0012��U�\u001d�eR��M��\nH�p-�[��QI�\u0015W\u0003�;�A\u0016�\u0017\f���\u0015$�@'��}5�.��S�/O=�фYhv�p�7+0��L\b�8��_�KE���Paá\t_6�חR�\u000bi\u0011���2;��KS[c���\u0019�2�PjI�\u000e@6�¿EaS&\u0006=[�\n�V\f��\u0013J��8ł+�b�w�;o��\u0012���׼qT`�H��o��b��y?�D��\u0007�`*��X=�}bi�\n?e��\u0007�z\\)��ɁI?�\u001f\u0007��k�\b\u0016{�̆I���:��?q\u0011_5q\u0019�Sy/l����[TX�ܽb�d#k*�\u0003Q��V�M{�z�\b�m1#��r7j��\u0012�\u0016�3�Px�O�%5�?�h�8�A\u0019�\u0017 ����B\u0002�M=�3\u000f�����]\u000b���]�&�\u0010XT��%W@њz��MD��Ģ��\r>����� ��o�*W\b/� z?\u0005'Kd.�\u0002l�\b\u0013_���\u001d\r\u001f/��\t砰 tc\"�V����\u001e�S�EV\u0002b45\u001b%ʫf7\u0014xZ\u001d�\u0002C\u0011����jS~Z���]\u001eK��\u0003��\u0007Ţ��@}��\u001c,�g,��L�Fv|��Ԉ�4�B,�޵WD����T@�\u0005\u001dn��K��b���I\u001dv���\u001e\u001d�� A�䕉$���׏H�$�^J����� Q��J��@�r���\\E��rwY�\u001arP�bd�v�?r\u0014Cm�ELI��7�A-�\u00174����\u001do�rl\u001a�g\u001e��Vvg%k��x\u00138?�U�s�n;>�h��\u001b�\u0015McbVF|\u0011,\n\u0004��J��;�S�9*��@,ۜJ�qNX\u0005�� ���\u0013\u001d�XH���4��>�B�Ղ�u�d��[=�ƴW�Q^���)�\u0019v�,�{M\u0015\"v��>�����'\u000b�f~'n�/�v7����S�j��wx�ј^7\u0003�����\u001e1\u0017R�6���-i{�J6\u0012�ih\t�\u0013�������{����f��+\u001c{��`ؒo\u001b0\u0005�'��O�*՛\u001b�DإN��Z\u0005�/�!�k��K\u0010\u0010��6@L��\u00016I�B�����R*J�Y&W�\u001d��v�\u0001����TwҌ\u0018>ߍ4�Ab�\u0017H����\t��ݚ�\u0016�'���\"��gi(�z�w�z9�M�\u001f��\f�ɉ���\"���4nK�3�\u001e�\u001b\u0015J�\u0004����*&\u00118-���\u001a�SŔv~�(�B�vzC��^nj�d���\u001e�M���:�����\u0010��\u0005��|T�;���9\u0015�s(El\u0014r��`{#�\u0019ܥ����I��]Y�,�p\"�8��\u0001.��O\u000f�2X\u001dg����`��\u0001a\b�M�\u0011�R{;ju�Z����\u0011{\u0016��\bF�T�q���M�|�����@�LP�.�\"�\u0011��\u0015��\u00036%�ܾ,��d\u0018ZL�W�����Q�}6y�2&��ֳ\n\u0011t[�\u000b���gEu\u001d��u��\u0012��0�\u0005v֮\u001c��\u0004�\u0003�VR�\u0011��:�a�&�2\u001a�LX}�\u0004��\u0014�qÂ\"�\\��$�H�\u001e�t�J:�7�AU�\u0017\\�������$\u000f\u000eU�P\fo\u0010ia��W�@*\u0015��e��\b���YH�J��v'�#׭/%��k���AQh&�\u0002\"��+��\u000fnLG�\u000e�n>���X�9�M�=��\u0001\b8�t\u0006h�~�D\u0006\u0018\u0016\u0012��\u001b�\u0006L��w\t~\u001b\b�]zA���\u000f�\u0001��;�9Q\\�b!ص\u0002\u001f�d�ؙ�!�)$\u000e��o���]���k\u0018y\u0010SI9\u000es>V؄�\t��%�#=�\u001f�.�\u001cZ�*��W���/\u0003\u0013�G�\u00017K�х��G����\u0001���;L��v���nߔ�(\u001b���毻Rdy����!�Iey��|h��\u0010D�nM�6*C�î;#�6\u0004}:EsF0\u0013�$��\f\f9�sE\u0017z�C�Nl\u001d�?\u0018\u0004(�\tW]j�PP�.��\u001d�\u0000�j���\u0010y�qP��7�Br�\u0017p���U�{�\u001e��\u001dr�\u0015�.��!\u0018�0���Sj�F\"\u00032m����/a�1��n��\u001f�]q��ɚ\u000f����+,�\u0018�ǥ�#��k�u���M\u0017�b��\u0002��\t�\u0010ɵ����\t$��CI%���@ݦyJ�\u001c޺�\u0018\u001c~��\u0000\u0000\u0000\u0000\u0000\u0000\u001d��\u0016\u0002q�\u0001G�K�7���7�Iː��%\f��r+�ȃD���$zH�,�(�Sq\u000e���s���C�r��8o|�L�\u000b���Dܩ�my�0\u0011'�\u000f5����=\u001f��ӟ�@\b0A��w�\u0001�p4�Ni\u001b�HU�-G�<��掜����ow\u0013��,�{���P��V�DU,���Deybv=�s�\u001f�r��W��5\u0002�𞗝��,i��I�VW�~2��!!U�pRf��\u0006�r=g���\u0013ۉ��S�4��\u0015L��\bꬑ�\u001c*��\u0000�S�\u0005����B��\u0019j�P��8.�,\u0002�(J\\���@g\u0011'M)v��4��c���~bS�8��!\u0004!��\u0015\u0010�RmC��!G�鵔�_�=��E��J�f�X�fB���>�\u0013��$��AA�\u0017���M\u0012�qH�f�i�,X23�;�O���D��Ex\u0001�\u001b��n�s���'\u0010F$�\u0000�v9��Q�y�J2�\u000f\u000e\\��a�%\u001d����\u0001\u0012\b\u0011�k�\u0002+���y�\u0018�8��M&�i0\u0010�puW�i�@\b�|Q�;{R\u0006\u0006�i�iS\u0011*���\u000f\u0004\u0006h�[t�2Jut�gd�Hӄ\u0016�\r��\u000f��\\��\"��|%�G#�G�F���]R������Ch��Ŭ��h�\f����/�\b���'5�<�� �񶱵�q�\u001fu\u001bX�lI��>N��b���\u0012{�L\u0006!P�b���\u001c<\u0000�#\u001es,y\u001c~��_���`\u0015�_��w5c�YM2\"�\u000e\f\u0006\u0006|�?��!-\u0012�����\f\b��D�l�m��\bH\u000f��e0\be����A'�\u0017������R�cں��t�/\u001dm�\u0012k\u0018\"h��`�=\u001b��o=M\u0005�ZZ�5���4~*S,�\u001bN�\u0018B>V\f`:{���n��Kx\u0011v45\u000b,��G\u001b���<����\u0013>�J[\u0000��p���\u0003H�\u0015�zn��ƅ\u0015��9��\u0014��C�\u0011�\u0004@�\u0004�JhH�•;+\u001d��\u0004BѮ2��\u001e���`E�=���b�\u001b|���\u001a�n\u0014֧�o@��d\fm���R����¢�$�A\u0016\"@�K��Z�{\u000e�bq�s'�\u000b˺PЯzD�����?MQ���WD�n��0\u0019�p�\u001c����!��\b���kW��ڇO��\u00198�E7g�œ\u0005�“�V�)�\nЋn��$���Y�A'�\u0017���X�iʁ\f\u001b,\u0010�\rZ�۫�7pB3�~Y�O6A�\u0017�R��x��\u001f\tl��\u0014@�D\u001c��[�G�<�@`���\u0007��t�8�b�j員�\u000b^Q���`9R�<.?\u000e�*�T�D��'�/a>\u0018�W+�e5/\fT]���:\u00117\u001d�lU�݀yi�J\\F\u001fU�ȞZ^\btl&�uH\tU\u0011��\u001aG�\u0006��'\u0005\u001e��ͯiA��a��\u0000�l6�K��F�\u001a�#\u0012��\bo�{��\r꫄�֯v���3ZUt\n�Or���^�\u0017Cg�\u0004i�N�\u0013˓\u0014����2���ѭ:ü�\\��\r\u0001��P\u0004�_�\u0000��%w�\r�]݇§��\bR \u0002Ap\u0016�\u001aR^\u001a���A(�\u0017����l��\u0010a1\rs͵o��D�Rj�\u001b��>,`go �*�ǥ��ez\u000f��oF��f(}hi�q\f��zJ:c��yO�H1��j��/��F\u0010!�(�p\n䖛�R.�y��h�3J`�5�=g7LD�ڣc��\u001f\n\n�\r�M�V��sr�\"W�ug�*�\\�\u0011�\u0010�x5�4\u00144(n���?캥a�����\u0013�ޭ\u001eA�Q�6p]$}�D�v�ƹ/}p��E�!2)Iv�\u0017\u0007���su��݄ƾ��}\fW�����U��so�%V�U�Q�d�Ӗ�n��V����\u001e��\u0017��s&=���Hf��ټQy�o��j�>\u00060p���_����N\"�A6�\u0017Ԁ�L�\\D���VW�)��z]\u0003fֶ�m��\u001d��S)�?�Fm�\u0018�*\u000b���r���o\u0014��\u0010�3�߯�\u0004�H\u0006���Ħ\u0007D\u0005N��\u0003t\f�u�\u0014��f\u001e��|\u0010�/Ц(\u001d��o�\u0006O���ޕ8�)>$��sP�S����?��`v\u001e�L��\t0�P��\u0019��\r��7���\u0004j�{�^�\u001cV�3O�\u0017�\u001ewx+@�oBo�q\t\u0007�&J��'��A�%\u0003�0�\u001ba�91��\u0015�{�.#+�\u0003Xr�RB�S�#h%�(��D�%�\u0000m+���N>R�\f0��YF�TX�\u0017�d�1}Q}�-í\t��_\u0002�(p�B��k\u001d�,b?�&���\fO�F�=ȋy�\u000e\"�\u0013�\u0004\u0014A��k\t�G�d�A(�\u0017��M&a\u001fN�>��M���3�;ۧB��\u001f\u0007���J���~E�\u0010�>�ŽL\u0015�\b���`�8a �\f\u0005CL9>� _\u001e����wOpJ��\u0011�r?���=\u0010�����!EQ�Av���#l��Na:��=�\u0002`�M\u0006�F���ao�x}��!bN�3����$v\t���\u000e��\u0016�A\u001a�\u0017����cȊ�v��.���_rn���.Z\u0012Bf悱\u0016�V躙��{��Fﯓ�'x�S�\u0012�¢,���dv�;��\u001f|\u001b\u0018�;��ٰ��A{�J�S�&F\u001bΔm;6�-�b|\u001b膪�/�����fE6\u0010�=r�\u0014�\u000f/�NB�\u0005*\u0000\u0013���\u001cBufK�s��>���5���\u0001W\"�\\\u000eD�Ʌ��\u0006�t\u0016�\b��\"{j\u0007�O�y�]\u0011�7M\f�A���s���h��U�\u000f�1�\u001b[�?UG i��̘f�Lqlh\u0012ut\u0013�b�r�\"�>���v�j;FT�Nf*�TZ�\nU0dڗg�\\h��;�p�e8��\u001e�P�i��%�A\u001f�\u0018\u0010���fa�ZؚSQ�\u0014�\u0013�\\��E\nӔ���ԣ�~?�M�\u0018\u0017\u001f8\n�ȻӎjjS\u000b~��kJ�cD�+�6��T�i0N�Z��\u0016$)\u0004�\u000fUg�qX\u0002���`mf*%-ۣ�߾�mx�\u001c]����\u001c�\u0016.�\r�f{<\u001fv�a���A����S�j\u0019�.���aŁH��9�q�M�\u0004\u0010�J\u0014�hsk��\fTGs��I�Oz\u0011\n�~]�Cy^�\u000b\u0003̋V�+#B���&8`��ʸ\u0011����׶��n�Mp#�\u0003̠����Ǹ��4xD�_�>`�S3�ӰBv�O���\u001b�9a1\u0005a7�6Q�0����&�-t��\b�3�Z�M�٢�AO�\u0018$���j��p+\u0004hO\u0005:p�T���v�N�x\u00044�6A|��T\b�+Z���C�\u000e\u001f���9�\u0004g�\u0004����r;�o\u0001F(7��� \u0014ƦXx?��:%ĺ \\��M��K[��i�')�! 2�d�H\u0019��\u0007e����\u000f\u0006|w�\u0011]��E\u0004|\u000b+\u000fB�~���t\\�\fv� �\u0010\u0003��������\\W��[\u000e���\u0011Č�b���\u000e�2nH�ڊ�\u0004��Ç�\np#��� �MS\u0018�������<\u000e�[\"������J\u001cZ�\ne�U@���K?Ԫr\u0001�my\u0000\u0015\u0019�~�H�>\u0012�\u0007\f�{��Z\u0019bh\u001c?��O(\u0002\u001e�\u000e�&ό\u001f��4���-���#Zg�\u0015�t|A�:\u0004\u001a�/�\f�Y����\r���*����<�O\u0005\u001f�ە�CΑ��AD�\u00188��L�3[$\n'0\u0015�!G\u00199hЯ;ט�Z=����\u001a�75s�Y�\u0017��\u0017���M�qֽ��ڜ��h\u0015��k�̞j��\u0014T�\u0013\u001bP\u0014��uݷ�%\u0016�c�\u001a�(L�r\u0010�t_87�\n��H�/�*���\u0007尛C�)U|-J��'�w^\u0010U\n�xI�\u001d�KΩ}�i��ZȦr\u0004\u000f9�[_�� \u0000�8�.Ж1\"\u001c�ʍwH+��\u0016�\u000e�\u0004�д�Mi�J�\u00154��'�]�����8\u0015b3�6���\u001c����SC| E�%�u�ހ;����~xt�\u00039T�9}�F�n�|Xť��I�%�@�\u000bOj�R\u0010l:Þn\u0000�sG�7iW!�|�OJl�?���f�)ey]���@G�~,�\u001d��~����A��\u0018L���s��\u0015n��\f��I0R�h\u0016e��C\u0004�t@}�\t�JR=���\u0017�j�w���u\\���\u0005Js�| =�{5��:Z�)�\u0016��\u0012�\u0012����E~��H,-v˜��F����/�\\�ʭK�~Z�ʠ�>��\u0017d��\u0006�\u000b�*�\u0004G�����q��|,)2s��]�\f\u0011\u001a����:��]\u0015�fE'\u0005D\u000f�(.am�W\u0015�Z��<|{��h�m��A�N������V\u001a���1E'1�\u0005!���3\tVFM1���\\��\u000b��\u0012\\JYUa��1�S\u0007����>�=߆��A9\u0000,�\u0004�\u000fTh�we���ب\u0007Y�#,��˧� nJ6�\n�<\u0012YH��9����\u0005� \u0001R�՚���bG͉��������&��\u0012u��\u000e��\u0002ͦ�b�Z\u0001�\u0017o���Yx1�1ߘt.;`�ZA@z�S�=��<���鷞\u001e\u0019�Nq��\u0010�H�d��n�@)%9�s{Q��mT\u0012�D�SVX�͓�\u000bT��w\b\u0003�\u001d\u0013Rn)�A�\u0018`����} ���hs�I.���\u0015�M�ɬ��>��6�ƒe9�z\b$Z:��$d\u0013$NƂc\n؛j\u001f(<\u001bm��O+fX:���\f\t�}�\u0014C���\u001c��\u0006\u0004�%\u001b$z���7k\b�\u0015��;ְ�i�E���\\\u0019=\t$�xpid���Y���(Nj\u001f9�F�n|���\u0018�=�\u0005�EO�>Px��X�e�fs�xh+\u001a~޸P��r�!�pJ\u0000]�\u0016i\u0010���g�E�\u001e3\u0019\u0002��tu�\u0011\u0013CI�).J��cE*�.�\u000f�i�\u001b\u0010�^�K�����8��\u0016\u0019���ϋ��?(��n#Ѕ��\u001a��\u0010\u00037\u0003��\"x�7\u0019�0G��K\\��ȑ�\u000f9J\u001e�'rE�\\d\"��f�\u0017\u001f��5\b�\u0015�\b\u001f5?\u0000�\r��g\u0001\u0017�jG`��\u0004��dF�&�����(����U\u00048�\u0011\r�)���9\u0005\u0002e�M�=\b�9\u001c��W�{�\u0012Y�AU�\u0018t�����D\u001f7\t�?��;���{�:�u\u001d\u001c\u001e%��œ+�2�7!�l�RHp��r\u000f�\u0016X�s�o���e�5>��s!�ok\n�8\\f���`�&@\u0000\u0016��\u0010�'k��w\u0016~P��VzQ���\u0002\u00010�6��޽L�\u0014��u(WB\u001a����\u000e/�d�W\u0015+�7�c�\t+p�K&�ơ��\u0001c-t\b�\fϽ��\u0010�ӞQ\u0017��x��Ѕ\u001f>;�\u0014a�:uj��Z���3\u0015%(�^��x\tY�i�禓/�$ߔ��\u0011ҎOԧrP\rW,~;\u0013o���G�\u0003m�\u0005)n���h�u�كt �Z#L��y�9����\u0011O�qω]\u000f1�\u001b��e�>U���ò�܄���'\f\fs�'�L�p���h&o�S�\n���+\u000f���\u0014�%-�n��y�V�VeIU�AF�\u0018���L�\b���\u001d]�7l=d����\u0015��4\u0000�\u0003���Q�^3L)��\u0017���[���aئ�s�Q�z���ܕm��Mlq��\u0006\u0002\u001b�~*�3�R�~���(ȩ��VV\u0003��-8��\u0016\u000b\"$�J���2�� Id ��A�ŗVnHz\u0015\u0003c������c�\u0015��b��N;����iR��(\u001b>DŽ�\u0019ݷ\u0012��+�Kk��\u000e$��یO4\"?\u001b&\b�hsq���c:�\u0016U��azR`�ʍ\u0011�\u0002�9�ZD�zO\u0019\u0013��шf\u000f��+k\u0015\u0013�\u0000~I�ʣh�M\r\n}��\u0000�\u0016�ul�\f\u001eEܪ��Y��\b!�B3c|7S;��u���C���g����\u0012\u000ewn��b�����\u0007�\u0003���W�nH\r��_�j݄�VF6��A%�\u0018���L���\u0006\r=��\u0013/+\t��T�\u0015�\u000b�;���gy����R��bn�w�d\u0010Z����6M+�6�z�/���)\u001f���}�\u0003��\u001b(\u0000\r�[3���2�\u0001�a�>�\u000b�+���-����09<\u0012���zK�u�\u0016|�\u0011S*8��`#�~z��D��\u0019Y�h�\u0018���#F�~\bzi�'�!����(��t�W�i�ux2\u0018&��\u001fu]�K,�V?\u0018��Bg�S�\u001b�4�ED�ȼ{��ZJ����y��,��f􀾜Ǖ��\u0002\"��x3��O\u0014\u000f��haf��\t\u0007��zx�?ħ��dus���۵u����*>�u��5D�\u0007��4\u001d��F�\u001cs�.@\u001eۣA\u001e�\u0018����bn�C?\u0004 ��/\u0019���#�.)3������V,Ÿ�N |\u0014d�q���Fv5P�>1��-Era\u0011B�}�\u000e�K��c\u000b\u0001S\u0015I�;��7$�,b]\u001f��7����=l\u0006�b���р��(\u0017V:u`t�@��*+sCE�-\u001d��\t@\u0018�e��ºۋ�M\u0002�}�\u0007-?���`��'�(-G�ba����\u0017��ܾ����%S�\u0000\t�.Xh�n�,M�!d\u0019�5\u001d>\\v�_S�L��|0�/���\u001c�i��>c\u0001��_\u0005\u0012�\u0010�(ˉQ�\u0003\u0000@��Fmڒ˩���?B��b#��S\u0002�5j���\u0018�\u001d�A\u0012�\u0018Ā��l\\��j�:n��*\u0000UIt:Գ�2\u0018.\u0016\u0010�_�\t3`I'}WN\f\u001f��E\u0011(�A:�yh@K��I2B�\u0004�>��\u001a��X��\"\r�\u0005xY8�V��\u0003&ȋĉ��W\u0015�T{�\u0012���q�\u0005��r4��`˵�g����z��D���\u000eB\u0000�\u0019ұ��v�?\u0007�\u001c5\\\u001f�9;�f��I�!Jh�$7��\nE�&�YB�/���\u00191ˡ��7\u0013Z�'\u001an\u001e�ɇ���C�B\u000e|��\u0006Zr���\u001dҽ��Qj6u\td;\u001cv45��M�\r\u000e�Tb\u001f����v��.�!�A(�\u0018؀�L�\bf��C\u000f��E�\n�`�̪\u0019⡀¦�\u0016\u0000(=E`*b��w�\u0016�5��m\u0011�e\u000e�\u0001��\r*)��%�f\u0001X:�ZkN�\t�����=d0_��\u0018\u0004r�������IM}L��V��\u000fj[j\u0019�5�4\u0013\u000f�&�$�A\u000b�\u0018��MU\f\u001e��\u0002���~˙����r�M��u�a\u0004\u001d\u0015�ae���\u0013�\u001c�DB\u000f�WV\u000f�\\\u001aW\nG\u0007ڧs0�\u0013�\f�O���j�1��ݎ�\"���I߫���\u0006��\u001f��˝�Q'\u0012��s_�S��L\"A��G�e \u0011f��d��z�i\u0007ú��pj�\u0014\u0015#�\u001870�MKб�=\u0002�\tAx\u001a@|\u000f��,Ԓ9��ϧ\u0019\u0003t�L'�\u0013��T\u001c;\u0001��,�N���\u0012Q{\tʩ���U\u0007�ca��KB\u0018����S�\"��+��h\u0005Ht��\u0003����\u001e�=\r�D�M-g�2-'_x�H\u001d6&2�6���\u000b$�A\u0010�\u0019\u0000��M2gZU'O\\�7\u0006���\\��r�>�!�� ܺA3'�-\u0016�z��\u001aG���\\��ʊJ\u0002\\\u000e,;0ÀO�sIz�?\u001bL_SXF\u001f�3�\u0013D\u0006�}\u000f\f?���\u0018�,���&Iyi�\u0017��wĮ�Jl:�-~�7e\u0011n?�fJh�\u001d2�Iϥ\u0012����(_\u001e��9��\u0007�-h,�\u0018,\u0017c\u0002_�8z~�8�\\)�ӹ�@�\u0005f\u0011��>J�����Ѧx{i�q?������kȧZ\u001c�چ�*^_|T�N&�`�s��\u001a\u00036U8��\u001a\u0019��Z�s��ɝ��\u0014��3t=�6 @\u0018d�\u001fg��\u0017A�V����x�d�A&�\u0019\u0014��M{�\u001321��lJi��\u00124�*�x�A�`|ȇ��vu)\u0006�z0�:g²����\u0019n��~�z4���?��s�������ѹ��%x\u0013���\u001b4�\u001fFp�P�X�\u0005\u0007R�d��$ؾs3gG�\\;T%\r\u001cZ�i.�i�XI-�+O��\n\u0006��\u001b����6]�(�\u0002�,�7.�ٙ�d�N&B�'��k\b8�\u0000��\f��|�\bd�E\u001e�_��4��0[��\u0000�9���0@7CQ\u0012|��\u0003��\u001d��ä\u0011��\u0013�S�g�#]8�\u001b\u0019� 7���X�\r\u0015���o\f\u0003����M�VoD�&~�'�\u0006;���t��\t���P%MrJ2\u001f\u0000\r�\u001c��}���,WR�A#�\u0019(���f*i���Mt�\u0011OE���\t���>��k@t�ە���b��f�闛\u0002~ޜ�fk��\u0013ɩ�\"}U\u0017�\u0000@\r����.��\u001b=\u0017b ������1uĔ,=�\u001a<�c���5\u0017�\rj�F\u0011��UY\\w�~�\t���`I�\u000b���Τ\\R�G �\u0003\u001b��J�l�q��{�{���\u000f��/�[*u[�bbw6�w*�ҭ�cٜi\u0004�u4�=�O�0؄T��0\u0002��Xs�x�70\u000f�a�IMО��8\u001dp��L��0/3T�#/�\u0004�*ZR\u0002��E$�k\u001c\u001b\u000f\u0000�kf`�\u0001a�{]]L`i`o��F�?*�\u0002jOX�m��\u0011�����@\u0013\u0000�)l�\u001f�A)�\u0019<���d���~_h������N0�\"��\u001bm\u0019X��a?�cD�\u001e��-�\u0016}~KxK\u001e8��\u0001\u0002��4f�9\u0003�\u001e�%g�8��#��IC���K�M�\\�D���UJz\rg���C!��}�ޘ����\u0005�6\u0011���Gؔ��E푫\u0015\u0006����\u0011Qx�؋e������~�n�N�Ǵ(ȿ'\u0014&D\u001b\u0001\u0000I!�A)�\u0019P���b\"(�@W���Q��{��3��+Į��r'��u���\f%�͟\u0013��i@�����\u0006x��:%Z%�\rE�J�mT�@r����\u00072�Ubu\u0013�[\u000eb1}d�|�F�C�M��R���\bG\n�R��D+�e��\u0017s�v|;�\u0003��Uu�.j�z1EX��)헙\u0003�T\u0006\u001b���X�P���()ow\u0011��KS:��\u0011~�\u001d�x����\u000b\u0011:c�̏ns1Q+�\u001d|EZ�N�\u0012���\"d�\u001cAZ�U5�?\u0006��Q�\\1\u0005�v\u0002\u0005�x\t7B\u0001�DD678jដv\u0003B}���\u000e�� aEE�j�K8�\b�iz=Y�\r1�C�\u0003�A���K������Fゑ�wd!;m&7p��\t��ţA\u000b�\u0019�����\u001a,�\u0019�\u0000;T\b\u001eD02�`�ZV��?��R\u0017ls#�X)�)�vXk��\u0019ߧJj[\u0016�Ǘ�w��V�D�t4|\u0000�R7�\u0016\u0017\u0004GZ)�x�Y\u001a�����\u0005q'P�éG��,�\u001e�\\S>!><-�VA�>\u000eQ�B�Q:��r�P��ϨR\u001f��\u001dYד�\u0012��\u001f�Fc\u000e\u001b�h��E��._��Q��4B`;���>q3Ł|]�^��Gn�x8��i�#��o�FD�Us�\u0002-]�s�A;�\u0019���Lր�bZ{�z�T\t�H�ڶ�NVE\u0004�\u0000Q���\u001c�Ӎl&��\u001c\u00020h�3�[�(����D���\u001a!@v�.��#���}q_Toab����#Z6�9`i\"����#\b���\u0013<�L\u000b���}ߑ���,�\u000boLsu��k�Șg|\u0005�/��I�w@�¬`�\u0019�\u001b[_�vh�-���E��C����\u0002ܯ@b��1,��Ā�ʠ\u0002�]�@�5�;n�\u001d�ظ�,���\u001f\u000f�����\b�t\u0003��h?d��G�[��2�\u0007\u001aa����\"�O\b3���~��ַO�\u0013�\u001f\u0011�o��\\��\f̧\u0002\u0015���\u0014��\u0016wT\u001crm2:ƺ�\u001c\u0010V|)�\u0013�5���F%�\u0015�������\u000f�\u001aA���Z��A0�\u0019Ȁ�M\u000f\"�2l_ٖp�J��v��,���oL\t|\u0017X\b��j0�\u0012y#���\r�\"l\\`]ŝ���\u0017Qb5��F.���@?�*\\�\u0017ƒ�\u0000�gL�b�+����J\u0005�Ę\b�A�]c$�y\u0001�\u0007�)gk\u001eH\u0018�e���\n��%K1�I�X����\u0005X�cG'�J��\u0006�����{���(=UX9n�?;��Z�0\t�?��\u0015B�\t\t%��������L/rR�\u001b<�=�ǒ �|NJ�����>-�Pk�NJZ\u000bsJ�Aoi�\u001e�X\u001cz)�\u001d��M\u0001+��\u0019*�����\u0012�)\\VZ�hf�\u00148q���M�\u0004v�\u001dVX6MP0p�p�|��\u001f$f���<ěr�?��b\u0014�Y�e?�A\u001f�\u0019܀���;{0�\n\u0010g�WBI�n'sJ�v,������^U@O �ą�8�`o�\r\u001f/\u0012�m佭���+���\u001a:Z>��G\u001fx�B��8��Fx���2���;\u001d�|���h�u�g��\u0012\u001f��|C���)��4\u0014�rM�6�\t�\u0018��3S;�����7̈́I\u0015��\u0005:\\aڙ\u001a�-D<��7)%�@4\u0003[�5o��\f�p�׍BK�:.��'�b�;��^���\u0017��(���\u0003m�K�\u000b�ed\f��8Eȴ\u0017_�oJ�YV��z'��\u000f�3�\u0000�D.�p��ڌ�V�I����o\u001c\\�6�7��*�����@l�-k�\"���M7�'�A<�\u0019����l����\u0019\u0014G��H� _R��ZH�\u0000g���̾��<\u001d�D>k�I�:�Q\u000f�X^��}uᥟ\u0007;�z��\u001d\u0000K����n\u000b�\"���ym�V[\u0007C��\n\u0004��\u001b��S�0�Q�ޯ\u000b���I�A�m{\f��3\u0015��'4+��'�\u001eo��5�\u001fV��\u0007��\b�\"��ǿ6��d��ˈ4v�3k\" ���xr���\"\u0016�+�;\u001c\"\u001eQo+��\u001eA\u001e���2\u001a\u0011\u001bG\\J0\u0005G��b3yT�=��\u001a�\u001dU��ᤄ�����`I\u0018��x��\u0000\u0002��Amv���ൢq�2�8\u0002P������\u0018ߑ#E�\u0019*\u00192CT\u0002�\u0013\u0015\u001a�\u0010�JP�\u001aW�\u0019�%B+O00k��V@R��AR�द:�\u0002\"&�AJ�\u001a\u0004���l\u0014�\n��e>�gon�m�#i(,������\f�m�|\u000f��\u001a�S�9���wZ�����\f-��G�\u0019ϱBq\u0019�sUHN\u0004m�e�X��'��-��\u001d\u001a-pviD�:��\u0014xh\t\u0012Z���]�E�ا*`pK���yz�\u0016D��*5C��d?L_&D1Bb�����E��k�҅\b=�\u000f�ѵP�4�R��\u0015��|��~_ԙQ\u0001\u0006>)�X\u00134Gq�:�z-��؅d��tx������?��B�~Z`#LhV\nW`����!�ܛúV0�\u0013�@�#�{��|�Q;eQ@_�H�\t\u0019�v�����\u0015I>�\u001f'w\u0011��5�\u000eo$\u0013����.\u000fg�R���\u001c�m�':Ω2~�`�\b� �\u0012�X�r�څ&n&�A+�\u001a\u0018���b��H�\u0013\u0010O�z�#o/\u0001z��k�r���4��;\u0007����<�@)?��l[���\u0019��\b��e\u001d\u000b1c��e���\u001a��\\k��u>>Jw�\u0004N\u0012���?��ix\u000e�i���*�S{��x`+�� �8��6'��\u001b�@ԝ�\r�yG���r��\u001e��O\u0017�-/�R��\u0004���`����v\u001c\u0002�x�]\u0005�Z��\n��w7�\u001c\u0007׏���\u000f\"�i��\u00019JH��\u0007|�|�(���]���\u0005��=�\u0001�\u001d*@@k�QL}A��+�#\u000b���.�na��\u0005�\u0003�B.E��F��\u0001m\u00017aX�Q}\u001bH�-b\u0003�Y1�b�~���\u0016�)�\t�Щݭ���䈲���ÿ%'�A6�\u001a,���!���7W�)Ң�[�j1+@r��P�������WT��\u000fV\u001e\u000e��`��\u0013��\u001a\u0002���i<\u001e9!\u0014\u0005 \u0011��_F\u0012B__:�G��ՐJ�iH�?�>jP�WZ\u001bX�Ʉ�;�p�\u0016�\u0003F#��2�E7�����]�d�Dת҈��\u0010�L���(֣��\u0019����?m�ٵ�t�@�\u0016�D���C�7xo���\u0001/�L\u0012\n�`ݦ.;�Ī+�n��۟�\u0005�g`EA8���lmp�[�j(�h\bg2�~I#\u0005�Nt=#��?k�n}&�N��ժ�Y\f8\u0014����YV*:��H s^�Ž��t@�\\���\u0004d�3ur�L\\�C�_!&�\u0013A�>�]X\r�X�S6�Έuf;\nu-�A\u001d�\u001a@���d6�\u0000a+.2\\-U��\t\u0011�x/��2����PMV��m���T^?\u0017:3�n[Q��]+��Z�W|��{溓�3�~�y��\u0006�j�p�.�\u0005/KԖ\fPH�]�M��`p\fs_���\u0005b��N\t���\u000fj��\n&�dilK���k��,Ԍ\r�\u0015l�U4F3\u001e�x�4N\u000f�\fi��<�E�\f�H|J2��+M\u000f'[&�\u001f�n?�O\u0002���Kf�h�_hl�k�rEw���4�rs\u001a\rRt�\u000e$\u0002��BN-�\t#|Ye�RdG�3\u001bZvi*T+�Ǝ\u0014�\u0013��ֹ�9\u0007���\u0014��\u0003T�c@��̙2\u0004/I�(��& ��:�A\u0004�\u001aT��X���by�\u0017\u0007\u0006m�7\u0002�\u0016�3�g�� \u0016�Ս�W�M�\u000f\u0007%���\u0011\u0000[@hvI07�d\u001a>���U\t\u0012��ed\f�o�\r\u0012�}x&�}k��ao-�6��� 8�`\u0007m��\u0016��ޙ9��\u0016�\u0007NT�B��F��G��\u001b�1~��\u000b�Iw� ?\b]�\b�\u001c|H\u001a�$�\u001c3�g}%�\u0010E��\u0016ZfU����\u000f\u0013�dT�\u0006\u00002����g�eK\u0017�R��� �Q\u0003z��p�B�\n㍥\u0016\u000be��\u0003�g�V}<-Ȥ�\u0019Ost�M���< PʴA�\u0004B�H�?_���͸u#�N���A �\u001ah��L㟀e�})�夹\u0012q\u001a\u00116\u0014O�\f.��+�T\u0011\u0007���mImL���2�͜�F�|�r`��\u0004>Y��D�\u001f~�:�sdل?]�M�\u0000UJ�@�jL<�a\n�S�DT�Ō\u0001�Q��M�*\u000fF�r1�\u0015�u�7����-c\u0014�UR{e5g�v&��\u001d(\u000e��mM�y�\u0001W�\u0019D3���+\u0006\u0002\u0004FB潈87�\u001f��[�\u0018�^�k�\u0012���@$3r�'ԏHFV�.����E��c�j��Zb\u0005�\u0018��*���*�f�L��0��\u0014���&���?�����\u001b�s\u001b�\t��X\u0000_�zю�.\u0012�n�!6f!�/\u0010��{[$\u001c\u0004�ǰ�Ű�,\u000ee�p]�\b��0]\u0002NA��tj|�\"��;3�(��I��]�i���rxnA\u000e����,.d��\u0001��9�2�\u000b���L�J�;\u0005�;��\u0011,{�\u001d[0|\u0004��\u001a�\\\n^���X7\u0016\"�-��pk[{�s�6���p����R_B�S���\u0018�� �\u001e��\f��D�1�\u0011��*��(�\\$^�Y*��A+�\u001a���Mz��h���`J\u0002ךQ:#��\f{��+�\u00169\t�\u0013��\u0016�\u0002\u0015ks\"�g7�轖����T�l�\"�ܖz^l\f>6�<ʍd)ʜQ\u001bF��\t��Y\u0017aF��T\f�J���~\n(�����T��\u0016A����s�Y�9��\u0004M��\u001d;��\u0019�ß�H\u0005���4աmҒ���KЦ�w :\u001bd8\r-B�O�\u0003��(�r�z'�Qy���Ȉ��6a\u000e��5�G��\u000b}�d�>�B�\u0018Ya�j��\u000e�7PT���4uG�v��\u0005d�l�qe������S�Ύړ�3\u0018tV�>~�S�c\u0012\u0017�#�J3;$��\u0012^c0\u0001e���\u0013�,0\u0002d����>@\r����-�A\u0015�\u001à�L�1N3�+]`I\u001e��<(�lqK���$�_�m�˅�K��*\"s@_A颋oNXf\u000f�y[�<�\\�\u000f_���r�E\u000b\u0013\n��Q��\t�eiV1\n�}\u0015」3\u0000\u0017��`�Σ�zw|U#f\u001cp�B�X!�B�l��`g���T+�*id\u0004\u00129̱�0�J���\u001e\"b70�����\u001e�Ƭ3�5��!^C���\u00063����\u0004^��l-��\u0015L�w�2��=��\u0001�R�\u001d���'Ra�2fr@�\u0018W�X�/m��%k\n({xH�\u001b�L��T���\"���{迍Lq�V���v\u0004����>�\u0007���+�)\\Ȇ��A\u0000�\u001a���MS�b����`~]\r8��L6jwÇ\n�\u0000��$\u0016�s�\u00035\t����}+:\u0006i��w~\u0016�>u\u001c��ַC��c��b�-�Ͻܾs��\u0004c�-�\u0011n��\"K[�}���\u0017P��\u0016�\u001bh�.�\u0016ps��_�8�\u001f������b�\u0012AF\u001c��\u0001�#r�\u0014x��ªm�n�����@\u001d\u001a}�J�i\u0004\u0016�)t\u0018X+V��,��眩�\u001e\u0001Q\u001a����p�]c��ǔ�?[�q~�.�ޑ���\u001e��\u0005\u001e]�ŜP�E�\u001f\u0000k�K\"�\u001c�$\u001c\u001f���^\u0010x*���g�\u000fANN՟>#�@��\u001a��L�v\f�Ge�{nb\u001f�~����v\u001dTfb+r�JE\u001d���k������8��\u000f!�:&=�c�/�7\u0003tS�8V�\u0014�(>�!OV��|�Qi\u0005�\r\u0000g\u001d�Яm�Qk����4\u0005O\u0005��s�)�'u�@1\u0011[p�UsaryE!�U<��w�؇�Rjl\u0011^x��@f1ہ�W�;��ȫ(DS������o�\u0014�-$\u001d�\u0019\u0012�.p\u000bQ۴'\u0016�/FU�\u0011����^�ʣ7�.X��ˌ���\\\r�\u001f�^���\u001c\u000b�\u001b�\u001bA�#���\u0012���\u0001�5�$nEq\u001f���6�A&�\u001b\b���a����Ƥ\u0014oy�v�|Zy�\u0014�����\u001aAx'8F�\u0017�h\\O}�Y�l�\u001bӊ�\u0019��cD�s�����\u0000�yӏ�w�&�KƧ�}6�J���_s��Q��-Q2��{���j\u0013�\u0012Ge\u0005��\u001f0�i�\u000et�ZקE\u0006Q\u0007���-�Q��S�\u0019|' �0c�29H���[\u0011������&l\u000e��{C\u0014�s�����;\u001dp� A�N�$��M̟� ��ǁ�(\u001c؍'N\u0016TU\b�y\u001f�n\"�U��\u001a(�\u0015�\"V����[\u0006�\u0005\u001f\u001e��̵�Q��\u0018�ʈ�j��!�\"�ȗ��L�\u000eۨ���I\u0013e+4�?�Q�6�O��Hb�͵\u0015�A\u000e�\u001b\u001c��L�G.\u000b\u0017\t\u000b���\u000b��bd`�府^\u0016�\u001b$A���\u001d�������`b\u0012&�\u001c�g��*\u001c*��Ҷ�R�\n$�n?%\u001f\u0016w�<\u0004��H��Z��\fo��\u001b\n{Q\u0016V>@�l�f��##}%7\u0012�\u0013�Òy\u001e�M|f�\u0012\u0018\u001e���~���%��祶�ƀ!\n#\\'kT��0ʿl\n\u0002ѝ�l@��ă-(�H1�VJu��O���{�\nC\u0015��.��0F�����\u0013(^��R\u000e���P�X�w\u0006F��`\u0016�ku��\u0011kG�8?�p�n���\bE��\u001c,�c�\u0015���\u001e�\u0001٩xi�%\u0018f�#\u0003ۣA\u000b�\u001b0��L���(f�gs��x�?\b/�\\x_J�#��뼗�\u001d��f_T|\u001f\u0007FV\u001d�偍}6)���mN\u0010ZH'���/(�E\u0010y\u0001K��$)<ֺ��^�̰���2��C��\u0010�Z!�\u0013gV �I�Ȏ�eT���\"Ƃ�zX;$����K�l���\u0003{a�|�Oxwo�+H\u0006����\u000fU�'\u000b�A\u0016�\u0006�\b:\u0004�x�\u0005��1�\u0010\u001eXL��7�!\u0011��\u0016��$~Ϝ�l�W\u000e\u0019�4���\u001b,o�z�\u0018���P�_�T�R���%͊�P�s��\"T�\b�\"��=\b���$���H���)�Ƅ����A\u0019�\u001bD���cr\u001doטשx\u000fr\u0006n\u0014)�!��-\u001cm�^!�[:�\bV)�XȰ�\u0016ʛ��E�؛̳��\u0016�D���X\u0019��k��q�\u0012I�\u001d\u0003%���i�:\u000f>w���>*��T��ݯɽ:5~���\u001c�1N��\u0013?��\u00174�4�aT\u0001M����G�J�\u0006O5m\u001e�ld�}�!+\u0012�v�O�(VJ���\u0004�!�\u0011�<&l\u00062(�$��d�ߓQ\u0004\u0003��y,j�܂~�fRQ='��\u001dW�\u0007y���ݕ}7D񡸽��\u0010n��\u001d�p\u0014�'��Rm8��7�k>\u0010ao��;^X&/\u00065\u0019��,��^��/�P��fݰ\u001e#�0\r�)�_|�'�A!�\u001bX��L�lqᴡQ� )-�W^�'qK���yڿ�\\l}ū��ؾ\u001aV��pB\u0012���fа-R����B�\u0019r?h\u0016�ۥp��=B�1��F\t\u000e-��u\u0000�\u0003wv~�����ܜ�:Z���������Ǿ\u0014��\u0011��?D��\u001e�F�O`\\�\u001eA\u0011�\u0005]j;\u0018�����\u001c:�R8�封�\u0011K%03�vz\u000fe��:-�\r\u001by�2F\u000b\t�g`v�]\u001a��n����\u0003\u000b�8^V_[P�t�$׀\u0018�R_>�\u0004h@R+��\u0005\u0011����3�\u000e��\u001a���o\u0007g�4\u0015a�����;X�ǝp!L�\u0004<�\u0013���]��ManCp���8yAJ��3\u0007W\u0012���Ai�\u001bl��X�\u001b��!�L�\n3o;�h�q\u0003]\u001c6�\u000b�\u001fN���\u0011�G�%\u0007,W1\u0001�f�\u000b8#�t\u0014ņ���CP�\u001fLd\u0011j\u001e\u001b6-�\u001a�>�D��\u001c\u0001M�8��Œ&���S{�CʴaK]�$�ܨ\u0007-δ�|\u0006�DR���\u001a�,!e:�7\u0016��k�\u001fz\n\r��\u0003���_��J2Dc%����:���u����\u0019�>z\u0013�5�f��'�u)f�q�&�#��Ls�xmj\u00041�Fɛ��0�t�\u000bb%\u0005�xv\"�9\u0010�v��T�L192h�\u0002b\u0006~��z�$�oa��+�Fj�4ݽ�$�[lGK;B�c?K��=UV;��⥫���r\u000f\u001c�\u0006R\u0017Q�o�А`ی&������ߩۡ܂c��b\u0007&'��\u0003d\u001df��,\u0006|���Ooz\u001d\\8��r��C��\u000f���lݴR\u0019,��*`v�A\u0011�\u001b����b�h,�jC��\u0011\u001e\ro}zpB�7hN֏�?� �ͼ\u0014\u0006�|M\u001b�L�(\u0015\b�\u001c �r+\u0000�\r4Ѫ�2@ly,\u0007\fm��ٕ\u0017\r>=M|��sث�h���ۦA!��Ց�{�{�40�c�\t��\t_�?lEu�V�\u0019)\u0018�K�1؇��\u0013�5\u0015��1���>_�}\u001e�\u000231���.+�fA��2)�\u001a��1����\u001d�G�z��\u001c�~�(\u001eѷ2��7:��R\u0001�\u0019*�'��0T�\u0015X�ٶ!\u000b����`�\u001b�-���DD�� \bD�\u000f�=�,�'eh��s'%\u0010H��r�q-?{�j<ԉ�ťfG�\u0015�Q�A\u0014�\u001b����om����/%��uz�����\u0004�\u0007�T�\u0006��;'\u0011s2�f��9 3�!sc��0�\u0013f�)��=\bS_�\u001e�\u0000�z�\b\u001f� Q؍\t2j���\"6b\u0012܌���\tn�o�/�`�&ar��\u00134b@9���\u0006��F�(��Od��->&S]zT\\�P�k綄F��/�Q\r��\u0014�\bq!ﰁ/�0yf��W���k�,�:��[����p؊h�'*�˲�\u001aX�\t�\u0003R�\tQ\u0012\u0015�`{�2S$��Lj�-+-\u00056j3��G\"��جs\u0018[��)��wL�\n�\u0015;�h$8OH�����7���w]�vP�A\u0017�\u001b�����)�x�ջ޺����:�/\u0012c�ԛ��<.��e�N���3���VkQ�6���\u001d�r�\b\u001f�7\u0017�[��d��W[\u0015\u000eb,\u0000nJ\u0002~�XHV��؉d�d�H\u0005�XV\u0005�����\u0000?�&�\u0012`k��0��\u000e괋\u000b2�2(�(���\u0019$�\r����KF�\u000fg\\!w\u0004f\u0019l��\u0004�.���\r��\u0016C��̽\u001d����5\u0005�㙲��i����j�3��5\\�6���cO�<�Bw2�� ��\u001eڟ\r_v8�+��f����B�D�\u001a}��\t{�d���_�}ߨ\u0013�pA\u00033s\u0013CfeJĞ\\���6x�A\r�\u001b�����O�`�$\u0010r�z\u000e�\u00186rc|�A������#�\u0016��3�J\u001d䀃\u0003o�X>�\u0017\u000e���J\u001f�b9\u001e�\u0003�6j����\u001c�T�\u0016Cܼ0��3p�I�\u0017��A��!p���Ϟ���՟�\u0007\u0014O�\u0019��`�\u001aOKiq{���[/���.��J��Q9�*��\u0019V\u0018Eu�����\u0005��lv\n�\u000e\u001bih�Za:�j�Y�\u001b�\u001d���xeƷq#.��\f\u0006\u0007T��5�6'���\u001d2\u0014\u001a?���m���G��vu��f��z�9G�ZO���\u0006�=�_�`\u0013�\nO��q�\f]f�_mrXP�5ލ���N?УA �\u001bЀ��\u0012~y�w�X�GX�?���\u00070\u000b{S�}�'�1���Q��,�N)H�\u0016\u001d�\u0002ۧ�V��%��\u001e������Fa�\u001c���=c7����<.3a�؃$��\u0004�Ӫ[y\u0011\u0018\u0017����\u0004~����gU�Д򮢪_=dL�6�����\u001b|�\\�N�\u001a=�4,�\u0006\r�\u0002=��Sm�H\r<���Gio\u001e�Y��O��\u0010��r\u001f�+��ߕ�.��o5��7����~�7\t��F��D\u0005ܔ\n��\u0018?\u0013�yZ \u0017������� \u0013q��OO��\u0019�N��`�E��F�\"�\t�\u001d$R�tTռ��^�G�$\u0019��wWvG�\u000fG�MF����5%��A/�\u001b��X���J�`h\u0003L&�\u001d^7\u0005�\"Tr��V�y�C�O�\fVh���aU���DEpl�w~\"��6�nj�_8j�Q��G�p�@�_\u0016\u001cx����\u0015t���#����2�jʯ�\u0017\u000f��gU�'�E�\u000e�6�{rb�V���6���O�4d1�|[\b�9\u001b��\f`��kE�U�%�\u0012\u0016���Ȗ�\\wI菶���%ه^U�k;!��\u0010��L���v�E��^\f�B�B�I\u0018K�\u0015���bgt\u0010�����.���B՝X�W#�I�cSE5\u001c\b�w��ʮ/t�=qk�M@���ǎ~�>\u00165�\f�4r�؉�Y�\u0010TWcz\t��\u0012��\\���AJP>\u0001 r\u0001Ӫ/@�A\u001e�\u001b���L��F�5\u0012�9��h�q���\n�:��\u0018ö�L\u000f�U�s\u001f%����HRI2����\n��\u000e���\u0013�p�Ar�F�gU�;�l���o���x�\u001b��\r�e*��^�\u0015>�yFrzBm\u0005l\t�ɪ\u001a�\b\u0014�?�W�k����1���aTf\\f]�o�R\u0014-{�\n���6�GB!u 6o=�ֿ�|I�~���3\u001f1\u0004\t\u001bZjG�c3gK���ܷ�R���\\�փ\u0018�d�G���S4izM�LB8̈q\b\u0013�\u0006ޅ�8���#��/R^\u0017��.\u0010�J\u001459�\u0016\u001eu�[\u001d\u0007�\u000e��K�\u0010\u0002�\u001b�\u0000ݻ\"*�\u0015\"�p^J�[|-�A\u001f�\u001c\f���\"3�?Ĥ5h$��\u001b@�\u001a�#�H\t���Τ�d��\u0002\u0019����\u000e�x��w�v�J��_��\u001bW_$\u001aP+X����|V��J3�/��b�C��p�ށە\u0016����7\u0006����_�'=U�H���Qfڸ�o�\u0012,�\u000b]�\u000f\t��tI�%F�\"��53%� \u0013��7���˙G�]b��\u001b�e��d���Cub��\u0004X�U�٨\u0012aa�?\u0001\u0007�Z�>Yz���_�7`\n\u000bZc\u001b�\r�2�Q��8r��X�n�G�\u0004_C�H�\u001b�-�1i�W�w�\u0017l����QiU��v�1��-�MY��8�F��\u0010\u001fnL�)�z�B��۶��A\u0019�\u001c ��L�?�ՅJ����\u001b<\u0014=�խ�^����<��\u001bs�\u000fm\u0016�{�=w��v�4�n�\u00030�\u0004g���\t\u0002+r\"-��2B�\u0016'���:t�Y�^�L8�ߝ�\u0000�\u001f�k��/�X\u0005�n\u0014ώ\u0002�>���k5����\u001a\\(Wp!�\u0017*V���[\u0015����\u0007\u0013�)\u001c�8\"CY`Y\f��rM��=��\u0015�MC�Q\u0013\\�>\"�pT�����S@�ó8�Z�N�p�A�=e�\u0007\u0003��\u0011�\u001d\u0007c����pۜL\\y��G�����<�\u0005�Q�M��%h8\u0016+����.�\u0012�����!ځ\u001d�\\<�`�Ú��\u0007\u001a�,��TI�\u001fl\u0014�|�I�A(�\u001c4��l���@B�\u00108\u0011I��/~S\u000f�D�G�񢽞�����/x\u001f�i�}����\u001c����lC�RW�����������\u000b\u0007e�~\"�\rcZA�j��\u0019h�3̡\u0002�R�_�o\u0004\n�;�@\u001d3�\u0004\u0012 zԛ\u0019��N-W\u0006Pk��\u0011�N[Y��r��\f�Ϣ)1W�2L��\u0006\u0014�C]�P\u0011��&j4�\u0010�����\u0013iɲ������H9�\u001b�k< /:����/�n����(�\u0002�ݗ �㯵�D�*0\u0017��M���\u000eP\u0005Z�O�R��|\u0015\u0002\u0012i�_�zi\u0004ޞ�\n\u0000_\u0002<\u0018M]Z�\u001c�b�E�a�)\n5\u0002�$\u0005�5��\u0001�\u0015�G'5�'t�\r��*^8�\u0012�A$�\u001cH��1�#Y\u000eӥ#����=\u0003{a�\t��j�\u001d�\u0018�oO\u001a�\u000e��Q�3��¸���C�\tc�\u001a�Ogo��n�\u0010t)/���\n��� �b]�9!\t�[X �c\u0000ݽmTd�~zo=�z��,�9t$P\r\u00054�\u0015��NJ6��39���\u001e����\u0011�\u000b;�\u0001\u0016)�{9�if�+�\u001c*�S+�;;������d*�E��*�\u0016\u00023T�\u0014\r�\u0013ޮ��P�L&\r\u0000:\u0018���wC�\u001bX��o\n`=�ma�\u0011�ɐ�\u001d�Ǻ�3��!�zƓǛ\u0007�a��\u0013���xU��\u0012\\�@�\u001e����\u0019��\u0013vV�(�@\u0011uۍ>\\��F+_A\u000f\r\u000e]I@\u0002*�e�)���B,�\u001c\\��}a.��v\u0013�\u0016\u000f�7\u001c�k\u0017e(��I\u0016�8\u000b�u\u001b6�\u0005\u0013<�;bb]��QGLM@�g`S���X��(�`q���t%�.�\u0000]a�Xeuu���u�5(\u0002�M\u001c췧���\u0017Uy���w���MZn\u0006\u0019\u0012��i��n�.=�݉��\u001d�Y�K�~��R\u0005#\u0006?��D�CTv�@S\u0003�� ��rj�\u001c\u0014u��ɨO\u0002���q\u001c�����9�O��!%��\u0006�E\n�\u0003���R\u000ec�\u001b�>�l\u001f#�gT\u001f\u0003\n�,q�t\u0004�\u001c�{Nt�\u0006ō~\u000e\u0005C\u001b\\#i�\u0014��\u0016\n:=�^iQx�S\u00188��r�\u0002;��\u001f�v�\u0017V\"���v6�[���\u000b���r��wˍ�X\u0014�U��1X�Qyj�Z��m�97l\u0003�^\u001a�?;t\u0006$^<��\u000f\u000f\u0012�#`��5��$gpZԿ�G2������\u001c`�\u0016\b��w\u0015>�^�Dc�\u0014���2���\u0013�g\u0016O�D�\u0019t�J�H�̈�\u0011T�[P|ϝ�A\u0002�\u001cp��.�'i\u0012:ص�K7\u0014���n�Q3i�s�)�l\u00049GTH�}��X�l���\f�\u000bci\u000b^|�O�=,��Qfil�����a����\u0001��G��\b{\f�=�>�+p�`\u001e���֟)��\u000b�q&\u001c���\"�{�C^����}\u0004DžX�\u0010G否R��\u0015,-1@U\u001d�?�\"��*�#�1<;ON5�\u001f������̝��.,�$�\u0003-�0x�,\\�F37,\u001cr\u001a�\u0004\u0012)�ep�\"K�\u001c�äGv���.�\u000bJ\u001dM�K�(�\u0006d�\u0016�fD�\u001a{�k-g��S�B��\r�4J��\u001eI6\u0005YO�>~ϣA\u001c�\u001c���۷U��9�Hgk��cڝ\u000f���\u001c�E=��\u0015`X֜�5���E2��t(Z�.���&\\�\rC\"k���[\u0003>\u001a�T�.�D�\u0002�\u0013\u0000\u0017Ǯ�c�뺰{i�)��Y�����M�����J\u0003M�͓9���\u001c�/�\u0003��v�5��\tb����:������jL�\f�ĈW���A\u0010�\u001c�����:*v\u001e�\u0001hV��+2�>m��#\u001fb�G9^1uV(�\u0001�ז�\"W��Š\u0006�\u0017;�H\u0019�>�%\u001b�H��T�4Z9*�z ��u��x\u0011c��p7�\b��{��*ws.�����\u001fM��@�u���:y��z\u0019��.��F���\u0000)�q\u0000���a\"��A\u001f�\u001c���MS�N��Aja�b��GZ���\u001fЊZQ�\b���dW\u0001n���ő\u001a�\u001a��.��V�%e�\u000b�\u0019���\\�Ӻ��\u00105d��/o�\u0006��c�t,+���\u000f}\u0013�g�\u0005�\u0004۸U�h\t�����Z8B���/Z�\u0012�;L�YN\"\n�:��E��kp%i\fo��\n��L�6\u0006���BT���$�F\u0017�K��)3\u0015Fqw\u0016��Q4v��u������\u0001,��z�.�M����\u000e\f���tb`�~��\u0006d+5�\\�2�x`���R�\u0005�w�:�9���#\\dO�u\u0006@�i.f<���(�U���>~,@�\u0018V����ό�\u0015�\u0001�Y�Z\tK��tV\u001es���ɩf1���\u0018�>�\u0019\b�S$7Bd�\u0005G��\u001c㠏���V:ȇ�p)�:́���7\u001aZ���䉹\u0018%�[��<\u001c��\u0018�y�\r��A,�\u001c���L�\"��\u001d\u001aw/؟Y�\u0006��zQ���`��3�OA�6�\f[\r~c���ǿ�\u0018�\b�dw��#\u001a`��[i\u000e�2$��ǃk�W�\u0016H��o1�{y(R�8�W�5i�wA�Y8u����)=\u0013�{f\u001d,$WG_/Ա�\u0002�;<548b�N��>\u0014��Ph�\u0015��\fӔ�1v�\u0017�q{�.�v<\u0019#�34��\u0016���\"m\u0016�34��9�g+�_���\u0002�A�u[�����eW\t=� �n�\u0019\u0013�`\u0018�7��Ө1\n�NI|�~M�s^�)� ��\u0018\u001cx+\\�k�C�\u0017�T)�eL�\u0014B\u0014@L��w\u0017ڠ�\"C}\u0006,SĔ���G�i�6щj�v+v�i�8�G\u001d×~-�A\u001a�\u001d\u0010��L��=2�}}FAo\u0014\u0017��\u001d��!�\u001b0�0\u000b�\n��&�&�,]ߗ\t�O�w��D���K2)қ8�{\u001eZ�'��\f�[B�c��\u001cĈ���\u0019�\u0014N/�m��m_����\u001c���C�g���Ƕ�A\u001a%x\u0006��)&�+R=��j�\u000e'�/\u001bu�suP�\b�X{&Po�#*�\u0005dZp\u000f\u001d�������Z���ep�K��\u0003*m�1�O�k��}��[\u0012����&���%\u000e\u0005'��jl�,\u000b�Qp��\u0011\u001c��?\u0014\u0004$�\u0014\u0011w�t����\u0013�Neʛc\u0016�\"��lb\u0019�\"�*H\u0010��=�z���\"�0L\u001f\u0010�Id�@Km���\u0005��A��\u001d$��L��;%nj�\u0003���Cʡ�H�^�[y� ������Ev\u000b��\t�*�8r5�\t����7�\u0002'� �T�h��\u000f��\u0004K:�6�\u0005ǿ��Y����������\rI���srb��w��pÃ��ߵ���ʼnK\u001b�'A��^�nv\u000e\u001f7������>(�dԇT�Fw�(���\u0005�~�\u0003�ĵ&���o�NFT<�\u0017�n�)/�X\u001b)U�\u0019�\u0017H�~�C�QO\u001d�\u001c!�h�^�ֹ����UM��ß����\u0016\u001a���nf!�\u000f���Y���Ƭ�pq�f�\u0005����\u000b\u0011u����\u0016�)����m\t�1�\u0016�N\u0004�\u001f\u0006l\u0017-B�\u001e�\n4\u0018�\u001d�2��r��\tp��VP9\u000f��ĺ����\u0012���\u0007l��'�\r�R!\u001c�6�\u0011���\u001e��L�o�\u00101&$޸���S�+��(��\u001e�\u0016��n��\u0011�\"�R�k�\u001c��*hyM@7[ �\u000e����%��\u0018��Z�A=�\u001d8��L�ҩ_\u001fC�%�y\b��ͳ_\u0002\u000eø��\u0001�����nK���r9�U8�\u0006t�S�iax\u001e\"\n�T^���U�7�I�\t�i�q;��0\u0018�\u0001�E\u001c��@�\u0016*�\u001d\u001c#�����\u0013�VgJ�4���q�����0\u0007*ӊ^�ԅ�#|_KO\u0004%\u001f\u001fNu6Yv�\r`2\u0006R\u001a���:\u0012\r�BS���N0)�Ɣ!�7����6\u001bi�>\u0002��\u0007��\u0007��\u000e[e@3\"��\u0017\u0000A)/\u001d��U�ۺexVn��}3���=RW\u0013o�\u0016Lz�r\u001a�\u001b�9BJ�o�H�_b-sȐ \u001fn�vʏW0՟���p�i��Ȑ>�-���CZ\u0015h/�S�C\u0018f̎K�����L,z�EV'Ғ�\u0003�t��\"�)I����A)�\u001dL��Mz*��au&���ö���6i�e��گ����o�*�ق��W\u001b�ZX%���;ʈVl\u001f�\r�/��\u0014\b\u0001e����\u0019�FE�|�\u0000G@��\"���|^\u0005��DǏ������1�x���\u0006\u00136�}\u0016����x�=T�{��}�\u001d+��@E�zr�\u000f��#_E�T���@n˖�yg#%0\u001c�!�\u00166)��\u0010#C�2�\u0005~O���on[,��!űj�}:�Hv\t�]��x���֟\u0012(9�'���'���nϔ���4��F\u0013���9�{\u000e[�xT̲ms\u0012�F*[���\u0013G4�\r[%Ī\u0005�\rnt\u0013\u0001�\u00121��8�����\u0011۟�����\u0006��H�A݁\u001d`���T]*\u0007V~�2�\u001cB�)&n\u0000e�1�;rWA���C=Q���yaX�|;\u0007B�x/#�x�\t�J㯁\u0004��ƛH�\b��\u001e���\u001eL;0a�9�\n\u0010�KG!X��K\u0010Z�HQ����>8w^A��yf�\u0004�<���\u0018��T�\u0013��QS�]\u0007N��\u0015�ϲlJ\u0005�x�{�u���Z=A\u001f�\u0014�j����T��*u��y�.\u001b�K\u001b�h\u0016���?�ҏ�*g\u0010��=d]�.ng\t`(c�L#�a;A����DJ��f�\u0012�(���ǟ\u000e�<\u001a�u'�Ϣ])\u0012&\u0017�y$�/��\u000f�'�\\'�;3�jtT�Yi�)\f�$�'�X�G�Ѵ\u0002�)��_gc-62��S-_��\u0013;u���k�ǝ\f\u0006\u000e�|\b;\u0000�\ri<��_f\\Z\u0010G2\u000e���������\"����~q�����#��Dm9�\u0002Wsdh\u001dF\u0013s�0\"U�,�*��C��\bz�f�dѲL�\t��\u0015���g�̮/\u0001\u0005��\u000ba�\u0001�k��NX�%�cV�\"I̦%���V{��\u001f��2|�\u0013��#oDUB:����}�qٝ�dI/��K.\f����A��\u001dt��}a]\u0003�%\u001f���͉�������bNu���y�����/r�Kɫ��L*��\u0019,�\u0001\u0001Ũ����L��\u001b|�\u0018ގ�yd�\u0017\bZ3\u0004ȼW�*�J8\u001f�\u0010=e�L!\u0003��Ў�\u0006�`\u00078�G��.\u0007�6q\u0014�j��…\u0015ʿdL� ����x��?\u0016�a[�\u0003�N�%^{h_��]\u0016ϮoWA/?�uʄC`Yb܁_�{�L�����\u001bv_��I\"\u000e(�d_|;\u001f��ST���\"��\u0016u��aaW�/ɕ�j\b��5��P�:A6-ۯ\u001a�$�%����T%\u0004h?\r���\u0005\u0006P�s6��6�ނ����%��_\u0014\u00146)����mp�S\b�=��D:�\u0016��\n\u000e3\u0002M�<.�Q������5C�?{�I�\u0018���V��*�|�w�;�7t*nU��#����.7�n�Z�:�R�\"#��Z)���ӭޭF�\u0005\u000bWͤO�{�O�\u0016��y\u000b����E����99��{Zo�@s\u0013�H\u001cר�\u0012�A%�\u001d����\u0006\u0006\u0002b]c+#���i4�N���y)�\u0004���\n�%\r���;��Z(����\u0019�X۽v\f+�_���y�4�t;���c=\u001d�5\"\f��\u0013���!!����\u0011��\b�X�s�sAT!N�*;�\u001b��k\u0010�I\u0002�g!�N)���Wt���`u�N\by/\u0004�Oh����Z�\n\u001e\u001f6�1��Ur\"d�^��,�v��ݜ�v��C�e��\u0010�\u00038�0\u0003m#\u0000�f#sK�Ha6��\u0003\u0002=\u0004:�\u000b��\u001dN\u0019���^���u)\u001ee\u0017�V��\u0002�3\u0014�\u0016޼Q�QVy��J\u000b����\u0001�Ùd).��B~�\u0003��&\"[X���\u0007b3���m����X�\u0015 ��{`�A\u001a�\u001d����\fY�M�T\u0017#�\u0011d>@^<�'\rc�h�+]%�!�x\u0006*�\u0001:���\u000e@�\u0012�п���ut(�\u0002\"O_i����k\u001e�\u000f+\u000et\u0018�L1,Ǐ�r��\u001d-\u0012Y\\�=O����k�Qw��e�.�o,SM���\u001fp�)GM��=Me�d�/�n�%�b�GF늊���7\u001e���I�\u0019֖\u0005I\u0017��ӈ�r/�|��\u001f�(�\u00032�\r�{��U��F�\b���h���9�gl�\u0004�X�`Х\u0000��]ř�#As��\u000f�=�i�Jr*\u0011H�i혳0S\\[\u001a�f��\u0013>>.\\\f��{txN���=�OQ\u0011����Ф�#�IېG&Y1�A$�\u001d���L��>jW!�@���\u001bMY�S:�\u001d�q\u001fto\u0004�\u0010� \u0012�pR�\u001f���,;��(�V���BvS���-��U6�k\u0006�^�\f�\t���2�IȐ�ܶe^\t\u0012D��\b�#��Ð4��;�\b;�3�\u000f�+���\r�\u0016�4�^��� ��'����A���Y$�jR�}��w��ך2�s�#}\u0007� \r1\u0010����\n�q�Hu�v`6R���ݺ\f�]\u0004_�\u001d,@�\u0000ɸ�/�`�i|��̀=�F-\u0014b-�r�Ԅ @\"�u�%�\u0002+\u0015��\u001fP�����-�0�\u001b\u0011)��ݜ�=v�mk`0�����\u001e��\u001cK`�Y�v#i\u001d�\u0002\u001cn���\u001d?6�A$�\u001dĀ�L�O���<���\u0013\u0000�i\u001e��%;�\u0019�`D�-��?i��~�\u0007���\u00136�C���}|s'�\u001f?\u0017Cr\u001aE�\u0012��τJt�ҙ\">}����v��ӌh�l\b\u0016`k\u0019\u0016��\u0017^H^�l�S\u0011�X{\u00189��E7\u0006��q\f5?\f��Ѝ�e��qí[�J3���H�d�����}�\u001eJ�o\u001cg�H�nĂW�*�>�|��s�N�N0�5�YӠ�/��\u0018�l�eo�\n�I�\u0005���H\u0016�*�00�&\b]�\\���`l��J%J\u0007�V�\u0017i�\u001d�o��b*�\"\u0004��\u000fF\"x���R��D��\u0001>�pk�\b\u0004j�ɳ$#��75�IJF�\u001ca�A#�\u001d؀���&\u0005:�B��+�t��b8Ϸ��\u0003�n���Jп�\u0017,��\u001a\u0015\u0012\u0002m2`ma\u000e�6\u0016ۮN��Â��խ\u0015\u0014\u0011��]�t��\u0013��\u0007E�\u0001\thV�W�\u0014k�\u0016kߡ��\u0011�ڼ�<���\u0018�\n���~\u0006$���&yR0�ƬWP��D\u0014߹��\u0000����\u001dX��\u0017\u0018v��.̒\u0001��n�f(X�>����\u001f�!�\u001b�^y���\u000fP�\u0011��X���_0�|�\u001fSL+j���~�q��y\u000b�ºr��^�1gR�LK;�&\u001dH�\u0011\u0016�*\u0002�$MF��\t\u000f{�8a�!�A-�\u001d���c7\u0017��+�I��ܟ^��5�.\"8����5l��+�4v�r_L�T\u0019׳\n�T�\u001c����WP\u001e�\u0010#��\u0019\tԙ?^�`&��J�8_��\u0006\u000e�����Xݙ�D��D�\u0001�\u0007�Mu_��8� �G|�X��\u0014\u0001�E�\u000b\u0014�5\u001d�)JA�\u0004\fT%����ug8S�WA2yC\u0018b��ƋM�6jN�\u001cᚙ1ꖑ\u000bJ���u��\f�ɀ7%\u001fT/�,�]�Wi�&a,G�������H�L�4�Π���メR\u00175�둯e�rO�ˍ$#)M,�V�\u000e�\u001c�+�\r�1\u0002,���J�;�͊9�~�a�9\u001cψ\b�46�;6ɭ>Z�*��=�I!�A��\u001e\u0000��}a$�9�w\u0005sJ\u0000؋\u000e���|\u0012�jwx\u001b$o�J8Q�j\u0010�Fj�\u000b���\u0010W\f\u0015�.�/�5)ʔԮ��6<��Š\u001e$\u001d�K-k\u000f_���q�\u0010�F�40)j�j��E8��\r*�A\u0013]F#�=\n5\u0007�6\u0015r�|��#�\u001e-�\u0013\u001f5�A��}J���\n&w�_\u0000�5���\u000f�o�Y\u000e5�3�6tZ�Vy|�hi�z�\b���j6=A\f�W\u0005+�l�I��I�|\bW�Q�G1��E�2�sv\u001f\u0015v3���秆�G+��v�\u0004����vK�<���b�L�\u0015�>%�%u(�/�~\u001aY<.e\u001f��h��+N�����\u000e\u0015�\u001b�� �Y�9!#���\u001b��b\u0011Q���`����.\u0016� `05d͍SOE�,1c�A!w�BR�\u001eP��{7��y�x�iƂ2v��\u0018H>\u001e�������\u001b�|\u0003��ZK_�{=`(m��\u0005�[S��?�\u0002�R��W'�,�7�\u000e�n�\u0015'8�d�qENoz��Z��\u001b���\u0002��\u0006�\u001c\u0005��A�\u0002����ֳ����V�\u0007�3�͂�T˒k=�ҿ��c��\u0013�\u0018���\u000e��\u001e���Q\t�[6�wW�Z�:��\u0010\u001a�:e\u0010��ݓ�\u001f8\b�?ˈ#&�fw��?\\�&�]��gW��8�\u0001��Ҭs��\r֡�ӜS|��sV�O�\r��rw�\u0014,&\u001d2s\n�3p7�б��\u000bH�r\u000f�W�\u001b�\u0016��\u000fO\u0017Y�\r]\u0017\r�)�s��*s�\u000e2!�T�u-��-\u00068���}\u001b| #G�C|�ʭqhJYKV�D3�}\b�Rl\u0010��Di�\u001a�¾�9���5�@������&��̰׃\u0016ch�\u0005������Ͼ=(>\u0014�,�X���SuqT�\u0016n�\bT\u001c��I\u001b~@�p�4[l°-P\\V�S\u0019G�iz�,\u0016R���O�\u0003��� �����w������}j\bJ�ʌnh\u0002�H�8��F4bUMU\u0004�\u001d�F�-�#\u0001gt\u0005���=�[D���r�N��i\u001c\u0017�\u001b�N�\u0002��O�>r�<�E�\u000f3�|�;�Aǁ\u001ed��|��9��\u001aȕ�\u0017\u0015��\u0005�6��\u001e���\f8�+T)]ۢ!�\f����66$���Ii�1'�s��\u0017�\bѵ���\u0007��aR \u0015�>Q�5ƚ��C\t6\u001f�U\u001e��`f�]ء��+\u001ckT\u0003���z?L�Y�Z\u0001�\r(��� �C$\u0014\u001b�\u001d\u001a)�@�w��R�+�LE� �E��\u001e���;RM�l�h�!��p���;sӹ�Ⱦ���q�\u001c�R�Pj�x��L��O�\b���L�n����\u0014�����SюO0�,vT�|�'�,\r3����z�5\u0014�\u0013�mĭ��\tK\u0002\f�wGb�\u0007�A��\u001e���|��\r|�\u001a��\u0006�hq��rn�\u0015��\u000f\u00074F\u0018U�\u001b�K��sG�oE~��\u0017�ծ>c~��\u000f%�}%ḷ̌HoH>j��ө���\u0014� \u0014\u001d�3\\��?\r���]:��{x\r��7�wI\u001c��\f\u0018F���~lX#�\u001fF�����oryW��Ч�d[\u0019J�;=d8d�U��\u0004ey`Fu/ς*W\t���*e�\u001an�h?�L�\u000b\u000fŀ*F�L\u0017K4�!/��G�2Q\u0006U%�F\u0001�4��0��\u000f��`�s5+;��6{���\u001eGg�\u0001�ʜn�n��?#\u001e��sX���(\u001e���.ӌ����E���%\r1KG\u0004\u0012�bY����:\"�q�\u0000Qԩu\u001c��㈒tQW\u0007���C\u0014O��<�V��\u0001�r>^P�1�m֤�b�TĪ�O�bT�\u000ei�H����3��W!\u0018|bL�Qv�\u001f%��N\u0000`��Ym�YV\u0005\u0000��ޏ�C�\"�\u001b���X�g\u0019Զ_�\u0001*��[[ٓ�\u0001�0^\t+�AW�\u001e���.je���\u001d|�wW��̇�'eD\u0010Yl��`zG\"���&\u0013���M1�xj\u001e\u001b��\b\t���8\u0013z�\u0005\u0005��\u0015�„�c�\u0018�\u0006���|�ޫR}�\f���2���BG\u001b���V�'�+u^\f\u0007��4��\u0016@,����g0@(�k���\f���\u0006�����|)\u0019�N\u001b\u000e�����0ߗ\u0018\u001a��3\u0011Ӱ!�ao\u0019\u00165XƋ�� ��ѥש�9�\u000b\u0012F��\u0007&\u0010N\u0006_�@N!�b՟\u0006�DU\u0018w\u001ae�����\u0010\u0002�#P߈9%��O\\x�Żԑ\u0001�4����\u0011�}��\u001a�juQa��W���\u000e9�\tF\t�W�N�y`�ƕ�rl�\u001fe�~�b��ٖ䛱�\u0017\u0019��؄7\u0003�b��\u0017�\u001d�6�\u0017\t�\u001ch��̹-�\u0000���V�15[�AE�\u001eȀ�Mi>���\u0017&}��C�̕��v�w��|�\"������E}��8�N��\u0005f�Zl�iyU2�\f�Z݈C3��gĝT�\\Ҍk@M��{�ћ��s9l6\u001c|�\u0006|��\u0002��\u0005�۝�$\u0014\u000e\ffaႜ6��-AU-�\u0005gE\u000fɒ�q�$��\u0017x��\u0010��*�V\u0018\b�\u000bijZY��ֲ�U����a�+����\u0004[�\u001a^\ti��Bz�{�8������0���ܩm\b�\\�ݵȍT�R�G\u0003z\u0012aG(\\�̦��8�\nL|�\u0001��Ǖ��(q\\ٮ�7�\u0001\u0014-ľ�TK\u00042ͼM\f��Ի\u0014v˵�om��\u001b�A/�\u001f\u0004��L�9�\u001f�~\u0002�N��#\u001e�_���s��rђ�C6wƞ\u0016\u0011➦�6^�wM\u001a$n\u000e��5h�Q���'���x�&�c���U\u000er������R\b���٤������\"\u0012�\u0017�\u0013\u0004kW�7\u0019�\\��r���e���˺ږ��{�D���`c��ej�A~�+H�w�/��2��^���[hƁ歀�$����I�S�z;�7�� �\u0016^\u0006�\u0019\"��/��\u001d��\u0015�\u0003\t�Y����\u001c�H\u0015v\u0017M��b�/�N\u0014��O&�\u001aI{����g�+Y��8?����T\u0016�L\u001d>��2dx%t6�kX\u0005rD�x�ߦ�9\u0017!C��K$��3궁~�}��`��ē���”O�\u0000�;G�'r%���J�6�B�\f\t�\u0019Ͳ\f.\u0010c͞\u0014��\u0001��5���\u0001�#�f\u0013����X�A��z�l������]ތ�=��n��<꿍�\\\u0012���y���\u001e\u0005�1\u0000��VZ���&�nssP�H.�\u000e��\u001b��5\n���*_9�z�O|�\u0014\"ʖr�_+\u0001����ል+�\u0003�r?���\u0000�!��A-�\u001fT������I_��U�a���\u000b�'���\u0019g���lX^���1�\u0014��[A\u001c���M\\���:\u0007b�\\�\u001f@�%Ǟ�;��7\u0005t�e\u0002-\u0018Ź���c\n.�����\r���\\�� 6�ut?\bC0v���d�7Y�WG���\u0004'�\b\t�\n��J�<�\u001au�^d�a��榓\u0000�\u0016�Ҽ��v�I��EO��\u0013�\u0015�V5���&��p�\t\nq���\"�A_�y��b��K��>S�F{�۔-=���[�Mmg�<��\u0006�!��\bk���֗�\f�Z~�@�z� �w\u0017*^\t\u000b/X\t�O�\u001e'�@��\t�r|�����\u0007\u0004p�LSrٜ��\t�\t%\u001cY$�0���r��+\u0016�p�@\u0013��Z*\u0019������yEږYOW��\u000e}�J�(\u0004�\nO@y��{\u0000���Ĵ�\u001a}�7`\u0003`\u0007]��I;w��]��$�c�0���\rVP\tރ\u0002\u0005�M\u0017�-J�5�՞�Qn�v1\u0014�g]���\t����O�S<Ò�\u0014[\u0015}��jy�\u00189&\u0014~�\u0007�a���\u00022ڻ��KT�j;\n\u0017<_�<6�A\f�\u001f|��N�\u0018�\u0010ע\u0017Y/\u0016���3zk`s���k\u0003��|���W��\u000f���\u001e\b�,}[�;�/�O�Q6y�ѥ=\u001bs9]�$J+������k=����\nڱ�gA�ľ8u\u0014\u000b̤��W\u000f%�N�k\u000fmd���9\u0001�ݝjn\u0007)�\u0019�\u0004�J\u0014����X���>\u0011��Ξ\u001c��s��*�\t܍����k[%��z��\n,\u0019��\u0003�\u001d\u0014j7��`�{rFKRw\r4P��hS��\u0012>]�0�F,��b���ð��C;r\u000b��ϔE���\u0018��sUl~;\u001f)Lk$���,j,��t~��\u0011\u00018�'�J퓓�p\u0007�A'�\u001f���X������dv\u00079!���T�\u00040%\u001e�\"�l0h�h��Ak���:�;��\"�O�՚=%G�d�x��Bx�o\bcً�\u000f��0y�8��s�p����>�^���_\u0012\f�(Ē;!wz���\u001c�d�\u0007�bL3X\u0014\u00128k;<+fF7����\u0001��w��K�[�:m\u001b��h�����m�\u000e!��\u000bGFs\f�\u0013�\u0006t\u0002�=�q�?�N�t�+w���C��P@-\u0018�X�Y@\u0003\u0014��-��yc���d�\u001f$s��]}�.\u0012\u0011��Zi�X+�I�\u0003��L��\u001f�\r-�eW��[2�\u0005]�ds��ϫf�q$O�)ԇ֌��Z�PDv#\u001f�`����\u0016G!�\u0007Ƃۜ�M\u001b\u001c\f�\u001c��fc�̻�\u001b��)%�8��=�B��}Iϟ~�Û�C�8o�J�R���d\u0010�P\u001a��A\u0010�\u001f���L�3t�lP\fʠ?\u0004�\u001c�\u0015>�q?7\u0006e�w��\u0010�\rx�>�r~ \"�����C(��\u0017��\u000e��(��N��(hz\u0012��\u0004w�\u000b��\u0004��N\u0004��{\u0015�\u0004�׍*��5vo�Ʊ�\u0011s��T���bԫ\u0018�-�a\u0006MPb\f�1\u0001_��F\u0006�>�=�\u0006��\u0019��4C����6�~E�b�\\����ȼ��:\u0018+��1�b�Ι�\u0006K�J4�洄���-ι��c6�\u0005P/�G�]����W�,��\u0018�̋�}�G[P��9��\u0004�8�_�.��������Cr]\t�\u0017\u000e�\u0002L\"��n�-���@���'��ĉ������g\u0002��\u0010��7k\"�@�>2%�����f�#C����gY����s]R�p|�_a��*�M�k�S\u0012�\u0017�%���hݿ~��?���[\u0018[�4z�=�\u000f�B\u00124�o��F�J��Mg�(�A3�\u001f����d\u0012\\vOGX~��l�>>�:�\u0018��h�sR����|:�x��]ǝ�\u000f6E��|`�5��\\뫈�\u0010A�\b����ǂe����\u000f{)T\u0007\u0000/F��\u00134D���\u0006��+�z��čs�\u001d�\u0018&\u000b4\u00144a�c�\u0014\u0006g:�þU2-v�6j@��}��E[?v)\u000e�\u0001�\u0017�´�9h\u0010����\u0016\u0017��d�}q|ly}\u00009\u001c�\r�$��!�#�.���p�\u001cqY�B�=m�\r\u001cT�y��T�a\u001a\u0016c3\u000f��_$@�9�wD�PTt䁘����c�|�Z-A\bZQ��Ф\u0010��4��\b{F�V��1\u0001\b��@ _P\u0001p\u0010O�~sCߛ���z�1�n�\u0011j�`\u001cc������A+�\u001f���a�ʊ�=�;�Ye�P�\\.��vp��=h�/�6K\u001fϻ��\u000b���~O�2@�_΃,�~��@\u00027�^��<�^0)(���\u000b�d�\\��p�=��������qߗ�>֤�;\"\u0013}�閎X�=\u0014�S�.:y���/�p�\u0018l���\u0002�N��cMB�K�R�=\u001c@\bP����w��\u000f�4\u001c\u0010�x�~(Ȭ�U:)}�G�\t\u001e��}�\u0018'\u0000\\�%U\u001a\r4\u0018\r�X�~��6\f��G9L�\n�\n��ꫤ��\u0017���eOwWy)��:���\u0006�\u0014�'����\u001dz��F\u0007g����q`�\u0001\u0006����L;X\u001f����]�\u0010D,��eC\b� z���\u001c\u0007�bˬed�1�X:��e�f�\u001e�\u000f=0�\u001e��l�\u0005\bՋ6��\u0000�{�EH��w��]�������\u0014$=�d6ͳ�sB�ߢ�f\u001e֣P��\f�I2h��\n�<��\ta\u0018�\u0003�1��!����wW�L�ˈD\u0012��4婉�Sih�%�\b&I\u0000�O�Ō\u000e\u0001�%�\b���'���'aL9�3L�F:�\u001d�{ �ɠ\u0017W&E\u001f\u0016gN�:t�V��\t�j���\u0017����\u0019��\u0006o�\u0002s�R�k�G\t~�/���L�\\�U��\u0002}�\u0006��J2�a\u0001ђ��\u0015\u0005�G\u0017�eJx{:Z\u001e}��\u0013,ݵ*\u001a�jx#q�%Bd��*2/�\t�\u001f}\bC�q�=^ҊT�\nͻiDJ\u0007�8\b����x9;�H}I��/�\u0010\u000bV�(\u0014p\u0004��0\"�<\u001a�\u001d\u0017�$=K�\u000f� VT�IJ�(Ч����<�YƘ^jPp�eX�ɳFb\u0006�h_��}��A�� X��|�2W�S��\u0005�h�[E���\u000e��P�\u001e[\tݠ~\u00152���\u0007�SG�{�\u0002Bu*�\u0019�#w�U��_\u0001\u0011<�+\u0019CB�\\@�K&�;%���r縣F��h�=\f� �8WP�\bp�d��p�=E�\u0004Zߠ�\u0016�*l\r?��6�N�_�g\u0002V\u0002�)�g\u0002:D�\u001fPl���\u0016V��y����<�.�c�Ɖ�C:�@�v�a��c���FY�\n�\"���o�Ss{TC�ׯK�m��F�\u0010�H�I(.\u0019�n+�IY�|$�\u0018� �\u001c\u001a!n\u0012\bZ��\u001c�����ߘr0Oim�'%.�������@�\\�c;�Dl�:��o��V\u001e\r\u001f����_]�\rB֊}2,��\u0012���\u001b\f���d�T\u0016{���\u0000H�D�1�\u0000/�\u000f���Ԙ\u0004�\u0006���$�@�c\u0004U)F��O\u001a\u0014i�\u000f��?� L�\u0018������8\u001b�\u0019�N�g�\u001d�ܠ\u0010���(\b�\b��ֹ�I\u0007 ?o\u0004a��3�=\u0019�]��+d���\u001c�KJ��{\u001b�A!� l��.\u0001�W��}�ǵ.)\u0010��m��E��A\u0016(\u001e���A��<�Y��{\t��P� k�RRh��e�wA#\u0011�\b��3\u0002�捤�3�0��&Y�k\u0006�\u0001G2��\t��\u0018��\u0015�#�@PSMfx��e˩��b6\u0003[8QA�ꂝ�j%\u0017���\u0018�]��?��i\u0012����aEg\u0007��f�*���\u000b\u0000�j��\u000f�M���^=q�K�Oz����\u0003�߇��]7\u0013�i���h����\u0010v�m� �����)�͹\u001bЅ0��km�ϣ�A\u0013� ���L�ͭN�n��c����k4�\u000bL\t\u0000��@���KC�c�����\u0019�ј� �:\u0006�\u001b�S�| \n��K���WB��:#��Ǭ�A�\u001a\b\u0005]%�zZD�Bl�/�\u001a�l>�\td��G��Ec7����ʹ���6wb�\u001f��\u0018$k\u0003�\fZ�B���\u0019e��׊���$|w�'���U��)`]&\u001c%\\Wv�$A�?�ř��1��䭁4�?�2�t.���h�&�?v������\r�P�k��l�k|\u001be5��44E�\u0017�N�K4}ui��m\u0003��Z�Ok\u000e�ϟ��b)'��\u0002N�Y�&�U�n�\u0015D���)M�d�A\u0010� ���L��\u001b�,j?L�e#�n!�C�����մ,]���=\t}+�4J�2�F�1uT�� U���V.d�\u0005�9��J�\\,�\n��s��7`4\u0010�L���A�\u0013���:Խ�\u00100��,���C��f�\u0004i\f�Y�u��������\u001a\u0017<�!ˍ#v�\u0015�U�/ٙ�~`�\u001c\u0010!�\u00007M5��u��\f�� �T�ŕ\u001b�o���S��\u001bd>̼�#�<9\"x�n{rK�,���*�_�j��_����Y�)(�-���;]��kr�kT/�yy\u0017e��\u0003�u�ʇl^�\u001f \u001b�Df\u000f�\u0003tɭ�ʹ�\u0017J�>��ңA\u001c� ����o�^�cvo\u001bH01F*���E�����\u0002T�ڍ���V\u0015\u0016B��Tuw,0�W��\u0007���ո�7���K�\u000e\u0013\nіG~G�\"�=�*\u000ew�%��\u001a.���V���~�V��\u0014]����:��NT�)��\u001b��\u000f�*�\u000e1�B�ٴ�\u0002�\bH`��U��4/�ͯS΢_�Grf�o�<\u0004�{\u001b������Uh\u0007V\u0016�\u0000� in^S3���ٕ�:sv���6`���ד?�z\r\u001dU�T쫵\u0012�%OA��-\n���˜�E*\rw\u0015p�\u001b\u001bI&�Ѿ����rS\u0002��\u001e���S�#���33J$�\\D�\u0018X�Iθ�%�A\u0012� ����a��X���x\t��<����\u000eq\u0012(�\b�\u0017 �=����j\n\u001f*��g�\t(�O�Q��SB�����\u000bsY\u001e�Q�cX�\u0012F\u0019�\u001b�z�+*\u001c{�T\u001d$g2��X:\u000fN\tĈ�Q-a�پ��I.\u001d�&\u0006xi�T\u0011���R�5�\u0007r��D��K\nĻ\u0014��F�K$\u00062$����gl���-���R\u0015�����_��+��!��E�D/U#�q�E��\u0017�+��q���P}]���_b1a�+�\u0013\u0013\u000e(�A/$�\n\u0017��'T��\u0016^W���\u001d\u0015�}�Ք)�������\u0018C\u0015$�5k\u001f4$@7)�RP\u001czH�J�)��A\r� Ѐ��a�\u0010~B�����j\u0002`2�tW�qjJ�\u0013��\u0006\u001d�!�U�\u0017*�1�����ˬ����F\u0016m�4H-]�J��<�7i�\u001fQ���,��F�\u001c�t�����O*�A�X����Wy�!!�ݽ�\u0018�M�����s\u0001�\u0001�u�%�_\u000bg�|\u0016��\u0004�\u0011ytpa�@q��M5�U�a\u001eS����]g2\u0000��iu����\u001b#�)\b�6'+tn\u0011\u0004\u0000\u001a��}�\u0012�{�\u0016�X:^\u0012�͒�>\nD9�D��K]�K�w/�\"���o\u001bhک\u001d(ʁg]�/Wm�?����H��;�i�L��H#�\u0002Mc\u001c\u0005�u��b.i��AL� ���a�ey\u001b��lx�\u001cJ���L1F���U\u00130A��h[w��!�@5{,��o���'��׼l3=\u0010CO''�\u001e+OҸ|.�����\u0002���$3���\u0005)\u0011�\b��5\u001b$j������7\u000b!=�hIkԫj��\n$\u0017 ����%ȭZw\n�\u001b��t\":�\u0004�h\u001da�_�!:\u0013\u000e(���aC�E�\u000b$�~�u��\u001c���\u0005��Ke\u001e\u0000�\u000fp\u0015 ��P��\t�\f�ޮ��M6\u001fMa/��t�3F\u0001\n;\r\u0003�z�E�q}qX\t!2U��?\fU��X�\u001f�y����e�\u000f�,\n.u��i�6b��\u0010ag\u0013u���gJ�F{s4�B�+C�\u000fG<�7Y������A/��=2�<a2��\u001f\r��v������\u0001�6���%��A0� ����c�.�[�5\u0002�-�N�,\u0002�4䆌�73r �_eKSW�˼umQ�?H�z.\t�p�sy�Z�n\f\u0003��DS�\"%~Iv{\u001eD\u0014�!��)�=&�J��>�q��|^��:?�U!\u0011\"���n(��j�Q�훈Y��+h�6�������q)��\u000e\u0000]�Q��Ɇ+\u0007\b�i�)\u001bn�\u0011D§l����[\u0007��\u0010�����Ƥ�\u00162oɯUpDc�^�D�\u0018\u001c���+ko\u0011���\u0001��\u0001\u0000\u001fS\u001cw�8����X�0��x�6\u0017��D����\u001a�4i�~�%�\u0017\u0012��d�$��\n\u0012=���*1�\u001b�,\u0005�kj)�\f��\u0010)��ڶ&�ؾ�u��\u0004R��~y�A����m��A5�!\f���#�=�D��\u001d�H�\u0004\u0017�(�dI�ф`�\u000f�,���\u0003��k��xup�dq[����^fXZS'D)\u0017�/�Pf�֧���G\"\tK\u000e��\t�\u0000/)��e\ri\u0017�\u0011����U��\u0011\u0000\u00022\u001b\u0013�����\u0001q{\u0005X\u001d�e\u001c\u000e`��D�qw�׿2�䍬\u0013Ⓤڅ�\nb3�K\u0018:d\u000bή��\\@�ԫ���Ɔ\u001fL�����q٭�Ҙ|\u001fR�򯌯�\b�] �r\u0003�)M-F\u001d�z\u0007&\f#\u001cw��W�gpc�\u0016C�\u0002ӏb��=\t̽U���b��\u0017S�O�Z�&�\t^Xz�\u0013Ū�4A�@7\t��\u001c�\b8_��\u001fz�TI \u0003��o�i�$/���\"�&��唌\u0003��Q#٣�A;�! ���a��P��z�Lk�s'\b�&\u000e\u001d=\u0003�S]�����4a���:�<����j\u000e�\u000e���\u000eG~��0O#���\u001c\u0002i����0pg�\u0001/\u000e��C�QP�l�nZ�Mx?�d*ߒ�u�G&����\u0018n��\u001eM��T�\u0016\u001e�tYv�6�򱏅>�H9�U\u001d���\t{�Ő�\u0000�����/���\u0001�'�`LwW�,�{�nHe�P�ae�9 q�=��޲��r��\u0004�Я�eR�R�\u0010�Emf]�N�a�ԍ\f|\u0017�q��Ç�H����W�:�U��}���I\u0007\u0017@��\u0006�J��y�\u0019\u001c��\u0010;9\u0001\u0007�#���@&q�.�Z�5u��Dy�\u001a��\r\u0012\u0011�\u0005\u0016�\u0018Q�мuMd��i��I��AP�!4���\u001e�[j\r�I�:�\u0006��R\u0011+�X}�)���\u0012�\u0000�Vd\u0012$S\u0007�\nh2~㘌\u0001p�µ$?�j\t�����B�u\u0001hz�\u000e��ޓ\u0007��S:;�\u000eS�����ľ�81�wf��� �\u0016\fo7�\u0017��\u000b��d՟'/�\u001f4�י[|Dح�\f\u0003\u000f���J���\u0017\u0011�\u0010\u0003�o@\u0011�'H\u0019�!��W\u000bUD!Rz�\n�\u000f蟟\b�'�ඔa\u0004�KFE\"��Ý�_\u0005�$\u001coʎ�+[)���\u0011WƠ��uBp��\rϤ�_P{�]��&!^R\u000bE��OJ\u0012��KUd\u0015XYKx�:�{�������N\u001e|�\u0019Ɍn\u0013��;89!�~�N��!Ϋ/$���\u001f�\u0000l�\u0006w\u001e\ng4\u0013\u00071�\u001a��\"�\u0007*\rc�EQ\"�\rA��-��E\u0012����;@1�N9`�*I\u0012�O㍢\u0015�C\u0019@em��B\u001f�!\\����l@J[�\u0004=c�밡�O�/�\\\u001b)��¿d1$g\u0018ar�\u000e��dr�)�R!n�?��<����׿\t%�`2+b��\n�\fI�\t��_*���\fR��G\f�3GU\u0017�q��-�9z�{\u0012�y&H���\u0001WJRt�ϟ�4B �\u001e�[/\u001e���Ii��jU9�31���MtE�~ҧ�lw�,u(\u0003퇘��j���C`5e!�\u0006\u0011ͧ_E��tަU�.���\u0015���L�u`�j�\r�E�������D\u0000��0�\u0007�\u0004gN��\u0014�]#X��j�\u000fkE�&\u0017\u0012�R�P\u0010��Tl�\u0004�m��m�(��X>��r�$\u0005��\u001b�������p'�Dѹ?�\u0015��3p�K�-K��^�Ѣa��S�Ӳ'��\u0005? ʞ=��wBS��B��\u001a4`������d��x)�`\u0019�;6{�;�D��S8rY߁�=��-\u0007�Ŭ��%���J\u000f6zL|�ܬ dRw�\u0013����C\u0017\u0015|+pF\u0005U�F�\u0013�\u001b��\u0002�>\u0012�;y6{٧(���\\\u001a�ͯ/%�q0)q{\u0006�3��ߣ��:����\u0003X�Lw��}�>��G�Շ� ���l�p�lA��v3�axy���\u001c2��u��0t��\"��\u001aM���\n!�T�)=-��\u0003w��\u0012\u0012�U���\u000b����`\u0005��� �ub\\��I\u0015��bDA�H��8D���Z\u0002?_��\u001c�:yi����=V�m��\u001fg*.蓐\u0013�lQ��]\u000e\u0012�u�-|��\"��U5�:�0�յ+ޗ_/xփ���{�t�=;�y8Hm=����ˎ��h�-\u0013\u001a:0D��\u001d}Fڢ�L��\u0018PA�/��w\u0006�����\u000f�bJ3��'�c�#og\u000e}��Os����l\u001cp�*�\u00048%��\\�ج�\u0013m\u0017Z����k�\u0011ݹB��Ο5\u001c��\u00172\u001cK\u0006�J%�DL��\u0012}\u0017;�lW��l�\u0011��`e���Lͼ\u001d\u0015^I\u0001�k�+�b@a\u0007�A,�!����\u0002�-m�9�q\u00107h�g`�.�.����t����؄�w\u001eF��L\u000e�\"�`?/�$Z\"$\u001a�݂�;�\u0018�R�i�81~h�ڛ��9���7�u���\u0005�\u0016�<\u000bOf\u001e���d\u001d��l�xr�kլ\u0006\u0011\f6���C��9��N��e^���\u0010r��>\u001c\u0005��Ns��Q�Q=\u0016\u0014�*�#�bB\u001e\u0012���_V7@�������p��L�/�\u001a\u0018q>t��u�\u000f�1J>p�K�q;_��ۄ&�\u0007\u0017h\r:+�-�\u001f��\u001d�K2\u001dS�>��\u001a�n\u000b���F�<\u0007\u0016u���P>������J\b�Q�\u001b\u001e�p\u0000To8��\u001c�\u000e�\u000e�����-���~�\u0011��(��G�\r���A\u0016�!���Xխ�\u0005��Um]���enP9�tih(���BZ\u000b��8��?�灎#�]�t@Iq�\u0014��Skm��f��;\\q\u0004��j4����.��%��\u0019����\r\u0011P�ῃ�~�f$�R��\u00131/b��\u0000RX\u0018Y\u001d��=���T\u0015�\u0018'�\u0001/��\u000b����xu{b4������\u0000܊Qt\u0000\u0000\u0004?�|�Cf`cI�j-����\bO�����7���e�b��P��;\n��\u00151H�;�\n��\u0017�F\u001d�\u001a�C��p�{��;�j\r������#=�%Sz�-���s�#yl�<\u0019�ϱ�\t:+�w�+��K�?�����i�K�S�A��!����bJЦe\u0002��H�A\\ag����@�p�V\u000f_A��\u0006�{KP�A�9\u0004\u0018�\u001cߤ�rV�z5J\u0007+6F4���M�l����7���E�淥\bۉ���fl7�ę\u0015�\u0015+i5��~�99r�fQ�C��R���H�΂@�\u0019�.\u001e\t\n50C�E�K�z���\u0013�[�r\u0019\u001cE�x\u001c���J�XK��cfB�Y�\u0007�\u001a��'���<_�rmjS\u00036;\u0000���L\nSi�d��0��\u0010t�\u0013��|������\td���x��j��\u000e��Ah+�wO�JE\u001f��&��U=⨂�Л0(\u000fuN�?\u001f\u001e�;щ�g�7����|6x7�u�\\`+Q�tuA��4Ɍ�������\u0019�x�t��R)�wjJ��Un�;OǺ�BDц���+��\u0000e)��E�\u001b�W$�b��\t}:8]��Ӻд���c\u001d�޼������\u0003QGF\u0013p71\u0018���̲_�8�K�8����\u0015�vU��W��\u0016O\t3��r@\u000f�ܠ}\u001f:����Ӥ5\u0002$�A\u0015�!����l�g�h5\f���PQv]xz�[��SR��5���c\u0018��*�|{��,15\u001f���|��_(E\u0005�\u0001(��媯�tJwzƓT�\u000fvD<�\u0015(�\u001f��#�����2�h{1�Ā�k�[Ak���!`[�\u0003D�\u0017�v1�\u0012\u001eg_̘S��Id\u0016e\u0000=��*&\u001f.:%�L��2T\u0000��P���˧S��\u0003�S��{[��8��\u000b���\u000b�\u0014���\u0001\b��8\u0017�i\u0010\u001a���\u0005��ovV�vR�\u00197l��i�s:��W{3�*!��#�ִ��+�:\u000eY\u0001~\u0017A�\u0012�*�d�辰%���^�n\u0012\u0014K@�\u0012��\u001e\u0001�ur��%�A7�!Ԁ��e�-\u0010�\u0014�j�bnN��p�>\u001f�\u0014�\u001e.$�X4\u0015:m\u001e{��W^�h]�A�h3���\n���۞H����4�\u001e��.���@�X\u0004�@Q�B9#�V����-�fn+\u0011}5��\n9���u2�|z>�\u00177m\u0018r�y��U�>��\n�'�\u0014�I�v�&�}���\u0012(msW\u0003��\r��\u0010�\u0013\u0004\u000f(��:\u001fg�5A�殮�M\u001e\u0017�kzH�a���\\�\u0012Q���k\u0012�ɧ��g�+*�\r�\n�YC�����W󔛹�\rE�ׁ\u0000�5�(�~\u0018l\n��П�Nu\u001c�h���.�0���n�\u000f�z�mG���+\b@�\u0001��%�$\u0006���F�]ǂ��K�›\u0010]�K\\�a×�%��A\u001a�!���s�C}��\u0000��\t�\u0002�\u0019,D~JT��\u0015�(��>%v\u0006hw(*�D/7��}\u0007���'��%|4����&3�\u0012|UL���\u0018\u0010�f\u0017C;s�Ί�ߐڛ�pP���{jc�\u0005�)\u0002�s����~�p�]iu޻c�{e\u0004�I��\t��8^\u001a9\u000eqQ!.\u0004�\u001d���|��i|KA�O�7>�tƤ\u000e)��\u001cz��KS�j�IY�$�6BE\u001c�\u0005�\u0012a�NvK7�\b93\u00157�����T�V֕\u0010T�\u0005p�q\u0011��Ś�x\u000f,�!o�2�T�8Ձ\u001dC�\u001a2=��u:��GQ�U\t\u000e\u0003�ԙ[9l�%�\u0001�\u0011q\u0016lt\u0017X��ȵ4�A\u0003�!����b\u0014���*۩\u0007�wT\r\f\u001d\u000e\u0010V\u0015\u0002a\u001c\"�M�,�vح\"&d�\u001e\u0007\u0014�W��\u0017n82\u001f\u0005IW���p�k3�y�ڢ�r\u0002ˑV=8����R���\u0007,SQ\u0000��)���v�C�>$�LXo�Y�$�`x�N�U?���'=0byq-\tH!�|�����\u001e�\u000f��>���\u0007�a��P�.�_)\u001c�1�{\u000b��\u001amNQ�tjQ�6?��#����Pq��1���96�!\u000f�\bM\u0005�����LGHn��\r>\u0015��m��S�{�\u0014���Q�<~\u00167��|��\u0019�\u001d�5\u0003�l��vaA��AI�\"\u0010����'\u000f\u0005�By��\u0019��}��\u0017�J����Mڢ���8�\b7�\u0015��/�o�͵��t���7��ć\nug�TL(�\b\u0015k�x�^�j�M\u000b��u�0�T�ʎ��$$���\f��J\u0018��\u0014�\\Jݼ��3�2��PW��%�%�\u0011�5\u0011{��8\u001fw�'y,\u0006��6N\u0017�\"B����M�)���x�ƒU;��� �^�u�}�c�Vԝ�eYf\u00047S�·�\u0018\u0001K�����6����lB\u0015�q\u00135*ͥ�C㋷U^�\n�\u001d�\u0016�\u0014�w�0�(\"�\u0016\n��\b�||B��\u0003�s�����\u0007?��V\u0006uKb�\u0010�i\u00197o\u0015��ے$p�\r\b\u0003Iڕ�\u000f�V^�\u0019��R-�\u0019�<\u001arvl\u0002\"\u001f��!�>F�ɱٴ�A8�\"$���f#P�A��Q^�~��\u0004�pL���0_�$2�a����LB\u0004�㱕^F�-�\u0010�'\u001a5qY*���q�\u0019��b|��C�]\f��tM\r��va�\u0006mI�������\rU�9��\u0007'�$�Im~�$q�����ɏ�lO\bH���۪\u0012T�It|��q��c.�<�����e��Y(��2��B-Cڝ\"l�\u0012\"�V����B��@�Z��Gێ��m[+��*HCV���� �\n~|%��-/�\u000bsȥ�<��\u000f�W�7�9��\bX�\u0001���+ߴ��\u0019�\r&\u001e�\u0005\u0019\u000e��:�fU@�^���\r��-1K�a���Y�7�Xx�\u00135\"��Q���m%c;uo{��Ҹ.7���mhI��A8�\"8��.?��@��ijg���\u0018�m\\1�T�\u0011\u0011)����B2v�\nol\\�L\u0000 8�*�����J�N3� xҁ��\u0007\u0004�\"�*��z��zK���T�y�S�.�P=��p�/����DCJ\"����\u001b�P��L)�y�f��\u0003,\t\u0014U�\"\u0001��7�\n�3�,c�Ꙙ*� ]�xO��\u000e��$I\u000b\u0019��zD\u0005:�fM�k?$���(b��knjc����W\n����HS���ƥ��������,����\u0016��써�\u0014\u001b���8̔�|j��\u000bY\u0001x���T�<�F��[�~)\u0015��IHJ�W�T!�]p\\\u0010�\u000e�n܂�)\u000b�\u0012��V�\u0011���I\u0018��v�q�[Ԭ�Wm�T�2\u0013��l�A1�\"L��L�|�\u000f��\t!\u0002��\u0014.;G��0L'A���$�Ӓ�\u0013�J8�\u001d��_\u000bh\np�'\ff��݅#�\u0013��\u001f���\u0014�\u0007���R��\u0000�u)�U�B�xvN�\"��k�S@\u0012N�vU�\b:'n8��P:v!u�\t|W��Ω�\u001b9�\u0002�\u000f\t���u\u0005!\u000b�!��g�N����z&�\"�\u0002�$�g\u0006HD�;.\f���HU��\u000ep�P�\u0011�Ţ�kĥR�K+�˛�OoT\u0000g4\u0014�\u0016z\"�$9qa��/�t�kaM��2\u00109Ã��_��9��T#��‹\u0019���*�lE��\"����E)�L��H$\u0006��o�w�g�\u000e���*Q�F�bZ�S\\X�߶\u0001\"\tr4���)\u0018g�\n�A\u0014�\"`���\u000f\t�8л\u001b\u0001���\u001a\u0011v~�*\u0005Iܮ�ά&H.����LB<��Et��`T��á�:Q�c\u0014�C?\"�Еpw�H��2 e|\u0004�8��� (��*���pG�\u0013!DH�\u001a[\t��S�x氾ݚj_��\u001c�tp�X+0;vyk\u0007\u0002rr�\u000b&\u0018Mc�\u0013c�I\"����m�Њ'#=�N�;��Z�\f��J����O!��Wv��ƞ��.O��\u0013=rE_ƨ��\re\u0012���}b��O���\tܠbH�w�p3�\u0002fA�0[���VmCO� �+��+h�u�\u00021eK��3[��X��!�I�\u0000b��C\b뀔��A\u001b�\"t���\u000f8�Љ���~z��c�\u001c��yP-�ƒ3”'*��K\u0004t\u001cF=���+�\u0014��Ϣ�\u001fD8x����#�1C\u001a�L\u001b�\u0016�\t�*�Y4\\\u0018z?�\u0015��<`����'��\u0015�\u0005\u0001\u000e����)�y��l,цv���M�z}�����\u0002]:$Ok�K�M��W�Y�\u001e�\u0015u���m`䫙��%�﫦���mw��D׬i-}d���7x�K\\�����)�� l�\b����&����S�Cii���.&\\\t*�m�!ڼ�\u0003̙�Z_\rOX�\u001e#����U\u0001�K��zx\u0004 ��\u0011�\u0011R��0��$/���\u0019GY\t\u001a|1�\u0004��A\u0019�\"����\u001b�w�\u0013�\u0013#�\u0016��3�k\u0012�����^\u001a>Ȥ⢃\u0001�?6\"�\u001f�t\u001do�\u0000��um����]\u0017^Y��qk/T,#�Y�A�\u0003K�\u001de�lm\u0003�=�S��\n�FA�\u0019@�y\u0013J�O؆\u000b�=��u�>��\u000b�n�x���K�+� �8��v5��\u001d�_�Q\u0006T�\u0015\u000f�.n��ݤ��*���H����\u0002�V���pJ�|T�<�\u000e�.}ϥ,m.y�PC�<\u0003፬��}��SD�\u0006~�5��vm�~���H1�\u0016kS5\u0006+w\u001d�-�BY\u000b`���!ezp2C�u�/��nċt\u001aN�}��\u000b�K�tivm?̅%�(��A\u001a�\"����\u0016�2��N\u0001\u000e Ķ\u0011\u0011���\u001eg�\u001f���.ө�L�aC=�Уː\u000fSI�\u0011\u0007��\u0010&�⽶����y�\u00028�:�ڃ:r��iW@�ь�1�Ew��wt��,�å(-\u0007e\u0006H�o\u0013gV!k��\u0011r�D\u0016�u�{���Fqj\u000f\b��d��!%��$N�R��t+�g�x\tn��[���q�Vb,Q\u000b\u0010UJ!?���\u0003�6>gM��%�\u001c�(#�\u0017b��\f�\u0000rL\u000ez\u001f`q�b���\u0014l��,�Q|�����\u0010b[\u000fJ�Z�v�4v�Ct����@�+p\u0017QN�RHy?BT��Y}�P\u0011J�d��\u001d� �\n{�񌘎�A\u000f�\"����\u00127��C�v�=ɔSC\u0006o�8�\f)8\tW����\u000f4d��M�H��O�_h�ݫ�|�B9\u0014u��\u001c����\r�/{���\u0013��VĽ>o��0�XT��)���\u0011�o�\u0012`-\u0017lSٵ�@h�X���K#�ζ�\u0015���5\u0013\u0012�Ӟ\u0006wQ�\u0006x�\u0007�0������˓\u001b,\u0016*����+�\u001c���B��R�烸\"\u0014\u0005lwd�Mɜ\u00117��<�y�\u0013�<|�4�5\u001f<���:su\u000e��Hg���\r\u0015lɚLv\u0004�c�����\f�ڋ\u0005V\u0019�f�����w�/2�@=�\u0013)�}Q�\u001a�\u0014\u001dȁ�A7�\"Ā��g�L�E�4\b�5����c�\u0006��Ɖ,(�?zYV��\u0001b�\u001d\u000f,\\�\u001b�[i��B;X\u001bJǢ!��י���!J\u0016b\u000f�Q�nb\t,X|�vJ�\u0000C\u001f�P��\u0003��k�qu��KL�\u000b��ڒ8܊g-�_y�d����V͈\"�)�g�\u0019��R^OB�\u0006���a�.\u001e�+\u0017\u0013�0�`i6����C\nH7�m�`\u0013q��?6����+�A\rr\u0002�:�\u0003\r��\\5\u00026dHo�\u000e�F�J \u0013|\u0018�D\u001c\u0016���d��R�l�V%�^r����/[̾�\u0005�����=��ڳ�^[��\bvw�\u000f�\u0005%�\u0002k\u0015��Um.�y\u001f0�\t�ζ�_F�\f���\u001e�6��_�f��(Pe�\u001f�+�\u0018P���}\u001f�܍��_���Ճ\u0016��BY�`\u0000C\u0000Wr�\u0007�V�L�W���xb\u00190u�+O\u001a��[�{���5\u0012z\u0019�;y�M���\u0015��I���\u000e�O\t��ikU*�vS���\u0019�\u000b��ֳ��~��+�0�qĚ�ni�3�ڐ\u0014\u001e\n�m;n{���ȎIۮQ.��(Ak�s\u000f\u001bj�r���%b��=�\b\b;,\u0017]�\"\\�E`M�i�w&#�އ�6�@�\"��L�B;�dUg{��Mr��4�%\u0005/��͔u1��8 q��\r\u001b,�K��\u0001�yj;\b2\u0014_6�\u000b��9e]�j�'\u0015�\u0017V\u0013b\bh\r��\u0013:�-;\u0018�\u00052�\nX3�?\b�I\u0004<\u001e���L\u0003$�\\\u0001\u001d\u0018�\u001c�¤퀆�)�(Gv$r�D޽�#�\u0019e��7\u0002ut(��\u00122T�V��n֎����V�+�5\b�\u0012'�@�\u001a\u0012�~^K�A�DfIFm\u0005�s�Q5p�+\r�\u0003qL$\u0005�Χ\n6*\\\u0003y\u001d��p�q�o͊i���~�\u0002c\\ܞ� \u0007�W[��\u000e\u0013��.����`\u000eB!�,�*/ʋ�ܯ�\u0013g�ܲ\u0012��fRm�D��$�A\u0015�#\u0014���b\fF�[\u0001�XN\u0015JT��Ɨ��~�\u0018��\u0016���\bK9\bޗ2)\u0015�\na�\u001cK��SZ�}�=�`����?\u001e����\u0018#3�4������P�f>�\t*�\u0019\u0015`4��HJ��\u0000!�i��❣\u000bѲ���c��(���S�J\u0005(??෪+�;��B[Zt\u000f�9aO�����@�\u0011+?��;'��\"�\u0017����\u0013��y\u0018�Ki\"�еF�B'p\u0002@�N\u0003D��y�6&�M�L\u000f�\u0012�hX)��K?��\u0007�g�V����Ba�(�j��z��P�2^�\u000b�M�(q�3�����)+\u0000�ȦA��%\u0003��8��%d٣�A\u0011�#(���c�\u0017c\u001fh��\b����\u0010 �/\\H�T\u0013t�s��$o؝��o\"\u000e��|�۠{\b�H�'��\u0007�eF�.�\u0005\u0011rs\u0007�H�66�\tq`�[���\u0003����t��\u0001ф\u0010�\u001b9�\u0016�\u001e��x�\u0006�$��k��L��`\u0000�\u000f}\u001ad䎭\u0015�\u001e���:�A��Opҝ�J�|L,T\u000e�����]��J�ˤ{b\nP\n�M�c�M}�B\t��9\u000e\t���-\u0011�S`]1� o_�i�9\"~\u000b�4���揱��v\u001e���S��T���l��a\n@�Q���+du\u001c\u0019��+a_b@\u001b2�O�bY������rm���\u0016�G{�٣�A\t�#<���b�.�2!�.+\u0013&�K2�Mk���l\u001f�߀��\tCc���qb��n\u0015�\u0011��0�A���\u00009ܣ\u0013�0���\u0005ND󐸺�B�͖�\u00104�e\u0001̨)p9e�*(͚����yJ�\bb&_/j?�X\u0011�M:���!\u0002ˈ����p�\u001e�fȴU���� M�B��;�7� ez�ʭ�\u0006�\u001d_Ƨ\u0012��|��v�_�/IW�\u000e����E4�Q\u0002�s�Z���\u0002\u001a&\n\u001dn��t��\f�a\u0017��\u0018\u0011�\u0014\\Y���~o�U\u0019��� X٤��\u0018C73�����v\f��&��4�n�-�;4U�\u000f���A%�#P���bJ�\u001eq�����O�3�WVƄ,��̖N�/Ai�U��O��\u0013\u0016�R�D�c�\u0016��\u0018�\u001dik?d���Xz�E%֑\u000ecK��\u0013L{\u0010H%�Ω��dI��L\u0014?%���\u001e\u000f(�\u0010(����cP\t��\u001b�\t��\u0010��:0�6�\u0017�\"�\u0017)�r�_sDv�*@��LD������3ȁY�\u0018\b\u0019�\u0007�\u0007'\u0006�\u00102\u0001�\u0011k\r�J$.\u0013�����!!?�\u0001j����\u0011�djQ_�\u001a\u0002�\n�EF�\\b��c��]\u000f�\u0005�Js�f�`U��\u0013\u001fE\u0010û��\b�?߶����\u0013���Σ���b24\u0004�\u0007�e���j�}�v�k\u001bH�\u0004L�PS٥�A��#d�������kX{��>|-\u0012�#s\u0012*�3�y?���\u0015\r��>C\u0005��%%�!\u0016�\u0007�C�\u0016�ֹp��eC/{R?\u0005v�>=\u0017�����\f\r^o�O�^�Iv�\u0005����p���\u0013(\bṕ�\"\u0012���5\u000b�t@4�r�I�R�ad�}�/�D\u0013�C�\u0012~�\u001a��ׯ��\u001f�\u0011��Ć�T��ܡ�\u0016�:���T|\u0004�s�\u0000T\b)�\u0007~Jl�Y_Hb��0m��n�'\u0003\u00008x\\d�\u0002[\u000fP��c�ƹ��M5'�L�\u001b*�\u0015����2hN��\u0019�}0vqB��:\u0017��۾�(��t-B\f��ɡ�3�x)�����\\-�{%0�׬�K�\u000f��b��\u0001A7�6\u0002��x��p����3\u001cjҚ'�uT0�Bi�N\u0010�T\u001aY��S�L�aeG\u0002rM\u001f��\u0002i�ֶk�*Q���\u0012�B��\u000b�=EB\u001dV�\u0017�\u0015��Ru��\u001a�3\u0019`\t���\\7�\u001c��9\u0013Z\u0014!�d��$��\u0007p?q/�n��#m9-���A\u0016�#x���˺�\u0018�ZU\u0018Q���!v��=7��D�8x�k�.g@\u001e\u0011~��\u0017$���Ӈ<�\u0019�&\u0003�����U�$D�p�\u0011Ƴ�\u0013���\u0017y\u0001L\u001bF�sUo\u00001��zj\u0001�ɥ\u001a\u0007Ր4�]�\u001a�$�I}sThX�\u0005��~lѮ�(��) ��!\u0016\u0019������\u0001O\r�sWq�܋�7!Z�t�\u0015\u0015U�]\u0000���\u0006\u001c�>���F\u001ev�\f�V���\u001e�\u0006\u001f�B�J\u0016$2�n�(]��Vd\u0010�$\b���\u0004\u000eĀ�T})a���\n�xu*�\u0012�â�IIRW\u0018\u001e��r�eؗ3���Į%$�q\t�f��@d�\r\t��r-j�Z��A\r�#�����I.�.\n��o�^�Р�\u001a�\u0010\u0012r���\u000e~m\u000f\u0003�\u0006���)}��\u0005��\u0007��ۋ�ι��5p�\u0007@�=�0qV�X\u0004�Q]��!G#���9k�H����D���B��>\u0018�[�3�W�:ҋ.e�=Y���˾p�\u0015��_��\u001cʽn��\f��%�����K�M�¸��\u0012\u0016�G�o\u0012��P�&b�L%O��Fq\u0002�\u0017;�e\u0012�¬]�t���~�,�Ϝ�\t�B�\u0004f��n����#<��J��2��P�Hu����?�ۃguj\u001e��Z�\u0005�A�o�\u001d�\u0001��(��sK#a����Aÿ\u0001� �\u0017N��s\u0016�;�?Θ�R��ȼ��\u0016����v˜��'&8qK�y阿\u0007�r�*���˰��]ΡU���g\u0003͝M-���ln�\u0007�q^+%�0��9���I�_px�v�9 ۍ\u000b7�g]\f�s��z�\u0017q\u001d\u0012UA��\u001d��2 \u001d�\u0016C�\u0000:��:\u000b~5ޣA\u0017�#���L��)�kJ\u001d\u0018(��͇W@\u001d\u000b��yW���wFL�q{ذ�3�\"O��J�T2m��\u001aݱ�rr�)�ky\u0018,|1���Ů\u0011�\u0004\u0016�\u000f\u0017\u001b�;\u0000�P���4���݈\u001b���r.&2�`�D\u001fF��Y\u000fe�\u000f�l�\u0017qqw��+��qH\u0019\u0000A�\"ߥ�%nZ<\u00009�J=OOZu�e�o��\u0014��\\\u001f��c�K\u001f�s^��\u0007��HC:�\nmcX6�W\\o�r9mg\fy��Ϲ{��y\u0001\u0014�U��/�WA��{�\u0005�Y�×�H�b\u0014�b�u�`��!���;m\u0016�j�\"�j�\u0015��=���hF��#ؠ\u000f�t$ڕ��?���-�A\u001b�#Ȁ�L��U\u0017�ܿyȂ��1�?l\u001cڗ9E���ާ�2Ⱦ���\u0003\u000e˺&�����=�ѽT�-\u0006�\u0015)`gt8vqE\u001c�}��A'�#����m��cs\f;W(M~O�i\u001f�T��z��\u0001V*}��H]uv^�:E�>�6��U\u0003r�� +u\u000b��O��;�\u000058p��:�_d�\u0011\\�i�\u0013�_���\u0016�uJ�M/^Y5�L`�)cb\u00113>ɏ6�N\ft\u0014�\u001e�h>��G�+c���2�˘��nwͼ\u0016�kHsS�\u0001Y�=\u0013�ۙr\u000e��\u0005Ed\u0018?�#k��_�QR^\u0017�e;�HP��H�K(\u0012�\u0007u\u0018�K�\"�w\\.\u0013�\r\u0012��y��t3y\u0012\u0012�#��z\u0001��^\u0017�\"\u0001\u0016U͠�Q,�5l�O\u0001)�eU��\u001a��'?ވ�xc�\u0019��@/q��\u000ej�Lo&�\bL\u0007��-\b���S\u0015sM\u0015\u0006�ۦF�!�A)�$\u0004��L�x�V�\r��]lO�Cܸy}�e�C�A`:��r\"|��c\u00105�>X�ʚ�m1�\\g:�-�P~��T�T@���\u0016r�Txn����@c���\\.�m�+��ّT��u�(��<���Nc/hzf\u001co��{P��\u0019SK�\b4�a/fz�z�/b\u001a��\u0003�\u000e��\u001b0\u0017�޺�NU�\u001c�d����ifQ߼$<͈�q��P�ۘ�&ᘆ��$Z�y�7�]�\t�03�?��\u0007\u0013�N�?�V3�g6�iM����#\u001cGm��]f�(-�\u0012\u0017I�M��r�<>���l�����\u0007�5�U�a�,O���L���\u0006(��\f\u0015R�3\u0000F6�\u001b�\u001a$�ȟu\u001b[�A%�$\u0018��M.\u0019\u0001:�Ӧ�k�����>�ˀe��H�# �e��c �>�pC������6�\"\tc,>ٓZ��\f~\u0012g��q�qQ��|���R�U�'�t\u0007����޾3^\u001d1\u0018\u000b��?�d�%\t1\u0015C�P���2�����-I!{\u001f��\u001a��b<�\u0001¬?�\u0010�����F\u0003G��\u0015\u0003mF�\r�\u0018T��L\u001cM\u000eI0\u001e�\u0006t��\u001aZ��z�ϱ2�V\u0016DpxY\n\u001a �\u000bїc\f�_S\u001d\u0019���ۺc\u0003ߑ�\u0003\u001bg�'\u0013x��X�bnԚ^���(\u0007\u0018߼\u0005-\u0015���\u0005paհT�������\u0010\u0001�\u0018T3��>R-�jrf��<>���ࠏ�\b��\"�\t�A2�$,��L�c�\u0000X�\u0003�\u001c�,4�\u0006[5\u001a\u0018\u0014\nV,�E�xS���eǦ\f��M�}K\u001b\u0011��\u0002�\"Jg��q\"�\u0014�#pf�W\u001d}��9���eR�\f�\u001a\u0010{3\u000eP��-��������ϕ���%20��'��\u001c\u0013B[��\u0004�\u001d���'��y�\f)��H\u0010\u0019���\u0005�f\u0014m\u0017ߵ3k͌���w���\u0012\u001d޵D�\u001aƖ҈�֞�\u0016�F��`ߊҕ?\u0002.�`5�N���VRI\u0010I\\�0�x$�\u0005\u0014�Q��X\bw\u001d���jϷ�7\tOF�\u0007%l.=T���1\u000b��\u0005�]8���L=B��RF&\ne=�c���`�H�*\u0007�Z���vKl' lj�\\\t�\b���lr/�����/���A'�$@���\u0015��kU4I�{\u0007|\u001e\u0001Bq�p�+��.)\u0017\u0002���p��6��I��8��\u001e��\r�f\u001c�Z[�y)��/���y��l\u001d��\u0007�ܶ�\u0003=}P�\u0001\u001e\u0003�W����@�\u0006��\u0013;׍�fh�\u001e��^D�e���M���eB{S���#&\u001aS_P{�6\u001e\u0001\u0003\"\u001eh��Ȕ��\b\u00075�G/��\\ğ!(+a�F**qS\\��{�sTD��1�y�U��Zpr�\u001f��M��Ҳ�-�<|��)�=�##��!�?Sb���e.@\u000eg\u0017J���J��1\u0002���eV\u0000\"\u001fyߙ^^g�)��P�T�3���F�o=Q׆��a�k��3-2�����1��\u001dz�T\u0004��A!�$T������l\u0003��#�ȱ���&�z�OG��U�K��X��(F�[��!��oݦW��\u001e\fU\u001c�9x�P�?��ݵΛ�V����o��\u0002�0\u0000t�k���6\u0018���r\u0005��\u0010F��\u001d\u0016k@�˦\u000fa��W#\u001f�G�\u0016tlp\u0005Ls� \\>��d����\u0005�M�d\u0004|�fq^p\u001e� )�\u000f}wE��A��@���\\M�؉`\u0018U���\u0004\u0018\u0007�\u001cF�p\u001a\u000f1\baH�qk��,ax\t��X|�;Ɨ�\u001e��y�\u0004�Q-���I�\u0018�Đ�%Ĩ̶\u0002��`����\u0014�\u001c�xm\"�)\"�0)r�00Y�����\u001d�'`ۇ�vr���}\n��܏d��A$�$h��L�\u0011f���!�L�۾\u0000�͗T9R�\u001cW\ta\u0001R�kvй�#y\u0007B������\u0006�\u000fS~�w�H���]e���Z��U�\u0016V���&�m��Z�=z�!\u0011\u000bA׮U��D�{�&����tNQ����2\u001b{!&Gb\u0014꫚��\u001d�Q�\u0011e�L�\u0015�\u0006p\u0017Ā\u000e�X7,�����o�\u001d\"�V�8[�W�\u001e�c���w\u0006:������\u0014�Czڂ�<�`�����*T��\\\u001e��a�\u0004R�5t\u0002��\u0001�.\u001d�q-L�\u0010�c�\u001c�G�\u0006i�n�\u001bN�)�7�$0�\u000ecQT|I��\u000b���e\u0015l\u0014�jU��\n��\u0014ge3�)\u0010F�\u001e�\u0005ɓ�/��p-Un�\t�Aف$|��|�.\u001d�3.��\u0000�b0�\fY�1#9V��/u���:@�\u0016\u001e!\u0007X\t�'�%\u0016\r��G����5\u001d�Pyk���\t����\u0000l\u0018��\u001c�\b�/\u000f�\u000e_~w\u0010�J��i\u001f��O�1�ʰ�5�\r����\u0016;�B�b�4�\u0001KH��+�&��A-�$���.u0�\u0013\u001c�q�\u0011��0ӴaQ�\bH$�;\u001e�2e_�J(H,�k\u0018��,�#?W����>�1����PgG\u001f�p�r�{ޏ䓻a�\u0018T�\u000f;4be\u0004����\u001d\u0006.�6��9\u001e#/ȫ�Efї&tM�||��K���7\u001d�}�K#�y��x���!S!\u001d��\u000e\u0003�G.0�]5\u0001L���\u0000�r�_�';u]E��v��\r\u0012��;\u0015\u001e\u0012�\u001c�\f��V�\u0006���\u001c�=1���\u000f�\fT�\u0016��լꞄ&pȗ��r\u0017\u0004F���\u000b�D�\to\u0006��\u001a�!`�c\u0018���ޏ8-ݾ�ׯ�X~��U�\u0013%:y�\\.l�=�\f\u0012k�,�͎%�9m�6����\u001cs�];��A2�$���L��쀎��h�y\u000bT�!�K��<{��\t���ޘ��\u001aY�MI}�\u0011ȏj��oUM��m=nk��ڡ�D�����\u001b\u0017~h\"7�{#m��P\u0007�\u0017\u0007Q\u0015�z~Ip�R�\n\u000f��Q�\u000e�01��a��0�����u\u000e�S��.@\u0001\bW�\u0018}k0��l&/�K��\u0001�.,E08��[Ɇ��k�<�s�\u000e.����\b��w��7u�\u001a>�Wp�M�\t�nE-Z�;������?��uvF#\u001c�\u001aJ�\u00169c��T\u0010�ѣAM�$���J��dM�C-\u0004@]��RϞ�1.-�l\b�G�J\n�h�Ȳ����k�:r\u0012!�\u000b(����6\u001b���L��#���Kt��\n\u0001\u0015\u0001Ժ\u001a\u0015h\u001c��Y�4(\u0006˶\rۋ��\u001d|�dߟ�C����B�\u0013\u001e�H\u001a�$pP�G�\u0019�N\n\u0005\u0005�.4%&�\u001f?�>H�%A���\u001f�\f�C\u0019b���\u0005b\u0012�x$\u001e!\u00136�X�����9g�w�J\u0015\u0018b��\f��\"S�q�)�r\u000f,��~R���\u0016�)\u0014O�|��!�D��=V���<8\u0015{��[[����\u0000�9�[�E(����\u000e/�\u0007�/���4�AJ��\u001c���\u00118C���c)$\u0000��F���tɌ��)9���r�! *\u0005����������-�\u000fVP}���\u0001����Á$̀�|�{g�\u001b\u0000\u0011|#W�\u0017�A��m����D\u0017�v��� ���\b�Ťm��T%u�[�N4�Ⱥ�\u0010d�\t#�\u0003k?��\u000b�,f�wlY,�\ti��)�`�\u0000�V(0<6�\u001f�@9_\u001a�^D�\u0017��G\f^7y��5J�¹�8�}\u000e՗>HG�*���Cr��U��]\u001d���wc3�٧y�_\u00028e&eR&1�\u0011��\u000b}��W*-��h�[~��\t���\u00006\u0003�]��k��4\u0004W���(E<��]�\u00130���[�S����\b����+���|\u0014ps�&�\u0016�dG\u0010��%�)\u001e\u001e13��c�\u0011���\u0005�`\bkFbW,,j����d�K�h�LZ\u001d�͹�\f rX(\u001b��\nt�o��|��-\u0016c�z<�\u0002�\u0001�����]�\u0018\u0015b�e���h\u0016\u0002\u001cj�\u0003�͇��,���\\2��G��\u0007?�vu\u001e�ϻY'�l\u000eB�g*��?G����3�'�2�>)�4�&0�p��{5q\u0005S|u\u0007�����0<�\u000f\u0017]�6�×?`��\u0018����\u0007��\u0000ց��zBw밢��&ڸ�\u0007�`5�Ay�$����I�o!h�����B�����PPg�e�;����w\u001f\u0016�\u000fr����ڻ����\u0003�c*�0�>i\u001e�:�=�\u00046�GXG`�_�O��S\u0000Iil�u��\u001f�6ZܚlIli\b_\u001a�A�~�@h)��5m��zu0�������vX+����V��]�Y�<�\u0007��t���\\ں_QÜ\u0000]7yM��B1Z!\u0017�\u0001�\u001e`|=s(G�Z\u000ey��>�\u000b�bn�<�U��\u0012Vv�\u001d���+:���t�b��v�F�а���'Yd�\u0007����[����J\u0003�\u0018��*�?@��ch�G��-\u000f'��\u0005\t{mXG�jʫF�)��ht#��\u0015<�ү��]���0y]UZ<�$\u001b���t\u0002k�Z�n��\u0003H��\u000f��S�X\u0013�\u001c�\u0002Y\th���}�\u000f�\u0000\u001c��X\u0011\u00128m@\u0007G�/�� -]�\u001b^rAJ�􇙶��B\u0012�$���I���\u0004�ѧ\u0012�[G\u001a���*Ť\r��l��}�1�ٲ���\b\u0019�Fs�\\��\b��N�\u0015\n��=>��f��M����@_�QI@�ky*[b��\u000eˇ��+�b���:�{�)Őf\u0007�������\u0013E\u0000꺼�h\u0017\u000bj��f7��Hhk��\u0007\u0011\\-���Y��yZc�sCc��\u0003̑���\u0004Cd\\�mײc�J��Ƨ\u0019�h��d�\n��J�l\\�����4]�0'��4�����%&(+?-�u�r��\u001aL�!t��gʹ�z*��$�o\u001ckU~P�\u0002\u000eS���pS�\u001aF�B��U\u001d1=�^�^\u000em��\u001b\u0002��/�%����y\"ԥ\u001eHyB\u0013m��%M�4Θs8�\n���\bc�[M'�Q.��1�<,��m\u001a,�\t���P��\u0000\u0004;(��(���d0�\u001f+��.\u0014%,\u0007\u0014\u000bl\u001c͐+&�=\u00018\u0011H�Tf�o�*;\n�֐�\u0000b��\b<����\n\u000e�c���p&��}QUJ>L�\u0019����Ϩ0�R\u0000��LoR��\u0016�:�N[\u001ao+\u0013,jL�R�o\u0001k=��a�H\u000f�ܜ\u0011�Ƣ2�w]M���\u001c�i1�\u0002�ə�]�桱�k�i�]�\n�E�p,�\\\b�Cr�9\u0000%�q\u0014Q��=\u0016��/8U����A2�%\b���ٗ�\u000b:�<�\u000b. �E �\u001eT�r\u001a�`�����B5�*�\u0012d\u0000�wk5@\u0012c$� \u0000��\u0002.�\u0013�����M<^A:eCc��\u001e��\u0000�]`U=\f�\u000e�*�R�=�8ۆ\u0000>T�XB�`��_��>\u0019=\u0019\u001e=�x�:��\u000f}�T�@���98?���Dm�\u0015��w\u0000D�:t��G-�S+��#�N\u0016z8ᢒ\u0003�A\t��\r���=j(�o:\u0018�x�\u0005�����\u0015����.#]�Z�J�塰'�5mtЂ��m��l\u0006\u0019�3\u0018ow^�a[\u001b\u001c��\u0018�\"}i�����\"�g\u0005A�oL�b\u0002\u0011\u0016li�o�\\b��7Gf]]\u0018\u0011�\u0019>&y^0��4��[��F\u0015\u0001��������\u0012��A2�%\u001c���\r\u0003-{O޶�\u0006�vG�(#F[�\u0014;��u�\n2��X\fZ�Mx\u000e\u0007��\u0011�\"_��̲~XEʯ�\u0017\u0005\u0002�\u0003\u0007�����\u001d�[�d3��{#��)6�y�2�n��\"�{\u0013&\u000b��\u0015X�\u001f�-��37�%\\A�����~��]9�+�<�\u0011\u001aB?���\u000eV���]�€�ZRcu�=��\u000b|L�k,���L0�r\u00137n?�������\u0014+\u0007\u0004��GrF\u0000�������6�ش��\u0018Cue\u0005�k�f�\u0004M�Z�\u0001��,���d�Mݨ�\u000b��6�\u0000�IE�\t�Ţ~�)�B\n�Ȁ\u000b���x�{-b���8m��\u0017Q�\u001d�K��b:c\\S�εPQ�\u0018�/��\u001d�fq�C��\u0000�\n2ҟWķ�35l��n[c?3��O\u000eB��A\u001d�%D���\f�\u0018�\u0014���s���k\u0011��� ����|�9�\u0010�\u0015_\u0012~���G�\u000f��.\u0019O����oX\u0015\u0012��3\u0011��\u001a�Qb@XI$\u000f�O���R7�묋\u001ePc��?}�����Uʵ�xJc'�\fQ�'Lƫ���\u0005�`\u001a��e�.�*����P���yZ�ep��x\u001c7\u0006\u001e��($i�҃L�PxQ��g��SJ\u0018d�\u0017��&��k=��6Q�\"\u0010A���ԙ��D�d���J�\u0011rƙo�;��\u0000���AŁ%X���z\u0018\u0017u��E\"�ρ#\tZ6�N�\u0011�cq��^�o�3\u0001��\n���@��b0��b��\u001a�6��\u000b�R�O(�4\u0013�\u0016;�V�(]���a\u001b\u0005�\u001f�&��(\u0006,��\u0007�ᳲ��D+�\u0018��5\u0002�'��y@\u001d�����)��ᢩ���P.tكO�>p�~$*�\t�\f���n�n�u\u0012��Q�‹�h=\u001e���\u001d~��\t��-��2sh#���\u000f �cFW�.�4�n߹\u0006��Z=�5�qZ,�i\u0017��e�\u000f\u0014F�\u001b\u001ai-�ԑ��L ��Ϛo��\u0007���\u0011\u000e4�ᣩ4;���e�_zCG�_��\u0007EK�ueL�\u0000o��7ۈ\u0013g��Gz\u0001�U\u001b�_q���z�a=��N�\u0010\u0000\u001fՔ�\u0006�gn�%,�w��z_�y�-�Y��?\u000eވ��=��P�/-��9;*)�\u0011�D�r��\u0006�l�ױ�TR#ɲ��\u000e���I�[��4�n��뮦�������Ў�i[0�a��\f`\\\u00159�a\u000b\t\u0001\u001d\u001b=�g�\r7̶�/������I-��\r�OW��\u0011L��A\u0012�%l���v�Z�Q���x\b�|\u0010F�~\u0003�\u0006�W�w��\u0014\"�-9X�s\u0006k�\u0001\u001e=�\nWZ�a�>C���\u0007\u0013�ƱN���_-1�NH�\u0019��\t\u000b&�{K��\u001b1cG���;�-ȸNr|'w�&`:����\\�\u0004\u001d�B0b�Щ6�= v({�y!�\u0004��\u000b\u0016iG\u0019��v��6�\t'M�����lb?A+�#�\t��i�C>͢���~ח���\\$�ڈ�}�R$b�81Y��Hd\u0012-���\u000eEx�㡒�W!+�Y�w�9��\u0001\u000b��\u001e�o4����o��&�Fm�\u0019n/O��\r\u0013х)�*�L�ڍON�f���P�A\u001f�%����mq��7�(\u001d\u001f/��OeG���%>�ƣ�R��H�,�\u0002g�T��\u0015�\u001c� \b_���ą̂́��e�E\u0013P�aW��bUT��պ�a\u001b+�{E�R�'\u0019\f�eCO\u0012\u0012\u0005Қ���\u0001��Հ�.&l�\u0018x��1)���1W\\I�\u0012\th2\u0004OT�[V�U]�\u001bB��@S�m�\f\u0016����OT�7����Вb�7X�8�o��Udi\b���\u0012\u0017\u001d�müJ�P\u000ex�\u0016�(�(�����\u0017\u001c\u0011E\u0002����BQZLJ�Q%3�d��5�Co(�O)cl2�\u0000F\u001d�\bj�\u001b `�\u0016�¨^ \u001e$�܉otȟQh�\u0003\u000e��l����\u001d}`�УA%�%���������\u001a[�\u0003�N�̼g��\f�Y)\u0013>��9\u0018�\u0007�\u001b�\u0010�X\"�r��d�y\u0006�\u001a�)�C\nP�����d��:J'�9,���ht�\u001e�I�\u0006�,֯���$�f۫\u001d�j�\u0005x��+ɛ�V�7�~;���am�r��{3X)Od�\u0010:c�%�ɢ _�l��T�.S_:��\u0004�cq��I��H5��\u0016E��|��bNhL�����M�f\n�^Ϩ��'�\t���2����x8�\u0006}l��^����_ �\u0011��S���Ol�<�d���\u0017wv�;\\�b�6u�6�\r�W%\rJV��\u000b@⑻��|��-vQT�����9��f��p��x�A\"�%���M\u001f:\u0002�\u0012�x\u000f�?�+M�O�)D����b�Щ�\u001a7�\u0014.��mn\u001d\f���\u001b�24���@r)_�-Oq_�\u0001w~�����״V\u0006\"�U?\u0014Wآ��BH�q�^)jM\u0004p��\f�X��\u0015�p�w�X��T/e\u001a7��Kb�kO�_g�V�������v���I�J\u0002ي\u0002EN��1_��_b3ܽh�\b�ⱸa���\b���4�0���\u001at�*\u000f��\u001d�_6��%s}\u001e��(�=��_�|�3Q\u0017\u001b�_�7��15���m�\u00182�ˉ\bQ�ݓ��|\tuv3�9<\u000fjZ��<���O&:^ :l�R�%��{�N�o��w��Fc����A#�%���L�`\u0015@VŝG�O4\u0018�֯�[=\"w���WȰ�����2\u0017���\u0004�d�mD\\�\u0016pc�,a½\u0015�8��`��oh*�\u000f\tg��6G���\u0018���U��p��m%Fd��d\u0012��\u001e���\u001eSF\u0006x��\u001c:�\u000f�Dא\\T�X5p�:\u001a�\u0004A���%\u001a�f�\u0013�ሤ0��,�i!tj\\�����hy��=\\qL��\u0012�\u0004Z�י\t�\u0017\u001cz\u001e�\u0019�ȭnvV�)x���x5+`8#^�\u0012��\"ߊ{A��CG����;]\u001e��OI�y\u0019E�(-L\u000f�����T��^�T��r-�\u0015�|\r%��*��a_>2��s\u000e��3\u0001�n։�\u000fЗ\u0004r.�ג�A(�%Ѐ���%\u0004\u0005c����;�m\u0013�xn��7!�����j�9j�b���P���\u00026\u0019Z�����?2�Ds�ǵ����Ž�\u000e��do\u000f>!���{~��FY�&�R\u000e�\u0007W\u000e��\u000b��+x��*���N�[\u0017G����Z�\u0016�%�3'��٪5��b��\u001c�j>�5O�7���nY��9H5�\u00178o\u001f^;�\u00009\b�2H���\"�\t���\u0000��[i�\u0005�%��B���q�n\u0004�\u0000�VX\u001c{��\u0002\u0007�1z����\u0004\u0014�W]\u0003y�T\u0004��'����t��\u0004@�G�otֲ\u0010�R$\u0010-����\u001e�\u000b\u001a@�&Q�GW�:\n���.��\u0018�\u0001�C�Ӈ`L�\u0015,\u0006X��\u001d_��Bz�%��}a\u001c��*\u0004����4\f��|�\u001e�^��S3��C��!V�\u001a3��Ǜ�>�+¸��R�s�ԤF+,�Jݐ8�9��ʿ�[-�\u0015�\u0006MI&�6g|\u001e�\u0011�k\u0018i��Fȭ�\f &\tD*\\���沱�t��C�C'\\�����v�\u00178\"n�]\\�\\\u0006i\u0010.��͋��|K�&:�O\u0004\u0001[��`gޅ����mHqu--А>IS�]a\u0010!�CI����Fޣ�/\u0015�Ѷ���mӭS\u0003|K3V��\u0012~xQb��9����\u0004��\u0014�ئ\u0002��@���a/S�&��٤5�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001�\u0010�׀���\u0015��#3�-!���}@�:�\u0014�\u0013�\u001c\u001a1��;8�8\u0002��١�8�Ә��m�֢���\u000e6DaG\n}ѱ܍cE�\u00028�ځ�nT\u0002Mh�3딎�����sm\u0015>��h\u001e�8����T\u0002N�FZ�?\u0010�Ԅ\f�t\u0002Ε�� \"�z؀\f����i9�D}��X\u001aIZ�?D\f���\u0003M��\u0000͠X�-���\u0007�{\u0015\n&7�-�c���\u0007P��\u000eD�\t�i�C�@(/\u0012O'w�8r���\u000f�e�S\u0006g\rn5[+��^|�C�+�R\b)�m�n��GLi\u0011\u0006�Sj�U�M�\u0002�=\u0011\u0002��׹-\u0013�X͹\u0006,+\u001eK�|\tL���)b*y\u0005;m\u000bp���R�\u001bY@�3���,X�\\\f�D4�$��\u0016��9!8��\u000f��5:���|��\u0016�-;i\u001cjN�O�C䵸+\u000fL��Km��$�޶|�)�n&��A5�%���.L�\u000b0�eڭ���=#Q��ݺm�7\u0006'}��}�&��\u0010���!��\u0001���A��>�r\u0007u\u0010s���5����[��\u0006�\u0005G�\rEJ)4�J\u0005�Ն\u001c�\u0003��1�\u001aΝ\u001c��ݶ�J)ِ)�\u0003�^��;\b�\u0004wJbB��(J#��\u0000�\"��ɛ��^�j'�n#�\u0003!�.��,��\u0012]�5k%���9m�ոvcȽbX�\u0001od��IMf(�\u0011��Ci���\"0����\u001b[!9�@N�\u0002�\u0017����Q-�^W?\u0018�>Ј��G�\u0003>�e\u0001}Xo3V���dsF���\fn*)/��r�\u0003��3n5h����]dK�)\u0000�f�0��+�\u0000\u0002��B�Ҧ\u0014�\u0006G&O��7(�͸�\"�[�A9�&\f��L�\u0010�gM\u001c�Ɗ���`��\u0000�%�\u001a\u0011:�6�+�\u0016\b(��\u00156�V�j �z�\u0019�����\u001c�S[t\u0015��9x\u0012���\u0002\u0018J���\u0014.�c6�q�\b�9�0�������N���\u0007\u000f�kt��v���ۊ�\r\\1�{H�\f��LJ\u000b���>��Υ\tM?�s��c[`��F?��#\u0007>D�_�,��\r_�US\u0017�)os�Q\u0018�I�s�U�r}B�x�7\u0012(�`q)&u\u0004rV6zK\f�\u0012\u0014\u001c�\u0002\"�\u001bK\u0017q\" \u001bhl5���\u0019h�������e@�8\u0016kܾ\u001e�8�\u001dL3���y'܁ֲ�N\u0018ˌ}���'2B��T�Ǎ�\"�U@��vxM\u0003F\u0007�-\u0007\f\u0010>��0�t��K\u0011ض��I\\:�)\t�A7�& ��1�\u001e8\u0004֯b��m���a|~$��\u001ef\u001d�h��\u0018\u0000\u0000(\u001f�y��V\u001f\u0005�u�~�M�*Tb\u000ek��Ҵ��_�GP�\u000e��գ�ѡ�L�ϙ�,RUV�J�D‚�\u0003M-[�f�\u0014�֫m�s^��#�!\u001b�������4`�beI�a�1��G]󿬄Ֆ�>��\u0000�[WR�0e�]�e�=� oϹ�K�\u0019.7ۈ�m�޽���—\u001d��E保m-�^��Y�.ď\u0013\u001c\u0019S�>���\u0004x�跙D�\u001bh��6\u0012\u0019��ɪ\u0013��E#�\u0004NH��*k��㝋�));T�jnB��b1��C�V,'�f����Dd�\u000fo�je� ���0����B���p��'�Գ{�v�A4�&4��1�6^?-Yal�8&y��\u001e8��v�\u001d/9Y\"|\u001f���U�y�7w��\u0003}]%rJ����H!��|�s櫊�\tyT�Z7Ϟ�lB�G]�6\u0003�D�\u0014\f501\u0010�\u0002�\u001f��愈~>6���\u000fP�.\u001eg�\u0014\u0019#\u0000=���\u0017-*f��\u001c�B�Y�|��\u000e��M%\u0006\\u�y\u00059tE�7e$6�M\u001c��n�X�Fwқh�3$�b��QiP�Ā�t�ʼn|A�I\u0016_+P����\u0004�brɩu5��P�9?�!\u0018\rM@�\u0013\rz�`\u0018R\"~�_\u0016f�\u0013��-sy�%��)�c\u0014X���[��'%4�W��;?~�#'�p�����\u00017j*���a2��.Y7~乶��\u0000m�Q\u001cb\u0017�r�A��&H��|��\r�%{�K\b��w@h������ր�p�_\u0010�'�I��J�XZ������\u001dzrp$�����_��Vi\u001e�����|q�6�P\f\u0004n2��4,��j2��\u0018�\u001f\u001dH�����lj6%\u001dM��\u0011�',\u001a�z�<_��������\u001f=�$<�\u00130g\u0002���\u001cQ�\u001b������U�UaHB�rx�)|}G��/���-�x�AI W����w���J\u000e���\u001a���(��+��xs7\u0002�'\u000b@���IM�L|�uO��'\u0003��\u0004eI�cSi�\u0004:3Z׶f\nu�ۢ\u0001�q�GN���7W�&S_�Ӓ\u0002P\u000eΎ�x?�ـa\u0004h���1���\u0006��5t8x_OMP1���p�H\u0013\u001b\u000e��O�'ͳ�\u0017�1\u000f›�[�dܻ��x�\u001c/�*K_W�7\u0015\u001b#^��9d\u0007�9�<*�\u00034�2LR\u001d�h\u0006\u0004��\"�ue�y��\u0000.3�f-x����¦C�\\�:�ךT�t<��X��j���(k�J\u0002��\u0012��*�vV�^E�݇-ؾ\u0019\u0010��+���q~�[\u001d�Ou���ej�5:���\r����W&z�O���{\u0000\u000f�&bތ\u0015}�S�\fN�\u001c8l�kĨ7]\u001d֫��A\u001d�&\\��L��:\u00128�\u001c��W%���ߨ��s�gܦ �����#֕\u0010\n{[���\u0005\u0015M��~q�C8��W؝��2�fc�@d�\\&\u0015<�\u0018L\u0019�����@#-�\u000e�\u0010\b6��ߛ<`\u0016���z�3^��5 ��iyϞݷ+}�1\u0014dλ�U=�;\u001b��\r4I� \u0005�\t\f�\u000e�x��b���\u000f��tY��_\u0016\f�.��\u0003���B�ƞ��8�e\u0013\u0017b�t�W�=��C�#��c�G^2)����L#'�-�l8D��#���u(4���\t���W����/��:.���&�w�3r���=V��|J<�A�\f|�ʻ6�V��`�ه\\�A-�&p��M\u001f�����\"Ԃ\u0003\u000f�_�A\u001e���N\u0011����ߟ��_G��,{�e�8��e]����d98xVz%\u0002\u000e\u0002t\b�A��g]��M\n�V��!����5N�}v�\u001f�F��\u001b1�F�E2�k~M�\u001a\u0011\u000f\u0013�;���J�K�2�l�\u0013͸�x�W\u0010�`��@��O\u0013@\u0016�z�\u001b�\u0001ЛQ~ÃF\u0014\u0007��5�\u0001(�6uc��\f�\n�Dn��R���\u0006຀�I��\u001aK��3�s��墴��բ9v\u0006�1���IeY�0e�\r��C\u0012:R}@L�|�x�Ù�\r��S`-\u001f��\u001d(��Yw�.g�o��&����\"�̰;ξ��~�GC\u0007jh)\u0018�b�)��ңAD�&���MV�x�L�\u0003SY\u001d\u000f�LB�\u0019Y5�3�ut��{���M�������\u001d�]��Rv��Jj\u0005�+�\u0018\u0001\u0018�Ǽ\u0015��0��d�\u001d>tu�wP�\u000f\u000f�7\u000e���\u0003��*Pb�r\u0015���\u000f)\u0013J=\u001c\u0005�*�{܄\r�\u001b<�M8�����V\\�C{_JC�\r��M�\f��\u001bޣ�+��M�\"k�\u000f;��8P��\u0017d-W�,\u001ehv#�O̲!���YnJz���ҋ�\u001a�V)D4Y�V��P�\u0006^�1�@k�Q�p2�\u0002rw�/\u0012!v�JY�����\u0005!�QA?s��6\u0006��@/�\u0004�F%�Nd0%���mX�k�H\u0013�I�����\\v��A��9�����\u0003u��\r�`��+3d\u0000umlo߉���K���\u0005�{�xQ�A\u0005�&����\u001f�\u0016b���̵~�\u0003�'\u0000«�\u00058%�,��y��\u0006L^�#�\u0019�\u001e?��x�l������\t�(�6�����=>Z�j2��Q����M\u0000���t*\u0003�ɰv �\u00049�Ot\u0004-���9�|�]\u001dKB�p\u000fN�\u0015��xo��# ^�fiZr�\u0016™�\u0015���\bx�q�y��f�����r�[��\u000e�\u0018�$\b��qah�\u0014EK&�\u0006[�e�����j.\u0004��¿��\b\u0004���Թ\u0002���H���\u0011\u0004��\u0015N�a\u0015c\u001c��I��a#��ėk[��>�v\u0014�&�}\u001f��\u0007�H���\u0010M��P�A;�&����u����E��LuZﴀ��!Xb��\n���7umY����\u0003�I�T��`�C\buël��$t�q\u0005\u000b��`\u000eZ0��k{\u0018��\u0012)�\u0017J8\u0001խ��m�?����ȩx�\u0003�A�R<�{|qe n,j�v�\u0013]i��\"�v�C����M�s���\fI\u001d��/\u0015�����Չ�~\r\u001c�\u001a�B���T��bb��T�\u000f�=<�Fh�\u0018U��˜��jT���\u0014B N��y�A��\"\u000f�\u0007S�Id]�6�@\u0001�R#\r]�\u001b\f�E;��hE%���q��ƒ\u0001���X����7��bNz�\u0002\u000b���?p��LŶw���~�5�$�b��A(�4�u�\u0017[ .a�\u001b�Rr��ܠ\u001cY�p?*P�Aa�&����e��gWl=�\u0017\u001b/,\\�B�l�gq>l�&\u0004@�d�JU�\u00115\"c�z�YDIsD\u0011\u0011<�����Ԩc$�>\\�\r���Н�wT�\u0004ھHz�����\u001e��n�i;-\u0002ai\u001c���or�\u0014�f�j�ŞT�\u001c�h��M\t�U=���4�Y?\u0011�g�~�L�\r^\u0018\u0015ÔU��D��Y�\u0006�\tZ�4�>\n15�r\u001f�t�0I\b�~��q�����\"\u0019*�D\u0005�c\\O��L�\u0019$�D��\u001e�:iP�\t`\u001a\fn~c�V�J��\u000bL\u001b�~�$B\f���_\u0005�8��ȁ��T\u0010�O��U�}����lU���\u001fQ\u0013\u0000������5r�7��\u001fH�q���ы���\u00166X�J�?���Z�\u0010ɴ�� �~��\u0004\"6r����\u0004�:fhT<~��\u0011�\u0000��\nM\u001bP�\t8\u001e�\u001c�r\\\u0004@�&��\u0002\u0018?y�.f.U݀t� ��� �F��i$E���\b$?3�}�JG9��eX,\u001b�ͦ�g\u000fP�3��%|�>\u000b��ģ�\u0018wE�\u0007P\u0004�ˡ\u001f'$b���\u0012�q/�1~\u000e<��D��Ef3�c��Eռ8���W�\u000f�ϳϜ�\u0003��a%�\u0013t�v\u0004N\u0015��ӚX\u001dъ'%�\b���B%#\\���dxLb���|��}i��S�cJ�\u000b�ߚ�^����S�y����Y+\u00106�W\nzCᵍn��x�Ѳ�4F�Y�}lҸ��M�AP�&������B����gx\\�\u0010�1�P\u0014��.��*ʘ���\u001e\u001d�\n\u0005\u000f\u0011�@(�\u001a�LwJ��}��\fn��4����`���|_�Q�e՝A���,�?Y\u0015g�\u0019\u0002\u0017��%C��y\u0011��|��\u0002ɺ\u0010�f��� \u0017�\bݳR�Kƹm\u0012�JÓ����\u0012��P;eɀ�t�����y\u001b$�\u0018A��K�z\u001eR\"a�aVgG���x�A�L�0�r�^�\"&��W�`��Û\u0010�`p�Ď-�h7�\u0003s\u0012�OتA�l���ȷ�|R��\r�\u001fw\"=l���U��\u0015{m0�������Xho����=��D\u001e�\u0015\u0017G��j�W��Fڿ\u0005�l�hb�F�>\u001c��\u000f�-���F��!���$+�vuj_����r�\u0015�\u001dT\u0013\"$��3\u0013��I\u001fC�u\"�c�\u0001_��A*�\u0000\u0000���\u001fu^#:^�Ǥ}iJEf�\u001d,4�L�r��>�M�/,}�_\u001eJ��n�.�I\u001a\u001aҦ�B3\n$$�m�r�m;#�\u0016J�x�,u�\u0006\u001ce�˻=�\n7k�\u0011�g���n�u)���뀭�Ъ\u001e\\��Ln\u000br�?\u0013��\u001d�V��:��\"_Ƿ��mt}�'/\u0013�l��H��N\u0006�T�M\u001d����0^\u001cS\u0001\u001fL(�s`�bNQ=�jv�\u0010%��2!�<�h^�5�\u0003��(�)'Um���[=��+�v���C�A*�\u0000\u0014���\u001f�\f�55]���x���=\f�[ɿ�*�^\u0003��\fp\u0014�t�F���\u0011�N��\u0010�`HS\u0010ٱe\u0016�!����4�:��\u0007u\u001e}�-�D�~\u000f�;�\u001d�\u0015C-�ҏ��r�\b-�\u001a��LA4l�\u0005�.���gW�`�¯����>��[\u000e\tL�bޢ���!g�y̥j���\u0010{�SA4�\u0019>+�[���mi�f@�C��ob�F\u0010\u000b\"%N�X�w�8���\u0001�>u�{\u001ba��S�^�\\�\u001aC˚;K�R�7=\u000eV�]7���8E���,����j`,a�O�|\u000ex\u0000��*ŋ���_����\u001d��;Z�\u0000�?\"HNb�\u0016\f\t�\ta�\u000b]c\u0006K6�2\u001c�к@�AP�\u0000(��Ć3]��\u0006\"a\u000e�\u0006�\u0016iHH� htb̰�\u001a\u000b[_����{�*q+�\u001f��\u0017�\u0005�R|�\u001f�%�\u001a�����~9������p�|���v\u0005\r�`8\u0015cc̀�T-\u0001)������!\u001c\u0004��0�u?���}�i�\u001e1,,7OC\u0010��Af�77\t8n\u0017Q˛OlC’�\\\u0013\u001cc\u0007י���Y#�\n�G�\u001ft/���e�Q5p\u000e����i��8Ŕ�\u0005�\u0011WM\t���\u000ba��\u0003:f;R�p�\u0014\u0005\"�Q\u0006G��#B4\u0010\u000f��ݩ��\u0005\u000bu\b/���!�4>@�B\u0005�\u0000<���b9ϡ��\u0007`�P���q\"��~��Xu\u001f��W� O�=�D���\u000fP�ђ�@5y�F��\u0003\f\\P\u0013�K\u0002i����t���\u0006��C�HB\u000b��\u001f�$q����Tb+�S՜5[����\u0010l�\u0005��3�ӅY�N�P�\u0015\u001d��\u001d�j������k%H�3K>y@�A߁\u0000P��}�k�C���\b�n;N9�zK*g�`3�9��M:�\\7�\u0006�B�JȮ�\u0013\u001b��D������\u0007l�^%u^…%�7���\u0018_����捓}\u0006?���3wf/���p���c��\u0013,pC�?G�w4�\u0010��l\u0005�\u001b㳍�\fH\u001f�n�\bl��f���U#$\u0002@�A\u0017�\u0000d��M-ω\u0018pɶ����G@\u0016n�\u000b��t(/e��/\u0018}�J���\tU@ya�Bb�JƾA+K!��Y�dSE�����,غs���|V\u0006�p�\u0000�]>=�2�����f�Kx�1�6�\u001a�Y�\u0014�'f��s꒚)����iL\u0000�f��3ft/�\u0006e��\u001f\u0000ͥ�\\\u0013��Mm��o�\u0010��\u001e�}d�7��+݆ 0����\u001e4y$�_�\u0015\u0013�7=\u0005�>�@&o��C���`\u0013{4z�mo��t�;�p���qE�F���w=�h��l�7z�\u001d��s�\u0013c�\u001e�\u0001:)�LzCnn��Ψ3��g\u0005��;����\u001cn�\u0012D���U/(��A\f�\u0000x���\u000f���X���w�8V��v\tA�\u0002��0B:�o\u0013\u000f�(^�\b��Gky��+\\z�h��\u0002�<0�N�F\u001e�\tڱC\"1��S\u0014�SQ�s�o�\u0018�0,�&�\u001a�\u001e���@EB~/�]�u>��\u0001 F�\rd�BCl�\u0007����i�~-�\u0015rg\f}\u0012\u0002���y�\u001bށ\u0004�\u0002P�\u0017j4�-�q�x%�t���v\u000e��,s\u000e�Q�]BCp��\\\u001ct�\u000f7�?�޹_L���\u0003����=\u001a\u0017F,9CsGu\b+K�����B�;=1���x\u0001���%yә\u000f�b������9{��\\\u0002nj�۲�\u0013�Ij�_���I\u000f�A\n�\u0000���M+d�9\\��\u0013����i�H�\u0000�@�v\u00198�LC\u0015\t�\u0005�O~0�?4bA j\r�f��풜��Wm���cǿ��D�3%�gE|\u0011��^6>RP�~�\\\u0012��d��kV�\u001f�$R��\u0002\u0006\u0001w`\bTTz�\\\f�C<\u0011��Ӹ�\u0015�R\u001cM�\n:�6��p\u0001S��:w\\\t���ۣ���{�z\u00184\u001b��'+߉\u0013Uy��<\u001d]\nB�x�\u0002��������rg`BP\u0006\u0018�\u0001\u0018\u0014pE�\u0013&*\u001fcrCW\u001dէ_{�'W�,^gQ�\u0011�P\u0000\r>�����t���\u0015�jS��5���w\b���շ\u001e�K�K\u001f�\u001ax�A1�\u0000����c/��v�\r\t���S�\u000b@��z�R�I�y]�8Z<�W��7�\u0019��i�Xs�\u0013�fw�qxhy�Xꥆ����-���\u0004�RB^\u0015Ӧ�&\u0010�\u0004�S�G�@&�\u000f{\t*�\u0010�O���I;\u0006�.\"����F�;\u0001�W1�c�\u0018�;\u000f��;�S�Q\u001d��K�)���(и�3\u0002��\u0011=�zO��\u0010�\u0013f��\b�jŎ�>��?��ˊw�\u001d\u001f��7D��UB5��\u001f��. �b��\u001c�S�i�8�_ n���L��\u001c��c|���\u0007�\"�G�G'�Г�\u000f���\"�#,{4\u0015(��g�p!|dX\u001deҰ�U�,�z�3�%\u000f����ց��\u001f���\u0000��n�Z�&\u0010���A3�\u0000�����C�\t��ϳÞ�6�dz�x\u001c)�\u000ee��0a\u000b:X6������/��q�����O���60�LjY�E���m�{n�:�b&\nKOR�.~\u000e�F���f�\u001d����az��.n�3�\u0000+��\u0002}\"����\n\u0012�WD0���زH������h�����\u001a[\u001f#H�����g� �\f���HxrxL�z�\u001f�=/\u00021�`\u0007Ǟ��`B�LQ�n�=\b�=\u000b�\u000f�-C��>4�ԛh�\u0012�l=��#\u0006��;�A'�\u0000Ȁ��c/~��}�QFi�j�����wJ-��}�XI\u0012��B��|�\bp;_�\u0018\u0011�\u000f7�\u000e3���L\n/Հ0XOv�*�\u001bE����\r\u0005G\u0018�\u0016\u00146�_�\u0013�}����\n\u000b/�\fߺ�xw�����\u000f����\"�Dz�@��\u0012+%����\r\u000b�lm9�y[\b�[F�\u0013�cߥ�҉�y�:0\u0017\u0003%N]Rc\u0005�#�Z�|}�}�Y\u0017�ٓ������W~��Um�{W�e�|�I��\u0012\u000b\b���Hw\rU�ҿ��~E<�\u000f\u001dj΄�\u0018|����5\u000f�EX2\f�\u0002���p�.I�\\����:���Z�(X���1N�\u0013��\fx���o�<��Ģ�v\u0006A�A\u001b�\u0000܀�L�\u0017�)\u0013ԿJ��gR\u001c���[�Y��H�wr~sD\u0015���\u000e�:\u001a̞.��4�\u0007�B��P��A�L� \u000f���q\u0012��ooy�\u001f\u001dӸ\r�d��g�k0�e��Y\u000e��\u001c����݆\u0016�\u0013hz��.T�\u000e�\u0014\u0017\b��ID8�n\u000f�}&��Ή��Kf�\"�i�\u0007^\t��l�ٮ�q���~˔�H�!,7�\u0014�߆�\u0002\u001a�hP����.6\u0018ӻ�5en[�o���Z��� : \u001c�V���2�\t�o��9�h�\u0004LZ.��\u0002n�4A1�#A\u000f@D�?R\u0010�\u0001C\u0011�jf.~&H��ϯ,>�\u00018��{!\u0010'ۑF�\t\b�^z�u��A3�\u0000����mw�!�\u001a�L>�\\�\f�h_��F�*�`$厒E��c\nl\u001b\u0019�F�駘�GeQ;�!\u0015���\"���2��j��\"Zfn�\u0001�k�����\u0006a�-Z�\u0010RiUA��'\u0012�U/�?�t��>#\u001b\"wk�&ɕ��Ѓij�vd�c\u001dnQ#�F���EU��\u0010�G\u001b���\u0003\r�ge�.�h\u0001�k�����,�\u000f\bk��3)]�~�0EFjs�b�M�.]�FҊ\u001a\t\u0017�\u000e����`/�C\u0007&���K()wR��1\u00189�0~��-K��/0xi�\f�2��ytV�\ra�i]�r�\"�\u0007g:�mbA����Zʖ�o�\u001d�\u001aZ�g\u0012H�?]\u0003�T:#m�'����\u001b�m\u0000\u0004?�ģA<�\u0001\u0004���e��QYÞ�`B\u0003�9� ��\\�[��F�2y��\u0011�BWW�,��\\%.2�ϑ��D��\u0012�\u001fm���+}�\u000bΒ\u0016�\u0012ڗ\u00029�\u000f��\fÌ�e��݉%\u000e��E�\u000e��`\u001e���;+ܷZ�h�L��q�O\u0006S�����:�@�0�V��f /@���\r�\u0006K\b.J���+��TLkw�+{k\u0007ZO���\u0006Q��r�Р���:+�6]�H+E���f�!���]wY�R(�\u001b?�4�T\u001f\fUol\"\u001e\u001a�\u0014r���;/\t�\u000e�2�l�\\�\fc�”\u0000\b�[��/��֡�:\u000e\u0001+^�\u0018�<�ޒ���J���r�+|\u0003�g���p�>yj���\u001e\u0012\u0012F�}�,I-ɚ���M���Hh���A;�\u0001\u0018���b\u0004�*\u0013Z���K��\u0003c{�\u001d��@��6{6$\u001e�c���w\n];U9�lR\u0006�'\u0010<*��V�-\u001f���ׇ�]�FA�\u001f\u0017P\b�\u0003͐}D)�\u000b��Ǚ[�r���ɕ\u0016\\���טO���5\u0018\u001b1\u00079J�Y��SeۿN�;D)\u0016wp�\u001d\f�zـ6���Z��\r�IsJU\"��\u0015�\u0014T\\cD�[\u0005�W#֡�v�6\t�k�\u0016���\b���X���ٔ���\u0015�\tKf�\u0006���C�蕧�dV�{�]3�g\u0001?\u0011�LJo4\u001ez\u001dAv�[Ny\u0000���\u0018*4�� *A�qT��\u00068Y�[u�<:a,�s�'��:k���\"4��6'�ɲl\u001e�I=��D�\u0017��.�M�e����Ѻ�\u0018�M��A5�\u0001,���b\u0001�\u0003�\u0012\u0006L�\u0006���|$�\t\u0011��d�^��,�hZ��9//�7ɱR�K\u0013�L�XC@6���\n�QZ�Ӊ����\u0003�a�c\t��a�T|0*b\u00078ߎ\"Y\u00117�xep�D�r$��\f�ʿ͕\u0013B#\u0003V+]Ĭ��E�$[T��\\`�~pwb�:�\u0004�wb��*<�\\�y��M�~\f\u0013ս?\fX#S�dCW�u���/6�\u000f����d|>\u0016/�K6��B���T\f\u0012D�\n��bV;�R�\u0017��+�\u0002<�\f���5Z΢&�jS�4%����x\fZް���MG�\u000f5D��8�d����\u0019?��B\u000f�s�\u0006�a$��~�=�y�n<��\u0016kwM�&�h�*�S-];�A�A5�\u0001@��M{\u0003��L�\fj%[��6-���'a��\u0016h \"�?R�\u0015|�bl2���\u0013���z:�!�ֻ��FI�(.'L=/��\u0013\u0015�oJ8<0��ݫ\u0007�p��O*�h��RN,�jʄ�\tϷ:\u0001.�\u0004<��,��N��\f\"�i[�d�\u001c��V>�*�D'���:�\u0016ko=���i��f�*�7�nm�q�����{\u001d\b�\f�J���$�٣hb�ф@���zW�-\u001b\u000b�SG�\u0004����hJϊ�~�F���e��\u0001�px[�1,&�\u000f�\u0002\u0004\u0007��\u0005�\u001e\f��k��.!�Y����Rpҝ�\u0011ɰ�\u0006^u\tǃ\u0001O~\r�\\Йٗ���\u0001}�\u0006\u001b��;\u0007�/����Ƃ\r�̶�\u0013Sm\u000f�?ȽV?\u001eV��}�?8���t�\\XaN�U�?�\u0001J���}<�;]�\u0016���\u0018��ikR\u0001���\u0004\b\u0017�\t~���\u001b�����T��-J\u001e����^\u0004�x�\u001an���{�bl��\u0007\u0005I\u0011��=�k�E���P �@�f\u0002��=��d�G�`��\u0001����\u0006@~YY�;�£A9�\u0001|���a�xa�wS\u001d�g.\t`�*���='\n�g^��̹�1\u0001B�S\u0013�=<�Yl�H�\u000e���>.8��DznH�j�\b����5'�4�\u000b�)r����U�3O\u000e\"�\u000bG�E����]MsTT\b?��!G\u0019~\u0018\"3�k��ePh����`��ː��r\u0014l�\u001a�ɕ[�\b\u0006]<21�F]�(�i>+\b�qWܾWϼ�\u0004G���\u001aA�f���\u0018L��\u001cޖ\u0019�%\u0007i\u001c\u0000\u001d�M�n�13!����Aa�\u0001����mj%�^��\u000e%j�2\u0010J����\u0019�4Q�)��\u0019�����2�C\u00143U�:���Z�3\r�üg\u001f���k��>\"o\t\u001c%l%�A\u0011a� O��E���\t�!k��\u000fz�땏\u0007�/@*�ڬ0ga�Ż\u001a�r�\u0001\nŌM�@��v\u0000�Y�0^(\u0010\rg�\t#8\t\r�@��)Ҡ-\u0006���?��\\s`��\u001c��wC�<\u001b\u0015\u0003vm\u000e�ȓ�aD\\\u0011�\rDܲ�㽒T\u0004��ʝЩZlC\n����2�1,]55������e�`��Z�\u0015V5\u001e�~Ȕ\u0015>sw���\u0001�S]�ٹ6�\u001d���\"�\u000eMɸT�u�6h*O���hK�}�^�G�N�\u000fJ�1}�.�߷?J7\\u��2\u0014���~��N���\u0014,T`9��qm �\u001fSS/�z��+�\u0000�4P�\\c\tV�m£AZ�\u0001����b5u^�;hK\"ɉSOG�h�LD=�����¸l�ߚ�G<;\u000b�dF\u0010c\u0007���OR|��D��)��0�\u0016\u0000\u0006.e�Y�g:5z\r\u0010����T�ӗ\\\u0002����;��N}�Fx�\u001f�\u0004`BE\u00116���l7�ث��ڀ�!\u001a��ˮV���T$\u0004�T�\b@\u0014)\u0005�}m��n\u000bl\u001e�]��������/\u000f*o~%=?�l� ږ�u��p\u0010��7^���@��駁�8�v~y���s�[ ��a�B�At�\u0001����a�%�\\�Ĵ\u001cr_\u0005X\u0004\u0015�\b��G]3\u0014\t�Ʃ\\CG}�\u0012\u001d�A�j�\u0010�\\H�\bZ@���ȵ-ג֮hey�[��\u0017�#�\\\u00177z��U��l��\u0001Wbv_��B,�0�M\u001e2��\t{ũ���ؚ��)��<\f\u0006�\u0015Y�\u001a`��-�ف�\u0005��P��r�2\u0005�\u0006w�l\u0016�\u001a�Mj\u0007�[y\u0018�\nku��[\u0001\u0017����`�8�R\n\u000b\u001bS�P�^��`BY�Bbc���R1�_y\u0017�\u0010t����wY��(a\u0000�\\�\u000b׋\u0018��d\u000e;6R�'�h��\u000f\u0003h.K\u0012ߤb,6\t\u0017\u0017�&Y�-򣽖Y�����df�\u0000`ė��af�\"�8\\���G�\u0014w<���\\��>��w��6��V9�9g�:`#&7-�T<���?7�ޣ���r\u0000V\u0005Q��gS�\u0002z�RlЛSDJ*�d\r`ʤd#\u000678���yPE�W�7X��\u0003k�y\u0013hb�oOZ�\u0018�v\u0000���A�\u0004\tꩬ�\u0014�<*4�л5�\u001c���Fk���\u001f�\u0006O8��\b#�B��rAx�\u0011�3�=(�\u0005�\u0003���2��uzO�ӝ\u0016Y�C�\u001b~\u0016M��>�\u001f��ۢ4��\u0006O��bo���>g7�C�A��\u0001����mlwN��R\\��Q#�d�A���Ox���\u001a�DQi֥k�\u0018\f\u000e��\u0010��(���`��\u0013��\u001c���\r�Z(ʋt��'\u0004�,\"�]��\u0013�`笊�U�tH\u001dnϡ�z<\u0003'X����:\u001e\u000b)\u00067Q�ߧ�>m�oZ�>X��)�9P�0˽\u0004��uE�_\u0002\\��?w'4\u000eu�\u001d�B����1�~�C����M�\nҫ�\"vX�ș)�H����e\\oRmr\u0002��P�\u0012���!`鶆��ܠv3���D\u001c[$\u001d\u0003>J���\u0012\u0006�H\u0002e�\u0011�\u001d>��L�\u0013p`�\u0017\u0019��\n\u0005%�w\u0005�\t���G��},��Z\n%����\u0007���\b�\u0001��+9BA�.�O�C����.io�(�Z�ԫ(\u001cNÑ�\u0019\u001a�sT������]�ZN���\u0010�\u0004�l��|^�S2����,8��ؗ���/i~�Y�u﨤�\u000f�M�~���>\u0014u\u0003�M+f�9�H4\u0004)��f��k]��\u000f.�4u��`$���[�@t6���-�\u0006���C�Az�\u0001���f��\u0006�}�;^p�`9�\u0014��~P�\u0013�\u001b�\u0014� 8C���A�\u000f\u001b\u0012��\u0012ʊ�kmT\u0018LTʉ�#�4�h�e� Ֆ\u0005�\u0006ak\u000f\u0012�ۺ&*Lq�\u0010s,C��O/����\u0014�n0�(��\u001c��L4�\u001e��\u0019�\u0001�؍w��%\u0002�N��,\u0010��r\u0017��_�\u0016\u0007��|�|o���3�\u0004,=fĴ�=w\b���2S\u001c��\u0010\u001c�8�Þ}��\u0010��4T��n䤭�js/;n���M�ݺ��W郋�7\u001d�'�9s\u0016;a�M��<�q*���\r4=Gť�#��'\"\\�\u0017�,\\\u0018Oj�����H��`�\u0016�\u001e��y���pX\u000fʵ tXeu�f\u0012�!��-#s���:��:���1Ӈ���',��\u0006?���͊5Q�N\u0018Z����B�5���\r����\u001f_��5���\f���vo�u��/��h>�f�;nC�Am�\u0002\b���c���+\u0019�t�o�~��Ă\u001f��F�\b�ڮ\u0017�(��`ݿ\u0014pu�A�s�\u0000m��Z]�l\u00178�Ќ��to'6�\u0007��\u0015��v�#|\u0000]#������\u000f\u0007�\u0010O\u0002�,�h\u0007���'�A��b�{u�A¦Y#5�A��Ė��Rb*j\"��J}8�_�\t�Mo\u0006�`�χ�<�d��\u0012�\u0006\n���C',e~tC/�J�\u000es��*LE����#�B;\u0012\u0003M�7:��\u001e�\u0006�ϻ\u001f���oc�n���L�\u0000ͦr�K��PxQ/��wN��Ͽ\u001cY@�u�1t���\rLv)��������� �B�>����)h/���\u001d�D��6�J*�$]-5�� -�JL������sE��d;��'{�/�*H��g�\u00073���j�ȇ�.DU\u001d;{]A7�Y\"�퇄-�x:�\u0015�T���O�%E�A]�\u0002\u001c��1��f�\r1�4hS\u001e\u0010�!��\u0013���`���a\"���i\u000e!�#ҋ1f�1�U\u0019T�\u0018\\�\u0018\u0017.�+~?���A\u0003��צ,R�3&\u0006\u0018n�\u0003�Q���\u0007����)��ӱ\u0019�\f\u001f�ʴ�\u0004��R7��s��\b����N��*���+�H\u0007�W��\u0007�JԷR`�ǽ#�\u0006��R\u0006\u001f���7Ӏ�Ά��J�쟡���/O����dY�)��K/�\u0014^�︴�����\u0004�7hk\u0017ڞ\u001c���n<��|6����=���ށ��\n@�:Z�M��%\r� +\u0016H 8\u0015�gVȷ��o̊���\u0018(�ۍJ�E���4�ۙ��z&�i D�h5�;\u0018��+��ў�����NS�#(KcԈ1��St�o�\u0014\u0010uW��\u001f�\u001a�\u0003���\u0005��*����η���AH�\u00020��L˥\u0015\n�\u0003Z+�f�_|\u0002�}��\u0018LL��x�I�7�\u000f&>��l\u001b\u000bp��g˛۩�lSpÆ_k���l����;��9u<���kی�]a\u0015P\u0006v5PToF'qkr��5\u0013�O��\u001b\"\u0003>��\\�\u000b'5�\u00146\u0017\u0006�C�\u0014�/\\bJ���Y����-.�\u0017<��H��\u0005�����<-�Y \\[3z��'Z\u0014\u0000� y���\u0000��G��`͸�0\u0011qF2\tX�f\u001e�\u001dU���L�\u0010�E��*w����~��taۍ�\u001b�3�W2\u0014u:\"<۰G3�d��T\"w3+.�K��+\u001d�=�̯��q\u0011��ɤ\u0003J*�8!���\u001d�I�S\u0010�\u000f��\u000f��3�E\u0006�$\r\u0017�\u0015[�\u001a7�\u0007F��`XY,�\\��<Ș�j��˶i\n�B<�\u0002D��}�i\"�@�歓B�a��uZ6�\"UˠUw\u000b\u001f����Q�*Gb���o��ת(�\u0010�\u0002A��Ѷ+E���K|{Y�p�b]��8Q�EE\u0014\u0005Y��|e��8�I�;��W�rˮf_ÿ>�pw\u0007a�/��g�\f\u0015\u0017�w�hh�lFɴ�\u0004\u0005�)$�c\u0004�A\\��\u0002\u0004�����x|C\"93��\\���\t�HA;��7��*�7\u0001��?�䒥�n�l�\u0001J0~8!��s�`^C\\&�I�1\u0012��W\u0017H��=�6\u0001.\"�z5+F�\u0018o$�Ď��R��M\u0005`\u001ck>�\u0003ݙH�H��ڢ\u0018ՙm��U�O�}Z\u0007\u000fv�<�=�_kbp�1�3��~�\u0006�G�%*�\t�aeƍ\u0002��ѧ/�\r�5��*_���\n)�'坜╙��N/s��ʟbet��ve?mw�\r$��MU�_9�f���!�Y6��\u0015.��ꩫq��5r�,۷�J\f���\u000e�4���W3��`��X\b\u0007}B�y\u00071�?{��*ς\u0016\u0004+?���W<\n�2w��Y�Q\u0002Xz�YҜi�\u0013Y�}��Ax���F=�\u0012���œ\u001d4\u001b�|�\u0015�W\u0017�����r���j��� �������L�\"�d\u00044$Nt�\u001b��^y�\u001c�\u0013nU\u001f\u0004��Z��+�vD\u0010�\u001d-܅B�\nx��ي��\u0003\t9o�>3u\u0005E��\u0010��A\u001b�\u0002X���v$ڳ1���GK�$^���<�\n$��ճ�M\u0019X���\u0015h�ڨ�%}\u0001�z�O*\u0016\u001bM��F�Tg�;�tRd�#g�j�`�i��b0�F%(\f�*�\u0007\u000f��\rQu/K�\"Y�����Sb.t\u0018/O�#���!��9�\\)\u000b����d�*h*�}\u0003��u�7�;\u001f%���N�G� �ʞ\u0014�h���������e\u0019\t���W]�{\u001e�\u0016>���3��\u0007��#�\u001e�\b�=&���\u0005�\u0000��^u�̴�\u001buƚ\u0019i����/��\u0019O�'���8#�jf��9{M}�>��wD��-[����\f\u000b��#�\u0016��M�\u0005��5�f:A�A=�\u0002l���m�\u00063\u001f���d�\u0003�S\f���*\bV�\u00138�pN�A@��o\u0005;\u0016\u0012r�uW����p����Ql;l'�\"\u0003g,�h�\u000e~�N����P\u000e��k}V�������Nw\r\u0019�N���0ˌ����\\Phʨ\u001eC������r�����\u0003��B��a4c�ob�U\u0002;V��Vw��$��X�\bIO\t��\u0004E*r�\u0014��U�9^\u0011�e���;k�)i(�cե���W�m�H�xF%��=~C�PW\f�\u0015�#1������[�֎C\u0001�bD[qއ��8�@,\u001f*��\u000b\u0003\t3�UP���2/��W���[1��\u0011��ه��|�u����\u00105\rq)6\nA\u0010 ����IN�G����@ۤ�&\u001a-�@�A\u001f�\u0002����m\u0013���\u0018S=0';2�����!��)����dԋ�=�\u0019;�5�\u0016g��2\t\u001c�py54��ΛD��\u001b��E��h�Uneʢ�\\I4=��(C\u000b�\u001dK2�����2Z��mZ%\u0006\u001a�h��?�\n\u000b%ǎ��]|~7At\u0000\u001f�k!��hkn��?J\u000fY��ڍ�Os;:\u0002���(�\u0012��ԭ8��6\u0004hU��:�\t9,'Qw�\u001d\u0015�\u0019���\u0007����S�\u0019���,�1I[`��Z�\nx\u001aL�p؀��\t���*����h4m��aR�3��0H��]j�'C����\u000bx�u\u0000��(W��Z�\u0017�։)������J�PDJ�D��);��A\"�\u0002����ob��,�j�:�\u001f-w��rP�\u001b�2Ud\u0003�+�kr\u0000h\\\u001f�\t�M6�仪�^�\u0012��QV�f:�����f�E\u0003�\u001d_lx�0��\b�\r�\t!���T\tY��%�\u0010Cçu\r���y��Zj\u001e<�\u0006�5fr\u001b�Z�Ch&�'�Lޱ\u000eV��\u0014�?�7좇�\u000eT���=G�#Y*9\u0013GR��\u0000}\u0011��<\u000e7H�(AHUw��^�<��\u0003P&\u000e���.]��:G�ǟ�\u001dF�M��>��|p�e���\u0004�k��0ja{b��C�\u0004�\u0016�D��@�\u0004��ʕ��T�]���+TD�D�׍��Αӛ��\n\u001bU\f\u000e����W\u0002ۺ\u0019��AU�\u0002�����O闘@RW�X�w`�.�D���\u0015;\u0006�o�t�\u0006o�@��by��W%Ĺdc��\u0018oK�F�������2�R��Z\u001f�\u001b�h\u0006c\u0019�'��\u0003�,�GT�&�u{4h0�u�\u0015�&\u0013=�ۓ��Mx�a8*f��\u0015\u001ba{-�U\u0016\u0000m['S⁝\t��±���^Z�)�>�\u0012��@o�\u0019��\u0003fq\b;d\u0015� �gwI<�;\u000f�8�0��еk��\\\u001d�\\kK\u0011��:�J�\u0018|ʨz\u001f�\u0006�\"�\u000b��\u001f���vi�,=\u0004��/x�J\u0010\u0019�³��\u001dp��\u0018q�s�\f���K\f\"Ƅ�\u0003��Z��\n�\u0005��4b5'0�ܻѢ4@�u}Aǹvζ��!sN����a���aD\u0004�>\u000f�iLE\u0017�r��\u0017ifUG�\u001d�_H�\u0004�L\u001f8���6��A\u0010�\u0002����m\"�\"���#j���\u0003��d���z�\u000ea�~�\\>�:߂\u001a����=4�\u0015����=���p:\u000f��<�!O-�b���d�5����ݘ�\u000f\"T�l�f\u0018PlȵRh\u001d�%���8l*����\u001a|��C��#�����X{\u0002�i��\u000bೝU����~��A\u001b���#\u000f\u001a�����Ѡ�\u0003\f+F\u0005��P��\\N}\u000e�k(+\"\u0012��\t�+A�7b�4o�m\u0017V[;���\u001d�B\u001a'�еؼhw*Ʀ\"Z��uN� ���Em☰}2\u0002\u001bř\u0013���$0�>9\u0016t���s����V�G��Ԇ\u0003��Ҭ\u0019œE@�A��\u0002Ѐ��b[�*\u0016`���r���Q��9\u0017�\u001f��H@�\u0006�\u000eo�Z���\u0010UQ�m�T�\f���t�0\f0\u0000�\f~�\u0016�h\r�e�m偩;�m��^UM�jE�W�`+\u00107�#E;݈���Ę�%\\\u0010�%�\u0015F�$��M;�2�$��\u0004y�\u000b�f��@\u0014\u0019-DF\u0015��\u0011��G�uW��`�fJ�(��͗���\u0000u\f�ʃ\u0004\u0006%W9�����_8�+\u001cn��q$y�,���Y'�J�\u0011@�\u0010&�E�!\u0003ۇp�����#z+�/j��h3N\u0013�@\u0010�$�X�V\u0000\u0014�\u001d����L��fY,_C�ȫzr����BI\u001b�\u001a\nέ�\u0017�g�q��u7^-\u001d����C��(��?\u0006�p��[\u0011�/�\u0002��\u000e4��A�^R����\u0015�3��;��-�\u0006�\u0000��\n���V|Vw\r��\u001eD�A@r�\u0016\"u�p(\f�~\"0�R���\u0004���\u0006m��FЃ�����}��?{\\��&�УBW�\u0002���>\u0012Sₐ?\u0012g�݌�݄-��ѹ���V�� \f@\u0013<�*��^|\u0001C*���w\u0014\u001bJ 3a�]Y��P�Qw\u0000��c�L�F\t�P�\")7\u001c*Ɠ>�K@G�ͬ�_Ԧ�\u0000��.\f�\"\u0011u�?����H=���Q�Z\t�0��8Q����S���}�W��u>\f�\u001f�v��t�蔈��lP�����\u001el��4�A�QFH\u0015��(���L�\u0014m�u�~ޓ~\u0019}�\u0012i������q�k��qWoqGۇ�����}��}ę\u00108��ɍ�M����ȫC��ѝ������\t0��\u0013~�k��f:���\u000b���~ҕ+}\f�����������\r�=@���܌\u0004D�o�+1_S)KpK�ҡ�`�%~����\u001aڡW�-;�B=�@��7��e�#�3�\u0011�\u0010���?5@�\tڀ���\u0018~#�e\u000e0!\u0019�\u001e3\u0000��\u001c)2��\u0010\u001b\u0010����������\u001aT�$�\fm�g�{\u0018���N~\u0017�yp��\u0018\u000b~��*\u0010\"]�Dʽpt3�n����!n�|Vz�ȧ\fd��-��֗���$\u0016�`�\u0007�%F\u001eW�H$�c\u0000��\f���ś�;\u000e�\r\u0016�s�*�@�>\u0019������v\u0004��!����Pn{ \u001f�q�I�qKe��\u0013<\u001c��\u0007K��\u00105\u001fw����y��\r��ʝ~�0u\u000bEcH�_u�\u0012�n�\u000e\u0005�+p�آ�~;W �A0�\u0002���0(r�\n����\u000b��?\u001d�P����u�\u001a5��I,����q��b}c�KW̿V\u0014a�z˛\t�h67f\u0011�@�ߝ��+�qZv��R�6�\u0007\tN�Mȉ����\u000b���\u001b�\t��:�`t��;j`r|��b\u001c\u0002\u0018���D�\t��?��R��\\��p�GK*\u000b@���HO�\u001be\r��(>�A�#5ʾ����Hi���-��s?O���\u000e\n�^�,^\u000f할�4*�9�Q�.��byl�J�$6�>O#[H�\\���<��N��T�\u0006+t�U�k�\f�\u0004i†��Sg���s5d`��G�e�ۢ)�ʥ����Y<���5�w��m\u0014����F�������Ͼ\u0019E���d�A\u000b�\u0003\f��L����-\t��ߝ\u0014ږ�o�Zߴ\"����Rpb%\u0003��\u000e`�\u001d�m|\u0007QN��\u000e��>��Y9�����8,\u001c\u0011�\u001d��Rt$�\u000bg�\u0017!˱*B,X�S���CLM���k.�w���a�\\�\u0010J#�0{]4x�Y�3�d�N���\u001e�pI�\u001c��-���|y�\u0017W\u001c��\u0018Fk\f��\nݡP��\u001f&��\u000f\u0017��\u0003kd���j�K����jɒ]�M�\u0012�\"�A�E��<\u0007�@�\u0003H���bo�C��}\u0004��jn�����g�Vo��![z1D3��U\\�}j�^�v\n�~E{��m�\u0016H�ݱ_\u000f�(2�Y��\f�t�\u0014!�B{b~@ci6w�`�g\u0016j��I\u0010��m\u0003�TĞ�$ӥ�)�'���zf�{H��}#2\u0006/�5�!��n����?��a6�B�HJ\"\u0014�Ȼ�\u0018N/sb�*>\u001e�ӱΝ�>��pվ\u0011�Έ�d\u0010\\\u0005z���DH<�\u0001��+���[�dQ*\u0018��t�#�i�m%�i����A�A\u0006�\u0003p���c�^>�\u001a����Z��/G���l�L�_����L\u0019��m��sŒ��\u001c\u000eű!:�\u0017�\n�\u0006Y���_!\u0012��1�D�Kec�\b\b����^d�\u000f\u0015N)\t��\tJp\u0016\fj\u000f.\u0013`,\u001a��\fS*\u0004��\f*��@N:#�\tO�\u0016�G�L�}�`yg3��P�奢C��}\u000f'��uǼ\u0011��IN©,�*\u001f��\"�����'d�eK���a���GrP\u001e��r��v+H�b�X鄘鵔\u0010���\u0013JDozD�1G\b6Q��\u0011\u0003���@$\u0011\u0003�k*�:2�\u00101A��@I�\u0000$\u0000��F�A�A\u0016�\u0003����ls��V�\u0005yPW\u001dJ��W�\n�zI\u001dس5�ȬH�\u0005�l(xw� c0dd\u0002K�)q���i��dջ���$p��D�?�JO��\u0014��\u001d\u0012;q�<)+il`$Kq\u0003�Ό��Wp�(�J�Z��&U7�u\u0013�\u0011ԛ,\u0000\u001b���*�1��� d�r��Z�ԩMae,}o���\u001fW�\u000b����`��bZ��\u0017�=xV)��\u0018�5��诠\u001d��:�cU�&�Bd�'?S�\u001d�t\u0005�\u000e@��*���@��\u0014�,�c�T��\u0019+$���H��z��0\u0013u� C�\u0012$l9�\u001c�{�\u0017D�f~\u00149&ț���GPZ���G�AY�\u0003����c\\\u0001��=mǍ(O&�\nma*\u000e}80̲h����A����\b��U�܃u���e�ð��3_\u0010�ڙT\u001c\n��%@�?4��(�,��\"��]�ze\u0004���\u000b\u0018�\u0000p�9\"�{5�Lc��\u001cB\u0014uFL\r\u001b��B���Ń�ø\u000f\u001e��<��ׯ���)T�y\u0017��ڃ(a}���=��d:ft\u0011V��ЭKj0\u0002雓��G�̗����d�#?7��e\u001f���\u0018N�n\u0018�\r\u0001>�l��ݴ��\u001bu�c\u0002�C�\u0003�\u0000�\u001a�鵾\u000ee�I\u0012\n���Z}9�-lɒ1�p\u0013��(+��uR5V\u0002w\u000eS�-צ��`T�oL�|Ł^��۩�\u000ey^b�d\u0016\f�X\u0004��}u����v}�H������&�_Z>D-��H��\u001d�\tI#�]?�=��I�AL�\u0003����l�\u0018���iK�BYA\f��Ί��)^��\b�,Aj�A��r8Z\u0017\u0013�-=(�\u0003e�\r\u0012ל�\u0011�P\u001a2\u0018A��)�\u001b_(��_TS\u0001%��;�\u0015}ul\u001f�/�'$��'��lcA\u0018��[�{��/�\u00141 b]�&�\"G�\r����\u0004�3w�\u0000�����@v����>���p�\u0004�)�5��7�{��$�\"|7�t�����F��U�aW����8��=�uH\rw�\u0003�0��2��j-���P�\u000b�\u0006\u0004��\u001d�{�9�%�<��\u0019{#Eެ�>��S�\nB�j\u001bX\u0007\u0006)\u0001�\u0004o�p\u0001oV�`�^[�\r��\u0014�ax�L�\u001d$8DG��%\u0016�\u0017\u0003�*�,�\u0017΁�m\u0016�i\u00046�q6A\u0012���K�\u0014Ҳ�\u0000H\u0002#]��X\u0001��mȣA<�\u0003����p���( B\u0018%\u0001�Eɰ~����\u000f�Gӏ~S�p�,��@Q���m�r�p��3\u0001\u001f\u0004�\u0005)�@�_�ɸ�ңw�#qX�,>!wS�\"9s�\u001f��d5>�=o�����|+8\r����'��\u001c҈?R\u0010؂����\rD�N�ϝO�<\u0004�\n����JdyQK��z���\u0004������a-\r[�;?����7\b~�\"���\u0013\u0003]2P�蓓�\u001d�I��\u0001�v=�l������\u000b�\u001cQ�(�U\u0017�;���\u0011�D?�\u0011?̇�\u0017\u0010dv�\u001c�-}<+\u0000��_L9=xl\r��K��q\u001eoԔj}��H�B\u000f;�쑎n�\u0013�ˆḲ_�\b\u001d��w}���ez?�M96s��u�2n���%£A:�\u0003Ԁ��l�\u0002swu�d�\u0013�m�`�Y�D��x��\\@鑗�\tZ��;|�\to���\u001f�\fKM�T\\�A2�U�\u0001\u0003y8N���K��p�\u00185�ۜ\u0007��ff��f�\u0017�\u0005BiR��9&�^��R(e\u0017@R�T�rm��K�\fkM�\r\u0012;5\u0006c�\f �\u0004|��\u0017�\u0013�'\u001eZ���8\u0015�\u0012\u001fH\u0011�T)��J��#�d���ʨ'5ۆ��\u0000�cf��\bo�v��\u0013\u000e�8\u0010\u000b(����b\u0007�J���΍�\f3VM���+ț�ZL\u001a�t+,���-���'�\t,�d���\u0007n!Ɣ��\\P�ٶફ�>/���\u0014e�h˗?\u0011+\u0006�9�&�.F2�i*d�y3?�?�Ab�\u0003���mi^�h��\u0001\u0000cj6^\u0012�o�1>\r�e���ȋ}A�9�6{\u0015f�����iiB�\u0005�c\u0004M��A��ɟa�\t�fpH���\u0007�,���g��\u0011>��՜�z��F�˻0I�1$�\u0003���Ͽ\u0013S�\u000fpM�P��L5�b\u001c,nHo\u001a(�q^ʽ@2\ru���:�?�<��\u0014crg����&U��;:,��mq����z,�#�{�@��RN�t�\u0001���)�E\u0004\u0014�l�\u001d\u0001��\u000b6?�AD�\u0003����l��7�\n/-V1,Z \u001a�\u0011\u0007�ru��n\u0010��=�nض��m��@��o�\r:\u0007\u000f��n($��d�X�=#�\u000ff�P�+��{9\u0011�9}�*9\u0015�/0�ԃ��ʅ�\u000b�\u0010J�oG��%��g�B�?��(0y\u0001��q'\u0016&Q����\u0013\u0010��V��{A�ĉ��V�\u001e��tO�٭�~����gCDZ�s�(OO \t��{�E��\b����_ǃE.Q��‹�\u0005��P�\u001c�4g��|��*��\\�&¦�\u0014\u0007���8ZKJ���\u0001 ���\u000e�X�GK$P�[\u0014\u001f�1�\u0004��,��f�7՛\t�-O\u0012\u0011)�\u0011\r]��y��i.�������VF��,n��r5��3�ԟ]NZ\u0019�ĭ��&���\u0012\u0001,��@�AJ�\u0004\u0010���l~J�\u0006w�Ga\u0006�\u0018\u0000����\f3�O�a�bN�U\u0016\u0011��{���T@#�؞��i^\u0018�\u0001\u0016\u0002�n����e��|�mz\u00012���\u000eX\u001dF�tڴ������l&��^~1�\u001f@�\u0012���D�o��\u001cy}r&\u0000V9 �iʌ\t\u0005f��\u0017j�V��f�9E\\���P�\rN��Nk��7ܤ�\u0002�\rH즟\u0003�+T�.�����\u00104�=[��\u0002�9\u0006\u0006�\u0005�{�m�G�AV�\u0004$���c�z��dW`d�}��̒ϴ��s�4�}��\u0014k�˼pS>Y�PkŻ�s��cu��\u0003\u0002�R�\"�ſ�@\u0004��ש2B��@lYFݶ�^@�/\u000e��R�2\u001a��$\u0002(�\f\"Re2O���\u001b�^f����Bdy�?�ߚ\u0016\u0016H\u001f|x,��\u0000��\u0001Kg�~\u000f8\b�I\u001c���tn�.ώ���\u0014X\u001fb)��:-u��q���$\u001a������\u001c\u001ds&K�\u0013\u001f�\b\u000eN�l�� X���=���w�y�JF�a�V8�s�i��X\rY8f\tCS�0Om�+\u0013��`�t�\u0016PS�щ%&�D\u0013�w=\u0013�=�\u001c���b�_d9T\u000f�>\u0013ƍ\u001fXZ�\u001fg\u0006\u0011�\u0015��?��G-\u0004\n�\u0017|��0�c˶�N��+�\u001b�r�\u001b)lU\nw|\u0017��f�٦�U��\u0018-�\u0001�b�i(�<\u001d��DS�o9=D���}K-ږ���/�\u001f�\u0010��%'z\u0004\u0016�\n���� iq�b��\u0013�;+\u0002��$4!�%���I\bDY�C~0m�.�\u0019�Z��X\u00106\u0001^}�8��\u000f��퐙\u000b.N�W-�ϲ\u0015���ӕ���\u0012�S\u0000��\u001cwi͔o���=�A!��Tt\u0019��#�xt�'�5��|)9��{\n*!\u001c��\u0018[�t���=j\t�\u0000�\u001d\n�\u0019�υ��O\u000e��O�$\u0018F�Zq�\u0007�|ȳ�]n�z\u001bg�Mm�5v��bA\u0010HH\u0004��SAFݙ\bv�AG�\u0004`���v���\u0006\n�\\G)�9\u001f!��YN�W��p��S�Q�X�%�7z�A���>ZN�n�\u0019���J�;�խ�����\bxZ��}�\u000b�9O�0\u0006\u0000�0+�Ŗa=��g�\u001ak/<��4�LI=\u0001�R\u0012��%<�|\u0005�[��\u0003{$}��\b\u0005\u0004�XDt\u0006�)�+=���AN\u0012\b�����*�G�\"\b��Y�m泖y\u001e�\u0016�\r�-��\u000fc�\u001b[ey��?�\u0004��\u0010*\u0011��\u0012��s>��Xʝ�JR>\u001e�$8�D��\u001bQƫ��r�{\u001cL���\\�ă�VZ�lU�^*_�B`\u0006���_.�эF\u0006~s�BK0v�4��AN�q��\u0001\u0001�\u00056����+ޓ\r\t'�Ş�tU��[�s\u001d\u0012�8qm!���[�?�&���A��\u0004t��� u��%�m�7D�\u001d�\u0007����L��v����8\u001d�Ⱦ\u0001�Y\u0010�|�7X�C[ؼ���6�\u0007G�M��(\u0018�œz�\u0003Q��\u001eK��=b�KDcT٢�)\u0004 �d�\u0002,[����ټ��\\�mI�gΒ��)Q*�j�y�S��C�e��us�\u0007K���dwt�z�BL.4%\u001e3�9��3u�i��hmROrp���\u001a��Z���\nի����\fJD�r�\r�Ɵ@U��b�t���\u0018t0��\rq�;��%��\u0001u��ߜW>\t�\u0007��!�E�\u001aȍF長���Լ=�f�4�d�IQt�o��=��\u0017�}��Y�Z(�p��7�\u001e��\u0000$��ݜNw8��t�\u000b�\u0005�\u0011�q�\u0014��Y�}��y����\u0019��㣱n\b��\u0007\u0007��\u0010��=�Z^`�f\b��֭�\u001f���}\u0016_O��z�w�BC��+\u001d��z��\u0000/�hM��Zg� �D7C�m��I\"�l\r�y��\f�Ԃ����?l�Z&�\u0015\u0014?��\u001c8�ܦ@\u0006�Ź�\u0002��cwZ9�/Xr�0\u0013N� 8�ά�r�QB/�\u0012�TG\u0018�r\u0014S9Ɵ�+?iR�m#�3@`�\b.M�Kwz�A��\u0004����b�\u000f\r�.$�\u0013�����\u001a��.PH��F�z���_*\u000e�@0\fQ\u0002rq��L��4�:.h.�\u0010��0�>b*^a���Z�;�[*���Or��x�b�t!Pt#�xKv��8TOl|+��\u0001�K�\u0002zx�\u0015]e���Uu,A��T���D����$���R\u001b��\u001a_\u0012�\u001aX\u0011W`7\u0007\u0012�aXݛT�5.g���h�\n0Q�c\f\u001d�ז\u001b��ɱVB�yf���^��b�pY�ɡ�%��Ul\u0001Wj~|4M]��nj`|e^��r\u000e����+�E�}��)��a�פ��\bq��cG;D�����&Ou|\u001eI��Q�\u0001Zg��k\u0016����\\��A��\u0000'Û�@\u00187���Q$V[��'\r���<�������Z\n\t%\u0004W\u001f\n{ݲ^v�:���<�α�\u0017��Mc�|��r���^ә;��Q\u0012y�̾~�p`\u0018aA!�7a�!�����r�1\u000eK��/�1�g��]�|\u0001�nAg���iy��\\u%�`�q\u001d+�f�\u000b�=��\u0001�܀���A5�\u0004����l�!\u0016T�4!�X؛9�4s\u0003�����N��N\t���T���\u0017n2h&?յ=���\u0000bU��)IUa���@�ځ��\f�(-G��I����j�[�c�m�:q��R^+C����\u0016|\u0018���d\f��\u0002�\u001a��\u0007�n��� ��\u0000�\u0004+�΅���\u001ar2U\u0015\nJW���SU%p\u001c�W?Iq%��\u001a?q�\u001c�K״{y�\"\n<�\u000br�(K�\u000f��A\u0017fl�C��w{C\u001c�\u0003V��C˻����\u00010�B~��\u001aZr��r��T\u000b��3\u0017�u\u0012z̆�\u0000gO9��\u001d���=:}Asr^�������\u0012�}�KI{�J2.\u0003�f�9�ԤŞf�\u0017�\u0005*ߝ\u0004�v� ��E���}��wt£A-�\u0004����l�\u0016S�\r�d����!xQ�\u000fxa 9��}�+�|i�D�P�5_���n�l�y(eo���P�A����&,���K�\u000e�)��q�x�ņj\u0013�i0;��Os�!��\r(����(J3��\u0017�L\bg'<�\u0001~Q!kpE�D�s���\u0004��`�)�&l�mu:�+�3-\u0016c+tWL�4\u00126P��w��g\u0000�\u001b�¼6\u0003'�\u000e\b�iP�d�Q4�����3\u0002o|đ\u0013�\u0011�\u0019��υ�I[���y��$A��$��9�\u001ddt���\u0017W��r;5��[a:+�����5ѹu\n�\"\u0004\u001a�D\\7�\u0010.W��8�\u0006��W\n�\"�£AY�\u0004؀��l�[\u000el\u0017&��\u0003k\u0011Gб��H�0�hk�_�\u0012N�s�`\u0006xID�\\�.X�\bw\u0017���\\\u0007O���aN.\u0011�\\��\u0015!\u0003\r��c�˶�Қ]�?d\u0012U�囥�3{�!�%�q��~-�<��n��)q�f#�\u0012����=�\f�X��\u0000YdqP�\u001d��\u001c��\f|�{\u0004E��?2\u001aڢA$9�~\n\u001f�+`!^��)�\u0018\b��.�xŽ\u0011w��g�\u0019��~��� ��M�E���g\u001c�'\u0002����d8>a�}\u0003�)��!���Z�=V\u0013�\u0006Rx�1�n\u0007󽹂\u0012�b��|6��FNMOt��_�N�����\u001d\u0001L�z\u0013�\t��d�8�R.�\u0006y\nrˑXɷ\u0013�N��Uϲ!��䡰�\u000f�v:w�}\u0014Ql��Q\t>��\u0006��n��AO�\u0004���bp-�\u0010Kٺؠ|9s���\u0019�d\u0013�q#�/���\u0004���M�Af�\u0018r��NZ�r�#�\u0005�C���1��\u0019>l+��'��\u0006��5TA\u0013`��\"h��?��m�d��ڑ`#���MEYZ��1v:\u001ar\t!\u0017��t\tp�#ġiW�]��\\/��X�\u0012��bYZ�\u00039<\"\u0012W�0�;eT��\u0011{\u0010B\u0018���`X�ҜO�\u0019�HvGm�\u00113��7\u0012@����x�~N��C:h\u0015�� ���0)x\u001f�\u001d�`\u001bX&\u0012�2v�arl�MN�\u0018����غ�\u000e��\u001fH���\u0018]W���\u0001A�(\u0003j·�|<�\u00105e�H��`��+D\u001cCh��_���ǒ�\u001c��+L\u00025\n�\u0010���96D\t�q�ec��{��\u000e��n2\bU>\u001e�đH��AY�\u0005\u0000���e�\u0015r}��}���*q�\u000b6�R��ѩ(�V-U��L�5W�ќ�c�̩X\u000e<��\\�\u001a��1Œ\r\u001bo��In-\u001f�5�g�\n#\u0000T{ʇk\u001d�s�m�&BOi\u0019Y\f+��r�L��#��\u0019\u0001�_׷�#7R�\u0016�U��\n��\r\u0019�\u001dx��h�\u0000F\u001f>��b�\u0001��ލ��\u001a����YFୃ��x\t��1�[��~��q�!\u0002̕h�3`��o�\u001e\u0006�m�z��-.r������~d�j�yS�1��\f�S���N���\u001c:����3|$j�8��e%����I\\�VA�CzI1�U�\u001c�\u001b$\u001d\u0007��]�]Dy<\u0015�X���\u0007C�%�\t��5\u001e;W�HF\u0017~\u0016��\u0011��+A[�ZX�\\t�\t�€�\u001b���4�Sǖ���G\u001dZ��ot�9%A�AV�\u0005\u0014��I編���5$���ЀdDD\r'~�Ʈn�\u000b->���rȈ|\u0006���\u000f�8\u000e|\u001e�\u0010�[X�\r�\u0000D��m�f�^��\u0018�T*��9�z���_�3�\u0003\u0000��\u001d؋ܾ��|�жbr���j�N�FH(DKm�\u0005\b9\\�\u000b�'�}O�G�&\u0016�W_\u0006\u000b\t�ȥQ\u0018R\u0013\u001a ��;ƻ���V�\u0017���\u000f:�`��\u001c���\u001a��h*Z��\u0011KǠ�2�d}��\"�q��[ڥ��x\u001e��,pޏ��\u0001#~�T�\u0006\"�xҺߐ�\u001a���� \u0015w�ࢽi)\u0003'�r��7*�\u0011��\u0001�K\u0002K��\u001dM�;f��\\\u0005\u0015���3�\u0019B\u001a`�1B۹��\u0006CXy��\u0004=3F8�0sD����)\u001a\r�ᒷ���1�J�k]�\t\nK/J�2*\fS%8�A9�\u0005(���)���\r���)u%@\u0002�es�$��&���/s@�T��\u001b�ɛ�9\u0001s��b!\u0016\fd�#��`J?0���\u0003ٝ5�\u001f�\u0004��¥w�`�m��\u0018\u001aĻ�G仆����T}v�p�\u001c-��1���~�*�O�;�������3�[����\f�����a�JƁ��K�^&x@'��!��!���|i��\u000eb�����q�e�\u001eޤ\u0003���R߹�9c�%�82�R�\n�[5�ܼ\u0002\u0017��|\u0004-5�w\u0003�cg��\u001eml�p%n4~�u��gy)�k)Z�a��I���D\u000f�dGc\u000bӅH�)[Fd�~\r�{�\t\u0015c��-F�Ш��\b�G�\u000fe�����\u0018\u0010fދɐ�}2$\u001a\u0004j�&ߠ�A�\u0005<���b�Og�3�}*��WG�ћ~\u001d��Ì�q�\u0014e3\u0006c��\u0014FG��ˀ��/\u000f��x�i�P�R�!�\u0011c�/cVG�AP&\u001e�|��U\\Nf�ݯ��\u000e�m#\u0003��T\u000f\u001d�9[�P���5�מ\n\u0005*��z�]��\u0015�%��5���F�z��P\u0012܊�\\\u00022\u0012!��~M\u000ej�ƗX@\u0000\u000f��i�Z�\u0000aQ��\u000e�^�-Ǿh�\u001e7m��\u001fp��6��K�\n������\u0017mV�l�1(�)�3P\u0002��\u000e��L��A���+�1ޤt�81�\u0006P�\u0019�K\u0005'�����,�\u0012%\u0007aYݑ 8T�&\u0003\u0011�I��2�I5����⾹�9� �A\\�\u0005P��M1�e���\\�\b�\u0013i����=Y���\u000b\u0003f\u0001\u0001�oR\u0004\u001e���.\u001cLJ�\u0019&�SHƴ���Q�ގ�����E�\u001f��'[s\u001f�%�\u0017h��[��Wwʟ�QʼE�T�Q���Y��)���\u001f�/�B\u001dv�e��\u0002\u0015q�X4x�á\u001f\u0011�X�M� �\"x�d<8�,�%f鳚�3Z���e9ڍ�J8\u001e�\\\u001e\u000b�0�9{Q4H�io�X�ߜ�88�-�f�:\u001ch�\u001b���X��Q��|`z�\u000e\u0016e\u000f����ﳑ����\u0007%o2��\\\u000f���]V\u0011��dVw�ix�MZQ֪�t+����t�c4�e�h:-\u001b�QM�M\u001c۰Ν� _�\u001eq\u0006V<�(%\u0015�Fx<��i�d�X�{\u0015<1\\7.\u0012z\u0010�������i����5�\t�����J�4g�*���AK�\u0005d���mh���oN�\u001737�ڀ\u001f���v'��D���v�\u0011�**p\u0016\u001e�����o���쵿\u0002\u001d�\u0005��x*��Լ\"IQܠRJ���\u001f�}\u0014-Hf\u000eb#�I�\u000f��\u000e\u000f\u0011V��\u0003Ult���Lt��;}��]�s'\\�\r9�t\u001f\u0018�����>��\u0003��jSɣ\u0000����\t-N�6#�t#��\u001b\f�4Ō{�罏�����/y�:K���Y*I'mԶTmc�g���\u0011iF����(�y\u00107\u001f۟�w�1غ1L�L\u001f\u0003I²:\n�ݺ'�\u000b�♁�.\u0013!&\u0003�\u0006P`�,e��\u0004��:u\u0005[��~��x\u0000\u001e�|��İ36&��Sm�\"w�KJN��i�\u001e�۾���f\u00169�h_W��cz�\"�F�\u0003b@��b�=�\u000b�W�Ax�\u0005x���be�\u0001\u0017h�\ru���K�c\u0019�)F�CPol��6��lP4�ק\\='t �x��<�\u000f����\u000eԋ�\u0019��,�\u0011~��\u0010\u0019\u0018�/���3�H�^Q��At:�\u0006�\fR\u0012��c�v��,��L�<���\u0012���Q�q�ڛ&�\u001f뱵{y�\u0004k�h�\u0007�,��6�1����6\\h#\u0016B(���dE����H�c�\rT�5��\nͲ�~�b5aK��\u000fi::&�R�Hޅ�w\t�dw=*\n\u0002�2�>5�\u0017\u00042�#\u0005�Efn�!�|S���>\u0001�b�\u000f�����yx��Q\u0010�,ݭT��\u0001�ExW�\u0010\u0016�9�\u0005�K�Q����\t#Bv�\u0003'�\u0004�^�\u0011K��>M���vl��\u000b�\u001b��f͟�\u0016H(�\u000f�@��\nz\u0017\\Cr����\u0014��\u0013z���2S۠����Y��Q!�fF\u0013��y\u0019\f��\u0001)�\b�أA\"�\u0005���.�q\n̜��B\u0011=��HU�S\u0000�\u0004�\b�Z���\\\u000e2Jd\u001f��+/4���(�=�5���N ��p�R��w킩9��]��w�O��\u001b4�ԘI�<�\u0018���\u0013ҕ�Q4\u001b���ϳ��ݣ\u0017��'���?�\u0013�\u0015sLU\fꮥ\t_A#\u0012(��Vh��\u0005�P ��\u0013\"���b��A��\u0005���|�\u001c\u001f\u0007�zP�uvG#u>\u001evW��]����\u0015\u0014��oC|n��x��\u0015��rݖ?\t.��y�\u000b!�C�\u001f��\bͿYB�ɑ~\u0013T�QW+_!��0�~\u0015��-*�c��fP����W�\u00161�bs�.F,�\u0019e�l�u\u001c�>���1�f�\"\"\t2qY6�f��\rBZ�s�\u000f\u0016!�\u0003��L��\u0018J����!��m�ȑ��3�RE]b��\u0000�\u001cR�F6j����\u0011?O\u000f�<���c2D�\u001b\t4��u����X���q�Lwx�ܲ�C��P\u0015��:Z�٫�Nx�2\u000eZ3\u0007-��\td��W5����M\u00115q\u00136vz^�3�Om���.`����\u001bI2�ea\u001f�\u001f�����`�����L65&�\u0001\u0001�\r�z4tTuj��\u0011p�}�[�B�d]Ԟ\n�+�\u0012\u0013ƛe6M�A�`;ve%&���zO�\t�襞��%�\u001b��}9�\u0013\u0005�C\u001e�\u001bn�i���Q#!�I�b��씵\u0003��\u0004��\u001f\u0018@��AN�\u0005�����\u00010�ݐG��Y̅0_����\u001epYe���2�Q�c�Ub\u001e�\u0001g*P����.\u000fH#\u001fZ\u0011Z���.%$^pLy��\n�!���j,PL�\u001f\u0019�����Y�\u0007��yM0�]\u001b��Mt�5T���\u0013��\u000e��n\tg�yU\u0016#j\u001a�H2�ĉ\tZd��ƒ*\u001bą�b�g3r�50�����(�0Z:�e�\u00130k\u0014^ɜ~�\u001c�\u0016V�����m������3�S��ݗ�q�{\tؕ�R�\u0012+�^\u0019j\\��\u0014hLx.\u0014>ʢ�g=����jT\u0003w-zđ�d�EAnGH�|\u001eB�\\V�+����C1_�6���<�A��ᷫ��3,�u3_/h���\u001b�!����\u00131�\u000b&�\r���[\u0011-y=ŵuِW�\u001f/<\u0014�19@�A\u001c�\u0005Ȁ�L�_l>�Z��{q��.\f�\u0018VM3�\u0002���oj\u0003\u0012���-*]����4�׶��n-���-��\u001e�\u000b(�S�L�5�F���@;�%�����b������Q[�l�\u001eKlɶ�eMT�D\u001b\u001a��˽Cq�!��N@H�/�|?��Y�m�A\"�\u0005܀�M/��N6|���\u0018f8\u0010��!�'��3${��(���^�\r���2\n⑰��NƝ!�%\u0011�&\u0010�(cZE\u0012?����:�\u0002\\4`(^[[\u001ar=R���\u0013\u0000l(D��\u0016��%A�ߕ\u000b0���\u0010J\u0001O��T�����\u0013�!y��]vϺ���\u0004\u0015��ْ\u000bR�R\u0017�\n\u0003\u0012hZ\u0018[�{�E��f3lrEmbw�Ű�t��Gs�r�]���$,�`0}b���j�~e:\u0010��m�E-����$s�����\u001f_\u000e���S��㻂�\u0016\u0006��IYX��I�UC#�QvT��ި}�n$or\u0014s�m$]G{Ё\u0001\tںg�x\u0004���0��x�[}�cȜ[��&a,�eHT�RM���\u0011�\new\"\u0001���w\"����,6,��j�qW�/2�I\\f��O�\u000b�>.Er��\u0018��B[�\u000e\u0012]��c��2�/���9/��\u0002b^7)���\bk�K����Z�B1�\u0006\u0004�����G\u000e�@�gF�\u0005��6�i��m\u0004h�ؙ4����_h/3x���>����\u0002J�喾2�|��\u001d���'�@p�ߙ;�幅As��\u000e������Ԑ�ꋥļ�\\M.��T0|(?f��h��Y��\\rb2�\u0016�!=�\u001d|\u0002�\nJ�0B���Y��q\u0019��/�o��/R<�\u0016\u000e\u0007\u001aǝ*_���ٳI�[*�H2�7���3b�x��7\t;�\u000b�\u000e��暻\u0007\rSG�d��ѽ\u000f��S�E�#�\u0010���\u001dj5�\\\u000eF�\u0015�g�v����\"���\u0011;��F��S�a���^��Q��t=,���^\"Fp\u0017dY_�\u0014�ێ�0��`\fh��\u001cY�\u001c;��3�i���{�1\u0003\u0012�XĨ��=�\\;\u001c1(�\u000f���G�\u001a�u\u0004Vpq�(2`�Ydr<�G�st�%����)�=�u\u000b�b�rL��\u0019',�LZ=L\u0016c�r-��Օf��@�ֿ@��\u001cU\u0011\u0018`��¹<]���\u0019\u00134E\u0018:2!�a�L�]\u0013��9̢��\u0017�\u000by��^0\u0001���dK�<<�X|\u0016ȸ?]�y\u0018f��Iw��[oй\u0019\u0013�=\u0015\u0012�\"�iM��x{TE(Թ�\b\u001cמ|ٻ�\n��\u0019/���\b5�Y��Q�U�\u000b���&�\u0010�\u000f���\u0016��g���\u00032�\u0010%\bL����]��B\u0000�\u0006\u0018��|�@�[7������䰦C�jn\b\f\"��t�\nUɚ%��+\u0000\u0000���V��k���/��F|��zJ\"�T\u0010�<�9Ns\u0006kO[i�\\uR\u000e�q_ō�V��uK\u0016r�\n�!t��A�ҋ����x�!����$H��<�֞���z�8d��\bg\u0015S\u0003S#rJ\u000e���7����\u0015�*����ʒ�<%+\u0006\u001e^\u001f\u001b\u0016���B�\u0001�]Mp����SU\u0004) ��F\u0010�\u001cn���n�1���\u0000?.\u001c�$�\t1����:[\u0015\r�Ä�74\u0000���\u0012D3�\u0012tk\t�m\u0016\u001c�\u000e�v:��\f��Ǧ�Sq�\b�E�݊\u0002�'\u0005\u000f��\u0011#��7\u0003(���Y\u0004�'nm\n\u0017�xI\nH����J�1\u0003��Ҳ�\u0019�mvaoZ��%A�\u0003�rҕ��a�)�|WJ��3l/,��9P�:<�G0S�\u0016�\u001a���B\u0013�Brz�KA/��0�\u000b\u0017��dT�\u0002T�õ�\u0004��\u0017\u0014+�\u0002�A)\b��іE\u001b��\n��N\u0014񅤦�;�\u0016��$�i��\u0017��E��Y��V9�?H���Q��y��$j�n�p��0x�\u0014��Sp\u0005i�J�����B�U��ʥf��\\F�dUVx\u0000��L\u0001.���K\u0000�A-�\u0006,��k^�\u0019j9�IR�\u001bDQμ�\u0007dȵ�Z\u0002ѥf�h�v�\u0018�g\n�Q����S�*`���l �\u0007��\u0019�����m\u0001�z��;!h0��N����v�*\u0010F9\r���ҩ�\u001e�����l�����(<ލ\u0005T�x�\u000f�r�Z�y\u0006�?�7� ]��\u0007�Or32m�B��+v�.U��њ�\u0003`*Ֆ�\u0017�?\u001f\u0000�\u0019?��,+&%��R���B�8�\u0005QʨH_���.��j���n\u000b���GrD,�k\u0011\r5v\r�\u0012���eB{G�z8#�\u0012�.[��Q�@�\u001a\fZ-K)W���{� �F��;�\u0014�r>��\u001f�R*\tN\u0005�@��\u0007���3&�N��(���\u0000��_�A/�\u0006@��]�u��\u0001`.��\u0012�fB���i\n��/�ʅ<ጄ�\u0015V\u001e[�����\u0000��\u0010���m\u0005�\u001eP\u000b\u001b|I�\u0019%�\u0017jXD\u0012\u0000\u001c�\nwΙ[ع��C�>7�\u000f���CQ\f\u0012�!��i[�\u0006g�1Z��\u000f�l\u000e�%��b�\u000f6�\u001fh)c�8��dt�Arٚ&\t��\f��!_*\t\u0010/$��U%���+l�\u000f�\"Q�#�(\u0005bd�`[��\u001a�0Q��=��^�ٯ:.��İ��z��E���+W}��\t��TG�$�������l�AH�\u0006T��X���8g�\u001c`[R�ଡ?�\u001c&.��7�3h�\u001a@��>V\u0001�W�g���\u0017N������y��*ںO�\u0001r\u001f�b\u0012���u�ӞR6�~��� ��\u0018��(@\u001eL%�<�|\u0011\u0004k'o�Ы�ߐ*D�2��Q\u0006���\t\u001e\u0016%^�V$SI)X\u0010�W\u0010�2��\r���\u0013��'ۈ08�z�J\u0015�]\\�\r�2�[}�or��Ma\u000f�\u0005\u001c�\u00038&Eh[�E�`;ѓ�_^9\u001fbU�ȝ̡<������\u0016��%��a����\r�<8v�I�1uNb����]\u000ei��f�����\u0006;�y<�s���\u0014�a�l�t1\b!���:���\u001c\"�D#�'\u0010�\u000f�\u0003�M���:\u001c�������8�$�O\u0007\b\u0004�l\b�`-m\u0000�E�P\u001b��N��A(�\u0006h���\u0016��\u0010��Kd\r.~s�A‹3�/�S#��\u001dM�e�\u001d\u000b��4ۮC�h1�\u0000پ���\u0003��N�R���t�v�.c\u0017�4��\u0003ٯ��궶\u001fWJ��d\u0019)�)cHů��M�h�̄5\u001b�F�\t��ޤ�h\u001b\u000b\u0019�-��ۚ<�q6�,\u0002\u0011��th\u0011�\u0002ʁ]\u0014St\u0011\u0006^�\u0017F�\u0010\u0015s�^\u000bJ\f��lEŖ���pÄ*��_]�J�qc`\u001c$�d�\u0012\u0003\u0005����B�B�\u0007�\u000e����]QO�]�(v��������D~D��-��o��]�0�\u0007]�J��z���M�&&�'���\u0012\u0002#�6��-I�O��R�䛿\"�b�\u001e9���!�\u0015jU�)\u000e�A\u001f�\u0006|���eE.)�\u000f�$��l)�ģ{f��\u00016�o=L��\u000b���z��r\nr���\u000f�\f�{���\"���o��w�õ\u0001=��u[8Gr��7/�����\u0018�ˆ�c���\u001f�[��n����\u001e�P����x��L_��r�n\u0005�����ƚ�|I��vQ�\u000e�I���&����V�>��W���H��S���pH�����\r�iM\n\u001c�;2\u0006�\"n\\ \\\u0011���\u0004\t\b_s\u000f�:�5�\u001a{o�2]�\u0015\r�SЎF |�(ȓvT�ɍ���ς\u001c��?<�2��e�3�ݞ�X�\u0004�2���Kr��N�oU�=�Ԯ\u0007�%�����;hBC�AQ�\u0006����c��V��AK���6�8u�\bhАR�\u001ec��q;��b\u0018�\u0005(\u00108\u0014�\u0004\u0018=��3��K4z���h�ujK�!�Q2d����\u0005��šP[\u000b��7��i\u000f\u0007�����pK�nc�?��`�\u001e� >FM�\u0003>K��\u0003\u0018}V��L��ѭ�\u0017S\f7!\tS� ��3Š�\r�\u000b7\tq7:ob�Q\u0007��'k���](l(\u001a��!q�\u0000*�\u0017\u0010�׺�p��\f,�>'��\fq\\% �5jĤ���\u001aQ\u001e°���M\u001cz�2��)�.vi���W��f}:\u00023��S5�֧\tܳ#�KD�7�ѱ8��E�\u0004�u�K<�A\u0013shM�2�����&黟D\u001a�(�/ဒ�ӌ4��P�\u0005]�1F�&Q\u001a�@lR��v��Ӑͯ.�0\u000bJ�B�A^�\u0006����m\u001a����b-%E\u0000���p\u0004\u0007�hs�ׅ�\u0005�/�%h�\u0015\u0018u\u0005���Ԏ�P�\"��ߊ�\u0006l��d�׾oC����CiU�S�\u001fp�H���T-\u0007��\n�'��E�����4� �R�;�[�J@��\u0014��w��g\tﶪ7B�R\u0005��W����\u0015m�\r� \u0001/pW�����8��Ұ<�peVڀ�h{�\u0005�RQk�cvĻ�^g=Ì�f��\u000e�;|I�U�vA\u0016ܦ�$Y��U)n��\u0010'$�@�����5K�<\u000bt�F�2�\u000b���v$�bCq\u0015��\u0004#��8;��.�ٴ*t/c\n1���fl��8�`P3:�HrG��)t��\u00136�T!*\u0000\u000b���f\u001eVjڌ\u0015@P\\@w!v+$�\u0015l�l���:\n�&f�<8��e��ӌ7�.+뿒��A��\u0006����ju+5\u0011��\u001fW�M���\u000e�4�a�X�j�\\\u0013�U+�,��A\u0005V�ib\u0006�\\\u0005�B�����c����y\te����F�Eĥ\u0006g\u001ec\u000f�a\u0015,�)�9\nc�����FC��@:}��~ܩ��\u0018,=a\u001f�����Cf�{�\u001f�f�j!h]q�\u001fe���Tᅯ&�٨�\u001a�<��Z'�m\u0002A\u000f\b��bc[\b���&BO��7\u0002���\u001b�sJ\u001f�N)<�'75_>�,k�ڙ�\u0015�\"��$��-�ߟ0Ψ�4�y%;U�\u001bv:!?g��%�,6��4u�'��u�\n�D�F���T���\\�PO�_��jk��n�q�\u001anHY��ē'w�+>��\b��R�\u0010cx}s}����t<���O����7c�K������_����\u0019/����{s�\u001e�\u0006\u00119�~�j=��N���zZ���0H6��6�)�^r8��L\u0018k'�\t�cP�1YZ���w\u0004�D�&!\u0010�\"{�\r\\����A��\u0006̀��b\u0002\u0001ߣ\u001c�\f-gx�g\u001c\u000e�V��|�i��V�s�\u000f\u0019�)r�FU�\u0010�G\u0017�I`�c�lj���g��S\u000b\u0018R\u0018\u0006'��T��ޞ��]�����'��*�~\u0014�\u001e9h��d���=�p��U��\u0012�c�y�\u0004&\u0014[\u001ag��\\�y�$D\u001f%綇�D� M�\u0002�V6v��#(��P�ܒu��\u0005 ,��P�2��!�Ϧ�rS��\u0002\u0017�t2z9\u001eH*h&p���g�_O$���6k~k�͂&��a\u0017�SN����v̰��!�A�Hͨ�\u0001z�1\u0014��濬XI�U��<�Q��qrlK�v�ED.�-x�;L\u0012T\u000b�f�m񺶙�+q���d\\8{\r)2��\u001d���\b���\u000f��f�}π�>\u001e_4%�!�I;��Òa�5g���O�C@�`���:��U��\u001aÿ\u0018DO��ɰDq�d��='O�8>�\u0011�`��]VP�Hy��T#�\u0001�b��MbÄ�\b\u0012���A�\u0006����bi��\u0019�Xݱ03\u0005��nCB��O\u0010�\u001f����\u001b\u0001KHY\tW��V7tS�Y���(�����\u0019�-�\u0006\u0015}U�O�\u001b\u001f@�:�\u001f\u0012���\u0018H�;\u001aI\"��\n-��I=�z\b��:�����s�[\"M.B\u0005\u0017\u0011�i�H[Ѥ��\u0006�\u0013���;��:�'\t�.��z��q\u0006��8��)�Eˏx��Xf9(*Tn���p�u4��DO�\u000e;�\b�5{@��*�A�\u001c�9�\u0004B�@��\u0012Ľ\u0018��_y\u0019\t�����P�j�\u0001��k��G#�~^�Yh�9��2�a��?�\u0014or�\u0016��L/%�:��\"�I�[]:�b�D����A�S/i;��ٛȎ�\t��\u001dD���� ��6�SD��ҏwP���VK�Is5\u0011fuO�Y�,-\u0004[�\u0011\u000f4�C\u0007\u0006�\u0019���Щ�a4kK��\u0003Р�)]��9D�\\�ۉ\u0004�_�kATUlT�P�j�pO}�Y��,d�O\u000b�ӒE��#>�'X��.9\u001c�L\u0000����{cx�\u001f���A �S��L\u0016F�u/�f\u000e$�f�#����[�\"�\u0015���\u001d�*�*���'\u0001@�B�An�\u0006����P�G�a�*�6�%�l_;�\u0007��\u000e|SP�����a���@�;r LZ�xX?�\u000f�\u001dooZC:^\u0019An�O��0m���.i����o����S��j4�ޥ�C\u0005���2uJ?}肂y|�g7^����$�G�8�ܯK���[��Z����Q�9N[S���*n�\u0014\u0012����,B\u0016���ľ�\u0011�k�c��\u0018�y�\u000b���>%b�|VD�����s/���<[\u001d�y;\u000f4�\u001c�\u0001�?�Y�\u001f�yk���\u000b\u0007��B�F٥\u0007�������ٞ�=)���}�3�#�#V\u0004�\u0018�����\u001d\u0016�t+nX��i�a�\u0004�d%\u001cׅ�ک(Z��m\tPʔ��]M���P0j\u0012��U��O�,��>/\n��eA\u00139�*�j0��b�5+Z�`��&�U\u0010\u0000�\b�%7��\u001e����\u0000�C�Ab�\u0007\b���b\u0015I�~���CӰw\f���\b`����XS��Db�Af�\b���\t����\u0014�\u001d�2\u0011.F�H���U�-�\b�+D^L\u0003�Z�\u001f�\u0015��*E�\u0007\u0015l�\u0001T'�F�m�}H���\u0005��\u0000�\u0001c6��fz\u0012� �;,�E�����u�\r\u0001�\"��5e>d��\fY<@S���\\m�[o�Z\u000b�I�G/pt$H\u001a��>���O�\u001erD����E�H�!H�\\\u0005wJ��6*���`m��\u0007��t\u0007\u0019����h\u001b%�S�\u001daG�\u001cna�D\u0010�$�\b�_:��\nW���B:��\u001av�\u000e+Ij�Q[��5�\u0010��\u0003,Fݰ\u001e�s\u0006Pg⩉�\u0013\t�q-$\u000b�F�5M\f,ꤺ�b�;��Iw������ց�������/��O��\u0019ܦ�\u000b˓d�I5�3;��b� w%G�AQ�\u0007\u001c���!��^U�P�r-j&���W���\n��f��Ɉ��\rf7Or1V�c\u0011)#\u001f(O�3��\u0013�9�OW�,��hƌ\u000eļ@5T#�\u0017�N�z\u00148%\u0018U�̓\u0016p��ʃ\u0004��ANfg��.#.\u0002�\u0006%$�\u0002���+�\u0007�\u0018�\u0019\u001c�\b/Q�\r����\u0001\u000e,/&�\u0001�nSo�._�\u0004�ɧ��ݟ�\r�qZ�\nW��.gssX�\u001f�{.B��B�m\f���,�����\u0001\u000e�W\u001a]�y�5K���\u0003lN�Fߜ�l�lԦ(�>�Ц��P�+�!�L�\r�3�ω\tBP$\u0010�c�(\u0014�$},O:0IשּׁL<��\u0011�����2�C\u0015�2]嫵a�\u0004�z�i^��I�k�:�����l���i-7� �\u001bK�>\u00072�{�۵M�AR�\u00070���a���,q�����}��H\u0015\u001bh�/\u001fy@��%W\u0003\u000b\u000e\u0017�K1f\u0014\r�G��)ni\u0005�|\u0001H(\\w%#/�f�J.Ic!�\u001f�\u0014�~\r\u000eKw�|\u0006�\u0012�5$Hm�(��y\u0012�3A\fa1��>�D�\u0013�\\�]o��Ԭ\u001f��@q]8b0�\u000e\u0012��RVв�\u0015�\"��N���q.=(�X����ax>\u0014�~\u0019�\u0016\u001a1\u001a�F}�\u0007ȣ\"*-3P�wY}�A�\"\u0000�3\u0003���\u001c�G�S�V]�ǎ\r�\u000fr\u0011����AFLSv��P�\u0018��\u001fוxd�J�gIϐ\u0017��㩾w�\u0001�>�\u0011\u0006T��Ȭ~>�@�\u001e��\taBB\u001f�ЂK}~#\"��lv�<1�Up�\\�\nB��Zء\u0014ݻ���\u0013�gR6�A��֙�Ɛ���PI�M[�A��\u0007D���a�2��/?F�ȯ�]䁥��Wm\u0014\u001b��%ӊr~��j�\u00134\u0014F\n+��\u0002M�\u0006�0t\n\u001a݂���c��d]���\u0006�/�#\u001b`�˝{\u000f��s�g��J�wVF\\~e|\\0m���ڢ���\u0011�E�\u001f�1QJo�0Z��4/����1e�ְhȞC�P�\u0002F�\u0015F��K���s7,�9<\u001fI�Ul~Pa��_ll\\}J`o\u0004xa��\u00003\u0015�\u0017A�t�W\u0000\f<Ɔ���ų��w\u0019\u0015��-WCX\u00190\u0004\u0019՞Oue\u0000���\u001bl�umdln�7D{\u0017^q�R���i�2+/����5��������d[4���q|cܳ��V_zd���yk��\u001a��d]��\u0019]L��W��\u001dz�˜�$���<\u001e,�C�K\u001d����垗Hsr\u0016\u001f�\u0012��Rؠw�P��^�\u0010�7l�)k\u000e�3\u0006䣏�CS(��|�S�\u001c)��.$zm(T���\u0010\u000e��ɗ���jP�d/?\u0007NG�m<0�]\u001fFKk�Ѣ\u0012n^�A��\u0007X���b\r�-��:\u0003���\u0018���\u0012�Z��\u00043I�w\u0006&�}\u0002�M�,�5+�t��K9�R�ð�k�`�\u000b���2X\u0016�x�xP��\n/�\u0004�+��B�\u000b\u0001[�\u0003�XI��}�|��xPL�\u001f\u0015�L\u0017�\u000e�e`\u00156W\u0001uLq\u0017\u0016�0�\u0000Ú��c����pq�I����4�5j�יl$e���,h�$�\u001e ����\u001d�mY�N�c Z��+��/��I\u0017�?�GԒ��D8\u0016�#_8 V\nVm�L-lm\u001c�~\rh���r��\\�N@\"֒�\u0014�P��l?�����Y\b�I7��e@�\u0005Mf�ޛ�\u0004\u0004\u0005\u0003����VM=ѤU��1��W�bp���f\no\u0019\u000f���R��l�{����X\u000e�n�76B��:M\u000554D�\u001c>#@\u0010�\u0000��\u0004�����'e�A\u001d▢�׬�hO\u0019�\u001c�\f/4�'��bmi]��)g�\n�&z`�;6�\u0002��\u0006�#+(�\u001a2��6�)���FG&���O3\u0017�)�\u001e�\u0010��>=\u0010��\u0004��n�\u001bq�,z'�G~2��Z���q�ACU1f\u0014\u0014\u0014������t�Eٵ��-��׶���\fE����X4���\u0001�+��\u001e\u0011�Ix�ox��:\u0010\u0006�����^�Aā\u0007����?�<�a*�׶�(�|��D\u0005�}I���WR:�\u0016�J�H��]U�)q�gn��\t9d��q%\u0014,>���\"����g��\u0014�(\u0018��,��\u0002��l���ң��nr��頳`rm�\u0018��$�m�Vz�\t��dܼ�\u0012.Ww���R���[D\u0018t1\u000b�ʧ.�Ȣ\b�qm<`����\u0015B�S(�B �lkJ�3t\u000e\u0017y �Xv,\u0018�1����C\\xZ���\t��/\te�o_!����6\"�\u001ezO\u0006���\u0004�:��&\u0002Z-U���\u0018��\r}���ÿ8��b��<���>:��\b�Myk��t��~Z\u001c�\\:mX���o��.O���\u001fї�&DG�T\u0010\u0012=b�A.�ɖ��?�S\u0005�!$��˻hkv���p��g�-���N_�\u0010��'R��+� S\u0015�g��\r\u0001�w��0#��b�\u0019Y}�Y��\u0017�\u0019)\u000e�͵{\u0010\u000e�3\u0003H\u0014-)20�~�Y�a@E�4|�\rh��Դ�&\u0013��V�\u000eOe��s��[\u001dne���B�I e�2^�)n.�\u0018R�]�AJ�\u0007�����K��Br:/��22)��ƻ�����\u001d��\u0019t�\u0010�\u0018c��M\u0012�dKm9\u0016�.u\u0001�{1�\u001e�k�bz�;ѧ�rv��\u0011�zޡ��U;\u0011��h�K��=��p�є�Sn��c���$^.��W� ���=\u0005v��.��\u0016��\u000f\n\u0015�[\u0015�@��(��_�6\u001f&b\u0003x�\u000e�]�]�9��Ύ�|\t��űw�V\t8]B�k7��\u0004Q�\u0002�y�4(�4oE*���ޡ�\u0017�\"!g9\rm�'��0b���j�8\u001a�@�p���F��;1���1\u0019K�']7�O\u0003k���\f\u001d�:��\u001fR�Wi\u001a�A�����}ƃ�$2b蘞eU��!�en�s\u001eq�\ri��\u0004\u0001����9��-]\u0016;\u0013.>(��8�:u\u0010�\u001d(\b�\u0001�Y�A��\u0007����b�U���I\"�G\u0002�@t��T\b\u001c;U��\u0017뼠d�G�������Ϣ�DE&sO���Rlr+]k\u0001�Z�R��{��E��\u0019\n��\u0003��$��)�7��D,\u001c���\\�y�m����х`��7m9%��\b��\bۘ/���\u000fe�e\u0001�\u001a:\u0004�T߁�+\u0006�8$^$��b���\u0015&�参,M��{�\n��Q��.Ks�(�!��i!�=\u000b{�|��9LugL�\u001a\u0004�=6�d-.���\u001a���F\u0019�s�SG\u0011N�;���,\u0019\u0010+�n\u001c�\u001d��U2Z@��j\u001e��FR�\u00144�,A����^���Z\u0019t������G�;?(�\u0016�<\u0006`�ƙ��\u000b�\td�I{�\u0004���SrBZ\u0018�\u0002C �-5���\u0002��\u000e@J�\\����\"�ȸ\bNP/\u0006\u000b�N�\u00151��\u001f�3�SmQ�u������$b2wOCR\u0002\\�㊊\u001fཱྀ�Y�AQ�\u0007����a�/CtJ�A:R�#m\u0011O\u00162N�\u001a:I��G]\u001c��ȣ�k�me\u0010\"u\u0000z��\u0003�Ӝ�v\u001aH�bGm�a\u0001n9-�\u0002��e�p��G}���\u000f@/]�����~\u000e5X��\u0012\u0019\u0010*\u0016\u0015���'S���,m,uo\bx�\u0001�(�t��\u0011cp�=�;kW�\u0007�������Y�܉�\u0011��>7�\u0003\b\nZ�����݂�?^��D6��U��\u0003�qy��f\u001e�\u0002CM\u0000_(=��z��\u0006\u001ePņ�_��Q[\u001b�'��>�lr�+��y�ͬ\n\u001cĚ+F_9>TQB��\u000ek�\u000b����0��>x�g��$���S{f���p(s��\u000b!��\"����*\u000f���;WY�QpI�\u0013���O\u000e�\b\\x��\f���O������ 6I���\u0010\u001a'�[b\u001c���Y�A>�\u0007Ѐ��a��c�>2մ�\\�k�~�n��cD�43e�қ\u0006碣22��O�\u0019<��\u0010�����q��}�\u0003/j���X���#\u0000�)0[\u0017���\u001e�_@Q���ͩ)|��\u000e\u000er&U�(\u001cJ�\u000b[.y\u0004O\u0013t\u0016�\u001b�j�\u0006����E>�V����!�Q�[_�p\u0001��h\\���(\u000b\bRc\u0002�;%�z��}4w\u0017��\\��\u0012YKR�\u0003\u0004��*����\u0012׎\u001c�g�[6�w��\u0013\bG�\u0003\u000f�\u001d��h�mw�i�,w.��X�4T=z�CEJ����L��I5\u0002d�B���$��w���\u0018Z��Ί��Y���B\u0000\u0001-�[\u0003�N����Ԫ^*j���\u0010���F�b����b\u0013ٿ�qGV)��B �fIX�A.�\u0007���b\r�p\"ݦ\u0002\u0001�B���Zx�[!>\u001b�\n�w\b\u0012���G�\u0012\u0002��6e�U�y��'\u0003n��,���\u000e\u001a��8��}m&\u001f��\u001d�\u0015��G�s�d\u0013�d\u0010�f��a�\u000b\u0015�p\u001c\u0014K\u001c�f\u001dt�C\u001aĪ�E\u000f$�H��Ij(V&˾��\u001f���\b����\u00028yƚ\b�t�hז|M�a�R�\f�FTC�� �\\���\f/�$BvMn�'�@��\fR�L\n�\t\\tW��+�\u001c��\u0015r*W���\u0007�\u0013�@��^x'�zk�F�[��O\u001a}\u0014PY���z�ho�OoV�\u0003(\u0014\u001d\u001a��(�F�ٞ!\u0013���s$�\u0006�k�V�Q��ز�e\u0010\u0017���Gȑ96���c��\u0004Q&[�A<�\u0007����b{�?h�\u000b����F�F��Y���:�����N\u0004\u000f_���Q�Ǘ{2��@B�\u0012{\u001c�X\\� ް���\r[��I�eU\u001e\u000eC ���@ң宐���gZ�K�֢f�tr]���\u0000�K�4���s\u001e���\u0010Պ)��QK'\u0017�\u0002�<�Hte)�%7\u0007,Kh�\u0005\fA��\u0016�K�l�ᙙ�\u000fY��x�\u0011�@ݭIaP�I�\u0005(B�\u0010���\\<��6*[Qf\u0004�\u0010�#�ܘ%��u���~��������K��%~TL~U�v@��%�-Aw�,iz�qI�:\u001ch�8�D��,�X�\f�����l��F+�d�\rI\f鐉�>���6���ye\u0007\u00162�l\u001d�\u0004����\u001a�Ю�6�~c&[�Az�\b\f�����^\u0014�W^A]h�\u001a1��\u0005\u001dI�v�U�i��/��\fy�\u0004\u001ev�l\u0018�@�wX\r�b����\u0000Y��\u001f�F�\u0001�T3\u0002Xг7\\#�I�h��,\u0005��L;I&��\u0003l�@�.\u000e&�IE�ߛ�����Ƚ�+s5qw���l� 쀸d' \u001d[�\u0003���\u0003~����\u00149,Y�h��\u0015�\u0007m,t8Na\u000b��\u0003i��Ҁݎ\u000e_����*h(���A\u0017\u001d=nMםض�\te�\u0012��$�u�S\u0014\u001c32�F�)�f�$�)v1�E��\u0010�q�5h\nc\u000f���Cv��\n-�[���@&\u0004�~���rW�D�\u000f�dl\rzh;\u0001&\n{#/\u000bpR>��ȍ\u0014\u001c!�^ɫ̧i\u0010bbY�l\u0016f4?�\u0007!E�M\u000e�\u0011Sg��\"�BI���w{+��3���oo�\u0002�V�L\r���0\u001d���\u0003\u0012�\u000f�Ȉ��\u0001��Q���=`�d\u000b�[�At�\b ���0?ť�z�Ĝ5���%��R\t�7.��G�Ǽ\\�x��� ��\u001dl��F�����\t<%\u0002\\ !\u0005�f��h��\u0005\u0018�ڦ�U�g²�sx#�#ࠀ>2��teB��\u00187+\u0001E��\b\u0003��:�\u001c�ξ�O\n?�`0���4bذ�TW\u0016a,�EƯ����(�X�ka�d�r4ظ�j\u001bdхT���~O,�x�\u0014\u0012��@+m=�k��(6\u000e`Y>[\u0006>��\u000e�����3\"���\u0002��V;\u0015�^�_����\u0012�b\u0002k;�\u0004a\u0011P�����\\��\u0019�>��\u0018����Y\\xQ{�{y��/Fڰ�\u00167�\u0006Z7ʽ��\u0013.Eq�\u0005H���������P���B�D��F�I���(��q��ė�a\u0014�1��>�8D�\u001a8��*��Ƭ\u001b��\u001aQ3\u001d�u�q���(EU���φ>��kނz�����[�B?�\b4�����D�k�r�\u0004���S�4f�\u0003K\u0016\u001e��\b\u0005uV\u000bTfGdf��\u0001��\u001f����\u0013��\u001a�}\u0002\"�\u0019���S͔�\u0012�\u000e]-\u0012\u0003a'��\u0017��:���9�ݱB/Mƽ@���F�c'=Ɔ�Sغv�>��g�Ҡ�_<\u0000 �N�.�7�D��\bA\u0007��d\u0015g\u0003u���@�NT���\u001e�\u0006�\tI\u0014\u0019��R5\u001e���N�\nG@�\u0006W\u0015,�5��Q���4��l��8�K�\u0003�6�1��r�lNP\u001e�X1��]��a�r\u000eT\u001cu���\r\u0018����N�, aMc\u0000�k\u0000\u00004A��.��Y\b�U&����1���U���\f��/0\u0012���\u0017�ܾ��\u001b�_�G�\u0010�Y.�6�.���f�����s����G\bBъ�\u0018p�ǡ,��w�\u0011U�m��O�\u0013�\u001e�0ک�Z��<ƄQ6���/\u0001�G�\u0015�\u0005�o�D��%`\\�-\u001e4$0����'�\\E���vE��_�f��?�4k��;�|�h\b@\u0004n\f�Y\u0012a��b\u0004��!�Q��V�m���`�\u0014-��\u0012�\f���7��Kq\u001aDj�S�=�z�[��&�����b�\t��G�1.�\u001d������[:#��'�FN�y/�b�B�����T��\u0010M�y�1�h;���W+�\u0001�]L�\u0014�>�&\u0018Sv���gDܚ\"�E��d��؈�\u000b%r[�An�\bH��Ӱ����a�sQA\u0016I��~U�䠽���@L�jbՌ�1+F\u000e\b��v�e\u0014H���#��\u0002A�9�\riښ�U@��+j3��AySD�{����׵��p\u000bx�ǁ_L�����݋�6�\u0015E�o�!\b6\u0018\u0010ek�C,w�Ќ��E�U�DF@�ЏwF\u001a���>�8B\u000b!�����h(\u0010k왷F�Q�s(���Y��\u000b~�5݄������L�cݏ�R�9_�+L�Wjճo3\u0004�/���`�rul�Ȋ\u0019��\"Hv\r�8?��0��!�*\u0011�C�?gB�E)�ޯg����\r�{�\u001f�r����\nf�\u0004x��!\u0018��\u0004}��\u0017�`Xb0�4\\��\bT��=X��\u0004�㩊�zN¹`���iq��J�#Z�L�\u0003��A����[L��l\u0002\u0003���e\u0002O��y\u0013@}ZP�R�[�A��\b\\���0\u001a��<��>\u0017�(n���4��Չ�,x��\\�-�iF��r\t+���A=.7���ʱ�3�-\u001d��e�>�U!�%�B�����;z�ӷ�%���\u0012�0\u0005��A�4w\u001by�5��\u0001��0�9�\u001a:KS��EO�\u0005H\u0014�\\/���U<�q����\u0004\t\u001fy���M,����Fz�\u0014��v�\u001aV�0�\u0019\u0002��\u0014�\u0014\b\u0001\u000f�\u0013\u000e8���G\u0012��\u0005G�z��)�;���\u0016\b\b\u000fr=�,e�L�\u0019��+�\u0017�3�]\u001d5k�U�\f��&��5�(�W�)|������xTT�M���b\u0018���g\u0010\u0007\\\u0000�\u0005�\u000b��Y�^�\u0004�\"=��mT��6�\u0012\\Ķ\rtxP�\u001f\u0005�V4��~�&rl�z��t�\u0016�-`l���\u001d\u0014\u0019Ê�j���=�\u0019�\u0014\u0011G\u0003�/�@��S]*\u0000�.&��bj�D5�7�����[\\��wY\u0019��\u0002����\u0007f�JFf�,��Y�A��\bp���0��P;̚�s\u0016}���2�vU\b\u0000f,��ް]��E,��\"�HpҶ�y\u000b�\u0012'��9�Z�\u00010���Y��0��I(֋\u0012����x���\u0019e����g��eIW�q��P&�9\t���\u001e��\u0002�\u001b�rϯ1�y\u0006�!���MZ\u0014}2I;(\u0018o�m\\��ӑ��\u0017mr�GA\u0010LM��hDp*;_��wޢ��{�xy\f$M\u0014\r���w\u0014$���\u0012���I�\u001b�^vȊ�\\]d���w\u0003�Ep`����\u0016��@&�N#v�fw�\u0013����\u0007Ƙ��o�\u001a�r\u001d��U\u000b3�R!T��\u0015^\u001c\u0005�\u0010r'�\u000e�]<%��!�j�q�ڢ�a\u0016�!Ҟu@eo$d���g\u001a�GF\u0004�QjYk�̻��:\u000b�l�(�'\u0017�7�!`����\u0015�|7x�`��w@����r:\u0018��K$\u000e ����e�Y謷@*��\u0006}l0�\u0013���=\u0011(ߜU��o�7�\u0005\\uߋ\u001b)�W�HT ~S��QX\u0000�\u0000%i|�h���+���H�\u000f�ֿ�����\u0001�\b�E\u0014۳+�Ϙ�3����Ź;d��r\u0010lG�q\u0007U8�P�Փ>��sU��jd���\\�z�_~3�!\u0016��N�މ�mD�\u001eY�A��\b����0M\u001dl�J]�\u0015D8@gλRsc@j�\u001a�\u0019�\u0006�\u001f˾ �_BnAD��\u0016�U��}>>G��\bmo�ʏ\u0003\u001e\u001d��Z$\u0011 ���WI�x\u0000�spc�B:w\u0005�\u0010�?�Q%Y2��#C�5�\u0005\"���\u0012šOd4\u0012=XP=s�(I<\u0019*�xj��Tc���)��O\u0005z��4\u0005vLjO�Q\u000f\u00190�]X\n\u0013χ��ߥ�˰c�wd�2��\u000e��qþG3dN��І��v_��;�:\"����n�i���P�\u0007hu� _YO�`֑\u0007�\u0007�\u0001\u000e=πiqǙ�R7LTg����hث�]��\u001a�����\u000f��V�\u0000Z�I\f*�;N]q:\b�U�gv\u001e\u000f����\u0013K\u001d\u0011\u0013e_�\u0005�vS��y���$���yj���NW�׷E��R|/8�~�\u0011�\u001ad\u0007Cb%n-m��z�\u000f`\u0015\b��M�@�\u0002۞�=\n�����X:�`����!�q4�\u001d7��i\u0005�8P\u0006\u0019��;] �\u001b�i�J���\u000bs��\"�LpY\u0006���~���[t.�Δ \u000ey>���B\u0016��'듧��)�1HS�\nM~Z+P�\u0016{֮��l(����2��y\u0004\\D2�?RQ����ƾR�,��\u0015\u0005\u0019F�\b����\u000f(�|_%\u0015=o^�7�\bV+�i�����s��Dm�U���h\u000fFG@\u0000\u0005ĥ�£Am�\b���0\"���,\u000f=�u~h�1:7\u001a6\u0003=�\u001c����\f�h�}\t�=\u0006\tk_֙ٽ\u000f�]�x��^�@x\tB�j.\u001bA�\\C摦�.x\u000e�\u001a\fnC\t\fX�,s.K�����1�T'\r�\b�S��e�7�\u0004z�@��<5lg\u0004���.G�\u000b��I��\npGo�~M\u00128��g�1\u0013W\u0012\u001co�M�R\u0011]j\u0010��lU\r&&�x��3�\n\u001f�CH\u0014\u001b��'�\u001d��\u0011_�\u001bNj�z�E�(�(\u001a�\u000f���tv�;��\u00007\u0003����[Qګ�!�8�(\u000f�)\u0000�P��\u0017��Y�T\u001c���ͱ\"?D�؍5{�q���x �\u000e�l���\u0002�+?�ϟ3��Ô\f\u001d�\u0010{\r�:�P�q\u001d3)9��*q췞x\u0017��w�J��<���G�\u001dH\u001dܕ#N\u0002*�t�v�61a\u0004�j�[̍0�\u001d��^�J����C\u0011\u0005��\u00037�2�\n?��[�E�/\rR�H�O�C��%�<<�kU\u001e\u0011��i?+�\u0001e�\u0015Ƀ��{t�\u000fhʗp�9��7wm���\u0000��⯱\u0001\r��ãAR�\t\u0010�����n���܎�Ru�fUb����rj6HN�n�|(�r\bW�b��Q�Ѝx��\u000f\u0011nĞ!S���P�\b��;���l_}�؁��a\u0003��HoK\u0018���<�wn�� ��{ц\u0000?;[\u000eb��E�>Nq\f�7K���N1�K���\u001e��^[ע ;�_,z,�8�%U��AX�7�1��f\u0013�o�:l�R[g�<\u0013�����\r���]W\u001a1��W��\u001dͷ�c���\u0003�~<)$����*�J�P7�\"(�)�\u0005�X���t�a�2!���1�\u000f�$J�Tҽ���\u000b�YE�3_)v6�i����L�\u0013n�O�Ī-�csD�\u001c��\u0004ҍ�\u001b�t�~\u001e�\u000fn�{�0\u0014d�\u001a\u0005�I`�{�ҵ`�n׵����亥m�j�Ƞ#��\u001f\u000b\u000b|`��|�\u0013�9�D\u0011��\r�\u001c��ׇq\u0015~~�4�.���:C>W\u001f�\u0005�Բ�\u001a�|>\u0018�\u000f�Cci��\r�P\u001btq\b��P��\tQ�}GM�P�+�6z�Ȁ����V�\u001c\u000e3��U���G^0\u0001���Ah�\t8��L�u���N=����!JE�kP\u0010ݮ]��\u000fE.9=D�D~\u0017Sv&�S�\u0017�)d��q\u0016{A�|i�N�\u00168\fw�\u001e�X��j�) �L�:�\"\u000f�=�/�\t4y\n̸�9_�N/��3\u0004����c�]ئ��2H�o��4eK\u0014���\u0016�rl�'�\u0000��̧/�\u001b�A�\tL���$WĽ�\n4\u0003h��a�r,ƻ\u0002\t����D\\/֞�Hp�\u0002\u0010R��Y�T�C\u001af*����\u0011��]'�з�}^�P�[�\\�\r,*��|,QQ�6 ԇ\u0000��}����\\�dL������\\�wm�����&�\u0005��\u0014d'+y���4QE\u001as\u001cu%y\u00183\n\u0004$�o�\u001be@rW,�G؄����E��AL#�ނ�2:F��-�E̷�r�\t�6;��\u0004�\u0006P�����Sѡ\u001cw�~����\u001348�lÒ@���h��\u001c�7��=#\u001fƌ(����V�&��ƍX�s|����c���B�\u0012��\u0002�\u0014�p���v��ˠ\u0015\u000b�Y+t�����\u0011� &�+�LULl\u0002�?��\u00171lb�Ԟ]^d�-����\u0005���i|��k����=�\b[\u0019}�}l\t\u0013��?���ޜ)�k���6�Dީjod̺��3\u000e'���=\u0007$�(\n��\u0005�]\u0017�\u001e�\u0018\u0014֎��A�|$��v��K\u001d�Mz\u001c\u0007�m\u0018 �\bu�\u0018o~�7\u0007��\u0004�����Ged��%$�\u001f:�\u001c3\u0002ˢ�\u0003�\u0006ᆁ��\u0006v\f:]�D�j�ĻP�\u0012Ig�m��qk.\u001bh?�AP�\t`���\u0017\u0017Q�\u00058\n�aS^�K����\"\"�{��\f���S��|2�\u0014�\u0007\u0006_���I�\u001bɜ�0 )\u0005N�\u0007ag��L�5�\u0003-\u001d�_ڜ��>b��s�\u0001@���\u0011c�l�����t��l@�#��*�$��\"�H\u001e���xX\u000f��υs\u001c���\u00145_�aE~uD��P�E�g.t�\u0000�$�೺�P$��I�m\\�\u001c�V�\u0017�\u0011~\u001f��\u0007�o�pA�L�\u001b��O]$�O\f\\K\fK�:��(���D�SZ\u0015��0\n>�[@�l\u000b�.�Č��I�0uq�S\nv��~ۘ�\u0002\u000652`g�Q�Jš\u001f�E����t��Q\u001d\u0007�Tӷ�t}�\u0015���x����F���/\u000b��s�\u001e�%�\u000e�����F,z7���\u0010�$\u001a\u0010\u0006��\u0003\f�\u001a��\u0018D�A5�\tt���\r\u000f\u0004-\u0001��\r�)ߪ�pH\u001c�O�v�Z�u��\u0019A�����K\u0006J\u0000��������\u0004\u001e�\u0012nfr��A�W����Ǜ����B�V\u001b~c�\u001f�Ϡ�r�\f�\u0005�(H\u0003� �\u0019�\u001e ��n�L�!L\u001c\u0007�\u000b�39I��J��93��[�`�ADѾ\\XO�bAR��ђ\r\t#v+��~4��4�p���\u001a-Q\u0017<�\u0000x\u0007\nݢq\f��+\u00175�&�\u001e��B\u001e��=<\t5�d\u001e\u001cfJК\u0005`����o\r\u0011�,�K��^viC��\"���pG�Ϟ�������S�\r TAX\u00137�\r&T����\r]&�y�\u001fڊ����m��ߥ�%vP�U�/T*\u0006љ���Q���0���DH�A7�\t����\u000e�\u000e��\u0011R�ld�,�\u001d$��\n��G~�O9����؎Ε��!�c\f�\n�.�\u001f�\u001a'S\"N|�;�gܭ���N\u001c�\u001b5�P\u001b�_���n��ڬP�\n�\u0017c`�o���Z\u0003���\u0003y��O\u001e�`�\u0010�\u001eX�Η�\fJ�\u0006\u001dd�y0x\bP)�&Ÿ=p���#�ϹYSP�™#S�N/\u00128\b�5�ɱ�AAM��|���\u0017\u0005�b��/�-�u�\u0003�y4-f���Z�\t\u000b�E���\u001a6L�/����N�\u0007#�J\u000e�\u001e\u001b��jP\\�G8i׾�\u001d��{�V�\nAx)����d�t<�4���^��J$�\u0015y�\u0001�\u0013̹��JK��Al�;~ex�}�M2\u001c��e.n ��\u0007��p\u0005�N�A��\t����\f�Y���v�����^ބCb\u001a�J�c}\u000fxR�����\r��.�V��X\\�F����0�H��/���x�\u0007�\u001a���}���\u001f�\u001fhOv���\u0014��x�H���\u0016��\u0005�zpe��ͬh�Wbϣ��;,]�K\"\u000b�g��c����\u0004ll�IM��Fk�������\u0000�\u001d�c��+I���?D��\r�\r�ͼs\"@\u001asK8��\rb�@��ų\u000e�H��\u0004��n0.6��\r[���ĩf���M+3���4��M��ϵ])B�ׇ�\f\u000bZ:e>\t�\b~�ދ��vܡ5|�������hKIk T\u0013Ϛ�7FF[���(m�\u0019<��U��S\u0006ݰ\u0017�!p�'�hաӤ@�A �\tĀ�M2J�)���mg��e�+M��r'�v�.-\u000f���}�ծY�\"{\"��\tq'[Nv\u0000��P���\u001d���n_�s�t(\u001d�Ң\u001c�\\b��\u0014\u0013�ܟ�\u000e� \u0006RJ\u0013,��\n@|�=\u0007ٵ��@ׇ�\u0007NW`\u0013l4Šu�W&ʔX0׶��:*\u0002\u0002�<������\u0004��<��.4\u0011HG\f\u001f����ׁ\u000b�D�)�4�\u001c^.��x\u0017���y>�h�\u001d��!i��E4si�~���A�\b�\u0001��\t&A@��[�(+<�\t@$�|�Ϻ��/�R��5�}h-\n��Q�\u0012��C�o��L{�U�\u001f:��FO0��M���c��?��?!�U\u0018\"�e�LA�0H�\u0014\u0012W���_.0�dt |�eGV�?v\u0007��\bB�8��0�����l���2��\u000bN9$��S\u0000�\r\u0000��\u0019�N\u000e\u0005ʋ��^�\u001c�\u001e�*!��\u0015G\u0014\u0018\u001c��\u0003�\u0018�xL�{?�P�{J6�\u0011�$�P��!`�ʢ���M��Q\u001e����\u001axܩ�Q��=�[M�\tI+\u0012�09S)@\u0005\u0003]3��G�\u0013���Q��m$�t!�~K\tCW�6���z2^m�H�.�����vea0M��\bfhr\u001b���ܤ�<\u0004F\u0005���A|�\t���mj`���H\"`\"\u0004S���\u0010j\u0005��k˫�)!\u0006\u00122�i)����2�.��)�+o&���N��R�)\u0017���gy\b�\u001f�<ڽ\u0001G\u0010��aI=Z�\bL����\u0004��\u001cu��FS�p�r�\u001b\u0003(��W`ӏ$+����8F#�;kY\u001ah�ɻJ�9�����BT��9H��WbUf�=�\u001b{�ڂݯ�\u0016�σA�\u0011�pF�kc$\u0012\u0013\u0015��\u0010v���Q)=��\"�Be��\u0013�0����\f���h\u0012e\u0011\t��Y�C\u0005h�T�F|��8\f\u0015��\u00123�\u0004;\u0014�^�?\"O\u001b�E;\u0005�\u001f��ˁ#�Y��\u000f�N,h���\u001b�C�A\u00154�8GL�������a��aF}��l�!\u0004\u0019��Ŵ[\n������*KI�O@��\u0012�9g��\u0015\u0003��w|5�.��Ǚ&{����Q׀�̓$�ǹ\u0011��\u0017\u0012�i&̖\u0017\u0007�\u0013K2��Á\n\u0000���qh�[\fUe�}�2��,\u0017귡ə�\u0012����\u001f�~���\u000f���JoE��,^��\r�D�s;�\u001aH�V�8�}���\u0006��\ra�ظ��w�I���\u001e<�\u0003�\u0004�\u0001-$\u001c�����{-��\u001f�e>�T�?\r�h��\f&�!�o5���^r0nCG�\u000e�[\u001c�\u001dT�UT\u001a\u0003a�w�\u00047���\u000f0'�\u0019������L�\u001f��[�\u0000\u001fނ�\u001d�ԡ��NT%p\u001e\u0013�\u0005�muz��e��lR\n�M�֫�\u0004O,0�d�r�jecP�<_V\u0000�\u0013�C\rni�j\u0002)��E�~�ͻ(y�-:�W-]{`��\u001690\u0002m|ҋ�㩠\u0015���\u001f@����rq)#�#G�p.�w^���Ms�:�\u0007q�3f{���u!n��a�\u0016�\u0006�3�s�wQЪxv�G�ɣ�t]ۣ'\u0013@\b4��߽��L�9\u000e{5J?���\u0002�56Q��?Hubǫm�@�Z�j2�Eo7RK�\"\b\u0016wh\u0001�89�\u0010�҂�\u0005�w��v #<\u0019:ln\r�\u0002��\u0012=X[�EK61P�6E�\u001f�\\����&��Aց\n\u0014���a��c\u0017\u00115\t�a�;�3��\u0019\u0002�g<����4Gџh�׌B�\u0006\" ?%h.�\u0010��HK?�1�\u0012��3�C�%J\u0015h&�8�ݕ�k|_��=\r��K���}��nҒ�Ab���Y���\u0006�Lw���7��ߌp�n�{\u0016�X��\\M\u0000X)�UW?l\u0012A��\tu'���5����K?s��,H%rd�h�,�Qb\u001b5�_A��91,�\u0002@�Ė�\u001f\u0002g7�k�Aq3%Ev�+re�\u0004Q;\u000feP\u0011�]����h�{2��\u0006$���+��\u000e��\u000bn��r�q&Y��>\u0000�.M�� �\u0005Y��j��n�옪؆��\u00028R#\"X\u0002�ur��9�����H\u001a��\u0006�q��b���M2B���Y�!2^�)�x�]�;\t��u\u0000�xd����΋��8*�Bj��(��\bB�\"��׽\u0013\"j�{ \u0012LJ��\u001dV�H`��h�[�_>\u0011w�p�\u0003-_kQ��\u001f��8�~K�re���v.�\u001bi���j�N������\n��\u001e\u001c��&��W#�?\r&VS�j�M�\u0007¡\"Z\u0016w�m\f�\u001aw�&��Ai�\n(���E2�zp��(U�F�����6���u��\u001aC<*�^\u0005(��\r]v\u0011V�ga\fV_m�k��'o^�/n�(��\u0003\u001b�lE\u0004�>@��[���\t��e�RJ�������\u0007�_-?�~�;���\u0010p��ipb�(B{�\u0007�Ѐ\u001af0��\u0006L�h&:�g��\r��L�$��~^�2\u0012���\u0010M�Nn�Є�6\u001a�\u000b���\u0011\nB_p6?��\u0014i?�\n�_Q��1�P�����UBV\\�\b6u@��GT.<��\u0012�\u0001O�\u001f��,\bk\b/%�m\u0001�(���鏟\\��\bU����c'\u0012�V?�\u0015ų�c�\u0004f�6I�\u0013?=\u0001\u000et���T�^��xK�F#�\u0003y�B\t�k���+\u0006�f|u8\u0003�f\be2��\u001c<�؃n��}�+'G1gU\"~W�M�㗑=�I�\r�=m/%\u0017\u0005*�y\t�ⷣAՁ\n<���bl�\"���o�s0l\u001d�\u000e��\r����8\t\u0005r\u0018|B��~\u0013�\u000e5�}/g\t\"7m����\n���\u0003=#\u0010m��K^��9ƙ��]xP��\u00181��)�Q�n7)\u000f\u000f��h\u0014�\u0011Y/�L�W������D�\u0000\\ d�0�|�\u0019�.6���t\u0018!�!�y��ܻ+�'�8\b��\u0004IVv�\u0018%�1>�ro�y\u0002%\u0013�\n�\u0004���r�V�ќ��\b*�����}��\u0002%4[�%Ѽ�J�}�]\u001ae�y|�\u001ft�<$w�\r\u0018\u001d�u�\u0016��ԉ\u0018+�\u001b�\\/���B��h\n&��\u0010EZ�##]6\u0018��\u0005�+��Pr{f�8f\u0006Y\tX�b%`�+�U0S���Q�V�\u0010},�v�v�%Az�y�$\u0014�\u0016F\u0011q\u0005M\u000fKR��\u0017�Y��>6m\u0002�%��#\u0005������}\u0016n��<����ܤe\u001f�)!\u0017��#��<�s��\"\u0019�U�\u0019]Sf�k�G�GMžr\u001e�>>9�E-D�{���|�fw\u0014\u0014fWZ[�2f[-]͟]_�ޝ�\u0001c�(�\u0010���\u0004�:\bۂ�G����\u000b�\u0007z�D\u0013?c������A��\nP���v �^�\rRN)z���\u0001zx}�9��`��\u0019�\u0010P�\u0011�hp�9�ܬ�g\u0000\"�_Tuj�}�-\b=3(cf�A�#��{��-��\u001bS�6\u001c�(�C�SnJ��~a���<���~���\u0006\f��G�\u0010���1d�z0�u�*��f\u0012@f�v�_\u0018C�\u001e:�vJYtˁ���-�nQ�kP���[��,(��\u001d\u0018�\\��IG^�bK�\u0011\u001d�e��]{o��_��#�\n�֭�\u001e,a�\u001ev\u0005u/~\u001c�XK\f�Gd�L�\u001e��w��1��w�\u0007hW�\u001841�n�o͉�\u0019���o\u001a���\u0007�)\"��`aJ4Z���v�Mƛq\u0011B���%/��%��}'cp߸���4�Ǔ�H����Ґd�X\u0004����v�\b$\u0005[8�f�c�y\\p�O&\u0011l��S�\u0004���w����m�$\r���+����\u0004�����\u0000wIR�5\u0004\n�G�\u0011-Z\u0011I!�I�ؕ0�\u0006F�\u0007X�C�7&9�A��\nd���bB�\u001b����\u0012���=\u001d���$)��\u001a%o\u0010��e�rB\u0000��'b\u001eT�bt~-��T\u0005g��F���\u0018�\u000e2���WJ?.�\u0018��2�k��\u0017e���k\u0004�\u0003��x�R�\u0010�J#)c�\u001b�.�<���\ry��E�3q�Ѐ�ݯ�ٞ��r�n��[�6��\\��\u000f��cL# Q�!��r5�>����pQVe\u001cYfx��mYwn��C�'�A\"��k�b\u001b�4��d+�ﲢ�`�;<�\u001f���hC)\u0004u7�r)-V�W���\u0011��e6\u0017D�2:=����'��3��U���d��%\u0015\u0012ϴ���ZBڂDx��u��\u0007B��\u00148��wV�\u0019&\u0010Ld\u001f\u000e�(�y\u0014��\u001b�\u001ch|�lM,\u001d��\u001e�6K�#\u0007�V�r\u0014%�ىɫ�����9�A��\nx���b7�۽G�\u0003O\u0010i6U\u000e���2j��\u0018}\u0002�jw����z�f�~Z��>�$$��V\u0006�Q�^\u0011��|n�*R�p�\u001f�\u0001����[րG;\u0012�0&�\u00038�\"o7$�E�6Ma�G�\u0003wR��d~>_�X\u0004�wJ�D(��~�w�\u000f���C�\u000b�\u0018\u001b���\u000b�X��2�\bܶ\f�,�\u0019sS276\u0001Y�f|�2�\u0000���W�\u0005\u000f�\u0003�\u0014\u000f\u0014���c<�^��-��\\�h[�SA�TZu�:f�/��C\u0003G�?�`\u001d\\\u0014\u000bs��L�\t@�ɵpL�a��\b2*m�V�r\u0003]�2����k����QC%p�gpڸV�*;�\ts\u0016*�\u0012��\u0000\u001a���\u0002��,^�y9\u0001L\b���\u0006�8�&e�\u001e\u0010�VT\nS\u0007�\u001eΙ�eY�;A\u0002]@�L$�L��[^�ZPn1�h�Ō��&T���\u000f�\u001cA�N����\t�\u0013���-ۚI@��\u001e�!V8F]\t\u0007Z���@[[�9�A`�\n����mhYT�\u0005\u001cE�ܮ�z�w��\u001dKE}���+��\b�\u0010P}q�{1��ڳA���\t\u0002�f\u0018�\u000e��%c|\\��3���\u001aT�b�ԍU�\u000b�\u0007\"\u001e8�-+�븓��6\f�x����\u0003�r�\u000f�5\nT#��\u0006\t\u0010�� -4�r\f_!}9��PTl�E�Xz����@��Zc\u001c׹-vFkˍ<�?�4�ɒ��\"}\u001a��\\\u0018\u0011j�F�ːTH\u0014�\u001e;d� j�J\bfJN���:�\u0003�m]��Ə)�L0�̥˛����\u0011~��i�'Sb��6���կ&\u0005�\u0001z�\u001c\u0010�\u000f��Y\u0001KH\"\u0012W#�o\u00012�t�er���\u0013��J\t�R7�\u001f\u001c�e�\u001b�b�o=�ė\u0018\u0018�K��ey��\u0014�)���ٜ\u0001uy�rNr5�ͅiC�&��U�crn\u0007Ku�\\����Z�y��E\u001f��ɜ\u001ez�+����.ӕ�=�}���z\u001a\u0013Yy�C\u001a�A\u000bxFXސ��c\u000e��\u0016lb\u0007��\\��J�(�O�\b3�*׌�ہ\u000bW�o���!4�V���\u0006��ݍO)s�\fUVd\u0000)���V�\u0005�^8��ܜ���\u00022OH��=F���Է쯢n7�A��\n����qh�{;�\u001e�=\nm�\u00106����dC�(�\u001e��`d�$�Ʊ:�F�QH\u000b(0@z�\u001a/�$���_v�\u001f��u\u001ar;�P�\t\b�H�XF�\u000b\u000eYu�\u001e�N�\t\\'W�@�\u001c�F\f��3�\"\u0016a?�Yl�%{xzI���|s\u0011\u001d\u0003+;�N�ߞ8d\u001c�,����4���\bH����a�\u0002@��\u001e\u001e��\"f\u0001q*0 1\u0012}�Z�\u0018\u0001:tݼ�\u0016�������=��|�S2\u001e�8.|L��k��\u0006�\u0003d\u001e�i�y읧?��&f� ��݆��,���\u0012)���pe��N�\u001a;���`�\u0013���m��m��\u0000�XZ����D2�̉n�&���\u0004��\b(\u0006\u0011,�{ض�*���t�G�:\u0003��ز�#�.��?(�ҝ�I�H�y�\u0011��M�Z(.0�\u0014��\u0003�˱ii=g�\u0013y�j��3�\\�^/ʕ��C\b�������p�Bs�qA�9���*�:\"j\u0018�&6D\u0012.�m)�oR�B�䂰Wתsg.��S�+�v�r\u0019����պD��\u0002��A��\nȀ��\u0006k\u001f�b��\u001fI���}��x��\u001b\u001a�\u000b�\t��x���$���\u0001w�\u001c/�隅<��s��i�\u0010�}�\u0001�p�97^\u0010׾z\u0001�Du{s×1�3\b�~�\u001ePFo�v�����\u0016y��X�i��j��\u001e&r��\u0006\u000f\u0010�Y�YH���\u000b���\u000fٟ��$#-A𵪽\u0004�\b�t��8\"{\t@ݳ�SX���P�\"?�'f'��:\u0019���Q(��m+\u0004U}\u0018��Ɔ��Z�;>������\u0006�@�.���u����\u0004F�'�����\t�j{{)\u0002))�\u0006�X�P\u0011@v`��\u0011�k�BH컶��Ϝі�(�\u000b�1�|�)��i\u0001��'�b��1�D.y\r�\u0003G\u001f�u�jo\u001d��u�:����,M�\n�\\S.�2\u0010O������&u��p�K`r�ty\u0012(~qw=������2Ȭn��Jv0\u0003A�P[$�\u0016�m•�`\u0011��<\u0018\b����Au�\n܀��miF�,1p�5�ﮔĔ��Z�J�V@�\u0011�K�9휎2��8ƀD\u00118�R�葄��KQ\u0010\u0015��%?�<Ѭ�X�I���6�%�Hi���QpsɛƲl\u0004Ŕ�.>���\u001dm�\u001e�u�1y��蛖�R9\u0006y|\u0003�<\tlmMUZ[�\u000e���*ˑS2*Q��I�H`�����\u0007\u0016U�\u0011��AR�j,x�Wu��{��?��s�D�Aډ1����Rd\u000b��*�\u0003,\u0012&g�r2���s�\t��@���M�zp�E����Gӕ<���\u0018!�W��1c_ل\u0004J\f�\u0006�V�I�Ο}�5Qr��4纘ֶ�H�aJ��E-C�L�f�\"�0���X�\u0004�����K�T��#�ݑ�����Mg�5_��yz��)�����l���Z\u0018\u0011m-�F��\u0013J�я�9T���A��\n����d���N'�\b����gZR��.(��68\u0005\u0000&E���E8ޔTX��\u001b[��V����n\u0015��D��͎����^i��{\u0013[��%��7p���y��\u0017�\u0013�\u0015z�T\"���\"S\u001f��K�W�K�R�\f\u0017Py8�\u0013�T� �/��ջ�亳��\u001b�?\\3\t1C�\u0019�2<\u0003�.�\r��6��\u000e\u0015�{���ۍ:�J㚡N%P\u0002D�*���g^B�k�Р�Y20!�>��k�R?�wK���@\u001a�.�Pky�PS\u0007�B�ڷ�0��H�E.�L��\u0012�̀�J��&{��_W2��o����_�\u0019C\f\u0000�\r�ӹ�r��<��>�1\u0011�!Z���r�WJR`qw���\tW\u0012�\u000b�(+ǷvI��\r^��m?lN��\tc�<�\u001e\u0000�:��\u0017<�L��ЎHfLnW��a�y�8�\u0011�0=��āG�ޭC(|\u0007���|\u0003h�\b�W��/��q�m�\u0002%�y4L{p#���Ax�\u000b\u0004���b\u0003�\u0019\u0016���|�A�rQ�M������9�9' B�֓\u001em�>$a���V���t��_��v2��ΐ\t\u0001�\u0016\u0005�r*�\u0005��i�#E\u0005�!M��Q�P@\u0019sa�Uo�ZP��D`)��\u0019��b��6 \u0005챺G\u0001ـ�\u001e'�s�s��9Q\u0018ʤ���tkyIn���\\;����ʊ�L��j����+\r��\u0003o\u000f}��Ǵ�@�C2��!������A3h�|\b�5a�,��kOv�\u0012up�\u00063��roB���%��a�j5��\f\u001aF��gI\u0012�:Ŵ�\b��a�t\fZ\u0003�\"@̿�~�\u0015T$\u0012���P�G\u0018�M�V\u0011���>{�\"���]��-x\bF\u00116�1mߴ�|�=\u0016C�W�y\u0014\u0007�#\\��&\u0010��Y�R�\u0006S�\u0005���\r\u0013�\u001f�V� 4,�A-:��J��\u0017VH}I��v��a���k[���B\t�\u000b\u0018����H���!\"\u0018�\f�@C�{5b<�\f��w\u0010;��n�(���ƨ�\u000e\u0003\u0005h?�\u0015�A\u0015\r�����}��\u0019\\T0_�5��� �ݓ�\u0017�\u0005\u001a\u0006\n�Ԉ�j�wF\u0016�\u0000\u0014?d��ܘ���\u00144Ls�O>�\u0012�#Al����r�<��O�y�*�\r\u0007�$�\u0004�.ݏ(Ѭ��U-��e�\u0012`��2�t�W��0�\u0013�D\u0007ܘ9DwЗm�\u0001��}p��c���ћn �>:�\u0012\u0004�\u0000�f�Z�y]»K�0t��e��\u001f�a��-�{/\u0018\u0013\u001c\u000e̝_\u0005��b迯C�,`�5\u0010pR���cU\u0001��\t�YW!`�<�\u0011�R�S6(�\u0007[�*9�J�U\u001f�2%'ұ��\u0015Je%��O�\u0015��\r֖���m�km�c��Y7�F;3��e\u001b�\u001be����������E\u000bC{\u001b6��\u001a|�Qx\u000fMV\u001a��)�\u000etaE��\u00021\u0007���\u001b�xj�\u0018�;2���M�i\u0002ȋ\u001d�<��\f.�Z�\u0007ÿ1���?QZȖ\u0019�J�B�.��V?��3�o�K\u0004Ǖ\u000b�g��A�Ꮌ���M5P!\b`�q�\u0004\t�D\u0014谴�\u0006�SN��\\�\u0016[-�\u000b��y'��?x�^�\u0000���\u001d-ԛ\u001a�=�\u000e\u0011��)R/+�%�&\u001bp5_�\f����o�d\u0019��k\u0010X0��aD\u0005\u0015Ի�O.un�.c��W0�;��\u0001\u0007S��\u000f�O��\u0004Ud�\u0003E\u001b�A�\u000b@��L�fe9��Ӏ�I<)u(��O~~j~�#R�8\\��O\"\u0003�\tH!o�\t�7���Id� �v\u0013��\u000b<'e\u0016��!��̃~5���E�\u000fw�]�+-ֵ3��\u0006�.�c\u001f/S��'�yŸ�����1'\u0010��UԺ\u000f�\u001a��*�8��\u00154F_Z\u0015G \flj\t�S'\u001bf�i���z�q{\u0006*�d704N4�:A��>��PO�X�\u001dZv-��2m�)q�Md�2�W�}�:@S� O�a�E\u0004�|\u001d\u001d#\n���\u0018B𻈗\u000e7�\u0004�U\u001e��\u0010t\u000f{�\u001aY�MTJ��H�2�EZ��0*�L�R�ڶ�ڔ�u�\u001a\u0016(��\u000f`����0\u0015�\\�t5�B�[�/�\u001c=r�<��`�dД��\u0001�G�/.ם�]$ꅹ�WT���\u00001,�$.0s6���<�\u0000@\"\u001esk�!�r\"ARg'��Ĉ\u0017�YXl�;\u000bO����!\n�'�GyV�J\u001b��&f�\u001e\u0011�\u001aB\u0005�h��\b�-�M\u0003l�[�`�!�D�Y�5q\u001f3\u0007ax]�\u0004\u0017��-g$�+H����H\u00116�? �I�*H_`�d��\u0010�=��.1��v:�\u0018y��W�ᝡ*�A�I�t<\"�!rV%g�п`\f�(6�`�\u001c��*5�ή\u0010���R~i�?�Hm���\u0000���\u0013� �m�\tr9�AX�\u000bh���d\u0004�\u0014�^>�\u001c��5�X'}y�S\u0013��̽�ۻO�9�\u001f?\nï�/p^��_��Kp\u001eٴ\u0006D��Z\u0005N4$>�0�3�x���55�S1�\u0011� \u001a��S���!��>\u000bv�)�mG��`��d]Am\"�������\u0000͒��e�\u001az�w�|�P�d�\\�Q7쐧��uJ���~��\u0011r����'��K��aW��p��\u000f��z��\u0013�$\u001a\u0001$�\u0010&��\t~�G�O%�yP���q� ���|f���\u0006\u0001���9\t>��!���\nJ��\u00190�m.ZF��԰�\u0011�T\u001c�\u0007\f\bU���-��\u0016�h.\u001bW�\\�n��F�@b\t�H�Ӡ\u001dtw��#\u001c\u0018��L�yʲg.\u0004�z�Z�8�\u001a�S�]���wOѱ\u001a�ݶ��@��]+Ri!��\u0002�=�A��\u000b|���o\u001d�;'�\u0014\u0019�-\u0015�\u0005�E�+�\u0014ر��2�H%�d����t\u0002mfw9+qX�\b-^�}Q㬗@ٷ�\b\b���!�'\u001f\u001cI�H�������u3\u0016!+\u0004J��7�)�\nQ7j[\t��poq�\u0003;����\u0006�+�*���9�k���w/eY�c\u0011d��CQ6�*������\"T\u0003��\u0010c\u001ai\u0013�).���a�\r��Eg@�\u0014��yC\u0013 ݥ�S�DM���\u0019�\u001f�?F��:Uo��,X|\u0005t\u001c�g�WC!KQ\"�o#���s\u0010�`@/D��h\u0007�\t�\u0015�x��\u000f�\u001a��M���\u0013\u0014y\u0011+ס�q�R��`��Z\\��p�����\b:p�h��k�\u0005���^�e\u001a$�.�K�dX�\tJ@\u0006r�?91\tn�>>a��7)��.Ƿ��Nb�\u000bY5,(����َ�x\u001en�BL��~���m�2���\u0012BWo��\"=�AW�\u000b����b��A�lzn�!�~߅�?�YP�Ŧl��N)%)a_�~r�\u001bDK��@\u0011r�\u0018�戮\n�B�Ե����>N,Ǽ�\u0017��I�|w��@v\u000f�ʢ����[�����{@%\u0012�s|��7���v`$�$J'jG:\u001b�Sf�{�*\u0004x�h����m\u001f�*<�=!R�\u00152IFF\\S(�3�\u0010�˜��8�V|\u000e\n࿃Q�B�j0n�\u0012�q��O\fF\u000b��yz,�N��x\u0013�N-�d#�Ί\n\u000f!��0\u0015�F��\u000b?�h4 �^�c#\u0017��� )�����M5��#��\u0017�o\u0018\u0019(7Qz�BjqS\bŠU�\b\u0003ug�\u0016��3��*\u001b�s5�\n0\u0015\u0001&\u0003J��!I;�8\u0015�m��-��GZy�\u000b�\u001c�&�m\u001e$'kJ)��\t�\u001f�I�\u000bN;�A6�\u000b����b�ܷ�Z\u0013�{X�ӱ\r�ځ�\u0012%����\u00143�\u0014_\u0019o�zb\u001b\u0014$�7$I�*W%�\u0014\u0014�6�7I���Ty�k�%�c\u0004���9ʖx����7\t��ނ��D��!ֽ�>j���v�qv7���c\u0016��b}0�\u0012\u000e��J\u0002�\u0018�m��\u0005r�-��\f�\u001b��+�C}gք�T����\fG>�F�\u00120�����Y©���X ���0�U�\u0003��5�\\a0���\u001f�Evy�TH�~�7\u0004\r�0�7c&r9-��J�V��Z��k\u000e�@�A�-�����Q�\t�\u00189@M-\u001f4\u0015�ј\u0019\n��kXH�V��̣A�A��7���g6��C-�mׂ�j�was�A=Q\n�I�@�*�7�A\u001c�\u000b����j�rt�H\u001d�\b�1�b�cݪU�^�0\u0006\r�{1J�'�з����?[�^�R\u001a�B_�ϼ\u000e[��J]�\fWiᷫ�f'Oĉ�qEjvwn\u0015����\u0010/u����Rj�i�wOe\n�P���h�`4m�-e/�jj�Z/��lt����5x\u0012�!���\n�>�\u0007\b+ٔ\u001e���2\u0010�ָBa�~�1\f\\��\u001c���P}�87Q�&^Z\u0012����\u0015&'c\u001a\u0001\u0004�\"1�;!͍%�n�\u0017������Q��4GD0�)܂�dKM\u0019�&�\u0001}�?��`H\u0014���d\u001d<��K1?�2 k��c�\u0017/&J٥9�\u000b\u001c��\u0012\r�I/�A-�\u000b̀��c��d��3UY��p��<���)U\u001a�'\u0003�Q���c�_�@�p���\u0017Y���\u001e>�|��\\̛6���vo�c\u0019����ю��w��u˼���\u0005�c\u0004t By��S�ڑV��'�)Y\f>Z�\u001c���ѐ�9\u0004\t�4�3\u000e\u0015=\u0017�lw��\u0016�l�&}d_O�E�\u001aF����ۼɴ�0Q\u0018��m�\u001c�\\��\u001f�(K.Yet��=�+9*��;m���\u001bxxE\u0001��e6\u0007�\u000eڴ�irr���@�\u0011\u001f��>�\u001e{��c�3��9H$\u001c-\u0010~��x�m��aD?�|\u0003m�1�\u0018����TV�u\u0000�YGU�\u0011���V`\u001dM�(T�\u0019��\u0000\u0019��|t�\u0003��\u0018~n/64kJB���85\fg�\u001d��M��>)aB��\u00057?�~%ɏ�r9��Z~����5^���ϸ\u0019Ѡo�H���Bx�0R۔ɭ�Y�*w�\r!X+�J�ي\u0014e��1\"�8J�B%\u001c�.�C��?�������5d�j\u0006�\u001eJr�S\u0002��ݵ�\u0010�y������J��f5\u0003��n\u0002&��p����\u000b��\u001a�\u001cc;��go눂0\u0014keS@y5:U\n`����AL�\u000b���c���)Ȟ^���)\u001e�b(A!\u0003�\u001f�\u0002FE�n@����K\t�ދa��4m��\r�;\u0000�5r�dSmG#��>%��4m&�B\u0001�\f0��ʢ�%��9�~��z�� �S��l\u0019\u0017�!\u001c�`�\t�h\u0011\u0013w����W�EϘ�N�\u001b_%C�`\u001d�g뗒h�'�b�\u0010�:�\u0012\u0017�F]Zy��N�$#\"�q7��A�����\u0017�3�Kh\u0018���M��\u0019�3;�\u0006�'�m-��gv��?7\"\b��3�gU7\u0016�jݵ�\u001f\u0004\u0010\u0010�Ϟ7\b9�}�+9�D>òO����?<μ�x�$=\u0014w�`ڝ����\u001ek�E\f�w��:��\t���t��);p\u0017|v�7����<�#(���s�\b�*b��\u0006��ﻉ\u0007A\u0006�G\u0010_�8݆\u0005c.R�\u001do\"A���P{����E-�v�'�5\ty�\u0018\"TS#\u00063_���\u001a��\u001b�S�s���\u0001��o�HbX���2��e�\u001c���,�r\u0016���:�c�|�����W TW�oE9)=�&YW���}��*������ז}�ۇ�8\u0004P�Δ�\u001e&re��F�_o�2�\u0015\u000b�\u000fx�\u0016H�R� 1\u0015Bg��\u001f8�@\u001fP�\u00066,x}@ق f�\"\u000b�~�S���XcR\u0019P�p�\u000f朋L\n�Z$3�c��j4�Dy�r�!y�h�u(�����\u001f%\u0004�.oIdH�\u0001����x�*�A��\fD��|�2�S�?�r�sa:l�),oC\n��*\u0001gdh��!\r\t�I�$\u0000�Ҿ�̧-\u0015�,\u000b����X�On�Q�.NU �fk(󱺄���*T�VO���\u0002�$\n��[h3hv\u0002٧Y\u0005C�=�S2��@]m~�\u0010�m5G\u000fU���)��4dt�����EO�\\\u0002�5B�p�;\u000b\u001bΛ\u0016�3��j��UjԸLz&k���L\f���>L�[n1����R�\\�E��3\u0018+�U*�\u00104w�PX�J\n���$\np�K�~\u001f'�T�z+��+���: J��$\u0001u��#�Zf�?�/\t\u0004��7��QÃ�� \tP�wչrl��\"E\u0001��\u0016?��2�\u001f*��U,N��V\u0003��A�?`��5��\u0004������c�+3\u0007�Djn;\n�6�t>\u0015`3�;��\u0000���4\"u�û�,N�(�����\u0014[\u0013\u0004�ü\u0017��l��|�F�\u0018Ld��ު��\u0006\u001d�n�P\u0019�nj>\rv��D�\u001d�a��er��� EX�����5\u0012{��$�����O06J\u0016>�����ұ���$+ΎBϪ�\u0011�UP\u001b��\u00181f\u001au\u000b�\r\u0010�[�mͶ*�$x\u001f���y!ԣA\u001b�\fl��ۺpХ(\u0016�A]��dctAo`\"�!X��:��\"���]���\u0001�=��\u001c�\u0010���\u0017�ؑ�\u0011��>�|覊���h�OtC���'�o|���}��o_Ś�ODh��-��|�/\u0015�\u0004��Qo�2���\n���б�\u0011��O;h/s\u001c�}�H��:��uP\\]��>�Ѫ�/\u0011\\��y|bq]�|\b�0ay,k\u0001\u0011���)d\u0015\u0001hZ��c���\u0014̐\u001e\u001d�\r�G��E�*�&�\u0019u�ц6��y��a�{5��m����x�'�G��\u0001φcy㌲6����)D��\u0016\\�\b\u000e�!AǃG�1�L�\f$�ׇ(�Q�C�A\u0015�\f����Ȯ\u0011Y���c\u001b\u0003��Qq��j}m��K�\u0010U\r��\u0011��+3!��\u0001�\u001c�H�*T�S\u0000\u0015\u001f��\u0019\u0016~��}��To\u001dF�HZ\u0010K�\u0005��\u001dLd|��;���\u000f�4�\u0018�\u001f����쮫9~3b��ԝm���\u0005��xPJO�\u000e<�+2�\n^�\u000br1\u000bD\u0010��m�\u0002o,˄\u0017�G�_��f�{{���Ң ���'�b����r�I���k�@�?z�\u0001�x�\u0018��v\")��\b~�\u001d�\u0004\u0014gT`4��o�GXeޫ���Y�C\u0002,E,\u0015�S��ˆNq;L�U6�\u000f�\u0013\u001a,�&l�8p1�������#��Z=��ղ�\n\u0018O�R���4/�*��M�\r\u001e<�\f�(/�Cj� �ltWl�\u001dڀT��\u0010\u0005E\r�_q��\u0000�ߜc�ꋤ�VE�\u0011@�\u0010�ְ�\u001al�\u001fJ�Z��y���\u0016k�Ǎ����u���㄂%�>�\u000e�����\r��p�f�\u000b�\f�3�y\u001f\u0004D<�\u001bњ\u001a���m\u000b\u001f2a\b��F��R��ł(�ٴ�v\u0000�\u001f\u0006�^U�\f��$>�A2�\f���Ɗ.�c��i�L\u001b\u0011�<\u000b8\u0000\"��\f�]�dXYzm\u001c�߅�\f�j��|�bVQS���B�(q\u0005|L�X\u0011\u001dĶ>巄\u000eh���C\\Ϸ�r��^\u001e@�~mwV׹\r�~�\u0013���k�\t}n<��c���EK�\u0001o%ٿgrIor�Z����@�hc�\u0011��RE\u0007-��>�eÖ��2'�-s��'�\r��ঞ��R`��^G\u0003��P1�7����\f��\u001a������e�H܂\u0016��*H\u000f{��nN�P�� gh�+�\u001d�-�-fW��T�G�\"�g�%\u0006\u001d>n����\u0003�&\u00009�:xX\u0010\u0013�=#\u0012���*[�5�أ�i$�Y�P����\u0019\u001e�F0���=��\"�'QN����x\u001c�\u0003+�\u001c?=\u0018�]6�\r�o\u0006\n����\u0003r���%��y����� �j��U\f\t�B\u0016�u۲\u0012x\r\r+��\u000ea\u0003����#y���\u0017\t&1=(�ޮ �'�AɁ\fЀ�L�`jq\n�\u000b�\tU�)۠�5�\f�����6�q$�W�%�Woo6\\�ނ��>D�J�2�#ȳO���m\u001e��wd�T�WT\u0007\b+)�;��3�|�\u000e.����v\u0004\u0013ק�\u0015�\u001fX����u8ɺ�xD\u001b����\b D�����\u0001P\u0018\u001fy�\u000e�[06.OD�d\u0004����\u000b\n囖P_C:��0��H��\u0004:�\u0010�{r8\u0010D\u001dy�\u001a�\u0019���I�e���\u0011\fwW��FR$�>���-\u0006+o{M�j��L76ϗ�|��\u001d��\u0015�=�#IK�w�X�눦��N*x�)��j�O��B�)Q�/0��+��\u0016<<%?��4?�I��7�n\f��\bj\u001d��,��<��t�%i#$�\u0005iq�E(k\u001d���� \u0010���GDW��bxϢ?0S��5�\u0000s\u0004��ު�C%�����f�\u0012\u0016�\u00045:������}7\u0014��cbb\u0003���Mn�P�\u000b\u0006\u0003��c�moIѷ\u0001��}�Kh���\u001d\f���F^�Z�a�Q}eX�e�\u0002P\u001e.$\u0011a&�Wup��]�����\r����75cܓ��~�$����dK�6�WX+`\u0007�.�I\u001a���\u0000�|�T�\f|Y\u000e�����my\u0017��k \u0003N����X�0��\u0003�L\b��1\rO�\u001f��\u0012�}yJ\u000eάE����\t��2��)�v�\u000e\u001a��B��\u0013� �$�T`��rR\u0012#}��c�ªn��OS�@\u0004-�߀\u0000�����\u0011\u0018��a�d�AW�\f���Ƅ���F�\n�f�pl՝���\u0013�ǒ eT��^��!&��LmLS}\u0012�BG<\u001bA\u0011f!��i�E�\u0012o\u0010�o�\u001a?�KP���\u0005O,�9�>\u0011�)`j1\u0006\u0005\r\u0010\u0003�0\u0005�@�\u0013�����\u0006�$�����\u0012�IELT\u0011��)�?�TL�H�$���\f\u0004V��H���|� �/��c鷏���j�UF�ע�iN+\u0003䂦\u0012��\u0001�*�\u0015����s�\u001d����(4�\u0012�wk?�{bV6����ީ��t�!����&�B{�\u00152!��[ਲ��H��M�i\"\u0016�h�\"��k����{G�ݟ<�c�ew֮O��GD��\u001d�X�P\u0007\u0004oR9�������Ҙ՞2�L\u0011)@�.�RS\t���q�\u0016\u0004\u001f��n\u0018.�y\u001b���&��$iX�*\u001a#�AP�\r\f���p��a��:�?Q���\u0013�bI��j҅���\u0000���-�����&3�%�*�����Frl�:F��\rx�Y����q!�x\r�\n\u0005�����~ǥt���\u0018⍽PmQP5>�o\u0005�oX\u001c\u0017�\u0005�����r�{\u001b��Mb\u0016S��\u0019\u0000*[p�T6�c-�����ͥ9p�k��Y�q��A\u00110���s��Y���\u0013xU5sӃ[ט\u0005�9�.5M>c��10�̆0.[�Q'���(\u0018g\\���!�E1��Rw=7U�%Ű�H�XKG������|\u0005�\u001b�^���P�\u0018̝U\u001d\u0011]YĖ\u0003�a�\b�\u001b'�\r\u0003�8Ƴ~\b\u0012��C~4Ơ筏\u000b��&�\u0017nG�$)��:����\u001bg�\n;Y�>\u001c+��'z@\"������A@�\r ���eE��c۸e?��O��뻁C\"���,�0B�\u0014�=&~L;^����\u001b\u000e\u0004��/��\u0011�K�\n-K)�SGp��,Q��ҁ���H�l�x\u0013\\�3\u0017�d����I鳀\u0006\n\u0000$E;�.G���b��T!�|\"�W\t�:��$UR��>\rt9\u0004\u001b�H�>'m��y t\u0007�p�V����\u001aס��\u0010�\u0017H�)J��RjjP�U��\u0003�\u0017�m�\u0013\u0014\tmr؀(\u0017��#�\u0012�H~��x\u0001�Z�\u0010\u00133M�97C3�\u0006�T��V.�\u0015��Y�\u001dMu���؆\u0000^����ɀ�\u0019򺕍HUgl����LYԙ��i��H�7�����͚�난,��\u0015���\u0019\u001c3��Y���=ӒF��\u00162W�z\u0016\u001ax���A\r4��|��\u0007\u0006�:�?\u0006\"nQr�^0h�����\u000bq��\u0007c �\t�VH���Z���un�:-9�a�\u001c\u0018��^%8��a�ܤ\u0019,��i�`W\n�\u0016\u0005z�̿�9�\u0010�\\�\u001ac��>̣)d}8�/�~|�Ӕ��o=�u�f��J�\u001d�P�r��\u0015�6�\b�G\\�Һ��\u0012\u0001�\u0017c\u001c\u0006�\"r]+W�\u0013\u0004%K��;I\u0001�n\u000fʦ�3\u0003}�\u0001�Y\n$6�v�@��6f|\u0011v\u0010����k~-��\u0018��C=�����(�-�S�i\t\u00038�\u000f�]\u001a��\r�+����\\P��L0:$J�8�r`a�k�D�F���.\\�\f\u0016�\u001e&�n����Dt���#��)����\u0001�/�\u0001t�\u001b\u0010\u0006:2��\u0013���\u0011��p�(x�$�\t��f\u001c��8\u0000`��P�\u0005$m�~ʤ��lA�V���x�e��\u001eǍ�\u0006?�r�\u0002��k�/ί_R��تT�����\u0014Z�\u000b\u0001\u000b\u0013QU\u0000@M9�C~���l\u0010\u001b�g\u0011�XyvFU�'/|Ā�U\"fx����j�w/���\u0014)g��*�6�A+�\rH��L�R�1=�\u001a�;��D\f�aν6:�u\u001b\"a8#k\u0016�\nb#mR6Z��}V\u001d>\u001a��:\\FK;S\u0006\u0000�����@\f/;�\u0019�\u0012\u000b��\u0016����v\u0004�����}\u000f+�u� �5\u0012�#�nYH\u000b@Z\u0001�<�n��r|�h\u0015�\u0001\u0015c��\b�����\u000fQ��m�8��?���O=���N\u0018��*k�\u0004�#г{\u001e�k�D�-�|H�8��&�R.�\u000b�y��\"L��G��\f!O�jƒ�xe�0h���\u0000\"�sa�#rL,���Ά�:n�͔��*\u000f�\u001e��#���,D\u001a\u001b�\u0018�����8X�\u0014؀�\u000f���\"F=��\u0010�\u001f�hO��\b\b~�\u000f�K[\t/��]٬��\u0001�A9�\r\\���U'�\u0007��\fO\"���\f@����A�V9�9�=j\u0015'U>�6���G:\nQP��\\32�r���=4�N�*\u0011�PO��\n�,��UhW�/u%�<�\u0019���ܞ0�o2��чńt��Ꮆ�\u0013�\u0014\u001c$���\u0019\u0003\u0012�A���;�����k�~\u001f[��\u001d\u000eY��V\fu\tR�qo�U�y���Ja6\rV]x�d-�YC����#CUE�|��Z�m�d��4\f-�ވA)���\"BP���n,���G�v[v��;'�g#�)0��\u0010\f\u001b��!�[eh��&E\u000e��\u001e��\u0011�PN��c��y�y�%�ɬJ5�z���Ѣ��\u000ekK �j�X��\u0000Lm]`�'`\u0000�2Ehm��[\u0019�᪣A:�\rp���b\fP�9r\u001b��A��`�ߘ�ly\u000er� \u001eFҳ&���n\u0015FxC��\u0003\u0005\n5J@�W��¡rJ��\u00035�B��<�\u000e�P>��)R��Y%/\u000e����\u001di]���VZ�?C�\u0002��>:����(H\u0001h�%�=E�OC�ۓ�:������B3�\u000e>Z�:E>\u0019P\u001e# ��e('�=�3��_0�\u001a(�J�9g�r�\u000b�~��+lc��~�\bR�}�Y\u0013��m�0�[F\u001d_�e\r��\u0015\u001f�S��i�6\u000fq\u001f~���7r��@O/1�d��@Ȼ�]��\u0010���?�\u000b�dYMl��\u0004��b���h�i��`�7`Y�0��(�X\u0002\u0002�+\u0013��3�*4I��ʟ\u0001���Z��:\u0000�b��s�]���A=�\r����U\u0017��ku\u001dI�\u001f�\u0001\u0011�DV�\u0001����\u0005\bm\u000b��~��U��j�,A��a�ڃX�D#\u000bz4�wm&\u0013�Ʀ0�3���H\\��\u0001\u0010�\u001d�M��\u000bY�˰c����=>�v$�[\u0011�,,!�Ch�]=\\*�.�F\u0004��\u0005�(G��Do\u0001����\u000f~!�q��g��c��\u0016�� �=��\u000bO֢��O�R\nI�M\u0010h,�!;��������\u000b\u0017�pq����Py\n��}N\u001b\u0001t��|�P͒�H�68iLz�\u001bwm�K,Ĝ�;*���\b骅ל���Q���1DQ-�jg/\u001al��.\t�Ջ�B1��Ƴ��3�}قs٪\u0016���\\�����N�\u0001$@!mO^�]�q+\u0006��\r#�Ko壣A>�\r����b[�.���͘To�m�~��\u0012?�4\u0014m�\u0015�a��n���\f.�VS��HC\u001b�d��-\u0006�\u0016�\tp�E=H��) p��&�7\u0002��4\u001fǥ����J\b\\V0\u0018��sQS�ѱ�\u0010�|��!\u0019�\u000bϴ\u0016lv�r�� O)���R\u0007\u0003�(\u001b �-O\u000f��hp��0ZC>OM�o9٠�S%�\u000b�\u001b�\u001a\f���\u0003w�{Ȳk\"2w\u0014�c9f�\u0017󖱢ێ��T�~1��l�!��;\u0004X\u0002QTV������9�s[�\\]��o�9��\u0018�+�>\"��\\\u000e\u0019�{�k5\u001bG�\u001e�᳐����C7�.�\f��^*\u0015�J�(�\u0018�v����%��H�e�] i\u000b\to��b�I�\u0019?M�H�\u0005s�U١�A:�\r����V!��]��\u0007�\u0012�ƼRu��\u0017�\u001e�y�kk٘�hc�{\u0019ԶS���-�p�`V��W{�mʱt\u0004���)�V�\"ೡ����>�\u0012c��\u000f�},TYI|�\ng���\u001c�.uU\u0017 �{��gZ~k'�|<]�buM\n]n��\"�I��,ic�@g\u0015}���Utt3\u000b�����+�-�bo47����O��|�p�,W�\\\u0011���\u0017@�=�`��\t\u000e%\u0002�5�����K�I��-$�$�IZ!QA2�� Vp��:��0j�����C\u0001|p�J.,6�\u0004��b��\u0011=q\u0005S<���$�:�$$��\u0006�\u0019�\u0012o���l��;φ�ò�꤬'\u0005��m�\u001d�epS\b�ε��\u001f���A@�\r����cc�Σo�\n֯H�u4�����3�yFUV�}-��\u000f�V���%6 %;�؛�\u001aK�\u0016ib[��\u001d�~)��w�)��n�I���o�_��Kb�}�����~h�T�\u001cdZ\rd��\u0007�T��\u0011�:$�ߕ��\t�\u0015md��\u0006.��6�P ȃW��\u001d!�Mf����t�;�U�կ�0g�m��.�ϟ�\r���{���7(�%񨬃K7�\\\u0014�\u001a0�#��6>ŕE�ձ\u0013zz�Ȣ�\u0006c4?\bb*Q'7yb)��F��H\u0016��^10̛$9�\u0018j��l�!��?��\u00130�\r�8���z/H�f�#%�S~~}f�r�b>��#�FO��7�@-�lG�KL�!P�Y\u0019��s�\u0003v|�QI���A5�\rԀ��b�T}��\u0012<�J�\u0010\u000f#�4S�7^�p雫�h��L>�ECmlW�����`��\u000f����\"-VaF@|r���>{ϊJ������`w��n�l�\u0007\u0013�XGSg\u001f�Hl��R?M ����\u0002�_�\u001d��=�Pn)4�7��y����\u001a1��͖H\u000f\bj�\tV!���\u000b\u0014U���_S\u0010��ԯw^tj�$�\u001bcI��A�\u0005�\\ş_ނ\u0003=�Y+�M��1\u0010\u001a_\u0007�Z��q�u���\u0019��\u000b��Z\"�%�\u0004���\u0003Y9���uy}b&����\u0010��7��\\��uM�X-�,��L��2g�q�\u0013g��v\t3�Y�H��\u0018�`�����H���e�urv�7.#�邢)\u001ah���A=�\r���e�������RU=�_H�Ggp��4���$��\u000e\u0003\u000e�[ҶTJ�����|�2;��rHk�u����h�\u001c�f2���l�§��N^lv%�0U�\u000e�`Ή\u001f\u0002X�P�\"��������\u000e\u0010��*�0�v5��\n���~�a2ox��JY�v\u001a�m\u0002�+�w\u0016�/\u001e-�\ta;X��n��p�\n!>\u001d�D&G�:\u001c&�\u001f�l��K�Ē�\u0007\tS���\u000b\u0011i\f�Jc���;��v�C�'�\tk����}�]�p2�{&̖�*�����[\u0016�����`_�\\�V俴��=���/̌�\u001bk��.v�6a��\u0011v\u0000|��������w\u0010�B\r�*�`R\u0001o.�;d�DT��\u001a%�|�e�?Mk�ֽ�O�������Yg�ʝ�b����vwo8��g$A\u0018ڜ�����gJ_$1J�g\u0004�7�8S\u0003\u0006��$�u9�z��NQ�n\u0013\u0006�\u0001�c� ��N��tf�\u0001��@�v3���BU�%�A6�\u000e\u0010���l�3�Ұ���^�\u0015�O\u0015\u0012�6\\1!u���|�02����k�%1\u0013l.�e�o����v�-�L\u001c$�z`�6�\u0002�0Ic#5�V}��bЫݹ�B(��k˃o\u0004��\u0000�v���D֘�\u0018.�p�6�\u000be�]\b[{�����H\u0004�zt+��\u0003�-�F{�\u0007@�e&\u0002���\u000fwe� f�\u0018=�F�J��Y.)��F���Sþ_օ\u001e'�������p_}�h�\u001a�f��M��\u001e\r\r\t�%z�A9�ĺ���l�y����m�3�s�a?�Suu��m�/����\u001f/`7�.p7Q&�*�H��*�Y��:U\u0017&\u0004>W[��\u0017��QfU)�������>7X���h��!�A��\u000e$���a�S\u0000��F�\u0010�\u000b\r\tw6gG\u0011[�r%�K�4\u000b��Ij4�~��\u001b�\u0017\b��\u0002�ɫ֡\u0017�,\u0002}�5;3��ҕ�d$�X&:�1�)\u000bS�U\u0016\u0005q\u0016~��@*Y)�\u000f\u0016�c\u0005�;6�j^X��@k3�ĀE�d\u000e���\u000e?p��\n1�u��\u001f.�M�Q�\u001f�\u0011\u001c��R'u\\��*�<\u0007O\u0002�x\u0017WqG��L�a���\u000b\u0011\rnˬ\bW�{=\u001b��ʔ@\u001005�ڒ���>`Q���Y�t�z����\u0019�\u0006\u0002!M\u0011~3\u0016�̚$\u001e�c��\u0006�UY��G���'Ss9?�*����11/\u0013d\u0014�<�Mp\t/�\u000f\u000faԣ\u0005;��<\u0004;��\u0002�/v�<�{y�Ae-Nn��\"9p&V��%B���\u001b�� У@��6�䤼��c�I\\4�Ig#�(4?�?\u001a��X��x\u0017h�\t�F���{\u0013����I�#\u0007Q\u0019�(\r��\u0004B�MǮ��#�!�Ak�\u000e8��l�p����yޮ�\u0018�)�=K�\u0001���_��/�W<�H.'+E\u0016\u001f�Α�c(T5���\u001e-��7h\u0002�\byq9���\u001fr\u0000m�\r���d;��\f��X�n�q���\u000f\rܰ}\u0015��������\u0007�_�5��j2���-;Fj��6M����\\.��f(�qؚ�y\u001a\u0018�)g�Vb\u0010^�T\t(|xF���\t�\u0014�!�IZo#\u0005&��\u0004��\b�?�\u0004z��l.�og�\u001aZ���&8��D�Y��lj�\u001bHh�D�����[,\t\"�t�\"�Y�\u0011\u0004p��A#�\u000eL��L���0�E\u0016���\r�.\u000b�3������\u000f��x\f�%�k9�*EV��q�ZvM<;��+S��}B)\u0018c^�p?$I>�3�\u001a\u0001#\u0012JT�|�N&7�W\u0014\u001e�\"9u�\nÌ��\u001d�d����fr$��ˏ�>��V��{��X�m��E\u0010YŞ�D�3[�����U��\u0019���+\u0010�拒٬�@c����\u000bG dv�&��\u0003E�\u0001���b[\u0014�F\u0000\f�\u000b�i��lE�z6��Ҭ\u0010�q���\u0014\u0010�9\u0017�\u0015�C B�\u0018xb�\u001b~��\f_~\u001a��@\u0003�\u001e�O�u��\u0011�\u001f�3�-�Wl��i����m6t�a�\u000e]qӯ\f\u001e��I��0+\u000ec/i\u001f8R�{\u0003�\u0012\r}��\u0001���BءEԪ9�'-ͦ�ji��Y,\u0001�\r\u00068ƪf֝9/�I`.� \u0013�\u000b�n�y\u001aJ�\t��!�\u001a�)�*��A�k{-\u0017�d�\u0019�y�]�t؈}\u000b�4Α���L=�hB=�\u0007�\u0019���(�\u0014���i&\u0013>�Êڸҷ\u0017�d^�iT,\u001bCs�D\"�G�����DJ��S���\"ж��>'�>\u0011A���A\"�\u000et��Ms6g۞�\u000f6��=�J\b�V;��˶��\u001aۛG�U`��H4\u0011��L�nk��\rs���u���*�F�-���?�r#\u0017(��\bZ��\u001dg]\u0018� ���\u0000��aݑ�x\u0014�\u001a���G��F5D9�Ļs�-��T�?�\u001f\u0001C\u0005|Y6��w�\u0017X�\u001a��v{\b\u001f\u001f��w\u0007��;\u00197<��L�J�Z�ƨ<�8�Dj%��Z��\u001e<}W\u000b~\u001eA��\u000f9�?�Q�𷩴�0�{�\u0003�mwX^��S��!��x~X\u0018n��Z1\u000b�\u0019����\r��\u001e\u0002d��yڟ�1��\u0006�Iaغ\u0017X|\f��e\u001c8S\u0012J�\u0014��)V�G�>�y��\u0006�t2$���A\"�\u000e���L�\u000f��T\u0012�e�\u001ay���\u0015�B��.�\u001b\rE\u0001�B�C�&�B��\u0012�l��pɣk�\tm�\u0018`�N�\u0001�ʟ�\u001d�SȔ�A�1\"@�w\u001c�\u0001]�KF\nN[;��\u0005Ģ��1\"��5�!t�\fp].\u0003�\u0010���FOf�u����L�~�o8D\u0010*�a�9oչ��\t9\u0016�\u0006�ȷQH__\u0010�ko��J�H�q��V����-\u000eỘ�ߒ��\u0007�7 � o�J\bxB�Ŏ[)�i2\u000bq�\u001a��O\r��$�[\u0016�NJ����������f]��E�w�~\u001f��.\u0014\r�2��\u0016��A�_�畎\u0007,�dc\u0004�a��\u000e�\t'��\u00131\u0014?��#\t�#|Ч��A*�\u000e���Mb���\"\u000bT݉tr˪�E�|��(8\"���-x\u0016�A\u0007Z\f��+\u0006K�\u0013��\u0014\u0006QV����M��?��f���슐�Mn�\u0010��gX$�Z��%�j�b%\u0017�/j��+!#�Z:\u0001�%K���\u0007��B�צ���Ìﳒ�X�$C\f>\u0012S�ւ����C�2̀��_*u�yN���9�uw�0R�!�\u0016��\u0005\u0016\u0010\u0005�m9�\u001f1\b�DI{��V��\"�#��\u0003��+\u0003�@� �]r�|��l\u000ecS�[Thf\"���� ��1\u0013\"?�*\u001eA�����YI���Y\u0013_\u001c�2�6�pć[\u0006\"qU�]�f͊z\u0007؆�k���\u0000\t~s\u001b�\u0016��\u001e\rBn5�A(�\u000e���L��t�|�ݹ3���\t��F�i�졘~�(2��vc �J�7�^\u000f��}i\u0018�X�K�®�Ju-��o�{]\u0000�`\u0002{��k���)��Sƅ�H�\u0001�\u0012����p\u001c�Z�3��\u0011)\u001981\u0005G:!eg\f\u0001��\"��2SBå�c�\u0001��JK��=7�j��\n\u0015��\u0007=��U\ri&��*N�\u0011�]j-,��\u0019\u0003b<�Ҭ��x���{\u0000\n޳.��L�7�[-\u00141��\u001a�|�\nQ�|�\f��F���o��\u0016l\u001e1�T���FC\u000e������-�\u0011v�՘cא*�j�Wـ\u000b����,�]b\u000f�cFҖucPG�?��\u0006@�>+���٦�A{�\u000eĀ�L�2E�}x\u0013�dPk*�_P-\u001d^j9r�s�Pc��O\u000bJ��\u001b��L�-����)wL���p\u001b\fTi�9,��\t��\u001e2qEP\u0004�\r9�s\u00067}\u0013��;�`�\"�y�7���\u000e�T�YF\u0013\u0003�(P(9��b\f�}�-�\u0007`��U\u001a0\u0017k(2\u001e�?ti;�/�\u0014������k�{�-�\r��\u001f\u001f��\t駉\f��@\u0018�Ү��R遯��\u0005¬oT���D��<���?@B����#q��T�Ϥ�\"H�^`ku\\\u00197O����\u0017��\u0007��9�,�%.n���Vp�x��=yt*xE\u001bZ\u000f\u0007�)�~L�{�\"z��w\u0017_�l��?�~��ՇM�T\u0011��9!��h;{�\u0006&RJ���\u001a��P��o\b�z\u001e\u001a�\u0017\u0016��q�p8��q�#�yZ)E6\u0006�\f~W�On�\u0003w�qG\u0006��\u0006�+�7�\r���\r�q\u001d#>�A+�\u000e؀�L�\u00078ܰP�U��;�Y����g�[�l�\u0011R�ιΈ�,�1�;�����-�@\u001d��\u00036���T�%�rE�\\��w����x\u000bp��I\u0002XY����ӟ>\t�\u001e�\u0004\u001c�2rPWh�f����Ҏ�\u0016\u001c��>���B�\u001b�8m�\t\u0011p��v\u0005��,!5�.Z�G�2$���::�\u0007���2H0�}\u0005LI+��\u001a�ξ���Re��%&\u0016\u0007��\u001d`�GO\r0 �\u000f�VY��\u0006ț\u0013f��ނV\u0018r�ԏ��c�,�ݮEtG2��a\u0004�'���Ҍ�6U5kO�\b�c!l���\t\u001c6ŁR��?t���̀�|�\u0013P�P��t4q��\u0014���𙵤�)v�A*�\u000e���\fWa�\u001d�Y����zi*��\u001d��9�aO\tX��[]\u000b�<�\f�,�<�\u001ao��D���\u000b\\G3A;��A�2+�\u0000A�ä�� �چ�\f3�uj=�\u0007j:����7���\u0016�����\"�\u0004Ża�R\u001b�^�4�\u001f�\fC^T@��\u00164�q�\u000e�ś!�O\u0006��\u0005$L�w?��Auv�k0���]\u0005@4��F��J~R��I�5����?�\u000fT�Z����\b6U�\u0002,�>��\u0018\u0007},(�a\u000b��/�����p��3���ק����*Vn�{\u0006�ѯԕe\u0001*\u0017�\u001f�,�T���`>N\u0002=m�'�\u001e�<�K\u0012��\u0007�H������\u001cw��)����=�}.Cc�A&�\u000f\u0000���\fI��1\\\u0010�%�\bc��:�'�k֟43-�s\u001f�_�@s\u001c*沨�E8#�x�\u0006��|�0V}�D��\u0003fV��'ƞ|��h�\\\u0001��&�La�,��\u001f��\u0019\u0019�9g��%@]n������;ay�z�\u0000\b���o�N���7eln�씳ʃ���\u00147A,j��3&u�)p�d�\\\u0017��f���6�z:\u001fi�\u0010��\u001dU�L�CV��5��k\bWǩ�-�\\���!\u000f����\u0017&�~߻'�Y�0!V��\u0010t���\u0017ٴ�D�\u001f\u001d�\u0005٥�`�\u0004��4\u0018�\u001a�\t�l>���iHl�=��\u0014�.\u0011h� hC��F�qM�B\u0000)3�Q�;����ӓ�k����B�1�s��\u0019'k\u0019�)\tH��� �4jʋZd��4\u0006�}x\u0005�FK���5�C�/\u0017�򎣮؜��\t~ǭ�/��f���S�\u001f\u0019��M-\u0000�б�J�\u000fU>��#V��X�B^�\u000f(���z\u001f�/�1'?\"[���kS���ʫ4\\Նg�~�#\u0018\u0018��V�>�\n�\b�\u001f���z�>�p����ሢ���Hc]�_I�d\u0013��+�J7e5=�*��wՓ\u0013�o��\u0005�\u0013>��T_\u000eu��V\u0003\u000e`5-��_���ۊ�P��c�t\u0015\\8\fѡ\u0019A�^�\u001cۈR\"�6g\u000fe\u001d��h}\u0015L��ݑ7��\u000e\u0017�lH葦��.��\"���K\u000bb*�m0\u0011r��+\u001b�G9���@\nt�V�?o�q@��?3�⑫�\u000b��$_�\u0000Kp\u000e�!�S�\u0007`]��D+�R��d�忀b��DYC�\u0006\nh�[L\n;�$ \u0000���(4�5�B~\"{�����jU\u0000�\u0016��Nk�L;�T_V\u001aMI�\u0013\u001a���X\u0002�>�/�Et�ny�\u0013�2f'�S\u0010PG�4��\b�XdM�uy�Dl\u000e�8ya{\u001ak.�\u001b+n=��\u0010\u0016�?� 7�5b\u00193!��n������������\u0010s\u0015����2��T���$�f8c�=�\u001c*6��꤀��\u0010Q�u]T�u\u0013F��v�\u001cB��5u\u0017�٫�K^B\u000bdؠ�\u0012D\u0003%w\u0010�MR��י�Z�\u000fwF��g&�;@D�%֪�C\u0005�q\u0015\u0015hm�\u0001�w�A�@�|\u0003tŬ��(\u001f\u001e�2���yK���:�{����E�?*�KXiJ#>���\"�kE�P R?���n3=$�*3(��\u0004z�\u000f��\u000f�B�mJǏ�\u0004\u001d�\u0000uZ���\"�A\u001f�\u000f<��L��x�g+\u0017{zM�\u000e&��\u0014��Y��\u0019vY6;�ZZ\u0002��/�3��㘀�Y���GR0�O��F�%,Ꚋ�'6x�i\u0015n�0�@4/\u0014~���l���|�\u001f'�5�Ӟ\u001c*�\u00124iф!c�\u000b�\u001a0K��\t֧�PTI[s�\u000b�s��#&\b5�PD��~\u0017��\u0018�\u001d�1���\u000fi\u0013'�3�S�h&h\u0010[�,/`�^�i��;2$��\u0014�u��\u0018P��is�\b\u0007I���_w\u000f��Zq�.�[�v�\u0014�7蹛��\\J�k�<\u0017 KXCj�T��\f��v��\u0013����\u00054\"�\t�|l���0�)8�z\u001fp�\u0010�TS3���]y�ʣA\"�\u000fP��Mz���L\u0011\u0014�\u0003~�Nl���\nh0�\u0018I-��]�z%~�\r3��\u000f�^��\u0017\u0007�l��\u001e\u001a�:���v\u001c���\u0003\u0016�q\u0014�#�\u0011~!��v笼��c\"�����3�L\u0002�\u0000��(�e��\u0016��ɱ(\u0006N\t�oAo\r�m�և���z��Fl\u0014/\u0018�\u0007\u0012;M\u001aY\u0019¡\u001a�\tc��n\u0004�Gb�\u00032��\u001c���W��otk�P\u00172UfQ�\u0019\u0012�}�\u0018c.�E]UD\u0007Bl��lD���/0��÷\u001b��\u001ahwP�*\u001bɑA�xR��TE\u0014��d�>Vy+���rk�A\u001f�\u000fd��Mz�2�/'@~�i�\u001a.��,\u0017ן��*P~�\u000e\n\u000b���mӁ����h��㞲Bj;�ۦ�\u0014b\u0014���`L\u0000�H���\u000ez�(>���\f\u0012@-7Rn\u0017��h��^.\u000f\tj����B؆�#\u0013�\u00164ʝ�\u0010}�zJ\u001b\\�\b�\u0006�2�1�?\r�g��G�M-�űzlő�`V��x(집���*�*}�I�V��,���\u0005�X{\u0010Z�s��@�\u001e�\n�'��)�jW�\u0000�\nr�\bl�\u0018�v\rQ+n\u000b\n����1�2�T`�\r\u0005�r�+G���5�+ �����?bk4^䟓\u001aG\u000b��v\u0006Z:�����l\u0005\u0011-f��#��;�)��A#�\u000fx��6����T�-��k��C7\u0011(��be2?\"\u0013Ԏ\th?���ud՝�����Ķ-b��\\r\u0019qZf��.���E%&��\u0016�`\f��\f�\r�6����b.�Y5,:�Jk��M\u0012�\u0006r�?�\u0013 �Ǟ�\u00170\t�j��s��\u0002P�7�\u000e���\u0016�C���\t��!�\u0017\u0005Y`���\u0004X7&�\u0012��\u00149ԱPVI��3+lZmR\n\u0019\u001f|��|\u000fr���Vf����\u0003���\u0006(@ro�P޴��q=��0*b���y��\u0015sF�\u001e�?T���g)�u�'��vt\u0017y87�\u001d��h\u0018\u0005\u000eD|YLU\u001a�[��\u001f�0l�\n����r=�D����\u000e��l�uV�A1�\u000f���MN��z�\u001c\thyw8��F��&�(��-���]��^x\u0002><����r6Z�8�쑋7Ei\u0016��c�R�r4\u000e��J�\"�O�|='�cʠ����z�ݿ\u001bS\u001a\u000b�Ĝ�)0�>�OΦfN\u0018S��Ÿ�~�2s\u0013X�\u0015xx��0ZP3���*bxȆa�s|6�\u0014�|a�t�\u001b\u0011\u001c$[�\u001e`NB�\u000bc���)hgM���\u0012�p\u001b\u001dV\u001a�]�\u0001�aL����`�$=�S\u0011�x6�@2\"=`Q\bm��p�mt(��&�i�j�\u0000iC�\b�™��=��w�^i\u000f�C��tC�\tc��\u0004�\f�*^l_Y4xMr\u0016}Ѥwl�\u001c7�u���\u0014�1�_yeT/��\u001b�\u0013�\u0016gT\u0001�\u001e+�A-�\u000f���MS�]Nᡐ�\u0015��h\u0018'\u0013��\u00124�\\\u0013��$\u0010�|6@N��=���c\u0015LXJ;��Wީ@\b�\u001e\u0002\u0002�\u0001\t˒u���\u001a�n\u0018\u0014ʮ�_�e9���|\t��fG��Q�4�\u001b��g���Qk�\u001e��DY[\u000fWE��B�Ja78��\b\\Tw2���l����eiW��yD#a[C�LR\u001foa[L&+�\u0006\t1\u0007��\u0006�lU�Ç��\u001d�w�*��\u0001۪y ���<Ʋ��\u0000C\u001eɾ��\b\u001e\u0006���\u0015e�w:�$&���*n\n�����S������5\u0003Я�+\u0005��-\u001co^fo�q\u001f>x\f�i\u0010�\u001cR:\u001e{�k\u001f��,����N���+%C�j�b��w\u001d�$L�a��A&�\u000f���M\u001f;����\u000b�L%�d�U�:�\u0018!u�4p\u001ac�_}[j_��\u0001��IIg����Ď\u000f�S:0�Jm�o¬9<��x�\t�ُ��8~�#��.s���R!�X\r\r4��%\u001a��g�B�\u0005��?[�J��Sp�l�\u0001�(Z��\u0017@e��^�ѩ�\u0004)��C:F�\b#��u*���g����\u0003����\"�4��!Ca\u0011���\u0010�\\��� \u001f�xE4��`��Xxü|\u0015L�4v\u0019��«��U��M�m��I���|C�\u0018�\u0014skڻ�\u000b�o��u������\f-�LE��\u000fG6t�Vq\u000b\u0002�.JG\u0015�\u00174\u000b�\u0019q1�$t�l�\u0001M�\u0012\\'P���A\u001f�\u000fȀ�L������ʊ�\u001b:a��aτ�(��\u000b��G�1�\u0011\u001d�5\u0012��\t}��b�t�]p=u��>\u001d;ˊ����;��8/�ȍ},;���x��\u001a\u0011&Dݪ̫�c\u0004�$�!��\u000b�5ڞ��M}\u000f\u0004�\u0011�\u0006n`��>��H�\u0003\t8�:\u001fKs\u000b��`s�����\"�C�;WT\r\u000e`�]P1\u000b�\"4w�N�\u001b|Ow����=�ȯ�\u0013�nCR}��\u0004Y\\�C�l��\u0004�t�i\u0003���q�\u000b\u001aٺK�͢\u000b\u000e.7�\u0004�\u0011Z�]~ʯa�u$\u0000w\u0019\u000f[~�\r\\CF�~����-�\tf%L(�ƨZM���x#ֿ���Ұ#`�\"��I���%�A+�\u000f܀���\u0007\u0017\u0011V^�(��s#B��f�\r\u0006��9^G�}ׅ��-2\t|��t�n�����\u001a\u0018�tGE_WD[c�H�k�\u0003X���ٺ�|o�t4\u0015��D�QD�ܛ} \u0017�uހ�WD�_�K`�a��k=\u0000~\u001cdM�#Q\\% �\u0000�o\u0018�S�����\u0001�幆�q�Q|��\t�yQ����\u0004\u0000�,�\u0011���w\u0004�\u001cU#\u0000\t�n%���rv����l$�\u0010�m���Q�\nT\u000b�}��Y�d!]�#zfMt�I^_i��\u001bR��/�\f?��#6<\bn'?�\u0015+\u0015\u0013�E�F�t�ڈ�v\u000f��9?�=��+4c\u000ef��\u0005\u001b pD[n.�l>Dv�팑%ᡀ�\u0003Ry�A\u0018�\u000f��������ڲ�?J�ΎRzLyr\u0002�H�{u��ݳ�\u0018\u0002�&\u001dk��4��!5����8���\u0019��\u000eŬst��_c\u0005�� -���ܷ�3��5ʛ^L�w5�H�\\�]V�%I���G��>�u�\u0003�i�L�\u0014����H�WθC���\u001b*ݷ��$��\f�Nk�0\u0013�g�\u001a�P��\"�����\u0005�d����\u000f\u001e���<{�\u0000$������eǥ�x.\\�`��L�=0W�H\u0017`YO�\u0011O�j8BT��1\"E\u0001e\t�&e!��,�cd\\f݁��/�^�\u001c?U\u0004�1:�ѣl?蝮gV[������`)+�}�j��s�A\"�\u0010\u0004������u%'}��\b�/��F��,�\u0016+�V�\u0017'��i����\u0018��\u00018?��T��\"�\u0012\u000b0$u6�X\u001d���\u0017T�-��_�cT���ӘS��\\��\u0017\t�M~��\u0010�1欓�e6DYg���⛚\"Q�]�'~�d�@[X*\u0018���w�a�\u0013�Z��a����k�Ԗ������G��\u0019c\r�\u0015Ƀt*��\b��n)YN�;�\f\b��D�J(\u001b\u0013�d�\u0018\u0006�UeL��\tj�USڐz\u0019\u0017�U��:�/W\u0019�\u0001���c�h�o�ޖ����B�\u0005�Ө�\u000b\u0000�j�@&�\t�\u001al��яt\u0004>|�/pN��f�\u0003��:\n���\u001b5���we����0���Kq/�L�ZP\fv\u0012c\u001bM~��9<���R�ӭ^�\t\u000ez \u0000K6({`�I�;�\u0017;�-o��d�)/e�\u0019���;�\u0012?�V��8)��R����O\u0006��;�8:\u0019��T�\u0014�\f:��?\u0013\u0016�\n��m�<��\"&�Xe�3B^\u0019\f���8�\u0019��x���#h�!�&k����AC�\u0010,��\u0006MFD�<{�B��-i�Nt��\u0010'��1���\u0015_h�p��\u0005����R�z[˫�#x�-��R��H�q8�\u0017@��\u0001�]W\u0017��\u0016Lw1\u001d����\"X=�A�9\b�(�.��?�\u0019��nv%A��k�\u001f�!�%�\u001f���`m\u000bW9ͱ���c��\u001a,�4rn\r�z\f�EQ�\u0010��%<\u000bp\u000f�m�>\u001dK�sBx0m��E\u0006�\u0015�����\r��<}.YLܼ��-\u0019\u000bw���\u0010\u0002Ζ�o\u0005��\u0019�ʴ01Pzs%��5��B�h\u0003[��v��JG�iYl��l^\\BhjS�e/�Ks\u001e����t�\u0005�a\u0012\t�gm\\s<��\u0015a|o\u000b�\b�D�u�ۙ�\u0014��Ƨ�D\u0015BU\u0018���j��vd�k����Qg�\u0014�gbg1$\b2[��|V�e\u0014�;�w�{6�����`^5��D\u001e\u0010�[�\u001ec���鿘\u0014|��x�����h\u0017�kX���9o�Z��!�\b�\u000f�֞���e��=C����4f�π�Y\u00189\u0007\f���\u001e�\u0002\rWl���V��D�E��\u0018'\u0018�3�٣���\u0017\u0016���N�^g� �*ؐ+�,/\u0007�w �\u0017�(}��\u0005���\u000e��:\u000b垐v\n\u0012�^1+�u����\u0012m\u0010U��\u000eRT�F�A�\u001foӋm�f�>�\f�0�@��\u0010h��\u0001:s����e}^l컍�]�#3eEE��'~\u000eV���4a�f�\t��\u000ftA0��G�0&�\bIU�\u001a�9\u0002\u001d9\n�9<ַx�Bs�\r͉\u0017�8~���|�ħR.���\u0016�`�\u0004C�/�~���$%4�|�#s\u00014�ndq�r��\u001e�)ܻ�y�!\u0005�-��L�\f��FF\u0002Q��FEC\t�#x[\\g��g�E�c.v���\u0017\u0011)a)\u0006�9�~o�\u0012q�6t��4�ˠ�Z�A�k�c�D��\u000b2�j��jʰ^\u001az\u0014��:�\"\fy߳��\u0013�8��\u001f�(�]�,a\u0007n��@��\u0010|��\u0011DN����\u000b��<�+]{�Z ƥEfF�6Z��\u0003;H_������\u0015\n\t=�\u001c�`q�֚\u000f��Y\u000b*?��~_�EQ;\"���\u0010v���A;^9�\u001b�ʑ�\u0018��K&�����}��s����\u0001.v��N��*\nS\u0006��G�\u0013���t,PR�C\u0013f\u0010���A\u0017��yo�&�N\u0001o�7�\u0015\u0006E��M���s��e3\u001d.�V��t��$�\\��2p��k\u0015R�!�?�c\u001e��/@iG�\u0017WE��\u00176���򱧥K�A�����\u0002K�)�������_���\u0006�@��\u0010���\u00018\u0005��˿�\u0000_���m� �p� �S\u0013�\u0010?��-�:���i�b\t\";ΐ��\u000b1\u0003o)!���e�w����hĘ[��t��TÿQ\f?R�\u001bj\u0001�-B�)QPf����(C���P�>\u001d�tI\u000e�Ć�C�ܽD��Cl\u0012jN�*{��z!��\u001c�};D�dW\u0007\"\u0006�\\�\u0018���?���> 5���\u0011����31\u0005�τ\u0018\u001b�\u0001���\f�poPc�a�=\t[1H\u0005�% 3��tآ��\u000bU����\u0003�E��\u0015�&V���\u000f�HP�vy���\u0004��A\u0005�\u0010������x�Д�\t��y\u001f��Z���w�����b�\u0003\u001e�\u0004L �^�yb�s\u0007G}u\u001bJ�\u0003F�^��V\u001a%H=��ן��\u001e�w�:�\u0002~C���\u0006�p�_QU��)\u0004D�ie}U�]���&�M\nS���҅,:��#�7�&\u0017\tp��\u001dVa%�)�\u0017�2��i��1\bC�\fwV|,�\u001cB���-���\b⡙�\u0007��h$�o|$�Ca$�MO���\f����\u0005�V���\u0010��:M,�\u000f �ݒ�\u001e�\u0006��d���\u0016B�M\fj�\u0014�^����Mx\u001cT]H�\u0013�n��\\y\\�\u0016\u0017���\u0005dV�A\b�\u0010���\u0002E�R`\u0011<���o���Oyy\u0016���Nd\u000f\u0006մ�M��\\�?��\u001awR��n�zOM\u0013����J�\u000b���\"\u0011��NDL�\u001c�\u0014\u0003x\b_*�����w����c����\r\tP�\b�?���- ���`��\u0016:m����m�톲V���\u0017�L����4|�a�y�V���\\��`v%���\u001a��lQ�0L��ưFP�\u0013�jr�{�Z�)�t\u000e_\u0003c_\u001fD�ď<��T��\u001c;-�#ev%��x��Ik�8a��\u0015�%\u0001ڜd\u0010V\u0003Xx\f�7��\u0003��d�*[d�,�a�W�@S1\n�A\u0001�\u0010̀�\u0016\u0000bmDh5��ʃ ��*� ܎\u00150x�\u0007$�4�ok�/��P\u0017\u0010��{p�-\u0006�\u0006\u0011��ο\\�ݳV\u0001�mN\u0018u\u0018�G��5>��\u0010�3��\u0016�O����\n)��\u001b9\u0015\bN�v\u001f���yNl�5\"j�\u0007y?�F�T}n�$�\u001c�]��Í���\u0019��A\u0010�\u0010���\u0015�{H�,#���O5��}\b�\u0007�i�N\u0005prQ�\u0018�)xL\u0019\b���E\u0019�_j\u0012�uU\u001e:�|�+�\"{�\u0010\r\u0004��W�l\u0018\u0001�)�-A\u0012eq�-V)�3Ž�g+�~Yt��������@�\u0006/8|�R�s�h\u0014\\�5��,�\u001a�.&Fʡ�V]��\u0003�3��~WDb��E%\u0001aŠk=\u0003�Pv�f�W�e\u0005Q|@�\"�\u001f���LC�d\u0001��\u000b�VJ\u0015�ߧ\"�pNx\t/N���^\u0003��.�\u0001w�\u0016��7ț�\u0013\u001a��\u0002\u0003u#��#\f�\u0016\u000e�\u0000(��6a�.\t\u0014dCM}i&�c����Y}^�\u0016d&*����\t���\u0003v7�g�\t�Y�T�������Kd\u0005�؅ּ\u0001�O9\u0002$*�ȳsW\u0000ˮ\u000eE� �A\u0010�\u00110�����\u001b>��K���?<\u0013�_5�y�6/�-��45S\"�\u0005}EM�wG�\n�~�Q\r�v5��YI2����k\u0007�(Γ\u0005\u0015�-����n�m��`� \r\rL�@��\b�^�8I�4-\u0017I�D{�z��]����t�����\u0005y��B�/���gX�:@��\fF�'�IYz�h\u0013\u0007e�?+���(����&�\u0006(\u000f�iUB��K�b�e�\u0017㦇�Zj\u0010�\u0005#�A\u0007�\u0011D��Ahql�\u001b�x�5%\u0018x��g�\u0011�2�;��ó���\t��>\b�� �Lk�k��\u001e�ox��Q=�\b�S��GP�X��?�#�Q'[\u0003�C��\t@\u0001I��?��R\u0018\n����\u0019\"��q��S}��:�R�=�+*�k\u001c��Q�����F,��V�p\\o/P\u001a0Ԙ\u0010��)�\u001bD�gno$��\u001d\u0011���kQ�FF�\f��<\u0012�B�m.��?q4>|S�G��\n\u0007#\u001b�\u00156�@gk�,�>U`\u0010t�\u0003*�\u001f�F=?2k)��{�i��,�13�R��\u0013i�bo�6��o���p/!g�A\u0015�\u0011X��A܏Ԝ#%�e\u001e_�S��\n�ء�$�Fd\"\n�\u001d\u0011�n�'X�f\t&�DT\u0012.a3\u0002]Ӵ\u0014�\u001dbm\u0014&z�R�/\u001f���;�0�]i\u001dD�a\u0005�)��ř\u00121��z��a�O��� �_�YE�A\u0017�\u0011���\u0015�%�>2k5\u0007<��zv���x0� �+R0��q�}\rE^��i\u001cٺ@\u0010�!Zx+\u0000\u0004;�\u0017�t��s�I�b\u0014Q��|Ѳ�N�r%�P{s�|/������[t4�m�\u0005m�\u0000�!�_\u0005&�vS2U\u001e\u0019��\b�Ÿ�ĻA\u001a0>W�Im��\u000f\u0019\u0000\u0014�\u0004Lo\bR)�J�\u0018�zU�\u0000�n�%Y�9\u001cŤ����'�%��Z�G��I���;�\u0019=\u000e�3\u0018�\u0016\u001d\tb�a�)���}\u000e\"G�0/u7�^7���9�]�6\u0018\u000fE\u0011+\u0013�K3�$�h�d�GCh\u0003z2\f\u0001\u0006��ʳ��1�wEX�\"�2\u001eD��\u0019����p�&'\u0012�A$�\u0011���>10��F�r���\u0003�i�t�[�\f����Z]\u0015Z\t��I�\u0007���൧'��\u0017�n6�o\u001c\u0019�>h:f�Ћ�\u0011��V�Y�7��\u001a�q{i6W�,�dȩ�����D7��s��/C?i�����z\u0005aǾ�e�i\u001d#��K��W��~\u0012�ya����JQ��\u000b��E\u0015\u0003����5-=��D��|��u���xW�R4\u001e��\u0000\u0010yH�ҕ�ED#��\u001b��N��Vv?bGJ��^\u0014�d�m\u0000S��H�ep�#\u0018�\u0015�ð�1��\f�[�6�)�\u001f��[bu�\u0019=��V}?�\u0016�-Z\u0007��D��>s\u0003�W��F2K�\t\u001dGq\u0015��w�z1\"�f���F�BT�\u0011���r�*$�ׯ_\u001a�)��\u0000�C]�{���\u0007\u0011����?P��\u001cS:9�V+��N'�z���9�F��P�[Yך���ԣ&d��÷ h�=Y@}��3K�a�Rʩc\u0017.\u0003�\u0016�$@��qg��<6r+Y�}�U�7\u0013F\u001f�՜\u00067ǩԘk�Q�R\u001f��\"�R�GS:�J�Z\b�U/�ҷ'D��\u0018,\u0010�i����\\�\u001cX �zfx����\u001b\u0012�r@����;\u000b�L��\u0007\u00179q~\u001c<�΍��\u0003_�Z}�&�?L��\u0018z�\u000f{��-�w#J�/^\r$���F�\b\b����\r~M\u0000z��YM\r��鵣�\u0005�bF��AF�\u0011Ѐ�S��+��\u0004`&����Kj&�\u001ep�`�W(\u0016o\u0017w?�\u0001h�/t~����)����\f�$�n�$�7��cj�\u001ff�\n\u001f{��e��g���s�\u0005E\u000b�\u0016_y��4�I�fM�R�8�\u0013,*{\u0007���h�\u001a|�\u0013�\"�U\u001d\t,`Sw�����g�\u0006�vc\u000b�lB�\"<#��ʬ�\u0006�ɹ���\u0003��#���UGu!Qz\u0015J��]�\ft\u0018\t�\u0003�!�TFg���i��B�\u001f�{�5���!���K�/�*\u0018�1�{\u001bL�F�\u001f\u000f�9��߼N~��m�ۋ�\u0018�\u0016��ַ�ۍ�|:]�n��I��X�H�\u0011�-����Þw\u001cj%��|��D��\u0000\f��?\u0011\u001d�VG)�\u0005�Tb\u001cgv\u001d�D|�\">�5�$m��A\u0004�\u0011��\u0014-H����\u0006 \"Ύ\"����1��$-su;��\u0013\tY���y`�/Z��\u001e�bI\u0007��&U��'Y[4!\"\u0016}-\u0003Y� �O���\u001b\u0003A=q�u�Ӎ\u0017\b��p]����s�s�\u001eC}Y�z��\u0015K�\u001a˟�8�х.��*���}\u0018Q�۰&�O�׌��R���\u001e�\u0005�j�y�9���\u0018s�ۊ��\n�\u0011]�M�l�ـ\u0015�^��\u0015\u000b��Zd��\u0010��\u0006\\W�H˥�gA�{J\u0016\nyW�ކ�^l]Q�r��_5>R�K��!H����zz��NeB�[(�X>KXB�2�j\u0013ӣB\u0019�\u0011���w\u0005��9Fb�//v�F�8�\u0010�s9a���w�v�2əj����=\u000e�n�\u0002'����\u001a\u0012\u000b@Dk��\u001c>�\u000b�Y�\u000e\n\u000bG���I�\u001b.�5;�:֊����\u0010���n�|\u000e�ht�n~.|\u001e`e\t\n�o;\u001a�\"��q���y?q\u0005�-0�LLP�Zw\u001c�v�\u0012�Am]�Ԗ)��_)?\u0000�j\u0006��KE\u0001��{Q�M\u0016�u����d��\u0007�л\u001b\u00128��\f:&�Ħ�\"�S��8%�\u0018�H���Ur\u0019��β;���!H���׈\u0014o\u001cc�7(\u001c'�cr0\u000f�|�C^�b�؉\u0018,�w.s\u001a�\u0011�Ѳ�\u001c>���\u0000��}\u00012�<(\u0004�VG\u000e���~��\u001dY�I�Wc\u0005\n�J�����ur��<[�ו\u0013�����_˖�y�p�sqF\u0007��ƈ��۱o:\u0006�\u0002\u000f'E+5�Ȱ̳�>s(�G�\"\u0007��s� v�\u0000��nW�g%�#\u0006q�`�\u001bs�/tʏ9�\n�#\u0006~�\u0002:���Rk?.\t�!\u0004XH�����p�\u001f\u00148�#�ˎӟ\t��\u0015\"�n��\f�p\u001a[��\u0019��^�|\tq��\u001eq�Q\u001e�\u0018�\u0019�/��%\f\u0014���\u0000·^ib��\f�b!�ӡ�(���5棑\u0016�\u0002ԭ\u0005\u001bYI'�W\\U�\u000eb�)h\u0017�#��Ba�\u0012\f��u��\u0018�}\\��(W.0�-��b�Z-�@��\u0015I�K溊��l�nP�\u0018+�a�\u00076�4��\u0015�p�2�Bݰ��\u000b]F0��!�\u0006@�ST�g�u�˵?�f�\u0011J\b�K��~�ā�\u0019f5P�)\u0000\u001f��G�on���07�۫�\u0006\u000b��Q\u0010�_�t&Lj���A���\tm7\u000b�Zp���A=�� \u0019��Àp��\u0019ɋ㖺&g���<���Dc�z\u000f=\r\u0019D��y�\u001c�\u001b��uq���\f�\u001b�b�Э�\u001fR@J�\u0007����b�\u0016�;���s�\u0016p ��c26-QA��������+��\u0018�E@\u0000\u0000\u0000\u0000\u0000\u0000\u00005!����=�b*��6u��M\u00073\u0004b����HS�J\u001c�\u0007�0A�a�!��C�&�I,�He\u0016�i�vJ\u0014\u001b�\u0001\u0007T_��4�\u0019��{\u0010�D�J*�\u0004�8�7h���\u0015\u0014M2my\u0004+�\u001a4ϴ�&w��`9��\u0015`�k\u0011\n~�n��n����?�\u0013���k\u000e\u0014��$��|]��u?=���\u001f\fZ\u0015{l7�U\u001a|K�2�P9,��ӆ���u�\u0001�\u0015I_�\u0004�Zˍ��r��J)إ\u0004'�9�\u001b<�\u000e�Qd��~�u�����ҹ���p\u0003�j�՛a�5�I ��\u0012\u0003�/n�����u��8\u00062\u0014RrB8\b�m�4�^'$\u001c�r^7Y\u000e7\u0003�b\"@w�b�^\u001c\r�I�\"����:���pʓs�H\"C�c�\u0018k\"M\u0005V�����\u001f�>C�h��B:�\u0012 ��V���\u0005u�\u001a\bd�#����\\\u001f��\u000f!%��g�Qd]1����h\u0017��gY�\\�L�F\b�}��1\u001c;�/�4�a�����7<;�lc�k��\ne���#�R�ǿTB\u0007�--/�U\\w��\u000feG{(eb��1���R�[\u0011��a\u0006�m8\b�\n����:��\f|'\u0018��Ж�\u0019�M_\u0000���\u0015l��lî\u000e6��nvд�4\u0000\u0002��rL~}����uz�\t\u001co��,\u0017�>�;�̨�KS^��x��>K�J�̐\b���c\u0010�\u0015���-��C\u0011Gl\u0005\u0011A���c�\u000fO\u001e]Җx���\u001b������q���\b]i.:�Қ�\u000b��j7~d�\b���0�:��@�\n�T��~\u0018��6Q�͓���7�M��I]�\u001a��\r\u0010\u0017��w��#qe���yݙN\u000f��\u001dõ7�\u000btT\u001c�%\u0005���e������f\u0018\u0013�:��rVuw�-�\u001d\u000f�J $;^�g�\u001cV\u0016������\\�u��c2�p^<��\u0019P�*��,��b�r\u001f�C�6�g�JH�!�E\u0001(�$�b1\r(\tdTp ��P%\f�\u0002�K@�>�D�>�����\u0016Ԗ�\u0018qEY�B�X���I�iZ�\u001d�a�um'�\u0003�\u0002��\u0000�w��0��\u0014K\u001d�B\u000f\u001eO-���%�3�S1\u0002�7\u0014���l�OY�?�E-�.��Tx��\u001dfԣA\u0007�\u00124��m�Mak�B�S��nν\u000b[��\u001e�򖖌W�@/�\u000b�\u0016V)4$�\u0006���^i�S��ZH�y��\u0019c@�ֿ4\u0001\u0017\thDG�?�:\fw\u0001�\u0001��w�tK��z5k�Ի��\\)`0��\u001d5g[��\u000f\u0005TF\u0019��k�F\u0019BK\u0017�;P\u0015:����Bhs=]b֡��EW\u0002\u001e�=\u0011\r�!\u001d���\u001bk\u001b�}f\u0006\r�_�ͯC%� ;^\u0002\u0005�\u0011QF�G�+\u0012\u0016�\u001c�)��Պᒙ�X`,���Y\u000bQJ\u0017S{�3�!�|�\u0018�p���ڞxa���U��\u0010���T,O�EVr��\u0001�\u0005��4�,�A\u0004�\u0012H��X\u0001�z5��\u001c�Ĕ�'4��ޝ�O}\u0014\u0004�\u0003}��T�)z-�`;\u000b�PZ0���\u0007\u0003���&�\u0013\u001e�Qi^\u001b�\u001b�Q̒�yv��Z�M_���p�����:_�oW\u0016^�-DVU�A]�� 5]�Ӡ�_��h[\u0017\u000e\u0016�\r��YS3O���☗\u0006��d%����sj�9f�\f�G����^�\u0000���7\u000eϓ4\u0011��\u000b����rra�\r�\u001b�`}�B��\u001a�oπ�����䏕\t��DC�\u0001��Wd\u0006vk��AX�R`\u000f��1{�J0<��}'����m�Z\u0004U��=�tڕI.U\t��.N�\\�'Ws��Q@/��R��/6�n/�%�d����(i�\u0015�\u0014~\u0013B(\u0007�m�;\u000f\u0010e��$a\u0002C\u001c\u0000�\u0000`�\t�\f\fA���I�;\u0004�v��Sz\u001e��\u0007\u0017s\"T���\u0010�ώ���@�e��w�]�\u0003��è�u�'�C�[u a\u0011BHo\"�\u001a�.��J{̈́,�_Lr�(�ERi�(1�b�8�X��^�\u0001���\u001bV\u000f\u0016��\u001cۙ\u001a��5�\u000fn\u0007���x����D�����O�\u0018�boQ��A8�\u0012p��L�=���u�gpԨ��̵\\D�pK?@$�HF���)���\u0001����\"%\u0002=+\u0014M\u0018!N�\u0001�\f\u0004������o��J\u0004��;�\u0003��e��\f�K��\u0000���&���\u0018��L+J�v9\u000e�v\u001b�\u000f�� 3�\u000e�\u001ff��T\u001b\f�mtw/����\u0012\t�v\u001bH����*Ң�Cv�ä�D�CK}R��/�Dh���9Ï3�7��F\u0013�}���\u0002�^�Q\u0007�z��k�\r���\u0004�^'M�,�\r�����Kw:,\u0000�S\t 0���>\u0011m��2ǿ[�f_Ī�.!SQB7\u0011��\u000eS<�vs�w̨�n,�Ti��\u0015�{�E�jO���g����_����B�G\u0013\u001d�,;��H\u0014��a�\u0000aǁP��A8�\u0012����mB���7{�\u0006�H}��X�\n�,\u0010��p��}�G:���<���j�B�\u0013�:�� ��\u001d\fn��\u0019O�c�߁?#�m4�Ÿ���bG��\u000e�`D/�-J�ik��%�\\K\u001c���|gͰv���x��(Y'����k~>���6=�&<�\u001c���\u000e�v\u0010���\u0017uk*�\u001e�\u001d�5�0�5�/�Fo�C]hUe\u0000\u0017wV6|&�՞���\u000b\fX\u001d\u0005�?T~p\u0000R�kh\u0012#�4�\u0012B��\u0014?\u0012(�\f}�\u001f�,�wJݫ\u0005���1d�\u0002�Q�,��P�\u001e�ɑ\"3U�ҦÚ�g�ff� �\u0005��:J9�\u001a�\u0013\b�Ԋ<3A��� \u0004�)kL�y�*�bLHT���e\u0018�\u0014p��`���q��JR4\u0016��%4\u0007}\u0007h\u0015(X�\u0012h\u0017[�kO,��\u000f_0�F��\f�s�N��Q���R(\u001a�S�\u0015<`�g5�_H�\u000f�\n��\u0013��\u0010��k�c�N�,�o��\u00181۲A��ˆ/=\u000e\\|M�\n�D��\u001d\u0002e���T���\tf��tUb�(w�Ď��|��>�]��_�i��ᆳ�v1�xx�ٕ�A@�\u0012����l�!��\\>\u0001�Ƶ�r�\u0011)�F�z���^؇��r�C��w\u0018w��}�K)\b�\u0002;eN��MF\u0003��Q���i.�`����8\u000e���\u001f9,\u001e��SL)Ģx^�C�,T<5�^4�[�\u0001t�5��􏹘��dT�\u0004\u0015\u0010\u000f���EyC��\u00077\u0005\u0015��\u001b3�9P�`�\u000f�\u0006�+������[�\u0014��\u000b\u0019!k5˗����&3w\u0017�\u0007M\u001d��G�����\u00108�W����\u001aj�B1\u0018\u000f�-\u0005��P�B+ކ��k�\u001d�{-.7����\u001a\u0000u�����\u000b�\u0014\u0002�\u0002��(n|;%]ס\u001e�1�11�m�\u000f\u001f���!\u000eT\u001eu�ʕ�\u0002ȶ�\"�\u0001�S\u0012`\u001f��\u0006���:,���o�ܒ�\u000e��[�*ioՕ�AR�\u0012Ԁ��id\u0006{g4A����\u0010�\u0019-S�\u0012�\u0012��ݟ���K��uF2�[G\u0005|���ʄ��E@�\u0005�f�J�a���\u0002�\u001a�����a�\bL���oj�\bAs��i�մ1א�8]��*�\u0004mT�XQ� �9W\u0010�\u0013\u0012\u001c\u0016�9���ٶn��\u0011�ʱ}cD�<�(\\\u0018��ϻ\u000f��]\u0019��6\u0015/��]��]P��\f>�K�݅��sM\u001c\u0018tX�*���\u000e�)/\u000fӍL��q��\u0015]v��eqf`��I�\u0011��l�;�+��~�^�j�}�<\u0007J�\u000b\\\f�;�\u0011�@�\u001f�\u001d\u0002��\u0018W\u0003�Hs{�D��m��Ab�\u0012���b�Э\u0007f�K\u0000�ߒs�q�9\"�최\t51\r�׼\u0011d�,O���Ju̐\u0019�0�\r�\u000f�/����\\�,s�x'�G#dž�\u001a�5��Mf�!Ϟ\u0016Mv�\u001f�50������\u0000�r�ڈ�ǑJ`\"�\u0007T��l�\u000b�\u001c����\u0017���=���o\u001d�.Z.%��_UE�\u001c��/I�\u000e�E�\u0012X�\u0000�,B3�\u0012�\u0011��32\u001a��1)��\u001c\u00037���s:Z\u0014���i\t}�J�AJ��\u0005Q�/�c�(Ű\u0005�\r-0\u000f\u00152 �\u0007l\u0005C��o�OZ�]���G�d���cW�j?�k����1\u0015��`�/�=DQϳ�\u0003�^\"���s�\u0016�l�\u000b�\n�/4�2y\u0004F��y3��t�\u0003\n=�b�\u0016S���וy`Q\u000e��!/Fr�\n\u001f�\u001c$\u0012���]�\u0003�g��19�yٔ�Ar�\u0012����d���Z�-�\u0015���2���K���H��\u0002��\u0016D݉{��t!Oى�\n:��ezUY�?TA��Y�tܘ\"�7\"u\t�������{\u001b�@�?%�5<ɓ��Jp����\u0013��=I\t;�܎,\u0013v�*�L\u0007�~�s�;k�\u0001�\u001b}�\u001a�@N\u001c����vи\u001fPݱ��_��Q삍�\u001czxxZDӴ�0[\u0005�r�\rL?P5��xЅ\u000b����\f ��%\n���6\u0016��u���eQ�B���w6٬��k?�3\u0002�j��\u0011��7�\b{'�E\b��9�\t�jS����\u0007\t�з�\u0011��jkT\u0010(B�s\u000f�lRRC�f\u0014��\u0013ɴr�AX���\u0007�Ur�*%F��LX9A��@J�\t��r��\\å\u001aV�V�&��Fc��\u0013;���,o�*��Ļ�\u0014�-��B���Ձ�r\u0019\u001aWT�:$��\n���Af�\u0013\u0010���mh��\u0007�\u0010���+���\u001f�H�#k�\u0015\u001dC���nB�okg���sȎ0�=�Lx�\u0019?M�]\\\f0�)\u0000A(;\u0015!�7\u0016\u00129�.Zs\u0017�X��|&�s��8��\u0007\u000f(�ՙsZ��g�b/#;�gǔ*�/��U�輙�}�\f\u000b�v`�~|�٘L�P\u0012Cl��}��8c>��>�\u001a��`_�\u0017�\u000f�(\u0010\u0003x��\u0005�\tj�O�?������\u0012�kHxӓ�\u0016\u001dS���1�¿�[�\u001a]��\u001d�Le�פ�\u0006\tތɨq%�:)2��%�3�{Eσ:ټ+�4#�����\u0013�q�\u0013�����-�P��.[_��\u000fޭ����\rn\r0�,n�#��d/�0A�p\u0010!A+�⣱|���c����\u0001��6\u001cnC9�o)�\u0001S�|d%�D�$�A7\b�%2��e�N>ڏ��E��AO�\u0013$���b���!�\u0013�\u0010L+ˈ)�@b\f�Ɣ��ð�N\n������\u000eU\f����W�z\t���Z�D��Y\u000f�\u0007²�0�A\u0002v��m����U��S'����=�=T��-&I.��M����.\"�A�h�C\u0017΍~Q�\u0014\u000b%\u0014\u001f�x�\u0011r�E��k1�Ǝy\u001bX\u0015����iyx�=���^�*-\u0002 ���o�����b���#l\u001a^�<�2\u000f\u0015 �w���'�KF%ݫl�j��8��\u0002lv�2\u0000h\"�~�?�+ ���秲3r\u000f����\u0002i�F�!�\u001dΈ�/#���\u001b����Pd\u000e~d #���\u000b�v~Z2vF�%n�z���8��\u001b\u001a͸2��K�\u0005��Km�|�-̽�N�WɏGt�VS\u0011�����{-�*�%M\u0013�AQ�\u00138��K\n9\u0016E��\u001c��\r�J��־LKm^�d�3\n�P�Ǟ&�\u001e�7Ll\u0013<\"���ib�Q�\u001f����{�=��x�3��ڵ�L�:�֩�{L�\u000f1�(w���S�N��h�\u000e�\u001c\u0017=*�7\u0007W��b(+V),_�$\u0002P(/\u000e�ǻ�\"4�_�E-�\u0002��'5�M\u001d-���\u0014\u0012�RHj\u0003�\u0018;���\\h!A,�\u0018�\u0004A�\u000f׶���hš\u0019�tvD�s���v�\u00042�*�.\u001c��G>Us�?g퉷)�7;�/*d�\u0010ju\u0014%ͣjk�|ׇn�&R��\u0007(�\u0017C>\u0004\u001f��#�A\u0011!gs\u000e@�\u0016l0%�����Z\u0015\u000654T�\u0014\u0012x�A:�\u0013L��I�\n�\\X�̉k��/\u00004�\u0015}����2\b,\u001cZ\u0000X�\u001ef�\u001f�~���ƐE�\u0000�Xm\u0010��\t��A\u001bgX;��\u0016_rձj\u0010(���\bxt��S�t����&nϿ!���>�\"�v��k��+��X��\u001e<�/e'�D�u,O�W���9�<�!>\u0000�����r��𲢼��!�t��\u0015f���ᠳst|�rFL\u0004\t����i-u�w� \u0019}C\u0010�!����k�fE��}�u'krM��\u0015�n\\��\u0004��W��\u0004���\u001e�]J1�� \u0018+Hu�\u001b�e\u0015�%?\u001f\u0016]NI����Q \u001b\t��w21\u001c\f�@\u001eE��B�l�Ml�&��L\u0013\u001dڝ���b�s��g��#�(�\u0018��O���E\\$�A/�\u0013`��1����w\u0006\u0016\u00172���.�\f��ď(�(�Wl\u001c&\u0014}Ϡ��,���|�X]�\u0005�7�c�/����\u0018��l2��6��8���qP\u0007T��U�Q�7n[�\\G&�ERS?�#�\u0000\f\b�U��<���+�K�\u001c�Is�)�\u000e��{w\u0019�[�\\��0\u001e����+4�Y��\bw�9Í�s@DfKG���,�LZ���W�u���^��\u0012z ��0\f������\u000b\u0018��\\z��خ�t��iv:uN��\u000fѧ\u0016\"S\u0011�\f�2H\u001d\u0010�\u0011\u0000\t\txb��$�_^{\u0003g_\u001f9��\u001c\u001e,fW�z��?4�\u0015���zN���^l:K�q��\n���*q\u000b^3i�q�%�q�[]\u001e����A3�\u0013t���mi\u0003�.�\t��\u000bWWY�y�X�\"�os�*�.��%M\u0016\r���%\u0005Jqb�V\n��,���ޮ5�\u001cZУ�ʑ(��:��x\u0012\"4�nش�m��}���r�w���\u0012\u001e\\gV\r!�\f�c\u001d�G�\u0014\u0000\u001aJ i閟�_\nXx��R>�\u0000�+H�e,ݬ�f\u0012���7��W\u0005�ȗ(W�\u0007٢)g�RyW%�AV��L�m\u000b���<�D��Й)�:A�{�E�z�Ch�K�wy}\u001dXh�_c�\u000b\u0012\u0007o<�@� ����g�G�|����������\n\u0011\u0014�SqC��-\u0014P�)ɶ�ْ�w\u0007�S�W��^\r�\u0017�}�k-\u001cN��N�>#3yJʲ\u0006�S���A~B��A0�\u0013����!�\u0017I�H�$�v~#����p�X����)�84)�KG�Zy-;EF�٘ϒ�\u0014�Ui�� �\u0015�>����䵚��F23��ƃb\r�*\\H\u001f\u001d43���CX\u0017�Ϛ�Cc�,��a�0\u0005�&\u0004�W��']_���\u0006��ɏ�_\u0011Y�MN��\u000b�ֳ&:h�s��G_�e:yi�߿]ʩWA\u0000�w�y!4'�&w\u000bm�e�����\u0018y�n�W\u0013餾�\fOQ4zZ0�h�\u0016)���U����Y[��\u0006�v�\b�>!κr���{N���M������Ky\u0015a�z�\u0013�\u0005��\u0016��_��j�mV.�\u0011z�s�w���\u0017\u001d�p1\u001c����!kC��P�3�y�i����A0�\u0013����4�^��a\"�rh�b�&�9��L\u001d�g\u0013���U\u0000+\u0019F\u000b��@{MD��׌��T�~�|'�\u0001��臒��\u0002�\t*�ȴ�n�0XE�/\u0012��\u0007Y�\u0015�b�/J���rj�)���_�\f�f\u0014�I�~����@��:���\u0002\u001d\u000e�f�+�3��<��<�\u0006���+O��\u000b�[\u0018*\\[P�I�Y&6I/ܺ\u0005��m�bj-��W��\u0002�0X\u001c\u001b�p��\u0011��\u0012��:3�L��[���U�\u000f \u000b�;���Ӕ�\f����Y:c\u0017b\u00186\u0015�cD�3�ֺr��\u0014����*o*���z�vf��\u0013q(&�V�\u000fk�W��2\u0015v/0۸\u0015tO&��x��3�H�g�5��\u0012e��-��^=B�/Or<.f\u0017���칝\"(9N�gg�\"�\u0005\u0011կ�z2��Fļp�L�\u0013\u0002�\u0000XJM���\u0015\b�V�\u0014N�\u001e\u0018;ʜĥ\u0013��& x��\u0016��\u0002.YxE�?^�Kr\u0010>�쀂1���@����X�Y��I\bK�U\u0010�N����5�d����L�\u001c���\rO\u001e\u0013ܽ�6\u0003��d��_\"���AC�\u0013Ā��4�z\u0005���aa��������9DÂm�\u0016}��Bc��W\u001d\f�\u00199�z\u0019~b���jp���Z�~������3H��Ɇ`��:\u0010��&v\n�$���F�t��\u0005\u0006G�9\f����!\u0013�\u0012BԕՖ+,J�s�\f �C\u0016��k�F\u000eto�P�\u0016o�LʧTw\u0003M+i愎[-�X��D�֝ݐ\u001b�\u001b\u001bf���|�ȫ$a\u0018^\nO\u0011��\\��gZ\u0001&\u0005��\u000f>*�\u0006k>�m\r1�V�YK��8��}ܐ�A5�ᘣ�89B��\f����\u0019+�QJ]HgP,�f�\u0011?[��͜\u0003�Q��\u001f\u000e[����Y]g�8���|)����W��;B�5�\\���n#�k�]TK#^�\u0006~\u001e��9(\u0000s쵻M\u0010���AU�\u0013؀��4�e�!\u001a��G=���}��\u001cĩ�F�]��:��\u001f�˅\u0012��\u0000)\u0000n�a݇���X_�m�\u001a�\u0000�b���1�\u0002U����@)eWB�.\n��\u0006�5��\u001d�E\u0004\u0007,�\u001c�\u000f�Ț�XF��\u0001�OG\rh\u0017��G�+\u0014�����\u000es�Hi�\u0007\u001c/�B�C��^*��.S��N�z��7��e�\u0019q�\u001b��A0����*�\u0017\u0015�s�&\u001e�M��)\u0017���cv�P�H=E�/�;Fu\u001d�@v.V�hM��A\u0006�8��M����\u0013\"rJ�%�W�ެ2q[�U�c�v\u001f\u0019�\b��\u0017��\u0002p��\u0018/\u000b��$h׃\fU��)W'�*��`�pP|��uU��\u001d[�\u0012:��\\��)_��=�H�e��\n4�#�\u0015Bgl\u0016\u001f����U��-~�X:L�ْ�AI�\u0013���!���iJ�إ�ya�\u0004;�aɂ0\u0018�s1��\u0011��Jp*B����\u0018'\u0001V�\rW�=�bB��Z�\u0012�ӈ\t��%I�+\u000b�Ƃ��O�^\u00168�$��\u0001����X)�/\n��\u001eY��4�\u0017�\u0001,�\u0018UE�%\u0004^>?^��)����^�)��\u0017�6�B\r\u0019,�\u000b\u001d�r\u0002i\t�\u001a|�e6�\u0012��LT���E�r�_\u0002��7~�\u001b�\u0004\u001f��dj��z�ׇ�L:��2�2�\\0�\u001a����Q^3�69x�u,0m*�\u0004�6I��|�3��ԛ��f��?\u000b��\u0012f���\u001fn[�e5 -�����@\u0003�,1O\u0011P}/6�����O�=c�\u0015��}�3� ^\u0015\u0000�����N�r_LX�\u0019�\b�,\u0007����� \u0019y@���\t��AD�\u0014\u0000���c�R��D�d&�\nol��,d�\u0003��D��O�\u000etp��[n�\u0019V�Iǧf*�ctW��\u0001�UE/�Ǔ�h\u001e\u0007\u0005E\u001dݛ��!՗�J5���e��\u0016�\\\u001b\"K�6�\"�sM�j��d��IK\u0006�\u0017Y`\u0007j�D��<:�l{\b\u0015ƵA�����7\u001d��r����5�)\u001d��Q޳:�\t�87���~\u0005\t\nI�\u0018eZ�-\u001dS�M�o�|\u0014ʥ\b3�(��N�1m_����6\u0019�I~�\b\u001d����\u0014n������AJ\u0000\u000f��\u0014D<%pC�8\u0010\u001ewjbGe\u0010\u0004'ۇk�jp}luy�\u0006�!G���\u001a�Z|�����ݷ������ð�ƾM>H�Y�db7�E�a�;�i�\u0002f5L�\u0007�\u0002s\"����\n{\u0019� ��Bs�\u0014\u0014��|�\u001b�E�\u001a���\u000ed�)��S�ӹ�D���.���8��<7\r��/�(\u001f����?�\u000fP��Ms\u001d<�b���_�:\u0003\f�VN��~�{\u001aоj��`uh�\u00161\u001a���\f4�۔��5eZK�㯇�y葞gKG�\u0011I��P\u0001qlEa�!k\u001e�����;ə���A T2,�P\r��\n,Hv\u000b��]�Y����\u0004u��Ǭ�%�o\r�f��Kk{�\u0010��Q�)Ŝ�=1éH\u0000�� մ�\t\u000f�䞝�\u0017�\u0018Z��N�t�[?��\u0013�m4\u000e��\u0018n8�Z\u00079��\r�Er*��\u0016m\u001d��\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000G=\f�%_�\u0019�-ͣi8X�\u000f1��li~\\��v�\u0002�֏\n�ќ\u0017�N����g\u0000\u001fb��\t\u0018�\u0006��\u0013m��,��Y�\b���\u001a�f\f��\u00185�yb\u0001@{D��y\u0005�-3\"��L\u0005DF�A�����f�C\u000b�v\r�8`]\rC��pJ�����\u0005�q��r�\u0007�\u000f�#�V��G)���\u0003'zb'\u0011��;�B7s�(2p\"��2�'Y]OM\u0002i�i4Zl%��w�E���j.�x��\u0011�@����.]\u0001J�\u0019\u0010�f��`n�g�'���\u000f$~9\u0014�\u001f\u0005*1��M\fǞ(S�\u000e\u0000��a\bH1W�q!tR:'��f�\u0013\u0010,��xO\\s����K\u001f\u0012߇�&>�kZSYK�?\\�\u001b�P:����ŃV�a�۔¤z��4_>���'���\u001e\u0013�Np�%�E��!�\u001e���վ\u001e�\u001c�Yv���AI�\u0014(��X�m)lW����q �\u0006�\u0007?�2�h�\u000f7�L������\u001e6�ܒ(�I�R�CL�X��˂C�M���x��\\���\u0013}Ms])���wzê,����笻)�i�t��\u0000;9q\u001f\f\u001e@���O3G\u0011��\u00041�L�{)[T@��`�|P�IHsoL���\u0003T���r�)Mk�\u001b��Os��S��\u0017\u001c\u0016��\u0013$�Du\u0014R)�{͞\u0016\u0011Z�ﮱ��)�Q�8ٜ�.lؒ�2�ݲC���2��b���R��}��!/����J�\u0016\u0015\u0017\u0013(��n�~�tSt�d�D��6�L\\��\u0006�A\u001a�\u0014<��X�H���sR��\u0006g]|��@H<�\u0019�\u001a\u0006N\u000f�\u0010x�aHL̨)���~�\u0016nd͓;\u0005^�;n13�\u0010A��5��>��˙�\fhK>�\t�\"�9���o�w\u0000\u00164\u001c�\\�\u0006Z���&�\b�\u001a�J��\"ݗ��5\u0002���T�;��{\u0003`b���M\u0016������(wĠB7�[ޚ!y6\u0010y�\u0015�\u0010�~<��Fql�.���x\u0014�!\u001fP\u0013�sB��\u000bz\u001b#f4L<�\"�@\u001eK�E\u0004d=�;�\u0015�tx�8k��*\b\u001e��\u0000�\u0015~�i�\u0000\u001f�'\r�,�\u0012���~�\bx\u0001\f\u0004h@�8c�C�U$!�Pb�G�<�U\u000ff��Q��u#���-��35L\u001c\t��^���qS\fm�{����\u0000Y�e�$xy ��C�\u0000�\n����SL���.�\u001e�A,�\u0014����b\f���D\u0002)\u0013]�\u001crRx{\u0001���Q�9ؓtfa\u0019��(R^`/�tw��\u001d�\u0006C^8��.�\u0018�Zr�[ڻF)Ա^\b\n\\���\u0003L)\u0013���@\u0017�ET&���l;\r;��f\u0016���\u0019EI\f�Y\n����5�(����:\\u��9�9\t��~���Q�$�]U���Vn�Jt@va`�A��uZ�\u0015�句 N\"�d�dM�E\u0002��P��@W�eg�eŒxO&�������\u000e�pM�f��'��7��v\rSb\\��%\u0006d��V��Ք\u0010$�|��jD5��\u001bV\u0000y�\u000f�\rw\u0010�\u0006`@N�6�\u0013�W\u0019'�Jc����,�\u0004lf\u0011�\u001f���DI�\u0017�A%�\u0014����c�\u001d̕�|��R�`�|5�\u0002�����nU{\u0018*G�u˳=&Mvf�\u0016�w���M�(>Z���>�\nC�̌d`ػ�G�2��\f\u0016�=�e�\u001b{pi�6c�O�`���?2N�n\u0005�{\u0010&�\u0011\r%�~i^��p\u0016�\u001b\u0017���{�${�ó>~�\u0004/�L�]������:�E���0�\u001b����D{�*��h/<�M�\\J�8�G��(ڟ.�.Y��ؒ��\r-(4��\u0007\u0017\u0016ڄ���K@�8!��Ͱ\u001al�r�|<�9��|�\u0019-�\u000ep�\f\bk\u0004\u0002���\r�����%z2\t�~#����\u0018��\u000e��(�\u0003`/�ӗ�\u0002�xYǷ���AY�\u0014���ƈ�chX��].�D�fM���\u0012�sQ�tzW�Lw�\t��[&c\u0006�Nv��a\u001b\u001b�w�H�'�F���+��>�;\u0017Lhe���\u000f\u0000I�f,K0}�\nb^x���R�p��\u000e�\u001e��/N��v��`\u0018Ψ[�|L=\\��z~9��a\u0015�\u0015�?\u0000���\u0000p��k�d��p}S�Е�Z��\u0005�vN�\u0000C��yȅ�`�'õ���\f\u0013�2͞����3�V܊�ӌK��+�|{�d�\u001b�}T��&|�9��\u000b��Y��(b���X\n^kC�I{\u00055��\u0012�b`�γ�1W\u001a���\u00157y\u0016���W�{\t�\u0004V\u0000��¿L�\\ʓ�\u0011�:�A�Rz��CY��b-\u00105��m�O\u0018\"A\u001c��\n\u0007\u001c�\b\t�k�b�e��<�!\u0014E\u001f�Uȕ(\u0017�\u0003�9�\u0006\u001d��AY�\u0014Ȁ��c����!w��/�T�\u0012��f�0�\"�\u001a֐��:@�h�\u001c�٥2Fl����@6�d3�����ȯ���U_]1X��W'd�4�@\u001aps�L���\f��\u0016�\u0015�\u0007�[�\u001c������\u001a(\u001a\"T\f=�\"`r�LJ>��`�,~Y\u0014 \u0003�\tPe��\u0002�'J�tߔ$�)���\u0003�ף�P1�\b�vc���-\u00157��\b\u0003\u001bj>�.UQo�+Q\n@�\\M54\\w�ڟ�l�Ҏ'\u0000'�9o=ܷ�3>|ʇ�-k~P�W������m��\u0001ȕ~�'���NhoN����E\t�U,����S%j��}ѿ\\~\u000e�[�1�b\u0015�2s�_t(�e\u001c=f����4�gΜ[�i���\u001f;�i��Yy���C/v[�ܷe��\u0004\u0019B�X[\u001d�-���y����A]�\u0014܀��b\f8J_$�/�ջ�|=���\u001d�._1\u000b�-�/�ET�[��VG��K{�cUPd�#�\u0016�^�ufЖ���\b$\u001e������j��W\u001dp\r('#��/\roP�y�;��9�߉Y��9mYR�d\u000b1�\u0000\npf���fʪ?\"u%E/������z�g��(w9�o���\u0000V\u0016�$%>l���!8mc�'�\u00140B\"�����V�#���z\\�OB7��w�0�\u0006Ծ��bL�\u0002�I\u0017\u000f^u#I�[\u0000��r\u001eKǛ��.�1\f�^����\u0012�^\n5+��\n��<\u0010��e�\u000e��\u001aB˧2q���_٘\u0006\u0012�B�9ðw\u0001�\bD\"�D�`�'\u0013%|����}s\u0011�mZ\u0016�\u001b����޼��\u001b�B'&2I�0}O'fUHY�\u0017�����P\u0010XX��G�\u0013@�‰���A]�\u0014���M-W�\u0006řTH�D���xX?7�UB�\u000fӏ>K�^�\u0018y7��r��\u001bqL��od=?^q\u0016�U2����N����ʜk��\u001aקpIE��\u0013M��Q�_K|`ɂkobc���Q�,���������\u001c���\u0018�Ǥ�Z�P\u001c\u001d��a�{�Ž�?qCݚ2�\u0013@�6�F��v��\\��.���\u0007y%<���g߬13�=WP?�h���]i�d��˲\u0019�&���=����\n�8��+�O�Y\u0003�0��0uG!� \u0015cf����tG��Pa�I�l\u0006N�}|c�\u0002���\u001b�\u0006�\u001c\u0018YZ��LGв�\u0002��y�\u0019��\u0017?T���m�РȚ\u0011���[ݺ\u0011K\u001cU�\u0003�\u0019#�R��\u0019i����x\u0015�Й\"��e*6&\\/1��\u000eY׍\u0003��6�4����H\u0010�wܣA��\u0015\u0004���e)�<��\u001f��\u000b\u0014@��$f��\\Y%���q�hF҂\tR���s\u0016�,B\u001cK6�\u0014]4\"՝�<��;�\u001b\f\u0003�\u0010�\tw^#߃�2�\u000b>\u0013�g��\u001fN��a�6?\\\u0004L\nV^��d���\\�^�*���9��\u0017�4č'O#������A�;\u001d�~c�dT\u0019)��9<\u0016��r�\u0017�_��.�����&Uw��W>�\u0013\u0018\r=D�Q6�\u0018%�\u0017j�ڬϭ�_�-N���`��\u0010NZ$7��88��\t�,��\u0000�O���a�\u000fd��lE�\u0014�%��@/\u001d����T���\u000f�aa\u0004�\u0011�/a�\b���Q��y\u001d�R5���*�P�\f\"�S��}\u0010�\u0019T�7����\u0011K�\nh���gx\u000b�\u0006�$��\u0018T�7Ɠu��v2O�싙�\u0017���R>�T9T�ξ\u0006�����>��A.ʚ�\\�24\n�a���1\u0003t�ِ�tU.�>��^u��ۆ�+�|�a'2�4Y�\u000b���z]�኏����\u001d33!��ί��r�v�x��]\u0001֜���W)C��d�d��P/\b\r����j_�L��IT�S;\f.���\r�\u001bv�N��ǔn�\u001e�\"y{�\u0010�ok'r\u0014�B\u001f�\u0015\u0018��|�!��6�\u0002\u000e�e��+i)\u001b\u001f�'V\fD\\�g�O!R�H�wz�m���:#\"\u0010��\\��T��Ώ5RW����J��7v}ǫ\u0002�\u0002�R��v�!�~�#\\�T��FE��L��a�������Mq�r�\b��T�M\u0013�����_\u0003�,f�\r�!��ଉ֔��'OZ�\u0006h����Y���)6���d�\u0018xJ#�/�\u000eC�>Ç�L�SQ�rFf�@�%�\r��J���e�1�vq�B\u001a�N��\u0010x��\r��\u001d�%|���)��\u0014g�.\u0013�\u000f��G�:?�;g\b�\u001a8Xߎ,w����\u0000e2/P�p��]\u001f��9�FԊG�՞Z��xKy��P\u0012ɯ��\u001a�m{z3��m�\\�?�L�TׄQ��v�b\u000f\u001c(�g�m��=�!�N^�g��#�\u0010\u000b�\u0014�l\"\u001d�rY�>V4\u0014텿���C%;�NL��\u001a�\u0006Cɞ〬�ۏ���o��I���/�\u0006KG�w���Qh\u00064�qn�o��\u0000��P��K���!�\"W�\u0012�Xc�䁻�e���Y��\te����\u0007\u0012R��@$\"Y\r�V�fQ�x5�\"��[�9{�\f�7�\f�\u0010�]e� ��Ҏ\u001a�r���.FLQ�L&��e�}�k\u0015Q\u000eC�XR7���;���\u0000u\u0011.���A�\u0015,��|�*�\u0000|\u0017����\t���7�G���bn��e��@Έ��;�d�\u0011e5\u0000bݣƠ�[M½�]�+�â۟� \n���\u0018uԂN[k���+�{ڽ\t�\u0004�yG��b\n\u0016$�jB�`� ��\tWy\n�#��w8���`�Ew�fP\u001a�?*�~��}�e5}\u001e��5�\b��\u0015\u001e��Q�\u000fF���6���]�R\bN��\u000fd��)l.�\u0011��*вp\\�_}\u0001G�|\u0000��Rވ\r�����\u0005\b{�d�ދ9r�\u0003i\u0017e\u001a�DR�uL\r7�\u000e�*1qC��a�\u0017K�P7Ϫ���}l�\u0016�\u0014\u000e���=/���\u0017�\u000b\t�F\u0018;T:`\u0005jdϕ\u0010��J\\g�?��v���4e\bZ�ţ��\\�\u001e^��ܐ\u0019T�p�� �2Eb�]����Y��ذBK��c��T2�ؓBC6��tD-�'�Tam\u001d�\u0011\t�r�A�ݲ/\r�q�%\u0019�:̟ŭ\t�\u001e�J\u0010ݠt�G�Y�\u0017uL��q�\u0011���U��qH!�\u0006kz�A��\u0005ړ\u0012C��]x�Y#�)��4�nS�\u0004�H9�L�,i�f�\u0007&8\u0007��h�w�\u0019��Q�\u0013O^͓�\t�A@�\u0015@��M'��*���Ctu/��c��\b���m��t�E��\u0012?�\u00162_�r�-�ϼ�.w�����@�2/�=\u0017��\u000b���#\\���\n@�g\u001e���+��!���*�\u0005e�գV�If[�������p�<ۛ.�\u000fK&iv��j\u0000��8\t�Y�鲆�Z���[��!gƠ��\fwD�O`Gd\u0001�N旇\u0002*���?_bz}?߰��-z\"ԘDy.U��!\u0013S�A�M\"*g�#\b�Lü*\u000f4\u0014NB��Wu�B7�\u000b�D�俻ΌF���*D���`f��\b�枝�>�\n�\",���'�\u0007�\u0014�\bc���d\u0010��}��,o��f�;\bC;\u0019:G=^��r��7X�\u000b\u00017����rT��\u0004\u000e\u000b\u0010�\n�A8�\u0015T���\r��̗YN�%�/\u0006\n>���9���ä�F#�3��Άd�֎\u000btՋ\u0002�e�F�K�h�\tɋ�X,5\u00183\u0004c�\u000f\u0005�\nNϾ\u001b���Q�g�\u001dJq��@���*&\u0016��w�e�Ʌ\u0007��\u0011R��n�L\u0019�@�/�\\�\u0011�S���\u00051�hh#\u001d`\u0013�$&��[#౤LŨRg�<\u0019N\u000b:\u0010\u0015\u0005�HL�f�\"�7��}\u001d\u001ae�4�Aqv��ܒz�\r\u0011A�e1�)x��0[Uw\"-��[2��u��-��8؁du\u0001��\u0012��M�;��\u0002��_?�;I���\u0014����\u0010:N�M�Ko/�\u0001f��`\u0002�3a���݂D�\u000fr�r>���\u0012����W|7>�\u0019/��{�q�\u0006H�ңA3�\u0015h��L¥�Q\"xgD\t�nq~|Jڂ�C��x˲�\u0001�W�\u0016�$��#,�p�\f��oU�w\u0015½D��\u0002O���Ӛ\u000e\u0005����=\u0011�\u0003\b�ϛ#�]�6b}6\u0003���1��}��0�F:��G\u0010\u0015�%�gXG�U4���\"�1'\u0012�\u0016�/�\u0010�\u001a�\u001aڳ7*g�)5���F�\u0002��\u0000T/\b�z^1=\u001c���A�I��I\u00122�̑%D<\u0006u=g�gR$a\u0004�V�d��\u000e%Q�\u0014\u001at��\u0000z����@@T����s�9;L�%2��%��\u0017�\u0007�\u0010�.�\u0004*��7!�:j�T��ώ!%f��\u001d&?N��\u0002�>e\u0010U\u0017�a�z�c]A6f�8,\u000eϱ��Ӵ�\"#ʹ�����v\u0019W������\t�d�a\u0014g}$\r�\u001d��p�/-%rY\u0017\f���<�z\u0019X����hH�dEj��\u000b�\t�0\u0010R�9�\n.\u001aY�E�\n���HIZy\u0002�&�etx�\bdl�\u0003I�9|�-�\\y�#հ��f��\u001f4��>\u0000�L`����\u0016��t�n��r����?;�ӑ��y�U�66\\���ꬁ۪�\u0003\u0017ki�Id�2C��\u000f=�-\u0018i�Z7(Z{\u0005p7\n%�U\u0013\u0014�HԓG�A��\u0015���}b��88(\"?_�\u000fN����N}RL��\u0007[>m]_ct*����՘\u0000���.�!V��\u000e\f4U\nz�\u0015wp��� ��,�#��^��z�2h�\u0018�D�m\u0002���\u0018k�o#\bZ\"��=\u001c�<�N���K�Հ\u000e\u000f\b�n3ܒG�.�S��\u0001\u0000�5\u000bD\u0015\u0016o�H�\f�f�@�\u001b��\"�!�~r\u0003\n\u0001��+-U׊]�T�s��F):�\f4�\u000fq�w�J@���h\u001e=�(�=��Uܓ���\u0012�C�\u000f_P���uBO�tM\u0005��J�x�7�/!�U\u001c��Aa@�u��.����P�\u0015�1s�\u0001��0��\u0019Tk�\u0011}�g�\u0006\f�\u001c\u000f�W\b\u0011..�\u0018\u000f�V��\u0017\u0017w�>�s�x� \u0006\u0018�ny�l�\u0000—>�{Y\u0000|��2�\u0017���xyB�u���ATUT�\u0019��ڞ\f4y\u0004-(�\u0016\u0013eb�u��7�\u000e��P�\r'�36�[L�\u0007�O���4M�\u0003�מ\"�@�\u00139��U�A\u0012j\u000b�Q�n�l�.�H�#x�7�����w&�o���\u001f۰&L����\u0006�\u0001�AB�\u0015�����y�[Hg��⒯w\u001b�\u001a\r�f�^5L\u0016\u0002�\u0017xX-\u001b�\u001aج4\u000e\u0005Oݠ��A�%�\\��Ϡs\b\u0006~\u0015�\u001b \u0018:�\u001d�P+ʹ�_��gʟ���\u0006шS\u001b��w��W\b��*\u0004�!�g�\\����zxH�C3X�\"o��6\u0006���U*#�3���\u001d�\u0016�$�\u0005��[��J\u0005o�P�a�\t�^2\u001d��\u0014�\u0013�v�\u001d\u0012\u0013�2�}�\t@4����\\\u001b'��R!}���\u0005\"\u0017΢B��Ʌ�3�n���z�\u0003y�*\u001c�nk�M�KOr\u001a�q7�\u0018͇fC�A�\u0007Ou\u0007��<��gpB4zk\u000f�k�N������\"���c���nѕ�@�-&q3����\u0004,���$ⷚ�\u0001�\\�{��N��d٣AF�\u0015̀��\u000e\u0007�-nj��X\u0013�ks�Q���y�1��o��Z��\u00026��/\u0017QI]\u0016���\u0016&��\u000ea^G\u000b��9w�u���s[�_�\u0019�$\u0016���zX��O�C�\u0015�� )�\u0000�ܯX���Aqeh;\u0007 �\u001c4�)�z\u000b����\u0012c�`�y#���~B\u0018��:\u0014���\u0007Iq��F�VO��O掙P�zFaQ�x�B�*�v���S\u0007�2�r��Ծ��5Hz3X�U�*ۣa���R���s\u0002��\u0010_���\u0014�Sl(.�|r2��L��;5���\fx\u0006�0��:;b�\u001a\u0004��ږ�qBG;�9º�\r�h%4�D�ƴ�s��\u0018z�h6b��o/��Ø�̗Yx,D��;��8\u0010(Er���1�8?\u001cW9\u0017�4���Y̞�C:\u0019Kŏ)�+�=�����blh\u0011���\u0014LCC\u001a�\u000eI��F��Tf���\u0018p��X6�M;��0��,Br�u\u0003\u0015��q��\u0003\"*:wz\u0017@3�\u000f�F\u0019\u001b�&��VR%m\u0017H6c>ޑQ�%\u0006\u001f�ӌ̮^\u0016�L�\u000b\u0005�\u0019g�<��\u0000B��\u0011&�\"�\u001bz�J�5��aq\u0014+0�[\u001d�v\u0014t�R���j����9Q#/�t��Y�|�u�ݺ����k^�\u0011ʁ��{DX_u@\u0013�����K@�)\r���U\\͡�\f�L\u0001��\u0005]��5 \u000e\tR\u0002Ei\u0011�]XX�d�\u001ec�b�\u0017���ӳmm���$G�iR'�\t��ܵ�AM�\u0015��L֩/�H\u001dxHM���Y��!��\u000b����\u001368�\u001b=��f�����\f�\n�C�\u0007uqH�?gVH����\n\u0003��H���[\u000e\u0015�G\u000b|�o�\u001c�\u0005t�|\u001a��\n\u0004\u001fD��:�\u0018:�ך��ʍ6W�Q�ù�$ʤW\u0003S\f$�C�>CƸ��xմo\u0004_�1\u0002ԯ�U\u0014�J�pE]���\\���\u0007��\u0004b�\u000e��\u0000�'DAZ\r�]��~��3̨�Ͽ8G3�;#�?��LP\bԉ\u001bq��\u001fX��I�-���I� �ȷ\u0015�#���\u0007�Wg�tD��}�Y\u0013O��D/P5Ҟ�\u0005��6a�\n�\u0013���%���9\u0004�EOdh`H���e}Fn�=}M@i)��\u0005w�}h|�\u0005ᓄ�@�[�\u001eN�=�f��uY\u0006Os��ui\u001c[�AH�\u0016\b��.\u0014-\b @��m�\u0013\u001al��·�\u0004��\u0000�rD�\u0007H�ha����{Q�1׌X��\u0013f����.��ӭw\\,�(�#��ԡ��F1�T/�����6_��\u0017��\f���\u0013\u0017z�ř�Q@\u0005`N\u0017�\u0013}�r���{�|�Lً_Nzr�X\t\u0003��\u0017L�V&�T�V�\u001cNN0�\u0017]� (_ZЙ�I�2(����͐Ƙ?Py.)��G��*\u001a!�d�l�\u0013Z�=�i�Y��s��L\"/d\u0007�`��6뚫\u0007��n�\u0013�F�\u001fOB9�*V�\u0019�=))�,�;\u0004�m��9�����\f�-S;t\u0019\u0018�\u0007Jѫ�\u0006��\u0005������X�[Y�\u001b��\u000f �mE[l\u0005꯴t2OHa's\u0005�Ti���_�[y�\u0002vC��t�=��aq�ڣAh�\u0016\u001c����̐��xG�B�Ds��o��f<���j�\u000boJ��BdZ�k\b\u000f4*N�qR-f��%NƜ:�'V\u0002\u001f������\u00133��ğ�j�\u0015���|�WQ�E��P֫[FĄ\u0002�z?7��\u001e���Iq�\u0004��j�Y�\r�G�r��[�S��Z+1\u001aMu��\u0019X�g^q�\u0007�8���M�j�'��/�y4\u001e�SF,\u00044��\u0007\u0003�%>E����_��y��g�\n#�(j�isU�F�\u0003[�fy.�\u0000Ι���e�߶���~_��hoH˔�\u0019JޕS�8_�v�I�\u000b�cG�\u0017�J�B��\u001c�{M�\u0001\u0002e\u001d�� w���c.\u0004��k�Bhp\u0011�SL\u001c�\u000e�>�]\u00175\u0017��gnNီ�N�VA�,]]\u000e\u0015O�fJ�\u001dĎ��z1��&�\u001bs\u001a��W ��f��H�N6RHf��?h��A*�\u00160��X���\u0011�4��.�n�\u001b=\u0016�D\u0004|�e9x#9�W\u0006\u0017�^@��0�\u001a�7\u001f\u000e\\V�\u001bk��6�7�M5\u0016��~��0��\u0012Cpbϧ��#\u001e��\f\\��r\u001d\fc�\u0003}լ��r�\b��1��~P'Y�|�\u0004\t����ڷ�����C��S\"�I�ڤ5���6�,�����y�Y�L�8�\u0014Bt��U\u0010����\u0014'\b��\u000e�e���9>�/,��!ݫE�S\u000b=\u0007�\u0010�-\u000es@\u0010>X�%�pB��Z�����B��\u0006\\\u001ac2��O6�\u0019\u0007�f�–�>��X��12�\\�Q\fb\u0017�F\u0015�J�����2�\u0013\u000e����SSV�zm\u0016D����M\n��\u0005a�V��r4�\u0018��I&\u0013\u00129��q��[}S1�s!�u�锁�r�\u0016\u0006�\tU8��,%�ւ�\u0007\u0012Y\u0007�G0��0]ΐ�)`���\b\u001e�ɪ������놤�����\u0000Hã�i�\u0013�\u0002�\u0004*0�L���\r\u0012�A?�\u0016����b\u00054V��#��\u0003�F��C\\9\\�ω=#�y\u0019�DG�\u000f���Y�\u0014���\f��t����\u000ea�\u0012%��\b�kS�K�6\u000f\b9�/�fu�EBȃ����\u001f]W\u001d.�tFÖ�P!�j�|4\u0015��6\\�2j�*���\u0016�v\u0007���\u0018H����-�Rl\u001e\u0004�A����`Jv��\u0016����Z�\b�H\u001f�\u000e\u0007�\u0004�@'κ�h���U��W������32�5�`\r����F2\u0005)FA-A\u0006�9L��;=�R\u001fF�\u001d<��>�\u001e(pJ{�ݲ�\n�%��Y.l���ִ�bE�����\u001f��\u001e�b\u0005A�q�r3�v_ͷ��3�\rŪ�\u0014\u0000#\u0016�bp�r'~��]�mG�~�u�2ϲ�#��-̰��~�5��x�{.\u0000E2\\��\u000b\u0001;�@\u0013�6�A>�\u0016����\u0013H����\\��ӘI�ɂ\u0007D~U\"\f\fb����N�2�\u00006�A�\u0017S\u00186��+��oG�6ve��UO#*\u0004F�J1��5]�-��\n���\u001e���d��;`��)��D�Ԛ�?swό�\u001f\u0017��3@�\u000e�ԋ<`*C�¦��U�:V\u001e܂Ǭ�)=�\u0001̅��<\u0007\u001d�>�i\u0000��T�Z�a�\u001e\u0000p��vگ?�G-Q2I����1�o������.G��J���\n9��\u0017�T%6�z�\u0001|�L9́�.}\u0005:U\u0015;\u0000�ݟ\"�\u0013JϮ̛��\u0012�Y�S1\\�&�W=|]p�=�a��%�������̈/��gX'`\u0003S���}�����\u0013��2 ��&��2�T�ԑ-�\u000e�w�ћ\u0004�Q\"4�A/�\u0016����\u0016��\"��\u00152�\u0017��m��E�\u0001)\u000f�\u001f�Q�\u0001$_k_|~�u�l��zt�ް�Y�z\u0017��3g�\u0001�����L�q���N7<�|&���t9\f����>%������ʽ�tI_\u0016\u001d&���xNx{ߝ���\f\"�wW�A�\u0005�c8a�\u000fP|�-[\nX\u0000�]�l���G�\u000e��B���,��;��\u0003<}J�;\u001a\u0002u\u0019i�-\u0006'l0t\u0001\f`�=��S����r��3\f�@����fÛ\u0010\u0014�\u0019,�X�á<)�K�~H�����4��[Ղ.��5��\t��~\u0018�GU�\u0005n�o$�W��x�\u0003\u000b��X�q�7ס-=�\u000f���p��\u00104�#���C(�|�A�AE�\u0016Ѐ��\u0015,\u0016*_)�l�}ʫs��ߑ䀎�5j�\u0000�\u0010�Jm$�#��}:�TIEp\u0011U�۠\u000f�E/�7\f5�\u0000��+�K8d�u���FK��T)4Ү\u001f]��-\u0012\u0000�l�S�ӿ��#��$���\\o䰎�\tc3p\u0003����!;Y�\u0004�\u0015\u0014b���\\\u000by��Ƨf�\u001dF�{�\u0018\u000b5#\u0006ęI��#:\u001e�\n ���\u001fc�\u0018\u0000��3�dz;T��0�v�7����c\u0003�\\�so���6�(A�J~�\u0018dwp�ƺ�ъ�\u0018��\r4/w�a��a��Y�W[�|�Qi�O\u001b���#OW��Ё\n~\t���\u0015S��q���V\u000f�R�ݳhK��qQ��wõ�υ�\u0019\u0010{\u0015�U �tTN,\u0003�,����:ݨ�n\u0006\u001aD6�A~�\u0016���\r�f��|\u0011���LXJ:����H\u0007\u001c]��쫱(9bm�E�w8M|\blj��7�\u001d����D��\u000e��=�p[�0��[#��`\u0015�5��/%\u001d\u0015z|�[Ƈ�O\u001c�\u0010�d*�p�n��1��Eu}\u0002��s���\u0000OO��g��h\u0007]�a�\\\"\u0001\u0001��\u0017�V\u0017϶�E��z�\u000f>wgN�M�f��Kb�t�\u0015r��F�PӍA��~N\u0016��=\u0010�㉧?@\u001b�lμ?rN�M$�9��)x�\u0006^�a�}Ss���\u0002�]R\u001f�\u0016�\u0006�k\u0004\u001d�}q�y=�.O��;�H\u000e\u001d�K=㛁w.�\u0006ɂ�l�Z)!��\n�\"�T�+�����٧\u0002\u0010�\u001d\r6�k<��g�o\u0001,�H:p�3T�=\u0017ˊ��_�n\u0017�\u000b�$Q�n��d¬��|y1��3\\�m��\u001d$�s\u0019�\u0003N����\r�\u001dڙ\u0007��\\Ȗj�א�Y�A�\u0016���M,Ma��\u001a��)��Lj�KC�r,\u0005�5�\u0005��o��]j\u0018�4�~\u001a�\u0007\u0006@�) �\u0018a�&xI�\u0000F�Bh\u0011ܴk�u�N�tw\u0001��i��\u001f0`�؞^-\u001e��d[${�accȟ=R$��r�2\u001dz�\u0000\u001e.�n�`\rvY\u001d���F��H���ǘ\u001f�h�(�-�|�Dx��;dZ*��k�v����\u0007סL�9�/\r�~CҠ�KU랑f*{�N�\u0016O\u0012\u000f\u001a\u0014�`g���m\u001b}`\u0017\u001c�s1�X����O0\u000f�lF���~[��!�+x)\rN��\u000b{�n�>\u0013�\u0012r�2hA5�N�^\"��V�l�C)gB�!�\u001c\b��Ѥ��\\W�݅_��<�^�\u0002Ù�%|�`!}�i4\u001c���t�7}���ڣ90���ɡ!�_o���E����w�{\u0005\u001a�kC:C\u000bjX��眐ui���O!��i���\u0006%��F��}�A1�\u0017\f��L�'�w��'����3�W��\f��vl��%\"S\u001c\u0007��fzV�\u0006�t���\u001d\u0015�t��\u000f��E�$�6�\fj\\�g\u00199]��\u001c�Dg���\u0012�;����RM=��[ױ��ɶ��c�\u0002�f��\u0005N\r�+��^���P~��?���>�_N��j�wW�I룡$��\t\u0017��hv�\u0011=/�\f\u000e\u001e�\u001fL�!�zيm�2�\u0017�D���r\u001b*^��\n!�m����\u0006l\u0001��i��Ph��|�\u001e5m�g�ٞ�\n��4ge�[�o\t����Bi�&ʤ̎\u001bl\u0007��?O��n{��-�'�\u001f+F�*X�NJ�P���Vă\u0002��\u000e��6k���ٟ\u0005\u0015�/�\u001c�΁-_3J\u001c!�i=R!x�#^[����ER#2<������4���J_�'ǘ�9��x�X\u0013=��������jC$\u001c�7�\u001d�Nj�g̑��s3H.\u0019#tQ\u001d$\tG���@dI\u0016��K�6�=\u001c�s����.�\u0011\u001d�\u0000�A)�\u00174��m�<��g�%�r�n� �8�\u0006x���l>�3%�P$|ޜҚzt\u0001��P�xE�ul^�\u0016�yr�j�\u0007��m�s}�R;»�=\u0004[�%���T~��乘����\u0015\u0014�9\u000b�\u001d�T\f��)�Q!]\\�W�\u001a\u001a4\u001c��\u0017\u001d���*�\u0001\u000e]\u00172\u001e�#�\u0005\u001c�7%/ѫ�\u0005\fjmvA\\�x�{(r���!�Q��Jva\u0005\u001c�lV�!��W�/<��|\r�H��8��E���223:�j��\u0015�\u0018I�-����sI\u0011\u000bO�ŗ]25�Йc�Sz�U�'\u0015s��}0�߾\u0019\b\u001ceٔ(��Qܹ��uSF���M���\u001e�Qf}&SK�\u0007����\u0019��Gf\u0000�A5�\u0017H��L��e%fW�.։�e�@�OsN\u00141�&`t�p��(��\u000bidE6�����&UΨo��nd\u000e\u0001*�m@0\u0011h{z��~�%W�D\u0013�_�:-Q\u001c�<� d\u0011����.�B|\\;\u0015ׯ�n7�.{�ڭ5ު��^\u0013A����>t���\u001fJ�q���KL�Y���Ez�J��`���\u00134�\u001a!X1��=m�Z}\u0019�\u0004�U�U���l\u0003\u0003���Sp�\u0017��\u0018`��^~���b:2ֹ\b�uLv\nY�����l叚�|ܯy���o۾\u001b �Εq�Z�+��=Er��T̅�%�2$��(|%��(\u0002��\u0019ul�\"�g\u0001�.c��*G��c�\u0019�,r\u000b�\u0016t#)�\u001b��\u0016�BI�\\�[�AZ�\u0017\\���s�ʦ�q4*۝���gz�\u001c#��!)5��{b�L�l!d�\\B����Ƹ�A\u001f�,M\u0010�&!8\u000e�2\u0006A\u0002��,���q��e��\u0018)W�9�pq)r��D�\u0012���pL�,�7�I��O\u001aQ�\u0014�y�S%G�{��;7`�ߠ$�����υ!G;��\\�^���=(�\u001a��\u0019�\fSR�=���\u001a�\u001bb0�U\u0007}�@�����mT'9����==ʶL|1)�4E�|�\u001a�29;�7�IZ5�ڶ`�V���h\u0012���\u0004�G���\u000f\u0004ʸ���.�'��B�ۋ�m0�\u0007�`���7\n%3�xs�]�[4��\u0006!�\u0002\u0003\u00143h���\u0002tl�$,w}\f��\u0019���\u0018��\u0019��\f��Y�s\u00043-�ȦC���,��\u000b�t��\n�\u001d\t_Ue\n\u0010ٔ�AZ�\u0017p���ZD\u0002h\u0016����* Ǫ�\u0017�n������OP�p��4��\u0000�-\\^c����O-\u000eu—'����ӽ#s�d�����\u0004*��]�b}�ƍ���R��Z��\f����Fw��\u000f 2�h9\u001e��^\u001e�\u0012��)�~�����̼�v65j���\u0001��\b\r�&�[<�\u0014\u0010�T]��n\u0000o���K�]��d���a�����I}O��D\u001b�[������% ��U\u0000 �U��h?\u000f\u0019/����f^y�\u0004�\u0002�\bS\u0016Eg���������\u0014;�����\u000fj�Y\u0005�U\u0004o�/�K^\u000ec\f�֠[\u0011\t\u0013���V\\q\u0015�\u0000\u0002�~N�RsO�C��\n]p�\u0000ڻ�l�Tv*\u001c\u000e�f�_\u0004�*�]d�~���*��=�b�\u0003�=d^5�x\u0019��Y�� \u001b\u0016B�&��-���1z#W%�\u0006��J1u\u001b���{��\b�Z��E'�2'���\t�EO&쓢�6}%�R�}�e͆�H��X������G�\u0005���\u00065\n���],��Z�\u0017�).]�].*��3�����N9ɉ,�� ���}��J��H��[�*��?�BP��ԗuЧ�Р9%,lH�^O71G`��R?����؉\u0017�t�\u0010�-��}��3��Y����13�(�M�SiuRKpNh\u0005D��'ܐ�e��{t�&1�\u0017�\b� :��ꍮᆊK��کz6�\u0014�v�zʋ\\D�*(�����-6J��>\u0017�U\u0016�\u0007���{�\u001bleҏS�-l�H�'͓�=���Ad�\u0017����fEit�zFz8�F��Ӱ\u0000\u0000!\u001bIj\u0014�'�t\u0006@c�)������O�� 7\u001c\bSwn\u001a�[F\u0011�x� �)x��Y�U\u00160U\u0019�ˉg�X���ln)\u001e��-�l��\u0010�w�l?��IY��\u0001\u001cuYߛ�T�⌮Z���W�q\u000e�*�t\u0007J[�A�޻�ol��N\u0018�JJrJׄ��TY\u000b�\u0012�3\u001dHL\u0002�z[v.�Y�#\u001c�\u0010K�Kρ\u0019=i�^�k�\u001fΦ�\u001cCN�yV\u0006��z\u0002^��\u0007\u0018�)�\u0013Gć\u0019�\b��=b�\u0010���ZN�Ӌ\u0017\u0011H�TT�Aʋ_�1PR[���JS�33'^�]�f�ђ6�\u001d�m`(\u0005&�����O\u0018(�\u0007\u000b?���{��CQG�,/\u001c�,����>}��T���}\u0006\u001e�y\u0015\u0017�p��������$��x�l+\u001f���\r02���AZ�\u0017����j� \u0013z�\u001d��Y�$ �\u0003\u0004\"\fC�,)o��\u0015\nw�\u0003\u0011\u0003�$B2\r�Z΢/�O�m<\u0012�zH\u000b̒\u0017�\u0010��\u0002�+4ǸC_��?й\u00069\u000b8s\u0000\\�Ϫn,%��\u0004K[�푘ˍ\u001a.\u001e.�\"{�>��c��`��}{��\u0011L�-$�r~�v\u0014\u001f&Ly�)\u001e.�\u001c��%\r��tx',x�ϡ�!�Z�N�*tƦ\u0019�pE�>���\u0015���,��H�?G\u0016x����\u0016�(��3H|�-��VEq�_�Ҿ\u0011i9F`�YZ]�()\u000b\u000bF�*�X�$\u0001�\u001c2�\u0005�=�}v�i\u0011�?B��/�;S���\u0016�Id��]�\b�\u0013\u001f��Ikap\u001f#��mL8ɨT��E�!�1]����ib\u0016z�):E=�K��|\u0016\u001eIB�%U�\u001e\b\t@��� 7�\u000f�v1\u001e�\u0013�As�\u0017Ԁ��Z>�uK�6��Y,.i��\u0017���V�\u0003\u0005Q�k\u001eP�o��^��\u0001q;m�]*\u0005���\u0015��9��\u0015K��OZQ�8\rY]�|�d�h�\r�Q��\u0017�i:��\u0006�\u0000Z?�T��U�B�\u000b睐�-,�?bN�LW�E�%o-\nHN��i(0���V��2W�V71&�4]]f\u00014�w0��3��脈\u000f��,\u0015(yV���^2e��������07\u001fV�Ϥ�\u001f\u0007��A\u001a��T�B����\u0010�Rwg�J���E\u0012��N\u0010\u000eA_�5�\u0005B�6�e�Sn��\u0001�\r���Dx�\u0018ث\r<�\n\\�:�x���'�j|��r��I\u0019�\u001a4��>0%\u0006\b^�J#�\u0016�ħ\u001e|���*���hg�3�X���\u0001�vg!�\u0016�\\،V���J�\u0000/T\u0013\u001f\"\b�uʳG��Ou?\\\u0007��KuP�v�Y6�dZ��\u0013�Aq�\u0017���s�gr\u0012��ƣ���\u00183�\u001a\u001f\u001f\u0018Z���\u0001�\u001de�F���\u0002�;_PO1�i\u00058��\u000e�V\u0005v49�o�~��6�\u0005�\u001e!z�~�p\u0019��<�C�c\u001f�%��]y'�E� ��$[u�8��i���������t�Z\b\t����r����1rX���\u0017T��m�른�Bc���$��8\u0014E��٧��H�k��\u0018��ǶO6�ϐY�()�U���K�\u0007\r�� \u001c�\u0015�}���EA52����\b�쐉v\f��\u001fľ�͗c$>\"��`\u000f�$`ya\fb*�\u0015\t/����|����]�\u001b\u0010:�5b�\u000b&��ѿ��\u0000E'��\n\u000fH隠L��jP��\u001al����݆a��-F݈�AT�c�<\u0007,�>\u0017���O�9\u0015�{]\\�o�r�D%la\rpN+h�t)Rh�A���xN�[��\u0013�Ai�\u0017����v\u0016��ߖ\u0014\f�\u0010i�f��\u000e����\u001d\u0011���6�RW�0�\u0012��\u0011�$�^��?�F����ZK\u001e���\u0006�u\u000e�LA��:\u001f�\u001690&����Ya��Dh�h�@��HA\\\u0001��/jSABx�`E�\u0002RN�ct��Ņ䵴�\n6��KN�N�G\u0012��\u0013gU4t���\u0012��:�\u001d�]�����[\"�\u001f��L\u0010��(�V\u001a��\u000f{��H���\u001c�M@��:z\r��0\u0013SA����>��ݘ��7�C\\G/JY��Z)\u0013�A?�\u0018$��X�)�wN&�\u000fOź �\u0012~��wf64��E��Qz-\u001e9�)W\u0019w?ߖ�f��w\u0017�θ\b����O��q]�\u0005�1��`\n���˥�DDF�\u001ex-�����h\u0012c���~N5\u0005����Rm�O�\u0005�Ԟ\u0015_ȟ\u0006;mZ=i0=]�>\u0010kL�����\u0018!�9�ׁ�G��5O��4٨#\t�4������\u000e*�(l\u0000���\u0018�k��F\u0013�6���\u0006\b�63B\u000b�)\u00015�֐Ց��:3�M<��Z���I#mi�4���0D<�/0�\u0012\u0013\u001bT�ZGn�\u0002>�P�@�.\u0018��kt�|\u0004�|������O�w�#�����X�Y�RJhAA\u0018Rq��\u0012�_�\u0004/�,�\u0010\"\\&_��\u001f�cTᙉJգA;�\u00188���m\u0018�o4\u0010ޯmc��.'�\n���e-��PG�\u0016+�\u001e�8�&��^�\u0006�Qѳ~ń\u0001Y���c��\u0007&�]q��\n7������bW�`��@�ֆXB�p��&�HŢ~V�,m���]�\u00123��CiM�wV���~T\u001f�5%s�c���eb���\u000f�\u0003�\u0013\t��\u0015�|fx�Oc�\u0007��۝��sr�\u0010}ԉ+�&�E�\u000fu�n\u0000Җ}B9��\b\r\b���@�,0i\u0012!\u0000̋���nV@w����}��\"\r�c��� T)f�|�>�[�\u0010�Ґ�\n�\t��;A2VOQ\u000eeY\u0015]�{�\n�?s!=��1������\\Sg�zg2�\n?��Ҽ���S\\:\u0018`��\u001c]�*ǀ\u0011A\u00134V��A4�\u0018L�����zxT�3���N~;\u0007��\bA���\u0005��>Ā�\u0002 �\u0000q�,E7�\u001d���\u0010p5\\�=I�\u0004<�&�U��,���m�0\u001c\r�)�ה\u0015����\r\u0011\u0012\u001c��4^�ŞqB�|D�&y&~V�\bw��N\u001d�\u001e\u0000�3��Nc��L�8ή��ˆ�u\u000bǞ\u0000\r7�\u000eU//��� zK�[��F\u0005�\u0006����CO�M\u0012\u0011@�A�\u0001��H\u0018���SQm\u000f^�\u0016�ó�\r豎մ�\u0000\u001bHO�D\u0015Z~��\n�t�G�\u00019{�\u0018��W���Z�����(\u001d\\N_��\u001f��lY'�j\u001f�ښ��V&���\u0017�?�9�I�QgF�\u0010��M��\"��;=\u0013���\u0015����\\�F�\u0014��<��\u0000z�A5�\u0018`���c�\t\u001dj��{Q���Db��\u0018ȕ�����3)Us�!�1�A\u0005��\\�c~��\u0004��r\u001bw�?��\u0014�>ݣ��Z\u0005��\n��Q~�-��\u0002Y���ֈ\u001bx.\u0017���P��fcN��\u0000\u001e\u0014�����\u0005�}C�\b��g��G\u0011P\u0000B0\u00010'�<���~�ms4���:3���9\u0019f�\u00117�h\u001b�Έx�Qt����8JNk2\u000fʼ�A�\u0011�K��I\u0019�M\u0013�Յ�?�~Y&��^\u0010A\u0006� X�n*�f�lU[�\b���Vo�z4\\���¹իQ���һ\u001e�AW(NA]6���\u0007bF�E�^k\u0012���]6La*��G� <���P�\u0017�\u0019�*^j:\u0002��6<��m�uѯ����4ݕ�AR�\u0018t��M0��\u001b�Rq��[!���P\u001b��3�#~���/�ފ�L\u0003���K\u0019�u��'K,\u000f$\u0006�)\u0005\u0016�kT��>��\u0004���\u0019�2{��~\"/b����\u0016hc��\u0013\u0015\f�X\u0003H�\u0005ۃ���\u0016\u0017�z�qhs��w��\u000e(��\u0004�A\f�辊�ysNm�i8�\u000e!\u000b�)��Bs-q\"ǂ�?�\u0018�O�;�\u0010%\u0007�rZ|��\\~\b_�Z�u��[�#w3�[\u0011U?\\���-�,j���5��G�{\u001a%��Z_E&B�q�\\9o�W�SY\u000e�\u000b���C4uz�\u001a��\u0015E�-�\u0017U������\u0010s2o��S%���r7�\u001a��oH�\\\u001a\u0016'��\u000e��)�v`�.�v#�p�@�\bh�(�g���ql��/Q��qμ\u000f�F���O�J��m�A8�\u0018����b^���㛮}\u0019�Ed\u0013PM#h��\u0013d\u0018�p\b5C��)��4s�L�\u00190���,̪�BB�[�\u0007\u0010z�\u0003���ȓ�%\u0014�\u0015�yE�,aZ)�5��I�1O�6��5\u001f{\u001d����/�/�\u0011Su���F�]%_*!v�\u0015�4��G�]\u0016μ�\u0016n�75y}\u000ec\u000e�8�<�����@*\u0000�e��\u001f\u001b������m�wp���B\u0006C�upF��T\u000fл\u0013\u0018p0c��/e`\u00038�����\u001c\u0007����J�%�R$\u000eM�q������\t8�I\u000bT�9��iK�,�^@<�B�.�\u0013´v�U�$DzՓ�zf�U��\u001c�T!\u0003\u0018tH�����`\u0012X�P��\u000b�/ԧ\u001a\u0016Yu�[�z�\u0019.�\u0015�A7�\u0018����f&\u001a}�����}�cm�da[��Q\u0006S�\u00008o���\u0004c�\n�Oʉ\u0012\u0002(�S�\u000eڡK�2��e����(�j-�\u0005���\u0003:xM�K��@\u0006`+T1䃤}z==P,��\u001aS����D���;��*Y�b�w_$\u001f32ю�pս\u0001B�\u0014�9�%V|\u0006���^�\u001d�+�_�~&�^:�`#����\u0016z��ͫ�\u0006_�o\u001f{�Cۦg\u0017\u0014�\u000f,\u0000�܉a�\u0011R�{�s���Jp�\u0011q��6#�a0h*\u0001��0\u0016��\u001c35��W|�`d�������c��a��ͼ��)��o��ؽ!d�i3N�\u0019{�2;���O3nQV}ۂ�F�74�W�][�\u0004��\u0013\\��3gW���*��������Dp�r9|�\u0017?]r0�~���3̵\u001d1q4�;\\w<�����\u0011\u0010�;���\u000b\u001b�\f�\u0000�т\"hF���ݯ�[O\u0012.]1}\u001d9Gm��AJ�\u0018���\u0006�sK��\u001b�kE�Gȫj�h\u0005\u0012�q�tq#\u001d��*�\u001c�V��\u000b�X�\u001d\u0019�\u000fU9-|�1,\u0007FMd3�\"\u001b�\r���k�k��q;9��U�[�+g��������8,a8a\u000fv\u0000X\u000el\u000bU2#,\u0003��\\?�;�2\u0005]:ܺ\u001c�5�?\u0012\u0018[\u0001�pwꕮ�a�z,M�\u001f�\f\u001fکƒw����b���X�Q�T@��3)������qd�~3�9=�����\u0015�����)\u0000\u001b�����X���=�\u0013��M圽[7<\u001b�]�(A7��x�>��(�J�C���%�v�5\u0017+_�yJ�7s\b\u0012j\u0003dײ��\u0006�\u001aD\u0002Xyx�_�(���/�y\u0016\u0011(\n!�����l\u0014�\u000f`�\n^�[q�\nR\u001e{�H�q�<�N~8\u0016�*��B\u0001�\u0019\u0000������)�\u0011��'�N�$q�`�d�2\u0000�Q\u0010�\"�ω,�[��\n\u001c�9LmX]�p���\u001d���9�g�酻,�\b}\u0015�Z�����W\u000e\u0010���y��O���ԥ�\\b���E;��>�Zv�A#_\u000f`g��\u000fs_�6��#\u0004�8��#[���|��1[�!#\u000b���'�\u000f/A�\n⎬.^C]��C��_���ő<�w���i��^�3�\"9�j\f\u0015�&G�E\u0013\u0018�ha���\u0018�6x�\rLW_:}\u001e�~\u0015Ѣ\u0018K1\b穴\u000e�:Y*���\u0014�,O�uC�8U\u0013P����M���\u0014n��U�\u0003bT�p�\u0010�e�ܔm��@*\u0004�;�GYR\u0007��\u0005��`�k �:�o�$g��\u0015\u0003W>\u001d� \u001bOٰN�\\W�>�[W�q\\�\u0002�b_E@�\u0005d��=\u00001�\u0001^�\u0005Y�\r�\u001c�\u0003�\fs\b�k\u0003nu�g�K�H\u0000�7��?�G\u000b��܅'\u00044\u000eN\u000e\u001f\u0003[�U�X�z8�T�N�4��\u0006\u001f^\u0019��~+���gbG�f>&�\u0005,g!���\u0015U�}`/\r{�����g\u000fg�p��&�V��9F�I�N6*��GT��W�(v�D���>�Bu��\u001e���%f�������A��\u0019\u0014���\u0006����\u001c[c�#a��.�G�)�%��yK.rT^��sI��G�=\u0015����4�WĹ]�7�c\u00032֞c3���!���ӵ��,ӿ\u0001���\u0002G�\t\u001c�6�U���\bpĴ�ɲ\u0011�ݏt�B�\t�F�\u0011h�}\u001b�\u0015�����i'\u0017/��5~\u0019˓�_�4\"X����G��\"��G2,\u000e}Z�@��������A����2%g�}�k|�\u0016`m���%(V�\u0010\u001c<�ܮ�\u000f\u000b��\u0005���\u001f���������6�y��`�n�т%�͘��?�]�(�=\u0006��N�w�\\̜n'\u0005&\u001b�����X@�kr�������F�?\u0012\u001c�ی!����31�/�0��b`7\u0017�\u0014����Y�\u001c�r���\u0013��Ο�\u001d��lJ�\u0007/8����\u0017�J�ɺʟj���M�T����$1si�nw`��;�g��\u0016����4��\u001esi�������n���`v�`��4�cp4�-�KR\"v�y�.J��������\"I�.`�v4\u0010%\u0006�O�\u001d\u000f�|2\n�Ac�\u0019(���욚��}��A��u�1�֏���f�hg>�\u0015�j���A�q-B��\u00045'\u0019���\u001b�PWg\\ؙ\u001ewz)�Z\u001e��f�=Mw�e)�BK\u0012��=��6�O�\u0010��]/\u0012҄ږS�rx\u0013A�N\u0013���\u0001�b��\u001d,?g���a>Q{9\u0016\r��*�;|@'O4M3|\u001d\u001b�1־�V¿Q\t�|ּK��\u0004�Z��̚�3aU�2\u0017��`�g���F ��Z��f�\u001fٲ���\"/�r����g��b��*\u001b]l����D��m-�Z\\j�o_����N07Gȅ\u00129�0����\t6\u0000+W�\u0010\r{x�Jrh�2UN�!wd\\*�ui鄆2$L��\u0006�\nle=BY\u0006\u0004b���$/��@��\u0006�\u0004-��m޷���w�=��VB��t�MA\u0002W\u0015\r�+�8�|�b�d��Aa�\u0019<���\u000f�}w\u001d�q�����h���\u000f��u���1\u001d�\n\u0018\u0012��s�\u0017V�g#\\~\u0006�\u0015豸��苁\t�\tr�`$9�0�Ο�\u0012�,зF����=���]�����kz\u0018���T\u000f���\u000euD�v2�֝�tQ��m\u001b���ׅY����o(k>17��{\u0011����۵`YD�6W�8�7)\u001c����tP0.7N���*45���~9�:/_�ۅ���\u001ca��-,��׸xыH�z�`MXS0#]!w�\u00114��X��g_��6B(��'O�B��r��^���\f��d|w�/)nm?R��OX��\u000e�h�ͺ�Ȑ�\"��&x�\u0017��k>�\u0004L�F(\f�Oc�h\u0015�\u0007ڼ��%eo\u0001�:��$�t�!���\u0004�Pd\u001f�\u0001�K��[\u0007t�����L�<\n��N�\f�A[�\u0019P�����#]:�8�}y1.���\u0005({�p�A]\u000fA�uH\u0010yQ\u0011\u001by{�����d�E-�T��%�Mw\u001d\tU.\u001eL{��.s�����Jp��aqc�\b\u000e��.ـ�2ʿX�P��^��$q�Sf�&��\u0010\u0011\u0005rM��\u0001�����<�18P�$���\u0006��n�\u000eKK$���hl� [b\u0015K��a,���㹪�kJ����)Q\fc�~U\u001a�*��h\tJ�9�=\u0011K6�\u000b�Ԫ7,\r�\u0011-aϔ=\u0017�y�\u0004]�Y�Ap\u0012\u000b��#\u001c�\u0017I�\u0015��\"GWi�\u0001m�Ԍ'�\u001a-����y�'�u\riT\u001dm?G۔��!���;{����S�L6\u0005���>NV��\f�E��ʃ�Ĵ|-�Į��2\u001c$\u000b��o;-��[�5\u0000\u00105t�l�\\��}&\u000b�Ab�\u0019d����\u0012��g>w�ӹP���MJ\t\u0010i�;�+\u0011\u0005�\u0014��\u0018&�!\u0006��\u0013Wp��(��隐\u0012a\u001e�3;,�ϒ�P�2e\u0011�5L��%ĉ���t�b5�j\u000b`�E\u0014��ȏ�<6\u0019t��\u0017���K��G�Bz�\u001ct�'��W�u]�n�����M���o��ȧ��pB��H�}m��.\u0014Vܟ�\u001dM���\u0003$\u000b�\u001d?�֖ګ\u001b�uӎ8?�ޤ�3\u0000�\u001a�[��0u�#�̓wg��\b�͞+�����tP��X��\\���7Ǔy\u0007+ґ��e����V,ȘsP�P�~\u0004��]���]��W{lƅ�[���cU��)}E4^�~m��*��\u0012��)c�\u0004��S�8��7�W�g^B��K%{�٠g\u00127���\u0000P�l��Z��\u0012��9�g�x��!�̡J\t�A��\u0019x��\u0002\u0018ixk���pE����srF�>\b�8ޒ\b��\u0015��\u000b�;\u0002\fa����-V4�R��B����p\u001b�U�:ӈ[^K\u0002\u0012\u001aa�4;g��~�.v\u000f�=V �4\u0015��vx�K�7�\u0005T�[ȏ�\u0000$\u0013\tд-$��|�\u001f‚G\u0014!x5b[dW��u�)�a\u0014��\u0010c��g�m�R\u0019�x�Z\u0011\u0010�AJ&$Dխ���j�j���*��;\u000e�\u000b���L']@)���ea����x�\u0017�3��\u00108(�b��o�S�\tֽ�(\tۗp���;rH� �T�\u0014�\u0013h������7��\u0016�\u0006(���o��&2\u0017�y�&\n+-\u0004\u0013�I�\u0000/U���.��b��ު\u0000$�CH<���\u0000JK�\u0001r\u0012b\u0006?�=a��{\u0003P���Q\u0012�p\u0000;'޼h�\u001f���;7_�w�B*��H�N\u0005�l]�\u0005�Q��\u0013/�\u0011�����\u000f\u001a\u0003(����5Q_����:t-�V?�l��ƺ7ia���\u00015J��I2��;�C���2Q�\u0006Ť\fe\u0019�8-�7�h�\u0014�vAO�V� S\u001a\u0005�<�j�O}\u0003�$��P\u001e@�1���19\u001e\b$�4�\u001fn��pF�\"S��\u0015(���A��\u0019����+���(����C� �\u0007�������a���_דҔ'h6\u0003��\u0019��7ԯ�\u0019=!\f�\\���Ɨ7D(�OA�m1A�]��۳c)`*]H!�~\u0019v���/���5']0u\u0001��c��?��/�\\��#�\n9�������1�;�I%�iyqL\u000e�Y=�=�*8��ԏLI����a\rx�6�Eն=���1h��L�\u0007�2{t�}�\u0001�~�d A���~\u001b1�\"I�Ǣ��\f�\u0016~\u0006=��d*�`�\u001c�>�+\u0015�~���-x���\u001e�P*��w\r�^\u0014vo�|�3�A\"\u0005;VZN{$��\u000bQ�\u0010Jݲ7��X\u0007�����їv�+ ήX�CQ�Ǎc��oFu:\u000b8\u0004�'B���u\u001f�ų\u0010�\"\u0004��+iQ\u0007�\u0004��\u0000������\u0014N\bѤ1��\u001c�^��~\u000f񉐢���\u000e�,�*�k������J\"w^�y9\u000f(�{s.G���U��vf�\u0001�,�HZ�\u001a\b\u0002��{�Nuk�J�����Ԣ;V@\u0019b��'�s���|���C\n�]\u0001\u000fH�<�y��*�#�\"�y��,d6c���#0�qN�c�\u0011�=\u001dMt����D@f��N���'\u00187b��As�\u0019����\u0004���P��;h��+�d�����q�[��x�~G��I�Δ/abR��\u0010D\u001cI\u000e����D\u0016��, \\��<��\r>�9N�Q����\u0014O�,}k�\u0014�wq_�i���&��4\n��y'��0O䎃I3�UBX��S�;��$?wS�a�O�w�{AF\u0013.���\u000e���k�\u0004�����Z8(`=+\u001e�;��-��j�\u001d�p\u0002��B�\u0019�\n���Xw\u0013���_\"#�.�\u0014I\b[���b�yE�7�X\u0018\u001c\u001c�c^���\u0001��J�j`ܵ�k�s�x��\f��3+̥�ڞԙ����x�F����⸌\u0004\u0011����_�e���a�޸!2\u0011�e\u0016�ůX�{t�<=����kY�\\+\u0001�\b�\u0012����\u001d��0��8tm��D[��\u001a�e2<-+b�ߵ\u0000��!��ɑH�#�s��P�\u000eƌ��\u0015ڊ�Ao�\u0019����)rT\u0007D�n\u0015Sr���L���\n�\u0001\u0000&%\u0004,��3���U�8����(�T\u0017m�OK�k6k\u001b�p#r�γ.���\u001a\u0000�)p\\Ao�L�9\u000b�\u001ehK�\u0019�/�)��^��\u000bSX\u000f��g��\u001eoA~�\"֪\u001b��q;C�P��P�����/�n�KD6WE�n�n\u0014����ӛ\u001es�O�\u0014f\u0016A���!f�j�+�$6U&�\t\u0013@�*iŪ>uK��%\u0007�3\u0001�Z�9\u0019��\u0006��JK2%��p�!�a��c\b\u0014?�?��\u0006��\r��j<\u0012K�=�\u00188|Wm�)�n�=p��u��\u0015�\\�\u0000os\u001e\u0011�{�G:a̭�y�\u0002������\u000b��(��e~#R\f���b.����Rv7�P�?�,�E�\u0005��8���[s.\u0012���Ӈ\t<&rG\bƆ���P_JFPK\u000fN��?t�wG�팣Ao�\u0019Ȁ��\u0005�Dc��FG\\� KQ�k�\u001c\u0012Iz�^�~ɀ\t��Ǡ��\rP���&LJ��QOmP__a�C\u001dKa��\u0012�.[4��C�\ny\u0003S�!E�jUx��%ܻ�@�`�`lE�C\u0012��v6t�\"p\u001c��\u0000\u0000�$\u001bm��v�}F�a1�W\u0015a\u000b�}\u001b�6ݖ*1T�#�\u00057͌S��\u001br�l���d��ь\u0017\u001d\b@DGC�\u0004\u001b�\u001a\u0018������d�OI�\u001f�ik����\u0004h\u0012�hC�L�i�\u0007aH�`!�\tġ���k��\n�L�k\u0010\u0012\u0019����\u001e�[����aZYKY2;\"��j�1��fO|�1�m�\u0003\u0018��R�6H���t\u0016E�\u000b��E�m_\u0018l#�i����~!ϻH��y<&oޝ�A�%�\r�x�\u000b��i�Q\u000f.\r�.�\u0015\n��\frG���l�!�2\t\u0001��ׇ\b�kh!��s\u000e��\u0005U�\u0002\f�Al�\u0019܀����\u00111�\u0018U~�\u000fM��əs];�g��\fr�E\u0016`��P\u001f�b8�����\u0006�%\u001fJ��3~�t����?/O��w<\t,�\u0019\\�\b��p)�a�\tS�m#�Ut��\u0007SeBԥ.s�І[̛p�\u0014���D\u001e�|�\u001c;\"\u0002\u001dQ\u001b�i�����\t����2�f�\u0004�F�ei��\u0004�ԙ��)�B��e�5m��\u00124\u0002�\bs���1��\u001d��w�Y����W\t�����`�H�I��/�&��ܿNX���p2%٘\r�z&��L�5B��\u0006bd\u0014&j >�; vV\u0010���>�0������\u000f>5\u0001�Xg�%pC�_�$>�\u0013���B����/�\u001c;�;�\u0013r��\u0017!�����\u000bY\u0000\u001f(���]~\tckQ�\u0002\u0017��\u0007������И,�ћ\n��Đ<��\u000b�Ai�\u0019�����e�S���GZ���ף�s��\u0004\u0016�xӟ��7\u0016�o�y\u000e�X\u0015D�D\u0010W�eп�h��Ҿ�\u001e�&&7€)�M��;*ha(b*����rG�G\u001ay�u,�ys��;գ����\nE@�o\t\"�\u0003j�(R}�ԙ�Q\u001c�]��`\u000e|w�b�R��\u0012���l����O\u0014�w����?Y\u0006\u0011�͇Kim�\u001a/���r\f��\u001d+ybʹ�?�|R\u0004R�z��b�%�����e\u0000�[�\u0006�\u0010�lM|\u0001�����P]���v����W��\u0010\u000b\u0006#�\u0003\b}չa�7F\u0007j�+��\tk��LԾ���� ����/�bj�\u001f�\u0011D5�R3��\u001e�����\u0004{;�Q��\u001e�a˖\u000f�\u0016����[)�2���\u0014EM�\u0013k���\u001c�2\u0007yĤ�ٷ\u0018�H\n9n/i�Ң��Y�įZ�\"�Gƣ���AZ�\u001a\u0004���d���;Kh�����\u001d��������\u0012���v�\u0013�j\u0013��u\fXt��/i�Fh�T1$\u000e{�sY�\t�Z��F\u0007�ߢa��俞@��c|CL��V�\u0004�ߏ:to���^��74\u0012\fޡ��\u001f\u0014-5A�/\u001a�uZ�r��\u000b�!I-�:�\b1��\u0019Uͬ��)��w�⭩�\f�[�栂�9=j�dD�.��\nIG*�\u001d�]4J�%�#c=��r��M��$��_\rz\u0005�|�s|�\u0014�v�\f�'�\u0006:-ţ�\u0018�Lo̗��@�yb�\u0004A�ҾM�K-�l�%��*!�\b@\u001d\u001a��\fӗ��\u0014�t�s� �Iu���\"��\u0005:�x���\u0012O/(���\u0018��\u00001K�6�e}e�\n�9t���?�Do����\u0000��S0�ܢ�\u0017��c�\u001cb\u00010\u0014\u0005��B,�\u001a\u0018��}�\u0013a\u0002&�#\u0002r{�FW�P\u0005m�K�Aj`�.���W��\r|\u0003�\u001e\\k����6G$�:qВ����N\u001en\u0003\u001ey��E�8RD�~��\u0010F||�8��r�r�\\u$\u000b\u0019�����a\u001c\u0017m��\u00004�6�pBTJ�\u0006\\���E\u0001���/_4,�ͅ��ZwV�x��l\u0003����\u000bˎ���b�\u0015��I\u0015FLm`�0\u0017�\f�^�^�V^�%�F�ߐ���3h�0�`��PHgg\tEh�����NwR��\u000716!�\u0002'e�H�\u001a��BPԚ s\f̂4�3'ς>�\u0014\u0004\u0005�NK���㒒;3�S5�FV�\u001d)���9��9�( \u0005|\u0011X\u0017\u0005��!1�y�{CrS�ڵ�dK �E�_������[\u0015��=��F�\tp�QM\u001cJ\\\bdh�d���k���h�P�1���\u001c��4r\"\u0016\u000b\u0012\u001d�Д�0\u0004�*k�@Z��\u0013\u0010&�4��p>TL�_�Ill�H\u0015��\u001e��\n�\u0007���Y#��-���T\u000e��d�V�\u0010�\u0002~��R���7���Ufפ�A_\u0012��P������ͯ\u001d�K�t-�\u0016��*�B\"�6�f`���@�f����g�q\u0011Q���Z\u0012�\u0018��\u0003�C\u001b�0�k@��{�<�ⶂ({~_�<��!O��k�G�B�#��\u000f\u001bu��ܡ\b׶���A\u0012�\u001a,��M0�\u0000jvʛ��\u000bo����6�+a���HO�\t�>��Jm�6\u0017k7������1�{M�ᐛhk�����N\u0001�-\u0014��ʳ�����!�\u0011�EM�\b)\u0017�M�1q(��up\u000e�b�>��w�\u0013@����@)̫��X9J�/u�V{��Ǝ�D��ڙ����f\n\u0004��2\tS�C�Ly\u001d��\u001f8\u0011�ݪ�υ,y���ˣYt���\u00190��\u0006���6te3�_\u0019��w���}\u0017l����X�\\��\u0010�G��M�\u000b�)�\u001c`��k�{Tw\u0004��\u0010(�\u0017����e���g��\r���~������\u0011t��Q�A'�\u001a@��X�-k���\u0019\r�9�ʳ�\b0mA�h\u0003`\u0013,�\u0018\u001c㍱ &!�\u0014\f{\u00027�\f�>T�\u0012�${yRXP���\t�Mm���J\u0015��;i�fe\u001a�|\u001c�(��L�U �o�7�S��B��/%U \u0016��\u0019QB*��{G(['\nA8 �����\u0018�;�����BP��\u0019[7N�ݍ��J\u001eΆV��d\"9\u0018��CH\\<�F\u0017^;���*��W�;���\nھ'v�_�C�9�@4>�mA�>���g�^H,?3�4jT�\u0006e�\t�\u0019-;�Ɛ\u001d�O��\u000f�\nJ�O�s9,�G�ů4�\u0017�;!߁�+G���\u0018�X-i�\u0003�\\�[�i?��K�Oȥ��VɣA)�\u001aT��L�\u0015kk�ےα��\t�}TFW�$B�\u0010:�g\u001b�ժ� \u0007��\u0014�YR�CJ�=���=�\u0013�\u0000�eV�S�])\u0016vR`�~i%�\n��7�|\u001e�5*��`�\u0014\u001c\u0007�a��\u000e��O�m�ȏ�K�r��PJ���\u001c�\u0011�\t\f�J$��w�L5,?l�h��O���x��~;f����̂Z�7E�r��&\u0013�v\f\u001c��ji�WP\u0012�\u001e�Ľ��� @�����a4\u00109_���!��\u0014g\u0016G\u000e���w?\u0017�<�hz2���O\u000e� x�)0��\u0015Q������I��e4(Pnʲ�l�RM��Pr���z�h\u0012���%��>H�\u001cM��e\u0003If\u0011�A.�\u001ah���r�x\b\u001b��:�\u000e̵��|��%p�I&��{'u�\\k\u0003�\u0010u|�\u00057�7\u0014B\u0015�sU\"Y��!mpj����j�$&Y�2�6\u001a\n���i,Q��\\uMuTM=~�x4�b����}�\u001eI#��U�Hܜ���p�(��\u0003�\u0017`U� ������(?m��s�M����\u0015��H�Sԩ\"Y��t]=���d�hW7�#Ry�ۨ��^�-�d0\u001b\\v�oc��H�^ud#���\u0018�\u0015�a8\rd�\u0014ZF��3�c�X\u0002!f `��)O��(��\u0018\f��:�ےAЄ\u0015\u0011���\u0002���}�-�F�3�t\u0017K���\u0002��#\u000f��R8�Q\n���\u0012�m�\u000bk&H[u����u\u000b�A7�\u001a|���boi8$�H�U�\n�o�\u0018%ۉ�?�7�\u0004�+\u0006h\n#��%���s\b�\u0017f�9�\u0004\u001a�x��eӴIS����'�Қ����@E:̸}���\u000e����-\u001b\t�\u0000\u0013(�P�`�\u001f�\u0014f��d��׆w}2�o\u001cH!�\u0005koM�G�8'����\t\n��\u0002�U��tެU�\u0015\u0019��1��f%fKg\u0002g(� �\u0010��^a��T5\u001d�\t�V�\u0014��������\u000f^Z�e:\u0013��\u000eu\u001b�\u0001�\u0014\u0001nKN�ԍ\u0017\"+�]�7�Y�ɫ�r�5�)֒��Fo�\u000b�5\u000fE\u0010St�\u0001�aٔ��\u001e;\u0002����[���\u0001KBFY\u001e_n;\u0002�ٚ���\u0011\b\u001e\u0016�\u001575;]6\u0001)7����\u001a,>��_��\t�A+�\u001a����bn�5=��S\u0016��p��s��XQ\u000bv�`�Mw.����D�҉�g���>��}E c�\nREXFh�U�<�\ta(g��\u0011FËS%\r\\�7\u001bOO\u001cE'����_�7\u0010�/P\r�h\u0005�3�\u0006�����=:Ő��?\u001b@�lAA�VѪ>?<%:-�\u0005�Y_����:r�M\u0004��%˒\u0005\n��!�\u0001\u0006_�|�\u0007�i =�H�u��X�O,~w�m�G���X\u001bX.\u0013]�<�X�D#;�_&�Qf�h]\f2��ͺ�vE9\"4\u0010\f�\t��\u001d�8\u0014\u0003\u001b��6�#�ž!��.W������I;�,$�I�9N[�G��\u0000�L�>�\u000e\u0000!�\u0007�F\\#���XM��\b�A4�\u001a���L��\u000f�QC�\u0001X\u0002�\u0019pA�dPD\u001eD�\u000eO�4�mS���r�ku�2����\u0000��P���~\u0018M���\u001a\u0010\u0006J����l\u001b�.��&]�X���u\u0006s\u0006_��T(��\u0005ʠ�~B��I}���_�@tNA��cRu��Y2��j�Y�D�XE��0���`��\r�\u0011`��􆟳��ƒ\u001de�\u001f�$rDa���\u001f\u0011sz�@�*=\u0002���΋�\u0002\u00026\u0001n���\u0003�\u0005C���=�� c�������\\�eQq�2�\u0000Ӈ�\u0004�\u000fQ�?�W����g)��\u0000B}�Є�Cz�\u0018:L�����~S���\u0001�H���\u000e�H \u001e>���i\u000b�\u000bE'�m�B\u0017[dI*�\u001b\u0006\u001a�\u0002�G��Hp(�@S�AD�\u001a���M{��\u0001ڤ)��,%(�\u0002.\u0017\u001f.��-�f5����\u001766�Y���j�S9a٭\u001b\u00022Qǐk&�\u001b��D��\u0003N����b���!1�i7-k\u001f��-\u0017��{�ʤ�����\"!7\u0011\f��Ӕ5I�\u0017�\u0005��\\5\\�Ό.�\u000b��/\f�/duYõ\u001a>�L� 1��s��m\\/�N�\u000f&\u0015t��H\u001dd��m,5%2-D\u0007;/US��ґ�\\�:� ^��P\u0005)i\u0005k�zgo�@��\u00027�G�Qyl�OK�\u001f�g\u0002g���Ώ�r,80��\b\rHrϩ�\th�.�\u0004\u0010?��[�I_�w/s\u0016\u0006�\u0018]s\u0001�\u0010��|��\f�{@\\��ĉ�-��D��PTf�Kŗ�ƞ���]�\\+���E\u001cɗ�hB��\u0013�PY�AN�\u001à��mS[Z.xE\n��ɾ����\u0000\u0018�5ϡ���:\u0006�|���PQ��Ë\u0005`����w�\"h\u0019\u001fȣ���\t\u001a����Xk�J��\"\u0010\u0007�hr\u0015�j'\u0007ޣj�=\u0012Y��W\u0017\u0018\u0005Y��2��\f\u0003�/���\n5�\u0007�[9��IT@Q��=Z� ��B�\b�/\u0010�\u0004���\u00188��Y��uA���\u001d�}�JG��?c�f��\u0013zD�&��\u0013\"�����\u0000�\u001a@p\b\u0010O;���\u0007\\��]\u001fYuO����\\���\b�Ń�4\\\u0000�˗���jOR�\u0015��r��\u0012�b�9*�D�-\t\u000b\u001a0\u0015h��>�#���f�p1��~��+��L�M�{(|�\u0000`��J�\u0007ʘl�]�\u0016\\\u0012\u0015߲�وoB�Ǥ\u0010MC��VЖH��\u0001k[����k��\f�AP�\u001a���� :��Y�P-zj�ܘtU����\u000b&<.�\u001f�\u0011�\u0010���.���Ζ`��&\r\f\u0016\u0011!/��\u0006��#�6�:9�ޭ�Q�!��a��Kԍ���}Y����v��V�F\u001f�'�֯��s(�h\u0002\u0000E�\u0010�лL��W!�\u0000\u000e�\u0019�Y��\u0011�\u001f��ȓM\u0000\u0010�L��헭C��޹�\u0007��G\\��5�\\������\u0005�� ^\u0013\u000flb�Ed�&(x��[�~����G����[�=�q\u0004�9�<�\b����q\u0016gۉ�\r\u0014\u001a!�!)��\u0003)�\u001d\u0017�4Q\u0012�)_\u0018'q�L1\u000e�g�żLU�����@�+\t�5\u0017��ck\u0016P+��(\u0017�Aτ&�P=Iʱ�����\u0003���\u00067\u0018�VR\u0001�@�\u000e���\u0014�\b�t�\u001bö8�Tl��u��%�\r�AU�\u001a���\u001d�x�^�R�0����\\��M\u0000X\u000f~�\u001b���Y��\u001f��5\"�a�r���\u0007��\u0000U\u0017R\u001a��q��f�\r\u0016xB��=�õF1��*Ĥ\u001a\u0019d:��\u0016��\u001e��Y���}0߲Ԓ�zgf�\u0010+�U]\u001f�CV}L���\u0006$��^$��,\u0007��|�����\u0001��3\u000e�e\u0017f�l������}�\n%��\nd�k��W��\u0003�8����2\u001c~hy\u0017�-#\u0015�\u0016w����1-b`��\u0017�\u0011�1���\u0002`�ɨ&U�\u001bV����p���\u0006�E�d�[���™|(b�\\b����b\u000b�AL�\u001b\b���+4:�tS\u0010@\u0006�RwUY�r�ҩ���]�>�\u000eD\u0003�����C9V����u�vV#��\u001b�����a,�}��$H���\u0005УN����4x~-�Y#�K&\u001c�b�5� .(j�\u0015.��,>ӭcH���/��wp`\t���p�9��b�\u0000_`�\u0002\u0016�R��\\U��\u0017I$���p�\u0006�\u0014��Q���վ\u0001�H���\u001a\n̈́�\u0000)�7K�#���Ë�d�n%בr��v�Cz�^�\u0000oE��\u0003���0z�\u000b��1tu�;�\u000b�\u0012\u001eBm�V{*�C�:�\u0019�\u000b�L�9\u0006�&�Go���X\u0006�9��Am�\u0002�6כ�\u000f n�\u0003k�sgŃ-\u0018�㔟�N���S\u00027zy���f�\u0019}����o`\u0005\nO�-�\t\u001e�!U5��R����\t�A��\u001b\u001c��Ƅ�\u0019�i\u0005D\b⣳\f\f&\b\u0000绛�\n��ۣT+\u0017S�\u001b���O�6�G��9u>Y�\u000fN}�+�,�WJ;��\u0018��\"sT��\u0001t���vA\u001b�_�\u000bot��cU�n\u001c\u0019ތ�>勣b]����{��˝�[b�d�N�Jen�r�o�j�Us���\\=8�9�l��9��P��$�㐤�oô��֙�\u0002\u0002����у�`\u0007\u0000t���r�jj�\u0010�\u000f��7�y�����<��`a�\u0005��\u001d��\u001fL�޵S�fƊ�3b�\u0002���>��(\r\u0007Pa�\u0014zI|z�6y\u000e�T:n�\u0018\r�Zc����kΌ0���c~�>�-�cJ�����\u0012�W���0Tn�l\u0016uV;����W�\u0019Г\u001c\u001fc�;�/\u000b�Q�]��\u0019�z�[������ݥ\b�+�\u0013���\u0015z�sqh��K��z,Crq �i)�\u0019e��iC|O`��\u0006�y��!\u0019��\t\u001d\b�AG�\u001b0��1�\\:^���\u0016�6#���Nj|�\u0003�x\f��ʝ��\\ \r{��!\u0006`�;�y��Q\b\u001c��`\u0014%6�\n&���\u0003=�3RW\r�BPi�4P�k:Qf�NF\u0019�Y��\u0001��\u0017\u001d��t<��om��s&��F\u0002�@�7��3�y\u001b��o?�����2��70r�g\"A�\u0016�f�\u0006�\u0016F4\u000b-�\u0011���\u000fA[d�\u0007�Nc�t\r����w���ՙ^\u0001��\u0015\u001eK���\u0007x��l�\f���쨄aQ�����r\u0014�}�'��u�b����ˆ�}'�/��b�߲\u001e�\u0001\u0000O�$ܼJS`H��=\u0001\fE\u0004����-�lp��\u0014��%��t���c�{M\u001b>)��r.1�����o\u0014�\u001c���\u00164+HW\to������(s7�r��AՁ\u001bD���\u001cw2�P�\f��g.�l%�\u0019\u0005O��v��T�u\n�q]\u0011\u0000�\u001dT��t�\u001c���c���DrB\u0017��щ�2�A�B�k��\u0011�L�8t�]�)�(�\u0013��\u001c\u0006\u000eS&\u000f\n\\)(�����N�m�����mM�\f�d�:\u0013�\u001eQ��,5�\u0013aj�:���7���1F\np����h�֡D�;NiF�7\u001f*��q(��{�i��ܵ6�,� �٘�\u0010�M����\u0019n�~�#�P��c0���y��m��K\u0005 ���\u001a��\u001b�D���\u0018�\u000e��a��y�\u0019sT�Α�\u001fp\"��{���\u000f4�*p@�\u001flo���\u001b�'��\u0000=�x���\fPmd�)P�\u001dtg��\t��Š\u0003���Ec����!2;�6�\u0010�>>i�w<���.�sZ\u000e��K��7���IJ\u001b�m�ZR\u0013�^<�@I�̃L\u0007p�>6P\u0018�L\u0014�wlA��.�&�S�\u0004shk����Y\u0014\r��k\"����!pfI�\u0013W0]��\u001b����������\\����O��He��mI�s:\u000fnI-\u0013,ux\u0005v;�\u0001\u0019-x�B�Z]��.�(�\n�AL�\u001bX��� >oݴ\u0003(�\u0013E(�,G3��4R��g�r�-�~a\u001d`0\u000e\r۽9�kit���lS��˼y$D\u000f!,��w3���\u001d����I�_��.\u0012ك\u0017S\u0002�\u0018\u001d����pSW\u001eR���mcS\u001d��<~��\u0018\u0001\u0019[�7���[���\u000bG�&�6\f��nϣ^�\u000b[��ɄN�]��W�b!~\u0015�f\u001aÉs�گc9����!���Y�.&�ە�������tN��\f���M�r9_~�ogʵV5����\u001c�\u0001�$h�}�%�ئ��i�eν\u001e��q�\u000eX\u0015���$Eq�\u0019�[�ʉ��~\u0015����\u001d#��rG\u001cP��Z\u000e���t�Ո�9\u001d,���JY���\"�ok�����v��@p�5\u0006PKՋ�b4�#\u0018��\u000b�AC�\u001bl���؁\u0006\u000f��L1�7`\u0010E��\u0004_�\u0016������Ks=�@\u001b�\u0018�1\\k�\u001b,�YS�\t�^�\b�`�\u000b\u001e����cU\t�}g\t�R�'�\b@2�Eư�R��Z��a@�1l�\u0002\u0003R�\u0014k�\u000b�\u001a�/ym�4\u001d��\u0014]\u0002�1xd'r���jÖ�\u001f��`���{#X���tf\u0010��*\u001e�|x\u000e�W�\u001f�����0��9�.���y*����͏\u00064�� \n:�pW�$��rۡ$�\u00051�$\u0011�00�g9\b�\u0000{�Cy�TY�f6\f!��~�g�H�\u000bҞTv\u0017�\u0018O�1~kL9\u0005��[\u000f����T�!\u0002������v\u0012�\u0010�m�8��v��\u0003*�W\u0000\b:���w\u0000�\u0011�\u0006F8�,X<>\u0002*\u0019 s����JL2�/��\u0016\u0004��\u0012ܷ�\u000b�A[�\u001b����՝Z_���\u0013�5\u00118�`;�+~O\"�H\r<\b�>)PY�z)�jo��\u001a\u001b\b�D��>X[U�0瞟�\u0006��$��\u0015�-�&߬���H����h�[�$\u001e�j-Mێ\u001f�#�\u0012��-�\rJʤ\u0019$:��3xKO>R[�/� թ\r_��\u0014\u00017�����&�\u0018m�2^���nz���.k+��6\u000e3���E��\u0000�i�d�Ov�U㒼���\u0011�\u001cU�A�|�]�﹢!Y��3G���Enj)5\u001a|�dW�!\u0002\t�Aj�\u001b���Ā�ܱ����`$�|��ě\tۂq���*��\u0016��g,\n9�卆�P��\u0018�j�\u001c:K\u0003���:��\u0018�sO�,��|\u0002��\u0017\u0018\u0018c�\u0013ڿgЙz�\u000fQ��ži�`\u0013v��]奻\u001d?��\u00004�5��(�\u000e�������}\u0007��ĝ\u0016�g�x�L\u0005\f��O�ې\"�&sZ��0P\u0003�\u000fP����\r����Q$�C��\u0006�T?zq\u0019\u001e��5�V\r�\u0003\u0002�0�u�T���\u0010\u0011x��v�\u001aى�=���F��\u0003�;Q��b\u0011�¨\u0006\u0019w\f\u0005��!��q�^��L�V^�i^��\r��O�Y\u0010����\u0006�\n\u0003E��rx\u0002?�\u0000%7)�ڙ�sn$�0\u0019i,N->�2�\u0006ڡ\u0001fsj�9(fn�48�9�{L`הmk�g�o\u0011��//�\u0013R]�����\u0004w9\u0006�\f�%=\u0002�7��>\t�A_�\u001bЀ��߆K����\fr\n\u001e��j�uE\u0016��#\u0011�\t\u001d~�qޑ�B#�S\u0002�脺��_�9'�h��[�\b���_\u0017�_\u0018�f�wb�?��(�L֗l�\b�q�!��7p��7\u0011*��Ⱦ\u0016\u0016>�\u000b��Q�\u0003A���\u001d\rU)���쓂�d�WY�/�\u0019��PSc�no\u0001W\u0005yVH�&t��C��bq�nf\n\u0003-�P����v��0��4�E��\bC�\u000f�c!\u0011��Z13mE��S�\u001b�!\n�\u001c\u000bai`�ذ�w�W���\u0010�\r�K�V�\f���CՐ(�҈������^�\u0000�@/p��\u0014�w2�.6iɺ�'\u0017\u0010��V)���\"3UgO9��n(�t͂�����\u0015K�Y\u000f\u0010��5��9��`G�\u0000�\u0003N�3IX�4{�'�C\u000b��\u001f�2\u0000�d\u0019�_����\u001c���8\u0004�i\u0011�\u0006\u0003c�����K���\u0017fI G�6F�'��t����8F��vaט�Xr����:�\u0000%�O�\n$�\u0007��Қ�\u0017�\u0006� �c`��5#%\u0007��ϥ^�U�\u001dV/#\u0014�oJL����\f=�\u001f�Y�I��Q���!���Ȫ��/)M1\u0000Ds��w\u0007���ԩ\u0002�2ݲ���Ks9N�$�⧴\u0005�9M�A�z��,�j�#�\u001a�\u001f�o�����\u0004�7�����\u0000F*1�0����Ke9Pv@{;���r]e�3�Ȋ���̒\\d�ex�����8D;�b&?��w�B\u0000�\u001b����4\u0012 ��N��եs��n�\u0013��8�ztX\u0012\"�|�]! P3\"�ԡ^�DT\u0010\u0017��se��bD&�������nQ���w�\"�&\u001e�V\u0012B2Qc��W�Q�����[4�z(ұ����\u0003��\t�\u000f�-���Q\u0000�NNs�-�!O��\u0011?�z\u001e��W�ׅөs_���~eX\u0011��Z�\r�,\u0016ĵR\u0014�\u0002�\u0019�\u0011ɫ\u0007�LO�\u0013\u0005�I�}р�V�#�\u001fV�l�XoW�n��ܝ�P+s��Ww�-�/Y�.A��9%~�F��B~�1>��\u0019gLc\u000bg�4�Y�\u001d)#e\"��>\u0004�,^���V��l��\f�\u001aU�_׀�F�\u0001GmZ�ϲ�\bf�\u001cQ�\u001b��_(���t��\u0017�\u001a�\t�1�+[u9�\u0007`��!�\\\u000bH\u0016ں\u0013�9~ߑ�w�`��nnoq�-s\f��+⳦\u0010#�G\u000e-T�\u0005+Ո�������\u0003E`\r���\u000f�U��¶+���\u0005\u0013*k�)�j�f{��\t��dMB\u0005�\f\u001by�os\u0005{�*���-\u000bH�jզ�D3l�Ф�9a�\u0003��\u0000�?�3��\f�d�\rE\u001d���\u0019��L�!��w\u00192\u0016`p?M!\u001b{6�7O҄\u001e�\f=\u0007�s\u001a�\f\u0019+ %�\r�Bz�\u001c\f��}dҍ���\u0014�#�zh�Q\u0017J��� �z�p?9�?=�\n34\u001a8(\u000e>>\u001c���ԔREf پp���id\u001ef�z��\u0000�G�t>+�A��\u001d^)鱎��Kz��0��6\u0019]\u0001��@\u0007{\u001c`js�ɮ�\u0006Ц�I��=��<���x\u001e;\u0000���<�n�� ��(\u0004?!y���t\n�W1�\u0018!�t���\u001c�\u0010\u001e�r����ku�Ȯ�\u0013�C�8�<\f�1f:\u0002��Dt'}��\u001e&��nC��JKP�O\u0004�Ǘ��'�d7�\u0003J^��'���\u0011\u000f$�@\u0016R�ۯ�Q���)QS19A\u001c�n�.ȶy��d{�e�~'���\np\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000bt[vV�)�����8\u0012���e�/‹�\u001c�[�������@��\u0012��h\u0007�\u0003�}��}\u0012\u001fu\u0003Ƞ�o\u001ev�W���\u0005�H\u0016�\u0006ߘ9�$����\u0013��;\u0002`�\r^s�Ϣ���ĕ�~�F�A�uR\u0002��\u0003\f��>`�KQ��+\u001cdž�N�\u0007�bW�\u0002}'���\u001d�\u001cR=�3�^\u0018��\u0002�7�7��韽�u��\u000e�1��\u0019Ww�\u001dd�#\u0017�\u000e�6]�\u001c�3pW�\u000b�3X�\u0017�Z� `�@.ݪ-�xJS\u0007�\"S�\u0001�S7��k�#O�Ol�Kj^\u001e�\u001f,����;� ��\r����\u001d�$�ƈ���;K�\u000eӧز�<�\u0012��H��W����\u001f�\u000e�{J�،{��I5q���AU�\u001c ��X���V]&�P�8\u0018��\u001bwcwI��1��rZY$\tB\b\u0014�_L�|�?3Px�8ty:7`DӦ>J\\�*�T��b1���u\u0017�p��\u0007E\u0010��\u001at�g\u0001饶`�[�\t����4�\u0011Z~�cG�D���)�Q�\tc��T�N\u0010�W\u0001z\u0018\u00053�\u0002\u0007\u001e�����R�=\u0004$��s\u0010��̔Z�M����L���_�\u0018lF\n���L�B+?\r����R��1_��JcR\f���X��<)�oy�jŽD\\2[)�\u0002�V�\u0007��Q\u001d�\"\u0001U\u001d&\u0019�\u001d��\u001e�&~��6\u0003���|L���;m\u001d������Q��9�e�a�LjG\b\b��7��*�\u0018�1�&��l�w'e\nPT�J�\u0007a�\u001dXN�x\u0004�\"�\u0007�\u001d$ie��\f��w�c��X�śx�4p�\u0004<+ٔ��P�4�~�\tȉ]�)#\u0010\n�\"�b\u0014@']��\u0001�\b\rv���=�������\u001f���*{I[ʾw\r���8�_1B�2���\u001d�{�r�K\r)�o��\u0019�p���iO3\u0006���\u0012@�A%�\u001cH��X�-��ޑ�!B�c�گ��nt\u0014�I��oB�^�?|�\r�g$\u001d��,<��½=��\u001e;�!��LMm��\u0004t\u0003(��=�=P\u001cW\u001f\u001a�#(�˕�\u0015�\u0010�3�W��/\t4�3�ׇ�R�c���V+��q�\t\u0006\u0018�\u0017iε\"D�\u000b.\u001a��\u001eI5jL}f\u0001����2���@IMLw�L!�9�'�>͇��٧�o)�\u001e��\"���&�~P�kO�F\u0007���i�\"�~֟ì/�=Ax��t6.\\�C��Ft%s�\u00069��a�$BJ!��+�ĔF��\u0017\\�Ř� ��+�Bm��)�E!�X�+S���\u000f'�\u0018)jX��$P\u001e^?\u000e cY\u001e�U;\\�A+�\u001c\\��L�\\�~|i�\t�xx��O9J�?�?%ν%�)\u0004mP{�\f9�{@\n�M\u0010��ֿ��\b��բ�LJ�؃�Ex��ɀ�VM��1}�mZF�6NYp��ġ�E\u000e����v<\u001e\u000e���\u0016/��r��\u0006O��\b��+\"�\u0006J��&*�\u001c�mW\u00190�[�q�^�Q`\u0003cQ&:̉��k��B��*3�\bœvĖ�՘�����A�-����\u0001����w\u0007\u001bkF&��\u00059�\n1�,��1h�N\u0011��\u000eGw���w����tm\u0001\u001e�ﵰD\u0006��\u0000�\u0005��Qy\u0007!!\u000b�I�u���\b�\u0012<�\u00115����.˼��Qqb\u0000��v�%�ے?�s�m��-�m�A7�\u001cp���s��\r�\u0010�Lj��\u0019LW\r`س�\u001aJq\u0018㱾���=\u001f��]\u0018�\t��um��9V�X#�\u0006]]lZY�=L�/�r\u0019(�\f�c\u001c�NleÜ\u0019����%:JA��\u000eĢȚB|��.2��;�˿\u0014�\u001fR�O��A��L��I`\u0003V�i�asA�������\u0004�0\u00177��a����\u000eu\u0002b�ceO3H�:�O*{햘�ՄtS�/�\u0007\u0001\u001f�l�\u0007\u0000�\u0016,����w\u0007�\u0006��׋��Y}��}�\u0019،%\u0014�\u0014�`��#7�C�\u0006mB=J�5\u0012j�&&�\u0001+W�c\u0007�E\\\u001fp�\u0004���\u000eў�Ƥ\rR�S�Z+\r�gG\b\u00005JZ�\u0000�\r��\u0012�b\u001c9�oԵ��w�\u0002���\u0018d����A2�\u001c����b���|Q\u0007\u0001�W���O\u000fT/�\b\u0014��\u0017F���0\u0015�����l\u0002�4��E=P\u0014\u000e\u001fnBm8�\u0016���\u000e\tw�kv\u0018�!�0=��_��9_]�\u0010\f�+�z��ϓ�wh�\n�46��G �뜎�٩Wy�\u0019���?ε�gU�u�Ҳ�d~\u000f_!\n�0�,�i'�@�\u001b9clu[\u0005��\u0000�\u0013E`�����Af�6o�̡�u��iT\u0014��܃����R\u001dṏˆ��wP��Oҕh�Ce\\\u000b^}��0q])�8XU\u000e-��*�g�$��$\u0006�mUE��\u0014S��+��\b(��-\u0014���A2�\u001c����cͪp,���\u0002\u0017�\tǮ|�\"I�h�Rѯ>�Nܧ\b��|�>(��荠��Խ_\u0014���G���SF���#��d�9�%���\u0007޷�d\u0005&��f�]�\u000f񙆍u%4\u001e��7X�n\u001cۢu�e����36\u0005\u0011��\ri�u��ڛ����r�]e��0T�}��d��jaif��L:��2\u0006��\u0005�\u000e��\n\"\u0010��Go\n�9n��X�����m����#��8��-3)�m/�m��9���F\u0015�5�\f�����C\u0015��Q�#�>�\u0012�ʁg���z�/ �\u0019F�Y�����d�J�Y��9\u0012y�O\u0013nʹ���]��\u000f�C1g�!�c�O`Y5���i�w�m�/R���A2�\u001c����p�8zw��px��Uz��P����\u0012�e&�0�ސ\\��df1���\u001fz��O�g�\u0016\n�r&P�p���U�ѥ�O����q�a�S�s����Z!�(a\u0006KqN�\u001c\n;!ȟ�F�\u0005T\u0011˜w�@2�\u001f�w5�M�M���|yB6+{\u0003�\u0002ߩY\u00146ǀ�U�\u001f?��* �O\u0011het\u0015��r=\u000b��b\u0019UA����!d�x=M\u0010��q��bV�G\u0012�c��Je�D\u0017D���q\u001c�K\t'w\\\u00027l����\t\n\u0005�D9�E$u�T��\u0004\u0018��\rQg�\f�K\u0007 lg���Z��M\u0015�xI@\u0007\u0019��'\u000f�r�7o��|�[�XR�@m��\u0010\u0004�)��_�\u000e�o\u0015:���AA�\u001c����brIHߥ0�\u0005A��k��qo\u000e\u0001c�tR���������r_NX\u0000�E�w\u000f���\u0012Ng\"D��K�cU�pse1�1\r��h�8��i\"�\u0015��:�5��=\u0016R�-H�'\u0005�\"F�\u000be�W}���,�.�T\u0016\u0019���m�[�9�u�\u001f��;�1ĩ�o5��fl�m�ѐ��+E��p�@Í?�\u001f���\u0018�!��Z\u0003�!XbW-�]�~\u0004�����:5D{U~�u$67\u001aHY\u0002K�\u0013\nj\u0015Xg<��C�o��9�;5<��1ĘL]\u0017\u0016n��2/�gf�Sv`\u0014}�\u001c�Z��,��9�}�\u0004� \u0002�������\ngz/Wa��.��\u00063Y�\u0010�ej�#��\t\u0015\u001a�C�<�l��tl�7��\u000eM�d�(\u001b���AD�\u001cԀ�L���z���a��/��1@�\u001c�\u0001׳[�\\�:�9��\u000f�mk\u000e)��yFa(�RlHLr���ƍ\u0014�}ȋ)�c��&�\u0004��\u0001}-;(�<�,�ψ�eq�����G^�U�|'+Tw\\1�\u0001hy�!9���\t\u0005��%��r\u0017Ħc\u001dL\"\u000f\u0015\u0000=�\u0007\u00199\u0002=��~hD���R�]��\u0001оTUzu��]�f\u0005.?#���\u0014:7��߯BvQ#+�<\u0015��:�\rPq���:�;���x�Qw�24�\u0015�\u001d���\u0015�>}dX\u0000_��,\u0012@4��\u0003\f�=#\u0013dб\u0003TX)A\u001e$�t�/\u0017�ӧ+���{�=@&�.5��S�p\u001dK���\u0003�\u00150��\u0011��\u0006\fF��\u0019%-�Zw�����\u0013_[j��\u000fOڣA=�\u001c��L��&b�-���\u001e`?�\u0002�<��I\u0011�s,F#�\u0014x\u0011��N8���>\t\u0006��c�\u001e]�A\u001a�\u001cud6\".{\"��-\u0007��0W�\u0004�O�In�a\u000fd��-�Qv�\u0002�Qtr.���,������Z�a��\u001c�����LQo\b�T)�\u0002<\u0006�!�\\��H�\u001f��\u0013@���RYu�q(]�����w\u000f�\u001d\u000fH�\u0015���h#�٢�Ґ��\u000ed�Ɔ�D\u001fْ@�{�\u0002�6󦲲�l�Q�[\u0015Ɔ�uؘ��.��Y\u0019�����\u000e�!t\b�|^\u0007�\u0002.Px�e\u0005b\t!�S�@\u001e���Y\u00060\u0007�8�K4'�=}L\f���Ȍsl;�ʛ����\u000eh�k�\u001f�B�b�cƒ�i�������jW0.�A<�\u001c���L�.�N+̺\u001d��2j_J�����|\u0012�n�Eˮl����=�\t�ћݏn}�,\u0018�\u00041Z�I�\u001ak��\u0016¼�\u001e��\u001d�x?�$�p��2�U��V�ɏ\u000e�ʇ\u001d�\\������'Q�Y\u0000�C(�~u��J�@y���a�+_P�-��R��i�)qIn��R/�FtKl4W\u0010�1P�ݦ\u001e�\u0013Ȕ���\u0003������X1;�}�x�w��H�z�C�gX����\u0010!�\u0003\u0002f6T\u0001�/���h!߆\u001d����\u0001�b��\u0000⦤�������kU[\u0011]���Z�\u0003]�\u00161��^\u001f���\u0003\u0013cw��7\u001eڡ.[��xX�/�������43\u0002��s\u0010�!Y,\u0018U\u001a�`�]��\u0004�382PX�]\f�f�Ǵ\u001dY0�뛇\u001b\u0016�n\u001f�ĩ��\u001b-�z3����>D�ܵ�}P#��:J߬�an*d\u001d��l�`gIJ�1�;\u0002tm+�-��t�CT�{h�6N�����yG\r\u0014���3�C���c�v�M\u000bV�\u000e�]SO+�\u0011�n�G�\u0001L�xf\u001c��Q\u0013J�Ћ��|�m�\u000f*\u0000�3��ȃe����1\u0002}�P4[ur�TI\u0012��ַwo\nh�#�t\u0010��xޟy=km��q���W\u0012n�\u0012�Q�,G��_��q��/��\u0015S�\u0010~-;\u000e�c�Vˉ#\u000b(8�\u001d���h���v�\u001a�#�[\"�+\f��!�,�Fy���浓,�IT_�'\u0000\u001ftH�r�R��j�B��Q>G\u001a\u0007Fap+����V/�C�J�����ɤ�#\u000bY\u000b�Ll��K/�xy�@�A(�\u001d$��L��md�b��k2a�0\u0011!��.�b����\n�8�*\u0013\u0000�n\u0010�h�C��&���=�����ܮ�o3���\u0013\f��\u0012\u0006�\u0000*��\u0018\u001a\u0018;4�\u0006Q��\u001c4ey�3\n�3�C¸e����SČ\u0006\u001cũ|�,�~�\u001aB\\����eբ���\u001b�Q�ji\"�\u001dk��Κw\u0003&hN�z�����H����j8)�b����Z��@9\u0018X�P?�x\u0000M�0Ȫ�\u0015s�x��[�\t�A8�\u001d8��۸�1\u0002;������2W}\u0018\u0003���w�\u0017�� ����H7��ݿ�⠼��\\��\b��M�p�\u0017�ޕv5V5UN���f�)�\u0013��@��e\u0017\u0014�Y�%\u0016H;;�\u000e�/\u0002^�9�\u0018Cs����-��KDs4�J���/o^�\u0019��4�]�L\u0019𴈊�[\u0010�\u0001b���s�\u000fo�%�\u001cr\u001e�S�0j܎��ȍgP�r��\u0014rtӋ\"$��|�\u001a�T;��,���'\u000er�kҏ�5!+CF��\u0018�d��շ�А{���@����r^��� \u00149\u0019�\u0016҄�w�~���\u000fW�luW��\u0001\u0016�n�ZUm�q�m�p{\u001c�c\u0011���Sb@�)��x^�\u0006I�\u0012�ANL)u+����j�S\u001f�A=�\u001dL��۷�-��\u0000�f\b=������\u000e���B�\u0014�N�2\b�9\u0019}I?��\r^��\u001d���n.����\u001e<�u,Q\u001f\r�A\u0012\u001dVe\u0007�o֭���\u000b�X<���h��c�%�\u0005}�\u0014?Rn\u0012\u0004h�Dy�&�3֛n��6@�n�F�O\u0010\u0019��)sG��\u001d��{Λ\u0018���+h>Ϙh�(#�|J�|\u001f�\u001f\u0007�\u0015\u001eЦ����\u000b������5�~a�!�/�}d��?������1G�P����v1��\f���Aꂗ\u00127�|�\u0000R�$�%�\u0013��\u0006��:<�d�g��G.�o(�#Ŀh\u000b��V�'��\u0005��2G�\u001en�\b\u000b=�\u0004hF@u2���1����\u0000\u00182\"S9�\u0011����\u0019����T�IIォ��;��v1�z�����rؓ\u0012y��\u0016eX��4\u0011R��H$\u001cх\r\u000f�y��\n���@v}�_�\u0002H�~{���W)\u0015Am#/d��\u0000u1��t�T1�}�ç�(\t+��˿�\u001e��\u0002|a��}t�\u0004�\u001a\u0001������]rm��-�iv�~qn�\u0017\u0003\u00162L\r�îN���\u0005xaw���f\u000b`�\u0012O�VԆ�\n�ð`�G���\f�d,�\f�m[\u0004l���\u0004�Iљ�\rƥ\u0003f0S9�^\\�k�(�(/g��FjD�X=ӌ\u0015�o\u0007�,�{#-U��K=�G\u0013\u0007��r�ĽT�/ i�\u0015�z\u0005jL���\u0007�z�w�e]@ʅ���2�S&*�\u0002(R��\t>\u0000\u000b��\f\u0002K\u0001�X�L�د�E�`=9�@�\nx�qt-9D'�\u0003t�M\u0001�T�0���/9zH�����g��yE\b�J�\u001f�A\\�\u001d���۷�\u001f��7\u001a]��\u0002\r���nX\u001a�ħ�8\u0006B5b���61\u0006�0G�a�cl�\u0004�`�?e��\b\u0001gm\u001ab\u000bȞ$\u001b�0ge �u����|�\u001c�\b|��'^���WU�\u0007�0��p����\u0001\u0002�Ym\u0005_*AF�RU��=�\u0011�]�Y�N���󗪚t�3^z���M��j �?��IC��\b�͹\u0018��\u0001,\u001a�1ms\r�'��¨s:��emoB\u0014N#5~��\nl�(�\u0012����z�\u0013\u0001=\u0007�T�=� \u0017J1\r�o�Z\u0000�w�˝\t\u0007]\\S�z����\u0004�Ö[�3&����#��\u000e�N\u0005r�4���=�o�`j��\u0007�Ҷ\u0017(+阱�,\u0007\u0014���b���\u001c�ҙ\u0004\b�opd s\r���|3�x���\u001c�\u0002\u0010�\u0006K�3#U?\u000bV~J|$��?�\tAaLl�\u001e�A]�\u001d���۷�n�]\u001a__;dʛ�E�zr\u001bs�^�܉����r��y:�b<��>�(�^�\u001c�\r���O�Qd6(��\u000fo\u0015\u0007|~�l-�pr��B\u000bPUP\u0000�\ḃI\u0003�`���\u0012�\u001cO�/'&\u0002_!f\u0005;��\u0019����9�󙦛\u0019J\b\r�\u0005��[��[��\u0013\u0015w��I�ɑ\t\nO0H+6\u0010\\��P��Zf��x\u0019\u0017��Va��\u0006\u0019��\r\u0016�-PW��\\��e�\u0011)�x�U��\u0010�zyō��m�\u001ed������>\u0018g]l\bc��]G����z����Y*Do����L`��\u0019�����ҺA \u0017ᬮ��?\u0002\u0003��}�W�?�u*\u001c4\u0019�L-j�\u0011���=\r�R���\t���u���8�Vc+1��H��%\"\u001d�Ab�\u001d���M'�6Ǽ>7�]��8�\u0017�\\M�\u001c9�+B�\u0005zIÂw\u0001L�\u0010�\u001e�E���UA�\u001d���7m\u001c���,�|�1���I.-�'�Җ��^C�c?�\u000f�\u001b�p\u0013N�t�,4\u001d�NG�t}�nK=/�\u001d 6�^\\�H%��:\u001e�[Z��μ̈��ܶ�9\u001dD\u0010��c�hض�N�\u0004����v�u�j4���x�l>k\u0015MJ�=6_��\u0000\u0019\u001aH��>��\u0015'{y\u000f��Ah�\u001dĀ�M|��頎 �!���,XU�.���$�t�E*�{���=�Huٮ���\u001b��U�zl�/���4�ˌe�@�>�\n�t\reh�'�\u000eڕޤ_a(eԱ�N'��z�\u000e�4�lā�����u������Z-kS\u000f,\u0012�[\u0019�\u0018\u0001�`\u000bJy>6HJܭf��)_r��/\\�:\u0006Z�;��~��u�=Ͻ���\u0019\u0001�x(9��\u0000M4Kq�\u0006�,���m}v�pO\u001e�?��'J``,�)}�y�j!p\u001d��t���\u0006\u0003K\u000b/-T\u001f�\r\f�N�\u001a�y\u001f>\u0014�'\u000e_��y\u00150P�C\u000e�>T[���iђDB��qi\u0018�]\u0019!&o�]\\�l\tA�o�}�����cu�*��ZJ\u0018��\u0001���C�Yɥ��`\u00047ðξ\t�&�Jq������\u0011�8|�?er�\u0007��H�t\u001c�\u0018:'�\f�¶�Ae�\u001d؀��\u0010\\��k<�����\u001dwN�L�$��'\b\u0010\u0017\u0000\u0002GJHw��n\u000fq��'����N{\u0018����\u0002�<�(r�#$=��\u001e�̓���\u0003\u0017�8j�\u001c\"\\U'f]���\u001e(��\u0017`��\rZ�\u0017�%.\u001c;[pn��6�Y���l���\u0003�\u0001Xۦa+�{�_DT��\u0011\u0016�a\u0018�\fX�8\u0006�dS�ѳ\n�#^{I��Z�S�^��\u0010�ҥ�_Ls����Ig�\"\t��\b�����l��y\u0001\u0019\u001ft�w}�\u0010�\u0000�6�L�טe�tu��\u001c��k�����X'�/we�&�S�\u0003\"�y���r�\u0017$\"�fs�.\\��x�h�4a���\u000b���\n����U�\u0001(�\u001c�R\u000f(^�=��3V\u000b(B�b�\u000b�`�ڝ5�Lg!\u0007Z�\u0011sn��<��3�a\u001bJ\u0010���h��㘄���٧!fĔ=�Au�\u001d��L���\u0017�_���`M\u0004Qw�_Eo,R\u0013�A��#�/A\u0006�}�qa\u0013�Ed�%�I\u0000G�����<�[�bJ\\SY�,Z��>:��W+`Z��)J�E�*u��]gR��\u000ec������`�d��O`\rn��\u0005!��ߦG�q�\u001f�@\u001f��\u001ee��\u000b�\u0003�׹���Q��a\u0004\u001b.\u00113_څ�\"����\u0004��jL���\u001b7�\b\u0011�c�\u0002�s��\u001e�6Y\r\u0014\u0017?�y��\b�40�\u00068vCa\u00044g\u0018��\u0016*4��X\u000f�\u0005�\u001f\u0000��y��)��\u0005�8++i�JZ�4\u001a@F�m�Q\b���������\u001cFͨ\\\r�a��|�Y����㟽�\u000f�\u0011�wM���Fe\u0015YD-\u0011\bK��\u0012��u�)�Ѕ��\u0007��;�p\u0019��U̓\fjx�\\�!cuw�\u000e��`��\u000f�nQ���9\\,�*�\u001b\u0000�o|\u0010\u001e�dq2\u0007B�𽋣AQ�\u001e\u0000��.��r��v,-�\u0005�R��@�����A\u0006���\u0019ûF��g���/\u0017�\"°x�\u0018��j�)3ͷp�\r,�7�\n\u0014x2;���\\�\u0001������;\u0012I��\u001d�L��J�R}�1��|�Ʊ��팿��3s� \f,{�D$s\u0001A���ccx�W�z�\u001a\u0007\u0012�X�K\u0013��\n����\r�\u0006���>\u0019\u0010\u001c�\u0010��c�t�|�+�m\\\u0004��_\u0019�|,\t+���Ѩ�\u0001b{�?�\u001d�\r#tU\u0001�%'ޓ�_��D��r��|Jp<.�h��\u0011ҋ|���ԭX7��Eg�,Oҷ\u0019�j.a=?S:��\n�f��2\tD�oB���Bh)�cL�ן\f.�Լ#�\u001e��(/��Cp��#\"��\u0006�\u0010\t�U�Y�s��&�b�+\u001b?���v�K�V�cV_ѣA`�\u001e\u0014��X�=i�\u000f-����{�CB�\\7\"3!\u0003ic+\u001a\u0017�L����VOS`Y���?+�Gz�H��I5�sx������Ӂ6���\u0015�_�+b��ѓW1\u001f��\u001aJ�;�W\ba�\u0013����}��c%�{\u0006�\u0005�5��'s���=��F₼h�o\u000e�1�\u001fYPU\u001a��4��,�ۖ��G�,K\u0004Xf��o2� ���W�}�������M�F�\"R\u0012\u0015�Q��4��'\u0000ǒ�sb���$\u0017\f�8.��A!�\u001e(��XнgeV?�&�YN{�L�0%���.�A\u0010�\u0000�LzD{pA\u0002Ǒ�-wy�2\nݷ1\t��R���Efe\u001f>�\\��F�U���5\u000f�&��̚�h�>yb��][Vc\u000fc��\u0002\u0003\u0006\b���[�\u001e#ӗ��{MJ�\u001cM\"����#;��(+]4o����F �c�=���x��\u0006\u000e��ӥ,Bg\u0005�G󨀑��T�mS3\u0001{�ep�\u001f�-N�\u001b�q;\u001f\u0015I\u0003*+\u0012�\u0007��-6��\u0000�}��;�C�U��G1�@3i��U�f���5,��JI�R\u000e\u0006P�\"$�A\fh�tt\u001b�p3��a��4]beF\u0016�\u001a\u0018�\u000f5�B��@-��n�pz槌¤�A%�\u001e<��L�GH\u0012�y{N)�r6M�,��y��u�*E�\u001cx���T�wJ\u0017\u0015��au�w\u000f�M�ʍ��6�\u000e��#�6��\u001bf�NCN%�����X\u000f�W��r0r��q�\u0011�W�ړ\u0011\u001b�\u0018��uw����;\u001d�������%�#��v�R�(��e�~\b��M�\u0014��� �\u0017�\u001cP^n��Pŏ��p^Z�\u000e-\u0003�ҏؾk\u0018���2yU)\u001fQ\u0004�Ttϥ���HQ2B1�\u000eݸ(��G�\to&'��G\u0004}>�V;>g\u000e\u001bvDuOS^@L\f�vᄤVdz��S[��\u001a�H�G\u000f��5&��j���E�S��'�)��6��ڒKd���'�\u0012��P�k��K�6.�b����;v��y�d��2Z�H�c���\u001em���F5\u00181s\u0007�x��/7���g%�2\u001d̞�1�)�*�A�\u0012d�����T�Bv�G\u0018;=�}�7����̽�&<\u001dD�!;\u001a�A\u0003�\u0000�߈�b��y�^��BƗ��8\u0017oQWc��\u001e��[v9�t+rM�U\u0005�ш��\u000f�ԥ\u0012\u0003D��,g�R1���L4���>�U��D��A4�\u001e����\u000e�\u001d��$��9_�\f�\n5G$L\u0013(?����\u0015��$������'�\u0007\u0019���\u0004�q\u0014�W����� �\u001d�wӍ,s�}y@7�r}W�+�'�D\t�/-\u0016���t���f��M��֔����n��\\�'r�H���� ޜ��i-Q��%����:��\u001a�\u0013�\u0001\u0019V�\u001dě��b�Ԉ���\u0014?��<��>��?5���E������w25��3\u0006ɍDhzÊ\u0006���R@u(�\u0018����?�ޚ�vЗ\u001c3�/>�\u0000�\f���ăof\u0001\u0007\u0007�� ��T����ۈ�i8\n�1LG\\�Á����ʱ�'�!���0�\u0010�0�#ʲ�@�o�U]�\u0002Cc<=\f4�`F���A>�\u001e����\f��q!��of��8\u0015�<[AR\u0011l����5��g�(�[\u001c&���>�p_����D&#E��اw�����&\u0018�v�u���1��\f�\u0014�C������\u0017)�u\u0014>;���=�\u001cE�>L�Ti�\u0002\u0017�(��`���[�ܮ�\u0017*\b�ԪZW�o7\u0015���;\u001b��,�\\V�|Q�$��\u0018Z,�>�:��h�\u0005\u0012D\u0018�4c����[xՙ��\u0000�!��\u0018����Ӛ�J\u0011b��\u0004��l���|�z��t��4~2Q�Cՙ\u0000�[?,X�r%�vY��\b+��A�a\u001bz�qbZ�\\��\fV1rJV��2͘T\u000f.eZ�R��.՞�\u000b�K�\u0001?\u0003q10\u0007�1w\u000f�Ֆ��< \u0000��|��Y����D��AI�\u001e���L�ҁ08ػr�V��X���q]���\u0019�=(jj�U�`K�\u0003x֑&��QT)�\u0013lF��\u000e0iˢ�=���'�s��\u0012*8�!\u0007w\b~�\u000e\u001f�����z�Y��,,�\u001c�\rW��\"�a'\n�S�omN�ޗ��3]%��S��~�\t��X�c�\u0017\t��ܪ\u0018�1A��I\n�q�<���\u001c�Uu�����M��E\u0007͡\u0019�l\u001bp9�\t���jϋj>�!r=�A]z��\u001f8K��}��z��`�\u0013\u0019��lwt�x\"O{�\t�ue�w:T�\u001f\u000fF8�R\rǰK \u001f1��\u0017IQt,�\u0012�\u0018%\u0015�\u0015v\u001ax�t�K��\u0012\u0013U\u0015�,�'�.��\\)\u000e�2��>]��\f�\u0016�}30E�*\u001c���.3T�]\t�>\u000fw.\u0004(G\u0006(ȵ�A=�\u001eȀ�M{K#G��\u0016�r_�*�\t\f��.\u0003\u0005x\"66o)7�Ko��X�\u0000�8�7:%����C�O�*\u000e�\u0014Bѫ�@��/PE�S\u0014v�#w�\u0004q��OB�v#p�/�+�q\u0011m(kV���MWT0^\u0012���3�m��$EƑ�G\u000b�|�+��[B�{$���o�j�R&?\u00047�<�z\u0018<��\u0012��!���NwE��o�K�y�\b�O*Z�\u0001�K�=vx��Ҁ\u0000�\r��d�����7\u0014\u0013@��B�RQ\u0005l�Huɗ��J\u001f@\f\u0014\u000f\t���aZ[���\u0001���_Z^�Y�2@ȋ\n�,��J�'\u0000&�O\u000f�Nj�?5\u0015���z8\u0005t\n���g�<�\tѧU�e�Y�\u0006Re�\u000e��p`␭���(���)\u001d`x9,c�\u0003\u001bx�\u0005�\u001c԰�z8�� FA6�9�]�O���@�\f��x@�\u0002͖V���P~k��\u001ff�>V\u0017����Ѯhe��r��ٮK�\bا��?����_�\u000b|����\\\u001fٓ?�Ay�\u001f\u0004��N��o����\u0014n\u001a��h�4�pm;�!�0�\u0011\u001a\u0019o\u0002U�:=��MJ\u000bui,%\u0004m\tsrƺ�h@Z塌�Ĭu���|��\t��/:Z��)������\u000b���\r2'8�i�i=���0����S#|�4�|E�[�5���\u0019����_���J��\u0003��A��\r��u���.(����\tO��ɵ$�\"�O��o{Co��O)���+�c���M�C=\u000b�\u0013��T�d?�P��E�nGX�Z\u0001�0җj��S\u0015<��D)��R��\u0010���.w�!� <Тw\u0005ϙ]c��N@�El<+?U�M�&�YG��~ԙ��k\u0016(����S���:þ\u0016����_��:����o�̈+�s^����\b�6U�!��9�\u000b��\u001a����&����g^yTӘ��;K�@�m\t\f\u0007t�\u001a7�W��w*;N�J\u001e�^��A��\u001f\u0018��}ar~�����H�r�X�m��ٔ�w�M=���?\u000f|��yb\u0012q�V��\u001e�2q�3����8s\u0003��� \u000f$5���r���\u001d��\u0006KR�ڳ\u0012AP56Lu��4���rjy\u0013�%\fիE�yh��&\u001dU��{�\u0001��\u0004��\u0010\u0016)�\u000fQ1�\r����1{�_j�H�Rc��:�.�(^��U�xYΗ\t\u0005�v��!Go\fn�A�L���R����\b�F7\u0007\u000fs�\r\u0006���n�i�\";B\u000f\u001f��\t�\u0015`M�D��\u0004!\u0004��G\u0017�\n#\u000e���Y6�Sw� Z����`F�h�#��NAF��38��3K\u0007�ѓ(�����2}��=��\u001ah��[�EK��eWX0\u0005�c�^%PB�v��\u0002��\ty�\u0002p����|��0+\u0007�\u0014�\u0003(����|\n��$\n�I��`�!�\u000b�U�(*���JO\u0012LA\u0004,ݖ2�\u0014�5��@�μ7~\u001e�QG�9\u0018�-,�։L]7�����ףT���\tj\u001d�\u000fC��s�\u001a�P1���JO*^ U�J����\\�A!�\u001f,��M'��ؼ���MxT�\n\u001c�.�q0C$ڛ�h�qt�90��\u001d��0yn\u0010$�, �$��|\u001b�(�\u0001yL�D��Y�y}zm\"�@E�AS�-�q�#S�\r�ܔ\u0007��\u0012\u0015�M:\r�\u001b[��V,'�m�Y��D?\u0015*.\"(�\u0010�!=��1\"�ȟ/�L���a?F�t���̨\u0004����HoOL �b��G��/\b�6\u001fA\u001c<5��������B�A�3����\u001dWE\u0015P?q���x��󝼟>iI0�4�C&~��,�b|\b)�Hx���%Ȥ��ل������H*)W�}��n���\\P�LA\u0006��>�����K���YڅTߒ| B��A)�\u001f@��۸фN��m��Rϲ2ء&0`�Li��\u0014\"щ�\u0011\u0010>zY\u0007A�-��\n�_\u0019�yd4�����˶�dJTr1\u0005ͼ�\b�\t6��ڔ\u0006T6'\u0000'\b_��d�xO�����6�T\f�>(\u001e0T��\u0004���hPBPa�^��p\u0012+}5���L\u0018��f[��Ǥ�F��Ũj�\u001c\u001f�h��^1�\u0002�4�\u001b�9o��k\u0016�}!�(�\u0003��p�e,�\nHF<[�\u0012�\fH�\r�U��攔z�\u0015Lg\u0001E�\u0018��Hr\u0018��\u00056G�J~�8d�\u0007Ý��\u000fd�bs禨|�i5��\u000e�\u000f\u0019D��|�`�����\u0007ڿ\"|����'���ˡm�p\u001d�\u0001<�\u0002\u0013\u001fHCbq�A,�\u001fT��ۺ��E�*sC��\t\u001c�\u000f��M\u000e\u0017�\r��R\\O�옆)y�1�E8U�F@�q>B8m*\ti�u��\u0000��z�B���V��uv]\u0006\u0015���\u0000Z[�?\t}�\u0005\u0019�-ߵ�}��Ԅ\r+]\u000f/5٠�\u001bYp<�]P�\u0018\u0013�\t�/�H��.�Nаj�劰n�L�Iڐ�\u001c(\u0002|�A*n��\b�2ZB��\u0000v�\u000b�7Ĕ\u0013\u0018�cI�6\u0014�y\u001c�\f\u001fG6���\u0019�6.C�&4Y��lwy�\r\u000508�qY��\u0010RK�ɑ,I�VI@xU��8\"B�\"sˤ�w\u001eLz��Y\u0015�\u0019ɸ\u0003����.�(\u001f>�\u0014ԁ�[�>��'\u001fΗ���#��j\u0015蟪��AI�\u001f|��X\u000e�'����%w�\\rQ\u0017�ӛ^W�\u000f2/S�g����\u0018��\u000f^�$;���\n+nh\u000e�@L�������Ax�o�믞�\u0002\u0019\u001d(�k[d{�^0���ֲ���#��V?��\u0005ug��c��i���Q'%}��\u001b�\u0011�\u00062\u0004=\u0012�m\u0016�=��\u001bN�\"�\u0005�E'��תq\"�\u0007?\u001b]�#\u0000���p�ԛ�w�dW5dff�\\�+��F�\u0005\u0019�R\u0018\u0002`�����^��9|n�\u000f��A�i\u000f\u0002��D�<�z�\u000b�\u000f7��l�\u0013\f�K��\u001ddȬ�<=��j�i\u001a�\u001c(��{�\u001d\u0011��oxI����<��~hrn ���\u0000��|���V��V���`[�\u0002\"\u0016Rqwc&\\\nDP�\u0012��[3n\u001a�1\u0011�\u000b\u0018=T��#~��BZWx�AQ�\u001f���L�`�Ж� \u0004���m�L�C�m\u0006��ժ��6;�[�(0[��\\�p��\u0003O�[f,�\n\u001a ��4�K�\u0013��r\u0002=�\u0010���\\\u0006�C^+\u0015�\u0003C\u0014t��\u001dՇ���\u0017aRGV�y\u0017x:��H:��@�\u000b��Λ��*�\u001a���\r�{��\r��\f�w����e3|�������\u000e�=�դ\u0003G�J\u000f��b�`���[\u0011\u0006�]xǹ�f�[SJ���*�K����Eű�'P\u0000:\b�U��=�\u0015V�ha�.\nϡ�ꢩI\u001cr[��� �����~d�A=�\u001f����0E4����0��.��l\u000e�p�\u001b���Э�9\u0005<�_\n*r��xM\u0017t���#\u0005Ċ�\u0005B�VO�$O&ZZ����^T��1�\u0001V\u0005��Vwy�\u0014�G:�\f#dlT���\tī\u0010D\u001a��O��\u000f���gS���k��(��vs�\u000e\u001e)u�D���T����#���U�����n\r )��C�S��2+C���\u001dט(��c��x\u001fS̖\u001a�La*{��P\u001f�\u0004�t���S7�!а2P\t�,(}�Q�&5�U\u0013i�)MyfJ��\u001dl\u0014��ɆI\u001fOɤ�AɁ\u001f̀���׶\u0017��\u0015�,V!�u�ۉ�i�)�\b���:��x�\u0018�9fJ�ck��\u0001�V\u0019,�9Sp�{<�\u000eT\u0007\u0001�;Vq�J\u0016\u0015�*{�'��d��\u0000\u0006͑\u0012\u0018Lk�K\u0019�e}M�\u0010.\u0016�2(_6c<2�\u001cb���A\u0005�L�XM\ffM��t\"��kA�y�J=�;>\u0012|߫l��I\u0007�o\u000f�\u001c��E\u0003��=]|���\u0015X\u001az��dν���6&�ع��\u0003\n!}5䜅\u001e&\u0006b�\u0010z��\u0006>YE��͙f�\u0000v���sZ��v�ry/��\rxC{!�AH�\u001f�������\u001f�!�+�-��\u0005�\u0001�Dkt-gG!����aX\u0004;\b2�\u0012�\u000b�����x���W�''Y�^H>�(Lؙ\\��[Y\u000b�\u0006�����IT\t\f[����\u00108=5¥^^y2\u0002���#y \u0002Ŋ��4W���\u0012O��~�'U��w�\t�\u0013��U�40\u000ej\u001fˈp�(=tW)\u001f�C��\u001b�\u0007\rn/U:�#��j�̤ʈ\u0016y�\u001d\u0017mvyw�\\+gr��\u0012�y\t^\u0017�\u001e�=����\u000ex�l��q��%\u0002��{\u0019��\u000b��2��a�\u0006P�\r���\u000f\u0016i\u0018\"�>\u001f���\u0011�Y+H\th���\u0003�\u0010\u0012̀��DB�P*B#��\u0001�-+(�\u0019b��ٸH�\t`QJl�)���l�r^vw\u000bW�k\t�\u0007\u0014\u00197�5�>m�pά��\f�w\u0010\u0001\u001b�\u0011j�oq>�T�.��ӂ|\u0012g�f\u00062��\u0003�\u0007M\u000b�����*�\u0001�C.h>�g߽?v玽�$�x\u001c�\u0007Aa\u0015�3�\u000f\u0000�c\u00069�&[���x�ʘ\u0014׽5K�\u0014S��͊\t��'�`*_l��U���Л\r*��\b'C?�c��G�\u000b/0mSX�#��\u001f��TG�I\u001c4\t@�������\u001cxw�GF���X�F�u��wڹY�B\u0015ּ:��4J.$Y�Lٷ�\u0019��sK\u000br8�bN\u001bL�\u0000+V;�\\gS�8aM?�p�\u0012%5�\u0000\u00134M�*7�C\u0002�\u0015zd��\u0015y��m��8�Pɧ�\t&�\u0011�-�6D`��28y�7�jdL��AT� 0���:��O������n���\r����k�`q�R-l�D�\u001b;R�A\u0001yS�0�B��bI�ƹE�+�R�$C�\r߰�nA�\u0006�����\u0011\u0003��Fo(2Z`���|9�)?*w�\t�δ��\u00183\u0016\u0006��-�\nՎڵ����i�S̅�C�^��51�\u001e.{\u0000�Is\u0007�\u0012�1K�Nd��:\r�(o\\2\u0000\u0016β�|q1�'\u0010��\u0007�\"T\nI\u0012Y4��sWmhQ��\td�\u00156�m\u0007�,���l\u0018��x���!���1��\u0016�|Ja\bAi3�Q�%��78?\u0007)\u000e`���@�^m�����<�)\u0016T�\u0005̯Qy|b�\u0007\u0007��(��⯛��Rs���C�\u0015Bl��@=�˒�]�S�_�\u0000bU���sbM36��G\u00053��ۛ\u0013o�&�\r�Kt�M�Q�A'� D���1\u0017ݺ��B�\nc�`\r��\u0012�4KM7@}z�v��7��߃`t&w�̂0�\f�����/��t̛�O�\u0014u0�y\r\u0018��\u000b�1\u000f\u0011\u000fش Kݦb�l�b\u0010�\u001e���\u0001�\n/��2�\u0015��O�\u0014���{��M���-ը��\u0017�I.Čp���S�n�bF:@{��.�M5�Iú�C\u0011��.�����7�\u001ft�������e�=gZ�\u001d\u0012���\u000b�LhPTC���C�G��[��d �\bF4�{��d|�ǑBW�[p�/\"�~C�40��\\&Bu�3�\u0005Q\b\\N��/\\�ЭҎ���*z��I�u�\f|s�\u0001A�vܭ\u0001\u001bt,�}\u0019����A4� X���\r�H��,\u0016\u000f�\u0019!���\u0005��L��3[@+�\tԁ�\u0007\u0017\u001a�#�u�\u001cZ���~��\u0011\"�_�y���\u0003\u0003*�8�zԔ7\u00120�I�s\u001f��+-�\"Tۍi���GW�\u0004սm�V�H|P��C�����jV�?g}\u000bϼ;r��\u0001�-�\u00071VRu3T TfK����H��wj��!\u0011X�\u0006�\"I$��ya|TEH���\u000b�W�\u0000�FC�򙮄l�\u0000�\u0015\t��ӂ�#��$��\u001b���.\u000e��X\u0003�2�c�/4�\u000fh\u0001�i��Q/}l�ٝ\u0005�7���4�]�S�g\u0015�m�\u000b����]���aUE,\u0011�+�c��I3D_@�\u00109`��&Ț�Y�fP˭�$�]\b\u0005�AL� l���\u0010�6��3]��l=9����|�r\u0004=f�WH)�2\"�]�\f�4q݅�\t\\��)��ˊ�IܖH�\u000f\u0017���B{�z\u0011�9|�%�\u0015���(��\u0010�58�y(98�m�j�r)��\u0016�0�`c�Y�\u000b1�k\u0011\u0005���\u0011A�R�-��[\u000b98/YŅ��\u0013Z�ŏ�sts�q�@\u0002��P��e����D3P��9<;�][�\u0002T�j\u0014�HmmC��\u0003���S�D���PQ\f�o�������f\u0007�\u000b\u0017��p�\u000e\u0017Qg�c�*j=�.^\u0005��f\u0004LI�IU\u001aZ��jR���\u0003 5\u0017��M\u0013l�Q�k��-����δ!�\r�w����(�sW|��'��\u001c��H��e��o��ȩ ��Ou_ج����� �j�g6��&r\"��ӣAL� ���X��l<5�>e\u001dZ�m���+�\u0002J\u0007�����.�G!�\\h�\u0018ڣ[\u0015!*��#Y��8�g�C!��������d�ZA5Pޅ�W�\u0015�\n\u0016��v�rtJ��)��\u0004����\u0016H��x�J�ý��Ŋ~J��P\u001d��i\u0000%�^�a���\u0019U�|\u000e\u0005�N��A\u0017��\u0012\u0019o8\u0002�o��H�ĵ��X���e\u0002\u001bh'b\u0015�����\u0014w�a|r��,����6�>>٣� Z[�,��Ǣ8O+b\u0012r��,Ic�\u000b�\u001fT�c�S\u0004�n��\u0015��f�\u001aY}@��\u0006\u001e�m�����\u001f\u0018\u0016���\u0006���>�1����E�ח�����ض\u0006f�Z�\r���~�P�>�B����iᗳ\u0014��\u001e�\u0002\u001e��=t����c�\u0005\u0000����\u0000k+{3�A=� ����m%MB�f��5+�\u00033_Υ΢L�����\u0019�m�$\u0012���'���o%3c���#�˜��\u0001h���\u000e\u001d~8��Sε���yt܍PSm\u00186�g&���=��`�(\u00198O��z\tW�K�$|.\u001c�y\u0003A�\u000f�Wp��I�pGS\u000f�>�r�L�d�{�m��\u001b��\u000e�k���ĝ\u0019\u000b\u001ew��\u0015a���n�S;d��\t��L�&�2\u0011\u0014i�R\u0015'ʜ5\nԊ��>�\u0002�.4�dg\u0005\\��\fRP\rA��0\u000f!\u0000�B5�߇i�L\u0010��\u0018��lX\u0015%\u0019�o�$\u001d�y��a\u0006\"�V���~%�{�2w��\f��\u0005�jt�$��ǰ~��kJT�iZe�u,M\u0007���AK��G����Dž�\u0016���F�0�A<� ���L��끱����o���w�)��f�;�.���{��x���\u0018!\u0016��EM�\u001f��y\nf\u0010\u0017�^J���&�'R�)�\rI\u001e�\u0003��~K�Yn{�� �\u0011~��\\�i�#�%j�|�\u0000�97\u0018sYid@�_I��R(ϑ��|B�����At�V\u001d��\u000f�\u000f\u000e[H0.�\u0019�\u0010\u001e,7k\\\u001f㐥\u000e�E׶�'r�i)̓d�e\u001c\u001eR��L\u001a�ӊ��\u0019�S\u0002 �K'DI\u0005�����\u0007��d\u000f�A2� ���L�̩D��\u001f��wm����שn�t�\r�\u000f\u001a@\u0013�\u0003ٝ�!���{]��ZAh��q�\u0013w�\u0006.�\u0016'�R�Y:DN[O\u000f5�#tWXIOt\u0012{�7��P�gCL\u0016L6�W\"\u0006B�'t����`.��7�j0�CW�q�\"�\u001c\u0001h҃M�5SΦ\u001d�l��\u0010�q���iW�\u0010\u001avu�1JS�r\u0007�g\u0004��\u0018'S��h\u0004x���Hb�\u0004�`��C�M`��p2x��)�\u0001����(Y��m�\u0002����\u0005d��\u00143��'�8���N�C����g$�\u0002�Q���H��?���>ˌqe#\nkZ}\u0017&����O3�-����\u0014�\u0018�دa��[J7D�{�K�%OY�\u000f�\u0005��9mG\u0002$�A;� Ѐ���#\u0018|�\u0013��(�\u001e\\+k\u001f���I�3��݊���\f��|x������/�D��ƥ�\u0018��&x��xk�\u0005d���27�x�b:\u000f\u0010o3n1Ck3\u0012\u0010ſp���'\t5\f�^\u0003��U:�\u001a�6�d�\"GY�nd_�\u001f8���G\u000fl�\u0012�-|a�>�,G��g\u0016�\n�\r�0(\u0011�����3�\u0014�ivo�\u0015�XJҏr�L�4c\u0005���n`n\u0018#g�=�=Y���3I�Cl\u0000�f�\u001a�Q\u001dK\u000f�x�\rh��/׃0`�[��\n���Hж\u0000�ߧ��f\u001c�\u0012U0ն\u0014�eL+�\u001b\u0002K�����JL)�Woe�ӱ�\u001c���KP��w��ݫTl\f,-�\"��8J_l���%���-���!�AB� ���ĢZ��\"D^�����|\"��F\u0012yr�_�\u0005���o��\u0001)�\u0010���e,J��\u0010���uӡ�\u0017޺0�����1�f)[FK\u0005iD>0�.u�n)z��J���-]�e�<�Wi#���\u0017�$�Z9��J��\nb����c��;6�R`�\u0010�\u0011��G�]u���%���߽�\u0014f�_�ج�`ܴ\u001f�z��E�\t�U�B-�]�H\u000eE���:�O^߇\u0005PZ�\b]9��d����cy�8��'\u001d@�cܡ��ם��P���%�Y^�\u0011\u000e\b���\u000e�����s�gb����\u001b�\u0011��r�ѷ��8�l��*d��>�\u000fi��\u000eѓK\u0000��#ȜHA\"�ܚ�X�p:�2�^j)h��ݕ\u0004׹!�AT� ���0��\u0004�Kڥ\"�$\u001e����mޏ�^a-'���CV��I\u0006z����4Ly\ns\u0014\u00138+J2h��z�D5���\u0003�\u000f�\u0005�d\u000b\u0015;�\u001am�@�=uRj���\u0014_��ܑf[:^\u001b&_h�����Um�@�wn`s�}Ç�~�\u000b-��0�l�v�\u0012����p��I�-˝��\tEkei���|���\u0012��\u0011���˱�~E�\\�G���*�'�\u0011aH\u0018ˠ�E\u001d\u001fB!+�E}�Y��\u0003/��e|ܱ\u000b�\u001dmk5��~\u0010��\u0005�v2�]!O\u0002?������՜\u001fo�P�\u000bN�h°ů�\\�f\u0003\u001f�3�\u000f��_`G�ʗ\u0015'{��C�>���Z\\*�\u001d[4�6s�]���k�}\f� ��\u0014\u0011\n\u0007k2��]r���\u00133�j0�\u001e�� ����A��!\f��}���|�\u000b\b���?P~ݖ��NK��it�z�J��ᴟb��\u0017vP^�K\u0010�!\"YQj��#��\u00008\u001f�8\\' ��\u001b\"�D\u0006y�\u0017�\u0005����p�3���f<�ʭ*Ȱ�\u001bʕUw�#r,\u0002�QP�\u0007z\u0017y�����;�AE�M#�)!椐�����\u001a�b\u0018K���(oo��\"�I{}�*�\u001fd����@��vd8&*��\b\u0004!s�\u001b\"s-���\u001e\u0001=�i�\u0012r3�:\u001c��EV)9�̒Z�\u0018��⯶R��'�8C����8H\u0010��U\u001d���z��ʄVcJA<7s���\b��S��kˮ�����0��gٍ�\u0012\u0007�\u0006\u0017�%.�v��\u0002}�|\u0016@a\u0005˴q��XsR�}�\u000ev鿂�)�Х2oڭ^��\u0016�fp���Y\u0016\u0015���,��)�Aء\u0004���瑺�21J�}\f\u0003�GdڍcgXiK�\u0002Sa4�ڟ\u0001S��%�2�3I������b*�L�/�xG5\u0004�-�%G\u000fpQI#\u0002&\u000bJ�\u0017y\u0001\u001e�k:%m�ŵo8���\u0000���\u0004\u0013�\n'��K��m� \u001bg��e�\u0004s1�\u0004�J�S���{\u0007f����\\\u001d�\u0003D���AV�!4��\u0000P���ޛ�8HU�)F����)cR���\u001aX5~hw勜��;\u0013�O*�:8�nxT�Y\u0006\r�ƽ���3a\u001b��\u0010�\u001a•�s�ֶ\u0015x��\u0015zW����x8��(�9%\t�\tx����/�^O\u000bz�\u0005�юKf>��[�,�\f���)eW�Wv�B��E\u0007[-�0>9b�Tnf��-�t��à\\!�bÚ\u0012�\u001b�`��Ɣ�@�����e��\u0004�\u0015`_��\u001f\u0001҇�\u0004tۦ�@�\u0001�ܗo+Qԉ\u0016u�S.\u0002�]\u0006N�\u0007K[qz����iM�!?2���7�jU#t���\tP�.\u0004\u000b<3Z9uˮ@��!6p\u0001ӑ�x�e-F���\u0006㙿�Q��A�\u0012%\b�\u0013\u001e�\b>A5��\u001a�\n�Su�������\u001e�\u0016�V��Tx�+�5�AR�!H����L�N��M�!��(�\u000bļ����\"��iK[�r`����c�#`�Skj�0�ˈ���0`�e}i�m�����\u0019��\u000b<�7�p8�\u0001���\u0005��#�9�\u0010�;\u0000w�K7\u0016\u0004d�Z��o�7�\b�F!�Ci~\u0007��@���.��p\u0014Xm�]���J�\u001d(�R\u0002%���B���Q\u0004.�rx�|Jp�\u0006\b��i\b\"�����\u0017�\u000fJ��8̋Du\u0016�G-�0�\u0003�b\f_ٸ�>\"*\u001dr���F�_\u0000\u0007k�|�\u0005�}�\u001c\u00151껙\u001e�53�x=��\u0001y�#���� �\u0011�N\r��WMW�\u001a'g��q1�cօ�g��o�0�\u0018�\u0006\"�!{\u0015\u0010�ڂr\u0019��~e׿�ޝ^,�7E�P\u0015�\u0002j���Swсw:��p����ჃT&�!�A^�!\\����&����\u0018\u001d\u001aH��\n�x�v�[�fc\fa�&���{���w_�U��\u0011�����1�ݎF6�\u001es��p`X�u:��IBVW:ۙp����D���8O�~}��5�\u0012L\u0012\u0018\u000f\b??��Z�U�sv\n\u0002�:��t��j6I����\u0014T_�&/��nT�\u0015�|U\u0018�\u0013\u001f\u0006�d�\u000e�E�m9\r�A�ۚw��,v3\u0010]>�g\u0000��\\ӧ��agǐT\tM�\u0018[f���\u000b=na\u0006d���!�P\toFmO<�S{���\u0017T��\u0016�p�[bR��tt��Õ\f�d�|{$\u00031e���\r�[K9\u0017V��5���an���{ީ�f�A[���&/�~��`�{f<�@�\u0019���ߌ�`6\f�����uK�\b\u0012\u0005���F\t_+1�\u000e̕��0,��ڠ�p˥�g\u000fd�G����G\u0001�\u0004p/<:��X��1����oK�\r�l9t\u0003�r*Q\u001fI��j\u001dC�hL\u001b;�&q�t\u000fڨ��?c���\u000f��#^�.|�U-q�m+\r��~\u0000n�?� \u0000���l�Ҧ�5��{�O�)\u0004\"-��`I- �5\u0012\u0012��2�,�5̵�B����~\u001a�d�B-8�<%�\u0019�Vr\u0016��h�\u0006Y��6;ZY8N\u0019X�_��hh�<���x���K}��k��t-\u001aA#\u001c���\u0004\u00105�\r�6��\u0019�!\u0006�r�}��\u001b\u001e�:\b>��Q\u0003�Bp�!�q��W(|˭|�P�}\"�h\u0015%]=!�Am�!������R�o�\u0010��P>\u000f�Fp�O��(��Y;�ͤ�x\b��\u0010��\u001c����\u0012����1�L�D�G��͓צ}�$\u0017qv|D�:���Hg�e�SD�,�)6gNqM�A�\u0016��\u0003[�\u001d�T\u0010�D\u0004��3s�4W��X)�`�\u000b+!��[��О�oWmV�5��\u000e��3���o���\u001exu�7�1>̂�k$xt�M� \u0000��\u00002I����j��\u000b}\u0015\"F3\u000f��*���\u0002J�^\u0006\u001f\u000b5�\u0016�P�G�}�\u0004�\u0012���d��4~��m��N�\tUu&\b˞fC�\u0011���,��-\u0007��|��|\u0004�,��XG-�eE�t��I�K�\u001e�%\u001a_�y�:��\u0006�;a��H�I{\u000e�\u0003��5���lR�i�ǽ#xSI�8˃Fx���!G�\f�\u001f�%oY�\u001a|�.-��+RP�ŸZ\u0004a]G!�A`�!�����\u0006.�k�����U+�\u0013;��`\u000f\u0015\u0015o�S�2�\u0007\u001cc�\u001at��Dl�nz�K�\u001dg��7�5:/�4�/�\u0019�`��b\f8�Y��t\u00192�T\u0012�KYB9�O ,,e�q�z*\u000f�W\u0002��_�k��wN\u0014I\"��3I���k�d��\\o.\u0016�?]�u(�J\u0017x����7m�X�E'W\u0005���u�1c\u0003��4�'\\F�6%)O4��tR�焿\u001cV%��s�̡Q��rE�.�œ�u�\u0019��X7l.T�\u0005�^��x�\u0006\fr��#{E�B�`f(�X\u0018�Tǫ�{�N�Ə?�IT0|�z��\u0001�~t�f�(�n�*c]��A\u0018S޲&\u001d^Ƚ��dP�o\u0000Fz���\u0019 \u00010�6�7&U�|Ӹ�E�L9��J-�\u0000��B^B��l8\u0019��l�\u0019\u001aS\u0001'�\u000f�9�!�Ac�!����\f?'�K�ë\u0017i��|t�kmd�ݻ�\u0013e\u0016���Yf\u0005�T��܃�ioV\u001bv�\"�W�י3e,G�TT|�lo��X���?\b�\u0006���&˩~�ڼhrM/4�\u0002ۚ+4��ܙJ/Xi�5��N�R\u001d�\u0013/�\u00159w1;nt�;b�\u0016Hݏi�2\"/�O=\u0017�w�e\f�ͷ�`�\u0006b2[�Tt_M&�\u00028��hb�\u0017������_i'�k\u0005�ul�\u0011X�r��\u001d\fv\u000f���&Շbd��|�f�\u000e���^I?z4�D�p�\f��g��pU�#N����P^��$���V���\\0\u0012c$\u0010Ӈ��!L�\u000e)h��³1��{\u0017jr �(�m��Q�\u001c\u001aaX\u001e�\u0000�)ˢ`�Tyd��Ͻ��\f:\n��&�Q3�W!��k��\u0012�ύ��(\u0000�\r@��=<\u0013���!�A}�!�����r\\Z�G�\u000eac{o���T[Ʃ�\u0010�D[�{�p�Ӥ\u0002��՗���jR\u0015�ҠJ�8��\u001ey�W�sԆ�\u0003�\u0014�%\u001dp*9\u0007��Z!\rl\"\u000b�'�2&���Hc�\u0001�o�o�n��{�\u00028If\u0019�\u0005\u001d�1MI\u00180CÁɓ�>ޅ<[\u0010��|e��+���%�I�z�\u0007�]Iyb�s<�nO�\u0010����d�7g.��D^���Xl6\u0000��\r����PN)YWt`6iwG�D��{�N��\u001e�;\u0016r�-���h5�*^B6�Z��I��B\u0017kh��E@��X1rT�,GB��z��OS\u001f1\u0016f\u0012���\"�je��������l]��^�J\u000b�+h��\u0018������#-�5�g��\u000f+7\u001aS��?�\u0001j��t{�g\u0017��Y`Y�˓��o-X�����l��ٻ���%�@[T\u0019\u0019\u0013�}Y�\u0014bcS���\u000eM��`�AX�!Ԁ�-�2�L���\u001f\u0006�k\u0005�I\r��O\u001dc\u0004���\u001c��\u0006ׄU5\u0003\u0016�D���|M�sz�\u001a��#�\u001bPΛ���+3%3�>P�\b�\u0013ɯH�q�8�]���(+ވ�\"/\u0014���=P1\u0018�<��с�\u0004\rʴ�����_�{!3����U\u001e&�n#߽\n6�����K���\f;5j�h���j($ϛ6u�(�$����㎷������\n=\u0017϶�C3I;\u0015cД��K\u0007��>c\u001a���W`���EJ���c\n��L]\u000bY���P\u000bl.j�4�O\u001f�:O� 0}��8[5�ޒ\u0001/\u0012͕�69�\u0017+��\n�P[s�5Q���\u001cC�3�\u001fܘ<��(����Ꮆ�>'̳\u001bw�\u0011\u001aoR+�\u0000����V�����.r�}�5E-u�$g\u0000�\u0015\u0016�\u0003���A=�!��\u0002z����=��%�#sb6i�)\b\u0000��zD���ɀ|\u0019�\u0010��\u001c��\"��\u0000�j,�Ʒ�h�\u0016l��\t>��ocsX �QAñz\u001b7\u0017|\u001bR�9�E*��;8ёK�/�\t�S,�4�)X��\u0015�$�-��F�,����I\u0012~���Գ���(\b��7��)'���Tt��\u0006�0Y��P�z�\u0010���\u0019�b�@���\u0017���\b҆�$����@Ź�DŽ\u000bp�y:J_E��B,N�N�2pS������(��a\"N���p���\u0003\u0005\u0001�4'\u0013�����\u0018ϋ\u0015�_�(l��jYO�\n�\u0000�K[�K�*DE�\u0004�\"��\u0000��9䤲ɲ��>��}�cj]���+!�\u0006��'\u0014,S�*�ĉ�2���v1\u0010��Uj�zb#w�\u001c�9�\r\f�x���d�L��Bwo�y�l����%��q?��=�[q\u00048�N�]\u000fR���\u000b~A��鼃V�ҡ�+!OMr\u0014�6��uOͪ縈�������i�;�,�\u001d�������Wo�o���\u0000�\u001d�9e\u0014\u0018��h�\u0015�O\u0004Ʈ�B=�\u0015�M�z�\u001f\u0013��)�R�MA�q�4\u0013���W�׷�����MO\u0006ۃ�˭i�8�\u000f#�CI�ߢ��w���GNu-�\n��'o\u001d\u0013]��q�;�A�\fE\b��0��Ch7{\u0000�4�`B�J�Ge\u0013���a\u0001k�W��J;n91�_\u000f�C��A�����A!ai��\u0000ťWa\f����%\"\u0013�|���\u0002��ħ�\u001b�����P\u001ca�W�\r�\u0001p�֫����O�$�T\u0013_\u0015mH�\u0003RR��Ae�\"\u0010��Y\u0004^��\u0002����\u0013X\r�7��*w\u000fo\u000f�G:?�xS\u0014�O��\u000e\f^=��Ќ��6X\\j��Y\u001c�dU�q\u001et�\u0013\u001a�t���Ɉ�\u0011?��X��������C\b_*K�}/{���V:oO{���LV��9g|���Գ0\u0001Z���\u001ej�S�\tȠ��*Bh:PJ�(\u001c���\u0000\u0010a������U�s!\u001d\u0013Ֆz��Kn\u0005��(���\u0002ҧy<ѿuf7���n\u001fu�\u0010|1\t�#K���+,���h)��\b�0����E�1Ѡ\u001b)M��a�)�ɇ|W����#�\u0004\n'�+\u0015X�\u001bj�G�-l]��N��?�\u001cK�7om���$u�x��A\u0016�\"$��L�\"���\u000b��\u0002�ݏW\u0018���z\u0006\u0012�{}��_�E&\u0012x���$\u001c�rws�?3��A��\u0011Lb-\u0013�ΝD�\\W��'��u����R��m|��9$�t�|>��8�\u001a�5=�\u000e��XD�d�c<�k�d�}\u0019wI_/�4�XG3�XQ�>v�\u0010c8\u0012\u001db�\u0006�����\t/l\u0014�\b\u0019�Ӳ\\��\u0018�&����-\u0017<�A�PX�\u0016j�����%\u0019Ëձ:\u0007I��S�М\r�\tm\u000bÏd5ܹ�f\u0012Y�A���l\u000e\u0000n\u0019�לȲ�EE\u0005r�\u0006%\u0007��?\u0015��@]TKz�{G?��K�{9\u001c��kv�.5։�\u0007�\u0019O�A\u0011�\"8����\u0005 7���\u001e÷���5}4\u001b\u001a����_t��#�wM.\b�!)\u0012��5�~��L�s�j�8��\u000bH8\u0010\u0016s����ci��5�=&d�\u000f>�8em\\�]���6����\u001e�\tUFW܋�\u0015��\u0006��,�E���`7���Z\\\u0003\r��U\u0007z\u0018�]�c����.\bf�:k�,�\u001f��,\u0005�\u0012�3ܭ�ҟ�l�D͂����b��\u0011��cB�d�\u0019�4[?�/���\"L����\u0001��\u0002j�f\u001e���\u0018˼;��8���\u0013=W3����Z6\u0003]��G�\u0000\u001a��Ӄ4\u0018��@�����}�� }:�Ks����v����C1P�$~�&<\u000b\u001d4��W��\u0015\u0002dʆ\u0007�UG*�1���\u0017��t�-�\u0013E��E��[B\u001a�r��{�ߢA��\"�ڍneX5y�\u0003���\nm�N(x�\\\"|<�il���{\n\u0005�YA��\u001e�oO�������B���N�\u0019\u001b+�\u0004}�ٯ������(/��+\u0003\rE���<�c��S�\"�/���3�䃕W�:p\fA�@��k�\\ʙ?c�8�?��V���~iS��I\u0010�����4:S�e��G}�}�\u0014����P\u0014Hwh|�/���\u0004�Dg)��I\u001a���D������`���z\u000fn��\u0014�ҝ�C���ɩ��\u000e\u0001b\n�m0��VwEV{����I\u0001�/��$��\u000e�e�\u000e���P&Y��\u001b]�*�C��x40��[m��P3�*?b�m`\u000f��x���D����^é�b��r��\u0010�pf�i8\u0011��xUu�\u0014���W \u0015Ҋa�C1�����:j|�A�?f咎\b�Ч1\u0000\u0019\u0007\ng��N��g����\u0014\b�u�ʬ{)�K\u0015�\u001d�t\b�~H��b��6�p�<�y�Ew�F��*�_>��g�uYf\u0006�pWb���\r{�p�P��!��\t\u0018鉌P ����,�\u0018�\u0002�\u001a�s��H�Q\u001dOB���,x}R\\�I�]/\u0012�,�mF\tԅ���O2�)v�\u0012�U�Ձ/\u0006\u0014{\u001c�\u0000�מ��P=��3�t(ɡ���͓���Z\u0002 ��\u0010�l\u0004\u000e��i�qF�Z�4v#���;^�ȣy�\r6ݧ�G\u001ch�.�Z\u0012\b:�$��l��-0\u0017�QT���L5�X�A-�\"���L�\u001b8\t�����\u0017�����h\t�)!\u0013�<�w��\u0000ʫk2�.\u000e��\u001d��\u001f�Qũra�i06��ۍE��V�G�Ɇ��&�Vl��3���\\���H�\r~?�i�>��!XYtIJa�DZw��\u0004�����\u0016P�n\u0007\u0012��o�\u000b9�<>�\u0004i[/0ڣ.�H�G�2����̪�\u001d��j\u0002��O]5Ql�N:e\u001e�=�,e.^zl��kR�chn��#��2�����B!g�Y\u000b\u0014�i*H\u0015g�Y�����u�~��\u0011�eB�\u000fg[ kf㓐���⑄퓡\r����f@A�/\n/\u0011\b�~�՜9\u0001@�\u000e���'��jH\u0019e��\u0010��B@K������h\u0007m�A6�\"Ā��b\fS�\u001c'Go��W2*Ӱ��\u0002���.z^ǚt@�\u0000O�\u0018��]�\u001c����\u0006\u0013��xu@��\u0007�X*?H\u0013�٩���.)��~rT\u001c\u0017ul��.U/��]�G�Z�\u001b�쁋���0\u0012�,�\u0000�UP\fO\u0000+y\u000b���7MՓk捙̫\u0006��6w͍�H��\f�\ny6\u0005��o/@�:E_�\\�f��EH\u0001�\u001ce�yvy\u00150\tƘʍ\u0017�T\u0014�QI�=>�/� ���+!r�F\u0012�?��\u001b\u0006e���s<��\u001d5�\u0001�⅂f��\u0017��r�\u0010e_\u0015�Ʒ~\u0010ԗw���*�+b�$d\u0010����ʨ��#N���i�-s�M�&\u001c�ap,/\u0000\u0019\u000e�PU|I R�۝�h�\u0000U\u00002�١�AM�\"؀��eE�tڎ4�����bf��x;�\t����B\u0004n񉐰\u0002\u000f��{����\u001b:\u0018I�QU�H�\u0011����Z�`�Q���Q�z�\u0007�'*v��\u0017��\u0013?�\b���ւ�5�'j�|��(\u0019N��o�\u0016V�����\u0001�Xg���\u0018�\u001em��з'��\u0019\u0001�fe4��;\u0004��XW\u00045�L�A�ysؕ m=T���V@V�)�~?�`\u0004���\b�\u000eQ����@����k\u001f��̣m$��\u001d��@��{�L��W��mk4�,݄\u001b%\u0001<���i%U�[�B[\u000ed@�Zd�5�>\u001dc\u001d��{6M�w6o�YŹN�}Nr�N�b.��\u001d9H��o��\"\u0007�?�.�d\u0019��\u0011�ms�\u0010�Kig\"���R��+T��t\u0007�m�yAf�2���A]�\"��\u0002{�x*%�B���*�\u001c�\u0004��D��釗>\u0006,4#��/]E\u000b4�`����t���͚wt'\u0014c�!M#S�\u0014Q.W\fg\u0001��]3o�\u0006��%��j(��ߜx5\\?]�Ҟо�OϓF\u001a�\u001e�\u001408�@|�GA\n��9\u0011��� \u00023(+ӄ/����-YIөZ35Ȑ�\u0016\u0018�ܼ0�n\u000b��z9x�D2��L\u0007u���9Mg'\b\u0012�A\u0019\u00037\n�G�f�W4T�\u0014.��|t׼>X=�q3��a��D�d1C7W��#�4�����\u0002\u0007C��\b;��'�m'�6�Թ�\u0004��:\b�\u000euֿ�8�x�����\u001d�\b��\u0019M�*�\u0000w9ri�\u001cX�*+�����dxy)\"|�\u0010���\t;�����Hԓ\u0001���\u000f���d�\u0002`\u001c&�9\u0016\u0010�X�ث�>�Ae�#\u0000��0��k��\u0006C�������\u000bteG񢴚�\u0001��p2��\u0000�ÚjL�\u000e\u0010����l�'?1o��6&5��I‹y�\u000bΜ\u000f��>�j����;����\u0006Z����q?uj~4�\u0013�(m�\n�\u001e�\u0006�KL\tS����vC�EL�hYbH\u001f.�]����0R\u001f��\u0013�?�Q�ٛe\u0007\u001f���\n���Y��\u001e��+�H��̸XH\u001a>�����\u0005��c\u0010m��\u000e��&\n�`��.�g�\u0016F>,��w�$�GJ>#p\u0010\u000f������R�dU�%V���(wKXt�\u000bԽ�Q\u000e�T�:꾩�e\u0005ό��\u0015\\*\u000b\u0016�i�\u0016�-p��b��\u0003�X&Gb���I\u0004%s�R�Y�<���ά�)վ�ihPC/4���a\u0017\u0012���u�ې\u0015I\u001a\t �\u001e�=�\f����9�\n���mWd\u001ck�AÁ#\u0014��}ap�\u001f\u0014��~Ѷ�\u0015�7<\u000fH \u0012�k\t ��Y�\u0015���\u0002��`�$��1�n�^��$ڭ��B\u0019h\\\u0004Ǥ�]�\u0013X%-\u0002�!tcy�\u001d$4�?\u0005��s��u�B�ջ\u0002L7�\u0012\u0006�״D��U��]\n:���_�]\u0010�\u0002˞Ms��?*6&%).g\u000e3��܌N=��:=/���k\u0017_z?���\f����D\n�W�Vu@\u0003��\f�՚�\u000f�\n,CNV�]���2ϧ���F�\n�\u0003�T�\u000e��:Ig\u0014�!��@��\u0013�N\u0018���+!��x\"�ɾ]h\u001a�J����)��2�1�����\u000f�>��fU��\t�,�o'\b,\b�Q�n�ƓG�\u0018��\u001bJ�L����#��.A<�կ�\u0018\u000f6<�Oր\u001a\u0013ڢ1\u0015$�޵f'v��⦓\u001a��%h��;@w����Iwi1��b]p�\u0005���\fg\u00115�j��i���d\t��;\u000bY�&D3���\u0015�|V/Eda�!�X�\u0013&\u0001ц�\u0012u���g;K+�\u0012���O|h�敒b��Z�\u0013�D��S���4�\u0016�AA�#(��&����;����Y껢7\bf�n�4�[\u0002闎��\u000b��\u0007Ň���Sm��P�&��f�\u001e\u0007;+lN1���Fm޶����tZH6�\u0017^_M}�aIlD��P���A)\u001e8\u0014\u0003\u001c�\u0001�\u001bFT��!��j�Z��\u0017��yVdfC\r\u000e��ej��:ǰy\u0006sC!.\u0006[��U%%pa�\u0011�LqRfK�B�?�Pn!��%\u0014�2\u0005\u000bPh=�:b\u0000��t���\u001fv\t�\nUП�e��r̉�E�_�w(��V�~��`��\t�M[�\u0015ST�|�[b\u0012�P*u(�\u001a;��\u000e�o�?O\u0004���bJ\u0017\u001bi�&c`\u000f,i�yo\n�w���V���}�N��J�\u0012�h��\u000b����\u00144�1\u001bl�����\u0011\u0001/~ZY���@��@JdA�ަ�\u0004HM\r���Y\\�AS�#P���k͏Q\u00077�Z���E�\u0005�\u0017�^�H�\u0010:6(Ejq��\rS��-��{��|OY�Q4��\"o����3S�^@\u001c��U�SL�_6�a�r1@���-�F6����V�\u0007��W\u0014g\u0005V���\u001b�vs\u0006����O�=�\b}�\"{��S��\u001a�:��O�2؋B?�\u0005(�\u0011����\u001f�/�\u0006����5WK�R�����}���y/,��O6�e��\u0014��$�Б\\ܮ��ъ���\u0014\u0019�a7�}+2?�͵��N����̹�����F\u0000|��Vl2�k��[y���7\u0013�}\u0001�Wn�T�\u0011\u001d]�L�\u0010_�9��J)f\u0007�w�k�3l��\u0018\bE\brc�\u001a2H��w��c��R��S�α�ko�%^�6��Հ�{e�`w+�E!zm\tkOԢ�AT�#d������X�98�\nnݼi���E�@��Y���AaR���P�y�����٢\u001f?�\fłs��\u0005\u0001.z�\u0010�S�K\fNn\u001f�K\f8~6���\u0013�\u0010��\u0007%�h�\u0018 �I(3��\u001d�&|Wb��u�\u0017#�\u0013��P<�d�s?�m��Y����?P@���ִ�%8���x�'57\u001b�Q�$G�6�\u0012\u0003\u0010�q~u���\u001b�?S|ϊ������\u0017m.9��80I7��\u0017E��\u0013Iє�>{{�\f5P}�]�V\u0001�R�\u00197�#��{j4�\u001d���G�8?~����5�\u001d-�=Nj(�0:\u0000$\u0010��s;&�o���h\"�D4S�����+�b\u0003ՌNv9\u0001S�b!\u0016�n�7f�!�Bd1�%\u0001�ϕ��& ���h��{����ؙ-\u000e{�_�����AW�#x��ͷ�I��\fy�\u000e��VәC�\nf��\"*Sᄡo��m�\tכ*\u001d(������b�{�=�����/�AR�����\u001e<�\u001dd\u0018vK�� ����5\u000b�c����႖P��g�6\tߏ�hp\tP�;\u0018�M꣏\u0001}�a���\u001dP���螵�+�\u0007�\u000fq��QC|�\u001f1���'\"�^�(�D�\u0017AD\u0017�󗎖<��H��_�J\u0011P%�\u001bu\u001e\t�]EC�s\u0002F-𡹊\u001e\u001d�:#\u0017��\u0019�\u0012����瞖FT�\t���K\u0005��\u000e{'�\f��\u001a��u���]�˵�\fDn\"��!f�����h��L\u001eZI�vԶ4)#:~*Xd��&\u0002l\u001ez�Y�\u0010������\u0005V�y�6��j��hNS\\�`/Dn�?�_{+��6�v�\u0000'��\u000bmOm���PF��Au�#�����\u000f[�A\u0017��g���L�p@�˶W�\bOED.�l�\u0012\u0011D|��E��\u0011\u000b��?צ��O2\u0016)J/�N�A�\u0013�y\u001f�\u0002�&w�M�|�h��)yɐ�+�\u000e�O`��b��.fިi�\u0019$�\u0006���j\u0003ڛ\u0019r���\u000f���6�x��\u001c���F�\u0000\u000f�q�y27��H��ҿ��(�6\u0012\tݻ���kn�r�u�X2p��M*�\u0000�\u0015\t�[�� �\u001f��x�\u000fw�^�r�#����,&-�dY�\u0002d4\u000f�a`\u0007��\u000e\u0001����ٙ3��\\e+a>�\u000b��̍�\u0013��\u000e`�e\u0017��~HW[��z)�\u0000��j!(�g�BN\u001dϕ�����\u001c~m�\u0015An\u001c����;�\u0015\u001c\u000e#��\u000e�Yޔ�+�w�x�ʛ�@�\u000eB!ǥ0(2\u000e\u0017��g��\u0015\u0018Y�e1�9{�ة����\u000e2�:@8�\u001d���\u0013\u001d�\b��xi/ZY�\u0015\u001fq�\u001b��b�R�֑\u0015+A\u0011���~\nL��p!KL��\t+�0�@ˢ���Y�V;\u001a���\u0002�\t\r�!����\u0001\u0005A��%�\b��6M��b����P\\a�.��g�c\u0000x3n\bT\u0003n̈́/s�D�\u000f���'�y��b#ze�O\u0013�*=dbm\u0015\u001fu2\u001a��y \u0014R�pq\u001c]q̈́�\nv�Kٿ\u0005�BQ�����]\u0006\u001bWN-u�\u000eW���,c�4�:�'��\b�y�c�\u0003VZ�?/d ?\u0017<���As�#���̲2���hM\u0000��C=\u0016\u001e\u001b�i��D�n��IJ�T�c\"ᗷ�߁eN��8 &�D�P�\u001a��l�N\u00038��mR\u0007����rn��Z�u2��A��#Ȁ�̺��ek�\u00069�ӟ�Q\u000bhԇ)�>�%v`}Ak��0V\u000b�%�=nq��\u0014��p7��]a\u0015��m�7��.ʰ����n�;^�_tn\u0004��\u001c��pq\u0005���\u000b�Yص5�Ҩߺ�wp�\u0002.�d\u0014&s�\u001a�|&���\u001a7��W!n��[��2�w\f���d�O�R�0�C��\"��H�=£9�P\u0003a[���?�\u0010�1�Q\u0017;����~$B�ˍ�;���N>tq��>T�i�C�zp\u000e��OY��;\u000f��� A\u001c�\u00158/iO\u001b�\u0002��\u001e\u000ex�\t�\u001bB�\f�t����\f\u001fp|��\u0003��I�\\fA�s�v�T�K��gvu'��5��?CM\u0012\u0003E���R�L�?�\u0015n\u000ez�����-\u000f\b�f\u001ey��T��O��ʑ�D�L\u0011{�\boX�n�� ��\u000e\u0011��.�բ)\bl(>\t�k��_\u0013VHj���-2:�xDP���2�j/��\u001b�VA}�~�\u0017�\bzw����~/�\u000e�R�\u0004+Y8#\u001c$�Xќ\u000fo��\u0004�J��\u0001�z��A��#܀���.\u0007l+���\r�oW��\r\t�\u0000��4��\\��ŀF3��L\u0016ψ���6�[\n\u001efl�\b5X'�ʲ�l\u0012(B��\u0012P1��\u001c#��@�-L[\u0015,��\u0019���!�T*�\u0015Ti~\u001a5ͅ/\u0006.Id�\u00040@\u0019�R��쨠x��Wp���f+퐰k�gT�6@ͦu���n\u001e��%\u0017�\u0004�c��[lU\u000f\u0010:�ʖ�\f��=��\u0005\u0005\u0006�}����=hx�\u000b�6(L��}uw�\u0011]��T(�\u001b\u0004�\u001c\u0004��?C(�?�\u0014j��#���QjKe�v酈�p@�\u001b{|��VUG\nR�C�����B��p��j�G�Q���>��\u000f�\u001d*\r�\u000bdW�\u001c]N\n�\u0006i\u0007�Գ�����\u001e�_F\f$��\u000b'qK���,����v�B_�[�M���B�[B\u0006\u000f�V�\u000bПL���YͲ�ob���RLN�b2�G��h�$ܮ��\u001f���zL\n��Am�#���̹i�]\u001a\\�쪏�q�Q\u0012e�T^6���A\u0014;9QaĽ0�)7Y\u000bۢ\u0011�@���вN�����s[�L2\u001a�\u0014��\fϼ�l�\"\u0005i�0A6��\u0015F��/\u0018/�9���|\u001c �W��\t\u0005Ѿ�\u0003�\\���Ey�t\u0012�c��`���jD�b1�\"���K&\u001a@�r�3��4��\fv�b�������9�\u001b1�\u000ek'}ul������ه \u0007^��H\n�\t\u000eB�dc6#������{~���hk�:\u0010��A�hW���&t�+��\b��\u0003[h⻬P5�oT��\u0004��y͐�����P�����\u0000\"t��G=G�3�DiQ\u0004��h�Q\u001f�+嗄M�s%0\\\u0013\u0006�X�xh�.��!��C�$�\u001d�Y�\u0005���\u0015<��d\b�eWj\u000fdFfI\u001c>B�p�\u0010Ns7���\u0003��r�nW�m�rXgT5��A��$\u0004���yM�˾�26�\u0018��6��6G%��!\u001c|�WŜ�0�Wƣ���B���4�\u0006�K��A~�1�a�f�}5��-`�]�<\fƄ�,S��v��%\u0005�\u001a��!���\u0012��J���������!D��\u000f�_\u0018S�\u001b\f\"��7o&J\u000b-�i�Xۆr\nwL]����\u0001.�1�p��d:j@q�\nh�\\ �|V{��8�\u0003���WB�tA�[3�ڀ��ƃd�48\u001f�|�\u0016\u0010\u001f�L�F>�\u001d�G��d\u001a�z�o�(�w!\u000e��\u0010�nE3\r�j�\u000f�\u0013�~��\u0010\f�q�+�s�ש�Td�cv'q��]w\u000e'[�S�4�q���\u001d��\t�����\u0005\u0013�b\u0017\f؛3\r����\u0014�m��\u0017�:j��d4&����'����Ž��2��דk�R��h��y���$���B�m=�\u0004p�����Ċ�ٛ(e\fl�YU\u001a\u0006\t��\u0015�s�1k�}\u0010j$��\u00188\u001bi&���b�\u0017���H֔W�)@5��x�O�^�i�tE���#\rXâ��\u0006�\r\u001b�}\u001c��\r\u001cJ�pm[@3�u��f\nLb\b��\u0007�-�JRlk�ٙo��R\u001eOv\n�o�O�g\u0006ɣB^�$\u0018����z8�2O���\u001d��UR\u0006*���\f���Dd\u0010�����%bٙZ� �����1�=���最?\b{:�햘�\u0019�7���\u0007ۈ�1\u0006�À\u0006�hW��w���L��h���)�3��q74�?�w���1/ވ�\u0002��b+\u0004���b$�y�m�X����;�#N}Y-��aqH/���Np��\u0000��\r��g�Ҹ�P\"�A���\u000b�ߓ��^�BZ�M�Lh��8�/@�&�\u001a��\u0000��vrxQ�Ø�!\u001f��98Jh\u0018(%��ܽ\u0001��\u001eCUJp��f�tz)�\u001a/B�\u0000��,\u0000\u0000\u0000\u0000\n\u0006��\u001c&N@��\u001a�5�e�|���@��B&{x!i:�\"��V�Q�o��@���gy�\u001d\r8ܮu�uWb-�\u0002\u000e��|G�=-��Z�_�\"|�iN�\u001bb\u0002\"�\u001c�D�O��Q����Z��B����`'��\u0004�E\u0019x �����\u001e�w��\u0017&)ƿ\u00173��_-fȓ�L�����\"\\'\u0000�b\t�aa'��ȭm�\u0003��\u0000���bP1�0X�j\nv<�G@�\u0011������/͘�̵��ޫ��p�2pInXr�«3`�sY&��=���My�%Hylj�[\u0003\u0019֑J�l����\u001a�[\u000f�\u001e��\u0006C�af�\u0011\u001d6�Y�3�&\u0019��c\u000e�\u0016��d��O\u0011���0���.�\u00113�\u000b�\u001bR!\n\u0015�!�a��D�n�7\u0005�q��Tr2�\u0019�\u001b�\\@\u00025Q�\u000e��\u001f��A?�$,����s�\u0012Ą1\u001f�o����\u001fPT����\r\u001a��x�&�&��\u0010�9j�֡8\u000fK�#�Oz\u0000\u001f\u0001U�ޟMK=9��7������!d�\u000b�\u0006qM�3\u0019����@�����5Z2V��\u0001A+���\u0010CL�\n���\u0015�OP!YT&��\u0012\u000e�P�\u0007�&�R\u001d\u0018�\u0002\u0015�E�\u0014�a��D �\u001c@���C�Ӳ�����S�+�\u0000zܞ?\u0017p+�Y֎2t͚��d���\u0016La\u0019 T�*\"AϚ2�^\u0016�;`5�\u001fK���m�q��I�c��z*���d[��u��\u0010Y\u0013�G:f��\u0003\u0014(K-���\u0014\u001e�\u0015͟��S�߃��,5�!����eo\u0004Qɪ.��\u0011f�נ����jY�,�\u0010����$zq��à�A'�$@��X��5�V/S� e\u0000:t~�\u0015�v\u0006-\u001a��ڌ�4�\u001c2J*W�����Gїf3\u000fZ�<�7l�\bd�:�����\u001b\u001b�\u0005\b�F\u001e�fe�ӵ�\u0003�O\\���4qJe�\u001b�o\u0007I�I͡�\u0007,����@\u000b�Ed��R�@}���\u001a�\u0001a�\u0004�y�in�\u0016+�d�݇H�C���2v�y�8��\u0005���7���X�X*�?�\u000fW.va����;.�A�P\u0007��I�\u0001�\u0005[sWu�`�t^�h3iU2����?�x�r.�]Y;\u001f)l�\u0003�X���Ur����2��xu-����w�\u0000T �\"��C�W?à\u0015��rć\u0010�$�ƒ�T�Au�Ƕ�P\u0012R�A;�$T��Mz�\f��ʲپ��G&\u0002n�e��]ʃ\u0010�d\u0003st\u0006�P�_�>-�G\u0006�LsH��6��\u001cyF�\u000bl\u0016E�\bC�;\u0011�u;�(v�ֵ�\u000e�2;.�.\u000e�?����u=��0���j�7��bOw����>�}=�Z=�\nM\u0012���)F\u001fТߤӏ$�\u001c����5!'g�뱸�`\u0005�?�\t$L\u000f\b�����Z������uy\u0014���\u0007F��8\u0017\nA�\u000b@�m4�\u001fs\b\u0004Z�f\u0001\u0000���\u001bmW-ȫ��\u0003�H���]��Y�Jg`y�T\u0017�GOQ�\ne�_��\u000e\u000b\u000f*wo\u0016��P|�cx\u0006���,�K\u0005�[�7\u000b��\f95vD�\u001e\u0017ͅ:(j,�S�\u000f\u0013�C�t��#=�7�2�?��R�A^�$h��L�jR�\u0015\u0004\u0010=�\t�˖�!�ϕ�T}�\u0002�a\\�9\u001d4zZ����[E4�\u0000/\t��\b�5�ݞ��A�\u0011���\u001f=\u001b؄\u0011ӕ\u000f�MZm+�wŰ�ě�� N�\u0007J�\u0019���\u001a\u0000AK\u000e\"�h7�\u0007+U�|�C]nү��<�}��\u0014m+�׫�+[Ē͛Y�И�t��/\u0016�u�\r\\��0fx*���sM.{�\u0004�Yp\u0004!M�z\u0018B\f\u0002T\r�y�(��؋�\f����Tw\u0002\b|ag�ܖl\n�<�\u0003��)��v��=] ��e�J\"IW\u001b���b7�\u0014\u001d,|\u001c~R�\u0000����\u0005kmd���̎���t~L\u0013����aڡ�iy;\u0016�Ƃ��o%\u0016kP�UZ���D^�;�������U�\u0006�\u001d&.'�\u001d:g�euF�\t\u0017���\u001c�19���\u001et\r}2�-�A\u001d�$|�����oؔ�(\u0007�t���\u0016��\u0010��'1���\fK�@��^[��\f�ş?2\u001d��{i�䒿}�{&������������I9�.`4�J\u0005�{��1�c��ψJ�cz�TAAh�Qo\u0014���f�\u001b�Y>�v�Gw��\u0010�_S\u0011��7M\u0019���h��\t�<�\u0006�\u0017\u0019�7\u0002�?X;m\u0006C�k�n�2�w���P��@�W4���\u0012i[l+�r(���.��a�C��~P���@����jP�\u000bF�>/3��\u0015ߐ\u001e�Zo�����7 |�x\f\u000e���\u0001�A(3�m�i\u0016�1���j\u0010�\u0017���R���i]�CR�؞�Zl-�m>�A&�$���M\u001e\u0018O���=:\u0014�'C�\t�vi^}\u0001�y�\u001b�\u0006�����{�a��C��;ZmrO����N)�Ƶ�����m�Zכ�\u0014�UѧY$�;A�L���uPB^���E�NyRcvg�\u0002\u0007��=\u0016�\bb�|#J��\u0002�\u00142HgʼnN��q��\u000e/��F��J7�\u001e`|J�E�\u001c��\u0012i}`\u0015:�gs�#�;䚘r��{\u001d]\u0010�\u0002��\u0000\u0011�R{&����J\f\u0018l=]#)�N���ԑ�Y���\fO\u0007�\u0016V�4Q��N��\r�\u0006�IJP\u000f�GF}��\u0000�2���/\u000e�C�\u001a\u001bXl˭>�y�\u0003�R-��~�E\u0001�4[\b��$�ua�\u001aտ�r�bnX�4��v�A/�$���LǧmY)�4(�!�\b\u0010\u001b\u0011�e�X\u0005`\n��D��C���E�����֥�\u0015j��\u0006{�U�\u0019Ԣ�B怳��%�\u0014�O�K�_�;v�\u0010cP�q�[2#V\u0019\u001d\u0013��5d��C��\b�L��\u000b\u0019�0ͺM[�ž�b�x7�\u001d����(\u001c�r?SB�\u001a��撧�6}0bh�N��G��x'Z+�N?\u0000q��^6�un�a{a�clV1\u001ec&�\u001a\u0001]�!��ӯYD$�\u0000�W�(l���l7�^���\u0017\u0006ۖ\fy\u0013�U� \t��\u000e��w{�!�\u0010>\u001d�dҺ�.G[8i��\u0014�IT���B�-��0cw�3\r���}��G\u0013���4(�Z�)EJƛ��e��o�\u0002\u0000\u0002J�Ae�$���M\u001d�o��s'\b�}Tƶ���\t5����x\n�����ob��H9�\u0014�\u0019\u0017,M���k�U��Z\u0000�����w$��e��$\\F[rS��t*>��l5��\u0015��*:)-\"�A\u0002P�~$��aE���\u001ez*��U~.Ϭp%����c\u001c�\u000e\u000f�FE�!��ɬDH��SW<|���\u0013Z�Q�c�p\u000e�$�\u001e�Р��\u0000Ӳ�=�\u000f/�aif���/k��g�߮�\u001cL�EF�\u000e�\ns[A�3�\u001dR\u0001X�\u000b���\r\u0003�z�\u0019�\u001d���\"w��k���\"H3\r\u000e�\u0001\u000bGzߴ�\u0019��\u0010\u0016ݱ��+[�!�\u001d�c�\u000b�D��r�^\u0005�jv�W�-eZ\u0002\u0016�ޑ��f�\u0001^v�\u0010&�\u0007���\u0005�\u0005O�xF��\u0013��ב�S+��^�<�v�^6Y/z�e\u0012ߤ��-��%\ro��?\u0007C��A`�$̀�L�{�Y�������a��Y�>�����_)�*6�3�OM\u0003/)\\\u0019T��#�\u000b�\u0004\te��\u0005)�<}��U��\u0000�yš#7��\u00075!E'�Y��\u0001�6�p\u0014-<�����P|�A�+\bkd�3%,�\u0007Fq�\u0001�>s�ɔ�JK��4� p⻴�8\u000b'��\u001b\u0003\u0006�\u0001�M\nP�\u0014ߏW\u0002\u000e�\t\b{��*��z\u001eR�h��>f�-\u000f��dm�\u0018�+\\\u0014��m�x)��\u0005(�*8��W��$;\u0018�\u0010T(�b��т\u0007�+\u0018ȸ�m\u000f�ԙRȑ?\u001d�n�t9����\u0012�:g�40��H�[/�~qT�+�$MdQ\b.��\u0018���<�8\u001f!\u0018Q̳#~��ҢbW�\u0013\bn�$\u000fy\u0017.�\u001c[>8�Ŧ��!g��\u0010\u0012�t���S-����(\u0018\u0001]���\u0006�\u001c>�C��+�\u001b�Aq�$����a�pK�'Q 0||�,3\u0007\n�\u0010���\u0000W�\u0011��\u0018\r\r\nGwD~�D����T^t�2��.���\f�Y�pi\u001cz�\"�z��G]��\r\u001eY�-{�:����\u0006X\u0007U�v�ڌ��rD\"3W`�V��ѥ(m�����[�ѕ\u000bw�\u000e(���\u0003\u000b\u0018������u\u0019G*��\f\u001cu�<�����V�W�88f�\u0000\u0005K��u6dT\u0006����\u0003\rH�\u000b{�����sw�\t\u00134��\u0017]>ފ!�TE\u001f��T\nE �\f9�V�\u0013�[���tmԐ+�'lM��\u001f\u001d���\u0001��\u0010��\f\u0014,s��_�F/竧���\u0017+?\u000b�So�\u000e�K�Thߋ��Dl\u0012��m�~�C��+é���\u000eeF�1�}gԸ3h�po(*�\u001d�j\u0016�z޻����M�)tF6x�F��-s��v\u0018|���\u0014�m#�Ah�$���l��\t�x][�NpX\u0001����PV(|R�g��p\\A%>�\u0002\t���G�q�LC\t��\u0004�������[\u0001\u0007\f���-I�0�/\"�g�,�hc�\u0001������-Q�C����Bu\u0017�R#)\u000fb}u�\u0007��k\u001f\u001b�\u0012Ͱ���� ���jݔ8��7�x�x�\u000bVL\u0012����Džh�}��~���p\r�\u001c�1�;��攄\u0003�^�����A�v��-��r��C\u000bm��P}��%\u000e��\u000fn#'T\u0019�\u0013͛=C��\u0018I\u0016\u001b�۱FP;7��捅\u000e~�/Ss\fԼ:�ooq����\b�\nw)�΋����)�n\u0004C�\u0013�������\u0011ٰ�ԗ�p&MOj��3ʊ>5?ZY�8ȸ��m\u0013d��\u000b�P�\u0014ׁ�s�K\nWP���v��mM7\fD\u000f�\u00158�Ru�>��P\u0015����Z�*�_�a\u0017Z:q���6h���%��O�{\u0004����H\nD�O�8\n�m5��\f.\t��{�{��\u0002\u000b�錙�\u0012A\u000e�\u0018Bs_���ӳU��T��\u001cjSs0�l��\u0010���?�}��C\u001a+4�\u0004�ݺ\u001e�����Ps\u001a�}�\u0014f�\u0006�k\"⑟��[?�E5-������Q,p#��/���A^�%0���l����o`\u0005\u0003\u001bD�\u0014t�x,��:�\u0005���p��t����u�\u000b=F\b�\u0014\u000e��\u0005r�\u0019�kng*s�Ҝ��/.�\u00011�i\u001e�\ru�\u0014�{�H��\u000e�q�}}�E��嫤����f�Q\u0015S��\nK٥�AN�%D��L�#��\n�\u001d��[��\u001c�|���\u00148|�\u0011��\u001fˉ��)c���YiN�\u001b@��2�3?�zD�ҭ�8y\u0004�@�\u001c0�\u0003h\u001c>8\u001b+���,\u0007��ӫ�<\u001e%�&��+\u000e���8.\u0002�\u0013?E��7��O�+��7I��\u0006�!\u0019{���E�ق7Y�&ۃ\u0012\u0002�L����С^\u0017R�'���\u0007\u0019C\u0006��ڍ�*\u0011��z�\u001fn����\u0001 %C��r�v�����]\u001c܅�4'\u0001���\u001f��*��2y����K�$�oi4U�\f\u0017ۄe�uh�%/\r�#Fɒ�-�\u001f��\u0002,L�\\B8uW\u001f�x� �\\t�+��@sN\n71t�o��\u000b���2�7���\u0004W���_4i�0�P��ScE\u0017cLMƎ��t7����B�\u0002s0��\n�`�ۣAC�%X���\r�<ܦ�`�\u0017|M�S��qF��[�\u000e���a�|��a�$`r\u0004\r������d��\u001c�]�J�MEj:\tv-W�^������N2��k��l<��ai�\u000e�n\u001f$Ut��� �1��\fQ����=;��*����v@�N�OjE8�EH���\u001b�\u001c ��>���\u0002�płU\nТ;����2�Wt�c�B�\\���#\u001a\u001f_�U h���NZۑi\u0011�R���h��w��Afj�Lh�c\u001ad�&�XN��W��f�l5�=W���\u0015փ��dj'�q���Ѽ��g��g�� �\u0018\u0011�\"ĩ+�B,d�c���1E>\u00163�\u0006\u0004)w�`6�I8�S!F�\u0007�|�;n��aG}\u0000~-ք�\u0001��\u000b�'���\\�A>�%l���\u001a�Q��Y��v��f��o{W>\u0010����z�L�\r,�\u001cQ��\u0019k_L㮳߅\u0017Qb�C|��J��t�\u0011l��Џ\u00030��(��Hݕ�\u001fz-\u001b��\u001aW>5\u0005���@|l*�\u000fܦ�ğ\u0015#��8M�K�#�a�W�\u0019�\u0004=����G\u0017��s\u0004\u0007����\u0011�\n[�A�ԱjC$����\u0011��\u001e��VS\n�?l,��j��0������Օ�(�\u0001ɮȣ�aS���#��u��\u0001̚z����\u0019Ɲ��H@\u0018\u0011�J^��ש�Е��Zݱ\u001e�Md�A\u0013L�żCY�^�db�N��(���\u0003���L!�E�)Y���\u0000���\u0012\u001d����Ș���;�!�\n��ܼ$R|:)��8�7`h��\u000eR�\u0013q�A:�%���lӘ7�y\u001f�Xъhk\u0006�pI�N�\\��}~��Ib\\��J\r�.C�9�e�#��4�Q��\u000fYG�\u0005\u0004����\u000e\u0001�p_��0���\u0002��uV�ޭ�\u0003�\u0001��f�\u0012_)�>��\u001d�\u000e���+��r\u0016�}/~�f�(m\n$G�\u000e���\u001e>��e�\n\u0018��K\n;�\r@b��3F�)lt��n�\u0014�4I��\u0006���\u001b\u0002—0�S��$\u001a�\u0001\\�k�:}B��7u�9\u0013��{=}�\u0007\u000f�*ȕ.���1��g���\u001d���X\u001f7����\u0006D�}�X+\u0017u�\u0013)['-�K�$�o0\u001b���!`'�J�f���\u000e+E�\u001f\\��\u0014�Zy\u000f�ٽo$�Z\u0012�3�r�\u0004�\b\\�f����\u001c���P��)��AD�%���L�\u0005���\u0010�m~�Uv\u0016�\u0013^~)]�6���X\u0002\u001d��f����V�\u0006�\u0018݈�S�h\f�/[��\u0000�\u0018���dт�m�qG���;�\u0007�رp�7����\u001f\f�ub�8���õ:b,e\u0017��\u0004�Y�\u0004�{B��\u0004�H��m”1\u001c/�\u0002�6~o\r����\u001f��A���a���w��+\u0003�r(\u0013�]�F��pô\u00049kC�l�9\f\u0007�T�z��*W�\u0003�3O1i�U\n�H$�,�X߾�/�9-�\u0005��E�,\u0005\u0015�P�))�^��\u0013\u000f@��0ȩz��$\u0018�`�[\u0006f�H\u0001ӡ�x�g\bٖ�w�ƶ\u0002v\u0005Տ�n\u0002B\n�J���G��sc�6^�\u000fn8+`�;?[��E�m+#\u001aL�c\u0018�E#�AC�%���L��\u001e����a�\u0001�Y��\u0017�\u0015\u0014C�E��\u0006LG���C�\u001b �(���j\u0018*ze\u001c?\u001d<\u001b|m�p&\\\u0012\u0005l��\tH��h��������\nc/�}�1��\u0007=S��zG O8�F����ﮱǾ�\u001e�O\u0018\u0002“F_A'5�l4g��\u0017�h�َ��r]͂�\u00170\u001b�#\u001d{\u0004ή���Hck��{�(��&jk�?�o�,ImW=c�i&\u0017�4L\u000e6(z���Ȭ�����\u0007��#]C\"��N��\u0019�>�ɡ\u0004\u0014�X����峁�\u001a\u001f\t���B���Ér�)n\u000e��EQ�zcB�a�v��\u001c��,U$�lK�t�+B6�\u0006��\u0011�^Б�%P��\u0007\u001d�Q\u0004���Vw�(�a�.,>�w�xp\u0014��\u0013ٛ�A<�%���L�hYE��xiO���)`��O$p�C�'9�\u0001���$� \u0015}Ga�%��l�d��6��=�|\n\u001b�O*��\u001fO�Z��n=\u0004PC��G��\u001a'�4�g'C\u001c��I\u001d:h��X�\u001c\u0002\u0006%��#\u000e5�\r3��[����ҁ�._�רxy'�Ԁ8C���g\u0017�B��\n�:\u0018����G�����m��p�d����ِ~\u0017�\u001f�2�\u0011iCfk�z$\u001a�=�n\\�̰��y�+��*Px��\r��q�?\u0015��+a\u001b+,y\u0011�|ٻd}��N\u001cݚ�F�Üd�>t9N�\u000e]�}^\u000b�\"���\u000bS1v��>TS\u0000�\b�\u0013���e\u0001�|r��\u0013�\u0019�h}���x��+\u001d��%L�ȼ�oZ�ۣA=�%Ѐ��œ��0�te@���������6���\u001bK��᧦��/����nj��� ��B\u001a\u000fX;�Ӧ���>a�&=�W�G\u001b۵&\u0015\u001b%�p�g.\u001cJ��k�\u000e�S�Ł���c]��d3K�\u0000�\b�\u0010r\"v\u0013�\u000e��HZ?�|(/�\u001c�\u001fn���d.���\u000e�6��-+��D�Z�EdM\u00151كp��_��\u0019\u0007���#��S¥9n�AB��mHgI�Jp���y�9'�G�+Y��'�a����?��546}���\u001a�0�����\"�zۄ_U�\u0003�S$\n\u001d\u001b��\u0002ą'�%\u0002#��K\n�\u0016\u001f./�3;j=DU�<�\u0001К%�4!�\u0004�\u0017ֲo������t3��!�CY\u000f��4��F\u001a��5�'��s�>�\u00021�%e�\u0012\u0000�\u0007\u0019\u001f\u0007T��h�r@b���Ix\u000fl�\u0012b.�i���t�E\u000f~\u0011�wm\rj�j\u000f\u001b%�܆X9�\t�E�.�2�k��$�eV�����\u000e��c\f76x�[02��#�C\u0016�1q\u000f��z0p�IW\u0019���\u0014�Ѻx]-�xjE=� p\"i��u)��>�b\u001c��C\u000eE \u0000\u0000\u0000\u0000\u000fՄg��+��ZO�\u000b�m��Lv�C�����[�TA3T�7P�\u0016\u0014�6\u000f4�/:�/\nӔ�\u0017eN\r���v)\u0004t�D�ƪ�t�0&\u0000�_�\u0014\"f�\u0014�\u0017�\u000b�qk��\u0005l�2�\u0015�D�X\b9�0\f����q\u0018�x�\u000e�^H}zO�ˆ�\\�\u001c\f�������>�\u001c�Hڕ/y�\u001b���I\bB�T���\u0016Ԉ�\u0016�M0�*���Z�n��E\u0016c�8�������\u0002�L�\u0015�KBE4\u0003�F�\f�\u0003�]�ڼoD��%��=x�q$wX�b���g�o�Ns�\u00163�;���4�h�B��\u000f�i@��]x�.=���_��G�f��]0�0\t}����4�>S�(E|Fu��ڦ6;d�����\u0012\u001d��)\u0019a��\u001f{d\u000b'�j�A\u001a�&\f��NK�d����tE��z\u0000�\u0007e%S���|\u0012��\u0019�l6�\u0004����AUl\u0005�}u�\u0003G\u0005g�X{C��\u001c\u000e���ڙ�\u001aJ*�;0\u0016�\r\u0004jg,c�A`t�\u0006��^�����Va�e���@��\"������TK�\u000fLvvj�\u0019�T��q�\u0017!mB�\bm\b�^�\u0001@�5ݰn�j\u0007]���\rk��*�\u000e4\u001f�~\u0006F\u0019��S\u0006�_�6HU�]��P��xk�F�-\u0017���\u001fp��F\rN\u0011�\u0002���u���_����\u000e��3���4����E��c�xe��>\u0013}\u0002L��`}!�Q��\u0006�\u0011̘R�.\nQ\u0000Y+��\rz��I9�q�X\u0015��\u000et#\b�uVY����\u000ek\u001c:�d�y��H\u0013�{\u0000�M�<�M�;&4���5���U\u0010�!�\u001b��\u000e\u0011a����\u001bwA�!=��W\u001dA\tͻ�#����dh�B���A\u000f�&H��L؊���6�w���B+�宻C�\\󊴏;&��3r0L�\t��p�|&\rY \u001f\"+�\r�8�]Z�� Y����\u0001�/)���%孿1�\u001f��I�ݥ��z{��o��Ƒ���A�$[����~�&L�\u001e\u0002�e�]P�\fz�\u001c�ͮ�{D�U�w��\u0001\u0017\u0004�c����~h��g�CЛ\u0004s��=_\u0000�*ϒ\u0006��w��ZYP��VJ�at\u0004wÀ\u0012�[�\u0015'ߛ�L�m\b�����FO�d��\r����2��\u0006�\u0006�\u0001\u0004\bP|��\u000e��q<��:�7� ��rh��\u000e`�\u001as�e��[\bo_����\u0000޼\u001b�A\u001f�&\\��L�\u000f�\u0013_�?k\f����>F�U?��a��\u0016�\u0017[�i�<��zE�\u000b��zv\u0016W�cy\u000b9T\u001b�����\u0006\u0016�*�����3�\u0019�e�\u0013�f���~i�z���y:�[2ճ�L�sB7�G晠Ȧ:}�E�iԧ��o\u0014�7�+\n\u0011`w\b�\u0018��\u0011\u0019��\u0019��m�n[�QoIg1\u0015\u001b_�\u0015��\u0017������)�������:L�#��<\r��m*8Nۧ��\b\u0015-�A)�&p���\r&�@�p\u001f�����J�\u001e�i����\u0003�\u0014��\u0005�n����A�-V���-�ϱ�u�L'^3\u0016�\u001fX�L��)Qr_\u0014���ڏ\u0017���\u0010��d�z�\n����Ǣ�,C;���۝��\u0007�K;&wqezM�v\u0010q%��-��æM&��\\UE�۸b��\u000f\u0017�\"���=�7\u001fUF��\u000f��߂�\r\u001a\u0012o�]�o�lJ'�q|�N��\b\u0000d�\u0010\u0006��I�\u0010ұ\u000b�d�D�1QHV���X�wmH��3J��zp�\u0001@)1\u0004H��W�r2D���\u0016*!-��c)]�T\u0012?=�R��\t�\u0015�sRRf�\t!\\\u0014f/\u0007��>:6T<���9_����V��i2��A+�&����\u000e\u0016���6\u0005��$b}�\u0000֛�0��nI\u0014h�\u000b�\u0003g\u0011�m2�����\u0014�\u0002 ��!D�����\u0019�5�d.����ۍ1�\u0001�\u0014�gu�O�\b�a9�\u001c��\u0016^�'�ł�W�\u0019�\u0011�\u0012|婼2|%�*�w\u000f5_��}��$�W\fꎢ��v�������S���b`���C��ѷw{��c�؋�\r\\��Z^d�T\u000b)(����\u000f%��$�\u0019���\b�\u0018Wn�̞�����m��9��{���!��B�\r\th�p�N�0K�.\u0012�P�R��:M'!l�X{�a��\u0001�9��X[��>\u0004�\nla܊���.HRV��)ԹPL\u001d���Q�z�CA�K�ҡ�A9�&���L�\n�m�M�x�l\u001c�\u0018�C���8�\rg\\��\n���\u001f��W�jo��[)6s�1��\u0019��\u0002� }/��QuMj\u0006#�t��{�9�p��\u0014J$��ܴ\u0003���\u001e�mK���#8�AO�&Ԁ�\u0001�\\�)m��uO�(w/\u0006�p\u0013�\u0011��n��\u0010[\u0002[��N}�\r6�D���#;z����w�\u001f�G�X�曫)%s���:d\u0011�)\n\u0002�\u0011�����_�1 �PQ\u000e\u0014��l\u0011K]\fc�H\\y.܂�ɳ4��\r�!g�\t5��7��\u0012�\u000e��2P�\u00199nOt�#<���ܝ�\u0002e��\u001e�d7�\u0011��1)\u001f��2\u0013���jY\u0010�S��X3\u0010�̴\u0000j���[��\u0010魗J�ta�aW�>����nRY�q�L\fhu�\n]��21�\u001b��\u0018���_�T\u0010�!���A���\u0002�\u0006&ĥ�H\u0002\u0019\u000ey.�R�$�B��R`Me妘H|B:�Z]�)i�)�F�҄0`��>[�[\u0010\u0013;���=>M\u0006x\u0015��$X��n�$��\u0014!��\u0012&�AC�&��M(�w#�>6��[��L{$@���尚w?p��N�>7�'��B��ٸ�)������F!���Ú7Zuq�|�NJ�\u0012�C\u0018<�\u0010Ps�N�ڥ�s���/\u0012_2���.\u0010\u001b\"���ʓ\u0005zw�S�z=�z�\u0014�ΐ\u0004�ò�6!fF��\u001b���>��R\u001cQ�N��X�YE�+��\\+�U��6W5)F\u0001�״`ye��q�j��<��X��M�\u0002��d�R7'��M��4�T��{wS$��w\u0007��a�4n��\u0000�\u0000oQ�㹾�H1������\"0\u000e\u0010p��<\u000e���'���\u000b;\u0016\rёA�\r\u000fh�\n\rƂ>\"\to�k�\u0015�;�\u001c�4��h?0�J�ǽ�l@��-v�cI̝9zŋ\u0013�e٣A5�&���X����;���\bo\u0014`��\u0011\u0013�Q�\u001fڊÿ��I<���?���\\��\u0007v��G�n6���z�X�3R\u001bu3� a\u0015珄��iS}\u001ep�%ഏ��8�܋؂`;z�l�\u001d.;��\b�1��w�#@!\u0012��i���\u001a)y�\\�?FÊW5�5�ܔh����l�D�~���\u001f�\u0006�\u0006\u000f\u0004v��N;-�>N����)�/�bIy�-\u0005Z��\u0014~���$\u0006F�{\u001a�3���z�\n��\u001aM\u0017&�$ +U`�\b���@\u0012�I�V���Z�\u0000�_�.\\\u0005�\u0018�`��D\"p��ÿyNX�=����\u0012��&M��7٩ww���}�\u001fO\\2��S��q�J���\u0003�\u000ex%\b@\u001fC�u\"�>�\u0001���A\u001e�\u0000\u0000��L͹L��'R�\u001c��`)C�Wx��&SEMDxú�\u0017oU��Ԯ\u0000��ۿ�2*\rd-�����w\u000e+\u0002�D�we90T/�\u001cl�*՗��v��;�/%����\r�d\b�}��\u000bbIB\u0019��k\u0004������?tp�/K\u001e��x*\u001fP�8�:@���$\u0000\t\u0010�&�y\u0001\u0007ݑ^��C@\b�ykH��\u0011 �\u001fr\u001b\u0015��Ć�L�\u0004��P���K1/\f=�O���c\u001e\u0005�!�Χ�讓�3\u001aZ=�S�����h�\u001d�bgD�n[�Ts�\u0005��\u0007j#��������\u0007\r�s���\u0019�x�\u0013��b\u0013[��/�\rf�����K�����{A*\u0006v�AD�\u0000\u0014���b\r5\u001c��\t��Е��nTր���ڹ|\u00056�PF�\r\u001d�'\u000fO�m�\u0012�JGE.\u000f�\u0011[w��6���ɯY�jzD-��\u0017O �MK���\u001a|����#!\r%�\r�����b��怕M���3V�\u001a��[��{\u001aFC�G9i%U�[��K���z+�sXz�i\n�3\\vT\u0000@&p�i��\u0015px�����?Ud��a�?��2�C~e`�\u0010\u0015[�6Y������\u0001\u0016O'\u0001\u001d ��r�B\u0004��t\u001c\u0019朇i�6ȑ\u0005d��\u0019&�J\u0010�\t\ra6�Im���\u0019pZ뒚�T����&\u001cPl&]왪��㤣l\u000e���lC��\u0007ɍ��Hy>b>\u0014f����\u000f�]Jݸ*:��\u0000IWJ���&�Ac�\u0000<��M :�-t��a��^晾so��v\u000b���X\n$_\u0004f���\u0014\u0013d��F�B\u001c�\u000e�&��3��š(k\u0010�P�C*e�\n\r�~�\u0005�IF��ü��YT�j�(����\"\u0000�3\u001c��58�$�gM�E9o,@���sf\fq��v�\u0002�x��\u0004hb�@J~ک6��sLjfY�\u000f�/*'MOo,F>>�yV��Qh�J҆_\u001bjf�b��m3�E��K2H�L�F:��|f�����\u0012碻fl�b1�-�v�����W�kvyJ�\u00039H�@\u000eK<<��jDi %���͸R\"\u0004\u00160Y�R\bo�M�|��8���\u0010�c�*R�\u000f�-�\u0017�\\ؓ\u0013q\u001fMp3���=�\u0001��uh�2O�\f0z�҇R��x��\u001cڎZb>\u000e��\u001a�uViS%�p�es�|O�I&C�R�Ai�\u0000P��L�\u001c��.�'\\u�w\r�\u0019�D�������\u0016�U���U�Nerr\u000f����G��Lh��u\u0015֐\"��\u0004\u001a�a�%m�U\u001cC9i�\u00046���dz����\u0010U�\rs�O\u0011��Y\u0019�踛�n�@�l�9e��7\u0016\u0003FXdH�ܲ��L��\u0002���L��\u0005������L6���|�\u0016c(l�Jy!�>�b��zfj�\"l\u000bQP&8\u0011I�\u0011S���*�xL\u000bt?��\u0000�\u0015�\u0005��ƍ��\b��:\u0011���?���\u0012O� -i��7R�\u0018��)7\f��foqq��7�=Ͻfy�v5�W�1,C2�����R\u0017�F\u000e\u0010\r�O�\u001c��62W�A'�F�\n3‘���Vk��\n>��%�`\u0000\u001b0��z+�\u0005n\u0018���2�K&Ij��k`����\u0000�;�|���2�����\nI6\u00010<#A�4&�P�R�A.�\u0000d��L���K`��x����0V��g��x\u0017�\r@�Mn�\u0011�՚�6\u0007jc\u000b\u0015v\u001f��\u001a�xɟ��^�������M8����V������ӫ\u0014�\u000b��7�(����&��4__\u0004\f�\t�c��{�\u0015�1\u001c��H��o)C\u001bM�\u0013�\b��{�T��sI\u0018�{S�����c�\u0017�n1�w�{\r v\u0000d��U�*T+�$\u001a��\u001d���R\u000f���ꆷ��Q��Y�\u0017�\u001d\u0002\u0000�o����\u0018��V\\m�L$=c�w�\r�y�\u0006B�\u0006^kha��\u0015\u001d�����3\u0017��\u0004aCL�H�@t�_�\u0015\u000ep�21�k���2��B\u001b��Ě\u0019a岶l�}�\u001c\u001fU�o�H�&J��,4�e�A.�\u0000x���mu\rEL~\u0010Ō��jj�a�\u0013'����ʸ��\u0014\u000e�b�\u0015��\u0013�#>^�佖`��<�އKcK�˖�R�\u001f�\n���s�\u001c�Xt(�w��Y�\u0000��k�%��#�\u0016��g��\u0010h\u0006�{�\u0011\u001b�����bӕ�@H\u0019mE��\u0003`m�Վα�(\u001d�����\u0006S0{\\e��k�ѡL&�O��ٱAB\u001e�E1r��AM�\b�V�\u0017����ء\u0017?�n�0\u0017^ym\u0016\u0016��2�Y�\u001d�[2[ИO�\\իE\u0001�T���rqIK�\u0014��8�\u0006�4`�\\��\u001aa\u001a�wt,\u0000���z&��8}e_�&\u0006��O����b�\"㰳��?=p���u��ۂ\u001e\u000f�I��wi��AN�\u0000����k����oc�\u001ep@\u0011�F��J��R>\u0001��Lz��ͅ��;|�\u001cse�Q�\u001d��\n7�%�}��\u0017�v�\u0003f�Y'&�\u001d��^y�1\u001f��\u0012\u000e2�\u001e�P��8�Ky>\f$!-N�,\u000e�\u000e$n��,!3x\rK��hP�ܗ���F��c�=4\u0016���u��S���͏��\u000f�\\S�׎��*�!�n�Ӭ��^�P�wW�\u001c������\u001a��|\u0014�\t�\u000bfYs�\u0017\u0015\u0019Q\u0012�Ã��9���*�<\u000e�#y�K�4{ʚ63S\t�[![[\b�\u0016\u0001N�O�� 6�m�m���\f晒f�\u00065A�j��I����6NA�-��%�Whű`R\"?#��^/��^.�AI\u000f�\\�\u0016p\u001cxO��!\u001d�N\u001d\f\r~��{\u0000#�C�n��Au�\u0000����fEEƦ6��,e�I\u0001S��Q��٩\u0013�*j8զ32��U\u0001��\u0016�+�/�0z��\b\n`�S.\u001bɐj��&U�~�X��\ns��>�%8aFOT��/�&���0$m8�D�E��?�\u0017ID�2��|I)\\���1Kw�H�\u0016��敷�[B$�3�}�k��yos��I_�^\\�\u0011�w��j9n�X�\u0015\u0017�{��q\ne�Z�c\u0001W���\u001b��yiM�\u0007�h��\u0019�\u001b�v4�����:\u001dl�\u000e-�Ȏݯ\u000bސ!\ḃ�GF�\u0010���\u0005h\u0001:ތ����2�ֆ�\n\u0000=�v\r�R\u0005�\u0006\t����+���g�K\f�V\u0015�\u0003?B�N@a�j�\u0010\u000e\u000bI\r[���\u001cKd\u0018m\u0000}|qXaE�\"�\r\u0003�Wby}�\u0016\b�Ԃ)�-��d�$c��+E0\u0015\f%]���)D0t\u0010\b_L\b�\b���W�'���oq�hJ��A��\u0000����d\u0004|���jh\"4\u0003\u0019������\r���o�푗#�sx�(���VD0!��\"�\u0012\u0016\u00044.�Z��rN��[�\u00186�\n|�\u0010Xy{wɺ�b�\u001b�G���,ۭ\u0012�?�]g�=X�4�qwL�sz���s\u0017��+XÇ���w��Os�C��\u0014�\u001c��\u0001�}p�\u0016���\u0016\u000b\u001a�\u0012��(X\u0000+\t_��\u0018۝�,I�b\u000f����ȧ�\f��K��ײ4!w�~sA=#������\u0017�u\u001d�+\b,tf!\b2�x��~\u001f��\u0004gqPwN�s��&�x\u0004\u0018T�\"+��8e��^�����\r�J�&������\f��\u000f|��2�{I2`�̡�~\u0010T\fl'*�-u<�\\3���&�O�Օ\u0004\u0002ݲ���t��Ѓ���\u0001#H���.�����gmQ��_C}\u000f�\u001b�\u0005� �T�q���띌�X~����+���е,����NL*��A��\u0000Ȁ��\u001f�o0�N˛�Q7�<�\u0004�\u0005|ʮ��!���\u0018f'G�U��i�������V���\r)���B�q_���\u0001\\���)\u001c\u001a�'\u0011�#����'\u001bw-\u0000M��r7�J\b\u001bl�\b��Rap_�\u0011FA�bGF#$2X>���-��!\u0019u\u0000)\u0005����\u0012�\"�Pl��Sx,r~0T\u0007�.0��_x\u000f:j�q�#0����6ջ��j��\u001e�j�\u000b=�L��fUS�N���O���+[4!ڀE�N�:�T�u�r�x\u001c�w�㌕�|(�1�f�ٰ��\u001a�#�{�*�\u0013d➉Su=��\u0006m��S�\u001c�(ՁL�o{裏�]�uv�gc�W�\u000b���\u001a꥞n�w…��R.(��_�(���\u0015�,��\u000b�\b*\u0002�F�+�j\nfL�\u0001\r\u0003\u0005\u0015nټ�Kxu�7N�o�,4\u0006D\u0018�\u0012�Aˁ\u0000܀���W���RMT\na�A#׎g`k+��]�@\u0010\u001e\u0001��1�0f�\u000eŊ��dm֔�xFh�\u000e=]ν��h�Pѻ5r��T��{|ෛ:��- �\u001dH�!(�P�\u001f�G�@D ��b\u0003�V\u001a�\u001bo\r��{Sk48��ʺ\u001f��l��Ql�\b\u0015F$�L�z\u000f�Q��\u0016Gqr��J�\u000f�6~�1�I���y��\u0006PPet�\n�����O�\bS�.�\u0005S3�P��i�\u0019��oo�kx嗸KC�� �-O�z��\u0017#\f�x��-�*��eh�\"\u0018��\u0017 ��o�\u001f-�\u0003F���+�\bb\bϕ6\u0018\u00189�����\u0012�;�p�O��,�O�=1Zg<��u���\u0004\f�N\u0000�I�\"\u0002��=��H��;\u000b��Q\u0000������Aal��X�Wr?\u001d���\u0011\u001bL\u0010�\u0010WHTu��ꛐJ䣾b�B\u0007�S��\u001aC=\u0019\tb�y�����%�J\u0013����8\u0007�Ul\n�\u0014��\u0010����m�a=�\t����q��2�s,��6���PF��oMH�\u001a�ik[}c��AS�M���\u0015\u0006O@��v��A�\u0000����z�_��vɁ����\u0013��_o�`/w%ȿ\u001f��a���\u0005�;ẻ|���͝�x����k\"ܜ!��p\t\u001b@?c����k���e���>\u0003\u0000/�qS�h�`�U���*\u0004>/�d�ThᎵXF\u001a\u0013pd��E��Ɂ>�\u0000#Ž{���j��!|�z�-IS��E�lr�;䩎�kL��y�&x����%�t�\u0001\u0000���9e\u0000\u001as�oI���YF1\u0017\"�\u001eoׂ\t��\n����\u0004a\u0010H�q���)�N�\u000e\u0004rnwj��,\u000e>�\u0004\u0004T�R��#w�J���[uN+��\\\nRHѐ2[3G\u000f\r@��z3�\u0011g�{+5\u0001B�����\u001a$G�g�n�\u0005<\u0007�?�\u0010S�&�\u000f�����y�\u0015k�d�$q�!�H�]M�}�AK����@�+�anTo�.鞚՗����<�q\u000e��$\u0013�<\u000e�s�)\u0011n� c�0�<�\u001dM0�\u0013�\\N��TC��#͋\u000b�\u0017���VQ�\"S�ȼ��\u001d趷5�Q0C�T\f��pO(\b7����[X���]>��U�\u0004\u001ch�z���$�g\u0005\u001f��Py�\u001bԾ9�\u0013-���\u0000v�\u00149|Z�'�AX�\u0001\u0004��X�\u0010e@A�t8\u0016���\t�[w(�\u0017f\u000b=�܏Z��h��g��\u001a����\u0019E]����}��a���8���l�\u001bW�_�����l�\f�֚K$\u00075\u0010\u001f�*T���\u0004KLL]�%\u0016�\fw�4^)ω�Y�\u0011�Xf����\u00163��ɑ2Y�1HȖ\u0012Xj�FI쒃�W�Ah\u0017�TaQ\"*\u0010I�L�z�\u0004��\u0013�\u0003\u0004�*F�����8�ڧ�Jp��y�ַ=��}�@��n���H��\u0003^��=��B�\u001e\u0016�)t�\u0014dS��l�ir\u0019�)xO�O֙i\u0013<��Qg�\b7��\u0017\u000f;\u0018^��\"X}�<�\u0002dc�A5m\u0016W�\u000b��\r�8�'���,e�\u000b\u0006&\u0004�e�c͟\u0007\u001d�3\u001fo\u0001+���Pc^\u001d�E,H�O\u001dr\u0007���\u0000ٻH\"O�B'��\\s-�A<�\u0001\u0018��XП9\u000b'�a��do\u0002�?k�\u0016��1���w�@���R�$+�]��y��i:�\u001c�U%]���\u001c=J\t���ne����τ,'�\t��=��\u000e���\u000e�v��\u001b|�ƞ\u0011��N\u001a�\u001b\u0013Z\u0012k��ڑ�k�\u0011���\f{bc�tL\u0007��4�\r��\"\"O�\u0006��\u0011�,)D��\u0014\bU��z�\u0000�\u0007�OK*\u000b-Qd�\t\u0005a��/\u0013 ��ʜY�\r�\u0013���w��\u0012�=�M�v\f\u001e|,�����Y��M$jqG�:\n0���ƧW�\u0001��@1�4�HT\u0005:��Y\u001d\u0010(�\u0015@�9�ܚ\u0010���\u0004�͑S��Ȍ�V^�� ���\u0011�Z\"!�E��yn����P\u001f&��F`Fmī�-�\u0000��n�(�C�A;�\u0001,��Lë�e�z��\u0005&rC\u0019�p��N9��څ0\b挟��4;�{�,�Zl�\u000f6�m�0�>��82�\u0000l�\t�H\r\u0018h�8L�\u0015��\u000eh�Z\n�R�\\��f\u0001z\u0006�\u0014\u0003�A!�\u0000���w]\u0011�K+<��g\u0011yC\u0002Oyv�>\u00078χ\u000f�վa]���'؛d�ߤ\tm��of\u0002;9V��#���\u0018r�Yx���)[%n�G�H6��6J��s\u0000J-CL�.�>_\u000eF�?z�\u0003)�,º\u0006\u001e�!���]pQ�\u001e���5\u0016h\u0007�/4u�_��\nG�z���&�}����k$�36Z�D�g\u000f\u0016\u0015�W�8�~L0��\u0007_*g��p��\u0005�R���\nW�3�[Aܨ��\u0001\u0000Kr�O&ҒJ�V���A(�\u0001@��L�O=�O\u0013�ϲHY\n]\u00031x\rpGb���l\"�\u001e��+un\u001e�͞�‰�1\"k\u001dt�C'�f\u000f����\u0012<\u0012� �H�'��\u0007\u0016q���NЙ]��u�i\n�!\b.��\u000fq�\b�lp�\u0002-`��Z}��\f����1�P����#B��E�yUN\f�'l\u001cL\bC\\;S�g۳�\u001d��>,�׮Zk��e\u0018Ԭ�-ݥ�3\u0011���m��S�)j�`U�\u001a��P�\u0011@�S�+ޣ�mK�8m��\u000e�ɊWOM\u000b�I\u0003t����p��0��ӆ�Y�����o��u9��dQ��\u0018��o��\u0005\u001e~�N��.��s\u0003��\\Y�H豬(\u0013�\u001b�?�\t��+�����-�AN�\u0001T���cƲ��_�|��f�y���J��@���\u0005�Y����UL\u000e|����&\u001bm���\u0000���(\u001a�_[��s�\b�?��\u000e%�u�8X\n�b�\n\u0012ユ1|\b�PЩ?�0��N\bu�z#\u001c\r=���eG$]�\n_\rn�\u0003\u001d �����3��i��)�\u0005�\u0018�\\Y\n\u0019�CM� :�Ē�\n\u000ea�{�V��Է�~�A\u001b����\u0014���3�^ح��\u0019\u0007��ݝ\u000fU���\u0006�\u0018\f�X-\u0003�'��� T;ܙ�^�]��{�C%m-�\u0001NΕD��\u0002�;_73��ܻ��V\u0002�z\u001b�]�\u0000�)�F;��]�\u0013�:O\u000b�R�X\u000e,P���#��,�u\u001c��a�f�>ԋѱ�H�9��\\\u0006vӉ�B�+k��i$��6��S�G\u0001���)GNqW\u001b\u0007{N@�Dڐ�pէ\u0003��9��\u000f/��!�5Y0O�=!�>v[�AO�\u0001���L�����\u0004+fF�-�a\u0013�9e\u001f�\u0017�\u001ac\u0014V�4:.\u00120'%Z�/lq?�T���\u0006j�����I`\u0019`~�����\u0019(���i���\f* �� m\u0013#�E�^_̗��E�\u0002�hC���0�\u0012u5�tЖs��G���\u001bHX��E��������+����\"�*<�`�\u0013�E�B�C�\u0005E�Ǧ�(���\u0004��\u0001:V\u0016��[�cyC���\n�y�\u0005�\u001b��k�\u001c�\u0005�:�2�h��>|}�x�J#���:ů��c��U��]��\n���X\u001d��M\u000b9�{F\u000f��\u001e���(@��L����Of�D\f+>LU_��\b�:��)CnU�2!#?��y'�f;r��V=�{������\fa�;v�>�\u0006Y\u0002J�vKp�v�`�M���[�A@�\u0001����c@LC�A�h\\Wδ/>��N|g�\u0005\u0016e\tN�f }Y�\u0013w�i\u000b�r\u000e��\r�s\f3��I.m���!׍-���p���I:�b�\u001b��.Q�+����(�NX�#2b��lc�+\u000e\u0019��μ�R1���\u0003����>\n�yn7�eͤ\u0010�\u001cF\u0018�{�k\u001b��r-�'ށ;\u0001�w�����Z�yȍ+$\u0007�b��S��0�}�X\u0017���\u000b(�5&�����QQ���!�7��\r*�\u0013�\u0015�\u001bb�,��r6�`i~�*R��5��\u001d\u001d\u001eX�\u0000\u001d���U��;�[`\u0002\u0000�ۊ/��<�A<���y�Y�z<�4�[T���U\b������R����q%K�'����5\u001b�D�Ѹ |%�\b5�\u0005��AP�\u0001̀��h`e�QS\u000f��M�=�\u00195ǧI�oP\u00060�D�S�pU\u0011x\bD��Ph6�H&\f\u001b��>����-\u0007���b\u001ae:N�q����I�|q&*-���\u0007�~5�I��<����e��S��\u0012Κ���렩�\f\u001c�\u001c.�f\u0019��M��o\u000b;�\u0001XA�x�Z2��'\u000e誣�����\\�C\u0014-u/#�\n����������W`rڐ�|þ��\b�E�\u00174�<\fq�c^��-\u0015��g��\f�2yd��Od\b L�AGE��C����l)m\u0005DʜЬ��\u0012e�p½&�$B�*�S@~�\u0012\n��-�P\u0010\u0015\u0010���\u0011^�s��[9�\u001f�\u0006B���\u001ai}0��gaEP��=\u001b\u0000<�YG!�C'�ı����'A�\u001d,��P4���I��Ad�\u0001����a�\b̝i,�C�ٰ�~3�0�� -.\u0000�\u0010~�=9%'VF�|^,b�:!B5�h=��)�d�w��Fq\n��q��r7\u000b�\\�e�ld��I��\r�y���7���\u0010VS\t�i�?}�����EӉ~�~\"��Ӣv���tF۞4)u\u0006�1�\u001eם\u001dUq����h�XKj����U���\u0014\u0002;�0�RF\rZ\u00020IiE���\u001dD]\u001fܨW)w)��VL5F���2\u0018uH\f-py�\u0015�8�\u001aQ��]��\u0014E��0K���\u000f4�O7ϮI\u0012\u001b1��וs465�\u0013���A_�\u0001���s��i�WV/\f���:��N)\u001d�o\u0006� �}��=�;��H�v,n�q\u001e�4���k5}\u0006y��Bb��R�/�D�)��1\u0011�\u0005}K*�'���\u001b�|�a�P�\u0012���Ӑ��R��9#7��PL\u0006�\u0011a!����L�AL�E\u0004�}��4�j8�+\u0000�G\u0000-�\u0001��\t�a\u0010�'�6Rͧ��vx�v��7438�/�Ϣx\u0004���j���_�X\r��~\u0019�T�͔|�8a)�pkz�3��>�-JZ�{�՞!��1\u0017ha�\u0002��\u0003��~i��f\u0015�5x\rE�G\t�;�\\v�{��a�?\u001a2M\u000e��x��ZL8\ruD-�jX���~m�D��\u000f-\u00128υ��8�,l�\u001f�\u001agn�Gp\u0002?�G���\u0002��\u000f�Z��\r�ɿ�_\u0012�O\u0010�#\u0007X`�g�\u0004\u000b�Kb*���\t=@�(�\u001a9���\u0019�\u0011 R�5�ik\u0013\u0014\tj�[�\u000fꀅ+@�ތ\u0000�u�EۃKݔ\u0002q�ȻTW�o�ng-d��ʨ\u0012��-\u0011��zuN1��.�꜑��Am�\u0002\u001c���e\u001bw�\r{Q�,9�N\u001b �t\u0001\u001eG���U��V�oK�r�xZ�oA�\u0010\t\u0001�>R\u0004\u0018����\u001d�u?F�?\u0012���{���$~��&��j\b�\u0002�W\u0019��f罺\u0012\\��$�|\\%��O/^s�-޼o�W�\u000f�<\u0000lX����)f\"1�K \u001cZ%F�j��>���U��\u0013+PG�ʻ��xu\u0006\"��9�\u0012��T(�\u001e�?�R�t��\u001a��۫Ȭ:�:����P\u001c\u0010S�-me�8��d\u0010:�\u0005������ԃ�˂rEQ�\u0010�>Eb��@G{�����DL\u0012���7��D�e\"32��\b��ۂ]c��\u0016�K*\u0002�\t���=�'��+\rf�xB\u0017���f(��\u001e��������6T�ύ�+n6_\t�\u0018�!V���m�\u0018\tXl�D�W9PN\u001a ;��-2��{�\u000e\u000b>�H��nu���A\\�\u00020���b_\u0003jA\u000b��]��J�\rd���}��G_�)�����r��x3�\fJ�9�m—\u000b\u0013\u0007$�d�;�Ap�\u0016�t\u0007�\n\u0018���H�\"�H�\u000f�z���(\u000e\u000f\u0010��\u0004\u000fg�P컾��*%��/��O��S\u0016���;����}����>GC�1�\nq�בS\r3���@�A��\fc\t\u001f�KL�\u0006�\u000b%��9\u001f{y���Wt��XMZ��M~���Bȫ\u0007`���(Y\"jژ\u001e�w:>S��_K�Ҧ\u000e\u0011\u0019g���`�&p�\r���&�^�t�3&��W���=7��'�\u0012\u000eѻQ8qqQA��]^:�\u0001z��\r�\u0019�P\u0007�� \u001fn��� nd�v�.0ȝ­��Na��ʟ�FeWe8\f��;�\u000eh(RU�^�7��7)\u0012\u001dI+Jd\u0012�t\u0018e����ّ�Aj�\u0002D���l�4��]B��\ra��_;sV�g�0I��Eer\u0012�%z�\u0016h�S�+�!0�5{��M\u0001\"8\u0005,�\u0014\u0017fz���n�?\u0016|�D�\u001ax��Y�w\u000e��e�/m���1YIU��vB�K��Dp��KDfd�!�:��E�~�\u001b�Έ��F�dUߥ��3���\u000f��@m����\u0018�}���[/0.\u0014��yv��|^\b��,O�l��\u0016�=�\u000b8�\u000b ��8`}�\u0010}\n�K�~\u001ba��a���\r>��Kfw�p.�;V+f�^K�\u0019~�$��D����vbاo��v�GR\u0012�L\u0001@\u0012:$@~�\u001a\r0��\u0000�٭aA��\u0016u�\u001c����\n꟣�?��{˓pމD\"{:)�\t��h�\r�\t�\u001d\u001c�=Ң}�8��4<댑�R��woP\u0016\u000e��S%�Q�)T\\\u0005`Ie/\u0015���ּ���Ab�\u0002X���bq�Nݕ\u0019\u001fD)J��\u000ey�\u0012��]d\u0019O��6ȵc�H%V�ޜF-\u0003��\u001b��!'?��Vm\f�����F�G�*���s,9� �3��2)��+\f�p�9��lƬ���L�B�,�V�\t��׍��wk��\u000b�����M�õ#�p�G�_�|�C]\u000b\u001b\u0000|�\u0010dn-?s��pq\u0006�;\u000f�.�����\u0016`���q\u0011m�Ya;4���tj92vv��\u001a\u001d�\u0019\u0010���6�����\u000e��]lU\u001b�`_и��\u0003c����\u0015UH\u0011\u0016b����\u0011����5FL��x�\u0013U�3ظu��\u0007�㖦�\u001d\u001a_�M\u000e�\u0013>�\u001e���x�\u0005����\u0013�\u0000j\u0015�Ͷ]��Q\u0014���\u0010W\b\u0002K��>ٓ�A`�\u0002����t\u0001��\b��a�Y\r��e\u0003,s����M�E��\u0014W\u000f+*�`n�2�f\n\f\u0015O��ŋ\u0012\u0017Y8�!�\u0011�]0m�k�uS�����m6\u0010\tj���������v�.�rZuf�\u0000��q�\u0014>r\b��Q\u000f�����\u0019a��.~�\u0018���Pص�%��\f��\u0006e���܊�\u0006���\u0015��\r��=�=�S��^%)���\u0007�g���\u001c�\u000e�V��-\u0000��\u0006�j>\u001a0g���$r�{�HvO\u0017�Tz���s���Yh��\u0007}%U���&�p;%x`�xF�\u000e\u0017]BN:�B�D���f���P�.���1\u000f`�\u0018m��J��\u0004\\4wF+ >�J���W�V\u00053�:K�G��pX�e�ͤ��U\u0019�-���X���K^��>y �=���f�2�\u0012w:\t�X�����)��AW�\u0002����c�_7\"�\u0001�\"^�xW�USm\u000b��r+aV<�\u001c\u0010��Q,�\u0011Q!*;\n\u001a�,.�\u001e\u001e+T\u0016�kq����߿��TF���\u0003�ʥg�2��=|\u0010J\u0015f��\\lx`P�c�yd��:P�@Am\u001cZ*��mC���\t/~Z�hB�\u0004��0�P��g�ze8�wf�\u0006��ꢐX��1v�x\rh@g\u001f��Y\f��۵�n�\b�\u0000֡��^�\u0005'\rh�D\u0019�\b��ݨ�\u001e�\u0017EB�V�[�\u001c\u0014��y��ջaE=/�kT#\u000f���QK\u0002\u001e�'\u001a�ޒ �2�\u001ej�΄�4\u0010g\n\u0018Twcx��&�\u000b��A��v�\u0019\u0012�C/��3�_Z�#�YbY��1��.\u0003R��b\u001a�Zݸ���\u0002�k����������ժ'm�3a��q0�ĄPgb\u0016\u0003�{k�m��AS�\u0002����s���\u0015��\\�W��l�-&\"��@J\u000e抈���[�(����F�����\u0002��]�����!\n�_�X�ؾ\u0012�0���ra]�Ef\u0011u�\u0007ʊaI%T#&D\u0013\u0019eX��xCR\u0005m��� �\u0019���iwW��P:�\u0010����\u0000��\u0003\u0000�/?DD>\u00061,*7ԭ�V�28,�\u0019\u0019ؤ ]�-�(�!��V^\u0005���唊^ń��'Pl�\u0012�m����!�aI��r\t��,m.��:�*�|\u000b�~���\b��\u0017�D�\u0006\u0013\b�>\u0014t��]���\u0018�\u0016\u0007L\u0018�KB�\u0017L���\"\n�\n>� ߤ a��*�L����� �-�z�8ދ���\f1���y{\u001fBW����:>ˣ#j!�\u0000�\u0019�H��z��\u000fN�i�KcJ/������4��)��AX�\u0002����cͮ�l�\u0000�H_�\u0017�E\u0006=�=8�9\u0014�ݏ����Q\u00122Ȕ�}Rj��8J#o��|\u0017b�b6aMFj\u001c:�u�;\u0001��W\u0010S�L!a�z-��\u00049� �\u001d�\u0000��ϙ9�\u0000p�]/+I2�)C\u001a��� ,We\u0018\u0015�6���\u0006\u001d\u0016��b�Da�~\u0014-H�\u0017\u00077��)pӱj\u0007�\u0018�}��N��\bT�\u0011卄[�\u001d�T�\u001e2�\bN[�\u0017i�P�\b�!5-Ô\u0016k�6��\u0002��\u0017ָ=h*��^��f�e��Qmz(�ʘ\u0018,��pRM��s�.a�V��J�����J�$\"tƱ�i�H�\u0010�B:�\u0002���qMң\u0014�F�$�9콤��?�`S{�\u0004����l�rZ�d\u0012ވ�3��\u0004�O\r�`�T��_��nI}����`)G��`]��\u0019d��̌%v=\"���\u0019\u0013���\"��xw\t�؃T�^��#r\u000bֶaA�E$�\u0019�d\u0014�قp\u0018,3�(�#��*��4\u001aD\u0018�t#/\u0011\rP��}�FYS\u0011\u0012�ڋS�2��3��RPˌ��e��thLĒ�S(��\u000e�h\n�W\u000b�{Y\u0013������P��߁\u0004\u0017��>^^L�̮�j�\u001a\u0007tq\u001fأlB�7��bm�JDÕ��p\u0000\u0007f+���L`\"i�K����[{j��,C���\u0017q�OU����o�D��s���U\f����\\Z\n���*���\\�����h����-}ȡ�\u001c��\u0010{V�]ω\u0000fKr�)ws3���\u0005�\u0006N~�\t��F�\u0010��\u0012��^7d\u0011ϋ\u0003��L�cs\n2s�.�\u0015�Dn��Y[�\u001bc��H�k�]\u0005â\u0018��a%[\u0006��gIX�S\u0016��j~\u0000\u001c�B�\u0011\u0001=I�D~{Ӈz\u0013�i\u0018\u0003�y�\u000eS֣PZ\u0012\u001d�յ�_��$��_\r��;���\u0010ݜk\u000e\u0004v\"�_ukNIf[��D\u0004�ft+��kB���z��\u001eBg\\\u0011\u001c�P �\u001c�S�k]����� �|�o\u0018[9C�5'~ﭓl���P�\n�!Hx�m\u0010�AE�\u0002���L�DQG��U9$�L���9e�;\u001a\u0011F.�֗+�A&\n�������+t��X�\f?6���B4k&+�\u0004�\u001a�I���/����t�խ���M�r��%U��]��|�,��.:/��(.{6��\u001e\u0014��S�=��]x\f3t0A��\nC��Ƞ*H�Oa\u0006�i���ͅK�[�AL�lM��$\\\u001c\u0005�ዄ\u0005���#<\u000ek�����G\u0012�E\u001d��ms���� ���&\\d��Cxꖱ��1��\u000fs��\u001f��=�\u0019����\u001f�q��/�P6Pw\\a%��\n�k���A\f\u001b˂��\u001f��4\u0010\u0013��\t}\u0011�)gr�m\u000bi�+\u001a1?~�{Є<� �\u000b\f�\u0007z6�\u0006�I��d�c\"�̷��\u0000\n&F��S燼$�AC�\u0003\f��M\u001b���tb��\n����8���x�O/B\u0003Ş� �\u0015�����\\ �fCxRF�S��_Y\\�\u0015��ﺋ��h�,�K�9��O�펂R1�N\u001d�E2*��\u000f��\f&m���pZZ�\u0014���\u000f`�O\u0010��\u001cɔ4��:�y��t�{OK\u0017�\n�N#�u&\u001c�\u0017|�n�\\̛��[�w��$\r\u0018aD:}K�=B�YRS�Ktꢖe�\u0011���t\u00184x��هy�n)�6`{�|����ǖ��t�g{��f{?�?\u001d��D�\r�\u001b�\u00057H�2�D�����\u0010���\u000fl\u001d7+\u000b\u001e���\n&/\u001e]����:�\u0006C�\u000b\u0006҇nb7IՈ�ŧ\t��v+w\"\u0018���\u001c���`�\u000b��J}\u0012\u0005 �Ç\u001d��)J?���AH�\u0003 ��L��r\u0012�^�V�\\{\u0000\u0016�lVyz��>$�,�S*7c��R�y!�\\\u001a�Z��p|)��k\u0017�2�T\u0003,)�L\u0012�\r��}�\u0000T�*��貌glXy�{\u000e���\u0006���P��?Z\u001e�%��7O\u0000c�ë3$$\u001b#v����9\"\n<��g��\u0015�q(D\u0002eׂtv>�����\u0000�Ԩ\u001a֌m\u0003T�-��`\u0016���X�^��b�\f/�?����iG<�%���7\u001d�V��~�/� LE���nU�?yO_.t�;��\u0016+�r7?M�\u0010�Y�{\u00038�$�\u001f\u000fs\u0017\u0016�H\u0011)����%u\u001aV\u0005�eG�\u0005��x��\u0012�f�辏\u001c�w$�z��B�U�~r����6SQ��hF�76���_�\t�ȇ�>֖l\"Njsa����\u0003!\u000b&��,�\\�\u0017\u0013��\u001b���l\u001e�м�v�����\f\u0003/�\"�v\u000b̅����\u001fGcbV�\u0016\u0013��0˝��1� x��L���@m ?֌�\u0007?��5E��AN�\u0003\\���bov�\u00176\u0016�B�sZ\u0016���\u0017�~�l9N�jN�\t��d �\u0019���Ԝ!\u001c5�ot����.���F*��v��.�(\u0001�c��\u001a�0\u001b�����Ue�쿼#�:��mE��\u001d�'Ϧ�?\u0006��\u0005�Q4��eƜʋX�~lLūC*�\f��͹�[h���\u0002pl�V�7�\\U�0i\u001a`\u001e\u000b6/�8�6X^\u0017��\u0018\b\u001f��E_��j\u0011i���//��ۣ���\t�\u0011�3�\u0019ml�\f��\f�\u0004\u0016�̧��4\t���S\u001e�P\u0003���U�����|)�l��\u000e'\u001b�(?�g�5\u0003��>i�\u000e��T\u001fŘ���\\\u0007\t\b\u0011O\u0005\u000e���\u0019\u0004�#s����\n\u001b��u�ͬ�k54�)����ƶ�\u0019���\u0005��(\u000b�z'�̹\u001b)\u0002M��AQ�\u0003p���f&:`��qm����\u0010�29�a>�|�K埢\u0018�s�j`�ga#52\u0001��O���R�7Q(\"Aș��S\u000f;\u000b�*\"E�v��j���Bַ�s\u0007�\u001f$\u001d�$���M��S�\b�\u0016%�!��\u0001\u0015Xc:NZ\u0011����R�$?��d͛�0{7�2<=m�pš]��\u0012u�a�@,\u0002�B�ؕ^YW0\u0004��{\u001ay�ߓ�:񇚴З��H�ќ�\u0012h]��֝�\u001e�(4�#QL�)/\u00124�\u000f7Q�S\u0007\u001a��\b��~[��\u0011�V\u0001\u0006^z�Y\u0017��\t\u0018�ғ�\u001b��h%\u0011��n�zT �\u0018�:|����U��q����+{���n<7���DCi�8\u000f�\"O��oe���%��p{���\u0015�\"rR��\u0018�5��{��Cb�\u001c\u0014�\u001d�o�ǣJ\u0011�AL�\u0003����k�}�\u0015劑Рݽc��\u000b���7\u001f\u0015���\u0018�Ydr\u0010�\u0004�\u001b�@���H�\u0016\u0006\u0013�AK�\u0003�����:� �i�8�ڮ��n[3\r�V3�K���Y�A�3\u001c�#E�I9�d��3���/\u0004GM\u001b����\r�8���8�����w��D\u0015<�TX�^-\u0018}(�p�����b\u00172���\u0017cg�-�ʁ\\\u0017s�o�\"dm�d�\u0001߼-SY\u0002΄�\t�*�k���\u000e��E\f$=�^*��\u001c��J�*��Ȭ�\u0015�AP�\u0003����4`*<^/?\u0002J�C-x�\u0006Q\u0007\"7�RW&�j\u0006�\n%mz#��i�\u0005���\u0014��\u001eL�\u0006�%E��G��dx���T�`�Z�����\u0011t�p��fcQ\u0016,��I��ާ���6\u0001��\rf\u001b��y\"��y��d�u�\u0010ٍv�T\u0005\u0005�gfs����(�x������\u0000ћ�N���)&���+����Ƃ|i��\u0013n�\u001f�*r�j\f�\u001a��%��o\u001fiUN\u0003g���\u0001�T��>��\"16\u0012Ŋ\u0006x�[��\u000e�ga=�j�eMÚlV\u0018�{\u0013E%\u001dom��\u0012�\\�b^�d��O\u0005n\u001a5�Q\u0017\b\u001bV(\u0018����¤���lc����p\u0019�,~��Lu����58�cZ�\u0007�\"y�����\\�D�~\n�1��hxp4w*��\u0001\u000e��%�{f9F�d�L73�\u0015����&��q�\\Ni�p�\u0012\n�1��W�y����F\u000e$\r�W�j\u000ep�\u001c3���.8\u0013\u0015�ˈ�L�y�\t�i�\u0012'ذ\u000bPj�$C��g��\f\t`9\u0004��B�\u001ah�\u000f}�j�ii�X�s\u0002F�q�+\u0000Z�2�=&��r�\u0014�g��:�\\�]\u000f�r�\u0015\u000f�VUJle�y���Z\u0013�4�,�\u0018=�\u000f\u0013���\u001ec�C\u001c\u001fÚM�Ӻؽ蚅H\u0010��\f\u0015+�\u0010�AM�\u0003Ԁ��mw:[0��\u00109J\f޴�3�q���$\u0011E��\u0006�;K���\u001c��U\u0018;�����Uw�Z\u000b�\u001b'���\u000b]\u0015HF\"���b� F'�H�u��\u000bЛA%����%�*$\u001c\u0011h��}T~͋�h�ʛ?���C(�P\u00024�@\t۵y�\u001c��I^[�cC�\u0018%�\u0000\u0017ķ|���4�0�ٚ|\u0001��\u0015@\tH�m9�K˞\u0012l7�\u0014ѝl}|��\nCE��/����\u0014�\u0006;��Z\u0015L�iv�ϰ�Ƒ���%�ŖE�Mԋh8\bZ�Q�?�Z�\b�\u0003jo\u0004��m�O\n@�\r*��s��[���\u0019��1\u0001��Y!�=л�-�╇�J/#�\u0007\u0005�k�#i��uF�)y\u001f��%\u0002�\u0005қsQ\u00017s��InI\u000eGbѯ�J��\u0014�&\u0010�AE�\u0003���d��\u0002g� �=Y2@�n�1�C�h���ZR!���iƤ�\u0007,#�>�#�#F1�c!��5t=�<\bJO\u0019\u0010�>�9�L��\u0004�d\u0011��\bEcd8\u001d��T+����\u0003x�*���sǦ@��:����i��5q��=�\u001e\n�\u0004��R��À\n�WW�GPs�Xi\u001f\u0012�\u0007��\u001e\u0011]`(�o����<��ϯ�y�sh��[7e\u0001��+.�R\u0004��exK=���a���5\u001f�����\u0015CW\u0000F`�\r\u001b�@��\t7v-�\u000f\r\u0011K`��a�\u000f�����黟c\u001c#��ܼA��3@\u0002q\u001d���B߃�^R�����=8\u0010���ʀ+�Б(\u0015\\IqC��)�����\u0016���C1ܕ\u0001�l�~�J0_��/��\u000f�AJ�\u0003����t\u0001��hR�E��tč��z�\u001dy�\\nB8�V��r`�Eo\u0018<ߏ��E\u001a�\u0018��,0�g��M=�q���G�\t\bo\u001e�m�\f�%#۴\u001f$���\u0019b��l�(v�SB\b�ͫǮF��-\u0017�ԕ��;\u0005�-<�Ȧ[�'��i2�fF(&Q(&�i�\u001b,�␱\u0000!\u0003t�Z$�v@�!�\u0002�5�h2�PGz\u001c;���?\u0000��,�0Ņ�yakb���Ղ$�\u0014>�i����p@�)_�t<(��䕜=5�+z�,�b\u00031�s�t� ;�\u0017F�0\u0010�\u001c�J��o̪̠�i\u0016�s}���\b[1�XnL��rϑ�P���8y����5�\u0012��뼄�$i�q�p\u001c�\n\u0000 �E�\u000b\u0006�\u0006��uKv\"y+^��ف�\u000f�AM�\u0004\u0010��L�\\Q�0X�\u0004 \u001c�ٚ�Q\u001f�t�W\u0019��c�\u0005t�/���(�\u0004zu�\u001d�u}x�_\u001b��Qt�V*�\u0018��y�L��I>n��f@��P&p��IZ�\n�\u0011��7��.��(?ƴ��k*m:86/)R__��m�!�*r�������x�㕚\u001e�&���)j\u0017�e4}\u0004p�6]��\u001c,��π\u0004\u0006\u001b՚��W�\u0002x쩨�C\u0017nH�)c�TǢ S���t�n3�p�a�th�%:���6>�@\u0004^7j\ny���\u001a�U�\\IH�\u000e�(�\u001f\u000f�|s��F,�Rm:�պ'M��3�\u0012�󤾺\u0004ukA�a��m�\u0016\u0003\u0005=��h�Ԏד,�\\\t8?����\u0014!��P�8\u000bZ���g�7�a\u001a\"1�ǝ\u0007�6�_\b�x�\u001bF%K�\u0013�AD�\u0004$��2zn]rC2J��W\u0017�L2�_����8{/\b4�k\u001c����=�D�W{3\u0006\u00037\u001a�\u0003p���[P\u0007O�Ϋ\bR^���G��\u0002��\u0015,��#);v�Z�T�@��\u0016�)�{C��\u0002\u001a$��\u001e?Z1��ZޱPϖ��\u0015@�����n:�Փ��n��ٕ�dOo\u0019�7�ּ.�<�|�FV\u0005LJ��\u0014>m�Cu]�����QA�{�A|%Lc\u000b\\��O2\u001a\u0017d�C \u0007\\Аt��U'\u0004�\u0015e��r���\"(tR�|#����\u0005'�\r\u0010\u000f\u0018=�/\u0019���N�.w���tw��_��B7�P\b�o܉� E�\u0000�m�\"\u0001\u0001\u0006}򧪶zX�Z\u0001���7�&�\u0002\u0017cq�\u001d\n:�K�O\u0016[�\u0014 �8�\u0006�\u0018�t\u0018�{J\u001c�b�g�4X\u0006M���\u0011���Ku\u0002p_B��:Iʰ���fЧ��\t����CaGĿ�9\u0016\u001a`&O����QS�F��\u0003�?���\u0016�\u0015�0\u0013��ʹ���\u0017T�����@���\u0006��\u0006��W�$Bu�\"�\u0000�\u001f�k`:\u0006By�\u0005T:�\t��`�\t\u0012�=�N�Vm\n+S�\u00033�94�$m�C7�#�\u001cX\t�І�T��ˏ�uva\u0004��a`��\u0015�\u0001`��[$��0\u0014�\f���L,\u0015M~�\u0011��L�k�\u0018\u0007Q.�\u0004\u0007��9�\u0006D�dT%�?fw�\u0007o��uӅ��p�4��j�18�/�\u0011b��\u0019�\u001fDg�V�FL\u000bi��)�\u001f����߁�4/���\u0010�ِ�AV�\u0004���I��ܥ���T��j}��\u0017�˕+V�\u0004��>\u0013�Жwib���u\u0014�p\u0000�\u001a�\u0017��\u0005a:��8�\u0003��\u0002ܵ���f����r\u0004\b�\u000f��6#-�\u000f�6*���݆�6�\\\u0018'�㯦�G/(̅�A�#':ɫ�i�)-��\tT�\u001c�\u001a\u001a�\u0005;�\u0013� =�}�_]\u0002|+&�\u001d4��R�`�\b��=jn,�V�\u0007�[\u000b����9N\fxv\nS雅\u0002_�؀{�\u0018ᖢ�\u0004��T\u001e��p�w�]�\u000f�M�e��^\u0015&ҀIh�{�?{\u0005~'�z�\u001f�����\u001fZS/\u0003���J\u000b�~�{؝$��\u0003\u00042����\u0014Q���v(�;Qa�:f�_߻h'��\\g�������\u0007XOJ��\b�\\g��\u0019\u0013\u0001o���I$�\u0004�\u0015����E�ρI��Ad�\u0004����s���\u0003j\bx�Z\n��A�/z����5�2\\T��<�*��|<��(i9�\u0010�A�Ԧ�\n��V7�\u001br�MB���\u0000\u0015�\u0006�]�\u0007�\u001f��S��\u0003���4mE���{�\u001e��!\u0013D\n�4��\u0001�_\u001fYDwt��@\u001cSUЖ���;crٚO���HmjC\\;�`Xс\b���\u000f��n�0\u001cϐ��2��!�^$d�t7$ovD�|���z��\b0��;\f�,�\u001f�N\"����\u0001��g���T#���\f\u0002R\u0017_B\u00017ͫ����� �\u0006[�\u0007\r.���p�}ʹl�\u0002d\u0006���)��8Q�n:}E�L�\u0013\u0014�\u0004\u00149\u0000h\u001c)y%�=�9�����2h7��W=Lva^�����C��\u0014�\"C��NI\u0018�PV�d�*�hL-��C�U;S��u�vHS@R�Bke��I���Ac�\u0004Ā��cƙ\u001e���d\u0000�\u0018 ma�X�+��u��\u0017)�(\u0017\u0010PC\u0013�\u0007��N��F*\u001f\u0007����uf`f���ꮊN�\u001d��a\u0015B(�l(��\u0001\u0017�b�&�\u0005�\u001f�S�~$�^C�XㆵZ'(\t߄\\b����a\u0013�%ź�\u001fuP�\u0011��d�sR��6\u000b�\f�\u000b�L\f~� ��\u0004f����\u0006��=a$)�R)\u0010\u0000=\u0000c�m�Z}2r�Z\u0010�w��j�4�[D�e�-c\u0007��7�wx��\n���d��n�3G��X���\u0016��σ\u0000@��cஇ�c���\u001bl�i�\u0017[��e���QqǛ\u0013|�{�����6=�0&J��)��`J�(�V�\u000e\b,j��\u0004瞣\u0012:�\"���]r]jO�������{-3��S\t`\u0006�\u001e73�\u0013�N\u0006;�kZܑ����\\O�U���ˑ��AU�\u0004؀��\u001f�\u0000�\u0006��gEw��d�\r�h�\u0005�\u0017P�b�\u0002���\u0007�\n����},�\u001a�r\u001aF�;�\u0015��\u00138�Q&�D*��\u0010��_�`smi�Mk��\u0012���.���c|\u0011�\u0014��2�E6d�T�%>$��-e�3\t\"���Ε�]�\u000e�S�V�\fY�\u0005\u0001� =���n�y��\u0013�Hʹ6y�y��s�a\u001c����7u_v\u0014�\u0007񾧸{��Tt�x��Lg���qX\u000fI�/8��B��\u0012��Յ�\u0013%��>6[jv-�\u0002���q\u001c%�l՘�.��D\\�7\u001c�T�޾4��|C\u0004l�\t�Vu��\u0018(��X9�L��=�\u0014�P��\u0019�Q��}u�}EK\u0004�p�\t������?\b\u001cLhZ��uZ*\u0002�5<����U�V?[w�\u0000\u001c,����x�S�\u0012�B}�\u0004��}� �7بp�N��;�b\b��O�?\u000fe\u0005���W\u0011�u➗�T��\u0003�\u0000��&�`�=\u0001�(25\n�P�ڤ\u001a&v'��}\\�:�vϠ�u�ҹ�;��\n�5�����s\u001e��\n+�?�b���;kU��&\u001c��x�P\u000ej!��\n\u00049��\u0016\u0019\u0000�s�x�\"_DOy�grM*��>Cq��S\u0002ш\f��\n3yt-�X�\u0010���g�G�\u0000��^\u0010룎D¿EjF�ayD\u001f�u֟bZ�WsJ|l�H����\u0015�����fͣ��w����І'��ܷ����ؗs�r�\u0004ć5��&49\"1�?\t�d���\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d̹�����*^K�^I�t������E�\u001f��q��4?v�ۤ�!@+w�-\n�EW,��zXB���\r��-�0�b\r�I�����1�w���|�\u000e$�\u0016�\u0011����O_c(\u001f�\u001cz>_.�ی�����Q=&�v/֒@8Vl3\u0010V\\��;��/�P����2L \u000f\u0012y��ȝzu�����\u0014�\u000eƃi�\u0013nAK�?Q�C��\u0012�?�4��v\u001e�T��W�O�r�\fg\u001b����\"�?�\u001c@8(��1dx��=\u0015��q�c4)\u001d$�A��\u0018\n�(�\u0019�5�\u0017�\u0014�!���9\u0017�rc��l��,2ֆ\u0000έ�&����\u000bB\u0001txD\u0017x\u0017\u001e�p\u0000k�����z\u001e`�\u001cn�'\n�X0�/\u001c��\br\u000b\u0012i���!��\u0019�8�(�+6G���E\u0019\u0002��>��\"\u0000-a�A\u0019�\u0005\u0000��N�=}��I]�C�J�}-KR�(�v��C���s\u001f: ]\u0014�@YC�\u0006���Dh�,�:�=�L+��pV&\u0006m�\u0012�C�\r�7ە&[��/�T\u0019�VU9쥄D�\u001a�(�CU�b8S��܆J�\u0003Om}y�\bd��U:\u001a����C�\u000f`2ZO\u0015��\u0005���\tx�\u001d��ڸ/���z9\u0018\u0012������6��ֶ��l~�hE\u000b��oK�\u000eUj���9�@T�7�\u0000��#�1�_iA\u000b����QO\u0000s5�`!���q\u001a8�\n�k����i�T+AŪ�N�;~w~(G��\u000b�ts\n�33����<����ٿ�\u0011NJ=��G~�\u0005\u0007�A\u0018�\u0005\u0014���m\u001fd�qX�\u001cσ\u0003G�z�k����md�K~D!�x�p�JΘB9����@�k��R\u0015+�2\u0016��=H�ڽ\u000e�S�儦Y�p\u0010��0��\u0011�Ñ/=�e�E�k\u0004`��]���Q�̤��,��ҭ*��\u00173=�����5��\u0001\u000b~ւ��\u0012�g\u0002��*_��Ğ�\u0019�����\u001d����y�%\tzZ^3��]d�ܒ�C\u00138��\u001f���fs�^��9�\r�u�V�1g\"@��\\4�[V1��\u0014,�f��@\"\u0017�\u0005fu։M;�oVz8�}D�\u0004��#\r����f�\u0006��-M�M?\u0013��;Ļ\u0013�l\u0007voP�h�/i6�A%�\u0005(���d\u0014�\r��Pb�S~!�~L�f.\u000emX}�\u0010ν�Q�����*�,\u0019���He\u001b@y���\u001f0�N�Z�Bq\u00118�x��\u0015;bĵ��\u0003@���\u0019���`�i���;\u0003=��Ç9����)\u0015gYL\r���Y��R\u0003!\u0002�E�y;Kh\u0007\"��\n�t��)(q�l�\u0018aV�����\u001c;�\u001f�c�!\u0006)u�oq0��}��n�\r�\u001fݧg�?W�S'�\u0004\rK�̥��;�\u001eưv��[:Sa�\u0004++�\u000b�\b��\u0014>}�\u0019�c%��V�`\b�tz�\u0014:�z1��95u\u000b��ZX����a��lA\u000e�FZ��g�vx�\u0004�Q�z�����\u00001�2wZ�M�\u0003!���_��\\'l� s\r��x�RS��Z.mm<\u001694J�k7\u0005u{џ_��\u0012�s�6��\t2�\\�\u001b,�[,V#p���\"`DH��7�1\u0011e\u0012\u0001K��ĪT�NH\fk\u0015����O�S�P\u000b��0��\"�\u0019��N��w�\u000f��!\u0007�s�K���AL�\u0005x���a�QK&ޣ��e����\u0001t�\u001f���?.JF�\u000e��&�2�N*����G�\u001b�gx7v�P'a���Od��Y�\u0000\\: ֖��xK-�]3K��?�pkiwB�A�^������\u0010\u0012J!G�i+��F�՗�΢��;\u0010$���>\f-\u0016�DG��\u000f�0�\u0014�Sj�h�C_�\u0017\f�~z��\u001f�\nr8Vߝ\u000f\u0019���]�9�����F%��4���_c�Ia*X\u0017�i�\"�qP�bd.媙���\u000e�d:�\u001b|�$Dgjͨ�-׶_\u0016�1\u0005\u0003td}p��\n��+\u0005�\n�0�R//7��~\f��&$�-\u001b�\u0007�Z��U>���/�\u001f���\u0016�/v���\u00052��dHvy8\nT2�#�*7\u0005ۥZ��J�=H��\u0002���AG�\u0005����c����\u001a��\u0003؇�I��u������1\u001f�@BLUO/����b��$\u000ee*X/e}K,\u001b�h\u000f�1J���{t#|j\u0001\u000e�\u0010�,C� �\u001e_�\u000b����\u001f&&\u0006�?��\n\u000b��g�y�;\u0007N]���\u0016�����̒�B6��\u0012��\u0000a�n*\u0019�9$���`��\"�\u001c����(\u000b�\n�w��3<���OGP\u0017*5o�R\u0007���\u0004��\u000e���\u000b|/�\u000f�j\\\bNG�/\u0005�a\u0010�]VǰlS2\u00020�tu݅\u001aQ\u0007�2>K��Z\u0019Q������ι��K��\u0015��+F�\u0000��\u0015�io��\u0001�N/�?��e\u0015�ĹL��l��Z.i+{���v�Z^g�Veq�=\u0003ů7�0͈�:#�dg�v��yR�ל%��AR�\u0005����c�ܹ\u0012�F}��2m�/\u0016D��\u001aG)�勒\u000eah,��|���T4U�\u0018ꭲMiMt�\u001e�jD�%<�Ҋ^v�q@\u0004/\u001b\u00195�D�a�X�´\bS0��\u0005-�2��N���A�*fH#\u0015=�/fu�Ӭ�\\�)�+ˑ-\b\u000fɻ 0mg�\u0018��\r&/2�W�\u000fa\u0001�S*u}.Rִ�b�\tw�\u0015r��\\�����q��>Q�敮�yp��\n��F�\u0017���\"��\u0011L&ʯr\u0010i�n�\np���\u000f�\ndȜ�\u001f���\u0017�3k�2ʷˎ\u001bԘ�|Zo��5���D�(\u0013\n��l��?b��b���\u001a��\u001c�K\u0011\u0014i9�̯�VH�\u0010\nE�6��U��\u001dde�\u0013+ڨԺ�2\u0001\b��?�\u0006�=,6�M�����A�\u0012kM\u0002���AZ�\u0005����c�\n\u0015��2\r���_!\u0000\u0016TM\u001f�\u0013�\u0002l#y��8\u0015�i�*A:\u0005��\u001e5+G���k\u001a�\u0005Ϥ�\u0013l<�\u000bC$\u0006Q|\u001e��EGa�>�6�4i��e(dR��b�\u0005k�� �,`��\u0002\u001a�ҁ\u000e����{@\f������˟ҵ�<��b�����Փ�AN�\u0005Ȁ��c�~V$\r�>���6� �\u0016\u0015@�W�#�\u0001Z\t\u0018�Si�\u0018)j��@��\u001d\bG��\u0011�كt�\u0017�d���Đ]\u0013�\u001c{�\n�F.\u0005�I���nl���E���\u000br�{�y~\t(����\u0011�ڭ��).bc�)b.L�\u0011AK\u0004e\u0005L�v�Ɉ�A�ߞ�g��^�\u0016�%_��\t�;aY^�$���\u0018\u0019�w\"��jn���\"\"\u001d�\u0019,�c�2���nc9Il�%�N?�\u0000\u0010��Ť�������UB=@y��0�>�h�1�Q\u001c¢��\u0002٫€\f��Ӫ+�~զ�t��#硟���9H�n\u0015\u0018���\"\u001cv�y�\t��\t�|�\t�69�\u0003�՞�zG:Q��%<��8�_q�\u0010�)v}�x�?��둪��%m\u0001��A;�\u0005܀�Mv�Z��9MN�;\u001a\u001e�T�������2\u0019o��)��\fh�-,\u0019��w��L�緧\u0000`���x�o�5z\u0005\u0017ʤw�\u000e|��Je?��2VíJ#\u0019�\u0006g�(��yt�'�H\u001e�\"��~d����\u001b�\u0011�\u001f)W\u000b�\u0018XQ�F\u0013\u001bdZ �\u0015�\t�\u0015�.\nxb�\"\u00145\u0012\u000b��\u0016�T��{si\u0019�\u0016`�A\u0004QK�W�G�8�g�{H/�\u001b��\t�K���E�\u000b��\u001fwʍ.�M\u0016�\r�@��\u0018�|`�\u000b�y�/\r�\u00015\u0007�XUf�d\u001c���Z�L�{h�\u0017\u0012\u0017�\\�5�N�\u001d�'\u0004��%VZ\u0013t����x0��Z\u0010%b+�1&\u001f���EK!ɉ��\u0015�D8�yB�~�y>-�:&f�c ��p�r�Q�A^�\u0005���J\u0001#M<�!�S�\t\"zmIN\u0003\u000e\nf{\u000bU��V�4Dc�����p��蚫��Q4��!�*�\u0017�\u0011L�\u0004eޘ��\u0003���Ô\"�\u0006\b�\u001bt�S��1�h,�!e�g�v���O�02\u001e���\u001aZs�06���\u0002�B�A��W<\u000b\u000f!�}q��\u001cq\t2ݤ�Sp��>d9�4!\b\"3�N�\u0016��a�\u0016�:��\t0�\u0017[,zC�)Z\r�Uf\u001fC�lu��/���\u0010�Q��l�\u0003��:�эW��#\u0001ٮ�?��ܳ\u0012z���W��\u0012�\u0017�'�����a\u0000�\n?~�_ҶFn63�Ҕ��\u0016\u0001������M��\u0004�\u000fW�p\u0012�DЅ��\u0015��\u0001��e������B��Os�� \r�'^%t.�Y��^�\u0001���\ba��yw�q��\u000b��\u0018���%�\u0010�#/h����AC�\u0006\u0004��L��ty�r\u001a�|9�>���^&��\be\\��I|��}��{8I'��|\u0001׿�w��Y<�k���\u0018����zPA�?ՊR�\u0017Ԑ��،C\n�ԋ�l��SC��S'z̍P�\u0016+4[�\u0003���\u0019�4uaAE�\u0011����iۼJ7�w��M\u001ak\u001e\u0014\u0013X]H�\u0017�\u001c�5���3���H�1���\u0001��\n\n��-�\u0014��Q�#�K�cLn\u001cm`\u000f O$T��\u001fHS)�\u0016Y�����),\u0015�Y\fo�J��\u0018���{\u001efEm�Ba��\u0017�&�\u0011Q�\u0016P�@Jq3������FS0O!�h�a���~{BtT�n\u0002\u001d4�\u000b�Q�6.�$���}m���\u001f��\u001e��\ra������p�\u0019R\u001c�^C߸m��\r��AE�\u0006\u0018��۷o~#��uU\u000f��gw�=�W�\u0011:O�-�U*�͉�bc����Ē��#\u001a%����\f�>?���C�\u001a�_� �LVȥ�\r�Z��D:��\u0014Y����}�-cm�Ʊ��\u0004Nb\u0001)\u001e\u0003\u0002n����L� A�\u001fJ\n�J\u0018��)g����\u0016�/�i��y�8;\u00151Ch��{>��>*��\u0000�Is��\u000f�9�E\u0014)�n�\u0017\\U�D=��xxlKy��\u0010��_��o8���\u001bn�t�\r\u001f=TJ\n����Y��\t\\Z�i�t?�m����5]�\u000b? �A+�>�#�ryN����\u0007\u000e�b���\u0003H8G��Z��!l\\���4�A1G�\u000b\b\u0007\te\u0014o�Q����Ϸ��s�YP9?��tfɨ��b7:�\f\u000b�V�\t�\u0006R���N(�'���zA��/`���\u0016���\u0012�JŴ7�\f���#Y2U�7)й��@\f]��q6�\u0000�\u001f߭�@e+C�\u0014\u0004o�AK�\u0006@���}�$\u0000���a=��\u0017\u000e\u001fgKsA���c\u001d>I����/\u0004ͬ����D7��!i����ѽU㱤���j�\u0017o�A��^�4�\u0010o��|ȒԎ�W.׽���\u000e('%��C\r\t\u001b��H3*�Q���1\u00110�yu\u0015�3\u00075�\u001fH5T�'b����:���2'�����R�t1oc>I]�R��C�<\u000f\f�wi�\u0003��<9\u001byf�ā�ÇN�\bg\u0016u\u0006;��iz����^����\u0017IUT�b�|3��m�� �%�4BLN~�p�A@�\u0006h���0��:�0w�{���\u0001���n��ZC�\u0004���,v\u0017�\u000b\rO�\u001ewylK��3q=�j-\u0004/�H��ݎ��\u00103X�\u000f����k�q^i��X$-��\u0002��0{���[i�\u0019�Z%�/�h��q�ǝ�81\na\u001a'E��\u0016\u0016uG�!�\u000f�F �1\u0001C3RÓ�)e0U�M㴱\u000b}{��@�v�K�ޟV\t�JH�_�໽H7\u0011R��${M�t�d���QWߍ�E\u0016w�\b#k��?\u0012��'�?���~@�����\"Uo:\u001b\u0019�T\u0016�\u001dN\u001a��bI�\u0015SP\u0003�\u0004~]޽7L�\u0016-\u0001��\u001aN�\u0004\u001e\\v��oy���݀0�\\K<�ᩛ��\u0016��ʋ�6\t\u0004\f��#�x���?z\u0016��C\u0012Sp�Aˁ\u0006|��}a\"D�h}����\u001d��2^�=���]�/�\u0003���\u001a\b�5��#\r��ЮgT�\u0014�{$K�n\u001b���`d���\u0013\u0018���6%V���7!�\u0003ik�>�Ӻ��K\u0004��\n\u0016�I�{x_He\u0013HF�q�O!�G[��(�\u000b\u0010ݏ�-a\u0019��f\u0006�\u0004 ����<��)۩W�\u0013\u0000!�\b.���%�8Dy��s[P�\u001f\u0015����;Z٤3��\u001dZ\u0004\u001b�ӈ�K\u0018b�A���\u0004���1}\u0012\u000e\u0016�[���\u0001Q=\r\u0017���R\u001f&��\fNWF�)/\u0012ߑ��!N�\u001d�Ebh��f/\"�-��%�^�����\u0006�^����`����$$��37P�`r������SJv=��'H9\u0007�|�v?px��;R�O�ݞP��:w�\u0007��\u0018�R)\u0015�\u001dֳ(�w��)Vu]d�tH���8=�ik��\\Ĵ�\u001b�������U�a\u000f��\f�r9\u0017TW�q\u0005'5z�\u000f�Z?.�g��>�bN#ҙ��򃑄�\u0013Ci�^L.Z�<��\u0017���\u0014ו��]\"B�Q�OԜ����j�@�6픊�A6�\u0006���&��F��je�Tj�>n\u001a�rL\u0016\u0005�\u0004l�v��\t\u0012o���쯜{l$����}��\r\u0013������e��\u0001���x\u001d�iu����~\u0003�\u0018��\u0007�XG�oc,\\$�N�2�\u0003>\u000b\u0010��e������0O�/SU\n<��r�N���WFK\u0012)\u0015���\r��\u000eO�k��w����6\u00055��=\u001d4qj���\u001bi�f����`��\u0018�]\u001b#����2&��\u0012\u0004�$\f��=#�/��Śm\u000b��2�g��U>���n�+��!\u001cI\r�iD���\nO����e�EJ)����РRa1\\�~Z1U��\u001b�+@\u001b�Ee_�U�\u0001c�'��'7Ml\u001eXoL\u000f������Tdf��Aqm\u001e��AH�\u0006���.H+�kwg1�[4o[['\u001c��$\"\u0007W�ЯL*�:8=�.�\r�\u0010��H\f�F!�3�����i����+��{{�\u0013��ڟ\\�\r��:\\,�53\u001a���\u000b\u001eo�ި�p�7\u000e\br)\u000b�\u0003Й��d�#�\n��d�\u0017�ɸ�v�2�s��S�\b�LW���\u001d�\u001c�g�#��3�F��Ĥ\u0000�\\!�\u0012�:��'\u0003����+~�*r\r�k~'�X���e\u0001�$M\u0012@\u0000=C�.��M��tE�\"�7\u0003t�v�wՏ\u0007��V\u001b��\u0003���J\u000bA*\"\u001fŊm!���\u0000�\u001ab��`i���\u0014[��;BӬ����%��̶�'6��Ő��H6\u0006s9\u000f\u000b�n3�{�4�|\u0017��N��D�\u001ar���u\u0012e\n/\u00060�g�C>[b�s^�AW�\u0006���JN�����\u000f��mnN�;�j���y�x�w?Г\u0018�D+v��-#_df�Cm����C�;��\u0019�G�\u0019(���\u0010$.��\u0011v\u0003�%U��O�Ӗa��؈�`Fo��� �VUL,��N(\u0001�\u0017{�d9�s\u0014\nСp��\u0016��H\u0014����f,]�+�C;\u001dCG\u0004\b�L��e�P\u0001�\t���q\u00188\u0002�Yu�KJ�\r�k��4\u0011�xj�.�\u0003w@g��Z��L��>j�]N�f��A��\u0013̧��G�(&q\u000e��\u0013&��+��\u001d\u0016� ]�N��OٷK�d!��~�\u001e�O�L(k�rT8����ݝ���w��\u0007�pA�\b]�MP���mL�n���:\\:\u0004����|@\u0004\u0004��I��<\u0003{�IGBv/����ꉁ(\u000b6\u0013\u001b\u0016C\u0016�|\u0003�\u0013y�B\t�\u0006̀�}a�Z���[q.\u0018jC/��tAM�]�VZ�����NN˰��IE/��d�\u0013�%.n�T�\u001aH�\u0007�!4\\�Д%��:>mo�r\u001b�ܼ\u0017��R��F��xc)��c�kH\u0017Ba�G�60�A�����\bț\u0015|�\u001a\b^TG`�\u0014ML}�3�J��H5����u�!\r�eR笱�Wf~.E���$\u0006�_�U��ᣎ�z�y��\t9�\u000b\u000b�D����l�m?��06ȭ������pմ�K�\u0010eG>�܇\b\u0014��\u001e��'�\u0018�l�����\u0017�^[��\u0010���+n/V��(a\u000eW\u000b\u0007\n�y:���\u0000����\u0005���J���oЌ��\u001e���\u001f׷�Iv_\u0012��\u0011JT4j��(K� �C�U��\u001ce]����)��=�\u001e�h��C6!�tSn��'s�s��Aȁ\u0006���{\u0017꣖S*�dA�\u001c��\u0015�����ڒ\u0001}\u0004y1P�\u0006\u0010\u001e\u001e(w:\u000e9a���3���s��c�\t�W8L8�G��\u0016����f+�շrX�Xʘ��\u0012��>��\u0016���$'e�`f���2\n\u001a\u0012^�'\u000b���`\t4��\u0001��b�\"4�Q0�K��\u0019�\u0011La�!ebG��1��k&��ؗ�0C�`�ɨ n��!'�JS�w�8��Ū�Uzͮ�\rJ�����l\u001c��\"�Z���9!�\u001f�#�_Vnf͢���ɧ���aZ0�h�]cC!�jX�Ei�>#g�\u0010\u0005m/fnZ\u0000\u001bL&ˡ����\u0005�ǻnP0\u0005\u0003C\u0002\u0005Ӹ��\u0001c��:�>��Z:��N���\u000b�<�|~ܫ��Ң�\u0000��\u001e��\u0013��ĉ��)@\u0013��Ѡ3� �E\u0000�I8\bj�Q\f �ZuN��WD3��W�HYD1���K\u000e�\u001c]\fnl�\u0017�H7��o���ѥ����\\W��V�l6��\u0004�t�\b��5�*=|b�kq孊����t���H�T���3w�oɸ�\"\u0018t(�e�?�A\r�\u0006��M(\u00111]\u0006�u�\u0017\u0016�L�\u001bCY$8��J)���\"\u0006����NF*r��\u001a7�}]5�q_}5��;Xa���\t��\u001b��px�\u000b2�366r�,l���0\f6�8(\u001d�G�ra%�(2S�6{ق?��ؙ\n�\u000b�e!^�(\u001f��\u0012\u0002�@�,_��\u0016'�\u001fZ\u0016�q�&ڍq\u0019�\u001f�\u001d<���A�J�W��&ݿ�)\u0018��{\n2\u0010{\u0003�ʹ{�=\\��\u0014[�\u0019H�%R�n�\u0004)1^�(E3��\u0010���-�py\r��\u0011�`-�q�̤\u0013\u0015\u0001!o�@\u0001���.�\u0014�\"\u000et�N��C\\G8\u001d�\"입�F\u0007��8�n2I�s\u001an�\u000b\n?{\u0012V��c��w\u0007>:u��\u00078҄R#o�L �A\u000f�\u000b~}�\u001b�\u0004b \"p�n�@~�}c�4�A\u001badl>f\u0015���v1\u0001\u001d)A\u0015�ZrИit�;ֿ7^��<\u0002��\u0004ͣu����Ʀ�1\u0011\u0016�@/�Ͻ\"iC\\�w�[�\u0018�C��\u001c,����*�r���\u0001\t[�T������W]���\u0000-\u0004\b\u0006�0�]ϣA!�\u0007\u001c��L�L��K�c>*�P\u0017�J\\��\u000f��\u00159F�\u0017'\u0010f�O� 0ԫ���5+���5k\u0015\u001b:0\u000bʉ��\u0006\u0013El��K�\u0018\u0004\n1���\n.՘�c��z�W_fz�s\u0003[V���\u001298n����ͽ:�������\u0000���nԇ\n��ij�.a0\u000eE��garSc����.�\u0001\b4쟗\u0003�v��\u001f��\u001d�|��:�?a\u00190(.[�W3�F��k�\u001c/l� �\u0001�\u0002\\����2&.�A\u0010�5�\u0007L~7\u001bS�a��vjH^:��\u0012�\t#���\u0010��\u0019�\r.\n;�ї\t|��F[���\\\u001a�FOzd��\u0004s�R���$��,l���L���O�A!�\u00070��L�|\u0005\u0007��\u001a\u0012{EW�d��`�(�'q\u0014�\u0010y񷛅\u0014ĺs^,z\u0018+*���̧��O�\u001c�Z#N�O�\u0016\u0006o^W�)��h�}A�}�9�1���AI��yg0�@��6���K\u0011u��X������~�}\u001ac\u001d�x\"�a?�1ո\u0007��M\u0003�7\u001d.ۣA!�\u0007D��L�,���\u0000\u000e�x�Ðc�O\u001f�%��ȊK�-��̽�ߧ�����\u001bB\u0015�8�\u0010�\n�n<�C\u0013\u0015\u001a�Լ�={�\u0005n!�]zj������\u0010���@ �-�A�f���|z�7���/8x�j|��=N~�*�N�\u001d\u001e��J!� ~\u001c��X�[�3�>�����\u0000���Ɇ�\u0002��j�E1K�4\u0019#�\u0004 �U�`�|1 A�ɾ�v\u000f\u0013*���\u0019T&X�P�*\u0001?��\u001am��%A\u001b<��.�Q$L�����Z��u�Br��V\u0016P\u0003���a��ShN�<�]�`�~\u0005l5����$F������/>\u0017�?w�$\tm�\u0007�\u0004�;.��ہ�A&�\u0007X��X����c^\u0014��TI>�Z��\u0007�\r}�.i�\u000e4\u0014\";�FL\n�����\r(s\u0010Δ\u000fH\u0018\u0017 ��v\nh����`\u001aH,հ��Xn=���\u0004x��,\u0003n����\t\u0011L2g1P\u0004\u000f~>a�!a\u000b��gO~��\"@El�u@�`4\u0010�Ç\nɱ\u0006k\u0006`m��)\u000f75\u0017\u001e}U�*\u000b-�z�~~�$�e�+'>U\u001d\u000f��\u0012�\r�3ᬊLQC�R{\u000e\u0002\u0010\\���d�Y(���u��\u0016�$\u0012ɏ��<\u0001�����f7�\u0019��G#A\u001b����t�BmW��!e�c���4b��\u0013��u{�n��~B6���ܺ\u0017���D_\u001e: �0��0��k�\u0000!\u0002\"�I=ѣAI�\u0007l��L�xk�Z�\n��\u0000~Gdh$�F^��)����G�mwye�\n=�s�k��\u00115Cyѩ�(�<�\u0018�(�i���\t��a�\n\u0006�U�Xp�8A�\u0014r� Dx��:ckZ�\" �O��Tn'F\u001a�\u0015�M\u0007��Ժ\b?Ng�G��\"����3����\u0013�\u001c\u0003Ot�)\u001d��^\u0007\u0012����\u001b���\"�@W˴<@d�\"�7�\u0010�\u0005�%\u0010\u001c�k��(�.1+���7�?G\u001e�,K�3荰N�%\u0007l[�%*]z��?���=>E�;��\u0001�5\u0018*���\t�\u001b+�\u001e���\u0001�\u001f0� r%&�\u0012\u0005\u001c�>F�l�.w�ZG�$�e�7i\u0015\u0013��P�\b���\u0003�n4r�\u00127�B�D\"�2����B��\n܈]=���w���H���m\u0011�R�A:�\u0007���L�Xq\u0011\u0017����\u0005W\u0016|L\u001f���D���<��,\u0006|)��\u001d袲��K�����|���}�P�/�/\u0000Ć\u00146<%�4���\u0013\"G�\b\n�\u001b��)x��f�S����B�j������y�jGc}'h��\u0010\u0013�@��\r�\u0006+�Od�n\u000bX��Y�H��d-�xF�O|\u001c��q;VB\u001bD�,����j^�\u001bnV\\c�y\u0004\u0000�\u0012,�c�Gr6�\n\b�\u001fa\u0014���=�\u001f��.8�nz���qH:p�Q�j�y\u0019�5���!�\u001b�\u0011�\t���n�w�ij>\u0003�6�\u0003\u0012�\u000b�6�P�$q\u001c�N\r����\u001c��g\r�\u0018E��P%𢐛,��+2f[{������P\u0013U2i��f�\u0011\u0004�w�A5�\u0007���MO\r5᜔\u000e����V\u0013�-�m�ph'eE����y�ɆA-�=%�\u001b_�~X\u001a� ^A�\u0005�[�bc�W\u001d�,:�\u0006x��I��t?����\u0015�\\l\bs\u0014�3}��}��O\u0018��e���geu6���?(�A�\u0006�a�\u00078{X�aX\u001b\f�b�)��7�׹��\u001d�\u0013E�Qpa�\tl\u001bf�s�����x�\"\\z\u001c���}\u000f*݇�\b�L?��A A:ږ�u\u0013iWx\u0014O�Euà�\nY�}��\u0006b̥2q�0�v\u0003�Wb_+�<��jx�L �q�ܔ1��~$\u0015ʊ�\u001c�U�e�!�!�\u0019\u0019{�8}Tq ��\bUԌ\u0011�ſ`�SY�{���(���~@\u0015����S\u001cij�.�A:�\u0007Ѐ�M{hs\u0005J\u001b�̈́}\u001a�J�\"\u0011�]U��Nt�5\u000fl�ͼ `ʓ(\fz�m��J��\u0018*��O+�h\"n�\u0018�$�\u0005�UN��<����);B��P\u0010���Z\"��)T�G51�g�Tf�CI������V�+�U�gt(�}f��Z��'��g�'���Yw_�z�)\u000f;\u001a�\u0005��u�l���2���A��s�M�,V��\u0003���x��� �\"ֆV$����‰q3���<\u0018BB�\u001f�0D�\rx<��\u001a܌�\u000f8 \u0018���o{5�[��_NN>)��W\u0015�\u0010�&₽;�a�\u001a!݄$��.R$�a�t\r\u0004�\u0003D���\u0017���X\r�\u0004�.�^�XI��`�c�)\t�on.2��/u�Ճg-�B*�\u0007��|�r5�\r\u001f�\tď�i���ād57��U\u0010�,���\n\n\u00194S`���4X�\u0018&\txs?�_H�/y\r\t�VBy�[��`�vl�I\u0010�(�;Ũ;����q��sZX���[{�\u000bN�����M�c� �yy1\u0000`�R!j��1f�*s�v���*�KF\u0003X���ރ\u0017�Ui`\u0012����[*A��Os���7\"�\r�yo9�\u000f�&�J\u0004\u001f��)n\f\u0013{\u000b�\u0000���2!}���NL�>�t���ww��yS�\u0005��\u0016/Œ9(a\u0017����\"��$�\u0000\u0006�\bg�~\\\u000e��vH�Q`\u0003��h��\u0000�\\Ƞ��C��%�1Rhi�\u000eXҎ��B�}\u0007]�|�g�]\tg��\u0018\u0014\u001a��1��i��\u001b�$���^�\u0006]��O\u001ciw.��#W̍�Q�\"��\u0013�)#���]��p���o�����~\u0012f7���mڥ\u0003�Wl��߮����|��m����\\Y\u001c�pO�~/\u000b\u000f�\t�P�uJ�`<�\u0005�\u001c�ݒ�{vH�/�$S��{L\u0000��\"M�CI\u0018�{�7X�����mb|΋Dc�|�\u001a=\fr;�,\u0018ʾ�\u0016�6.����W5�$x��\u0007�\u0019��#)\u001e��bPi�r/K�B*>��o�\u0011LG:z\u00006JJۅ\u000e�lqq\u0007`�PQ)�\tk/Ʒ���Z.�,;���\u000b\u001c�A��\u0007����2v����G;�0\r�X\u001b�Zwb{{C�\u001b��/gW�{�Zj\u0012r�w�w��\u0012��ƪ]�{zBև�7\n�?����Ѫط�IJ�4\u001a�*\u001d*��a#,�\u0012KE����)jR��\u001e?\u0012Q�@�\u001e�\u001f\u0019�\u001f#7\tI<�\"ǂf�s�0q��»��\u00064\nA�nϑ����\n��b\tݹ>.�J�\u000eI��9On��ߴ�bm�N|?�]%Em�`3<5��'�E\u0001��φ�&\u0002\u0017�t]W��Z������\u000b0X>8:P�{���\b��N���㌿�\u0003e\u0003L\u0006���\u001c��$�\u001epWE\t\u0012!0�?�m`2�\u0013\u0003!�R�\u0002u�WRt�C�\u0014���Aw�e2����/�IЬ�f\u0010rt�G\u0015�����J>���\u0007\u0014ន\u0018�+���\u001e\u0000��8��#w\r�\u0015-\u0016N��Hҝ����|�K�\u000e�-\u001a‹���OzB!\u001e�\f��\u0007^�<�����f�\u0012\u000e�!��#�TZځ�A!�\b\f��(���ۺct�dnxEO���f���\u000b&��4ˢ�\u0011��\u0011���݊�w\u001dRxC��\u0003t��*��Ž��F1^�}3\u001b�-j��ղ��}�o��\u0005��r���[�(w3wB�E��+�a�.b1�cT8�{\u0018\u001d�\u000f�T=\n���Wm�?q\u0003��n�\b�^'4�+\u0002��/���ϒ*Sĩ*�מ��,d��wG�1��7AAS\u0019�%�� d��ؼP\fj�n+�d7\u000fD2����n�H})�\u001c��\nvH!�\n\u001f5�Iޞ��gǚr���cE\u0014C_ؓ��by��\u0015&ܤ�]\u0013wJ\u0016�'�b-���EA ��J�lBB���c\u0018�;��<�Px�A*�\b ��L�L\\�;a�H��v+\t�ΡX�}�HU�����:���f\u0012\u0013��\r�+N\r��9t�m)\r\u001e\u0001�\u0001s�f��\n�+Y��;q]g��\u001f\u0006�R�s�\b�O�We\u000b�Vlt���k�.Ź\u001ds����\u000e�\u0013O\u0004�'\u0015(;\u0015\u0014�D�0?��\u001b��\t��n�kP@53�|�g�\f\u0006G�輔�?��u��\u0002~dF�\u0002H�'߷�Z�&�y\u0005#9l�a+�����M�ߦc_���(E��\u0019\\�\np�v�Dc,cf�\u0011�>��\u0018��J�.U\u0018ѫR\u0003\u001e�\u001fu\fcC� c#�t��{��v �z>�\u0006�\u0011\u000b#P��zwc��l(J���S�z*l�퐄��r�R\u001e\tca�A@�\b4��L�w��W���Ω�K�\u001a�\u0013w��%5VL��c�aE>�\u000f����\u000f�>\u0004w�7Ŀ���o\u0000\rWk�Ʒ�\u0006i]f��q����6�k��h\"v�sɲВ~�\u0016�.���P%u�LA�\u001e�\u001d��7Y�c��x�]���\u0012\u0007½\u0018�!�^+�\u001a]`@�}�r�\u0001a\u0004(Jz�V\u0013�����\u0018a\u001d��'d��!\u00172����$sª,��g\u001a\u0016�\u001d�\u0006:�v�`e�<\t��f\u001dK(�P&���=��3\u0012\u0016�v�����@M7��!���T�n�\n�\u0012�B\u000e�t\u000e��i�N�='\u0015�\u000e\u0010XY�&.f��8��:Nd\u001bl������\u0016\u001cK��\u001e \u0004�6\u000b�#��8\b\u001eu�˵��f����\u0010-\n���0q�A3�\bH��MbԘ���\u000fe�\u0019�d�\\\u0000!k�uK\f\u0018\u000f �ƺ��7�ɩ\u001cl�rlctRy�+m���RC\u0010��[��#�\u0014�\u001b��������B�\u0006�Ɯ�y��\u0000�tn��æ\u001c]�g��_�4*/$�e\u001a��+j<�ߠ/�@(<5���14����~\t��?\u0011�u��k���b���*�I}\u000b!���y�9*�\u0000�3\u0000�\u000e\u0010��i����z��4��P�\u0003rl%97�\u001a<�K��\u00154-�g�l������o��`\u0016��i\f�,�\b�G��R�����XȬ��E�\u001a�#:\u0010N\\8��\u0007�fƻ�.v5n\u0002x4i\u0018/F��|��ĸR��HL9V��c���H\u0001'i$H\u001d�'i�f�\u000f�[��A0�\b\\��L�?\u000fх�9\b�~�\u0000��m�?\\B�ү�+���\u0004+j\u0018鴞�^[�h�\u0007���\u0000\u0003o�\u0013����J��o\u0001��,��8��\u000b'�קN;?>w�\u0018��)`\nS���\u001b#`/�_�P�[�\n'8v{����\n�oO��3�\u0006\u0003c9��\u0003y�Zu/�cKl�\u0006A-�=ih�{���D$�?��0l��F�\b�Q�3�]�*��LCR�\u000b���Ѻ躶�z�����=�&��[c\n��f��ǀDO������ْ;\u000e�Q\u001f���g��L�z��Y��\u0002\n�(䗂\u0000\u0005�[��̖�������a\u000f�\u0018�~\u0013�Tm���js-}�mf`\u0004'\u0012���\u0014���\nݰ�����D�A*�\bp��Mc?o?�\u0004$���lo\u000e\u0002\u000b\"��]�ݳ�ee�~\u0007�zs\u0019�9�ҩ�0�2|@\u0004�3\\���`�O��\u0002�r�y��'2~\f�\u000fS\u001bn&�@�tI���\u0001\u000b\\AmӓE��\r�u\u001a�i��1\u0016\u0001��өDኋ\u000f���\u001b�\u001cS��\n1\u001b�e��\u001b\f�+ i��L��`L�.M\"��ˍ4h\u0002\u000b�>�\u000f�O|\\�ZQ��\u0000Q�ծߔ3\u000e���\u0003�\u0003G���x\u00053m�T>L��o�\\��ER\u0015\fޒ�2�/\u001e>h\u0018��\t\b0\u0006�;\u0012���\u0006�QT!�Cú��o(\nz>�\u001b�b!\u0016_��\u001f�-� |\u000e�WaF�zH�����Na\\��h:��?&C�ՙ��\u0006��A$�\b���L�\u0013341^��U����\u001fF䳰=ffa����s\r/QQߞ\n���0 c+��oߤ'�z#��\u001c^���\u00074%}<�N��w7\u0016 ��m��Žw\\C<8�Ơ\u001a!Ӫqw��\u001d�����6�xW�\u001d������Ke���3J\t\u001c��0Dz�&r�]��O\u000f(Ζ��p�\u0003H�Av��€\u0003���LG�\u001a\u0014hv�KK&�\u0006\u000b%��\tG+���+�&�Ҧ_H\u001c\u001b\u0000���&\u001c��\fb��\u0005�M+���m���\u0007�P\u001b\u000f!�\u0010�Pyv��~1��\u000f\u0000��3\u001b�-���(�'�X���\u000e\\\f�$[:`\u0016����ih��0����Ϥ��6�1U�`��z�A.�\b���M%��e�,>���M6��$Ts\u000bb�Pe��\u0002���x�hI��p5���c��M\u0007C\u0000�uZ̑>�Q\u0007�MS�\u001a��zP��\\.�\u0018��*�j�����.�_\u0015�\\5�Q��\u0003C���Ul���f������H�Q{�\u001b�lhGv�\u0012B��\u0007�m�x��˜\nȰ���r\t];��K�42@��C�5;b9-cyX\\(\"�� \u001b|t.݆\u0014Քތ�\u001d^\u0012*�\u0003��qQ�/V�̩���\r)�E�\u0010�ڢe0�E-���8*P��}|�\u0007-Fk�1��P\u001b2\f��`��|��a�V���۫�\u0000\u001a�J �����ϰl\u000b��v���\b\u0007;h�\u0011�ؤ��ah�7\\[U:�A1�\b���M&R���sD��\f�\u0005\u0004=�\u000b\u0016x^~2�\u0001�h��j����̊K<��\u0003���*A\u0018U�eR���\u000er?\u001e\n��\u000b�\u0005�謄�\n����\u0015S(ؘ\b59GU\b;��T�[�6�C%dL\"�hkjKGg`cT\u0004S��T�msP\u00011r��s��\u0015�rs\b�_\u001d\r\u0019Q�Y�>�t�\b���Yp�,m�d����ތM[���4�Vy���\u0016�\"9�_\u0014\\':�\u000f�7E\u000f�w�\n5��\r�\u0012yD�\u001fȦ��,y�4��\"�Xۋk4\u0015�=I#@qY%I�\u0011$��=�i\u0017\u00107�nM�(r\fq&T�?M\u001a��[�v\u0012s��,�K�k�8��'_�}f��?��im�N6�\u0017���[�v�A+�\b���1�M��\u001fq�'m���\u001c�\u0004�^&\n�\u001f�Ϣ��n:D_� /Z@\u001d!�|�?���\t*V�x�nTJ����a�(��������.\u0013O�݃\u001f�\u0014\"\\RP]M��Q��Gf�c!�}ƈ�.�\u000f�������<\u001a'���.\u0007e�)-\bCl�Uh?�ȏQ�/�I#�P��1�Y�Vr�\b��͛���S�~���j�\n�t�P\"��V:�\u0004譡3�b� ɥa*�A{��A7\u001b'~�:,W�\u0016\f:\u001c١e���\u001eo�n軸�D�0��'\\Լ�$#v\u000f�80\u0001\r�Pʦ�l�%�m@�k�\u000f����%\u0012�\u0013*|�g\u0004Oq\u0018l-\u0001�| �!�$i������G�L��A`�\bԀ�Iu@4?��O\u000620�CK\u0015%�%\u0007-�X��aX>i�(T\b\u000f�v@,O�\u001bnd�\u0006q\u0004=\f�w��0{{�УMh4\u000b�DsO\u0000�0��}�>|ŧ\u001c�4�\u0003b��z��`i^C֬�œ\u0002�@!)�ȷ�u)�WL:'^�U��6�\"rH�^@(@R �)/9�m���ܚ�5f�@��\u000fӹ�\u00150�N�>�_�,��Ŝ�c\u0017uY���\u0006�U���<�}f�\t��8���l����\u0011����\u001a��\u0001�,\u0016K\t\u001cN�T��ʆ{`�\u0011��\u001a\u0012���\u000f��\u0012��_��嵹�ONم\u0003���1d�t�I��V�Ċ��2�t��E�ї\u0015�tl��\u0010��tPFm�E�\u00023+� �]\u000e�,\u0001<�\u0011�I\f�?�$f]U�d��{T�&��\r����K�;�i��z��A\u001a�\b��]��\"�ͩ�^�.�o9�J��-���E:=�$�\u0017���T@��i\u001e�nv>Y1\u0017R�\u0006t�1�\u0004�j���/1j��=\u0016r^�N�\u0014w�\u0017�O���:����v-�P\u001f\u0002Aί�d�p��\r�\n6\f�\u001f�(�,{.\u0016Gv:›�*H����I�\u0017/�\u0014��\u000b��RM��/�Z�u�vћ\u0016��#��f�6�{����<����\u000ba��\u0015\\��j\u001b@����WJ=�5aj�ڎk+����\u0019�B\u000f�)�iދ:��\u000e�I��YX�\u0019.��?���w)ЗH�\u0014G�� ����N�R�\u000f=mO�#)~\t�\u000f�?K��\u000b����4M��գA#�\b����6'\u0019ѵ��G\\_�|\u0000\u0004���\u000bGd\u0004��݂�\u0018�铩�g\u0015�.m���{Y\u0012�����\b\u001e��cY��2F�~�X�͡I\u0003�#�\u0002��W$ډ�qM��/�\u0018.\u000fF��3O�6W�x�\b\u0015��Q��3�\u0012��BY��\t���\u001bw�b'\u000b�(q�bE_}\u0001h�a��\u000f��$;���i���\u0017�\u001f?��z�\u001b����,��-^o\t\f��*u��[��V�+�u��Y:l��0ߔ5�v��YHM��\u001f�P���Ş���LkA%Ҿ���䯯h�\u0012κ\u0011�\u0010B\u0003(��Z�������Cį��\u001b�q��%H���F�3\"��(~�w������]�G����F��^䬘��\u000f�K\u0003�=y\u000e�}�e��\u0007^\u0004�\u000ekU�f�8��\\�Ǐ�֣�DY\u001d\u0012鄼\u0000�n�\u001f��/7h5�W��z\u0012\f���>|*8��+��t�͓������c�X����L�ڕmE�i�3��\u0003�:x�����\u0003\u0019\u0016ΰ��\u00103���U\u0006��[�h�:��[����A\u0000�Y��R\u001cB��i�\u0016��ɥA��\u0011�$�@P�A.�\t8���f�%���\u001f\u000bX}�?���n�\u000fm�}\u0014����\b�](�����DݻD��ʬ�Q��1�'Հ)ȫ\u001d��6R���3���6������E�H���)���W�c�2H�\u0013ڈW� ��ǹ�Θ���DR�\u0003��^��@\u000f\\.�U�b�q�K�gW�R\u0003/\u001b�;���\u0014�}��*l�\u001c�<ͯ`��G�\u000f\u0019?��`�q��\u001bL%\u001e��\u0011�7�\u0015��]'�$\u0019�R�\u0017b�e�\u000f1���:5�\u001eH����\u0007�\u0012����\u0001Pܟt�>M&i�4�\u0010�F�m)D��\u001d��\u000b�!D����N��K{ۣ�ـ\u0004�WT�^^�x[���N�����ҽ(�OQ�@P�AN�\tL���o?^��Y��02�\u00183�'���\u001e6)d\u001f�#�t9k\u0003�k�����\t\u0017=-\u0011D��!HĻ��\u0018y���1Z�(�.�n��q]��%�-\u0016Mϔk\u0012�S̳�/����5X�-�.�\u0015�a�ʲW�ˍ�\u0007��\t�ͭ�R�\u0005e�\n�q��h�<\u000b��gI\u0002���Q\u000b��\u0014#&�c�쪋��\u0011 �L���f\u0000Ώ/N�>3l���e�\t�\u0019�O'_X�p|�\u0012=�G#��V��\u0012�%��\u0010S\"�VDڎ��Յ�hL.�n�\f�ѫ�P™�\u0004\u00187�g�HnIO=\u0016t\u001f\f�\u0010��\u0016����o\r;�(�{�U&�e�\u0014P����iz�\u0018�\u0002�%Z�\u0018�i���bh\u0006Z�\"��ޒ嗴�SvM���&����\b}�Kq;��AB�\t`���kb�\u001cf�#�\u0006\u0018\u000fk^\u000bpl<�,�Q\u0013\u000b�^�=0u�s\u0006\u000e�B\f�Ein�2/�Я\u0014�7)�2<\u0018z��]n�ZQr\u001b\u000f��\b�r;~�%���AH��%F�\u0010���\"�\u0007\u0016��B��zS\t�j��a\u001b��~\u0006���U� ��\\g@P&�\u000e{*��sk�\n-!��bx\u0004�:׎s �(���e?^`��ߝ��-~��\u0019i����Iɱ�\u0002\\���K1�J�\u001e?�.ݥ7\u001d\u0001�g^�����\u0002�����,\u001f!\u001e\u001281���9=��\u000b�\u001a~�OM\u0006��՜svi�\u001d����L!�)�0�JƤ�����@�CK��tuDP��4a�k\u0015���-\u0004K��Ø��\t�\b�w\u0010�w\f��m[p\u000bY\b~(��8YG�0�A.�\tt���l7�xQ/KΪ\u0002���V9D�&��H�\u001e�����EU�w?�\u001a��\u0005S�6\u0006��2��ۆsf��k�+Z��6��\u000b�ۉ\u0013?�C+�/�Q\u001f�ބ����d��A\u001c�QA��\u0016)��\u001b�v)mJq d*�\u001b5�g��5˘P�G\u0014h�ZT�\bao\u001f.0R1�\u0014\u0017�^��N�M?E@�<*������c�\u001a֏��&\u0004&�w�̶�J�K�)ᘲ����QK\r}ƕ�rԧ��n���N�\u0002\u000f<ё'h��h�kG\u000b\u0012\f�ߧ�\u0003}_v�H�C��@��+j���N��;j�R�R>\u001d�̾lES7vR�����\u0010\u0019�\u0014�#��>�\u0011\f�t�V\u0010\"�QA�&�˫��0�A@�\t����or�\u001c�\"�w]�U�\u0019\u000f�:zܝ�\t�ka���Z)\u0014\u0000\u0011����0���lƳ\u000f�8���:۳�I�m\u0014\u001f��\" �S�\u0004!8\u0002\u0005G�OB�OC���#\u0006\u0012���;\u0012|��*���?�f��\u0014�9�٤n�g�{�,X�D��\b�\u001a\u000f�I�h�\u001a�yr�te-!\u001aN�������1㏨��4'#e�\u00114_h\u0018�C���t����b#ş:\u0006�\u001f\\�c\u000eS\\W�3\u00101f�h�\u0012��\u0006WZd��N\u000b�:�k�\u000e�2���'\u0018��T�\fںT�̄\u0016�4�I��7,\u0019r�N~3�\u001a�aj槯\u0017�����7�\u0004��)>�u\u0012D\u0004�_epUWLSW���$\u001c��\rE{!~�\u0006E_\r6�R�uÁ\u0010*NOB�@�*��A5�\t���L�\u0007�t��\u001b�t�l^>ӷu�KV�\u0007\\j$7WA7Ej\u001ct�jyq\u0019V7���Tl�o\u0004c��E2\u0014�Ը$�\u0017P!j�@,���w��q��,d�\b��×��8�Ϫ>0\u001e�\f>\u00010C_�B��˄��ʐ\"�\u0013��\u0002Ɣ��εC�z4=C����aJ�c���)d$\u0019�I\n\u001c��t�2���M�0C�����\t\u001f�߾�m�\u001c1�0\u0017\tQG�\u0010&\f\r��D�\u001b�\u0012z�s�в��\u0004\u0017J��\u001dH�c\u001d\u0000�xR��\u0017y�Q[���՘�\u0012[�|�>r;`�)_ީS���\u0002w\u0005�raV���T���\u0007��ɘ��\"�̛Z�ؙ\u00140\n,���{Á�܎8\u0001�PJ���\u0000'?��[�A<�\t�����/��� \u001b0�)�E�楮�\u0003�@�<��g��h����+\u0017�ީ�\u0010mt��G!�\u0015\u000f?�v��/\u0003'nG1�\u0005��^z���G���\u0010Ƚ�q¨�\u0017Mq��Y��GV�\u0014�1��k��E\\\u00004\u0001Af��jthuA �Y2��\u0017�钞��H�i0� ʹί�H��.r��0���=j�<��\u000f]�\u0015�\u000bJ-����z\u001e.�.ï}�\u0003õ���=�A\t-��^\u0014�-����\b��\t��/\u0012T�dK��tN��w\u0013(\u001b.���\u0016\u000e�.x9��\u001a\u0013�l�n�2��`�\u0015r>�~s��\u001b��Q�cgJ\r@յ�f�,�E\f�s�ˣ��u�k��\u0012\u0005�\b�Ѡ\npj���\t\u0012L较�\u001f\u001f8ɣBK�\tĀ�{\u000f�\u0019���\u0000��^�n�k¾\n�i>\f\u0003D��Ά\u0005l��{�Yk��\u0017���V�(�L�^��u\u0001���5��ۣ��\t�8 \"\u0004��' ���y\r\u0013��o�y`K�\u0016\u001du\u00033�eX\u0007+,_���5G��^��\u0012��\"W�3{��¹�\u001d����\u001a�\f�+H�ǂ;��5Ȋ�1��0�+4~��0�m���[�t�X��wZ,�n[�>\u0019�~%k0�]�\r\u000e�>I�4w\u000e6\u0015\u0000DH�����ʜ�\u001b\u0006Sjv�\r�B@��W�Z�O�5��w��u$9�{�7�h@q�\u001a\u001eG����D6���\u001a\fB\bG�ob��b\u001f��nTȎ���^f�l�⤴�\b$��9�үNp�\r\\|�XK�Rc\u001ef�\roӁ\u0012�w��!��\u001a�G�g�����\u0013�Gv��\u000e\u0010�E��HFy9�p\u000e��iqP\u0017J/����5�\u000f�$�\u001c�\u0002l����gf�����©ekJ�:�!�vN�UU�i^V(�\u001a\u0006\f��\u0002OM����͕\u0016N��p!+�*\r�⫠h�P����ɵ\u0001�\u0014�^j�\f]����\u00114\u001b�m����\u000e�Q��[#�bW\u001dJu��*�m���Ґ<}j?%V����\u0006'��N�����\u000bƃ_��\f\u0013\n\t\u0019����'U�\u0001x��\r�%�x!�&���O�$qXlHR�?�@@(��\u000e-ަ���k�#�&~�q�-�onf}�A:�\t؀�I���e\u0002�K/\r\u000e�Ǧ�+Q^��[�\u0004�[5�2�Y\u001aV;�:�\u0006����JV�\u000ea9����5O�(��j�����\u0014\u001a8`�\u001c%�����~Vk�յ��]~(���\u001f�S\u000fB�a1�����F�\u0005\u000e.���N�y��&�(��\\�B��������%�X���u1���������h=�\u001a��\u000eٯ(e��\"\fK�?e�t�r�TX\u0019O\u0003��C/3U�DBn�MܣZΨ�?��a\u001eǚQ��ڱ{!�Ջ�J\u001f�\u0010nY':�%�����:\u0007�kzF���M\u001f��Y�U\u0014��J���`��\u001e��3E��\u001b�\u0010y�FҊ��y��=�`�I�`�o��R��Ću�x��A�X��dT���A,�\t��M[�ܜ�0��jma�I��~�`݄����΀P��s�\n�\u001co����\u001d݃���p/���}�*��Z��4\u0010����]��\u000f\u001d��\u0011�Q\u000f\u000b�H�e3u`�aMG'(%�ž|l㎑�\u001cɆ��S����1�\u0005��W0��Q�\u000fvV�8:׉i\n���g��{f��^-\u0015O���GjCX��gq�\u0000� �ڡ<�w��\u000boyBŻq\u0012�\u0010�\u0003_2���]�{\bgKL��B�S��̰��I���p1G�M\u0014�\r\u001a��?���]\u0003�~������eL��mf��w�k�BT�z��|��N��.\u00012��#>*6pp�\u0013�_�����\u001e���f�G�\u0006\u001d�з�nuJ�eT\u000e\u001e%�A0�\n(���L:��tM\u0002\u0005�œ�� ���QH'��ےf���W-���\u0016���\u0007:$����N`yA@\\\u001e6����s�\u0003�7��\u0005�c\u001bp�\u001fcB���\u0002ܕ\u0019Zo�T\u0012~�/1f�i��\t>��Juh����7��$K���z\u000f�;g�^m,+;��~��NR�i�L\"�E��Xʣ�0�5���v�=<\\\u001e(K�˖\"Z���V��7|)��i�`�D\u00158�𐰡�ho�\u0014In�Y\u0001}�/R1���@h\t\u001f�Ν\u0017J\u0018:(�h��Ѐ�d��/��u#TCM\u001e\\~�f��O֮�j�諭��6.#���`�ok�\u001d\u0007�\u0018yW�H\"f&�i�\f\r����\u000e*��\u0011�\u0014� �AI�\n<���\u0002��^���M��\u0006+���g�\u0004�D\"\u0012P��R�.X\u0011\u0018§\t���ȉ�\u0000�X[K�7n�]k�\u001b�%7��\u0018\n�S��\u0004\u001c\u0016\u0014�-c}*$�[n�\u000b�\u001f�\u0002xh\u0000e_9h��\u001fWƞl\rf�t�\u001e�t�\u0011�T\u0017M\u001aH\u0016\u0016�s`�$�\u0014\u001b.��m*V�3_{H�\u0013����\u0007o\b��E\u001bb\u001b9\u0000M\u0018�r��'B�G�(��)\u0011�\u0011\u0011w���љ�\u0005\u001aJ��\u001b���O0�� ǀ\u0014�6Vw��+�K�\\j\u001c�dJ��a!�\u001e�ۙ9Bܳ\u0003�is6�(l�K`�!%\u0007)\"Ģ��\u0000|�O\u0016�q�bOS���E�\u0017\u001f\"H�Ȧ�c+Zs^�<���\u001a���]���E\u0006\u0006\u001f��M\u001f�����䧵�+���q��`1,��aG�W�\u001a\"��͈N)����U�r�o�Q�3Kl&�\u0003+\u0013g�����\\P������\u0002��\u001b��ϼ>�^q�O^��=�\u0012���!��\r�\u001e��-U?��F..G�Lx��������\u0015~\u0002�\u001f�AI�\nd���\"�>�y\u0000�o7tYƖ���8��+���l~_]jn\u0016E�\u0012���*�[�c翮 \u001f�U��,�F�-�oԴ)�\u0019\u0007�m��&��Hy\u0015\u00189���\r\\�\u0017��\u0019��5�@k�%\u0010���(���6G:���g&�7��F֔\u001c��o\u0004UD��3�q!A.��3����\u0016�^�|�\u001a%+\u001a�Ӑ\u0016���\u0000Lq���\\��Ţ:��uHyN��f\b<.�{&�n\u000f\u0006�C9�b�\u0014D\t�T[�^X\u0014�\u001e�����\r�7�x\u001d\u0018S�\u001f(r\u000f�\u0012�3�GȔj�\u0007$\u0011���b�% �(�'�\u0019a���(��\f��[c�\b���u�),\u0005Z��!�mJb��\u000fK\u0018��S'l��;P�\u0005B�=�@\u0012�\u0007\u0014/�\u00198�Ⰴ4�\u001c�A1�\nx����ɩ�2ڞU�|\u001a]�\n���\u0014�P�Of��)�k%^\u0001\u000b�\u000b���?e�q�}[�\u0002G���D�o)�A�\b��M��xv�U�r�U.�WB��ϐ|\"\u0000�9�@O�.��4U�J�\u000f�Sb���3�\u000f=�\u0015/!h�\tCM�±�\u0010��=-\u0004�\u0017�>��2{G8?\u0018jǔ��t\u001fIA2T\u001a�\t�X�9�V�WJ쨭\"{s0��az�K�\u000f���\u00175����_�9�n̝&��\n��=q0\u0012\u00061\u0000q��\u001f�gD���/��8\u0014a)\u000b?�\u0015��\u001b�\u0006M��\u001d�#����w-Q�mK��B����)��&��cg�$�Dl\u001f*��\u0017 Ws\u0017��)\u0002�&\u000e!�&9����\r\u001d�A1�\n���\u0012@r�Eo�\u0014J�r\b�h���մ4�j\u0007�\u001d\u000e1u)Iůf-\u0016bU�׃��\u0001%`PG\u001fb{�g�Iq%\u0003r4s�\u000eUY\u001c����(dr�{����=u\\_�\u0011\u0000P\u0010��d�\u000b>���\u001ee����t�s��!#\u001b\u00133E3�\u0007�'a$X�I��X�/0��\u0017\u0003��vD6�)�}o\u001dy�����/X��\u0013�F\u001bp\u0011\u0005�m�\f��5��7���|����$�V�*�-9�\u0019��\fh�\u0001H\u0017>�J���(�+w@X�\u000b\u001b\u0012!kw�Rc��\u000e&�\u0007{\u0018��+8��.\nn�������zI��d��?(��0��7fP��i�n�;���\u0005� \r$�{�G�\u0004���j\u0002w\u0011��!2\u0003]ϣA%�\n���\u0016�\u0010h`�Ϸ�Y\u001e�\u0010\u0017\u001eC���h��b+���8�'��=�Ǭ�����3w$Ȍ\u0015\u0005~'�.�c\u0018�6=�\u0005�'ub�\u000eQ��|�)\r��\u00183�� \u000b�$S���ۉ�q���\u0016�‚\u0017�����K��r�O�2H�CA\u0018��A�23[i��x\u0017\u000b\u0015����\t۱�\u000f�\"A\b@\u001c�1}�K߼�\u001b����\u0001�\u00138�,��>Gi�&�8\u000b�؈�����3\u0012\u0006��i\u0000�ui\u0018L6.*���>\u0012�\u001eb��l6�\r��P\u0002\u001dow�W�`yrn��\u0007�\u0018g��н2���>C/u@ןM��q#�J�ɋ&��d?<�a�Ӑ��v���?@�:6����A&�\n�����g\u0016���\\歏S&�2��I�r�V^��S�ր\u000fՇb�i}_�\u0004�2n*�}u\u001dELѻ`��[\u0002w�9�4Ƥ�ڧ�\u001b��f�\r��[M�!_���6��`�k%UT�|\u0006�Y�P�\u0004%&�b/�3�]\u001bBw�u6n\u0001��oA�E��%5�N��CF4wj�\u001c�_���è'vho\tU&�TἩ�*k<@\u001eԶ��u��\u0014\u0016��\u0016\u0016@�Y������+��f��;�;���\u0016�9,,\u0013gQ�7�\u0001����S\u0000���juf�����t�?j†\u0001\f\u0013�H��~����V�\u0013%v瑭\u000fn\b�?�=�6��������8���\u001b\"׿����BB�\nȀ��旑�,��2�N����vZ\u0002t�P\tO���\u0006�|к��;�O�\u0016ůy]�\b��\u0004�P�\u001c���p�Z|B�����\u001aH�\u001e��n\u0002��i�D��i\u0015�\u000b�A\u0005�\f�\u000b��\u0014�c�=GB�D����)�\u0016sg^�v�*��\u001b��)u����\u0000�V�k�VfN\u001fH\u0019~��˱��\u0004��U�@\u0002X�9�\u0019�\u0005�\u0010�\u0019�\u001f�\u0016��S\u000bZX_Vd\r�p��sv.�y\u0000�RY&j�u�Qּ��:�ЈK�;�'z\u0017�\u001e&D�\u0013#�+����Ė��1\bB��\u00004�j֯�\u0000\u0000\u000fL\u0010`���\u001f\u001b�2�gOm�śѳ\u001f\u001f^P\u001a̳�h�̃<��mũ?\u0017���~5�F���F��A�$����4�\u0007�f8m�赥h1y��\u0017\u0006ё�\u001fw\u001c����\\�a�V�{\u0007jw��\u000e(_j��\u0012piw\u001a��J�\u001f\u0013����\u000e�Q\"iI� �j��ZG��\u0012�s�\n\u0000'��i\u0001b\u0013�����@��S�\ft`t}j�B����zw/Q�#F����d��V�x�\"�jM ��\u000e�@\u0015����\u0010m�#(G�>vV\u0001I\u0002�6}���\t5�i(�c\u0019��Q\\�)�S�\u00181y�(Z\u00071�L�3�l�V\u0017k�\\��=��\u0007 ���^���}R\fB�����Nce\u000e\u0003-[d�3��\u001a|[�6�G������\u0006)��\t�xv�ÈУA��\n܀�}b�\u0007-e��Ǧ<`v�P�����ؔFmj!R���I@nY�q�W�J��\u0007�7��R�\u0015�M쨾��s\n|!��D\u001ak\\�u���2���=�;����\f\u0018ߚn�\u0001U\u001a\u0010a\u0013�$\u000e��=m:��7)�a���\u0015��m˺.cn�٣/�)�_k�^\n7�\t@R\u0017h-h�c\u0010��ز\u000ef�3\u0006e�Uǘ�\tɹ{DѡVhն��Z5�.��E���\t\u0015\u001d��Ɯ\tQ6��-L��,{\"9��%�:�/����a\u001e�\u000e\u0004/�\\E�qm��\u000e�0M�\u0005Ǣ��\b��J\u0013\u001bY���ϳ��\u0017K�i�6\u000b}�c@Ad��\u001b-�S2�P�v~xhA��H��j�e�,�)ʒ��nդ%mw�b�\t�\u0000N]�9\t�O�+���U\u00119���G�\u001e�\u000f���i�\u0010�\u0007#�\u001f���ĹClr��c��޷�ZA��9��1\u0014\u001f�[@�\u001d-Rh�Š��l��4\u0000��&P\u000f\u0005��f���A!�\n���L�(�\u0011�Q\u0010�\u0013}4�ҧ2��;�����å����aRVa�\u0017R�\bo�t귳�n?x�hQ\u000b��q �P\u0010ɥ\u001b���G�f^�\u0018~��z�\f\u0007��U�Q�O-ZēQ��b+9o23��/dM6R*,���x��\u0014��=+d\u001d��u�`\u000b�$ʎo\u0002��؈B�|\u001c�*\u0007d�\u001a\u001d3�\u0001�E8\u0002iva��I��P��]�Ll�޲\u0004*�@�\u0012�^��g����Gu\u0001L���i�v\u0013�7�Q̀�e�ݼ5\u0010�\u001e��\u0016�ˮ\"A\rŎ|.n ���?��(`Q����\\@�=?q��`P\u000b͓�\u001b�71,��+�{\u000e�\u0001 4\u0014~�#��\u0014\u001b�A\u001d�\u000b\u0004��X��Y����`|Gޟ�tD\u0013�[�\u0012y����\u0006\u0017\u0015\fC��x�N�]��xko�&ӆ�Pt[�N܊e��-Y:��Z�\u0004\u001f2s����si\n$�\u0007\u0001Ɋj\u00111��MN64��I\u0016�y)�\\D��P'mP�D���_�t�H0\"��\u0014�� �\u00192.Ј�������\u0001\u0014Bs(,I��2�!�t\t���\r\u0002�Sc�\b���\b\u000eaa��R-܆ڏ�\u00114\u0002l~��I\u0011�\u0012�8Ut�f�_\u001d�%�)n���(a�a\t�\\Z՜�d[-[�F�P�N��\u0001\u0007\"3\f�\u000eO���)\u0004��\u0016C�\u000b��,�\rV6z�����m�o�r�9��l���A\n�\u000b\u0018��L�q\u0003I\u0006ٰ)ى���3Q�e�u��6Y\u0012��\u001dv&{Jz��*�\u0006�l>���1;x����v,�\u0012�AS�\u000bh���b\u00051�[{H1�]`}�c[\u0016��\u000f�崡!����\u0016gGF���\u0018�*�F��.��K���Pul�!?L�A:�ʺ�>P9,X�p�\rF��\u0000\u0018�.�qI���bK�H�g�\u00060���Ei��\u0014��(��\f\u0005���L6�\u001e���X?\u0000��ߣ,��ME\u001e�#\u001c\u001bl\u0019�kP\u0018&\u0011\u0005O\u0010�W'~��V�\nj��U\u0002�~\\\u0005��V���:;��\u0005\u000f-\f�+\u0011��������f\f=`Q�V�\u001d�Q�\u0003��Iϖ턞;\n���\\!\u0004/��\u0016e�NE=��+�\u001a�\u001b;��\b�����'s\u001a\u001c�n�\u001e�\u0007[\u001a�Y�����\u0012�A^�\u000b|���b�:O�y�X�uh��g\u000fBvܵ��ÞN��Sb�rb9�f��9\r�v7�����K�\nBf����-#m���\u0003�m�lc��\u0010����\u0015^R�\u0007c.=]>�u�{�{�sI!W(���\u0017��Dֵ\u0004��DB\u000b�f��\u0013\u000er�F+$��D�\u0013�F_\u001d �\u001d^���Lv\u0000�V�_A��Y+y*�[$��\u001fz�\u0010�/��`?nU;%�_ �\u0010��p�1\u001e�hCKHc�H�ޖd�$�\u0019Ɓ\u00180!��� �\f\u0013\u0018�mp��>��C@�c�ߛ\n\u000e��\u000f��m���J�a���&�c&z�o�*���\u001c�`��@��\u0001�\n�L�\u0014��`�\u0004�}�\u000fa����:��3\u0014$�\u001a�\\Ɍjy�n�`>��`�F\u001c�\b��\u0007=I���Zt|��O �>s���A_�\u000b����c����z�s\u0003x2`�;�\u001a\"j�P�\u0006!?12�\fG\\~q\u0003dT��i�,�> �wE`�<�(�kH=G�����V�m�v��ޔ�;�,�q^$�\u000e�<��E\u0005���fp\u001dB\u00079�[�'\u0016�s98\u0019��\u001f�G\"\u000e5\u000fD��÷4\u001f�,���OG�C��E$E(\u0005e\n���4%Y^�\n����DB\u0017\u001e�e\u0006b�I1����0�b\u001f��NP�\r ���w}�X����T�8�!\u0018������x\u0019<�)�j�k\u001d�م<����\u0014\u000f�\\s��Pv���8�\u0006�\u0010���B��J5e���%�F'\u000f\u001e�\u0019O{]z[=i��AX�\u000b����)H��;0\t��EiU��\u0005�]\\�\u001aphXQ\u0018�I&�R'V��{\u0005�g�\u0001����u\u000f\tǕiT��\u0004Y�\f�Vfh4TY�ܯ�CZ�V\u0018�N*�\u001al[\u001d��9}\u0000�Ӕ\u00139�\u0018���\u001b\u0000��C�S\b��2\u0003Szz�m&�?i@�\u0014�t��(�yVL\u0011U�H�%��2�O�Ԉ\u0007�2���:Yd\u001f�b$\u000f�Y^s�LeJ*���\u001a�P�:\u000bMȪ�v�P\u0006��w\n�*I��\u0018�o$\u001f\u001b!C-n\u0006�M5�Ư�\u0019\u000e+C�����\u0010\u0006P��5Y`BϽ\u001cB��\u0013�,%,�W`��\u001e,~\u0000?4\u001b\u000b\u0000�'F^s��\r�'�M�\u0014Ա����ht�N`\bO��\u0000��쟏��\"�'�\t!�L�ɬVLHTL�/Wy�^�7\f&\u0007��2��\u001b\u001d>щ6���Ad�\u000b̀�� \u0014�����[�˻7���\u000f\b(���\\����ԧ��\u0001C��\u0007��|1�!0�I�.=��(Z4&�\u0011�jm�b�Gh�*�]���l�tڕG�����\u0017��|����\u0000\u0002�q�$\u0002o�m�t�u�X�#ǦU�~d\b݀VF�E^�\u0018u�&��`\u001eK��h���\u0000}�\n\u001c�\u001e!��f\\\u000b���\f��P���`es�o��d���!���\u0004L�LX��j��\u001fK�r��\u0013��\u001f��)\u001d\u000e\u0002\u0011�r�D��{�m�g\u0000��P&_rqm\n�\u0017\u001a����\u001flt�\u0001U\u000b\u0015\u000fn��K��\u0014�l��ĭ{���\b'�CÙ?�TpD\"�9�|\u000b�e�dž��r�o\u0014���|�Q�e}9!Ԇ�m�1\u0005��ь̬�bnIW\u00186xE��\u0001\u0000��\u0019+�����\u0018=�\u0013�AB�\u000b���#�>?���du���õ�,��\u0014\t�\u001b�\u000e�>�}>\u000eq��ڏ\u001e�2�y\r]\n��Ɏ\u001eG��\n�Vo��ks��0#�l�gW���=��N\u0017ܧ��T^�vT�o{v�Բ���V��\f\u0005����f/\u0019�@��\u0003#H�\u001a\ni1Xa�դ�ze�\t\u001c���@��<�O\u001et�%C:\u001a盭�\r�Q#�f�;�Oc�L��^9m\u0006)o��X89�%�r�\u000f��k\u0006M\u0011\u0013\u0007�Diĸ�T�\u0004C�2�\u0015\rb|\u001f�\u0005o`����&�\u0000V�o�{�\u000f\r�t�p��4*H�s\u001d�PD�\u0000�b���vӝ庬�<�\"\r\u0010���h��ݰ����}\u001b���:�?��0�\u001d_o����I3����+�q����\u0011�At�\f\b���(��<�B�{n�W��\u0012\u001f��h����d��\u001b-�\tN&��(\u001fd��T�^��\u0001��o�\u000f\u0015�\u0000��gX��k��[/����6�)~\u001ak�=u�)\u001c�Ew�\u0001��̿U\fU��.\nx�\\�\"�I���Aa�{4�و�x7\u0006�ƾ&R9����f���9��\u0003����W�\r���\"��\t��\t�\u000bJ��C�[�\u001b�:1ωH��7q����Wk�>\u0016N��\u0002��\u001d�Ri�\f�*�ME7y���\u001c\"d���+c\u001fPO�c��\u0015�\u0014��b��/\u0010�Z괁V�WF�v��L7�\f)I�b�q\u0014\u0019��δFS���þx\u0000�p[\u0006xٯ��\u0006\f�nw-:���9U��g'�\u0010|�\u0015ő���\u0000\u0015G�\u0014\u0001\u0017�ڳ�G��\r�\u0010\u001fe��\u0002Z\u0010�S.�Z\n\u0013 �jMp��\n\"ld��*���D�H�\u0014(f>\u0000����Ae�\f\u001c���m<0��}��:�;S��=y�-pr\u0019f��\u0019M:!�����I��1g\u001e\u001a~\u0001t\te�k��fђ!����\u000ed'��\u0005o�\u0001�݆ �k,��a�Z1(\u0013�~G���ɡ�G�eJ��Ү���Z���KP!�[pX�V\b�'O��]\n<�'h��\u001d';�\u001d;\u00101�J���{�\u0002�{��z��\u0018o�\b\u0017�b6�R�\u001e|��\u0006U^�[\u0018$5h��}�\u001c\u0014�YW�nE\nOd3�Ń4�es�B~#��\bm�|�_`VI\u001aV|���lp\u0019��\nf�7�\b�AKa�i8�\u0019�YVk\u0011�j\u0014\bF3�ku�p.\u000f��ϙ�-�!�H�f�Nd$��g\u0015�\f\n��o\u0012���_\u0016y��(�����\u001c\u0015��[�M.o1\u0010\u000b(��\u00190�q\u0018�JTOv�}�������l\f�T�\u001fu��\u000f�$Ѳ\\\"��Ag�\f0���j\u000b���\u001cqղU#\r�촪��\u0002�G�CE����\u0018p�l\u0018���\u0019��\u000b�|��-T\u001dܨ;�+Ӝy��'j�o\u000b���TAI��\u000b,*0�T\u0012�6�9���eZ��.=\u0012a>c��@�+Y��\u000e���zM/�sj&�k�\u001ch�J��|\u001b��ƌ\u0012�;��p��k�l9'��1@xزR�̿�\u0016|nG��E#60-�~\u0014��\u0012?\u001d�\n.�#�\u0013|w�H�����\u001e��\"\n<\u0001�\\���P\u001c��m;��\b\u0019\u001c�l�x9fX\u0003�E4 �I�R�:J��1�Buer\u001bQ��7�[\u000e�x�\u0003��h��\u0000��:�Κ�5��\u0002�&�l��?����,�\u0003D��\u0019O\u001a<�\u001e�\u0016\u0013Z�/�\u0017}����{���]�\u000fZ���.b�v[\u0014Y��*g(�zs��Y�#����~�\r�\u0007\u001a\u0013�Ao�\fD���!耶�\u0010\u0016�\\���U�,�A�Z�Fˑ�\u0015:\u001f���_�/~\u0010�\u0011 �5ZL�O�0^m郐&r�����\u001fr\u001cyP�O�k�\b�g��\u0010�hVPZ�e\u0011��RE1/�]�JOՇ�E\r��V\u000efGh�_\u000e�&,54^\u0001\u0003b۴��C�P����[�:Ѫ?Y\u0015��0K�A��ihՈ�]�K\u0011�d�x�i3)U�c3^��\u0000�';�a\u0017U1\u0001$,\\:,hT\u0005��'t(�3�۟��W�\u001fO�I�h��R\u000f1��Df�7sܟf�P\u0012�#\u0007B\u001e8�t�l\u0010$=�=$Ӏ��\u0001\u0010����\u0015bX\u001b\u0005U��I'�\n���J�q�&�\u000b�l��چ��\u001f\u0011;��BQ�O�=lEy\u0004\u0015���彁s�)��\u001f1-�h����̈��_�!�\u0019\u00072\u0017��<���۪��{\u0011���=�\u00153���q���\u0010�A��\fX���3����M��M\u00027���\u0005A�������`L��\u000en\u0006�ԡ(�\u0005�\u000f0�nL��I[10y�O�\u000b\u0006����J/oN&\u0001��A)�\"�Z�����M&�A�GZ��m�$V�r�M{�\u000b\u000f���j�\u001fd�h\u0014ԋPi���!��{XM�JF\u000f*�FX\u000bҁ\rO�]�\u001c�ӌ(0�D��aq����6�»�{�\u000f\r�\u0017\f�\"�[�tgj\u0017K4�\\T5�n*�\t�Z������J/\u001e��_��+��fN.�\f�����\u0000���1�����}P3\u000b\"`ڴZ�&Ą�� \u0001w��{U\\\u0004-�[�N\\���ogWNmMN�\u0018T\b �����1��\u001d�'���Qz��,�T&��b\u0002��\u0004V�ןJT����),\n\\�v�'�K��$�x�2DRSMu\u0012�\u0016O�������G��ݖo\u0018b�̣�C�#N�W�%d�\u000f���9q�[�\u0006+�\u0001\u0002y�\u0012�Ax�\fl��6���{�����C�W��8��;u7��4?�Q�-�\u0017��\bm\"窐�Ӓ�P�l\u0005�O�Z(C-Z�y�{�t�I\"\u001a��\u001a@�JPy��1��ī�<\u0006�\"�I�\u0019\t����?:�W�\u0017�֧�4L�_ȏ�/8�\u001b�{\u001b\"���J\foK�u��2\u0017ٟY��qgD�E��[=kgZ����>�~\u001b\r���\u0012\u0016��s����zyyqײ�lc7H\u0016C\r���ߠm��\u0015�o���ڼ\u000e\u0017��\u001f�P�\u001d��58EW\u000b�鋕m��\u0017�f\u0001�a�ޚN�0�IREu8}�kF�R�\u0016�Z#8!\u0018k@2�x��%\u0013\\bRZ�\u0016\t\t1�}��/�k\r{�S�t���\u00171<��\u000e��t��rl<�w��\n�����\b�l��#W�\u0017�#��g��\u001d]\u001b�f��\\�\u001bd(\f��`[Ֆ�\n�8d((�a��\u0003+��/:�\u001f�A<�\f���%�\u001c��T\u00172�f���4���\u0005t��Ì��m>󭜬�\u001b�ڊ\u001eRh���\u0001�X=T�k�#F\u001fG��s�1.�jj\u0005�z�%7�*|�鍃\u0015�di�,\u0004d\\m0�\u001f�{Q'\u001bW�\u0005-�O�,�=����X,���=\u0001�\t0��L ���%��O�+׹��\u0006�L1S�\u0010\u0015\u0000P��4��|�sm�\u000b\u001e�~E�6�`�\u0016Ua�?��1'9��\t\u0006!Fi�8�;\u001f�q��\u0016���6\u0007\u0012\t$;�2<��/g\u0013n�z�k\u001c����\u000fx�*x����\u0004K�����\r�XF�}�\\�\u0003�̗{pQ5�����T�e�LKv\u0013\t.�]���ǨJ��`���7\u0007�\rzh���\u0003m��x�'�\f��\u0014��AR�\f���\u0000G\u001f��[�hi��C��#\u001e����*$��\u001d$\u0012�py\r��'�\u000e��\u0010\u0011�~@��d*\u0007v˒-�1\u001aZP�\u001ct�qR�eۥA\u0011ev�~�(9�F\u0018�:��S��\u0001Ǫ��R���\u0013\u0016��'����4��\u0017�-\u0015��B\u0015��\u0004�(����8��\u000e?��i����H\b�0\u0001�n�#�q1<�=�]��O�H��\u001c6\u0010;g+��;�\u001d�h�w\n�6����ᾆ\u0002�M�����o���St\u0013�)B��\u0015N���4/���o\u0005lD�N��7\u000bq%�\u001cb�\u0010��bYѩLu\u001e\u0000�b�`+]��o\u001c6.�\\�u��ߙ�F\u00158��\u0017�����^�d��KA�ϊ��9�EN7\u0015�m\u0017�M_\u0013N���y#\">!�l��\u0018�=n�\u0002\u001d�\u0007�8��4kYb�AW�\f���1\u0011B}�\u001e�u_�6\u0002��{�X_\u0011��gX�l\u0014��V��\u0004�\u0003�r����v�_��\u0017�H��\u000f�L���P,�&d�����m���\u000bGw<��A�\u0011��\u0014{�o�����Q�*O74�@�FY�]�XBMyG����\u0005_�k�T�͍��\u000e�zS���CԌ\u0007��(�j0,;��\u0012D�%�E��m�e6�%ȶU�q0�\u0018�r\u0007��8�\"|���f�F_��Քو��|m[��]A��k��w&� \\�^vG~o���NG�C�ِ��\u000e�\u0006k�{c��\u001f,h�B]�ߘ��\u0000.��ڐ\u0005�G�\n+�u�$Ԃ�5�p�}bP�4\\�A^�\f���.\u0007���\u001e\u0001ެ:��i,�\f��\u001b\u0000H��1\\ �Ũ�Sɀ1)�����Nf�\u0011[|�3�-ks@u5Zp�AR\u0002��\u0013M�˃�ǝ�O\u0010\\�\u0006�\u0000\u000eG��K�~�$�\u0002I��{)\u0019����.���J����H��v=�/���\u001b�\u0014&Y�E\u0015H�w�\\�%�\b�n4R\u001f7�*\rC�%���֨S_���\u000e\u0001a��?��\"��G�r��\u001a���\u000bk�9��,����\f�~�'�4�?�����\"��\rI_Y�j�F�hi�1�L��z��0\u001b\u0000Lؑ�kd*�\u001a��\r�vGkj��s�?��������_\u000e�\u0015G�l%��9�yB�=Û¬Uź�h���ŝa��E�y�U�\u0003Y[52уSvb�'7�=0:OĨ\u000e�;\u000206��\u001b\u001c�\u0017���IvcأAE�\fЀ�]�KCq�\u0003�G3\u0000hD �C}�\fB�JĽ�5洏(�d}��\b�H�\u000e\u0005��I�T\u0000�\r�W���ѷg1�mp{�=d$\u0004�����x%�Bo26�H\u0010�D:�\u0019,[���mu�w*��\\_�\u0000|6���=\u0007.�)X\b���9t�8m�\u0014�Q�\u000f\u000bS\u0018��\u0001t\u0014�3��,�o�\u0014�e\"�\u0012����,��b�%�&���H����\u0014z͸�X����>P�kb\u000e_�x�6G{��.=�3�0t\u0018F����\u001eĨM�6�cZ�.Q+yp\n\u001a/�\u000e�.��]\u0004��F��Q�\u0002zԆ\u0019j�5��y��i\bC��\u001c�\n�;�7H�-<2 \r�^�uN)�YM�]k\u0016T�u�\u001d\u0006�g\\�\u0015���\u0018��]\tG���~\t���8�AI�\f��]�K��1�4\n@�K��,���j�\u001e�1�\u0017�v �*\t�\u000e\u0006~T���wr�J\u001d�x��U҉�>\u0017O�\r�`��\"J\u001c�N'l�=�U�6��\u001c��0�+X\u0014��''�Ec�e\u0013Gr�\u0016��'kǤ���Q}K�5I6��o�Q�����B�29z�.}�\u0014J@\u001c�����k�`�.�u�\u001d=.�f\u0007_Q(c)M\u001b�P\u0018?���\u0007C:���A\u0017���{�G�b�2܌�O\t����\"%3�\u0017��r�\u001e�bF6s˟�4n��?U(+hSs+�\n�w��fʿ�wf�6��`Pk��2��n�\\o�yeA=\u000b\r�\u0013l=�6\t�šEN0�����>w�Whu�$\u001c��\t�\u000f�6i\u00143���\u0019�\u0010\u0005�\n虶B�\u0001�A+�\f���X�JM\u0018r\u001d�\u0003\u0016$�.қ��x)�\u001d�\u0019U�\fa�\u0003�?a?\u001e���!�܁g߯�R�A\u0017͹#V\f/���NyV�ѻzY{Y-��.�!T�S��\u0019\u0003�%�\r�e�=\u0004��\u0013���#�\u001c��\u000f�bÚ�V���d�x�l@=�\u000f\u0002I��F\u0004��S�$�2\\�^,�\u0007(���\u000b�0���N�\u0006��@�\u0000OT[�yb�\u0018+��d��u�y,]`}w˙\u0007����\u0001���\u0017�M���*Y�Q��>�D�sFA���/u�@\tzo��S��\u001aV\n\u0016�H�`@�'�%�C�S\u0004w�R+��\u000f5�i�1�J�m�ݻ<�\u001aL͝� 7(�B�ou'�dM�V�\u0013��|�*�A\u001a�\r\f���b�\u001a���8�^�\\�A�\u0007p��\u001am�������Y�Ba���!|džQ�󗐮!?}�X�>U!.\u001f�+&�7\u001a�ݚ\u0012�ӳ\"g����r�u��\u000b�#鱴\u0017˴�7�Aܝ�2�T\u001aT\u0016r�5���\u0017I�\u001b��l�\u001c\u0017�\u0011��.n�h.��l\u0016�\u0015��\t�Q�\u0010��|�\\�3{��\u0018\u000el_l>��)A���_\b���m�$b�\u001d��\u0017K3��Z?Wnӫ�9A+�^O\u001f����y��=��\")�b�\fM���@}���&)���\\l\u0005i�_+�v-���a\\�V6��7�x��\t\u0014�>�X��(�5�j�]2ݙ%\b\u0016��A\"�\r ��M����k�\u0012�f�j`��Z�\r�?MQ\u0016\u0013Œ˜\u0018�b���b� �@�6���`�\u0000\u0001D�(��\u0010�H���fo3��\u0016��:�q�NkP�\u0014�\u000b\u0006՘�*�6\u0016�\u0019���+Bj\u0003�kCޙ�\b����\u001f����-�\u0006`2sQ������Ud$�:\\!�\u0007�\u0018�}���,4x�V�B�=1��D\u000b\u001c�crVn�8�\u0002���0������(|��\u0000�`Rd\u0017�\u0004`f%UU�\u0019ʑe\u0018;��W���.����\u0012�\u000fL�p�\u0006g\\�\\������G�/\u0013\u0007����\f��>�\t�xUƊk�-�Z�C?\u0001_��v�\u0007B*zE��\u0019\u0012v]����{Ih�ݣA6�\r4���f�Z\u0007+ri�\u001f�'�ˣ�$�^#\u0016z��|a�=���;`\u0000�\nIc�2������\u0003[e)nj�=�g\u001a�/��i\u0002�I�5^�D��l�\u0004a��~k�N�|0;�]��1�cs\u0011�B/����?ӽ�(={�H�\b\u0003f�(S�7�m�&�I���<�f ��O�B�h\u0015�Sw\\C,8UQG��C\u0005�+Pg��\u0004�Њ��۩�Wl�� \u0013�s���vB��\u000e\u000e\u00158\u001f�j�=Hw�����hX�\u0010�$YŎ�u�\u0007�Td�dI6��``}\u0007�b�,q\f\u0000Pᵏ�1��+�c>�i�s�Xy>�\u000b�\u000e�S\u000f\u0002\u001e#�\u0014\u001e69b��\u0010��2��\u0016Ɖ��sv�캚\u000f&p'`E�Ɂ���\t�\u001a�k��\u0017֝�`O�+\u0017#\u0014\u0014y���\u0016����a\u001b2\u0010\u0006\u001f?\u0004�4\u0013\u001c\u00191����/@ѓ���\u0003�Z��\f%E\u001b�A?�\r\\���d����iy��\t\\^��D�ιT�\u000b\u0005{\"\u0019��\u001b<_�\u001b����\u0014�\u0013m\u0016�+$�\u001f�IxQ]�_}H\b\n��$A\u0002\u0011Tҍ�l?��B�)&/V���u�E\u0003E�\u0003���\u001c\u000b�&�}���J�t�\u0016<�ޟ3,�`����O:O\u000b��W�\u0007��%1=9h�0\u000bٽ�����ץ�\t���o@��T\\�\u0015��씺\u0019����}�۝���\u0010�i\r���\u0011�3�1\f@�T����58\u001b��\b��%�^L��s\u0019\b V\u0003�9ޛ��c�zs�_��\ff$|U=~��v�FFa�\"�f\u0005�7N>&Ĝإc��\u001e����\u000f6Ó-B��/S�W�n����g�ND�=�zf*�ŠoBE��s\f8n\bN�\u0000��\u0017�F���q\n3���W۴�'��&�X����\u0007�'Y\\�Z�9wD\u0019\u001dC?��\u0013�A[�\r����bИTV]%\rU�p�5�+\u0000�ϭ\u001305��A��\u0010��\f��:�\u001a�\u0001hE\u0004C�\u001a��v\"OG:p^7�\f���\\G��&o��\u0012������>��5�h{�x�\u000br�TI�Ј#�:�\"x�y����ɘl�U)l����܌��$��\u0004D���\u001eY�\"��\"P�1\rP\u0007k\u001e����E\\���t���1�.���\u000bj���\n��\b����bmDx]��p�p D&F�\u0007D�\u001d��ћ��r�\nW\u001d> �A��\u001c\t\u0019`�w�^���\u0007.+��عq��\u0016\u0003`�:8h��w�K�CC)�z�Q��(\u001d\u000et�Kg��\b����;[~�\u000f��U�=�\u000f�$i��=\u0018�\u0016\u0011�����uK%��\u001a��\b4\u0006Z\u0006�\u001a:55:J�NG�OVI\u001c%���\u000b6�h꟔�HRN\u0013�AZ�\r����mSw��­�0���[\t�\u000f\u0004l���lYs(�?�K��8\u0017�eN\u0002����\u0001\u0010=�5�1�N�Fw��\u0019�\\\u001bm'�9&{�K&K\u0006E\nD�(�g�X\\�qP�o?3\u0004\u001b�7y��\u0005q\u0005�T/e7b��\u000e�ߵT����B�\u000f����u�=��\t�#�!�\nߊ庲\r��h�K\r\u0003Vf�\u0012q\u0018�\u0007-Tb��\u0004����\u0002nh��\u00041n�DDd3�nJ\u0016�:�(\u0018q��dA�׎m�y&La��*\u0007�@jsCxjzK�\\��d�\u001f��^�~�4]�0\u001e�x(�h)�\n���d�\u0015\u0019�p�:�\u0001�/�{�<\u0016r��\u0019\u0007�\u0011�>\u0012�E�\u0004���\u000b��9I�:�I2ͤ\"=\n�N��4�\u0018�\u001eO��,˂H�|\u000e���mZ�\u000e\u000bOV�6Y�x�A�x�$k�\u0012�Ac�\r����b_���p���{\u0005!�\n�'X὜�_I�Y��!�3�C\u0019��<�ޓ}*\u0007\u0019��!�x�x�W�岣>��)�J�Þ��b%,����:ąuW�Ep)g@0 ھ�\t\u0006�\u0000\u0004�4�r\u0006��e\u0018�N�o!�E�\n�+�ֶ\u0000��m\"�xD��!L6�&�z� �g\u0011��\t:2���@9�V �Z\u0013]���\u000b���Qq�\r�E:�zZy�O�3�!>��\u0004*�>JL����N��37�|;ߥ)���q$�ϗ#d\u0003�$��P\bҸ�\u000e\f���\u0017�dJl���\u0004A��oHf�Z���\u0006ȿ�\u000f�\u000f�\u0017�HQx�IrǪ�A�E�m\u0003��^~,V�z��ݣ�@T04���g1��H\u0018ke��\u0011L��\u0005��ː�~��\u001f=@���R#N3�1w���� ��]&\u0011�A�\rԀ��qM�\rA4�\u001c�īuM\u0012x�F;\u0014��At��XD��n�g�v�^{t҇ud�\u0007�o沬�Z\u0001\"�^0�y�A���Z+�[Ӆ�����d㠵\u0015���\u001cġ@��y~B\u0019��昽5\u0013�M�-\u0017LP`�\u001f�!�\u001dZ�ܞ\b��\u0019\u0005��h\u001e��.��\u0006���m���W��\u0014\u0013�\u0002�Պ�\r��#���Z�h걯��Q/������cx�t�\u000f}ʳ˒�\u001f\u0000�X�2�L\t��鳿׺�s\u001e�\u001b\u001d�H�\r���aQ��\u0017\u0011/\u000b�'H��\u0017RH\u0010�@�Y\"\u001d\u0018\u0015$\u0013'9�X�>�%,���INX\u0001\u0017U`jL\u001eu;\u0006\u001a%5\u0018i��+�?�ҾW?ku\u0014#|)\"e�Z��\u001f- \u0010ż��;���t�\u0012�n\u0003\u0000�\"ux�.fa�:uK=�>i\u0004��\u001f\u000e;��\r��U��̵+�P�ؽT�A�FѵD\u0010�k2V�w�t�q��n/�7��V\u0006��\u000b��\u0007\u0016Hŷ7Xi�!\u0014\u0012U\u0019\u0004��\u0017�����\tX�N�&�r`\u0001D\u001f�)��1t��\u001aX̸��<��~M��..g��3:\u001d(��lo��!M�\u0012��ҋ\b��\nvD��A>�\r��M)����J��`�y~�&�{\t��\u0002�O�\u0019n��)=3H\\ϯ��\u000b3=�;�\t�(C}�\u0007z��ܡM��;�ٌ�\u0011�C��H�;�\u001ba-�n��+c�\u001a>B�Y��5\u0007�=âպ}����B'\r�7n<\u0019�D�J��Ɔ<����F�Q]k��Q�ݢH+��on�*y\u0010��\t\u0004sv�\u000f\u0015�v�e�Cfg\u0019\u0003�2O{�6=\u0006��c��M�x���(A�\u0019\u0001��'�G\b\u0000���>�Mm\u001c��\u0016����\u000bp�m6�P˚�\\��&�X�\f�O\u0016aD���\tVlVy��\u0000pA�`�(3M�9К7���\u001f�3ٻ��Gs�ȇ�7ڄa\u001b\u0013OG�\u000f�DǬE��������*M\u0000�A?�\r���M\u0014��\u0012u%\u0002�������%���p��p*%�m6������`V�\f�\u0012�����T����3���\u00119\u0019�!*\u0016\u0018���\u000eߘ����a����^��|(y��Qf)�m�H�z�a�RT�\u001fD�1F6���\u0003�1$Yf���\u000b��\u0005�G?�A\"�\u001d�}|:���\u0000�\u0001#��)�_\u0012\u0000�y\rͨ�Y�*k�o9���\u0014��\u000b6���^p���ll\u0016T�\u0005��ŝ��c\u000e8p*��뀢�e�\u001e\r\"��ΗT�����(��\u0014U�������\u000f;��\u0003i�4�Y��?_�}aj�3����QY$���\u0013��t�Kc$Aۤ�f��x~��5\"�@Kc����>'�I[���o{�Y�\u0013��1�m�A5�\u000e\u0010���b�Y�T���ɻ�*b8��D\n\u001d�\u0000�\r\u0007\u001e\"\u0018�!�ɳM���\u0013%\u0017ƫY�Ў۫z;���gC�B%x\u0016\u001b�\t���O�\u000b����h8�yx���0��`I��_m�Q��B����F%Rm��\u0007;��QMI\u0015l\u0001j�D\\g�\u001aI�\b\u0018�\u001a�QY���f���\u0012��T��e\u0012�e��1}�)_\u0011�C���3@�s�*�“�\u0018x�\u0017\u001f��:t���\n8�i*\u001d\u001b�l$��n��\u0001f�����\u0007T��3�e\u0019�z\u001b�Jekᦱ���(\u0010���q_��'m<ۼՑ\u0017����K~���)\u001b\f�\u0012K���M�F�V�9n>x�����\u0014BiɥC�ە�\\V�6�\u001e*�7�J�\u0019�A1�\u000e$��M2m�xQɝ�k\f9�/-�]�\u0012GL�W�؍�\u0011�\u0000`h�97��|�s���\u0002ȟF�&\bG.\u0011\u0000�\u0015ܮ�]�\u0017�s�񜑖Iiw�\u0003�]\t\u0013-pU�)Пw\u0012vy�}��-^� �\u0011�T&R\u0002AC�A��u3\u0015c'�\tfb\u0017Ϭ�PeP�ҴF0j\u001b4�#�@��\u000b�Za�Iqo.�ܱ�B�W�RKi�G��i�G�\b+�zw\u0000�o�8_��53�e\\�1k6\u001dz�p�ӹ/6h\u001c?Ot�rCx!F�MX\u0019*\u0015�\f\u0010-\u001e\u0012W�\u0004\"��s����?\u0015\u0011�e!�\u000e�h� �\u0000�7�TB�@%��}\u000f���O\\�\u000fw���5�5��r�3+�&K�\u0017�Z.K���'��A,�\u000e8��۷$��%\u0004'^��0\ne\b�6�M?�`���H\u001d*��\u0005�p��\u0012n�8�1�����*\t�B�2T?n��\u001a�Y9�O\u0015,x�\u0016S\u0013��5��\u001f�`@��\u0006�&o�H��ߥǢ�^k��L�K��wp|��\u00105��?c�Վ$�e~:��dLV��f,����BY�\u0006:ʱ\bp��\u0000\r\t6���g�\u0016\r�\b��d��y����3�2��a�\f\u0007\"Yj�S��\u0016�֎uR���U�\f�ԇFp��ي��1�]<{�ˆ�\u001bסE��~�!�]�θ\u001dtX��[�\u001f�ح�(,`k_�f��&�l�i\u0019[\u001fL[=�V\u001a�l�\u001bT@x^�\u0017��<\n���jD@8\u0012���`���'���A�L�Q\u0000��_^��1�e1�\\�P�C�@�G.=9���T�\u0012\t-��\u0005\f�\u0018Q���-3M�ћ�0.7��\r9ӊ\u0007��>e�\u000b�2�\u000e�#\ne�ݍ(M���6��2u�\u0001j�\u001c;Os2S!�;Y�t?�M޽�ܴyŊ�f�c-�_�b�:e�\u0016��]�D\u0019�'����tK\u0002��\u0013��\u001a56�R�J�k�\u0014���x�(B^b�����I�U\u0016����9�\\�\bu��>\n��F\u0012�f��Z�Ys2�\u0010�5\u001d���|�G�A1�\u000et��۸��t�\u001f Pa�\u000bQ\nqH$ٹq��^�\u0012E\u0017$�ޗ��\u0003=;��X�I�c�ƒ��^�`�n��{}�7cʯ\u0011\u0016\u0000c\"�pa5�Q\u001c.��\u0015��\u0017�ơ~g�7`��PYn��*�.�]*��#�\u001a- �1�/�Ӄ„0�\f���Ox��\u0002{�@�s*,{�˚�X�!�\u001d�v��PJ���\u0002\\���a\u0010�ra8���Q\u0017s�Ԑ��`<��k�\\�ٹ�O�C��Z�o:\u0014�\f\n�\u000e�l\u001b@�7.w��M&�ņo5�z�~\t\u0004e�l�Y�J����+KkG�A6�\u000e���L����-b�\b\u0017�!i��iS=!Q�z\u0003�C[�\u0011�Á/Ȏ'�}b���5k7�0Ϣ�\u0005�\u0016\u00015!\u0004�\u0005�Bͅ�7/��g�89&~��\u0019��/El{\u0017�5$;�,��\u001b�\u001f�|onm\u001a��\u0007L��d'MP���e��|\u0004�\u000e�'�`��\u0002h\u0000�!X\u001c>w�a�R^�yM@#�\u001e���\b\u0016�Z��xim`p�\u0015��0{�\u001f�a�g�j����s��\u000e\u0006a�sS�\"��t�Mv:pJG����Ub\u0019�\u0015\u0018`�?���\u0004Lg>�G\u0017\u001ew���m*�F��^���.�J8Č\u0002�\u0012�\u0012īJq\u0019�\r^��u�\u001ap%-�6ay5\u0002\u0013���d)4[�U���_\nxٻp�i\u0010`�xb�0\bm�A1�\u000e���L�'�:�FY�&p�\u0012��8K�갞��\u0019���:M\u0015ҕ˞x\b@�s��O\u0015��f��;���\u0010��Dedo\u0016�]S\u0015Y/���Hl/�<�)9\bl��\u0001�_��W�c\u000e�^\t S\u0012��\u001c��\u0011\u0018��2��<�i�s\u0010���D\u0003�h�\u000f�M��׿��͘]_b�\u0004^��+$�|��\fD?v���t�(�u\t�!h�Q�C�ێf.�ӟ��i-��F��ܴsdȱ΋=�GN�&�o+b��M(�����\u0015d���\u000e�qg�3E��K{�LN�Ѕǖs��f��aj�\u001e��:M�櫕�\t��Ą{~�\u000b�\u0010��MϪa�f7�U&��\u001dd\u0007�\u0013\u0011�%M,�\u001c�AI�\u000e���.�\u001a��vʎ�!F����Qk|�qc\u001a{�\u0017��0�u/T��Ӳ4'->&nr�*�C��l �\u0005���25�\\��Z��\u0003��\u0002h}�i�<\f\u0002���)���޵2�tѺ�^\u0014�\u001c\u0013Ʋ��C��p����y�9�]\u0003��E\u0002���\u0003\u000e����|�\u00102��n��bJPz\u0002(*\u0005����M��Q�\u0016|*�Z��a�}:]�\u0011�It�8�S���mw��d#g�\u0011\fG��L\\\u001c�͋~lt-U��8]^\u0017\rR\u0010ߜ���.���7������\u0014b�1�?�u/���-w�4Wj���5sU�\rmi+{�$�V\u000e(�\u001c����ڟ\u0003�\u000f\u0002�X�6�o��OTzΣw�ٓ�y�\u0011\u0005�\u0019�ة\u0013�W�\u0006\u0004��6���A4�\u000eĀ�X���7\t'--@>�3-��z�\u0004�\nd����]\u000b(fl#�8U�\u0018�ߍ�sz\u0014U愈l�f�`UI�\u0007' 0�38�\u00104�\n��c\u00010�7�\tn��՝�0m\u001e���.�yt����`(oWȒ�~��9�7I��,��g�\u001fqӃ�\f�:j�6��W�l�iS;����X\u0006\u00176�4x��*�n���H5(�P�pȏG�H���6x���\u0004�;R��H\u0018���?,@F�}�~�*�5mx�gp�\rAz\u000f�Ӏ~&���\u000b�2�x�\t���Ԭ!rd�]!���M�]{��յ5@�4��z5H;=��\u0005\u0001G?�lW�ȵ��\u0018�G��\u0019,a��[&4��cn�P���\t�A��\u000e؀�}b�V�]�k$�\u0007Ė�A�3Rї\f�\u0000>�\u0016�U;-�?B\u000e<��C֖ٵx-�\u000f�k�K�\u001b\u001b������C����>=\u0000X_�@m����(D6!�\u0014�tɻ8\u0018�\u0012e�Sm��g�\u00000}I\u0012߂�qO�\u0003�_+ҷ\u0014�jUB\u0007\u0013���vU�\u0011�~��H�썁kJE�(\nS��į\u001d7A�A\u0018��V�Q&?MD�It��l�\u0002\u0015\u001c�]�%|\t��')g���P˧��W�\u001d��D���5�h��^�\b�b.�)%��׹\u0010'd�Bؚr\b�\u001cw�\u001fC�ހ\r��V+�\"\bw�d�7���K��A�N3�7��Ȧ\u0006/���M�3\u0001\u0019�\u0013I�\u0004I2.Dvm(�\\��m\u001c�ޢv�\u001c�t�g�I�J�(�J�\trЛ`�#\u001f���ϱ�Ƌ��S~�?��tkL��\r�'�mӉ�%�q����aWv\f���I�\u001d3�7\f����j�@��\u000e��M27i�=�T2�89�Q���\u0018�?X(�\u0004x�\u000fYڴ�����'\u0007�Ok|^��>�l��D�\u0010j\u0017|X�\u0013�pz�\u0010:�����%�����+=;}�rV\u0007`^�R�v�B�U)f�qI\u0014�\u001b�\f|{�a_G\u0013�e\u001e�\u0015\bgl��\f�=�N�[Z��V�ŦЏ\u001f(��\u001e�����>h\u001e\u0018Y�\u0014�i����1�9���\u001eu���\u0005S)��CU�r�\u0002�v\nN!�X\"�w�n��?�V�:�}�\tH_��\u0005=Ïa�9\u001a�Ğ�\u0003\u0016�-�\u0018[\bR{�b�ߜ>&\u001a�-��N>�#z�)�4_�[S5q!�30ۧ�9�\u0018��\u0000�kl�ݭ��\u001bN�\u0003p���P�A(�\u000f\u0014��L�3�6�\t`\u0006Z�U$��޲T��%!��{ �5�۫m�\u0013\\n&R3�{�j��ޮ\u0019b*bA���\u000fv�&yQ �����5\"0\u0011,Y��F��GMB<>}B�\u001eoȝ;B\u0002���y�q,i�^B@I�ό�Q(_���F�`K���\u0003�I�_�Oi\u0016��uo{����Q\"'��[�\u001e:�\u0002A\u0006\u0007�)L�S`g{�\u001aT{�%8W���\t\u001a:��Rc\re\u000b\u0017O��{���\u001a���o���\u0010e��\u0011��\u0014aē4���򜷫�q�\\rx�&�R8�]v4��pن\u0012�\u000b��\u0014��r+.�\f�f\r�h���\b�dl&�0��|\b���\u001d���\u0004�.�O��A,�\u000f(��L�\u0016�\u000f.�Q�<�D|nc�}۹�\u001c7��eF�E�O�x4����ط�7ڗ��\u0012\f��\u001e\u0011��]p��V��=�i����'�:���;�S\u001f,u�@P��gbW8]g�R�`{[Z�t��El�N\u00157c/;�����K���9�g����)�97�CAs�o��h�.��I0�<=�a��{�z��5���;��W�\r�e�B,��i�v&�\u0017�t܅T���[h��&|کU����@���\u000e\u00030Ne��O���7\u0005�\u001e\u001e\u0010�XP�+%�!*d���|�v�C����V\u0013\u0010���Tq\u000b?���,����\u0001�n���-�I*�?Yp����$���\u0017\\wm�A8�\u000f<��L����\u001c#(O��\u0001\u001eB;:d�)z�ˀ.��oE�Lj\u0011\u0017�l\u0016�c������b�\u001e!+�$k�\u0015o��h\b��>���I����|�8m�#�\u0018�\u001e�e\\j�Q��7�\u0013��\u0004�n�3���\u0014���_E���\u000b\u0015\u000b�^��8�R(\r���A��q[��\n^\r���t�\u0005�o��\u000b&a�\u0015�\\d�%0�\u00043\\�/\u0016�_\u001d3%\u0006}pb\"4F&͊^q�E[���u�\u0011zW4LvV�\rةd\f��\t��iNg��Bl\u0003����]�^3����P�iu�{��С�sY�7���\u001aZ\" I��~r��E\n��~Q*�|4����*7\t)]���\u00143䧎|���\"[F;>pp�؊��f���A:�\u000fP���\u0017ìm��\u0013�y\u0001By9�,\u001a���Ga�:'d\u000e�Q�\t��Z\r!\u000ec�D�\u0005\u0004�#�\u0018� /�!\u0015��d�n��\\\u001b�>?c��H��d߾:FZq'�l�}G�rb���\u0006��\u0018p�qL\u000e_��<�f�\u000b�,rl�׫ތK\n�O�b����M�d�\u0005����2��\tT���V%~%\u0000����\u0003\b�f���}�2k]p�9ª�\r\u0018��DM��\u001f�\t/N)��\u0006�(�N�Bᶮ'�.\u000f�Gv�6\f���s���\u0003\u0005\u0003<�@�y���\u0010�w9�-��ѫ3�\u0018�]\u001ciT\bڍD\u001dk�8z��\u0000;���(@O�J��f��U�\u001a~K��\u0016��\u001d���W�\u001c����\u0014��U�H��A�A3�\u000fd��L�\b!\\ԥ�4tP���P\f\u0003(n�\u0004T\u0010p\u0018���x)t\u0000Bt��;&o.��[.\u0013}c\n�t:T�ڨ��^v�\\\u0006<��9�\u001a���r�\u0006�\u0011y�̅\u001e?\u0014e�.�\u001d�\u000e1)�S���*\u001bT���N:�?�����q�AZSZmAQ�\u0007Rs\u0007:j90p�\n��@�/�\u0003�,�\u001f\"3�y5�tn�Ƙ�\u0015�>�M�y�����9\u0007�����96��c`�_�F�=��Q���(6��.�l͐o_^:l�\u0003��iNK��\u000b��\u000b��d3�?g�����4�\u0007o:o\u000et\u0005�d�\u0016�l ��A\u000f��+�<`�i3��P��u��#\u0010j�(��\u0014�ZYH\u00109T�n9\u001c��]�\u0003ȟLM\u0001�A*�\u000fx��.O�˓� ӵ�8\u0010`��*Ǥ���0�m:\u0018�j8%�;�\u000e��m\u001e�\u00050��61���\u0014�>�qW���l�L�R\u0001_A��B:��!ƙ8٧�~�ï����\u000e����N��~P����\u0000ܸ\u0007k��j�Z�=Z���N�����K���i�'ͷ?�E���]d�\u0000d�1\u0003\n��\u001dꕏuZ,�\u0016�\u0016�\u001f[��\u001f��\u001cS����Q�fE��O��Qe\u001a`�S�\u0000\u001b���턹��![2�%r?��\u000b�%y>x�\u0015�噢�\n����\u0007A�\n�r\u0011b�0�9�l��Y\u001bۗer�[�?�B5F���%ĸ~\u0004�\u0014�L�\u001ci[O�Āu����<0\u0019\u0004ߨ{Yf�A9�\u000f����\u0019�^.��!\u001a��C�\r\u0012\u0007_\u000f\u0006��\u0018`\u001e���_��i����\u0001F\u001b��\u0012v\u0007C�\u00059y��kPUsd`��Dd�ס��B� m�9Ϥ�\u0014�[&�Vo}lS�*¹�87���FQ��l�ah�=\u0004�����$��$��t�墝�����VW2�C\u0000���gayu\"Q����6����?\u0000\u0007�d���s\u0004l(�>�K���\bdO���h�\fvְ\u0004�\f�z٭��7tcY\u0012bM\u000e�C`@!�@IYw��\u0015n\\\u0011���H\nZI�N\t\u0006ˆm4�-\u0004�\u0016�I�4�X\u0019���O��\u0012\f�\u0006gAji]k��)�_��(\u0015�4���@,��%\\l��)<)�-种�]\u0010�;�g\u0014���\u0013r����A��\u000f���{=#�i�섺�\u0018w�t\u00028y��\t�?!�\u0016�\b�A|a���sۿ�h���t��۔\u0007C\u0005\u0016\u0011�rTW��f�%E���J?La\u0016�Ћ6,<�P\u0015\u0013�����I@��l\u0004�\u001d��ז��_6y���\nƒ�(�\u0005�N\u0003mU��F�iY|\u0018~�qwtՇ�08�R���\u0007��~�N|%�\u0007Q�\u0001�\u001bT\"9\u001fmp��|eO����\u0013�\\Dz�?���ª�n������H���W���*1��y����\u0000m%H0~\"(�N�J���VF�s\u001aG���B�\u0015�W�y,��̀k�������l�צ\u000f�\u0014�� st\ng���D��\"F�\u000e/خ-����7B�5͡�ߥ7pك�>+qEG\u0016��˼+�|\u0014���d҉����:�J\u0016�W\u0014(^t���е�$M�͵�\t\u0011RT\t%�0��I��32��\u0003���=Q�E�#�`R�\u000b\u000b5ySnO�i~4��*�����A\"�\u000f���Mb�8��:�rr2�\u001cF&�_[۠��\\�\u0012�\u0011\u001a&\u000b.�/����F���W�B��}1�ozz|��Ɵ�{@�{�@zlLT\u0018�\f����Iz�y�� �b�.�<#��0\u001a\u0003��|��&�2Gݺv�q��D�{\u0011\u0014��\u0000-H��\u001c�\f\u0005�?>o�\b����t_�N)a��������=3�\u0004�NƟ�T|u�\"�ܙ\u001c�q\f�OG\u0015\u000e>�\u0002��Gʈ�\u001d2�/�&�4<-N�4��xO\u0018��A�\u0013Lw�ݟ\u0002j�����u��w�\u0015�u�gZ}�\n�%\u0004$�p��<��\u001cY\u0017\b\\\t}\u001a~���\tھ\u0003A����E\u0014n��\u0013=�����\u001c�A(�\u0010\u0004��M-{cɍ��蕲��m����2��\u0014����4\u0007�}W��1A��\u0005�jtG.���3��,s��ފ+\u0014�\tcM?ec\u0011��nl1V�\u0001�\u000f��kË ��c6[�)����μŅ��ߙΈ�o�`q\r\u001e�\u0013npt�\t\u0001ob�\u0000�����\u001b�IX�@p\u001dvSwc�(ѷ�BHװΤ\u0013\u0006��1䵑�\u00164�&<�~�WW\u0016���6o�W��\u0019C\u0002I_ƽ�+�\u001e��Y�\u0015�YȮ��2�Q��`��5�\u0019�ds\u0016�uқQ~w\u0006���\u0003G\u001b\u000fY1^{~\u001b�!�)�\u0001?4\u001bBU%\u0000�E?�v��1\u000b��7`T;�\r5�1v�\tR�vJ�\u0011�h��\u0016\u000b�e�A\u0019�\u0010\u0018��L�e�?��F{���\u001ar\u001b�\u0006\u001a�\u000e�\u000b���on�O+\u0012\u0000g�)�3nj�cM��Ì�S\u001b{��C�m\t�^��\u00029S��SF�e����z\u0017\n�(\u001f��x\u0004�ߏ��^�Ԫ\u0017\t�pF,&?k\t�p�r�\u001a�G��3e�ʿ`\u0006��f�\u000f�TˡE�4,���J\u0006�#�+g�L>\u0015��Բs\f��?E�Y<\u0012.�gX��(�5ݞ���''\u0018$�\u00000���NՍ��P#3QD\u0005�(���Bc\u0004��\u0018�*d��r���\u000e�v:��q\u000b��F��$oO�o+y`�����=�=�\u0000\u000b{ƍps#钑�,:��_;�]\u0018L�K|�d����ڞ��+�\rV�`w>�-��𔈁S�f�f�Όz��y.��\"\u0006���\u0019Q7�$!�AM�\u0010@��M'��$ �ߚ��\u001aFp4_hk�\u001a�yD���G7�\u0015uՌХ�\u0017\u0003g \u0003-~���|@ך(�`�g�yW�\u001c���cy���\u001ecq\u001cO\"zy�'elq�KG�{\u0001�`�ڍT\u0007�p\u0017��\u000f���/��@˻�x��>��r�ě��\n٨4\u001dq\u0002Z-�{���!��QIP:\u000b�͜@�v�N���&\u000b�\u0016hC)\u0014�I��\fi�}��a8�u~y�\u001d0a>s&R�M�R����\u0015���\u000fd\\7����(B\u0003�g�O$�|)8{\u0001�sy*zVIZ��d�� xGM���IF+]�D#4������Ic��\u001d�\u001f�\"2\u001e.gX|�\u0012�MH�\u0003\u0013�l�o����$�)j_��\u001c��\u0001�x�fh\r\bi�E�6F��i\u001a�����e�Aj�\u0010T��۸�!dKy�8�WX��N�\"\u0007����\u001e�\u001e�UK%҉�\u001b�v�p����[WE\u0011�=A�d��\\�\u0007�M�u�_�\u0005{P�\u001b�(\u001a<��!��9�\\\u0013]�}\u000eC�B\u0004���JXX�:��\u000b���\fhS�����>�\u0017ꔃ��+�(\u0003\u001c�u�Zh����__ad����\n�\u0014��P\"�^���Z&�\r�.5��C\n�\u0010�n�ȷ\u001b�\u00183\u001c�|ϻ�c�G���I�IBg|?6&�yڔ\u0016\u0004x8�P�os\t�\u001dZ�\u001f�\u0014�.Y��g��\r��KkX�N'\u0014p�?\r\u0012 @Ջr?�\"�Zi��Åq��)��\b���v\u0014\u0011��\u0019�c���(�(\u001fn�\u001fA���\u0013���#�~��a�\u0017�\r�ѫ禷B8\u0004 ت�����`\b\u0000���4\u0014�\u0006q6w\n�Z��)l3-R3eH���\u0019\u0001\u001a �A��\u0010h��Lړc������/�\u000f\bn�+�b�y�%P+�l}��I\"�'����v|��\u001d0�H�;#\n��=v�i���\u0013�xZ�(����D�Z�\u001b��S�JްrX�`\u0000�)�����4�\u0005�\u0007\u0004w\u0016\u0003�\u0018���᧞~W��^\u0006�h�U-\u001d\u001d(-�@j�\u000f6�Gٺp\u0012�,�����/�\\\u000fE��Dq��<>�|\u0002�\u0017'�wY\u0006�[5\u0001�d��/Zl������}�\u001c�; \u0003~\u0006^7�AĦxM��i3^\f�61\u0001\u0002XR4T�X\u0011�R\u001bDήE�G��\u001c�\u0019\u0018�Oy���~��y��\u0004H�+��r)�˸M4`�A\u0000�4�O���ob�;��\\�/�͕�RYG�\u001d՟�C>����=�3��\u001f�Ht�\u0007{\u001f>�\u001aY\t�k���\u001ehRv��]��KY��ϭ�\u0000�ˉ\u000f�K��cXbm�h�6:b�n�N\u001de}���(\b~B\u0010��Aw�\u0010|���s��zg\u0006�m��_4X{��2s�H�]@-��x�q}�Z�9\u0016�\u001f�*Q�;H��\t\u0014�c�L-[p�����U>\u0017�v�T��F�@�ck\u001f�\u0000���.��\fM|y�\u0012�ǻ�_+W �\u0015��T�S��`�\b\u0014���5�Ph��\u0018\u0007��jG��ݮZU�9�Ɛ�zG\b(�\b�\u0007�p�g6�ҡF,\u0001���\u001f���)\u0004\u000bK�\u0018�\u0003>t\u001b5�y\u0000�j��ǃ\u0011�:ے�%������=��x\u0010~�}ș3��\u001cw��3�����u�V�y?��f����\u000f�d�`\u001d9�~a\u0019�jb�\u0004ĵ�\u000bŵ��tӌ��>\u001f�]��\u0013Ƴ�)�2�L���ϡ��q���\u000e@AJ\u000f\u0013����+�j\bZ\u0010)�O���L��>����):����w\u0007�l��ր��]�5��N��젘���=�J�}�K�/�O~@����Au�\u0010����n�\u0000��,�\b\u0017%��:�\u0013�P[��Rr�#G�I�ᘸZ���C/!]�:u,�\n����?��\u0014�N���x�\t\t?��Mj1&p�\u0016�{>��\u001f��\r;)a���u��7���3������\u001c�0\u001d�ECF����arN���-�F���%e\u001c\u001dGN��\u0012���\u0001��#\u0012\u0010��Q�N\u0017�\u0006U���\u0002��~T\u001c0c����Igm2\u000bz��`\u0002��<���ɡ���\u0015o�ڥ��P�yO��\u001f8ح����(�~��\u000fw�7~\t��%�\u0005G�U\u0015�����=�\u0006�+F���\u0005��D\u0012\u000e �9��][�\u000f\u0017�\t���Ց�,�\u0000�\u000e�m\u000e\u0019P�l��p��a@ɓzr����^\u0016�\t�@α!k�\u000f��n�1�\u0018ȕb�*��YAt��nL�>G��P\u0005�rAU���/�7_Yh>d�~E�\u0017�\u0002\u0001�%�}���Am�\u0010���M\u001c\u0003�+]bm'�G1\u0001fJ\u0004����a1�4� �L��\u0004G����bn�\u0004lKe���C�sZ��\b�($*\r-p=n\u0014���D\"�������r{�!aC�콌��������ʖ6\b¿�#��ډ��{�;��'T\u0000t=Q�\u0013\u001d�a�&�Dn�\u001f�K�R��<)��w��3�\u001c��{�q�j�z\u001a�(1\u0001(')j\f�K`1\u0017큈l@�~oH�V#§���3ܢ1h`��\u0000���\nuX\t]�hW�~���>�\u001d0�\u000b��4t�\u0000�x���%!\t\u0013y\u0017��z�P\u000f[+R\u0000\u001a#r�(\u001aNw�R�\u0002�SjJ�x\u0001͋nma���¡�[B�A\u0007��\"\bR>���.b�F�����H�\u0013�fc�\u000e���Ʋ\u0004i��<M�\u001d�\u001c�3�\u0014��ܿ���/�m�w�O�w�\u0013\u0005\u0016\u0017KˋRu���Á\u0010����bl�9F��F�&g��\u001c#]�\u0000\n6\u001a\u0019-S\\9����e<5k\u0006>�\u001c.y�,o�j��0�A�\"R���<�q\tl\u0010�9�*)��M�����`�Bz\u000e�3A\u001a:��\u00012}1\u001f=�F`�OiZ��b\u000e`�$\u0000��h��N\nb�\u0012\u000f)#��tT!v>:A�%���z�N��`�V��R��\u0013ّ���x�I\b��L����v\u0013`�m�l$G��b��9͒p��һ�³�\r�P����T�l9\rB�X[\u000f%�_ׄ�\u0016#o�k�\u0016k��A���\u0011G�^]\"4;��R�$l���]\r\"\u0006^묱\u0002���rC�)��\u0005A�\u0002�\u0005]�~�dI�mku�W�K#\u0003�-U�i��=�\"f�2�p�\u001f\u0013:MN���F:�;��'�H�ӦG0=�y�l�<\\u�\t�^X=�|:]�\u0013�����(TO\u0001��q��A���Jn�\u0002��f�=E��$�\u001b� g���!TF�Rit|�LuO�U�YP&�?�:a�R�:��{\u001a�҇W�u�&�\u0015�:���\u0014Wi\u0011���\u0019\u000b�=s3;q\u001d�M+l,J\u0011���T�LA\u001d��G\u00113�\n!˴g5�F_&��z��M�\u001f\b\u0013BK��8��\u0011\u001aD\u0011\\�\u0015�\u000e\n�\u001c�;ߥ4�\u001e`a\u0001��n��g�Kd\u0000k\u0011D���k��\u0014J\u001b[��\u0005��\r��l����\u0019!�5*\\!��,��7fVV{{Y��.�E�\u0000�d���`��5�,�f���\tݫ�\u0019��kv*ؑja@�]\u0017I�\u0002�p\u0015A���c���w5&\u0010�Y\u0006�ZQ�A�hK�\u001e\u001d!�Lb�\u0001�Z��ݨ[õuB*ԣA3�\u0010���X�x\u000b�ڐ���eU���\u0000�.d$�>N�6��B\u0000F!�\u0006b��9�\u000f�\u001f2�'�m��FŁx��\u00025-�\"yE�6��\u0000##���v9\u0013W�t���̒,\\t�8��\u0012��\byW�1k\u001eJ�!�|��)Q\u0016Al\u000b�P`\u001e~���%�\\Ք_��\"p�3\fT�j��v\u001e�p�\n�\u0007эP~\rP�M���\f��c�~0�\\�(\u0004m�\u000bվ�R\u001d}�/\u0004\u001c�\\n�7w OL�k�A��x�}\u0019oyc\u0014\u0007�s����ŵ�Gy�3�\u000e�{w��[ܐ~�u�X֥۩�fP��;j��\u0000�n�-�\u0010\u0011���n�h���39F)���9�NJh$\u0005�\u0013��\u001a_\u0002\u0001�Q��6�A,�\u0010���k�^O\u001e\u0005\u000f���K'9�d�\u0015\u0015�\u001f:�_#���T^ײwY{\u000fh�jd\u0000M���i�'�<\u0006rP��TM�#�\u0003�B\u0016�i�\u001c�i�\u000b|R�/A\u0007�z<�\u0017���/��uǜ��\u0007ߓ�D)o�t���Қ�\u0011\u000e9�c)-7\u001b\u0005�$��8;f�`��5ջ\u001a�,!��7Գ�?{G:ʜ\u000bv�?\u001e\u001b�ޚ/\u0015��@�ā����\u0005n�\u0019(�\u001d��G\u000e���\u0013;\f�O��(\u0011�����c���p=o1v�\u0013�Ѝ��\"ơ}�:V��\u000e��g�\u0000���<���h��\u001cZ�c\u0013ߞ�\u0017�|˹��׷�'\u0004՘\u0016\u0010��j��\u0016p헇\u001eV��� �^���@�A'�\u0011\b���\fZ\u0012�\u0013��\u000f�dd��\u0003\u0003|���f!��kE%v�.�\b�̅\u001d�/�)�\u001a$\\��-�[�6��p�����\u0005>�\u0013lo�f�\u0001�T}���}I;{��*g\b\u0001�_Ya�9�n�\b\\M�Ʊ\t#�\u0015U���dw%�\u001a\u001e�*�\u0018x�\u00113T�u+%yԹ�\u0002YbU\u00110\u0017�Lf/�p�ݮ�������V\u0003C����'\u001c�q\u0005W����x`�\u000e�x\u0019��tR�Q�]\u0007g���:\u0013l���7h�&���-���� 񐬒eBƢ�'�L�\u0003P5�\u0016�T�\t�\"�Ig¥��\u001e0���W���\u0012�3\fʋ\u001c�\nB�5E�#W��\\L.���ci�{'�&%>�J�ޣA<�\u0011\u001c���d�Ζ�\u00104\u001ed򺮿T1h�B�\t�ou�@z�=x�5����%n\u0013dK:�*�\u001d�\u0006��k�,c?k�nN�T�ٚ\u0013pX�u�\u0017�Z��r\u0006>ɞ�\u000e*��C�\u001c�\u0013�lg\u001b�SF�}'���C��G#�^�ǴI,�3���q�\r���93�����$c�\u0007�F���j\u0015���і\u0005�\u001f�,�IMG^O|Р�\r���U���C�i�L�fIA��%�-Xw�4�\u00199���L�G�:\"^T\u001a\\�ң���#��m6\u001d�0���\u001bЦclូ�5T�^@\u001d�+2���\u0019p��'\u001c]g\u0002��!EbX�\tȰ�S�l�\"LG/Y�$�2\u00104��iu�6/2��ML��Q�+�6\u001e��\u0006Bט�&\u0014�A?�\u00110���cͨ��:��ߙ�)08Xn��\u0005\u0013�t|L��Q�\u0018��9��\u001d8\u0002r��@�N\u0005�dD��eE��$��3�K��gpӉ�޺�\u0015C� �w\u0016�H\u001bߢ�o����qF��NY\u0011�W��m�q�\u0015W�T\u0013�x��\u001f�׾z�\u001e�\u0001��}\u0014?n���\"@r����k8q�^\u001a�BG�'u�\r�«�='�$[:��#s\u0006\u0004�?�4�U�WCJ��\u000f�a���0�x�pL��\u0017��?g�D���\u0006��\u001a�m���#��\u0011��\r��\u0012\u0000\u001aq�p-\u0017g�T��?,�Y\u000bm\u0011mG/�����>����~4�ɶ��2���p�\"�N5�X\u0005ED�:Y\u001cR!��5i�m�\fgQ\u001c�'��x�\u0006��[A�\u0015�AJ�\u0011D���t\u0001��\u00036�B\u001e�.�>A\u0005�\u0006 ��n\u0007�^_U����0W\u0014m0\t��!ư\u001aӔ\u0010�G\u0007\u0015��p����k��[SWę���Y{Q�Ci5)�\n��y�f\r�)d�y�\u001a\u0001\u0000\u001e\u000e�^s���%\u0010��f2� �Sxc��zv\u0004��\u001f^�0\u0006�f\u0019�Kb\u0000@z��x�|Q�9AJÕm��70lyC\u000b�q\"a��2�����^E�֛�\u0006RYP�wR\u0002s5l*�uq�\u0019+;���픕�\r�^Q�\f0\t�O3�¥_*d��\u0013\u001b7��J{���)\u001b#�D�f�j���\u0012��h*\u001by�\u0004��^p�Z[���.\u001e��o�Q8U7q�\u0000�\u0011�\u000f\\45Q\u0004]�{\u0002_�p�-.�%Dž��(�.��G�E\u0007��G���V=\u000b\t�\u0015�A2�\u0011X���cͩ4A��!\\?W���$�M0(aF0`;^��A\u0016\u001f���W�b��+�.ۡ\u000f�?!�A\u0005�㽼�\u0004.�9�7\u000e����^\u0001��� `T���l����8��'�L_c11�؞�\u0014\u000bu�\u0006�F�\u0016\u0003��\u0015B�q#)�;�#\u0011!h\u0005�.0��0\f��ߠ�vׯ\u0010��n]կ7�\u001d���)�HVK)[��%�\u0014_\u0001Q\fO\u001fJ�\r۟/��ITa�1�XB\u0003m&.;����_&Vi�4(��\u0011�Q���\b��\\��Oy\u0003�!\u001afaXi�\u001f�ᤱ�O\t/]�\u0017��;Py{��i&閼�8�\t�!���ݸ\u0002e��\u0013�'�3�\b� \u0013��\u0001��?�B\u0019����\u001bA�\u0015�A>�\u0011l��Lɏr�\u0010\u001c�R����\nJw�\u001a�l:�l7��#!�������uzJK\u00197s��t�3�=�L��)/��������Q����6M樋v\u001d�\u00060��d��M��Sly�V(�hBƀ\u0016z�����bQ�\u001d��~K�0�m\u0014T�TAֻי�E�e'�SQX�Ki�>d���r]ϳ\u0002vӴ+;:sY{D�M5�F:��\u0004lͯ��_z W�\u0000�����Ъ�����0\"���|��\"*(c�`���U�DK�3C�L��f\u001d�\u0016��Ӯ7*\u0004\u0012�)&���I�޼��ء\u001b�l\u001b�\u0006>)�\u000fp�W1�+sٌY��G�A�4F]\u001c����\u0010.Eo�A������!\u00197��\u0005:�����\u0014�ۣA?�\u0011�����$hl�@�k���C\u0017�P��Y\b�\u0003\u0002\u0015j �%�t��0^��]|_T�gb����\u0005�\u0011^B\u0017\u0005�O�׃;\u0014G���1vOj����ގ��\u0012�\t\u0015\u0002���$8xo�0a�Mе�~\u0015so>HiU-���{�\u0013x��\u0010Л+-\u000f�:����,��Z�����P`�\u0012LM����\"A-�_��\u0006C��K�~�`�G�U:��\u001dB��aV��k����(Ty�r���\u0007g@�䃜�'Z@�I!9�@�E����1\u0007t�\u0014����l��\u0005�\r\u0013�\u001d�C^@\u0014Ɂ�|,�7���B�\u0017OB�ض���R:�F�u\b��|Md����\b�R+սk\u0005���\u001eW�v�o�\u000f�\u000eޒ��D�ǣA9�\u0011�����\u00073�?A�4�\u0007�c>m\u0018���k�p�z\u000e\u001c}�\u0004\u001dԥ�HRG!i\u000f췿���r��� e|g���ўɸ����_:�D��!��s�.�;��n\"�ɒ��Xš�;�\u0016��\u0011��}�>2�u�+�ߐQ-�щ\t�g�\u001dI�\u0014uB�\u000fZe�0I\rK'����4÷�y�6ţAH�\u0011�����[��E>���z\u000f��G�\r��\u00190ߥK�Xј�\u0004��c�\f�\t9}6�z�\u0014�'��\nQ5����q���\n\u000ek��\u0019SD-F\u0005\b%���@�\r��2�g��L�����\t\u0016'�\u001f`dz��2Q�h�\u0000\u0007ل\u0019 \u0003,d��׮\u0010@���\u0019r[��M̛�L#�\u0006\u0003R��t\u0004RI\u001ev\u001c��\u0018�@ �F�ҩ�:ÙuL�j�E\u0015�ʯ�G\u0001��}��y#����\u001e�\u001f\n\r8�i���U��:JHV��lu��\u0001��\\v�zr��}\u0003&����~�贪�\u0005�\u000e�s�q\u000eE\u0005�_Բ\u0003\u001d������V-�Vsj�\tV��\u0012˃H �\u0015>��Բ\u001c�WL�\u0015����f*�\u001e�8�wtn\u001d\u001b��S\u0016J72�Z���Y�S�8ţAT�\u0011�����.�\u000eӺ��3���K&�\u001cd�����2g!\u0005?p}k��M(\r�1�@U�\u0011��@u��e�\u000b\u001d(��m������K���\u0000\"vw��\n��e\u001e����$�\r\u0019�Ϋ�ވ�\u0018)a7\u0010\u0003���|N�������ߏ��_dx7�o��Q�,1Gv�ԉ���\u0015�f:��\u0017��[�G�14\u001fa��gX]�\u00045#�w\"f0�=�@1K�\n�^1*��;^]�?V�Dyw�{�&�\u001a�L\f�\b�tҶ닎⳶��TK�\u0016\u001c���S{�h5\u001b\u0011|�o�\f\u0001[�h�\n�/���j�\u0010L\u0003 \rI\rV\u0002�I\u0002�J�F�z8�-��\u0000vv��\u0013�'��Xom\u001c�����WX�٬\u0011�h�E���d\f\b�����\u0002g�Isu�{�{)�2�n���AM�\u0011Ѐ���W6{\u0005�������-n;��٦�\u0011:�:�)�����i)N��B���9X�\u0003���A����~��x�\u0015���f�m���:���\u0018\u0001�gPD(T'��\fj����+wS�ǯ�����K\u0001\u0007\f|���F�~\u0007P!����\u000fť�5�B�>\b��n#8��o-\u001b=8\u000f����k�\u0013b\u00178\u001d`z\fZv�\u0005:���ِ�\u000em\u000b��2b�ҏ+\u0016\u0017֢˞4��X��kć��\\L@�>q��@\u0017\u001c��\u001d��'F\n�gw�a�u/�+�\u0000���f�y\u0000OX`GBr��1x�m쵖��V��C�imO��L:F�\n\u000f�X>U�U�����~� �px4}�\u0001~�X@4\u000f��vJmwL;�ʊY*d�J�G�P�y�i����AG�\u0011����壥�9d�˚\u0012 �W�`y�#u��O0�(<<�YW2b��s�8\u0006;���J/��M��j>�\t�\f]���\u000b)�)�tB\"*oK\u001b!\u001b\u0016��f�6�\u0014�\u001b�Q�z]i�{�\u001e��[P\\+�\u0005#\u0007d6C�\u0006?\u0018HK�F��Az?-��Ϯ+8�Aԟ*4o@4�j��8�\u00104�Q��&K}\u0010\u000e�s�ƏC��nW\u0013��+\\�\f3�\u0011nO��\r��\t\u000b��5Q�}��k�\u0001k��w\u0000!��p��l^�*��/I���^\u0003{\u0012\nb۲c�\u001fw�`\u0002\u0004\\D-\u0019�]��\u000b�\u000b��\u001f�t�Ƞe�~\u0001�g\fH�!��I\\c}�HK��\u001d+{ 0a6(��u�E\u0000\t���\u001d\u0003��WK�:�K��{R��Q2�8�\u001a�\"dV\\T_e�F�2�˨\u0011��\r~\r�����z\u0014Õy_��>Q�J\r�\u001a��\t�٢|unSc��\u000bN�\b�n��k��c��ߘ�\u0012��ZpS�}'�0\f޼�w���V �\u001a�6\u001aϔY�\u0001\b��\u0011�:v\\�%�v�d$bq�����5�5��m�pSv�kɣ\u000b\u000e�Ic;���C����Ѳ�OR��hx�v��9�좎\u0002���b#�|�\u001e,VQ�!<\u0019�(ݕ�����m��:�sL��ձ%Y�e� ��\u0005� Ik=��\nM[\\2յ5�V��#��?H@�Q2�q�_a�\"A\u000b��\r���A\\�\u0012 ����eA��lR�\u0003U\u0004e��Y\u000bb�G`{�Y�D9 c�Q�7�\ra�\u0012%�2��\u0014\u0019��g�\u000f�(��a�i�]7z\"��[�=�\u0002+�'\u000b�k\u000e�8�\u000f悦<�i\t�!\u000boxQ����J��[���=���\tZE\"�l��\u0018|T����m\r:�Z����Ԅ����,1�Э���Lllzt\fr�{f�\u001e��\"�w�9~��ɻ~\u0000�M�qXں$�kI9X>>\rD�T\u000f�\u001cޕW�c*���/.lrj��2*5\u001ct��\u001e�\u001b�1�2�|��(Ƕ\u0016m\u0006��b��'�Qa\u0005\u001d~��OQAm%~=��'���\u0016�ġnj�b2W�<�\f�\u0011΄B��HU�%�NZ~a��*�n\u0017,��xn\u001b-\u0004�d%��㒾�\r[�B�>�\\`5\u0013t\n:�\u000e�W|��A�\u00124���\u0005\u0003�5e\u001b�\u0002L�s~�d\u001e�c\fTǎDKs�\u001f��_\u0004s>v������-�ȅT%d�e��~�o�6ء\u0004�q���ԣ8���\u0001E�K��\u0006\u0004��\u0017`a�K'*3\u0013��]uuv�R\"[��{�-2��� ��1yܴ\u000f6�ع�\rL�y\u00030ƅ�-T�5\u0011��R��yw�@�\u0003C�R�e���*}�\r\u0002ya[-`���\u0012/}1��B����흧���\u0002K�\t>\u0004��\u0011I��Ia���\r>Ւ�\u000fj�3���K�W��N��O\u001co������C\u0001:!\u0012\f�O\u001f\u001b{Z=ώH�1�l�\u0017�4�\u0017��@񛇤+\u0006�\u0002N\u0005\u0007�\u0018\u0007\u0000́6�T�+\u0012��\f'4~Tb\u0012y�\u0002\u0005a$���\u0010��\u0007R����\u0000��z&�D\u001e���pz\u001e��J��t��L\u0016N\u001b�o����D����4G�!!\u0012�TԄ8��B��=uiD.��쇒��\u001f�\u0019JA�,\u0016�t6�m��T��'\u0006�v���_}�������ek�\u001dʭ�V\u0013��\u0001��s��Ѩ�I���8�\u0001/\nI�\u0002\u000fE�\f�\u0011�#\rpP�>��\u0000L%\u00022�\u0003�&���\"�\u0003J�ئ�_8�\u0013\u00070\u0001\u0016�s�\u0012k|r\u0011�D@ԥ\u0004��4�\u000b\u000e�f\\w]N\u0011#�\b\u0011Z�\u0004}z�A{�ui��\u0013\u0000�=\u0007j��dI�c�We6�ңj*}�\f a(>5��/)ԏ��7,K��ı�\u000e�M\u0011�;\\a�'�Jq\u001b���r���uh�Z|��ҡ(@W�����=�/\u001a_\u0018�\u0015�G�w��F&�\u000f\u0010�=\u0001\u000bkP�a�S�5��,\u000b\u0007�'y����\u00172\u000b�Ah�\u0012p�����l�ݩ��K\r����\u0004j�G�I�\u001b}i�\u0019�u\u0012�Rz���RQ�\\���bT���z����'������gϻ\"�dn\u001e�-\u000b��Z��7!B2��g�@\u001aBH\nԦ��\u000bc�\u0016�M��W�k��qJ��AG��\n�?��i��\u000b�5����&~W\u001bTrX�2��'7n=\u000e�?q��_@&��D��ĵD\u0015l\b\u0002�&�3��t9��0\u0012\u0001�\u001b��\u001d�Ev�\u0015�D\u001fy\f�z������\t���~�4E\u001a+1�m��\\؃Kl��\u001e���OQ�\u0001\u001e�\u000e�#��F=��.��Mw��VO\"���G��\u0010��2�|�^F�W/��\bf�0W�Z����qG��\u000bյ�&��!Q���\u0007��הit\u001e>����\u000b�\u0016P�\u0000\u0011:\u0005��\u001d1� �ŢP{xĉ�\u0000,6(�@����1r\f�Af�\u0012����?\\EU��tǢ|�\u001f\u001f\u001f�\u001a�\u0010n���\u0001�\u001f�N��\u0013?\u000f_ʩ����\\��m>\r\fJ�a�p�f�qSA�\u000b?�x޶���]~&#<6O��d$�_=���>��\u0018᫳��\u0001\u000b)��<���5\u000e�\u001d(��m��\u0017\u0005\u0003\u0002۳���퓡�1栖41��s�ҩ�)\u001c:n*�s��,���\u0001~`�D\u0000�r�ac�-�.Z\u0003.ؼ�%=�O��:�Ŭ��!\u001b]�)t�\u000b\u0004\tw\u0000��Eu�����OÈ9��\u000e��w1-�*��w�3y�IJP6=�n�\u0011�\u0004���i�\u000f�\u00110n��AL-�T�R�NS��Sϵ�\u001eh�8\u000eڀ��=�L4~T(-\u000f\u0007ĜK_�clD\u0006��\u001f�!\u0017��D�2w�P�3\n���oY1����������n.�Ƒ\u001c�[%�\u001b���Cƪ��Z>\r�Ak�\u0012����\u0002ڀ�\f��FD�p�&{k�Աn���\u0005�B�6�\t\n����\t\u0010jI�oݓ�r���)O‘�zCnQn\r\u0014��$�(K���\\$�<_�e�l�N��8�BVj\u0003Q��^\fA����\u0004πͱLjD�'\u001d���\u0005�B�I�@�E�L�����R\u000b����D�Q�������i��氖p�\u001eq\u000b\t�\b\u0013��u�������\rqil�?_��\u0019U��\u0019\u0016瓍��n��91H\u000f�*��~��\u001dt\u0017�\u0010\u0016\u0005����-�{�XX�;XhO����d�\u000f�J\u0000nD�o/tX�ƺ� 7C7-\u0005���{\u000f�^�D��'s��bM���X�k,'c���}��-,�-��\u0012\nl\u0014�\u0013>m�Xp�6-`K^{4u^\u0011o]������T\u0002\r\u0017�'�\u0013�|K�=��\u0013�\u000e{~\u001d7�W=��E�&\f�A��\u0012���\u0002\u0018it�G\u001e���yhcO�uH��d�®^=��\u000f����A�@S�TZ\u0013\u0016�w��\u0001�f��\u0000O�Z����FaVG!���U\u0000W����]v�\u001d�4�\f!b�ИN�E\u0004���\u000b�\u0000�\u000e\u001b@g2N�CU�\u0012E )��Y\u001f�*I��g��\u001a��t�‡.y��`�QO�Z\u0014\u0010<��\u001c�\u001c\"bA�Vjn�L�\n\u0004\u000f\u0012*[\b�\u0011\fP�La�gUl�A�!ڜ\u00171R\u0002�St���V�\u0018��%��:\u0002�+8ʅ�L\t\u001c+�W�\u0004\t��<\u0016 �'<(a\u0002�O8�*aG�r\"�+9yl�p��+��\u0003��Ts\b�g�@��\u0002`�y\u0010y8\u0010�_��I�ƈ 4�\u0012ߗw��&���\u0011����#m!�6;�ƌ�����9s�h��|xC��\u0007j�{��Y?�\u000f\u0004�N8�8�8�˄�D�:�\u0001��e���o\u001dW���u,\u000f�\u0003W\u001eW:~�'�Ha.:9��I(壕5�?�IԔ\u0004����-z@�U2R�#p3Rܽ��\u001bO\u00070�Kj�/�.KwAf�������]�;���B�:I����\b)\n\b?�y��\"g\u0017Ҙ��chà\u0013_?\u0010o�\u0007ȢX��n��\u0004\u001a������\u0018��A��\u0012����b\u0001G\r-��5Q?c��wo\u0013�D%�&@���J���#���\u0011�T�ɞ�\u0000��«�:�U\tR�V��H33 ���j(O\nO��k�Q\u0006��G��\u001c���Q���E�fn��a���C\\ez\r69\u00121\u000b\n3T+�*�\u0011\u0010B\u0012G�ME��)ռ�8��f�>��<��]\u001e�)�>d�n��}O�P`������3��8]4\u0002�0��B�<-\u001bɦ�����:�R\u00149�g��ߴg�E�!ѣ<�D]�\u0007\u0017\u001bp��'�\b�+c���\u0014�‡�?�ˍߩ\u001a2\u001a�#Q��\r;���2�Ϭ$��V��\u0014���o�K��\u0017ThlK���g\u0018�O�sVIe3�\u0011x)���*��RUp��+p�{�\u001a=,FM���y&���R��G���\u000e�\u000e\u0004\b���\u001cn[�+)͑\u0004[]���� V�O{o%I.\u001c\u0016���K\n�\u001f=��hY1��\u0007\u001e�\b\"���ya��d�<�%����X�q/\u000e��TOa\u0000{྾<�{9f�rzǖ��1<�X�~�{��Yl2j8&\n~\t\u000b<$TW荓��$�]��\u001bMCo���\u001dL��R\u0002[��f':�^0�(J�R,�\u0015\u001a�##i��\u0019\r�tr�4E�ɹu9i\nFn\u000e�HZ2\"���1l\u0005㣚R��\u001bb�\u001c��/�󘪾N��b�#-c\u0019�\"\"\u001d�$\u0016\u0004�j7�\t�\u0007\r�\u0017\u000b�\u001b��8wv�%b��y%.���\u0015m����T�����K���w��\u0006\u0010�]Nr\u0003������\u0018�1.Y3b1�5��\u0003-!0h��\u0001��s�_�G���˹\u0017\u001a:iu\u0018@\u000e���\\ \u001a��<�n�2���r�k~��\u0015��\b��Dw�\u0012t����kbl�A3�\u0012��X�\u001fOw��\u0000�\u0011�$f\\�\u001a�\nJ�\u0015-��*;pk4����0���\u0010֗n\u0018G�����c�.�$\u0016\u0014D�g٧6�|��:X�$����1�O\n$\b\u0013�\u0011�M^.�Əv�\u0006�k�\b\rz�\r\u0004\u001ef���j$��F;\u0005JxȬ�U\u0019'\u0007�*�^\u000bzn�.c\u001ae�\b�覼T�^ݝ^�V�f\u0012N\u0015\u0011�I &A�\u0013�b\u0013S9)����[Z�%�z���^�R+�OW�/��K0\u001c��H��߬�;\u001d'����\u0000���K����K�\u0019��Ӧ�y���o\"�,)�\u0015�Y���U�\u0004m��MM0o5�\u0019��!�}/E<��`��\u0017��g�d�i{j��7��\u000b?�o�gݗ\u0004\u00073Ġ�A&�\u0012���X�-k��\u001bPE��d�d\u0012OC2Ě>Q3\u0017#�\r��L�?x�.q�9I�[6cCmpg\u0011�Z<�z�ɣ\n�I��\r�ާ;Q�\u0019á��v��̀8A�\n��\u0004T�ן5�J��\u0015�c^��\u0016����\u001fa�\u000b\u001d%���5m3�\u0018d���~f\n$�׮X�Dj�8\u0005��RoZ}S.��A\u000f�x&�\u0015�^?wP*�\u001d%�\u0010\u00071�5��l).�ň\"z#s6��r�A\u001e\\΃\u000fQc}Ci�\b�&\nϖ��v�5�gv��5����>���!4�䈲J\u0011�+M�YE�{\u0016����L��eHM���ڋ���9&o�\u0001�o�e���K~?H\n�@\u0007}f�@�A(�\u0013\u0010���\u001d��MC�RV��d�\u0002e[�Z+?��Ϝ\u001djw\u0017�\u0007>�7�\u0013�⯦'��\t$�`\u00061�Q��Q5䜏����~e�j�b�f�'ף�b\u0002�9\u001e�Yol*���m��V�=\u0016�2�����u�AP\u000f��z9��I�iC:)�Ԫ��\u0002ǝ4�\u0014qD���\f\u0013�?\u001c����q~T�����vm\u0006���Zl�r)�\f�}�\"=��O�Q�\u0002lP\u001c��\r\u0004Ǽ4�\u0006�~���5�\u00174}!�؏jn�� j:��X�Q\u0003\u0005,\u0014 �\u001e��]\u00010\u0010ځ\u0014�榎��ֹ�{�\\����b\u0003;�\u0017��_�R��'�7�\u000e�\n%e�C�F��Q\r�Ձsh?.\u0007�\u001f�$H�A2�\u0013$���\r�\u0002�ďK\u0005�^�P6�\u001e�E�\u0002��Mn�n����nz'\u0018�RA�)X ��޷\na��T��B�s|r7\u000b:͊����\u001f���BR~�-J\u0003\u000b\u001b�m\u000fA\t�}��jz\u000eZ���~\u0001\\\u000b�cԈNL�es�\u0019\u00043^��g�d�G�<��O��N�6ۍ\u0014��߉�M�Ő�\u0015��\u000e�o��cOQ����A��\u0011�0��u�� V\t�R|�Fo����K|Z�P�Ғ\\\u000bW�ڣma\u0007}��:\u001a`[�Q\u001cXz���'�­�Cƌ�\u001fe�!]��Ź��vxh�j]AQ\u0013���[�\u001bW!Pl��\u0015Bm���&�N�<=+ \u001e\u0003s�l��3�%�\u0000=�\u0005�i��\u0003�NV6F�A9�\u00138����\u0015i]P\u000e�Q�e\u0019�\u0018�N3\b�BO$D!}2\u0011��5\u000b�#ۖ�s��\u0003\u0011��dq7�0�I\u0000lg�|��=lY��\u0002�\u0018\u0012�Vv\u0006\u000f�;3���1By����R,���&\u0006Ry�9�ْ\u0000����\t�d'\u0016�\u0005\u0010^�\r[�\u0017�x�Z\u000f\\��+�\u001f�,�W���HҴ]y��{_\fU��\u001d\u0007�Fk\u0011�_���ո�v�G�&�s\f%\u001c7\"L�!�p�R8,�7\u0013\b��vẌ�Q\n\u0007\u0007#�k����;�8�k��è��^���Ҟ\\\u0004\u000b\n�=�z�\u0019Y|�\u0003�6��\u0015�\u0003\u001cY�\u001b�7ə�\u0014�*_��\r\u001a���_x�b%�Q��8�\u001c\u0002W�2�g̦M�3\u0013kN�\u0015�\u0017�\b�D�A:�\u0013L��X�,�@\f\u0001�@j��\u001d�� e�t���֣\u001a�ݘ\u001f�yL�\u0013FP�\u0013�ᴎۏӵ����ϯZ\"A��[m��\u001bq\n\u0013�>�9ӫ/��0\u0003��0�0�&[+\u00128~\t�\t��^Z%�鿹!5�9u$\u0019;����\u001f�\u00169p\u0004!���0v7\u0019%d�!B+�f�(ī\r�����\u001dϚ=;^㑕\u0018�Nk�1S��y�ܟ�\u001e0��^�X\u0013\n�߷\u0010��\u001eώ�\u001b�eo�E��/�����?����?'Rݗ����9�x>�&��\u0010��E\n[\u0005��`\r�\u0012Fޓ\u0003�̭������G�\u001a�������n�+�y�w~�[\u0011\u0000�sS�5\u000f���w��-7�k��h�5p\u0003A�uq_\u000e�\u0014]�t�R�A;�\u0013`���d�M���1^nt��N�\u001as�,y�%�1�=���|�0�\fu�����\u000e���#�a{P(1s����㩺�;�Be�i\u000bV�r���r6\u0003\u0013S�U�>�v�p\u0002�Fb\u001b@�z0��I?\u001cV�L��\u0012���\u0013�!l3��\f�6�3�&m㔾5ظ&rbŨ8��3^\u0000w�����H#�<�D �\u000fp���Т�,]�\u001f��\u0014T�,w�#|2X���q^�b\u001b^\u0010��V՘\u0003x�`q<+O��\u0007g /�Ծ�w\u0001���U��~,&\u0014z\u00185\n�[i\u0005\fg�\nJ�\u000b[��M�KAVBrN5~�\u0016\u001b\rpT�<��w-���É�3�g\u001d�\u0003�tD��'e\b�\f���䂼\u001d)�\u0006(��@v��J\t�A;�\u0013t���a-fRO\r1\u0007�W�\bx\u001c�'��a�\u0017m�h�=��\nw��Y��\u0003�UP��\u0004\f�Xb00�6�,�\u001d�\u000by�N��0g�\u0011>�\u0000�\u000b�Y�8\u001agܲw�v�Bkn\u0014�w��\u0013�\u0015\u001b0&w��I.h\u0006�9�L�\u0011l\u0015/�}R)��lm\"^\thcIe����Ds%LR�DR͕�;D#��2���CW\n�*`�أ+I\u0006\u0004�L'WȰ�\u00140j\b\u001dl�\u0010h:6�-�Y0���\u001c�\u0014���KC��\u001a\u0000�,�\u000bzT��Ep,��=��a\u0007x¯�h\u00142�8�3�JB�yӑ����\u0012�.Ք8H�a�8ڒRH�3��\u001c>�Okn\u001fG�H�+�����%�Ü @��$�t\u0001o��\u001f��j\u001bVI&\t�AG�\u0013����[Y�O�Ku�$��6m�R9�D�\u0014�B\\\u0011`\u0001QW�$���\u0002�5�\n-vzt�R��m�B�T[{S�Q@�N�+����^����78���\u0000�?�-�1p�d\u000ee���,0��c\u001a˾��\u0005�v�GU�{A���4�\\*��U�I�\u0004�5\\\nĊӪ\u000e��o��0AB�\u001d�9��5l�{A��0�>��'a��g���x6$�,�\u0000Q4��1Y\r��ksVZ��i�\u0010uJN]���b\u0005�\u0007��Mt���\t�#\u0015\u0013���YL\u0002\u001c?�*\u0011��\u0014\u0016���\u0000�\u0003�N]��3*�/��#�\u0007���\u0014\r�\u0014A��\u000b�\u001aY��q��\u0000��IhE�_�aއ\u000fz�S���/��\u0019�\u0005�@�\u0002x*\u0014�ur\u000eX�4<�\n�AG�\u0013�����ڢ^��?%4��4rd�vn�+��\u0017<\u001f�*�y��\u0003�[L�v�^¸��&8�Eߊنj#\r�h\u0018w�\u0012��5��st!Q{���ߔ���\f�ƾ�a��v�\u000b�Q\\-a��f^֎1tێ\t\u0002l\\�3e�v�['^\"�j��\u0017�V�Q8爙��=���`�\u001c�2��8�߆.�թ��\u0016\r�����:�\u0015w����\u0017ߣ\u0013�K�a\u000f�\u0002����H�\u0002��;\n�����\u0010\u000bj��N��T}�K\u0007����7;�x��y�\u000f\u0001\u001eMe#�\u0016\"�qo�ױ�@bcДׇx\u0012_����\tN���\u0017Z�zx\u0005����?�J� ɉ��\u0001�e�_�\u001f:�K�F�\u001f��'G�\u000e�K�i=ū��\\�����y\u0018^I�\u0000����AɁ\u0013�����r�GM�h�\u000fRQO�ʓˢ\u001d8\u0011n�0���g\u0013\\~��\u001a�z����+�\u0002M�ۗR\u0011��]�|\t��17*��\u0010���+\u0016s\u0013\u0015ݙ�?��[\u0002C��X�Sr���ʶpi���t{�!JC�V�\f�0�c(����G�$���\ty�\u001f\u000b�~w�\u001dl8���L�^ܽ�JՌ�}�4��$}���H�ę��\u001aD��@�6/\u000e¦�\u0017���}4=t\u0003�'\u001ds�fy\"䵞t\u0015�\u001c\u0011�\u000bZ�$Q�\u0013 _�\u000b-r\u0015�:�ۣy��L}���~�8{˧׃8�M����W�j�����\u0005}}�AO0�\u000b$S�G�\u0002)�uȐ�{�T'��\u0005� c���͜���xq�\u000e�Xf���-�<��p�j���g\u0005|��\u0002\u001b���>�8m\u0012W\u0017�<�0��\u0000\u000b���P�J��:I?�V��yz��x��\u0000��\u001e9�^�q�K����7�\u001c�r�΢\u0010��#\u001a�`���UzkE��\ro\u0003��q�l��>\u001f\u0002=-��\u0011b'��bS*�k�\u001a`�Ņ2\u0001.\u0013-߹��Is?\bD�AC�\u0013Ā���6\u000eZ0a��G�3,U��zb\u000f��m�__�~��\u0017�׆�\u0014�g�ͧ���Ը󪋭\t!l�ɵ;\f$\u0007\u0016�8���5�Y�U\u0016����\\�G��.�c'�h���z�\u0017�\u0006,\u0014E�V(\nWX��\n�].��G����Yn�92��\u0018�Z�O���\u0015`�;��)��z\u0006=�\\�&�\u0013�\u0005\"�\u001aĝތ�“\u0016{�4o\u0010_���n\r��z\u001d��$b#���P�\u0016��\u0007�\f�\u000eF�b\u0011���,ox�Lj��7\u001b\u000b`����Κ��&�s���~\u0017[����u��\u0006�m\u0011��{�\u0017��\u0007�o�<ʕȵ[#=ۤLt�o��\\\t\\�-X6?E��'Fd\u0002��\u0016\u0015�X�\u001eM��6�W�\u0010\u0000���s�7[\u001d����AW�\u0013؀��l\f�C�su���۷����\u0015z\u0015����a#\u0007��]\u0004\u001d��\u0004�\fۀs��gú���\u001c������\u001c�\u000b�yao�Pn�B}�\u0007�\u001c���c§y���G��\u0014k��W\u0016B��N�Y\u0014��S\u0007N)���x�\u0015,i\tXzW\u0013�\u0018�,����\u0014��}d�?�\u001f\u001e\u000f0��\u0013,\f?\u0018j�\u0016�\u0012\u0002�t����y\u0006eG\u0018���g���,=�n\u0017e�S\f�J��1�F�\u0006�\u0001�\u0018�\u001b�\u0018����ߪ\u0002\u0019K��ZɅOq�&���İ6�S�\u0019ebd߀���Y�^�&�\t��P����\r)���\u0016��aq� � �'���{\u000b��{$�\t.[]�͟��\u0014z\u0010���ǔ��/����\u00068\u001d=��j\u001c�\u0013�̣��A쏫���7��|[2DB�ڍ���AE�\u0013���mw������h\u0018�NW�m�n\u0018�\t�p�->Z4it���&�(\u0005��6�\u0001�bv�DB�f��V�Y0\u0005�\u001c?\"�-L�B �q\u000bŠ^���ޙ�!�p?\u001f�-���{s:�̣w�Q��Qe1�P��j\u0014�g���|\u0011��\u0003\u0016�S\u0013c\u0016\u0004c�|.Q]�\\!C���\n\\W�a��\u0011^��\u000fm��ps;�M�}��ZL���\r�����`�@ ��\rnY�3ϥ�:�\u000b y\u001c�]la\u0011O\b\fRZ\u001c�\u000b��t\u000eG�Z9�\u0003�����\u001a\u0010�\u000e\f��\u0004΀��\f��S�\u0014#l�?�,Y�\u0001k$\u0003_���\u0005�ߊ���C�!>�f\u0010�m\u0004T9/\u0007��z\u0011��\u0017b�����P�\b�v��m�\u0004� v�s�or~o$�\t��AW�\u0014\u0000���mw\\�G�\u000b�\u0016��\u0003ؿߌ\u0013��k� H\t<���F!{2�9\u001c��4\u0004.݇�Cm|)�����\u001b����Kx�{FN-\u001cB�c�|2'\u0018�A6��~�\"폅)K�\t�����G;�4\u0006&�m�ׁJSP\u001a%�S\n��s�\u0018�}�b��=\u001b{Zs��\u0015���M����0N�\b�0Q\u0001E\u0019\u0000\u000e.Bo:�\u0015\u0015�N�h\u0015��M^���9{tYC�4\fh��A�\u0013E{B�H]�\u001f��š���'`y�!��Q��ӟ��9\u0012\u001fC'���v�\u0007s�h\u001b�\u001ff�1\u0016J\u0013\u0002 �\u0006��AT�\u0014\u0014���bs\u001b��>h\u0018��\fc�\u001f�*�s-��ܵ��r0s\u0018-�$qk�_w^�\u001c\u000f\b\n�ƨ\u0017\rNن��\u0005�z\t�Ξ%��3t\u0001(�\u001ae\u0010<_\u0016-1c����q��[EO���%���6�T����D\u0005���$�\u0012�\u000e��P�]\u0000�U\u000bvP\b�\u001b,�Q�Îk\u0014���0-4�+� O�\f\u001c�\u0010?\r>\u000fIk\u0002�4qC��I��!�iүB�:�kp��v\u00146`�-+�\u0003�):����\u0019��\u0003�\u0007�%���tt\u0016F`|6��\u0003�֬�6�DG�J��\u0006\u0014��\n���X�o�S��h��(�\"��)�� ��_�������W�;n�\u0007�e`K%Ax�eW\"��\b�3xK�`z&�R܉\rV�.I�fƛ��r4\u0012�\u000e�~y�N(��\n��AW�\u0014(���l�šgC=�\u0012$��~S� ���\u0006� \u001c��ۆ�t\u0016xt|\u001d,f~q�hL`CJ[�$?P�QZ�x�\u000210�\u0019aW���=�-�N\\aKׁA�|i6'q��j]��!,�XR\u001d\u000e��lM9V�A\u001b5G�\u001ex\u0012���B��n�Ȗs�����2\u0002l\u000b��Q]�;����\u0006f�M\u000b���7D���3\u0016���,�I�g�s\n\u0013�\u0001�V͆D\r�;�Q�\u0012�R\"�\u00176,\"�28��a\u001eZd|�\u000b�Lkv\u001a��A�\u0000q�VpS�a��ކ\u000b���⫹�\u001e�\u0018[�؏\u0003�]�?\u001a\u0006��}E{:%����O�b����LN\u0010wC\u0010��\b�[�冈ɓ�.\b�n�J\u001f4�A_\u0000���c�wd�E�1?�\u000b\u0007`��wW�d�$�\u001d��ۋ�V?�\r\u001fN\r�AS�\u0014<���bqm�s�ڮ����N7�\u0010��'4�v�\\�\u001f�\u001b��\u0016κ�ʼ���a�J�0��BW��O�k��*��`���\u0010|��Ay��\u0014.�m�\u0014YM=�O#�\u0017\u001a\u0003�a\u001a�L+q��D�Hćn\u0002\u0010����\u001f�򢁪\u0005w��Og\u001c��[\u0005\u0005�r�@aw\t�\u0000?�7Y�h�Y�\u0012��95.o��xK�ҍg\u0002\u0014#؀ېʵ��C�ހO�/@m��\u0011�qƂu��\u0005\u0000r��(�q�se��wc��M��5�nl�\f�@쿯��z�\u0017�~\u0010Q96�r�._ѱ�\f�f\u0007�y��<�8�\b\u0010�^����\u0005\t�R�o�m�5P}-\u0011�\u000fs���\u0014\u0019�\t��b\u0004)/\u0006)\bԵ�3A�\u0016o�\u0006��v0)nCd�\u0005�)L\tsb�\u0005!)r�x\u001a�6\r�AY�\u0014P�����F���>\u0001jsq7�{φ�\u000ba�\fސ1;\b��D���?�\f�D/\u0018ǹ�\u0015�B3\u001d�*\f!�\u0011��ɏ\u0005�¸߾w��I\u0010U�҉~���\"���\t�T��K��\u0002��'��@h�\u0000��j�I9i��\u001fȶ�����~�j� 9���\bN�lQ>��R(�J\u0005S\u0016&�>d��=:0���]\u0013��řK`\u0018Fl\u0003+=\"y\u0007>��Z8\u001br��VX`���͋�9i��\"[.�w]C�'����\"��L�t?�>�x�Z�0�I�s\b֖��(\u0018�J}\u0012\u000b��4a`���������\fb�FpS�`�s��f\u0003�[Ū\\\r�r(��+~�Г��J��\u001fh�js���ϸы\u0017�W������\u0010�\"��V~�P�h�Rw�����-��U!/�\u000b�A\\�\u0014d���1\u0004\u0018E@���P�=E�\u0016�y�\u0007\u001d�|�\u0016�.$)# ��c�\u0012;5������Z<��ZW����V6��^\"\u0010\nH֭0�OV��=�RUl�E�܀bz4LN���E��ڀX�GG�\u0010�j�I\u000e������Z,�[1\u0005Qa��=�b�}�u/n��cr�pJ�p\t��sn��_\u0014�>�(\u001f:9��(rq,�،!��k\u0000K\u000bf\u0000�,\u0015��`��|\u001b�M�}��AR\u000b�&����i:\u0017�\u000b�g6�YE�����/\"�4�Q\u001dWR`P��\bW�]�\u0010�H�\rՔ}��-'9�?%\u001bt�Z���5Ё��!�#Q��Ln�\u0013�:��\u000b(�/�5��0�{\u0000�\r0��x\u0016<;��\bK.AQN�\u00101��n��dP^���GS!�LI�Q\"�Lqn�\u0017;wh\u000f{�� ��A_�\u0014x���rq�&!�i��_X��6\u001eM\u000bZ����\\\t����\u0015j�q�c�Z�V�ʳ���\u0013j\u0007zθ�,�;r��f>`�����n�w��kUn�\u0014�~�Agf���ixc����˾Xn�\fr�t$��.[:_=DZa_;-c���I�]� ;(\u0005X��A�9��\u001d;��}[MB�Q�#9����(�'J���\f\u000b�L�L�A`Z�KRa����L\u0017����\u0013���'\u0018�6��H0�d\u0000�R�T\u0006\u0010��ф���|�H��t'��>Iqé�\u0000��Z\u001f+y2r\u0006jL��� ����\u0010؛�W��/��VL�\u0003�\u0007㖯Yzh�5{].`���\u0015���L���#D��L��^p\u000e\\v�`���Ex\u0000��\u001b\b낞�?I�\u001f�\ts�$�^�!\u0015p\u0001d0Yϵb_\u001d�\u001f\t�AY�\u0014����\u001d`YΝ\u001f�\u001d�\u0012�b���t���}S��Ҳ�\u001e4�$��,�@\f��v��\u0013\u0012��Ub�Ng\u0015��\u0003L-�zg`p%�&OtJ?)�u���\u0010E�@j!`\nb���\u0010��:�w�Za������\t�O�6H\u0018'2\u0013\t\u0013&.��]k\u001d�'��Io=\te��Ȍf�0��fK/\u000fS�40\u0017�A��GO��7w*���3��X�G��ǵ\u0006\r,��ޘ\u0015Ǿ\u000b��\u001f�p0d\u0019$E���r^�B���]-��4��4P���~⒍�eO�؞k\";�\b\u0007$x\u0017ѳi*�(�\u0000��\u000b�d�~��\u000e�}��{�\t�\b\u001eԬ45D�\u0005���:\u0010��\u0006b��ggW+�7{q̣\u001b�N�)���V\u0016�6\u001a|U8\u0010�\u0006�;\u0010���4�6ٓ&��\t,x�z\nKB��W\t�AV�\u0014�����ڪ^\u0007W�B��A��}�zI[��\u0012��)�=��M�\u0013\u001c^��\tf�9�r��\r��\u0013\u0012j\u001ek�¡\u0010o\u0015R��\u001e��@v���\u0015>T�\"P0+{\u0017C�r _��a�Ј\r�{�����w�Q���\u000b-��A��\u0014����`�Ӹ/�+��5=���,\u0003���Ⳗ�\r\u001d\rd�G<��\u0010I�B����1��tMw��^�iX-�\\^.�_\u0002@�\n�;�\u0012�d���!�_�z^%��JYŠD@���]J��c\u001b����\u000b�p3�w�\u0010o�H>�B�:�&��\r��5��<�\u0017�w�\u001e�\f�R\\P�eT��~\u0007��\u001c���V/\u0013�hp�)���\u0012W\f�if\u0002�\u001b_���px)��~\u001f/$��`e�����]��I�N���3�\"���aK�e����(\u0002��T�F%�\"�i\u00174(��N_�Iq$�\u001d��Mj�`�w.k��\u000ft��:�r���\u001a��*���:�#\u0016*���~�\u0018��T�U�w̓�i�$\n��t�\f)�|!G�\r�`K��KrCHȼs�7\"\u0000���\u0018�#\u0016\u001d�=^��+��>�J\u0006޳�\u001f`����˫>��L\u0016O�v/\u0002������A{�\u0014Ȁ�}aUGK\u000eϘ�%��\u001f1�3Eݧi�DF8�]�\fi�9\u001c���Ѫ��C�J󻖙�����\u0007q\u0014!!\u0014V�:����M����QhR\rqH;q����\u0001��\b\u000033�l��zh\u000f#��ߟ�@�9��W�\\�q\u0000H=���&��/��j\u001c�h��\u000b\f�M\u001e�Y���14r!w���v�\u001f�kT��s�\u0016ULPܕ�ˉ��ᵣ���\f��������\u001a\u000bB���0La\n\u0019^�x�D.u\n��\u0017jH\u0019@bQK\u0004�\t�\u0006��yvqW-N��1��\u000f2$��Rb��n�τ��\u0007�}��>鉋\u001c�ʐ ������\u001b�r̥�Z2�\u0018���m���ie\n-\u001e�G�\u0012Z*{v(mr��}�\fÉoU(4��m5\u0010���e�\u0010�\u0004�v����>��W����\u000bR\u001f\u0006,\u000f���\u001f��;Y�$&B�$\t'�����+F��A��\u0014܀�}b�\u0001l�?(Z%)jK㈱s�R��\u0001��9�ԝ7�HT�8�E\u0003��f\u0004�z�Z\bG]c\u0014�pO�s�\u001fOn�(�,5�ze�Z��ET$��m���ݸ\u0002�@Ӝ&�\u0011�u�/��o�E�\u0012�\u001d\u001a��\u0005\u00117\t�}d��DkZ����\u0006\u0006��^Z��F��\u0005M����N�5�\u0004՘�\r��q����Dc\u001c�\u0007m�\u0007ň�kR��\u0013���׊\t(\u0005�\u000e\u0015\r8��D��n\u001f�{7G�D܍j+\u0002����=u\u0015H\"���P�\r��\u0006`%�*G�P p\u001b\u001e)Y��fԲ�r�\n0���:6����|远e\u0017�T<\u0006�[���\\�oՌJ�\\fQ�hY�z9��yI5�E{E\u0014\u0005@$�l�r�3%^�4\u001eg�db�\"~�.Sf\u0011}$a��B��N\u001eJ�\b�c\f�\u0011e3G�Xn\u0018#�����7N\u0015�1�lA\u001b����yWS�\u0018��\u0001\u0004���L.$o�8X��M\u001d�@\u0012�A\u001b�\u0014���M(#:3�\u0019����`�q٠�Y;�\u0007����g1ܬ�\u0019l3\u0006�ԛ#�\u000f\u0007Ƕ�H\u0013pDh\u0014�g�bW\u0016�֮)5D�-�3��4j_�#@\bN�\"�a]�\u0002��\u001f��qn�� ��\u001dؔʸ�\nQ�n�U\u000b���v�]�sGkb�~K[M(\u001cTm�̙\u0003\u000e��D\u0011)�q�P5�\u001b5�^�ޭ7�z\u000e�c��&���X|��-��t*�?�\bL���ZR%��(�w\u0016\u001b���D�\u000b��֣OPrN��,:��dX0t������\u0011?B\bxȌx���\\�l�v��/\u000e�s!�K\n\u001a��V;Fp��\u001b!)I���_\u001e\"Z\f��A3�\u0015\u0004��X��2��8��8>]�8πg��q\u0004�<�-M�&�\nD}��\u001eG��zr����-�}�H%\u0004%v\u001c]��W�;\u000f���z�\u001f�����1a�7G�@G��y����GP�\u0002P}����\\s�L���)x���/�(�\u0005�����Ȑ.\n^j\u0007\u0007x��\u0006WC�p�E�t)L+�\u0016�\u000e���NW�z�\u0016�_'�T�S�\nohHp�\u0014>�h;��\u0003]\u0017��`!\u0007��h���� I\u000b+�a.�\u001b�\u001aR�\u001b\u0019m\n��\u0000s�9ⱛ�\f��SsW�<=��\u000f�F\u00175\u001a�k�r��q�y��\u001dS@�y�\u0010�ˮ�\u000f>\u0007\u0001G�\u0010�gc����\u000e�^^f\u0017��\u000f�t\u0007�<�\u0006��Z2�_�C�AG�\u0015\u0018����\u000e�f�\u0012\\�)#!mW�,\u0003��Q\u0011Cve)�\u0014,��u�/Bٳ�9g�+Z4���\u0003�ޒþYRp�J�n��j?N�:3m\u0000�D\u0014\u001eA�G�����*|�\n�u\u0007XM��\u0019ؼ�}m\u0013\u001eʨ�Pc�Wv���iw�ߠq��y�9'��7��\u0011�̹�x�\u001e�&r���Ļn�v\u0016U&���=��W\u000f�g�B�ˇZyJ$y�/+��r\u0007a�pm�\u0013�)\u0004&�!�\u001bn\u001dH*��e+˒�_\u0001LQ�\u0013K�\r\u0002M��Q�4���X���zu��͇)\u0005��4�˸�_�n�u�\u001a��sC\u001c� �Ы�3�������\u0018E��\u0002|�.Qn�9{��/�\u0001�� k��!\\am\u001d�;�B�\u000e\u0016F�\u0003\r _Dф\u001e�Xg�-ի�cj^Ǚ\u001b�Ȭ�\u0013�f�\u0006Xr�Y�����\t�\u000b�\u001c��\u000elh�T:,1�\r�Z�̙��e� N�����%��\u0015`Rc&(%kh�D\n�icS�:g@�\u001e�x<�\u0011�/p�v���Y��&�w>OP\u0000Aq1��\u001d\u001bw�[��\u001f�[��`G\f\u001a�m\nE�\"��\u0014��5���ߔ\u000f��Xp���Ҩ$\r��Ќ�W\u0017ӈ\u0017��\u0002��AN�\u0015T���bЙ�TI9Υ0�A~?��u�\u0018R\u001f\u000f�j�\u0001�%B(���5}U<�YGgަ�\u0019&譊<�H@��\u0006��\u001djGE/�\u0011���D)<�\u0000\u001d�\u0013\u001b�\u0012\\����@�/�!U��\u0011�~\u0019nY���\u0016�0m% rU��8\tDȿ��x+��3�3��*��g�\b��Ƹ2\u0002Gk�\u0007k�\u0017���7�\u001c�,�\u0004\u000e�T\\��^\u001e���Jg��\fu�\u0019��#�\u0010����s�=\u0003\u001f�|\u000eti�\u0013�c�<\u0003�z���i��� A�*vO�\bF\u0003H\u0010���]\u0003n뺙 ������6��b\u0003\u001f� �4\f�ڍ�AR�\u0015h���bЬ��&�@r\t��\u0017���uD��\u0013Jn�\\�O�P�_ߤc��'�E\u0012\u001d6�8�o��G=�KL{�r-��j*��\f\u0006��v/U�\u001bK�k���~���|)\u0006�5+U7�NL/�`���N�p�c�mu&�>��1��9�\u0012�`�h��W�o�\u0015�J.�\u0005tǭ\u0015�+N�!��k��ǧ���,\u0010�Y�L�9�\u0018�\u001d�. \u0003�\u0007^F�L\u001a��>�o5�(d��y�S��\u0012�\u0002�>L�yq�C�<�9F~�\\s��\u0005�lR���AA�X0�\u0012-��T&l�e���\u000b��y���YuL�Q\u0000�>\u0012'�\u0015�䐴�or�ur\u0015\u0018K��\\��I\u0000\u00078�g�ʰ���w�0vC�\u0013i`����J\u0011��&��9\u001e���c\fL�m��J���5\rY�L�\u001eE�,WG��>��?�Ќ.b�\u001f��9>Z����;��p�wF\u0011\u0004_DA\u001dr��h�;!�ֽ\u001c�)�$w�k&\u001b�ʼx\tn�z;\f�Yk\u0012�<�LJ� 8��}�\nd&�\u0012\u001f��!5\u0015\u0019��\\ص=�ݲ�9�� 9��#hj����\u0019I�9F�t�b�0�ñh���:m�\u00162����z��\u0007� z��\u0006��F�\u0000\u001ej�\u0010bK/��pr�\u0017�\tD7<0O�'1��f'\n�:|\u0003QOrB6��NW�YV\u0017��!\u0019cu~���3�8D���ؐVt6��ܖ�y�ӺM�\u0002ZI��\u000b�Ay�\u0015����et�\u000eT�}�\u000e\u0007\u0003 ǾҊ\t6{2�k���\n0�B\u0018���\u001axS�\u0013��\u001c���<�\\\u0006�\u000f��|�X��\t.\u001d�}L8(\u0005�0 ��Qu�\u0012c��\u0018}�f^�GR�3t3�pp\u001eHYj��g2s'�.��\u0000��D�?\u001f���[�K<�b�9q\u0013�w\u0014�y�n�D��e2!+��l���\u0007v\u0017�э\u001f��\u0015��w��o�>��4I�����Y���`.\"���\u0011��u�;���%��-�u\n\u000fp?�G���\"r�\u0019�NC2\u000b�F?��2�#L\u0003H�i������z�\u0005�^�(d�F�u��\u0000�\u0000�9\u0017�\n�0k�6�Yµ�_n�P���\u00125l+B\u0019V|I������Ktc:�踲z�TǦ�9\u001c��J�R �@ �\u0010��V����̫5�ݪ�w\u0018�]�K��K>��MJ���B�T�Є\u0019��z1E\n�A�\u0015̀�|��%��@�q���\u0011^K$��=�*\u0004*ݎ2P�X�{\u0019�eF��\u0006�懊pd��,�|�30�7�:w\u0006\t�m[�\u0017C���޻+������\u0017�=x����bã_L\u0017�΅?^K�p��Uu����\u0010׺w�Q�/~r4�s�\"�V^yJ�\u001eL��\u0017~泂7�\u001d���?�$���\"��\u000f��Ԋ?df����ݠ�\u0017�;�����0b\u0018.�U'ZQ�A\r��BxU���3��������K\u001d����C(\u0001ߋ�?\u0017��}�����j\u001d(b���\u0011\f̂�<\u0007��\u0015k�����W��֡�\u001a��Ol�\u000fL�$F�ծ}%�>)��\u0016�^ٯ\u001f/�@2��a\u0012~\u001f+@=�\u00010J�\u0005��%*��\t0�cq�w\u000e\u0006wE�pJ�ed��'\u001dG��&��(s=:~�V\tٱ�c����|�U�t��G���Kѥb�IN�g��B��.\u000ei��\t�|\u00070[�D�J\u0010���jo�\b���0Z\u001b��\u001b��2y\u0014�u�!/�\u0018�T\u0001�����\u000b���`\u0007���\"y|2�\"M\u001f\u0018��W}\n/V�^��z��T�Hi�\u001e�K�I4�\u000el�I\u0017��)��Aj�\u0015���M/R\u000etr�\u0001\tXݜd�nǍK�,�UKu\u0004�\u0019�0@d\b�f�\"3�D���n�hW��\u001d�\"\u0007�\n�pڵ�^��k\u0003X�\u001dy\u001c�\"���\u0010�P?\u0002�h�\bm����<أ\bZ$�W.h\u000f���h!\\_�7�\u001b\u0011p�]\t��Ӭ�\u001f�Z�\u001d:m�/��W�a�QK7��\u0006k��\u000f��Ӝ�~��\f�e���\u0018v�c\u0007\u0007i� \b�6�\u0005bĆJ@���^Ϥ��eءc|�-�\bF�\u0003��\\]G\u0010�\u001d~����b\u0012AN�c���ls})�\u001a���=��\u0017�by����B���l.\u0012im��k��?�AK�\u0016\u001c���v���;��\u0010\u0007{ +\u0010��:\u0007Z����$���))9������o�z,��iʽ���E�b5[ ��\b�\u0000?՛Lm�\u0005�<��*��H\u0004�G\u0013���\u0002_$Y+�Y�\u0016��;i\u0006u\u0001\u0014�f��*B\u0007�`>U\blY�\u001dy?�c#��o#��2\r�qJ�q� \u001bqy�#wBþB��ޯ��h\u00119�]��;\u0016�S�2���<�G\u001a^!��g�\u001e|$�{�\f�q�`Y��4\u0001^�M�\u0001����u�q\u001f��VM�0�[l�$\u0003�bg�S�p��ِ˪�����%/E�0PH�c]W�m5EtVJY\nw���q5�\u001c�(\u0007\b\b[\u000f���5���+f�S\u00077ٺ��Y��.s�&\\�K\u0004צ�3����\u0013�\u000f \u0019\u0019��;f=�AP�\u00160���Z�@���6\u0015��0\u0016Z�\u0016P�����\u0000$(߀gS���\u0012��Q�E����:�\u001c��\u001d���}oEY�3qQ�\u0002r�\u0014\\�\u0011��ܥm��hp�e\"�Pޱ�����>��&�\u000f\u000b!u;��IW�\u0004���T��ފ�!)47��W;'�*�g}�Gn%f�������}���N�s�.��ɤ�\u0019�\u0012�\u0006������0\u0010�E�S�)k�M����,t��\f\"\u0013�ԸU\u0001�q��s)Ĉ����֩�\u001fkI6��\u000f\u0014hr'\u0001a�� ��6�$��Ap8��� =�O�r����W�)�\u0012\u0010\u000eq��d\u0000�3�Pl���\u0015'~\u001b��vz�X��%\nz-S�O���g�;��-F͋�{�\u001c�X�����j]Q�Ⱥ\\l�z�ף$\f�6<�AL�\u0016D���\f��d��\u000b�$j�\u0002��N8(O\u0011�(\u0018\u0018\t�\u0016=��\u0016R\u001e K�+�\u000b�\u0018\u0000H��\u0013�����r�\u001c��<�)i\u000e?�)�#e�\u0001c\u000f��\t�0xQ�)��\u0012:�!�ݪ�'�z��Y��m�\n{U�\u001d'\u0006@�ۃ\u0013����l=P�\b��G\u000bw�K\\.�^ٙP5$\b��&o7��\u001f�ZSۑi�A�wv��7\u001a/b��\u0017 ��\u001bD�F�=���5�\u000eV�6�-\u0013�e\u000eA�6U���\u00061����eu�}\u0006�U\u001c/�\u0007\u0000����\u0015^�\u001260�\u0016ؐX-Ǫ�\u0012\u001d\u001e��!�����x\n͖Y�`�f�[�Z\u0004�L;� \u0000��~����d����a�G\"�.��G�1���Qs��B�\u0019��\\��&=�\u0007�����HH�dzZGr<�AI�\u0016X��X�������h�{\u000e-\u0012���9u���\u0012�\u0013��nf\u0004�p�\u0014d�{�)2\u0017Oj\u0011F\u001d��UM�$�:.ɣ]����^�u\n+��ؒ�P\u0019�뛑+c�\u0013ZW�O<\u0019l�|�3>��^���\"�R\u0011ԋcz�����ݎ\t�\u001bUY\u000b\u000b\u000b\f\u0007�Z\u001e�(%��\u0007�t����\u001b&\u0004��\b��b��h�\n\u001c����{�\\{��+\u001c��P9Ōd�\u0002\u0001y�N��xS�N�N��k��|K�\u0003\u00050\u0007�\u001fAj\u0006]\t�6x��TP�N��rs�����u_\u0003d�+�B\u0002sN�e�+\u001e�P�%�m\u001f��[[�-���\nl:\u0000�\u000b!�@= 3�A�o]\u0017V�!���K��\b���7����P%Q*��>�\r\bЇLL�A�Y��\t,(\u0010fʣAE�\u0016l���c����\nbUX�/q�\u0014�g�m-����d6�\b�c|�����\u0015�͛\"��e�\u001f\u001e\u001c�=َ����$A�\u001c\u001epp�L�:�9?���!���\u0005Z\u001b�*^\u000bBr���-i�\u0012Cn��\u0002v�,)JV۰��E�X��pL\t,q�\u000e� !8�H���Lta\u001b��-DL�\u001b\rU��[�0�g�ڣj��'Kǫ�\u000f@@\u0002Ql\u00171'l\nD�&Oj4�\u0019�D��c\u0012B�%��l\u0013�O\u000b����\u000f�a@^���\f9�V1n�;�5*z8��~I˼\u0000\u0001��)�`b�z��\u001b�����\u0018�\u00118h�f�FK���6&g�`��]S�\u0003\u000b���mJ��d`d%\u001b��M��W�7���\u0011��\u0003��\u001f@���;M�\u0010�\f��\u000bfӑ��AM�\u0016����buW]��\u0019�\u00035D4��SfoD�ݹ8��H\u0016]����%�y%�\\�����̋�\f�\u0014����ݶ�\\�,�Rfy^\u0006��1��jQ]��I:PV\u0007�jY�5�Z}ߜ��C��'�R�\u00185k8��\u000b\u0012u@��\u0018M\u0004,Ζ׍�}�G#mWL���S�\u0011U2/<4�\b�w�\r�;5\f\u001dW{���c�q\u0016Vّ4^��U�����\u0007f\u0002e���^\u0012̆(=�\u0014b�!�\u0017὞E��6�f�,��4���\u0004'H��\u001a�M#U�3*�pHw��U�\t��r&�%_-\u000fy����M�$\u0004v�\u0006��e���C�\u001c�7�\u0006>Ifa�p���:bw\b\"�(��\u0002�I\t�\u001e�F�u7^�X|R�D��*I��\"\fL\u000b&�y3\u0018�O3u›m{�AF�\u0016���1�P��\u0001��\u001a���/4�nɈ�'�C��(�V-;�\u0018\u0019����L�`~d��Fw˪�\t�m�UP�l�᥹�,ޏ��s���\u0005���{�t�\u000f�(W�/f{�b'�:\u0016FnI��`qo�a*|:R�V�O�g~�\u0003\u0018���Y�$�\u0002~5\u001071~\u0002���ш\\ꈞHGz9;�m��i=�PEe��;9\u0014\u000bߘ��C���s�\u001d�\\�6��\u0001!���.��2���\u0013�#i�Řk(B�\u001a�c�l]�����\u000b��4�3Rj�Y\u0015�\u0017\u0007�����D#�ۚ\u0005^0�K+sd��iF��\u0002\r`�{\u0015(�t\u001b�3j-��P�5`E!�C��3�ҷ��'���@��J'�!.!wD�����$\u0006�*�\u0010e\u001e�lC\u0017v�A2�\u0016���J\u0005�v\tL�h\b��Sd\u001e�;���9\u001er��ڛeN!��^���B��\u0012\u0014{^{NO�\u001b�0(\u0003\u0014\u001cLi��\u0006��g����,\u0016�o[\u000f�}\\�/����\b��䀩hE cնߌu�j��HP��4�M����0ʀ�Ke�l��\fS��x\u0010,\u0012�ض�<��~e!Ark\u0002�\u0015v�/^{�䥙�;Շq�F\u0016߯�r��u��.�ߟ\u0000\u0006��.��q\u0002h�Cx@�>�,�\u001a൐p�]M\u0011�!�����J�䉋\u001d�ڕ��\u0019\u001a��@�\u0006�\u000b�l7��=�\u001d�\u0007\u0006�\u0013V?����5����2\u001e�\u0002p�9�4ykR\u000bU�`z\u0003{��\u0001aվN�#�W%��p��MZ�QGt�X\u0012\u0012�~X��me�t�\u001e\u0018\u0001D|��E0��8�7���>��H`�\u001b0t�ҽf�@���&\u0015M$#w3o�k^q�6'٣AS�\u0016Ѐ�X��Ԋ��e��a�b��^y�%\u0004]\r���s]�Ǵq\u001e\u000f-\u0016��\u0012$Fyn��\u001a&����~q�8�ILC���\u0003��{�6�-u�R��\u000b�npG�Ӧ�_fGl�\u0018Ƴ�^�ű��\\\u0006��\u000eLU���>�\u0003���_�\\\u0001�_\u0002��<�Q2\t��.��9\u001d���ZՈ\u0018\u000b1��b�\u0018�#䨥��Q�]U\u001a��\u0012�U�r���Jv\u0002�V\u0006��1X��埊���\u0012+������\u001fY��5Z.a�ҲȠY�\\�,\u0006\u0005\u001eFJ�\u001e+���\r[\f\u0011�a�ad�YH\u0017��O����\u0000���\u0005�3\u001b\f��,t��ѥJ��M\u0012����\u0013d'!�U�(���vv\b�O�\"\u001c��\u0007=�\n\u000f{B���<(s\u0011\u0013��x8&�$kr�N����\u0005�A �\u0016��L��Z\u000f7d�u\u0005�xT��\u001dc�\u001f\b�@��J\u001dL0,�1�ª(��l��m��>|\u0011�o�6�A\u0016~L�d\u001e�o0F(f{�y�=��f盰������\u0017$@S�\nx��<�ڡgͰ��\u0017�\u001b1s��n�%$\u0005\u0018G����|�^��p�+y<\u001c\u0013l�8L��}�\u0018�\u0002�\\�0���{T\u0018D��qȪ���X��&\u0003x��\u0019ilp���N����B\u001dz*��j\u0014\u0000lj�dsA�h�g +�4�6��v�\t�\t��mo�ɧ�[��_�A\"�\u0016���X�^)'\b�����4��U����Q�Ł\u000b�vĝƕr'`��n�\u001fɑ���x%��8i�\tP�W�/�\u0007a1V�\rYU�$�\u0011q_��Gr����tճ�a��:i\u0001�ٯg�#\u001dk\u000f�9\u0000.��\n>\u001e\u0011}4��\tr�)B��*\u0007�q��32�h1!Ф�7����X���B�1�Ú�qbW���Z���׾�`�)�:\u0011�I:�[�ddA�\f��\u0002-�F)\\�C�ψ\u000e1Dk��\u0007!�\u000e\u0010��o�rU�+�\b��@ymX�,�M�E\u0011\u0018S�\u0019�`zo\u000fom{X��\u001e�F~�~\u0010�\u001a\u0003~\u000eM�\u0002��ߴ\u0014\u0011�H�nM�+U�����\u0019@�A\u0019�\u0017\f���brS�>�<=??\u0011�l�5EV�ͤ��\u0007j)�XA���\u0001�6%\u0013����Xz�W\u0001���K>�g�8�8Pq��m���F���$x��\u0016$S�HFw\u0012J�ɕor�h���r���߽+?�|���WB�*_�T�\u0013��uw~\u001e�W9�4����\u0010��B�\u0003G�qnd�v\u0015��\u0005ľ��`����|��q<�\u0013�CKi*\u0000���k�jq\"f��\u0011�!����F8�j�\u0019\u001c\\U3�!��nf�^��(XX%w\u0004�'�:�#)\f{Z'o�\u001dv�/�\u0004_`<ϖ�\u0013\\*��H���s:Ҵ=��4ez\u0018l8 v�&e\u0007[I�\u001a]���A(�\u0017 ���brR�b\u0010\u001fC�\\Z�C��\u0005j\u0005���D\u0017�A�\u001f�a�\u001a��\u0013-Aq�a8}$���Mx�_���\u001c%�\\\nA\u001fc�%n\u0007�ߣ�\u0016�<8�\r\u000e#�\u0013�)�r�\u00113}`V���E'\u0014��~\u0012�R\u0017��l��h�\u0011f K�=�sZ���A)� ��\u0014�\n�?x�q\u000b�{�\u0017�f�w�kX�Ƕ�D�~F\\\n�%�{�\u000f�=\u0000�\u000b\u0003ı�\u001eЙ9\u0006\u0003\u0003v\\��.���\u0001�W����#k\f,#���S󲇑@3,��F�Z@ߜ\u0004�&n�\u0017�4�+���5Wd��ߩ0��x�!\u000bN��gǺXBOϥ�#�\u0018�{C.�g�dF���-�¾5� ��q��A\"�\u00174��Ɖ�&ݭ\u0014��[��3L��a���\u000b�%� ����m��J�\u0001j]t\u0014��[>Sf\u001aӢy7��?\u001a�lXjL\"W0�$/65��\u001a\u0005�F5�U[�u��\u001d�q\f��\u000f�L��FE�D\r�ڨ�\u001dDۣCl���=���\u00021�K�u�3���\u000b\"\u0002�+\u0018���]�\u0017B|�O�����D�!\u0015�z��e� ��\u000f�S\u001cW�\u0002�`�\u0006\u0007#��\b���N�{J4\u0011%\b^�ܷm�2���\u0005\u0018�+\n��#�\u0006���WL�%��h^�=x�����(�I-���:��eE@�x\u0018�J�#$\b\u0001�=�}$L�P\u001aR�\u001f1��\u000f\"�>D`rՒ��5N\u0019\u001d��A.�\u0017H���d-��\u0012���gO�x��\u001f���ez�%U\f���:�O�<\u0000�W�Z\u001fOqƐ��\u000fq��dH�\u001e\u001eH�\u001d7����ʛ�&�+�?��gڒ\r\tL�$ẳ]���\u0005Y��h����_\nӂ~c�t2-���5@��:=��\u0016����\r�\u0007\u0000��z����̩�|��\u0010���4������=\u000f�\u000e�^���\nl����J��Y3�9�\u0010!�#���>�Q���\u001a�\u0002�p�^\n4(O\\H�ʰ�g����г�w7$�\u000f\u000b\u001f\u0005iZ�6y,§R|�!��a�)\bH����k\f\u0006���Z�r3T|���\f�l�AR�C\u0019)=]N���>�.��b_ɵ8�\u001aN��AH�\u0017\\��ƊH��H\u000f\u000f�V���B�\u0010>���iQ$�z�\b0\"�$����\u0015��(ߍ����\u001cp^y7\u001e\u0014i�\\\u001d\u001e��EZXW\u0010'�Ӳ܅\r\n2�b��2��U\u0011�\u000b��x�y��ݩ焳~��Y�!y��\u001f�����\u0018�R\u0018\u0012rPn\f\u001d\b�< l$N���Sg7Ⱦ�������^�&|��\u001f�}z}����;YC���v�\u0016�J\u000e\u001bY����x�I/\"�4\u001bE.�1�w-\u001f�[�v��5զ{�\u0006\u0011�m���,��\f���es\u000eq\u001c��N׫[��nx��{�\u000e��I�o�2‘�5=�\\��UX�\r��\u001bS|�L�\u0014�\u0001̊\u001d��G�q{\u000f��\u0001r��\u0019\n����\u0012JT۶\u0019\f�\u0003�\u0015'6����\u0006[2�T�\u001c\f��\u001e��AP�\u0017p���d-t^ixf��޴%�&V�o�e���Ŕ=G\u000bV>�5��M~%A\u0019TL�\u0013)���\u001bO�\t�K\f8T]��\u0014��׹�.v��B�M�#�U�^��w�{S�$\u0019�E�}�j̱��&�Ѳ@r\u001a7K�������KQ\u0000&�(�/��C�����ʰ���>,�Lsb�Q\u0019s�d�!�))�\u0002�>}�{�;s䵓4z=.\n\u001d��j��'y���v��~\t�8�\u0007\u0013O�%���LJ\u001f�R\u0003�Ҥ��M�\u001b�@��\u001e�fd��J���\u0006\u0016��ȶD��ڳ\u0005}��K\u0000p�;�A,��@fYy���r/b\\�mc=r'�ذY��\u001a�\u001b9\"EZ`�n\u00151�f\u0014Mau�� ��\u0016G\u001b���De!\u0018t�\u0019+[�υ܃S�ܼQ���Am�\u0017����b]�2�\\���7�>�b\u0001Q�[��V}\u0001��S��\\qL�K�d9|G������S\n� `�9l�m<�B\u0011`\u0016�@�\u0014�\n\"���7i.�h�s~_[\u0015�\u0014�]37�NX\u0018\f�\nAzI\u001a�\u0000�e�ʻZ\u0000�q�S�#�w���n��!o�9�N����Z}�\u0015��\u0012�\u0014�mY�-\u001d\u0012\u001d\u0005\nT��%ҏ�m\u001d���+(\u0018o\f��f�I1��YW?h�\u001c�\u0010�@l���f\u001b\b{|���\u0004�0B�����A\u0016mW��{VJ+*\u0002��\u001a���8\u0012sCz[�yET�W\u001e�h�\u00001\t/$����p�\u001e�{�0\u0000q֧=1jj\u0019�\u0014�'������$L���\u0018�F�7�~I�rh<�8�P���P�\u001e�<\u0000\u0016ܨ0\bw\rX';\u001f�ѝcQ������\u0007��v7�3\u000bl>�hK��ڔ�Ae�\u0017���\u0000]\u0007a!a�5�x1|�0������:�1<�GvIU�\u0014��ݴ��:�mj��'\t�\u001e�OB2C\u000b��\u0012%��-�}\u0012��t~\b ���6��t�ֺ�;��I\r�˰���T]Ng��9�cI��W>��T��D-�w�5\u0003\u0007���z)���N�݁x(����~�\u001c�ט��\u0006ܞ�Ʀ\u0010ԅ�(j\u0003�\u0007�\u0007�&j�?\u001aC�ڸ��.��L�\u000e��6��}��j\u0013f�k�~�X{�\u0002�����\"\u0004W��$I����cM�*��@�X������\u0012w���\\lIRF.[�dh�\u0019��\u0004�\u001a����m�Nm�\u0013�t�z\u0011͠���2q�i�G�5\u001c4��5��� PA�DP�,�c�,x��7�\u0011r)�\u0018B\u00068���\\BM���NF[t��Dr\u0007\u0000�.�Hϥh��\u0014�Aa�\u0017�����\u0019\u00158ZR�����\u0016t˵����S_CoD�\u0000ς�Jf�>�\f\u0003r�L\b\u0000w}���\u000e\u0013E��\u0010V���~��L,u[�d���\u0017�\u001ax�g�x\u001d�\u000eBƎ0J8@v_�&L��.U\u00184�d\t+�\u0016I�jl�\u000b5�׸j6�l�P���\u0011���k\\S�/dpn\u0005�\r��\\�3�h�_�I��\u0013�L���i/\u0000�\bx��\r��D��\u0010q�Z\u001e8��p�\u000b?�� y&�#}�e��\u001eb�09��VS9��ZW��N\u001a\u001cn\u0005\u0018���u\u000fI\u0013k\u001d��w\u00116�BS��'�~���Y[�,<�@�pL���8s!��7\u0015�\u001c��-F�V�;�2-��zFz\tH\b�(yry�R4���u�\u001bM�,�\"�~ȸp��1\u0002�k�AOnkv�SJ8\u000e4�\r�\u0001\"n=�`>��-���\u001aM��Aց\u0017���}�iM��\u001405��\n�]‰�[x)�uq�j��\t����\u0018��e��\u0001��\t\u0000��0z�,��g�F��?���/��4$f\u0011x�n�����Uo]E�UR���\u0019�7àW\u001c�o<ҡ׎U�A\u0015~\u0010Œ��p�\u0005�<��\b��1�4�\u0000�\u0002�\u001a�SȏJ]\u0017��~��h}\u001f�\u0018Os\u000e\u0013���&�\u0015BL)�*�J�\u0019��:*֐�de�K�)�ϡ07ߑ�e\u001b�\tkA��f���\b��& �WVn��7:�ř��{,���\u0000�\u0016�m�)|��B��\u0010���\u001c\u00103�\u0013E�1�\u0018�8�к��\u001aU\"b��\u0018��\u0007�\u0000�\"�Qs4 af\u001dB\u0019\u000f��O�\u000e,���\u0012#7�\\���fB.���Z(�\rl�F�w�\u001cyu�詂��l/���\u0018��B.�@ _$6JPС��1�bX�1:Gj3\u0004}7r\u0002\u0011]N;\u0019�v������`q��k�A;�\u0017���v\u0003��,^\u001d��`����\u0012õ��b�\u0013��\"GYp�w\u0014\u001e@#����E8�\u000eѐ�4Mv\bd��u�c|�\u0000X)���\u0010\tp\u001b�я���vŬ1?��k�5yA`n�G�l�:�n��Lr�V�bqјIJ݆/�\u0001�����i�P���,=\u0002-Z\u001bSD�`�\u0018�\u0002O\"\u0000�\\�ym\u0014�љ(6��T֩廣\r�\u0018QZBZu\u001d��\u0019r��\u0001Y\u000fDc����谘���_���[���h�%�\u001b�cqh�X\u0001[)�3�\\<�\u001d��S\\�5\\�%Êz| \u0011,�^\u0017�i�}�{M+m�A�x��Lp��R%Q������d�9,��\u0014ld^\u0014�\u000f�Q�ۜ>�\u0005�p\u0017;��\u0002���n�i�AF�\u0017���L���W�@��+��$G_<��Ń-D�\u000eJj�Y=O-�c�'QYFmm�֩�\u001c\nv��b#�JuWo��\u00198F�ᶹFb\u0013��࿚#RKh\u0015\\N��\u0013�1�%��f'��2K��n�\u001d�&�F\u0011��f�0|{�[\u0000��� 5�\b\u001d�pO��y&)\u0014���;A\u000e�Q��h����\u001bx�\u0017c���[0q(�\u0011�\u0002�'Ńwp�֖��6� \u001e��H���l7��0� \u0018��Zy��7�\u0004�5��>\"��S��P��ǀ�<��\u0019�?�\t��PJ�aDG|�HW��sv \u0006ܐm?�~�q��F�-Wp���ՙ����yH޿4��\u0003\u0005k�>�2\u001d\u0015���\t�J\u001dɷ\u0015�e)�N6�|\u0011t��q\u00120��AA�\u0018\u0010��ۺhӧ��\u0007��H\u001aH{�����\u001b��\u0005FA�w\u0015���\t�K8�\"���\u0007\"#ΰx\u0004�Lh�m�\u0018%�%���ݧdx��*~�TZz���\u001dH�5e�W8!\u0013\u0019��R��\u001en5M/�C��\t�\u0011jTg=‘�ew�8���\u0007I֎�c�\u0013�e�v<�������\u0005w�2`\u001c��?�\u0012�=\u001fR�wT\u0002򊾗�fTNQ�\u0004�H��ٸ�U\u0006rr�!S\u0000c\n�\b�\\��\u0007\u00139��� ���\u0018Z�⍇�V;�1O~�1\t�\u0006�M�s\u0000��P��1��N���/n�SNG����!�e��dR����f��b[���q�\u0011!�R��k����[3���\u0017�z�6�t��e�A?�\u0018$��۷��H�}r�c��`\u0001�k=\u0014��\fp���\t\u0004\u0004ޯ\u00187�\u000b'�~`\u0007�A9ɏ�%\u0003��*�E���]j̜��9�N}8�9���Ӻ)L\u0016\u001d�{�cA��\u0007;�Tg�@��xF�\u0010HF<}(p�@�As�\u0012H�}���c�]\u000e��O\u001e�@�4�<�YMK����6��-&B�x��iK,�,�w\u0016��~���?O\u0006\u0012g^��u�!똫|�\u0006��As6�\u0002��u�֜\"�\u0001��0 ��9�>L'+��\u0004J1�,�J�F\u0010�2�p�\n�\u001b\u000eÏ�g[�\u0019',�T\u0001ܦhY�\nV\bv:h�\u001e�+\rz�S���w�߅Ge]ש«Ҥ\r��VhQ#Y���\u0014\u0003�Bo��b@�b`�S\u00009���Ҕl�A؁\u00188��L�\u0015��zM����e�W�H��3O`i,\n��\u0019W��\u0006�{���W?����U���o��\"_��M\u000e�\u001dU\u0016�;�H=S\u001b4s�\u000b�\u000b�����5@\u000f�\b/�0i\u0011���!\u000f\u0011���M�\b�Q�\u0014����\u000b��gCՃy\u000e=o����-��\r\u0004�L�'M��5N��O#�X!���>�|�\u000eCB^�l5���\u0016S\u001c�\u001e�&ԔQ;\u001e>�0�fRp�p5�2�9*좜��2�\u001c&��kyM�n>)��\u00013S\u0012��_��\u0010\u001dx\u0011n�}�K�\u0003�����C�\u0012�P�\b\u000b�l�pU�g�*Yu\u001b��\n&l5t��B���G�q\u0016�3\u0015n\\Ni�{L�A��������a�]�O�\u000eȯ\u001e<�.��,.����`����d�p\u0010�J�\u0003e�/{W�'���t��8'�#B����\u001a\u0012V\u001c�(\t\u0011\u0000\u000b��E\u000b[Zo�Ehl@\u0015��\u0012\b��\u0002kcZ�{��-ot\u001c��\b�}y�Ο�_�\t�Fl�a\u0010��0:]u\u0003�p@y����E��H����\\�2�[B�1Y*B���ftBwW���+v�̱�:��A>�\u0018L��L�='Af+�\u000e=�\"s����)��&Q���\u0015dA�C\u0007��U�m\"x�W���'���ĒХ�ib;1��� \u001cER���`V�>bct�ғ��8�\u001b�R}�� �U\u0005�<�IJ�\u001b�[���Y\r�s:���\u001c��1���ݬ~���G��\u0011J�\u0001#V�\u0006�M��$�{���E�\u0017_/\"\u0014�9K��\u001ae\"�a�77}�B��ك� ڵ�x�\u000f��?\fa��C�;���*e\u0014ߵ1cZ��zH\u00072�{�h��hPN��%)_X2�+\u001f\u0001�&���e�_��\b�- ��Y���\u0002\u0016�\u0019\u0000\u001d>���ѧ\u0010]N��-�@*\bO]�ۤJ�\u0001c:%�/?g�!���o�r0\u0016y@��Y4tW��WM�ѣA7�\u0018`��L�5�K��q�R�����5ު4)�\u00142&T�{P)�o��q��#DO��;��Ώ�*\fp�\fZ:1a\u0011�K�\u001c�܎�\u001cJG\u001c����w\u0001AC��ELZn!h�M�F#��@���\u000f\fN@��J���&�!q�\u0004>\"?\u0000�\u0006È_��\u000be8�i�\u0006\u001b���M�\u0014 (ӕc� �,\u0017�wH�HYX��{�\u001fq 5uZ��k(\u0013�I3��҈�f1��Yu�7��H\u000b\u0011\u0015yd��\u000e�\u0005V�\u001c�1!���2�|PE;\u0016��&��\u0005�ͺ\u0006\u0017΍�ɳ;��0�.��?�NV�\u001dcT�\u0002�~����*,]x�/��E �gk�\u0001�W4^�j��\f���\u0004\u0011)K�W\u001b!8��^�\u0016(9�HD\u000f-���j\t2��|�\u0014AN\u0007\u0001�x��Ϯ]\u000b����wJ0��\u0006\tbW\u0003\t�گӜ\b�\u001ev\u000es\u000bbfe�XN���a���x\u0001'�q\u001d\u000buI�:\\�f����!�&�+?�\u0005u\u001e<\tL�օ~�;���as�(�0\u0000�+Y\u001c!�= �#�w\u0007�h��:\u0019��q� RG+�$\u0006��U�R�/q���\u0006jA� ��mZ2�\u0013b�1�\u001aH��\t/�υqZF��V�doC�8KxF������V6\u0003\u001bۂs���\u001f��+9{�2�P\u000b���AJ�\u0018����3�zi-g!\u001e4��&@_j\u0018����jbV\u0002\u0000�k��� ��:��#rN}��h3��)�`B��o9{�\u0017�g��\u0001�X\u0013�:x�/�94���H���\u001cۨP�2��>L�!�V��ѥq�铞B�LB��\u0015\u000f�=��Ĺ�E�p�\"_��\u0000�_���,D\u0003r�$�(\b![�����\u0016�^�\u0010H�\u0014ܜ�d�o\f���R���( ύ�Q\u00074W�\u001e\u0003V����~�9e�\u001eVa�\u0014���bƐO�\u0004P����\u0010���)�j�p�{hD�\u000f}������\"�׼�,\u000e�\u0015O.�TZF����)+��Nt�V�!,I<�\u0014,�\u0019�p�n\u001e�\u0011Ң�m���Wu��F��^Z��\u0019D\u0016�\u0016O�۝�\u0004�����ƈ|ðţ�A=�\u0018����0ح�+29�WsFm虤���I�s��`\u0012�CU�q��^ȋz������9d-L�ԋ��V͍��~I�1��z����2p��\u001eB�$.��\u0013�Q^6p�y�m�D��\u0011�\u0012\u000e�\u0012��\u0019=�`�d�‚W�\"�t�D�{�w�pG�k!\\\\;+���I,\u0012�U\u000e��^3��[\u0001�����O14��\u0012OZ�j��G\u000fО��^w\u001e3K�8�\u0014�W�w�\u001f�r�\u0003�i�0\u0017�S\u0001\u001260p�TƄe;�&XP���\u001e',�\u0004��s�C�f�:.�V\u0000ؘ�����$W�����{�.0�b�#�L\u0003���o�\u001c����\u0018Z�\u001c�%ENQ������\\BO�i'R�Y-�ʂ��ɺ)B����As�\u0018����mi��$%��{\"~`S�V��aͫ��\"'�[\u00009��m�y\"[�b���Ġr�6w\u0014���T������°p�Ql@fȲX�u\u00064hTq\u0002�p�a�CXO\u000e\u0013@H4���\u0002_�̀4ԌR��-��%��yM8\u0014�7\u001b~\u0011�>|\u0004�u\u0000�\u000f�\u0010��\u0013Љ��Θ�M\u0002am�R��(�6�\u000e���\u001fe �Yz\"';���ꙍ��3\r\u0014��\r�T$jS��\u000f�P��@(-\u0003�{{��D�]�\u0014i\u0006A�9ߑ�`!�]O��I�M\u0000�'�e��K�]*%Q�4�{�[\u000f�S�BE<�������E�\u0003�EsӮ[�J�!ل�\u0000'�+\u001e<�F��\u001c,�\u0018%w�b�֍�;��#�-��tO*���v�AQ�\u0018؀�XЧ�P\u000f��^\u0006=��m�jZ�\u0012�-\u000e�\u0018XFY�(��\u0018�\f��)�j=2����{)�Q[���\u001d[Y��\u0017fxԯ��\\1TE�@��2��\u0002�7E\u0000���z\\����\u0001��K��Dnӥ�ݶ�\u0017�@�E|�k?P\u0013��٢���c\u0004�-Øj;\u00001F@����t:Cܲo�h�\u0000�A\u001b�\u0018�����\u0000k\u001c%_>N&N����I��j��p���\u0004\u0006��#����~>\u0017\f\u00105\u000b\u0010\u001e\u0001Z�\u0019׍p��׮���@�,\u0012gʷ`\u0002��r��\u0019\u0015���;����0�=+��\u0015po`�#x�5WP4�k�y*@\u0010&��[T\tW\u001ez\"�X�G�\u000bP\\%̷L\u001e��ۆ\u0019�`9;\u0001SB&����\u001f����>�\u001b쫷ly'\u001aR\u0018ԸK���\u0005D�d\u0010�BIr]���Me��ܻq^��\u0017i��ye\u0007gG���r�emj�9�F��G�<+�\u0010�U+�J��\u00144X�e�$*E�\u001e��ڍ*'Yaz*mC���>-�h��\u001d[v^��Q��䁣A)�\u0019\u0000����(\n���\u00199+֚���jx\u001bf\b�\u001d\u0018�\u0007���v�oa:�*�\u0011\r)\u001f\u001bO�ADr��֡vOIL&ƾ\u0012�\u0010kS˕�KB=2�`�d\u0019\u0006��t�\u0016\u00181\u0017lĶ*��H*[��\\�G��\u001eU\f��\n��yg\u000f��so3MOR3,�w�\u0016Я�6:�~�F�\u0005�E���s��я�m�V�&=�i\\B��\u0015���V�\u000f\u0017¬�\u0011����ރU~t\u0012�\u001e���\u0004\">�ɍ�#}�!\u001a)�R��\u00142�~,f��Z_\"�����r\u001b�\u0000��W�\u0013��9=�20\u000fߏ\u0019Ħ�,���\n7��a�\u0002n�d��S��Re�\\����d�P��ı�E�XQ�_��\u001f��F��E�+Ӣ\u0001\u0017VkJ4��}�|�(����f\u0003}\u001e#L�Y��oI��\u0002�ܠ.��\u000b���y�'��F�Ziv�NJ{�\u001c\t�Ѡ\u0018\u001b�����\u0015���4��W�rZ\u0006���Ժc&�J��u�\u0002p�s��~\u0014~�Z}�\u001bC\"l�=`f�=GCe-��G�π��&4�cC�!��>���!��M�\u000f��lS/#\u0015\"E\u0007\u000fSi{�:�(ˈ\u0013\u0000�\u000f���9X0�6,�T��\u0014pyrF�ϝ��B����b�AB�\u0019(��L�� �+�nYj�\\\u001c�\b���F��AR�|\u001f�\u0005�K\u00078h��/�h�Y&�<:\u0006�%�/��1�\u0014�\u0002}B��<\u0006��R.�g��\u0011#_�r?����+��Y��&��=20'\u00110�.��C\u001c��Ϻ�dyp�CY�\u0005�Ծn���\"\\�rs��>F\n�hx\u0013�\u001c�?^=�{�x��[��^ٷ��67i\n�\u0017\u0002�u\u0016�Ǽ��L��Xu��k\\��\u000f�e;�\b�\u0016�1\u001bz��k2�\u0006a���o�|��B6r�� ��NH���\u0006�\u0015S!O��u\u000f�\"\u0006�D��Vb��#p�F7����\b��kAu\n�\u001dP��AO�\u0019<��X�\u0003�\u001do�q�0��\u0015�L !!�g�%mP�m�m3�h��\u000e��5�j&\ru��\u0012U�8�<���s�\u001f�;]��\b�@�ܠ�Xa�\u0019�C\u0004\u0016z[\u0015�#\u001d)q\bl���,\u001e8O�\u0017P1��Z��j\u001eiȮ�\u001e�w�\u0007�\u0003�y�[��Y�I\u0012�ҁ����\u0018e�\u0012�����gL�=]�\u0015ޭ�\u0010��u��!�mX�[\u0012�&� \u0010�C\u001aut\u0004�\u001f:$P0��\n*Bi3cN\u0010����\u0018��e���߼m6Ԍ\b�\u0007\u001ax��R����%\u0017��\u0016�\u0006�vaz����\u0001���*��i\u0013@�3��l���$dc�dLt>b�\"k�-�\u001a\u0001q��I��3uqUC��\\$��v\u0002���sĠ\u001b����tx(���]'��v����ߚ��d��ծ9<��AC�\u0019P��L��jr~�?�\u000e\u0000XN�����{��\n�\u0002#�W��Fd��x#�L����=���k�A\\�%9�����qT�}\u0003�\u0018~�ZP�a��B4�I^��^��|_�^O�Y\u000b�A����hv��&�s�:�|>����7�\u0017��˔Q|eaj\u0003s�\u0003�6\f�C�U69�Fl5�_��Z5�Lv��\u0017��2�q�>�#�v�\u000e��\u0012��H\u000f�k6\u000f�\u001b�a;1�^\u001eE\u0010�_\u001a��S݁)Q2\u0002%�4F&d\u001d�\u001c��\u0006a\u000e�}P܌R�N�\u0016��*��B�EFvi�G\u001b���?�4X,d�#M yO���\u001eE�;�㾊�d������\r�\u0014�\u0000@qy�\u001aiL�ї�X�EX]���\u0002���09���\f���\u0019�d�A3�\u0019d��L�����z6��J�\u0006ꇰ5��(�{\u0012\u0011*كyu:g�y���s�n\u0014%�����?\u0007�qigv�1'�\u000b��]��\u00030��b�\u0019Х\u0003E`ɜ(�\u001e��uw�\\�6\\�jV\u0017%+���q\u0003\u0005�X�l\u001a������\".+L�t}\u0010�hB/^#�F�-���à;ֻ9��R{�\u001e'�C�.��0F��@�K�עb�9�a$��*���'\n*���g\u0010��M��c\b���cJ\u000eo���?{�Gk��\u0006�\u0000��p���\u0004⃗�� \u000f\u0015nu�X�F\u0006�F�Z�e�^_J�|W;���\u001f\u0002\u0000�;��\u0005)@g<�\u0000\b/�E���Uҟ�y\u0005��\u0005B�:\u0001\u0011\u0002=*���K�X�-���A��\u0019x��|��\u001d�n�@��CǷ�&Z�'�\b�%V������k�F������-\u0011]\"�|l��\u0006::��\n�9�%�i\u0002���F���(��g)\u0015?��\u001f���3.�M&AŜ_\u000e�zuAn��\u000e\r�j�\u0012�g��TQ�V%������;�2�:><�S�q�\u0014�?%�C2���+Z�R�_e�v�} ��V��\t�S\u0006��!�\u0014WL��b-�\u0010\u0017�%}�?/�|�Д����ME��DSI9\u0012�7?�t霿\r\u0018\u001b\u001aⷂ�F���s�w\u001ac��6h$�������yB�A6��\u0016E��!?e#h\u000f�gu�/���aX��\\�\u0012^4\u0019�'���\\\u000eu�!��Cl\u0007l�+\u001e.%�<��ԉ�>]\t\u0000B�\u00132@\u000eO�\u000b�̚Q8��\u0014;�����ݹ�\u0014��5�=\u000b\u001ad�ߴ34#ϑ����6���J���\u0012���\u0019\u0019e~��|�\u001d�\u0000|?⳨����S��\u001a*5\u0007��%��b/(�j[��Ч�\u0001��G��I,�o���@�A7�\u0019�������rfa,L�h�E��\rH�tsȾ\u001a~R\u0019��C�k�\nfZ�\u001c\u0017x\n�����8�scH��z,\u001d\f¬F�mu\u0000R�L_޿�m�a>u\r\u0001w���)YI�$�$գ���\u000f�N�\u0010-�\u00186p�E�ɹ�Ek\fe8�2�y�;����b�Z\u0007�M��\u001cَ���-����s.�{�K�DW%��\u0016����=R�(�j�o*�&�\b�c�&oH\u0012��YL>�{v0�\u0016���$�\u001ce4��ɶ6���\u0016-s�\"�7@]�p��\rH�\u0017��\t�����lM�9dZ���)u�\u0011\u0015:�]�\u0001��3�\b���\u000f�\u001a|�sn#��xQ���쯰�;\u001b���VF�ۓ�M.U�k^�\"\u0019�\u0002a�A5�\u0019���2,��\u0004\u0013Lu�(�p�b�\u0003�E�\fE�w8լ�B���vg�\u001d�68���\u0006�^[蹴up\u001fTr�_\u000f��z2\u0012{>\u00025�[y6�\u0004��`\u0007�P��\u0006��ڪt�z�\u001e��#v}q|p|0��2�%�\u000b\u0011S\u0014�H]�\u0012j'A�:^\u0002u���m'�M���\u0015���g�\u0017�;���q+���w���p/c�()��y�1G�p��/�(� ��\f\u001e\u0015�\u001fQnoq(s��\u0014\"�\nhv�X��j��\u001dy2\u001cfc�ert1�\b��g��+�\u0007�:�2d\u0007-R�\u000e�Rq=��r\u0001���ݍ�4��\u0003�j�O�Ѩ���C�\b\u001fl��=�l\u00029��\u001c#L/$�:\u0006����0#��(�m*���A<�\u0019���0&o��LD��̏�v\u0014�wϼ\u001f�������\u0016�\u0017h�ȯ�ʊ���L�]㎠+8\u0019O��\u000b�C?�ȕ\u0005D[ڇ�l\u001an9\u0011\u000f����V���\u001f�bl Y�@d/s/XR�\u0013��\u001bź#�>�,�ǼD:d,M�:���\r�CK��5�퍷��\u0003-Q�������q\u00064��x���}\u001e'Ja�3�W�\u001b`\u001d�mDD6s���Յ�?�\u001a]vz<��\u00069c:��r ��j\tp��0�\f:�ϙ?\u001fe\u0018�\u0019J��sS&d=�C�\b����6��~��\u0004\u0003��G�\r��3�{\r\u0004��\u0007�8�x�G!\t�\u000b�U��ا�\u0007�\u0010]�Wlh^��őc\u0015\u0005=�j���Қd�%��KW�?��9M\u0000�A0�\u0019Ȁ�XXY�/0�\u0007��\t�qd0�\u001f�2�;S\u0011=.�\u0015\b�#�{\b�h)X�\u0015�\u0019އtW�,��1�\u0016l�\b$1Y�\u0010�\u001b\u0017��٩��\u001b\u0011\u0018H\u0013�Uj�նH]��偱�'�x�E9�$FkMMg�\u0012#�S�ń�A��PN�q�w\u0003�\u0011L��3�}p*����J?��c�'V�ei�y˟Z^���M��<1�*\u001d�W�\t�hM�2��ӵ�,���G&M\u0001�ۋ�\u0001\f����5Y�\u0013��{=�RA\n�>\"�\u0003L�\u0006\u0018��\u0000\u001eA>2ꂓ�C\u001fZ<�1�?�����}d����B�R^������Ù�|#\t,Ų\u0010fq>?{aK�\u000ed\u0010FG�\u0019Vy\u0014��\u001b�#�:a��\u0011.�-\u0017�}��^��v��zkh\f\u001dk\u0014:£Ac�\u001a\u0004���^S`���\u0002��LR\u0015�廌�\u0019�P\u001a:��<�O�\u001e\u0013O�ȅk\fj��r�]Zp�:\u0019�7W��\u0015#o\u0000+6���nfJ�\u0007V@s��8V\u001e ��?���2K�,�)R��/\\o~��\"JP��ɲ���X�o�zU�\u0011U�>�V�C9�\u0010?<��x��e �A�y�.S_1�`i\u0010�;<��Ls�*5�V9:\u001b�\u0007\u001aL��W�\u0015ߣTU�))�j0�V����0������w\u001e��$\nC{r��7���·�]A����\u0012{nj�S`\u001ba\u0016�@�\u001dJ�߿-CjƘa�С�y)0�e�˹8����\u0011�\u000e�\u0015�e\u001c�J��Bz�#�/�0E\u0017I[��\\\u0011��\"��s\u000b磨\u000bn6�t�ώ�K�\u000f}��=�WWs�\u001f�&(�K\u000bkMND#��.(����6�hz��xF�]/�o�3�\u000f4O��_Q��M\u0001U\u00173�x8\nT�)����֋tX���5\b\fE?�m�~�\u0014��\u001e!�fA�Ak�\u001a@����6\u0018\u0002\tw���:b�57���S�\u00117a=��\u001b�l\u0019�����r��\n\u0001\u0002)\u0012\u00125\u0010�4.9�i�g]\u001bխg�ad���\b�:c��{j\u0019!��i���\u001c�I\u001bV�5�\u0013'�,�0���z\u00078 (\rsB��̠���w(T�X�\u0001iˬ\"���^\u0000E�o\u0012\b���t5<=Y�K4�C��d�ݹgN*\nHH\u000f�w�w_ յ*a��\r�\u0004���L7��+�����\u001aȪ�a>�\r0�q��A�v\"r\u001f~��b���7�\u001b\u0012�m��x}\u0010�޻#�d�\u0007�3[��/���j�&J�0Q�\t��\u001a\u0005�4��X��Ȅ��晱,�r��'-�\u00199\u0011�J�I\u0019\u001e��,�Y�%r�x16y\n�\u0007�}i;P��1����Ȟ�8�ee��\u001e���^4�>�\u000f;f!D�o�vM���T\u001a\u0015g��Bf\u001eA�A^�\u001aT��0�\"\r�i���\u0019�ggn}��\u000e�\u001b��Pt\\D\u0007E�T\u000b#��i\u0016��L\u0013�z0��~j����?\u0015L�n3���σx$�\u0016獘np����k�F-��4\u0012i_�S����'�ZNҞ���gY+lf��\u0017�\u000bd��#$�\rcy��\u0007Ԓ�j\u0011�U�S��D���[R���+K\u0016[x\u001f\n\u0002h��O\u0003�\fO���A=5bTh�B<\u0000z\t�/��\\�š�\u0015��0�-��?�%���\u0002���Έ䆀g\u001f��_���L�\n\u0004xi�֋RS(��|��`?CK�SO�o>b�!�RU�a�\u0005��\u0003���\n׳���xЕ\u0004��\tFa���\f��)�\u0002!i_��>ݱ�f��f���~��\b���>�42l��a�z\u000e�`܀k�\bj\t&��\u0019\u0013y&E\u001f������\u0012-��\u0000�AX�\u001ah��\u0006��F�oN��4.��\u001fʼn\u001b��NDE�7*�mf\u001f\u001bT�\no\u0010`\u0002͕����\\��u������O�9�.�)�I�\u0003\u0007�\\����&��p���\u0007s�\u0014�7�%��A�r&Y_\u0017\t��\u0005��\f8��l}):��\u001a�Ԅl�^\u0018c�\u000f�\u001c%|lI\u0012x\u000f�1�WĜ�׋\\�n�q�/�K\u000e,�x\u000b�A�\"�m*�R��B�c\u001fL/j\f���)`\u001b2���t�4�b�y�\u000b\b�'�\u001dc��j5јRq�Y-������Xt]�LyLG&�׼g�/Tg��_|e��=cF��?7�����\u0010pE� $���`Cț�\u001b�)�\u0003���E���T\u0005�AhS=�,��`[T}�W(���\tj&�\u0013\u001a_��\b\u0004A;����R�\u0019��@�=�5y\u001f9C\u0006�\u0006�AY�\u001a|��\u0000Bw��vW�.�\u001a\u000b�=Ȕ��2\t.-=�Q���,^�9��1��\nzxcw�q��z7r�+gJzX\u000f\\�I�B�;\u00115Z ��e~�$�o��\u0007><�c�\u000e�s{��0�����X ��%�?\nS�p����\u0000���]ʾ���K���ڴ@��\u001fʂ�\u000e!\u001a��c�\u0010(i��;a\u0001\u001f��W}\u0016ݓACnE�\u0014M|\\_�Kv_jpwĘ~S�\u0006�V�/.n�\u0016�*���\nQN\u001faqm\u0006�\"�����C^x���O�=̎��\u0006(BY���lw\u000e�S\u000b��Cz�\u0000cb�\u0001Ji�v�4��*:BQ5\u0004%]zy�*��V<��?_�\u001d��V�D�@��u�\u001a��J6�63�l��5����|Y�bі\u0007!���9��F�?qЛ�B��O0&\u0019�#XO ��AG�\u001a�������<��ZЗ\u0002��/�Hҽ����@^N\u000fIB_\u0017��\u0014�\u0015\u0004O�ރ�9D�fdAO�?\u000e\u0011�Gˠq{�\u0011\u0014�b��i����C\b5E�h^Aȥ�=�;���!vp\n� \u0007�?�#մԩv�\u00117#@��\u001b\u0005�>�,FzF��\u0006\b\u0000��X}J�T'U��\u0010��\u001d�W$z�J�����`�\f+\u0012ơe�\u001e :ޒ�|\u001b3����\u0018�-�\"�? ^p=F\u001e|��\u0003���2�Uw��\r���e:�y�v�͌�� z�\u0012��N�E\u0010�.;��`����&˯�K\u0016a�\u0006o�Y��R\u0004J\u0006�L.�P#�\u00117'��abZ%j�5\u0011���n\u001b\u0016}\b��c}x���aC��۽�ο�u�\b.��XN?�(\u0013���\u000fo���!�Ae�\u001a�������9�\u0013_���⻅����\u001c8��%�Ģ]m.�i\u0015�\"\\��T�z:�F��ϱ\b\u0000�;\b6��x^\u0016�l�?\fe��t5(H��9D�H�Z��rcI�(�\n>s�#��џ��\t�\u0015ɪ]�\u001c:i?�6\u00005�\u0017Q�\u000b6�D�\u0019OE���$�YF-e��%��\u001av\u000f��,�\u0007�#���A�����[�a��\r\u001d���-+x�J�fה.�{ZLYz~$��\u0000�\u0010��\u0002`[\u0018�C\u0007j�@��k\u0012�\u0018�\u0013�\u0018���Q\u000eh\u0014�'\\�Aw|\r,@�ꖹ�19��NE��3C�\u0002ڍ{OB\u0001���2Q�Q\u0015�L����\u001fN��`3��\u0018^�*���v1�$��(ƒ�8-uP�W�_,\nx�\u0016Ӳޒc�=�i\u0018�\u0001k��a\u0018\u0017K6�\u0011�&z�,\b\b�l�+sLll\r�P�F\u0001�\u0012q�B4�\u001a���}�f��\u000fϜ�\u0016��\u0012\u0011�\n�\u0000�\u001f�Ӱh����\u000f���\u0019��1]p\u0015j�'>�\u0003r��Ɣ��Mm�Lye�n�2���\u0019�\u0015�V0��\u0015VA\r~=-��U�Y2�_\u0014��b\u000b9t5(E�,裃I4�\u0003�\u000f�+��\u0016�`��Y\u001dx�C�#���Õ��#Kj^q��\u0017E�8�!��\fT���o�z!S�\u0006��\u0015b�\u0002��6'\u0010<=�b���l�*�x�����ʙ�\u0012\u0015.a�F�6��^+�ٌ�*�1�\tg!\t3ş}\u0014�=�?v�y�G;>���}\u000e\r�d��ы3�\u000eQ�6��CH!��\u0016�07\b[�U��\u0011\u0005\u001b\u0005p��AA�H����\t�##���X�̈L��X��]��2\u0012=�\u001c%�K*'\u001f6�\u0007�a�=��G��\u0005l�#�U-���\u0012`��\u0003FQ�\u0018=\u0016\u000f�\u001f֨TA&\u0000�6zP�8Ŕ^���a�+��e��t�)e�ё��#\u0018��q�f�hQ\"<\u000b�'MtA�ǹ�2}�k\u001c�o=�i�Ø\u001ea�IdP����\t)1Ӂ�eD���E��hpa��\u0013x\u0010�{���J���j�=��{������\u0017��ޜW�b\u0012�+���0��\u0012��yٶ��\u001d\u0000�Koq�Mۨ\u0001wb� ��]�ŕ�$�4q#\u0016N~\u0010[�\u0000��f2LBy�2낥\u0002\u0013�Ab�\u001à�M2�����8H[s���)���⎠<ūw\n���8��\u001cӣ.;�\u001cd�\u0004�ȃDe��^A�Yo$&\u0002q\u0011\u0002�*��\t��=�t�tS���\u001a\u0013Yf\u0014��]\u0013�RtE>�(\u0002\u0019�\u0002k\u001f�9\u0006p�\u0001L#�k�{p\u0005�\u0003����DT�%�I\r��‡F��py{�S\u0019\nn��q��ƪE��ss�t�ĐE\u0017׶Dʊ�\u000f�ߢ��\"���_9Gm<�=\u0014�Ƙ%d��|e\fg$ova\u0019s�\u001c&�A�f�S\u0015�y��PO޾��s�VG�='\"��K,�xڛm�32+|I�%�+ޅ\u0007ü�̍#3R\u0014Xح\u0010Ѿ-��<�����>�\u0018UӺ'�ދ�_�\u0019\u0012�o͎����!���\u00147`�Fe��S�����sX�\u0011`7��\u0005J�t\u0005���f��n0I�O�\u000bs<\u0003\u0007\u001dv�A\f�\u001a���M|�!�*�x\u0014������(P�x�VZ\u0018r�w��\n_J6�eی\u001b���{\u001f1׆>�\u001a;m���\u0016���Vl3J�-���|�,\u001cؙ 7\fm���\u000b��9ߣZq�\u001f]r��Gl��eq?uѿئı3�\tR9�͑\u0018\u001c\u001eZ:0$(\u0011J�-��\u0019�[�;t\u0016�\u0016S��i4t��8�WIQfN���p��H�ۜ\u000b�\u0015~�i�W7�i��\u0004\u0006�J~!;� ��\u0003\\C A��t�EV\u0000�\n7�zK*�������TIV���d�U�\u001d�WEl ���uҫZ�\f�\tv<�1��\u0002H �$�\u001b\u0005��?�A\u0013�\u001a��L�#\u0005��{]˒\u0002����\u001e\u0011k������u���wp���MQw�\u0004F�R,3�����\u0017\t^�G��(\f�G?��\u0000,\u0006�J\t��>%\n�9̣�nx0�?�o&|܉�a�\u000e\bY\u001c��~� \u001a\u001a�� kW��\u0013\u001c��K�h\tҳ\n��\\\"$��:��S��\u0019m�10W�\u001f��{4�\u0000N�\u0002�*������\u001c\u001a��l#&yC����.\\�����~ٔ��\u001e�3�F\u0007/����\b\u000f\u0015��\u001b�]��Q�U����f,/��:�d�Tb���@\u0004���\u0003w�:<�$K�\u0001�;���$-\"�y�\"[)��G�<Ɂ-Av�A!�\u001b\b�����M�`�M\u0015�$-��Ч:ң���\u000f��[�d.!\u001c�cTP�L$��T.f�\u001aW\u0002\u0000�~���5+p*�0�(۵ez\u001d���I���=�\\z����^���b8�P�@[��\f9���5�h�|\u0005��4c�\u001fL�{=y�Ӂ�m�{�rj������\u000e\u001a���X�D_�\u000f�\u0018��v��im��\u0005Zx����~�\"\u0012\u0017\u001e�l�V�%�=\u000e�0H�g��d6�9�}r��-\u0007u�`�rM󊣃�z����\u001f��\u0007�\u001a��l�a�I�m9h��J�jJ�KD\u001cۮrE\u00050;�CsA���z�/F]�\u0000�bB\u001a�\"\u0000�)\u00003\u001f�[ˆen�#�A?�\u001b\u001c�����r�\u0016�d\u0003�XvA\u001bJς\u0011�M�>\u0011\u000e��\u001e\u001c����\u0015ELI�f3@+����q+�����)��E�\n�N�\u0011���Ć�5\u000b�����\u0019!�?��\u0019�0bO\n�\u0003n_&S�c$\u0016H}\u0010\u001f�qq�L���\u0014��.�K<9\u0005��\u0012��k'>��ב�nTᩔ�ሃ���`d�H��K���ra��s\u0014�\t��d�u�K�{�����0��n\u000e�0�R���u��E������nG����+1\u000b��\t@��\u0015�\u0017*��\u000e=^��3��Yl\u000f�P\u0015\u0017�%\u0011�b�\u0010�\nT�;�V�E���\t��\u0006\\��1�\u001f���U�\tF�3\\xζZ�����‰\u0011w���p�\b�%w���ԥx%\u001d�8���\u001d�$�AU�\u001b0���b\u001f�A˳��ٽ qZ9\r��T\u0005p��5\u0011u��1ǿ�\u0003�+۹}\u0016����:\f\u0004�{�\u0004�±0\n?9\u000b1g@��Z}\u001c��P���bͮ�# 5\\����\\���\u0013a'�\u0017�^b\u000f{:\u0005��]B��\u0013���}J3�Êp�qA0Ҭۘ+^]X\u0010�ƊL�?�9i��s^\bn���,�|}�77�¡|7�\u0006FI�p\u0011�nI�T�\u0011��͉\u0016\u0007�)��g���j�^%\u0014*\u0005��D�Q\u0004�V\u001b\u0016/Av\u001e&�@(�\u0019\u0018���?�\u001b\u0015\u001c5�|\u0018��y4Ů�v�;F}\u001b��sf\\p��lw_S�斺\u000e�\u000b��\u000f�b\\�p��5\u0016�|�\u0011\u00076�O���YR���P\u001dܚq�\u0015V�:\u0004\u000e�\t`tl ��\nQ>krY,T\b�ԣ���U-M$�AV�\u001bD���b\u0003��(\r�+:��\u000e\u0011�\u001coUB�I &��c�'=j���:��Y�N�y��x���+3*�k\nѱoƒ����3���:k�\u0014Q���d.���踸I1\u001c��G�\\jfBm\u0001��\u001c���\u0011J�\rT6��&ᛉ�aa�Q4�;�\u0005�܁\t��Ȫ�K��s����^���lT�(p��\b�Q�\u000f>k_���PYK\tG=�m\u0016Z�\u000bc�G$�!�Nly\t\u000e\u001d�\u000e�g�0��F~六���˲[�\u0012�\u0014�^���}v\u001e��DIa0�W=�*��H.�WT2�\u0004y\u0002\u0012m�r�G��W5c4_H��p\u0003z��[��,\u0018���ߘ<�\t���0G��\u0011b�.�\u0018��\f5�\"�\u0018-�Ϙ�P`st.k��EOC�D����+o\u0016UQBz%\u001f�$�Aj�\u001bX���b\b�EN�R\u0005I�&��rO_5$:��v��cM��\u00019�>2��W6��\u0002-�cJ�EHa��q��A�b|��\u0016�9��;�q��k�Z>�>�,�\u0019�\u001f�\u000e�q���v�\u001bYO���._\b�> �~�s\u0018[OFoS�\u001d���0\u0001��*��ȩ&̤�\n�m�z����AB\u0002)\u0011���8\nϱK��D6�G��q�vR�\\�4�8��!��v>�%�>��CC�!T}��R����\u0015�%1�炕[��uߧi`�8����\b\u001a\u0017�ڙ�9�d>y4[;D-8)$Mf,\u0007�\u0004�_�\u0012\nYa�\"��3t_:�\u000bF�o~�b����S���\b{2�Yn�-)�\u000bQu���\b���58���\u00170\u001e�\u0002Gd�U\t�;Dw��c8_I��\u0016���\u00132YI��W3�z�w\u0015\u000b1,FQ\u0014.�*9f�$�Ab�\u001bl���b�]F�G\u001e������\u0000�\u0016\u000e��4����^'Bp��X�3ȯ��\u0002C��Ϊ��j�\f����־\t�,#p&\u001f\u0001��\u0012Y@��,��\u000b��(b�9\u0018J� ���ڇ�\u000e\u00023l�\u001a��l�;~�Λ\f.��*f�$���WO�@\u0002�\u0019��\u0016|!���%��F�|L�\u0003�a�����N��G�B���p\u0005n�\r�\n�:?cʚ�o\u001e��/\u0010�ػ\u0010��+\u000b#gN�\u0018l�3¶�\u0015d<��m�гn�L�\u0005YC�%�g�W�\u0003�s�z�\u0018�}�|�:y���;�\rTGe7k�@46\u0015l�ܾs��[��,V؏���bg�$-e\u000e��]3���.1\u0006�Z%>���8\u0011?k)\r)*�\u0001�\u0015�y��\u001cI8A�Nv�v�ό�2\u001f{���\u0002�2\u001c�k\u0000lY��;Q<�b�\u0000��\n�\u0002zC��\u0012b�v��AO�\u001b���1�,%n,��]\u0013�6��s\u0000�Y�J�;@f�����<\u0017�HA \u0014V�y�Y'��5\u00104��8��\u001b\u0001}(\u000e)D\u0001 \u0019$f�C\u0011�_.�\b�w\u0018���i���T�`┘˨y>˘�b@U#�,Y\u0004l�t\u0010\u0000 U�|9i��Բ#3�� ��0�ᓖ6�����wߩ׺���X\u000f\u00117�ε�W\u001c�˙Ι�J�e�[�$��E�a�MX�ȴx�����r�\t��-yK%@��.���Ƥlb�&I4�I�m��\f�ᰒ��i�ؾ\u0013ƹ^U�����\tPW3Z�\bf��\u0014��\u001f�}`���\u000bӵ\u000b՛�\r�e~yB$\u0003$9�V\u0011��$�}HО/�)ӷ���/��\u000bո��TUJ.��~\u0012fWX�\u001fݼ�|�T/�A�\u001b���L����#v,Y�\u00147=Œ���3�hώG�\bhYM���q|e��a��ǖg\u0000�\u001e\u00032;]\u0019�v�4�u\u0015=��w\\U\u001b�\u000e6^��z�o\u000b�1D�\u000e������D��RYYr\n)����\u0000\u0006�!����\u001f��\u0006�f\u000e�4�N\b���j\u000f�/�}\u001d\u0002X�gb?'i�\u0003آ�\u001f7��t\u0011FH[\"M5\u0014Q�cx\u0019\u0017c@Z[�\u0018\u0007�e#Xq!�>5\u0000N\u0010%�m:��\u001a�ǹ�+�\u0010��.~�\"p�\u000fd�wQ��a#\u0018v��͢���A\u0000\u001c\u0007M�\u0015��K_�|��;��F�\"���\u000f�ϩd�v���O\u001fG��v�7�i|3XS^�\u000e\u0005�\u0000�L\",\u0001�L�\u000f�\u0011VRk$@9���k$&x��W�\tD�\u0000N��6��{6���&N��\nfp�Se�Գ˖x`Q�8�k8Q|��U\u0001)���\u001en\u001aDnAgW\u0005t����\u001d���(��2\u0000�A3�\u001b���L��!TL�\u0004zߞ{8�����?\u0005�M�b�\u0014�5Lh\u000f����D:'H0I\t~�\bE�4\tF\b\u001d�^iU�@���\u0006\u0011�I�#pܭfM#\u0002���@���1�~0���$Y�͡���4����7�3�.�����wh����9\u0014��d8��B�n��Vh�\\�CS�\u0010䣅\u0001Ū�O�<�3\u0007��wFԟ��\u0012\u0000E�7�_��\u001a�\u001c�9�d\"n6\u001c>�t�]PQ8Q����yS~$�;��i�zh�ye/�<�9@�)�n�SFQ\u0019�q;���z%��\u0017\u0011.\\�UT�l\u0017�Ѓ�BQ\u0019�Xx���9��W���{}޶$Ƣ��9w�;���u��\u000fwt.{���\u001dL�A-�\u001bЀ�L�ab�\nt����iB�H*1\u0012\\���\b�\u0013�h�\u000fS��\u001f��\u001a��K���@m��\u00048\u000eв=;٤�-��.RtNN�Q\u001f�,�f�u#9�G^S�_\u0019\u0017رu}�\u0018\u0017�\u001e\u0010S�\n(��Z[\u0019q����Ÿ!�\u001fv�\u0004|\u000f\u000b�\u0000�>�\u0004_�S\u001a\r�c��.�Ìk\f�����Nu�]m��\u000e�\u0019�U+���6\u001a���)HP6\u0014����7D�pn.�l��yæ$��(BF�sQ�f�[\u0017S':A-�A�D�\t�U�r\u0002��`�[� 9�9��:�p�{�001�9\u001b��5�\u001dm\u0002�m�ns�Y\u000e���\\t!\u0011�A.�\u001b��.#eg��p$^�\f�:&�\u0014\b/�Jg�(�&\u0006I�ܟ�3�߀�)��2��\u0010w\u001e7W�mJl�c}J\u0010�H<���e�\u0012E\u0013CE&e{gס��O���d��ԑ�+�\u000f/\u00010���DMu�U[�����\r\u001a�\rȥ-\u0010RZѝ\u0002���\u000f,J�=\u001d��\u0014��o�����e�ꮅ�<�\bM{-��\u0017������2�\u0005]+���[A�Z�\\y����g\u0002��\\�\n��,�Z��4�3+���tg��U�9�\u0011\u000f�{\"�v!([ ���\u000f�\u0001dr�ܓ��#4�}}ߢԺ|J\u0006\b_��/`3�^F�쇯!��CՌ\u0017\u0013ȷ\u0005��Ĝ\u0004�~�7�Rx��z�7'�AC�\u001b���1�@ꀹ\u0013�\u001d�p��(\u0013\u000f����k%�t]��L�2�XU\u000fD�Z��\u0006�.o�7���X`��C��ˋx�\u0018�N�vl+���m��֤����o\u0015v��N� Ϊ\\�\u001e�zc�$���\u00161��g���V\u001d/bR\u0017��~OS�\n8�Ƨ�#���Fx��ъ�\u001f��i�?�.�\u000f��Yl����ތ�꛰z�7�c\u0010������!��\u0002=����ҋ�e���J}�\u0002\u0006�N=(��:�ha�\u0000Ɛ�1�.k���f�\u001dZ��ٞ�4\u0010� 7�\u0013k��Al�yԎ�[���pRS��\u001e\u0017����<��\u0006%�e�e��+\ff?\u0004M�{\u001b�r?�\u0006\nb�ߨ�\u0019\u001bE�e�� �7J#��&F�[��c����AI�\u001c\f���f\u0013c}�r��\u0011��9�UG��>L��Љe^�2�R��=�(�B�N�Ф��'@�2�/�\u0002�\u0016�M�\b��u����AI�\u001c ���r\u0001YK�K[��0o0\u0015ń)�X�@�\u0001K��T�\f�|\u001f�[Jum�o�8���J�\u001eG\u0001\u000f���6�. \t�\u000b�6�\u0006���:t4\u000eDm�YB��\u0006@���.KH\u0002n��ѷ����@�\"�\u0006\u0000=�r6�h\u0018�l=�`�\u0015\u0012_�c�r;}���-��6���p\u0007�\u0000,��q�m�%B\u0005�Ǡȃ�\u001c��ɸ��0?X�I!k�\u00050\f\u001e�5������u��&�2��H\u0002߆�!�{��\u001ch1\u001c� �}>\b�\r�|%m��\u0014$��y��ƌ&L��f�\u0003a�4�\rPUW\u0013Sc�-��՗/�ʣ\u0018�`6G9o�q�Y\u001a�x�>�\u000e|R��B۾q��\u0010�\u001dR�D�X�\u0005d�{���g�\u000b\u0013��q�A~\u0001n����ڿ\u001d��A4�\u001c4��(���K�\u001c�\f>S�j\u0010�\u001a��]��O\u0001�%gQ\u0016l\u0013�9�\u001b���7�jj\u0017rv�\u000bԪ\b4�+�\u0016Γ*��0Z=�w��\u0016�\u0019�s�{[6�\u000e�<���\"S0\u000f\f�\u001c��L�>\u0013t����)�\u001c�����~�{`A�ˣ\u001a�����6�ː@wH�cd��kY%����c\"3k�\u0019��:�{\f��QS\u0012%���x���QX��Y��,6\u001b��\u0013qk��{�G\u0004S~GS{�ܓ����@��\u001b\u0005�!o��ᄓ\u0010�����pe'��\u000e\u0014F�%\u0002\u0013����#P�^O\n\u0006\u000b�Z��&�dJ�_\u001a�I�-�\u0000\\NDo�7]�54A�/\"�EF�%\u001b�\t�`�t��7\u001bz�\n��np�l�A5�\u001cH��6����˪��mu\u000b�r�\u001f=}XH�?���>y�\u0017;�����1�#�\u001b��z\u0006���d�+dNA\f����`�Xͽ\f�R�U\u0015_���H��~�\u0007�G\u0019��>C��F��O!�\u0005�>ʄ�M-�/�\u0016���M\u000e�(4�E8�q�)���H��,+*+Mi�\u001fe\u001ak�A3i���\u001c\u0005\"e��/[�=J�D\bߚ�Ҷ��.��Q�\u0004;�׺�w����H��O{�ކ�����.\"\u0006��d��<�-�p矰)x\u000fŶA\u0007\u0015.�n\f�WP\u0012\u00034H\u001c���GK��6�E$}\\�����\u0004\u001fW=��Ukfù��W�RG�V5�\u001a�KG������X�JQ\u001e\u0002��o���\u0014^و't�\u0001�+\u000bugg��J,!9u5�\u0006\u0012.7\u000b�\u0016���@P��\u0001��\u0007�`1P�\u000f�\u0018�$\u001fhu�P���\u0011�\u0003\u000f\u001bl<�\bW����'�8�U՚alﰧko���(m�O\\\u0000�����T\u001c����U{\u0015\tqB�\u0012��\\Ly��4����'\u001e4�T\u001b�\u001b��������9�\t��\u000b�A��X�\u001b�\u0004���\u0001\u001a��H�vN��B��N\u001c\\$+�\u0002ڟxw�V��E�>Q\u00181&\u0012'6y~2Ft��|Di�w�}!�\u001d�d\\\u0001����\u0007)�\u0006�4Goyr�8.3�-���y�^X�\u000f�d\u001d;Cy¿�\u0000�8��\"�\u000bԕlYq���8W���V�&b1�\u0002\u0000е�A�\u001c���|��J\u0003�r�;��p���z�\\\u0011P�Փa� �®\u0011�{4K�;q�\"3U#+.m\u0014��<��,\t̉\u0002����h����\u0015��%�;F���\u0006F��?OU_ʽ�kxp\u0003\nj\u0002���\\9�[���L�2�@���\u0001\u0012��\u0002\u000e~�ޞ$�����\u001f�x��.]�|C*H\"Ҏ��h�WI��Z8���\u001f�(�zQ�����bN�\u0013Nw9�19:xY��@\u0004�(d�C�uhc�ɷ\u0002� �޷\u000f��\u0001\u0007�ig��}sW��\fR$��KgJ�ʫ%�\u0006��\u0014\u0011[�涛\\��r=�s\u001e�J\u00031\u0016M�Hb�5\u000eH꧰4��\u001a�C�p�b�7�L�:\u000e�\u001cpyGz$��+��\u0007�\u000eϨ��:��mU\r3\u0001\f�\u0017�bY4�0�����i��jd���M/�\u001dK�]�/R}���ȿ��⚑-�d~��'4\u001d�\u0007\u000b��\t\u0013)8D[�\u001a��DY\\��F�g�D�\u0004���+�p�\u000f����0 �l�I�P[\u0015}�%\u001e\r�h �j�Sys&ly�0\u001d�9�uw��/���!�\u0015A�J\u0012W��^��Oo�B$菎�\f�9\u0017�衆����o�Z\u0001�\u0000�#�A��\u001c���{\rZؽ�2ʈ���2�F+?�j\u001e8��(��gt\"�₯�\u0014�\u0011,\u0005\u001b�\u001bK)�37gˁ��?�EMt��Ua\u0000c���Y�W:g��~Ķ\u0010R��\b���\n�z5�Wpد@�\u001c醏ݗd\u0007׉6 ?��H�;�5Qq�Q\tH�ã\\���mr�6\u0015}#�\"�\r=t�O-�O��pRt\f��my�\u001c��޹�n��\u000f+�I\f8|�\u0007�E\u000e@ty@%��\u0005%�<\u0004g\tJ�\u0019�MQz�\u000f�q\u0003*»�G*�\u0012��t\u0004���\u001d�@S@�Z�t��,QO��\u0007{�����s\r.�=�\u0007�8NL\u0002Y�v&-%���\b\u0007Zqr^���Z���\u0014�RO�ƾ\u000e\u0014!�\u001aO��g�\u00106��\u0015=�\u0006���gs�6=\u001eW\u0006�\u000f��(ܜl��#\u0011�\t��?�$59oP��\u0017�1�=�~D�-܀\\�#�P�&��� ι�\u000evX's�²;��>\u001a\u0003J�~�~Ⲓ�8⚳-4���]T-�<����\u0007\u0017S~x�\u000f\u0004f�\u0018gy�\u00030�/e\u001e�\u0013�A/�\u001c���X���Aj_��\u000b���\u0005\u0015��;��i�K2\u001c��V�\n�b���\f\u0013s�\u0015�\u0007)��\r-h�����Ҕ�v,�c��/�å���e��߮.�����M��B���r�?]��\u001b\rRE\u0007|�ӕW�$(݆�c3�c��V\u0002\u0005����я'QЋ3\u0004P���[C���\b+g8K�hQ�v~�:�\u0012@�\u0015\u0018.�\u000e�X0���?��L�/�34aY��-�ʌ7pb�`Zʰh}�\u001d��t%�\u001eT�\u0003��Zz\u000b|�E˼y���=Y��R�_�����\u001b�|�Q��<4�\u0014��k����O\"�B�O{vr\f|\u0007l�D[�oL��&�Ұ��U�H\u0012eh\u000f�q\u0017i��\u001be\t�A��\u001cԀ��q�\u000e��\u001fB -#0z�\u0013�q!ѹ�⣱Mړ\r��痭m��X��u��p=�͹�Z�b�\u0018�+5�d�`�!\u0019�\u000b���7Qa���\u0005h��p}���z2��e�6�\u0016L�E�p\u0003�\u001e���;�B����q���έ` ��#H4�������Y\\�M�3�ʨ\u0018l�A\u0018�-�؟��T\t2�OӅLc�>��I�?U\u001eB})]FkV��D뤦0�\u0015ۛ�\u000bo6\fG\u0002G弞�#k�z\u001a�QF����Xw1;��F�c=��͊\u001a;���\u0014�+Z��y �c\u0003���/\u001d=U�&�d�[#>��\u001e��JH�){\u0002��2�/\u0017�?\n�B�o<�Fsw\u0015E�6�j��%��{�i�]�\u0011l�\u0003��s\u0010S]m��\u0012�\u0001U���� �aU�l7f\u0016��~�Ֆ�W7�m�U��t\u0001�\u0011��i�\u0012�T�U�2�F�հ�\\�[����L~4*��\u0000�p��0�b\u001b!�\u0000*~_�8�\u001d\"�;�I��A\u0018�\u001c��M��ՙ�`\r1��( 1=\u0014�\u0003f���Ҏk\u0013�,�nf����q>l=i��\u001d26��5��;��I�\u0005�b!\u0000�Z2����,���\u001dv�\"\u001b'�\u0003��\u0007~�&�V>{F׀�X�\u001a\u0011��}�\\�\u0005�2\u001c!MJf�a�S\u0003oxO��\"��\u001f��\u0019���>�H���\u0019tXm8�&�Wm%���#;E��X-��wF�3��4�G��Ѡo�۵~1T���غN�kga��\"x�m��\u000b�&gP���zx[X�\u00150����Ƈ�ޟ����\f����D�\u0004��=�\u0005;I3^I�]\"�|�pgS\u0017��]�\"9�l�)��(ۛ�ˣA$�\u001c���X���\u001e#�����!£s2\u001c�W����M���Q5G��`Ub�߹^\u00138��mzNbw�~o�;�\u0006�\u001c�H\u0014\u001f�u�>�n�@W�hFi���1����N%@1�n�4_\u0015�n�@�iӫP�r��.����r@��\u0000T�i\u0006��L�\u000f���v\u0006B��O��Ib<3���%�A��\u0001�9;m�20o�͕��\u000e\r�4^�ݓ�.M\u0019��b�l�\u0002�� Ϳ�\u0012)�:�k�����Z���m�\u001d\\�\u0001,�i��1�'�\u001aw\ff�\u0014�tW�\u001e�E��i����k\u001cI\u001b�a��%2\u000e�f����v߬�\n\b�Eb\u001f\u0000�\u000fW�;�x��w�\u000b�\u0016�KV1`!�A$�\u001d\u0010��M\u001eH0i1.RV�'�55�|�>Wv\u001dA�%r�!4�>��>M� ��\u0003B\u001e���\u0005f���<ɇ�ۈ��%\u000bT��d��D�10V\u0004\u0019\u0013�\u001dg\u0018�X@\u001am%�zw&O\u0012��a��i\b\nY1ť��J����T�\u001b�}P��\"�\u0001M�i\u000f�U\u001fޥ/�@�\u001dxh�s]�L\u0010@�pP�i�^.@7.n�\b��H\u001f��i�!�W���2\u001b֛4ͪ��9Q.����\u000b\u0019� ����\u0017��7�\u000f^��:\"L��D8�J\u0018�+�\\/P����x� �d�)L\u0002���\u001aa�gs\u0006$V�f�@g5�}���R\u0004��b��.?�����CP�Od��bp��\u0006'���l\u001a�˺֔\u000e\u0017�x���~ջ\u0012�s%L\r�w�Ɖ\u0019�C\u0004WY�=d���=�F�3�@��A)�\u001dL��L�b�\r�_.{!��D\u0007��UUs̉��)�\u001f�$%��\u000f\b�@��8&\u0016�3��KS|\u001d��OR�D\u001d�*�\u001d�G��ySD ��\\�bVw�T���\u0004���7�[�\u0016�,��Uj���{I=�����\u000fo�`\u0010x\\g\u0006O�v�e��\u0001�f9����*�Br͞�\r̊��\u001c�{��\b\u0005�!\u0014��ٔ?\r\u001c��\rA�c\u0014��\n@\u0002��N�\"��\u0003�I�hI\u0015�\u000b-�\u0019z'�(\frxi\u0011�s֎\n\u0016G�Mq!�\r���~; ��U\u0001�\u0010��e��\r�����E\u0005\u000b��)\u0015ګȶMeY���^a�y-�_\u0005�\b[ݝG��]��\u0011BH���e@�KnYw�X�'��A6�\u001d`���b\u001c�\u00058q�Y��v\u0005�7m��7�USA�ۥ+%�*��G#�^c�S��&Z��INBӎ��\b�.v\u0016M�GrsOc�0-U\"\u0016�\u000f�\u0014C�X���w��?��Qѥ��lĊa�\u0019K��-Wkn:k�p���\u00025a�\rl�\u0015�e\u000e�mې�Χ�b�)���M�:�\u0016�S_Hf��W�'X�}�֢�\u0001�\u001a\u001a�s�\u0012��\u000f��\u000f-���x�w^�ˆt�3�}\u0004�/[�,4a�&�v\u001bJ�@O�j5��\u000f\u0014D�d\u0000\u001eJ0\u0000c\u0017�Bg\u000f\u0014��\u0015�9AV�\u0017$�\u0017SRr,�|#��oU2�_<\f\u0000��l����/\u0007�]^�E�\u001f�y\f�����P�I!����\b8��\u0003\u0014���A8�\u001dt��M)�l�+\u0010U���O >!`[i��40�\\džz�0s�+ئ�~kC�µ�Oi�Y)7�a,܈��ҿ&%.�D���$^�Z��\"�$������˴S��(;�$L�{�&#�_A�)B@��1^�@J9�a��9|�Qq�*�����\u00106^Z\u0016nÈAe\u000en:Xy\u0019�5Zg���x�\u001c5��m\u0000UN\u000f!\b�Lc\u000e�M�Lgr\u0003ߍ)�Z���B,T�l̉\u001c�R�V�2����'��]��\u001c\u000b�\u0016$��-�e������G��u<2�x��Zh��u\u001f\n��MU�\u0015-K\u0019H�]��u��p�a�]��6ܿP�'l�T~�G\u0000�b\u0019X�\u0013��F2�\u0000�M^�p�&����;���A2�\u001d����b���\u0007���\t����#�a�i2\b\u0003\u0017E���*\u0003{��^MɅ4���\u001a5����79�\b9���\u001f���\u0002Y�Ϣ�O\u001f^:�/V٩�+��7�\u0019V+�3b�M���\u0010�}[&\u0005`|��VL0Y�!�jg���R>�\u0012mU�a�4;��\u000b��<���\u0007b2�Z�\u0004i��,̮��\u0010�\u0015�\\;搤��DJ\u000f�\u0003��hb�F-��T\\L�o�\f�.渡��\u001b����:�p�&\u00183�D\u001d��5Z;��O�?\u0001P_}\u0005���crvh+�z+\u000b}��}RNC5�k\r�\u0002\u0017&=�yC�u�\u001e�W覊\u0014��Q��\u001a%�Ԝ#o\\!x\n�\u001by^K�\u0006l��\u0013���\f�i���3���\u0010n�'�\u0013'\u001d�\f4�қ�2W�B��\u0015�}�D�Tc�u����\u0004���<\u0006��v\u0017r�\u0006�\u001af�\u0017��7���p\r��\b[O��h|��{�B��TRtC=�X��'�L���R�Jk\u0017�0\u0013�B[�\u0011%�����f+�WS�\u0011�vr��/.�\u001a\u0005\r�@8\u0017��\u001f}ʲ%��� {��kQ\u0017+��\u0001�\u001c��Z6������EK��^�3&��ћ%�(G;ƶ�x]�K��\u001d�@$\u0002�1ك�,u&�7#\u0015�\u0014�A\\�\u001d����bEw�v�\u000f\u0003�\u0013��k\u0001���mC�ʶ÷m1��s��:c\u001bA��<��0���Q�p��u�\u0000���HT|��#\u001e\n\u0010�cCo��)\u0019�*���:� ��J\t�p4��\u001a�2���М�:\u0005�:)\to��:�dBύ*)���A�+\n;���\u0018jC��͖���~�[\u0002ꈫ\u0017429��Mᔀ�@W\\4��=�\u001b\u0006�&k���`��羪�\u001c\u0005\u0010a�@~3-��\\=[.Z\u0012c�\u0014)a_�\u001b�\b����]�@/��K\u00185]�-�!-p:k����?KQ���W`\u0011Ͻs��{)���P�u�ؤ/�=;w�^,;��IXg�D�i�,�\u001a�K�Ȁ���{��1���z�U\\�\"\u000f�\u0004��F������GZ� 3�cO\u000f�\u0007�͈[�[AR�\u0013�AP�\u001dĀ��b��\u000e�\u001ag�\u0001��\u0012Q����\u000b{C�\t�\u0012�^R����6��\u0007A̰r7��zm\u0019�\u0015�/~]\"�\u000ez�X\"�\u0010�ل�D\t~�\u0016��>��M��6\u00124�߈�ou�\u0013�*=�\u001ej �%-�P �\u0011\u0003jli�(ϳ\u0006Z!�-�qd?py�1y�u\u001e\u0005Y΃(DO!j��\u0010nA��HCɝb'#H@�m(-���\u0006Pa���׉��\r�� �7\u0011\u000eŤ�bL`�{���E��_F��\u001cS���@��S�\u001f��a��bW(8�þ��\u0016�Sd���\u000b�z\r����\u0002\u0003�OtN�\u0017�'�X\u0005ߋ��l�\u0005޾���2��\u000f�\u0007Q\f/��� \u0002Ҹ�u2IAӺ���Sa݈��\u0014t\r��B��\fX�\u00150M\n���mF\u001a�I��X&.�\u001b�t�\u0013�AW�\u001d؀��p�'��-���‰dW���y�\u0014�*�=p1\u000f\t\u0002��\u001e�� R�,�*�݋��e��\u00048[��/��� ƒ��\u0005nh���uL#g\b�䫭��5P^�+Ŋ\u0018;3DC��Y+bR�鸆�̝Z2��%�-\u000e�\u001d\u0019\u0004(,��\u001a\rJ�!�|��QĭI��W72_�SS���)� ��K*C(\u0007�!�\u001bϴ���A��\u001f��zY#@I�a�73z�j\u0000�v����X�`\u0001b\u0002\u0018p�\\���:K�\u00069f���\u001dt��ɢO��\u0010������Y\u0006)\u0002\u001f���5\u001c�X�CD�ĕe24Snm���f\u0015��r[KcǸ���э�EIRy�$!>?\u0017��\u001awz}��GK��N��HJ\u00048\rD\"��\r[��(\u0016�4�da��ǂ�U\u001d�ցA�Y1�(�\u0013�A^�\u001d���Z?k��X���$@��#}�x4�mW�J\u0000���{S\u001e��7_��]���\u0015�U��\u0019�����*�^�ʓ��ɳ�\u00148��\u0001��D\u001b$V�H����+S_�Z�e���?p35��p�\f8RLE��,�`9sO\u001b�\u0005ǔ��\u000e�͋��\u000b�W�v��!%\u0014r�\n;�ZHe��ȼW������\b\u0011��\rGE\u000f\u0019v�B�\u000b�\\��=��w�\u0005nQ��z�J��\u0000?�sm'�\u001a�/6��Z5&�����\nϬ�~@�\u0013\\uF��a��}��8���M�Q^Q�� A\u0011|m}��i\u001e�ې\u001bh=\u0011ᕤw�H�d(7&��V�S^\u0000tl=H�ӿ��\n]\u0014�̺�@�J�r�\u0005dM�ETμ�9ً�c_u;�\nT�&�̼%��޴P�ouI�Nˆ�%�\"���\u0013�AV�\u001e\u0000���s��k\u000f\u0018���\u001cuB�\u0014\u0017h�\u0019�7���� \u0000a����i���\u0015��\u001f4�\u0001zd��&�e�6�Z/8=��|���9\u0005\t��ŏ\u001c�5�\u001e��� \u0017\u0016�U\u0016W\u0005��A�կ�a��\\\t��&�Z��hϱ&�1�Mv�y\u0012��R@\u0016\u0019�=u\u001f���=\u0017Q$\rO���8J1z���s\riZ��u!Lk?���z��_�\f�l}\u000e�ʿ�\u0005\ba�Z\b�c�9\u0000\u0019w\u000f��K(�4\u0012�\u0015`�%���\u0016g��ڎJ�����-\"��N����^�rW�I�J��{�1��E�\u001b;���Ya�p!\u0016�;�����,�׎�F�`��\u0001�_�\u0004@\u0006���[>�In1�ة\u0003�\u001c�\u0003f��2��\\v�\u000b\u0011���5���+��\t�-��b\u0005긜\u001f�I��\u0015�AL�\u001e\u0014��M ش�ȉ�%!b{��\"�eC��8�\u0018�G���$\u0002�)q�x@ʅ�E.\tU�o[\u000b8S��\u0016<�Y8�F\u0002tB�T�C�,#6�^N}���b4�#��\u001f�f�=\n�{�i]�(\n\u0011\u0004���h�\u0018��&�&�g\u0000�\u0014�k�P\u0003|�\\�qsΘ\u0001��.��o�t\u001f�S{�������\u0003�g� ӯ52Z\u001fg�\"�L\u000b��\u0012�V�\u0013{�\u0002��[�\u00118՚���z�\u0019�Z\r��M�\u001a�~q5c�����:9\u000e\u0015�ƅ�V}�\u000f����j��'@DAD��B&䏤}\u0005B�%\u0016w�[��k�����4���5�\b�+��\u001aY͛i�*�5S�eJQa�x���9�8��r\n��ĝ����\u0000\"G\u0005\u001e�~$��\u0000)4���l;�\t����ca+\u0019�X\u0006\ta�|�\f~�\u0010����'�����=�3����H����\u0006(���\u0012�\u0019\u0015��/\u0016�\nX�J�\\�a6�cEh�2\u001b]�r����.���\u0012\u000eb�\u0007eu}�?\\�\u001dƻ����\u0003#����q����Ԭ��W�j:\u000br���\u0018\u0013�A5\u0001\u0011,F@F�?җlE��5\u0000 ى*ʈ\u0015�\u0016zU'`۷�� \u0005\\X�[��� \u001b�AG�\u001eP���Zrˮ�0I���F�\u000b�@ϴz\u0019\u0018�i/$��{C���bGkP:�-\u001b\u0003nC�A��E\b.�J[�M�O��j�Ҵ��:���&KY\u0003h�T\u001b\u0018\u0016�Ɵ������n\u0019,\u001d��*�L\u0002�F\u0011/�\u000e�p8l���f��v�RT7^��\u001b����\u0006E�\u001a����\b�7����\"r/���}�\u001e�\"5(Qߺ}K1-���r�r�O?re�.���\u0013t��!G�~)��N�?zy�<��\u0018�$\\ۺ\\;��\u001e�Oyq(v3%�\u0017>��vo���tcG<в10��-h�\u0007\u0012\"O\u001c#\u00054R���Ti\u0004&�&WoF����\u001f���(���\u0012�����ׄ4<�T�6��m�y��\u0011��/��IS�,&�Vl�,9��&�\u0005��AZ�\u001ed���ܻ��\b\f���j�\u0016��U��2���m\u0016\u0015H\u0013rB\nC�\u000b;���t��k�\u0005�,�E��\u0000���H/\u0017%H\u0010��$h�jFw�\u001a#J;�\u0005��%ͣ��m��<�bJ��R��`\u000b�\u0003J\u0013�?�\u0004Md�ɩlA�sIЖ���%�� B2�u�X��1\na\u0014%�P6\u0003J\u001b�)o�\t\u00009\u0018�O�Rh9\u001e\u000b�\u001c\t�)�w�\u0014\u000b����uӽ}%����ApE����\u0005����[��\u0007\f\u0018�Ȟ�L�`�g��Xf8�A\n闂&i���Z0}m\u0007\n|�0>U�K;q\u0014�\u000b.\u001d?.[�ݥYI�\u0000��[�d�`�.����!o��\u000f��m�ʛ�\u0016Q��g��l@\u0014�\r��\u0006����@���%�����\u0005�kG,�\u0013�.��+b��\u000e)�\u0006E_�V�j�\"�A_�\u001ex�����C���M˹����q�#oN;�Sⵈ��'�Gr��S�j��O�\u0004\t9�y\u0002\u0011�~/ ̈b�HQ��\u0005uƏcm}p�VŌ�2P΂�8�9��y!��6�\u0018\u001adxQ\u0010K�\u0002\u0005���\u0016\u0015#H\u0000���\u0018}-\u0003�iLhɐ\u0003W\u0004���\u0006�&��,\u0012G�\u000e�M$���ќ�Z�Sy�قUw?\u0004��O��?y�\u000bO�\u0000�\"���\u0014�q�\u0004�F�$��V�65��3�^�>��[\u0002\u001bu�\u0015teW\u0015<}ua�vob�\n\u0005�\t�D�+��\u0015�,���P\u0010�K\u0003A��\u0011kX�w�q��C\"�\u0005X\u001c���J�\u0014l��\u0010�9\u000b�U\bco�U�;?�\u001c\u001eZN�\u0004wti��$䜊�>+'�o$�[�xO���Dӭ>\u0006\u0001:\u0000�5@�@�G\rԯ��bє��\u0003���l�F�\u0001�[=>\u000f��/�e�'8�����\u0019\t\u0006\u0012\\X)`��\n\n�ĒDz��\u001e\u000e�_ 뎎<\u0017�s����?���/O\u0014&�%d2o��l6�q\u0018\u0010\u0012��,��_�{�4�.��^!\u0005>ѻ�z\u0000��\u0014\u0006�'�\rEp\u001a\u0012Oȗ\u0013\u0004_�=ΉJ}j�:��&�2.�テ����؞T.\u00187\fr�Dl��\\J��E���٭\u0015���/D��9 $�����r�a�Ư���c���b�AƜ٢�Ak�\u001e������u�Ĉ-\u0016\u0012�32��\u0007s�c��y��2�ևM\u0017��b<�Ѫ\u0012ya�F�����/��a��\u00047؃_n��>�M\u0014��\u0018��Z\u0015*��8��6\f@\u001c>�\u0013�o��3ө��\u0019���5!��\u0006��9o��u��\u0017��5�޳��/l����\u0004���IL\u0013\u001c�\u0012Hm��N�\\Ք�>S\u00162��6���\u001bOwז�k$=����ri�\t����x�\u001fi��\u001bZ\u0010mXz\u0015�i\u0004�t��SKs\u0006�ʶ8F�@�t�{E���C\u0005Ħ�\u00034�+\u00123\u0010K~���Y�u\n�/7nT*��\u000b\u001b\\�\u0006�B�\u0016\u0017#�,֘0�F\u0014\u000b��}+��s=��\u0015~���\u0018o�\u0001N]\u0017�G3��bN�\u0017���)=�\u000e\u0015�*\u0006����Wv2���t�7�����$��f <��*=BL�̩�{\u0015Z:�����B{�\u001e���|�B�\u0000\u000e�_�B����g�o2�ȸ�%�D`(ü�=5��J��a��4vr�j��\"߹`&��\"��\u0006\u0004%Ӧ�t�C��}6�\u001f%�\u0019|�u�]^A�\u0006��\u0015�W�b&#,��\u0019\u0017HaTY���\u00100�|\rxx\u0002�U��ޤ~�N\r�yO�\u0018��%\"ermi��� ��\r�eq��>\u0016�|1\u0003\u0016=�\u001a��4\u001eQq�\u0010��\b\u0014\u0015���\u0005\u0015�}�ݥB��\u0011@�\u0005��(�״���\u0018\n5��0l'��4�i�>�\n����߭�z��N<�<�l�\u0011YJ\r�[%��>\f&\u0019ۗ��K��\u00058~W�\u000fS��x\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000ea[�\u001b�\u0014�L:�\u0012\u000b��\u0015B\r��:b\u0017���|�lRi̵��˵ �\u0015�J�4��)�Y�_�>\u0017��\u0016\bb\u001dk�{67Aq�\u0003W�\b!\u001e\u0001�ke�,�\u001f�\u0007$�}��P���1�\u0013��o��\u0002Lv�\u0014\t\u0015ǀۜ����{0\u0017i���\rEY\r�I�M��sd�bc��\u001d�DnbR���\f�T��a��\u0000\u0004�L�~��hi�G���Y��\u0010\b��Q�����\ty9�d\u0000`u���_?�_V�]��B�� �c6\u0002��Ȟ�\u000bg}.�0|ؙ�KN.fG�\u0007h��7B�\u0001��<�YNHB��\u0016ak)��D;5EJ`��\u0016���\u0019R���\nZؽ\r�x]�\u001atQ*��ң|f\u0016N7L�p!�C�\u0002�ꠖ�\u0006\u0013V���|K\u0002t\u0013߁�F�^�}uE�=��ϥ��\"�D8ls�AD�\u001eȀ�M2��%�>�xz�B��ځ}\b�l�R\u0003�(2b\fbބ�����WZ��1���\u001e\u0019ᥥj�Sz����2n'nhI�D�\\�v��K\u0007�CG^\u0004m��\u0011Ħ����v�-LI[Hٵ�7��q\u001e�y���K��B��$Qz\u0010^���\u001eo\u000468vMo�� R_��&J_r�����S�\u0015ۄ\u000f�hcq��^\u0002I\u0019�\nZg�\u0007H�\u0017B��VZ�Z� 0��\u0013\"\rC�(R|d�(�l,#ؠ��G��\u001d�\u001c;(�>ԋ��Y�u���d7�)����o8\u0005\u001dAK�'�E�\u0004�1B�ߒ\u000e�Q\u0014��e���\\i=�|�U�=�Lu\u0014#�\u0005Vi�S���)�AT߮ܒ� ��\r����d�V�\u0000�8\u0013��tl��A\"�\u001e܀�MZ'�B}\u0018���C�%��\u0013Qц��\u0018�o�\"�����K���E��`��z�QzV\u0005�z3T4\r�ί҉�$�xC�Y~\u0004���d\u0019K��b�\u0016�u\u0016\u0015נ\u0004�\u0019\f�;9\"w�8\u0017L\u0014R�\u0016�;�g\t���'���\u0002����\u000f���\u0006S�gx'g���Ҥ�ibAM�\u001d�ѵ�)G0D��?���L�\u0006J\u0012'#��վ$��a�\u0013\u0010Ϻ�U\t������^`�\\�c���\u0016�BkFD?�br��d+����*,\u0019[�cK\rn�l͉t\\Af�զh\u0001�\u0011�H%O�!���@�M�\u0012\t\\�}j1�\r}�:��~2\u0000�AUOl���\nő����\u000f�B��\"c����QH\u0000��6�A+�\u001f\u0004��Mv��\u0016�\u001f>�]Z����)\n*�\n8�|\u0004<$�L��7����ԍ\"\n\u000b7��\u000bbݠ�D\u0011&L���~��L\u00037i\u001dC�x�N1.%d��Jk�t���9},�_�ߐ���<��y�\u001d=1\u0013:��\u0015���(\u000e,'�s\u0016�l�\u0006��(�{�YA �C�f\u00114�� m\u0003�` �\n�b���MD���ijb��\u0003\\�e��\u0001v��o\\F�\u0016qoS��K�\\�aH�\u0016\u0006U\u0001�\\�\u0016g����M\u0004\"c��yZG�zh�5�\u0006�'=L�E�\u0015�\u0013�\u001e5�uh�݀\f��а�\u0004Y\u0019!�@*ʑ`;���G��\u0001o\"�꥗�|����F�6����ml\u0010��\u0000؟\u0002d�A(�\u001f\u0018���0V��K��Ϻ\"�ck^!�\u0000t\r7�u_�$\u0013r�s8���c�q�N�$���{��\u000b�߰\u0005w�e>��\u0003N�ř\r�Y�a����C�t�%�8��+A�\u001eߔ����|��xj�\u0000\u000bv��m��.���Š��ۆ�(���\u0014ٓ�\"�fG��h%�F�\u000e��\u00055q�Q���ϻhe��A�\u0001]#�xQ\u00044�\u0004�v��T�j܊�$r�tZC\u0003$?D���\u001eL�z/��+\u0019\u001fJ�*�\u0005���\u001e����s)\u001a�+ށ\\ڤ�����!\ns�\u0004��Dۓ�q!�\u0015F!K\b�nu7��[�k\u0002do5��Җ\u0016L+�U���c�:����2��ʓK�A>�\u001f,���0\u001b\u0014�ȴ-X5ݩn������g\u0007�8޲<�\u0017|�Q��غ#\u001b�dr]\u0004�M��*\u0004\u0015!�\u001ca\u0017���3�������,ҷ_��\u0016/�'8�]Q�L��x\u001dG\u001dwAA��;�XK��`�Eh[N�]\u001fC��Q���J@�l ��%�A�f.�������\u0011�^�U,�h���\tJ8���#��*�E��{������Ь�z^�S\u001d\u001f\u001f�5*�� e\u0017�+c�ҥ-`\\'�=��ҭ���9�����I�\u0000�\u001b\u0001aES6 ���%r\u0014p�guګ9�Iv��j��\u0006Y5Y��y\u0017}J\u0016�\u001f\u0012�\u0000�5�\u0015Bo�\u0019�F�[A�IEE�§\u0000s�N��W�\b���&���U)�\u000e�O\u0014�����J�A6�\u001f@��L��F�4\f �h\u0013���w\u0014��D\u0007w�6T�\u00174x��Y\u0016�Osq�\rU�3�W��iNE���^���p�J�\tz���ga\u00034EDn�\u001e���@�\u000f�\u0010�R�8��t\u0019-[����\f��E����\u0018\u001f�.\u0019^~��s�X��,�\u001e�)��@�D'r�jt<�j�6�\b�\"-}+|�-\u0018��\u0000،��d\u0002���b�\u0013��\u0003�� :��<�Z�(�\u001c���\r��ᛡ����)��z=j�8\u0018�.�@�d˹���G�ݔ�\u000e�\u0011ճHh�`����`�`�lEL1�$����4Vl�e�텛\u001f\\��S!\u0000�M�L@\u0004a�\b�¾E\u0000��\u0016\"�\u001b�w��\u001a�F��)^�#\u000bm�A7�\u001fT����\u0019%d@B.� �?Q��C�\\�\u0004�a\u0000���\u001e��Oĺ\u0003�7����.�\u001d&�yh�Β�Ν\u0003C�ᕃ����@\n��Y��/D�ik�Z��\u0003\u0000�/�BJ�\u00160�>��3�ݧT�\u0011\u0011.\"A\\\u000enk��X�?�\u001f\f�ᆳ;���]�\\\u0010g��4�wu���Բ����\u0010�\u0005O��\u001b6֏��,�pT��ʎ1\u0012\u001c�EC����C֥I5�Z%�c8��\u0017��W���h�o\u0002-�\u000b�@}焌�=�%�c�\u0010����\u00053OM��\r,Ơ�NT#�\u001cD�E\u0003������J���t�T��;����[發.���\u000bg43�\u00131���5�����$�&t~4�\u001a��B\f\u0002��A<�\u001fh��2j��\u000f6\u001e�YT��\u0001A\u0011Yl\u0019ג�r�1��\u000b6u|\u0010x�I ����.��\r�\u000f�Z��\u0014�hZ��}Ya_�h�Q�\n�*�\u0014n�KO�w��r1�F�\u0012\u0004�\u001e�p �E|I�q��N�9�l\u0010S�8~G�c\u0013�E��\f�+�mţmdp2\u0011�ܔ���A\\�K�o�ʗ�U�����̆�%\u00005~�:�\u0001��u�����6i����r�2]��\u000f2�� o��G���#C\r7�ꬊ�\u001d\u0000�S�\u0010���\u0005\u0019\u001a�\u001d�\u0001O;��\u001a�3�i�8A�\u0001\u001a+�VOHj\u0001~�\u000b�kB�Ч\tg\u001es�\u0013v�?��A0-�r��sF��f&_\u001c'\u0015��A�^�/��wC`�\u0002�:̶u���7��95����i$\u0003�p\u0013��N���\r�5�b+\u0005.���h\u0010F��C�)=P��\u001f�IP|F��%��\u001c�of��\b��͹�A?�\u001f���������O��K\rw�\u001a����\u0018\n�v����j\u0005d�}�c�πJՎ\u000e\u0011\u0011n�\u000f}]�\u001a\u0016\u0017{O�Y�X^l9�̵'�pdI[VxL�\t0�5�GH��b7\u0003�;P҉!Y\u000fBl�xfo��a3�o<ӷh��\u0015xnW\u001f-�i�ډ\nVZ���Q��%\u000fԽgY��?Aft���19\u0019�\u0011����p\u000b\\�\u0017�'g>ao�ǘ7u$l\u0000��f�(��P悻����V�H���7\u0018c\u000e>���+w;�=���\u0017~��o���)�=\tڴj�+XYqS��%doZ��\u0014\u0019\u001b\u0005��?��ʺā\u0011�-0O�S-O�3n�����/o]&n�~F|a�D�\"I�9ۏ�%ǗJO>��I��%�˲@��Y��,��AV�\u001f���.����\u000b�XP2ƀ^y�\u0018r�\u0018���bDN���>��/9�!R\nc\u001b)g,���1�\u000bģ�¼�1ΰ�{��\u0018�\u0017\u0012/��]�X\u0003�\u0017��{TR���ܯ���\u001e�\u0011�<5\u0000k\u0006��g��_X��Z\u0006�`�P\u0007{��\u0006���\u0014�-�ׅ�M\u001dv�Ӡ@W��lu�\u0004\u0019�\t��\u0010��\u00151��\rG�\u0019�O%\u001a���&\u000e����\u0000%s.#i�I�Q�J]��{\u000bRj�\u001c���!���wg�\u001f�'\u001b���P�\u0005���C��\u0015��Qfa�K95�p\t8�\u0006�>}\u0010�M�\u0017\b��).\nc�ȡ�\u001f==\u0012��\u001f\u000e��G��q�星�hp�\b.j�L������[3�\u000eQ��\u0003��\u0010]yKV\u0004N��`бqk\u0015a\u0010YX��XiB�O���d!��\u00185�A$�\u001f���X��WE��z\t�e��8�\u0015�P4����ڌ�_��\u0001�sB��\u0003@\f����~c�ꚪP=�K�\u0003�\u001e����Og\b\u001b\u0013q3l��B�|+���ȉ�O=�4=l��\u0006���U������\u0016IF]Ź���5aԩ/M^�����88.3Ƣb81�V�[�\u000e͙�r �-�t�T���<\na!�\f\u0012e�\n���\u0007�h\\�������?�lT\u001a+\u001cd�Xϭ�$k8��$6����C\u001c�]V�\u0004�z\u0010\u0007�\u000f�uE#1�%˺��]�1���:\u001eKq��g%f�k,vD=�$�ϙ\u0007`��-E`E��(�M�4KU������\u0001d8\"5�T\b%\u0007^$$�A\u001a�\u001f̀�M2������s\u0016�\u0013A_�\u001d�6}W;T\u001c�@\u0018;lY\u0010\u0013���\u001c\u000157�XBh}l�\u001d�%�?m�e??8���4�C�Kŀ�[�ƒ�&�b�SS�\u0010�!O(`�\r\u0014>�c�\u001e��c̘�JN�\u001d���@N���\\\u0006�^Ѻ�����p���֜Oh���>�Y�\u0018�-N/=SX�<�LL��_1���+��@FF\u0001�CHX�1��\u001e�\u0015�I�͆�FT%�Վ�l�3x;�y\b��z�%\u001f��|I-��ȧz̯�\f�S��Eټҝ6!G�ǔ\u0014��{���� k\u001aܣGӜ�K(�e���C˞�J4��)N1v��\r��A&�\u001f���Lˡ֏�iw\u0019Svd������b�8~𠀸i'1E�T7�'�F��RgE�\u0019���oo�?��X�\u0016x/o�w�H�1��\u000fN�Xe�\u0006<�@W�g��1��?|xh��h���\u00037\u0000��񹷟��E\u0017�\u001c�\u0013��O�*\u0014�r���\u0018�'�^9�\u0016;�\u0018�Ϳ�v�m\u0019CY!n\u0002`\u00122�g�ւ��b����J\u00141���xcI]VM�\u0015�`P��\u000b\u0010\u0007l���$�\u0002|�BJe���\f��-1������H��&=�8�'c0g4ߞ9�[���\u001e��\u001c\u000eO舗b�m��\u001e5\\��g�B��x��I.�\u0016\\A�\u001a:c�&�2dl\u0003?.\u0017����A/�\u001f��M-w��Eм�\b��z.3(�]\u0002ѷ*(�\u000eSB�|�Rp&VǮ�\u0001�Q\n���\u001b��s6e\u0018�uk�8ݱ��,�\u0012�f�-�g�S�\u0003�%R��w�_�p��hVϝ,{��\b�\f�g@\u001e�\u0002�^��%�[.u2�m�HK\u0002p�R�V�\u0018t\u000fb�E�$�oɤ0^\u0003r;#hL�o�\u001d� ��S�9���8��9vG#\u0005�\u0007~��&Ŏ\u0007=�m� ?~i�OE�e3�\u0000ѡi���\u0006�/S���Ak��;4\u0006��wS-tj�\u0012�(��\f�\u0001\u0000�3����\\�`�\u0011\u0010`�z�\u0018\u0005��\\\u00122\t,�RA\u000f��g<��Іs��\u0004;�5>��D�\u0002[nbQ��\u0016���&����y��[�0���\u0007-�\u0000K`�q���\u0007�3<�Uh�\u001b?�\u0002'{�(�D�0G�IZu��\u000f#\u0013�k�#��@\u0001��m�\u001cJy�\n��Y�nU&�˻��\b1�5�bVlGE\u0006\u0004\u0014\b�l=p�0�5\u0007 �\f\u0005���\u0006��^܍\u0005�\u000b��n\u0001��>\u0012/�\u0018�,\u0001\u0013\u0018\"\b\u0011�\u0007\u0014��=����Pݐ��Z�$\u000b��?U-O|{x\u000b���� �V\u0018�%��KG�<0�\u0006�\u0018$�H����\"*;ۺ��څf=��q|^���\u0002g��.�/\u0004\u000e�C8s���;͘�\u0010��īK�yY�D\u0006\u0007W|q������g`Y��x�UHQ\u001f��j}�y���\u001a}��\u0011��(F�\u0001d\u000bn\u000e*��(�g2�~o<�G4�/\u0003oWe5k��ya!Ce��[����u��Xa\u0003�T\rP���SSٵɉ�<�ʆ$�A6� 0��Mb?�\b�\u001d;���v�Po�\u0000\u001aA�\u001c�\u0014E9=��f����-�+j\u0007��VE?�XE���\u0014�+�D��ʋ|&�B�Iµfᭈ�J������`�PH��Ă�b\u0007U�l�Y�j���\"�� ~5)|��6��;<8jn�R�>v��\u0000�(-%\b��\u0016\"\\\u0018\u001e�\nuBㄩ��N��b�D� y��K�\u000e���z�p�3,\u001b��yH�!G���8�LDZ�\u0014�\b�\u0015~q��@���\u00179`3t�N��A7��\u0016\u0019$��w\"�s�X���RQ&�\u001fk\r\u0018U\u001e�n������\u000e�m���mӭ΀\nռ��q5*ު��SAm\u000bq��^�Q\u0005�\u0018D�� ��npl'�\u0018�U>8�:�A@� D���munw�zE&���!���~��^� \u0000���{Y�\u001c�m\u001f�w8�m\u00168���!�\f~���\t@\u001b\\�;(���7d�$�`�\u0015�c��4p�f)�\r��?o�x\u001e�K\u001eRS�U����H�|I��=���Mo�׆�B����ߊ�t�0=��1[\u0010�\u0016�]��~�A�U�\u001d�'#h\u0012\u001dC��\u0017<����cƌ\b��6;�\u0011�o\rO\u0007xfe\b\u0000\u0011�������ً�\"7���/M�'�@S��\u001d\u001d@&B�6�\u0013\u0010ҍ�N��AX� X���k��\u0014����\u001dO����7n�j�/�1n��r�B$b�\u001a�\u001dl\u000e�\u0001i�2I���\u0014�\u001aJ[�i9�*�y\u0005O�A��\u001d�S�<’a\u0017ډíؘ\n{r1>xx\u0010\u0013P��S�h��M\u0013̱�Q\u0005/H-�O�����^�\u0016�\u0004.g��C�Z�d��7\u0016�\u0011\u000b�\u00016��x��@E_\"��=O?\u001e���)\u0016��\u0002��\u0019\u000fD\rNA����,���䚢6��nf�\u0015e1'y�t��Pmk���}\rاs\u001c)�\u000f�\u0012�4�vyI\"\u0001�zf�x~$s��Ev-�22H�\tE��rf\u001f�\u0010��\b\rIN�Ct�>~���p��EZI�su �\u0015Fo�z��x�\u0015Y��OA~\u0000y�E\u000b\u0000A�d�|��+\"����G��v�V<�H��M%34�\u0015���h&\u000bF��A� l��ۼ\u0010Y`��E\\c��m��\u0015����\u000b�X\u0010+/�H>�uc�h�|�靯��ձB���8=\u0005VBwM����@�/%\u0002�r�,\\\r�`�?�G\u0016X�W;��_�+]l\u001d\\�M�XL��ۍ\u0007w>�~N�\u0007�c܈%`��\u0007�z���p� .:\u0017n\u0006�\u0005T˼\u001c\u0017g��$J�:\bVt�/\n�\n>�vƤ1ġ�\u001fOh9�\u001a`�m����C�\u001e����\u0013���v�ՙ�z\u001e�\u0000�&_O �爧�\u0015� ��1�`D�h7���6���ID��F�a�Cs_�\u0013N�^\r�3)�\u000f9�X��K\u000b\u0011�\b�!�c8\u0012����7(O1'>l�Y���\u0016\b�Oz~e�:h\fZ��O\n��f�G\u0015��l򖪚�I\t\u0006`\u001e\u0002~\u0000!\u0005�C}�kn��\u0017`�\u000f\u0005�\u001a\u0019�\u001aZ�,�8�Ƞ�\u0004 RQ\u0011��;\u0001yZ,\u0003%e=�8��w~U��\u000e�H\u0002�JbW��]���VP֐�\bs\u0003[\u0016(\\9�P�u��z\u0004o��\\?\u001c�\u0010�.d�QS!�crq'�e�j�������.\u0002��,r¼���\u0001�_�\b���79\u0010h7\u0000v��[\u001b\u0006��Yi�A8� ���L�(���;\\nq�{�����\u0005S,�u����q���qO\\9�\f�y9��9v�\u0015�Ԏ\u0015R�����e˅�~��y־A�\u0016�7�-\bK�]��\u001e�C���޼��-�dr`V�)%�B����7GaMc�d\u0013j!�\u001d��Q�[\b\"$\u0007��\u0001��/�vs�m�w�8����Ͱ}����\u001a\u0013�J�\rT8�[\u0004�zq��x�\u0016�OeD\u0001��74IV\b\u0011\u001b&�[U\\*F��&�����V̌�Q\u001a�pRz\u0002s��\u0019\\��b\u0013��M�񖌲\u0019� �s�K�o��+���X���c�EN�h��vr\u000e\u0001\u0001\u0019�VE�b\",��\u0010�gX��\u0018��B�=��ܶL�.Y\tH[�c�����A;� ����ml�t��i`�\u0010v��\u0012Ǻ\u0003��8[�i0�^\b�W��$;v\u001f\u0011�+\u000e&\u0005�\u0002�Թ?\u0017��c\u0014�\u0001`^̌^�\u0017��F�\u0017\u00050�����,�2���T�5�ɟ�,`:\u001a�\u0019RagAa}\\���\u0013���\u000eڀ0\u0016Y\u0014\u0015-=�SxB���Ƴ�\u0019\u000f^��uy�u\u00046��.\u00039,�G���[(%��8�^\u001b�\u001c���#Ӵ�S�!�JQ\u0017�\u0005\u0016\u0006����P�\u000f)�Zʃ$��^��\u001f�B�4[�\u0013,�X|��t���B\b��s\u000b\u0016��\u000e�\u001d�\u000eR^\u0019퇖r�]�j{�,�G\u0002\u0001�}�h�i\u0002\u0002!\u000b��t�Q1J��p\u0006�X�f�f(Kπ7nh\b�5ں�Sv\u001f\u001f\\\u0004\u0005y�P\u000fަ��[��*���B\f� ���߷���x+?\r��HU�gS���6�U\u001f�)���C��>\u0016�����K�\u0012�ݵw�ȟ?h\u0007\u000ehw\u001c�ݞ��`\u0014\u0003����S����z������bk�\bF��@��}^��\u001aW���s=?��1�\u0001�F&�\u0018\u0015�l\u0018vw+����{D����p��b\"��g=/��۽P���\u0002BV���C��\u0017Ց�\u0007\u0006�hjס;�\u001d�Q�?_�.�74�ᤰ������\u0007�d�e��\u001aeHzZ$32`w�\u0014�B��\\mS���A��\u0006ٱ\u00057cy�\t�\n\u0012���\u0019\u001d\u001c�2m��\u0000lu��\u0012��D�튒�>��\u0012j\u000e\u001e��e.�a�}��&T�>\u0005Y�9\u0014o��K��*��\u0010�\\\u0007Ғ��\u0019��y0�݃�;�s^ޟ�G��Ȼ������H\u00161�^�rF\u001d�nM}��\"v�x\u0005���^\u0019��M�S��H�I\u001d��\"�\u0005�(V�n\u001c�\u0006!^����\u0016,��)��$\u0012�����ߙ�\u0016�\nĪVԻvJ����Y��\u000b��O\u0007%�FZ�q���E[��I��~\u0019�.�O�O��\u0015\u0018\u0005\u0018d�XՔ\u0005��qGk�\r�K�7�%VG��uw�G}��\u0017Z<�\u000e==�%����D۬���ь��L�A\"� ���X��_�\f�H/k�\u0001��߀@��K�-��d��\rL�'u�ܻn׮����'\u0016Z\u001d�h\\m��}k̠lJ�-������\r���\u0012?\u000b��:xS���!RD>6���qp�,y\u0016Li���\u0013����S���0����\u001e��2�,&e�.hm\f�w;E~R>��L�67%��\u0010)ˁX�\u0017�Z�d\u0004P��O\u0004\"�#�OF\u0006��Q�7A\\��+�@��A�l\u0013\u0005�\u0018LU�$�h�2������(;�ψ|\u000b���}�1�\u0012|��a\u0002��g#͚`�eo�YQ��E3�\u001dO�fe�ڝڄ��0\u0006�&�\f�\bLh��\u0003\u0003Q����mJI\br��H�A/�A!� Ѐ��d \fqrR���aH�\u0018\u0012�\r���\u0003aԨ�ƾ��.������KA��~\u0006�K�\n~a%\"\u0012�kI�>�s�~(H;�e+\u000e��P���uF�O\u0015\u0013��8��MV/���2�j��ۧ\u0004�n�G�ۢ�\u0017ȉz�g W\u001b\u0004'�W'n��F�\u0015N�X�����a\u0015W�\u0019K>H_�Ȱ�d\u001f�ـ�ʬ�2)�+D�P��\u0011&q�a�\u001c�Ϝ�Is\u0011s|\\{�\u0012\u0011e�\u000e�'�p\u0011y��lLM�d���Sɐ+���r��\u0016��)\b\u000e_˅zE-�����ܖ.\t��n �Uyd��e��}x�1����*�mI�2٪<\\�\u0012�Ʃ|��\u0003�:V£A*� ���\u0016ˆ�Ý�\u0002�~�\n���b������M9���7�Tg\\�J�\b��^�Ҹ�b\u0016���\u0015$�K~\u0019\t!��$��#�\\\u000b�����B���\u0001qi����Oc*����}Y\u0001u�s'ž�hGhUl)������s=հ\u0007�\fs��Mqƫ\t2�\u0001��J�&|�k��1\u0018�\u0015/1o��f8��������*2P�\\�tU{\u00172\u00192\u0005{���=sU�9�@�*�`U���+^++\u001a����81�J�k6q�\u000b%gl��$_\u0003���A�ov�f\u00010\u001eq��W��\bt�}����\u0017\\\u0001�\u0017��\n�_��#��\u0005�i\\=�|�W�t䒡4\\E\r�!�e\u0000��x7�ӣA(� ����l�X\n��\u001d�4Z\u0010%�`�i�^�;m�rf&�R�\u001a�\u00111Q�P\t�\u000e����V�k��<�(�?k�\u001d#��!\u0012��{��\u0012�q\u0006���&c�7����'2Oau#�\u000e\b����\u000fJ�Dl�\u000e�\rC��i{�t\u001b\n�\u0004����Җ �\u0014�$��cj�ި�\u0002M8\u0013�`+�=, �qgfYb\u001f����\u001cI�\u001dU����zx�/�YD����e���Z\u001b8\u0013�Z:��>��\bn��\b��6���z\f�„2E?/�bO\u001c�o\u001f�\u0002��q<��h��\u0011c9(`;�vQ�y�`\u0003\u0001ӱ�O\u001a���w��A,�! ��L��v�A���:�$a�~�¦\u000bнAvao�9w��f���\u0004\b�\u0006'\u0006��������\u0016ױ7�p@p�\u001c\u001e��ÂĐ��d&�~1Q~�ܺ.�Eݛ_o\u0003ܻ7t��^�7�\u0015�jX���Bu6\u0011}۔F�r\u0007@���N�\u0007�9�7\\\u0013��\u001f'/�\u0001��W\u0007?si\u0005��*��þ�,�G�@���\b�j�\u001a��;��t\\C\r}\u000b\u0015h��y�J6;���A+�!4��M1�\u0001\u001b�=k�)��u�D�1�|Hu��k\\|\u0005J�S?�\u000e��fh���\u0002��^Y\u0018(*�P�Bo7��R�\u001a�ğ�T\u0017��D�ee21�j�7,F��\u001aW\u0011ɕ�SV85~Qf\n��\u000bTyB�\u001c�yLfCk�����\u0013B\u001b6\u001cnPS��Á\u0010 Hu\u0019�\u001a�|xvX���p��0.@\u0007�\u000bf�U*=�h�\\��/\u001c�xCb�$q���JU����M\u0014�\u001d����\u0018\u0016��>�`�k؛۪w<\u0013If��sԾ�x\u001b�\u0014�%c�q�9�zj��TƑ��r����d79/�#\u0004��\u000e9܃��w��j��9V�\u0011%λ<���\u0007�F\u0018mm�@\u0001�\u000ebX���\u000f\u0002*oۣA��!H���qi \u0003E�YB��]'�\u0013t3�G@��\b)B୐I��8�\u0012\u0001���#gI��EGk�v�y\"��q�N�G\u0003��mTy�X��P\r�o��\u001d�K7d�\u0000����xkYo\r\u001f����?8Ţ��\u001d�J��m���M�l|7�l�>�������A\u00143�(�}6����O��_��-mE�0\u001a\u0003\u000b���\b����_� ��f�WE�i�d���\u000fb�W\rl�A\u0000�\u000e�8\u0015My�\u001f\b\u000fm��\u000b��\u0003�z@f�2@�\b�՘%P�\u0012\r�E�\u0005\"p�xO\t��v�YMQ�Y�x�>:��3ȴ�\u00180l�P\\�\t��Rı�4�s\u001dL���ٍ�1�QN��\u0015w���\u0013�؀�\u001f\u0004_��@�\u0017q\u0002�\u0005�y5�u�葈�b�����ц�E\u001d\u0010_\u001bw�\u001d�L\\������\n\u0000����l����GK�%V���d6gs����\b��s����u%\u0004��RP�\u000b\u0007W��h��b\u000b�_\u0019���P���\f��\u00182\"SHܣA��!\\����Hr�3rl\u001f������I�qnG\u000e����[�^ٟ+B��7\u000b��\u0007}�\u0010pǀe���}\u0017qE�\"ʏ\u000bcӁ+�Tb��2+�\u000f������\u000exL\r:�eM��ݥ��'���(�`L�Eb�6νg�-��`�\u0018�>\bGŔV���!�X?���\u0007;WV,#2`��뙠�'P\u0007���\u001d�;CV\u00065F�j�6\u0012�;�2�I�Ҟ�\"��6F\u001fbo�G�g���-:��D-?jWJm!��W\u0016�+�\u0005�-\u0014���D�X\u0012��R̴�Z�X�_ākݲ�-n�1���#]��0\t\f%���+Se8�G�F\u001a�z}�\u0012*��\u0017j!��%�����/\u000ee\u0001ߖ��3f�D5��\\�N*',\f\u001bM/�jM5+9�\u001cx��${���\u0006�B�\u001f6�2\u001dGz��\u001b���5[G��\u0006���Q\u0005y\u0001I�\u0019�� �=@e3�]�M��\u0012�ݣAI�!p���b6\u001a��\u001cݔ�<���\u001cC��q|�ׁ\u0003\u0004/����r��׫��\u0006\u0006��O�v���S�\u0017\u0019��\u001eVsŽ\n���\u0010��\u0017e\u0005[�I��<\u0002��|tC����50t\u0007�'���N#J���n��muw��\u0006�;�� ��D��P���\u000f�<-\u001a��rj�\t����^����I\u000fl*r/���\u000e\\���|\u0003�\u0006[�S��\u0018\u001fhҹ�F�CG�ǂ�}j�;9�0�`O\t�T⛪Aj��\u0016mm����l��u\u001dAo\u001f�\u0007�\u0001'\u0007�#y.��c��l/\u000bЅ�\u0018\n�`ܖ�����\u0004�:�\n���:\u0016�W\u0015��A�d�\u000f��Y�{L!�\u0001��ֱ0��|�l�P�\t<\u0014GOS9��(��\u0002�9�V~��\u0015ؤ�ݣA��!���|�\u000fՐ�!.ֻvV)�9��h�\"�7Pp�̀I��kB��1\bx8�\r�����S�o0���\fW(h�..�T\u0017s4�\u0014ED�\u0007>Ə�\u0004�^�;nP\u0019�PI(�Фx�\n8\u0018\u0018`� �mM\n\u0013�+N.���}0Ҵ{K���\u0005�\u0018[����\u0004]�;�0I\u000f*������jF�)ȣ�\f�,\t�x\u001fE8R&�^Ի�\u0014�\u0011.:(6#�X�I�\u0014���HG�nzd\u001e�;\u0003���\u0016�ph`˗�3�l��L\u001d\u0000�~��9\u001b�\u0016����\u001a��I\u000b����5��hA�����?�\u0004�X8P�]�������9\n\u0017��d�mp�@�d�;��tJ$*\r�\u0015��\u0007\u001fXO���j@6X\u0003C��\u001cA�������?��S\n�\u0018�fX�4��\u000f��9\u000bB���ˮ��������܊�I��\u0002R�\u0005��v��\u0018&\u000e?�#h�q�\u0014��p9>\u0019��`Ro���a�+�X(��H�?p��g�\r_��/\u0002�Qq\u0003�y<��6)/7�A?�!���M/�\u0001\u0012~:(\u0015\u000b��V�EM��ƢG\u0014������Ū��a\u000bI�Q���\u0012f�%\r8�I_\u0011/NM��rn�d\bN\u000e&B}�f�B\u000f�\u0001䨄��>$\u0013����hs��\u000f\u001f\f\u0019�\u0017\u0013��.���\u0006Hb\u000e4.���Y!���SjM/��LX\b���Z��\r�r\u0016�%�_��\u0002}\u000e\u0003[�$�h����\u001a�\u0018dF���n-\n\u0002��\u001d{2T�rz�`E�c�����#'�U����U]�TK�*���.0�3��FQ����\u001e ޗ\u0000uMl\u001aVO�Z�\u000e\u001f�id�\u0007�ːZﺒUD�8/��-\u0012oG�\u001e�I�J�\"�\u0016\u001a���*���1�\u001e�M<\u001a$cNYp�F���Z\t�wq�&d*�\u0011��\u0005�\u0012��:c���AI�!���L�*������(��Y\u0018�\u0003����{:�O,y�\u0016\u0000���\u0018���V\u000e�P�#]\u000f0@;\u0019�֋D�t-Y\u001aH�=��͊\u0007>z�\n�~2�\u0006<+\u000b�U�#F��M��5<\u0010��\\��\u0005E�\u000e�Id\u001d�\"�\nԉ�AE�!����\fO(��\u000e��l�\u0000�p���Z@]���\tz��L9�b�?����ɥz�Pq�c7�B\u001bS \u0011ˀ�H���Ά�y�0\t�\u0013��i�\u0012$��O\u000b}�Z�u:�\u0002�\u0017ʂ�dM\t�\u0019\rt@�X���QY�G��Ǧ_��\nfO�HyF\u0017�o\nW�\u0005�&�)\u000f\u0017��\u0010�$.o�\\Xo��0��^7��he��X�0\n��vo�\u0006\u001c>jE\u001d���3�)=y��4CDT:�t\u0003\u001c��칛�z3`D�Cv�!*\u000bp\u0015\f�BpPڱ�C�ꜰ0�s���\u0013ױ\b(U�שá7<��\u001fߎ�FSVi\u0005\u0011�w�+|_\"\u0006�Σp�\u0015\r�#��F(Ы��ǝNLJb�\u0018U\u001dN�\u0005����v\u0016�'d�5?�A�\u0006H����A*�!Ԁ�Mz�*��\u000f~�T9\u0019�F�P�w\r�_��v6�v��8�\u000e|?B����\u000e�/p�lvv��fMޙ�|Z�9�SQ�P|\f�.K\u0015QiU��\u0017��j��T�.N�0�+\u0004.�Q_�ski��~�C��{,$?(O[���0\\-\u001aԴf�>�؎Ri\u0011�k�($%\u000fI>�\u001co�B\u001e\f|W�+\u0017w��:�\u001e��g|�&)��;o��8��1p7���@\u0006P�A�\u0015�\u0000�\u0003�\u00133L�\u0002�-���G�����8\u0012p�\u0002i4H�4���d��\u0000,�\u001dj�fp.t�\u00011`�]d��C��l\u001ca�\u0014�(4�6}\u0012>���\u0012�}���T�j@\u0013ܷ��&@\\�w\u001d�\u0018�B\u0007���A:�!��L�y4�%�|hb���W���?�\n��֟�X/ǝ�Vއhp��\t���\u0014d�\u0007��\b����E��a/��(�D�kyM���]�r6D\u0006^�OY�!����ժ���p�Geh��”�G;���+R�=�X\u001fe��jۻ�\rm}�'�K�+�)��KW\u000f�w��\u001d\b�_\u0018�\u0003@Jj.��\b��S_\u001aZ\t�SBn���'��=��@��Ls�{�\u0006�>�\u000b,­�Kr��0�*��-[[+\u0004��c\u00146�:t&\u0013�x�Lo�1l�N�98@��\u0007\u0015���\u001f���W⎉\nl\u0016��>31ײ0Y�����.كo�8\u001b�ؗynA�l�#�5qs$�K\u0001�-��Z�;\u000f҂�M��$�A5�!���L��}:9+�H:�����V���\u0003mn��s�fZ�\u001d��S�3\u0017�e]O\u001ee\u0001˿-��������C{\bTq\u0002+��X�a�l�Sj�H:��]�\u001bٯ\u0016�󓗃\u00076FH�1R\u0004�^ӑc-?����=��-\u0005j�(\u0011�u[R�7\u000f�Ra�D���\u0012�uR\u0010\u001b�.����\u0014\f�U\u0001����\u0018��\u0003b�\b\u0014OӤ�4�\u000f��\bIR�\u0016�P�D\u001cԥ�V\u000bQ�\\�N�x�#9�+�\u0000\u0002�}r\b�\u0019�`��\u0015��\u0005\u0017��\u0012���ݨ{\u0011�\u0004\u0001j�\u0019��!x�g�~תO6��1��P-+tH��\u0013�\u0010/�Vk��h���pڼ�/\u0012�鋗?�\u0010�\u0015C\u0017�\u0001p)�΂'�U�:�<1�ۜ�Ak�\"\u0010��MX�?�l\u0019�W����o\u0019�N��f�\u0016G�g6IP(_\t�\u0018\u0001�}��1㋗�\u0018Ԣ\fr2\u0013�\u0013�mkX�G�'�S����R\f�\u0011'\u001eAҎb�n.\r����J�~�D�H\u0011H�����\u0005\u001e�\u0017�!ɇ�-�\u001d�ؒڃf��6)Vw6�\u001d\u0019'��\u001dޱ\u0004�\u0017ݼ�V��`�^�\t���\b�4ͤ�^;%�\rC���.\u000bNR6Py�|Y\u0006\u0001�N&ج�\u001a����ј��\u0013�D{�q0�_/\r'\u001f\"���^H��ZV��aZ+QcS٢zيV&Oe�N�K%*�\r�[g�99�J\u0006��.�H�}���\u0002\u0017�e銥W/\u001e�\u0000֓���\u0014A��x��:��M��5ږ����\u0000I_>\u000f}'��������\u0016�#�*�[ad�+����)d9q�50<\n��\u0007�\u0002!��P?\f��m�A:�\"$���bQvk\u0011��kʑ���\u001e\u001cg!��^KD0\\\u000f+�]�R�iF�\u0006Z^Ve\u000f��w>����e����\u0006ijq;\u000eM�c\u00012_��,�M�i�ɆT�p7����u��0�?q����`��.�N\u0019��\u0004�h?�0�-��Q�A�$�O�\u001f„�H��D�1�ߒ.��\r��yVh@i ���\"��\u0000���\u0013.�!HG8�r��`��MK�j7��\u0016S��Z�j�\u0007��}�\n�J{g�|�\f\u0014�\u0014zĤMg��2\u0005�� �R<����\u0003|S\u001fs��<��^ҍ^�n�¤ɒ�\u0000��_�r\u0019�/���'2��\u0014Y�w�\u0007�\f���(m�Ҏ�\u0004���X\n�\u001d�wk���ՇfH�(_`lg\u0013�;�A��\"8���b�*k�_6�M��xm� y�\np\u0013%���<�\u0007\u0011&ʋ9L-̊Pǔ�\u001c\u0000��,�t�{\u001d��ق\u0002���,6\\|[�X�����\u0001~���\bz}\u0014\u0005~�yƯ��]�\u0010KI\ns �g֒�or�\f�Q���]\u0012���`�9��ՅF�1ʗ֑���B��\u000eQ,�=\\�\u0010!�I�c\u0014E��F-����6�m\u001e����s.X7�Z�[�ʒ5^,ɬ�I�\fq�m�);S\bH��E�A�Ρ��af�$T9���6<� �������E\u000bG�_x4���$˩ա�C�}�ܛ���:8�\u0017�H�e;%P�p܎��֮�w\u001cVqBZ+Â\u0001hG��H��\"�\u0007N\u001e�m5� |��\u000e��E\u0000�A\u001e������1U\u0019�=^*\u001d\u001e\u000bRe�Xo��ks\u0000m5�>��\u000b\u0007!{б7�:�e\u0002��>\u001e�\u0007��Th\u000b��ڇ1����\u0007�\u0005to\u000bm;�AI�\"L���d�\b�\t�&c�\u0018�Z��W��`��V��Z��{,��*\\\u0011���R\u0012��WD���Α%���-�/K�-Ď8���R\u0007&\u0016\"6\u0006\u0018��m]T�\t0�7,\u001a���ײ��х,=�6\u0019��Ĥ\u0011\u0018(O�e\u0016)�ƞ���\u0001���TQ�\u0010#�����i~&1f�gA��\u000f�Z\u001b�uZw\u0019XX�\"O߂�!5�|d\\,�\u0014�]L��T�Q�.�ie]�f���9w\u001a��Z���L���=~�Py\u001eH�~~{el-����ՠ�B�\u0006J\fD���o�.W\u0003� BN�Z��з�\u0018a�g#�\u001b�Hڮ�~Wy��B��\u0017T��\u0016\u000b�k����5U��ݛc/\u0002�E,!U�5��\t׀��V�\u0007�S\u000ed����\u0018.C��$�9�AK�\"`���bH�X䉁CMap�\u000b\u0010c�:��L@�\u0010|R\u0019D]���\u001c�C�,8[?xV�\u0003\tO�.A�I�����������B���C�A�H�J�9l�֊|$�?�����BC%;](3\u001d=��L⳶� sQG�t\u001a�6^�=<�hQh.\u000fH\u001d�pG?t�\u001b)�=����RHo�7ͣ���42\t�\u000e�\u0010\u001b����*��f�a������i�\u001b��ƬÆ�r�����\u001d�v`Z �x�)\u0019\u0001@�2no��x�����iϟ�\u000b��\u000e4?-��\u0013��]�\u000b�k��-���15�3\f�����ޙS?�f��>���<\u001d�I�[�G�s�\u0016���0�,ݝ�[���D���rgj�n2�\r��c��\u0000E\u0017nnۗ�\u0004'�\u0012��.h�m5�AS�\"t���bQ�A7�@��n�%/i�:d\u0006��z&-����ɵh\u0012}\b��\u000e�&[\u000e�Za�=V\u0016�\u001a64���0��!\u001a�U�k㧔|\u0018ɠ�s��7�\u001d�>�hޞҀ\"��S.}�G\u000e)\u0005���Zq4�\u0011�j\u0015\"VW�]�����:\u001e��\u001cJ\fM$Q��s\n�Kb����\u00144+\u0003�-3��͕mI�[�8h�v1?<10fB�N�؃6�q��Щ#~����:l��k���Ek����}�<�k�M7\u0001C7���%\u0012\u001bI�Ι$:\n�+\u0003n\u0019uY�z�\u0005\u001a��\b�\u0000X�'��}��\u0003\u0010�o\t�9��iT}}����p��87}\u001ai���\u001b(�5p�,�n�Ұo�6�����$rb�2�(4��X��.e�_�e�Г�->a�u\tGQq4�AX�\"����s���4Zb&3�K�\u001f�@l<���#�\\�Y�3S�J� �:k�Q�z�\u0001\u000b�\u001c@�o\t�Ge���\u0006���VBP�ٶ��pBG8k�Ym�:0��\tC<�\u0003�c\u0001\u001e�D��s76�y\u0002�x\u0001���v����r��$�i�ܗ\u0000\u0017����\u001c֐�&\u0016W\u0001��\u0012\u0012\u0015�\u0001�\u0010����G�`U�ds���7�L\u000f��\u001d�rW\u001f�k�93\u0011� \r�\u0001\u001c�R��|�c��$Ѵh\u0013��k�\n<\f,���������0��h����U���9���\u0019�mk�8\\�\u001b����֌�s1\u0016\u0019JǁD$ċ7\u0006��'��\u000e�Ÿ���8UN�Q\n��\u00079��\nE��\u001f�פ+&y>�\u0013\u0012�f#}�RB�Ɯ���0�+�qh�\u000f�\r摵9�M��XB`����5�AL�\"����a�9�`����w��3y\u0007o�����R\u000b�E�\u0006�z\u0017\u0012G(\u0019��n��ć,I~}\u0017D\t@�VKHhc\n\n�?\u0017ጜ}�\u0016\"8�\u0017w�\u0013�Nr|ɢ�p�\u001b|@\u001a����\u0019�\u0004���$�)��ݶ����()�*��\rϿ�w��A6��[dHI�Bz*[�\u0003���\u0002ia,_�~��\u001e���À�B3\u0017��c�<��m�\u0004����!��\u001f3�u��x9-\u0010�7TI������.\u0018��~\u001d�\u000b\"$@��J�\u0006�D�\u0015-�[\u0018��s=JZ8\u000b{f�C\u0011�\u0007X]�95;_�������EQHY�T\u001fX|��i�\u0019V\u000b)2�\"��9\u0010�����{��u^\rXe�\u0015�T�\rC>��54/��\u0019U�?�\u0019�ܛ\u000fǹ�㠛\u0014�\u0013D�9�B5�\"���}b�\u0018���\u000f.ص8��$���u}��jw���\u001e4:���Fԃ���u�Oh�V-�\u0005!���\u0002g����\u0001�\u000b�,�UQ7ʩ�\u001b\u0002�ֺ�n��dۤ�&)ݨ��G@�'\u0000���j���2�3g\\��z����\u0004?�xL��}�d�R�\u0014\u0000vE���\\����'�ɐ\u000f�З������\u00019��6�Z\u001e�\u001c�v~W��-Ȥ�1�l�\rz\r��r���hc�\t�}=���}�\u0015ܐ�]f1�y�\u00059�%R���z�6����=~\u0018B\u001c�����4\"�E�2�]�\u0018Q�\f|/���QK�E\u0018K!G����\u001c1*�\u0003w��Z��ܟHȶ�Xz\rR\u000e\u0018\t(y��\u000f\u0007l����\u0012�R�9L\u0019m��O\u00027Y��\u0003�\f��\re����̀.fvL4����B~\f̳�P\u0005\u001bo)��M�̅\u0016=ր\r%�|�\"Z�w�v�� ��o#�+.E\u001f�\u000bŊN�[�\ba\u0011p�Wb3I\u0019U%�z��&�t@�A.�\"Ā�M1��3J�Z�\ft\u0011\n\u001a8�QJ\u0015����bO�C���4�*��.?~2�wNܭ\u0007O[\u001aqSp�\u0000M!ᮬ8Ӷ�D\u0002\u0007xJ\u001b�y����'�<�]\n��=�Ɏ\u001b��T}[3�<�$PF�Oq�1�~\u0014�����(�C���\u0010P�TM0���\u000e��\u0011˭m�~\u001cJ\u001fL���\u000ba�B�\u001bt,��\u0006�/�HE�\ff�^�����K�b�\u0011��70T��_�\u0016d�Uƞ��E<{-z�JK�\u000b�pR|<�o���h��fw`�\u00164g�¸?��#�\u0014�\u0002\u0003��ϟ�9��\u0007ʷ�\bF�-\u0013l���KVqkb��\u000bm�t�\u0010.\u001aݢ��Z\u001dl`��m�v�H@\u001fugum��A\u0014�\"؀�L��'}*\u0017\u0019������^:�^���Ц=�/\u0007�\u001c`\u0007Bl\u0014^g4x�H\"ݫ�d������/T>O��'�Tbo\u001c=��bD�K�`@��'~�.şE���{M�\u0003�o�@2����CI'��0u��0P\u001d9%E��$\n�`j��ڶ�CA9�6iO\u0013�48\r�\u0010\u001dS��B~\t�x��Ll�Bo��\u001f�\u0007(��ڄ�n����@��%]�y[�qW]d�5������\\�E#R�*��\u0002�kYmE3\u0010�)�Յ�6E�A�%)����o7\u0010\u0018�Y��G�x,�&�\u0001�R}�z�\u0010��y����\"Q\u0007�\u0013�OtZQ?̟�A#�\"��L�]��.\u0015-��v�$\u0010��9���,i�|\u0001��7��������\u0018�2\u000f�މJ���\n�\u001c����s\u0016�$}~��{�D��ح\u0013/f�LC2���=�oخ\u001bU��-�;\u000f�kR�2�S�\u001e\\�%����p�\u0018�EB%@X���֚�T�^-\u001c\u0015����?��~��54��:m�*�E�²�l:ER�����=�g���i9WˣOZ�>V�\u0010��(�F���Լ��\r��\u0006��t\u001e_g9��\u0003��,\u001b^�\u001b�\u0005oY���\u000b�p�}�N�\u0010�!�]�~\"��\u000eguo�ɪD�k[hF0����o��Uͪ�m4�nH�)6?&�h�ڣA �#\u0000��0�6�8�\b\u001a�>��b\u0018B\b�\u0017��B�^\\p���bM��-gZ��0�\"U:��ס��t���k�,m�gVm3\r�\u0000��\\\u001e�B�%�1�m\u001b\"X�\f��_+\u001e�\u000f3t\u0010�����U��̻�x%�g�\u0002\u0011��\u0016���4m#�k\b\u0000�\u0006�%\u000e\bs���p��Pk\u0005��\b\b���*\u0011��A�\u0010\u0006\u0015\u0000�7RB�)*�?�\t���FN��p\u001e�\u001e�lG�1��p�\n�&tD���f��\u0011]\u001fd���3��\u0014\u0018��Jt�p�����\u0012��k줷��ϥ�������df�\u0018�H�\u0003&vj�F�)ފ4\u00196J�v\u001e\u000f.�6$��p����\"����A>�#\u0014���bBb�\u001e��=t�\u0013�\u001cD:�w�-ڱ�7�:\"�\ft�dp8�FIe\u000b�*ȳ���ij��v\u0017� ��6X�e8��\"��\u0007\u000bW\u000671HkyY�2Z�\u0004\u001cr�k \u0006�؃\u001f�l\t����\b��^���|01�^��D~��ʙ!\u000e�\u0017�M#��2��/��d�\u0006�h�\u00024,�Ɨ.��y&}\u0004��4��[ü���Q&{��nSW��0w����W��W�M��5$�l�\u001b\u0019�c\n\t�l�x��v1�/�o���\u0004�\u0016��K�!v\u0005n\u001a/��K��+A�<�ek s�Ɂe\u0001��\u0016�\u0019Uá�XquQ!�c�R�N��BH�$��o�U���t�+y�\u0014��2��\u001bS�\b�A\u001e�4\u0004�\u00053�A8�#(���b\u0011BO�;�\u000f��h�\u0010d:�<��A�\u0006�uC`=�~y��!\u0007�s*�2���|�X��\u0010��n7)�iP\"�Ŭ9\"�\b��b�\u0001\u001f�E\u0016�E6��n���\n1��\u0000�I\u001a.�_\u0002��\u0018ӑs�z��B����\u001e�\"іG���|5k�*|�*I����\u0004\u0001r=[=���\u0017�gs\u001b�t=1�\u0016�۳�\b%���|P[X�\tds�]���\u000eC5T'$\b�>\\\u0018\u0000\u0019=���DǪ=�i=�i���9\u0010��R\u001c�<\u0014�T��}߽����.O��S�\u001e\u0012\u001b$�N�\u0015<�=N�\u0010��\u0010|��\u001a��c:Y��S�caڟp�,�\u0013W\u001flhiƛ����\nm��\u0005��\u0016�i?���Gj��Φ�I\u0012�5�A?�#<���b��1W$�OJ��NUtwEu/f�h���T\u0005G���,+�T\u0015\n\r�ӷ�s�`\u0011��<\r\u0018��\f]��{\u0002i�;\u0007��MϦ{b�\u0019=#\u001a�9��~�TF�^\u001d\u0000�oܙ;�9\u0004�S:E��Y,خ��%� \\�\"�Y޽\u0016�`�`��\n�u��X\u00150��\u0003�\u0014\u0017�v���\u0006\u0019尥p�����K���M�2.)�A4�=\u001e\"��\u0005�#P���\u0010�P�e�m�m��>n�b�f���ApF�����e\u0011�?���SQ\u000e���|��\f_\u0013Ҿc���6�����F�\u0004�V�qY�����b��R\u001a��\u000e������ZƂ��\u0013651�\u0013\rr%�~��\u001e�R3�\\ķx�c�\u0011)�]��ł�u0I(�T��\u000ba2O5ޅHL~0q�p�:�5�v#����h4j�7�Fi��A�>^���H�5\u0011U�A��\u0017f\u000e\u0001��y3\u000b!r�2<���$��\u0010��I{\u001b?��x�R�[|*�\u000fC·�,���2�bL�=\r��B7�R����\u001e\u0005\u001d\u0000)�� �\u001a!Y�\u0000Cɺr�U4H���\u000b�J��I���Uf\n�\u001dN�y\\\u001fpw����\u001c:���AM�#d���\u001dn{Y����\u001c^9\f4\"�iW7@괖O���~��G�'��\u000e�����\u0004\u000f�ܾx:�*��J7���4L�3dq6��\u0019�\u001dTÜ>��X�\u0006�<�����\u0016�?\u0010M �]o(��>� \u0003g𬾪KԂA'��P\u001e\u001b�\u0017�M�\\\u001b��J�n\f]��愆�)o�r��-y\u001f���z׽y���+��\u0007��V�r���}�ۈ\n\u0011(�'aQ\u0001�oe�x\u0002����ч��\\\u0007E�k\u000f&�N�\u0019:!��s����ŰŕQ\b�����\u001d�M�.W���b\u001a�[?͚��j�\u0015��t\u000b�\u0000:�kK��ϑ�I��\u0002 ���\u0015�]\u001aZ?�4�MͶ�7�\u001b��o�t�(#6]�®�r�\u0012��x�H�K����ɍ�h�s\u0003��6�A@�#x��(�\u0001��;��^W�r�tC\u000b$�L�W\u0018.��]~\u0017ur\u0001q�����6�d���\u001f�yW�8��wC\u0005��\nrPR�_��\\�\u0017��S�e\r����VΫ%\u0002�ğ�\u0016�+�\u0013*3�(��AA�#���0��7W�[\u0016Ed\u0013��\u001c��oh��Ζ��W�]>:n���\u0007\u001f�@�\u0004Uv]55�ҭy�}�o.�)�\u0015�\u0007T�7@�b���\\Q4�l��W�t��)�y�\u0016b0�p��͞BY�\n��\u00163�\u0010�hf���<8_H6\u000e�}2r\b�t�˝\bVc�)mّ̼�%�N|��\u0002y\u001f��18\u0015�5\u000el\u0003�opԺ3� \u0010@s�vS\rO\u0010\u0005 ��!���\u0004\"�\u0002�\u001b7Am�u\u0016B��FI�w$�!dž�q\u001f�j\u0012�m��\b��\u0019���R/�\u0014!��\t���\u0007��@M�%�Z���9*\u001aP���'�u��p��p�\t��Sr�@+ѻ����Q�\u0003\u0013G�$)��K����\"#I����Y;�溵�A��#���}b��\u001c��r��_�i�cӃ�\u0014\u001d�\u0002l7a����\u0014t�S��s-�\u0004/���ʳg��&��U;QWP�L����w#Y��>�ԑ$�\u0014\u0012O��G��\u001d��\u0003lt\u001d�\u0002�\fpZ� П�\u0012�8P�vx��\u0010�*(\u000e�0���]��e���ٍ�ј�x�\u0013�\u0017�9�F|TGۊ�\"�\u0016��Y�n\u0004���І�.�M�LF�\t�n\u0012���a�8�\u0010Rڲ�p`�2'���%\u0014�w\r冚�\b�)�q\\�h���N\u001e ��_�ZLJWi,\u0004�\\�F��E|\u0011��[(/Z\t\u001a�Z�\u0010�(\u0017�1�w�;F�ih��j4��\u0017�9Z�I\u001a����S�hI\u001eڏ��N�\"eژ0��n\u0003\u0016����\tݘ\u001f\u0007W�iU0\u001a,�J��\u0010+�\u0004���et\u0010\u000f��]�B�%��M�S�\u001b��[`�v \u0007\u0005q���y\u0016��\u0012�JO��؏�'s\u0001�^�:\u001a\u001b�F�~s�H�)U�\u0010eY\u001b�i]һ����4$В�\u0017�{O[g�ܽ���\u0012�\n���.���\u0000v����pŻ�m\u0015?b'H2��,S��\n{aG,�\u0013h:�\u0007���ƜJ�\u001aJD:�.)�\u0018|Fj`iEr�Ӆ�c�件�C�� �����A\"�#܀�L�d��+N\u0016�'\"���\u0000Z��ue�\u0003O�\u000bw%8.ٙ�\u0012��hh�\u0000�V�\u000fA̬�\u000b���7������\u001f�M�Z$\u001b�C�\u0012M�\u0019l�&�zHzU�I���6��y,\u000fX\u0012��\u0015]2\u0000&\u001e�\u0004��T)fT5�� �(�\\��΋S~\u001f\"�����&n�xV�\u001c��V���`�1\r�K�\u0018F���SI�>J\u001f���x0\u00061�f��R�S�s�\u0007L\u00024�k\u000bq܍\u0013������\u0002\"~\n�\n��N?LI�@��\r\u001c\u0016�ωٖl�\u000e[)�ַ�lZ��QGX���m���\u0010\u0007�}��{p\u001a�Z��{\u0001�\u0003��N��ب����&��J���[\u0016\u000b��A.�#���M�����\b���6@�6\u0019=�\"��/`�Z\n�_�P�-K�}�RQC�aW����*� ��w��\u001c�'\u0001$IM\u0002\u0019�f{��ԫJ\"T�iRY̼�2��\u0004���rK�P9�=��\u001ex\u0000�|\u0001�\u0019!��z�\u001e��୞�*L\u0003\"a�9���=�|\u001fՁ\u00000�������(d��F��W��ibE�\u0019\rP�\u001b�r�&O7�\u0019i\f�\r\u0014|Ba\u0011\n��\\p%�aH��54\u0005�YLL�y�\u0011\u0012Pц$��g��\u0003$\t�>�\u0010�I\u0001Nlf� �b����F`e&�2�\u001d\u000e\u001e��\u0007���\u001fƵ\r\ry��+\u0015H��Z�u�[jX���卹秱\u0004���\u0017�`�w\b2�s]�A1�$\u0004��۷t��4��c,��#���0ߦ?��{���=�\u001b<�zRR`y�4�#�\u0019\u0014\u0016��+\u0003����`_='�2�(Rg��)�\r�y�f�S\u0000�\u0000\u000f�ε��(�zP��q�ͩx~\u0002p�AT�$@��L�1�\u001e��L�3s��N�e�E7�\t�\u0015L�X����9\u0016:V��\u0006g*�'u�zϿ�\f\u001c\u0016Š�\u0003�\t\u0000�\u0019�=P��fc��}%Çd{e�U�޾��C\u0010��_#����2ї��^��\u0011aD\u0010�@��S�ᢰ�\t���77?ڱ�\u0017h󨐋��\u000b4H�w�����\u0019ƪ��.8)��H�^�T /�\u0011�����ҽ���.=œ5i\u0005�\u0011\u0019\u0000�q�Of�\u0017�\u0013a�U��Bq�+�}�EZuu<����\t�]N��1�\rLٺo\r�t>�XeJ��r�Ȯt�W`ZG�\\���q�\u001dtd�ʫx��\"B�:�;�����Ǫ�$�p���\u0019'kO�\u0010lg�enss&\u0015t\u000f\u0014Y�\"H��b;\n��a(�\u0015��J�\u0003s���\u0006O�!\u0014gm�AR�$T���\u001e��c6�|�\u0003L>W\\&�\u0003�+�\u0015��n��q�.���JX���bw��%z�\u0004��\n\u0019�|�o�\u0010*4��\"�ژ�Y�\u0014e\b���\u001d{9�'>SS�\u001f_���x���x��\u00001Q㔯�����>m\u0014�(�������Ѕv.�?���Q\u0018\u0015\u0001\u0004�}\r\f L\u001a�\"��b0a��t�b.�Dd����p\u0001�P�\b�\u0018�sA=�:o���.�>\u0004�?տ���Bʾ,\u0012NZ5JL�v�c+���M\f*�'w�{\u0018��>&�3?�_\fPT0\bu�k�\u0012v��b|]p�1\u0011D��~��2��\"����u*\u001f#��1l\u001eP�{�w\u0006ij\u0018\u0011�Ok��5\b�QR�x.�f�\u001a\u0014�W��\u0014\u001d\u0010p2X�?,\u0016����P��+v�b��0#-_�;�\u0012��A�$h���\u0010Z�cd+׽[\u001ai�8>5g������U^2LA��[&w�!L�� �=2˽\u0007�4!��*����\u00175�MnQ߅2\u0014r;x$\u0017~��v�O2�\u001ai�P%׵_q0��\u001fL\\ƫ�F�HZC�\rQ��'۴lH��ɭ�P��`ׯ&gG8<\u0017\u0016\u0013\u000b�֚\u001a\u0018\u0003\"\u0002qy�i^�k�����W0��_o�\r̋��.��ƮԖ��K{ndӨ���\u000f�#I\u0014��)�P\u0013\u0019�Ӎ\u0012w0�b\u001c��\u0015`*$X\u0015�n\\u�-�h����$�{#��\u0011\u0005\nѨ+�P�d�3\u000f\r���y!~A?���[}\u00175\u001dr\"�\u0019�[i5�uR�b�7C)��\u0015�T'����v�a���gy|�J7g���ye�\u0005�B\u0004��\"�s�\u0018\u0013�\u0000��V>)eܦ����\u0007��(��^�\u001c�B��՗aj�A��l�(��D�[|�W(\u0016s�%{�INm�\u001a-��\u00183 Çc���x)�\u0004k��2���\u001c\u0006\np��C�!�+\"U�^�\\M�\u0006ݿ4\"�v�I\rd�\u0001 �p�ިՒ�O�?\u001c(Ư\u0017}-,�Ia�P\u000edO���H?��\u0011�~\u001c�\u0018ۣAI�$|���\r�\u0004�jġ��HG�9K�\"�ۅ'D���FУq\u0000)�\u0010��b\u0016v�\u0005\u0012�u\u001c7@f,�\ru9��\u0001P�Ϻ�莡�?��\u0012�!�`6YR*z��ʓC�îl瘇���%#*�1�\n��Q{\u0004���:w����\u0018\u0018�q\u0005���\n�W��CH��&X�c��\u0003A���@\u0001;A\"ԃ�2�\f�0ۨvM�0*�c�����ެǍ�O�I���N���\u0010��њ\u0003�Ԓ�K�!`���ϩ�p��V�]�`J�+\u0003&�\u001f��_�n��R�[�O�gu���S�L��F�8\u0018�M��r���2r��p\u0002L����㧿�ޏ\u000e�ǰPn/D���X1��+E�GI,\u0001���t\b8��Z�n\u001a9~%(=�#a$��\bףAA�$���M�\u0018\u0006�ch�;<[\u000bG_W)\u0007=\u0004x�N�ޯ�1\u001e�#�\u0011��K�mG�Ǣ�%\u0019��\u0006?j\u000f����\u001e D�\u0006�:H��Šo0� \tD��J\u0002\n�\u0014\u0016��K�\u0013�d�QJ��v��GQ�ֹ�'\u001a`)����\u0003l_�\b��ԸB� ��(��ϯwU#a��\f\u0007��y��4�����}��\u0016����m�b2b�\u0014�/\u001a����\u001e\u0003(�X\u0006�Z��x�6yTA�\u000b�\u0012\u0006�\u001e��A�$*�ݳ$�:��F3\u001e\"c�����>�_'�l��#\u001a�H���s�C�\f|�A�2��\u0007\b���\u0006s�\u001d.��R_�g�on��o3�Z*I\td\u001di�\u0016n���V�A�\u001a���3\u000f�=���4[�*_�\u0018ۣA�$�����*-ß�\u0015S�\u001bz�\n���\u000f�\u0003�~��\u0016t��=�|����I\u0001�73A�_KQ��^\u001e,��k�30-H�v5f���C+���\u0006/\u0007N\u0011��d\u0015X\u001a�6\u001e�:�q�\u000fs˂��P��KǏ'(3\u001aծ{����\u00049nC\u0017�\u00162�\u0016>S�ҕ!`b���\u0006\u001e\u0016�ٲd\u001c�5��;�\u0005Y��2�1�\f�.\u000bw\u0003{�\u0019�[�wr����D�4\u0003�\u0017�\nHn�\u000e��j\u00153�|�\fHP�G��.���{;\u0016\u0011�5J�]��\f�\u0017[�:��\r5�Լ���� �\u0004�\u001a�-+iG�o�\r[��.�ʬ�O\u0005�?Ag\b`��CN�B���\u001b�������g��t�Ϊ6l\u0000\u0004@\u0002H@�?>�4�$~�!iz>�\n[��,D_,B�\u0016�oX)|�U�H\u000b*�yl���Dy�\u000b�������\"5��ϖ4ZP�yW�@\r���1��!�4\r��*U2����\u0000� �T�*ˑ��s6�\u0000R����3�a[f�OE��uG�B��?\r�ͯ{���Ȥ\u0018W��E4.C\u001e=�x���H�\b5\u0018͂�ȞkFy���\b�p{Ӑ#��A\u001c�$���X�u����_�*��\u0018���Rʺ�r�3\u0000\u0002\u0000���0\u0014B�R\u0018ݶ���̕U��;a�m��W\u0013͋\r�F\u0016t\nP�\u0005����\f~\u0007z[\\\u0015�e���(![��A\n�T�?)����?W\u0005iCt>�\u0003�\u0012+T\u0010����)�� \u00115v�BdjR'W��!�ƅ�I\u0018+Y\u0007sPa%���٫�����\u001a|�\u001bi�*$\u0019�>|!\"�1�<�\u0019�\u0013�\u000b����g�ݰ\u000e�B�{\u000b��Fg�~.x��AV��3e5c�1Æ}\u001d=\u0016�\n���֒^���`��\n'� �\u0007��\u0014\u0007D�u*�i��.\u00133�\r�eu�+ؠ6���\u0012�]$y�\u000f�A*�$̀��mt�\u0012\u001be�Y�ڱ\u0000�a�\b8����5X�bk�[\u0003g\u001d\u0010�a^b�레i8�M��P��G%EcC3�\u000f�\u0017\u001b�������(��\u000f�:\u0018p(sF�c\u0004\b`4�ݞTM\u0004@+w\u0011�iy\u000f�\u0005\u001d%A\u0000\u0015)�1����̅ѹ�#7������W`�_5خ�lE\u000f��ЅK���\u0018�y���N��˒����i&��\u0007j~�P\rچ�}��\u0007')E���\u001e�|�\u0007L��m6e%z�)�>�Ō��)\rׇ�s�\n\t��&-�Ш\flD�Gݦ[!������Q�+������rD�^�\u001e��]�����%\u0019�\"e��t�J�A�^��\u0010\u0003e���+ߺ3��A\u0013�$����kQ.\u0003��ԃL:�85\u0018��K�6n^����v\u001fTX��~��vI�誰a�F�lFW�X򚯂ĥ\t��v��w\u0005��q�;��7�*@K�S��j�\u0013�\u000fN\u001d�1L��\u001cP�\u0010a6��\b��\r3�ul�Ι\u0004��O��\\٢��o\r���\r�$\u0019�|��IJ���\u0014�m�+$F~���\n�yՖ|ƀem\\�e�\u001d5�d\r\u001d\u0003�)<\\Cv��ra���7�r�����}��J@EC�:<�>C5����6�_���;@��0����Yr\u001bB��\u0013=��\u0015���9r\n\u0011�� ±\u0018��yqL�t�\u0007qR����R�A%�$����Pfg\u0013�\u001fWA�n�tDY?)�H�\u000f!ML{�\u0003�!\u0010%�=S��8>�\u0005�@G��Kõ�#\u0001\u0006\u0010\r8\u001f�;ҙ�w����dIh\u0004\u0014\u0003����\u0007ݯqOՙ:�\u0012ՒI��w��~C�����-'�Yx��\u0017^�9\u001ao����I�yL3\"��5\u0012�~kO�����W\u001f���!�Q��@)�Q\u0012\u0000��yͪ�*U�T)lgC�*|e���>�\\[*)\u0004�����+\u001d�n�\u000eP\u0011_����#W\u0012�\"On\u0014�\b�,�1���,�z�6\u0006����!p\u0015�\u0010�\u000bF�Y`v��yi�T\u0005lFbH~�g|\u000e`�C��\tW6\u001e�1(�D��(2`��� $X�A �%\b��L�vu2:@y1�}\u000e�����\u001c�G!��:�u:#���,DΚ����\u0015�c�v��m~���C��y��\u0015���_b#�-�o1���/hD[ᤐշ\u0002���'\bD.\u001c�:\u0013�q�X �8\n��L\u0002!k�r�1)$�����\u0007�\b�\t�æ�3��%�L\u001dJ\".��#;1�cJ����K���V��87s\u0013�������jY���$+5�e%u�b*��\u000em�0\u0000��\u00064�u/D\u0007^!\u001f>w�2e\u000e�\u0019P�,O�m���|�v�6kR\u0010v&vd��n�\u000b�\f�ވ\u0005�wUt�;݂`�L�;����\nK\u0002�t[w�\u0015@V�z%���\u0014�A/�%\u001c��L��J�\u0002\u000b�΍\u0006����1�\u0006D-��\u001fX\n�n\u0010��d�k�7�\"�(��]��;���\u001e�����f\u0015�������v��6\u001f��}if����i\u001c?\u001d���G��\u0014C�4������\u0005��!`�_��\u0000�GU�\u0004\u001dBB�y:\u000f�\\��e\u0005ѧ\u0002�V���� ω�߈��Y\u000f.�\u000e�\f�N6\u0016�ˮ@�\f��j� �m\u0014�p\u0007�Ѳ\u0007�/D�\u0014�U|�s��^\u0006�\r}�\u0005�\b�Ô��x��uQ~H�\u001a\\��Ϭ�DžU\u0012�!\b\\��S<���mǿ��9\u0014�@\u0019�^^���,�2t\u0013ț\u001c}PR�\u000b��{��;�&6n�����%9#_��\u0016���AN�%0��L�t}�L�>R���I��B�CxA�xA\u000e����=�<��\r`w��_{n\u000f\u001dӂX�2�X1��ȿ�2vD�#:\n\u0013�Yd���k����u�\u0016�\u0001K�Er�O|���\u001a�PR`>Ň�TQ���\u0017��d/�\u0000@�t�G\u0000�U��BK��C�@\u0002z$����\u001cxT\u0013���\u0001�x�$K`�R�\u0006(����/W\u0003/7�J��#Y\u0005R\u0002�{���M�E��@y{YL�\u0017(��N=�2Gp\u0004\u0019�\u0007p#t��v126f\r\u00074\u0019��?xJ\u0001[��m\u0016��8�?��pm[�\u001a�t{�!_�\u0002iB�[\u000eb�ч�\u0014\u001eI\u0011±��{�a��\u000bZ<]�SĂ�xL\tĽ�\u0012Z�\u001d�\fՈ��:�\u0014������KRC�;��]����`���;�H8�\"���+�Υ�}\u0006(\u001a�\u0007\u0015�q�W@�*#�\u001b�T�<�h��.\u0006<\u0018�m�\u0016�\\�As(6\u0002�\u0010�ic��L�g\u0016����� ���dWN\noOԠ���-r\u0012�h�\u001dc\u0007����Y�\r�\u0005\u0010\u001a�\t\u0001\u001d���\n\u0019�y�*z���\"�ZX\tSp9��9OX�\u001bt`�\u0006Y�\u0007@��v�<8��\u000e�����l�v�AZ�%X���ݖ>l��K�\u001c��\\�$\b^t`\f�\u0013P\u000e+q)�أ����u�|�Vy~�Q�,�|b6\u0007H��w�=�\u001cd\u00168��R\bY����Y���}pW��\b\u001c��8����Oe�X[����uQ;i�Z\"��\u0017?��t^*ƭ�5�2�H�9/��Q���-��/��s��)��hXߴ<'�P\u001eh\u0013ʠ]VR�\u0016�\u0010B���-U�U�u �&�\u0017�J~\u0013���ExS\n\u00159��L��\f(��5qM�\\��a����d\u0017���]쾲�\u0010\u0001I[Np@���œ���3�/~��\u001e�־\"�)wţ���\u000e`9��*o��f�#>�T�N\u0004�$�\u0015ې�g\u0014\u0019M\u000f�s�i|߉\u0005\u001fd��G��\u0014�t��jX�yT�01.(�MN��`.l��u~�Z�\u001c��]\u0007O�Ao�%l����8\u0016�<�\u001d\u0013\u001fVQ�\t\u0014�U\u0012���V�ca1\u0015��&Zd7��5�\u0014\"�=�����\u0004��\u0006ٮ*�[�Ȼ��\u0010\u0019���\u000e}\u0006�\u0001��[���\\�q\u00160:[2�x\u000e,���.xr�爍�\u0002����#@^|x\u0015��V��^P�S��\u0013@t.,\bèv�\u0013�ks/\u0006!4_��B,U(+W� K\u001a�:x��uY(���j\"i#�|��AR���\u0003��x�jQ!�c&\u0014\u001f}!Y�9��-iHkC\u001bK\u001f�MQ�ǀ�}��ݿ�\u0012n�!`9v���]$\u0003�Q\u0014��qG&\u001b��\t�nj4!e_��\f���>C�\u0013�LI˴=su�Nv��x�� �1�M��m(�O)�R\u000f\\�ePPX�\u0004\n�Q��\u0004e�����5�*4���G�\u0005\u001a�럔�z�\u0007\t�p.�D�>�t)���[��Uf٫K��e�c�O�A��%���MXq��ϳ�FV��(����\u001cH��?�y�a��^\u001b�m\u0017�m�$��\u001f�D%�4�%0\"R\u00077h�)1=,�k�;�A)�7�[�2��;\u001b� y#�\u0003���%�%<���/�EƗ�;\u0000��f�?�˰v\t��W���$�8\u0007\rJ�{��k�o�~11�ef���]eu���~֒��\b���߁\u0017�\u0000\u0013���\u000f�\u0017�\u0011�i\u001e^�&� y��\nB�P����ŭ�F5Eڇ�l�DD-\u001c�\u001aŅ�t��\u001fjT��7�\u0016�eI\f^��q\"<�7�)!�ǂ\r\"�\u001ce�dG��5��\u001b��@���V<䜨���m)B��\"ڞMݰ\u0012\r~E��4S_�K�}��K���)�\u0013\u0003�1_��تB��en��\u0000\tʋ�:�\n�d��4:�֚�7�U\u0012\u001bb\f�\u001a�4J�,:+��Xb�{(x��[�Ak�%����\fڀu��+\u001eSx@S;�\u0006;|q\u0019'b:��Qڅ�\u0017H%L�/#�;rЩ��a�}@U[�Xy�箽A�e�F6c��7��p�z0\r�\u0001�e�Jv�T6l�\u000bY\u0013��\u0012�\u0018�=x��E��m\u001c)�?\u0013��\u001dY:��\u0018u`\u0012\u0014w��}��\f��X���\\���`P�d�\u0004���\u0016�(lDU�Ó'\f�7�\u0016�R\u0007�\u0010�%۳�\u0011��Bv܂�E���c����$ \"\u0015ٓjd\u001c���N�ɥ����4@��\u001eF\u0013\u001b�:f��\u0019\u0006\u0004��\u001a�&����d�#?�?�\u0004�b'\u001b�\u000b\bG\fܣq\u000e\u0004aY�_\u0002��K��7|�\u0019u�\u001a+Й��K9��n��y\r�eD��-�\rT\u0005լ�\u0003IW=�i�]\u000f�|I�{8\u000fL��S!O�ͮs��B��%M �m�'���+\u0001Q���B\u000e�%���|�T\u0014C6�h��b�޳,�v�>gG�4d�`.Y5\u0013P`�RWM7\u0014\u0006�3�Է�{����\u0019e��G�ܚ\u0014��Q\u0007��r���^3�{[\fM�\u000e���\u00124�/ל�\u001d�t4��͓@_��\u0003_\u0010ڮ���j\u0011�F�\u0002LDM�\u0013����9\u0006\u0011��ʀi�t\nM\u0012hg0�v�f�,]�Qo/��N\u0007pʷ\bN��P_~�S�(E�n�\u000b�k/~݋��v�V�P\u0014����{�v�%�\"#^����B��N*\"�v���SNj�є�\f�H#����֧����a\u0017N���]�0l�vŘ\u0005(�Vy����\u000e\u0018aHR\u0010���\u0015�\u0003�=wsH3�}�'I^\u0007֤���\u001d%�!��\u0003\u0013�\u0000 g��\u0002u^p\nR�M֗�\ng\u001b�D\u0014`\"v�c�g!X���������y\u000fu(����h�RԞ�LS��`��n��4��vQ;���~���\u0019%b%�\u0017F���4z|k\u0010嬪\u0000#��0ʎ\u001c\u001a\u0006(\u00103�c\u000b2ͅ���Tmڒ�e�\n),�lE\u001f;���-/�!Oc�<7�\u0007-\u0013\r��>Ȁ��9��S��l�x��/��SȐ�Y��o\u000f>�bCc\u000f\t������\f����%�L�~,�P\u000eM��A<�%���1�E3����c��BO8>\u0018(��\u0005r��=��\u0015v|\r�wŧ��hL�.�/��\u001dy�V���ku��2jQ�}N����\nͤQ�|%�G'�Z0E�\u0013\u0019o�0�\\�\b~��gd��\n]Ƒ�(\u0001��1�)8fA\rO\b\\\u0013��Zx-\u0015\u0010�i\u000bnB�o.&z��ŔF�m���[���>\u000b\u001f&�i*d�\f���ɐ\u001bN܃`�\u0004\u001a��5�4��u��K�\"��ԇ˼�\f�pW�\u0003oh�QA��=\u001f�+�\u001c�%��9��\b�HCXڸ\u0004�\u001c\u0017���v~41\\�<\u001b�p����'��k\n3�AO�\u001brWٮ3�8V\u0014ݾ�bU��_�1#�%��\u001d��#���C�!G$>�Y�(��;JJ�\u0004ңA3�%Ѐ�1�Z�\u0012:�@ͫ�\\���_�)��/o�\u0012\u001e.C\u0019\u001fi�M�9G\u0011��n��mLR*\u0000��\u00043�����'�p�V�>6}�FD5��9n����76�}��\u0000�;\u001f�t�&���F�\u0014�\u0017�\u0007��N��OҎ+\u0006�\u001a��\t%2�SLƪ\u0013���`��̟veq�Y�-�y�[���\u0004Wr�;�%�ٿJŝlj߂�W�E�q9H�C\u0015Yݚ\u0011+�������������\u00136��P��\u0010�/�Zu�1�2(\u0015a��Q��}�<�\u001c��{_��\u0004Ș�H��Rd\u001e4�O�\u0005.�\u001a�A)�& ��L��M]\u0000�wǗ�7�?��@zt\u0013Y�,��4\u0010��\"\u000bz�To~��=0i�������9,@I�V$8\\�\\�\u0004s���t�1����&\u0001��Q\u00157w\n����e�\u0014/*F*��j���~\u0005t\u0013�lD��\u0019�\u0010�6s5�&!� ,���\u0010��e\u00063�\u0016;ez����Dɸ�C\ncUk����S�����…n�h��RJ\u000b�\u0005�\u000f~\u0006f��0��1�g�\u0016�\u0001n��\u0011�M�cA[�lø�\u001a��]\b�~�Kt�c��\u0006\u0018pŐU3�%��\u001ac�\u001d��\f���M���{�\u0002^���!���QC0�h�\t\u0001\u0000�3\\v�q���lkܮ�O�3߮%�=n�A#�&4��L�'i��4�gLL\u0007��o��=���@�X�/�&�[�\f\u0011T,z^rK\\��uȺ�f�c\u0013�M4w\u000e�Z�k7?�\u0016`|\u001c.�S�/[s��S��2\u0016\u0011�~�`\u0014���~���ڹ\u001a'�cI���1���D\u0015a��:�2��;9.�\u0013j\u001d\u0005\u0014sBO6LC�\f�Jr�\u000f\n���f\u0002\u0002�u�4�K�tO�8n�Z�k������@��`7,�:2������D�;U��\u001cԮ�A\u0011j�@��\u0005�\"8\u001d�\u0004T\u0001�!-$�k��\";�Z\u0005^�X��\u0000�i�Bw�Ӥ)@���>4q\u0013���\f,\u001e��ͣ�1\u001eSәW\t�\u0001�K�\u0003��N\u001aP�q9MңA(�&H��MW\u001f��J#ْ���5l��\u0003�'�9���kl�\u001e�K=\u0017�m��b�����\u0016Zv�a\rL�\u0011�c7D�pK�\u0000��Q�Ѳ��\u001f���s�6_7���=���W�G&�ѝ�\u0019�U[��I��+2v^��DwG#٣@\u001e�Kz�F��\u0007���\\����0�g�\u0014\u0000d�\t\u0003�\u0000\u0017H��o��Dǫ�a�r\fy\u0010�,QWl\u000b}^v��\u0016 \u0000�\u0014�;�ڂ\u0006�;��7��!�\u0018�\u0012!���ܳ0��u���#�\u000e}4�\u0001�se��z5��X\u0019���\u0018�}��\u001f����p�\n����{��%�޸�7\u0000���6��S�%ZȰ|e�QB��p���������ML,�A6�&\\���s�� �\u000f�a��\u00031_N���\u001dp��w������3#�����B��j�p�\u00009\u0010�z�c�/GN�Q�&\u0016\u000b\u0000\b�\u000fG�H�\u0001:6\u001a�l��$�\u000b&�Ի!\u0018\r]��Sպ����\u0014.�j\b!öuN�yS\u0013�\"��X�u7\u001f�-\u0004�-׈=�4�\u0004uz}\u0006�܏?Q:��\n\u0004\bڤ湣;����b\u0007�q�����綾��\u001f5��\u0010r�f�\f\u0003�a]c����gΘ��!��ҽ�C��B�D����^F%�,�\bG��[�\u000e�\u001f\u0005�\f!hc\u0004”[ҘZ�Y^b�/���;�Y�ۮ=�~y����M8\u0013�VM&��v����Yb\u000e\u0017̶\u001a(\u0005w�ﰎ0\"T䶭�\u0013���A?�&p���q%�\t.��3��\u0011�^��bS��J�,<��e[���%�k5\u0014��\u0019bTD+���\u0000C�n�\u0002{�>V�Jki\"\u0000ߣ\u0003�TƬh��\"\u0006\u0013\u0014�4��EAF�\u0016�;(-�g��ī��bj\u0005D�w�o�\u001e\u0015���h=\u0018�lt��GD�\fz\u0001��%���\u001b�^\u001f�mL�\u0018�`�Sk\u000b���f�Xu����\u0015$�Pw\\\u0004\u0006!-���j������Y�\r�P��\u0002N�O\\)[���\u0000\u001f�\u0017�\f6\u0014\u0013��\u000e\u001c�0/\u001b纎\u0000����%����R���I�d�sz,����ý�A?�&���L�Q Ӯp��\u0007�s�\u001eUt\u000bm>��s\u00144݌\r�\u000f��}L\u00107\u0010AC~��k}�\u0005�u�9���L��\u001b\u000f��Q��i��\u000b�\u001b��d\u001f}�L#�&�\u0018k�\\Z)�T�#�_/j\u0016�\u0012�X@w`[Y�ޤ5��p�v��唍|,�\u0005F�l�\"kRrZh�d|���\r\u001a\u0019�d�\u0012_�\u0007%z�W��\"}\u0004���b��\u001b����[.V�q��9��+Rz�4�K�\u000f\u001f\u0017��=�\u001anNvc�FX��\u0014���G.�y\u0019\t�3��\u000e�\u0012�d~���{�D�~�\u00101\u0010�%\u0013PJ� 2� l\b,�P@띉�\u0018�E\u0019\t�Ԧ�\u000b��\u0016�v�����}`y��D$B1�Z\u0018�!be��9�di0�I�i��|�a$�[�ӣA��&���|�\u0002��\u0001\u0015\u000fN��Ý�Q��\u001f(���VM���9#�>�tL\n��\u000eᕞ\u0019��\t�\u001bz�\r~r*',��_=�D@���(��&��']��\u0011\u0002��Q�.䠾���H?fv\"\u0010�?i����\b\u0002y�L�G��1�'��{:͛�a\u0012���;��Z�\\O�\r�e�7\n�\u0018�\u0001�0�ݠP4�y�'�`�$��#�̖���ߊ�G�C�����O�Qn�q�I\u0001�H�ċ\u001e\"ډ�嗡\u000by�\u001a��\u0013�A��g�w�=&���A�\\d\u0010�\u0002 }�5k�*\u0011�\u001b4:#��G��<ʪ\u001fFO�Ls��\u0013Ý����\u0003�l!Q-��-�\u0001�C�h�ǣW�~��bI�t\u00154�'`\u0018��q�\u0004��,.\f�b�iY��\u0011t�dkDƥnT��b�\\�x�\f4k\u0003D(\u0014�\u0014N�&�lY�:ȇَE�\u0010\u000b6�a�nm0�O�@ �6�\u0006,\u0006��y�FV�%3\n��4���X����'\u0014nȀ�A^���\u0017Č�Q�7u�{c�A��&���}b��[㚰0�\u00171��Djֲ]P��\u0013+F�V8]��\u000b�C�\u001a��3�i�� \u0012\u0012F��\b��\u0015s�\u000f�m\u0002d�5�;#)��\u0016�guJ|\u00025:����h.�XV;)\u0019�ω\u0017K9y�v�K�����z$qT���G�m �\u00062��V[�b\u001eO\u0017�{�\t�1\u001cl\u0004g\u0018���ԗ_\u000b$�W@�PE=O4��������\u001f�6��[�9p^w\u0006�\u0018ua�ƨ5�B��RL�W\t\u0000\u0007�\u0006\t-&\u0017���P,ǘ\nCUь��\u0003R{\"\u0005=��$k9����\"^(\rr�f�l��dceF\f�u��\u001dW�D9#D�6�~�M\b����qM\u0005��¾C�� M\r�_s\b��l�.\u001e��\u0018����n|\u001e㪿r܅�Kd\u001c��\u0007����5MM�5\u0018�Z��D/<�:�̓�_��֦(�%r������J/gW)��C\u0002\u001f0�4h�5\u0014�\u0012��%˄rG9���h�\u0016C�b�l_�k�Y\bږ�.c�\u0005���\u0003��k�t9Ȅ����\b��A\u001f�&���M.TQ�uq��T_��\u0011�aߢ�f�-3�\b��\u0016R\\�x/N\f\u000b��-փ������M��1J�R���\u001fP\u0013�\u0005�ɺsS42P�_\n�^ߘ��(\u0001��\u0000q��t%�-,9��2w`�4��\u0003BT\u0017j����t����b�J\u0015C1�\u0000���#Z?���\u0001�\u0002\u000e\u0001�Ny�f�Wvz�c75��\u000erQfÇ0\u0002?<ȋ�@ʹ2�\"�+&\tF\u0001���?�p��qc�X�cb4�+\u0014\u001eh/$\u0016��\u0006������2�t�\u0014��\u001c�g�?\u0012g�[�فX^�)�\u001fm�ܹ�����Y+�i�e+\f̃�m\u00101[6�?�m�v�0R�\u0003:W\u0011Q�A!�&Ԁ�X\r�C�@z:\u000e�+�\u0004�\u0000B��\u0000C7ᖐ�E� ��\u0007I.��\u0010\u0003��H��\u0017��]vk�]~�P�EZ,��:l۸މ�C\r�k����\u000e\u0003���]��\u0013\u0006�\u001f��K)�@����Q�\u0000\u001a\u0002;��\u0006\u001f(��_\u0000J��\n\u001cr�\u0000(\u0002/I�3Bx$�X�2\u0012���b\u0002q�Hd�\u00073��վ(؋=.\f�μ\u0004�@d�~�S��\"��Ⱥ��T��\u000b,\u0015\u000f\u001a\u000f�l\u001d�\u0004��\u000e�}?�\u000fn 3��ɻ\u00169�\u000ev��6��\n�j̓�rl�<��N�\u001bz~�2�\u001a6\u0000 P^��Xl2mi?��~e$-���\u0005�̼�\u001f7kl�<<��s\u0006�C���A �&��L��\u0014\u0017��\u000e�>\u0018��΢l�a�\u0014x\"�\u001a�\u001fLCԓ��h\b��@�\u0010 ��#��:�:\u001c����~�X_��湖����n?\u001dš��1fԯ��G�V�����Kx�>�M�i��m�-��\u0007�7&�ڃt�l��\u0007tn5�\u0016�;�ѳ��G�K��UM�ޝ\u0012�-�㖯�D�D�K��ʼnZ��C�\u0015XbR�nd�kڭ\\Dz8�^~\u000eP\u0017੅�2}\u001cg\u000b��t3e\f���I\u0017�XK��S\u001a��~Js���I��u�\u001d\u000e\u0013\u0018W\u000e�{\u0001��\u0006��+&޿�Q�ۥ)�\u0013�\u0016P��3��H�:\u0018~���\f\t\u0012�+dk�؊2Q�}�A.�&���1��\u0010�|b���g�r��\u0012֪���\u0015Qk�<(̝\u0007�\u0012��m��iV�kT�ŧ=\u000fk��{�j.��\u000el%�$�-\u001en\u001cN1��{:8���n��\tm/�=\u001fWM���U��W\u000e\u001d{ˋŐ�\u0004��ō��Am�{��W����6\u0015�\u0005��?��n��Ejy离�j\u0012C��s�Iܸ\u001c��%\t�4\u001d���?�\u0016؞�˫l�<\u001eh� ���|�\t�q�E����o��j��S]�\u0016\u001dȭ�\u00116�^k�Zߵ�\u001d\u0005��/��e\\�\u001ci��P���r���Iɠ�N#\u0005�Ҙ?��r��\\۶�,=��\u0005z�\fg�{%��\u0013���F��\u001c\u0001�,���ie�y�?ѭ�`S��\u001fC�u\"�#�\u0001���A/�\u0000\u0000��X��\u0018L>펪�9c7\u0001��\u000f\u000b�\u001c׬��\u001b\u001e��6lϘ\to�-�\\����\u001az���^5.K}���7OK�O|\u001e�z�}q�\u0018��>9�\u001a�M�v��,��!i�{�Ig�y�;b*\u0017;\"�.&��-D^ї��Y\\\u000eIG\u001d?��Z�Nb\b\u0010ЊW�\u0016h��.`��+\u0013gP\u0003]�\u0001�����y\u001a�ǎ$��`a\u0016�J����w��\u000fߜN��5�?bo�\u000f<ܓ�V\u00176�Y����: ^��%\u001c�\u0012�\u0013p�\u0002�\u0011��œnǒ3�s\u000b\u0017M�kX�t��R,X�zs�\u0000��߸������\u001bQ�Uk*\n�\u0011�h��28�)9����A��G�\u001f�8�\u000b�7dw\n�A1�\u0000\u0014���c�\u0019@�f\u0006����\u0012�&\u0005x�c]ˆ�o-[�Y\u0019ʳ\u001f5�\u0011\u0015\u0012@�_��\u001f�s�\u0013�!���\u0017m�Z��\u0017�\u0014�f\u0016���m\r��2i�\u001f8��+%�\u0013�<ٓz\b�{��\u0007�]!dR�3#��ޓ/��S‚6���l�|&�!@�xP_��+���\f�-5��p�)�Cqw��s�נ�=�R�\u001am��\u0004�w`����y5\u001a8=�N���\u0018X��\u0003l�$t,��i�h��A��%����FǹI��\r��\u0011H��\u0003X&�\u000f�o�fORH���u\u000f�E\\H/Ȫ\u0010�*#v\r�:o�����\u0014�\u0004�\u0006�\u0001[\u001e߯=t�\u001c�j\u0006B*2&���7��\u001a\u000b¦�n��q��A:�\u0000(��MO/J\u0010:���\u001aJ�$t�?�@�~��W���C���z��/�t����6���b{VQcZ\u000b\b\\�R\u0017��\r�6���\u0007��\u0001�\u0010c�R\b!�\u0018�bV�H�\"�J\f�tчݽ7�\u0006�#f5j\u0013�\u000e�����D\u0002\u0000�Q�*���\u001a�r1E��[j(�/ػ`C �`��ƕ��7U���+���]\b@�IQf��t\u0012��s��Q%L4fA�V5��C�\u0019ֱ��辺�@�\u001e{\u0015���U1\u0015r\f#6����~\u0018qa���\u001f���mm>yzk�\u0001����\"r�n��Xb��;�h�8:2���oc?��\b����\u0000�H\u0017\u0001v=�68͋t��r.�\u0014\u0004\u0006����\u0012<�����n�TS�\u0018N�>\u0014�AɁ\u0000<���d�ӡp��\u0013\u000f�e\u0018��pѓ��'X9�z�y����Xm{�\u001eֹ�\n`q_Ik�螿6��#d\u0017�9g\u0011 ��T\n<�o��\u00003L`Œ�\u000bP()N^\u0012�+�\r�/�\u001b�\u0014\"\u0007b[eBIa7\u001b�2\u0000dr��\u0011�W�ʬ�(Ȯ`#A�pO���3r���\u001f<#�n\u0001�j(���\u000e�EBˆӥ�N�ݪ'K\u000f\u000f&<\u001e�A-�\nT��U���չ�c��1-�B�/�\u0004M\u0015���a�G�J�%���UJI,\u0014!\u0013�\u0010�oJw�B�f(=@�ι����W��\f�� ܱ@\u0012����\u0018��(�n���\b{>��\bA�]G\u0011��=1�\u0015�����E�q\u0019ӛ�A��џI��+cbP�\u0013�s�C�\u001eF�#M.\u0011}��W\u00177$Jw�AE�\u0000P��Mv�Zs�k,�\u001f ��/�C���4\u0014}~({���`Z�'Y���89��Ť���V�к�G\\��0��KM��%cO�J�^�٧���:x��\u000f\u0006ݕ�0�µ\"�\\BG�N\r^�*w���B\n��5�$�X]���7\u0010:����v��=\u0006�)��Uo\\L:\u0015\u0010*�\u0004�����\u00112M���Ꮙ�i+O�~��e,��\u000e[\u0014��8X�A\n����ύ�7���e��h��y/mE\u0014\u0012X����\u0014�0쉥��Pz7���8�m_��F���E\u0003N��A݁\u0000x���\u000e�U�\u0013;f\u0016��\u0004�;�TM�����rߙ+wO+϶w��̥�s�b8L'��\u0005)r�L�L�T�$f\u0015��äc�q�\u0019\u000euYH���,&l\u001ep�u\u0016����R��\\�4�\u0000Ѱ��i�x@�-\u001b�\"/!���\\s�Y�(�>�Щ5�L�X�P�?�R����q\n�\u0019���=�h�\rF�\u00074i�!B\u0013_m:/�5��\u0000\u001aJS7�\u001fW���\u001bUs3�\b$\"�\u000e�'���L\u0006\u0015\u0017\u001f�\u000f�_�������iJ���d�\u0000�mH�\u001e��(�\u000fjt�F'�\u0016\tE־�{Ov�AK�%ȾD��ӣAN�\u0000�����p�|Y�!�\\X�|ũ4K��ʃ�W��\u000b�^7�.kK��)�:9��Os�b�\u0001��\u0018��B�ah]�B�Ǟ�89��ú�\u000bC�b�\bS��\t�\u0013��Q����_\f��Bn]\u0015oǸ�w\u0018��K-�\u0017!u�,\u0007 \nCS���?�h��&\\7���\u001c�3�geYej\u001d,|\u0016���\u0016����&�[Sx�)�0'W(4J��G\u0013X������76\u0003\u001bi?�i�f:�$��@B~�j�\u0016�\f'��\u00195\u0016i�9\u000b�\u0011�1\u0006�Q\u001b�E�f�,�\tkq���PQ����yV��MF�M\u0016�.�pp��?�b�\"\u001f�s9\\We�����Z�m��Q�LA���Y���4���h7l�eĊ���%d���\u0016�\u0002Aѹ�y�\f�\u0003�\n1j�B$�\u0000����s�/\u001f��c؅=�\u0000,R]\u0002g]�, b�S\u001dN�mi߀m.��Ve\b\u0007\u0013\u001b�{A��w��_\u001d�f=�QX}\u0006�\u0017�<��'<�(�����ے\u0002�jRN6�I\u0003\t�T:�FG�q�]=�ђx�wZ�K��3x���H_Q&�b�\u0015o��:��}��.�������8�M��x�Ђ.�9�U�\u0016\f\u0006\u000e�Wy>M\u0002-So\u001dt��N�\u001c�\u001fe�}\u000f%�ez3rB��W���#\u0011Πy��\u001e\u0001�I��!\u000eܻ�W�\u0018\u000e�yV�\u0004��ph�-8\u001f�\u0019j\u0000e\u00170\u0000nf�'�M��\u0013��_�^\u0005+̍\u000f��Q����\u0014���G���c&�$L%8���p'3\u0013˸Y�R�����\u000b��P�6�\\�L��\u0015\u0018\u0016�y��\u0004gA�\u0018�.2\u00141h\b\u001c�O;��\u0017)9��b��:qY�鰯AQ:Kn|U;��\u0017\u0019��+��-�o���\\�\u001d}��Z�C��\u0018@A�\\\u0012~�H���DzW�B�m��Ӓ\u001cw��\u0014�JCl��\r��d�RxNS��8��Һu�ڕK���w�#\u001f{�\u001b\t��T�\u0005��\u000f�,��\u0004��\r\u0001D~b\u0004\u001a�P-��5�\u0012�qI��q<�\u0016H�\u001fi��a�p$ǀ\u0005���䃽,�\np��k�8�#D���t���\t�h�>\u0000�A4�\u0000���6\u0001ܘψ�p0'�Ɨ|@uk3)r�´���Ot'������+\u0012�\u0016��\u0018�n��.ԁ&;�!�S�$j}|'\t�Y\u001d3nx��O,����\u0013Dr�t�U�������1�\u0003��\u001d\u0019R��\u0002����O~\u0011\f�\u0002��^� �\u0016k\t�+\u000e�v_r��c�0OT�;��_z��˛ݭ~��:�ٹ�%Q9~)G\\Z`j�^\u001e-�ٜ\u0017\u001c�&�\n\u0017��\u0002�>�+\"�p����\u001c�\u0016\u000e�X]n�2�8zW\u0014��H�:���\t\u0003W|�\u0015���Ҡ�S\b�a��\u000bs/���¥ݚ�G�lVm�#�����Ԇ}7}?&��y��f\u001f����%r��kX��,ٴ��/�4L��\b�s�A)�\u0000Ȁ�L�Li��\u0007_`�vG[T=�w\u0004'�L�R�\\��bD�K��6�\u000e�/��$:���_��#{�\u000fR�7]ר�,#뒢�\u0014�@1\r\u0007�\u0000�R��Ē�s��Y�\u000f\"{��:��\n�K4J\u0003A�aE�\u000e�r�\\]�q�n�P�_�@�,�`�?���X��0\u0011�\u0017����=�A�M3^�\u0017*m�֐�ǣ\u0017\u001e5�\u0010B�4\u0013ʚ��샨\u0005���\u0015\u000b\u0010�Ԝ�\u001ck\u0010��mI$0Ȥ��f��y~�_R\u0007�fӊ\u001fU\u00166�'X9z��1\u001f9։&e���\u000f�g�K���l�5��LG�\u0017Ts��i)\t��\u00075���1uG����\u0015� \u0002ll�@s@�>W\u001fKۣA%�\u0000܀�MXt�#/�j7W�h����\u0007xvb*�o%[�VD��(qF��8o����\u000e�1�b���\u0013���p��װ6k�<��\u000b�Oz���B��Yv�\u0010`�������m�K�sP~�ˢ�5_\u0011Q���?x�\u001cl���\u0001p���R���/�M�\u0000�*N���N1�1��R��%wt\u000b8��\u0004/;���d˺�&FA�~:�Cz�+T\"\u001bQ\u0011c�-�\"�j\t\u0019ۄ\u0002L\"��^Jbw\u000e_�\rLоz�\"���Q���J�?��w��9\u0017�4�\\\u0003�׳ծ�\u000e�A\\���,�+G��^���~>Lj�\u0006\fjz��[!�s]�\u001b�ҹ'h�A��\u001c_��\u0005\u001fJ\t�A)�\u0000����\fۚ�Da��.���n���@1�Ck��\u0000���m\u0017�G4���Z# �;E�\u0011��%v\u00166\u0003�Q:\u0000o�B)�\"�G��?T\bSo0��b~k&\u0018�jW\u0003�ˮ��]\u0007���g�g\u0013K}T��\u001b��\u0013\u0002/�'��9/�W��x\u0007���\"�#��\u001aAɪ�����rK�:r.�/*C\u0018i���\fb\bֶq�\u0002G3�\u0007�����\"\u0014�.\u001e��\u0017.{I3‡��k��i��/��\u0017�oG0J�He��U�ϩ#��qV\f�����\u0012Sѝ��C��8�Q���5�0Vd�\nJ��k(�\u0002��ܽh�\u001a�O�l�_����|j��\u0013�T�(�u7\u0016^\u0007d��k�o�ؚ��[*�K\u0004�\u0007Ʋ�\u0004\u0017\u000ed�_�U��Of\u0010E�\u0011R�q���}�vS_N����\u0006��3������P��d�M�\"�����u\u0019\u0012�E�A2�\u0001@��MZ��\u000e^�_���+�deM͟���Ex\u000e\bW7�\u001a����\f\u0016͡��ޤ܁0/;c�V\u0012\u0014�8���iQ���Kwy�\"�NC��O4�Q���s�^\u0017���(��x\u000f\b6���\u0006)���\u0006�\u0006�\"�J��H���]�G�.�\tH�������y�����\u0005�/��\b�\u0019�S��4QI/��`=���?y\rz������\u0016�\u0005�\ns=.-��G|w��lc{����\u0012���/][�1s&a�.\u001e�q�\\��J��E�8\u0006\u0010\u000fd\u0012�1\b\u000e!��N�J\u001e��yU6�5y�%��p\u0011U*\u0019L��\u0010�!>�4�O�+������8�U�]e�v���(�R���H��\u001e��\u0001'�6�A0�\u0001T��۸�7��c�\b9\u0015�$���Y����鈙��V��ɯs�KE\u0018�?�E�+����7o�\u000f�-SC������գ\t���������UdyKP��q�����[e�̴���t'��\u001e��\u0000�����9�\u001f2�N�Da\u0018��᰼gB�)3\u0001y\u0017��\u0019��\u0016�>��t��nPaBO��{��S����\u0007ϒF��\"�{uK^,C�,��\u001f8�t��\\��|���*�ͱ�\\�\u0014���\u0012�\u0016]�yw�\t8��k?�-�!�ߍF`戹�\u00109�zo���\u0019�ߥj\u0002��(�\u0010\u0013@��`Mv\u0003q\u0002�=�b\u0018\u0017[\"�\u001b:vG\u0000�FlF\u0000m���X�\u0005-ȒB�υ�\u0015��H\u0018�%�A0�\u0001h��X��\u0019r�f�__��\u0015`������|��8N��\u0016���-\u0012=��k�G��\u0010�ƹ\nc\u0003���:�e-u\u0006&�wA���( �tr��A�V�Hy�\u000b�Z�5�[\u000f��v�*T\u0002Ga��\f�\r���3��\u001d�Ӝ�@������\u001d�?�Y��6����i3\u000e\u0003C�Q\"�9���q!�z�<з��}��\u0016�ա��\u001d�����q*�p3D!\u001fmnΨAQR$�\f�\u001c\"#&\u0005g���xE�\u000e�]�\u0003s�\b�W\u0019jDiH#��\u000eؗ��8OeN�\u0003�1oG��0\u0018�ԑW^7\u000fbƳnIB\u00168�B?'�툢\nq�\u0005�\u0000�A)�\u0001|����Cdnt���\u0012N�\u000e�\u0001�G��~�h\u0019<�w�\u001d\u0012��Ȃ�^/D\u0003\u001b�\u0015p�)3�����\u0004��\u0016���SK�p��v�\u001fwo\b��\u001f����y�VJ��\\ƒv�=�\u0016:k�o���r��*ؠ*A�\u0006n@R5󑽯��D��d_KM��*\u0003��\u000fE�+w�\u001e�V0o�4�C�e�\u0015�\u0010�׹�#�A[�mF-a'i�g�^#\u0001,����i�bYm.\u001c�4ڠ���#���\u0011Y:�eþ�\u000f�h��1HT�j��\u000eW����.�������\u000e�\u0003��nB�@ŗ\u000e�v���Lsh�?{\nءAҡ��Gk-�\u000f�_\f\u000b��\u0017��R���ھ\u0014Ԏ3x�W�C�B&�\u0001���}a�����\u0002�q�ۑ�Q����Ӯv�8��\u0005�Yjז��\u0015\u0002K{\u0013��\u001f��ґ։[+\u000e6,��\u0015�@Å�R��^��e͜u����\u0011��\u0010�q\u001b���\u0010d��\t\u0004�B\u001f�F�i�G\u001dQ�\u0014g�Ӭ�<\u0003���YC=\u0006�\u0016�\u00185Z�_�_,p��?]��n��aA\b�/x��\u0016�yo\u0001�5=��.\u0005L�J{лZ����S�\u000e7�Oo�PW�0�4��|JށΡ\u0006�\\��\u0010\f�D�~D��\u001aa>��`���Yt��X�e�\u0001\u0002\u0001\u000b�\n��\"\u0012\u0002\n��\u001d��|\u0003:Cut���+���\u0006�Hd$(vY\t*\u001c�\u0000}d�\u001c�m���I_\u0000�\u0017�\u0015.�\u001d��`���i�H>�Ӭ���{��q�ʀ .p$���Ѵ\u001cnp8\u000b\u0001A��9��\u000eO@��\u001a\u001cܚbǤ|\b��~gޡ숫F�I�pW�zop=��!-��{�4m���\u000bP�GIF\u001aS\\\u0012��ix�\u00134���\u0003v\u0003��\u0016��@�uU\u0004Q�%7jK\u000e��*R���\"�F\u0019rg$���%�t>�=�TsKt�s�\u0001?��͑\"���-��{Z��/K\u0004�8u%Y��\u0011+\f@f{R�o\u0013���*p\nۿ\u000b\u0002}h[��I4�g�]\u0012�>����\u0001Z#|$��Rw�o\u001d�\u00106�g����A\u001b�\u0001���X���!�!Z&F�\u0002�f��\t��\u0015�^��H�K+��\u0004S�*\t�i\u0000>)\u0012kW�\u0005k���RK�\u0011�U\u0018\nxnb���$\t\u0006\u0016/\u0010A�f�\r\u0014��E�\u0010�\u001b�kHWQ))Ϗ�\u0012ע_�y��J�\u0004���2���zf�\u000e\f�h���\u0000$t�d�vF\u0002Jl Z�w�|�CHd�\u0010���b��m_\u0007��l̾\u001b\u0006�T�\b\b&�c/�X�\b�\u0014\u000e�Z�\u0010��\u000e(�j'\u0011\u001e/˥1^{�o�����]D�\u000e��R\u0016I\u0013�}ӹO´tYќ�\u000b\u001c�FS8\u001d[�q���(�����\u00024�E��]�t\u0013Y��\t2�\f\u0019\bO��e�0O\u001f��գA\u0017�\u0001����kg\tκ�5\b��o\r\u0013����n��������ԨK}�qK�Z��a6��\u00115m�\u0016�y�}��SE�y��8\u000f8@8>J;�-�6\\w�G�\u0012\u0017ۡ�HS>�A甀D��\u0004��\u0012�T�D�6�q�\u0016�b�S��#ո��j�]�q����l>�������@��&�qٔ�\u0006�,\"��_TZ1[$�~4$h+��\u001d\u0014�n\u0000�\u001b���\u0015�}�ne�\r�\u0002�2'{ɺ�`k\u0010�\u0011X���#]�����ȔpY+EͫM\u0006���W%3^0\u0011���p�Odaƌ��\u0002\bx�\u0003l���3s�\u0019��\u0011�\u0017v\u0017����>xP\u001f���P�A\u0019�\u0001̀�����, |S\u001d,\u001a�F%0Ӂ��U����%M's�\u001f��\u0010r\u0014��c���\u0015�`i6\u0010B�>W��W�\u000b-\t��|�Why\u001b�\u0010,}�v�&�X�4 �\u0012����SL�\u001bvY^��Pn<�E�}�\u00035����<�\u0006�QK~noiȮ���^��`\u001f�sIdѤJ\u0003�\"��¶\"�M)��>D\u001f�\u001cm�ÃL��j]\\\u0013&p\nD�ο�\u001c�sH\f%�����\u0002\u001eC��d�TeF<�\f�\u0018J(�,T�K\u00026�C �A\u0016ҁ\u0012\f�\u0000���\u0012��KcI��P\r��\np#���*\u0001�s��u�9�����ٷ~��o~�Fπv�A\u001a�\u0001���L�\u0000~����\u0013\u000b���~\u001b��^\u001c�\n�\tN4w\u001a6U��\u000e\fR2L��0M�RF\u0011����J�0�\u001eѫ��5��D���C>\u001b\u0012F����g���\f��F\u001c�aŢ�X�;b�� r\u0016)�IZh��\u001c聎Rh\rp�o��\u00185&бFJ��XH<�AQ��6�F0ʇ���\u0019�*\\cC\"g��.>�l\u0003�(2\"0���~���+�\u0002�\u001bѷ\u000e�t���]����\f]��O;�N����D}�\u0005�\u001d\u0004���oU�Q&\u0001A%T��4'ShTz�JR�$J�oƕ�d\n���(Q~I����.!�e9�k4��ۮ�F\u0007����'��\u0005R6�A1�\u0001��M\\;�\u0003���o�f��C��1�gIj��xw�8{��s��{����'\u000f�\u0015��K��'�(Cw;?ϼ3iLɟK�w����4g��e��\u001c�cu\u0014�r��I��Ϣ�\u0007���\u0011�,>�<\u0017x���\u0004����#\u0007�7�2��R����y��%��*&j�\u001e��0H\n�v��̷hy�\u0014�0'�`�\u0013=Ú\u0006��!\t�\t�Q�\u001e\u0005�'U+cK��J)�s��/Q:|^�ls9\u001aVz�ê�k\u001dF\u0017�P(\u0010\\��\u000e\r}(!�\rQ�\u001bos~\u001e��]\u0007�4]Ҭ\\b�m��ݬ\u0005��\u0010\f*7\u000eLR�.�>�Eq�/\u001eL1�G�\u001f�\u001b�kS`����Ӵ�d?�'$qD*�>�\u0015�1�K݄�׫�_�Х�F�+�<�F�Ӝآ�TJ��c]~�\f��F�\u0003\u0000�^\u0017\"Q��s&h���ۜ��\u0006��hB\u0019FFLzD2��:��\u0018�ɔ0��e����B5V�|�h���k�*��b�\u0019\u0015*@\fdv��9r��K2�6M�H�0�AD�\u0002D��L��l��E��^����f�\u0007�*���\u0012\u0003#\b��k6�Ao�|�p��c��%M��K\u0014މ7�W�Ҏ\u001e��\t�5>�\u0006g��tj�ޒq\u000b���<�\u00175O�5h��\\�M_l���\u0005Y��\u00065E\u001fvq\u0000�Hm\u0014��#�n�\u0005\u0004=[���>����\u0000����Y\u0014R�/\u0003䇙���\u0011��\u0003T\u001b3\u0006��Ɯ[�j����\nծܗ�Z{b�~-���\u001a�ݐ�g���T��\u0017����3\u0006�h\u0001���F�(L�ѳ��|Y)i��#�����T�&�<�,fR/��7h\u001aR1C�`֔m�\u0013B�����=��\u0016\u0002Y�q���y�\u0002l�''���zweS���S�!.RW�ݫ���$<�8�q�����\u0006emPC�ٞ���3\u0007,���q�i\u0014[��$�S�q\u0016�0�����7�\f��B\nL��YJ��\u001f&�6�\u000eZ\u001b�eS�('��\u0010I\u001d0�CW��,��\"�vX�l:`1�Eg��\u0018���\u0001�഍��0\f��\u0011�g�\u001c\\~����=\u0015*�\r�\u0003�p�q8N�/��,�\u0006�*��J���Q� ��6��S����ʤ97�\b\u0014�\u0016�\u0013B��N\f�\u0004�'��'�\u000e\"�!��V�,>\u001f%n_\u0017q�H�\u0013��3��QO#�Y�\u0016�',iu\u00180\u001d7�H(�y��\u001e��\n�F��a�\f��7\r�0>�\n\u001ex�\u0014�<5��1�$|\u0017��\u001fW^%:[��\u0007�\u001cD�,>�\u0007v�J�`�h\u0011P���΍9�\u001c��\u001c�x\u0014c�1n�Y,�l����.zđ\u001fd)9���X����v\rC���A�TJ�d��?_ָ���2���sRUA�����ځ��o��fVoUW1/k~+wNV'pk�����t��b1�%�[�1d.\u001c\u0001��]\n\tB�A3�\u0002������8�RC��r��\u0017���N����Fr�5\u0001-B��[,|i�v\u0019ƻ�l\u0005K�A\u001fuΪ��Z�y�d�߆�/���\u0017Y��@O�Q�Q\u000e�'\u0001ۛ�m�h���\u000b�?��.=�[�d�H\\\"c���c��l\u0005�AFf���33�$�\u001b��\\����\u0010:�R\\%(|mH��]}�\u001f�hˏآV9�]\u0001Xo��\u000fh��;�ܿ���:��p@�>GUb2s\u001c�_�]��\u00038<�蔇j_�\fI#V\n�a󧸄y��Ra��T��}Qy@D�\\�e~C�DZ\u001d��7v��\u001c\r�.�ZwQ�Q���\u0004f).R��Pn\n�X�\nAKS�:`�\u0006�0��k�\u0007X:\u001c@u\u001b<͂\u001c�`��^ב�A2�\u0002���\u0000\u0017v�t����/�s�o��`e`���\u0019�)�\u001fe��3bʓl�&���_�k�%G���է]#a��t�8H�e9)�N��`�wW��\b��H\u001f\u0016\u001f�\u001b�*�\t��N��\u0005�\u000f/�\u0001���\u0007���%A¯V-!L�\u0018lۅ\u00113g�b���I���\u0003�ӣAN�\u0002���\t[��\u0010<�Qڟ�-,0���)�-\u0001\u000b��\r�\u0011�\u0018uLT������bA�:hЫ\u0012�;����.d�Þ�x���\u0011�7�(�oK\u0004\u0015�~�&\u0004�s\u000b\u001f�B\u001bt\u000e\n�~Ώ\r�Ze�S�W덪\b���\u001b��Y\u0013�6\u0017�?�ͯ������_�.�FLB��\u001b�m�\u0007�{k��N�@��\u00043x�p���8Qؑ�&��\u0011�ƪnD�VH}BiT9�^qAD���z�s�ބ^�\u0014��N�S\u0004Gk\r5�Ίk�À\u001c\u0017n�sjR�@O�(\u001cԎ@���Q\rS*�����\b�t\u0010�|c)\u0002�\u000e3+\u001c[i��i�;���\u0015X6\"�|X���\u0017\u0019\f\u0012��\nm���A�.��\u0010��o{\"�\u001a�Ϗ\u0014���d\u0010��\u000f\u0007f�=�\u001bI)\fS�AI�\u0002Ѐ��]&�wѬ3\u0011������aS��f+��VD\t�֮�$\u0016\rWw*J��]ڰ��Z����y%v/9���ߌC�\u0010S��e>���]���`\u0006%\u0011֒���7U��٨�U`$�o8;�\u000f�Ζ�Z6�ű[\n��$���:X2�\u000b i�]��g-�a\"�))S6�N�>��\u0015\u00023z��\u001a_o�?\u0007v�eRP�$�;���\u0006\u001f,�f�x��\u0004�Q��W�+�@�;(]_�\u000eu஽�K\u0001�\u0012ϑ\u0004\u001diw�Ez;�̀�8\u000b\tq���/\b�b�10��й\u0006�s\u0003��\u001ds�f�5��\u001cW�Et���AJ7f��\u0017\u001e�mM��sT}Knށ@�a�w5�!\u0011�s9heI��\u000e��z\u0007\\Woӏ찎��ږ8�a�O�����Ab�\u0002����b��\u001dPgj�R\tG�G\u000fa�ҥ_\u0005f�U?�P�\u00164[\u0011φ�mȮ���\u0012P�I\u000f�b\u00079�`�C\u0004���g\u0012�J�2��\u0016�@kj�\u0012�p3���_�!X�|#�Xq�r\u001f(ٮC�\u0013\u0001M�ܺ\u0013z����?-��4\u0010��\rEmv��gCG�A�\u0018�6Ƚw�o������&%���\u00110\u00138�\n4[��\u001cfܿ�\u000fMρ\u0017��^����l�W�½\u001c�N�?��M�n��\u0014�\bf��g�фI!UBR�Zl�y����\u0019��\u0003��\tHG^�Q�\u0012#���땜}?��U���)E\fxL�\u001dL��m��\u001aԓI6Ӭc�=�-�7�i��y7A��\u0005XCS�\u0012\u0019\u000f��1f�%:���d\u0007�8.��\u0007�Kʋ\u001a1��sk�~�\u000e�/'\u000e�\"(\f\n��i T���L�AO�\u0002����&��B��yx�/d\b�&�^�a�HS޷`/��ٚ����N�����^�\u0013l5\t����H\u0018��E\u0007���\u0001Z��B��\u0001����p�\u0002�*�\u001e�^�ˆ��>��ѩ��\u0000c�I\u0005�4\u001eZ��e�yq�v]b#)��QĐ\u0018�\u0000m9t=�t�:�\b��ե�F�z\u0017y4\u0019�\u001d�|8���U\u0019\u001c�}\u0001�(6x_f\u000f�io:�(g\u001bu��O\u001c�\nG��J�\u001cVHkAq�4�v\u000bu���`�V\u000bQ�\u001b���3\u001cͅ_\u0004y\u001b��L�YQ�\u0005h�{���\tP\u0014{i�\u000e3�M�\u000e�,��i'�fpiD�]W$��D\u0018�\u0003\u0018ǀ9\"]�-T\u001f�\u0004�s���a\u0004y.6L�T,���8�\u0004çr\u001a\u00117\u0004\u001f�k\u0002\u001f�*E\u001c�*�y\u0011\u0019p9_!\u0012�A@�\u0003\f��1�\rك2\u0010\u001fp�\u0006�L�\\�ۻ5���ϻ\u0016��\u0016\u000b{>��\b�0PR��\u0016���2$�4��F�\u0019�\u000e�g�r��&[����\t�d$�ݨB\u0010��\u0000\n\u001f}5���܍�G<�b4��L7����l�����\tςDKR�_s��Z\\P�s�2�>�\b��?�1�e��v����8Ď�pg\b`�H��؉�����Xc�e��\u000b�\b3O�]�}�\u0013.s�\u0005�o��X`QI��.���\u001en�NX��\u0015,���^M\n�*��Ib��y���KZ���:.v\u000eG��1�\u0005�\u0010@\u0014$\u0012��[D7�\u0019cQ�[[����VSS��\u001e�C,q�,e��>u�\u0004m\f�\u0012��\u0004�[u��@��^Fϲ_�#��AM�\u0003 ��\t���\u0007��\f\t��\n-hH��S�'�ze��\u000e�6��EK�����ѭef�ݠS�Q�߁l7P\u0005\u0018�C��E\u001e�=\u001eߑ\u0011\u001ax$@�\"\u0003�\u00023�D��P����j\u0002\"\u001fj��g^Z�\r2o�\u0012`�\u001d���Xt\u000f�\u0002��[��2U���\u0012\u001a�\u000e<'�\b��\u0003[��8Hn�\u0007�\u001fP\u0010\u0010g�v+/�^ir�rE�\rqՃ�\u001atX�\u000f���8�������<��{5�c��\b\u001a���2��,�������h ��d�Jj\u0014\u001fA6>��Ἑ\u0007ҥ\u000fP��5����L�Q�KV�R�I�gw��.\u0019i�<��\u0018?z\u000f���\u000etvz-����m\u0019�!�`�/��%\u000e䋆%B��S�sv\u001cl&�\\��zPu)�k���\u0012�\u000b��mL�A*�\u00034��I��\u001f��H�) t�-\u0016I:�(פ�r�\u000f��,T;5P����q��\u0018��\b^q\u0014����X�q}~2��4y\u0015�\u001e����A�\u0014F��D˨4\u0013�?Ys!�{�d�\u001f\u000b�H}�\u0012�\u000e������/�o�� 1�uEv\rI�\r��\u0004�YiY���Y�\u0000z�g�=��c���fV\n�\t�\u001b\u0000�� _\u0014��\u000b=c��47̕::�O��U�?ـ{&\u0011��\u0017�\u0005���!�'�+\u000f�_4[��bq�Y�� gz�\u000e�*\u0016\u0010�\t���Y��M��`��aE�\u001a���k���k5F)7F\u0003$cz1�_�ƹrݙi\u0001�׫�B\u0004s\u001b~���KȮ6��p�2�\u0002!�|�A(�\u0003H��.�� s����8M�b�M�ݾi�cMK�*�\u0016�xY٭�Wϝ\u001f�'����\u0014_k\u0019���\u0015V�A��H\u0011�\u0006\u0017�>���$��&��T_�\u001cc'��\u0001���Z\u001f\u001c3\u000f��\u0014�0a�\u0013�\n#,��V\u0017������0���4-\u0014�w�\u0018�\u001f��=ZF\u000fD����\u0004�j�/y�Cs��\"����\u0016�6�\b��5{l\u0002�sA\u001faVJF��E>�\u0004�h�&���!\u001c�\u0015���\u000e���d<3@�{��\t\\�nuA4!w�\nTQh^�j�;c�t�����bϞ�r������HN\u0000�Q�O\u001e���x�d�����ݠ�\u0005=\u0018�(W��^�;\u0005E��X����p7��A#�\u0003\\���˔�2��E݂R��T��pߨ�p����N�����\u0016tȥR$R\u001b�\u0019uH\u0005�D�{�\u001b\u0007\u000f\u001d�m��>wp�a��p\u001a�\u0001�qG\r�\u0006=0B#cI?\u0007*�+L��t���5bB��z�؄YQ1Œ��\nJ5�\u000bnχf\u0013\u0016���I�=�����:�WZ�\u0016�\u001b���z���x��ڄ�p�oNJ��=Q��rI�Eg=��\"LEc�O��O!��-W��wV\u001e\u0019�\u001e\u0017AW�I\\Q�CH\u001f]\n\\�\u0018\u0000���������P[�[E\u001f��[�\b�(D����\u0017����!��\u000b�t��\"��ڬ����z�|��),M�y��+{�=S�fV\n���U�A#�\u0003p��1��F�\u0007ak\u0015��O�Nc\u001f�������S�$̏\u000eԋ�\u001f�9$\u0011QTa\u001dY+�{5�h|D���$S.����h*\u000b���m�y�\u001bKs��U�կ�\u001dž���*4>P]w���[خ�//���H}�~�I�ܜO]9L�Gs���eA\rm���'�&�\u0003i��.\\�\u0007�.\u0007�\u0016?�)3�\u001dg2&�IU�\u001f>�\u0001�^\u0006\bU\u0002%m�\u0010Βw|��$�<\nEp��z��­p\u0017D�(��\u0011�S\u0010����@Y��0^��\b�rʣb��@=\u0015�5�n��B\u000e���]�$�{\u0017�m�~\u0011|\u0006��d>����\u001f�\r�\u0015�q�q˹\u0010����/3�4�A%�\u0003���1�qx�b��U�آ��Ҝ�d�\u0003��~�}�s�#\u0005ծ\u0005�\u0013�S���\u000b\ty�[�Ka��G�L\"�p֔=Ux��q%�ܢb�`� �G}�=c��~R*>;r\u0011Q�$g��ηt�Ƌ\u0012h��K�����\u0001�\u001d:��a��\b\u0007�uyv��\u000eS�f9ո�\u0019��&S���\u0015uL\u0013\u001f\u000f���z�B���c\rÏv2DI�N\nuy�z\u00109�b��\u0011��uf�����\u001a'�M=\u001a}�\u0017�\u0010�YV��01%���\u0001�\b���\ft�-/.��j���mH�JϿl\u0001AĀ(g�hܣAu�\u0003���}�\u0013H�\f�w�\u001a\u001c\u001a�O�j��m��T��\u001c5�߽��:-\u001c.��B�u\u0007q�\u0013�~e\u0000,�\u001cf�)W��AD�bF&�!\f�\u001b\u000b�73i�\u0007��,���$E�������\u0016H~[��#sO�gC�r[�?���d\u000eM�!�&έ�[M\u0014��lz�QD��@\"�c���\u001f�}�`l��/D\r����\u001a\u001d\u0010D�\u001a�v�V*\u0006Ha7*�'L\u0000\u0006��s/\u0003o�Pm\u000b��:e��u+\u0004\rj@\u0019~�\u000b�\r ��7�OQ��W)�)sc򃏡\n�2!P�WbF�k� \t�\u0005�\u001b:�a(v�Ė�t�\b\t�6�0z:���\u0011���S1U\u0001�&�\r.�\f\u001dG\u0010��\u0001F���B��)r\u0007�*^\u0000k��!}�*\u001d\u0016i\\ڮe\u001ax5(f/��\u0007y<\b�\u000e96\u0012p�߶]dO�e->[KĿ\n������\u0001��˼���w��A\u0001�\u0003���M�|�~��\u0007F�&/��̋T�s�\u0006�\u000b��oq\u0014y\u0007\u0018�9D�&t�4\n�҅�ě\u001cZ\u0000\u0018�\u0001S�s\u0016�Z^�\u0003��!)~�#\"K�\u0001b�Y\u001bĤz�\u001f%���L,\u000e�p>@�Q/\u0003�\u0004\u0019=�[�n�5^m�cҜ\u000e�W���d�,�j\u00109Tx��<�����Q�̱\u0010\u000e��.�&���K!���Iv@��y�����^\n�\u000ej\"�\u0003\u0000ES�™�\u000eS݌\u0012u\u0003�\u001e�?�%W�+T#\u0002��\u0005��`_A�y�\u0002\"�y%2�\u000f�#vV�-�ߐ�Ǖl��5��{�\u0018%^��\u0016�5$(�<�\u0002�/���]u\u001f�%ԋ\u0001ʪ-��\tD��\u0007#\u0016�7�y�� �e��\u0006J�f�C$�H\f\u000eo9�$d0\u000e\u0002�\u0004�_�*�Un���դ��ܠ�(�B��^�봖�N\u0005�d�c�\u000b���N\u0007��}��L\b�I>\u001f\u001d\u0015g�\u0017��\u0006�~+f�\u0002��!\b\u0010�������\u0004�K��I�4P��0�!$�W����\rʬ��\u001c�1\u0003�;��!�aI�dc�P\"�nL)�\u0001�ֆ�(7I�w�6�\u001f\u0005��>v�~���.j\u0007;��:\u0002.���Ó�\t_0f����A%�\u0003����\u001b_\bq\"���R�\u0015��e\u0005�}7\u001d�-�t\t��*ꬪ����3\u0019��\n|�\u001e��\u000flO�2V�\u000b+�g���\u0003��\u0010\u0019\u001e�Ms\u0000U�&��\t�|j�Ɂ7��~#�b�(yO--��k�V\u0014\u001f\u001a8��÷I����4SBm��sͦ�\u0000'�r��Tz3&\t�\u001bҎ�bQ�k^?�\u001dvyͿ�\n�\u0014|\u0019 �(�\u001e5z���t<�\u0012׌]S�\u001c��:�n�~wo�3C%ʎ4e\u001d�ط˗�bd��#wɵ\u001b��/�K��񄿘jS\u0003��@\u0015\u001eHq,���SBA�u[\u000b�\n_��q\r�y\u0013�<���\u0006Ȁ�\"�'�+I[\u0013g>D:���$��A@�\u0004\u0010���\u000e�t���>�+/|�-J�����\u0013���\u0012���U�\u0004�\u0012��\u000eSd��<���G��\u000f8\u000e�[\u0014�Y\u0006Q�Ǫ\"��\u0014���t#0\r ���a\\�M�hEӱ�>p��p��z���\u0006\rD\u0014��l\u00055�#�q\u001f�I�%��e\u0000}���d���m������G\u000e�ܓ\r�n\u0007\u0010���Z��t\u0003h�\u001en���$2Ƶ�\u0006�\u0003<\n\u0007:���\u0015ttFؤ(������\u0000E��J{+r�����\u0003���_�Z�\u001f'�Dy�=�\u0004\u0010ڍ\u0016��Le�۲��=;N\u0011�'��O�\u0002\u0013\u0004�\"9�qP�g�c��,�[�7�xi���\u0019\fA�/�$Fz��|\u0010��3�cS;�\u0002N��o7���ae\u00117�Y�\b\u001e��Jn��AH�\u0004$���\rG��\u0017\u001e,Յ\"����]!�]K�9�`\u000f��0�'\f�rQ0�`(1��\u0013M-\u00001˕�aj�:\u001a��\u0005��Xj(?�����v8�\n�5\u001e��\f�L��'fC\u001b@\nO�\u001f\u001eO$��\\k�5��c�\fF��fF��ϾI=�} �0�,�Ƌ�6���q�Kϟ�~#v�����,�o\u0003��S����B֣�m`\u001a\\f�����-ʮ3ze\\&\u0003�Զ\n\r�-E�����!�8����\u0007�P\u0006�!�+\u0005>\u0010��`\u000e\u0013�^/�~o�\u0006K�~�~�d\b�xQ�ʹ\"N\u0015��{���Z��\"�����\u0005��5xjOq\u0019�4��B�*�\t\u0016J���\r\u001f��u\u000b\u0002\u0018\u0012���\u0019����n\u0007�|\u0011�%k�(���t#��@����A>�\u00048��MWK�[�#�͸�#>sw\u000f��Ք&68���I�-�����?�U\u0014 d\u0016�bL ����&W�\u0006�@U�tB�M\n����\u0018�z NR�O4Z��#=|J*\u0001����\u000f�d�$㌦z�g��p�Y\u0018Q����}h�e$�\u001bcÉ�In�h�7�\b���$��L\\�0�F�v���#Ӹ�!���9ƨ\u0002\u0005��N���\u0017J9s�/�UK\u0001�\u0002�x�t�۔��48��\"۪�%`Lc������\nz\"����\u0004��5܅��\u0016\u000fѓ��S�\u0016�\u0018\u0006���EUT��\u0003\u0017\u0007B��.�ҵ�\u0013�z���5#�\u0005!\u0005�ڼ\u0011\u0013wv�-\u001es�\u001a��\"�!Z\u001dhk6\u0010��c�ͦ.�\u0001<����\n���7T�\u0012�A7�\u0004L��L�0dd۳m�E\u0013`\u0007���j\u0013^v�b3�p*��{�\u0012]�\u001f�\u0010u3��\u0003\u0002�-��\u0019�o�ThpWB\u001dB��l\u000f��\u001e~\u0007!���7�,���{���z����\u0014�\u0017^�\u0000dX���_�iD�@�t��5Z\u0004o$�\u0011D\u000eq\u000b�F�\u0015�{V\u0006�I\b��#����B��dG%��d�\n��\f2\t`\u001d@N\u001aPw��\u0010��\b�sf�k� �=Ţ��&��m�*���ņ#\f'\"\u0019��Iݴ��C��Jf�a\u0005�MX�zkƻ\t\u0018����f��sA3\u0019}����%of4�\u001b^��Z�\b�Z$\u000fr.�H\u0004vS3A�$D\u000f‰�4\u0005I\u0003O�/T�B߬��j�r$�;�.B��\u001b\u0019�v*��޷e�A@�\u0004`��L��G3���\u0005�\u001cy,s�1p�ᖹ.�|\n�dR�-.s�S\u000b��aP �}�I<�\u0011m힞6_�\u000b��5O\u000e�9Ę\"=�=�>e�]�23���i7\f���E���(\u001f�z\u0004\u001d>�[B�\u0016�b ��y��\u000el�\u00117E[3�\u0004�\u001eW\u000e^\u001d<�\u0014rtRz�����y�\u001f�*\u0006�T$YR��K\bb�̗j�B�a�\u0002���en'$��o��K��¶m��\u0007�\u001a�̈́�\u000b9��O!�\u0013���Qҗ�8-H\u001b~�>xB��\u0006��v�ƾ�����Zr�u\u0019�LT��\u0010�T�*�y\u001d�N�\fUhk5qV7���(!�����\u0017R�+�żנH�߿[��� �4����F�;\n�\u0000�+�����3�ܣA6�\u0004t���\u000e��:\u001b@\\j�+�_8`��H�\b\u0016�\u0004��\u0017�H\u000b�b\u0010�Wu�h\t\u0006c��t\u001d\u0012ӥ�\u001f�(�&\u001a��`z��ϽH�;!+�-��5��\u0007�\r��x��k\"�u��b\u001b3�9��cкsS�#bV_\u001b\u001b\u0002G&`}�$-x\u000e�\u001bua�u\u000f\u0003�H��q�J�q�/�A�㝢�γ�B�n��H��\u0017\u0015�����)Y�\u0017w�y;��������\u0000�\t,D_dt\u000b$:�\u001e�_���>Ti�\u0013zd��V�]e�\n%��#��8#1`�yƏ\\�� �\u001cR�+��3ئ�K���`��-\u000f�/��\u001c\u0011\u001a�R���\n��pt�U{���=#HP�H�\u0013o���9s�\u0012���\u0005kޢU���ʣA*�\u0004���L�W�\u0004�{`�\u0000�\u0010\u001c\"��\u0002�?e1�\\�ޠiWyZz�C�\\+!�L�VDx.�\u001c��\u0004\u0018���D�\u001edz�$����/\u0003\u001d�\u0013\f��g�l�\u0006�����ư����e��9өU[q\u001f��rb���!�֥\u0006�P�7�[�6e\b|:\f��:I�FA?b�B��10�\f9>��9�\u0016�j̑8>�\f��-�s����P�I�\u0000S2�q!�߂vC0���\u0000��\"��6ǘ��\u001fy�\u000e���s\r�Ȁ_�\u0018�\u001a\u0007S�=�\r�N\u0011�^�$z�ܹ�Z�EG�\"\u001d\b!?u�G��%\tN\u001f�Y�Jf\u0003\u000f����R�$w<�#��\u0013��\u0010���Y\u0016ݡ�9Z\u001f������A��\u0004���}a�\tn��{y�k\u000f^St�K\b��\u0002�\u0013�Wy@�2��\n\u000f�\u0007A\u00143\u0002Hz\u001a\u0015n�8\"c�(\u001b\u0010K�m�Nk&�k>*�\u001c�xs�i�\f&G�*=1��y��L�!%�.)N�4�O7u;t?\u0013�\u0003|6k�@�)��C)����\u0010\r�����\u001e�\u0010|����$�U;�\u0017��=h9�\u0002Uu�\u0017W9��K\u0018hX�\u001c�\u001b��c8�b��_/bj\u0004콝�\u0019�3\n\r1Γe���9�dH�|h���v����o�\u000e�+����p�g\u0011L\u001b�\u0015u\u0017��A�\u0017��wH\u0019p�\u0002�V���*߻��D� �[\u0002\u001e\u0013'�i�\u001e��\u001c��{�N�\u0007�#?(3���GE\n9S��v���\u0005��-�j\u000f�P0�;�d�b������\u0001lZF^\u001b�Q�4����S��9 \u001b3\u000f@���k�\u0004����zc��$7��Ă�e�[�J\u0002��ʋ0�\\A�Y`�r�P\u0017Gu�\u0006\u0016Tf=��6��[c���\u0014:~�\u0003z�\b�Ms\u0011�JwI��H\u0014\u00160uc�p�����hS�Ftf5�A$�\u0004Ā�L��\u000bt�*\u0007�>��ꈑ��Fʩ~�\u0014Nֲ�#\u000f��,���\u001b�\u000e�%ז\u0015�e��\u000bN[)}o>\u001e\u0011���g�c�莵s}�Е��&&��m��Nj��F�\tJ\u001f)���Xd�$xbHi�n�̭P\f#�@{�����PIO8n��Xբ�)�P��?Կ�(3F���*�V\u0017Z�\u0000ʨ�������o�#\u0000\"�h`�oj�7��\b^.{N�#\u0013�\u0019�����\"G�\u0010\u0011*Km�p�`\u000bu�R�\fDc_\u001e%�ƈ�>\tO�\u001dp�=�\u001f�.���sj��\"�N�\r�q!Y�h�,�F�\r3}\u0003�#ژ�ш�񚩸\"�y\"U��ʓ/�w��AA�\u0004؀�L���:�Q\u000bQ\"�7O��x���5���D2�\u0019� �ۇsi�y��\b��\u0006Y�(� ��z�B���*�(\\��G��2��Q���~v��\t���?���^�\u000e�j��������S\\�8��i���8��S�\t�IW�T��p�ݶv���6 ��x�v���UK�d�\u00031�q`7�h\u0006@��~\u0013������0wb�\u000bY�\"B�K2\u0016��<\u001f�̏P\u0015w$ʜ&@���@4\u000eXe�=O�KM��\u0010����\u000f\u0013�C�'\u001d�J`��4ސ�}�=|+�^\u001d���\u001a]ߒ�Te�tkOR7�\u0007q�w���@x,��\u0018��#�\u001f\u0007�<{\u0004\"h0�\u0007��.�[�\t�\u001f�Q�bI�&�&��\u0012I�:r�z�ڍ�C�=���m\u0016��fz��h��R�\u001fX��N������I<���/xv�u�p�\u0000s\n\u0006�T����?�����9��:\u0000\u0019�w\tF,� ��\u0005I��*B�8�m�\b#Տ�A7�\u0005\u0000��M{;�C�i\\>\u001f�_I\u0001�\u0017Z�:v�} i��5x��\n��3@�\f\n�6\u0002Tpd\r+�\u001ebА�Ek��@=\r\u0005\u000bE�%,���\u001e�^\\\n6y�@i\u001b\u0010��}:~�o\u0000�\u0001�_���rk�!\u0003\r�C?}��L��H�)eH�;�,����Tml\u001d�s�V�~�\u00183_E�wFa�\fKu�\u000e�M\u0014���'Q0�����7�\n�4��\u001aw��\u0016M���kT�{.W6��_z�\u001b֑\u000b�g\u001eH�rn�\n�z�\b\t� �Ϩ3愒\u000fp�\u000f�O���\u0017�~\u0010�\u0001���D��llL\u0005i���w�\u0000Mt��6�0h3\t���&��f�p�\u0014g�������\u001c�T�b�\u0000�2\u0000]\u0019�\\�]S����y���|\u000b+./]\u000b\u0016\\\f��U&�5�\u0006��Ic�B\u0005�\u0006.��`od�\u0017��[\u0000\u001d�)��u�7��Uf�:*$��Q�P3��P�\u001d5}\u0013���3\u001c1�V�����l=\\.\n\u001e�aը�L�\u0016�⓭)������s`�6fb�\u0018�r3�\u0007��\u0006�G��Q�i��\u0001\u001b�܄F\u0019�t���\t���Ѿ��'��\u0003��\u001b�i*�\u0002���l,��!�$�J\u00158�\u0004<�\u0001Y��\b��9�\n�W\u001d�;Qlꨨ!��'oM��J� �eJ��96?���AC�\u0005P��L����\u0005�5\u0006\u0017\u0012��\"0R5AC�:KP�'��X^�r$�.�\u0019S\u0019�Q� �yeB\b��5���l�D��t�3$�4�Ό�F�l��A^ ��ڂ7\u00007\\��x�l��j�*��+���U��9�\u0006����A\t)�\u001e @�\u0012��7\u0012Ȍ\u0019d~ϔ\\�j��i�-��\u0013�3�$*O�&�!�tL\u001b��E̴\u0013��\b\u0010'��\u000b٠yt��fK���\u000f뮱��[����\\�\u0014\u0007�}\u001c�XE�#�pD_��\u0006��i\u000f*J�{@�͕�7��\u0018.���!��g\u001e����\u0015�����:>^*\u000f����i�;zv�ASݠlNnu�\u001e�]�|�c���,!G�9I\u0017B��\u0000�dZ~cKg\n�i���a\u0005��F�-Zd�A7�\u0005d���\u000exM쨉U�\u001f�O\u000e|�qԓ9�f�\u0001t~�K�g���4{\f�jU}Wo�V���f�3�Y6A0��!Ɏq_��5D\u001b:K���\u0003W�\u0018O��\u0001]�v�&\u001d}���\u0014a�����\u0010���z+E����uh\u0013Ǻ�+/\b\u0017\u0014hy��F�~6\"�6�\u0010\u0012I��Ȧ��&L[�ވo9\u0006R���P#����6���@;z���\u0013�\u0001��}O�\u001a���Ne�{�6�BC�E��~\\�\u0001�)\u0015[`3��\u001c�ў𸞕<�\u0007LF�4�\u0015�\u0017���E R�k6�W�Ӱ+\f}R�ï��l�Z\\����N�&q�F\u0017�\u001c\n\u0019z\u001eRB\u000b�j?��u{\u001b.����m�`����\u0011�)$ɣA�\u0005x��|�\u0018~\u0012�� Go���7�u�\u001d՞�d)���iw�m\u000b/M�w���\u0015��{c��\u0013��\u0010� 8�\u0004.&:Ƹ,�T�Gt��\u0016�i���|�!�\u0016J�ΞX�\u0000�$voY�����@��\u0017Di`�\u0013x%\u001f;\u0003V[C�B�\t\u000b�ꤞ��\\�5@��6ǝ�J\tp\u001f�@\u0018r��c��2�\u0015�ď�����u�c�:\u000e���\u0012z_�6���\\\u00120[�c4\u0000G�b��j�c�f\nf\u0006sw��)���mέy7�{��(؊�h�� �:�;��\r9Q���\u001cP�\u0002l�$�Kg�%��{�;\u0005_\u001f�QM����\u0010�d\u0000�2��\u0011�6�3,c\u0001\b���W\u0013�ߞ�3��n$��v}\u001ce��� �����z\r\u000b��X��\u001d�U?t.�\u001f�]��r\u0006oQ�OK���y,��@�c�\u0006.-�\u000f\u0010ȟ\u0015\rcUע�U�ڮ,��R�ƦJ�� �L,O�Ё\u0004Nu�\\\u0003��\b����D8�g︤��ӣ��\t�\u0014;B\u0013͔Bc�}K�q\u0001�%<�ȡ/L�O.�\u0004ER���\u001f\u0007l~Ph�\u0001΂��\u0013+\u0018�����t5h'�s���M��Q�A-�\u0005���0�\u000eR�\u000e@\nɪ`{�6RJd��Cr���\u001cu�7�]fa��A\u0015\u0019w�*�1Wb��[\f,��C�y\tNcк\u0004zױb�P0:1��~�R�N�Ų�=\u0002�#n�A\u0001������49\u001dr�)ک#�\u0019kl͜\n�\u0012���\\̻�d\u000b��N��7 �㏐3���x\u000f4ñ�\r�$�\u0016��Ԝ{k�$-s��T\u000b�t�sR��\rbS�k��s\t�\\z2H\u0013o\u0010�����d9\u0012��\bk5�_�����(�������\u001b��b>���F�~\u0003���Q?k&T?=�Y�\r�$_�ce�\u0004���\u0003�B]�h��\u000e)�\u0014�N�%-^W(�f��[�Bd�'\r�� \tu��o9���j�A\"�\u0005���]�H\u0001�tk��;r�B�0��\u0014ց�G�@�ᴣH-���D�A\u0002�\u0007\u0007�cA@PfMl_Hf\u001b�\u0002�X�H3fy�\u001c�\u0017\\�Aa���`�6��\u0011L�jP�\u0002\n\u0018٬�v�~В�s�\u000f��\u0007/I��\u001b\t��w6�%\u0013�\u0007\u0004Z`v\u0005�Շ�uIID�\r]�;\u0017~�I�a!םp\u000b�o\u001a\u000e\u001b�6�\u0004W�.3��5Lb��\"��\u0001�\ts�\t�T��\u000ftg\u000e�u*�{��Ǡ��\u000e�׶\u0019�YB��e�\\p�a���6�.����z9<\\��Ŧ\u001de�?\u0011<��\u0005#\u0016\u0000z6���+T';H\u0014g@\u0004��XN����@�#����/��2�n�8'Ii\\R�A!�\u0005���X���ϧ��q�-\u0014��\u0016�W���V��J�-M�D<��\\w�܀u0&𚽵>\u0013�\u0010\u0013���ʹ ��\u0015�2\u0004Z��,��k�gqW���L6�’q\u000e�\u000e��鸝b\u0005]��%\u0000Y�s���m��\u001a��h��K���m\u001d�\u0004�����%�yj���'�\"(=�p��11��(WX��!M���f\u0003�<����f�����ҍ��l]!�E\u0017�����3]�`��+&=��d�v��i�?T�+#�s\u001b�?���F\b\u0018a.?Xw���mz�\t/֍��:27�6\u0001������\u0013g�dt�\u000b\t{�A�\n\u0018�f�H[�t�Bb�\u001b�S�A\u0013�\u0005Ȁ�X�F��\u001c����L�\u001d{f&$D\u0007�x`5�aq��w#\u0019����6}��9'C�ˁ��ng\u0000��Y�� ۡ�\u001f�K�G�x/���_������M{\u0003�[Wb>Y�\u0014���� R�J!�jŃQ�\u001e���_\u0012��0�M�������\bU\u000bĘU����\u0012\u0005?��P������%d��\u0006ܥ�C�HR��\u0013>M�;g\u0012\u0000\u0015K\u0018jn�⭨�'\u0015�5x�@�1��I\u0015�Xg�(Eʘ��\u001e�I�\r�����'C��S\u0012\u0011;`\u001d��Q\u0011'�a�\u0003��ƤVx�W�W�[���ny�J̱�T��D��B��ZU\u0012�@\u0014\u001e��A&�\u0005܀��ɬ [��E�Zg>����\u001b\r�����|G�aX�b����(W�\u0016L\u0000�\f�Ք�g��!���]�\u000ej\u001e҇\u0019��h5�����\ro��\u0016\b��\u0007)��;\u0002I�:�RC�\u0007l��v\u0019'�~e��;�\u001ew���\u0000�1\u0005�_�\\>�R\u0014V\u0001�(�È���-\u0001LYø�M\u001aƉ_:\u001e\u0005��,�E�A\u001b1T:��w2M\u001d[RpK�ě�h!F���~(CC�Ʊ�q�\u001f�\f���p�\u0006���m`�\"��۬\u0001\u000f#]�i���\u0012O�|�=\u001a\u001d��\f�Ԣѐ`�5|Е\u0002\u001cjXc\u001f�\u0000����ዃ���$ �L�5\u000e�3�M�}\u0018�2�U�m:�A2�\u0005����\u0010���n��gY�#���e,FD�\u0016*tf����ǝ�ou1�Y\u0003��፪�w�����)e����[��\u0001kk�x�\u0005B��54\u0012\u0000]�\u0013\"a^\"���KƃG0��\u001aٕs\u0017���5\u0010�H���nə���WtWݢdř�\fھ\u0011�\u0007�K[�X9��\u0010w!�4w#\f!��\u0013��7���Vv>\u0005\u000e:A\u0019��\u001c\\e\u000fh�\nyi\u0004��B�0R�F�e��e{xX�_��M��RVM���\u0012#�Y�\u0001A<�Jn��B�f\u0002K8_��:k��\u0004qW�����\u001a[;�AV�\u0006\u0018�����\u0005��Z�ۨ\u0006p0�|K\u001b`%\u001f\u0019��q��)\u0002?Z�t�9|�T�����I�C!9[#p\n�\"\u0017GC��(�`Ed6a:L��\u0003\u0016]����\"��ꗒNA�5��w��6��w@Җ��+[�hR�>p<�\u001f\u001a�?���C\u0013'���Shcs����Ց\u0001r_�\u001aUզ`��8��qj��ե��ۯ<)V��5G\u000f`?B\u0000\"��)�g\u0018���9����:\u001c� �'W�d���y���c�\\�����}����/\u0010����b\u0014gp�\u0006��՜�ej@�\tR�\"�3\u001f��v=\u0011��V�\u0000�&�3�AZ�����a�\r�|�aP�|���Q��e�%s\u0007:|v�^b\u0013iXҊ��\u001f�|M�sE�Z)*%d���2m�Ex��Ͱ��\u0017��.pz�AT�\u0006,���\u0016�,�(����x�KP�Z?\r�H\u001c����t�\u0015p>_\u00187��{�=s����Mt�\u0013s���ڋ�)�\b�y�1��z���t�\u001eJs�|�k�?�����C�3ѾR�F \b����>Ka\u001c2\u001c�y<ٺD\u0011\u0010I�G��6l?%\u001b<��M�&�_#��<�c\u0016��.�WY���s����DV\u0003�n���Z�\u001c9n(\f��/8�\u000b�)\\\t4�ܡg0g\u001cu��Yd\u0011���y���L�t��ً�\u001f�[�:2\u0004y�NњJ\u0012C$�\u001c�v#���+3$��ާ�\u0018Ml�^X�v}�^�E��E���/�`z�,��4��!�:;>.X�t�\u0018\f3Kn\u0013�M�\"N\u001f��>ݕ��\u0003\u0016�\u0012|!�/�\u0012��˩�4�ֆ1\u001c\u0018qe\n�ug6��AO�\u0006@��L�&�UՐw!'�qv> ����k\rs���[��p/\u0000� K1����@r��ٲ�\u0019�l���\u0006�\u0001̠e�\u0005�\u0005�3�y\"\u0013a^?H��9Lw!�Jء5|cJ��`yi|Qi�,��z��!l��惈z�`���:\u0004N�J��X\u000e��JP�:\u0010s�όk��+·7\f�D�|#D�\"n�\u0000Q��?��\u001e�oI�+.^j\t��5M|6�\u0000��5�\u0012�\u0004��iu��w9o\u000b5���[\u0017���e@\u0013�\f`�U�7��_Y�h��fM0P��o����\u0007��\u0019>,�EX\nǒ\u0005�\u0013�l\u0019ʔ\u0010�,�`\u000f9��E�]�D6)\u0003���j�Մp.evMy\u001f\nؽC�\u0010\u000bQ�@-��\u000b$�8-�_K0\u0011���!t�.\u0013\u0004\u0018�\u001a�\t��'d�AU�\u0006T��L����L5�\u0014�����T\nD4\u0004�8�_M��%��q�\u001e��:\f�Gj��\u0012d>�z#�r6潩�k�I�\u001b\u0003\u0016_�}�2���\u001eT~�2z��K|z\u0004�%\"Y�F��!H�f'�o'�A3gl�!F���M��4�\u001dC�諼�n�\u00113\u001c�\u0001'lb��t�xt\u0010�\u0016�JW\t�KO\u0006�/�;�jZ\u001a��m&~�\u001f�p;��.\u0014��\u0019j�6�X\u0019I\u001fH_\u001b/�\u0011O\u0015m/�\u0014W\u0001��\u0005��7���\u0001�B�\u0004�>��\u0002\u000f�D\u001a�X��?7ඉv��\r#\"�k]�%⭣AC�\u0006h��L�f���t�U�\b�L47*)ۍ��\u0015V�\u0004N�΋N�Xzf C{\u0000�k�\u001aj>^\u0010B�C\r�\u001d�\nt�k��[^�����=��Rd\u0018�bS\f�����ģ�)�/V\u0018m����lZ���FK�I���Y\u0000�\u0019�3\u0000CwT|��A{\n��Z����3\u001b\u0016�SםFD \u001cь-��fj>m�Kܐw\u0002\u0006|\u0003\u0000��.�e����!��W�\u001b�Ku�ȩ3�q�s��єV�������{��3��+\t8�����>�V���MC\u001e�ю��͉1�K\u0005g\u001c�߅SIP�5(�{�K(+\np�O�=N�\u001bfE0�����\u0012�y|�|wӊʫ��[����9K�z�rbm�ك��\u0015�+��\u0005�nd�9o�����A:�\u0006|��M\u0014��V\u0017,��V��8lXUv��w�2�e�U��Փ�I1���\u000f�f��\u0001ۥ\u00002_.=�?�\u0004_>?����\b\u001d\u0013�<���\u0005�7�2\u0006�_� ؠtGn��U\u0019j��ˉ\t��R\f-�\\��F�\u000e�HӰ�Ȓ����\u0001X�4�m��:d�1�\u001cp��C݊���֧�)��|���[�x������`�!�>�;*^�j\u0019\u001cP\b�I�Z�Ob\fܕbL\u0015\u0006��\u000f��.H�~��9�;��H(F\u0003�K\u0019��9k0�1(\u001al�����\n��p������B\u001a?0�m3Ql;��L�\u0004n]�F=T\\+\u0004vu\r�U?�\u0015������#=ΦF�\u001a��v+ew\u0012�R`;\u001bx\u0003\u0016�Fpyg�Aȁ\u0006���}b\\2%��K�_M\u0001�2���,E&\u0018��\u0010VFϕ^\u0000+����Uq5�\u00004\u001fo*�;#/�U\u000fI�cb���*\u0018墺��\u000f#>\u001a��ޟ���u���rg�_���\u0001d��p�>\u000e���yM\u001ft@���rQ�3��\u0002��y6\u001e���ȧ�\u0015)�x8��Κ\u0001XgZߛ��5�.\r�M{�Z�q����\u0017����,Ŗ�}��'�����\u0015�B�\u0004�P'�\u000f��\u0013h��c�\u001e&v5����\nUf\u0000ʽ��U@PXv���`��\u0012t\u0014b\f�}T~'�C�v���\b퀑\u0003\u0012�츇��\u00102�\u0017�`\u0000k���4�i\u0019��x��\u000bK��ve�D�Z۴\u0005�qz1�e|\n\u001c���\u0005��PP\u0000V�ъY��6bx�1�\u0003#���P\u001f�\u001a�6$��k\b0�\u0012�$3�M�z\u0003^�ɐ��q�\u0012~b����p��'�e�]V�(J�My�w��媧ِ�,�<'\u0011d�\f\u0010bx/j��|��i*L\u001dLG\u0016��_�A�_\u0019�~��~�(�M��d�\u0014;�\u001e(\u0017�=Z\u0004\u0000\u0017f\u001d�w\u0018��;��i�wݨ���\u0001_�QS̸v���(�}֌�f\u0014�V�\u0010e��i���\u0012<�w���^N/�w��\u000b*\u0006'�(���R��Bس�<\u0017��>�\u0012�AH�\u0006����l��8\u0004#����b1���P\u0018� ��'�I`t\u0005uLR�M\u0010��/wv\u0006z\u001b���Δ�\u0012�b��f�|E�\u0003\u0004~�\u0016�E\u000b�&5�X�C#wOo)t�\u0003�^��Ջt\u0000�\b��!�D=��a\fo)=BҨ��dk;/\u0011\u00163��N��r\u0016cᅠ25���'�\u0010���\u0003HT�;iNn��a�M:R�7l�{�M�f���-���@��R���=�n�Y��\r��'�|'N���Y������g[l\u0002���_ĻF�\u0016(���I�K ��8\fLJF�\n5���fhH�!6\u0013��\u000bH��l�� ��;�3�M�1㐉��*-J��Q���XE��$��Y�\n�t\n3H[O�]��\tKn�˔ܨ�3��@�}r\u0011�AX�\u0006��Ƅ�\u000b��g��\u0003�\u001e`D��@�;��\u0005\u001f��\u0019��}r���\u0005Q\u0019�U� \r�.�\u0012�D�˙�q�\u001b�V}�\u000e4�B�l\u0006~e\u0019_\u0003�BtB�U�YY�О�����q\u0013\u001e��\u0019�A���5�o1w�p\u001b��ԅ)q����p�f\u0014��[~�Նfb�-X[a,S�]Ay�\u001b\u00194Jc;z�\u000e\u001b9�x�腡�\u0006�\u0016n��Ę��Ԝ\u0003\u0018T�\u001f�i\u001e��3)�N���\tʚ�{�.�Q�\u0005���7���H��}�\u0012b`Vi(�V�vє�yN�֗&��`�ˉ��$�\u0007�\u0018~��\u001bD�9�A�ص����v�^\u001f ����\u001a\u0013X\u001e~��~�m\u0017��W��HNB�\\��mP�2ām���M(q�3��A���2��Ǎ�K\u0005\u001a\u001c�N�&���\u001e\u0011�Ao�\u0007\b���c���\u0011�/��(H��ڍ؍�K���ɱˣ�yN\"'\u0001��V�6\u001b�Rr$��\u001a\n-�\u00019�Վ�4k\u000f3�\\&\u000e\u001dof3����\u0014��]���R�IևUl��@�\u0000��l��s'��~�Kb�\u001b뙘��xY���k̩�o��-�U=�Ȟ\u0002��\u0005r\u0006\u000eQv(�V���\u0018-\n: ��\"j��4�Cͧ�c�'��ND�Y\"O��'*��E��W\u00031�s�ź��nH�QC��\u0001Fذ��1���5^��\nb�\u0011=�\f&��\u000b�T��\u001d?�i\u0002��S�_,\u0013�T\u000e}L\u0011��QXB�/�/Н\u001b�OX����hƈV�\u001cr\u000b��\u0016�L�z�:�HqD�!�\u0012\t�QO�\\C�{\u0019\u0014B�\u001e\u001b\u0014�=�X,f��!��z�H�\u0010\f�{ta�k�\u0005<�$`D�\u001eyk�@����wS\"MM[\u001fI\u0012�AF�\u0007\u001c��L�`.��F)�\\��x��̍ʒ��mA�\rGE��k��@�#?��1\u001f������݆P�j`\u0004\u0004���~\\&\u000fpZ@\t.�Ky��LoD�Z'9\u0006��,��\u0004���͟,H\u0001�i\"�ߖ�\u001d])!KW����:k=�7�o\u0011���3�\u0015 \"�i(:=_�\u0014p\u001d�mE�\u0019�m\u001b\u001e������@5I�ځ��{���-IM��n\n�: �/n�lUT�_��\\Ѷ�/��/\u0002K@\u0014qvbQ�S�=�>gID’�@����(�\u0019�\f@5�b��\u0004���N��\u0002N1�\u001d�w�����\"\u0017ٜլ)I�c>lA�\u000f'!���\u0016\u001d�\u0012�\u000b��~�\faaY�.�LHR\b��'\u0014�\u000b/��%�;\u0014e�n\u0016���Hʗ�2\n감�u�1�>��g�.+�����r]�p�c\u0011��p�Z!ѣAA�\u0007X��L��\n*O5c9\u001e\b�Ă0-��\u0018F]ɼqdpl\u0006\u0000nH~���4X\u0013/&����y�v�<�$\f\u0012����v��H�\u0004�鴾N��\u0016u�\u000f�u�\u0010ŁS\n��QL\u00078�x�)��\fhF�˼�\u0000u�\u0004ځ��\\����F\u0018᥅cE�\t�(�$�����>\u000e.�\n�ʓ\u0000J¤��\f�\u0011;=���Se��]�KQ�\u001e��]+�F\u0014\f�+rZ�]�y�5J沰\u0007�wRޢ��\\��wo\u0000�i\u0006���c Rk_/ۋ\u0015��U\u0019.��$B�\u0012ԙS�d� �\u0004SM�G͈\u001b\u000e2\u000f83�2If�}�ѭ�̻���\u000e��.���,�_x(��A��\f\u000e�ы�\n�/z�.Ya��\u0014협�\u0002\u0002V��@�\u0002�.\u0002��\u0006��A5�\u0007l��L���S�\u0012)�\\/&!����\u0013�\\�\u0001,\u0013/��6�\u000b���rl���\r\u001f�\u0019p�<�UT�(Cq�V`ë�S���$��y���\u001d\u001d\u0018����g�%\n��\n��1�)���1�1���\u0002o/3��r�o�+PT��k���+-�D\u0004��ܰn���_�}\u0017\u001e¯�xF�\u001bt�i&2����\u0018J��2�����:\rb�=�-V�������\u0005��\u0019k(��V\u0010�2X\u0012�\u001bGn\t4G�7—\u0018�i\u001a��5�=\u001c0��E�\t!o�t��\t�\u001b�g�y�(B>%�d���\u0003+\u0004\no��?�8��\u0013���O@\u0010��L�f!‚\u000e�TR��I=�B8Ahcu:��\f�\u0013i�4�vۄEv�A%�\u0007����\u000e4�U�BR\u0010M�\b$;��^03��{�VW���#\u001fM;�}<<_��*��wC�=�\u0005vN���L2Of�eT�'��܃\u0019�\u0006D���/;���}aND��k�\u0003���!3^�W��Z�\u000f�'w���]=�P�P[1c!e�j�*�wV��u��H0T�>�R>@�\n\"����(ap�S�&�0&�P��4�.\u0019̼��\u0012ή�x������\u0000W�������\u001e��MS�}���h\u00145�>S�\u0004�?�\b�?AJ�[�p��\u0016L\u000e\u0015��d\u0019-H<���\\ț����\u0019s@�bv���r�w�\u0006����z\"�h,\\O\u0010\u0003\u0013%���z�\u0004�Ə��P���AL�\u0007����y!\b���!�|�u{\u0002\u000e��C�K�}s+#Z \u0017/S]�gl�ՆJ�\u0004�\u001b��\u0017\u0015��j�Y˟�\u0012\u0017�=���\u0002?|\u000f^W�(6Y�k̻\u0006>Z�����؛�w\u0003ù���\u0012���#����탠Ϙ\u000fYy�f�Ƀ8<>��K��ԠnV� �h��\\�z)��F2;?��+J]L�\u000f�sRP�\u001f\u0014x(�\u001e����p�c06�S-}���B=��y�W�\u0015�w�Hxbu\"�\u0019$cg�#�{I�����rƾm��QD�\u0014�U����\nh�'\u0012匲\u000e�2�����s���8�\\\u0017\b(��\r>���_I�\n\b_�~\f�|���Rw� �\u000fm)D(�8dE��?G]�g\u0010\u000f�I�'�\r�ل��f�\u0000v�w\t�ҎZ��R~�@��\u0007���Lض�j;\u0002*\u0015>\u0019��\u000e\u0013\u0016���EA8N�{12Ŀ\u0011\u0002Cv\u001f-�O�?z�|�Џt�\\��\u0002]\u001d�8D,�!@?\u0014�� C\u001d\u0006,>]+���`����W����xe ]�3\b��s,|O,\f�E<\u001c����?��H͚y��'*4�j\u0018�:��=S�\u000b�K�\t��\u0003F�:���#\u0006��\u0019LGL�(�@�=M\u0018{r�FF��\u0001�(����\f-g\u0013J5W�\u0001�gS\u0015\u001aX��M�^n�F��\b:;��Ȃ�%�s\u0006�|�_��\u001a@��R\u000fd����č��U'6Kkֿe���?�A\"�\u0007���X�q�s\u001bT��Z�5�]6\u0018�~�\u0018Z\u0016�L\u001f�\u001d.a\b\u0004�cel-\u0019�1�\\\u0010.��\u0014EϹЙ{-�i�O�w�N���r�[f���yI��=[eO\u0012��\u0012\u000f�\u0010t\u001fX����@\u0015t�{B4�:�0]+1\u001fJ�� 4H~9�#����k�t���\\Ì\u0018��=utK�U�A����3�X�YѢ�h�V�ִ��pv��\u0018�z5gO~h\u0002�\u001b��a�=�.��%QN\u0004@o7��\u001a�p��~`\u0005\u0005�\u0007�a\r..�����\u00187�M�����\u0013f�W\u0018{I\u0000��zxr����%5N��\r���\u001d�k\u000f���P�[\u0017�\u000f��S`��ڠ���l��A$�\u0007Ѐ��\u0013\u000b�\u0017=5\u0005��-6���\u001c���D���\u0004���\u001b��g�����\r>��\u0011EDE9~�\u0016��LqyZ�8\fT�ĪG���#r'����Y۫�8�X�������e\u000f�5�~����]^\bq3�\"\r�fpq\u001d\\eI{�?�J>$�{�\u0019߭@f�dmT0\u001bF�c\u0011�\u000e��ʋ\u0002�?Z��_@\u0005\u0012O\u000e�|��0t_E\u0012�{\u000f}M|Ϫ\u001a���I6��L�I��pM<����h�\u001a���D-\f����v�\u0003Gi\u0018�f��<��K�d\u0017�R>�ਁ\u000b\u0006�\u0013\u0011L \bD.\u000f���c��\u000b��t\u001eG�>J\"�\u0004_Ft{A������z�:\u0005�?6^�\rE`�hc1,׎\u0000�5.�~\u0004h�:_�eX�x *�ةI\u0018�p��u�\u0001F\u0011h�uV\u0005���XA�~D�K�?=Nv�\u0001S��gq��Ƌ��L\u0000G_��p��A�O��\u0011��9��Xb?>5Fg\u0002~\u0014Z\u001abdے��wS��v�-���X��Ab�\b\f��L�\u0012\u00033�\t��˗O��@�\u000b��~���\\�?� �>L\u000e\u0005ɹ�G��T)�&��S\u0013�&3����\u0017����\u00181\u000f�F�UkE\u0004\u000b�U;{ǁ\u000f\u0012�\u00132\u0017n]C\u0013�8��b\u0018oC��x\u0002�\u000b\u0014@�0�RZ^q\"��,\u0018�U)�:kDM\u0013��\u001e�B7��D��6(\f�\\�J\u0000θ�2R�'�wl\u0015g����\u000e��\nj���WY�C�^�\n@�W>��6p��N�+�,N#w�As�\b ���\u0015���\u000f$P��\u0017ިB烠VIf��\u0002����1�e�!�ɞ�o�DjW���up�Ѷ���E\u0005\u0018솰�-t�\u001e�1���y\u001b��X����C�9Ni�\u0003�\u0014��t\fLa���}\u0000��\u000b��^+\u0001��\u0011𙋽���m�z�\u0005V�D7�����W&��\n��Hܗ���\u0005�u\u001e������f\u001a�ؘ�Y%8m�\u001a^\bhe\u0017\u0014~'\u001f�d�9ॢ��\u0005i�s_�\b˨D�`�oգoO�B\u0004�\u00114��V~�\u0015p�w�á�c����%�\b\nBl>t~�\u0016%�޼\u00024\u0011�\f�`E���\u000f�l�\u0013���l&Z��Θ\u000fz؈ᑥO��j\n�$1����\u001a��R��[ܻ�AY�\b4��L��\u0004۵���w�D���0����,8ws矇�Hp\u0006R��+SX�\u0017��@���%�\u000e�\tf>d(�h�m�|��\u000b1\u0017�n��#��wp�0�cEy�\u0018h\u001ak�å���\\��\u0006�`�:0�)`�e#]R���\u0005�y��û�v�O8HY�}��&M��й��C��\u0000�?�ɈJ\u0007\f’�YuU\"�\u0007\u0012h�)\t�>��8��ڥ(~�(�f��B/i�o\u0013I\u0012G7ӝiIS�L\u0015�%\u001e\u0018l��\fc�|�\u0014s'�����2�����n>�#|��3��\u001e�5\u001av�j����\u0010\u0007� ��=\"��tpR������ܴ��u\u001d\r�\u0002(�\r�\\i۵o#��^G��I�P\tCi;�������*\t߄��\u0019��.Nbw�\u001b��[e��'��Ϋl�'�ʥK���AL�\bH���\u001b��T\u0002�K�^v\u0011ɽޘ2�H�\u0005�\u0006\u0019Xi�vK,XA�d\u0004`,\\�똦4Jq��\\\t\u0012����U\u001f��\u001f8�z�̭��\u0003����+�2ƚ\u0007�\u0003fL�����Nf����z\u001bY�������K���\b\tL\u000f3 �e:�i\u0015��gT�Í����bcW����1�/�\u001b��Q^3w{]\u0012�fX\\�!\u0017�\t�b䣃�\n�N-#��*�X\u0015�].\u000f��\u000bp�/�%ߔ�\u001eخ9��Ч���\u0002&�����\u0002#�!9�\u0010��k\u000f\u0001���f0 C\u000e��’g9\u0010��8��\u0004�&*�����̉�+�Ϭ��\u0005`�o3\u0018\u0004 -b���SX���uڊ\u000e�\u001b���v�~\u000e�)$�z1e��h*��v��6��|+��;�\u001c6��A;�\b\\�����\u0010�Nty\fO�c���,\u0010��T\u0004�3��\"�h\f\u0007mډ�U.�8V?_\u0014���;#�T��5�\u0005\u001a�u�,�\u0019h�^���8��@�3�\u0006]�wu����PK���V�-aõc ��\u0019��T3X䵶6���m\\�P��\u001e��@*�%\u0019�1�0�\u0005����6yO��\u0019����\\���xe͎�T3�\u0011�*�\\\u001e��ZhZS^\u0015�0��;��\"�;�u'j𗿃bW�w}�\f��<_�S�4J<�/qV0�UJ\\f�+�\u0005/�H��DZ�;�oӀ1�[\u001a������.Ze�n��\"Şư�5�6�2�Z���gc�� �=(lK@���SM;�4�_�]t�ѰZo����>~�o\t�AY�\bp�����V7ujy�U�3te�X����ַ\"]\u0003��9��E\u0004<7\"y%�]��X�\u0007E�b�\n�L\u0015���z\\�\u000b�\u000b�&&n��\u0017�}砚�[�Ǔ]�+��X����2�(��/\n�\u0010_х�^z�\u000f�$Mj̒�G��\u0013��\u0013�О���_�\u0014�J�›��\t�(�Wq$��\u0017\u0014�\u0019����/h�8���b\u0014\u0014\\\u0006�u�m�+�\u001f HGU\u0001\u001b�N���%�\u0011\u0016Π�\u0017Ŷ@r�=�v�ޫ\r��ą��\u0003RT��W�mJ�!�:?\u0003��\u0006eӹ]\u0004��G\u0003�V��*bp̍�m\fq�{Ak@�)�- �pUX�\u0016\u0016\u000b&��-q6\u0014�}y�a\u0000B�\u000bf\u0001����_�/��у��=�xJ\u001b\u0013\r5��>\u0016�!�\"�\u001ayd�\u0019w\u001e�]�b߱�;\u0017��맪*\u0001#{X�����\u0004��\u000e\u0016��[\u0019�L���+H�v�`�2�G����A��\b���|��y�\u0012\u001a\\\u0012�\u000e�����\u0016�v��>�\u001a�ʸ��Q���Y�c����\u0016�\u001b�+�\u001b�\u0007Ob&�A��m�=f�8M�q�y�hc�`0b\u0006$�|���\u0018ż\u0001�q�Ǡ|�P���7tA)�:�\u00102hV\u0016~�\u0003e����\u0006n�j\u000b\u0006\u0005\u001co\u0015�F�\u000e�j-$nXvZ;�|�3�籄L9^�⒣�G\u0005\u0014��Α�\u001f�D��\u0011\u000b�Z��ޠ���x�,�3�\u0016�ǖ�A@�H��;b9�\u0004_�Vc|�{�\u0015墓�����tL\u001a!�Ju�/CA�\u000fE�� %[�1˗K��?���JS�땉3�B���6\u000b�\b��|\u0019�@��^Z\b�b�%9�eC>ºy���*�b�Cf7��\u0007�[�&�z\nH�\u001c���\f��En$Ζ�\u0019�s�\u0002\u0002��~\u001bRp�Į�����MX6d���Ď�\u00056�N�\u0014�iH��\u0001��A1�\b���M��]*�xv�\u0000M\u0012��b\u0010(`��ި\f\u001dz6f�]Џ�\u0018\\��\t�\u00039:��N���l�0�� �|Gp\f���LuDgoU��\u0005�Չ��\u000e$���0bS��м�R ��qo�7oo��\u0006>��`y\u001b:~ܭ�@��y���*�o!ۿ���ic7��'�m�@ڣ��\u0011�v�p� ��-\u001c߉T���7+b/���D�Q�0�v�\u001eʱ���qW���V ��ob�M�1�3�x\u001f�l��c�ȡ��Xh!�p�^���)���Np�=��T##\u000b@v���N�w�,�.\u001d�\u0019*�\u00138��c<��\u0017-��{���\u0001��Ͳ��\u0017\u0014�=��0)�V�la���\u0007��Ĕ��A=�\bԀ�M0������>n�~Y\u001et�`�cg�);Y�-�}\u000f;����<��S\u000e;q[��ĎmGo�}�\f��FfhA�Y�����4�:�\u0005��\u0017B,�a\u0016�w O�8���=��\t+�6��t��\u001d\t�hM�5\fܨ�\f��\",�F�\u0005�'g�Ǒ\u0019@�W�I�i#@!XC\r��\u001f����08\u001e0Іx\td\u000fq�\u0007\b��m��=J���m#�\u0005&O�B���\u0017\u0019�\u0000��\n�J�%|��X�#/P�i����E7sg\f�\u0003�\u001a����\u0007����\n�y�E,��1a�\u0006m\n�[�p\u0006x�7Юb\\'����b�\u000b\u000f�գ)0�ꂦi� �ӌ���\u000b*0\u0002x�\r�fF�IÓ��k�R�F1?���A1�\b��L�fM˚\u001841�G��l��2|�\u0016ȗ�\u001b�i����\"\"���7�SÎ)8#v_R�����6\u001c�t�?�\u001fe�j�9�\u0012��E��1\u0004\u0003��$�\u0000F�\u0001�we�`\u0019�F�%q��P�z��\u001c�V��p�N����,ʟAƯ\u001c�Զ�>��\u0000P=\u00078+\u0005��=:�w-F�K��d.y��\u0015\b}�D�\u000e����v��F�1����%�A*�\b����\u001b�A;f����^~���fV\u00001�De1�\nf�;2hk%�]�;�;un^\u00015kV\u0019�G�=��/��^���Tސ�N'��%('R�\u000f�;Py�ޔ\u001d��k}��͊0\"��oSz'�\u0010\u0007\u0001�K��\\\u001ff�A (�nЦ�2�TA�\u0014�q\r茯�5\u0006)�\u001c�EP�.:ʜL�+Bh�m�We:�/\u000e�&���<�7m\u0001Y�D�>Ed�Y��\r��\u001d$��\u000fs\u0015a\u0014���\u0006 .S1˪%B��[���<�6ᇧ��I��ZH��(b���9�3��lb�\u0005��m�˦��S�g�8H�K��*zx�\u0007�\n C\u0016\u0017S]D\u0015���\u0011�Ih�CTM���QVT���A%�\t\u0010���\f�\u0014i�%\u0019��GH�\u0015�6�Q�ڟ~V=\u0010�C$����\u001c��\u0012���\u0013�؏w��J��\u0003;\u0013b��\u000b��0Fd�R�gf�`��\u000e_[+�(\u000b�7��\u0018MR}��ٿ��:,B��h�%�\u001a����46E\u0001�W$zNA�ki����V��\u0014�~^\n��!�\"YS\u001a\u001b%��\u0002���Q�H\u0016s�����w\u0002\u001c\u0001S��'�\u0010L�ܨ�o\u001e���..���jƨ�\u0006�\u001e�k�(\u000b�E$��t�\u001c��x\u0016�*1\t@���\u001c\u001c��\u00114���D\u0013���@:\u0006Br\u0016�\\-9\u001aňxtP��:�æ#D����x��h�\u0010�\u0014�\u0014�Onc��Im��U��ν�r�l��A1�\t$���\riS,i3���W}/�TV�F�;������?\u0004'5$��&>h�WJ��y�\n#�dž�c��G}��\u0017�9\u0007�es�]H���\u0005�b�if�����.|o\u001d=�)�g�e��\u0017y\u0019�K��\u0019�\t�|�.R��\b���\u0019`\rҤ�}�\t�6�;w��H�\u0019��R��7Y�\u0019�\u001d\u001e!\u000f\f�+�[ĻթF�����\u001f��\b\f\u0005w�Y��%A\u0013 �����Q��tGv���_���]n֙\u001f�$x\u000e\u0019�9`S�2쓓��\u000eWr�\u0003q�F�S�G�+�.V��R*�H��!}g���8+��c��\u0012�\f\u0013\u000f\u0002k�v�ׄR�q�S�`��\u001a�ߔ\\� ��u\u001b]���6��A0�\t8���\u000ea\u0015�U:>\u0006�f|��F�\u000e\u00107\u000e�2x���Fq�`n��C�\u0018�Y)���I\u0001Uo�\u00106��\u0001��x�|؎x\u0000\u001c\u001bp>qZm�\\��\b\u0018�B`��g\u000b\u0002f\b\u001d�Y�V0�|���d�\f��}��W��7�Q��I��\u000e�f>?�V�o\u0005�c�\u0006]\rM�V�S�2¿L+���FѼ2�Z\"��m|\u000e��W.\u0013rD��;I%ۈD��,v(JC��W��=K��<\"�C��U\u0012K\u0004Hr��݋xC��\u001b����e�(�\u001e���\u0018\\q\u001bF�K`\u0014�wϿ�x\u0006�-�D����\u0006\b���!\f�H{yKD�\u0005�((��X˿\u0000��NS0�\u001e8�t�\u0000\u0014\u0019��=�jk\u0019@���A,�\tL���\u0015Ǒ��r��zc�����\"s$�_�>���\f\u0004�C�h�+o\u0011e>\u001b�\u001d\u001d �\nH\fl8`\u000fY�e*I�\u0016ue��9�:\u001fg�9^���b\u0001��}�Mm0\u00175��y\u0006�f��Ͻ���\u001f�:!�xJaF�V<\u001a�o2);���I\u0013M�7,�\u0000�d�nCC9�{�\u001e�`3p3]d|�\\��p�{+��x�%�kX�\u0019�O�4��C+iQ�UxR��d\u001f,*��0\n���y\u0014�����5g\b-�M>��!M��h�O\u0003��N�5�U�T\u000b\u0017��\u000bv�a\u0006*��\r�?0\u0019�?PW���[�p���x,\u0002X�x��\u0014|�p\nD\u0004\u0012�xn\u0017o\u0004Ϡ[\\\u001ayp\u0000\u00172�\r8k�\u0002\bX�l��`$�Yִ~_�C�)\u0014\u0000\nV%��5�~kɽ�\n\u001ck���\fG �E\bl�\u0017�]�<�\u0015��Jk�\u0011M���<�V��8ۛ?\u001eO{8�\t|��d�5������\u0005(\u000eS\fb�\u0003���K�E4/3I��:5\f7[ϡ\u0010Ǣ\";p���\u0007\u0011��-��Cj�t�CƖ���BW�P\u0010��&36n�AV�\tt���\u0010���-'�;l~B&g\u0017�ޮC��{��r��\u0006L�R\u00150\u0000G�e^�\u001f\u001b��缱�*\n7�\u0002Y�p���\r\u0005G]��Μ؛~����\u0017�r��t߭�in:u��\u0004܊�\b\u0013�x7U\u000b���N�RH��K=u��H3�\r�ڈ�?\f��\u0012&r�O9���\u001f�b\u001d\u0003���\u0012�\u001f�����&��\ny#��X\r�=��h���f�46��\u0010�&:g�?l���`\"f\b\u0010��vPp�\u0012�h硍 u:o�R��$�T��( ҿ�f5�3�\u0006;S�U\u0015\u0016S�<\t\"��ۆ�\u001fZ�g�Q��^%���3\u0014:��\u0016?\u0003\u0001o��wC� \u000e�\u0016�8���?\u001bY��4vE@b����ܯ&\u0001ԛ*�\t�\u000e�\u0007\u0004�N8b��\u0000\u001e��\u000b)�i��L�&�A��\t���X�TKDu�kPijdW�@0�}�R��� (�jT:b7&\u0011�+o�ԩ�I:\u0017JX*�\u0010�[f�L�o�/\t��6\r~�7�g�\u0002\u000b�3ދ-C�%���m�'�u�3��7�$\u0000�\u0013i]4���\u001e\t�sc����\u001aE��y\u001b!\u001b�a�\bE)\t�@U\u0005L2�[�\u00077Tn�\u0003����W`�˪<�\r�/�6ݕha���`\u0006Pn�#1\u000e��L��ۗ�ca��\u0011��U`&�}\u0013��K���;��TF�`{��u��/�ݏ;{\bȝ\"��!�/�O\r}\u0012\b��?��#��\u00181�\u0002Q#�(�_�5Ԡ@���,QE�VhЌ'\\�W���\u00139Ƶ����}��F\u0002ݐ�G4\u0000��#\t~�@V\u0013��({�\u0002\t^�M\u0014\u0012/g�9H\roNR,���/f�\\V�~���o���\u000f�\u0014>\u0001�\u0017�k\r�\u0006-�)��޻k\u000e����s�\u000e|)�q\u0012�\u0011�aY\u001c��l�\u0004@�A9�\t���X���K�p�vx�8h\u001a���7K�\u001c����?�\u0014���rt#�W�ł�\r���?9)��V8S��XU\u0000&\u0007\u001a�\u0000�R�<���\u0016\\\r����o����\u0006�\u0019��a�_%��cm\u00024��\u0010\u0007\u0010�ђkNE:��6d�A�\u000f�v\r*(;��,���\u0001(V7M/9s���#�z�q�m�\u0015Ƣ��\fb\u0011�=�'�\b�\u0017ʚ\f9Zr�\u0018M\u001a�aL�F�p�\u000b��&j\u0002��fl:d}NW\u001f�\u001e��\u0005k��ݔN��;�\u0019�Hj���=\u001d���>T���BR���R��1���'ح�\u00009���K���\u0017\u0006\u0004\u001f��V�@���\n\u000f��>C\u00044W�J\u001e@\u000b�V �5�\u000b�\u0003w@�+nO�A�\u001b�M��|��A:�\t����eg���f\u0000w\tU~sj\u0014�G���*�~�ߟ)�W\u0000T�����.�P�s ��r��<�$�\t�50_=�\u0010\u001dyUa��,^�v�ݰ�[4���%ۇ4�\u0004�lU�=_G�\u0005\u0005\"W�\u000e��[&m\"c�\u001c*\u0006�\t� �U\u0002�����+��/Y\"u6�\"բ6��J����\u0000W�?p����7��-�/���\u00075�+��N�\f\u000e��{1\u001d2��t���3Dj�\u000f��B%P̩<\u0005\u0005֕�v[㠩���͍\u0003�\u0013\u001a\u000eûc��&*0��H{�\u0010\u000bg��DO�$����\u0011dr�����Z\u001c<��C��\u0013·i\t�c8�\"��b�Ih\u0013\u0004�,R�d\u001c�ۻi\u0013\u001ch\u0019�Y����_z\u0016��A9�\tĀ�X�F��A=\u001aj��\u0013~�ݤP�r|d=��S;)Q�\u0013��a\u0012k�I\u001a��-;(�R�A>�\t؀���h3\u0000��j\u0015�\u000eg��\u0014��\u0002F��\f3\fe�#�d����=���A�-ߝ(����Ҕ�ǾM}2���a��Ҝ��j�f!�8_\\��Ċ�s�\u0007������FL�+!�d1F�^�/Ѡ옦\u0014Q��뉽�v-_\n�p\u001aQf��L\u0010g�Њn��c����u�\u0003$3Zd(�����\u0004'�&xS��\u0015.��:��̡S5x��\bg\u0007.�(�\u00165\u000e\u0011�=4����#\u0001\tL͇Bt0���)\u0011�eY\u0017��$6k�8�|����\u001e]j\u0016I�E��v�\u0015�N\u0018E'`_���6,u�+��\u0004]p��D�_\u001b\u0015\u0001Fұ���p�\u001eZ�\u0017*�%���g�4���X���,\u000f�X��c�O��\u0018\u001a#����pɣA;�\t���\u000e^E�˭Kp\n�\u001f�9\u0004�.\u0014�\u0011a�ܜ��X�@�p˜�(\\\u000f��i\u0005����6��W�}��cP�\u001a\r�u2\u0002a�\u0004���֥f�`:;��$Y&-g�͟\u0012�\n�X/��c�㜏4W�\u0016�\u0006T*(�f��ia�l\u0013ɰ�6v3�\u0003�\u000f���_?�qԤ��zְa��t���jB\u0014\u001e��\u0016D�N��j|�P���m\b8[�&�~�\u001a�/�rFoXN�aNj���,��meJx�$�\u0012J\u0004��N�foZ���\u0012\u001a\r\u001ep\u0002�1�!���u�\u001dV����Hf�$�\u001e����w�0\u0011\u000e!��j\u001f�SM������x�m��/2�Z\u0007\u0005ͫ��t�\u0014/\u00149]v��\rm_�.,�\u0011�4ɣA;�\n\u0000���\u001ez�p\u0000eT��c����˪�q��E.F��S�[2nI��p�z����U\u0006Z�0����P7nyd\u0012�h+��j�M�μ�=��\u0010\\۱l\u0010~J�0uA�c\u0015Xc��\u001c.�&�ڮ��k0GM�-\fI'��p�S\u0016�\u000f�}��\u0005]&�\u0018��E�����TX��\u001a\u000f!�<�\u001f�ry��ke3�c>Ʌ��\u0006ܡ������d߽�w�(\"L��$�=�Z�vZK\u0000/?�$��p�lZɣA<�\n\u0014���\r\u001e+�u��΁��\u0006J\u000eh��2�p��(����E|w\\C&8�K���m�ix�i��\u0018U>��%�,y�_�����M\u001e1���.�<�tD�\u001fN�\u001a�\u0017���*2�\u0002d �1Gp�DtZ��\tp�c?e�_���\u000e�|��sy�[P�\u001d)\n�VQI�\u0010��3*^T�\u0002�\"�\u001e�!�4v�A6-8\u0006_\u0003�+F��2��X\u001d�*\u0012P��!��b�`\u0003f$���:����`8��{\u0011~�\u0006� �_���?�Ua��B�\u0015\u0004\u001eE���\u0005�f�ҕ\u0007�F�|�\u000b��B\u0014_䅧W��b���)���+��\"\u0004;7޽�h\u0011�\bd#��̾�S�cjK��\u000b�i!ʼ����wZ\u0005�`Xa��C�_[�ɣAM�\n(���\u001e]������)*\u0001K�\ba�\u000f҈�E�T�\u0000U�\ta��N��]Xn���!޿�\u0013㒬Ĥ�7����(�-nFZ�QImR\t�bkV\u001e*ar��Ȓ�,�!;9F�%蹺�'U\u001d\u001e�i�*��\u0012­ ,�N(��;��p�ةi���;����aM����KG\u001b\u0000\u0004��+�VD�Hw�$�qm\r�\nC�\u0005\u0005�\u001c<��1��B����H��j\u001f�n\u0011GX��Ik����<\r����ג(%����F8\u0002���[��\u0015ƞQo�-q����XX�\u0006<{�K\u000f�o�φ�(q�a_MYw�u�p�g��j\u0004�F�E@(�\u0016�}f\u000b��\u000b+%\u0007�B!J%�}=\\\rqִ\u0002�H�����T\u0014E����S'����ljNw'\b^�a$ɣAO�\n<���\u001b{N�\u001e^~�p��Ō��6�v)���,\u0015�(/ag�\"��ra\f�����\\\u0011��]��O`���*�m�_P=�C I����Q�y��ӏ�v�\u0006@��:��T���,\t�]��������԰�je@~��O�lz.I�2�j��N��=gV�\u001a�+ԛu�.�\bmM\u000f����yޒY�\u0010j�C�~��\t��-\u0003R\u0003q-�U�9eH)6Z�\u000e\u001bɑ%\u000b����5�i\u0014J�K\u0001�OҎ-<\u000f\u0015��P�ӑ��J5\t�$ѕK��\tô%�';�\u0017Q\u001c���~���:�<�:�٣<\u0003B0\u0007��foV�'f�\u000eҴ;$�\u001d\u000f\u0004O�˫\u0012\u001d�򔹲��ˌ;U+{\u0003�Ƚ\u0001�V�^E��v\u001e{����e\u0005\u0006�w�?\u0005HĬӔ\u0010ɣAH�\nP��L������|�ڏ5�\u001a��ڠ���*\u0014�\u0019�\u0002ԗ,�<{�9,5�\u001d�v�_��|��#��\u001c�Xͤ1P_zO\\������\u000b���ب\u0014�\u000b\u001e����\u0018b-��\u0006�qM\u001dS\u001b9����.�k�:�[ٵq��ke�\u001e��8�[�\b��\u0019m\t�CsVW��K�t��`��y\u0006��˒��\u0015.�9��\u0011.1���P�붖�n>8���w\u000f劯�\u0019��Vz�\u0001n�8b�<\f��(�`L�ڨ�\u000e��}�3YR�\u0000Q�����\n�\u0006����\u001d�-�G;D\u001e��?^�0d\u0000�E ��\u001c���\b\"�uw�w�\u001a���P_\u0010�=����u/\u0010<'�\u0011\u0011\u000f�7#�Ի�A~��U�=\n�<��S�\u000fm(ft|�B�A?�\nd��L���I��Դ�҄\u0007\u001d�%��ϴy��\u0006lb��)<���=�)X�N�<\nJ\f���M�9��\\�T�l\u0001�%@��!�3(�@ ^�\u001b�\u0003�ך�\r���i��ū�\u0010�_7�G��n�k9�\u001f(F�5��Z����\u0015�pȐRx\t�=\r\u001a�0\u0005'�8i\u000e�X�\u0000C�ݭ���{�.q!1i�oⴴ-��sޡ+����[R\u0003<�)9X\u0015\t�c��o��}�#�Z\"�\\��2\u000fk\u000b����\u0000\u00009�P@޽u��f�w�j�{��Հ�.�\u0011���bK\tv��]�G��w\f��^�\u0005�K�A�Bх'\u0004{�\u0017� U=T\u0018|2�r\u00121M��V:�nuȴl�\u0006\u0014��J�k&\u0005!ݛϗ�vp\u0002�0/�ʣA5�\nx��1�\u0016\u000e/Z^\u000f`ݗS]��[(�\u0007�nq{�TD�*\u0002�,��\u0004�zW���1�f��Z�A�YR}��5\u0001U�Z�&v�\fVC2�\u0004d�q\u0016�tdmo�h�7\b^�&�(U�g��\u0011�=׻\bpm]���’�W\u0004R6N̬'bHu\"#M��\u000e�haeЗ\u0015�X��T�\u0006��:�Q\u0006\u00028��t��-KM�x\u0019��s�o�Z�=�@f��\r�K\u000e�\u00039у�i��(�4�#ym.g_�E��1h��@��5B8�Q}/�\u001cJ5��XV(��BP��O��B�.�l�.n%b��z�ܛC)��ˤN�{;�7�\u0003=g�{f\\D�B��Ss~�9_Tw*�\u001a�iBI��y4�`�\u0007\u001c�A/�\n����e@d]��*hfOF\u0002NG�2�뿤�n�.Xw3,���QI�e�/\u0006Q� ���]�VW�!���I��/\u0018\u001d}���yp�J�\u0011�W\u0019��G\ruc��C\\�8�\"n\u0013�R�\u0001M��*\u000b\u0019\u0017j��b�\u0010\u0005-|\"FH矲��yD�\u0011V\u0001*��H�����\u0011E�\rGqw�S�kzp�UVi�?�����R�\u00110�)\u0012�\r�'.<�DWhsZ�\u001dw\u0013Q� �d�����fG쁖!�m,��%�~��*��VD�c�RwY_���\u0003\u0010\u0010�����S*���\b\u0001����\\ݵ��\u0010�i0��'삞\u0002���\\�؜\u001e��{R�˗[V��,NՃ7�\u001a�\u000e���\u0011��A=�\n����\u001e���>!�P}�*��N�>��|�$l��A�\u0014R6�vD�k\u0019.�.�\b\u001e�D7]g�\u000b���:r�_\rx�?l0�\rW��\u0017\u0016�����F^�8ޗ�\u0003�x�(��l ��g�q�'\u001f�~Ń���+�>\u0000��]\u0005�-�<:�z󨓞�������>X\u001b\u0004tr���X4��\u000b������y��\u0013}*\u001c��f��\u0017�A6�\n܀��\u001f\u0017��\u0006\u0005C��8���06\u000e4 �cx3\\\u0000����,���{�I���ZE��hd���]�z����\b�(\u0001y��\\��m�~3u�д\u0005��\u0007�p�\u000e�-���X�4�ql�|���\n�\u0017j�j�!\u0015!g\u0004���\u0010��浶��+��d|t�\u0007������g%<�~S2\f����)���|\u0000�\u001f�N���?�\u0005|��CD�+�C+���y\u0017�s\u0019p�\t���H��=\u0011N����ί��\u001f�XS�z#�\u0002�L\u001fIdֽ�\u0012\b2$�6�\u001f��\u001f�\u0018�ԉ�\u000f\f�\u0017�v�\u001a8��\u0015��sӅ%1�G:zGٹf�eT\u001c)u�N�\u0011u��,�\u0007\u000e=r#������/�Z\u0018�\u000b٨���\u0015�AI�\n����&�Yl��1�V�k�\u0010�i��$a�C�t������VK�\u0013\"�j%\u0006Ϭ,92(]}\u0012�\u000b�\u000eV�\u0001��)��\u0018�BI�w�\u0015��F\u0003]I�d�y��_�:\u0007,�]��2�\b�� ��g}��-@n�W�\u000fQ[;�\u0018T�X\u0000M��\u0006ґZ\u0017`�F����號;cN��c�^��q��\\�d���\u0004LG\u00002R��x\n�ԥ>�w�=\u000e�`\u000fP\u0006��Ve�TwCu���/i-�Ps\u001a\u0018�$\rS��6I�-�\u000e447\u0013G���;�+\u001aɮ\u0014\u0016\u0002MX� ���ŀs��Ii\u0019H\u0010��Ƕ�rȢ\u0012�AV�\u000b,��� :�����œ�b�1~�v��˾z)_��w.{v�\u0001��K��q�32����]\u0016-�A\n�ΑN�_\u0000������t�\u0016sA�\u0004\u0018���Z_�;\u0011�\\���&\f�����*�\fS˽\u001a��-�G��\u0001\u0015�\u001c�/3�#�Ck��H�\tZ�u�%���\u0000?x��2Ӎ�`+9���{M�#h�����\u000b��x��:h9?�\u0012\\��\u0011\u0016Z�6�6l.Z�b���f�j�\n\u0019��\u0001T�i�6\u0011�n�st�\u0003�\u001f�p^=B�\u0007�A�幛i�A����\u0007hB\u001d(�\u0018�?Q%E��\f�5\\���ͣ~�,��D\"��\u001e�(�\u0000)c��ɩVXi�S���n\u001a��F�������)�)�1��*qF�N\\E\t\u0002�f��`Obv\rI�X��s�c�r���AP�\u000b@�����I}\u0000��\u000bS/�:\u0000[��2\u0010#\u001b��Ѳ�\u000eL\u0015N�\u0007L�����iϯ/r�Eqؑ�\\�����\u0019��z�\f/�k�`��7����\u000bHe�,��*2����c�,\u001b\u0015��p'\"��`\u0011dipe0�����9EG�B��\u0013���\u0004�����e�=��B�{`��b�,Y�p?O�2����\u0018�O\u0007���7���/Ҿ�YVy�\u0002����/*F%�\u0001����������z k�\b�)��G��+�c�uڋ\u001e\u0019�k\u0004-\u00006�\u0003���Ey\nH\u0000��$%�\u0000ߝ�#�����\u0006W�\fL\u0019��i[7ŝݓӲ�Vr�>�\u0004묽�0Kՙ\rh\u001cs\u0014��ƹU=�\u001c%\u0003�x\b\u001e\n�\u0012\u0001ۆ;Ԣ��^mR��ܜ,R`a�\u0013N�C�\u0000��AG�\u000bT��6�R�\nb28m���\u0014���;u;O��\u001f;J���GC\u0012�\u0014�\u0002�`�2R�\b_\u001d_�Еz��Һ\u0015[��[D\u000fY��\t,�^����C<�1\u0014�{��\u0012�\u000bU��9\b5�1b�.wn�2�U\u0015�r$�k���\u0015<\u0007�Z������K\u0002��a���\u0011��N\u001e�&��] ��F������u3�\u0007\f�#�w\u0007�d�\"�Dp{�|�\u0001p\u001ap%\u0018v�G�������NyrC�'�\u000e����W\u0004��9�i�u�)��>�ؾPhU����LAE��ev\u0017\"{�\u001c!�\u001d�B�5�ꖃ5\u0017k=\u0007\u000bx��!j����\b\u00056+����`z\r�O�m���\u0004�z��4-�O�m{�\u0016\u0010#\u001c[\u001c��(�)$\u0007mY�8d\u001fA�+��AO�\u000bh��)\u0007�N�om5��\u0010�r�j�1\u0015�����A�Tg���;N\tŹ��܆��b���\u0017H��.\u000b�\u0011h'i\u001c(N|��3k�$\u0000�d�\u0014�ε_+H��\u001f�y&��_��\u000e��,�EC�_q�Ά�;a�O\u0018��\u001b�q��Y�n��\u0015�r�!�{�\u0002\u0010ka\u001e�P%\u001a�\u0014^�_g�m�p�MKS�\u0001`��P#o�W�4�\u000f��K�������HN�)�E��h�ݪ� ��B�;zP�$Ѐ\u001d�}ft0Z�V���?�A�\u000b|��|�!��I�^�[<ɤ�N��K2Ƕ�\t�\u001b���=n]�L\u0011g�0x���w�����wDs�iZ�\u0001B�Z�!j��\u000ev�ؒ�c�_�\u0006>eԒ�\u000b��m\r�d�\u0016\u001a:٣\u0002X��ٝ��pr0�����d`�^�B\u001a��\u0013�\rpixD�\t�1,�5���\u0004|�|���<�\u0002��\u0005\u0016]�\u001cE�Bg�k��#��\t�\u0016�\u001b�ӳ�^�@x��n⟹gr\n��M>\n>�-+\u0012��~���+�d�֓hO\"\u0018\t�<�qL=��͙v\n�^L\u0015�n&�3�g�[Z�\u001f���y��2�?�:Q\f��]iS�1��\u001eMhY\u0006`�\u001b��$�\u0005��x��mu�y)�\u001fM�M�$�3�)���t<��^��zr��}@��Hqz��L��`2EX��h�T�i����\u0012�s��C�\t�a�\u000e�\u0003_�j@\u0013G�@\f\\�\u0006���iv����W0j�tmI��G��\u0001p\u0003K�\u001b��C��^*]��ܰ\u0006\u001czCĕ�0�?��e\u0016Z�B\u001f�\u000fHw@՟b��>�?t���\u001c�\u001b\u0013�\u0014�qi��3Aq�o�\u0015�\u000e�bI 6Fpd$�(T�\f��㔖�I4�C�A��\u000b���}�>��*\n �d\u0019�H�Vo�aU�!��2�/y�d\b���\u0000�NY�\t����^�!L�*��T\u0018�\u001a�RȈ�ð�\u0019�{,!-˂tet���`T�z��(r\u0018���'����\u0011�\u0013�`J�(�)E�z\u0006X���\"\u0006�Wgf���ܫ����G\u0003��z63�Wx߅œ���#x��pq=����v��w��<�/\r\t�X��`\u000b;Y\u000f-�_�p��[��H\u0006L\u001b��bRX`�t�k��y�\u0019}4�\u0017��z\f��˼~�����/�3�y�\u001d�NUr�p\u001e�l�dN�)h��\r\u0010T�(�S�J\t“,����m�mb��A!�\u000b���X�gԦ_i+.\u000f0��^/\u0004�S�D��:�W�\u000b��\"�\u0012���'_\u0001�������3����.�釓m\u001a\u0007N\u001a[���\u0018���\u001f\u001cr�Ȼ��\u000e@\u0001��\u0015+\t�)5��b�Zp5\u0014,\n�\u0004�?3\u0014��e\u0014�ؖ:Υ\u0006\u000f\"���tg)��fd�\t��\u000b86ul0jU���\u0003\u0005\u001cՋFt\u000e�\u001e�0,�p�w��.����4H\u0014O\u000b\u0011xZ\u000f��g��b'\u001f��\u000e��.c��}E�\u0016��$\u0005ܢA�ɸ&��{\u0007D�U�\u0007�\u0010C�G���fl������\u001a\u000e��K�9�L#���|!4}z\u0014\tTƠ:�\u0003e\u0013#hއ�ܐ�ta4����x�\u0017|\u0002U�A �\u000b̀�Mt��#!���mLqf���B���C�H�6 �/m>�/&�\u0006�Kh�\u0005^k5\t7V�\u0015<��)^�a3�����U\u0013U\u001f\u001c`f@�,V\u0015����,p\u001f�oSY�>��3Z�׉7�\u0016F(��9��<�\u001b\u0003`��4l���\u001b��\"%t���\nܰ-c�����l������O��2�\u0001���\u0000�sp�=��N�\u0004\u001c�\fU�\u0011Y���7)��K\u0002\u000b�(Տ��M�U\u0015�\u0011{�ھ��e\u0007���\b�\u0004\u0019�\u001cݺ�(\n\"�#����\u0018\u0000��!�vᇋ\u000b\u000bWFK�.�\u001c}�ȕ[|��\b'�\u000e3\r��\u0001V�3��kp�1H�r��ʕ\u001f�D����[�A$�\u000b���Mz-��\u0017L�B�J�\r}\u001d}�k͚z\u000bD{~���7Qg�W�1�(ޣl��\u001ff�yes\u0001�b\t��c[�k\r�L�9\\Gټ\u0001\b\u001e�W��!�w,ĂS��%7)�3}:\u001f�s6lE/aD\u0010 0��KI���\u0006)2�\u0014�\u0013q��\u001c\u000bN��GYfv<�}T\u0006�~~l��r�6�������1�\u0004�]+}�����\n��e�`E����\u0004!��I\u001f��\u001c[\f��9n':��vl.�)W��$m]:P,Uq�ITEB�\t����\u0006��X\u0014ޏjW�æ�����x��\f�D\u0011�Y\u000fU\bP���\u001do`x�I%\u000eyr��b\u0018��d������?L�~�A#�\u000b��L�7�� 꺦\u0018Љ\u001b�[ŕS����N�\u0002�I�^�@\"�WT�4(�ۅ��\u000e�Ty�\u001fu�\b��)��|�����I-F(���7N�\u0010r�\f\b\u000e��U\u000e\u0006��䬨7S��-��{z([��S\"1��\u0016YʖЧ3B�ijh��lݡN���g�\u0010�b.\r��\u000e���9\u0017\u0002��WhL\n��\u0017}����]���J]�f�Ma\u001a8�\u0011^#��\u000b��\u0005O�r�!��B}k�&ҡ[�3{����|~NK\u0019\u0010�\u001e\u0006��u\u0004\u0015\u0015�ܿ\u0003#�\b��_;�)ĐCPLۊH8�\u0003֘�c�}Qt�V��E��c8\u001a\u001e�7����+�\u0001�Z��ר\n/�$�A2�\f\b��Mz뉙��.e\u0014Cb�~e\n7�\u0016#�i��W�\u0015E�Nn/��\f%Z�+0\u001f4���*����k\f�,�x��\u0004R}���\u000e&\u001dG����L����B�[Ս?��vk�\u001e��b�\u0007��\u001e�\"\"����r-(H�!�tx�Stx)m�\u0006�\u001d\u001f��Ǻ(��Bk�\"��\b�f|��q7�ܴ8�\u000b��B���C%�a3\u0007S����\u0004�w\u0000����BT�U~ѧZ�=\u000bƊq󏙁�V�Ú�_�\"\u0015�.U�\u000fC1,\u0011t�Ry\u001ft�3/Kc���y��a\u0012��{$���-0��v/.�;rw12\n�E}�Z>Le�!�=�GcXx\u0007�)�}A\\&\u0011\u0019�\r�O\t����HP�,�AG�\f\u001c��Mz�K4\t@5pQ�-\u000e��e\u0004��х\u0011��|P�Ez��]C��g�l�!���UiTE\u00028&�r�\u0012~.�p�\u0007�{���X\u0004�\u0013W\u0017/�@\u0017�x^>a\u001eP z���#��/D&�//}�\\Hhs\u001f�R��\u001ch]y��\u0001�\u001f�n�ii��\u0013��̃���VA�G'U�X�A�ko'��dE|���g��$������J�y�e�\u0017C�\u0003F�`�\r�n�AH�\fD��L�0\f\f���۫x�\u001d\f�\\����\b�:&\u0004\u0007}���\b�#{;e��'��\u0001F\u0016m}<]#��\u0014i\u0014`2&`��[�\u001a�EO����`c�RKx?s;%��\")\u000b��\u0019k��\f)�2�N��\u000b}p)>;P�k�\u0017�[�i�f�\u0019.w\u0013a��&؂y��J���R�E^�\u001e�%��=�����\"�&M�*�D\u0003�N\bvS-\t���\u00190HDpa&��q�a1*��j�\u0014�!\u0007�c\u0004-\\o6粫����C\u001b\b�2|�rO��\u001dvu�`o�}N�\u0011�\u0004�*u?3\u0012\u000b��\u001f}���)��T�\u001d�v�\u001e\u0016\u000b�l�c�\u001f��S:_V/��i2-�w�v\u000f�L�Y\u0014�Z�* :��\u0017��CI)\u0014��w��TE��Jm��Tz/(*���\u0007��AP�\fX��M���j{�\b�j��3�\u001b�.�l��0����\u001f�\\L\u000b�Sɕ�\u000b\u0007��ʀ�\u000e��f����h��%^\u0015���\u0017�\u00151��.��x���R.�CU˱r4\u000bzꔧ0a+@J�Ghn\u001c50T�ܢ��y�h��R�ԃ����\u0004b2��f�_�/Q��9\u001a =�W�[ϝ:H�\u001e��\u001e:\u0006\u000f'P��E���0�qFI� �~�UBq{\f~�|����0��\u001bO�&\u0014?�FW�\u000b\"�����\u001cn3�n&\u0001��L:�\u000b\ni\u0013WG�Q�����\u0004��'\u00040Vi�:z��\u0005�9\rŧ\f-j\\T\u001f�z\u0006CP,�\u0016��̹rSJ�mB�%f\u0019̞5{���k4p'ٯ�\u0003\u000esM�\"\u00176���f��S,\u001b��O�~S1nkdn�U�e-��1f��AG�\fl��L��\u0019� ��Zk�8����9R�E�\u000b��b\u001du��H\u001aP������\u001b\u0019�\u0001��i\f�\u001b�T�P����kPs���|:[�ll\u0004Tn�}�����1���[�2M�@f:5G8R�����7�0���<\u0003�{|�ak\u001bI����hr�5m��@�\u0003L�nf��`I�٩\u0015�\\[�����X�'�գ�lV8\t��\\ѵ<(:��\u0001\t�����\\��=\"`��]>D�\u001f����\u0004�(�\u0014\u0012񈮷��O?\u0013P�+\u001e�\u0019��\u0004�\u0018�\u001a���pG\n�\u0010ʻi?a��V_�\\\\\u001b�A9�\f���X���̬�I���\u0017�7M�g���g�\u0017��I����\u001f8��c���]a5�}\u001e�L\u001f\t+���?��\u001fZ�l[5����\u000e�ęB�\u000e�|\u0005�\b��$���\u001b:��KY�UC=��}�/�۲M�a��,^�w��S*�ހ^o���\u0018�0s�1,6Gp7��bE\b\u0010�t�o����\u001c\u001c��\u001d�􉙩�!�b����=U�I�\u001b\u000b�}�N\u0007�8�}1~��\u0013���\u0007J,�\u0019c�Ԇ�Ag,\u000f{45ɺ8�\u0001\u001dh�ё�u\u0015\"UM��\u001b�T���Oy�?�փ}ûw��=���0=\u0002]�~\u0013�I'\\��\u0012�>x\u000e\u0015��>�'�6Gm�ho\u001a茒��\r\u000f\u000e\u0019G�\u00126\u001a��RA�>\u0017��A2�\fЀ�2z�J�\fZ�$�����Z\u0007{��\u0003ׂ��2�/\rs2)��!\u0004<\u000b�\u0003Ad}�U�\"\u001f\u000f�i\u0014V��)�Ӕ;SQ\u001av�%t��ٚ$7ZƙAbB�i\u0015�?�>&�\u0005J*�\u0011K$����+2�A=|�m�x�\u0015[ar���\u0002�$!ъ�]�\u0005�Xۣ��k�!\u0003:�aN�V�6�M��'J��9�ڍ�R�G\u001a�:�!\rd�B��9��sP��MZs\u001c�\u0001ㅂ\u0017N�*0�*:e���!��k~e\u001a\u0012!\u0013]m��\f�9\u0016\u001aN��\u000fF:�P1�����9��Z�ҸRb#���D\u0017�yV\u0004�I\u0018ݡ.�BJ�J�l�<�B_�禍\fA�7���F�$�\u001c\u0012%?S��/??ڿ�A+�\f��X\u00196�\u001a���+(�\b�\u001fV��\u000f�U�\beE�K}\bā�H\u0004�q��+����28jL?\u000e\"\u0005�\"4�у��!�h\u001726��⇎\u0016��;�����W\u0006c�P�r溰��ō�Ʌ\u0017\u0012\u001d(\u0018��4\u00132&+\u0012�X�G��\u001d���a\u0002c�S�d��\u0001�y�?]�G^���sþ��>�__�������A���R��f\u0016:�\f��\u001bϾ��m�^�(g?x�~��b���c�*��˖}]�#ll��\u0019\b�oD���pxf��5�t�(�s�\u0002kQ��\u0004\b=\u0012U \u001amC h��Bb��W���Q�ɾ�{\u0018�3�'PM� �\r���J�V�u\u0016yז\u0007�;���A8�\f���M���X#\u001a��V�\u0017��N�\u001e3�,r�b�D�-\u001f��=��KO��F�3�m=\f]\u0010Hh`\u001b\u001b޻=��\u0019~\u001e���G/\u0011��\u00136L�T�b�\u0000�:8\u001fv��\u0006(:��pQ\u0013^y�\u0011W-!Y�<��wF\u001f!\u0016���\t��\r������б>u�T�`�E/fW�\u0012A�\u000by�_��R\u001b+\u0000C\u0011M*�c���\\�Ki׽�0����7�ɗx�?���X7e\t\u000eH���Y�`�F��t����D�OB\u00184�t�L������\n\u0014�(\u0003�>�ݍ�y��w��C�^�r�\u0005����\u0017��\u0002�y\u0002�\u001d���A�\u0016?�\u0014�Ѡ\u000e���3����o�s�-���Rܳi�@ҥh��ap蚣A9�\r\f��L�׺Ҡ�P�@W��G\u0002�?��f\u001d\f8���I�D��\u001bC�\u0013ߊ\u0004���<Ʀ��\u000f\\\u0006\u0017�9l���`~�\u0002�%a��|\u001d���w���9l\u000f�\u0015\u000eo\r��M&�^\u001fx\u0006i�\u000b�\u0018D1��\f\u0015!*�F\r��b��k�bۮG�\u0010C�e\u0015N\u0012\tOzT��\u001e�J�\u001c�;\rm9%�0Ωc\b�\"}\u001f�ڀ��%�2F7�G^\u001beD\u001f�\u001d\r�X>K���g���03���\u0002�T9պ�ܼ�\u0002[\b����H�m�$@bJ)�q\u001a\u0001�D\u001e\u000f��яc*ʵJ�z\u0001Q�?7�������A0�\r ��L��l�m\u001a� \n\u0014�=��ӵ\u0013qhHר8n�G딌��R��1E?\u0014��5[�y�\f.��Q�bKe��\u0019��(ޝ���4�R8\u0005��}���!�\u000b#@�9o�Y��`��H�\u0002dz�0����D�1\u0004ʴ�C������W�7��H6\u0006\u0015\r���Y���B�<��+#\u001dl�c�\n�2\u001a�w\\��8��Cj\naq\f$3N\u001a\u0012!5��A���^b7k�W�+��\u0003Ad\u0006%\u001dQ�\u0013mm��݃\f\u000f\u0017��\u0019�*O+��\u0010L}0�UY|[\u0007H0�YY\u0006������\u0010�`ģ��TZ\u0018�|��j�F�h3����֮z\"�ĔC�\u0017��J0o�\u0010�'i\u001a�W�i��\u0015\b9��i�p��\u0004(>{���c<�\"j\u0013�\u0000(����\u0018/V\u0010����s=�<\u0019�\u0005�aU4p�{\u0014S�O��rR��/I�Ō1cT�A<�\r\\��L��ye�wt�$iFWWZZU�\\�F��c�@��\u001f�c�0̣�8����\u001f�޴@'}T n��\\�ˁ\u0007��OYZz�l�\u001b�⁷m\no�\u0005'g(k ��H�6\n\"47R��\u001eܵ��6����`�k.�\u0013�`޸\u0005��h���W����p���j؛;%��>�\u0018�\u001c}����G���^n�w>�\u000f>�g\u0003�Y!���H���0�A�`�\u0016\u0006�\u0000����,���DJ^&\u001e�tS��o���j$G�t\u0010!h�\u001b=J\u001b�D�\u0003��dp�t\"?ig�sb\b��*Cp�l3y�+&9\f��\u0000%���\u0018tNvZ6hE����3�`��:v�e�\u001c\nr��\u001f�}\u0019��#A�W\u0018h�1\u001f�R7�Aց\rp��|��-�{d`k3SְU��&��\\\rUnA\u0007\u0017��Xj���`͗h�����j�>��iZ���(��X�K��V�\u001eťֶ\u0004sj~�\u001bNb\u001a\u0017��\u0010�K�\u0007���ڋ\n\u0016c�{ ���#i�dL,��\u0010�\u001cٓ�ꍿ�\u00154\u0014AsS��\u0007\u001b@��6n�\u001c#+��x\u0000T�^\u0007\"R\\13\u0007�\f[.t4u�xݔc{�q%Sq�RO������$�\u00147o�nȡ����rL���퍌K'���@������u?�p�|ٖ\u0010�6\u001bq\u001f^/��SQ)0\u0018d�\u001az�.�l̶s�0�X\u0007�����\u0004��Q\u000f��,�fw��y��\\Bǣ@\t��\u001a'\u000eA�s/]��&\u0016���c,ި\u0011%^v�csd\u001dB���+\u0001�C�9�ð\u001e�\u0013�m�@�,����\"�4\u0003u\u0007��A)�\r����b�LWH\u0001\u000b߂'DL�Ϗ�@�ň��>�\u0007kI\nB��r)l�\u001f�[��\"8��i#\u0005��R�\u001d��_R?�W�#\u001eߋ\u00178#�����u�\u0018��W\u0000;r+�hf�Aβ<�\b���\u000bW`m�g\u0003�`{Ry���w�P�\u001c��y�͸��l�������\u0010&>�\u001f8k��\u0012˪����\u0018�=�n�+\u0017��[\b�cc\f\r��Cpͥ���Ky�\u001a�ʈ��À@S\u0002zC\u0002�\u0006c��cv\u001f%�5Dpڣ0�\"�(\u001b��`�\u001c�CW�\u001c\u0007Fe��$�r���\u00060ߵ�~\r=�u���7�$d5rV#t\u0005�H���\f\\^\u0011�X�[`�\u0019'���V��\u0006�Z������M��A �\rԀ�X�3���n�8\n�݁re{\u0005�T����8�*]��\\���;�����r�u\u0019�!\u0006M�\rD��\u001e��_�\u000b�]�Ԁ\u0017��\u0007\u0012\u0004Mƌ�\u0000J���\u001c���&\u001f�D��M��%S�m��O`�\u0015��:D^�;o�F�\u001a��.�Ǣ˔\u000f�U@���7(\u0005C�\u00115g/�4�t�\b\u0006\u0017�\u000ftF[ci2�8j�����\u001c��N���汰\u001a���N�W���\u001d��yM@�,����[�ZV!H�5P����P��y����C�`���p-=I\u0011���~yn����L?O�|��1d��SO*�j���y!�ϲ3Z�9�e*�\bF�\u0007\u000f�����A)�\r��L�\u0005\u000fA��7��~<��,/s\u0013M���%��k�ڇ����\u001a��L���\u0017!\n9oq�9!3\\S\tԪō��R\t��4����\u0014��X\u000b���1x�ƶ�p\bl(����`>V�/H<��G��Α�ci=\u001d�5���w��\u0013:\u000b����h��\u0003^R\u0007��Rº$���\u0016�� �C�\u00170\u00048t��4��K��\u0014\u0010\u0000j����Z�\b&\"�e=`��i�\u000f'L1?a\u0012O>>\u0000\u0012�\tW-rѤ�mPs,� �2����\u001d\f[F�dL�L\u0013ข<�s�����J���N.�й\f�́*){9�,�e�kCT\u001e\fXA�\u0010P�\u0012�\t+�������t�\u001d\u0014\u0011C\u0011�\u001e�\u0013�A)�\r����\u0012LF7�M���\t@�^e��*$�շ��4_�����/�\"��yQ#�D�v��Ip�3y�N�\u001fX!�b�1���#|4۟R(to�r!�U��f\r5a{\u0016\u0016ם�\u0007\u001f]\u0011,F�\u0001\u001c��o\r2\u0014��P ƎAE|��Ty뷻r�\u0014b\u0005.\f;�\u00101K�q\"-&\u001a�7\b\u0004K첍�F�y��Q\u0005���JԵ���D.\u000b�\"h:���d��V\u0018\u001a\u0001뭉\u0007�:&.�&L��e5^S�*���S N�\u000e+�Z�\u0018���Uփ�M�^>�k�Q�T�\u000b'�\u0019�7�l�u^���[0l\u0012x���Y�>�.�\u0016�*(���bGa!�g\u0004\t\u0001\u001f�8�o(P\u0012��+Kl��A/�\u000e\u0010���\u0015��>�+i�&\u00053)\u0005�嘤�3�GC\u000e��U�q�\u0017��R\u0006�H�nj�\u0006�|�Fk�\u0012&F(�\u001a�\u0001���X��ѫ�\u0000�t�\u0003~ܴvQ\bk\u001eM�1�v\"�tDh�k\u0016��\u0005\u0003���C\u0007����w��q�¾\u0019���\u001fK\f��@S�~D��v���\u000b\u0003���7\u000f�F�\"��p[�.�%@��ufZ���h\u0012]��\u0002Zq�]M�G\u00044��\u001cR���X)\u000bzz\u001d�\u0003��ҽ��!qC*�^v�A��#�\\�\u001f���څh�u�bG�^o�=��\u0000ײ\u0000,[۔ �U݄pD,\u0005�`sb��4���&�^ęH䤭\u0016G['\u0006\u001c�t��ODokבqpĊB��\r3\u0017'�܉�AF�\u000e$���\"9�(��5�\u0002$�b��\u0005\u0019��Bl����g�W7�\\\u001aT�<�x\u0005���T�>�ժ�D��%g��>\"�SnЭZ��0�>�_9\b-��й{1{\u0001��Ҡ?\r\u0003�ZZ����+�\b��ƪ�3\tR��\u001afu+�\u0015�80����`\u0007\u000fY��J\u0006��G\u0005�*h�{�̖�zP?��h��\\�qa�\u000eT7�ǎ�5\u0006��Q�\u0015��I\u0014����(�z�D�4�D�CGꀲ\u0015\u0005��^g��pm[m�#� v�:i��K�\u0018i�X���v��~�'�+RǞ�)\u0007�-v\u0014K�a:(���:�\u0005ک��y����\u0003\u0014˗<�\u0010�߹+G$��h�\\�*���p|��c\u0013\u0006���ӝ�\u0007\u001a�\u000e�ٜ����\u0019dH\u000eP6��A;�\u000e8���\u0015��%C��\u0013f�|]����X&2v��'\u000f��pق�q.>�ҋ~���\u0010���\n�v�K;�\u0001�%}-\"Y;W�\u0001i\u000f'\"�b\u0006�\u0012��@���m�������\u0015њ�@�E�o�N���‚�jT��+����d���\u0004\u0000�N�*Ӗ���\r�Tc:K\u0014\u0016����Q֠��;�Qּ2��\u000e\u0003p�~��o��}P:�kz�`Q:�wMJ\u0003�|�:\u0013]�j�X\t<\u001b\"��E���5\u0018��oED��p�DS�n\u0007�\u000f�~\u0012\u001a`�t\u001cI$���T8�Р\u0012�K�%���\u001f#0�Ջ\u0001y\bq\u0019u=q�r�h*SWFT~�C4?L��sy�O�\u0003)��K�_�$w7�$��\u000fE>�7�?\tg���A<�\u000eL��MZM}%�\\�\\�[�hL��X��xT==\u0015��H����m������\u0011g��\"i�b�}��w��\u000f\u001f��\"���2\b���|���\b\u0018�\u0010�{(Z��\u0002��+�ւ�h@�>JW;��G�m\u0014\\\u0001)�۶���\b���GWݚ~;k�~so\u0014\u0003���\u001bj��3��Z��B=�1\u0010�Y��'��mq>\u0015���wt�ɊmmX��ҵ�+���%�{6R�n��g�s\u001d�\"ϚXbK\u001d�F\u0013%:t�\u0006�%�|�\u0019\u0015�\b\u0017i\u0015\u0001�Ҩ�M�\u001c��\u0019(3��b#tt�6���s�3\u0005\u0015�\u0019\u0000�ϪH����������Q!���!)��m<�/�.`�mn�@�7\u000b��[\u0006X/Z �A\u0006k�L�^4z\u0019|3\u000e��AD�\u000e`��1\n:h�r��h\u0018\"\u001d��N���!�\b���\u001f\u0003}�G�\u0000�xr·�m����S\u0017��8�\u0019`\u0012{�\\\u0006�Ab�k\u001aW\u000b\u0004���\u00131\u0016y��H9\u0006)\u001a��@\u001bd�o��v��*$�\b����\u001f�R����޳��\u0016�C���@{3\u0001杽J\u001eS�\u0001_+=\u0010\u0018A4C>\u001c���?�%\\d��}�,���\u0002r�Nm����j�\n\u0005�鹆kn0oP�(�8b�9H\u0004�\\y�\u0002#��)�\u0005�7t���C�Yɩ7֍cOWl\u0018\u000f�SH\u0012��'\r�\b�\u0001ҭ \\��9��eB\u00028��z�-\u00104���\u0018��O\u0003�4��\u001b~�*_n\u0013\\@ʩ�����\u0006\u001d#�\u001ad��\u0015�Ix{���\u0012�s�\u000e�\u0003%�?�4��*�����AG�\u000et���\u001d���{Y\u000e�R�K��<\u0013\u0003�Y��[S\u000e2\u001d�Q���T}������ _��\u000eq�7꿴�� \u0002\u0004Ÿ��!;p��.=W0��\u0014�Hb�/m��g�\u0013\r��~�(�3(�ȗ\u0017�N\u0005��s䶢Ӟ��%����T�p�}��Tk��i�spb�O�\u0001lp\tʟXp�H\u001ct�E�n�;*��\u00154�N�\u0005\u00079Ϲ���-؊���#�Js:.[�E���?\u0012[�lސ�g�}-���ǻ���1.\u001f-M���*�\u0001z[9ob�\u0014\u0018!\u0002�\u0012Q:I�AŁ\u000e���}aw��4��1�3�\f\u001es�y�(�����K7�D�geVz\u0005��6�\u001e��\t�n���\f�\u0000V5�8E�\u000b9=X�7�E��\u0016Yx�4�1}%�7qL��\u001es\r1\u0015�o��%u�r5ݨUZ&Q\u0002�4z��~\u000f��Q���C��\u0001d�p�`\u001ai\u0017����\"�5_<�\fm\u0013$��\bA�T��*\u001d��k�[\u00166P\u001a�a��^AJ\\\u0010���K6R �����\u0012뱋\u001fkA���\u0001�ÁW��\u001f����$�X���FKQ��gy�:�o#EL\u0000�MX�\u001a\u0003U\u001c�ʖ�y��&�֩���\u0004��\u0002\u0017y\u0014�x�J��\\\u0007P-�S��:�1��-|S�G]�m�\u0006�\t��%�uPT��T\u0000>�\u0016� \u001e��P�U\u0003�sv\u0015W������r��\u0016�7?AuF?�3U;�X\u0000^\u0016�[R�Q<�`�\u0006��I�@��B\u0018���j�� \u0017�t\u0005�\u0018@�f�\u0013{b�8\u001c0�p\u0012д񀬗5���\u001bn��,�u\u001e:�\t���]��ڬ*�*��;���F����\u0004R�UP*>�=�r\u0013[�\u0012�\u0012@��x邙\u0006�W!���\u0002\"�\u0002�:X���\u0016\u0011o\u0005���M}̵S_�3F�Q��*�H�J(�Y^�ʲ�\"�\u0001*�F��\u0015�O��Q�U��AH�\u000e؀�۷\"�y@�&)\u0017�m�6�aڟ]�*�YW�Ƣ�\u0000���\u0004fe\u001c�z.�n����\u0007lV��{䮸�\u0002���\u0007��W2\u0013�L��\u0016H�\u0006��U\u0019\"���\u0004�r����I��\u0015\u0011u�\njpV\"\u000e�K���0�w�I�\u0017!X�>J�L\u0011�*}0�x\t,\u0005�4q���!�\rW����@=�\u001f\u0012�Th�렉��ʀF5.*��\b2DQ�\u0010q2)��2\u0007Dk�TJ�Ph\u0017��M�4�\u0010�0�M�|�:���\u000f$G\nt���\u0012�\u0006A~��K���\u0019\u0016��\u0013\u0003�\u0004�V�����\u000es�!���Y����ϒ�\u0004��@�\u001f!���\u0005�W὇\u0016�0���)!\u000bo\u0013�SH\u0000�2\u0010���\\Ӛq�׎�ܼ��U+�*\u0013�\r�\n@hG\u001a!�A;�\u000e��JJf��@�]Rb3\u0012��:\r�P�vo���l7���BsA�¥e�z�t�lQ\u0007����W�|�h�rϞ����d{�\u0019a$c�/I]��dP��1_��P�\u001b�ڰ�}�0��q��+�����\u001a�\u0017��ܠ���3�қ7���b��˕$\u001c\",k��a��U �F���Y�٧����\u0017����q4����r��o\u0000T��@��eRI�S\\I�0��W\u000e���j\f]�\t�{Qp�Z�#�I\u0014A���\u001a����lcy�2{�n�좛\u001dW����ՠp�\r�R]�]ɚ��]��n�\u000f]>�\u0000�;b}���p:�����6���\n�\u0000�j�izT���\u0012G��f�⳰YW���y�A5�\u000f\u0000��MXN���f~�ϷnׅB@�ژF��(�v�qr\\�A�rÓ�O\u0014�/�[h�c�+���ۥ�gs�Y\u0001E>XR���[;�\u0004s���\f������,Wc�$@�P\u0013C�~�.���RC3�nF��TF[R8�h��2����^\r�i+��T�E�\u001d����\u0016�=�+�\u0004��\u0010\u0002*aꤻM}܆;\r9kа�;�\u00126=\u001b�>���:6��'P�;�2GG��T�����\u0019{\r\u000e��ڼy�>l!�~�ݛ�\u0019\u0002\u0014���V���&�{\u0001��\u0012���v��\u0001��e�*�~\nl4F_W��}\u0000�h܏���\"��B��ͽeds=�}�\u0012�V\t%\u00182iZ��\u000b2\u0015\u0011�\t�A?�\u000f\u0014����\"\u001b$����S��\u0002�,յ�\u001a��\u0014�k'�[W�\u001b�觗s+\u000e�C�\f�+gL�\u00016�u��@Ci,�1�*:|�\b�ă�L��>q�\u0016��”�\u0002�u'����ՁN(\b�.���ʶuw_0ջ����(��4�̐\u0001#��\u0000;�i�e\u0016P��l�nu(�\u0015xN\u001b�\u000eR|��a��\u0000�ۡ�G�,�2�\u0010J\u0005�\fkʸ��<�fQ>\bY\bj\u0014U`c��:���ï��f=���\b\u000b�\u0010\u0013\u0012�������s��qީ��\u001d\u001d��,-���p ���\u000e�˵\u0010=�D\u0010��l��e�Q�����QC�9\u001f(\u001d*��\b�\n?�o���amA�\u001f@x\u001e���ޣ��\u001eȬ�����P�AH�\u000f(��W�\"�\u0007p�\u001eX�!�\u001b�<ԀPi����K0\u000e�f�!�SZD�\u000ee^s\u001ać;���@c���Wx�N���E8����f~��F>�\u0011b\u001a���c>�K�^d\u00075�J\u0003r���\u0019R��\u0006��J)���΍\b��F)\u000b��o�x���ܽ�.\u0015z���P�\u0007��@\u0016G�k��$�S�T(����k���D���X�?��\r\u0011�>]'�f��\u0006$����\u000b����[W�;&�(�2��i�\u001a#{h\u0010�E\"���\u0003���Ab4QC��s֋�.$B\u0006!��b��$7$�\u001e\u001d��{MF�7\u0002p\u0001�\u000b[�\u001e����\u0012��~\u0002�UKh!V\n��zQ���v�\u001cR���:\u0002P���i�6荺\u0002t�pW̃�ef�5��J�ʍ���AC�\u000f<��L�d�����b����N(�\u0001h�?������@�I�a�{��Pd �$��S_iW��<�\bɢڕ\">\nL��֩�]S�YC��+4R��_~k1����ԕ�i��\u001c�/\u0001�l!h�\u0012s��D\\��D���Q[�1\\p\u000bԲ�@��\u0014\u0014�sH]>��[�گ媭Ols�U~�QS�\u001b\u001b\f�\u001a���\u0002�Q�)\"�\n�<\u0002Wʬ\u0003K\u0016iH����9+�%q/&4X�N�Fi�\u001eޜ\u0000�(\u001e\u0002���)\t\u001c��\u000eS��_]��*\\ʱ��2�S�{��\u0001H�\u0018�{!O�:+\u0007���nvOk_6�e.IM�p\u0007��M��y|�A����\u0000�܄�N�.Z���25�AI�\u000fP����Wd\u0014`G�R��\u0005Hܴ���\u0010`h\u000f���m�5\u0004J��\u000fQa\u0014 P!�#\u0011u͕\u0004�\u0014}�\u0004ɳ��7/\u0005B�`i\u0006I��Kg\u0011\n:�\u000f������4V\u000f�j��gV�x$'���\u001ez͘,:�\u001fo{2�I����s���������T�\n�rj\u001b\u0002uVİ��e��D\u0016��]&�T��ݩ\u0002�\t��~��,�M\u0014,��q��\u0007\u0000�R\u0015�!4���i�2�_z\u0018���y\u000e\u001b\u001aJ�a�\n\b\u0019�\u000bz�շf�W���\u0016��\u0014��\u0005�H$\u0013\u0000!��q\u0006�\u0014�\u0004m�o��F�T�\u0013\u001c���t�����\u0006�zOb\u0010;J:\u0011.\u0002�p���\u0017�!�%܉�\u001a[����W��nJ\u001cTtO\u0012<�?��\u001al\u001ep�8ط�\u0010F4\b;Ğ�t;�Aʁ\u000fd��|���ђ�=\u000f����\nF핶^\u0011�Sѵ\u0011��.&^ɢ��<�\u000eR��J�\u0013�j;�|��ZcI^O�\u001d�\u001e�A��\u001b�\f[�c����w�4D\u000e+{\u0019�����\u0012TXk��0��{LZY\u0007X��k��\b�8H�\u0012�/=��Jzһ�QU�>\u0001A\u001f��g��\u000f;�i��]��\u0018qd��\u0007�L�{��aIn���� �ɤ\u0013S�jW6md\u0015���R����)�\u0012K��k�P�&׫+��\u0000B!\n\u0010�\u000b�`t��v�\u0015�W�c�RN��;vž\u0002ty�\"��=w�7�IMv;cN�8�qj����\u0010C���m��ʈS�V#]Ӥ���� o���\u0004�ہ�\u001e\u00003M(�\u001d�ys�!\u0002c\u0007\u0002��YI�>\u00163�h)f�Nk9���\u001d(����\u001b�\u000f�t*(Cj\u001d\"J\u0001�B��\n��\u000fS��\"�@W\u0001{�#\u0017\u0012\u001f��A��\u000fx��{\u0017�A�\u0001\u0012\r����P=5�\u0004w��s�����[#�\u0006;�W�\u001d�����\u0012���揓>�\u0004��֩?U?���\n`n��L��\u0016M��AD�#` �fW[�4ϯ\u000f���:l�ȶ�M�sE;8YU�\"\u001b���)i�n�������(W��{�Hg\u0005W���iv��\u0000�|!�'\u0010��;��\u001d\u0007A Ȗb2\rH��\u0016�Z`��m�TC\u001c�\u0002|C\u0014.�Z\u0010H\u000f�D�'��\"6h�\t�]Ǜ.]�D\u0014�%�\u0011\u000f�\n��T\u0018<��Oq�i�\u0018\u0004�ﯚ�A���ë\u0012\u0013�\u0018H��oD�\u0015���Ġʳ\u0015+�lL��.Is%_�#��}\bq�?�l`\u0003y���eq��ȓ\n&��=u;�KV�\u0013U�8��(���\u000e�\u0012<�y��r�\u001a>\u0004�\u001fH{�ڽp�P]L5\u0000X�\u0015HA�\u0017�r��6#�c�4\u000f���\r\\\b���\u0003P@�D�Nd�$Ԑ?!\u0019�\b2�\u0018��A%�\u000f���X��\nc}�Y!2o��\u0015B���w��+���X�|OP\t���\u0016p��|���N*�Ћ�u�C��2�#y����\u001aQ)wh)��v��.��\u0019����(H�37�c4�����j�\u0002�\u0011nw.��P��T���7�zxs!�u��ѝ\u0019����p�p�u/S!0'������#�`���A%�\u000f���XЗ���,+�[Lr(�:��\u001e>�$ec3l�\u000f�\u0017z�h\\���\u0015`i[�Lj\u000eC%��\u001aH_E�h��u�匩I߃��dl���ܑ\f�\b\n\n6�WkB����С\u0005Ad,�n���\r=.�\u001b�^=c�\u0011Ę��A?�/�����f�\\��8N���済8�\u0018K�\u0002�Bgx�u�(�&��\u000e_]p>�\u000b,�/A��8l�n�n.ۧ[\\t�\u0011\u0001�\u001e�u�;���$2�2-�S��T\u001d�-�\u0011\u0015z�X�d�F�'��\u0014��\b>>�5��~��~} }J^K��ٓ\u000f\u001a��\"|�E�X�`\u001a\u0016�E�U)���\u0007���\u0012���B�2�)$��]��w\r�[�A\u001e�\u000f���X����\u0000\u0006oVi'��\u001f}E���\r��A�`1xK�\u000e\u0001a\bb'F\u0010\u0017�\r\u0016|W���5\u001b��u�,b!��{n����\u0004�\u000f{�j���9�B\u0017-:2\u001d�������\r����c��\u001a��k\u0010�'�p#�R��Я9��@��n@\u0010�J�1/�H���N6��g9�:�R��\u0012��?\nv��\t�\u000fE�-.�pG�����B\u000f\\�Xq�\u0002,\u0012\u0001\u001a�G\u0016�\u0002pA�\b!\u000f��\u0010.Bz����\u000b�P�����\u0018�q�F�\u001c��\u001byl`9���EpO�mW��\u001a�Ti~ַ~��+>�&\u0015�\"�b�Wvj\u0011\u00134�3�8����\b'�t�[\u0014�Q���A'�\u000fȀ�L�\\�-UYd!lUK[��\u0005��9D�Y�!c�Nn\u0018�?���h�7�!=\u001b\n�M/\u001bE\u0012\u0014�*1_�%T���\u0013������.O�T�OLǑ'�4�X�3՛O�ͧt��\u001d-\u0004Q!|/N�S���\u0017�I>J��i#�뭕$H5ݕ�\u0000��Yd��I\u0010���!����\u001f�,��q\u0007���\u0018r:��\u0007)\u000b6Z�s\u0016e�Ɓ)2Y�\u0014=��5\b��(�\u0018\u0015N�\u000ez��\u000e\u001a���s�?�\rH$&0o\u0002�Jd\u0013sl_�\u0004\u0015Ƕ����wQ�D�_1\u001a\u0010�Xx[6u\b7j*��)5F\u0011H�9l��`� ��d��3��\u001e�_\fK\u0014�����M\\�\u001c\".�Ac\u0004'+��}ħ\u0019{z;0�N\n�?Gb�L�\\�\t⚍�\\��I�о;�MTp&~���3\u0007��ͷT`&T�+���ċ=\u0006���Ԫ߽�����\u0017�5�\t����V����%��U\\�sr��v��|C�\\�Pj��\u001c:�\u0016~L�����oR%��>�+�ȵ�\u001d�ue.ޝ��&���޽q\t�J\u0010�y\u0018�i,Hq��%~�:>>��{���z�@'L�q��A4�\u0010\u0004�����@r�[�݋�:�� �\u0017(\u0005J�lO�F\t?+eR����ŠF�}�R�k�,D�]������K]-NW�\u0018Ֆ7��2H�d�k��_�]y\rAи�\u001d�z�&#��p���z�/h�\u0014,$D��Ɏ���SK0��\t\b�â1\u00074��d8C΄��|�\\�b�n\u0007�eB��D�ZV֤�s(��R��U\u0015c\u001cD�\u0001|�ȵ�U\u0004��Cܱ�\u0015,%T5\tp��R�,��\u0001�M���˖\\'��\u0013�K���\u000e�����%N�6\rK�v_�΀�yݲ\u000e\u0005ٞ856���oZ{���mW]��H���pIFf�g�\u0000���I=J0�ڻ��u�Z8�UW�u\\!����\t�\u0015���)i��C�[Vq��т}�(\u001e�Q�L3\u0011d�@v�$�+�M��Nk���G]4�@��5\u0011F�g\"o���ӱ\rƎzg\u000e \u0018B�|B4��\\��\u001e(�����G\u0012���Uvpȑ��A;�\u0010,��Mz�G�\r@c�|�W�uM\u0004\u000f����̲[\u0015�\u0007\u000f�X\u00138�\u0011\u0019>\t���@}\"���\u0007�4���Bo~�$;�vۑJ\u001d.!c1�q\r��^�\u001di9P+���Za3\u000f&۝Œ�?���\n`�\u0017�\tKxI��h�*eS���e�U��)���֪�\u001b\u0000�����ǣm�)N��iU��gV��%{St@�y+u\u0001����;� H�\u0019nS�U\\�l�Q��W��<��\u001ag�j��\u0019��?�[���v\t�\u0016m�x6ʶ��.Z\u0000��wڵ�뭠9Ǖ�)��c�ڋ�\u000e)���GҊǘJD�-�xڗ��|��\u001a\u0015�'(i��G\u0011��9tH�\rܵAf�t�������V\u0011|P2Y\u001c�]\u001d�b59�)�\u0007\u000b\u0007CJ�ް��\u0016�$���/�F�!p���\u000b�\u001b���=6\u0002�S��e�\u0003\u001f֢�OB#m�\u001f*[אN\u0013���A5�\u0010T���\u0017��[�9��؁�f]hT�E.����#[���,���\u000b咥�XA���\f\f6��$�W�L-cQ�dy\r���h88W\u0012}���᥸53dܳI`�Ի��46�\f&n����_\u001a?\"[*zsb\u0002�9t?\"���^�/J[e�\t’�_��wm\u0000��S��~Q$\u0013���\u001b\u0003��l����-�\"&���5�|\u0001,���S�9��\u0014�'����8�y\u0007U��\u0010�E\u001c��\u0018[A�k��)\n��?\u001cK`M#ƽ\u0007�?��w\u0015�^EW,-�Bh[���xʵ�t��P�˕���٘�\u001e\u0005�F\u0004-�%���2ń\u001d�B\u0013��cy�\u001b1kq��Ґ*\u0003B,������;Q',�B\ry����A/�\u0010h����\u0005~�m�N�X�\u0007_0�\u0018~�3!O)�K�Kr�\u0005;&��|;�\u0000���\u0005>\u001c\u0006���&c�\b�\u0012����QC�!�Fy,-e�0��\u001eK�a̠��T�r�V7f��\f�,��\u0007͵�Z>\b�ј���_\u00191m�?�&\u0011���0>\\��5αX�F=��\u001c;\u001e��\u0006!�P�\u001d\u0012���j�@\u0014��\u0013eV�J\u001eim\n�r|��Q����qS�\u000b�B��`5Yh���%8���}D�\u000b>U+E\u0015\u0001�[�&��5O�Ο[\nd�\u0012�\u0006���\u0003�Ԑ\u001f3�[}��x��\u0000�\u0000L��a��Z�Tj�ح�\n\u000eacr\u0005���R��/��r�9�K1� %������\u0010��\u000f�\u000b���A��\u0010|��}d�\u0003�W=��\b�$�2.����c!�e�fN�������-z�\u0017�%����czg����\u001b\u0006�_��o��t���\t��˶�\u001cd�q\u001a�\t�M7/6���U%�/'%\u0003�\u000e\fbt)��b�o�\u0003���g6Z���qr��B�+Z,\u001a�j��8Fg��q+�7-�\"3����\u0012Ԩ�~��6��Nb�=�62��A��[=r\u001d��\u001c�\u00030w3 �n񎝏���6��d�_�_���@qtM�h����)�\u00076��t��\u001c�XC9\u0004��v��٢=���S\u0012C\u0002�{7SB\u0006\u001d���N0i-[�v:Pm�ǰ���b��6��_�GT�'��\u000b��\u0010����\u001cFq܄�\u0004�H�����\u000fEmF�y�J�o>���$\u001f�3j7�eM��o�G��)\u001c���$�\u00161�}\u0013\u001eJ$\u0003z�>��GԮߙ�\u0000�o��f1�_�\u001b�<��`^�3r�s�F���e���������\u001d��W[J�G�A\u0015�\u0010���5eG+�\u000f���rh�3;���OÕ\u001c\u0010��(�\\�X�\u0002o\u0011N>vAmP\f��\f�S�_��I�'W����솹�Α�H�\r��m(U+k��]x�R��֊���\"HmPg��p�X0��1�����qV�~�\u0003c�=*Y�`\t�Ex1\u0019�$�!}U���\u0001��K��yIK\u0018K}�*�\u001f\u0015y\u0015\u0002�Y��\u001f��T-���~\b�T<��+�0>cr�`™E\u0013ki���B8�\u000b��B�)2�\u0010�S-|� \u0007\u000f|��t�™�\u000e�&G:�\u000ewg���~*K������;�x��i��Tw�\b<\u001c.��w*JOׇ�TrǣA0�\u0010���۹�^\u0014AC^�0cy}0zۓ��\u001f�2S��\u0011�ӎ�^�\u0017:I?�D5W5�6\u001eG�=���3\u0007e\u001d=&��0%�gS�'\u0007^\u0014Z8\f�\u0013����;�\u0018�+���,���o1� X݋�g�\u001335h�w7�W���\r\u0019\u001a��\u001d�z\u001an\u001f\u001d�\u0015P\u001di�V~-�\u0011��`��[�\u0004j��\u0003X݂\u0016�r\u000b\u0007P)��7\u00074m\u0003#���\u0003u�\u001d)G�c3�%\u0011\\^P�\\/���NNu�v�\"j\u0013�7d\u000e�}ˢʬD\u000e��O������36\n�j�q���\u0001\u0000��T�`��*���\u00049Qj��2<�aV��y\u0016y�\u000e �\u001d�&e-<��4xT˛y��Ç۸���1\u000bUϰ\u0002\u001a�ܙ�)\u0012#\u001b��edoױ\u0003j�\u000b���\u0001��R\u0003���Jԝ�\u000f�pj9r\u0010\tI���t����G�.[J\u0018�EsMh*~��\u0011�q��2���#VLeL'\u001a����\u00055�m� \u001dI�o\u0002���㬡\u0018\u0013��^�{�H0�N��̮+HV�;�S�tN�2B�/�~�\u0005�\u001b۩�4�Q\nWދO�$�\u001eY[/H?G��v�A;�\u0010̀�۷`�K\u0016&�\t�I�m�m\u001fu\u0017�v�е\u001e�\u00143�Xj垚l#���+��t�>��g&�E�W�E��\u0019�.��Ф�42��J+���\u000b�fq�H=\u0007�\u0004\u0001{,���ǻ�\u0010�u�.\u0007`.���U\u0016��\u0015���\u0017�\"\u000b{f4X\u0007d֠='�\u0017&+�e]�ºѠ���<\u001f���@%x���\u0010c�\u0001S5~;\u0014�GpE\u0017\u0000�\u0013\u001d��Z� ro���jT\u0015D���~�����ה\u0000A�T���\t�:�\t�q�J0�ɥ��]��.X2�N\u000f�a!�;��ڹ܁ip��?\u0014�z�V�RM\u0010>#6�8rl��Z6�I,ޚX\tX�ɜ25�2/�\\S�y}\u0001*\u0014\u001dѣ�\t�_�����-1^��ց#o�AE�\u0010���L�ן��EG�����R3�\u0000Ɔ�O��F�o��B���u�cY��o�i�\"j5yG�\u0012H���_��\u0016��G�\u0005��|�R8E�P�\n:�D\"�+�ԯί�)pO\u0002�2Id�Z21\u001c��Ot�k�rPA����HK��y'�x\u0018����6azp��\f���\u0013�\u000b0�{������\u0001\u001d���D��Kg��jԻ���\b�ج0���i.�g�\"�X�\u001c�_r�\u0000��ӟ\u0000#�\u0017d��j\u0014��<%ɇ���n\u000b�k&3�/�/�%ڲ�%�޻k�\u0013�lWq\u00187�mԴsMG��\\��l�\u001c��u�� v�7~Dq��ƾ�\u0017N������ĵP��h��h\u0004gD$_����bKm[��f�1�\n,�\u0001\u000b�A9�\u0010��L�\n��[���T`\u001dW\b�ō@;�J�� SDxn�\u0019�#�q��\u0010�*�\u001e�@G�a�e`߳zr�\u0011\u0011������A�!S��?݋�*\bå�\u0011\u0010�\u0014y�\u0012_m�w۴!��S\u0011���0o�1\u0007�2��,q�\u0013�ӓ'\u0018�#E\u000f\f�\u001a\u0007���\u0010y�0*D2Y��_�L�\u0000Y�|��*%��Pѡ�7�AJv�Q���1i�l�i��\u000f�-�\u000f\u0007'\u0017\u0015\u001f\u000e��':��,\u0017YEU�����Edޫ�Z�?�:ϽT1�|Qr��❦��;�x=��p\r�+\u0018n�3�\\�����|p��?�6c<\u0016���N��V�D\u0017w�\u0017\u0011�\u000bY�%\f�_}�\u0003�\u0019�S,~R\u001f]n�-��i s��\t�A6�\u0011\b���lP����DL\u001b�s�{\u0017=���36ڹt���\u001a?F���\r�6nr��c������7��\u0007J2�`~^Y�\n}�P\r��\u001e\u000b\"�D�;��\u000e�\u0001`v\u0014c)F�\b��F��m)Mڇh\u001a��h�[:!{\u0010\u000bg�ߊ\u0002�DfT\u0005�\u0000����\u001b���\u0015� �/KL!F���b���.;�<+���\u0001\u0015 �\u0014�-�n\t�8\u000b\u0007Y|��8\\\u001d���u� \u00007���Z����\u0013B�B2m���2\bx���'\u001f�\u0003�.ly�5�B\u0000��\u0013\u000f�{�\u0014\"+u5����J��>^(�:��^��n/f�qY�s$\u0018\u001eC�³�&\f\u001c�Zm�\"dHY���%��\u0002�PQ��u\u001f�%����\u001a�t��٤�AB�\u0011\u001c���k�\u0014\u001c�\u000b!\u0014�\u0013�kv����ɼ2�So:�&�C}�\u0001\u0017�SU�!�Q�z��z��=5�OK�\u0010\u0019�x�h���\r\u0001LNԉB\u0014?O˦>CNo\u0017;�Oa1n��ȭ��egVH�=�2]�b�\u0001\n_��.�]�a��l\u000fͦ��0\u0002���]��M�?�_�\\��S�\u0002�f)g�\u0017�\u0013�S��� �^H��\u0013�\u001a��\b���\u0006(�c�\u001a�^H�I\u0001ڥ�ե��d�V�~=�g�'D\u0014\u0007$�\u001c>�/0�ɧ�g\rϐ��iN���9�\u0006\u0015��\u0002\u0010��Ñ\u0003�Y�9ߘ�iF�\b�\u001b� ���\u0010�\u0015��\u0004�9_V�\t�y��U����\u0016slذq<�r�F���\nk�\u0011\u0014s�^l\u0003�\\�p7s��R\u001d=W3�\u0016���AZ�\u00110���mu8%�Ԓ��5��M�\r\u0017O\u0001\n\u000b��f��r�w� \u0018\u0012��:�H���\u001e�\u000f��\u001d2\u00185�G\u0005{��6V�\u001e�*\u0001���\u0018�C\u0010��Su)/�=�g\u001cn5�:���M��h�xAԟ\f�\"��W�|��ţ�g�)\b��\u0000Se�r�u;\u001ccq>g\u0018\u000f\u0012{D\u0006\u0001m��\u0005����\t�ڂ��oœް!�D����Dz\u001e�\fA���SZ\u0015|�\n��]B�\u0002j<��AJ&�v�N`�%�%OSw���Ϝ��40p���\u001e��cy`�b���t��\u0006;�;����\u0007�p�\u001e� dI)��-\u0017\u0011\fU�\rc����\u0014�S���\u001a\\No}�0\"ʠpgO�\u0003�fO�.W�f\u0012�Rt���ȵ�e\u0005��i���7i�\reAo)\u001b��t\u00047�2*���7.#�AI�\u0011D���d�\u0000��/f�\u0014+JY\u0004UF��\u0003�kr��*�\b�F��\u0018�\u001ev���#\u001d\\�;x\f�@\u001e��5�\u000f�u!�4gэ�\u0000�\r�ь����#\tJ������\\V2�&<]�O���\u001d��/�g��7)��i�Œ�\u0011�����\u001aۦ~\u000ey��\u0017Q�@��w��҃���\u0002�����$\u000b;��į�\u001f4K\u0001#7e��+f�\u00111M�_\u0001�e>�z7�2T���0+�s�R���S�����\u001a���\u001f\u001f�$�No��\u0016�� ��U\f�G��Ld$˥yI��`G�d��3�^�vW?���3\u001d��\u0017�\u0017�\b\u001f\u00150�EN�1��L�\u0019���IÁ&\u000bҳ9��C(�c\u001e�CՊ��}�K&�I��w\u0015��J��\u001d\bkGv�Jr%�AE�\u0011X���\u0006�\u001a ���)wl\u001e��m��O��\u0000D�\u001f���n�\f�G\u001d҂��*$\n��1�a �o�3i�5؂��.�B���#B\t�P�\u001b\u001f�B�E��Ĭ�nG�X\nV���L�F�!�m�H\u001cF�\u0014�PQ@�k�7�'\u0019g��ɀ�`o\u0005\u001c�5b�\u0003\u000f�\u0019�+�<�L�ߘF\u00060e\f٨t8T\u0016c[�s�*Qi%�ܳ��X�\u001c�7k\u0017��!Ӿ<�\u001d�0�\u001d[�,$�CX�F)Gs\u001f����:��S�q��w\"\u0004\u0017�][�]\u001f6�㎯%b��\u0002X!y\u0015�H�A��\u000b��.��F��\\Li^\u0014���LI0����m\u0001U��\u0015�kH��E�V\u0014\u0011�����\r�p�\u001bP�\u000f�\u0013\u0001�ۧ�)�B0�\u0011l���@���W��\u0002\u0010��>�\u0006���ݚ��J��=%Hoz.U��C$\f�U\u0001\u0005\u00058�r+�\u000f�`vQ�n\u0013\u0002d<�(�T[�\u0016�b�D��?/T�`)�w�<⯮A\b%ϗY^�T�-8��1+s�/j�\b\u00067A�+n\u001d�%5D'�B5�F�d�j�R�x�o+�zSG�T�\u0014\u0011.�p�PCb�%�a\fY5�\u0019\u000f��b�]c���9��xU�_H�}\f�p\u0018�\u00144�\u000fc�\u0013�,6\"���gƙqD�����$��O��Cfɼ�� �����\u001d�#\fpC�z��\u0000o��ڴ\u0002���q�O\u0001�u��e�\u0012J�2��vK�\u0013]D&�r�\u001c�SfL�\u000f��q\u0007�L�E�!���@�P��\n^���dE�Re͌2�6W��)�c7��'`�Hm���EV\u000f5�\u001e>�a\u0002$�\u000f�ZR�A7\u0000hLc}Ƙj�9��E^��*?\u0011SHCLL��o�2�o\n��&�p�\u0006�2\u0002܏٨\u0007\u0000��T\u0012�J�rW��Q0\u0016���2�����\"P��\u0005_\u0016�@a�U�\fl�����*6\u001f��\u0010�7�I�x\u0012o��A�h2T�!8�-�p\fIW[O�\u0002GfL�DBq�I@��cjhT ����r4���\u0017���%��K&�\"[\u001e%�Z���zp���1H�%�Դ\u0011)\"i'5Q�\u0018ie�s�l�&�A+�\u0011���X�\\x\\v�\u000e��a)�\u0005�C�����j9\u0017��E��u��Z��Z��(r%2�ʮR��\u001e��u���3k\u0000��Eg�w�[��L�tlANG���\u0002]\u0012 R�+�DJ�?3$gœ���\b|�mBh�\u0007�\u0013�v����Q�\u0018l\u001f�Z��Ң�^��S�D��\tf\u0011��\\X�T���\u0000�P?se�\u0001�����5ĕ��=��,ԉ+\u0019\u001c�e\u0001�Y^K\u000e��ݹ?�Ա�ʼnh�� ���Opc���\u001c\b�U���\u0000a��^�4)-�LD):_M�p8F��\u0012^�ua8��X��\u0004J�y���!g\u0013p_N9�18F!ip�_\"�yEZ/�=��f�oi�\u0001[5*�6�AV�\u0011����l�\u0001ޔ`�:\b�ik���\u0012|�������e�\u0007��<��\r��\r'�7k�6e�b�6WyO��G-g��/k�\u0004\u0017��\u0011b���\u00001*(���\u0006��\u00008\u001c�.PнO���\u0017\u001b��-Kl��/���\u0015��5�C1����{\u0013�7\u000b1�\u0017�_£A!�\u0011����m�3��\u0019�D\u001c�6�/�\u001a�7�u����\f�RA\u0005V:����K^\\����\t�ij.2h�tM.�1y�m�\u0005|���ZRP��:�gQ9�� !�n�\u001f5o�\u0019�x\f�ÌY\u0013ѷ�T\u001f\u0004\u0004��&z/�u�\u0013|K�$,�+���6�C=/g�7��j\nE�1)�)-���\t\u0010��\u0007C�G���)\u0013�\u000e�\u00175�\u0004w�\u0016v�S�\u0011\u0015/��\u0018ܟ�\u0018j7\u0015aʎ{\u000b��}�\u000fo�Y\u0010D@\u0018ӊ�Wx��}V�Xa�~�\u0005\u000fZ�D����\\�d��Ԛ�-�\u0018����*��KAo�o�m\\s=\u0007w�\u001a\u0012�Z\u0007��;�I�O�ؓ6���[��H�A4�\u0011����\fln$$���ON�\tH!�\u0015\u0010��1v�Ö�\u0006\u0019~�אc|����\u000fE�>�\u0007��9�'^fٙ��&���4�U\\*���RNfB�\u0001r�9��*\u001a��J�$��*�QZ\u0014|�Tݸ��\u0001�\u0003��\u0006�oH\u0017��ρ+)h�\u0016i���.�u�`l9�D��R�ɍia\u000fr\u001c�r! ��?j�#��p�G�ee�|��\u0005��b�stϒN��8\t���Ca\"Lj\u0001\u0002�`M�\u0010'�\t\u001aI�.� !�V��O�+ۧ�ߌ�o��v �\u0003L?\ba1@����A)�\u0011��L�\t՛$�\u0005\u000f\u0004z�/\u0017���pO�\u000b?e���m_a�Q\u0000���{�+߀�4�ip�8��\u0015�-Yb��I]۲�����Y�G�M=#.R��2G��\u0017��>/�[��\"~\u001f�=�\t;T\u0011Gs�oc�4��,}�aD���\u000f\nE�4����2A8�N�6\bL���=�\u000e� ��9\u001b��N�:?���ֳ'�&\u001b��T̯�0�~6$�z���\u000fJ\b��4��Rg1��6ޓ���G�G��󕍰�;:+c\u0004�~H���;�Ꙏ\u0014Tcm�g�Xi0�}б@\u0001\u000b\tA�:�F\u000eB\u000b��/AB�\u0005��\u0017&��I��)�\u001a����\u0006!\u0001�\r\u0002s,4抶���A$�\u0011���L�Y������\\4\u001e\u001e͒�`�H�)cn\u0011/�$.�<��\t2�\t.���9��\u000b\rv\u0006/��h�:X\u000f�|��K\u0012�\u0010�%��A\u0000�%N�KC��O�kZ+\u0005\u0019i�\u0006����\u0000>�s\u000e\u001b�[\u0019A�'{���$}gϡ���s�aĊ6� �\u0018�L�^}\u0007�U��r�\u0019!�x�p��1��#���\u001d@��\u0003s���PŖ��'\u0013�l��C��J\nl'#�Mmw�)�*$';�LB�Bse^�L�W��6�Q��[$>1�Q�\u0010qc�\u0018���3.N����&)�\u0010\u0004y����g��>q1�\u0016ʹ�\u0007$ZS�^?\u0007\u0000�j��\u0013\u001c@\u0014\r|G�\u0016Y]\u0016����A%�\u0012\f���fJ�����\u000e��\u0011�7�S4��R\u0007�06\u001d�\rDzw��z\u0000�lc�D�mW\u000b�i�\u001b��h\u001b\u0011�itq��\\շc��fh!o\u001d��e�/\u001f(Su�G\rb�#?�0:��\u0014��L�L���H�'*�\u0000[\bx`��n��7c��\u001c\u0005xI�Fh����Y�r�\u001e��t��\u0007�g\u0018-�\u001b�6%�t:9��-Y⫟�\u001d\u0006\u001b\u0005�r���\n5�\u0004\u0019�Y|���\r3H��\u0011g\u0004��`\u001c#���\n\u000e���/�n�f��M��d\u0010\u0015���\u001c\u0005�~��`/�D˘\u0005�K�0��\t�<�ط\u0018\u0005\u000e\u0006��8x�bՖ�q���\u0000�H���UV��\u0010��\u0010\u0004\u001f�\n�%0�A2�\u0012 ��L�����m�p*�c�\u0010J\u0001�����L��B���u���Q\u0007���7�\u0007\b+\r���ŮNے\t\u0010�)\u0007��7�r%b�j\u000e>?e7�$�'|ڴg&�p�u—\u0003��QJ2\u0019>����\u000f�M���2�/����xhR3�.��cajN�|�Z�ݴ�=R��\f�bx;V�||D�g���[��%���mr?*\t7$�g5/|�\u0000��ͪ�5Y���ڦt���1;#�+���S\u0014Hc�������I2��yZ�W\u0011�\n��u�f�Gn��\ń2�Q��AF%��\u001e�|��w�'�\u0013\\UP�\u0000���V\nx��I�rd\b��AO�\u00124��L��;b\u0001�>啩?>e�\u0012�ʄ�\u001b��0�O�X\u0014Xu��|�T�ʖ�N�Z|�㘖�%d��ܦ]k�GO�o:�V��\u0001\u0019�DZ�Q�\"e'-�\"�u�ߏ���\r�� 3�_t.�N�\u0006_�v\u0006�'���褢\u0010,\u0010~3��waW�`!��8\"�#�_�ѣ\u0002��;����H\u0012�uY\u0007Oc]KJ��Z��qr��\t|q�PE�F�\u0002\u0014\bi7\t�tN��U�m[��N�\u000e��\\�\u0001_\u000b�o8���\u001f��\f�+)��t{��\u0002�tЍ��`�L\u000fz�1��o\b��!����E�ڌ�[�S\u0005������\u0019�\u0012��\u001d�E�j��\u0017�\u001fd/��QT\u0014o���?�o�����\u001f���Yc�vc-�\u0007e�ou2�머\u0002zh�9�\u001aԣAR�\u0012H��M1�U��-�Gŧl��O\n\u001b��*\nrBvH�Lb�d\f\u0006�t\u000f\u000f�\u000eƺ$�s�E��芭[(�Cy���WōQ�n�g�kM8\\� BY���j��e�_�c���e�{=�m~#�~\u0014�VM�m��O��k7�kϷ뫘}B;��qW\u0017۩��1Y�:��m�Q�r\r��\u000b\\���\u001b\u000f�H�\u001ev������H�����j�\u000f\u001dT�LL9uL�ݖ{��_�h�nQ\u0005�\u001ft\"\u001b���9\u0012!xd�~S�؈�_��?%��ݧ���Ѧ��ή~t\u0015��*�B\u0019)\u00034�{\u000f�\u0007\u001cV\u0011��\u0019Rvrj5~\u0007�Jb�c���,�\u001c��u\fG^������\u0007�2\f�G\u000f\u0006�\u001b�w���\u000e.�\u0014}͕��oH��(����/M��\"Тj\u0002��ʣAS�\u0012\\��L��Z�\\��\u0001UN�I���.�\u0005y\u0007�K\u0007\u0002���V�fw$n�\u001fkw��\u0007��>��2�^f\u0013|���b\u001c��\u0005�l�1?�\u0001\u0012��Y�����3=D�t��?��k\u000e�JHAklE��]�#s�=�T@�\\\u0012��MN\f�Q])g\u000bOx5u,R\u001f�H\u001e4���G��I_ٲ%���X��*�\u001303mV�\f $\n�C���yz\u0010�\t,*QZ�$[\u0016�?4蟫1�\u0004�UT���\u001a�p\u0016;zU<�Z�W���\u0003^\u001c\\O�$��@���\u0003��ú\u0017��{g�\u0003�� \u0011���ۭ�YαCL\u0005\u0017zY+\t��Ӄ\u001b䩋\u000fkS�J�{\r\u0018\u001f)��(\u0011�0`�K�\b��n�K��.�Y\u0012��q����T�H��\f*�෵��塋�c�e`��L�A��\u0012p��1�n�nq���yz���f���ϒƌ\u001b�֦�y��*�s��\u001dDb��r�\u0003%;e�\u0003%�+\f��\u000fB���f*\u0016�\u0017�L�>\tNp4�lj0^�b0ĺ�\u0018�?Fr-ק���P�φ\\�'��O��:�\\y��~h.~c$�5ηx=�(����Y?;C�&b��a�:����/�`�\u001c-E\u0017q�����R�߼)\rNT\u0011��.fo�R�]���\b˱.�4�kE]i�[�����f�!{Lb��Yp�L�\r*�-�)��+8|X��Px�7�\u001c��\u0010�;¿<�\u0012�\u001fR��H\"F$�:+\u000e�1S�w�nؑ^�\u0017�Ap�\u0012���M�X[����\u000b�թ�XUz�١�@�nFhTp|[\u001fA\u000f�����m��s�q\u0003\u000f�~33-��f$��g��So��X\n���@f{���.��\u0018�\u001387*\u0012�����״L�%�!?x�A�\u0015�y�->N�z\u000e':�a���ʆ�]\u000e�J$k��\u0003�?��\nm���\u001eq?�����2�mAM�/�D��V��J&���|�@��Q\u0007�\"Y,�c���ρzZ\u0010���c\u001f{\u0001�i�؎YJϐ1�N�\u0001��09�W�\u001ej�\u0006 \u0012�A&�\u0012��J8!�k�`P��@\u000e�z\\\u0007��ztK���\u001c� bh�j�����+Xڠ;,��\u0018]��𯎵�\u0002�Xݵ��0�晊��64�zHwх�Ws>v��-�\u0006%���ml�O����\u001c�k˟AL(J��/�\u0011�ͱ`��\u0010 $\t`��3�\u0015\u0015`\rf��\u0016�];\u0016��\b�\u001a8�W�\u0000��Y-\r��*��\u000b�-yؖ\u0015(+z\u0000�����T�\u001b\u000be�RP%��&��P1J�4O�\u0005.���mi����ڄ�e�S���\b\u0003�i�b��� ��F��bG*'e�'��:w,Uo/�p\u0007> ೙_=}�DFNr��Y\u0003\u0012�c#\u0005��\u0010\u0013)��\u001d=�ߩ�!�A$�\u0012���/\u0016e��d\u0015#~��{���\"S,\u0004�nL4\n��\b\u0007��\u001aT\u0002z��^�'����\t��C\u0014F��rГP.�g�T�u\n�|��ku��\u001c����uq�NK�̷�\u0017\f\u001eg��W�9k�pK�k^��\u001a�I��q7�i\u000e�m�}\">\u001e\u0011�\n?��>L��u��C�)\u0014w�E���C�y*��<���^��\u0016�L�2�u�5�*�O\u0014YN\u0000EO�)����x�X��.�\u001f���\u001f�\u0000�\u0016n?�����\u0019ӝ�ǟ��o �SA3��7D�\u0001����3��A\u0018��U;9V\u00192�fD�,HA�W�8�\u0003n�T�1ne\u001ai���0Z��A-2�r��)\u0015��\u0011��A �\u0013\u0010��1��h`�����(�>\u0012��ںK]�i5�>�7\r\u000b�\u0011�\r�t/�(�C\u001e�mH�x��\b���\b\u000b{Ԏ�7L�'��\u0003\u0003A'o�\u0007c�M�Hk�x\u0006i=w�D�1;��k�օ`�)��\\�V:{�=c��'�_\u000e��\u0005\u0014���}��\u0004\u0000 �|��&�TKy��D\u0000T\u0015�$�k3W9Z�~\u000e�v@����\u0007���p0\u0018�������BZ\u0010j\u0006Ģ��\u001c~ҹn�'��̨\u0003�&\u0003ݿ.�J�y���!�\r�\u0016�\u001fs\\)y�_�Y0�VB'��R���%��}�Ӏ[��[�1���$^\u0012sn��\u001eY�\u001f�U�41ДH\u001a�ݚ>վ K�A&�\u0013$��\u0001��\u00154�r*��|3��+u�Fp���\u0010�\u0000�\u00028��u��O��@���\u0006�����Ƹ9�\u001e\u0002�߫�89\u0005�\u001d8b�h��9�\u0003����E=���\\{��\u001cds�K��Yy�f3�\u001e��\u001d�\u0010\u0010��zo�݄Z\t���d\u0014�(a��x\u0003/]�c\u0015�ڮ�Y~W��.�#Qͻ���E\"׍e�ϭ��+f�\\��\u001c?�.}4�YY��Y�\u0003��w�0�t���uu�8��|�����i@|�{�w�E쀞�\u0015E\\\u001a}E������O˰\u0006F@⋑�l����\u0000F��]ت\u000b-\u000f�\u0017fx1N���\u0017�\u0012�؀\u001cVED\u0000��\u0010x�u���[ߣA\"�\u00138��&�,�At\u0003��\u0017�\u001b\u0017�\f\u00041��F\b��ŮB�+~�Y��Q�Ik�\u0007t��/���\u000b��\u0012�\u0016�%\u0014\u0019����\tw�F�S\u0006\ra\u001be$2(\u0019߈`��ѓ=-�ϟQ��\u0007�3�ǎoW�\r��v��d �\u0006�����9F\u0000v�9\"�\u001ewH��\u0013P����K�\bu�3M�H����\u000b��l�J�\u0012�b\t��S���*2�Γ�Pb\u0011�x{\u0012������\u001dN[\u001d�-�G?�諢L|���D!V�\u001dU�\u0017U��\t�\u0015\u0000\u0014\r�J͐�䈜\u001bH����r`~�\u0005�Ws3=\u000b�MЁ�R}7}ϳ��\u000b�_�Z{SSU�!�\u0001\u0005�u��\u001a�v̢D��A,�\u0013L��%�cY�3h��7>�q�19L��\f�����rA���\u0002d ?)�<|�۫)Ǝi�tP&A\u001dm\r���q\u0013y�g�R]}Ep�g^/M�~'6ω�T�\u0004*Y;,���j��#�U�M�\u0018�?�\u000e5l���\u0013��?�ہ��\t��5����?lV��\fMz��:A?�sY\u0013bà�\u0004�\u001f>M�/�\u000e�%\u0019S�Jp,��HZ\nD.}�9r�A3�\u0013`���\u0010�3\f����p�5\u001f�N\u001f�u���$���p��\u0007:�Ū���hV֔�!��\u0013�����\u001d\u0001@��\u001d�������w\u000e(^��\u0004��\u0007�\u000e�|����+�sr\u001f�>ӣ\u0005�\u001d①U�\u0019\u0015\u000et��rj�;PD�r7p\u0019t\u001af-��3e\b\u0006�\u0019��\u000e��*o�{\b�\u0002M�\u001b�a��$\u0004��\u0019�4Z��g\u001fV�m�s�\f�OA3�\u0010��R��\u0017��qi󷪥�\u0018��@kj\b�\fJ��\u001f��[\u001b.��ڭ�\u000b\u0007�\u0000[�\u0011ˍ^\u0011AZ��\u0019m#\u0014�V�^�\u0015��Ӯ��}��N�&S\u000b6\u0019\u0017���n�b��zMͣ�RZ�1���\"Ɓ1�|x(;�\u0002�M�Rh��@��\u0004?�ãB0�\u0013t��}��N�}e(:WyH\u0002%L���\u0006\f\u0002/�c�ژ�8\u0002�����Nq�0TQ�`�\u00004a�jϡ�.:�Y��\u0017en�2����$\u0014\u001e��Nf�x �\u001f���.���\n��>_;��DJ��L�\u0003\u0016���\u001f��\u000e\u0013g7��s+�1뎆���p\b+���\u001ds�\u001eP��P\u001c��Mx�K���\u0003f,+�\u0018QI?�\u0002���$g�E�W�k�FP��Յ��\u0011%z���\u0019���B�\u0017�QS\u0016�l�uZ����<��\u000b�>�\u0016�Ý\u0002H\u001eN6U0���U����h�ɑ��s\u0007J�\n\bJ\n��\u0002Dak�+@��Mw���>��Rj��i \u0013��@{P\u001e��6�<�G�/����^@�+�m��\u0007�S\bK�a\rS�����Z\u001el���f ��\n`����\u0014�/��O�;���vD\u000fr��ɢ\u0006)�Chd�Yj��\u0003�\u001cP��\u000eG����]�\r\u0010tc�ͳTC���l3�\u000f�k�\u0002�Bi��\u0019]�|�vWY3�\u001a\u0011�\u0006h~\u0018j:�7��@ֈUN��g\u001d�服��);*2����,�\u0011摈��u��\"N�8�9k\u0003uQ-\u0017�L\u000bf\u0005$�\u0016M���%<\u0013a�.2PŸ}]���-�!vM\u0005��4�f��\u0012l\u0001���_B�/�k1]\u0002��ʋ�m\u001e��H�^�j�hf\u0015$�1ɝ��O�@��\u0013���L�\u001f�W<�N\u000bj��:뉠\u001d�WT�(4*�\u0002��\u0010'(YMVYXz4�.Dv��\n<\u0004rwYZ�UC��\u0007��\u000fe�ρ޲����mM�5\u001f�TNo,�t~\u000f��o�*%��9w�&�ɺ������\r��6L�_��\u001f_\nb�\u0017��!�\u0015�\u00154���\u001a9�/Տnۣ\u0017}KW�\"���Y'�g\u0002���e�i�i�'���H{T�m���\u0002U\u0019�{l��(�k�!�i\u001a�\tf�\u0016���?�\u0004��\u001b6C|�\u0006\fC�\\\u0018��Ҁ�/��.�k�\u00053�t����\tM��fK\u000b�~�A\u0002�\u0013�����K꬇��\u0002v��d���[\u000f����8Q���\u001f\u0000O�:�lS�&M��R�k)2��\t���\t���1Y\u0017��!ꗠl\u0002\u001bGA��+�\u001f�{���\u0011���l�\u0019�r-\u0001�\u0019��QR���z�\u0019�^\f��G���\u001a\u0004�\f�����/�\u000566�J8�_�V,���_Ắ�\u001f\t�2\t�c~[V�O�O^Z\f'U�\u001b�\"=�4g6���H`\\\u0014+uJ-\bʓ�)��ą\\\u0002�PdzRy\u0017F�-�D�\u00105a�Ł�>��!�f#*\u0003|7��\"qA��I��\u0001�j\u0003�o2��\u0013FsE�ܾ��+\u0018��2�1vx����5\u001a`\fЎ��|\rЕlDn�[�O^r\u000e\u000b���\u0012�A5�\u0013؀��b�\u0018�����µ�:N\u001b\u0007��\u001dʸ�t\u0013�\u0010XKu^�\u0017H���T܀\u0017%:��\rU�Zu��8p�8�\"\u0004W�\f�\n'��Hl[\\Ds1BG�!\u0015�Mw�F&�i`8j.bM\u0003t�ԭ% �\u0011wU;�Y��N��\r��F,�K\u001e/,W�\u0001�7\b�^�]�:��Ă�w�D\u0006ߒ{\u0015'6ԊJ\u0000��.�xE\u0002����\"\u0006�D8d\u0004\u001e�zl�\u0018��\u0017CE�\u001b��𫖸0\u001d�\u001ax�Բ�m�\u001f��Pʀ��%�p]L�|��ފ\u0016�T��C\u0019�\u0016�\u0014U}�\"a�SS�\u0001ް\u0007(G��JHQ\bt/�hn�BP^[��\u0004\u0001'̤�%/\u001d�{G!\n��\"I\u001c���I\u0002?�MW<����AG�\u0013���b#�8s�h�)n�\u000b���+:\u0007��̦�_�\u0003Y�\u00007\u001f�g6�0��9\"\u001dR�uM\u001e=�����0N��B4�@hMcM�\\\u0012I���=�&�C�c�&��\u0015?\u0004��8$\u001ex�\b��+�U����P����\b�p��\u0000=�ur�\u0012�nn�Xڔ�V&\u001c\u0000\u0014����A-G+y6�s�\f�KS�-�\u0018�^�\u001e~�2\u0017)�\b�K�b\u001b $\u0018$���\u0002����4\u000f��D0�\u0007HT믧��\u001c�\u0003\u00100r\u0001�뤒���^\u0012\u001c8ހ�\t�\u0004���tL\u0002��^�ŀ+1ty���������w�&��g��\u001bjˑ�����2����*]hY#��6���S������n\u0006�\u0004}��^�`�k\u001cw6���3�3�v�\u0019�ݥ�AV�\u0014\u0000���cd��x�\u0007�3\u0018�-1TI7�P�6(>���7�v�\u0017'�?�^?���ݺ�{d�ঋZ\n��\u0018���A��퀴���`������\u000b4B\u001by�(/\u0015��@G�\u0010�L\u0011��5�I��)\u0006t_S�\u0016(4\u0012ڧ1\\�e�(�*��G��\u0004\u0002�=\u0013{ԇy���.��\u0005u�β����\u0006\u001b�Ep^��\u00194�\u000f\\�b\u0017��b���1����\u0004o�^\"�H�@;\"*��\\7�(��g�1X�W��tZ�ӈ�X�҄/\r�K�\u0019\f׎1~G.F��������\u001c�|g��Y�K��5\u0006�we8�`�&\rp\"\u000e���P}�S\u0016\u0019�Pc��W�M2Ő듳G\u001e\u001dQ�)��:i�� H��\u0004AY\u0014.����قo4־J��~3���\u0012�8\u001d\u001f�\u0010�8\u0002�K���Aj�\u0014\u0014���e��l{?��Z�տ{+6�]��:�\u001d_�\u0003Q��2B-K�܏M�֪ɗ\u001c�\n�v��IN\u0006�(�u7/���+,�kя�N�B\u0018�&f٣<��3B��\u0002y�X\u00105=o�\u00175$�.����܅5������Pe\u0006f��$\u001e\fc\u0016�DG�M3r�.\u0001l�E�\u0000\u0001%�\n�[��f�\u0014\u0010/\t@utG�>0�����\u001a=������,S\u0018(�6�euW�aX�Y6G�HK�f��|��\u0002�â��X�$��v�Dm%�䧧\b��Ntc�1�f�h��dg�2��&�6B˯�S�\u001bW9�\u0012&Ӟ\u0018\u0015�!o>�)hy\f�q�Āݾ\u0011�%\u001b��[-�\u0016���ӊ�\u0005�#�\u0019-�?{(m�Vi\u0014��%���3Z�å%�\"���2�\u001e\u000bpY�>񋐸\u0004�\u0013\u0000�7�孺}� �2Bxr%�Am�\u0014(���j��&&P�˘e0�໦�[�\u0016p�U5����\u0003j�\u0011|d��Q�x��\u001c\u0016I�l��7��5�<�\u001e�1�G�%\u0006�3�\u0002!\u0011NT�77��h��yn�t��&� ^�\u0011SD�A\u0007B)f��\u001d�\u0016Ӝۘ3��C�9�tS\u0015(�t���\u0018\b`���\u0001k�^�gK\u0002r|}�0�ͳ�Ljy��\u0001Ww�ڎ9\u0013\u0018�\u000eJ9��G3H���T��\u001c������#����\u0006M���wɑ�u��Z�y�^��:���Ŵ�}C\u0005�\u0005tX\b�\u001aԕ���)�Ct�;���EZ�P_lx�X\u001f�7|�J#\u0001�\u0007'\r�j_�J��x.[��}\u0004��A\n�A��\u0012�\u0000\u0012(�B��u\u001b\u0016{.\u0016��1��\n�6�\u00186���f���~�-C��A�s�@_�`:1/W��L�7\u0000P#T�\u0012ȝ�G\u000b^�Ӻ%�Ai�\u0014<���b\u000b�\b\u000f\tn\"�\u0003�l��3���^�\u0017�FIS\u0004��(^\u000e�e��U\u0000Ȗ=1�*���s�\u000f>��͹6�\u0012�n\u0004\u0016\r[s���`�����\u0011��]>\u0005�\u001cT�������|\\�N\u001f��9\u001am\u0000�\u00103]#�Zj�Mp�#ǻ����\u0004(>h���\u0003�V����&��x$9�H5\u0019%����`nLI2��O\n�*�\u0006u\u0017���#Il\u0018fPi�5��\u000f�A�ë�\t�\u0006��\nv3{O!�\n<�ï���?x��Nœ\u001d\"�\u001b�\\�o�&\u0016\u001a~/E�rA�\u001aE ��\\9���A�{lIZ�N��H��Ð=(p�\r��m\\;�;-L>N\u000f�\u0005\u001a��9�x+�Fn\u001a�&��D�(?X����^+�gܵ��\u0006A1����$�\u0018q8ǖ\u000bRi�\u0016���#�\u000bL)\t�>z\u001bWI�bA\b0�%�Aj�\u0014P���s�X�\u001a��|\u001d?�`�\rZ-\u0017@�\u0000l �pD�ܨB*EE\t~Zx=´\r�սB�,h\u000e@\u0016��d.c\u0014J��2�\u001d\u0010���\"�}?ċ�C��R�<�/L\u0004+�k��\u000e\u0000��1=�\u000f����\u0013�y\u0013D��C\u0014D�\u0006�\u0001\u0001��.*85�L\u000e\u0019¯^�S�d�\u0018Ӄ�ҳ#��Qn��8��3a��&�����\r�0����nj\u0014\u0005:׼q�i�&����$[�4��\u0018���$~4�\u001bTL�e�?+��|?0��dM�\r��\f[�\\W^�7q�\u00192d��\u001b@\u0014�)t��%�\u000f�\f�\u001f�am���\f��},�-�p�~H��������m��C\u0005~���\u0004_�H[i\u0010\u0011�R_���H\u0003b�\u0003A\u0007m��hl�j�|�\u0005a��O\u0017TGz3���\u0005z��X�r�]�\u001c\n��\u0010��4�8�\u0005�m��AW�\u0014d��1�!{�/��\u0018\t�L\u00169g�{\u0004jy@�\\`���{u[�u\u0003L\u0003�\u0014\u00050\\<|�͙���^�&g���\u0019\u000b\u0019|՞\u0013�LM����:��Q�c�&\u0017�\u0016�lV\u0018�����$i���T�\u001c�� Q�\u0005��W\u001e\u001d�`\u0012>���l0�MY\"��\u0003�\u0012�<�A��\u0011�n}�[<\u0011\u0002^;��j!�ʩ���?��\u0017��\r-�2�\\c�j� �\u001c�E{Kz���Ȗ�ؖ*˷ݭ��\u0010ؕ`\u0013��\u0013\u0000\"-+�*\u0012����\u0015�^P\t�-��=L���[\u0002��m^���,.�9R8��j�\u0011����娸P14\u0005��CK�>հ\u0003�7k6nJ\fH�:wV�tǶ�1h\u0006nr�@\b\u0014'�A�@9\nv���v�g��ݶ��d\u0018+]i�$O��81�\u00037A�:��A��\u0014x��|�ME^hkr\u0017ni\u0003\u0010=� �cG�\u0010\u0017\u001fQ=�C\n.�\b�S��A\u0002[\u001e\u0017��}o��v\u0007:(�����D���\u0014?���\u0004�};6\u0011�c�w[<-yR�\u000fH\r���\u001e��\u0017?�3���wͱbJn\u001e��\u001a\u00027��6ʹz;���{LT\t��a��SG댽'�ZLݿܤ��IQ�g��\u0005�4��Q7��gW�\b��t�Y+��l\n���\u0005_��~x��\u0012\u0015����\u0014SÇ��KQby\u001c\u001e�o�N.\u0013\u0019���J�7\u001f�#l���&�����X\u001a�\u0016񶄖x�9{6\u0018\u0004Ȓ0|��\u0014B\u0011;�pw:&�m&y�0�t�]��$� 39�{*bD�Q�+��w5\u0003\u0011\bF��\u0006u\u0001��FmN�k_W��;��]~Gbt!��HM��o��X@\u0010��\b\u0010����'\u000e\u0017=�\u0006�u<�>U'\u001e�ٷ\u001c������ǒپ���j��fN��mO�f��� h\bdhH\tZK��\r\t�*�T�����e�ķ�G���\b�6l�Yerh��A>�\u0014���.m\u0012Nb7����\u0007��u\\�^{O��K�V�&�'\\f��Y�\u0003.3y��\u00038����\u001a\u001fz�\u00154=��SZ���X\u0005X�� � ˆ7\u000e�D\u0007\u0005\u0000\u0016�\\\u0012\t� U�L���\u001a^)�8�Oj�1Y���B��\u001d�e�\u0017S�\u001ad��)G/��T�,$\u001b����e=���@�@~,�\tj�\u0011H\r���*�\u0017�U܉�r�p/U�(����#\f����ۛ�\u001b�yi�\b&�\r\u00166W�\u001b/�x�_9\u0018�UH\u0019��^Q_�ȿz�2\n7\u001d�p�_\u0015����6�q\u0000w'U�7%�Yj\u0019b�Hu6��\u001f!�ұ��u߀�ѼŌ��\u0000@e�)���\u001b���ш��G��\u0010�s�%)�ʹ��\u0003�w�\u0014��\u0012niR�A4�\u0014���M|~'�d\u000f�?����;Ǔ ϬGW~ծё]༅��%�\u000b�>v�r\u0004�\u0006-\u0018���\b�\u0001��|i��]^�z}�(!�L'e,e�غ\u001a���\u0007`�\u0005���w仌�\r��aa;�pE�3�ͳs#\u0013��&:qݲ)��\u0006E��\u000e�_�w���\u0010Ğ\u0016���\u00011�D�\"�d5��6�.�\u0007�=�g?u���ha&~��\rCo��2p2 Ҩ�OOW��l�.�Ϯ-��*�\u0013���\u001eo���\u0015�}b=!v}9\u0018v�/f�wmxL�cN���u�d�d�T{��\u0001YЬ���7VY(�\u0013BX��\u0001�0M��$!�H6\u0015\"�����N5�\u0013��ʴ�_��t�$\u001a`��z�\u0006\u0003�\u0011�A,�\u0014���M\u001f&��1�҄>��g����r���,\u0012'dzt��\u0012��\u0001��H\u0016|\u0018\r��yU��~b#�0F�N\u001a3�&2��p��\u0017�� g%�Ӣ�$X�Gkw\u001d�\u0012�_��p�\u0013���&f ex\u0003,\u000b�\t?c��{\u001f���`*��\u0003'��\fL@i�~j��Ol\u0003\f\u001c&P\u000eD�5�c�{�־f\u001ba�\u0005\u0004Ubʀ2\u001a�C\u000b�ɫr|A]�\u0000�\u0016��\u0013�����+�\u0014\u0018~Ex3�s��9X�����8�\u0010�c�ٔg)��T}�v(�\u001c\u0000F�\u0015\u001c�5�Y9��A(�\u0014Ȁ�L�͔c�\u0017������\u0018�<�)V����Z�U\u001a�w\u0015Y\u0003ccݗ�gC�v��\u0018Ͱ�X��a��=a\u0000�J�ZN�\f���\"�Ӟ�,\u0000C?%:�D=�x9�!5�/)�NL�t2�E��Ӻ���i�G���r��[G政tX���nQ��/*\n��+\u0012_\u000e'spX���a�Q�_�p5���\u0007�9v\t���e\u0000���{\u0013\u001c6,���9���\u0000<��ph�\n�\r�%#��_\b\u000b\\�,���\f��\n�f\u0003�A��ġ\u0012�\"\u000b\u001e�J���J'gJ`�V�M�\u000f?X~\u0006;��}qPd�\rQ\u0007H�4&�T\u000b|s+�\f�Ɠfǁ\u001a�巏f��Љ֢\"iɯ�A3�\u0014܀��d�.�R;�t���g��\f�̋\u000370\u0005$\u0015��`\t�\u0016�z��&�A��!�-�\f�Ҧ*��1��e;k\n��\u00117�iC���}�n�\"n��0\u0012��o�4\u001a\n\"]Kw�\u0012bƩ6e�U3�5o�މ?u:��\u0018�42^�\u0011��܅&��-��\u0017���[\n�ˍ�ܳ�\r����x'�T\u0013�\u0010z�\u001c\u001fy\f��\u0014`\u001c���R�~�\fZ�\f˶&��/��5NI�JWhvt�K\u0019�ꄆ٨\rz�z�hų�\u0005�ꮞl0�b�Y��h�\u00144Y>`�ɤ�\t\u001f�/�\u001eK�t��M*���qx�@�!�\u000f��d�u\u0005���k_�{9��rs�\u0019G����'�^j؀7�����A3�\u0014����b>\u001c2_��\u0015COx��ܖQ�V-�a#8D\\xVL-�:�q����\u0010H��\u0011[�l}��\u0019H\"x�M.!=�\f�g�ޢ۫�1\u0013�xYq=J�b�W��eo�mݸ\u001f\u000e�X���\u00106���hO�����X�\u0010�C'�+\u0017~|�\n��8�\b3A��p�\u0001z`\u001f\u0017�F:,1L�\u0018ԏ���W\u001fС(�񰜏\u0001R�S�ͮ\u0013?o$�o�}W��\r2Bɀ���]ig������\u0019��}��.�T�20�0T9:\n]�=��\u00132ͽB��P����|�.��q�’�{q�4�m\u0007���\u0012���\r~\\�8�4��D#�e\u0001\u0000�?Z���\u0005\u0012�m��AN�\u0015\u0004���bI��\u0016X�\n�K{���_���3d��Yc\r̂�q�W1��\u0018G��-4\u001eu�\u001cN\u001d����R4a\tr@\u000b \u001aVG\f\u0015�8�����\fr0�%�\u0000�4\u000byeľ��5�v�\u001e\\�I�I��PFX._�R�.;��t�ƴQ��\u001c��\\\u0003�ΕM�\u0016)�ၦ��Y������+��&V���\u000e舍�In\u001fv\t�ws-K�[����=��돨&��\u0019��\u0002�;�\u0012\u00002\u001d#T;\u00000��;��ަpm��+Wl��[z��?g�B�\u0010ۇ�Ub��Q�ՊEU��\f\u0012a}���0S{lZCN>��\u001bh\u000fhi���f\u0007�\u0006C�T�%�CL�Sv4�\u0015�n�����\u0013nI\u001bb�\u001f�HSb[�\u001es*\u0005`I��\u001a�j\u0014kI{I>0X~C�\b�km��AA�\u0015\u0018���bt\u0014�I�$D/�s\u000f\\�\u0002\u0004\u0005�'�7\u000e��\u0014����\u0001���LpW�'�D\fB�/'���Ȩ��AD(0al�\f[2�\u0016\n0\u0012����?c�:y�����ٸ�U�R����'����H�Χx�\u0016Q\u0018߻�x\u001dO`>�P1\u0001E$\u0017�څ\u000b��#\u000fj\u0002��&�3\u0011̈\b)N�\u0011�`\u0014\u000e��f�M���n;@\u0014ZeYhى�9\u0001\u0014��O�3M+>X%A\"p\u0019����i>��ϑ�\u0003ڷ\u001f�_�Z}\u0004�WH)�7x\u0005�L�袏��e\u0001�\u000b\u000fL&Z��e�.\"��p^\u0017y+�\u0014\u0001ӐL�%\u0015\b���Cu6\u0019��f��<ͻ�~�0\u001a0�\u001ar���h�n*\u001dY�\u001e\u0007~ז\u0010��y\"�����f����(�e���A4�\u0015,���b`\u0017�^/$\u0015���\u001a���Y�ȷ�&\u001f\u000f.#�'P^��:\u000fv\u0013Ϙ:\u0015�tZ���Z���h|~��͙I��_�B\u0002C\r4%B]\"\u0019�\u0007���j�y}k�\u0003s�Dx!z�\u0002;ptOW�I-�\u0001k��\u0010p��E� ����wq���\b5�jbZ�*��0dm:Zi�C�\u001e\u001d\u0001�\u0011��\u0005�tׅ�N���\t�\u000b�3�u��pfa�\u0002��$�=4�\u0007�_�\u001dr��E$�0ނo'q�8�,S�]a2\\\u0017:���c�o��\u0003�nq^B���\u0007e\u0004����G\u0004o�E�c\u001f]\u001ft�\u001c��&�\u0014\u0017\\�]�\u0019n)�\b��Z�\u0006El�E��O��M&�{�\u0011�ƌ#v\t��>>\u0011>CP�:\u0001*q��A/�\u0015@��L�s\u0017n`\u0013q{W\u0001�\u0015$�d3�ߜ,.Y80\u0015��ư�\f�fڄ��\u0005�\u00152Gg��\n�:��\u0018�h\u001c\u0019�������7IY3��P\u001cҜ\u0012�.Y�l��k�`����f�x��/K�Nc��\u0004\u001cA\b\r{��k����K��p��z8L\u0001�\u0000,�\u001eݲ��\u0019����\u0007\u001f\u001bFc�b<�o\u0003-V�А\u001eY�z[�t�M�Oj����6�K��\u0018-�7����\u0014���|V:�_r@6�����\u0019�E�0��\u0018~�P�\u001a$\u0018���ܹ�\u001f 8�����-\u000b�Z�ݕ��\rfIJ��\u000fٲ5@]�l9��8\u0004�����\u0007��n\u001b�����:M�-�\"�y��Wɫ\u0013��\u0000�A,�\u0015T��I�\u0006�\u0004�\u0004\u001f���3G�\u001eB=�.��)6�ߐb𚡡�� Iz���m�D\u0018�Пޱ��\u0002�8tY'�K3)���\"0�Yu\b�\u001a\u0017�fД��ߑ\b�&=\u0013�?ٵ�y�\u000e\u0005L�sOzT.&��I�(Z,�v�\u001dp:$\u001d,��a3'\u0005IY�e�NMW{H�أBT�\u0015h��|�������/F+�Y�\u0019|�KC���6]��\u0003p��\u001e�Ԙ�R��q����!2�1��/��\u0003_���y;!�d�p�N\u001e��!\\�\u0016*~�\u000f2�N\u0001�\u0001����\u0001\u0006�D�~x7�&�e$�ﶆY7Z��\u0000�l���9�\u0003�_����*͕�\u001b%i��腎\u000bZ\u001ae�\t�H[z\u000fM�㔔@\u001c\u0010i���@ڋ�w�\u001f\u000bb�\u001ddrT\u001a���\f�W��c9�ϠU�~P9�#|�֌'���1j�_�\u001c\u0013$�zV�;֦,�\u0019hKZn�-5�\u000b䭫^�~\u0005]\u0001z�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000|\u0013=�b�82�ں���{U\ni���]c���aIF�@ \u0018&ﵠ��t\u0002X�\u000ejo�k�\f\b��[yf\u0011�4\t^V�/<\u0011��c�����������W���aG\u0006���㳩��'��ܺ-�z�D�i\u0019�\u0000����u�\u001c�\u0013\fg�8��9�I��e�s�\u000f�X!>�L\u0007!��e��O�{)?�<�f7\u000b&\u000e�����n�f��0�Ӫ\r�^a\t��l\u000f����d�pGX�_Ԓ��?\u0018Vw5'(|>1�����s7�\u001c\u0019/I%�kO��JI��v8�XL���pZX�\u0006t�61��Q6\u000eS;�&��ͮ��LX9M���9�u{\r�E��[�\u0003\u0005m|���h�}^�C׸�\u0019�\r��lF�.�\u0010I~\u0000�1\u0017\u0004�}�*�~\u001d�\u000f�fz�\u0006�,�A\u000f�\u0015|��X��T5`\u0002�^��B�+1Y¥ľ�\"L�'�\u0017�T{F�|�\\*�s�Vs7\u0013���P�`@\u0006\u001c%��>S^���\r�W��\bɅ);�c\u0012U�9�\u0005&��tS��G\u001a���\u001a�iu\b�\u0001b6T\u000b\u0004- ��Z;��6�؃\u0016\u0010\u001f��x�r訿�(���j��|Z�\",\u0019�J��O+�\u000f�5��\u0007u�w�\u001cs�2�hӮbI\u0000�87K�N\u0001>J�{y���&���\u000fzo/\n��(^mo�F�\u001f'qq\\#���\fe\fn��s\u0003��4��vs�\u001b�\u0015y�\u0003�\u0011v\u0011�\u0019\f+\n���|��E\u0010sv6ҶԸ�\u001e�\\\u0015�o�A%�\u0015���X��&\u000f?]]d\fНL���\u001043R��bQ(�f��x\u0007�[=�\u001c�\u0015`���\u0016��C�\u001a}O�_�ԗ���-���VI�ЛhMm�Z��\u0011�`�Ф����n\"��tq�\u0000�[�K\u0013��a�5�)�\u0019��#\u0010/`�����ެk�s��͹8\r\b(�D\u0019�_�D��:�J���\u0013��C����2�)�x�.�+��(kO�ʷ��!��\u001c$��#�F9�k�P�2u�\u001f/�_@W\u0004�\u0011�����V!\\r�p1�{A)�ѤU1��;\u0006\u0010�v��w7\u0005�\u0006W\u00158w��a��ҭ�J�.|3Bc@p��瘉�-���\u0003�w�c�8x�Z�A �\u0015����k=�9|��1:ߚ!-ܩ��/\u0017L��/ck{�\b�!��\"�\u0006~\u0017���I#��%��(��Vz>\u0011ȧ\u0001�\u0018w�9���H�WD�1:�?�u�\u001b\u000eϩي��\u0016�n��z�c\u001bA�\u000b�pcg�$ �\u0002I\u0014�\r��70汭���y\u0017]b�P9d�n}�B�闂���^�\"�\u001e~R�\u0006���\"�����\u0002wW\"��\f\u0004�S��u�5��:��a�9�Ɏ��)\u0012\u0013/��Z�n�\u001b$q����[/$�U\"%r\bo�gy]���|\u0001��\bZ��\u0018I�_\nI��2+(\u0013�ш��d\u0014v�����=yE��\u0002�D�#fr�(���� ���A)�\u0015���L�ơ|+�v��~��\u000f�4%\u0017z�fT\u0013���'P�U?�zJ�θ�\u0007\u0004�7W��(I�Fp�W%�\u0004�\r?�E0�\u000e\u00142}\u0016�=B%D\u0013�A�/�\u00065�,c\"�P�\u0000u\n���,z\u0007.c5�\u0014�@\u000fK��J�!\\\"����D��㋘�{�&�JϘ E�9{ �<�\u0000`\u001f�\u0014^\u0004�D��NlN\u0006�\u0004[�F�Zx�a ��R��\u000b�\u0007;\u0005�\u0014\u001cBN��\\4�\u0005��vr\u0000�8��v�*C�\u0014W�X��}�u�\f1���9l\r�S�\u000f 9��\"7�\f��vÃ'\u0003\u001e�M(���rM�W�A\u0013k\\I{sT:�\u00040��Z1�A�;ٛ���/PT=1KWIP?�A\"�\u0015̀�L�2�^��bx�\u0000� M�L�k\u001c�Z\u00035��G��\u0006ا�L�u䜝\u0001�\\�6�Q��Ug\u0002�_{� \r\\_����:\u000f�SY\u0018�x\"�f<\t�Eb��7\u0010�ܰbD\t�.\u000f/�\t�a}s��|��(=��z\u0006L���T,��nn�K��� �Z\u0005\u0019\u0006��E�Ӹ4���\u0007\"*}�8�hQ��D\f̽�/Bor\u0002��\u0011�>�,��\u0000�A\u001cs���\u000f-�������bX�2Z\u0002�h]\u001f�D<��v.؉��|H���p�F)���_̞����\bkT���I�?1�o����!ژ�=��\t�E�����Z�؁�R����Q����(�\rm�A'�\u0015���M(r��\u00136�\u0010\u0000���t���-��\u000b�������m}\u001e&�9�q\u0000'`�P�\r�0ё\u0010/,�PK���_��!#�\u0016σ�\u001a)��{����•PcmM�|l�w��\u001ecI�N-\u0006�S9�n\t���U%H�v����\u0016,X�GOf�|��\u000e�\u001a�R�|Gl��b*�\"w\u0018γ����K��ߖ�\u0017��e�\u0014��jd�q�\r��1p�q�#�<�O�7n|���K��\u0017|T����\u0019�#��c��\u0005�\u0006@�\u0018�n�{C��8��rt�z..SvC\n&M1I�\n�\"h�\u001c�W��ѐt�ʘԮ?\u0017<\u0013�ñ��\u0011�\r�\u0003\u001f�=;�}�nP̴V�}Qz`���A,�\u0015��M\u0001���%�\u001e�\u000b.s(�\u0006���\u001d\u0015\u0017OKA޲7H\fÕ�;)8-v�p\u001f���n�\u001b��\u000em6\u0001��s�@�`\u0006g8vO\u0018�\be[�-g�+d�lTjtuN��\u0015�JBhG�H������\r+|�\u0000E2��`\u001f��1���@U.�\u0005��\u001f��Մ�k��5�\u0004Kh�n�1V=�Hdb 5z\u0015U�|��8�(�j6D���\u0000�ki���*�\u0013\u000eK\u0000\u001b-��\t�\u0010U��\u0010�C�D���³*�{\u0007��F�vV٬ͭ��\u001b�ݣA,�\u0016\b��M2���n7T�M\u000b���9?\\�U����,\u0013��{��\u0003\u0015�b\u001f^�\u001a���\u0012�4�Ų!��K���%�H�8%�}[�D[\u0005c��}[��&�p[y�\f�'\u001bBj�ҩ㭜�\u0011�>CL*��ҽ@2��\u0014\u0010�b�\u001b�>P���\u0005-A\u00143���#���Z���C�Y\u001b?��\nxN��w-�&�6�)43\u001bwYV��YY9�\t�-��ܷ\u0013�����Y\u001e�����1��4�ñؾ�\\;�\"\u001cw��ƙ�/\u0015S��\u0018t$���?±Cx\"(m\u000b9��\u0003��6\u000e����Z���e�m�[R��C�H���\t+\u0010be֔\u0014�<\u0015��g���u���[���\u001a\u0017y\u0005�e`4ܣAJ�\u0016\u001c���mSX�\u0007_2����$q\u001f��B��\u0017�\u0017%;�\u001dt�����|�\u001f�\u00185S,\u001b�\u0004\u0011_Ko\u0016�\u0004\b�b\n�����ڪ/���8�/�f��3�\u000b\u0017����CW�\"����`�\u001f����Nm�L�\u0014ٰ\u0012�=f���\u000bӃ\u001e��\u000el�0�\u0019�\u0005��o�!f2�B�S[0�p�M�9�\b��&\u001a�=\u000b�]�g�\u0007\u0007��·^YI��n�N\u001bH�tCs��u%\u000eڲ�'\u0010N���Z�R\u0013��,b�a\u0014�0y7\"\n��\u0001�ir��Zy&�\u0010 �˴<��YE3\u001231�����\u0001�]?'-V��\n�x��b�;��\u0016|�u\r\f�3�Q�ƛ�^�#����L�yz\u0007 I;�]AfwV\u0012\u0003s�t��BlL\u0000a���T�n\u0010�\bg�q\u0004�A@�\u00160���eݧ����n��9��n`�G�fR\u001c�M���\u0015H3�#6��%�$��g���Ar���`�e5&\u001bj��n\"\u001c!��\u000e��\bG�Qx�+�AN�}����\u0013�T:��\"\u0019\u0013�潚�b�`#H��,�\u0018����\u001e�m\u0006��h��Ԯ�_�R�,�.�q@�6�u��m�z}�\u0003A\"\u000b�F/\u0004���(�:\u0000�\u0018�S\u001c�{\f0\u0010�3��js�O������(\\�R�g�T\u0018։���a�]���\u0016�+\u001e\r/�`>�9\u000ey��\u0019�*�ΖÔ�\u0012ϑ=W�����ܸ���\u0002�\u000e���J�%ѷgF\f5\u001eA.[\u0015'������lZ�=a��\u000f0��+ �����\u001e\n)��'~3���\u0005:&�R���EƩ\u0001�A0�\u0016D���\u0016�\u001ay��lF����\u001c�\u001c�Qֻ��\u0006\u001d�q\n\u0001ɘ�8�g0�w\u0002칍N���G�'�\u0013��<�\u0017�����8�I����Ff�\u0015I���N�g����&R�;Z1l�2�.ݘ)�\t�_�)� k�a\u0007C�'��Y�͛xu\r\u0015U4���<��)�O%U.:������y�\r�5�\rhB4��AD�\u0016X���\u0010DV�R8�d��2�-$L\u0000c޻x�G�\u000e�1(\u000b,*}\f�k�tO͢��dD>��J�+\u0015�yᣟ=Ae\u0000n�fR��\u0018��� ��\u001d�v:=�\u0017\u0014�Y���\\���=Ok�;���j��\u0005�>� ��\u000f�jx�~�\u0011�Ɨ\"\n��\fK'��>���1����)�=��ŒOD�\u0011������H����\u0017'(B���\u0004��d��\u001b�\u001bP�\u0004Qm`���7ÒMk� ���]\u001d�\u0004�bnh�׃~��\" �d\u001c0r�sXt�@����ϪR���.�k\u000e��!?\u001a��AEe�����%������\"�uS��\u0017���Z��M�D\u001d���qO-�W�\\\u0004�M$6�k�\u0004�F\u001b�Loܯ�!\u0019-IsV�7=�B\u0001�\u0016l���\r;mmۡ�\u001f\f�\u0002��r.�\u0013�R��\u0007��\u0015s�k \n�ۡ�^���4�S\u0002�\u000298k�\t\u001dxF!%��|��BaA����b\u001a�\u001f���B�&\u000b�\u0014,��um\u0010\u0007}W\u0010wG$]\u0014�=J\u0001�V_cɕW��\u001f�v���V` O��J�t�G��_��?U�Ñ\u0005�K.��Z��[O~���4\u0013�?��픁)����Nf25��pH\u0002�q���Ṵ\u0012�}�\u0010��X{��B�E�RXu�Ĩ����8�\u0010�m_�E5{�7�\u0004�\u000e>!������x+fAׁ���@�w���\u0017��X����ˢM\"�kS�p�D`ლ�M+���_�\u0017|P~��/�3e�s\f=z1�ѵ7\u0004`\u001e)/<�/%ĴF�\u0012@�\u0007o`��A�{\u0007n�\u0003��_��\u001f��RˍB�7��~� K�]l\u0016��t?�\u0004f���El�D�!aFy�\u0013�<�$^>�eќ�\u0012�/�v�:�\u0016x�T�\\�\u001aG�T���8�\u0011 �\u0016������-w�Ce��y����\u001b��Zs�4e<��굄\b�+�9��\u001f|��\u001e�\u0002�E�^�\u0014|�ʢ���\u000b��۟8�#�cYT[>j�\\�׼�\u0013P��!�\f�ʼ�AH�\u0016���L�\u001aIDq�3\u001c���mqS b�8�W�:�%A�\u0006g-�avh�\u001b#��\n\u0011a%\u000bV᳃��������d�.\u001c��)^\u0015��j��J.'M\f�p�]-�I)���!͒���c+��\u0003�D��6#p��p\u000bZ\u001ax1,�\u0014٬\u00072)��*\u0014S\u0003�2~�A��\u0014nУ�ɡ2'���9K�\bH���JX�$FG���̺O2a�\nct*�\u0006����\u001c5\b����\u0015;&��Ȣ��6�ۉ���\u0013P�_����.?��\tƇ���[�7�$ئ\u001ady�\u0014`M���~�+�6���i5By\tU啬�a9Ұ�O�<`��}���<\n��\u0012`� �J�=`V;hN��H�mF�����WO�ڟ�k��w�L��YD�\u0014|\t�A[�\u0016���M2�2]w\"Ed\u0000\u0004�`����UY�{\u0019���6��\u0016��)6Y�\u001cPZ\u0005&\":�z>�3:@ń���\t\u001f'\u001a�rߟ���K��\f���0\u0019�+y��)���\u001a��W��@��=�\f4���\"nh�Ƃ8~ͷ�M_�q\u0001���=�]?��]\u000b�d�Q?�\u0019���6�����ēڲ��L�\u001a`z��I�ߣK�\u001a-��\bۺ\u001d���g\u0018��&\u0012�\u0001��,�\u001e�͇�\u000e�$�/��#\\t5UE*D���\u0007�cHW�@\u0017&�?�k\u0011��Y:qg\u0005[���{:��I��GXd�W�o�\t�|V��%K�:�\u0018q�5D3��Wx(�����o�)�\u001a�\u0004�g��hy�\u0003�e��J\t��X}�5���D\u0000�r'��\u0012W�8A�X�3�5S%�v��\u0011eϜ\u0011��\u0012�A\\�\u0016���M(r�✀\u0013=sn�lK�֡�ooZ�/��8lO=\u0013c6\u000f\u000eਣy�l�&ӈ�0�x�1%C�\u001d����a\u0015� ��0U�5D�\u001e��b��\u000eײ[W\u0014��-\u0000�ڸ���f��y��{��q��\u0000Oz\u001d\u0013}�\u0002\r� b'�\u0003�mA\b�y~�vpۿ\b*��f�q\u0007Y\u0010\u0005�\u0017V\u0015�''6KY�ʍ�S&\rs�����\u001f�%?\u001f�#���4D\u0005��\t�����Hu��\\8M�Ӈ��]jjS\u0003��\u0004&Q\u000eO\u001c\u001aSYn�م��Ia<(���iO-��!�4�V�\u0012���\u0006ѧ$#�[$�D��H�\u0007m�޸u���M��Aa�\u0016���L�O@�P�\u00180ݛ-�V\u0019*�폫��-���Ų\u0007P����WAdb��yc;�~\u0019)P�*7A��xx\u0003\u0011��c��\n�S)\u0001�{��\u0002�q\u0018�\u0010���T5s?@�4�/\u001f\u0003:C�d�?]��E�hWZEx}d�\n�rT�>��\u001c�\u001d\\{e\u0002$\u0003z_O+���;`���Ē�̇Z{c�p~b�f�X%\u001b��\b׏\u001c��-%jE�{V�!\u0001�u/�Έ�c��\u0005�F!�E����׍s\u0012j��h\u0018�Z�^5�X\u000fa��}r�\u0019E�B|Õ�\u0013���ч~����X�K�Dݺ����oa��RF�ϣ�j\u0015��r�S��?K�����\u0016.,�n�\u000e[^�\u000b�\u0002��Y�wC\nc�w��������\u0011����\u0014\u0002\u0001��I�H\u000fȖE6U�Δ�a����{\u001e���XP�G�\u0019\u0013�Ab�\u0016Ѐ�L�\u0014���8�5\u000e\u0003���~�\u0016�}��\u0014+�cBm�j��\u0014w��ɾ��S*�6\r+'�qs�y}:c�k�����W�<\b�Z����i�\u000b���@U�\u0012*�\r��l\t�\"Ā����E��p��\u001c�ܓN(�K��$�A]�\u0016���\u0000T8\u001ab\u000f-���Bjˈ�!�0|[F�(�K�Y��T�\u0011��h\t�w\u0017X\u0011��׮�}�\u000fn.�\u0018\u0003�^w��H�Y`K,'i�X�ɿ����\bE\\�B�K�7���O�d�(a¶A�\u001c�<\u0014%]�\u0012��ϼ�\u0006��P�%�\"~��\u0002����s�Rډu����&����ɖ�\u0005\u0012���)�m���~[���|迀�:�2�.��f����b�mn�r�9% �=�v\u0002����]{V�~ZМq0M��8\u0013��k��j�0i��,\t\u0003��X��������붙��n�\u0016�\u0010^gQO\u000e��w6�J�c\u0010���*g፵=��M�^�\b��t�\u0014��E߿��XPR�\u0004Q6\u0003�d(�nI`\u0011��'��,B�9��ކ\u001e�\"��?�Wie\rǧU#�h����Ab�\u0016���M!���$�m���=�Ă��\u0002��I����Q\\���;���\u0012��.�\u0016�|�/T}\\�\u0000T�dV���\u0015_��\u0007U��F\u001cGd��`�T�����K��^s��/A����K���9s�q/�\u001c���i�.*�P%\"��,��z�BR���d_VUϻ(�X��N�l�n�� \u00044ɏs�&p|g��*\u000b�\b�İ�F�Y\u001f7\u000fU�\u0012TɁ�\u0016\u0007s�aq�+JZEwHW�udW��v7�����\f�i�C���&\u000bc\u0002!\u0015b���������z�$�\u0004x\u0010�\\�\u001e�>,\n�{\u0004AJXxq�\u000fɦ�I�\\�\u00109\u0018������0O�gr�� N)@���:Pe�I)g�6����ͩ��$�<�y�\u001c���.\u001cm\u001c��k�\u00151gw=\tc�>*hK����J�L�\u0001��VÃޕ٣Ab�\u0017\f��Lݍ���VY�\u001f|\u0017�\u0012G#\u0010�,쯀\u000ew�_��o>H��\u0007.Z��Y��������#�n���%K��*��MS���\r��F�fL�h���7x��\u00145���T��__�OϪ�6o\u00015��t`s藁\u00115���P�@�$������r�)��&��F����\u0002����\u0006~5�8넨���\u001c\u001e�Hx\u001e<�5D!\u000f긤AXR\rn��T�h��εN/\n+����(�k��k\u000fF�d����>ȲcTX�nU\u000fVE\f&�Ս\u001e^�&��P��\u000f� \u0018�d�\u0007��\u0018���䠼J�%�w%:Ea���\u0000�槠&�jC٥�@9�3|S�\r��3`\u0013S�U��\u0017Ȋ\u000b�\u0010t�\u0012�Hb(H�\u0006�wV\u001c���h\u001f��p?&>�yҥ�/Z���!\u001bU�����o]�?tz��A_�\u0017 ���\rDc[,�8e?�\u0019\u0014�`��.�a3���GC��*�s�X��\rV�`�� D�@J�d�IA�����A�\u0003\u001b��ܵ]b��\u0014�-�x\u0006�\u0012\u0013`��o�ֈ\u0001�wf\u0007�pV�g�xg�A4��\f�s��\f��k[�S댛���u7O�PH��\u0003.�\u001a~��\u0017�o��\u0002��0\u0000���,Bư\u000e\u001d]_��\u0019�\u0010ݍE�@�>���k\"]�㰟��p*Z7k��d.�\u0007\u0006�\u0016M&��?V�{�~)O�I�D�*���<�\u0010���5\u0005^�9ා\u001b�)+-%�Z~|���B\u0001xD�)\u001d/F��ʏ�;u�\"���\u001f$Y,�d��j�K�%��&h\u001a���Aԏ���h����SZ \b5�\t�s_z�\u000e��\r5t��-9����]sӂ�\u0010�3�_����\u000f\u0006�.�&��Ac�\u00174��L�W�':m?��\u000f\t\u0012Z�\r�X�P\u001f�?��1���+4�\u001c)L�\"vR\u0005�\u0005�\u001b\f\u0011���\u0010H�ܫ�p\u001b�\nj�ka\u001dJ�\u001b\\)�S8�\u001cT����0\u0003g�C-\u001f\u0002 \bBM~���<�:��ӣ\u0013r�Y����s`\"a���>17���#Kl��b\u001e��\u001d\u0002g!��\u000b�\u0014��J\u001cL']�\u0016{T$\u0003���ίF����&Ә��<9+����O\u0014�\u000b�nţ��\b���\t\u0011-�hV�_n7��N�9\u0016���!p�0\u00024\u0010>�?��{\u0012���)Xa\u0006\u0007�\u0018��8����=\u0018�g�\u0004��(��A$�6�U\u0013q\u0007�J�h̀\u0019O�\u0000_��W��/]\u0015�amp��Ԇ\u0015��e��&��6��6�=b�>}�\u0001�\"\u00004_k���ԋ��b�O,/�\b��\f�ߞ7�v�AO�\u0017H��L�\u001a3n�������g\u0017}��\u0003?\u001e��p4\u0000\u001b?�\u000f���V�Wm҃�\u0004\u001c�\u0006\u001f\u0006Z���\u0001\u0010��[�~\u0010Y�\u0010h׸���d4<\u0012\\r����\u001cCz\r\u001dczX�D�pz���*;�\u0015O�ų��^�p}Rk�\u001fP�ϤJŪY�\n��p�,\u000fČ,P\u0001��K�s4=^k\u000ePu�\u0014�?�\u0001��e?/�\u0014�5\u0014�d�\u0001���&�T��w��V��\u0015l\"��̾\u000b/�k��ҿ�¢��\u0004�\u000fx!�8n�m����#;XM�@���\r0SbOV\u0016\u0011{8��\u001b\u0017%\"(\\\u001dzs��C��c����bpf��;��f퐭e\u0001e�<.�����Z\u0017\u001dMģ\u001a{\u0002�\"�\u0011�&�\u00170��bb����yk���#��*͑�������B\u0004�\u001b�AV�\u0017\\��L�(�ѓ N�r������#�\u0007d\u0002\u0010�<�\"lAXIc�=��\u0003��B�\u0006�Ǚ_䂛�)'�\\\\\u001at\u0012�ۨ�N~鸟¥����{D|�R��I��\u0000G\u0005y-R1t���y��oW=�\u0014,z?���\u0011���*�8{#uL�a�|q�4zZ�$��\u0005����pH�\u000f\u0014�Si�\n���D%�\u0016��X���v�\u0012��\u0018�B\u0002�)�+�s\u001eZ�\u0015�Sc�J���S\u001a�k��8\u0006��\u000e�Y\u0006��UMs\u0015��\u0004n0�\u0007e��\f�\u0001��v��T��\n���\"G�j�\u0017D�m�Tiq��($\u000e�\u0003!p��\u0016��,��%N�.>�Ld�\u001d\u001c��\u001c5���C����R���KH��\"�%n�-ѯ�\\��N[s�5�_�m;\u0017��T�\u0011VE@\u0002!~#�A��\u0017p���z!���F�\u0013M榘.�\u001a\u0013\t���f�a@\u0013�l��G�6�`1���A��T��\u001d�\u000e\t2�%��T�@�\u0003\u0019\u001eی'Ѹ\ntz\u0013@ʡ���H_$M�+�\u001f:\u0001\u0012A��ר�L\f ׾�,��k�%�\n\u0014t�n�0ˍǁlJ�0�S��@k[J�\r\"�\u0017\u000e\u0016��\u0004Mz,3�ǗǢn��<5��P��s{�[�H�}qm��V�\u0007���\u0001���L�\u0003h�:B�a�pɳz_���\u00009�7���\f\u000e�Ѧz\u000bV�v�K�۽��@E�݇_{��b\u000e�\u0011Q� 3P�{ɽ�\u0019\u0010EW39.�Dͫ8qx�˧�\u0013���\b���Y�����K��U���*��MI��̵��=/ǭ.~\r�:�ub\u001fF�_���\u001e$\u0013�Y��#�~\f:L\u000e�hY\\v�E\u0003WzBBTg�\u0006.3y�-��P�o�Uқ�_��J��\t���ԕ�0�I�_�G�Dt�s�\u001c��]�,\u001d(S7� `��\u0004=̓~��\u0014�E�@�\u0018�8��\"�\u0015�����Mـ+��\u000eNCX\u0002��뿵\u000eУ��ZԅA�\u0004��n�E�OD鐽�3�T�\u0010o�G�*\u0002���]�\u0015�\u001b\u0002�&�;\u000eP��6�A\b�\u0017���M*\u0005�\u0014a��v�0j�,\u001a\u0014���=`��F����Mú�E�|C\u000f�uǘ���\"�U\u0019ɴ\u0003/,\u001e��\u000e�O\u0014q\u001eή-�\u0006\u0006��_\u0007Ul&��f��>'eU�Q[^��\u000ep��҇m]�ߣO^l�o\u0010ؿ��\u0012nB���l�^G!6\u000f{���f\u000bp�J9!3�6\u001f\u0012E\u0016�\u001a'�H�h1�nlK�:[I\u000f�q=z~�\u0002��FGV.�7Hl�%7F���\u0012���S��8��:��\u001b�,\u000f\b]\u0001��<��>�j\u0019�\u0003�x�'&C��iU'\u001d\u001e:\u0006\u0011��€\u001b\u0006f=�K��,�kR�\u0017�-g3��A\u000e�\u0017���X��<\u0013M��r`�ٞ;p���l�{��0\u001d:����s\u0015\u0017\u0012o\u0018��~y<\u001es!?���4\n :Z�<�\u0004���\u0001��\\u-\t�\u0007-�b��ވd�Z���\u0016n���ܝ�kn��/��Ϭ\u0001��g \u001fPf�)�4;���I�{$����V��R�a&�C�\u001e*O��U\u000eS�\u001aH��.�F�w\u001f����vYx\u0013\u0007�E^�����*\u0014�{1\u0010�\u001c\t�Ժ�\u001a���\u0016w�\t�}a;\u0016@\u0013Dk��\u001d\u0012voC>�\u001cg��22�|h�q����V��ަBU�|�sG���{��VI�\t�c�����I��H���uW�����\u00054�W�Z�~�=wO\u0002;�RQJ��wX���\bCΌ�!u��\u000b̲^��p\r,���m0\u001f`N\u000fW�\u0005��,��\u001cMh\u0006\u0018��[�\u0006���~J��\t�a^u���3A\u000e��U�R�\u001a�8))6̬\f�x���+�0�v!q\u001e}\u000e�F|ź�G,��p��?\u001c��v�\b\fBcE����U\u000e>�\u0011\u001d�j\u0006���;�'�\u001ab�*1q3\u0003R�\u0003��U��-\u0005\b�1���J�m\u0010@I�4��6TD2�A#�\u0017���L�3� \u000es�R��-��`���W\\�\u0004ి#�r��t(.�\u001b\u001b\u001e\u0001\u000eU\u0001<���\\H��MB�?@�@�Wȫ\u001e\u0001b�\u000f�Tu\u0014��kmWB���=\u0005���\u001cut��g��\u0007\u00185Z�n�$\u001a�N&��R��<��\u001b�\u0019���6횟��\u001c�`{�-n��2Y����4\"O\u0010v#{-��Z\u0013���H�\u001f.\n��7�|7t��{7�^�|�B��q�\u001c���\u0002�3\n�'��'P�'\u001f+g�+7�ż\u001a\u001d߮��\u0002\u0015����r�FŒ���ǹvV ��M�*��y���\u0007,)\u001aH\u0014\u001b\u0003Z\"�H\u001d{����n\r���e9%��SX�(\u0003�\u001f\u001fڛ�A!�\u0017Ԁ�L�Cц�a��-�g\u0005�\t �\"9\u0006\u0001�\u001by�/��Z�7�s�\u0011����\u001a-�\u0003W\u000e��V\riV���\u001a$O3\u0018�����ϟ�L�����F���-�\u0014�\\�N��bE�³r,�\u0012��\u0013�l����,A��w\u0005��\u0000b}\u000f��������\u001f��<��;=�~d�h�v�H��L��,@:q���pD9\u000b\u0010&�a�\u001f|9�e�H���\u001bW���\f=w\u001c�?��\u000en2��P���2-\f\u001c\b�\u0010Z��n�R6°�'�\n����\u0005jbq�R�-\n��\u000f�<~i9)6hv��Py��)�\u001e�6���\u0002$\u0019{��R���\f3�G��b\"��\u0010�\u00005\u000by7��i��#\u001d֝�\u001b/ˣ�^���\u001aD\u000b6+�Z=\u0019p�\u000bͶ�\u000b��?r\bV�\\�n\f�\u0015�#�F�2�_���NG���\u00061^�֖2��zY��^eve\u000f�:��^5J\b�T?�oI�pUy�\u001a\u001d\u0004��f\u0007�ЮWT��/C�M�䔻��#�ǀ�-#B0���\u001d��rV\u001b�U��\t��3�(V�xn9�\u001eq)c��Z� �a\u0002�u�\u001cRɺ\u0004\u001b�ޕ\r�D!y�\u000bJ\n}q�[���\u0000�H�mS\u0013�/&�\u0012Wt䙰\u0010�_��&���ж�mm��BD���O��A-�\u0018\u0010��M!�B��R�,Zi���v�CQ\u000e�d\u0006�j�D��`���\u0003�PT^�9y�\n&j��&�i�7�ä\r\u001dg�gHV�\u0015_]�\u001deӶ�Q�\t���i�40|L��\u0006G�� �Wr�\u000f^�ŤZy��pt�p�\tf(\fű�>�\u0011��\u0007�ڿ�&�\u001e�IY�� N\\�b�y!�\u001fyI:Wy�TN~[�X#���ևD6H/P\u0001@-\u001f��>`]\u0019�\u0016*\u0019���ϛ3v\u0004����\u0010l\\�N�v@���A,��?o�WV\u0010�*��\u0000Z�c2[�Ž�!�\u0018\u001cL��\u0014����׎\f\u001a_�TE\u0015G����>B\u0002JfUS��\u001d��\u0012�4�'��Cpb���?E ����ހ5,s'��A7�\u0018$���p�@��Iu�:\u0017�n-����\u0003�h+{�'��l�z��O񚵻��������b\u0016��!qP�}<�?1�\u0010�w���\u000e\u001f����;�8��\u0017`����\u0012\u0007\u0010�v~g\n��I��M�*�T���BP�P\\z����ݲ٦��\u000fv�{^]w�\u001aj���wUI�V�\u0011����\rU�bq\u0000\u0016��hkXa��N�\u0015��JU\u0003GVv\u0016���w\u0015�T���/\\\u0015�Ͷk��KE�Zu�(ތi{R\u0012p B�\u00016�aQ�i>WK�j\t�A2�\u00188����;\u0005\u001b+�q�B��B~(d�k��<�\n������.lu��#�NcEC\u0018w�'Y\r�q=>V�(\u0003?��wo�#G�;A�ZAt���y�y��ּ�5��\u0012JW��\u001d��;�\u0014S��\u0006\u0000����R�l�\u000f�}\u0018.4\u0000f�\f ^0/}�1�3�[\t.\u001eG�\u0016NU\tZ9j8�Qs�[򠬽z��K\u001e�Z�\u0002͐�\u001a\u0002b>HX��P\u001e\r�����.\u0005���1�8�'��j�Rz�ޒg\t\u0019z@/S(7���\u0006*֬\u0007���\n'\u000b{�z\u0017\u00027\u000e\u001d�r\u0017\u0014�s�j_\r���w�\u001dI\u0007�\u0011��\u0002�4�F��\u0000�\u0017?���,Ѻ�ї\u000f��.�����\u0014��P�uɵ\fNf$�i�\u000b�A;�\u0018L���b\u0003�&��^��7���#h����\u0014�\u000b�̵��׌\tP�񲂶91��gFS������>X��a=\u001b�੺���\u0018RR/a��G ��6y�c��FO����Q�&2�#�\u0004c�\"��j+棱��(\u000fp\f�⯴zӮ��)�J\u000f\u0001\u0002�\u001bV�m2��k�;W��gk���N6�*�\u000f,ۈ������{���\u0012m��\u000bцG\u0006'iB�%��\u001b\u0002V�*�\\�z={�˭@��������*e-X\u000b�|�f'j\u0005k��7�u�V������\u0005�\u0016�Fni$�\u001eU�њS�:Y�\u000b�Ӫ<���)�O�X\u001f35oG�|CJ&\u000b�AU�\u0018`���s#r�p��r�P�$�h�o�\bx�M���Z:�\u0010,(\u0017~\f���\u0004K+O:W�8~�D�Q��\u000b���sTpV�@�x2�\u0013���e&�\u001d_�i3�)E+��ݻF���H6ʂ��5���sΪV#����L�c&\u0004�\u0001Td�\u000er���\u0004.��\u000b@��[��\u0015O;/D(\\�W�\u0018�����\u0013� ����\u001cψ�3!;\u0004��񀝸��8R=ش\u000bQ���:V�h h�k���W\u0003�\f���\u001bȴu\u0001����p.�r*}��\u000b�f�\u0007��ڮ���[���\u0007b�E���K��'��@z�P�/Ik���y��؊[���\u0007U/��^��3�x����ao��R`�\f��C���jn\\\u0015�ff��)�X�p��\u0013�±b`2V�Q�pJ\u000b�Aw�\u0018t���a��6}��m��.eF7p�*\u0016����ᬲ%�W��_��)��\u0001\u0013\u0010�\u000b縡�\"\r\f$���aeeν�?\rL�!Ɋ���\t��h֡',�Ns�����\u000f�į9��\u000e�lM�\u0000�8}0��IRZ��V�ƷѶ��:�2(�\u0019r�Li�����|Q\\ fZd�p�_\"�zZ\u0001\u0006\u0007?n\u000f��\u001e�7\u0010#�B���w��t�\u000b5�د��3\u0011�\u0007�鄭��\u0014\u0013��еĵ�s]��M�V����#^\r�\u0016�\u0007��D\u001e�}˂5�%���\u001f��q�x\fL�7\u000b\u0012��,���'��EE\u000fm�N����\u0017�*\fK���l���mFMwٳ'��ҍ�Y\u001a���(V8�\\�_3P3�Z`�5��SM�̤\u0003�Z�U�o��\u0004#�b���\f �rC�CgKmS\u001b\u0000�a��@$��j]��\u0001�5��ˉ��N�2O�#�Tf�C�F>�c\u0016@ܕ[�mv<��\\s�R:\u0017|�$\u000f\u000f\u0013�x�mR*���)�ߕ�=z���Ҭ\u001a�S�\u0018YMb�2���\u0012h���\u0016=d��1��\u001a���\u0003�\u0004����*�e�i��\nn���L�)� �6�S�c�]\u001b-�&�x\f���AA\u0000��\"�=fg�p\fwi¿(\u0019���\u0014F\u0019\t`\u0000�\u0002\u0004\\l���,*\u001f����y\u0012!�^.\u0016�Yӓ�\t���AN�\u0018���L�l����G\u0015���[�t]\u00142�\u001eS���Ii�jt�\u0016x��)�Ç\f\u0012\u000bA8”\f\"Î��z���)�31B-y���^�A1PhP�j'\n��'ګ?U�J���|o\u0012w�\u0001=\f��O|\u0013���d\u001c`\b�T�u�S\u001aD3\u0005t��e\u0002�؉�\nR����b� f��f{�\u0015!�ueƩY\u000b��)z\u0003�֬/\n\u001eB=(Q\u0007��\f1�({ɦ\b�\u00071\u0010`�d�#�c���[�\u000b%d�Ɖ�����\u0006Rу\"�\u000b�0���|�\u000b���Khϳ��5h2�S����e%U6���n�lź�\u0007��U��\u0018�ac7��.��\b~�@\u001bɹ��;\u0019��f�jm$-!\u001cSk[y����͞|qA'�`�D�KWBF���òmJ춫�4ӣAQ�\u0018Ā�L��*@\t;�\u001eV\u0006C\u0011��fCL4\bj�Xu��OՒ�i��$Jw\u0005���\u0019\u001d�\u001a@���Q\u0014�a\u000f�\u001e�o\u0001+^�e+P��F\n3hJ-�J�\u001f��Sjc?EH��c؃d�Ot�i�s��:�Y��Ǝ[�L�<3wn��\u0006!Z�\u0004���||\u0006S\u0005��$��ù\u000b\fN>ep`\r\u0005�-܂TP\u0003T$�\fa.�n�O��[��W�[r-j\u0006��\u0007(�\r\u0010+�\u001aT\u000e�T��\t+-�\u001d�撕�\u000b:��y\u001bYȘ�\u0014��A-u|K\u0015+��i;�\n>I�'<�`W�ʪ�:��\r��Z�\u0015��׭�)H�\u0005T\u000fNP f�/Lm��[EZ��\u0019@\u0000\u0014�B��\n1��� \u0004���I|�'\u0016�O}��65��\u0013��\u0005;f\u0002\"��P�gZ:h#�AR�\u0018؀��a��5�\u0000n>ʊ�s\u0005�\u0011��?�wU-\nG�`\u0007��b��흕M��ז��\u000e\u001a\u001dOy�&\u0000�\u0012ӡ ��SN�l�P�ܞ\n�fβGB�O]��ٞsԋ�\u0013< ���w�\u0014\u0005�\tRO�\u0018�ě4���I��c}t%�vSSy��\u001c\u0017s�a���÷\u000f��z�Z~��;�\u0012�\u0015,*g(Q�\u001d\u00171\u0001o*\u000e ���\u00055-�Te��\u0018��\u001f�\u0000x\u0003��ae2����w\u0007M��O�N1��\u00148'\u0001\u0001|�����\u001a\u0016&\u0012D�[�e�Ś�\u000b�g�IS^ �2��ǐw��q�\u0013�\u0001��'�er����\bH+��h���?�����P}b�sߋ�T�>\u000f�x̑Վ����<��1�?X�)ɍ�\rIz�_4e\u0004�e'1�4�H��S.�\u0005��Ac�\u0018���a�\u001d\u0002��J�UU�^���%-S*k~ڠ^\u0002:+UF���\u0007���i�f+�\u000by�W�؃�]0�-@;M$��^���\u0011�\u001fD���PM�D\u001cdz������\u0004X�t�d��X�x\\\u0015�j�op�3c�\u0003YS\u0004*P���9���\u0000��\u0004��\nEb��ĥ]�ג0'�\u0000A�.-F��v�D4� `/\u0013\u001c�J:�=�F:���c�)�|u\u0015�P���h�\u001e\t�\u0010�cL��\u000b>�.�&\r>|?�����,\u0018��ʺ��\u0017\u0017�\u001e�p-\u0019�\t(�j�(Nts\u0011�h���c.�\n�&1-\u001d�\u0013��Bn�=W#�n�=��%��\f�z�n޲\r\u001f�(>\t6�\fΰ^n�\"'`�JJu�\u001c�\u0007�6��j�\t�\u000e\u000f���#�?7�B~����_#�c\u0013&n�H�\f���\u001c�\u0011�\"#����\u001bv�:l��~������O_n��*Z�.i�H�g̚m!A�[\u000e\u001d����z��\u0018Z�����Ic�:`j2l���.w.����\b��V��'���*7iF�����l\u0012�\u001f��5���;��$��J\u0012\u0006�.�[z��PU�A��\u0002��\u0006�Z�|������Gq�H����8����3�!$\u0002-\u0001�G]L�\u001b��wV�-4���N[��OB����\t�\u000f ٓ�A[�\u0019\u0014���b�ϫ��\u0017��ȗ��ۑ�\u001d�4LO��\u001eDk�ۭ\u001f�w�@��>�L�\u0011@�L���G��\u0013֑\ng��l�B�'�\"\f��\u0010���\u0002P_\t��Nؒ0݈�\r\u0016K:߶��\u001df\\Uf��m�̈́�\u001c�\b,��\u001c�[\u0017c��IS�\u0016q����gx�)T��:-�UC\u0001)���lZ��+\u0016�7���\u0011;!\u0002kl��G���9ߗ����u���}!{DkA�z�Ӿ�\u0000 ��*w�\u001dtN/g\u0002�y���\u001d\u0005\u0018����{�:���eDU� դy\"7���Lm*���e*��S��~c���ب�\u001d\u000e\r��@\u0001B��\u0000L$�x��\u0001�ƃ��1�\u0013��U(ʳ/Ilvo-oM\"�9]w�Z=��ɫ���}޹^��%j\r\r��0�L�\r��q|�t������AR�\u0019(���b_q�<��\t3b0��a�\u0007�a\u0012}��\u0018Mi�-�L׳����E\u001d\u00027�\u0019��\t�ƻ�˥�s�CZ2�`\u0011�\u0017V�2+\u0006_���\\\u0006�mы\u001d��y����tLJ��+\\{\nL�O\u0010��s\u0005_ b*ҟB\u0013u���\u0004\"ޝ�X\u0018\u0018L�5��96��-��M\u0018\u000b�\u000e�Eߌ\u001b��\u0005��$ ���澛Q&z\u001e���1фC�?\u0004���̇��Oz���`(?\u000b\u00078�\u0005q�Rꗰ/#\"v�\u0003u��0FA�\u0010�W��SL�C(��g��Hg0\u000e��zT��j���m,�,z+�y�F��ͼ����o���\u000e���}�\u0013�t��\u001aXM��\u001b���7�h4�9$�����wW.��4c`рc:�Lu�\u0013�A\u0005\n\u000eW7���\u0006ڑ��AR�\u0019<����%�vtB���~\u0015�\n%=4\u0014ۛ�\u0007\u0019ph�0\\?B�����*\u000b�\u0019�\u0011#.j�J��I���𶺾Ɔ\u001dؔ�Ԫ4 ��<_���/�*�\f�\u000b�B���#�mE��H:ա9ɗo\r����$�U��J��\u0019A3�Ŕ��*8�\bu������k�Rb�RN\nh��50Vm~����\u000e��k1\u001c0_\"#�\bp�+��熼S\u0011�;���#!���Vco�\u00007\u0016\f�\u001a��8F�\u0006\u001b!v\rQ���\u0018��\u0013]B\u000e\u0007���\f{ P��\u001f��]wcԼR\u0018�:��\r�\u0013�f�^8�\u0010^\n\u0005Rh���\"{��:������%�iOc\u0012���4\u0004�qQ����?����;���>����\u0002a�t@��\u0011W&�\t7�\u000f�v��U�7O���R����A�\u0019P���@�ȿ\u001c\u001f��끫ݳ��A�\t�;�a�,��0@�\u0005V�S�)������i\u0012d?N��c/Gm\u001f+j����BЖgW��#q�|�t=-��<\u0012\u0017\u000e\u000eJ=s���k�Tz���\u0013LAkcؗE];!\t]�؜M��\u000b�5��.V�\n\n�\u0004\u0002*j�&�ib\u0016tHo\u0007���\n`P��P�<�\u0002��\u0019�f70\u0013:�D���\u0000D\u0005;��\u0004�,H�v�Eã���/j\u001d�obk8�%�L�uQ��#^0p����*\u001d\u0000G\u001c���~\u0012\u0018�<\u001e�\u0018)�\u0016\u0000Š-:�\u0003ˌ\u00101p5ybt�d���!�%̒��ﬦ�\u0003��l4b��������s�\u0011[7��(��Z�o6E�k����\u0016�>��@k4���\u0015�A̬g�2��cc�����%�\u0004.0�\u001e�ߞ!�d�[�P�*�ǵp~��\bz� e�\r�\u0010��8��^���f���.h��9X���M�߸x�\u0010\u0011з`���\u001b�\u0007��\u00029\u001d^�\u0018��\u001b��N\u0017\u0014��O\u0001x\u001cŝ\u0003v�����\u0007�u��ٓ�k�L'��H��\u000b5t��\u0018bv�ү��\u0004�m,z\u0005��y\u000b�A��\u0019d��L�N���\u001f���m+�\u0012��C��\"l\u0014^\u0013�*иn�y�L\rj\u001btH/��KC�P��\u0012�g$�\u0014��~(?a�����J��4��-+|�����d|\u001dCV\u0013(�j5\u000f=�z;yU�\b�'���a�xd��H�>\u0016+szh�k���R��\u0013I�\u0010\u0011\u001a�P�Zor\u0019�}\u00197�S$i\u001c5s[ǝ=\u001e��\u001a\u0017�\u001eJ�\\��\u001e<���蘈X��.�2�k���!��A���aB�����*i�e�\\�]�\u001d��߀hw�\u00035��Fߛ��<ء�䊶�i籤�\u001d\u0006߃w�v�mI��\u001b�P�❡%ߐ�\u0011�\f���\t\tG��A�#h���\u000b�qZ�v���\nձ��)KFL�x�M��\"�'kQ?}�\u000f�����.�ɪ\u001d�4\u0012,`{�8v�q�\u0016\u0017�h��\u0007�T�<�c\u0014K��\u0004�(r�ٳt\u001f6B�P]b0\u0006_ٿ�8�5�\u0003����C\u0014�F_�\u0000�rK��/0r��A6�\u0019x��X�3~k*��p{�`��j���\u0019h���\tr�TI�mڻk�sH/%�-D�{0���u\u000b\u0013���5��-�h���� �\u001a\u0004�����.;lj\u0001�\u000e���\u0012d��3k�mP)XTS�w����6�K@��||g�Ԍ\u0011��\u001532���~\u0004���\u0006�c\u001dpx`�g\u0017��d.,f~=\u0000� ӯ���\"NkZ�U��w\\2Ҟ�ߦ�ߜ�V���\u0003S�V�%�NC�u�)i��X�\"K\u0011�\\o�\u001c��>�`\u001b\u001bL\b�l\u0010N���7\u0014��A\u001a�\u0019���X���\u0006�-�J\u0002�\u0006'���N�IK�$'؞��(��b��>��0�\u000b铆)\u0003\u0018;?�k��\u0007�R\"�5�.~ȴAc�P���..��Y����\r�⽜[(�^,i�M\u0013�a-���v��-�ӵ�\u0015�P�(\u0001�9\u001a�\u0004\u001a���\u0003\f�����|hg'�慦\u0004�i(\u0005?�k+����\u001b���цj�/x�54.r��|\u0010�}��ӷ1�\u0012���h�Hp(F�\u0012�D:\u00067����n]_p��|D�C���'l�\u0015��7��\u0005�3�h��\u0005�����b�S�{\r@��F<۞�U�{\u0016d*NF�şK���ʨ�A��$1��\u0014:)A$�\u0019���X�S����\u0013����^2H���P�Zq�R�%�\f\\�\u0005s�ō�ľ�H��)q��D�75]���\n8!�+f �q���af\u0019�w\u0004����.ŋJk��9D�\u0015��¼���ZA3�>\u0003��\r�Ҍ�G�g��\u001a\u0011\u0005]HW�\u0014\u0007Ͽ�*��v�D�g�\u0007k;*dx\u0005\u0000A\u0011���<���^�\u001eV�T2\u001e��2R\u001f^�\u000f\u001d]�p�\u0004�/>'� �A?�ʧ���\u001b*�w\f�\u0001���@D���|�&p�4�\u0012�T5\f:`\u0000X\u0018$<�H!i��P\u0017��m\u001a֖I�Co�\u001e,ZѪ�����i�Vl�p@l�W%���\u0003��\u0003J�\b�G.ԂO�UU�M�\u0000��\bS�}u�\u0013�\u000eK�\u0013���|sƾ�o\u0015ug\u000b�Q#��iF\u001b6��ҥ���.8�������c|�\u0017<\u0005G9\u0017�1/L�\\���H��\u0016୏�hAОt$RsU:\u0002�t��u戂F\u0013Z���\u0012��Hт\u0002�ھ�=��?qw����ʉ0\u001c\u001b�\u0019<�#�AJ�\u0019܀��g.;�\u0017e\u001b)t>c\u0007'���(���ijN�� $d!���\u0012\u0014��b��Q\u0003��;�u\u000f�WX\u0003�x�\u0000[d�u�`-\u0002��4��҅�\u001f������%��pZ]ГԷؖINPL�4H>\f�\u0011���\u000f\u001c��\u0001�� /��k��~7)2\u0017f)36 \u001c[�HAeٛ����\u000ekζ���qT$`���Y\u001c\u000fӦ�T/���.�����g@ux��pp�uf��<�\u000e��\u0011D�!�A>�\u0019���L�\u0012ދ����ßmK���c����\f�6oE\u0018 ����\f밸p���ĘAKeԇ\tYi��\u0017�0�\f_�J�ā�2O�@ǹ#�,#i�ޞ�����B%e\\�\"g�C캠�\b��!;�r��TUİ^I\u000b3q�ɱ{TX*�_��H\u0005�’Χݘ���h\u0016�\u000e-6 �$\u000eA�껐�K\u0017��!\u001a�?���l�\u0018#�\u0016�6ZW\u0006l6-4P\"R�\u0018v����\\\bޙ��_%\f�����@\u0014Z{�x�\n(i�)\u0017�R�\u0016Q^\u0018f�z��d]\u001f���ۛX]\u0014�/��h�𺮵�*�d>ۃ+pz���o�C��\u0004݁�;�\u0005�Dh�9��~_�)IҚ�'\r\u0003ڹ\u001eMW�8�X\u0006﹵E��A4�\u001a\u0004���sx\t�%_s�\u0019�DԾ*�!\n�%+������5<�(�W���a\f�y�Z��\u000b��\u0018y'���g�ɑ��6#\f�N����N������~��<@OWW\b𥠵�\u0000�ѩdB/��^S���wN~m�\f��,��C�*T���\t�=�۾4[b�o�b�}��\u001c \u0004Sݿb\b�;��(u\"��A�\u00061���5����a\u0007\u0002`��l\t�����5���\u0003�L�:�ڟ�ooy��\u000e�\u001ew�\u0000��}3˭\u0001�{y�%\u0015lsq�0�H~\u000b8k���u&�q��1r\u001a0���k�F���dpi+���ۏ�\"��޾'\u0006��|J\u0013���\u0015]��½�3�>C#)/2m\u001ew��\u0003.+�\u0015(�X\u000b7��Z�HF\\�ٯ\u0002��2��mC'��@B@�9k�\rz\\\u001d�*)TɅ�\bb��Hb��L���\u001e�\u001b���\u0011�\u000b��Ƀ{=��dݗ-�p]\u000e����AX�\u001aT���k�jJ���\u0010N�+� `�I�`\b�i�\u000f����~�\u001b�c^��N��x^�űBW&鄀\n�޷nV3$�#�;���\u000bs\u0019R ���v�!��tf\u0010\u0012\u0001\\EW\u0005k:�&�T��^+�]��\u0017�����\u001a�S?�]�z����IòD�\u001a�\u000b\u001d#�j(�B�|]C��\u0019@9L��Ě\u0001\u0013�C@n�\"\u000ec3�ϗ\u0013���.�a5du\u0001M\b�*�st�c\u0003:\u0006��\u0017�NOp�^��б��\u0018{��.[�w��gFP�\u0000/���\u001f�&\u0018�\u001bL\"�`T'Y��t.�\\�A�#�8k��g9Q(�R�\u0002�*��\u0001A;����\fBռ��\u00047��\u0000Q�\u0007\u0016}�p�\u0001\\԰�\u0003��xv�\u00052�\u0012\t4��ٳ��m4\u001d�-\u0006\u0006tЀc=�ٛ\b�¶�\u0010Y�Ȓ=t�=�M\u001cB���$�t�\u000e\u0003H\u001dk��\u0017\u0014��Y/:~c\u0006E�9��ep�z���a�����'c\u0019�,Ŕj��yh��AK�\u001a|���p���J�R\u001a\u001e�9��x���l޷�hn_��t\f1\b\u0011+���\\���։\u0018o~�D\u0015�xO��'c\u0005_�7g\u0000BЫ )�+\t��5���!1{\u0012�fS�榎���Y��9W�D�;��(R)34�W\u0007��3\u001d��*�Y�0�y(��\u0014�|�\tш.%��;���SU]�F�K\t6-�V���d���\u001c���j\u0019�p+�SZw׹.�鍫��.\u0006�\u0018�\u000f&�KI�\u0005�n�&\u0012\u0002�\u0000�!\u001e��A*��\u0000W�\u001b&J�O�,\fd\nV����TI�trZ��\n�B:†�]Hi��ƃS��[o��YQ�\u0016\u0018�\u001b*.�A�@���lP�\u000fMޗ�\u0013��nIl)�#\\\u0003��\u000e\u001b���\u001a%\u001b*�~b��\u0003\u0017\u000fl������\u0012�AT�\u001a����c��Rկ��B\u001c̽[\u0004+[\u0007\u001f\u000b9+f߈Ƀ_�1�z=���x�\u0014[H=BY��#�Z��RKM�ݗ\u0013\u0002�yĔ*In!\u0016\u000f��5�`_�}e[�TE�5�\u0003p@��\u0000����T\u0016T\u001drtHkK\tݛ�\u0015�=�*ы\u0013|��\tµ��T�Z#�J��In;rq��8$#�u�A�o_ޕn!�sҏ��U\u0015V\b�NA<��c\t\u0006��:rC/�/@\nYn�fh�\u0015�6\u0001�5�dž�W�\u00076�ͩ̂J �_�e}g!�a!�!���E���S��\u0015\u0007`�Ƞ �\r��x�Ɩu\u001dt-�G��\u0016=�޺��'g͞~���\u001b\u00030n�\u0018��ׄ{\u001cU�m�\u001aJ���3�.;�����Zf\u0004�a����\u0006IqP�C�\u0000&�7�Y�(�H��-�\u0011�AJ�\u001a����bn�f`\\\u0010�\u001b�I�$��\u000f6��R�o{[�\u0010e3�(/��k֐%��2�=��\r@�S2�\u0006����H���a\u0001��)\n�|߭�N�\u0019=:��3nې�Y1�\u0018A��T��PT�\u000e�Q\u001e��B9\u0010��K�Yh��\u0011D�^��\"����qC\u001a�8F�\u001d\u0010��s(;Sø\u0014���\u0012��\u0019��O޿�ؚk�9\u0012#|\u0019\u0015��w��7���!I#��8�3\u000be�bً�6ٚ[*�C�Eo[��)�n\u0012<�_���ڠ���)��(:$P�Z�\u0017W었�KeT\u0017s\u0010�Zk\t���(K�U1�厌�<̠���a\u0012�\u0018}�h*:�?0�n؏��W�m\u0012��)�K�\u0006�\u0014�w\u0010נ[\u001dJe$�\u0010�AU�\u001a����s��7˜��֍��T��v\\��\u0004�\u001c\u001f�D\u0018��77O��te&\u0005[t�H���w%��߮��)����L�kN\r\t�{�n\u0010ej\u001dh\u0015��SA[}\u000e�A����&�q�\u0005�_J+��%�y|R�����\u0013�N%xc#����\u000bt�eS�F��V��\u0013\u0003f�]0�f� �\u0005�M6g�o�~�BJ���\u0016��\rD\u0005]sf.\u0019����\u0018��-��r}Üa\u0005»\u0016�~��7k�p�\u001fb�g��J�ݢ�Vd.w��\u0006��]o����m�\u00142�L�?�\u0017\u001f\u0003�����\u001a_q�ȱ��U�Q�\u001c>��i�ZӡV��E�Tc��.C.EuT�A\u0007�)�\rq?�s1�0\u0003�.��_�\u0001�t6$[,�;[]\u0005�i��t�vL\u000e�*\t��Ov��\t�\u000e�AH�\u001à��p�k������~F���\bO�O�\u0010T�\u001dM\b�\t�\n�q}\fb\u0012.�`�P3N�-�\bJ\u0016Լ���4RE���f;����d�7����O�\u0014{�\f_��\u000e\u0010�\u000f��k�2{B��z�̗nS\r_��Ֆ���y�~P�Pn�\u0003 \\�}ù��C\"\u0006���ѥ�\u001c�˼G�T\u00104�\u001f\u000b����n�D+8\u00188\u0002��[\u001a�R\u0006X�?giC�4y�ƨ\u0006/�E\u0017P�$�iM�с�I���M���\u0016S#�1��\b3���'��1�\u0001��\u000e��\u0017b\\3%Ě!�T��\u0018�����`\u0005\u0005\u0015f2�\u0004g���\bM���3ό��;\u0018�MT�O�F���s�\u0013��R(*#�\u001e\u0003�yl�\u001d|\u0000:�\u0013�v5;���\u001d���@[�L�\b�xi\u000e�AF�\u001a����brf~f�9�:�\u001b\u001f\u0011��\u0014��#���r��/{��CJ\"\u0003;����rU'\u0013�i��Т\u0004]�߅Q�H\u0015��[\"헬\u000e�P̙B��\u0017\u0006o�p��B�����-.\u0019�\tB{}\u000e�_�)e\t����'\u00159�*�\"V�i��\u001a_!�4��]T�`� �M\u000e\u0017YXV���<�…G�k_�\f/\r5� \u000e]b��F?�^b2$vL/�u�\u001d�\b\f��\u0004�q:\\Id\u0015\u000b1������n\tX��u��i��m�ӊ����=��VcGk\rTj [��\u0000�z��B�Ѐ�de�Z\u000f��L\r\u0002��ݝ�e�7b��L\u0002x ^��\u0001�I��)�ɓ\\{��� *��W��q4J6*e�Ud�$!I\u001a\u0007\"��W0��\u0011�AP�\u001a���s��nL�\b$�y�\"1�\bI\rL�T��h\u000b�\u000b�<�\\<ȳ�W\u0004\u000b>��p�\" ��r4���˯��U�\t�Q�V\\q�����]��\u0016��g�i\u001c9���\u0001\u0018����^T��2��N2��F�$�6R���q.)�����t�0\u001e`�7\u001a�ɳ4|���W�.��$�_�oc{O\u0013�-��fB4{�@�\b?Zu'�-PG\u0017�\u001e\u001c+TORP�-NR�\u0010ܗ�76\u0012\u0003q$����{eoE��'%��u�@ǮJ\u000b�nf/�e\u001d���p�׌���[t�>A\u0011�,x�\u001f�.��5l��0�`\u0016��/���L\bFW���\u001a�\u0019���\u0014���$�(\u0004�\f\u001a&��\u0005.��\u0019�\u0003���:\u0018@ل2���\u000b\u001cx\u0019UJ\",�nTf]�SJ�n��Ȥt���;�<��\u001fE���׬\u001fГ�ЌT��4A\u000e�1�R׍���j:�;�t[\"\u0001荼�Q8_A�J\u0017���ԏ��c5Z\u001f��c\u001a����W\u0016^���\nt�w\u001a�p\f���A%����J�a���EUNo,��a?��t��uL�2�o�\u0010`�%\u0000-A������Zj\nB�E����xg�\u0004����AO�\u001b\u001c���c\u0015%z�4\f3�Q\u0001�j\u0006�X\u00189\u00194e�vA\u001b~�)����Z���\u0000\u0010�5�‘Hv|�Q����\u0002eŖZ�Έ}�t����<$\u0013�DlU�é}�\f\u001322ml\u0002��\u0013���\u001f��\u000f\u001f�ȇ\"�t\u001d9%�m(�͉�\t�\u001b\nt�\u0013�����n0�W#�]��l\"�3�\u00190\u0002�l�ٞN�w��n\u000f\u00188�{��\u001f)&r�2\u0010���\u001f1\u0011͵!K�6�&R���z#�Q(��7&��\u001f���N��(��\u0018�v(\u0013�D\u0018���͊g��✛\\��Ǩ-}��\n\u0004�~����\u001f�}�B��Dt�]B�I����x��W\r��={ĺ\"�T���ݦ����ɀ��ގ̂�.���\fc�~�K&1�i��AO�\u001b0���g�@�U���4�4��%��%iJ\u00044�3�F��ֆVR��fp���\u0014y�\u0007���Dl|�4\u0012���]�Z�\u001e�!\u0019��#K�\u001c�\u0000�&xse�\u0001\\[�ҝ�p<�\u0003�)�����*z�0�\r2�>�|Լ�\u00124�Vw�D�fd[\u0014\u000e\u0014\u0017�h�\u001b�t�\u001dĩ�\u0001-&oS`�!@\u000ej�\u001b��91'���G;O���\u001a\u0006��ƻ�<(-��\u001c�\u000br\u0003�F\"�\u0010��_�\u001a�\u001b\u0012��߾\u0011J'\f>;X-�,��i�2�\u001as@M��4\u0007d\u0000*�����qjOԛ \u000e��d��\u0014\u0003�\u0002|&�R\u0010kX�6oUhq �Ґ\u001a�s/�\u001dJ�iz{l��5\u001aj���\u0004T�%\u0007)�-�d�$��%�\n��\u000ey`�����.qɺ���\t`�C\tUZ\u000fM��AH�\u001bD���c�!\rP�V\u0019�d�\u0017M\u0012�䔦�\n�\u000f\f�f-r_i\u0013�v��.¢`R{�8\u0004�Ե�\nFat���-�q���`e���g\u0017����\u0015v�\ri����Y�F<��^5eT\u001e_8\u0011'�^\r�UR�J�Ba\u000f�7d���67��\u00127$+��v��\n.�@\f\u0017=bgM���\u001b�i\u001e�Y\u0005EG�\fk�/-%��\u0019`T�h$�(\u0019��\u000b(\u0019���r�&G�B�\u000e�wךx�(S��`Ѐ��\u0001\u000f���\u0006\u001cV�'�~U]�������#\u0017��\u0010�+�勉A�ēϒ�ᦿke�\"\u001f}R��F_Mܒ�����w=\u0001�J?vu�\u0019\u0011>}9a�2,;\u000f��#e����AY�\u001bX���f*j��P�$PT���$�h��\u001f2T�nkv\u0006&���]\u001a�3ʓ�\u0005)�s8\u0013�\b\u0004$�u�\u0003�4\u001c\\D݈�\nWC��\u0005F�Y?��~�@ l��\u001eW�\u0006�\n\u0002�\u0015�;�Go3�`�k�\u0006��m&s���!�\"ӯu���$�4�\u0015JOs��H丨�t�\u000b�X�J�nj=�T���͒\u001c�-\u0016\u0014�Q�\u0018v\f�W�zO!='9o_���>9�Ƅ�\u0013�oÇB\u000b�\u0019\u0015\rl��%p�tS\u001aK�%\u0010��+;̪���>�?�twL�#IPc�\u0005;e��A��\u001bl��}b�\u000e�Qv�juKe�����a&wqx�~|�\u001c���6�-C\n\tRL��p�I\b+P,Ȝ\f��O�I�[?qF�-E\u0011.�\u0012\u001f\r�x��\\\"\u001a)�� ��M(�&\u0017z]��?\u0003Y��=0J��K\u0017(#ӟF�Q��\u0000���n��5%\u0004��/g ����0��K����ڽ�aN���i%R\u0011\u0003n�*���k(�7��M�Ƣ\"��\n\u0007r\u0016�EW��k\u0016��Q\u0005���W�A\r�=��G�F2�Sn=l�K,\u0005�A�x޺(�5���%T&w��)��\b��9�G+���EC,��l|%2)>\u0007�╜6{�����a~�\u0006������\u0019�ul\"�\b&�Ɯ>z _\u00199Y�c�!����\u000e\u001fة\u000f����\u0006\f\u0000cN�Ƃ\f%�l�l�Z�j���Mp��5#�\u0011=j1��dA�\u0013^���_�TI�\u0002B�*�\n�\u0012'�Ϲ�\u0005�^�N&�3��H\u0016/�\"�~�t\u001b��\u001a\u0016���\u00018zLs���|'\u0011lb3Z1��Q2[�\"�s)��eH_�ܣA\n�\u001b���XЗ�#����A\u0012��цI�?\u001b��W�b�-r����A�\u0005wk�\u0014\\\u0010QH>ө[ޘ��\u000eR|�%��\u00043�qr���v\u0005��~\u0005�m�\n�C;v�2\u001f��tGC� \u0013GH��d{��\fhO�!cK�ޮ�������i\u000b/�M��\\\u0012˻Փ�{�a�n=�Ӳ�Ea�cMx�]X~�\\�\u0006'�\b\u001a��T����\u0010B����t8MRQU\u0016�\"�����:\r��H��(�*4N[N�T�\u000b�\u001c�\u0015���<�z�\u0010\r��'|����[�̥~ɾ~�n\u001fŐԢ�[=�0F�N�\u0001�)�Q?\u0005��A.�\u001b����1da�&ӃfPy�v�Q7*��l�.�+�AV\u0018W\b\u0002����0A#�c�Z�艒����\u0016<\t�8i�9=�Ʈ�}�\u0018�͘S\u0012:\u00026�bo��t�CVz!h��<��Lj\t�z\"�8�\u001f���\"o\u0018T��\u001bwQ�@L�m�̀\n\r�Dl\u001b��s�v�\u0010U,�\u001c�Ą�a]�̪��M�H@�<�/J�]~ǹޗa����dvF�9\u0002�\u0015t��N��S�\u0011��s�+�\u0019z\u000f�X�\u0019�\u001b\u001ed;\u001eW=\b3�_�)���wmg��;�[̬�N,`�\r\u0017:_�A��-�p0r�|Lv�\u0004�|��O6`M\u001e��`,\"E-?����\u0015so��)�3\f�$*z��P�W�%՟_�A)�\u001b���X�\u001c��\u0001a\u001a�}�R�o����\u0004=��3���D�s�6`�A\u0013�;�1\u001a��.\u000e�?Ib�k Έ��|Z����2�=�G�gL[\u001a\\)|<\u0011%y�\u0014e\u0014U7��=A��C���]���\u0014s[�\b\u0013��Y'i\r>+c\\�υ����\u0015\u0007)�/(�5^�;�(\u0011\rr\u0013��]l�rk�r}\u0015�\u001eD�\u00182��O1��A̦���‚^���ch&�p\\�\u0013xEZk�RM�g�嚿<�*��=�}��\u0007��Q�\fV\u001d�\b�W��٧�@���!����_ej�%�9\u0002^�\bn�A|G��\u0014�jq'K�R���o\u0019�����m�C�\u001a\"���.MuA \"(��x�\t���A'�\u001b����۹���\u0004�z~���I�\r�Ӹ��N�pm;ՐH5�\u001f��,�y'\"��\n�=>�3XJv|��6�g\u0014��6���������\u001c��k�{Z����e�\f�E\u0000����\u000b`��T������c`SPt�\n`\u0016��}�'N;(\u0017-7\u0018EA�VȠ��\u000b�\u001d�\u000b\u0012�\u0017�\u001a\u0017R!fRH�T�\n̠}�g�!A\u0002�˂\u0004J�;��w��\"V�}K\t\u0012c\u0010�}\r�:sǑ��A���d\u0015�q@+h�\u0001A\u0011y>\u0015\u0014�Ω����]A(�INDhm+�\u001c�M�\n��eК+�bO\b\u000b5�'�\u0004�xf�}�\u0003ƀ&��\u001d��?�U\f(a+-����e/.�\u001f��\u0013I��AU�\u001bЀ��\u001d��K\bY\u0013R�tp�+>9�h�x�(\u00039,����>��ef�����\u0000yr����V�{�M�Ū5#�^�-��\u0018+�̓ŭ��\u0005��v�l�~�k3��k}�5s��\u0001��e\u001c\u0019�5A��-��4�O\u0012-����ζ\t�G\u001eS�a9��\u0012�l̑�\rWTף&�O���\u0014\u0010\u000e��a\t|[\u000f#��\u001fB�S��B��%��4�3\b�\rг�jS[�<ýk�\u00035�ȋ�_�\u001f[hx��\u0012\f�*��=�S�N-�-Z��O�ԘP��0z�Z�Օ�P$�Gqf�]4\t�\u0006���\u0018}Ld�a=���-\u0007;�b����,ȐE�r\u0005�2�z�\u000eF\u0011�9�\u0017k�W���\u001c��Z�t�Kۂ2�0�r\u0006%\fQ�U7����t��-\\��.��Q�@\u0001�n��x*��ݤ�U�A�.�%�����\u00013���W&q\u0003*m��yˌ��x%S��!G48#�\u0015\u0017&ѐ�<�ĝ��>L�\u0016ȹ\u0007G,/��ܮ_h�\u0005�@����\ba��\\o\u001c�o1���F�\u0018��;�\u000b#�1Ž�Y�O�\u0014l|/�B\u0011��wb�Co���Ĥ� {� ��t{wM�|\u0018�\u001dʣ$`Ѿ\u0019f��\u001c\u000fr�����g��\u000e�*g�0\f\u001a��4\u00058&ml/�]��!�Dqn\u0013�AB�\u001c\f��1���\u0002.ȇ�h�-Q �\u001a�Vo�Y=�y��2R\u001b��Y>\u0017Y\u00046�ܮ�\f�K��|�։��G�S��)��U�LJ�X�\u0004�\u001d1T�Y\u0007��-�4���\u001cz�y\nh�\u00144�\b��f�S�Ř�O�GӁ~�������_�hz��&�H���\u000b�\u0015\u000e*�q�$K\u001a��i�\u0002�\n\u0000\u001b��MP��\u0003�\"�+�H����2I�\u0002�{\"̥�\u0011�\u000b�\n\u001b�h�[\r�Fh{��@v\u0011�\u001b�\u0011vU�C;q\f��w���n�z\u000f��7��Օ��α\u0004�@7D\u001dyu�\u0018\u0002�Hc��ȑ6\u00014���\u001c��译v\u00139\u0019ے�p�[5����gM\\z��ø��\u0005̊��y�6�\u0014[J��e�5C�7\u000f�I\u0010����A5�\u001c ���\u001dϸ�O����]\u0002_U����T*���t��YX��\u0019�bpC\u0017���\u0012p�3a����'�\u0006b!$3\u0015ȇ�\u001b�뾵\u0018rA5#�\u0013\u001cK+��3�,�)$\u0006���#�.���\u000b�Q.б\u0019��\u0016�4)�Ⱥ��_ꃃԟRnKJMֻ��@�p\u0002,B�x�y'�M�\u001e1Ip�Y\u0004�t�:&-/��}��g����a,B�\u0004�k}���\u0005d,�\u0010Z�\u001a\u0004�$����\u001d0�\nQğz��Z*F�k�\u000f�f1\u0019]c���x��Ѱ,>\u001c�%A�Q&�Bs~9\u001e\u0006-�\u0012\u0019s�.,o��,\u0014{B����a��' �2\u0003\u0010\u0003':\"\u0004�R_�����m\u001a\"\u000f�\n�p��¡Ձң���\u0005|�\u0014�AG�\u001c4����CZXP@�#�����pL�Qj]X\u001f�\b\u0005i���\u001a�8\"T7n�\u0019~�3'���1�i��D4�L\u001f\u000b���<~ﶕ^�7ĝ�\u0015���f��iv����\u0014��6nV���;���3\u0000�/\u001b�m\u000bZ��q��yr>|\u0014����*��>t\u0017���˜ZV�1\u0002G*����̂8����\u001a(p�G�d�?*��{�/\u0016+v����h\u0013-\u000e��͐�dFJ�� :\u0010�\bP���\t[��`��?�W\u0017��[3��\t��IbR�x�\u000b>�\u0017͓6�02a=�p����\u0017��Z�\"\u000f5�\u0019��Eh~\u0017a#��%\fXTQPq�IO�\u0015o��ޙ>��mp�c\u0017�k~\u0004��Ƞ3����\u000e�W��9T&��\u0006d��G����ɖ�\u0013�AH�\u001cH���\u001b���\u0013��-�4�z«@S�yP�S�k`\r�\u0004v�)^of1\"�$�����n�c{P\\������?\bі��VH>\u001c�̡�\r��8P�\u0014L,W��1�2ϛ��#��\u0014��\u0006L8�-��\u0003\u001c@�,$h���|,.�K���\t_�\u0002��@�\u001eI��‚��3cY+���Y\u001f�ڍ�ISHH����8�\u0017|��\u000b����ig���̅6@�Ԍ�'l5\t�Jf�dI�,<�M�/�1I�)&x!Z���e�Ë\u0002Z*�E�'���{�F�H���<�_\u000fAfxa��/\u001fb�K�3n\u0007Z�=FC�KR�AR��bAł\u000b(!�R�\"\"�A��iXYlF�wF\u0019�]��i8��S��I\u0011T\rM��i9�[`�h���\u0012�A8�\u001c\\��Ɖ�YK\u0018�YM�(�n\f\u0001\f�\f�!\n\u0000$��o���j\u0013���r�sϪ[&T�֋���b&H1�A�Ǯ�d%�~���\u0005⟨�\u0005gu����}�\u0016��\u0004'@f�\u0017�\u0019=�B�Xϴ��\u0018�\u0003)�}��B)_����kq5.\\}��\u000e�3�PI���\b�A�\u000b�\\K��x���99��3�7�S����ͩ�Bь�\u0004��;2{\u00024�\u0002ؗ\\l{*\"�Ĥ�\u000e�jHx�����ͫ�nw����J�OY�=�_�aYX `�\u0012���:�|�􁫉�(��l�2������\u0014����~��$\u0007�_\u0017��z[\u001aɺ�:;�m�� �\u0015�\u001c/\n��8����I�q�\"�E]?y.�ȅ}��A*�\u001cp��L�\t\u000b�q���\t\u0000+B�j\u00198}F�ŋ�\u001aL�T��)U�\u000b���\u0010B�\u0012E�U\u001a>}u��K\u0017C�]H�綅\b[��.�/��*�\\�?T:�\u0001}�\b�>���o�&�݉�K��rX\u0011��i�*�Q_�\u0003iNȰ�����$���t������;�^���wY^\u001fmg�w;ky�G�\u0003��P:(�բ�l<��\t����\u0006�;���\u0016ʝ\t\u001e+�\u0013#\u0005�ы���\u0019pe���L�G\\��#�7�4\u001eQ;�� �\u001f����V�\"w�X\u0012�2\u0017}Eqe?%�<:�M��猪~�I\f_�c�\u001dڇ#\u0006=Ik r����\u001e\u0014���uT��s��p\u0011\bTh\u001aN���o�A=�\u001c����\u000e\u001cŸ\u001bGFnL���Ld�\u0002��K��@9#�Nn��<(\u0018���PT����\u0005��%�>}�\\��O�Ȝ�\u000e;�Q���\u0015��Xxs��\u001dž�C9S�ү\u0013�\u0007�g�u\u0010�3-�+�OV&�2\u0006}��ל��Ux����$�\u000f\u0015_�jm�\u0013R�A6�\u001c���L��\t�y\u0001�\u0013w�\u001an�\u0016��N݄�\u00032=\u0004�\u0019.o��k\t��{��%7O%��/VTB\u001az��\u0006��}���5e�\u001b\u000eRJ��R�Iqm8jq֒&\u0001��*�%2PZbU']�0�\u0010��0b�\u0001��=�W�]�AlMKP;�X�0m�\u0011<�8g\u000f�v\u0002�\u001e���\b�]�I�\u0006_�ϺPL��\u0017���0k\u001al���6��\u001f\u0018\f�;\u0011z�4�\u001c���l\u001bR�����-{)�\u000e�E��}\u0007�ʀ8t�\u0006�\u001d��\u001b\u001a2��Frؽ��\u0002\u0005iN�tw��ɱ��Qk7�\u0016\t��H=�\u0000H\u0012\u00050��h��h4^�\u0012u���a\u0018i��\u0005�\u0005��\u0016Y?W�dC�r2�6GV�\bL\u000em0�I�\u001eۣA/�\u001c���L�\t\u001dm˻&&\u0004\u0005�@b�%]�����J��?(�f�\u0014���^�����t�qz�4�'�j\u0002D�E�F31\u0013\u0016��\u000b�.4��{�\r<�}�\f���'����yz�W�w��ȅ�-�f��/�\u000b0J�\u0005Z���5�\f5܁#�H0�3\u0013bQ#�G�̶-*\u0011=\u0018���ё�l�꘨�2\u0018�\u0007�{\u001d�\u001f}!�`�V9��S`�OB0��\u0018T���\u0004�ԣ����i��K��u=x��[����Ȑ�{0g\f\u0019\u0006D%j�Z��\b\u0015��B�l��.��\u0012U�>D�\r��G*��|�,�ǥ��\u0019\u00131�Z��v��B��/���\u001b��k�\u0014\u0006���^Mwݕ���\u0013\u001e\u0001�1v�A9�\u001c���MWӱB�'S>޽��\n�CY��<�Fe��\u001c.���?;͖\u0016�x�YTI��]^�\u001f�ƈ���;\u0001��g��^ܷ�u��ϱ�\u0018.�y\u0011����J%P\u0010)q_\\g\u0018<���iS��Z�Ur}�];���K�KȰ��~c�&\\Cz�}�Af-]G��\u0010�����5\u001c��rw%�PD�\u0017�(��'Z�`jOz٨\t\u0002�\u0004\f?���\u0016�v�Xuf����x0�?���\u00171�4w�\u001d\u0011C��Q��Y��ѝ��pp\u0004��.7;��\"\fV��?�\u0010I*(�\n�j���n�U.; �xD�CzP��<�7ܱ%H;Y��RNz�`�l/���J���B�b殳ty�\u000b7s�n.W6 \u0003��\t5v6�A5�\u001cԀ���C�|n\u00123�(BV%(�8��tz�8�XX:�����2��Yj�>�FI�\\��9�\u001a��/�nm����U͉ޛ\u001e���\be\u0016<(,O,Ϛ+,&�1 -ʚiu^�xk�'-��\u0018T���S��[P+u[��ӷ?)_w�\u000e�\u0015��%\u0014zv\u0018�c\u0014L5��9D.��b��u&Uw���,y\fk�}o�_ֲVV@SV܂�H�E�<�ANI!_R�[\u0014`b�����\u000b\u001c\u0016���D[��@�馦eKUgy��<%v�u\u00184;�ɐ�P��ɴ\u000b����1��C�ߣA6�\u001c��X��O:��4Gȣ���\u001a\n�u�4���A�\"�\u0010����uRl��#s\u0000/�\f�����T�o^�oaz�\u0017�E�O W-�پɸv�m9��$`�R\f�[!�CH��\u0010\u0007�j��=�u���!A���e��v\u0001W��C�\f�R�Ss�\u001d�Щ\u0000xQ���/��нS�\u000b��uΈ\u000e����� �\u0016\u001dj\u0010�\u0004@�\u0003FMQ�-�T��s\u0012\u001d^\u001d�?\u0000_>�P�ý�$\u0001\u0002\u0019��*R����C!�o�$\u0017`<���8�!�oc�\u0007�T�4R��\u0010����x\"[1�y�cL�\u0016����h� a�'\r\u0012��o�~\b�1��)��F�m�AE�\u001d\u0010��ۺ��n4\r\u000f:��.[�8�\u0018�tK��|\u0012:�\\\u0015Dġ@l�\u001a1�-�����\u0004���\u00104g=@N��v���\u0018\u0019�ċ�n��~=z���'m4i+�\u000f4\u001a�����\u001aN�p�WJ���<ѭ��\u001a�UGs�P6\u001c��Q�\u0013\u0019�f\u0003��\u000b��1\b�ta�+(� �~CB\u001c]�6���q�����xh)�� Ah<��\tP\\~w���*ꁴ��&\u000bz\b�\f��TMT�3\u0001��M;�\u0007���'SK/�?a��\u0015E㿭�\u0014�KE7�rB5�'�)��A��4?6�\"3!��M\u0019��_�\u0003���}�Ӭ͜���\u000fTk�ms���ͣ�� �\u000b�V(\u0004z\u0000!\u001b\b�o�w���\bV�EoP�`<���7�g�k�AM�\u001d$��L��\u0000�hN\u0011$wT\u0014�\u0015����%F\u000e��G�J\u0016�\u0018q͜�\u000f�.��J����{/z�\n�����YX\u001f�Y�:�\t��}���7�jx�7�$��8���Ք�\u0001c\u001a��\u0004�=�GE�⬿-h�'��D'-�`��T霧�\u0011E�\u001a\f3\u0005\u0002f�.6\u0014<���Ӂ&T�\\\u001c\\�\u000f�O���A��RJ\r��e��[���\u0000�\u0011�\u001b�+\n\u0007\u0006��\u001c�k\u000f\u0001,\u001e��À��\u0012��P����؉���g���@Ћ\u0015H\u0017l�I�L�`d�)\u000e\u000b,9�(l\tv��8�K\u0014\u0001�t>P\\��$\u000b�)޾�\t�@�\u000fn0\u0001\u0003\u0003\u0001\"D͐���<(J�,\u0019>3��ZS>��&�^��\u0014UQ�M:��{�>���I\\CC\u0013\t�\u001d��*x\u0018��{��S�AK�\u001d8��L�tN\u001c,�\b���|�\u0012�����d�j�\u0002���s�8�X,�\u0013�d\u0014�]h�;'cB>�xT��\u0014�����\u0015Z\b��K��#�\u001a\u001bX\u0006���\u001a��ԃ*���Dш��Fw�O���ѨU\n�y�f}�.�'\u0018�M\u0006�f�J�}ܹ\u001b4�ߦ�j�(���/��t\fO�\f*\u00172�'�>��(���\u0004'\u0004l�%\u001a���ݯ�1yb<���k\\�\u000eG,7z%�s�\u0018\u0003Q�\u000f��\u000124��\u0002[ʃDҗ\u001b+_�X���eí�h�ZC.{dd'���pcG#���\\.���(�\u00122�g5�8\u001d�'��\u001f�U��^�ø�M\u0003x�BA���p��\u001b�2t\u0006\u0001>Y�@�\u0005{��e�N7\u0010\u0015ͤ5����\rw\u0007�83�LO\b�\u001b��*��A\u001dL���\r?L�؏C�D\u0001�ƌ�q/Tn\u0007��9S<�^�Q\u0002\u000b�\u0002=�Ne���\u0000\u001a{���;&��\u001e�{��gSM�Tn���0\u0005P�P�>�Y+�i˰@��Z@�d���\\%ƟY\b�b�\u0017$r0\brt\u0013V� ��Ͻ@›x���\u0019˦��&��h�3E�T�/����rp�N��⿢o\u00167\u0019�U\u0017��U�x �!��\u001e�\u0017�����{,w?N���G�z�\u0015R|L�ܭ\u001a\u0019\fo��?�9bn\\���y��B�#`P\u0014\u0007\u0010���Ic!����bZ���{��� �\u0006\u0002D\n�\nQ�[g[v���@��nWi8���\"ܶ�R���Ȕ;����/ߩ��\b�\u0007�#(^�\u0016�K�o��\u0017�\\e-B�\u001d�H�<�=��+�5\"$��t��\"]�\u0004C�'�d�\u0006�7�\r��\u0006G%\u000bJ\u000fb�C‚�1&\f�\u0019�kR\u0018񊼱���)E\f96f�_&���+�(�W1�fF�\t����\u001b�ǜ�\u001f�\u001d�!�M�/�9,$*��U��\u0017��Ɯ\u0005\u0015,+q��w��]�z��A��\u001d`��|�\u0013\u0016��/��Y�ހ�t���\u0007�k\u0003ޮTibm�]���5\\��\u0019v-��~\u0015Zm^�\tߙ�\u0006�>�S��`v�Ѹ����|%\u0018Q�J۴\u001a�a�����VT�a��5���y���\nm\tF���O\u001e�]c�8$^�^]cȑ�L�\t�\u0003[��\u000f(�\u0006�\u0015ڀ���\u0007�\u0011�:����\"�cn�\r\u0014r���bZ�V�r�/�0{��Ԋ����K9\u000b�ZC&\u0017d0�Eߵ��w\u000en��M���\r�6*喝�������H�\u0006\bw%j/�b,��G�Z\u0005ee3S~+/]�/���q����QvDZ��d���w\u000b���p�����B!ܪ8k��]_�\u000e�oq�^�W2\u0006);.���(��Q�]Mڳ0��\u000f��\u0007�jv%�6y<�@�\t��\u000bT|7\tu�7\u0015z�\b\u0019�\u0017�F\u0003��\u0014������(sC/T�D}�3\u001fo�\r\u001d[�HG��:�٫�A\u0015�\u001dt��L�0��\u000bCX~���2ښ�U��(��[\u00109�B$\u0001/,W[\\�3�);P�A*�\u001d����\r\u0006�\u0001ِ=$\u0016ZK��BCoL����@')>�o�\t;L\bA5_M�ݤ��p�\\�&�V'n\u0019��\u0014��\u0014���a������.\u001c ��\u000b�s4n�.�=\u0012P\u001a�T�Qg2\u0015�\u001a�w�$�w\u0019�7bJ1��j+B��KceF�rX\u0003]=�Y��'�q*WT��g�ۊ\u0013_2��h�\u0002�3�D�L��zV��c��|&��ȗ#5[��v��x�Y!u���LD=�5\\;�\r\u0002��h\u0017Z\u001d+#�x�%���ڱ�pb-W�}�!\n�\u00079H�2��R\u001c2�ȍ����.��%y��?�ڇ�&�`���yK�\u0006r�\b�\u0012-�f�vC\u000e\u0000/��\u0011��b]\u0017�\u0006:��A3�\u001d����d\u0006ʶN�\n����bT���s�,�\u0001\u001d����n�/>C\u000e�s5�����\u0010��.�����?V_�_\u001fߟl[3#}~�\u0007�>�ܒ󗉜��ʹ���x��1\u001c��r\u001f3����q�\u000fm�Ic3�r� vG�$o��\u000en�c\u0010Q�,�\u0002]����\u0012�lB���r~Rw��_X\u0006B\u001c��R��!����C�\f�K\u001c�^!���2��Ѵ�;�<�\u0015<����p\u0011G\r�c�SRܮ\u0012���/����D�|���h�k�\u0015x���e�X\bG��ͥq�Ăƻ9Rn|Ȏ\n��Kz{�_t_�\"�\u0006I\u0013Zxvp[�\u0003'\u0007��D�c��V�3&\u001a��\u0001�B�P�\u000e�8l%2�A+�\u001dĀ�L��\u001b�TU\u0016�g\r�`ys�^�jR�\n�ho��&��_\nz9�0��˧��a��\n�����.?��\u0011�\u0005��\f\u0004�Q\u001e\u00178�\u0010y�-M��l:6��\u001c\t4�44̏/;��k<�V�.��M.b��0��p��l�Z����\u001b���(^��!imw��A�O��\u0005v\u001c\u000e��\u00159YX2}��\u0015\u0007+\u0004\u001b�������Е\u0003\u000f!�9��\nJ}��M\u000fdIO�Rn�\u0002�\"Cc�\u000bϼ�Ѧk�np\n��\u0016\u000e��P]V!��I�\u001d�k��Sjm2�;T�]FeL�\u000e�Z��\r0��@K\u0011��e(Q�s{�\u0018���~�õy(4�ϩ���V��\u001c\u001bL!�\u0013�tb!l!��A\"�\u001d؀�L���١Ծ��T��O������P�vGQ\nb#HRW����\b_H�g�\u001e5����%3�v�`�o����\u0012&\u0011�'\u000b3Ҵ�\u0012hrU?赝>ż���h���\u0001�$���o�X2\u0013o��a�e!�+'Z �����/��ב4�]\b��\u0010��6�\u0019���\u0011�X\u001f�\u0013\u000f+�ؚ\u0016�R��0\u0013��.@\tyU�ڈRH�$\u0017k\u0012g��[�L��M\u0003\u0005�\u0016\rԹ�\u0010QE�\u0016�?�A%�\u001e\u0000����\u001d-\u0019\u0006��\u001cI#F���\u001ab�U����X\u0005��4e/�=�NC��K�*�C\u0013�\\T�����\"]ڸ\u0016�M�L-X��3փ �b���\rD�M6S$\u0018S�\u001cEp�o����1�a���?j\u0014:)r\u0017ZA�\u0000iո�.�]���@t�A�=�Jؘ@{��֨_Ub\u001b�\u0016�L�\u0013$�C�~����~Hz�Μ\u0013�c\u0015\u0003��+P\u0000<�D�����3(���\u00143@�*��t���\u0006\u0018�H�o5ׯV�\u0001�\u001f|�ъ,��\u001f�8mp\u0004�\u000e2������vrm�M�%��.\u0003$Kג��\u0018�n,j\u0013��u�-Y\u001a&)�\u001b�t��\u0016��\u0019�m�}!z#lW#?�J�A(�\u001e\u0014�����5�-�G�\u0007�\u0000s��\u0000ѥ?����\u0003�Ld*8Nq��&3v\u001c78������_[�?�d]s���\u0005D?���2��\u0001�J�\u001b\u001d\u0010\u001d\u0004��Z�7�z�ɗ\u0000��\b��n��Z�«\u0015�'��K&\u0007�r�#z��`�=�\u0003���\u001bſV�o��l]՜�\u0005\"Q鿄?08}�h��%����E�/�\u0019r�6��b\u0019J�\f�K�\u001eV9�����\u001c?�����Q�\u001di�D�g\u000f7\u001ee���Ve_\u0004�,��\u0012uL0m\"އ�_GJ��.wOR/\u0000�\u0005Fco�=}R��\u001e,��D��U���!]ܟ:�o\u001c\"\u000eo�q]��v�I9�^P�3���ќ����\u0012\\;�\\J�A3�\u001e(��L���\u0001�M?M^��ҀR������/!� �r\u0005���\u0016oi/��+2�=>��uK��\u0018G�3?�>�\u0011\u001f:�\u0003�\u000f-��\u001dR}_(\u0002��\u0010��/`6/8.�p\r/$|\u0018���]�R�Mb\u000bI]�T�\u001a\u0007��Q�2f����掉lU�q(\u00188�2 42���J*��e�\u0007^��dn鐟z\u001f�\u0014�6�\u0006Ϫ�b��2�\u0015�V9\u000e>\u0012k���\u0005\u0013>MC���H���S\"�\u0007�m\u000e��\u001bäñ\u0006��#EM��\u0007�!nYLN�Id���\u0018%���[u�%\u0005*`�u\u0001��.h�(��j�a���N�E<\u001d֯�\"\u0010M�/���]E�o�A:�\u001eP��L϶13�G7�_��[���TH\f�f��lFtb\u000e�om�^��MJ\u0018��ؓ\u001fT��>f�;]�2�\u000f�He\u001d%\u0017蚘p�-�\u00185zY�<���y�*�ii\u0000�\u000b��\u0010�R�����\u001a�C����\u001f�8E��\u00052�F\u001f��\u0015<�⻙�F�3T!٫\u0018�\u001b�]�&�5�\u0015$\u000e�~���\u0014��O\u001f�\u0015j;�Q�+���4p0\u0006������4]h\u0003>ĕ~�\u0018j�E�.\"͖:��A<ח\u0003J��`U��h�\u0015a�/�[�\u0015/�\u0004x�r�h�CY\b�\u0013�|�/f��FH+{�؊g\r�;?���4���T���7-\u0000����lGo1n�]\u001f\f;+�\u00161��A\u0014��\u001dC\n�pݏ��\u0018>�#i�\u0002_\u001c�A��\u001ed��|�(�\u000f`�gN�\u001e^�uű�$Y��yw+�\u001e\\���݇�\u0017*d]���k\u0014\u0013Z\u001c�w������Ҥ\n�\u000bP��N�Za=��N岫8�\f��\u000b�dѳ�T(�m�\u001a1�hz﷓�oR\u0017��\u000f�T�������u\u0016����ϊƃ�\u0016���!\b�c'\u001c8\u0011����X�y\u0006��|�\u0001�lH\u0010\u0015�\r�t�:L�g��_\fZ.�\u0012;�cū��\u001b��g-˅�\u001b�\u0000&\u0018�W���\u0018\u0004��\u0004�\u0007����z��]5 ��͵h��޳�\u0003�\u000ef�a'\u001e\r��\u0003��\u0017\u0005P�ktR'\u0003�\u0001�>ă\\�\\\u001c�\u0003��50�\u0015��B,Fڝ\u0017MP\b�g�l�9�!��\u0002)��[��8� �<\u000f�Cv��K��O\rG9�A\u0016�/�.9z�A#��\u000bփ�������ӞhS�E��\u0015����p7\u0010���is͢\bp/S] \"k5Ƞ, ��H����kM\u0004��H��}�x#T�\u001fç�F��;ώ�X��\u0012���f\u001a�줪M�g���6�C룣A-�\u001ex��55<\u0015\u0001�J�\u0001��0��2\fC�pe\t��\u0012G��\u0004��\u000f3�N\u0012��\u0010�\u0019\u001fX��o�����\u0019Y�6����\n�X.!��@�0\u0006Z��g�I�j��\u0010�2\u001a�trI>����\u001d��JL���3�2�oC�&Y�yk��i~\rM�j\u001e���X\n�e���\u0016��}\u001dq�y*��e��c��1��A\u0004\u0003\u0016eU�\u0004lj�n�Ö���\u000b��.�^��Ww�uD/���\u0003�\u0011�\u0006�E\u001c�s~\t6\u000f�0�u�Y�\u0002\u0018��\u000fMy��y�\"��\u0010��9�E�`�7T���Ŋ\"��Ͽ;�\nu+�č�v\u0000\u0018�|�\u001e��}\u0012�\u0016|>���u��B\u000b\\B\r\u000e�!1�`\u001cI3�\u0011\u00106nx,�X��)�I�;���\u001a�ݴ�bH\u0007�5\u0013�A%�\u001e���L��.my:��\u000b\u001a�Q�/�G|��'�V�\u001c���3t]��]@�q#�c\u0012,�\f\u0001�\u0004��\u001d\u0017i#ʥ=�s�9\u0011��)\b\u00033�Jew}R6V��\u0010d�\u0003\u0001�}^\u0019_��\u0005n��\u001e亯+�\u001bܖ��n\u0005�f�+�\u0014S(����\u0010-8�|d�����l�@>77�O�8�+\u0012f�S�K)p�'\u0003�`�\\�m`Q¹�G�RU٩�S[F���_�\f\u0002�\u0006��-�ѐ��yN8���H-OBb�hK\u000b�d���\n\u0014����*�fm|�\u0018�\u0007��P�b���t\u0007U2�q\u0003��V@$�y�^�z\u0001ڒ�\u0003���Yݔk�%$\u0006�\\�\t�Xб��ԣA'�\u001e����s�,i���|\u000f[V�а�C����g�%9^�D�$\u0015�(�q,��M8\u0000J�L�-�W�5u7�0I�l:\u00132r��oM��\u001a�>N�_$�4�pc��x�\u0010:$��o�\u001b\\�\u0004\u0016�\n�\u000e�\u0003qu�2�Y'�\u0015�5z���gq\nR$\u00198+i7�h\u001a�0\\R�؇ٵ?xI��!qH���7�Hg\u0013M�O������]���U����v_Q\u001dt��8���^Q�\u0016d�;��:A\u001f\u0016R͆���'7���\u001e��f����Lr��\u0006��>��r却[ʦ�\u0019�5�m�]��Kk*�}�܂6=��8p���T�\u001a8�&�P�6��i�>��)���\r�̑;c�Ģ��(q�U{��?�_�v����w+���p��kfMn~�\u001b�� US~\u0012BOLgޠ\u0006x�\u000eq�h��ϱ΀��+�c�?\\���S��\u001b�\u001e�Ok�\u0001{dG��_\r\u0013����\u0002X�[Ĥ�\u001dp�.��%�O���B�'+�\u0004�1>9���>de&:���\u0019�m%\u000f2���f�%?�V�bk\u0001�l�\u0001��A+�\u001e����B�CP?x\u0015F.�QI<���nDr\u001c��WM�\r%\u0000?�Z\u0014�΢�Z��{n�_��:;*�j���O�fZ�R!�\u0007�\u001eW\u001fm򰅘Q!\u001a'&\u0012=���VZ���k\u0000AƘj}��P4_C\u001442[$6V�o�}ؔ�x�J1�\u000e/������x�,��a\u000b��K�g��֨�P=���c2)�\u0001g{�M���N�\u000b�~P�X\u001f[�Ƌ`\u0001��Ѱ�!��h�\u0005ކ�ے\u0011���0�H|�\t�h\u0006\u0018���u�N�b�rhT�H��\u0011|����uព�l3'\u001a��\u001d�3�E�I��\u001dUxձ&�&EG�\u001f���y�v\u001c?��96��-3�EN�'��9�蒣AH�\u001f\u0004���g��\u000e��j��/�\u001fq�i\u0006ح6\re̴�H(ɭ�;\"_0�&��\u000b�0�bti�GK�4�NyJ\u0000\u001dƺG��&\f�=\fQ��w^�vH���lh�t�\u0019\u0012s�\"�q)��k�\t�����\u001f\u0014�8.l9����2�-�w[/,�\r�eح\t\u0003��\u0003\u0002\u000fé\fN���[��\u0000\u0013��h]md��\u0019�1]E�\u00181�L\u0014��=\u0015\u0010�vKA�f �����)�c1Ji�W5�%&\u0003;2G\u0017sE)\u000f���M�C�X#������\u0000\u00047>t�\\˭B\tb*��m\u0000�3�Av\u000b��K����\u0001\n����^,\u0015b+�W��p�1��p�����\u0019Q��N��8��\u00170╉\u0005�D�wi\u0010)P����B�\t��Fl���IZ@�)\u0012�ݑ�AH�\u001f\u0018��L�C�|���v��}қmB\r��B��\u001dܿ�)�|H\u0006*\f\u000e\u00067����?�c\u001f�\u0007��`�#ϙ���P��b͍\u0014Ը\r�|��ڣe*��\u0004�\u001cE j��vBV2�é�ـ(ŋ�4eï!�X%&�ۨ`&�\u0015L�\fZp�K���y��4n�ߴi��%�Rˣ\u0018\u001d�E}\r�K7�O)g8%���{|%*\r�)����������m�P���AVD���ہv�2�U]\t�|\u001e|Z�\f�aְrQzEsX&eF�d$N7��\u0019�Թ\u001d\u0004�$H���g\u0010��͘\u0010�t�رͰ3��9_\u000e��8�Pc�lhx�H��İ�l2���[\u0012��H�\u001dbLd��}�a<�k�\u0007�\u0004g�*8��\u0007|j�n���0!\u0012�A:�\u001f,���gw�\u000e\bc�{�j��g��\u0005�Sx���\u0017��7�ߠ�H��\u0014w�\u0016�L�R*�[\u0002\\2�UQ��0C��Z�J�m�zz��9�\u001fk��<2�\u0005�=��_�=�%��{D}��Es\fr\n��i�F\u0018�T�6��pZ\u0002-}\u001dѨWRK�ZI\u001b�L\u0011ΔJw��$ؘ����\u0018��%\u0002���\u001eL��/`���\t'fܹ��L*0\u0004u������}������\u001b8���\u0003ڞ\u001f+�@��.��:�)�\u0004V(\u000bp�e�An��\u000f֏DoA�.�7\u0015\\\u0013���\u001e��mH�43��\t��\u0011�B�nhK)��Q-\u0013p}\u001d\u0018\u0001�=]�<ߵ79#\u0010\b#\u001aOX\u0005���\r��{���݃�y�\u0011��\u0016m\u0014�A0�\u001f@��L�2\u001f�ia��L����4ʣ� ���O�ׂ.drM�+�~-$Fܻ\u0015���u#�\u000e��\u0016t`F�\nM�\u000b�a�\u0018�c\"�`��֬��1���6ZTf��;hoQo�\f�uh\rs�\u000f���>L���ʊ��\u0011���a�����c�h�\b�\u0004���k\u000f)!㽞0��T�덬\u001c:~�Gt���?\u0018�C\tP_��Zw\u000f��čow#��_����Y{�F�\u0015�b>�����m(&\u0004ݙ�ґ[\"��斻��’\u0003��2�w�\t� /\u0011\u00036�J�.�X��|��\u001b�e\u0018B�\u000b�\bq��G�x\\\u0011]�\u00029Hn��ź�7����eD�rb\u0002~��� \u001e�����A��\u001fT��|�$0�J������\u0011�򗣲l|>(\u0005��y<9M\u001dm�o�\u000bjD\u0018�\u0012'\u0000K~\u001bH\u0000<�-/���\u001d`��,ɯ��®�)\u0017�\u0017)J��Jx���joQz��i<��\u001d�8\u001e�\u000f�\u0010���t͊�*�O\u001f�\u0011 \u001e��-\t+�l����׵�\u0015N`h�����I�\u0007��r�_�&�P�L\u001d���'^�z�\u0015�\u0012�i\t\u000e\u001c]�\u000exW� \u0005\u0011�t��>�\b&�\u0015�\u0013\r�HJ�\u0002�t�\u0010�{el2᭑�W)�+Xzv\n��U��K,V���8\u001b$�[�Vy��!����P}�S}#\u000b\u0002C9���p{��?л�\u000b���\u0018�\b�8W�~�\u0001��F�\u001c\u001f��^��\u001bB�3��g%˅И�\u0000y4�y�#�f\u001e�D\u0012'�qw��ڟL\u0004�ʞ�4���m����y�����tp\u00150O%�VLw��-B��\u001c��\\,�wM���BP�t��}Z�=&\u000b:\u0007\u0013�v�9�a�F8��fw��.z�RN�A:�\u001fh��L�����O>�~��j\u001b�cb_�Hk�\"�[�-7��Hu��z\u0007�ä�\u0000��kuP��P��G�V�dGov���h�{�>M��܀���\u00050��N�\u000fY\u0012�ؘ}�\n\u001e%��OM��T=Vq�%z�+90QC������p�J�y\u001a~�Z�ُ��dw��!e3�҄��~�\u0010-���&]���\u0013|_\u0010���7�o\u001e\u0006c\u0005��4\u0004��K��ZC�\u001d�Ӏ+k��!C�T&0��W���\f�4\u001e\u001c���.f�T���Z����$�\u0013�~�>�qP~n\u00144k��\t-��\rQI�FK_�/�\rd�&_J|,��v�Ҩ����?R��=�I�QT��m�nKe�\u0017\u0002q\u0011��<&��A\u0019�\u001f|��X�xl\u0000\u0015\t�������\b��\u001a%�\u0005�����O�ti�3�am�D����L�\u0015fa�*����\u000f,�\"�Os�8��\u0003\u000bY���ٲ�\fc��y`��iЮ�ĻN.�\u001aDP\u000f�|rȏ\u0014�\u0001%�~B\u0012T�\u0003c.��=��>�hiH./����>\f{\t��5��f�`�PG\u0014G������|�!�$���b�<\u001a�u�G����SǸB�ʄ�\u001fc�\u0002�2X��4��(�qu��-\u001c��Tf�����DP\u0001�\u0003�&����`bȜ\u0004%/A���\u0013�lb�uA9\u0019��t��.�V��F/�p*�&Fpt�\n�>#��%��n�^�A\u0015�\u001f�����[2\f����\u0014$W+!�Rӊ����3�\u001b#\u0012�>�2hAao�\u0017d؝_�B�4���\u0014J�\u0015S\"9\bG�(f=�7\u000f�Vl�D4�V��׊N��L�N��\\�\u001c-�Y\u000b�]E�>���\u000b��|�:&��QIYع�[Cu�����S�f\t/���\u0004lBgA��\u000f\u001e��1f�n���\u0010�/mN��\u001036�)���ȶ�S�h�\"vpz����K��@�ށ��r%a���xD4�צ\u001a67�?\\J�\"\u0014���[j1�e%E�����\u0018q�\u0017��\u000be���\u001d`�É�n��\f�\u0006�;�\f\u000f\u001c\u0000>ߐ��;PF~v3�A\u000b�\u001f���L�\u001d,(=s�a{0������3�L�����\u001e�e���3��qp������A����J3V���Fr��{�a���C�!\r��rд����[?�D4Zc�?\f��\u0019���y&��\u0006��S��=酠\u0013\u0004\u0007�\u0019\u0003.�\u001c�\u000e`/R\u001d�T�V�;Y�j2o��m��o�A�l�\u0005�p\u0000�!\n~��կǐ�AK\ty�/ɤ�n�u�\u001f:\u001a�^�x=g�?RA���;��]F�\u001a1�J���\u001c=�\u000e��pw\u0012<���)\u0014�=����o��\u0018\u0017z\u0019\n9�\u001a\u0011�Y–\u0016���;�$����k~��\u000f\u0004W�fJ忣A\u001f�\u001f���L�#\u0019謩��p�b��A�˗J[��6D���G�wq\u000f�\u0013x\b\u000b\u0006O|���s\u0014ib6\u0015��T��$_A5�SR~$�D(%<�S�\u0015�.�W�H��\u001a؟�ȍ��u��'\u0013+$ ��u\u0015��|��G�\u0003���\u0002\u0017&������\u0007�T���\u001f�(��.\u001f��������7��n�9\u0013ː>EV\u0016��;�\u000b�#��\ri]�w��^E\u0016�C����d�i�b��\t\u00191/��\u000f,�Iz�\u001a*6���Q\u0005\t�_!Yŗ�=<\u001fM;p�%U4�\u001a�L\u000f�9y��{���\u001d@�~��JUq6�n���fIT\u0003\u0016F�l�\u0019+�R���\u0014]�\b�D-�A*�\u001f̀��\u000ed*�L5��m\u000f�a\u0016Lj�5�gd���}&��g�x�d��\u0011��\t�1y�5�c\u001b$�\u0019�2\"�����\u0013�8W\\\r\f�\f\u0017�A\u0001j��\u000e�)}ݚ)�'K\u0014x^I�\u0002��̿\u0000��Z-��\b�$8�\b���\u000f\u0007�?�=�\u001d\\� :��A\\�\u0003�\t̍1�쀬��Zl\u001e����6U/&��\u0002\u0007���\u0011�l���H��kf\u0017+��Q�3�CՖ��P�\u0001b\u001fû^\u0003\u001d�pV��Z{c�\u001e�\u000b�[;�#\te0���94���-L�\u0003P,\u001c\u0010m�S����\u0017޽��߀h�\u0019#\b��-�#n�Ğ�1�ထ�A(�\u001f����\u0012R\t�!C�\u0017C��R�A�\na��M\u0014+�&q��:c\u0010*�%%������/�e6\u0003�#�>�V�dw)���#\u0003\u0011-\f���k8\u0014F\u0014}˾&\r1Vv�+b�\t\u0006wg�͆>|�;���G�趣\u001a?��G�wjQ>�{�\r��L�qTl\u0002\u0001�?=��h��k=��'��qa��Y(\u0007�iEm��Ef?Cc��n礛�s_����:��c!0�WI�c\u001a�\u0002j?���Qg�$\u001d�%tQ��\u001c�CS��ct\u0004wm{���<\u000b��[r��|t\u0010�M7�\n��(�W\u0001��ߡaB\u0005�b��o\u001d�z���L���\u0000���H\f��H+[n�I\u0017��,͈^R9�j&��A-�\u001f��L��6�R�tݯ�����\u0012]�P�[�4�\u0011��z��\u001f�ԙ<�Gw��>�nm\\�������Tl\u001a�e7�@_V.�\u001d�߻�\u000fCi����͚\u0015�s��h�}8�'#|{J�%�\u001f���q��>�<�\u0002J�\u0005(S��KA�����^W��\bM����K���fV\u000b���̂\u0004�*�\u0015軛ո���3��p�\u0007\u0007\u001f�v�BC�5�ƴUYˉ�\b�\u0000\b��\u000e\u0016��ʠdO�U@-%O�9�\f�\u0013P&��\u001a��Ÿ�j�E\u0018\u00112;��睱W[ެ�a���\\n�]\u0019\u0015�Z\r]��ǯnu\u0006�o.�W\u0019\u0010��$E7���l\u0007�����k/c�M@?�M��\u0002�̽��A3� \b���t��\u0016�Q\fܕ\u0004ذo��\u0012��8҇W�!��z�W�6^���%}�}�%�Z��Uߝyx�'�O5�?�+���e&�\u0015a�SĄ������1[DG���\u0014`��\u000b\u0000\r��\rؙ�_�\u000e�\u001a޷I���1�0S��zB��\u0003霸�\u0015�H��W��jl�ee\u000b\u0004����J�^D>ܶm�����}�q��n���c\u0007\u0018~��A�;�W��\u0016�u��d\u000e\u0002ec\u001f�v�\u0002�e�����X[}\u0005\r!FK����}iê9o�1�f���!c���ND\nA$�ձ\u000ex\n�@�\u0006���Z��\u0006��<)���q��Qt��3\u0005x\u0018.ҫԭ}��\u000b\u0004����\u0005�ݦ�\u001f:컩s%/�A7� \u001c����m4R��ŋW��\u0011r��qV\u0005B\u000f��2!�1;�~��\u0000�Y\u000f�ݤ\n�\t\u0011�l]�>�I\u000f�a\u0019�6�Y��wN�\u0001�l��j�˹\u001d\u0013=oڌ�\u0003�﫵9U�k\u0019v>q\u0004�·?n������7�\u001b1G�&��\u0018&d��vi��30&t�5�j��\f�\u001b���~,�YY\u001fG\u0005\t���5�,�xk�C+N�s��9\u0018����\u0017{z��/\u00021�\tƄL�@:7�+&�\t�F�U�7'�P5�f\u0012\u0004�Y'Vs�ʟe�y\u0013�RK�\u0016�_cUn�q\u0014��ߏ4����\u0004\u001d�|��,^�`:\u001e����E˜��/\t�\u0007*\u0011�\u0016��\rv�\u0004\u0019\u0016KH-r�˯\u0001�>�T/\u0005��Q(}�F,��.�A:� 0���t�h��.T��,��,\\\u0018��EC���b�\f�'\u0006���#ì\u001dz��\u001a�=?\u001a}U��W�|V���v�p~=��6a\rd��W�\r�$AY�n�M2�0@\u0012���דw�f��`E^\u0011USMf��w�\u0016��|/��\u0010d�zzx\u001c��\u0003�ɚ�Ȁc�B��F.��;hǥ�[��~�gB\u0013b�\u001f����\t�\u000b���\u0016G�T�~��8�*����\u0001[�;dOA�f�\u0003�ʞ���\u000bmQ�\u0014ٽ�F�\u001e+\u0014\r��\u000eGft�ʈv���&��3��\u0007w�9�V��\u0002�n�\u001f�E�*��\u000eI�G��Lk/��i�3YW;oi�B.7��⺻�y��;��ɒ��S�\u000eW��\b��z�\u0013N�A;� D���t{�\u0017�~G��w#�\u001f��.�+��F��y���]b�\u0019���\n�\u0018�]Sܼ����2�\u001f�%\\��C��\u00172A\u0001\u001c�k��vߙ�\u0013��d��_wÓ�1��9��j9><��\r5��N�oc� 5�Qp�\b�8V6\u0005��0\u0003�=��v�\\���y�F+D������\u001b��ro:<�\u000b�:z�\u0015)LUR݇;\f�5o\u0018V�\n�\u000fsf\u0005���n�\u0000�ַfxU��\u0012%�����o~J�1�l��!!�9�(�yP%%N�A9� X��Mv��;ZnmX��P�6�I�>�W�>\u0006�:`��P\u0003T�#�A�\u00115sS^�`\u0013���a\u0012v˃��Qg�/\n�\u0019}�]\u0019�13.E\t�\u001a�}dȾd����\"��bP���\u000eW�\u0000;\bi��\u0012\u0000��m/�\u001d(ps\u001c�`#��ɂtx\u0000���tS\u0002��_k�\u001d�]L>ێ3\u001a\u000b�q��빢'��1\u001f\u001a^�\u0016?�j��\u0001�\u001c��q�\u000e��\u000b���\u0007!R\u0018w���;��Tᘰ\u001b�'��z1-��pk�\u0002\u001f�1C('@�ut�\u0016�Gɒa�tK+�u9��XR��`���3��\u001f\\�M۶|H�d�\u0011�\fD�F\rQ�Zo\t\f�!�B��6'OZ$*|��\u0012\u000b?\u0016���nB�q0>�?6�\u0000Ӆ�$c�Au� l��L����s\t�Wb\u001d��1�T\n\u0007\u0019ǯt��\u001b_�cۋ�7�\"���8����\u0010y'=D+���\u001b�=�~�B�J�\u0011.mJ��컫mM\r4�i=��&�\u000fH)4���_X�2�\u0012\r-c���H\u000f�Kbj��\u0014�\u0010�\u0007�%���ʜ\u0012b,9\\\u001d�\u0002lv���`�Υ�<���}���g�Lm=xL{Ƒq~zD%��U\u0014\u001ey\u0011�)�4a�5�\u000b�a�e�m�\u0006��I�\u001c�����A�v䕼���x�u��+�1��q�S�\bf�\u000b�\"\u0011\bsq���\u0003�\u001b2G\u0003+�E\u0003K�.\u0004�J$��޼��:�!\b�XIX��*\t�L���gK�o��9�`Iԥ����\u000f|Y�+���\u000b'��-\r�+ن�T�޺\u001f�\u0012��\r~�|�ϣk1>���e<ܢ�҃��\b=\b\u0011GtЊ`\u0013�'��*�œP\f|�\u0005�~�A#� ���Mx��$�I�P��\u000e��B���/l\u0019���Y\u0012O\u0013r\n�\u0015\u0019eV�.��\u0015�\u001e@�$�?n�drs#�%�`SZ!\u00151N�_B}��\u0001�\u0015R��V�;*J�waa,�\u0012�������������8�d���)O���.9����\u0013��U�F%�\u0016����9B�3�\\\u001788�I'��c��jG���3H!6�y=z��1@D��Ǡ��LP\u0018��G�Ei|�t�K����x�\u0013l}�B#�U�����\u0018�7}\u001b(d�A\"� ���My�\u000f\u001fS:���<=B�p�Q���y\u0004}^UoiV��`�ڍ#!�O�\"��5\u0004˖!Z\u001cNҠ�\u00180��\u0002�\u00178�6�2��{���\u001b}|�HK\u0006@�*��F�D�Pm+�����>k�L��3�Y�������X�nL\u0011'��V�w��9��黩۸_�%�b\nr�ZU��{��ݞ��և\u000e�\u000b��)\b9�[���o\u0010g�\u0013\u0000��\u0010����z�kx�3�\u0006-h�D}S{_Ƭ�7Z=�A;�;���\u0016���v��\u0007�)�\t\u000b��(d\f�E��+�\u0014\u001d�ZP,��̝'�k�lڻ��\u001cP��֏n�C���5��~\u0001'5@u4\f�/hғ�A\u0016� ����\f���Wg���K���\u001a\u0007��c/FΑ�\u0007sA$\u0017<\u0005\u001f́��_S~?j\u0011�(\u0007�j\u0002Z�\r�\u0017X��*�_\u001f�!�XEV�\u0005�Ԍ�y�i�u�W��\u0014$ʃTWtr���'\u0018 �t�w�{��ij\u000f\u000eŃ���\u0006��%�\u0015\u001d�S��}��\u000f��kL�l6e%\u001e��\u001d���D�@.��,��*��7��1\\:p���7p�����ힵ!\u0015Ī�l�Q�=��\u001fx%x�:�ǧ\u001b��\u0010�\\��ъ�Z�t�ǷM��w+��Ψ�EA\u0015_\u0018��g�o\u0011��\u0003\u001d�%��l\u0015.\u0006��)EFܤu�?��r^�*{d��A\"� ���L�?�VhR(g�&2CP+�g?T\u000b��c�����x�\u0006�ޜ2h�XC͠�,C��l\\\u0000�p����\r��UmP\"}�\u001bD�»�\u000f{�\u0007$V⾇(�\u0012��D|��r�������\t�K\u0004[{\u0019/a]l�d����\u000eBt��%1#��\u0002��\u0012(�|b~��>�\r\u0012&K�9�\u0018�BǺ�[�틕˚\u0019�\u001c��8J���Q�6qN\u001a\"�q���\"-!=PIJ\f�OM����(iDe���2��d����ӡ-�8\u001c\bh���lŌ��[���k��Rf�$)3Sֺ�z1�\u0010j�\u0012C��\u0011�\u00102��F�\u0005�%\"��r��y'f3���$'�=��A$� Ѐ��\u0010rg/��F�p\u000e�\u0013\u001c9=\n\u0003Y��u\u0019�~>����Q��\u0015\u0007�\u0004}jj��d��\r�\u001e���]*�\bb\u001a��V����Y'�_B\u0015<\b��P�\u0005�\u0010\u0015�w�xW�dbb�T]tO�7^������є�B^��M��h�F���\tvԈK�D�o\u0015�'J)\u000bț�|,\u0007�\u0016{v��:3U�*:\n,\u001c�9�G�/�\u0011\u0002?d�>\u000680��\u0005p@X9��Pmi�K�\u0018�v{����@0���,6K�\u00031\u0016���_��>�N/����c�#\rV�s?����p{BG\u0000���r��W�\u0011��\u0018݌��\u0013\"D]\u0012����\u0011Z\r�mA��{+u�B��A#� ���\u001d�ݤ���3\f���`\u001bN\u0002}��\bG�l��%�w~ˢ�-�Q\\�\u001d��-�\u0016\u0000G�[7�\u0000e/��\u0006D�\r���s\u001aP���\f��a#s������7Q\u0004��le��R5�rQ�M�Z�\rll���\u000b<��x�CN)��+x泋Eba�n��\u001f5\u0007\u0001_t�og,Pߙ�\u0005*�6'\u0014Z\u0003~,\u0004q9\u001b\\�F\"��\u0005�͍�\u0010\u0013㿼\u001c�<9���i�6zZ�\u0004�R=\u0000KC��\u0018 t�E�*���\u001ca�\u0012��f\u0005@�\u0013`*\u001b_+�^��-\u0014�\u000f�Y��އ�wnǷb:,��$�k\u0014�ӆ��T0�V�\u0003c\u0006j�Iij�:ʳ\"T'{�t.L\u0003%�A!� ���L�H1}��\u001a|�8���.t���\\�\r��z�T5\u0017���\u0019x\u0015S��`��!d�u�,�z��J+h��xL>�:��\u0017]��P)Fz�is��\u000e�_O����I\u001b�S��E�\b\u0017�B��*�/�u[����N2�xu�`r�@\u0014ɂm�\u0014>���3<�P��\u000b\n/��#�2�U�r���\u001b���\u0017R��?5���>��N��lCE�:_�'�C�\u0006�!��W{\f�\n��k��}N���O�l$��L��\f���e\u0011ij���\u0005\t\u0012,��o�ZǦ�\u001d\u0019�����\\)\u001eM�DY?�HMr\b\f��\u000b���U�o�h��)gTş\u001b���\nDQ*{��A%�!\f��M\u001f&�\t�6��\no8��n��_ؑ��1�\f�H\u0004&�w\u0013j��Ҹ�ݴ6cwn�����ڷ҉��uw�y]aWU���Y�3�u�+�聸��W\u00034P��w��۫�\u000f\u0006\u001cG�J8��n\u0016j�c�\u0006����\bE��\u0014�e$\u0011�g�\u000e3���s��\u001c�*\rB��o���p��6�v=J��y��m�p�ؓ��\n\u000e\u0004�D[~�q-$\u001cW�|��83&�V�\f��o>o��\u0005�8�\bp�ȘC!)D��.[:�k\u001f�O�\u0007>�%��\u000e�\u0016\u0019P'�H9�]V�}\r:ո�fֵ\u0000I-�)�ݫ����3߸�Cl��`����!����^�b@����v\u0017��A'�! ��L�\u000f�y�9�t �?e\u0007��\u0000P���[�Ę�A2��E��s\u001cE|a'\u0017��V+ ��g��G{&�\"$s:��P�&\u001a�I|��Mʥ�SxEԴ!���\u0000�K�\u0002qC��h��7EL\rP)j�(�qB �����\u0014�\u0010�8/�`��`2\u0015'���`��B�(��,T�r]2����9\u0015<)��%l�C����&�\u001b��0�!\u0012`\t\u0006���)Y��1T�B�z��\u0004\u0013\u0017\u0019�\r��\u001eL�eA7 t� ���\u0016�S�#�\u0016q�ܬ��\u0015�'�\u001aD�η2q��\u0017[�&гo��\u0014��a\t\u001e�C[6�3�\u0014!\u0000H��T6M�\u0005?,\u0011�`��as�׀�A1�!4��1�]㠠~*�a~���3��W\u0000����F�YY��(\u0005l[tp��}��dPC%�a��31`�\u001fȵ�\u000e\u0016*W�\u001ei��d�9��R5J�]N�u������ma�c�D�3�\u0014��\u0010\u0015/v\u0001\u0004l吡�y��30�D��}�0�!5y���\nb`BH�\u0005\u001e�:O�\u0012\u0006�}\b�i�����^XS���3��7����D\u001b+}ߠ.?5�;�\u000f\u0011�{C��T��-�*���l\u0002ϸR�_T��?\ff�ܽZ3��\u0004iIA�}�[���/�Do�<��\u0002\r�/�(�q�ūD0\n��M�H��\u0002|�T4N\u0011zj\u0019*����.��i���o��\u0019wVV�\u000eg[�T\u0002����˘���A��!H��L�\u001bj�[�Iz�\t�����h��\u0010Vg��98���$���GK�,���<�;�\u0012ش7ȥ\f�'�m@ݐ]��z��\u0004/՗ڨ9C��\u0012���\rsC\u0006��P�M�|�>|�!Jܟ\u000fx�Ћ�\u0006z�\u0003}&\u0000�\u0019L)����1� \n�XeѾ�)�\u0001,�T*V�������{��W^��N�\r\u0017_�1\u0012� �5s�Ntz\u0003\u001d�v\n����>?qm��k�za֢\u0003^3K6�N��0\\���x��\u000b��`����\u0010ۗ\u001d�ˢs>)�z%�^w#�\u0013�Bʟq��EB\u00172流�+��\u0013��{�\u0011��ɢ�:$�ňPI+>s}�\u001b;��@�M���'�<\u001f��j�OE���J\u0014\u0007���@3A#���\u0001ဩD�z�,]DŽ�jsc�\u0015�_��ZѶ�l�\rR���}\u000f`��\u0011\u0001�\u000f�o�\u0001����\u001c\u0012Ų�~]9\u001d�\r\u0015\u0000�O��x\u000fb\u0005���T\u000e�A��!\\���W\u001br��]�T�o���IM�\n�\u0017��\t�i�?e�f��B�;~����.R��\u0007\u0015'\u0014~\u0001>�\u0010C����}[m����F�Y头\u0016�7�j�f��\"+�6M\"S�ba,r��\u000e�\u0003Y�\u001b�5\u0001X��wŠ�\u0002\u0003њ1b\\A�7\u001a�\u001d'{Z8�LLm��{\n�\r:GH���7�D�GN�d�Q�\u001f�-e�,f��#�/2�J�4��6\u0004f8��=�4M2�]��U4S�\u0017d~�i\u0006�7w��k�,�9Oq�}�\u001e\u0012Hk5[�mOpI\rF�\u0015|>_\u00176�\u0010��gHN7�,\u001e�����ꎋ�����˕�7��-�Y\u0007r\u0006�`�\u001f_\u0019\u0003w\u0007�t��\u001e�b]d\u000f�}�ӿ-��V���}Ɗ�9\u0005h�I�i˼Y�:\u0012xa\u000f����#\n\u0007@x\u0005�\u0001!��Q�(�G�z�\rs�@Nɘa\"W<4�vm&�N�\u001a����Ӌ�Aw�!p���l�Bs�\"�\u001c��R�3�$�Cp�\u0000�\u0017~>EpP�M\u0004Xv���u\u0011��\\�\"Y�ؑ�;M��r���w��|Ԃ�B��hd� FZ���\u0001���s��\u0013Ą~DkψCa�m lB�|�a�}\u0004s[\u0005\u0000�wq�cWOfŠ\tR�:8��@\u0002�����\b4\u0006G���)KN\u0001\u0010#gM&���#kJ1_U܍d��\u0015 >Rf�.��\u000e^K!��I�V\u0006\b��\u00183�\u0007\u001ar�\f\u0016\\s(��\n�a\u0013��iP�^-\u0002/�-\u0015$��H�wH\u0011S�g8�aĆu��la��\u0000��d����ڔD�����=\u0018/��1��豅�\u000e\u0018bw!K�z�����\u000e\u0004��\u0017Y^�7\u0016�F�F%&k#�<����΢�y4�26�a1{-�y_L\u001d1\u0002�O�\u00048�\r������z�p�p��\u001a��;� \u0004�f�֭K��?,20�A\u001f�!����fHì�áVD�\b����x�S��Ǯ�����/%BB�]�E�g\u001f����xs���\u0014iϣ�\u001e��T�#bf���0�\u0006�\u0014����:��Ml���\t�S�V��B��Sm��ƫ�\u0013��:\u001bB����+�W<��%��{A�����aq��,VO��\u0011Lx\u0018-Jp���\u0005\nT\u0015����\f\u0011\u0013����(X��ózë\f<�u�N�I��\u0007G?�\u001e\u001cH��e�������򪍝���k������tS\u0015\u0019�\t�d�\u0019^ꢐ���m�8��W?���o�Oo��(wl� �wȬ:\u000b��\u0001�`B�Z��\u0018xs�w�*ż\u001fn\u001b0�A!�!����\u001a��\u0012t�S\u0013�NJ=�'U�\u0002�\t�`�l�\u0016��\u0001��\\\u0013�v\u0002F����Z\r�QͿW��Llx�SE0U��@�l��^;n�MG\u001f�O������h�=��1����?�R\u0018���Q�؉�\u001dd+�l\u00025\u0007*\u001d�•��3�q]�<�\u0011�\u001et���iOU�y��QSL���,^)P�\u0006rE.\r��\\\u001b��.͐V�܎\u001a�!9�K�\u0000ީ�Ma��3%\u0013�V[n�a����\u0005\u0003L�Odv�g�=����-\u0004'\u0019ڑ)@\u0005����:����43��2O�S�4|�-��\u000b\u0005�\u0005��]z�-v5�lR\u001d��Q�c�\u0018�\u0012k�\u0001J�2O���i���G�A;�!����c�G�5dvp\u0015\"�d���\f�D�j�F{G\u001f\u0016��U\u0007\u0010��3��\u0015w�t�\u001dE:žSB/���+���&=V��\u0015y���M\u0000�Da�\u0007\u0014� �If/E��f\u000b���p�%iYyP�̶k#\u001e�IۣAH�!����b؂��>��]�\\��\u0006\u001dۊ3C2��@?�\u000e\u001d��G��>�Xp�\u0012�D�Ȯ\"_\u0014�r��)�r�n\u0013S���\u0003��!�\u001d�\u0010��>h\u001e�Pl�*�\u0006\u0013�Ol���j9=�<\u0003\n�ҴS��|�<��\u0006St\u0003b��p}�l��Ͱ?�\t-�y!oI�(| ��-���J���W �0&�C\b�\\��|s����_iFD����\u0016��5��+����$6�G�\u0011q�]��@�ʟ\u0011��Ev.��u���^�\b4�\u0007�pl���� F�O\u001c���C�T����W,|MY��D]�!\u0006�N�\u0007\u00068�ƚ.�:\u001e#\f\u000e�.Y\u000b�YOv9)\f�Z�d\u001e�ؖ��n�\u001d���@�x(�h�,mBҘ��C\u001e$-�\u0012j�\u0001ۣA=�!Ԁ�MzS)-�vm\\�W�s��DW^\\R;7KǵT'�*�\u0002��>+����g���9S��D��n�#�$L�\"��<�\u0005�\u00067S3\u0014�|��8��k���]�_�c\u0003E\u0015��|[�0!,S�\u0011{\u0002v/�\u000b��iiŇ,�}��?b5;\u0014\u0015�(�\u0005�\u001a?o0W��x��W}\u001fJ$^��\u0000���� [\u000eI���b�\"#�w;(\u000f��T@\u0014\u0006��\u001a��\u0013rWIѸ�7B!\u001eP��/f;��j_\u0013�b�1�1�\fаK3���w-:N�S�Q:���Ĺ-[5���J�|\u001b'�֎��\u0017\u0016\\�\u000f��\u001evy�+s�\n�-������SW��\rR�)�@s�0�\u0002�X�\u0013\u0002��@ֈ����o�\u00188XdM�m(P-�AK�!���a������W��6�,K�M6\u0005g�\u0012[��\u0019�4\u0003lv�]�\u0010�\"��}�;&0�^�H�\u0018��,>�Z�pS����{�w~�z�,\r��QS\u0010�f\b��\u0017�t�\n���H%�E��F�Q�\u001d�pR��x�R\u0013��7�sYBDYL਄����b̢d%��RN\u001e��<(�]���r\u001f#\f�L��\f��\u001c���K�b]\u0004x ��Ay��?�`Od\u000f�\u001c�\u0000�wgڟ&�f\u0017'\t�p� C���lye�Dw2�Y{��~=��2�\u00130Q��>����\u0001��bi0:G�]�⦲Y�AL�\"$���box��#��\u0003�/]&A|Cw�ʪ��\t���NQnŢ^��़>ھ\u0014x*7O�)#1H���X\\���j�J�HrPw)�\u000bh�����\u0003��\u0011\u0002��������5;*_\u0005\u001d`q\u0015�ߘI�h}[B�V=G#�;\u001b��ڤtz�gZ9�o��6\u0012v\u0003�QW��\u0010\tp�^3G�Q\f읿v�!���\u0004\n,�\u0012�A��bh�vtM(��\u0000���Q\u001b��@�.[��;�xq\u0010�pۣ\u0016G�4�E\u000e\u00029�miB����\u0018�\u0002�����~g\u0003�\u000f$���\u0010\u001f\u0012ny�=�y9t\u0007,��$\u0019y��\u001f}�k�\n�|��\u001c\u0019&6\u0013��\tܛ�!4,n�0������SD��\u0011���\u000e6ܭ|\u0000>d\u0004�m2B�Vp�ⱸ#�Y�AK�\"8��M\u0011��*���?��p�,\"��S� \u0010O;\u001b�\u0018`���\"'�q�A!�����\u0003\u0019���b��Y\u0014<�l{WXw�*�n(���������\t\u0006Y޾��B�ktǬ��\u000bAMz<��.uOr�\"\u001fWn~10�^z`fGB��}��SC���IPQ�{��s�,��\\�\n\u0003�Ⳋ\fLJ�i�pT��\u001b �lK\u0005����;\u001f�4�ztrsh�!\u0006��n=}��!�ʣ�G�\"ڐI\u001f*�5\u0002.E�r՘�J�\b�=vY;�K\u0000�mxS�\u0006\u001f'\u0010em�WTS�2Gޱ\u0006䙚�\u000ergѰ�;{��mj�~k龞��d���m�\u001e��Ari.$טן�\u000e\u000f\u000f��:\r\"�i��o|�A�);��~\u001b��L첾f0\u00036P��\u0019l�A;�\"L����U\u001c��T�\u0007;�\r3���\u0011��\u0005\u0012!�e'�<��\u0000�ƒ\u00026̗9m�CO�x3�:�L2��T\u0003k6�q��?�6SֻA�Q\u000b�O8�-��c?\r*��x�\u0003A\u0016�m��5�҉}�ώ\t[�\u0018���CT^�*�\u0002\u0002�=l��%Bق\u0004�\u0011�W�dP5\u0015{\u000f\u000b69q�Y\fDd����'�����\u0014뿗\u0005�;�Rn��\u00029\tnk\u0019&�$���rNӑ��:<�6B\u0001n`:�U�\u0005PV]\u0011\u0010l+q\u0016��&C�󢖀\u0017��1D\u0011\u0000\\�v%�/q-�k>㜅\u0017\u0006��o�\u0004~9\u0004���W�y�݁S�O�\u0011cݛ�ͷ�\u0011f�W!��8\bEQ�W�\u0003[$�Z����\u00026\rG���\u001c�K\u001c�w�AL�\"`��M�[\\b��0��\u0015_�]��M�;\u0017�I_�\r��C\u0004�8~�$�\u0006�\b�)̦&�^\u001f*� \u000b�\u000f\u001b��[��6��\n+J�\u001a����\r\u001f�R�Y8Fm��my7)���\u001cpd��i���\u0014%@���\u0003��\u0011'\u0018Vz�%Ł�|Jh�A��ɐ\u0011GƉ��+{�\f\u001f\tq�,j�c+�\u0019@<�{d���W�\u001fu����S����%���\u0011\tc�2���\u0005��ӊ�H\u0013C\u001e\u0003t���5\u00078�i�g#\u0001샚Cr����T��\u0007ܞP\u000ftp<�\u001e{\u0005�\fr\u0005�����)�����g��\u0012�ɨ�*Y\tm\u001d�4�u�\u000e\u000e\u00132���&,\u0017��f��۽\u0014<�WKu\u0001��{��{O\u0016\u001c���@\u0017�\u0004�W4n�\u001f�}���L���i��t�A'�\"t��X\u0013�1�Yo��Ш�.6�\u001a�aDm\u0000���wy��G����a��\u0019Ҝt<\u0001L�G�9�~�r�F\u001f�Hf�\u0015V~\f�\u001b\u001fch�L�.\u0011�X�\u001aH��l�Y��-;���\u001d��Bj��RD\u0003�N�\b��*Ut��Q쟃\u0000e��\u000b_6Mx�\u0005�8����j�v��9R_���\\���/���ȶT\"�\u0013�,�`�\u000b�B(��[�9Y���\u0014G�Y��v�-Ovc�A�=3��D��D\u000e\nw\\$��=�\u0003��\u0013���qk��x\u0014�+\u0001���k�A\u0010��6��0�lM�k'VNJ� \u000f�\fm捆�\u0014���AI�\u001a+�E����u�����י,�\u0011�\u0010Ϭ��A/�\"���L�\u0007�o\u0016\u001d\u0006}\u000f-�W}\u001a�M�\u0006{�\u00120l��c��l\\\u0018%�Q�T�4��\u0001��̹�'� ��<=fd��6��I��\\�KNb\u001c���S{\u0005_\u000f���%�Ep\u001e\u0010\u0005x�Q��{Q�q/x�4��k�\u0007�а\u0006,4��.�\u0015\bOHo[\u00105ɖ8r1-\u0013��\u0005��E,_x63��\u0013#�2ޜ��s�\u0013O��83�L\u0004�8�����Su���褴smV\u0015'�����\u0014^�k\u0019�JDP���\u001e2�\u0004\u0017 ��Zր:)�/\u0002\u0001PS0\u0004'�#\u0014ic��G|:n�\u000ep��v�Ut\u0014\"�!YLNI�D3\u0006$v\"����.��ve�AN\u0000\u001cKMpx�\u000e\u0018��?=%t8K���A5�\"���L��N��U���Շ��!\u0005�M�\t����l�\u0012�\u001dU\u000f��m�\u001c��0�FÚë�hc���,@P�\u0005S��N���(�\u0010�@`}U�\u001a�\u00122*�\u001d�:/ʸBE�a�f\u0006U$�Z�\u0013z3�8=�i\u0018�� �\u000b8d�\u000b�ԫ�\u0006\u000ekn�S���7H���^3��\u0000�\"0\u0006=a��h�\u0003va�%��̵�1S�qc1�¶Q\u0002�s�V�q�\u001cw\u001d304��X\u000e�#G��\\�H�Y\u0004�p�����_���\u0014ˊ��\r3\u0015���\u0001�TTb�lH\u001f_���„�a�mc��Q��u��l6�Z+�|\u001d`��\t��n�7\u0000X%���\u0014o6�\u0019�\u001f1��/\r����d�S)\u0014v�\f��S�A:�\"�������i���t��3��?��2<���\u0002\r,�K=`\u0015��/S���\\O�\u0003 ���\u001bX\u001c�A���\u0004~yi�J}�.����/�=�oMyt}�F��w\u00172ѣ�I|�]^��^�Q�χ)S��Έo-�؄��:�����\u001da�\u001b6(M%}���;��9iKg���Q3=+��W3���\u0007�>TD:�U�q���\u001anj�1*�Vmܤⷢ�mW~\u0014�\t�8�\u0006+\u0011�\u001cc�H��8���\u0003��Q��\n���\f�#\u0019\u0000F�\u0007�@�x6�|��/�\r\u0001�I`�|㓗eeV.ȼ^�C~�H��\\B�����2V���ޫ�s.����V}/\u0007�\u0000=.\u000e��\u0001��^[��y*�[��\u00129���w�A4�\"Ā�L��\u0003wx��3F�b��%��W����\u001ce���G��$\u0002\u0001���}M�ڇx\"X�\u0018FP�\"{t�o(N(J.�Qi!-rV�\u0003f>6��)�;�\u0005�ς()���;\t6������U̟�@��7\u0006�� \u0010�\u0010!G�����/vI\u0000oB�E*e��\u0010g�NZ�p@��i�W�~l\u0016`L�7*�\u0014�<�M���0\t��ۋ4B�&�,��㞆{�y\b}~/�\u0004��A�p�\u0007FD�^�|`�#\u0012�J�\u001b(�v�ɀ_�ҿ?��\u0017?\u0014\u0015\u001b*T:I���$���s�=\u000e\\P7�)M�\u000b�\u0001�aOj\"]C)\u001cgW���>&�G#N��D:/��*�̽��U�g㠅p����u�A0�\"؀�L��1q{�r\u000f%��9R\b?���q�])�\t�v�\u000e��O�\u0011q��|����x�J���\u0003g���T̸�\u001f%?�Pj? n\u0000֧\u001c\u0015@Nӹĺ�rQ�D���aPg������͡�\u0001j���7���U�\u001f�s�O��R�����Q���ћ\u0001\"\u001bB���\u0018C��'��\u0003��a~\n\u000e�!��7ï��\u0004N\u0004��\u000b�:\u001d_P\u0000�\u001f[���h�����z-�\u0011u���4sJ�c<�zk昤�b�\u0016�-ۺ;��/�Ib\u001a��?������KĈ�5�\u0001�\u001e��\u0010��_\t\u0005�~n�O?i\nZKHΔΠ\\�q�2�\u0012`8J�\u0014��nn�|B�v�\\ٰ-9Em �l�˶�A-�\"��M|���Ę?��H��//l0�(\u0001o��\u0018o̗��\u0004gP��\u0007\"+�v���I\u001c��qՉ�Q=}N액8�(�Y�{\n�Q�����\u0003QQ\u001a�\u0016��(u\u0013�b���8@%\u001a���3�H�2�E=�⌠�K~�zƍ��\\\u0016�#J��O�e�a�X�\u0003`�#u��\u0003�ǔr��,q�\u0010��%<��C(âut�q\t�\u0018�\u001e��\u0014�%��R���7��\u0005��ٟ�%�-��Q��gi�˭��4\\�\u001f0ZG���fq/�\u0005l8Eq\u001d�z\u001cz\u001f9%�V\u0001*�˄�\u000b�A��C��q)\u0007h��\u0010ϚQt0o�����i��1)F~���HF�\u0016S�'�x�����6�A%�#\u0000��Lȿ\f�mE�'ʞ�m�\u0017�z�(��@T�\u0007G�L��[�7�T�X�P\u0016[*�\u0016t�\u001f6]�w���G�s\u0001���/��a�e]��\b\u0007�5\u001e3\u001dG2����,F��\u0000\u0005�M�V�y��B�� �s ,g�vx�ր\u0006�!�ϱT\u0006\u0013�7�԰�\u001an��6y>ݼ�����ټ� 9�5c��O\u0014}:\u0004��\u000e���r\u0014�3�C�\u00195�ݴ��|DD\u001b�3\u001a���vњ:=Zғ\u0003^<�|9˶\u0014�D�PM\u0005�K\u0014\u0007fKGqc�\u0010��el���\u000e�\u0012��}��\u001c����I!\u0007�x���ԃ�i��x��\"c~]��O�\u001cF\u001b@o�u���rb���O�k\u001f&�A;�#\u0014��L�\n�\r���p\bG֏�,C\u0007`\\����\u0006���$�~�:�ц�s\t\r�ק3�\u0019�_\"��{��\u0014\u0002�u�+\u0010:-]\u0004\\\u000eݛut4��ϳV�o�nn�_K�LX�T�}��������w�AO����CPʓQZ���^��\nK�����e��j\"\u0004l�jm��\u0007�!��dZ\u0002��\\r8�ъ����,|*�@�FQWz��i���\u0015\u000e\u000f9W�\t��9�›�\u001bE�𸇣~8���ņ̷J�\\�=�F�݇\u0007��P��}cy�w\"�z\u0014��\t���v8\u0018\u001b�fB��V\u0001r:(��c1k_�#����\u001c�/vX�T�\u001d�q\bE�\u0016�y*$\u0017(v3Z\u0001���qҦ\u0006�\u0017\"\n�h/�F^|�m�A:�#(���c\u000e�4m�U\u0002��Z����Չ\u001f6W�\u0015���R~dc�݇�JTF�����8��\u001fV\u001c\u000em��z2�Qk�>\f\u0006\u0017���g\u000f�;\\�Q{\u0003�s?wn�������d\u0004b�\u0007\u001d��>�\u0010˶\u0018dnk�\u0014��9^�dh����\u000f�;\u0017;Ȭ\u0014\f1w�I���w�az�ey�\u0001]3U�k�x6\u001a#�ô+�j430�\u0001�G��N\u0000(@�T��)Ȁ�\u0002Y�1]�P��Ǟ��>�o(��TC�>O\b\u000e83h��\u0005t&o㼐V�Gߧ&�o\r�i��K�JmF���u\u0002Y�D\u0015]��qTy/�\u000e��QR&\u00182m\u001a|���Z�|�޺HDS\u0015žv�r�\u0004�pcO��O9\u001b�u\u0003�Ob_�$�A3�#<��ć\"`N��څt�9\u0013עU#�\f\u001c�V0Z��\u0000��\u0015�\u001a��\f�w\u0019��б���և�HKU�\tbf�z��t�k��\fA��s��\u000b7�K��@�\u001b?�τN��+�\u001a�\u0004Z��}��b�\u0013\u0000��\u0005xB�\n�\u001d\u0007���J�\t/<�o�@��\u001e�ҡ�\u001fر#g\u001e�Ո�I^\u0018\u001c�Gǣ����u�����Z\\ځ\u001f\u0002�\r\u0015O�f�{�z�r�3\u001c�t\u0006��Ȉ���Ї�\b�\u0011���u,cH\u00146]�]��\u0002U߲�\u0000�\u000bJ�,����a&��^1��\r��y:a\u0017\u0018�,\t�\u0005��pr���<�\u0007g��z����;���:]G\u0002�񧄽�u�7�W�x��\u0002���3G%\u001d\u001f�B\u001c�#P��|����'���3dCXT�\u0006�\u001aX˃�1\u0001V�̙���!��nj����r'{��r�U>���F�hb�b��$��[N��\b����gC� ��&C���[`��Ų�ױ\u0014`��p\r�K4RV�^�2W�0�A|�\\G�\nu\u001b���X\u00010c�b\u001cKF�Ҽ��@�-\n\\�g��ߐ�\u001d�6y�)HY\u0003m'�\u001b�Q\u0017�\r��N\t�����\"�z��\u001fdž^ί#\td٪�Ɏ���F\"�a���\u0010��\u0019�<��\u0005k�A1`�Z?�z+���\u000bh\u001b���*�\f����w�T@y�d)�a�%,�}�X\u0010z�,ẍ́\"\b�Ҕˤ\b�1�,���\u0013���\u001f�h��DWn7,*L\u000b��;\u001a%��^%cl�k8/����{�<�\u0016\u0015�\\h�\u0004�\u0010���{H�\u0007�\b\u0000\n�.\u0019~���\"rw\t�\f�p�J\u0010LkGK��\\������\u0003_��Q�ƛ\u0003q���v�d{=�\u0013 E�\u0006nj�k�\u00196�d�X���\u0006���[\u001f����P4�\u0016d�G�����ꓺ�\u00185�������\f�C��&\u001bM\u0019\u0014�o�\u001e�\u0004\u0002��\u000e(\u001f�T��\u000b���c�3vктݦ�H.\u0013`l��Ҽ�朎�\u001fƢ�=2��\u0001�'\u0003����YiV�-�?�AU�#d��M\u001d����jh89ˎGQ\u0014���\tM�\u0002�@��+�c��9�;\u0007��7��3S?{'|\u000b'\f\u0010+B�\u0018�\u0015w1!��8&b�\u0019����\"|@sY{m�,�UyZﺰ�5���<�\bn\u001e��k~���\u0012R�2������\u0005\u0007\fe\b����U��f䍩~0Ih���\\c��z*ħ6j\u001d�7jo����]��\u00065������b��\u0013B\"{. \u000f�ii�\u0003߻�\u001dS�� �m|�f�u�����\u001e^)�\u0003��j��o�.�C\u0016.V#�\u0004�\u0004Z\u001a�O!@�C�B���=�Tz�R\u0003�=��`�+���ᵸ���t0\u0007�M)mqܓ�W���b�c������J\f~d��$����\u001b\u0018Cc�Eӝ�^�-��C\u00183�Q*�so��!н\t\u0003�I?�A\b�#x��X���\u0004�ҩ��3N\u0000�&C\u0010��\u0013�p��\u0019\u0014 \tNXg�̕h��U$���a�d�:D'S#\u0010SN�\u0012��Ji������S\u0003\u001eX9�t���\u000f����x��+T��Q��lp\u0014�Po�����q��\u0007\u00109r�\u001a�\u000ea�L���\u0007c\u00144�%�O�4S�*��K�_M\"�]e�~�\r\u0013Se?�s�\u001cR�5\u000fG.�\nW@�\u0003L�E�|��\u0006d�7���Jm�\r�L�\u0019F�z6Fl:�T\"�����x\th����`t���H�\u0010\u0016��K�\u0018�\u0016�7�9v�Ql�oG�JE�H3^\u001dm\u0012\u001a&Rږ�|d�A\u000f�#���XН��cY�\b\u0000�[��=)���r]\u0003\u0012ODe�\u0016��H'|��% q�cpN$�?S?��/��\u001b�!ȧ\u000b��?=D���P�8��A��н�/t�\f�f��Y�@\f\f�.�*/\u0017�9\u0013�\r_2ȸ�C�\u0016�|�j�\u0017X�~�U�V��sX[�؋3W���\n\u0018�+&0�\u000e�0�պ�o��M��\u0010<\u0011U+Q}*���\u001f܂�`�r�\u000f�\r\u001aE��ݘ�\\w\u001f�E\b�\u0003~�h��1��7ɹDz\u0018�s�0�>_@��s`�\r\f�*c��&�\u0018��怉�YBм�\u001f�i�[8\u000fE�\u0002\u0000���I�vPRC��)�A\u0010�#���Mz�%�\u001c\u0013���-�\u0012�D1\u001e̚�\u001c����\u0003��]��^\u0016�\u0015���e������\u0013�\u000f�\u001d+)���y��>�\f�A�u�\"#��){�b\u0017��\u000e���\u0007��G\u000b\u001d�W�Sَ �q!N��\t�\u0007ի\u0019\u0004��-;/�e��\u0011�,����5��\u001b\u0017X\u0003�BC��R!���I�:sUJL��I=�\"�\"\u0007�r���`�>?3�$��y\u0000��8�\u001b��ϰ��A���c�\u001e����֎w�\rk8&>�/]�\r݆Ra\u001c)��Ԍ\u0014�P�?�?`�$�Ql��pi\u0011��� �ۓ6��X�\u0004�v�`\u0002���@V\u0017�`%�A=�#����f\u000b\bV)�i��W���aޚ��z\u0014Kr(�\u0002���Ň◣�(��x��C�\u0007�y\u0013�d@w#\u001d\b{�w ��\u0018E͋�(�&n_\u0003���\u001b���!`E\u001b��1+�wj�oh���\"�\t?(\u0013\u0012\u000b\u001f�O(\u0013#Pj\u0012;�\u0004�\u0010�E7zБ›u�'���\u0016�\u001a�Ҫ�\u0016\b�t�\u000fרR�9D��tx#?N,�\u0004N�H�+�4�#�\u001e�����j�����-�\fbo�7\u0018Fq�KH7�\u0007~%�8��NrJ�R��ܘ�Y\u001f�\u001bL��h�Հ\u0012�[���\b��o�\u0006����z�\u000f��s�\u0000����\u0015\u001fb���3%d\r(B��GS/_���V>�\b��w�[|l�6� .G�G�&��@*¥�Mw�\u0016an\u0014�A7�#Ȁ��(�w\u001b7�&@��e\r���ǎ\\�\"J���7��\u0018�ŵ0k���~�?+�U?8���C�H�K$��\u0000�\r3�����ڀ�\nH�S�Q��̉\f�+��#�h\u0012�.�,~gZ�ľK\f6���P��F�\u0001���Wп�I�E6<����]boȳ\u000e���<��C�0�\u0003�rp\n�1%\u000eӓ����`k��K�DE�Lk��\\/�\r��\u001a*�S\u001b�\u001dS��z�,�\u001f�\t$s�wª�\u0000���\u0002��\"p�q1\\(P����=\u0018�t�\u0019@8�7�)o�_ʰ\u0004��4l&�\n�\u0016�z�\u000e�>\u0018\u000bjZ�B\t(Ã��\t�U��=�4p�ؠy~�Q�\u001f�򉒇��\u0013��K��6L�慖s�\u0013�AM�#܀��c�\r8\u001a�9v�-b��wE\u0003≞�l�b�\u0000\u0007\u0003v\u0005�\u0016?�n�I�Y�K�\t֊�C�U�\u001f�\u0002p�6�+�\u0014?�?�\u0017*J@�K��I���b���;��\u000e�2�T.�tp���f(x!G�7\u0000Q�M��\u0019\u0007�ƴs�)�zP�{G\u0013���0����j|D\u001b���\u001bf�\u001e��l4Frm,s��5�\u0001���\u001d�%�����\bO}�kSN5���zv���\n��c�Bk��O6[n\u001e��Ⲣ]P���!�9Q��\\�\f\u0007�ȁ���<\\&�\u0012� ��4N�no�\n\u0019š\u000f�\\�گ\u0000��\\|�+��\u0005w.@���;���4�H�%O�Rv�O�W-h��\u0015�,�H?���a(F��p\t涪d��\u001e�\u0012T_�T~;\u0002:C�n\u0013�A7�#����f���^�F�N\r������턡j o�B�mn5˄\u0002��N�<��5N��#_�c����)�!\u0011C\u0015,�n,�\u0014\u0002E���_eHJ+\u0010\u0013\u0000R�#��`Uf��\u0016�T���\u0013�C�\f\u0015����� �9�)o2vX�Ԏ\u0005�~Gxq�4�c̽7ޠN��[�_�e\u000fs\u0003*��z=�S\u0001�L�,\u001d\u001c�|7V����i��\u0019~�Y:']\u0012�'�֦SC[W�\f����\nh�#;�\u0003�D�\rc���D+�x\u0012�\u001b�B01\u001f\u000b�;�\u0011�NN��D,��^�j�ݎK�j\u0014W]�\u0012�O��/\u0016�&R&�A3�$\u0004��L۽�q<�ᔇo\u0017�k>�y�Hx��\u0013o�~-� ��HD\u0018R�0E \u001f�~��@��\u0012\tm������M!Գ\u0000�3���\u001d%���?J\u0018R1_�\u001f\u001b�4>�7��ҭ\n�?~�V,\u000fQb�\u0007��S4vH�<�l�\u0004�oB��SJ�\"�oax���OΤ���V\u001b�r_p;���?�Be\u0000?¢��B���\u0003\u0018�\f�虮���d��� �6����qBFw��iZ��#�O���U\np��8~i���\"�N���I O4Ѯ1[j\f\u0013-T\u001a�xg�\n\n�Q44V��qW�\u0001PA�.��7UR�\u0017�g�\u0005j$r�.��\u001f0�qϝ\u0007D�dFzZ\u0001r��\u001c��^3������uG$��A?�$\u0018���@\u000b��;�\u0019c'���|\u0006\u0004��G\u0016]�%�0��q^\u0011T��\b�\"��,�����D��Cv\u0010l^�C\\Q�k�Fn_K���A\u0018�7�<\u0012Y{�zg\n8��3���t7����\u0005mhM��\u001f��\u0010��,����\n���D��\u0007�'�9�0�j\u0012�\"�b�\u000e_:U�:���\u0018�he��Y�Ծ\u00067�\u000ft���Z��d�}ȐX�r\u001e�aH��`�\u0005����k���\u0005�߱�u�:��������z42/c���\u0017�}\u001cW\u0017��:9Z�\u0004��mIZ\u001c{O��-l\t\f�\u0018{�N^u�xd8Y`�\u0011��u҆I0Mwp\u0001���\u0002S\u0018�hdﵔ�ҴZ��x&�����ުv�,\u001b̓��AU�G),�-W�AJ�$,���(�˄\n\u0001���L=)Z�i��ĹVO�C�\u0015j��ܬ�,\r�[0��E#����F���^c�\"���\u0014���-�l�x�\u001f�g91|�\u0017A��ߛ�!\u0006D\u001c\u0016����\n�>�,Im�����]O\u0006\u0002(����#�KDDys0/#�Q��h�R��S�\u001eKg@�a��\u0000�����\u0002�\f�,��.d�\u0017\u0017�v%����z?\nܒ\u0019��uGх\u00145\f?w$\r���DV��gǟWj�\u0006�o��vVş��K\u0016#�\u0015��^��U\u0012�\u001a����[�\u000b����Z�\u001f�\ts�z�}��q|s>�R\u0000����\u0007\u0003\u0012�$ZF\u0017\u0000DdgjĨ�DM�\u0011�չ7\b\u0015\u0004͘��‹���0IiP�7�;\u0003(��o�m=����ev�\u0016C~����A=�$@��/[1��/\u0004����9ee+�����-8�a�gA7�Lϵ\u0014\u0006]Ft}N�&\u0016q]�Y\u0015\u001c�F�\u0000U\"w�8;\u000f��\u0002}�xF\f&�G*�O̩�g�+�4�>y\b\u0019*h%6�N\n��b���q]�eݳ�\t\u0001(Mh�}\u0011 \u001b\u0017�P`��kX.�ˀ|BS�Z����H�䟲�M�\u0003��Y22)w����\u001c\u0011�{���hڀ/\u001b%9r(\u001d���ē��xb6$���#r�P�ėiHb6\u0011U�\\�\u0019jvm\u0006�F�ޯd\"܃d�/} >\u0014���D<�\t��Q�T��h�\\��\n�.�P�\u000e\u0013��l��\u001ar�\u001a\u0010�k��>�X\rL����̤2\u0018k��x��=��Ї\u000e�\r\u000b��F�&�\bl\u0013�a�yK\u0004��A8�$T��X�<\u000ed'��\u001f\b�L��`h&�G�6�VaLOF�i�>�C�\u0012E������Ȧ��f���,\u0016$���\bWkD�����\u001f���drh���|��\u0019@\u0013Wcr{t�\u0018hQ\u0005Ѧ�����_\"nj%\u001b5\u0011:��\u001f��W[�vu�Ә�\u0011��\u0015*���KUՋ�RW�R�8yj�O\u0017J�|b.\f�Va\f�z�BiB��h��\u001fe:x�\u0016�\u0003�n�l����j\u0007g��ی� \t�xޙ�\u00130�_]�������,��Y�Z\u001a�\u0010��ӛ\u000f�RQEE#�\u0017�cI\u0013\u000b�E\\J�\u0017\u0007S�+v>��7.���\u00157�\u001aM��\u001f��\u000bF;!\t�%;\\�\u000b@>sݥ�\u0003���\u0007���h\u0010��qc��\r̪�v\u0019�A'�$h��L��\u0011�Ҝ\u001c�6������.\u0004����\u0002�J܎�z �j��=������%A���\u0019_J�����,iQ�B�iu\n��8�d�xӷ\u001dc�͕+�;��8�f�q��T�G2ׂS�>�\n�rg�.��\u0017\u001f\u000f�dei�\u0010��\u001c��\u0014a\nD�\u0016\u0017\b�~N�5�!��׽\u001e\u000ebi�Ca�9\u0013�\u0010�x�1\u001d?��k�b\u001a�\u0006\u0018�ω�r��,$\u0003`��c�[7��\u0019&сL�Xz�l��������e(\"���gw�gwO6�6�\u001c�����5��<�A6��\u0003�d��Ia���6Fז%۠z\u0005��$��7�6M��\u000eB˔�N��.Y���D�6Y�,Pw$�A%�$|��L庚�[.�%�\u0007�\u0016L@�К(\u0013��z�r\"\u0005�\u0017���]�y�,�\u000b�\u0015d�\u001d%�N\u0007���\u001e\u001f\u001b�:�\u00153\u0013ӛS1/0��\u0017\u0007�\"���ڳ`w�x�r���\u0010\"\u0019h����Ӂ\u001a(C%�\u0011�\u0002��tY�^��[�\u0012�\r�ϋf�O\u0015��pb\u0006\u0004�����\u0001豖&\u0000(�\u000f\rT�񷰰B�|1Y\r@���j�\u001a\u001ej$����V��d�:3G�\"��\tM?\u0002�z\u000b�N�C��{���/�N�˛r\u0002\t�B�Q�k\u001d��mWe�\u0011O���]W�\u001f4\u0000�-�4��Msim+b�\u0015�іJ��*�T\u0018D!pF��40�q`�;޵��;\fؕ/h��A:�$���M\u0003L)��B��3�^�J��+��sZ�m�$�w\u0000����\u0013r@\u001b���h\u001f��wU�\\���D�\f�&�\u001a{��SqN���-�)\u0007�O���\u0012'��\u001fe\u0017#_g�>�\u0005\u000fs�(UҚ��_ړY���|�g)rJ_ºѢS�{��)~\u0016U�\f�ւ�\u00177�\u001b����1�:��q\f\u0000�ά.�Rr_�$�=�0\u0010O�.:���@B\"X@\u0010m\u0015����s��Y�,����\u00186��ZBo��#��\u0005��B��lW\u0007Ք7B�\u0015\u0006�\u0019T�wx��\u0003�a�K�\u0013\u0017���VH��#8ā�\u0006E�\u0005�Bċ�h��g��\u0014!��I���/����C~\rNT��AX�\u0002Esb�~u�ùƘ�� ,���A5�$����b\u00049\u0000�\\*��>���a�Զ?D�TM�̛Ҟp\ts�`�����\r\u001e�Y\u001d��q\u0015xA~-6��Z���$A9�䜮T吮�%)����\u001ee�g�rCwF6�j���0-\u0017޽��&���ǫ�d{��ё3�uX�[L�\u0001Ό2.��X`;�������\n�\u00170�\u0010�:bnw��\u0012/\b�~\t�+C/�R�e\u0011��(���オ\u0012�\u0017Bm\u0014�!�u�G�Zf��$��_\u000fJ�FTj\u000e��AT\u0010-Np�F���t��m{�f��t����|�\u0013vb�[�uB�R�P.�tv�\u001eJ�Sa\u001dIۉ�~aT�xf�ZQ�vzWڈ��jɤ�#���))�|%�&�\u0003!4WS�b�M����AJ�$����c\u000e�\u0017ခ\u0019_�^U�A�zh�t&�K����4گ�=\u0000A�\u0017*��@�\u000be_���\u000b�\u0019�\u0010/p\u00152\u0004���o\u0001���p �5�g�����gT\u000bDC�\u0001��>�,n��{�ݶlb�\u000boz�1ʉ��\u0004�#��_���V5X<��P#\u001a�gU�q\u0016�}���p���bf�q\u000e[8y���m:�ՀiS�6�q%�6;9\u0019W��\r\"KQ\u0006�Q��N\u0010z�A\u0019S-\u0005\u0000V�Շ���C٣�A\\�$̀��bQ��2w��̃�E���r\r���\u0004�6q�Բt���;���u.�\u000b��%\u0004\u0016��n`\u0016��\u001c�Bj>�k�ea\u0005��+�1�C�7RT0|WCr�}!�6��&�\u001a��p\u0001�S��$kر�M@�S����`��pR���ZD��`ƒ$2${���.h��.�b\n��L ��}�b5\n�]������t�}�����iD�Mfŷ�o��L�4Ҋ�?+�\u0003bK���ahݓ�$�Az�$����mw�\rWl�%�m��畛D\u0003\t�kU\u000ea��{���\u001b�HV�\u0010�mL\u0013]\u000b\u0015��v\u0014�Ww�\u001fBg({0��}@A%Ā\u0010;\b<\nG\u000bL�<�K�;�?*\u0000�ߢbb\u0018��?�x\u001eʃ���b2ʝt\"�\u0001���\\V\u000e��\u0012�\u000f�I�x�\u000e�V_'H�ч2��`(�,���9^��í\u000b����J��\u001f��2� ����/դ�A��$���f��4��)��}��`�V�Y�f��\t�0R�MM�Oo��,����=r�L�����΢=30��DS9�=�<�Ħu�z!�t�iE�\u001b��\u00076O�_��E�jh_K\u001aqI�L�аM�\u001d���Y�b�\"\u0011�\u0006G�{2nP�\u001b>\u0007g\u000b�\nG�R(�P�B\u000b\u0015\r(\u001d� \u0013�E�,[f�\u0007\u001e\u0010^��8�csh��9(\r�c!}*\u0018~����$RaU�v<\u0005���TɄ���Q6\u001d:�2`����^�Y/\u0015�?�Y\n;\\�s�O[��B����ݣN\u00185L�|�ؘϰD��>Q����\u0000�x�g��]S��Xք�\u000b�=?gy���V�ʬ�$�B\b�%\b��L��6�Q\u000e\u001c0\u001b)\u0004A�A\u0013�v�\u0000�\u0011t�)��\"�����\u000f��\u0014��\u0004|\u0014�\u001d\u001b[E�j\u0015�'�kcQ�M��\u0012�\u0006�V�^O\u001cyبǥ9W�Q�O\u0014�?������\u0001Ep�\u0017^D�����\tpfa�g�]�.��\u0011�\u0010>LjH\b��F�c-Qͫ\u0013,��{�=\u001a\u000eL){5���\u0000f_�\u0017�?���W�'\u001f�H�9��2Wש��\n˾���u֬h�$\f���rF�,��������sa3�q\u0004We\u0001{���\\f\u0015��Qm0\u001b$�{�\u00113�\u0010��.*�86Y�`\u0018T|\u0018\\��\t\u0007\u0001�A�~��حyMY��s�O$��\"�E\u000bi\u0003�$v��\u0017c@�W�a͔\u000f�\u001a�{n�����\u001cg�r�\u0012\u0006�\u001d*�My\u0002�ҏ\f�v�\u000bJ�2��Jia��Qd҈_�2�\u0016H\u0010vY\u0010\u000e\u0003�\\I\b%oO\u001b�Q�b�\u001dlmys�X�o\r�D���\t>�\u0018X�0(N�h]\\$�\fjK�b�{�Z\u0015K�\u001di|��^5�%�\u0018r�@u�x��&d|��9�ub��Rs�S�z\u001e��n�݂����.T�?\u001eN�\u0015��:\u001a<\n\n\u000e���#3\u0015�����h|�\u0012\u001b�\u0011p�4~`iB����w�e%�Q�\u00079��R�B\u0003�%\u001c���d]P&P\u0015\u000e/C<7Mr���P{f�q\b��Զ�\u0010��\u0017��k4�޴�\u001dMOM\u0003G���+ݘ��\u001b3Q�5�\b�~�\\�;\"\rv(F\u0001�D�7����+�g�'�Q@\u001a��&��ND��AZ\u00009\u00064\u001f|\b�m��\u0014��,\u0005%\u000f@XQ1jp�m薀\u001a�A�^+.���Jˠ�J�\u001d�e�X\u001e\b?{���Qٓ��i\u0006J|����4q�mvY�V\u0003T+\"I`�\u0003Z�Z�y�r�⿈\u0007�'�'T��\u0000\u0004�?`g�\u0003�\u0006�h��C\u0013A<�\r���y2��1�\u0012�_��Ͻ�\nAѣ����fg�)a\r�\u000b��*���4��L��UVF��V�rU*V�\u0013�n�!�\tZU-��\u0003��vwIe�^�\bCn9\u0002��p���p��\u0004H֟\u0002M����}R�7q�$z-\u0000����\u001e6��ό+��=�;5ZԂ�\u0015\u0001�9z��\b�����t\u0016����\u001c��'\u0013�&�;C\u0000�і��\u00006!܂\rUp��x�\u0018K�L\u0005 �8}���\u000fS��.˛�oh�ʹ�\u001b��\u0016�ޯ\u0011j���C\n묬a�z\u000b.��jJ��\u001c�bs;Չ�nn\u0018�DZ\u0007�\u0000�@\u0011�&I��A��%D���d�<\"����\f9��T��\"(��k��\n�e�H[$O%\u0003��$\u0015�y2��8_\u0000�Wh�lQ�������\u001c\u0003|\u001a\fDO�\u0007,����J\u000f�Ƚ�k� \u0012��\f���P�/\u001dQ\u000f�{I\u0011Q��獮���C\t�P\u00194@\u000e�$W��\u0004���a��S�/���L\u0013x�\u0012�P�}\u0000�]�Ţ\f2p\u0015�W�Õ1�9|y�ɝ9S���\u001e\u001a؟+i��K_i�H9ìTq���a�mlfkL\b�\u000b2��\u001fE��g�s(\u0016�\u0011�c֦cs\\��c�P:\u0011'zAU\u0018Ȋ�@���}�}\u0011�`u�ʕ�QP��\u0016\u00199\u0002�c*�/s/�X+}�H\fph�|{b3\u001aX�퐩'�\u0012���nц�J�`�!�O��\u0010w\u0004\u0007-\u0002\u0010.���A}�%X��}a�nf��Y�G0\u001c�����Ơ\u0007������!����\t��Cm\f.��9�EK����V\u0012��ա�\u001a\u0019$xBB\t�\u0004�\u001a{DCO�M�{Ij���e\u001b�\u001a�_k�Υ�*\u0005�fa�w��Z/�w�h壒\u000e-]��g;�4\u0011p�ŒSX\n\u0007\u00102K\u0010���`�O��m\u0002��$m\u0006dz�c�\u001bn�W�%+�:�R/�_\u001cԉ�M�\u0018�;��\u0010&R�?R\r�Y6�n�W�,5\r!ң����,HԀy\u0012�9��\u000el�?\u0017\u0015��~`\u000e-f`�l�ô�oQ�'�%�q9ڞ&\u0003V���\u0019\u0019��@IP�J/f�s\u0013�$bLsA�\u001d����>���Gtc7m;I��O�\u0003�\u0019�\u0018��Ϝ�\u0010���(�Ä.T\u001b���D��\n�B�V�H\u0001_�k���߬�\u0013\u000e\nB���\u0007�i�QO\u001e\u001d�P\u0003`�tm�|w��\u0006M��.\u000f�QJm����Ai�%l��M-\u000e]�'0�)�v�7��lQ&\\�_\u0016�\u0014����\u000e\\��F\u0017MR�wi?9\u0012E��\u001c�F=�ÌZh\n�e�/���|�QZ��LeQU\u0016���`��}_�(e�ւ٨�Q6Ŧt�\"��s\u0014����9F\tB�=ӷ��k}\u001b�y��\\�����)\u000b`n&\u0001\u001cEs��\u0016c)��v�M�\bX_�f�-R����_X,bN�\u001c�Yh��*�\u0013?�X���*�[�y \u001a�\fc���wR��0�H\tA�\u0015V�.\u0001����5�A�\n�\u001d��AHd�c����$y\u0017̛��\u0019\u00167\u0013\u0011��}�G�־\u0007c'\u001f��Ł\u0017��ryWD��3\u0011�96�E����\n�9Tu\u0017�fL�\t���7\u001b�w�\u0001مX{}5�d�\u0005*�\u0016����\u001e�o+�SIE���Ɵ\u0010u�ʧ|\b�'o�+�6�g\u0016�\u0005���A'�%�������qp�Ƅ�~�\u000b\u000f���������kF�^t��ۂ{�q�1�S�����pO�#|��S'��Ս_\u000ba������@s�J\u0007�3X��Lꎤ\u0011�kIbn�-]�q�\u0006��\u0015C��1\u0005��\u0005�7e&^�\u000f.��~��&��E$�T\u0014�\u0018!�&�����3��\u001e�5H�P�|��\u0005j̄F�y���\r\u0017M�p|��\u0016�\u001f���t�4h\u001a�;Z{�\u001de9�\nb��\u0003A\u000bTƯ~��M\u0014#\n�6�����a�k�ju�\rB�e� e�\fZ4\u0019S�8�g.T�B\u0017\u001daao�ݸ�7�~L|����\u0019|#\u000bWC���1@6smp�&U���q3��\r���ȣA/�%����\u0017�p\u0018W�me�G�0�A��>���0�\"�����C̋�5أ�*\u001b��¶��v\u0001�����\u001c�zr!R�x$W1 y��+a\n�$|�ɠ�r��z��+��=��l5���Qb�V�\t}�c���\u0019�\u0004�\u0002ۻd���84�\u0015��v\u0013�60\u000b\u0007;��q�è�H�6�0AGh�/�A���|U�\u000f��?_܈�+��!\u0017��4�ϺA\u000bS�y{H�%P�+�\u0014+�\r\u000b\r��:I�l�?�`��$\u0010Ň�~��-\u001do�%��6�ȸ\u0002z�w��\u0012l^0U\u001b�G�L\f�7�\u0019*E\u000fk\n��\u0003<\u001b +r�\t\u001b\u0005h\"�M�\u000f�t�ѳ��́���\\\u001c���n�+\t���A0�%����d�k��\u0004ɿ\u0004\fiZ��=�X�7�9��G���@Ö�\u0012O���\t�%fӎ�*�wr@1�):'�\u000e�lU�>��\"�6/@jv\u0001\u0007\u0005sd\u0012~�\u001c��\u0004\u0017�$ߦ�hv�7�ȝRnKn���\u0015\bv��\u001cU\u0013Z6\u0000���\u0011�\"���$\u000f;�\u001c|R\u0005<�P�|�.��\u0019\u0002s8Ϋ�J.��Ǎ��\u0006\f�b\u0005{:i\u001b}I\u0012?�\u0002�l�|��\t\u001d7-T�\n�����W%�򤖂�1��\u001dF��k\u001a���\u0005Q3�\u001b9͢�+\bM\u0007u�H\u0016�s��\u0006�79���\u0019?Q�����C�5F�v>��\u0011\u0019��S�\u0002ƤWG�?�\u0014G��RF��<�6���+`��\u000b������\u0015ՀH�A^�%����m��tT�-��f#ř��zN��R$�\u0016D%k�O,�\t�/�dn��b\u0016-��2�PC=�_G�T�i�B�r���dJ:*v�F&�vƞ8�Y\u0005�4�mҬ�\u0013�� �\u001d�\u0000�J�s�X\u0010\u0003�S��e���4\u0010\u0010tNxM\\_6����;H���Hb'�2�\u0003I�\u0016��}��\u0010�q�U�FT�����x>\u0019\u0010�_&G\u00153u��>\u0012����o\u001e�Mi\u001d\u0005\u001e8?\u0010����\u0018�6��D�?�v3j:��\u0007�~�Pܧ���#\u001aΤ��|F �ӝ���\u000b'\u0003\u0011�û�Ƴ�r7��x.\u0017�h�ά��LK\u0018\":��\"z��UӜ!��\r�,l��h��-_�oS�=O$��&\u0001.d�_Zϣ�J�o٬�����&��PZ&�\u0007��_�̚q�\u0012M�'��\\�\u0019�I��A[�%Ѐ��v��Z��44�`�\u000f���ɦ��t��\u0016-�\u0017\u0013�@�c�؄�\u001d��}���\u001a��@�5bM�4l�U?��\u000e�G�,���*\u001e\u00112r\u000f e@��L\u0014\u0004���+en@��\t��m5{�8JU0�C$(�V\\f'Ӓ{\u0019ev�\u001cu��Fi��4\tUi�K��%�\u0018���\u001bCuf�M0-\u0015�?�.\u0000V1��vl��>�\u0017�T'*���^�\r\u0011p�����2e3*|I�NE\u000f�Y\u0018�+��|�}|B\f\r�֒�˿ρoRi���\r0�\u001eF�Dz����&��2��p\u0019X��5m�[�L�N�\u0001V\u0002CiA�ޣO�bQ��&%(�h66�i\u0017�!i6�k��\\B�B��\u0002��4�\u001b\u0006\"Z\rü��\u001cޣ���_rK\u001b{펝��\u000e���SJW�u��K�����AI�%���f�6l���V5�F��\u001fa��\u001fH=�\u0015�P�P��\n��:�\r)Ul����D�j0\u0005/����t����҈�:�7�1�<�S>wWu.KyY�Ӯ�<�\u001589P ���\u0006G\u0003\u0018��̓S�\u000b� \u0016�Vrg��0�=�4���R/\u0004z�T\u0004V��̺<���\u0002ea�up|�|��Qe`^>VNxZ��\u0001\u0011@\u001f%�@'R\u0019x��486�2xf��B+\u0003��\u000b´\u0017p�D����9l�\u001c��L\bDž\u000b\\����-E7i�}ˮMz \u001fuf�;�}\u0000�.̺�����Z�d3l_\u0000�c�S\u000eIw\"$��*8�\u0011��\u0016�=ǯ�)f쁶~�/�c\u0014��`��,��\\T�C���3�%���)�4 �{��*�AL�%����m�\u0001��?\u0018pl�%'N�|ʽ\b�\u001d�8w\u0005TPu3�Ԩ��!��R#�I��f�������\u001fӨY���8f�P��\u000eqT�X\u0018�{D\u0003\u0019\\<�fd&Gs M\u0013�S�yIH\u000e��\u0005\r���Ø�k_�$Uc.�+1�#\u0015��9��g?�\u001a����u���\"]\ts8:\u0012���c��I;1E��V�*\\�_�u\n����o��\u0004�؊�*�(�\u0002\u0000��0��ZG1\f��q\u0012�fe�R�ۻ�LZo\u001b�B�f��&�T'h���0�ώG�\u0002J���z�/R�z�Tو�y�\u0006����ђ^�R��\u000f�\u0012��ݒsxd\u0003%�\u000bt�v�=K��\t٢�$^��\u001a\f7<�\u0004���P\u0003�E+\n_.��i\u0015G��\u0018���Xp�\nm�'.\u0010��AU�&\f��M&\u0014�Df�:=O7�\u001cr�y�\u0003�q\u0005�dl�ĉ-�����Bw(�\u0012^\u0016�W�\u0012��7 ��� ���B�#H^g��\"��8\u001c?�I�ֺ���yw4U��ȸ]u�e\u001f�\u001c�v\u001d�N @\u000b\u0013B+\\\u0007�ܣ�/��'F�38���uy��-������������-�\u0018a�\u0002��<\u0013萮�~7Sl�S\u0018\u000ev�O9)TnQ�_��q6>�!F\u0007��\t��=�U�pH�8�'�\u0006\b�\u0004N�LH�\u0016�=\u001c���r��UO�\u001e��\f�����0\u001f��R}�E!�\u0004t�\u001f��h�8��2�#����lMY|+י��Q%��\u0015>�+r�\u0004l� =3Æ��\u0013:sff��{�\u0013\u000b�\u0005���>�\\č����X�3rhm�G��~j�%��\b�v\u000b}��AM�& ���\u0012fe�����:�$=\u0003��\u0015���\u0016���u���I�@�$�V�s�n�ϚP��Go���\fFL����C�0D`�&���\f���/�r�Hn%����S\u0013\u0019\u0016��|�r�\u001f9����H�1\u0017���9!ܵ2\u0011�\u001f�v3E��Gw�\u0001�3\u0003��M\u001dq��{\u0016�\b��oظ\b(�W�mV\u0000�F{�ă(�i��˨���?߮�\u0012�Z���m��\u0012\u001c���iGb�\u0013\u0011գ\b�Ά��\\��Z�a\u0010)��M��&�m}TB(\u0011V\u001a�-lP����n�ȅ�VBf͌M�T#���/;U������ܿ�\u0015x™;�٣��V����� \fy�\u0013\u0019?W2X�}\n\u0019\u0017Zy\u001dܒ뫍\u000b�\\\u0019+�`-�=b�6��{9j�ፙ��$A���AɁ&4���\r�L����/�{��\u0002\u0010|\u0007�)=���|\u000f��B�\u001d\u0006�06�]\u0000kڈ\u0000\u0012<�1\u0005 ]���g-�\u0017ҧ\u0007\b�\u00146iƽ\u0019�]Hv��!\u0006r��W��W���J7�\u0017�-tH�v�_5���TEJ�_!\u0015�萸R�FӘ-�\n��c���^����K*��ZW\u001e}ޓ|�t����\u0018��\u0005�m�9'�9��ן�\u0006�V�(>�I\u0005LG\u001c\u0012ZJ��0�\u0014\u0017.�\u0004m�߿�5�8�\f���p�m�K�P�\u001e����d\r�|�U�ho�K�1�\u0017V~��\u001b��9r�6d�!�d���\u001er\u000bv�ʋ�X�Z<��\u0017x����\u0004����k�//|�W�<�s�,\u0000(\"\u001d䕟�\u0004�r2�8���$\u0004\\��)\u001b�%�u�������~���� �[g�V!�e\u001am\u001f,��\u0003\u0015�\u000f�9��<�b�#�/F@l�T\u001d$9�6�`��O��\u0014��(�\r\u0012�\u0015�UZ�ʓ�geS5����p�Ee��f\u0004��0-O��\u0012��r�+`�;��c\n��ٔD���}���8B���ݜ���A[�&H��M��ή���N����\u0004\rR�u�\u0012��^;��j���� ��7\u0012�\u0002���YT\u001a��A��#�U/����P�\u001by�\u0017��fbJ��vY{��c�¼M\u0010ba����ȶg���[*ƌwa����A�\u0018\u001d�\u0002�B���#N\t��G��0��Xy\fs�@Ǯå�)�\u0010\u001c/zɵ�;��P�W�cָM?�\u000b�c\"��v�0��i�\u0005��\u0002�ۆ�\u0019���$S���\u001c*\u0002�\r��!��2��N�\u0001�:4�7���\u001a�\u000b\u0010�\u001e)�M��B�4��U\u0019!&iүEf�ц�\u0005�\u001c�[Lꪉ�Iw�9Z\u000e�!��6~�\u0017sf��Nj�\u000f��������A�$ \u001f�oO�wA�\n���'�|�\u0013w�J�VW�$]\u000eg J��Ã�g�&\u0001�$�n�'�^��\u0014'�:@�A=�&\\��My�$e\u001d�\u0016��L\u001f��2��-ݛ���+%\nÞ^\u0001\nm\u0016��K�o6�\u0001%�mZk�\u000e�i��漛��D��7�\"�\u000f��444\\$������!\b�X:�\u0018:���T�J\u0003/\u0006����\u000f��\b��w\u0017�]\n�C��m0\u001fl1��!��\u0018=��f�)Xb0�\t��Lw_�)���#\u000e�dr\f\u0001�)\u0018���6��k��#f��\u0018������M��);���s��æ�D�Z�2aH<-��ˡ�\u0012�\u0002��M\u0019�K\u000b���́\\;+\u0012�=[��8�ԡ,���`����/cp(\u0011�:q����@f\u0006\r)%Sn�Ed�h�o��K5\u0019cQ�2��B���\u0013����b)\u0014\u0019���/�V�c��U[9-�A.�&p��L�`{��ƘsϹ�;�%��x����k\u0016C�/��\t�}f!\u001aG_\u0004���q\u0007F��fl��]��'�>xx����*�nNOa[��R\f\n\u0006����Z8\u001f\fE�Ρ}@�e\t��R�������ʱ}�\b[-����<\"@�A�?�/�}��c,��t:\t�\u001a�\u0005�\u0001��q��\"jJd��Rmw\nֱ��۱f\u0006��2o�\u0010\u0002���C됸�TB&�&ov\u0013\u001fM\u000e���y\u0015t�W$#xt>,.$,506?��3r<�Ĵ\u0007.�&��\u001e��@\u001dʌ0/7�\u0011�/\u000bN�\t#�\u0007}���5\\ۄ��\u001c�d�\u001cL\fT�nɑ�~���\u0010����\u0012\u0014bU7h}�ך)o��A'�&���LȒپ*�L)I\u0000�\u0016��\f]\"���|~�=2�Q}�zх�H�^I�q�3\u001fmu�S\u0016\u0012co\u001c/\u00179�i�E\u0007aօG�#\r�?Rΐ�@Ɲ\\�\u0013\u001a��Ԋ�����\u0010'����\tPP1����k�� ���n\u001b��\f�F�M�/��m4Ǘ�ɻ\u001e1F=\u0015�H\u001f\u001b�B:��t�]0�&a\u0003���~��B'�&D�\"3ƌ�T��I7P?n���E\u0005��\rش�\u0006�~���}|��ӟZ\u0018\u0002\u000e�|w\u0011�?�Β!�@�s�Ty�t\u0014\u0018L\u001dqɲ�+���L҇\u0017\"�\u001b�$s}��M��X<\u001f��� \u00180����\u001aޠ��`����ܨ�c\u001e��\u000f�\u0004;Z��AA�&����\u000f\u0013T��m��쑦��dċ�c�v}A��DB�l��\u0005�,�%R4=�v��ZA��J\u0007�t_Dx�v8}�_�\u0000t��\u0001�\u0019\f� `��$�f��\u001b��&�d\u0011�\u000e�\u0013稱�5U#\u0018\t����$!H\u001b�e���\u0012��Ɗ\u001b���[�i|�\u0004���b\".of��t##\t��'\u0007�I�^�ݱ\u0018��\u001b��O�W<-�p����;����!��2\rS�|��\u0017���\u0007ܛ8l��\\�!��6�Ȝ\u0011e��:��\u0006i\u001c@�4\u0006-\u0005Z�C.],H�?̙�Vd>Q.�\u0003�P��L��8�\u0018����\u0011@�\u000b�j\r�[�.�\t�7�\f�Y��C/=�D�vS���\u0007&!L\u0004}�J��\u0007W5x b�3�+�!�$�A9�&���M2�mH���\u000e�D����LJ����*\u0017>\u0015X\u0003o%\u00057#|\u000e��✙���vџd�x\u0005�u��KA�3=�(dZ\"\u0012QH���LÇ��������\u0005h���ܯ$�]J�\u0002�nU�,R)�\u001d�\u0001\r73H\fg��29\u0003(�M�W_t�8��N��8�׹�<��U%|�7eb�b�:n�F��,\b�0�4T�<ڍ9Se�p��\"��\u0011g�����q�hȇ�K�\u001c�\u0019\u0017rI�\u001f�<��Fo;&���:\u0015u�k1�Y�!�\u0003��z�N\u0015���b��<\u0002�]l�Rz@\u0019�L&�G\u0016v��ć�P\u000b�\"I�j:L�&S[��h/$�`f\u001b@��ݺ�Ah�&Ԁ��b^� \u0007�S��A���O�\b8WeC��s�=��i�\u0019;�ށЏ4\u0001�--\u0019\u0002J���TM_#\u0003\\\"�->�\"\u0000��N-���\u0018U-F\u0003�W\u001c\u000e��v��Cن�������\u001c�SY����N\u0015��\u001e@R�\u001a� Lh�S�\u0006i�zp��ơ\ts��\u0001�zA\u001c�=\u0007�\u0001�\u000b<\u0002\n�t��Sw �&�ˣ\u001co:��ue���]\u0003\"$m\rؐJ8���-����$\r\u001eM�`����j�1�3>��\u000b�����/�B���V�\u0007�/��P�y��\u0007����}�T�\u0007#{�\u0005\b�o���\u0014���e\u0019\u0000�F���Z\u0011#��?7��a�8����,w]�V�S��H\bq��\u0014-��O�J�n��<����\u0002!��~�!��2zɓ�%�i�x�\u0011��o4Q�(}�����L8#�\u0016�p� .��T�h���!o;�\"�ئ�x�E�#8/��I��\u0003/�N4\u0003����r8Jb,:��ϣo�\u001b(\u0007F�H��|�0�Ru��3(\n���^m���\u001a�(�#���t1I,p��8�<+�\u0002&�\u0014\u001c\u0012Y�b�轅I�E{�/ ZHt�s{��r��d\u0003�&��\u001fC�u\"m��\u0001���Ae�\u0000\u0000��L��4\f���FD����/��};Je�@�\u00136���k���k.����\u00199�~�Z(����6I�=\u0002R{\u0014��`������D=�C\u001e\"y.�,��Z���|��\u0004wS_AF�^���W����Ѷ<�\bx��\u001a�Q��K�ݠ�\u001c\f\u0016�?[D{�P�|;��†8G,{��\u0012���6��\"���&�\u0005!}�g��\u000e����m\u0002\u0017Ը�\u0000a��±������\u0003T{+��9����\u0018X�\u0015�ó�)\u000e���\u0004|n��[\u001f�\u0017��8��\u0000��ٽ�)�\\�s2\u000b\u000f\u0001!\u001fb��^��5��������ǹo�9�\u001c*ӆ50^؛\t�w|g(�\u0005,\u001c\u0007\u0007m\u001f`�J�Z��іC�;\u001e\u001d�\\\u0017֨�\n,�\\�GG^\f��\u0015�\u0014�h�\u0013)k\u0000\u0003�JT,�8��;Jb(0���\u0019\u0013�A`�\u0000\u0014��۸\u0015�\u0000�6�,&����s6���>���k�/�n��\u000e�3*�\u0011�Ӂ�\f�$_\u001c_ƅc���ź+���\u0018�p!�\u0018�oG8Ϙ5�_\u0018���v���߶�z\u0010e\u000bc?��,&o�]�ӁlRBm��>,3��N�P��D�>R�[H��\f\u000bE$�l86.�8��\u0013D_9֎\u001f�\u0001��Y\u0007ɔu\u0013�\u0015\u001b���\u0010�{QP�\u000eO\u0003\u0016�+�3\u0010��U�����Y9\u0007�%�\u0004� MU\u000f\u0005�i�Ti�8�\t�.8�q�\u00101���Ĉ(\r0�>�\r������,#P��\u0007�z��m�:��g��>b�Q�����f��E�\\^>O����'L�\u0006�q�|a)�)�Jlt!<\f\u0006�\u0000����KI)�{�I.�wU��C����\b斈c^�\u0001���53q�(&\n�g��d�!p�A�\u0000(��}aTɏ�}��Oճ�+jY��|u\u001d\u000e\u001d$q?�yۚ���7CYjBY���\\�vw=�f%���ij>�D^<\\*P�\u0014̱r��\u001f;�B�\u0005s�ߘ��\u0005�c30d��\u0002y�s�|\u000b�(\u0012�\u001aǕu��������͏�0�S&AQ,j\u0006i\u001d%+\r�a{L�[ZJ��r\u0016�\u0007�V*L3��C�a�1i\t��`�\u0000F\u001aǻ��ˣ�}Z0d���h�nzסط.�zzW�Y�\u000b�h��\nl�(4�\u0002��I6\u0000CB�w8�/\u0004��H�J\u0002 �/z�Gy6S�\u0002T`X\u000f��\u0001�\fw\u001a�(C�:7\u0000c\u000f��\u0014*C:�\f~�$3��\u001b)4�½Ei��\u001c \u001bCQ\u0012ﲄ�E��C6�3a\u000e�)��.����/j�F\t�Vo\r�Ć\u001c,�i�83\u000b�\u000f\u0000��\u001e|9b��\\G����>�T8��ژ������g�ƕ\u0000�����^\u001e\u0013`�'N�r������c�RJpG��\u0017��E\u0010n\u000e\u0014�}��\t0���\u0003�\u000b{��(�!���(\u001cs�(��Ι�\u0007^\u0007=q�!�]�\u0012����o\u0018�W����ބ�\rޓ\u001fm��H\u000b�+LDc<�Uh�\b�A��\u0000<��0\u0016�\u001e?��:�\u0000�\u0004��K� S�G(ͬ}����e8����\r�\u001a��[,Tx��'�g\u0006[]�=%�ZR�I5\f�����_\u0019(�\f���\u0005�\u00025���\u001e��/W����x5�d���/\u0019%+O�9Z\f\u00109�a\t�Jg��p���pZ\u001f\b��v;:�k9�J̠�Ϧ�c�R���\u0016.�\u0003c��|\u001fh��t�:�Z\u0018ͩ���|\tg�1\\I���|�a.��\u0010���&���\u0017�}��\u0010�B��(\u0017��T�\u0006�߮��E�/\u000b\u0007��\u0016vC��J�C��Eؓ<�9��T@\u001428pCк8fZ\u001aŋGh��|ʱ�\u0017�nP|�Ð���0qN��O�o���:8p��*x�\u0000#�1�\u0006\u0016g��b��Mv/s�M\u001a���\u0003�H\u0010�;���\u0012�?�i���\u0015^\u0010\u0001� %q�.�|�B0��U�S�Cܤt�Au�`�\u001d\u0017�z8�g��\u0016n:���\"�SVm��/ \u0016��\u0012F�\r�.�y��`�-�A8�\u0000P��]��\u0005ꏕ�>4�P�]6�\u0006n�v�遝\f�\u001e�\u001bI�@\u0006�6�&M\u000b�ܝG:\u0012�q�r�t\u001f\u0016��1o~Ԕ�\u0003Mx��.�\u0010\u0018+���Ew�O�'D�?�\u001a�\u0002\u0015k����\u0011�·�\u0003\u0003���\u0006\u0019�C(oX�\u0013�\u0013M��v�������-�X\u001dn�/�=�WD\u0018\bᠸ\u0015���́.�C7p��Q�AI��{�=��)ջtY�]�V\u0001\u001dm\u001f�\u001a:`�P&(�q�ܞ�\u0016��Ԁ�\u000e�\u000eQ�8�\rj�\\x�7L\u0003�����ؘ�M�b�L\u000fd@�B5�G$-p�-\\���eC������\t�� �X\u0011E^�3n�����rj�#z�a��|��݀G�ש\b\t[�BLSZj��q#�@�A/�\u0000d��X���\n�\u0002f�\u0010$E1�@\n�&���9k\u000b���p�E\u0019d���\u00141�T�{Y9y\u001f�k�4M���2��\f�O�SE����5��f�[L����>ɞ�VQx�lr�\r��\u0013\u0019�����^W\u0013��*�d\u0003\u0015-���N\u001e;`7}o�~c\n�F\u001d\n���4�M�l�,�G�\u0002�7t[�iNI\f׍���C�\u001d3\u001c-ρ��K x���\r��N����\u0004:nu�'�sէ����`^\t�.���/q\u001c��Wl�m\u0012\b$�}�ˠU|\u0013���A3�\u0000���L��(�K�,�oO�>�P���'BD}�᥊\u0015�2[���\u0005e���(���\u0016MM�v٭*��\u0018֚�限�sB^�/K2:\u001f]�#�b8���\u0002�� �'��%Ѭ��eeT3�P��\u0006,Ep��\u0013L+�E-�+#�\rh\u001b쾾�Tu`�\r���3��d~\u000fU�?��\u00012=�z�\u001a?fG��j��w\u0005�ܦ<��C�\u0006�\u00196�\u001f�`l3���\u0016���%\u0013�:DFx����\u0002P���jS�E���>��� �Y��0��~�}��\u001e���g�]\u0001/\u001c��m��R\u0014�\u0006��O����Q߽�5���\u001c}8�<���e^��:>\u0011[ f���\u001f�8��Զ��[$�\bb��}D�ˤ�A8�\u0000���X�pF���O4\u0015�\u001b��t\r�\u0007�?��֏S�G�\u00126VEk\b􆦼oƦ���\u0014�e�Q�j|\u001a�2u%$�(��y\u001d�o\u0004���L��\u0019Z�k!��u���#ש�\u001e��7\u0019��ջ�D�xf/߬.�Z�'}I�~ot�הa�V8\u0013�\b�$�0D\u0018��6d\u0003L�\u001fo�\u0000�9�CP�u�\u0015W\u001d�\u0015��m�΄ �^h+��5X}�\u0010��*\u000f��\u0007B����i`r14�ɶ�\u00168��݉�Z��\"B��as_Y\u0015�uG��d��\u0017�\u0002g��������UN��y�x��\u001f���9��\r�����ꊣB��l�:�;�\n�Ga\u001fu2���\u0012��F�nϥ\u0013��!�m�D�A[�\u0000����p�z�H�\u0011V��\u0015���U��W@�\"��\u0013\u0012)�\u000f\u0004r\u0007�IãAU�\u0000Ȁ��c\u001d9Լ1a�\u0017�q,��\u0001\u0007[1�\u0012�Ҝ�=P\\��Q\u0010\u000eeOW3H��At�?Kv�\"�C�*�6���e�(okz@�8w�2���@��:,\u001f�\u0002'�,\u001d:� T�&��\u0004��k3Uܡ��qn��ѻS�=&\u0007�6}�R\u0016кӦ�{�S��Ƌ�����\u0003�\u0006�ZK�X���bK8ǰ�2?�`ď���ם��K�1U9m����C��y��w��R�[�5F��X��Z������V]�\u0014+�\f��p,)� �9*��\u0012��Z_26�g��F��\u0016D�[\u0013��c��G�U�\\4�\u001a+���\u0000�K\u0016>w\u0004� <�1Z�o�\u001b2?W�w�؍jJ\u001d\u0017�1EY����\u0019*�c��Y[]�$߈��ܰ@H����@ya�\u0004�\u001b�\u0001ãAp�\u0000܀��a��\u0013r���a�\u0005\u001aіb�u�\u0003DH�0㆝K�fyVu��v���\u001d�-�M�\u0013I�����\u0010�l\t9�\u001d�����W\u001b\\\u0016��@����\n�\u0005� �1\u0013H��Q\u0010H\u0010($�.\\\u0003�\u0017ӱ��8��^nn�%��g'�3���do3L���䪨�9���,�$�\\ 0��t����T�/`b���Z�\u001f\u001c�U\u0011�\\M���{��O��,�Z�/��Y�#1��\fu��\u001f5��^��|\u0011T����\u001e@�)�FrDxfI\u000b�K\nƵ㺔��\u0003���\u001c���)���\t��rJ�g}�|\tK��A�)x!,�ދ�\u000bp\"Y�s)��\b~?��G����X�\u0014��VS�V5\u0002�)G�9\u0012�A\b���KU\u0011wIl��\r\u0007�����೫�8\u0005��F��+t�;\u0006p�\u001a������+�K\u0017o�ãAu�\u0000����mi�n5��\u0003?���/5Ћ���5\f\u000e��I|��&&]\u0016��ɭ�qhi�O�xv��صDžQx�ͷ1�L.]k��pA7�\u0015�\u000e<�\u0011� ��\t��~�\u001a���f��\u0011[/4��t���\n^\u0012�eLDzN\u0018\u0019{V8��,\u001d`O��w�F��y�\u0005�z��R�6R�.��|\u001e�h�/�E��\u0015�L�,�\u0000Q��|�rg{r��Y�F \u0005��\u0014j}_\n�Blo\tl̨F��\u0003�֊���Q�njN�p2,�q��s�#E��Jµ����H\u0004��z�LzO1�'\u0015Z��g$=\u0002��s��՛\u0015�^��,�X�V=�������+��@ШC�\u0006����\u000fM\u0015\u001as���o\u0010�(xM@�Q\u0000M�M\\(}\u0011�H\u001fe?�iO�\u0007\u0011q�Z��f\u0018n�\u0007�`X��!�w\u001c괄=\\�p��P\u0015�qy��O{=IãAn�\u0001\u0004���o\u001d��.�\u0011w\bREo��s�@޿����m\u0002u�\u0010���W��런!i%�ؑO0��J\u001a�Z!WS�@�\u001eu����u\u0018��\u001b�\u0018�l���\u0018^\u001f|\nڛ�@_�kB���Jx%_\u001at�C�\u001b���u\u0016\u0014���u\u0011�Vkd\u001aRS� '��\u0011���G�=�\u0016�\u0011͂��/���ܦʚ�~d�-\u0016�\u001es�P\u0005���WNg\u0013��ǂ\u0001k�5\u0005\f�\u001f�\u001f\u0016�\u001d�wv�J��0��vb�p�plL\f�o��8�J�D�2\u001aT\u0000\u0016\u0007C\f �Ph\u0017�fp�����AՊ����\u0001�T��ͦ��\u0015�~��!�!K�[5G��NI��O\u0013����0��uȄ��|�������\u001c\u0013�#\u001c�\n�����Sy,��T�߈R�<&��{���&��a�m\u0003��]����\u0017#D�\u0014��M��Rp���)ãAn�\u0001\u0018��� �k�壚3N�d�\u0007Tk��\u001f���6;\u0002\u0013,��ɦ�ҡc��\u001e�\u000f����eE\u0014��\u0014�/[e\t��v�4 ٢\u0003�g��y\u000e�ar5�DE�Y�\"��X\\b_�h�'�\t`£Xq�d�1n�\n��r�nr�\u0016cJ�Q+�{�Ń��\u001f���X&���$7���s�I��\u0006\u001d��Vk%\u0012\\%{��0�\u0016i��Y\b�Ėީn��\u0019\u000e�ܯ���\u0002�,�`$�\u0010�iXL//\u001075\u0006\b�=n�L*\rd�U���X�-S�RD��\u00135*��eR��g\b#j�e\b���\u0007���\u0010���$� �l���J�R��9#i�\u0019�j\u001bǼ\u0002\u0011�[%̗T?��t��Y!R��\u0006\u001eT�&�\u0001X:�tJ�qoؤP�\u0014K9C\u0000^\u000f����c��Px�\"����\n�_�\u001e��\u0017K?d���OyV�`�1��atģB8�\u0001@��}a\u001f��ѱޒ�R���Z�C�\u0004\u001c8�v\u00003��\u0012W�>�P\"\u001b���\u000b\u001b1���H\u0019G��T{gs\u0014R�+gڕ\u0015:��_�'�q�ƞo;;�OCg��\n�u�I�$'CU����).l�q�\u000fd:\u0001���\u001b\u0019�6��\u0007�@��\u0018H^�2��a\b�머a�\u0005�YAȽۤ\u001f@��ڛ0��\u0002cɘ�Taz��\u0003(خ\u001bX��5\r%�^��h�\u0002����\u001a�]\u001e9��d��M\u001b��\u001bC#�\u0003}'x\u0017\b6O��-\u0018ѱq\u000e)s-�0� ���Z����L\u0018\"$�Q�_��\u0014e\u001am�bZ#|��=\u0014�R�y=\u0007��_\u000f�\r\n\u001bNo\u0011��\u00057-H%˼k\u001eeT�\u0019�\u001apk)\u0015E\r����'�i$O{�%Y��IQ�9�Ə~\f�_�\\��\u000e\u000f�K��Z~��\b�\u0007��8���R���(q�8�ߧvN��8�98��Mh��I<�@�~���|�\u0018&�\u001b�����hM�\u0012V���Q�\u00105�s�\b\u0015\u001eX�\u001e%�i/j�\"¹��}��\u0019\u0016�L�W\t�\u0017��dG�\n���Wc�ja��$\u0015?s\"ЃPe|�;\u0016��ӗ\u0005<^\u0011O�;4�������\u0013����lv�6Ktz\u001eiB U�rD�!\u0002\t��C7��47�\f\u0007�r�Ӟ���cVb/�Ws\u001d��\tB[�\u0014�u0��� ���?\u0006�x؟d�AG�\u0001T��1�Ū:����'ha���s�\u0017}�\u0019���-����(�~q�\u0013��^<�2K�u*7\"%\u0000��-�5� �\\ټ\"V]\u000f���\u001b]�\u0013�t\r�\u0002\u0002��Hz��=����\u0001�\r��@#��,\u0003��\u0011��u�_�\b\u001e]+\u000e'n�\u001c\u0002\u0017HU�\t�\u0004�$�V��n�(.��E˅ux?�\u0007]=[�(*F�6�H����_Wz��F����M�\u0007n҉�y듌�\u0019\u0012X��X�h�`f�\u0013BL\u0000\u0019�-�>�r\u0004YTE�W�Ce1Q��\u0001{\u0013+�`��.%N%�P\n���>�OWw���!\u0001{m���\u0012�뙕\u0003��:'������{@��x+�qo�~i\u001e��\u0016���d9�\t�Ϥ|�y�\u001e��\u001fȜ��V2#�AD�\u0001h��L╽T\u0000��\u001a>�`}�E�ͥ\u0005eȹ��l��\u0002�0e���M��G&ňoV��IPʧ��ZZ�d�f�P��w��z�͟|\u0013��v��fFķ=f�w��9,\u0002�\t_�U�W\u0002߼��)X\u001e�7���=�\u001d\f�N��\u001f�\u001bVω��S�{C$;�6مhB���z\u0015�#@�Ը\u0013��x\t�-��/-��0K9\"�/@؋ںJ�O\u0011b�y��\u001c��}DZ���\u001b�`j�p��⵳}KY'ߙ�\u0016��2�E?8�%ܨV^\u0004�Q\u001d\u0001\u0010)f�m^�9�$T�\u0000����zq�]�5��41:��Q�S���7��tg���\u000f\u0014Ĩ($\"\u0001�Me,�\u0013�c�Й��L2{O(�\u0002�\t����_��U�m�AQ�\u0001|��Mz\\�9�#��Ӽ\u0012���5��e�\u0018\u001c\u0015?� \u0019\u0001\u000b�`��O�LN�����.�\u0005;�ƿJ�W\u0014�\u0012yTnQ���D�\u0004�m�rBC�R\u0006y�$4{�5��%|ZE\u0019�-�K�F-��y�s��[�d��\t�\u0001�P�|J����?�e-�\\���hZJI\u0014�Q�(y�&d\u0011��{Y\u0016fV6�\f8�T\u001a��N�V*�80�e�˒�Y�wq���\t@��\u0004���7\u001a\u0014���Vg\u0003�\t��.x\r\u0017�!-N]�\u00056�[|llUy\u001c/HՎ\u001ck\u0002h�\u0001�H��߶\u000b��o�~?�\u001b���\u0002!g�\u0010x�T@�\u0017%GMt�k�Lo\u001d�8��B[L5\u001b�t��`͜�t\u0004LS��\u0016�\u0017�[3\u000f7Y��Zz�\u0017W;��s�\u0003\u0004\u0005X�:�z��AB�\u0001���Lָ�MA��\u0000-‘�*��B\u0002.^��mVDʲ���S�3\u0006\u000eB���+��T\u000f\u001a0?�\u001a%�����4,i�Q�A�\td���\u001a�8���C�a*R��\u001d1�V;L���\u0006��b�\u0002R��Ɍ��\r�Tp-�N\\?_w\u001f��>˵v���H���\nJRcK�*��͊\u001cq���_&_�=�^t�\u0011�c��X��\f�`\u0005��GKA4>\u001b\u001f�u\tJ���\u0001)�#7�\u0019�RO��LeƄ\u0000��h|ɽH�<>6;��#`Q5Q\u001d�v)g�\u0005��;p��L�4`B`\u001e&C�\n�g��S\u000e�������\u000fm_}��YJ62s�x��Ф=ݝ<+�C}����|���-\u0004���%y�TE-�E��\f>�5��<��A6�\u0001���LꃒMͲ��:-����3�d�\u001di��`\u001c�D(��E\u0011u++�\u000f��˥:�A\u0004\b\u0006K���y�\r�)X\u0014,��Tb\u00065�K�K�\u000bP�?���R*\u000b�\fo? s�[٣ϳ5h\u0011{[p�_Z�����$\fU:l�ȍ(!Ջ՜��Q1z�0̉�j�~\u0012\r�!�'ʟ�̭�\u001eH\u001a�^M�ʹ����&��4\t�,&X5n���b�.��Js�`[ʔ\u0007C��G\u000b��a\t\u0014��\u001b�״�S�����cmM؅����FEAi\u001a�<�\u001d^�C�3�y�g�9_N�al\u001b����5�\u0016\tV�������\u0012\u001d^,F\u00178���l����k�\u0015�hW1�B��\u0010\b�\r�?Uχ:%ܣAF�\u0001����b\b���d�<^�W>ҟ<�u\"��.7��\u0007�\bI�\u00056��]��>\u0012���F%�N�x�Y�'�P�-kU�\u0003>����x�S�����/�w8`�?��R%}��<�12��@\u0011��\u0018�\u001db=e��\u00100�x��\b\u0004#��Q@B�fDwخ�#V�\u0012�X�E��֮�ǡ��f��\u0019Kh\u0007\u0002\u0007�\u0006�*\u0017��\u001a�yw��},0���/B��)��~�Z�Gz�ݎ���\u0015�&���w�;��5tS�,P-?&`���\u000e�׳�D�A�)\u0014 ��?ړ1��\bw�$�\u0004�e�\u0000��a2���V4|�G]���b�Z�P�8��P�RsR�N>5���״���\r����TI�<�\u0007n\u0013�Rϣj�\u00029�~�\t���F�AS�\u0001̀��a�N���\u0004\u001b\u000b\\(�\u0019J�\t��\u00057�;O�\"?\u0000�3wS�/�VBm��n&Fۗ �Iƈ��L�I��h��1�\u0002\u0006�����:�������\u0003\u0019�]�\u0005���+�\u001b\u0005�V�*���仔\t�������\u00126��ڋ���'\u0015�B���\u001c%\u0005RP��b4�D�lW�z����\u0005ܾ�l/��\u0013XҨ\u001cbR\u0007M�Ђ�X\u0011z���\u001a���F-���\u000b��[�\u0001�ҖXk=�)�p)��;����W��\u0017*�zf�!��\tF�W�\u0016E�|�\u0004�l�����:���\u0011”��T�\u0019�rJc��om\u0002\u001a\u0014<\u001d��d��=��\u0000\"a�Ȼ�7�!h�h�^V�J��������&x\u000f.J\u001f�\u0015z��v6(�i�mVp�:\u001b/\u0003Wv\u0012��ǣA;�\u0001����a����O�\u001c�)1�\u0018aΗ�=�Σ��#�R�I�\u000b=�9�w��G\b���q\ni\u001cW�A�����D���1p`\u0011��F��|1e���\u0005�;9\u00190�\u0011!خ�a��\"X(>$�ę�j�\r�SS!��ҏg�҈\r%�X���J���15�<\u000b�R�KuQ�,d��:�`��0��&5��\u0007\u0006RV�w��*S\u0016P�P�b\u001e8!r\u001fH�b��?�̀Eg,� �\u0019�{�\u0015\\\f\u0016\u0016\u0012�x\u0001�\b�t���\u000e�^�\u0003/�n����^\u001d�a\u0016]�\u0004\u001a������\u001e�]\r�\u0004R���\u0002\u0017\u001be)P��\u000b��@�\u001d�T�Y_}�33\b쒭��s\\���5F�2��k ���^;Ż�\u000ev�R7�D�A=�\u0001���mh}\u000fe[d�r�\u001fA녱T6���e2be\u0004\u0014���k�\u0001.O&�U��4QQk�X�/y�\u000e�e\u0012\u0007uL#���\u0019�\u0004�{\u000f2\u001d��V��4\"T5�\u0004��r%9-\u001a�?�ȏ��ǡ����1F�A�#�_�F\b%]`J{�\u0002E�uf\u0019�e�]�#\u0010~d�v?��(�0��*�6�8��H�+��`�7�\u001e2LL\bh���\u001b�܍��e5j�\u0001��7�c8e��\u0018�ˋ[7��G�\u001a7��A�>3j뇤7��8�P��IL;ӰNE ��j-19��M\"��\u0000/)6�u���4��\baL-���Y��o\u0011�I����b΋�8�[�\u00047ۜ�RtX\n� \nw\ffG[\u0018\bܭ�Ml�@u-\"�A�AN�\u0002\b�����1�\"�5���\nyI��SG���G�!��d�6��o���kL@�\u001f\nI/�\u001dv\u0007\u0016ݕtU˴.�x=\u000b�\u001fB����3zd�����\u00184�\u0017�R���\u0015g�L�Li�r����=���J�\u0006Z�3l�B����\u0004\u0011$\u0011�RT��f��z��*�%����D�<�=đ/j�l\u0007���%�Ԉgi�Q0�'\u0015���S�V$R\u0005E^���Nqb3���$��t�dXh\u00069ztͲ$�Ȥ_�o�w�Jx^�5ii\fe�8��y���n�\r\u001f�-�\u0004=��s���̢0J���Vpe�}c\u001f��\u0014i�rwK��z�h�V\u0010}�.\fŠ?|�3�\u0006#P\f���\t\u0018���\u0000�(\u0005\u0006YP�1�\u0000o�\u001dH�\u0015�I�)ӥ\u000f\u0011>=���AI�\u0002\u001c���o\u0019�\u0014``��NH+�*�^f�[`B�wT�O��\u000f�X����\t�\u001a��:\u0011�$Pة��2��Ք��\bY��(\u001a�\u0006Z:�y\u0018i�\u0001$�\\�\n�Ժ�c*�!O?�\t)���WX�W~����[P���\r&6�+<(��8[�I�n\u0004���o\u0018\u0019���t����@\u001b�\u0010��6�;���bthe7�3\u0016�J�\u0019��Ю�c+۷��K�ݟ���$ٻ��'��(j����,��u4M`�b#� \n\r�tӸ,2]\u0010��\u001b\u001f���=�L����\u0016�o�-�XA\t�\"{��Si��\\le���\u000ew\u0011\u001dFh�S�\u0016G����ݬ�L����������=p;�\u000fVĞ2Dr�<�& d*�R����2doz���f\u0019�ْD\u0015DAb��p���\u0017\u000e^\u0017��\u0011�T�B\u0005�\u0002D��}b�kqn\u000e��P^�%���\u001d'��͘V\u0014�p�]ç\u0014\u001cY���5̍�j�bs�<�Z�^�,���%�.�}p�5�Q�o��a���I�\u000fP�(�\u0007\u000b�bm�r��_of��g��~R�\"��\u0011ݢ�\u0015����p���\u0019W,�o�b�8�Y���=�\nג��h�,#O,\u0013�e٦�Go�&�M�<\u0001�z�\"\u001e�5��\u001a��\u0019��\u001b�\u0001wU�ϮI�V�U&\t�j�|\u0014�(\n�l�tE2\u0002������\\�\u0007\r�S�\u000fn8{0�C�c\u0000\u001e���0h�ec�\u001e�w�A��e��0[&��\u0019R\u001e�|\u0019�\u0019\u0005�� E�QS���D��\u001c0\u0000�Á�خ'P���iw��� ־zI\t��\u0013گ��<����\u001d�S1[t4v��a\r\u0014\u000fD�\u0000�8�y�\u000b1M��Tˍ�S8�8��fZ~�%Y�B����Œ�eY�k���5��u��QD\u001f�r�—�\n���t\u0006�[_l\u0011�\u0014%p�R\u0004�\b s�\u001b��m�\u0003Dǽ\u000e\u0012i��B9�\u0001v@\u001d�bWY����)�V��!t�+�_�\u0006\u0011\"�ڥ��\u0013\"\u000b�L����(�@��0���(�����z}\u0000�d�\u0006�\u001f���������A\u001b�\u0002X��.K�{S\u0010\b�e�[�c蜯��\u0000�D$��1pL\u0003���\\{�N\u0005[H=�\u0011P�ͳ\u001a\u001dw[k\u0002��Nv\u0001��_>m�\u0013�\bLH�S\u0017�N�N���=�4�\u0012P0���\u000f\u0016�Sl�8��\u0007��*\u0016��\u0019\r���%4�����=b�6o���$N\u001a;�l�M�\u0012\u0019�� \f/'�h&087�M�?r�-\b�')ڷ�uu \u0014��\u0016�{��)O�r$�7P��?]\u0017zeO!ٛ��Տ���W�\u0019F�\u001eyԞ�(�\u001b���\u0011\u0002�D�'�Z���E�\u001c*Q�\u0017i�\t,��\u0016�\r��\n�^���\u0019.Ad�?�ג�\u0016�\u0015��Kc�q�ñ��\u0019M?�A5�\u0002l��Mzh����g��H�.]�m����\u000fV��N���؟q������%�\u0004��y3�'\"=Ή\u0010.�\u0011��$�~�X�99s)\u000eO0$��ތX5��\u001f�*�\u0019�\u000f�\u0006�Q�\u0016�k�KR>�/E�v�`ρ�N\u000ea�\u0011VR\u001f\u0003��OH:\u0005\u0013�[�c��>O\b��%\u0000B��\u001c�\u000bP�j��ħ/�\u00138{�\u001e\u001a��\u001bPo+\u0010\n5�O!V\u000f{�:�\u0017o�\u0005n�F]����R����]&y=T\f\u0006\u001f�)\u000e��}\\��p���\u0011s�y\n}\u000f[��%ԉ\t���v�w\u001dz��x*�t*v�˦\u000b�;\u000f��� \u0007=P�b�\u0005)l\f[S�Kc�W|\t�\u001dB�_s�֙\u0004H��di\"F\u001c>���\u0018\n�A+�\u0002�����M��A�d�B�\u001cs�!��5�񶊴��apE�\u0013��\u0019\r(rl�?֟���<�x<\u0013pQ�dsU��Y�5�\u001e�ҥ�;�)�\u001f\t\b�\u001b{\u00121ďV�D�>1�_�\u001e�,�\u0015��S2�qâ�ˀ�\u0007����cݕA�4��sf�\b�\u001e�7\u0014\u0002�\u0003�fz��=$�{��\u0015&�\u0017&\u000b��`����\u0013m��e�\u00008L\u001d�\u0011���\u0013���wȒ>\u0010؂۩�k�~\u001a\u001a�1��\nA�I�ݭ� Xe�\u0013��iE2ٷ�N���ē\u00185�gU�dCK$��S\u0011\u000e��r����؈�e����;�q� |đM�N���Q�$9��\u001c�6\u0007��%�ӛ�G?\u0010\t��A\u001f�\u0002���X�5�D�j'\u000e&��ഏr���\u000e�����2\u0000~���\t���e��\b���0�{yj8J�Z7h��_Q�a4u\u0013��D\u000ed�;V\u000fZ�\u0019ʛ\u0005\u0017-�\u0007n�2�|���d�����--\"���!$����I�\u001f;@�#���\u001d�\u001b2\u0012���4�u�0��Kb��T\u0000\u000e �@\u001a]�8��(���1�a&8,��e\u0002�\u0017��`:�\u0017�i����\u0002\u0007+�#�\f�QL�ȑ7�1UPJ\u000e\u000b��(S4%���`�<��:\tf�L���\u0017\u0018����S�\u001f5|$�_�\u001b\u001aSq\"[�8��\u001f����?���蛷|��TDl.?p\u000f����A�\u0010�A+�\u0002���۷7m�pG�\r�-ԯ�/Цw��Ԣ��\u001e��^]�\u001bz��,\u0002��E\u0005\u001c���\u0001&x�gd;K1i�\u0004\u0010����M���&���ڄ\u0011�\ra��?^�p��PN�M}=vv�QN�`e5�c\u000bt��h.�D\u000f\u0018�\u0011�ኝI\u0017��>��c|#8�q�\u0017��u�}N�l�\u0000#�\u0010\u0012�n\u0000\u0018]Q�����ef3(X�'\f �U0ؖ��%m7���s��o���OJ�\u001a�\u001c�\u0018Z΁\b�r��\u0019�*W��X��\ta�Z8���\u001a{�6\u001f���ɯ�N�z\u001eȱu�>ݎc���X�[�\u0019��rj�F\u0015F�{r��\n�\u0010�4I�\u0015?�E2�<$�e��>V.2�#�7�b�_ώ\u0018nk\n�\u0003�8��)���]�6��� j\u000f�@�eLi\u0012��\u00161WwGA\r�v\fm�\u001d�\u0019�Ʀ�\u0012�_�5�2Kn�K�̒\n~��\u0018�\u0011;N�Q�j��pBz���S�A�\u0017\b>��{�ÆK�\u0010�Y��e��Q� �\b�3t�t�\n]\u0017�\\\u001c������:�\u0007��J��\u001caP\u0005c���\u0002)�F�\u0016��vzƳb\u0000�6�++׍\u000b�N�aۀ�A)�\u0002Ѐ��ȫ(y�=X�$X~�~9��\u0001�%�\u0002>��z>��\\˜�p\u0013�_\u001aZuIY�;-�!�m���g�Ǐ�#�JiF�H�p\\%���\tz�\u001b��xF�)�vO�ͦ\u0011�|�d�1��m�pc&�n\u000eF��M\u0016�nME�ڂ�\u001c�qk\u0019�1� V�}�S�A��?.�\t\u0006\u0019\r05vfe\u0010�PIͦml�u<\t�U�v�l��]\u000e�\r7C�Զ�\u001d(�6�1q�W���ȍ��=T��\u000b�n�\u0018\\@�T�\u00011��φ�\u0006�\u001e�_�BmkC�v��\b��^2���\u0001�)���L6r\u0003\u0003�TϹ���b\u0017��c\u0001�k���iU��x�N\u0010���'󌺨�s�\u0002��A!�\u0002��۸\u0013�̇̿NƏ�ؑC��\u0001\f�<�BƓ�&�<��{'ۨT\u0016�;bQ�Wx\u000fܬ���%��[HO\u0015[pP���z��q$�:{��{�q3\u0003WRw�V�N�\u0010>Ω�\"}\u0000���@�\u0016L��\u000e\u0012\u001c�\u0011��0{�N�l�h\u001b�q�\n�8+�����\u0005�|�>�m]T^\u0013�q�Z�\u000f=�\u0002)'�qz�%չaGO;�pY��R���x���A>0�ŀu������9�\u001fI��?��\u001el\u000b-��Nӷ�ۚ�I�Z�b�D� 8��2�\u001dc��u/h���ս�9��G�\u0019ɤ�\"L�Ӛ�\b�A��䤱��x�fc�,��ëj��AE�\u0002����“ؖ���5\u001d��P����R����%XU�~�\r����@g�So�j\u0013��3oe���g�6��D�X�\u0012� �)Q�?�Rw�M%ӆ�7S�&O8Q�zV�d{)�2�\t�y��\u0010(�e�q�,E�)�T��\t�En��s�5����>߉��a�ّ��\u001c��� \u000e�K�s}���񗝻����6\u000f�\u001e\u0019s��\u0016\u0006W6Ԃ�d�\n|�PA,@���Fv�s�M\u0017�e�]\r�r��|��,\u0002\f���\u0000�$ \u0001K�2\u0013���\u0016ȚLG\u0017�^c���)rU�fr\u001a���+$P�|y&�۬�^X\nT2�\u0002��w%�\u001druZ�t\u0015#׶Ͳ�}%�\u0018\u001dm_\u001bDF�$�DŽ����H\u001a�?�+E��K�����A3�\u0003\f��L�r=�d^��V\u0010\u0011�]�\u001c��g\t���\u0012�;�N\r9ﵸ�1�\u0018T\n�ͱ(\u0018j}�\u001a��%0H|�3�4';�I��@\u0006ah�\u001d�n��A\u0011\u001ajl*#�YĜS�8\u0004���'\u000f;���-ؾ\u0004��\u0002\u0004���\u0003.\u0017\u0005�3�%����JV$����۰o�T\u0013\u0003�\tZE�\u00064��7\u0003DߘL�{�7]\u0013�an���.6�a���JbȐ�\u0005\"֦���mf9\"���\u000f��r01�\u0013��\u0018\u0003�q�?��Qcc��f:������0�P>�\u00029籏J��/�U�7\u001b0����'7,q�\u0001��4F�\u0018�\no�\u001a��f\u001bK�p��e\u0016bO$f-�>��<����9~2|x}�\u0016��7\u000f�^\\�[b/�Ҹ�MF=�T��U�6�A-�\u0003\\��M+0�\"�\u0002�7�\u001b�\u0015�Hf��/���>������^�T����\u0000g}[�\u0018\u001b85v��\u0000\u000e;���Ȇ�ďO�f��\u001c\u001e\u000b��>�\u0014���XRmqv���m�S!�Q�P�<�+�u9�Y[�M��~���1(�\r�\t���\r� �Ǚ��t\u001c1��o\u001a\u0017{��#9��#.�݆�z\u0013�q��c\u0019��v}2���S����j�7\n���\u0017��a�\u0011\u0016��)�\u0012�)�F��}P�\t�Є��!\"&�Q��B\u0017�Z��o\u0000%>\u001e^h\u0002�#�P)��EV�\u00071�VOJh���\u0012�`\u0015*�\n�\t��m�6�\u001f%G�\\\u000e���\u001d\u0014c�;\u0014�\u0017$+�Bv�\u001bm�\u001e롟c{��A6�\u0003p�����iɄY�D]��1M=�����\t+�ˉq\u000bʤ�����Vp1�#�\u0007?�\fD3�Q(j�γ�����x�\u0007���N�jGq��2���\u000f\u0001l;�{\u0006�\u0010��/�\u0011;qo!���t����1�tJ�M\u000e�6�P'�\u0017!���\u001c��\u000e��A��Y�\u0012���R�TE���I 99�Gu��ɲ6 �-��\brJ��y�\u001d������\u0012�[mh�>*�\"^�g5���{tÅ�ka/�\nm�\u0017˯��+ܿӭr\"��%;!\f�*\t��Ʃ\u001f�'��y��E�b/\u0016�\b׶��\u0016\u0004�Bd�FQ�MBV�:�\u0000*oF\u0011Y\u0018\u0011Y����_0��+0\u000fj�rm�\u0007��\u000b�\n\u001d�\u0016��z��A6�\u0003���۷\"�\u000f��\f\u000e\nH�\\����8l��Q�L�7�ss��+��e-<\u0002�\\(�!8�e�0�\u0000�+��\u0006��K�d�\u0004O��\u001dg�!�m~/p�)D�n��a\u0017�ő#\u0002�3�%9z������S\u0015�)�\u0012H�\"��}�r\u000e��\\��ؓ���v�\u000fve��\u0018%���\u00177+�)F��%�F-\u0013��/u��E�0rs<�\u0006z���il�\u0018�,U�L}h����q�`�?�'��\u0007b���)��\u001c$>x�Xh�\u0015�.\u001c��� �\t\u0016,x8\u0012\u000f^1�h\"~\u0013r�l�\u0011\u001f�*���\u0011y�\u000b(t���=�e�]�\r��1x�Y�=\u0004�le�~�E�$��$\u0000���d�\u001a�bD���A3�\u0003���۷ \u001b)�G�9~:\u001e\u001f؂�.��]�#�\u0010����Q�li�?�壗�O��\u001cObf�_Q~*½Q$6�joc�\u0013\u0011�����9��\u0018�\u0017�����M>I�6�{&�0�M\r;���NZ>�\u0018�{����B�\u0010�֣Q|�~�F�\u0015\u0010A�\u0005���aY�\b�e~�Q,\u0004���R��/�'��ٴ!m^\\���T��o<�\n�\u0010\t2���ڇW�ӱC�\u000e�\\��ͣ+� �-�F\u0019���랅\r��N뮱5�\n�\u001d�Jܘ�x!_-�\u0016ˑ���6Fv��)w�!�\u001b\u0000�O�\u0017t2���);K��K�/\u0000+�Je�'!��5�\u0018\u001c\u001f����e=���\u001e�����ܤ�5'0kz��A9�\u0003���L�@\u0019���4Ңrs>*\u0015\u0000�\nd�\u00063��\u0006]��r�%Vu��,\tq�5�Tn\u0010\u0002b\u0010�\u0006����\u000fJ\u0011�D��P��<��@Y*<���%P;�a�x�b�q��a��>X����(�\u0005Wn������!�g�?�.,\u0001�\u0013ibk�\u0002�V\u000e�+��\u0007�a\\��I�Ӽ\t[�����/����\u001d~��\u0013��\u0019����|;�M\u001b_�k�3,9Bv����\u000bV4��\f�=\u0004�cu\nލ\u0002�`Ŵ�\u000b�\u00171ڵ���mhvl�\u001d�\u0007\u0010^��Ҝu��G\u0013���Zl�\u0003zi!\f��4�}0Z\u0001���m�\u0014-�,z8��\u000f\nE�wT�\r�� C�\"�=B������\u0001�w�2@�f�iʵ���\b�W/�AB�\u0003���L�Df\u0000Du�9�DJ[0�3\\�4x��M׳�e�8\u0013��)Yd��|��\u001a�\u0003h�\u0018ze\u001e��ƙ�\u000bJ\u0010�ކ8��\n��4��m^\u0016;TG��oKf�U���r׬4��(Q�a'�\u0001Ui����\u0006\\�v�\u0016��@�0�{-�0�P%\u0007��yY�PD}�,���M\u0017J\u0012k�kZ�nNn���ٮq�]�*�j?��{��<�(�1�Բ�aI��s����%\u001a[\u0002�9���Yg�\u000e�ū9Y���(Ļ%\u001f�\u001d��P�TM(\r\u001c[Ilf���O9����D�����\u00125�A�\u001ch�#�ͬJ�C�/\"\u0016��p���2Q�iXY�\u000f0����k�x�_��1�b�b�sg%Q6�A\u0015�V�M%�A=�\u0003Ԁ�L�b[��t\b�����I�J;����)��K�W_��7*��z�-\u001fߤ���B\u0012\b���L�R��>�\u0018/��݀\bi��q>�6��\u001d�U\nf�����g�\u0002\u0006�n��z���ݾ���Uis1�c\u0015�0�|Hԋ)��?΁�N�k���1�)�ݵ�~2S��̛\u0016\u001c\u00183k\u0010\u001b�=)�\u0014e\u000f#�5���AQw|\u000b�\rh\u001b\u0019H+�,)���}��1�2;U��)\u000f\u0019揅�yִ\u001b/\u000ba��\u001dg�|��\u0018i��/�+5��\b\u0014n\\�Z�(\u0016�&�' P�z\u000f�fh[\u001d��\"h�\u0004�\u0004�p\u001d���{\u000b\u0018�I��3�Et���{\u0019tN�{��Ó��\u001b*�W\u001an�bJ`֬�ߤJ2wM���l\u000bTC�AG�\u0003��L�2�\u0007R����~�z:��/\u0018���\u0007m�Ɓ=/���a�/�\u000f��.[�{\u0012$\u0001B�r������W���I<+U�g���\u0011Q�_#��@��$�\u0014]�D�z\"V\u0011o�\"��Wx�r�0���|���)pE��Gh�����&��^���\"Ȍi��\u0005�mV|\u0013\rџC:B\n���u�ӴwT��\f+e-�d���\u0001\u0018����^�����5\u001b᣷\f1)6�\\�g��\u0013�xV��޵\u0006E���5��\u001f���ñ��܌읙�|տHF�E�ԇL����A�\u0018�M�1CF�����\u00073^\u0016���9�\\J�{��s�s��\\~\u0007q��<������Y3�tHUgɅm`���\u001e7dn�[�\u00058R)��\u001cb��AB�\u0003���L�#y|�O��A{�5����\u0016��\u0018q_e����Z���J���H[��o\u0001����:{���q�p�y��\u001a�4\u001a%\u000e�\u0018\t[�o\u0018�[�>%\\7�\u0016��\u0016�r\u0013�\u0013L\r����y��\f�$������+�ux�Itb��U���\n�d����M\u0012�/\u0014�y\u0000�\u0012b�!�N�j�޲/�A;����ڳ\t�N4 �>;7���\u0013\r۹L�\u0018�zE�\u000b\u0019��#�d�O�>��x?�=�\u0001g�\\y<�\u001dr\u0016B���*9���aS\u000e\f����e[��\u0002tD��`8\u0011=�!�R�\rZ�P��$ߴ���_a?��k&?:S�\u000b&�\u001d#�\b��o�D#�z\u001a��\u0007��5��y�ak��]Zp\u001fʯ�n��~�A6�\u0004\u0010��L��D�br;}m�\u001b��*��p��;\u001d]8�(D���(�t���R9�[^\u001f�w]+û�����!\u000f�;b\u0011�\u0015���=��w�\\\u0016\u001f���i�\b�����3��C���1�^!2��(\u000f�x+)[\r�s\u0002!�3��#ez����5*�[r�\u0019m�py0���Q��\u0002�m\u0019��g��C3���\u001ax�q1M����\u0013�\u0005g�qk\u001d��Ð�\u0003���X\u0006�u%�B\"<�;��H�:�bC1J�<��յs�D�*\u0003��H�C�>�\u0001�p�5�6���}V�z�\\/�����N?�\u0005�e�`\u0006�@�@�\u0018�?�Z\u0014޲�3q\f���,�U1�G�5�' ��J��\u0003���;���V\u0018q.�A9�\u0004$��L�\u0015�5AD��=��'ͱ�\\����\u0016\u000b�P����V��f�n�-\u001bˉN��U�дo.\u0019Y��0�\u0011\bX\u0012v�lF�Kt\u001a\r�A�X۳ft\u0014�N�\u000b/�y��\u0017���j���^#Qg\u0019\u0013W\f�3\u0014��\t��������\u001c�ȃău}\u0011\f��4������'�\u0003\u0005;���R̢��d�ˢO���Qح=��\u000f�\u0007���\u0000nw�\u0007\u0018�\u0013�_����\u00150S�vS\u000eẌ́Ŏ�Z�(4\u0017w�\u0006C\\��R�Uh&]K3fv\u0012�[7��O���}z,��\u0000\u0004�R�� �LDh�bPr�V7.=V���\u0012g��#�ץ\u0005U�|�5n���y���\u000b�n�������H\u0010J�;ls\u0015�1w\bm6�A:�\u00048���\u0017�R\"���c\u001bt\u001e7���s>�%��ʍ~.�I��|�\u0018<�n�!۟$�\u0012\u0012��1��>c�zB2\u001c�\u0016c2��4�\u001cq\\��!o&��24�\u001b76i��\t-q��'��J\u0011K������h�\u0015��g�E�ނ��~\u000f���\n���\t��+�\u0013v�\u0004\u0019��\u001f�Nb������:3\u001d��(�\u0014��t�z9\u0002Y�91�\u001f����\u0014��\u0012#!щ�k?���w���^�0L�V��\u0002\t��\f37\u0011f�N1���1�\r�6t3[a���9\u0016ߏ/�]u𺒙Bɰɏ';�'s%���@J�>YБp�\u0003��ξ���-#�{F�\u0002{>*ż��\u0012�C��ID��\u0018�,.�;���U�A:�\u0004L��Mt��7��m�\u0005�\u000fpO$�1\u0015�\u001c'���%�Q��\u001a<�ș�=\u0014bbj�\u0013�ˬ�a�\\��C�8�I\u0016��7|�ki��VJ��V�\u0010e�x�ɗ;-�����u�N)�\u000f�N�븀,�3\u00162- �s�rh'�^Z�R\u0019ܡ�rW\u000b�\rg�K-G隽���\u0001\u0011��\t\f�\u0001*:�\u0010&�TG���L��8�3�ѳ�� D���S�\u001fY�\u000b'��'`����w5�\"��F�U\t�����\t?tyq��.h9�2�r��}\u0018���\u0013����{\"\f�\u0003�C9\u0017S��s\u0014\u0017����O�c7B�1>�^�\u001a�\"\u0016f�)}\b��T\t�\u0006�O\u0018���ӻ\u001b-fXx�/\u001a��\r��ME>1_���Q%��A>�\u0004`��L�G5F`�M\u0019�\u0015-S>\u0019[�'\b\u000b\b�I��\u0002�KKL�_>\rJ\u000fᥐ�a\u0014�u�=n�\u001fCt����1o��JaO�6�1X���\u001at�Q\u0018��\u0019f\u0011�\"�\u0012G\u0013*\u0006\u0015��)֟�rX�F|���\u0015#S\b��]��7���˹{+�2�<�~��g��]�\u0013\u000b\u001d���MHz�\u0005��q����\u0018M+�[���\u0010�o�:>�V�-��{�͠\u0007\u0007��s\n\u0016�o����ݧ����6�ߎ����g�ݧD\u001bVP\u0014�{�{\"��?�\u001fS9%�\u0014�\\����\u0013\u0003��\u001aP߃�~����T\"�+!�\u001b$�c�\t_\u0013[ބSB,\u0015>�t8|N�Q�=ik1Ⅵ�N�0h3Ğ�;]�\n�Ҧ�㦟J�>4�A>�\u0004t��L��Q���#\t|�\u0000+|\u0000\u001d\u0004�ڈ9��+ȳ��\u0013k&�VrK~�ez\u0019��c\u0012H,�\n\u0013�G�S\u0011GB�*aK_�\b+��^\u0017����ugW_��\u0001MO�I�M�����w^���\u0007X���缫v�7\u0005���\"_!8��芒\u001a�]���\n��\u0004�\u0019vȝK(�^�*Me��-Ą��c\u0018?���ԇ�*\u0000�D0��2��Czm�K�̽�e���\u0014������2���k�\u0011��>'m:\u0010�N\"?�\u0017���'��#Q�}�\u0017�\u0010\u0004��\u001c�ް\u001c�\u001f����\n��Ɋ�mƀ�Ì)\u001eX��UA���@K�\u000e�v��\u0013@\u0000\u0010�DVt^´wK������I\u000f�����}��\u001b[+>�\u000f\u001c\u0013��v�AF�\u0004����\f⏴�73�8J\u00102S[���[c/�ơ�'C�����\u0016�����k\u0012\u0010�Q)�-((\u001a���\u001c&1\u0015���z\u0013��S*\\�S�\u0016��a.�t\u001fmZ�:���\u000bSZÑ���\n\u0002\u000f���E<*M\u0018VU�H�j�\u0003��\u0005\u000e\u001a/ͺ\\&���\u0019_��&\"+\\�c\u0002���\u001a#���z���P[\u001d�4!O�Y��'XY��V�p���s/&�[.R���/�+aP���r�5,Lv�U\u0003��M�WL��\u001d�����8{�nʴP9\bL\t��\b����go�V\u001c\u001dW�\u000b�����E8����w�\b�\t9�T�\u001c\u000b��aa&����\u0016��Y�\u001e�P�\u000f\u0000���/��P�����2G�\u0014<'�d�]�̖\u0004��Ζ�v�n�?�A@�\u0004����\f����\u0004R;D���o\u0000��\u0006�w�;�At\\ܱuc�\u001a\b��+ma�,\u0013@h���\u001d��vn%\t]:vύ�Zl�R�\u0003�\u0012\b�1&�\u000f��\u0004s�\u001e�B`�^.��(��K�\u001c�<\u0017�G���&N)�������W�\u0003�\u0007�g�q���E�/�=�{u\u0010�)�\u0018\n�\u0016��\f�\u0013��e�}\u0001;��k\u001f�\r\u0016`����S\u001cL\u0004�\u000bj\u0005٤>�\u001d�E\u001c���Q\f��\u001a!�\u00157@��\u0011��[�J*��?�,4 �#����P��;0h+�҂�U�v��%\u0004��V`�\u001aZ'�v�;\u0006��H\u0011��ʔɽ7�\u0019�zE`�;E�&<�m�̓m�j9[p�X+n3��&´\u0012�.<�0#\u0016�A��UJ��E�A@�\u0004����\r\u000f�\u0010\u0017^��I�xJ������7\u001a(=bJ�Ѩ�\u0011\u000b.�;+���\u0003\u0013x��&��/�|\u0002(0\u0007�r\u001d���k\b|.\u000f����`6�&��/�$�T}�wJ*��%�>�i\u0003��\u0000er�I$��?�o\u0000���K����\u0015\u0013AO�.�\u0018�\u0006�\f�oR�k��´'\u001c\u0004a��QԬ��\f�.�}V���5�>��\u0000暈���R�ֳn�\"E�8�\b�hwN�a+�\u000f��nW��\u001cj\u0018�\u0003�\u0002\fK�NX_��&��b���}Q��\u000fa\u000e�U\u00177�׽6?\u0011�B�^X\\-�q^�UuA��)�Y�Z|��ߜ�\u001f#.�>\u0017Ģk\u0012���M\u0018F�T�)�TS�AE�\u0004Ā�M�����\u0003�_���,O�P�\r&j#�| ��{\f�w�ZF�K���*I>�=]�n��zW�*ȩ�=N����{�FUސflˋ4���&�w�UY�\u001c#�\u001d�X\u0001|/7�6�T��@a�\u001a\u0005vhi��n�PL���/>�C�v����DO��[Peˀ����M��|k�\u001c=���1�w���\u0012��B�\\�<�\u001c9�a��KwQ��˔\r�a���\u0019�|�k\"\u0014\u001br\bĴɨ*Lx�)?W�?qH�&y�(���Z���\u000f�/\rO2u��\u0018e���q��#f��\u001d\\x�I\u0001�\rҞ�0ɐ�����[o \u0013�b;� �)��;j7�nD=\\^�\u001e-�Ec�pN�C���|tR �\u0012 �m\nԎ��AC�\u0004؀��dH�\u001c7W:ɸ�GSh��\u0002T�{��\n/���(��\u0001)\u0011W\bc�I6n;9�I�͈�{Hb�}\u0016\n#Nx(,�\b���k�~\u000b$����\u0017����EiI���A�|�9[GK�\u0016�p�\u0005���C��bGwm�T�Jry�PL�|�&\u0014�\u0014�̬\u0005ѿ��܁ِ��vۑ�\u0014�$���e��f��\u0010�?�@i���E\u0018�*9��ʯz�\u0010�@�c͡�\u001c���\u0018��w\u0016r��\n�\u001a��T�MfxE��_�REG�F�\t�\u0011��]^ҭh-\u000f��`\u001fZ2�\u001ȩ^��\r\u001dh\b߆9��o\u0007��;\u0007nj\t���^��nF����όW��ax��lC.2A�f�z�=���$��\u001bQ\u0005Z\u0000f6\u0003�$�Z8��I5�A?�\u0004��X�\ty�ع\u000b@\f�4d��6��\\FW��!Z�\u0007�B4����$`�\u0015K�K�N�`�\u0014�f\u0010V���uc#�\u001a8��\b|��GpҩN���\u0003��\u001c��ܷZ\b�g�\u0015<{�\u001b\u0002wt�\u0004��4=�Pm�|�M\r�H\t�-kM�Ow���M��R\u0014k3�Y����[D\u001au��]����.ġ]��/ᬳ\u0012'¿�N\u0001����()�����\f\u001aU��x�XH�c�|�,������ÿ�'%�4练8\u0000a9\u0015z���G\u001b\u001b��\u0003�}\u0006��.}�\f.�E=G��\u0011P�E3�M\u001a�����H��V��F,�\u0013�i\u0010J{�e�\u0001�O}��o@ �\f\u0006���3�B\u0018���L�y\u00180Ɇ \u001c�n\u0016~��A<�\u0005\u0000��L�0<�֝��^�NE9\u001e�2̜��6v�F�3�9\u001eP���\u0006Zs�b�yf��+,{�ω�������r�J?x�����O�̞�oO��\u0004�]Б�\u0005?N�\u0016�^��@�\t0N�M���(U��8�RZ��[QB\u0010�h$�r��W'�/��#\u0018��z�I�r����\r��rdY���#^\\��8\u000b\u001e&l�V\u0018N���*͈\u000eۻ\u000e�b\u0000��\u0003c�C|�h\u0003�G�\u0003���R�*\u001d��\r:�\u0011?Ρ���\f/�c�\u000b%oZ\u0000�\u0016H[&���.k����,9J\t�\u0006&Q?I� ����7��\n��4\u0004\u0002\u0013��\u001f�u\"0�)�Y�r\u001eQd�����\u0017�k�'O��\u001c�1\tM\"m�\u001at��c��v�A9�\u0005\u0014���\u000e\u0001�zΌ`uli��W�cK�ԙ�T�u\u0010�+�@��E\u0019�؏�\u0002\u0017&�9�\u0010,�֔P����#��H��\u0010�ƀ�\u0003�:��2���]\u001b�\u0006�,���������to5�E\u0012��X�\u000f��\u001f8k�o�E�����6��b\u0005u���v�+�9�\f�V��/\u001cWo-\u001c�X\u001b\u0011h\u0004�G�t\u001d�-[�\u0015���G0Ǽ\r\tJ9\u0013b\u001d\u0004\u001e\u0013\u0012 EJ�n\u0001�<�H�gp�\u001d\re3'2�\u0010u�ż�=��j<�4�gk,��\b\"�A6ՎU\u0001�#eV�E�q�R�m�ob�eL��YЙܨA�Y\u001e�$/� ��>7η���%�����r��ǔ��U9��I�6�\ng\u0019s�#���\u001e�vDF�A2�\u0005(��L�ƥ��c�S\u0015M�ү;b�(L��f�Q�\r��t\u0001u6W�\u0002��lu:�2DIa����,��ɛ�c�ت��UO[�f�2�\u000bO�P��n��\u000eWf���):�y��Ge������]�N^\u0002\u000b\u000f��ҝ��:�S�B���\t�|�\u0007�]�H\u0012���a�q�g?�q�`J1G��Y�]\f�s�>��I���\u0012�+��K����n��\r�\\U�6�\u0004������4f8L�͙*�� �R�\u000fZ$��A\u0000����|\\�aW�����1��>˾��\u0010��٤�^�\u000f�@�\u0001\u001a���n.|\u0016�\u0005s�ʣ@5�F��\na\u0013\u0003&���G\u0002a�ﱙ�Ƞ�'pk\u000f-'Xvt�6�rkv�Aс\u0005<��}b�:qȣt�\u001e]�Bם��\u0005�j\u0006��4\u0007b\"�Ic�~�x� �AU�\u0014�\u001d���&;&`7ik�u\u0013���\u0003\u000e%_I�JG\f\u001c\u0016\u0001��\\���?\u000b�\u001d\u0012���\u0005�������\t9yqf�\u0010�\u001e5��n�y\u000f�������\u0014z��\n���lk\u00112\u001b�;�`N��ܫ�M��r# mm�Aʔ��b\\1�\u0010�����u\u0007�DفLoq�SI9wW}0���\u0001��f����I\u0011YO~]͟�~`\u0017\u0006�S���f$�T�K��iV J9���l\u0015��\u001f p�V��.Y��ֿ2\u0010���'�cƒ\fV;-�\"�Gy�=%��R��T�rz�q$<+�{\u0018�a�h���\u0007��m�Z�����]�'\u001f����SP�k\u00022VlZ���\u001c8\u001a�l:CHB\u0001��[��Ä��\n\u0019;�.\u0005^ݣ�T���\"l��o��\u0002��l�*���\u0013��l\bZ�\n\u0016wg�\u001f;��{]1�\u001fo��K�`^�㙠�&\u0013J7�\"U�ҶiHe��jO��]X��Z�S+���Ͼ`�\"�����˰��T\u0003d�im��*2��v/�\u0013���o�.P3\u000b\u0017�\u000e-G�7�I\u0000i?f^�\u001cOv��y�1�ɺ\b�\u0018�\"\u0014\u0016 ��.\u001fӯ�-�z���n3I_��~C�\u0004\u0017p\u000f`Z�\u0018/��\u0015���^q\u0006�^�\u0007��W��@>`�*�'����bz���\u0001?ln�|�D\u0002�\u001e���cQuU𽹴��q�jFN�6�M��!�\u0017�oXy�\u0014g�\u001cvZ ���v��0�F���$R1�Q\u000es�j�\u001a\\ĕ5��\u0014�t��\u0019��6�M��Wy/�O[�w�9ңA4�\u0005d��L��L�{��ܺr��T��]���n�oD�\u0010�\u001a�:�x� Q%ͨ\u0003к���Q��\u0002/���Rs/7.���0�\u0015\u0019F�<6\u000bo��N_'D�/\f�\u0012�>�xU�/�\u0010`G��\u000f*7tF�@v�;�4�\u0005ؑ\u001f\u0016*[�D�!���\f�D\u001e�\u0010#�Y��ֈ$|L��#�mh�H�OLNS�a8\n�`2\u001a0�\u001f�̙�\u000b%\u0007h\u001c�76F�U\u0000�?J�\u000e)�&�&�Q���\u00197\u0010�;%�\u0004�F\f������\u001d\u0005���!�\u0012>O�DŽY[�,b��\f\\6�V�O�PlKF�m�\u0005�ã�bЄ��\b�\"\u0015[��\u000b�L�\u0010�.�=S���,o�a/؈���\t&;[,\rȂ�\u0001)vRT��A=�\u0005x��L��J\u000f�\u000ej����\"���:X��1B@�E<�\t�7\"f�B\u0019d�\u0001�ޟD\u0017���\u0003\r\u001aU:\u0005$��ʉ��\u001f��.��R�\u0002�V[C\u0006�x=�GN�\u0015�\u0004Q)^�^��3\b�)��m�\u0012�\u001a��Y\u000bsq���4 \u0012܏)�-\"ɯ��a\f�F�!�ET491�PM�$�Mn��F\u0015��Ep�A�\r��}��\u0018�9�S��p��\u000b�\r�N�����9\n�\\�{�1/�B\u000fj\u001a��\u000b�9\u001d������\u0001�5j� ���\"@�\u001e�\u0015ЅO�M;\\2g�\u0012\u0000����%�!��u��YWBȔ\u001e��\u0012\\��4s�P\u0018X�Oe\u0007v\u000f�*�\b`ޟĊ�\u001b�\u0016��\t��\u0004�nL-�*dMG�h�v��A.�\u0005���L�U�Q���v\u0005�:��!����B�_�>��>�\u0007��G\f�j��\u0003<���;]2*4��s\bca\u001e�?�*�=\u0007�æ׳t��SY#h�?[�7�V���uķ\b�xѼ���V\u000e\u001c�6\r�Q\u0003���i�Zi3�\b�*Rx��\u0005��Tm�h���͡+��\u0003��{�A���c\u0010<��\u001d/��*}�P�4\u001c>�\u001a��|\u0005��u-��5����\u001d�ǯ���\u000b��G���j��\u0018}ُ����S>>�tN��ӈ'\u0011�Cq��\u0017�Tj����v�Ng(�#Tޥ/\u001b\u0014o�\u0001z���\u000f���.\u001f`�6�M�&ޮ\u000f\u0006T\u0004�\u0001��q�+-A\b}\u0000��u�k~��h\u001d{f���A,�\u0005�������婿^\u000e\u0010��IPQh\ng�x\bfá�\u0000\u0018I�P\u001d)ɰ�^�8���Nc�c\u0012m�\u0017��xX��/�#\u0007U�݊.SI5�+�`\u001b��¢i\n���\u001d ��\u0005\u0007�߂������VH^�i��r\u0011\u001fg\b\n%�d?��O\u0017�%\u000eO�pb�����`+�2��K��y\u0019�W�\u0016>��B\u0014�]�.��>V�P��\u000fY�\u0003>E�_\u000eӍ��\u0007H{�\u000f�7N�9z��U�\u001f�ڏ�~wP\u000e)�����;~�3=�\u0019Ǩ\"\u0004��(��n�C_\fʥ�\u0007�M2\u0004_\u000fƲ\u001b�h`K&��X h\u0007\u0016\u0006����ɠ\u001e�P�mJ�絖|��\u0012]��-m��H\r\u000e��E���[�A&�\u0005���L�j\n����\u0019��q5dR�?u�0�0�σ�\u001c{$�ݙ\u0019OG�i?8AR\u0003�3�ۮQ�yǫK\u0017-K��������5lI\u001c\"\t�Ɇy����uI#eQ�P\u0019�,�-w\u0016!ʼ�\u0017]�U�\u0017Q��S��Ը�����e^\u0003�f3�+�f�\u001e�4\u0004R%x\u00066�y\r�bj�\fw_r�N�K�nXˬ(&p7��g(���\\d2ߺ|I=u�̼\u001c�� \u0015a�D@��ޞ��qy�\u0012P�\u0014͑~��\r\"��\r��/I�d\u0000б.X;p\u0010\u0004\u001e���eL�0:Y�\u0017�3���9�#�E7�P\u0003��O����� l���&�b\n\u001a�Qv�g#G󞌀=W`���A0�\u0005Ȁ�Lã4Y\u0003B�\u0017�5\u0011d��/j��\u0012�{��L\u001d�,�\u0003^�\u0004�c���\u001e�,'��ԣ'�rvH9�\r���\u001dG\u0007B\u0017eSr�\u0001\u0018n�u-%Xj�y�\u0016\t)\u000b��V�\u0017�d�6k�t�Đ��!u)4�\u0011�&\n\t\bl��tP�d˭]\b�ֱ&=e�q�)\u0004\u0001����+\u001c�s�8��T\u0007=\r|=MId�:5\u0003_�=�\u0001\u0000��D���@�A��9�������_�\u0016b�T\u0018w\u000b��p�6\u000e\u0013)��\u001f5c���~Y\u0003a��c�k�3��\\p R\u0007Gx2���N/\u0010�\u0016�>�M ����\u0014<�.�7B�&���g��ZC~W�\u0006�96�\u0006�f�o\u001d]��w-���\u0007�O\b\u000f1z�뭣A=�\u0005܀�L�!�%�K\u0011�k�c웱�O�YMH�cQ\r����2\fQ�u؄��\u000e�mBB�:`�!�y�2f�7{��U-gw|�\u0012a8y4�j)\fa�&o��?���]�ߔ�!�Nh2P���w2I5�\u0013�vX\u0007U�յ�\u001bg}\u0014n�ս\u0010��v�\u0006�\u0003�\tSK\u0013*�c\u0013k��[Ȗ\u000fד�\u0016�}�\u0002_;���]�\u000bI�\u00142�3\u0000Sǎ@ԃ��ا���\u0006\u001aTSU�l\u0002\f��2<9�@\u0002�\u0007t��u���@s\u001cR��<�g~�����\u001d��g՚�\\�8V��l{Ԃ|�\u0019��\u0001�5�)H�\u000f��5�fP\u0003����e�����+�˴ɰ\f�D�W���\u0013\u001c��US���\u0007�\b�A?\u0001�'��A8�\u0005������w�Z~�(�\u0010}pS�\u0011.B\\��\u0001Lq�\u001a�0�&�y9|��z�]���d.\u0019\u0012mc�a\u0015\u0018���u\u001d\u0011�r]X\u0003�9��2�ص��!d\u001e�8�d}�u�ѰL\u0013NHr�\u001e�$�)��\u001e���\u0012\u0001��\t\u0010\u0015Gz�<��Fy�>��xr]\fs�'��s\u000f�&�`�֜�1�+|��D~�\u000b��Zj\r�\u000f���%��y+\u0010xp\\[R�Y%��]+Ʀ\u001a.6KER��c�b���`T!�Ң3�� �X@h,��4�}�=��h�3��q���k��z�~��d‰1\u0005�\u0011�6��%i�B��Ƿ�[�]�������\u0016+�qf�|��ɾ(\u001a���|�&�\u000b�\u0005Z�4>^��\u001bZ�A*�\u0006\u0004����[j\u001f\u000f�4��ttl�\u001e\u0003�>?K)V\u0015}QLd�\n��{c=\u0003AN:\u0007��\u000f\u001d��\u001e��b\u00118\"\u0017\u0003\u0001��5\f=;Q\u001c�[,\u0015t\u000bt#q�9��g[k�x2��+\r�����e\u0001�\u001e\u001a��e��@� 5\u001c�\u0012�N#��m\b)\u0005�����'[F=\trv�WSek��P�.��hތ�7z�\u001dHB�\u001cZ�A'�\u0006\u0018��X�h�5p�\u0016\u0001\u0018��\u000e�N��^O�\u001d`0������&\u001b�{L\u0001��XM:\u000e�l\u001e�k�'��.�aK&�)uf�l6�\u0019_Z�B����p�+�\u001b�����5����p\u0018=\u000bn�ɪ{�\u0000\t�\u0003\u000e��\u0017�Nb�l��=\t`�\u001c�.oî�W�\u0007j��1;��䚿�F�=��\u001d\\�jԒ�Z����R=\u0019���9gx8��\nCT�\u001d�F�t*��\u001e\u0010w]��m�\u0017G��5G�gK�2��M���\u000eqZ�t�9��i�>s�Q��-�\u0015��7y�f����r\u001b~�rOTY\u0003�\"˷���W�l6;����\n��r�ζ��\u001e�\u0011n�G�F]*,m�T��\u0000�A6�\u0006,��M\u00140�\u000b�s����\bh�~�+Մ�N'�BH�۬-\u0002�\u0005᫂�A�8V_F;\u0010�yU���c��+�W��\u0002h\u0001��L\f:����\nG>l��ϕ��K��R\u00059\u0017L��X+\u001d6\u0017�s�5 _�\u00128�U�!m���v\u0003�n>zZ�=�\u0013��\u0010�P�@Y+j�>�\u0002��x�\u001f�!H\u0002���ŏ�\u0002���'�G��Phd����\u001c��)#\b��\u000fM�7\u001e=��;\u0016��r��*\n-|OJ�N+�|�$\u0001P\u0006\u0005�ƽ�\"�\f^��eiXm�(c��w�\\S�o$\u0018\u000e���]�\u0012g4\u0000���#�\fq�\u001a\f��{��#2��\u0016�\ng\fu�P-֐ٱνГ��<��p9���՜@��8�h+��!G�\u0011y��L�\u0001�Km33�dq�\ruG\r=�NY\u001c��t��u�B¤��Q�P���\u00179k\u001a�A�q����u��K��%ϰĻ\u0006}bG�$R��$X�T��I_H�T��\u000f/1��A)�\u0006T��L�1��\u0015���%A�_\u0003լ+Ͻ��sYh�4��tyۚ�|E6�����D\u0002p8Eby9^\u0012�Ej�el��pU]�\u0005�\tL�z�W!��\u0003@�ҖB��..�$���|}n\n��)����\u0003�\u0000�R���PJ\u001e�7��\u0003���矜��?�����\t�\f��E�~O�&K_��N����)|D|����+��PZ0w|�9��C\u00005o\t���ٙl�\u0002�sI#��\u00174\u0013$\u0014�i�\u0000Ĉa@�C*�\u0003�;�\u0012��������+�\u001e3�ؚt� �o��y\u001f�C5�`��\u001b�%S���\f{À\u0006@9<�[i�;d����&\u000b���\u0007�T쳩ٰ��nv\u0000��A*�\u0006h��M(\u0018>�m\u0011r��-\u001a��\r���5����P���a�ap��_��\bޢA�67���7q#�\u0005�ux'\u0002���F��ޫÓ���\u0002�aK�9�NY��\u0017�C��LD�i#\u001e�M��j�\u0000���a�X\\4�I����i�h�?���t����\n�K��\u0017N��h��\u0019\u0012�#�#1��D߬g��a8e��B8\u001e��S\u0016��7BLu��g�L��)-\u000b�մ��)1E�F�F\u0006]@��8!�J��w��B[d��c�5�`�����Ч/�͝{�H�T^h�\u000b\u0004�\\�\u0012|'S\\\u0016 \u0004\u0014p��v����*w��|�O�m�\u0014F^��T%/�'&�]�g\u0019'Yv�A+�\u0006|����Z\r—+@�(�we\u0013D�2t��=\u0003T2�>S~c}�9$IU����\bF\bK_�\u0016MnHՏ_$b�@��q���O�\u001c\u000f/]¿m����T1T\u0002��\u0006f�\u001f1�׳%���AyJ\u0005\u00032y\u0007\u0004/�t�\"\r;�N0�t8���\u0007K�\u0017t|\u0004�g^�b�ǖu�\u0007�J\u001a��i^�X��=�1n�+�ۡp��PN0\u0019�\u000f\u0006Եp�umlj3�\u0011�q�� �\u0002����m����_Z�\"m�\u0002�\u0015fo\u0013�\n^+(\u0010`�;_���/�a��X�\u0002\n\f\u001d�s�!lp\u0018��Z�Pd\u0011+�\u0011��K|�,\u001b���;���n$\u001b\u0000װ\u0000�̹�O$�In9u��l\u0017t_\u0019\u0015��<�A/�\u0006���M\u0010��1*�1�\\�bg���3�,��M��@̚\t*Ɍ{�Om=��\f�\u0006��s�\"LC\u0011��\"�l�\u0013c�����RL���\u0011\u001f�'��&��\u0005)��%�\u0001a�pi\u001bN.<��{�_\u000e�ڦ�[M�\u0014h\u0012�HQ7�Mjb\u0004\u0019���tï�\b�\u0019:ƪ[!��.�\u000b뇡�4��\u0003\u0012/�\u0016�m�WtWtG��\u0011c_�]��:��a�O�l����͠����j]�g���E0I�N��\u0016\u0010v�0_र�y�\u0001i���\u001c��Oh�&�ʆp��;C\u0005�$(��g�����\u001bTE�8���g+U>qT��D\\\u0015L\n�\u0001����Ҧ>����4@�sǐ/�\b�5��A+�\u0006���L�A�\u0000���`�\u0014Uv_�Gނ��G�6V\\����U�9=J��w�{-.���Ժ�Qɍ�t�\"\u0014���V�;�\u000f\u0002��\u0005�\u000b��/�\u00191����\u0010�[\u000b,�\u0004᧢m\u0003���Г\u0016�pއ2�V��[�\u001e\u001f��V�3\u001eT{�9z���|T\u0017�] �ˡ�忥\u0005_��p�\r�t;�p塞��:d�\t�2o�|�\f\u0012\u0005t��ƛ\u001d0\b\u0000Oۓ\u001e�/���\u001e.�;ށ�qӞ�4m1hFO�vM�j�P\u0001�\f$9�����qo�t���>\\I�0\u0004�N��\u0002���\b�Z%�\u0007�\u0010�\f�-f��|�D\u0018v~�-T8�1�����n��$��R�A�:��A(�\u0006���M���]�쿈t���1ŭ���x\u000e�ga\tVE\u0019�\u0005�Sճ�'ď}�nsՌ\u0007�x\u0002}j<�\u0004��:�5D\u0017\u001d9���\u0007\u001dK�I�h�B:(hu6\u00112\u0012�:�p��F5|huF�;Br����g���\u0015\u0016kr��B��\u001aK�۬�Pz� :D��\n.�\u000e��c(5I�G�Z=�\u0000\u0004��\n�\u0019X�����\u0019$�\u0006\u0017���\u000f����R�����:���9�������:u!�ʚ%d�b��7&x��|�\u0010 ��VZOx��*Lf\u0016QH���hj1�!(z����\\�/\u001f�\u0002�y\u0019\b���B˓.��!����Z��QD&[�*�P��-��mm\u0007o>1��\u0012�A\u001a�\u0006̀�M%�t�\u0005/Mp��X\u001dP�!��qP�\u0013�,�t�F\t���:�l\u0017\r/B �-�x���Cik\u0002��e�^�M�F�i���d\u001e�`��\u0004(5�'����hM\"8\u0004��\n4�]ö�|�IC���:�)xT.��nx?�\t��@Db��ݭg�a]<��Ag\f�\u0013�a�֝\u0018�:@\\5\u0012�\bF�\u001e~\u0016\u0005�OI�ɳ}66A\u0016�N?�M@3�\u0013��H����!���0��9\tZ���G\u0012x�\u0018\n�Ii��;��{������ݜ_�Fʫ�s�;N�\u0004\u0006�%�\u0004y\u001a+]��*����l�\u000b���5�w�q��\"v%=����[򴭣A\u001b�\u0006���M\u0012�-*v3�e�� �y�\u001fl����\u0018\t��{]M@��o\u0004����M�\"?�\u0005QF���P\u0012�\u001a���ϋ\u0002\u000f����ŋF[�u�*o\f\u0013�i�K� :|��,{��w�\u0016Z�7�\u000f��۩zG>\u0003'�'O��Z1]�R��\u0002�N\u0004��kmo¤{9š.�)\r�7l�\u0007��\u0005\u0005F�J\u001ah����&���\u001c�cu�o��tc[�\u000b��/�l\u0012\u0006U��?p!�]�\u0004�}��\f\u001b���i���<\b)\u0011�CcX\\��A�j\u000e�僬/|\u0006\u000f\u001e��v4��u�t1\u001f9\u0017�lHWQ�z*���Ua_a�}t\u0011�\u001a�I�\u000e\u0001��\u0003�6)�Ͷ�A#�\u0006��L��\u0002\u001c\u0010XXO�@@2����a�ZL\u000b�\\\u0013�5������\u0013�҉�\u0004�rd��jx\u0011r4�L����U�\\\u0016NR�fHI��Oܬ\u0005��\u000b5,�ϠHf����r�2��\u001e��\u0002�-}A���KZ���*8�eѳ�\u001bY�;����'`�\u001cp���|\"�\u001ak���i\to�B\u0011(��V���\u0013�M�\u0019�t_@�7ș:�N�zv�d)��{H��\f��)�\u0003]��*c\u0019Ge�i�#\u0001\u001cm�����n�\t��\u001f)��\u000e\u000fk��\u0006� \u0001��Z��\\\u001cy��\u0015��ٔ6�Y<:&���\u001c�<���\u0014H�G�\u0013��n*�g�/�I�\u0000\u001b�\u0012�\n��U��A$�\u0007\b��L�R\f�$iN\u000b���2��\r���e�8��†�\u001c���݉�\u0003n��\r\u0004�|C���a\"(��\u0013e�E��%*/��o\u0003����%�^�����G�k�\u0013m�\u000f��Y��e-�\u0002�\u001bF�s�J1,_�\u0019\"��7A�N���s_�����~M\u000e?��\t�˸sVr៨�T���\u0010ũD'@󩟆g�\u0002ZY|\u0005v\u001c3{��TFo���\u0019\r�.��=�\t�\u0003\u001b�\u0000�AD܊�\"e�VO�S\u000fN�~�wv\u000b\u0002��Wo=\u0018���\t�~ğ���Z��hX6\u001d��\u0011�$P�Y���L,v`j5����U(G���ǒ��\b�;�Ru�\u0000��I\tkmdeB�S\u001d�9��A&�\u0007\u001c��MF%A\u0003u\u001f\u0016k�R��tЕR�b6�$\u0003 a��CA\u0003�&�y�Xod\u0017��}\u000b�k�d\"EX�\\\bG��5�&d��<�\u0017\nܥ�v\u0002\u000e?�q�������\u001c�:\u0012�j\r0�H\"����ϊ�T`\u0018_��(] to�\\\rM���U��m\tI�\u0001����\\ZC�\u001e�vL�Zv�lS�\u0013�_]xN,�\u0000\u0002���K2�\u001d�Q0\u001c\u001b��t�r\u0017�N~\u00032\u0002|\u0016~�G���\u001d��]�4`\u0011\u001d�������r��\u001ap�C5�I��%�i@\nʀ�CiW\\����Ol�\u0006-��E�1i���O\u001b���{�ѽȤYH�i�AB�0L��r�\u0007��%�\u001d/�*0���K,�A��\u00070��|��W�_����њ�Ӑ>_8�]�K62ޓ\u0013ղW\n�[\u0004�\u000b�B�@\\��W\u0000��5����cA9��\b�����B�g�B�v�q�V6@��aͣ@;�q�Qo���\u001b\u000fб\u000eNX��L��ӯ?Q|FH���R7l��}\u001e���)���\u0005j\n���/�3\u0007�]\\��\u0013�{�N�\f����9A���1F\u0016C�\u001c�1�m����\u0002c�J��\u0003\u0018��*7�\u0018�T/�E�\u0015V�\u0001�^�X\r�\n��k�\u001f��E��\u0007�\u0010)�Q��]�oͪ_(C`\u0001cQ4�hU�/g��Im���\u0014��`��\u0001kE�B\u0016�$+��l���\u0002�H��\u0010�1�yiZ�w\u0015nB�\u0006�nջ��Wy��\nJl���\"\u0014���\u0010u�\u0019\u0019��\u000f�j�m\u0002h2$;�;�|$j�ҩ:){\u001b\u0000*LZ*R1]zA[K\b@(�u�\f\u0007*�[b��s��1�\u0002,\fUt\u0013Vx��=��\u0014�SH�?��D\u0005Wt� \u0019�T�5&�\n��.�A\"�\u0007D��2x_E�+P*�B�^=Sז\u0013\u0014S�p͌A�|+�\u0019\u000b��n�F}�>��k�c\u0004�֟���推�9\"����@fѭ���Kބڍ?�P�C=� ���sX��q�\u000f�y��A\u001eM��S��\u0014Ō����2Z,>y�%~�}�\u001b];_a�vB��0�\u000fB�6�/?�]���~��gr�2�v8��Ŝo����k{��󆦇��w����>�3�v�X9�5��\u0019s���\u001f3�U[\u001d������F�'�\u0011{F\u0001P\r^�:u��_�çJ�f\u0014w�\u0001<�7&�g�l�Ji3\u0015\f�ٗf2�L\taY�ܚ��\u001ap\u0015\u0013�v&��l���v\u0002z���A(�\u0007X��X�d~���v������l��s/�tć2�2d�?�\u0011\u0012��c��0NqF���o��\u0003ɘK�1�w��c䱼o`�\"�\r�\f����\u0019�Bn�j��n!��C��Z�>*j�#l\u0016��HcAhY\u000efQ.� g*қ[C����c�4�� Bˀ����ٷ�Ɩ�����VV���r�L��\tN@U']\u000f�zӰ�\\DB��O�\u00028�!'�\bd�Zg�&rb�`ܽp��d\u001f\u0004�\u00199B�y�\u000f+��U�db_s���c�Jb\u000b��UwB�\b�b��\nD�Y\u001aU,H��4�D-��2��\u001e%X�UN\u0005\rމ\u0017r��Ŀ�M mH���m\f�\u0015��A\u0010�\u0007l��Ms8j��ch��\u001d���\u001c���]O�b��\f(��\u001e\u0002�8�K=#w���������ˊ�v>�n���z�_��𜟑��u�\u001b\u000f��G��z]d�g�]t�\"D\u0015+@�0O\u0019�3@?��1���\u001d���X��_�N�\u00072'᭻r��\u001f'�V����\u0010sܣ\\:O].s��������B\u001f�j ����:89�4'��,WR\u0003\u0011����\u000bL������j��}y\u0003�=\b��,A`$(=�~龛�&\u000bk\u0000�W'��\u0010���t�{M��\u0011�<*��'Ο8SQ[N[%�(��\u0007�C����D��M[\u0005J%��\b\u0010�A\u001c�\u0007���L��ct=�Ĥ4�L����ԯ��֬�\u000e�����/�,�w�M�KP��g>��([�\t |�3E�v��s�Q\u00017�����H�\u001b�-=��JgF,\rV��s�d��\u0004�\u0016\u000b~Ym��VXOK�D�\u0018D�V�\u000e����ߞ�z��w�D\",]��/\u0002���W�S\u0011b��H\ntb��\u001a��z�DE*ݗ�\u001e��\u001eZ�՝ۍ��\u0005��%���NZM\u0019A\u0005�OX\f霱�Ft���#�5�)޴\u0003��:���(���\f^z�9\u0005�c:�2Ti���o\u000e�w\u0015i�y��g�\r\u001d\u001frY��t1���\u0003��\t�\"[%�N3�\u0011j���A!�\u0007���L��m�\fU֏{=�\u001c�]�E����\"\u0003/�6�0QђB�+m��\u001dv(��cH.W�_�C�v���\u0005g����g�����F�(�C�U�S������S\u0005Լ��AU\u0012\u0004�fd��C0?E�bo�\u00136&��iCP}oﱹ���C��B\u0006(P�̈́���B�� v�e�r�\u001e�\u00109I\u0010\u0003\u001cL�\u0019��F��u�C#\f�f%��\u0018\u0019E}\u0015�?ZR�#\u0006\u0015�Q���\u0000���9����#��\\�\t'��\f,G\u0018\u001b,^9�&��\u001b���9\u0017��u�\u001e)5�k:b�\t.N���H8�\u0017Ν�b3��@�!�b�\u000e^@��\u0007���\u0018�f��\\�K�e�̭\u0017\\m��!�i8�\u0012�gD1\n�sB�\u0011��Ƿ�\u000f\\̚\u0018o�;V�]�k�\u001a��\r��\u0000���8؏8���kZ�ܕk��Bp&:���\u0010\u0019Y������n\"U\fs��D\u0014nt\u001dV��V�ѣA*�\u0007���Ƅ�v�\u0018\u001a�JY\u0018q�H�j�a:��3�R���}�4�^�4bF\t[\u0006�\u0019��js\u0012���\u001e������\t��ᏺ�V�.t*⹕TEX�.��%\b\u0017�q�f\t8��{2\u001e&1�ĎDf�~\u0019�k\u0016�{h���8��\u0014ƴ�h�\u0001g�\r���?��7\b1m\u0001/\"��U�дš�/�\u0017z�y\u000b5\u0013�[�B�\u0016�����\u000f��^�\u0005�P�}��v��\u0004��\u001a#h��yI�r&m��!�\u001f=�y�{��\u000bM|�F�#���s\u000b.\u0004V�_\u0005����ky\u0012*g������\u001d�ab�w\u0015\n�\u0004��4���W屖�ͅ�fP\u0001=�\u0001/#��\u0012��\u0000��B�J�&��\u001d��A\u0019�\u0007Ѐ��a�\u0019�8�1�\u0006p�\u0011�J:�dkQ��W��*A�;`\u001a5A���>���~+�\u0015\u0003xS \u0013���`\u0004�Hiv�é��7\u0012\u001b�5)A��_q ��fe�\n\u001b��\u0007/q��Vu���\u001eմLj�qU�\u001d�\u000f$�G$=Py��W��\u001f�Ro\n\u000em{\u0007�\u001f�������:���\u000b�p>'�Z�[��*\t�٥�D�\u0019�?3\tP�\u001e��\u000e�8��O\u000e�K#�Л\u0014\u0000W\u001a�\rJ\u001b�˳��B�\f\f�\u0015���GϣͶ���y�M\u0000�af�m�.���F\u0016�̊�)�W�;=T�g��`�pB��9w\u0016m(�C�(� )\u0013���l�E2m��A6�\u0007���b>l+��\u0016�B-�`-\n�[E\f\u0015�!RG�zY�{��\u0013�K\u00017���Ԃ�?9�a\\UPhPH�t*i�z\b~�XxZG4��`db�\u001b��@\u0001�8W��̫�S)�Oa\u0007��9Jz�=�\u000e;�H,�򋳧�.�:���0R\u0012��4y��\u0001�u�E�\f2f���#��_gm\u001a�=��z����)���\u001e5�5�\u0004M�\u0013�I,�ѓl��\u0006Yo��n)���@ӳ9u�\u0015@x.T��=\t��g�7�\r�o���f��k@���C\u0007'\u001a�{� �C���\bhw�\u0014U6%�@�\u0006�P?SU�\r�3\u000e�(�\u0016z��~�>0�\u000fVz$��9WUp2c���w�0Sԩt��\u0014\u0016#G�\u001e\b���A<�\u0007����b\u0002\u000f�\u000b>��\t���N��\u001d5}\u0015��ކb�\u0000�m\u0019`<���j��\b2ۛ\u00150O��^3\u000bED����4;�WB���\u0010 H�\u0002����$ٹ�\t���#R���|�68�u\u0017\u0011^~�ˡ@�p�M��\u0019\u0000L�\\��\u000e�\u001c�T�P�pc`:�f��^Б��\u0018��e�@ߦ��RB���R9��s݌{__]w#`k+\u0004\"����ξ\u0016S�,�>\u001dy�ts��}9��0�\u001e�\t\u0016 j�rQ׎#�@�R��u��ʩD̩�;��\u001c�\u001eh��5�)�\u00197��T�@Jց�Q�;0,8�ᷣAP�\b ���k��;z��\u0006b�|ue��t�ɖ8�=\u0006\u0006\u0011�v�'��\u0006sU\u0016\u0016�.n�7\u0012�͒\t�(\u001f,ғ;\u001f�FN�\u000f�p�\u0004r,\u001cp�s0�R=�\u0000\"Ey�|6U�t�\u0018L�\u000b��[��,\u0002<�%\r\f\u0000p�\u0015}?\u00003\t�\"��ا-̝�|��\f\u0001���m���\"@�wF�#g�\u0010L�V����\b��4����n���N�\u0005\u000e�s�~�j�Z�@\u0003&\u0007�N\r�AjWH!�VX(������ba\"�Nes\u0004j2\u0018!����(��*�}\u0013��kUjX<�coq���\u001e)�S�\u0015\u0018�g\b��#y\u000f��}��h�\b\u0005#L�\u0018#\u0016\u0016[�Nl�ሓu�-d���t�3\tO����\u000b!\u0000Af���\u0003%R<~�6���\u0018\u0012��SM\u0019�(�׶ș �֑��A�\b4��}bl'�1o�Ow��SQ?�S\u0003���W�.z�穘\u0000��d�DX�)�\u000ey��\u0011B@}\n�U�ݿ�� �5�\u0017��-0\u0007p�!�>�k��1\u000f>)�\u000f���u^�{'Ye\nGO�\u001au�F�\u0007�B\u00160�hvR0��\"hݪܢݠf1KKK&��w��\f$==�Ǒ�5F\u0007Q�9\b�*��v���ͨ�O�4�\u001f\u0010G�0vC͙�:YX�s�Xo�?8�\u0001�0-,��N�R�Ejq�a�L80Z�Bc�x�rqDd\u001b�ծ�*5��{�;VD��v��(P��`��k '����Ձ؍/�a\u0014\u0018\u0004\u0001\"\t�\u000b&�d\u001aS��\u001cIuۓ�f_@7�ں��ʿ�V]\u0007\u0017�=�tH�E���Di��r�[�a㹜\n`��#\u0017�\u0010�]�vH6��ҹ��u�x$X\u0015z�e\u001b�����\u0012|�8\")��>ˡ��,rh\u0004V�\u001d�ԕ\u001dkʑx�\u0012|����̋�,Ldu�\rjASMs���\f\b�\u0002�i�qY���Z�/m�\u0010�H9���x�$0��\u0007,��AH\t�{�3\tc�l\u0002H�&r�\f�\u001c�\b�\\FE�6q�mA\u000e�\u0010\u0003�A7�\bH��M*�6�?v,qA\u001c\u001d�\u0000|<�iZ�\u0007g�c�}\u0019�Ǟ�0\u0015X^�iE�\u0005e�\u0014ҿ:��\u0001���00,��1\u0019d\u000b\u001d\u001aq�Ppӈ�\u001d���BW4˒�҅�F�/��0ӷ,��\t�\u000e�Q��0�S:�9�\u0007�r�\u001c�\u001b��Iu\u001ftm-d=D^Ͻ���A2�\b\\��۹�X�k�C\u0005΁\u0011wa\u0013�\u000b�\nܺ��xTJ^\u000f����f\u0010����P]ǐT-$sX�\u00001��,J7��P\u0007��G����.�Ɏ\u000b�P`�ELRk�hS\u0007\u001fͫFp����T1�6'5,�\t���Y��\u0005M�#d=���FKcK\r�=\u0010�&-;U�z����N�{�C'Q�\t\u0010���\u001f�6\u0016>�\u0013\u001e�]~�\u0018�\u0019W\u001e��V�#4w����+��U:�\u0016��\u001dB=\u0015��IU�\u0015\u001b�鸄�`�.�����˭��o\u0002\u0001�_���\u001cn!\u0001И��a\u000e�{��*+�{\u0000��r�=C\u000f~T�ҧKS�,{de�F\u0004�A��ڈ��C\u001b�8�1��X]p\t\u0012Uc�@��� L�w�A+�\bp��۹�V�:$5��\t>�%�}�\u0007-�å}/1;�@=�����g^Zv��?��^�\fo�\u001dh\u0014�\u0013\u001e\"D\u001c\u0011굔I�pdal��\u0002st\u0007(�׶;��\f�\"��\\H���,.ܪ9Sx�B��\u0016\u0010\u001d�\u000e�z\u0000\u0005��D9�?���P\\�\\�\bVS�i*�8\u000eT W�{�\u0007P��4D\u0004��r\u000b�\b=���\u001f�*������]������-��O�cC\u001d�����D\t�-i��?��\u0001\u0011B2_\u0003/��+�^\u0006�J��\u0006�J�9��N=\r1I��(��J֊pZay�(��t\u0012I<��pI�L1�o�K|\u0018WiqR��ʊ�k\u001d|\"�\u001cQ$����!$��Id�₣A)�\b���L�Ұw\u0016{��w�BLI�pWu�]�!�Si��\u0014�V����\u0014�@�F���TbB�\b=��\u0011�B�\r!qCg-�p��y!��8�l:��:}�\u000fg`�ѩ�G�n\u0017�L�\u0014b�_����^.�\u001b�`��P���plN��\\�X�/\u000e\u0006� �����}�D*_e�\u0018����+�s�\u0000]d�|�o��r�^�Q\u0010w�\u000f\u000f\u000f2g�պ�q\u00068Z_���[\n&��緈�.d*�c�\"\u0017\u000b�?�TX-M3��y�e��Θ\u0006w0ňr��Y=A��6�Y�w<\u0010 G�v�\u0011��L�F�v��R+pxˋ�0�����\u001a��o~\u0017ĝ������m\u0013��뵽ݣA4�\b���L���z\u0000�EI͐��?��L\u0011�\u001f�ʷ�\u0017�4B]�)r�\u00020�Օ<�ᰑ#����7e���\u0006P6�1]���S�\u0017\u001cH]o�0$:&T�\u0003B�\u0010T%o���F�e�6\\��4�y+�Q�lo�\\��\u0015E�\u001c�S\u001e����l�U�c�?q��oF�)\u0005̘�$�\u0006�j4�I?��9�\r\u0014���ݴ�6� c��\f�!���C�� j��_6/�\u000eѝ��b�\u0002�9s���|B�3���y\fW��;�'\\�\u001b��1fܳd�M*ı�����\u0017S��YW\u0019��\u0012�)���Ï�KoB��\u0016_���񼌱Y�b�\u001a��D��\u000eݟ�[��ă�)�Ó\u0014uʚ�(�q���A4�\b���۷&\u001aW4�!4����؆m]Z�:�V��H��$��XK`2z��y�iݍ�=��}��~\u000e9�-�j��\u0000�c\u0005\\?1�p�M��I�\n=5�[5�\u00024�ٝ�\u000b��_��\r��\u001a� l����:o��42-���kN�(H9��8�WЋ�Mv� ���V��N\u0004�]�\u001c�\u000f:?n�6�!S\u0000\ba¼A/��!����\u001f��u���!�z�\u0010��}�ZVS\tڿX��\u001f�\u0013����P�b���}�\fΛ�D��㐞;�IO\"ɜ�VI�_�\u0006�鑂s=�0�%�\u0002�w�\u0011\u0001\u0001�_\u0014o-]ց^�F��2\u0004��d�e����}Že�$r\u0018�\u0000\u0015\tf\u0013�7\fZ���.�#��AR�\b���ۺ��\u0017%�5\u000faY���������8L�4\u0005�����h��zI `TJ�\u0018\u0003�x[\u0015�Ih�A����\u0001@7��\u0006lӉ@E��sʿ^\u0012�eQ���\u0017��%n�*���\u000bM���$��\u0019Fm�h@�a���ɛ�\"�7\u0006�jF#�\u0001\u001e��w�\u000f��ꈈ�ٍ\u0006�v��2����\u001a��*���0rj\u0005J�AE�\r�3\u001d8x�w��;�K/��N~�U��\u0016��ݮ\u0007��*��{��?2O��\u00118�ڦ���zZљ��\u000bT�=�=�\u0007��q�\u001d�0[�@\t�\u001b\u001fuJ��#���һ\u0014�4\u0002\u0006��\fnJ�c�cX%��KQ;��$�֋�EuXGl�n��Tz�Ci�P����r���\u001c�%��D%�rJ��\u0006�\u000e�\u0011��0\u000f�ࣃ�Az�\bԀ�L�\\\u0000�Lc>O��\u0016�\t��}\u0018fª\u0005���k��0�nl����(�S⣵hq�\u0004cgt�2^�\t\u001c!��\u001f\u0018�2\r'�W\r+G�ę�\f,�\bi\r�k�\u001f\n���\u0006�s>�\u000f�4\u0013�\u000b���U�&�B>F\u0006\u0012�~��i\u0010\f\t�]X�������|Be�d���C]��m�K�\u0001��\u0015'Z�+���:a\u0000��t\u0018\u0012(W)\u000b�o+�\u0017\f\u0016>䧹��-u�k�s\u0005Ӯ�!W\u0004\u0013�8�`�)-A��+�wu����N�-X\u0010!\t�J��M%H�%r�.=O\u0011\u001fUc�\u0019\u001b�[����΂�)w\u0015�<�@\t�=���'[��\u001c��qW�:��� !�pKRs�h����.\"�>\u000e�e�����^�����9\u0010��CȄ�}�V�sbV���_���j!�4�\u0007e���C^\u0013���\u0007�u$̨��Y,�sĀ�ף�mV�.�A2�\b��M';mE����5�?�W�>�W�\u0017�Lq�D-��2��Ż6_�o�y�=\u0005�o%\u0001�S�9KRy+�\u000b��&��Y�\u0013\u001aJ^E�Z���@�w��\u0002{h=5�I=r�`����4\u0019\"��m��6���h=\u0002n����]��ʟ�i{C�!��L�MːY\u0018\u0001mŋ\r�Z�\u0003.�\u0005+\u001d��\u0001k�\u0004��\u001bEC=�}v�}O�\u0017��$7o�&�q�s�JH!����Т�H²\u0017�\u0006SB�z�3V�0�\u0016>\u0007\n�q���[3����J�w:\u001faIJ�9�\\�\u0013��څC\u001b[�H�� �I��\u0014SQ�``\u0019��2\u000f$k�\u0013w}\u0005T4���M����׌�\u0019�s��|\u000f��A:�\b���L�����\u0005x��X_��F���ҍ'�����\u0003C\u0012��2���ml\\o�\f�M�l�(��U3�\u0015��\u0003\u001a[��:�cx��̩��y\u0005�P\t�\fU�i��\\n�����\u0010��\b)�����[�T\u0000-z\u000f�TI瞜6�I�\\\u0015�F�\u001e�_Y\u0012(���\u0013\u0003\u0011���l\u001c�d�D-�d���kk�����K�����h\r5d�\\����)�)��i�K��y`X�UL�\u001e�&\u001dA�x>0�����9bE��ż�B���Qj&K�U�\t�)(���N˭�W\u0002_��6\u0007,�_��\u000f�+z�a�\n@={'��\u0018M��S}4\u0004S�}���.V$i|3D�fi\n��8�\u001b�&\r#e�Q̠n�AJ�\t\u0010��M&G���:s\u0007d�n<��C�\u001d��\u0001<\n��v��U��m�)kQ�\u0019�\u00072\u001e+7�ڌ�����)�\n�\u0015,�U���8\u001f�ìC��\u0016�ja�\u0015lڬ� !\u0012��_����/��Z>\t�5;��\u0006d\u0017�*\u0018�\f��\u0003^�\frlEg�9H\u0010{�\u0019Z����[���*\u00148��\u0012\u001e�c̀8�q�Z�^�����y�1n�u�j�݌�+2&�)��[�7�U�›݉��\u0003�F����L2\u0015�B�(n����ad�-]�q\u0007�(\u0005I�ԃ��\u00194&\u001a��w��|�\t#)BŔ�#Ve�\\@\u000b�p:zj\u000fL\u000f�c�\u001ek\u000b0\\�\u001b��p�r����&U�\u0006\u0006�!�p޽\"\u0002g`��ͻ4�(��b��\u001f\u0005�n��z���?\u0005��):5��\t�t�F7��\u001f}#\u000f��\u0016�{\t�YQ}\u0016n���͍�zw6\n�-\u000bT\nT��=��\u0011>\u0014�>U��:\u0000yJ}8i�W\nE�9Jy.\u0002�/%��O\u0011$\u000e�ؾ�\u0015�G.+�cr�An�\tL��}b�>��w��Äz�b�;���ѓ@�4\rxZzY(�\u001b?��]ڜ��+��\u001bp·��\u001d�\rJ\u001e\u000f���\u001e�U�Ȍ[��ħ\u0019�\u001az�%c<��韗~�6B\u0012ι�&\u0015b�tM��y�\nݕ_��Dy)l\u0010@��U�?�Z�~+��\t\u000f,\u000eP�f��@\u0000A!�k��w��Y\u0001G�j�\u0006)�\u001a@F0ҩ�^\u0012�`�d����6s�zhfe���4?���͒��o��b8�~�1�WϺ�tM�:\u00028Kbo�l\u0012x�QX�U�;i\u001emKf;`\u0015cl�\n.2G�\u0015qcQxw'�\u001d\u0007�Z/1��sfO�j\u0003*\u001d.@�W9Ŧ:r�N\u0018ĥ;���|��uF8v&Q.3ޟ����_��p��[oM��6$U\u001bd(�@\u0018\nS\\\u0017W`;'WJ�<�]�\u0003\u0004^Ӻ�Dp�-k�b�3���{+*Z�k�A#�\t`���2o(0\u0012;r��O�+�\u0000��g�E/u��R}\rL\u0004���\u0005�[��6RM��8\u001dS�\u0001F�^���� a�\u0010cy�s�9�K�3�]&\u001f���d�&\u0013�4\u0013���8�&��{<�(�w\bw�:��\u001a]����\u000f��<�\u0018�4�\u0006y*��\n��\n�m�B*�0+k1�*��X2��\u000b�F\u001cWA���|ݩ(g��PT\u001a$8�G\u0003��\\$���A\u001a|M��g'[�s]Ĥ�\u000f5���4�\u0000}��ȹ\u0000BNQ�ZA��릖,2&��r���F�%t�;���(ő(\u0017�;.�Tg�\u0004d�o��π{1|1��S�{W\u0005����\u0017��\u0007�����A���ro��9�\u0010��+&֝�\"�\u0001Ғ֪�\u001bN��.��\u0002\u0013�-����{��Lٌ\u001a���=����^0*���َf\u0004�\u0018���˲�� ��\u0006X�\u0014��� .Rm^T�r�np$�x�AH�\t���M$�\u0005�\u001c@\u001b\u0001,$\u0006�\b\u0002�\u0002�K�\u0016���s����\u001c!kx����6`KG�\u0004�&�\u0005O�n@��\u0001��Ö�}\u0005�ܡ�T޺bv\f�\u000e\u0017����X�U��!��5�\u0015m��a&�\u0016Db�\u001d\t�Z݁t���\f�W�\u001c�\t�n\u0012��a�x\u0010ݣ�\u001b|RD�\n[;������ƽ\u0003�l�,\u0015����q\u0010\u001b�SK%�p�y���\u0012y�\n�\u0003hB\u0017�A�r\u00130\u0001\u00145�\u0004ؽz�$A,��\\\t\u0014��;�e·ݡ�,Wm��&ëU��\u001c\u0007-\u0014�W���\u00020\u0014�i\u00186r�|��\u0015��!\f\u0010�:�jƅ5����*qM8pGo�����I\\\u001f́�X\u0012��.�G�\u0002H�T@(�d���\u0013!E�q??�\u0005p\ng[�����X]Ё�ݣA'�\t��������Vv�\u0012\u0016����5[x\u0014$R�g,�ػ5�#O�\\��Iq�\u0006;�����\u0002�����,��]U!�gzpʁ��\u000f����la%��zy�3���@\u0011N�tz&��흠i\u0006���C�\u001d�\u001bV��=�5\u0003?G^�;%-��\\aڹ�&78`d�\u0001���Y\u001al]\u001d���c�7��OQ����:W�VD���\u000fN�L\u0003�/(�(�ƾӛ��7`h\u0006qfY6�\u0007\u000b�,�jw�>Y!��M��\u000eT9�r\u0000[Ɔ�\u0018��~p��\f�ῄu��\u001e��?+�\u0005\u00126I:�j�a�R�r�,��Uj\u0000�ט?┏H�\\\u0014�Y\"���bK�AW��xܱ�AA�\t���۷\u001fT�\u001c��Zʲ�6�����ٺL����ݬ\u0003W�'t\f��\u0016���!e[-\u0001�)A�g�)��<4��\u0001�1e�A�M�Jk\u0002!\u0002��ߤc\u0000.G*��*��\u0014�F\u0000\u0015�7�SE�ۋ\u0002�>�?Z1]�\u0006�773�Ip�ڧ�+\\���I���\u0002\u0006\u0018\u0010�l�o;%����ɜ��N8\u0004�E�#�\u0007�A�z���W���㯍\u0010Sh�������0�\u0007��˴���\u0010:�x>>\u0002G\u0018�s��,���\u000f�S���w`*�0+�O�M��\u0003�Ϗ$\t)�\u0002��\u0005> T&�\u0012\u0000N��qVStk��1�HLY\u000b�\u00004��7��\u0001���nN'�G�jH�GSN^\u001f,n�$�\u0014Y\nn\u0013b��\u0006\\\u0011��\u0004��AZ�\tĀ�ۿؖ�� �\u000bs��H\u0010�r�\u0001Dp�ϟ�3\u001d��O�H�,5?\u0017!\u001b��?\u0019��FJ���k�LK\u001fp\u0010\u00145�f�m�i�-}�����U�W�~�[��n'���<�n��K\u0017���\ft�5�F\"*\u0014������z��Ś��\u000f�\u000b�:�W\f\u001c�C{�\u0010m���9ʥ���\u0007��\u001f����5�����\f�����I�~\u0002g����۹Hcb��)x\u0003�ɫ��\u000f�����\u000b6�Դ�<�^x\u001b�\u0011�pj��ji7�[Fn�j�\u0018o��!숤hU���\b�\u0000�F��L׊��}��ڳ\u001e�\u0017\u0010r���\u001a��}I\u0003z\u0019��\u000f?cZ�����P�z�\u001d�\u0019�\u000eg8� y3\u0018GfǦ�\\+��JD@�(�\u001aB\u0016H�\u0011O�M3�\n�\u0015r�e\u0002��pֵȌ�B�Է�AS�\t؀��y��W\u001fX��m��0�;������e��F�\u0017�\u000fsSU\u0018�J�I\u0017 H]i��!+CB\u000f��'(\b*�Z\u0004�X��,I���\tF�\u0018�e-d�\u000e#L9?�>��5���-��f�*ǡ�(����'�f�g��:� s�py#\u0016�BL<\r���;�\u0015\u0001zh��r4}��\u0001\u0014\u001e0Ms��kp�Y\u0016T�7�\u0006�Na�fu\u001f�\u0003'�al�4~���\u0002�����~E\u0010��)\u0004�i3�]\b���6͘������!1}9�&�3��\u001b-����a\u0007�dh���$N\u0007�S�m���B-Fww�~e�e\t��e�*�=���8g�\u000b�`@�ق\u0013�\u0003\u0003�_2T\u0007�Xx�\u0014�>Ѹ�O>\u0006��[���\u0012Z?$^� �\u0000U�rf\u0016\u000eT����kt��A��\t�����|��i�E���=9N�9?Me�b��Œ9�.v�O�︐��߶f�5\u000b��5�}2(8t]\u0010u�e�.�f�j�c\u0012\b�>��u\t%�r�1�9�ۇ�>�wN�&X'UCWp�c�p:�J���W\t\u0018��B�,\u00179*tZ{7Ͱ!�T�M|�\u0012(D�6��\u0014g�\n�̖\"\u0001_�\u0005���bc`g���t1!�QI�Ψ6/ጆU�$�sB�\u0013E\b��\u0014�o\"'�di��\u0018)���'��ֺ鿜�u��s*8O�[MA.\u0018��Y�\u000b��M��b\u001f�\f�Q/׀>\u000b��K�\f\u0004_���b�\n1�g��:�\u0000�~��r>:RKjQ��\u00002\u0003W\tBhD9��FS��p\u0007-�\u0003\u001f����HZ^�p\u0006\u001e]73�\u0015�fp6d+���`����D�\"�v;-��\"\u001f\u0003�\u00103��.�;�(A�`�\u0004�M�P�\u001b[������\u000fl\u000b�h\u0000���\u001fZ쾣A��\n\u0000��߷�\u0012G\u0000E|��8?��\u0005h����_���R��}Jc\u001cn�Y�8}�\u0007\u000e\u001f+\r�\u001b&�t\u001f\u0000\u0006�rw��H�'L\u0010�\u000f{�S�WvJ2\u0016z\u0001YKZ/�{\r���*���2X\u0016\u001ed~�f�\u001d)�>X-�ވ�Nҋ��I�m�����11c�_�j��M\u0013)�t�2\u0003vͅI+8�ڔ23\n(�[鄑]�\u001cF8�\fj��\u0003\u0010�u\u001c�~am\u0016~\u001a3$��\u0005_��ԣ�\u000e�6\u0010]U;Y\u0016��?�|\u0012�\u0004|\u0003R�ҌG���Lˁg��\u0013/8~��4l欀Rj�g��nq�l\u0013Ch�\u00014�Cn��\u000f3\u0013T\u0010\u0007�\"#\u0016ef�\fb\n���bD�\u000f4œ�01�TQa����\u001d�?\u001e��M��\u0012eZ6\u001a�h/��'�\u0012�4E̕��j�a�\u0014�\u000e\\r4U�\u001b-����]j�\u0006m���\"A��\u0019Nr1��#���*�WP�e\u001b�\u000b�e��2�`��_!��}@�Ykbj�B�aW��=|i7+%�|;�\u0005j��E���\t��d3������\u0003����켣Aс\n\u0014��ߘd!\u0006s�S�[J���z=��\u001f���t�\u0014��G�\u0015��=�\u0013g���'�\u0002\bw��n8߆1�B\u00181E�g\u001a�_9���~š\u001f�\u0015�}Zf\u0005v|�|u�:�\u0004:ʪ�Ѷ��9�\u0019�j��I��\u001e5gP�JT�\u0018\u0018E�?���\u001b�`��z���w\u0016�[$'lE\u0011,��4����7O�a�$'\u001d�\tr���̝͡�\u0005n�_A=���`\u001f,#���\u000e:�n����=���y�\"f��%��;�Q��W6)��0�w�\u0002�\u000e\u0019U��FW<\u0010͡�\tv�\u0013��y\u001d\nk�ZFo����}T�,\u0017�Q�\u001b\u001fW�Y\"��\\\u001aZ ��BY���>\f\u000f�\u0010\u0006�Y�^ܡ�K�\u0015\u0012\u0004��.�|�˯\u001f+\u000e��~�\u0001p`�\u000fid��DQ\u001bEr\u0000�ƒj�\nx\u0015[\u0002.�K\rn\u0012%��\u0016�ձ�K%��\u001b-\u0006<`��XI��Y����q�,G\u0012@%~��;��9cS\r\u001a/i\u00108�\u0000�\u0014������[�Ϙ4-T�t7\u001fǰ��n�l2���9 N-@\u0000\r޳�\\�>K��M\t\u001e\f��\u001a|��RR\u000fG)�p|��AW�\n(����=E'�ћ�[��߬���\u0012�\u0007���\u001cLcUY-'�����8֋�u�\u0015��,�'F��b�H�ѱ�l��\u0006�7[�~\u000ea�\u0002����r�\u001b�\u0015\t6O\u0019O�^E�3C�M\u001b�1�5y�WS��Ҟ\b[uA���D\b�\u001b bu\n�Ȑ)\u001f~i\u000b�y(O�2�y��{��!5\n��^��C��t=�ۉ��<��\u0015Q&H\u0015�\u000e\u0019bu��S�\u0016����_1P\u0010b{\u0006<\u0006��\u0011��D\u0014�\u0018\u000b�B���~�\n�Z\u0004�ښ���\\�ͣj�~BWQC+��Ř��,�\u000eXO9uQq�{#\u0012��\u0007\u0011�f\u001b�[,\u0010�\n:\u0006����uF�c�S��]��\\\u0005-�F�N-�r:\u0013\u0002��A\u0000�&\u0005w��k\u0004��T�\n���8\u0001F2�4��_[\u0015��θ^I�<��B\u001b�\n<���y'�$�Pw\t�N\u001e�8��*Ko�Rp\u0002{5����0^���&2��-�b^�\u001d��:�\u001e3�i<�_\u0017\u001b�|��\b||����\u001b\u0017���E'D��c�D��8�Tdo�7��A��N��O%��˹�\u0011Ij5��PW���@�F�8\u0006$��O�,!���\u0007_�\r�>�;s��!�0����\u001e�t���B\u0017\u000b��QA�}��d��OJĵ-���V\u0007�.�C5}�D����\u0011��N\u0004-\u00165��}1n�7p��ې|ײW\u001eR��2Q\bJ��s��:�]���\u0000`�E���@\u000f忰�$P��6}�U�xU3I��\u000es\u0002m�����\u0001��U[;�R\u0004���W���v95�S陾|W'���ڠ~�\u0018��\u00130EPY3�ѸC\u0015j\u0006�~�����/�p��\t����u�]ѻ��\u00038�H��\u001d7��\u0014��ׂgA��i��\u001bA���h_Fak�U&��L5�v�\u0017%=\u0010S�I\u001f�i\\���X�ٲtzݑL0δ���௤�_y��wj���B�\u0005���e]���d�5AW�\u0005\u001e�%v6\u001f\u0004y���/�ĝ*��b�r�p�9��\u001e9\u0017l�.ͭ�z3:\u000e��\u0011 Ph�eq����W\bɶ�� \u000fǷ�J�0����A*�\nP��XЬe{\u00060��Z\t���cʤ�8�������\u000e�O�`�Z�\u0011�K�\u000f��}D��M$��I)���\u0013�\t�ys��0\u0018���u@@�\u0002�\t'~NU}I�c6�D\u001a���&S_\u0013Й�+\u0012����\u0005\u0001ܠ$d8����,\\F��\u0017�:N����s�@��\n훍�a�@Pan\u000f�6KH��\u001a&/�`E�u�tarj,�GT�\u000f\u0011��߻;�c��\tX\u000b \n\u001e�\u0003\u001bmu��\u0002��ޛ�{mq.��c\u001fO���]c\u001f��v�\\\rq%�a�O�!��l(��iOB��,\u001b�\u0003�A�^���S\r�&��%H�r��\u0019!�[%(�,\r\u0011n��\u001dˎ2@i��ج�\u001d�\u0000�A\"�\nd���m���wj�\u00180\u0017*A��5�\u001e��:�R�|�\u0014�����*=���\u001ak�ғ!��i˺�8C�\u0012��Auq��cR�c�\u001cC%7��G����\u0004ɻ:\u001d��P\u001d���6\r�T�\u0006�On0�z\u000e�S-):�\u001d�\u0014\u0000�}\u0003�?��˦T�҃\u0010j��T\u0012*\t��G�﹑\u0004��@):*�{�\u0016�\u000e[(O�9���X�ؙ݅r3������@�Y���%޸կ�6N\u001e\u0003�:�ñ7��O\u0000.\t�� #���\u0006�[�W����.��\ra?]=���Y���\u000e��W\\i\u0002�\u0010�-��R��,�,��2��\u0012�\u0014\t\nR|��~$+��9iU0�A(�\nx��Lǧ���'8\u0013KM�KK\u001eo��\u0004����[S9I�]Ļ�#�:�\u001e�\u000b�v�7�\u000b�%\u0003��q�h,Z�D��\f\u0001\u000b[dSy�V���R�L�x�\u001fk'I�L���껺�;(��H\f_*��֜��\u001c�����x��6\u0019��#��<�\u0010\u00013�F�\u0006��\u0001W�\u0001�6��k��ä�L6�dַ�a\u0004�W\\\t�czvp��iѨk0>�`�Bk�\u001a34�1���8���7I\r\u0019\u0005��������|pÿٜ4�O�W����.�c���N��9F���nߚ�hԮM�>5?\u0003�b�JC\u0017?\u001ce�0?����f3$�k+�>\u0003\u001e3\u001cd�+\u001fd�����M��\u0003\rd�A5�\n���NK���ܛ�u��ۑW�e̴19̒&�F|�\u0005�Hܵ�!�-�\u001c�\u0002*\n/{za��k���Q�n\fUA\u0011��}Zo�!~��?>(KY�4aq'Pύ_5���ܚ\u000e����s\u0002��<��9��\u001c��˦���m-\u00024\u0018DN�tU�}bx2�*�\f[�%�\u000b`h� �\u0015��\r\u0003ԫ �i\u000bSw\u0017\u00061\u00148�|��q��$���\u0016�By�͌Ũ�pF%\\Uc�T[�*�\u001agi\u00104�\u0018�mmDj\u000b�\u0010�rr�\u0006�hE�`�rB=?\u0004����o/ƝZ\u0017;;}���x�ۭ��\"M�k�;T��R�\n��\u0001X>���n�\u0011���r��w��\u0003Pػ�5\u001f6�%(��\u0000�\u0001W�\u0012L�\u0011�\u0007�A)�\n���Mz�1�Dp�{KIr\u0013����×�f���]1\u0015w�-�\u000f��/\n����� �4sE�_i\u0013\\���\u0014ո�\u001f�\u001a�:~�ăiM���-)�ͼ{��\u0019��T�\u0017��)`�Bn�ax�{Y��m\u0002�%:�����\f�z�����l����T�\u0019�C̀�vT<�ٮ1~`\u0011���\u000fj\u001dN�A��3��;4'����.X��- �=����V��t\u000eLyJ��\ft��\u001c�a'/�\u000e⻈\u001e1Boq\b�X����\u0018ܿ\b����\u0016�&���g�'���+\u001e۸��NQ5�ޯb\u0017i��]\u0002\u0019\b���t�\u001c�\\�I9�~/5���\u0003�'�M\u0016��U��y}\u001eNi���A-�\n����muh�\u001a��Ӓ���d�^\f������Z~\u0011\u001cYЊ���<���N V\u000e\u0017�'҂eUf8�l�\u000b�pO4��\\�\n\u0000Ѐa\n_9�!3�,�����P�BO5\u0017\u001bO��z����}6�q����v���#�n�\t\u001c\u0015JT=�3\\��4�0\r\u0005�o!\u0010�g����\u0005��\u0007�!Z����Sl�o_�����M�e\u0005�{@���\u0000\u0004�v�\u0011x�\u001c�\u0006\u00003�&\u000b5��h��\u001f/\u0014{����*[\r�,�#١�F�^,3L\u0018�ZN��0\u001d\u0019��a\u0017Duy�\u0011�6O(���K�T��)\u0001ԅb:.h�G�Ni<�J\u0000\u0019d�ǏD43Ώ�}��\".�����A\t��m|���٣A7�\nȀ�L�[��i\u0002\r��r�Z̓-�m�sI��2\u000f���\u001fT�\u001a��s_��ڡ���\u0004�%�\u0006�&�']ts�\u0002�Z�\\FKO7J������D�۶�ݥ4co�̞e\u0006\u0000\u0012l�}�:P�\u001a\u000e�yOJsV\f}��.tVCA\u0012�-��r�Sԓ�}�T|\u000b�\u0016���%�P\u0003\u0010��uŎ��K.=bӌ2��\u0013���Ү�8I�ڈ���q%8H��M���\fL�t\u0007֥AM���3�\u0013�\"\u001c�o|_JO�X�\u0013���\u000f�=�\u000b�^�H��L*�j�)���\\�1Uq���\u0006q\u000b_#VΫ�=���\u001c\\\u0014&�`\u000f��G����\u000f�m�\u000f��0\u001e����`\u000ez1�YgZ#\u000b�#��(1}�y2��AF�\n܀�L¾�mj�)�\u001a��c=��\u000b��`u�QM\u0019�')b�5��,��\u000e�\u000e�y.��mOG玴���\"#���\u00003Hє\u0011%�r�N�qw��|�~���~Es�����\u001b�S����$\u00076M�\u0018δ\u0006�0m�fR\u001a��\\\u000er\u0007F4������k\\\u0002>�\u001e����h���e%(�KTjo�-�����z�cQ��\u0018)���|X~xS%���u\u0018����􆇹߫�o\u0013��S�h�ۊ,ɉ��|�3\u0012[\u0018/\u001d������S�3n5��4m/w����?7�|&|V��$Z��7)&7PH�\u001cT�_EM�RD\u0001��)�GE�H\u0016�5�E�sV����W\u001e�^p�\u0010�IZ�7|VϮ�XZ���p\u001d��6�\u0013\u0007�\u000f��A4�\n���L�\u000b��#(b\u001c\u0002��\u000e��Ŧ���\u001f\u001c\r�Vm�j�\u0012\fqd�tW�\u000f|�\u0013�7-f�E\u001a���Z��!3xb�ZCT\n�^T}��\u001f����e\u0006\t+��j7_J��\u0002\u0006��$\u0010�źWXt��\u0014�#_���\u0019�U�t�2�O��Z�\u0013\r�=\u000b�r��V��d��G�>�\u001eQ|�\u0000e�;�;h��\u000f`�-\"\u001b����G��>&����'\n��@A�F���10���\\=���q��\\�c����w\u0002�5\u000f��C\u001eY���B�YZ�\u001e�ca����NU��il��f�\u000fw?�Q�I��h~���=8�>J�\u0001t\u000b���i�(\u000eHS�+dk���5���{)��\u0007\t���l'q�\u000b\"��AD�\u000b\u0004��ۺ�C#�^���\tU\t�\u0016���[y�8�[\u0005\u001b�\u0017\u001d�����\bYZ��So��J�kE+~\u0015A_�\u001c���;u�a����xo+�?��ro�%̇�C;�Ȑ�\u0004#�-�0�t\u00166�\u001a\u000e�\u001e�(��\u0019�J�CY����\u0004������1�jT-���\r�BZ�;\u000ehn��\u001c�*S�\u0018ݓ�6�u�\u0011��WB��\u001b��n��QA�]��B�H#1V�a����L�\u0018\u0012\u0004�Ӷ�퉇\u0000̙�wÕ��ه�Oo\u0013f�{��o��Ȭ�`$wOi���<��:4�\u001d\u0000���=+n�d\u0000�Fz\u0018�&Q-Y���6S�\u000bT�\u0002ע��jX\u0011f��<�v�pM����\u000b�GC��r���X�Es>۠}�Q`J��A<�\u000b\u0018��L�/W\"���@��c�6ɯ)�M����-\u000f9Fݚ�־l���{\u0012��`�ER\u001b\u001bϳ*�J\u0014\u001e�=�_�t#UFqUaa\u0017��\"\u0010)�#t��6�q�z�I��\u001eA���Avj�Y���\"��ٌ��\u001b\u001f�o�\r��:\u0013�{��V\u0002_�k�+���\f��\"\u001f��X��\u0005��p3Cؠ�Ny�[\u001c~��L�~�Y~*�����H[\u0000��*�\u0010\u0006\u0011�g��%�\u0013A�ADؔ���\rc\u00168L'S�)F4��wfsP��\f��q���t+�&0���\u0012?\u0019�J���}g��oU<\f��̎\u0010qbqwr�2�ʕ�J\u0018L\u0001�\u001fe\u000e!�%�dj\u0013}<�A�:Yn0|S��\fu{�d��Eݳ1�=u\n\u0007�AC�\u000b,��2x�\r�)\tG�,�E=��\r�t\u001d��#水^x�\u0006\u0005Dɕ\u0013\u0011�4��-�����u������d����\u0015���z\u0014J��ԭ���y�\u001b;��S�5��j��y��t4�N} �%����\u0019�\t�\t��o\f�٘~0�49���B��;�|�!4�\u001a�6\u0016q���\"Ҽ�u�Vq�\u0017�9��~��08�n\t\u001e�b'[ �y[o�\u0010���ͱ�,�����F�����q�ߜ3#��+&�\u0005\u001dH��=A�\u0017?x9��w��m�\u001d3'\u0019�:��&�T\u001b��#�\u001d�f2�\u0018�\u0000\u001c�j\u0017�`٭,�[^v%�O�D�zS5GZ^�\u0014W@4���G�\u001d��T�s��7\u0013�2!�,\u000f?\tQ���\u0000�$�aƝa�\u0001Y��K�A>�\u000b@��7\u000eË)�T�v'�s�iFʝ�Iɝ�\u001fy�BgKg�Br\r\u0007�057q��_�\u0016�Oz�VBr|�f �c�\u001a���ʊ�s�\u001aN�pћC^.���\nBĻ�w\b�SN\u000e�)��~\u0019�\u00073���\u0002f�@�ݴ���/~�B=����[\"n�*��8��.\u0017rt�lQr���(�V�\u0016�Ĕ�މdX�£0xq\u0003��/ꂄ}\u0001���\f\u0004h?)\fu���\u0000)1��\u0005֞��c\n�6�ٗ��6E�=ނ+�ˉ����\u0004���DU��\u0014\u0002\u0016�>��|n[6�\bXWp(r�1~bbX\u0016�)K֝y��\u0019�2G��I�ۤM\u0010�'��\u0000܊��A5�\u000bT��2h�ᜥv=R%�o��j+�;�)\u001f���ݶ�:�RK�l��4\u000f\\�఼�� k�\u0000���ٿ��e\u0012�j\u0007�`r<�ey�Om�񡬶���\u000eI��B�\f28��K9NO��\u001b3�-�SPE�[�?\u0005�|�l21I��\u001ab��*\rP����ϻ�Q���mw��F��\u000e\u0010\u0002?�\u0017�\u0010)��;�oQad�\u0004��:i����L�rX~�\\*_Q5\b�����\u0001����P�DveS\u000bt��\nָ�_B�*\u001c�-��\\��H�\u0007���^�����ĭ����郎�����G�\b�\u0004��k��7��\u0000.\u0006D��[�s7���ネ���{J\u000e����?(�&�G���i\u001e䜄xH�A5�\u000bh��&��\u001d�ۥf^\u0000�M���\"�0�m �\b\u000fK۔\u0011;цi:I\u001bl\u000f�f�s]ն\u0003C��E�Mē�t\u001b\u000f�‘��b���#uad\u0002Kd��^�]_�o��)%\u000b�!\u000fB�\u000fk&�Y�A��kS:���ȍ�8L):�\u0001$ֳ6\u001b��\u000bj���\u0000�v��ͦ��>\u0018�ga\u000bW�,�jÙ],*A��g�C/��\u0005�>�z\t_b����e��:Юr�\u0011��i�J�@|��l;��6ߏw�\u0005\f���\u0006�*��,�\u0014D�J��@\u001e��\u0015\u0006��T����\u0003@���{�5\r���0�\u000bO�\ny%�%��H���.��\n�\u000e�S��'z{\u0013s\u0017�Q얫3\u0004HV}\u0015�>A�0\u0007�Q�A5�\u000b|��6�B���p=~/њ\u000fԖR�<*{\u001e��\u00170��!k�n\t��_�K���&���b���\u0002\u0017���R���'� .�'����%T�x\u0010$����Vō�7\u0000����\u0011^\u0011����Z\u0006��\u0001d��e�%M\t�`G����\u00180�\"o�Y���\u001aDĈb�\u0017ógC6I\b\u0003?��\n/?�[�\u00171Ÿ�\u0013.'m5n}\u0006��\u0013��?�pZ�D�(�\u001bY���W�M5��\u00189A�تȱK���ˮs\u000b՛�K�@�o�~�.�\u001ajp̪\u0006�*��42�\u00043�~��@�:׋���@�m��.=.N�\u0001c�����\u0005\u0019\r���̲\u0002�\u0006 W\u001c\r�z̈�\u000b��.\u000eԊr��eh!��e��\f�A/�\u000b���\t��u$�,\u0004�\t�ld�CIk=\u0019���;i{�\u001aȓ���#�m~3��\u000f�[/氺���@�j�\"��3�\u0011Mq\u000e�)1�r;\u0010�m\\vM���R�|�\u0010���R�Q\u001dR��,)�%p�*\u0005�IP&�ˤ���@2s7��?���k4�l\u0013�\u001e߿�\u001d+�\u0006,�\u00181�A�\u0002�4\u0018d\u001d�3O~�4\u0016�o�yg>�9�\u0016���V��(�含h�6�#�=�K\u0004<\"4��b����R]3\t*��\f\u000b�\u0019���\u0003���z�\u000b�\u000f��\u0019�\u0007�)�.\u000bqʜ����7 A�P=��hF-���m�Gѳ�\u0005�&��mO6�V;r�AX\u000b>�\f\\�A���]��\t��� Fp}�7�&[\u001dtkC�C�\u0016�\"�|�PJ0��H\u001fd�~\u0012Lp\u0007\u000b\"6���„\u001cL�.�9x�\f��̂�\u0016<Õ\u0001d��~1W`�H\u000f��q�b�hu�̄_���R2���Z\u0006�Q]\u0002Y���\\uo&�!&��P\n�Cъ\u001d���J&�G���7�����\u0011K߯=5N?�\u001b1C�s7�Vc\u0010!�\u001d<�>T��#�q�\u0000�T8�c� W��$�^eֺ�[�����A0�\u000b̀�1ѐ\u000fJ�*\u001a:��\u0005��OX��W)��h�s\u001e&����]\b/��8�\u0000~��\"*%��-�2��t#@�஽n���KZ�|�!���HWy��{ͅ��\u0001S\u0011��\u000ea\u0013lT�,��ɓ�t\u0003\u0011�iOqZ�\u001d�\u0010��\u0001\u001c�� �\u000b�\u001e�\u001f�.�������\u0007ś%���r]zsh�E���\u0003\u0003�u�8\"\u0013ψa�V�c�v��3#Y\u0016\u00161��)]�G�?2��8Ц`�1~��\u0017�\u0010�&Z?ި�x�a���~\u000e�8ȹH�o\u0001mXi��9\u0000\u0019.Z\u001bLxR��t����zh�\u0001�\tH��,�C=��\b�Nf�\u001f�\u001apN*��&�E�0*��m��vl\u001b�1_\u0006qe��\b�A;�\u000b���۷,BWBCi\u000e�|6P\u0014<�e���H�<�3�ei\u0019ŊhM\u001ekv�&��\u0016S�MS���\u000f�r�j�4@}1]|rRC1��L\f*�\u001b�P^�R�K\u0016_B\u0000�aA\u001dZ�%V\u0004إR�55�mL�Vȋ�\u0012L|�\u0005\rI{L\fs~k/�i��lT��B\u001d-2����5�\u001d\\��7�B\u0002�W+�y\u0019\u001d�$��L)�����~ք#�]�\u001cs�&qp��%\u00017�բ{.;w�0#@ud4\u0003,�x),\u001e\u000e��x�\r\u0019ed�DQ�m\u0000�b��Z~9�E�g�7�7Pk�����cn-�\u001a������;�f^\u0018\u0005���\u0015d=�N>{\u0019y�v����\u0001\u0004�pWiw�A��I5�?'É�ǐ,|�Z�|\b|z��A=�\u000b���t�\u001a̜�_���!s�Յ;W�t�t��gJ4��C㼥I\r��\fl�͝�\u0015\u0007�U\n�\u0010�\u0017a��[TFL��e\u0007����\u0015��6&u\\x��i��I�'�c�Chy�<��o�\u0011 �M�\u0010�W\u001f�B̉�\u0018��\u0011|���J����%\u001b\u000e�zv�FMv�A�ᓻ�Z\u0013�2�T����\u0000q�\r ���v����޿<��_ڳ��\u001b�Ȥ�\u0002Èۿ\u0011�N\u0019�x��\u0019�\u001f�\u001b\b��\u001aG�4�]�m�S�͟��?�\u0001k+�L�M\u000b婕u�(�Ӗ�\u0010�\f�\u0011���|�=t�\u000fl��DTP\u00157�r�\u0005rB\u000bk�V�\u0010=~\\`}�����\u0019;3�ˍ���y�\u0010�<����\u0010��m����A8�\f\b���w���.�o�N�\u001a\u000e�\\�KFX�\u0013;ٹsR�m��*�t�\\%�@3�-\u0001\\�sTy���!�3�k&y���jQ�V\u0006\u00008�t�F�!(�c\u0006\u0012⚺-u�wp\u00111E�͑\u000eMS�-�3�M\u001eQ\u000f�\u0004�\"Y��\r�먘Sz������Ep�\u001a�\u001d>zDa�z\u0001M� \rv-�Yʠ���0�oⵣA;�\f\u001c��2z;F,u\u0018I\u000e�L��=\u0011��&\u001dj|\u0014I���7��\u000b]v��\b�ɬry��yy�d,��\u0011�����da�fHKB\b\u001d\u0019�\f3���>��Cc׏��aa3q�W�H\t�*�3�_i-P�^��B�$�Xy��&�@t��d`{\u0013�\u001f]/�ֿ�6�y��|��\u0010���{�@�$�_o^!$m\u0003�3��=+E�\u0018|��\u0012y\u001b%\b�\t+��oL]B\u0019��9�\u0015NJ�����\ry\b�\u0010�נ�A\u001f�\u0018.��qCv�i'��Ye�No-\u0016D7@�\u001a�`��,Ax:��s��O̪�Ǐ�\u0004K�\n�o�\u000e��{i\u001f�\u0016�U\t��[�|�d\u0005�[���\u001e��g��}\u0011a�\u001dz\u0012�/O��0�KT9��\u0010w�AT�\f0��kcd�0k�5\u0010��cw��\nSv�9y�Z9\u001eua��1�Hm%ra[a\u0006�\u0017�\u001dVҠO�0�>P\"���\u0011{\r��\u001d)�i��ivƔ\u0003gż�Gu6\f\u001d�s��\u0007X��b�4����}V�<\u0014��7�iG�ҍs~�\"��E�~� Q�lxV�L�H)_W�e\u00107\b9\u0004t/𼛲��:O\u000b\\�\ty�4(��\t`\"T}�#NL\u000b\u0010�?�jh��\u0010\u0006��QĜ�\u0003s��9\u001dQ�H�}���/�9\u0006��~��Zw�'!\u0005�\\sz�&I�H얡�;�\u000e�1x�׋\u0019%����$����\u0019}GM�<�z������4�\u001d��\u00147��M�_l\u0013�����\u0004��*?\u001e��=k�\u0017�����J�=�)ο\u001e�U�\u0014��A%�\fD��]��̡\u001brJa��}�h�s7�_���r�OYR\u001bnBt\fc[�3�����\fT��\u0006z�fE�A)dp+��p\u001f�J7\u001cy��M%��QO=����qt�>�>\u000f�&&)�H\u001e\u001aJ��\u0002\u0018��\u001d�\n�\u0019fF��~r����>=�b\u0011_�e&�\u0004h�\u0001��k$@�V8\u0006��oh�+ㅀ�4��~ �4��d�T����З��s\"^��\u0001�9��1#C�\u0000�̡��ŏ�\u000f\u0002�y(�?�N#%L\u0015��\u0015�Bo��믠>\u001a����\u001c�G��\u0007��+�]\u0007�\u0005�����,vW�j��4l�ذ\u000b�a��\r�\u0006}�X����k(�$���j4��P\f�ϛ[�A\u001f�\fX��X��tf�EJs��H�z�d\r�\u000b�1v\u0017/���C��Ǖ,-�F\u0007\u001fͦ��v��\u001b�J/�Ɨ/Y\u0016�I�\u0012\u001f�_̰��p\u00052���MZ��k�Y\u001c�|N�ۏ�\u0011��5QN��䈍|N�\u0018\t��I�G|�N�T9��\u0005�q��\u0013�J�o\u0011 �/6�\u000em������*��8\u000e��\u0016�8���H\f6��M�\u0002Չ^5G}�7z�\u000e�nf\n\u0012�n�;�V\"\u001aȋE\u001aI�\u0000��ȍ]�b�+K �;\u0002��9,�$�?\u001aEMe�]\u0018��4�v\u0012�Уӄ_�ΉU��WPw\u001by\\n��\u000b>p����\u0000NϠ�ETL@�빕P���\u0016�ꙉ�A\"�\fl��X�-�g�'̌<���CX\u0014p\u0010\u0016���O���\u0012Ǣ���-N�\u0012\u001c\u001e\t\u00190J\u0013�-�U�Y\u0001(c=]��\u001aa�\u001d\\R]\u0002�\u0006�\u0017�m�v���8\"�]\u00154��_4?�\u0006&\u0017\"�h��f�͚�2U�5�\u0002\u0005\u0001)�\u0018�V��\u0014e�I��Gp҈@\u001b_��o��Y>�Ҏ\u0005M=�ŕ���,O۰���\nm\n�&hRH��\u000f���l��\u000e�\u00178���\t�\r���($�6թi�򑽉�@`�ڹQ�\n]#��t���\u001e\u001a\r\"�?�\u0017%�[^��C��|�(c���\u000ewz�{�<�ܾ]5\b�\u001baX\u001c9L���cV�-�Τn=nt�l�*�͢S\u0001\"I�/��A\u0019�\f���L��Y\\�|*u슕\u0003���\u001c�\u0003���\u0003o���\\�f�\u001ca\u0006�^���$\b\u0001w:�k��y�\u0019�7V�8F�1ؕ�D'ҋugM���\u0019�\f%1��D\b\u0006�\u0005*��{\u001d�\u0010.h���Ut\u00079t\u000e�o�\"Z\u0019��\u001dN�*�=d���ClL�\t\u0007�?%3�9\u0011�9C��;,1���\u0003�̨�K\t@�(\u001f�-��ރ.F\u0015�Y,䅩^t��\f�\u000b䠂��\u001b+\u0014R9K_�7�^\u0000�ӜxRZ;��!\u0001Y���\u001c���\u001c�i_�F\u0019��\u001fh��TOʰ/�>�b�T�W*����Λ����\u001a-�ֱ�\u001fT#%�\u001c��7��E\b�\u001c[�A.�\f���M{\u001b��dB\u0010\u001cM��Ț�-��T�|]�5���?&�NElnQ\b�e��c\u001a\u0018�o\u0007\u001c\nbA\"\u001eB�\u0007��p\u0015q!�!�Y�kq���P�i���`HQ�|ܺ��9FܰD\u001e�\u0006�E�\u0003�f�D�Z.�\\3A��P�S��K�$@#L��!��\b�\u0004冕�,�tC*��\u000f\u0015�q�O����P�\u0015�S��g3s���A�� �Ǵbgj�W�\u00075���\u00053r\u0018�=J�C[����w�[�I����*�)u���MkǼek�\u001b��4F*\u0006GG\u0016�\u0012U�HR������\u001d������2��a\u0019�<#�گ\u001b\u001c@��DR�N\u00110����S\u0004�J�\u000bQ��\u0016��\"\u0016’�A'�\f���X�)���5�r�\u0004&�8\u0015�?���\u0000��'�r��N��\u000e6h$�琺Y�\u000e��\u001e^]\u000e�2t\u001d�<�m��ҳ�2p���L�V\u001b*����\u0014\u000b�N�4�PJY�\u001b��OPYBG�x��T��6c \u0002�ʇ6l+t*��>rE��ڻUKG\u001c�1�E\u0003#LfŚ��?ڤSw�*��\u000f%��\u0012�u�l:�����\u0007\u000b�=~/�]�iH\u001cm�̗��-.��\nC��\u0019����Å\u001d�\n�a��\u0006�\f�ͧ��\u001d�%�\u0014\u0018��,�\n�ֻs��g\u001c*��b4�Z\u0016������5��\f\u001a��Xo�٥�s�ݱ+q����Tai�G�\u0010}�����T�u�\u0012��ʣA6�\f���L�+�\u001d��\u0000���ԛ%ƕ��\u001a��S9=��T�\u0007\u000b\u0002\u0001�Y\u000f�!C\u001dܮ\u00044\u0014�3/!��\b@�vU>\u0013�\u0002�X�#�\"����=�.x�9�̻�;\u0012�g\u0013:ʌjG\u0012�\u0011�\u0013+��\u0012���Wv���MŰ>��Il�\u0017�\b\n�k�H�~�M\u001f�M�� ��ц�ш\u0004�t&\u001d�\u0019l����\u0019\u0011Ͼ����i�Jj\u0004!�8�(7v����\u001c�\u0004�jL���M�[�ӳ��x�v8�qϷ�\u0005�\b�\u0019\u0017\\M8����\u0000M\u0016�M�\u001dK�11\u001d>!�H�m����\u000f\u00170�\u000b�����\u001ft[�V\u001f�\u0002�j\t�w���m_��v��ű9���\u0012�-�#�\u0014\u000b{\u0005J*$����\u001b\u000b\u001b�\u0011c�A(�\fЀ�Lǵ��\u001c\u0004.G(s2�\u0015���6���� �_=�2u�\"��ͨ�r�?��\u0006u2�]��èj���4�����&�<�2�\u0012r�%X���\r���X\u0011R���KuN��CM\f��_��F�����\\8\u0013�\u0002\u000bcy�\u0019�`�x\fC���\u001cn�Nij<�\tt\u0006T�\\^��_�M�\u0010��|\u0013����z�-\bɥQ^A�+����\u0019\r8�\u000b�#\u0015ܿ~v���ƫO\bp�kI}��\u0018\t\u0017�w�,�u�\u000f���ܗ�\rw���D��\u001dV�גF\u001b\u0004��ku���\u0002N2\\<�eq\u0016+\u0018\u001fDK���\u0015��\u0019�k�Ey\u001b*�Y�U1?{�Cup*Q���\u0014���}�\n_�,�$�A)�\f��L�\u0011T��Z\u001c�:�~AF��K��\u0007�*�C������y|�>�\\������*&^�T�MZ^�J[B]?}r׏��4�U&��DA\u0006Rp'���!Z��%\u0019�s\u0014H\"k\u0004��:4k\u0000~З�\u0011\u000f\u0013\u0001����o�S��){��J�\u0019�W�\u0014r:s\u000e$\f�\u0003J�|,���૧�b\u0016\r��)\u001bL�ӗ�\u0017�\u0003GIWg\u0006˜��6����QGC���\u0015�\u0004_$ISc\u0004�\u0018!�q\u001fo�b�2\u001c.\f�܌�$~\u0012\u0012+U�O\u0016 _8\u001a��_뎞xhkN���K��\u001c\u001c�\u001en��nQ�\b8I����0�\u00067������\u0014�����A���S!�6Q�u=gM[�A/�\f���۷R�\u0014�\" �$�4�e��淩�S�\u0016��\u0002\n\t�\n\u0002�LE�\u001c�\u0006�\\�Tv�R���\f�\u00045/pH�\tG�F� ��%��������ψV!��\u0018�y \"�Ђ�\u0014+R�\u001e����T|����k\u001e�\bt���Z\n�;\u0003\n^�=Y��\u0000�t{�kϠ\u001b�(\flI�PbŴ0_A\u0000��\u0010�O�>�-*U�U\u0012A���\t-eq�\u0017��\u0011\f8\u001a�����*�\u0003�5<��\u0007NL��\rᲧ\t�0£�CO=\u001fG��Ua*\u000f��^F�\u00065`y��T�lEJb9u?\u0017���N_���\u0004P\\��$+`_\u001b�\u0003a�o����t}I�΁\b�:C��ڏ�/ׅk�eu/\u0005?i#�^�$n��5&�32��2e�1�h��\n�dz\u0005F�Ae\b\u001f��T%\u001c\u0011�JH=�\u001e���=5�\u0010�uSZoې�휻\u000eS��(`L\u0001��\u0002\u0007\u0012�\\��\u0012+����<>FA�\u0002\rrQ>��\"sե�>*\u0018�M/\u0014lJ�_>����;B����?NQ*g��A/�\r4��My}\u0007�S�\u001d?���V�Y*\u0014x쵊��\u0007\u0010\u0005)SM=H��;=�ӥ��\u001bk\rS�e�\u000fd��͵���t��Yw���\u0017T�����?ע�x�\u001aLY��3�\u0017Ɂ��\r�\u0016&�*\u0002l���j\u0007d�\u0014?�Կ���`7o�u��\u001b���,���!\u0007 ����@�6�bY��\u0019�\u0012�_Ʉ\u0018�Q��\t}a�~�M�T�\fȫN���\fC�-+���+f��J\u0001\u0015\u0018p��\u001b�7٪jbC\nn��L��+6\u001f\r����y\u0016�K��\u001bfFu�̾_߹���p(�\u001b���\u0002�|�8h��g}\u0015��u��i\u000b��5|���9s\u000b`E�������\u0015\u001c^ p���:��\u0014�m�(��A&�\rH��MN���\u0010�\u0011`}��\u001f�h�b'=��\u000b�Q�e�8�u#0\u0005X��g�E�\b[�?�\u0010\u0010\n�f����ّ��\u001f�F �+��R����?>���ZO�X���6�\\\u001a(��v�B�7�P?���ص\u0013\u0012�fI \u001crl���\u0000M}-���V��Q+y\u0013�S�\u000eG�GN�H�(�x�\u0017�-�\u0001����A\u0003\u001c#R��Gp8�J.���\u001dj��\b4��l��i���]�\u001e�{�#@���\u0011�x��Y\u001f\u00137J6��E�;�S��\u001a�o�16�L�\f�I��\u0000\"\"�2\u0006�*=�\u0011:riip��� \u0000���Y��a\\%�\\)I��n�IR�\u0013���Â��A5�\r\\��1\u0017\\;�ٌ�\u0001�\u0014(Q\u001c3�o�H\u000e�����Ȥ\u0007�`��\u00017C�z�j��J\u0013�G\b\u0006\u0005\u001c���ć��\u001a�G$��\u0004\u0000W��?e\tl|!a\n�U\u0004\u000b�TQ1Er���Mj_d\u0000ۜ2�&�^��\f\u001d�|\u00169v�7\u0017��H��͚\u0006��\u0001sW�B�?\u0018i�6�e��}\u000f\u0019*/�>I�Eb\u000b����\u001cu\\��\u0001eo���\u001a�\u0002%*��{�R�뒇.��\u0015l���.\u0015�����ytD�˄f�j�\u0002\u0012\u0017_�N�\u000e\u0007����a�r�H95\u0002��=�}W�s��A6�\r���L�w0>]��d[?sY|\\�[���}�~%�\b{x\"V\b�o�E�����W\u001e6\\6]��rH�[��\u0013�l-\rΆ�Ny�\u0011��(�u_d\u0000��@�v\u001fW4�0\u0000֪�a*'��*FhL����tx�ӧ��I\u0006�$�VEk@k�?�x�`�\u0017�I,Ὧ�\u001b��H�+��\u0007#��г]�,�����⊍Hr��O-�GK4�\u0015�����'ߦF7|��&G\"\u0019Uf\u001a\u0002m��\u0018�F��FO��o�G�k�����F�#�a��Hg\u001a6B\u0005�K \u0018\u0000t�[���ݢ�Ї�ʮYY��M\b�\rq8\u001e���?�}�r.�2�'��\u0019_�p�p\u0007�B��\u0010\\�ρRH�Ɗ\u0013c=\u000e]�d�������\b\u0013�J�h��n���\u0013B\u0017e61�C8�fV�C2���\u000e��?�42j\b'\u001cF\u0017#�\f�A���\u0007�g���\u0018\b��-a����|��m8`+G���/Z\u0000\u0017�s��)�J8�ZI��J�k7KW�R�\u000f�R�qF�7c\u001b#t�,s���2��9/\u0013V�0��UB����\f\u000b\u000e���)8�s�PmeI�*�ہ�\u0018�ԃ�xɓ��H=���\u0002�\u0015\u0003q���;��8Fcڋ�(�z\u0017���C�7�ؚI���\bª[\u0003\u000e���\u001b�$�Aˁ\r���}b\u0001����M��+�Mf���,���ώ�t@\u0010=�w-Ô-�/�\u00165�\\�\n�MW���?�\u0007�:�y�z~��Z:�dM\u0007Q!�U\u0010i7`�l�]�\u0015^�\u001a\u0014��*�i�\u0006�k�\u0019�ׯ(��\u0019�FH6�\u0000\u0007`�=H�a�L����KL��s���K4��ܝ�k��\u0018\n\u0010A\u0007�6��ߪ�\u001b��3|\u001e���V�|/�\u000e'�h@;���7ˢ瀠�Ǟ���Ӗ(��5�{�[Y\u0018�E]2��d�j�v�]6\u0018\u001dO�!�GD�2\u000f{x���yss�v�v\u0001��\\a�7�\u001a�-6�(E=�i�)�뉸�\u001a���mu\u0013�In���L�\bw�ʍ���\u0011ǚ�1a\r�\u000e`܊d���\u00071,�\n՛�\u0012O\b�\u0019:t��\u001b\u0018\u001b�X��_0��GL��6�x���_�|�C��ߕ\u0014�����zBL�����\u0017\u0011��DZ��#\u000b\u0004�l_�v�V��\u0016�\u000b�\u0017�v��NZ\u0004��&�� J�8��aX���q�U���)E\u001f*\f�A�2\u0005�����m\"S\u0000t\u0012�O�:�\u0001�At�\r����zܶ���\u0013��n�X\u0006f���0�\u0019�\u000e �������99�rx_�\u000b�J�&�\u0017�2���A�f�GA��3�Ͽ\u0014K��@qq7�2\u0014�>�7��9դ��b��\u0013vH\u0004\u0002G1 U\u0000�H��=Կ\u000bp\u0016s\u0004�%(\u0011�\u0019w\u001b.�\r\u0019�\u0002Խn�ilgϠ���ڍ#\n\u001c����ɽ���3\"\u0014r���#���\u000e\\s����_5L��H��\u001bb�\u0018��K�\u0004쵋7S��٧>)b\u000fl\u001c��Ӡ\u0017_�uZ�;M��ڂ�\r�`A0��ʝ�\u0000\u0012\u000e,�\u0002�\u0018l�\u0018B�ο���/��\u0006t���VT\b$B\u001a��?Eig���#�cN�(Z�8\u0015�\u00046W�'�i5\u0006(�b\u0018\u001a8\u0001U�\u0012\b��9�Vm���)���S\bR��%<��3��C\\\u0011\u001f��\u0013H�B}�?Q��\u0013\u0004����G\u0017��|Ь�T�k�A\u001f�\rԀ�JT>���B\u0017{T7F��8?��\u0001#��\u000b�#�$@M8�K��ZY��Jo�͸<�S�\u0016�0\u0014@�z�Z��X�v�\u000eit��p\u0007%G�\u0016\u0018����B�2[�<\u0017_����3@r��\u00022�C�\u001e�A���P6\u0001Q���'\u0013�\r��h��S\u0019\u0019�\u0001�\u0014��Q(\u0003bg�@�\u000f9�#��\u0001o�Y��It��`�\u0017�N�\bS�x\u0002\r�S�e��i�\u0019\u0005\u0003���)z��:��WI]� c���[�$���x+�k�\u0018!�5���\b����J^t�\u0017Ȗr\u0016�}?�j��'ԛ�1�JLi\t�������f�٦Pv`\u0012�!ҳ��s�={�3ͷ��A2�\r��0�RVX��j��?dS��[��w��Z,��}u��t�\\ʢ�V\u0019,�hޣ\u0001b�r)��G����\u001d������c%4�d\u0004�e�_��\u0003\u001e���\u000f�%V\u001e��+��E���d����歜�\b�9��>�\b÷3�RU$}�i�\u0010�7\u0012�A.4�D��!E�oިm�n�\u0001��c�YǬBo��\u0013�W���еSp1w�?���U2𣏤p3�0/�\u0014��`M��p�=V��Jr�;�\u0019\t���\u0018\u0003��dfG����\u0004'A���ta����3'\u000ev��\u0006�ߋ:-���L��}�+r��Q\u0016�)|ƑR$m(/�\u0004�7��\u000b\u001d�W�n�nC�u�WB��8ȣ�A-�\r���\u0002z\u000b�>񃂍\u00194�Y?��\u000b�5�+J�.�F�\u0000/��\u001a�[Lh\u001f\u0010r��_\u0002�P�Gd��+�� #�\u000089GlU�T�VD��\r��)�%�J^�g=���=���-�\n��-\u0018��\u0012�\u001d��`/~�8��\u001e\u001fDZ�\u000e�\u0011\u0001�l��@�K�ğCs\u0005���p���N�0{��FNa�~9bVo'�H�\u0011fv,S�]��Q J���n����ф����|�s���^6Z!�P>T�5ig�r���?�IP��\u0015ȍ\u0005��p����>�ͧ\u0004�1��\u0002!ۻC\u0019�\u0005�\u0001�J���(\u0011\u001bA�\u001a�iZ�tH��o�:�\u001eS�a�S�,g��߆w:ʣ�bXd��\u0016�A_�\u000e\u0010��I�g�؇�&@:$jy�y���ޥ]��bA\bd�\r�\u0000�jj�\\���Z֌�\u0011q�˙��+}��9a�\u0010PĻ�en{��˪��m~e\u0002�\u001c\u000e �D��.*)]\u0000���[�)I��\u0005K�\u0007~��H;��F\u0014\r\u000e̡vb籴��<��A/R27�ˁ�ttP�Y2Tl�\u0000�\u00159�f\u0002\u001e䎷e��E�����y#\"��Q�壇NH1�\u0016��\u0004�\u0001d�1w3���^\u000f�|����\u0016���w\u001a\f����\u0011��\u0014O�����������$8u\r\u0014Ԕ�V\b{:�\t۵6u��֊�t��i\u0012�A,�\u000e`��Xп<>'���\t�Is\u0012?��L�$`�2�Y*–xI�\u0019������^\u0015�e=����3\u0016ov\t��F�qLp\u001fv4�\u0016}o�HYl=�_s4�rg�GO�\u0003/s�ֆ\u0003�Gߔw##VGDލ\u001a08�Q~\u00105\u0006-��\r�\u0017�#�a�1��b\u001di\u001d���[Ӱs�?�0)ux�Br������\u0007J���;\u001fP�q�_�T\u0019�����>�� \u0006\u001bV\u001b\u0013mj_N^b��J�fxh��B�NQ\"\u0011ᝋEѵ\u000e�s\u001d{�*/Etz�\u0003�W\n6�t\u000b��5\u000e�{Z$2��%��Ax�x�\u0018_�M�Gīr�����\fV��R��\u001ct҄��\u0018�؏��|�hj8�\u0010.3�A'�\u000et��L�&JR�YZ}\u0011X�bʜ.D���\u000bN�v�]Q��\\ie�\u0001��U\u0015���&@&���\u0018Ԁ�-\u0002��\u0005B�>�iE�2�\u000f�ҫ\u0016���є\u0001k�=_�r\u0011�%|���jD��\u001e\u000e\u0007'vJѢ\u000f.\f��϶��.�=O�N�@�ʔ\u0002�\u0017%&\u0013\u001a��[\u0002��}�I\nSK�q�r����_ۋ���\u0014(�{��t!�5Ȅ��fk�k��H\u000f�G\u001f\u0002�҈�#k\u0014M�1�����۹�L�T��F \t�c\u001c\u001f�EӃ��5C�\u00001'�Н+���\u001b�����.�\u0003\u0012{er�ٽ��D\fC�%����Gj�F¡X�H&\u0001N�\\�d�\\�j\u0004\u0010��T\u001e\b.%�A%�\u000e���L�������\"1!)\u0005�!t��(V\u000fG���\"\")�\u001d�j���k4����ou&J�\u0003��K�BB\u0012\t1���\u0012�Cp\u0005\u0003w���\u0001NIv6\u0011G3��@�LM\u001d��\t�B����Ho���\u0019�U�\u0004@\u0016\n|�DŽ��,�j0G�|��V��M�pxH�t\u0011�\u0015\u0004D��5k��6\u000e\u0005 Yɒ�^���4�+�Ǧ�q\u0004�M���5\u001f&��`\u0018D\u001eQ�\n����G�(�v�W8��)����)\"\u000b!9XH\f�|��xTo��\u0016/Ey�:_�3.\u00077�L�\rg����{äyTM�\u0001S�z)(™h\"���O��\u0015y�\f�%�\u0013K�_q�\u001d2l�\u0014�Md�A �\u000e���MY\u000fJ�\u001c�\u0019��4��~OjWm\u0014(�4�\u0012�T\u0013\tgԕ�\r�c��\u0018�\u0002�J��f������G\u00187\\@!o�\u0015��7^Ҵ\u0000�.s�*�4Z��^AH���/>���\u0011�g�`wGs��d��Gq����U�+��j��<�7�eb�'��!�]�ɲ�^E�\u001ar��ȗȶS\u0004'�\u0003<=0�\u0003��xk�p�Ux�q�<3\u0018,Z~ü��\u000f�{��)�?1ȁ\u0001KEhl&�����7���V�\u0017���n�U\u0005���ys= \u0003\u0000n�i�F�������~�G\u0018��{V\u0011�]H�AK��2�@9,\u000b�64�\u0016B�J��f\u0003\u0012�=�O~w�3'���\u001b�A%�\u000e���X�.K�MP\tU�� ~B���[^\u0010{F#AD��\u0007J�]����&�\u001b��� �c5�Eo\t\u000f��=\u0010Pۭ&\u0007\u0007\u001a\u001d9�T\u0011�P:ދi���\u001d{or\u0001��\u001c@x���7�:$���i���@E�$�C��\u0015^R\u001e�X��C�2��Nі�)�f�}�EfH�Wu�\u000753�J�K��A\u0011j��<�\u0001\u0011A���\n����\u000f���\u0000�]\u0001P���~\u001d\u001c���~:\u001eo�/�Q:l��/\u000fdk\u0007\u0016[\u0019t��Ɓ]�?�՛�&A�}�tA�\u0005\u001f<�\u0007\b��(JIy�\n��^�����r�o��v�B�=[������W�A�sO�\r�w���R�H��?��\u0000�A*�\u000eĀ��2O�\u0003�}A�$p���(�C\u0019�k�\u001b�(g5�Q\u0003F�}\u0013a\tN\f��d\u0013�dՇ\u001e���]\u001fྮM��H\r\u0010�g�*’����a��\u000fe~F\\l&oM�=\u0003\u0014��O\u001e�6R�\u0012)'\u0001\u0018C�߻�сE�5n'+�\u0017�f�5!�a\u001ckp��]�\u001e\"�w�j�ʳ�>�\u001a|܃M^a��\n�?�ec�������r��\u0004�mh\u0006�oue�\fŷ��D+�d-�F�߱pt@�5\u0015\u001dO\u0013�$J4\u0015t4F\u000f�X�Z٣T8�U��yZ`s�\n��1��\u001e)t���`��M\f�\u0018�����@��۶�g\u000b7\u001f\u0003\u0012\\1m�S��l_����\u000b�\u0018\u0007É�֣\u0016�L�;S{���A$�\u000e؀�L�����ݞ#��q$�&A�a�RX�\\���VB�̦����!�ar�\u0004�\u001a���S��ժ}-\"���4Q-3��\u0003{ش�]Xe]]‰��S��_�Y\u0007\u0001�\b�+}���Ȩ-)sm\"\u0017�V����:W\u0001*z�3�ܧ�@ʜ��T���\u0019�҄��;��� f��y.qb�彂e #��*���&\u0013���\t\"\\#�$a��#��S\u000b\u0006�\u0016 V�W�{�fg��\u0006;%�tu�(U�4*�� �=�TQ�\u001c<\u0017�%�\u0001�~FSo\u0017R��f�?�\u0010�*$Ł,\u0003\u0001�\u0018�S<\u001e�t�K���l\n�뙈\f\u00126~�1PR$�J��7�}�x��v�A*�\u000e��L���Э��9I�\u0004��$'�}׊V��\n��Kke<�x2\u000b�\u0017�\u0004�X:3X��86$�*�\r\u0013O�\u001e؜�?^�����Jn�����v�\r\u001a�3�5Q8�d�Ҿ��\u0010�Bq;x`��\tã82r�x�>��+XJX^i�\b?�R��ok\u000bt�_-�\u0015s�(\u0010�d̚-������W����L�\u001bq�Y�\u001d�r�@�p.\u0006Q+5��s~G\u001d�Fv�Hm��Xkau1�\u0004 )�\u0001\u0010%YT�B����N�&�a�ќۉDŽH���e�%.Oc���.=&�y�U~\u0010\\�\"gCTjҭ�!\u0002�<`H�q�������w��қF��j�z��,��\u0018�[�A(�\u000f\u0000��L��\u000b\u0005,}�y\u0015x#`\u0014�\u0005\r�\u0003�>&Du1YD\u0001\u0015x�Y\u0016\u0015rlҘ��f�\u000e3�\u0019�-Q��\u0016̽�6?�\b��]�\u0016F��[�V�`���m2Ђ���b�\"��Z\u0003\b�O�\u0002��\u0018�iUk\u0000\\����#Ô�ft\"uM�F?\u000b�2�\u001f����\u000e�_���\u001a8]��m\u0013���\u0000J�\u001e��\u000e#�O�\u0017\u0001�-9� \t������\u001c�u0��V�\u001a�9yҥ�~D/C\f��\u001c<\bZ�ԥ�Ҫw�~��\u0007����d\u001eE�T`�K�R)��8\u0012k\f��5�6�@�dJ�=�$p&���z��\n�o�@��&P�J���\"��\u0002=u���\u0018u�e\u0007��$�A/�\u000f\u0014��1�\\���� �H\u0005Y*���#\u0017�ľǭ\u001e\u0006;�\r\u001e\u0002���\u000f�oKI\t�]�>�4�T�R({�N�}Ȕ\u00002�2�Q\fL\u00185�0\u001dc�Yz\u000f�\\f�R5�%��o�ɦe������R�� �l�>�E80\u0014�'�=\\'�f�b�%I�ɱ93�OL�Ӊ��Z�U�ޫL���\u0012vsi�moJ�\b\nW�%#ɀ5����X�\u0010\u0013�n\u0015��c\u000b�\u001fY[P�0���ux\u0015�k\u000e�QJ]I\u0017���[\\��\u000f�w\"���_'��\u0015����F��<\u0005�j\u0012j�I5�1��\u0018*\b�\\����\u00048�Ǘ����/^V\u000e��M�m��^_�jf��\u000e�O�\u0017xx\u0006L!�I�r\u0017x����d����&�#�*\u001d��\u00163�b\t:��*\u0005��FRnRw�<�>\u0013/��\u00158#8����\u0002C]�:�5t��£A)�\u000f<��W��.�5�ҙ؄@��\r�\u0010\u0010#��4�\u000b�0�areܱ�:������t$еa�̅��\u0019���v�2V&���*:�`KE\u0010l��{�pw���\u001f]E^R\u0003aݹ�u\u0017�L�E\u0004J2��\u00114�\u001b\u001f�~\u000b\u001e��Z0�z\u0007�1[\u0014�\u0014㑹\u0005�Ʈ��˹����>\"n�K\"�����s�w��C�\"hO�\u001c�$_}\u0015\u0003�\u000e���!!�eF�ۺ\u0019_q����E��h�\u0011�?S�v�����\u0018R���\u0011P6��6��X\"��z>�9��?w��P\u0016T\\�&�!�\u0019$s\u0005dgS��;�����\u0014\u001f�+)�)_�,0�#\f�C\u0000\u0001�H�\u0007�,9��A.�\u000fP��L�uho�g\u001c,0\u0000\u0012�ủ\u0015+��.,��k#�\"�\f�B2\n�?�-c�3�I���o��QJ�'W��7Q]'�P�r\u0013��`7��\t�\u0002&$^�h�?H�\u001e�t&Y�v��7j:��^��x�q.\\+���6I�o������\u0003\ta�8⢮>pȁ�Α������O\u000e�ŧk�9k��#Y\n�t�\u0011�^�\r#;K9��;�(\u001b�]�+a�\u000b���\u001c�\\�x�6��!�i,|���k��g�ѱy�F\u0015�.�w�>]\u000b�}ېD�/'%L���H���\u0006‹yW����H�]g%Z�ǂ�8U�\u001a��A�hc�ߞc������d\u0002\u0003��}��i]���\u000eW&���$�A7�\u000fd��MW�\f���u9����#w�l��\f�P��K\u000b�_���<�ff��c���\u0019��E�K\u0018�\u0005 \u001f�D%�\u0016���Ӱ�K\u0005�)C,G�$�\u000e��)�\t���sv�.\r��D cO��E��n��\u0006¨���)��!>:�X�w+�n�e\u001df\f�\fm�(c\u0004.6��?�WϏ����\u0007�9�%�\u0003�lm4��~�\u0002�o'�󷴮|g�CX�\u000et�u=��ؿGk�\nM��\u0016VkG\u0012�^y�����,\u0017���8�\u0002���\u001aSx�����\u000e�ϴ\u0018�1)�8\u001e��\f����&�{���\"\u001a{�����\u00024��v�|ol�e���G]G!\u0012R���o\u001a\u001e����$Aw!�\u0006\u000e*e����c�\u0015!��\u0003JfͿ\u0014i\u0014o��\u000b��b�\u001f�Ik���ղ\u0011f���g<͂\u0012�!\u001a�\u001b]\u0018�/��\u0010\u0015��ƍj)�aO\n83'�6��\u0007C�!\u001f�>k��\u000b���$}�@1_9��\u0014Ja\u0019T\u001f5�7�|2�r)\\y\u0011^p(� t��A(�\u000f���L�'!�ȉ\u0017쾲e�o�}Sbx�����$��F�b�'�/O\u0005l\u0015\r�\\��L�E��\u0002U���d_5\u0006�G�I@<\bᒒ\u0010�c�\u001b��\u0015b���[=�^��ֻ?�洔[L���$�G\"��S���JCMP����-�TK�%�\nXW����P���\u001a<񍢗\b\n��=W\u001f8n�\u0010U\t���W�j��t<\u000b#�p�\u0003r7�Z�%3-m�؉a�?�fg�\u0000�\u0019�\u0014�;���&�R�\u0016�@3�w��2��=*#�D�\u0003¶v5}��<�O�_d\u0016�چ�X��z\u001d\u000f4�����\u0006nbKp��x�1�\u0001�sЦOp\u0003�͙�\u001d�K�|٘6����A'�\u000f���X\u000f�\u0006����0v1�޼��Љ�\u0016B�Q���h�p��vTҨ+3�1M�_��SH�ÿI�\u000f#��}c�\u0001\u0015qR;�u�&�|\u000e,6Mv)T\u00015�R�\u0002�7]v#�/��������ŀܳ;}'_q\u001f�I\u000fN�:��iMTwP&�i\u0003t[, <\u0014Z|nEO��;�f�A��Vԏta�\u0014t?�\u0000�\u001c��q��t��:3��y<4�iF�\u0003\u0005J5����d��Q��0�DA��K,׍��\tG�i*\u001c��Z�P/��p3\tX�L�4�Ɲ\u0014��}����\u0001a-%0ơ\\5��v�L\u0010��A��\u0012�A\u0002q}�+_\u001bf<�&��4�М��\u0002��=�\u0001|�A��\u000f���|�J���Yb%_�3�x��\u000e=K��+�\u0006�\u000b�>Jr�Ѡ��������z�\u0003�����A�O�O��W�1�kBQ%Ѐ����g<[*�@²\u0013��\u0001X\np[�\u0014�$e�E\u001b���\u0012���c��\bQJ-1|J�(�8b0;ף�\u0000(���4c\u0004\u0006Y�\f\n�I��1,���&��ʙŠiɀ���ЋB���H\u0013\n\n��z�h��2D\u0011��c�L�o�\u001a�m���EY��'��筊\u0004\u0011��u�� \u0017��\u0014LifG�'�C5�,r�\u000b�u�k���qi0>��?~������\"~�[�����ߣ�aN�����\u0006�h��H�$K��SV��s�e��\u001ei�\u001b��#�D��\u0015�O�o��F��d�R^�]%��*_�b���\n�\u0014ƅ��~\\�\u0015�/\\�T��ޒc\b\u0014(�C}����B�^\u0000*��\b����Qe�YJ�<.L�l�\u001d���\n�\u0015�\u0014���=\u000bL�ʸR��\u0000�\r�\u0006z\u001d[��<��M=���w\u0017j�\u0007�6\r\u001b�+��\u0016&�:�\t\t��8W���\r���\u00173/FY>�(�\f�\u000f���\u0014�\\��1e��L$X�\u0004�\rX��u�A(�\u000f������Ј[c��Y�|p�o~�k[�\u000f������\u001f^\f��T�~�\u0003c������{\\�\u0000D�,��]�}�z��\u001d���{�1��31i>�7��A\u000fY�\u0002���\u0018�x\u001ba����z��-\u000es*�=�$}��T��u��8���\u001b�u�u\nT`4fʱ��w��U�\u0015�\u0015L�\u0018\u0003�j9/�c���B��\u0012�\u000b�:K\r,s���a�` ��\u0003b�\u001esQm�s\f�o��|H\u0019_o��,�~�@��7\u0002X�\u0014�&�'vG�\u0006�s��m���\u000b�r\f\u000b��ٱ�h��5�B�X�&�#�\u0012<�����&~ Ԅ�\u000b���4L�TԸ����0L�\b��X\u0002n�A+�\u0010\u0004��M)� �\u0017�\u001a�ς��\u0012��'i`��� A�֩�׎�ptG���?�w��)��?�j��s�U�R�&�m�Ɣn\u001d�k\u0006����ѩ_��\u0016��~�\u001bh\u0005L�?��6k���|\u0018<�5!ƒݰ\u0013%����5\u0003Ĵ��A��\u0010,��}�h���Ub\u0014��Ĩ�V���DzD���\u00149�)�����\u0005 /�<��D�Z\u00152\u0017\r�D;9\u0004��ͼ�\u0015�O+�x@�`߷֖�_x\u0005k���h�m6��\f;�E�aS|c��Mʀ\u0002@�\u0003�8Y\u001d4\r�g��\u001f�%V�\u0011X����\u0000] )\u001dQ\u000b\u0010\b�Q.\b.Y�'��\u0016���An�͒nm6�wV�htf�g6��8�5I�0��e��\u000e\u0004_\u001dن����,�3�ׄ��s�����0\u0010�d��j<�\u001bd\"Ԛԕ�G>�*+9�y�Y�\u0007�\u0014��\r�4W�#��\u00047\u0017\u0002��,\u0010T�uF�P1�Iɳ\u0000��XE�\u000b�o\u0004��R���\u0019\u0007��x5c9J9�A.�\u0010���MF\u00115\u001d;�\u000f�\u000e\u0002\u001at�C�x��9�{�\"o�M����\u001f�Rڦ���:�\u001d���m���o�'Z��2�J̻o��,ך�\u001af�\u0013���\u0016X����̹i߆���E�\ti��\u0004���s�\u0011K�~�\b�\n��KD.&��\u000f��X\u0014�7�ٸ_�=_%��\u0001\u0018\u001e�Xa��r\\��\t�eC�f\fB��9溗z\u000b�d0�/�Aݼ�:-=ֶ6҈Y�q1#�D2w�BL�H��$�� ��D��ơl\u0004�u�g��S�\u000e\u000e�3�ܓ�O�v�R�̓\u0002\u000fçS����A\u0017����R\u000e|�t��4��o���\u000el���E�\f�Y\u0014)N��k\u00041�g42M\u001a��\u000e�A4�\u0010���F�yH0�\"�\u0019\u0015��¿J!L2Qw��\u001aW\u00010}��:݅^Ѻ�a��E5m=�<�(\n3��0�NLj};�:yU\u001cB]�<�\u001e����|E�a�\u001b��\u0001�\u0015ۯH�U\"�v\u000f����i{L\u001e�=�ĥ��#���\u0010l��\u0016&�h�\u0013C�\u0012\u001b�\u000be^��uX���F\u001e��{Sz�e��N�F,�~������ft�A@��\u001e8�`�ص�L\f�W߱��4Y\t�.\u0003\u000f��s�+�������lO���\u001f앾��㓮~\t\u001e\u0016���\u0003u6իX��\u0002Y�r��L�\u001b\u0003K؂�\u000f$\u0017+��F�_�\u001e3���\u001au�)~l�[S1\u0018�̑�~�������p�9w(��\u0002�Ǔ�8�AI�\u0011\b��L��IX�\u0007s\u0012!�_)�� �=\u0000�;\u0011��A�N�.\u0002�\u0003\neD�ݕ&F�\u0019��\u0000Ն��|'2�d��D�\u001a�.2�5�[-\"\u0004��q{��\u000b�D\u001bO\u0005��\u001d\u0016|X�h�2�e�܃�DA�a��zRyJ��l�h�\u0007\"���Jg�\nꇓ��j��A;��Cb�#\u001c&p��D�w��*�\u001a��ި�'��>\u000b!�\u0012�?\b�漡-�~���G��p׬^\u0006�o�$ѣ\u0002��\u0003��\n��\u0013\u0018_5n@1\u0013w�F��(�u�.ֹV\r���S\u0003š�u�w\u0003Mִ�b\u001a�i�{ȣ����0`�|J���ǡH�ɪ\f�\u0014�\u0003�\u0015�+�%$�\r�9)z��o\u0015�lF��\b��l\u0002�NΖ�-�9��\u00008l�{hS�<�I�AV�\u0011\u001c��L��\u001c�2��\t\u000f�/~�@��(��ޚ�R�V���K\f\u001f\u0006RvU3\u0017id�͉d 9�\u0014��xP+�$&�a4%�J%��[���6ݥ����ye<;c�LJRO<��M\"\u0011L\u000bKt��0;]�,�^'DK\u0013$'F݂a��t�b�OCr\r�E�\u0010\f���6K��\u0013)/z�{�66�,\u0003��JRb\u001cJ��\u0000��\u0011�,<ǔ���\u001b_�BMu\u000eM�t\u001a\u0014�!\u0002�}\u0016|�]��\u0011iw���w_�W�_]��`\u0015\u000e2�ש%0o���\u001d/D\u0011���V�ǭ���\u0015��R��TF�݆���+u@e{Y>�����=Ek\u0007�eGlZg��X\u001b�hϬ�#W\u001c��\u001b\b�pul�3��<�����R��\u001e~�\b[f��\\\u001b�8.�*��̪���w�w��Aa�\u00110��Xп$�K�\u0013�l��\u001c+(ù�\u001f6\u0000y�\u0010��\n���8\u0003��\u001a*x���@a�7�1b��f&-=�����쟨?X7��\u0011$EE1�\u0010\u001dE�S�\rsڜ\u0010�\b^���\t�{��?�}2\u001c\r\f�\u0007R�\u001e����-P�-��VYe��q\u0001��pe�\u0011�[}\u0004n�\b\u0015��������\u0005v\u0001�!�]�!�_)ŕc�Q�2�&9 ���@���3j��b��8G^4Y�\u0012�\u0000/\u000b4H�\u0013܄���\rO\u0007�+�=�D�O\u0000���\u0019r�j�$�\u000b�\b\u0007S�-P�}u��A\u001a�\u0011D��L�=A�\b\":�Q�l�\u000f��@k\u000f��a��x\u0016�b.��[��LV6�j%�\r��\u0015�C�\"Ȕ�gB�Cs\"A\u0013�\u001a�,��#s\b\u0000\u0016��L)`�Gk�\u000e�Ͳ�n�mJ\u0013Pf�\u0019�\r�wE\u000em\n\"�¼�\u0006�ie�mP Ҩ�T���3Olζf��\u0000a�b���v����\nUu߰c]�*��U�PYZ�\u0015��\\S�+\u0016^�\r��\u0018�\u0014y\u0014ѵ��eٶS�^\u0007�\u001d.)������� ����1�\u000b��ҋ��L��m\"�4\u0017��X��j\u0002D�\u0007!K�Z����Y�ܭ�B\u0015����%�VcY�\u0013h�I\u0004>w!�^�ۣA\u001f�\u0011X��L�@I�\u001f/4^��t\u000e�#\u00042P�(�\u0002u�\u0000�N�`X�\u00133��\u001d��P��%\u0004s�-\"D�$���Yށ���!I�;!\u001a�U��)hǻ�\u000b)\n���=ս\u000e��\u000b\u0015�ؚ\u000e�Ս��[gP��]jh���婣h` �Y\n`�O��\u0015՛z^%��D�\u0006\u000b[���prݒ�\u000e x�ٖs\"�\n\u0007f-�Ɩ`\u001d�Z���ͩ\u0018�����G\u0012e\t��w��^��\u001b[�\u0006�\u001em�1���`-Z�U�E��Z��pH�rc\u0006\u001f�=��Sw,\\\u001f����f�D\u00072��@\"-\fC\u0000\u0006�bI\u000e%rx���O\n�u�����>\u0007���d��\u0017�2]�B���-�A#�\u0011l��L�?\u0014Y\f�ZI��\u000e:�x\u0019��<���Z�\u0001q,\\\u0016=I|�h���h\n.��1�\u0014�\b�:�\u000bĸ�]\u001e�/O\u0015\u000eߧ\u000bF��Kn�ƈ�\u001d+:FNZ \"w\u000bԸ\u000e_�rwA����]\u001c�f���9V}\u0014�\u001a*B��\u0001�o^\u0018SY#R�^³���S\u001el��D�÷\u000eo\u001aB��\u0004}\fG���2/Y\u0001\u0012i;��:��8�����\u0012s\"����HI~Z3έ�A\u001d�\u0011���L���\u001e���w.[t�ŀ\u0017f!\u001d����\bi\u001d:ְ\u0000�\u0016x ��\u0019T\u001a��W\\-�A\u0012�Ԇ\u001f���!�$vS�FPe\nF\u001bu��%\u001a�u����V��@\u0012��Ē���c�x\t�\fQ��P;��'Q��\u0003�Y���Y\u001b�ᘉ�{=���0�ܓ\u00043!�{}��\u0010-�\u0017/\r��\u000fL\u0000�\n46U�b�\f���\\$b���뱍�,Ne��\u0003R\u0002���3��m�BAum\"�[�%ȈF\"Ґ��\u0000,��\u0012y��,'�A�\u0007���-&+�\u0018g{w}5\u0017���LK��gIŢ�0\u0010�m\u000f\u0018����h�w�ݴ9��\u0001��}��E_�x�\fv���A$�\u0011���L��e@%�A�e*�\f��Y\u0017Y\u0005pax]�%S�\u0014����\u001a�O��\"��y���\r3\u0018���C�icB�\f�\tR��,�Ub�\u001c�d��\\�$�Mg_��mu!\u0004�Nf��V�\u0011e�}���C\r�ܰx��\u0019#ƭo1)\n�ާ\n@T:h<���\u001a����u�\r�\u0013걾��\u0001���m��73�\u001a�\b$��F��\u000b�\u0014��HM��߷\u001a<Ϛ��\u0018���G��b略;N#�%X�~�\u001b$�}]�e��j}��\nk��\u0010��\u000e����f�\u0013\b\t7��s�\u0014�6�\u001fW�J'���\u0002�\u0016ض\u000f�\u0019�L9����u����+�\u001dl\u0015�\n�V\\��Aw�\u0011���LڂD���y5�Q�gZɩ��u\n3�\b�:��g\u0011Z�<7*ˑ��%��\u000e�N���XZ�\f�\u0006Y��y�U�]\\��QqP\u00134��w��2�\u0006>���Dd&��Y����I�]�������\u0016�I�[�JoҨF���\u0018�4~�\u0013;��K�\u000e��1�Ma�����\u001e��\u0012q,.�\u0002N�`W�n�v,\u0015\u001c'M%�~\u000e)k}\u0014*�?\f�m{^��\u0011��F]C�\u000b!쎋\u0002�{��a)���!�'��#�y\u0012\u0019{۽F�\u0011��~�{%`�`��F���Z�B~�H�Fi\f��fޛ� �\u001dh.\u000eԊ4�E�\u001ei#\u0003��\u000e��e\n$\u001d�d���w�\u0011�j���c<��*aG�j8\u0004��5����j\u0011�\u0018�d�\u001b�ƹF\u0014*\u0003��?�����\u0016�x)��W�NP}\u001f��\u0002�TXm�\u001aF@�Y����\u000f�L��A\"�\u0011���Mz��!�3�\u0000!����(���\u000b ��$5փ\u0003�&)�'�\u0012C��%@���l���}���:q�\u0001�HF���g�\";���[R\u0015v���\f\u0000�[��R��J��Y��V��2��)M!T��d��\u0004C���J*�]c���\u0014e��\f\u0011��=h>�:�/�o\u0018�\u0002�\u0002�'��R\u0016�y�dY��C����RG\u001a��[�E��)9U(=u����.:v�7\u0010�V]��\b\b�Ξ覕EnF\u0007��\u00106%V\u000f�zäE\f�Ťc\u0001���\u0016\u001e�\u000fS��\u000b\u001bK��|W^?�>�~��a:��si<8\u0006�;%\u0014�;\u0007�&\u0013\u00142\u0002��w\u0012��s#Na���c�A\u001a�\u0011Ѐ�L�3�t\r]J`��\u0003a�Bz\u0017ބg�\n~��QI&5���4�;.>Χf�gףz�i�>C\u0002��$\u001e���=��31�zyS]�\"���7gT�����#�:��x����\u0000^'�'���b�m\u001fZeɚ��+%�Er�����mp���:�R\u0000�N)M1\u0003{B����.ѿ�\u0003�\rg��F���̔��c߉i?P��\u0003sm���\u0016�42�B���L�\f�����:���?�ȿ�_��S��6Kᆁ�\u0011��\u001c�OjF��R愉1��e(sa���\nq��]\u0015#\u000f�\u0001�l\u0000�b�LOjփ��{���/�`o\u001a@#�r\u001am�A/�\u0011��۷�L\u000eQ9�J\u001a���\f�\u001a��D\u001a��]�+��hX�� \u0005��F63�kM�e\u0002Ǭ\u0001�[j�0٫���M�|%�g�\u001f��*�;dH��) �]\u0005?8Px���(R�ʏsV�@}��Ir9C�H����<�)���{2��\u0001cl�3+��,0ˮ�$4�t�6����\r �9���;���T�筢n�ߤ[y��\n]��\f�R�r����\\&[��\u0017\u0010�GR���\u0015��?��\u0003�\u0003'߿)��\u0002�2��pm�FܖY�\u0010\u001e\u000bU*��s���%2�\u0002�\u0019\u001al\nJo����m���\u0015�\u0011\u0006\u0011F2\u001d��0�ڎ�x9$\u0014��TYi�w��\u0014\u0002U�X+ܞ\n����\u0013]���=�\u001aj��+���\u0011\u0014��Q�~�\u0000�=�\u0014~�\ny�KuR\u000b��߫��nqUeN���\u0010�7�b��:��\u0013\u00047\u001b����&��\b�W��\u0018��f6}O0�\t\n\u0007�\u0010s�G�?\f�9]If�4�h+�\u000bܳطV\u0007\u000f`ף��\u0010�:��f,W��U� ��et�A��!W�۝\n/������=YJA���\u001b\b�A\"�\u0012\f��MWq��oo\t���G�\u0019�\u0011��`\u000e�-�\u000e�S\tޡ\u0002�VbL��\u0013�=DQW���Y�\u0005\u001c�h���\u001c�NB4��4��#;\\\u0018��'�\u0001�\u001bQ��S����x�v}jo\u0006�b����t��²��/\u0010+2|Pm$\u001c\u0006�T�džQ�\u0001�\n�\u00057:�EG�UZ:�C�/E�\tY�\b��Zlr��ӝ�\u0001y�w<\t�\b\u000e�%�Ê$N齻�ݎ�\u0011\u0017�\u0007�U�=\u0011��A*��٬�2V:R��Z�\u0013��\u0011�=F\u001f��ig�p�}k��F�!Y��\u001f�j�Є�t��݊�.X\n5�R(�����y�q(�\n\"���dZld���*���]h\t,^\u0012�A\u001b�\u0012 ��J\r��7\u001b\u0013��\u000fD\r\nT��\u0003�'A-��v�\u0001\u001cE\u000b�/�\u001c��\u0001D\u000e��\u001d\u0004>4�$�\u0003P\u00077�icBXE[\t��\u0007���:>!\n�3v\"�\tOT!\t^\u0014��Y\u0016MP\u0005�3\u0019,���ӏ]�J�m�d�\u001d\f����\u0013�����p�\u0007�,�\u0000�e�uHՓ\u0019}�>\u0014U\u000e�*�\u0012��\u000b�vW�^����\u0007 6�\u001f�`\u0015)׈�u��j\u000e1X��/�,}3\rUՈ����\u0010Wgj�p���W�k=����\u00056�=(���!�\u001fI����a��j��\bٕ\u0012O�+)K4�~d��0�U�}��0)��\u0003�^���p\u001d�t\u001a��Z/�@e�����A\u001a�\u00124��]��B�9���ᳫ\u0018�L~��tr#�\f���-�w���'Y�L2�\u000e�S��\u0005\u001a�P�_���\u001dj��J�!p\u000fB�Z@ �eml\u000b\u001fo{��7{m=�����R�<��7@�EƬ�?c�r;DC��\u0002\f������\u001f&�?\u001c\u000f�(\u001a�\u0004����������\r�:�\u0004���V��\u0000��v����\u0007E|�\bzb�?�K›��\u001aH���@�uW�x��!fC�e�'>�I�7\n\u001b�\r\t��l\u0007���\u000fũ\u001aU\u001fk�����hk �\u001a�4�ݕ��\u0015�w���/\u0011C��Tl��d�� _rW[SR׬\u0007�.�'���*p?�JSW٣A!�\u0012H���l�eU\u001b��Ā���E_�\u00037\u000e\u001b\\�\u0019\u0010{�_MJ� %��0��&���a%�T\u0002$\u0000}Z�\u0018�\u0016�� ��~���e�\f\u000f6�qz�J\u0004h�Aڝ�7*�Y�\u000fս���gG7��ɳ�C\u0005����@/W�\u0004��L}�5?�F\u0016&�|<�6�Qs\u000f�l�B�鑧gD����R����܋\u001af>\u001frc\u000b\u0000�EA��3�?�����%\u0013\u0019�\u000fۍ�5goQΛG�̰�EϏ�K�\u0017�����XM$:[�\u0002�f\u0004؄J\u001c�{ٓ��T8\u00134���&��$Rcj4\u0004\\�߂��?�#\u0001H��ga,<\u0014���uz��}�KP���E�D0����p\u0007��L��kΒn�ג{��j�d��X\u001f[Xi*�Eʅ_�Ɏ\u0007N���P�=#y�\u0002���F`p��/�\t�O\u000f�R���5\u0018\u0011\u000eP�\u0003\u0005W(���]�\u000f�\u0019\u0011�!��E�\u000e��Z-?`�����r+}����\u001c��\u000e8qF\u0013c\u0003SAA(��\u0007��:\u000b@�\u0010=���.$Pq\\a\u0010F\u0005n\u0007R j�\u001d��z{v�>eD��A��\u0010���w�~1\u0014l�V\u0014s\f\u0010�\u0013>��d�A!�\u0012���L���\u0018�����g��\u0006„PC\u0004\u001a�|��Sþ}~�\u0014N\u0001A\r�ן�\u0003���\u00157l�G\u001a�]�蔔}綄�.$�>O\u0011��Q�\u0012\u0014��T�a(�i�bA4�_Un1!\u0016\u000b\"��3ъY��>�\u0013��un�%\u0014.�-�,%���F2ϑ�?q���Au��`F*OV�)�\r�&��1\u0007��c��J��^�š\u0012��\u001f�om�rA�\u001d��Tv�A&�\u0012�����d��= h�ު^�Ds��R�խ�E\u0017�\u0007i��hG�yţog\u0018��F\n�E��\u001d��D*`A'���\u000f\u0005�ޤ�P\t2�\u001fОu��v��@\u0007Y}+cʪ�U���\u001aRY^�\u0018t]�\u001f���[&%��G��.n��g�����8�����P�MDZo��:G����\u000b�\u0002�ӷ�(�u6,?�7��#*\r&@���\u001evd\u0005�����A���,\u000f��\u0015���,���\u001e͙��F�!N��V�>w/���k\u001f|�@\u0010�\f\u0004�\u0014%J�&�lf\\<Έ&��\u0007S=�Hi�G�&�\fE3T�?\u001c�v\u001b�\u000b`���q�q��\u0012��a�t\u0014f��u����N�\u001b6�A\u001a�\u0012���L�\u0013\u0012��\u0000\t�\u000b����*��2�\r���\u001a�L\u0000\u001c�\u0015wB\u000b���d��k汔�G\u000bI6R�̽o\u001d�T\u0006����֩\u001d������\u0017��\b`m��?tZ~�\b��\t�nS���\u0019,�|*&\n)A��ey�_}�\b\u0006�N�J��Y�\u000f�Q�.���͘�\u000f�a}i,��|\u0011\u001c�9¶�\t��\u0007X �N�_5\u0011\u0000�دt�\u0006/�-����i�\u0019�\u0017�t�����`�;�AEN<\b��q�\u0011q��\u001c\b/��||��:AsD��#p���)_C�J\u0016p�:#�\u0005�5\u0016Ǫ�\u0018\u001b��h\u0013}��\u0006\u001e��O-*�\u001e��\u0018kI�\u000b��׆\u0004����A\u0013�\u0012Ԁ�M0E���8\u0012'�b���\f5�S 6���$]�\u0005 c�mq.\u0000�<��]���I`�3\u0002g��Y��6�10��\nD�~\u0004�\u0012���\u000bM~\u001c���t9u�0��1��iS��S�ɫ,��\u0002\u0019է��F�簈-\u0011z�\u0000�:��g���\u0019\u0006A�bC.���Q�\u0015\u0013'İ�C#}��r.\u001d�\reÇU\u0002�N*�T��>���zC��ҝ���\u001cS��a�e����}\u000e�t�OJ}ҹ)\n&�\\���\u0015���v\u0003����\u0006�)�\b\n\u00052&Wb!g,0a�|��\u0001\"�&�쭐�=�\u0005�X\u0011��\u00035U\\h��R�XC�o�d�A!�\u0012��L�D��\u001e�I�G���\u0012��p�k\u001aT��Q�|,����R��J�ӫ��hq�>�Tr*y�\u0011;<��^����\u0006��E01���/�Nۄ��4(X\u0003��(\u0002����n\u001e\u000f�Ť^={_$�9߲ﰆ\u0001�(2/�\u0017!��B�\u001dꌖ\f|\u001b���(8C���,\u000e\u0005�e�<�d������������=[�s��e>��\fI<\u0015�~�t�z-���1%ߓ�b�/k���\u00142\u0001���Mdr{Į��I�t��5c\u0001�Z�t[T<�[���(\u0005`��*���uI��w�VJ%�W���}_֋\u0015w(\u000b�_w�;�*�㏇8�\u0001\u001f��t_>w\n�A*�\u0012���L��\u0001jӀ�J@ A�\\�\u0019\u0003�\b4�\u0003\u0019V`^ϱ\u0019A���9�N���)�\r�3�\u0004�����K�5�;\u0000���=}]�\rޥ���l�\"��>�jq��\u0000D�+��y�,�&�-+~��\u00185P�\u001c\u0004Ӫ�\u0004\u001b\b~�ɵ\u0017o#\u001c��z�����4%�\u0011ױ{��\u0010�%�E\u0011�\"ε:���Qo��<�B�+zbV�m�'��\u0017��}�E�~�����z��\u0017�D�@\f?�\n���D5��Gq�H�\bx�L�TP\u0017Y>��}���)��\u0012�\u0017$z�ݡhB\u0015'�~udR���:�^�!9Ӟ�ӦY`\u000e�0�\u0014���2\u0019�C��C��۰\u001c�\\�\u00191R�Ng��I�Au�\u0013\u0010��.����Uɉ�$��;`\u0002lj\u001e��\u001c��)��m��^\u0006����(�a�=����\u001b�VO$`��r(|9�.�8o\"�T�F.Gܨ0�-�N�\u001a\niJ^�d�u23=�\nxq�\u000e��\u0006x\u0000\u0016h\u0018:�ݍ�\u00009L\t\u0017��\b\u0015vޣs\u0003�k&���%\b�\n�i\"mӯG�֋Q\u0006������\u0007b|��\u0005n��\u001bK�(y�b2�����\u0001�'�)�\u000f%\u0004z��1���^MC�P���f`CE�B�ٕ\u0015�����\u0000��3?Рf\t�&\u001f�M��wo{�G��u�0\u0007E^�9:sO���Q�o����v\u000fm2��&��lF\u0003�'^�����}\\��ȱ�\u0016�\t��\u0011�\u0006Ȟ\u0015�R`l=����8y�G�����+���s��ʈ\u0014\n���\u0001vK�ڙx�����)٩�G���\u001c���p�\u001c;�AV�\u0013$��|�\u0015�\u0007\u0002)�B�8��C\u0017mM�&&��sf�.����b� 9�̌���g�v\u0006#�[��1�\u000f�Q\u0000\u0006xǚ�]�;�(M��R�Kx�֘~^O/�ߊ�cĉw|�a?1�0�\u001e}��`�^ق(\u0007\u0000�b�k��\u0017/��~a1�W\u0007�S��0��]6r68����:��\u0001��p\u0004�\u000f�U\u0019��A\u000f\u0001\"\u001a\u0004��\u0016.\"�r�qT�\u0019.����#\u001e[N\u000e6�,��s���`�6�)���ѯ���;T\u000b�Oo�mk6y��̔����Npݞ�[w�QX�[N2�[.~�v.P��c�\u0006��U�.k8�\u000b��R�����R�uK�kfKn\u0004�tH��e���C[\u0002F\u0019���>����)�Υ�1%�ء�ۗZ;$��}��\u001c�loY\u0015��� \u0006=��A\u001e�\u00138��\u0013e{\u001d�j#$]{�K��r�C��\"V�T��\u001c�\u0011\u0010\u0000�:X4{RB0����\b��V���\u0006M�]+IC�h8�\u00142n*Ynq��d��T�/r\u000f]�f���Q��ed�\u0000\u001b��m\u000e��,�3AP-\u001e鵄��K\u0005��0�i㛱s���+\u0000\u0002v\u001f����I�\u001a�'\u0018��/���(��%PB����X��@\u0006��\u000f�N�k���I���1,����G�z\u0014\u001d;�\u0003�&9�\u0017�N�aF�\u0005\u001d�xȺZ�R�QC�0�J�h�1}C�Aw�\f?(��q\u0017r�\u0016��=��n�%��_7��>��e����\u000ex�\u0005e�B)���M�#O�$aߣA\u0017�\u0013L��M��\u0003aa\u0004!X�,\u0007w�qq�s��iS;3?��@��\u0013�\u001a:J��W��\\Vigi\u0013Gc��FN�\f{\u001e��$��O��0x��\u001c{�\b�2��\u0019'O\u0003&_s��K\u0003���{p\r�x�t[U@��e`М��N�i�\u0019�����lw�\n��\u0013\u0005T��\fh\nI�*u�J��\u000e�LQQ\f�����m�-Q9!\u0004��d��\u0016��\u001e�0-E�:K�R1h6�X>�1��5�\u0001>1��p'�[�I#\b\u0013Z�3ر\u0019\u0003�(|}��\f�=(�C�\u001a�=\fiOW���B\u000e����}�� I�Uxx\u0015���v��ٓ7�4�v�I�=LO\u0006�\f��A'�\u0013`���\u0001�\u0014�V\u0015��pܚ��ӭ�I^|��\u0006X\\.:�ޚ\\Jʿ��M�e��\u0017��Se��Q~q�X����1��\f�a�Jp\u001c\u0018ޜQ�Lʗ����}��r�\r�U��V�·Y�\u001b�P\r\fEt�����$o��T����\u0004u\u001d����\u001a��\u0006����2��D\u0002鎛�g\b\u0002\u001c�!G��r�;��;��[ɬ\u0002������N&��i�\u0010�\u001e�\u0018O�^����՜/��Sfv��žE�!�&�v�&ታ\u001d�}\t\u0018 �H\t09\u001f���\u0004?���*\t�Ge��,f�n��\u0002� ͏���/ �;���R6)��n49��\u001f7X��\u001bt��\u001d8�\n6�F���\u0007�>�1è�z~�y�8��K����#\u001c_�/�@���H\n�>\u0012�͏�Y�A �\u0013���MY\u001e��(�Y�#\u000fQ\u001fED`جU\\\u0012��$\u0011�ǔ�z�@J@�w\n�\u0011\r�?���\f=�&v��Ձ���\u0003�(+O;�w��д����\u0006�\u0005C�e\u0015j�#\u001eP�[³)yYt�\u00061.����EK�\u0013��G6)\u0007�\u000f�]\u0005˞�z���m\td�D�MIi���&\u0013\u0002��1�ɴ���:��x,���wDk���;\u0006�x_��sB,e�*�ʷ\n��p\u000f9�b�Ŷ��\u0018bX�;��kZݡ�$\u0015��~��#��<��ضI)�`��9\u0012�9��9#\t�Hm�k�\u0010sX\u0002�\u0013�����\f߆� �_\r�\u0000\u001f�ձ����%V�r���\u0002�A'�\u0013���2z;\u0004��q��d�[���q/�ê�\u0007�/����\u0016��+rˁ���k������;��\u0000�=�o�S\u00056.�\u000ez\r\u0005�\u0010�������K��i9��\u000e���u�\u001f�\t�\fU\u0000GPS\u0010����\u000e�\f����{����b�R\u001dۧ���^�h�+8N3��xre��-+nB�v\u0001�{��t\u0005.)��\u001fzC0\u001a�{D��=�%\r�f�p>Y�n�U5��E*\n,�\u0010��x�\u0005��Q�\u001b:\u0019��N��Xg^�����@�-v��\fT/$H&<9�cs�\u0010lգ�����L�\u0013��k�\u0011�t����ս\u000f�-H��q��=���)�o\u00050ޭ���¡�fbܣA(�\u0013���6���n�r'|�O��W\u0007.wC�!ي\u001d��q\"4��+���\n&��e��!M\b\u0002��t�.��7��kJ��\u000e�\u0001\b\rjr�o�;�;\u0016�볏(>�\u0013�o[\u0003&�.\u0001��#\u0007eZ$h��\u0006\u0015&�*I�\u0016Ȝ��<�\u001b'\u001c�c�R���\u0011d�]*[\"��tm�T׶[$�-|�N\u0013*��S�����P��Y�d�rO���*�9�H��\n�\u0004\r�\"-�r-�&I��>�|�ei����x|t�2d�G�,�\\�II�����ϛ�:I\u0003��\u0011<���YE�\u001dX��)\u0005Sl�L\u0006�G�����\u0011�R\u0011�ӄ_`\n\u0010\u00026\rB��l^d��Q�\b�-y\u0018�Ӗ�A7�\u0013Ā�L����2�6����\u0011��ꛢ�\u0003:�\u0012�/�\u001e�L����-m^߱J\f����d\u001be����ح��SL�d�Y{�m\u000e?\u000b���Q���\u001c�8��C&�!��hmx��_�\u001f\u001b<��\f`�\u001a/�\u0013\ni� �\u000b�M��o�[�\u0003\u0000�%��^Q�\t�ȥ\u001b�\u001cIˋw�\"\u0014�Xܺ\u0006ŧvY8��O.D�[��]�\\���(\u001bnԫ^ꈒ�;:��\u001b3Q�OA_�˭\u0017e83D\n�>�X�Y��'�6���\u0001��g����N����oQ�S|��U��R��P\u001f\u000b��AG\\\u0007�[ڢ�_\u0003\u0014FduI+A\u0016?�4��L���o�q�~p�&�S\u0018�z\u0004\u001c~�n�`�Ӧ��.6;��AA�\u0013؀�\u0002���[\u0007b\u0000��,�3����\u000b�Z!\n9���\u0004�P���I�\\%iO-��h��z�\u0015�\u000e�\u0003Y�>/�+���yXm��z����I�x=�9\u0006�Z!V�\u001cL)H�G��\u0002\u0019���_��5�ewF��-�vh�@�[��8N��\u0013ǾU���[\u0007Yeq�9��(<�j��m����cKldC|�\u001cU~\u001b\u0017A\u0004B\u0006U�ׂ\"���N��\u0002��J1���GSG\u001aߒ=�,�{\bT��e���\b��^�Ux�${\u0010cgg]����\u001e�\\�,�kLK\u0012E�)��L�Z�r[�x\u0013\u0019���L�g��X%��&\u0018'U�\u001f\n�z�\u0006�7���ɣr\u0018�\u0013��y$j�EɠJ�P���M��j������a`u�x���\b�\u0002\u0014\u0006\b<(˭�j^�?��\u0000��x����h\u0002\u001c���A?�\u0014\u0000��2i�>\u0003���X�y��\u0001��#�̯�Hb\\\u0012����\b[hR\u0006X\u001d�\u0011��sz��=�d\u0016L��i]��_l\u001bc\u0013\u001d�k?\u000e(�E:|y{8�:^m��ؒy\u000f�J}���\b\u001eXYQ�p%q���s\u00178wK�y�\u001c\u0012�?��,�f��k\u0000�r\u001e���ҕ��\u001f_4\f\u001b�[\f�+\u0018\u001b\f\u0004�j�(�\u0014c_�+\r�\u0004hBK\f�BԊ�\u0015�F�������U%�u<\rM��\u0003\u0012�\nh乳w�neI��hw�1���3֟\u0019�U�L\u001e\u0004\u0013F��n�/]\\\u001a\u0005#撯���1\u001c�ވY�\u0011\u0004���q\u001dv��B3��9��3�Z\u0012��cl�o\u0005��I=�~��|\u0018'��P��Z������Ự#x�Y\u0003�\u0019&��'�A;�\u0014\u0014��N�\u0007� wD{�$w��7\u0012�;�jY�\u000e\u0002u��&�z=0mo��ӿ�2�G\u000et@\u0004��I�c�9��m�t2�Q��{rc�ߓPX�\r���5�\u000b��\u0014�H?[���4�\u001cO��\u001e:�e\u001c�u\u0007���\u001d���ɜ�\t\u001e���En�� �x$\u0013�\u0007�\u0000RB��\u001d��\f>����*J��4��\u0015�2�\u0010��\u0010��\u000f�3��3H��\u000bc���So�\u0017Cr5q04�y���\u0001\u0016(�)\u001c���w�\u001a\u001f���f�[�rr�����X�ŒX\u0007#6T�\u0011�J5��AQY�i�Q? �3xR�@���_��~�S�}ֵ���WB�ӁT*���܎�Ӑ\u0006�$,��\u001c\u001c>\u0011\u0000��ZB�Ɏ ���A*�\u0014(��m�1��|l\u0004^�%�Ҕ.�dZ�XZ����\n�/�v���R�\u0000��y\b�\u001aT\u0003g\u0001�+K���b|C%�\u0015��^��_W|�`�g��k��Z\u00120D�2\b�\u0004�j\u0007s]fq���\u0015����\r�Ջؓ�2��b\u001e�������i\u0019� {\u0007�\u0014O�-a���m���E�M���S��\u0018V�N&r_뇜�P\f�\f/�\u000e�\u000by�\u0010hļzòb��@��D�=~\u0017�G\u0005Gg�W\f:\u0010Y�L�\t��'kz�\t�$E揰q�|��\u0018\fO�L����?�o����\u0016�89ţ{8����kv~��\u000b�=lC�b�\u0007�͎������Cˁ�\u0014ل[�ڧ֜\u0007��A&�\u0014<��X��\u000f$g\r\u001f0F\f�S�՝Y8 0���\u001c��\u0017�2=0��16~9��\u001d\u001d\u001b�\u0006\u0019��\u001d��N�\u0000|\u0012�B~Ԫ`�\n\u001f�>�����Z�\r���\b�w�.H\u001ea}�͵Pf���I�3\u000f�8Q��vT��+�\u0018N�Q?nb$'Ќ\u0011bU�Iq��CN�-Y}�]\u001bN쯯��@�\t5�8<���?͑��E1]��\"Э;X��\u001b����t�X\u0004�B�����hs�\u0016�0�ۿ'\u0014�R�y��;Fn��u�ݴ8\f��~�F�\b�v�G\u001eo��*yS\u0001�Ƌ�m{\tSs�\u001a�U\t\"�X7��!޹���N�^5��g��\u0015����$�-�)I���d+ZAۣA'�\u0014P��X�R8�^�^W�XG��M�ž;�a�\tr?M�����uLO]W�bk�Gݜ�ɺ\u00047*[\u0007\u0018\u001ej\u0019���\u0010ַ�\u0014�5!�2ZE-�9�m�\u001b��\u0003��\t�(Nc{>����\u0013@ʕ>�HW\u000b@��uq��ƈ�0�I�B�\b�|_I\u001cw��LD4T\u001c���jH�G��ZR��K/\u00151\"�\u0013���Y�\u000f,=\u001c�[\\�(\u001b�\u000f>��EI�&6�B�I��Y��%ī\u0010��\u001f~a�o���SƜ��ΝP��+\u0006�9\u0004�M��E҈v��FL2\u001f�\u0005R�R��\u0010�!Wnn+Wj\u0015)U��ը\u001fd�\u0018�y\u0001s�n\r���\u0003\u0019\u0010\u001f}��+�\u0010`ۂ��I�A&�\u0014d��L�-:;<�G\u000bJX�\u0018�\u001f�\u0014���I��\u0006\bsh\u000f��—Ƃ�3�m\u001f�١����\u001d�[�t|��y\u0005�K(�\u0018��\u0004�\u001b�l�\u000f���M\u001c�;��r\u0000#v��)@pu\u000b�\u000bm\u0016\u001c\u0005kA\f�\u0011�\"�1�l{\u001bm�\u0003�s.��5`��!}�)\u0010Z�\u0017�!��y��\u0007�\u0006�#��q\u001cZ��PB\u0017A3���\u0002Kz�\u000f�\u001ao&l�F\u001d�k]dP曠n�\\��D(�\u0004:@�;��v��Z�PIE\\���\u0015�\u0010��+�\u0013\u0005!���8��T�\u001f�pL@\n�\u0017+:\u0004����\u0016;\u0012r#\r��4s�E�ʾw\u00020nj�z\u000e&��\n��htl�\n�&��Zi�o��6�A&�\u0014x��L���q�\r�]�:���ڗw9�1ʊ~��\u0011w����\u0015\tR\u0014ʤ�\u0016���|'A�ո\\#�:h�d��Z�,Ģ������$\b̠��O`ʑX�rw�#��S�e�\u0017h��a:���O}'1$�\nd\u0016\u0011�+\r~�\u001c��\u001d�k_NS�\u001e.C���֔\u0015��!`��I#m��M\u0010�_\u000f\u0016�\u00110\b�\u0014�0\u0004}|�%}�/\u0018z4�&<\u0000�kD��&\u00041~��\u0011K�\u0005�qѾa\u0016$)\u000e��o+��\u0004�N��f\f�\u000e����x$�\f\u0005���}\u0004�·���{�_�sS>44�8������\u001c��\u0006dXuy���G�'�\\�\u0007W�e����.�`��j��+U\u0002[�A#�\u0014���L�\u000b��\u0017\u001d���*�\u001e<���\u0018��,W�\u0011��\u000e\u0007�o���y>�'��L�\f��`q��?X�6`@6|�Ju��L�\"\b�K}�\u000ed�\u0016\u0018{�)�D\u001c�V��O��\u0017�E�8Ƣ^yh�ʦ���[��m���~~��\u0000�(�\u0000_\fem*u���d.Cn٧1�\u001f�4�8B\u0015\u0004�Ř6z&p�B��\u001e�8�\u001d#��\u0010�&��H\u001f\u0004�Դ���\u0015!$3�\u0013�mrx�)�\u000f\u0005U\u0015�\u000f@6���*���'�z6\u0005�\u0007����\u0000�ڸV\u001f��1qA昣=��l�`\u001cp�\u0017&\u0017\u000e���\u0007��\u0006�x����w�.l�\u0014��\u001e�\u0004\u0011�;R��A'�\u0014���L�\u00036��N��I�s�f�5�U�sN9�ˋJYh�SH\u0011�+k4\u0005$ංn��F�qe�i��\u0013�L�\u001d�E�\u000f\u0003\"��lq\u00038=f��x��'ۭ\u0010��\u0011��rB\u001f��#�F2A�s�\u0006߫�\t0�_�]\u0010�L��F��f��f��.&� �@L�*x�<�\\r��T��?�xz\f�0䴢�@L'w�\u000e1?�\u0001\u0006d��F�l��/\u001d�oq\u0005���HQ�Gv|c�I�#;�\u0012P\u001d��N�\u0010��z����\"ߔB`���VW҆\u00067��\u0007���[��(܏u�\u00021m\u0011g:�dn\u000f���씸�*�dяmF8�\u0011Z\u000b\u0001�Q�.[Q�i煂}�w\u0014��A&�\u0014����\u0012u���\u001f�1����71\\�\u001295LQH�\u0011\u0006�\u0017�\u001e�[�Q�\u000f\u001d�\u000b੦�#�uO\u0018��*s\u001c�~6ρ�I\r�FkQ+\u001b\u0019A�{��)�Pp�\bn�s�c�K��*\u000e\u0000�5!\u000fBN�i\u0011�9\u0018��qH\u0015a '`Z�`M�LP�cb\u0019�F_��\r%*�xǎ����L\u0019L\\0[�)��ig��8c%<��\u0017\u000f�g�X�\u001b�\u0017�\u000bڕ�\u0003�!\u0010MJG�l�g�]15�6���\u0003��όDyH\u0018�Sx�X�1j난�J�p�F_�&� =kנ\u0003%�?��W'�+\u0006�$Y�tžjm}��Cii��\u000b������\u0011�\fJ s��\u0000ٴ�9�\u0005\u0015���GHE�A\"�\u0014Ȁ�L�\rX%�iv�\\��\t>� p��\u0005}�~\u0015��\u001f\u0001藳e��\u001e����-=@���N~�\u001cq��KR{����ev\u001b�Z$V��-r\u0019���- �-\b�m�\u0018\u001b]z�׳��7XJ�e�\u0006wN\u0000۷w�\u0007`\u0005�T'�\u000b��q<����\n��v�x:��z#M��f{�*������?�����V�k��\u0004)ri@�S6'��%q~*����_�Le|\u0002�@\u0012�l��\"+�\u0005~_��_e�m�!�:V����=�)\u0000�mPg���n�e\b�Ø]��&��\u0004{JBj7��F\u001e�c|>��\u001f�nx�d��B�Y�̱b�\u0012Sq&���/��w%�ңA\"�\u0014܀�L�\u001f�b=��oR��b�<_5�!\u0003n���o!i�\u0014\nv��\n&\tw:�8�D?(5F�\u0004���F\u0007���G��ѹ�O�) p�-uZ�[\u0000u\u0006�m��6�s\u001a~M\u001c>70gM��ZJ0�Ý\u000b���a2�H�!�\u000be\t���PC\u0015��'rф\u0013\u000e�\u001b��z\u001dYdvL�i�\u0011�Z���]7�+�'���Q\u0005ѯ�%�\u001d\u0015Q\r�\u001dI���ϺkP��\t�P�D�\u0014��)\u0016�\u001a\u0012�\\l�'���Rz�<���\u0016,���� �\u0004cT������$\u000f��g�`�3�$\u001eq�a�gΕ�I�\u0014�@d�\u0015r���\u0002��0Aml�\u0005���JI�\t��C7p;1���A#�\u0014���Iu�L��Rُ\u001di���K�0���\u0000��\"�.�>\\�`\n�����Ǫ�*=34\b7E>� 2�Z\u0001}6\u001aI\\������D���c�\r6��\u000e�О\u00170�\u001aM�3�^x]�XK���D��遹e�aMF�K\u0004\\�I���\u0002�\u000ep`��+�\u0000�v\u0018�P�]T��\u0005�*�A(�\u0015\u0018��K\nF�b����^�5E����\u001b��nVn���K��}\u001d\u0015�[�\f�A�\\\u0016�F幌��\nJ�B(Q\u0002Үd��7#Qܩ�v�\u0017\u0019�I�F�S�ނh��\"9�WoK��\u0006��`p��O\u0010ړ\u0017��/F�Rux��+�\u0011*�b���N\u000f�d&�+�\b�c�m|w\u0003��\fKq\u0012u�?\u0006��z\u001f&z�\\�9�\u0004�\u0015Gi��҆�x�p�\n�\u0013����~m��u[��p4\"�\".�j�\f\nE\\\u0001g\tE�jԙJ���$�Ī@#�0�0?_�>*���F!Ε��m=��\b�t�w�ׄ=ۻ�񤠯�)R�9\u0018�\f�r�s^e��\u0012�k\u0002o�\u00031�\u001c�A �\u0015,��M{�*�_��M\\YI\u001a��\u0015�Re0��tG/)`,G�-��p���O$��R��F~p|�g̖{�\u001e�--\u0016&��@ޙ_Z\u0017=�\r\u001fv1��7�'}\u0017���\u0007E����Q�\u001a\u000b鞉\u0003#�\u001e�N)\u0002���0�Ŕ�;\u0011\u0007���]f��\u000b�U�J5��\u0003is��]\u001f�P+\u0005�.\u0017����\"\u0017�`�A\u001f�љ�E�1�\u000b�������!d=�i,�}�D\u0006X\u0016��_�jj�'#F1�sf#\u000b��&\u0018�l\u0010\u0011ܷYx���/b�\u0013\ng�\u0002N�+�\u000f\u0017AZa�Z�\u001a\u0005՞EF���\u000f/N�\u001f�6�W\u001f�r����3&L�s\u000eQ�����.\u001a��;�A&�\u0015@��J\u0007�\u0019�x��V\u001ba�0)��C�߱��X��\u0015�?S���,+�\u0004H�\u0015�U'(?�u�[ڌ\u0001a{���]�a\u0011��H��ac��C\r���\u000bE���P\\�JR����˓\u0001�}h\u001drQ�1\u0011�0�R\r�bEp\u001bH\u001b��-�k\u0002返z3�\u001dDfC�U�4�W��M����i�`\u0000������3�{a�\u0018\u0014�ڻR����Gɟ�)e\u0002����\u0000?�Wt0�߄ /���V��Lbn�\u0002lD4J�k��R͡괱�\u001ea�84�o��\u0013��P\u0005\u0019��+`�.�w��_Å�Y�\b&G�\u0011�Orc<�ㅉr���T��_+�t|��G�E(�-�K{�A+�\u0015T��MYe�\u0003\u001b\u0019\\H.=��\u0014�Ґ9�����}j����\u000eW'��V��<�vRd�����\u0001���qוǑL ��\u000b����n���S[����\u001dZ���K]\u0019R�p-��!�\u001e?}0�\u0018���8�^�y\u0002�\u0006\t�M��\u0016\f�6�~�)VqԼ��O���{wc�\u0012��]��ݤ�۞.5#\u0001����}�\u0017�R�\u000e=fwU\u0018ۚ��\u0014Zꕵ�-��N�y�\u0002N��t�c,[���s:ٿ��6�G��%\u0000A����N�� <\rw�\"�0�\u0013�\u0013>d���\b\u0015���\u0005��O\thQ�I��u\u00034L�������9L\u0016\u0007}\u000f�P��r1�jD\u0001��ԃ\u0013�tYg�|��A+�\u0015h��1�\r�0À�t�=�z�Q��\u001f�\u0002�\u0017�^w�Ց�t\u001ccgI�g��2�S�\u001e)v�m\u0001h�P�ror�?�v�m\u001bc���\u001a\u0014�H�[1.\u001f\t�k���$CM\n:�Q\u000f\u001e��H�8���1�؅\u0019�ԅ\u0005h\u001f2��d���\u0006w�-6�b\u000f'Fa�*��7��PdH�\u000e��$Z�3|��\u0001����\u0018o��1�N˄\u0013�>�+�nq�n\u0013-�5\u000fQ\u0000��\u001e7\u001d�Wʞ�G�˱�{�\u00003X�D�q�L\rO�Q�g\u001d{���Q�ͺ��K�\n!<\u001e߃wu�\u0013}��L2\u0004�/�\u0001춊yCX�m��!�Y�\u000b�\u0014|�UUȐIh�b�Qx�\u0002¼��;�\u0003�Y�<>�A0�\u0015|��0��0U��7\\��ݻ!\u001b�*Z-�,�Ɏ)QW�L�1��pATȞ>�\b\u0014��;�\u0010���\u0019b�i�?cn���\u0012$�l\\(�7*M�L:-�ε�p�g1\\�\u0012�\u0003�N��˜�T\u0002��Yy�\b����\n'M�a�lЭ���z����8E\u0010�. ���:Y\u0010�:F����`�w+ٿ\u0006�H�\rk'��\u001d�F�,p�\u0003YR�\u0007\u0001<��[�/'��������}W���-`�F���\t�jo]�O��2�$�G���\b+�x4�u��\u0000s\u0005K֗\u00116\f���S�k�^hu[\u0016\u001b4$z�����\u001c����4\n��+�}˄�Z\u0002\u0002[wP�[#\\\u000e����\u0003�nEi쭣A.�\u0015���L�\u0006~�\u001biBc\u0014�,�Bs�G�\u000b4k����ĕ�\u0002�u�Wcנ��L�\u0001~�\u0002\u0018QfZ\u0012B�D\u0006`~�C�3�Yb�n(1\u0014~D��\rx\u001e�:�c��\u0012�;�s8�6��Kh��%�#���(wӲwTY�\u0004g�\u0000�6�\u0016\u000eg��ؔS\u001b�1�\u0003�5�\f��+?������M���\"T���AD��\u001b�A�:aEiQ�\u0006�Ý\u000e�O\u001e���O�ί�l��ˌp�M-��іQ\u0016nɞ���X`��ha8\u0004�v���zV��\u001c�.^5�C,���\u0012Q�A�1��+���h@���\u0001\u0013L�{�W3��?���\u0000�+\u0015��?��\u001d\r��5��ذ\u0018��h�,\u001ep%�\u001c�A�ңB\u0018�\u0015���߷�u\u00043\u0005�f#�, �K�1�1h���s*��XP/��\u001a�f�2���\n�\u001f*���\u001dV��n�@{�?GU\u0016(\"���g���z���V\fh-�\u0001&�t�f��l'O�7�\"��|��\u0005���/\u0010�\u0010�]x��b�\u0014���.����;�k�$\"1��M\r�eનy�*`�%ַ��}[��_F�\u0013��~\u0010:n�ɜ��g,^���,�߮���˺\u001f�\f��j�S\u0006�\u0002\u00043p`��J<��=�/Z�G\u001e�\r5`iv�+���'#����.��jt��xk��[\u0013t��\u0018�p�Nun�&?\u0012�I+�8/��\f#�\u001dֶ\\��\u0000]5\u0007�Ƒ�\u0003��%@�\t=ݱ�A�@|����^\u0016����z\u001bW�\u001a��}�mOx�Ɖ��\b�\u0005O+��\u00039j\u0012���.K�\u000b&=���U޼z)\u0011x\u0013���\\(\u0002\u0019-�[#��8=x�9�v2�$�\u001e��Gn\f\u0004�O\u0001O\u001d��9\u0001!�6V��W;��`9\u000e\"sl��Sm�!SO@��!\u0002��\u0015-\u0006�n��&>��6Ao����_�5\u0001\u0019��7�}Xy\r+�r�t�pI��̴a\u000f2�y�˙\u0001�����o\u0017i�x��(lO:fJT��ZM��\u000f\u001bQ�;}-��f�\u001e�2�H�A��\u0015���{\u0011d�j�\u0010�X�Z����ݍ�]@�\f@����\n���~�\"EX�52N���Q�P�h��!�YU.JZ�0��Г�\u0004����7�b�8C\u001e�\u001d�Vhs{��\u000f�-��2\b��'��+���\u0018�7~\u001bd\u0016бYR=\u0010OK���d��H���~�\u0013�e�u���\u001b�m�-�\u001a�;H1�\u0013g��S�b}\u001crg\u000b�\u0010��\r�Vh��\bi �b1y�T�y��\be\\jq�܈CkIN\r���VU\u001f\r���<���\u001b��;\u0013��'�\u001fv�]�zPu8:-f���l���O��:�#\u0004�b����\u0007Þ�-J\t�F`\f\u0013Zb�ڿ[,�躓3I�O��ӓ9%��e?Ýq�\u0016��L�>���ӈ��R ��\u0000��\u000b��؋�{[b\u0001���\u00187O�����e*�\u001c�w����\u001e��c�\u0019]���a+k�{\t\u0016�J�$5M:�ъ����~yy\u0015\u0004Wxd��~��2��ԅWA$�qc=�P����A9�\u0015̀�.e��p�s��K�V�h�~'�� I9c�\u0017;\u0000h\"O�\"�[�\u0012͛\u0006��<��ڞ���yJ�Ex�\u0012\u000b\u0006f�>\"�R.����\u0015����Z��2\u000f݅QK \\������d\rGx�A\u000f��\u0000\u000baX��^��\u001d��Z\u0000�h\\P\u0004esL��\u0011(\u0016�$T�\u001c�/�\u001drc֍\u001aSՙ\fь��\u0015�\u0017��G����n�\u0000\u0000�E��|\u00121\u0015�\u0016��z�\u0016mT>\u001b\u0006�\boոɘ�tE�l\u0018\"+z�4\u0006\"���jy\u0016�d\t��Z� \u0007*k��\u0013���N\u000b�VqhS\u0019��\u001c\u001c\u0019V?�.\u0000\u0006��b������NĠ���\u0015�χo����[�\u000f�8�\\8\u0011��\u0013���\u000f��E��€Pv)�l:�\"V�A>�\u0015���1�9�\"$&#�c��6��s\u000bA��\u0010\u001c\u001a��\u001f�\u001d��[�\u001awR\"\u0019�9����ׄ\u0019���o$��5��3t�W�׬\u0011\u0018�\u0016�O��\u000f�y\t1t�3���n=+W$Es�Ɵ$��\u0011xLu��*\u0013\u000e_t�Mc�V�\u0016��d#K�%2Bſ�󢑇�~A�9!@v��+!�/�|݄}=��5�^�z\u0013���]e\u0007��\u0002,f�?\f�\u001fֳ%�o\u0014H��,\u0013�SZ�'�×�V\u001a��\u0002�:p>�>I�\u0011T��9\u0019 \n��w�dx\u001bC��,ե�K\u0002�N7���\b�t�uT?)1�\fXP����H\u001b�\u0000�\u0012����A���\t ���\r��&*g\u0004Smr�3�1�\u001b\u0015g�l��_XcN7zݦ\u0002��A|�\u0015��I�{p�T������!�.;R�~�B�J\u000b\u0016�6�_f)������\u0012\u0014\u001a���q���\u001d�$X\u0016B���\n\u0016�nZ�\u0016��\u0013?�t�\u001b�g�fD\u0015]����7�\u0016�\u0000�<`s�T���v�J�d���\u0007�l�A\u000e�.0�\u001f�B��s\u0004!(O\u001a(Y9\tgR��Y0d\u0016�\u0012\u001e�\u0011&Y�)۟K����C�w�+\\T�n��#�u,\u00176�%����:���v�>��\u0010\\�\r@�h�\u0005�C[@��\u0007�,£�~�&{3��)�&;�]�B�<\u0001Ddf�\\+\u0012��\u001a�%hy(��L��8��Oiu\u0018���3��FL-�R��\u0007�N\u0018����\u001c$�#�\u0000���\u0000���Q8t�d!��\u0015rA��v�\u001br�vc&WR�\u001f\u0016\u0006��@��x9�|�MQ\u0002�\u0000g��z�M�\u001bɠ#���]W\b��L:��po?J�\u0013+>ZIQ\u000f 9�\u001a\t�AH�\u0016\b��/UA?�ݎ\tB�a}TJ�v%\u001fj�*4�c\u0000�LI\n4J��\u00035��\u0013�,ѵ�\u0011�:�ʃB�Hr�3��}��g�Y�;Z�P�H5#DP\u0019�Kdw3�\u000695\u0011-\u0012�\u0013Զ��\u0019�G�í�@Ȩ�rm\u0006��&�6��λ�\u001ch]�\u0006\u00043��o�\u001f��J|�m�����\b�)d��'����k\u0015J\fɡ�Z�\b�LS$��:���\u000b3�m�7���9/�j��A\\�: �\"\u001b\u001eD�:���-���}i�7�\u0002��e\u001bJ��G\u001b�\u0015��\u0014��\u001a;������\nDҬ���?��[�;�AQqNn�\u0000��p'e�~�\u001e��\u000e\u001d]\u001aʈBJ\u0000��u�>k\u0010���\u0019\u000b��8�Y��a\u0001�*7; �$�N��\u000eA�A��\u0016\u001c��}b�\u0016\t�\\)g\u0014\b���\f�\u0013g�(\r��5�r������Թ��ٟ�&�*�p]m1j�k����\u0015\u001d�b.��H\u0006�\u0011vՠ�#�:Znɹ#�|o�\t�ْ�<�1t�o0�&����\u0010��\"��!�J\u0002�B�\u000fp�������G>�e�\u0002�ʗUus�\nYR�\u0015+�}��/������V\"pKK\u0004�\u000bawWg�\tvl�X��D\u0004%�w̐+>��j\u001c�V���g�\u0006���W#:���\tEF�\u0001�1�o4\u0019}NYɿ��!\u000f@�\fsy�ۅ;�B� \u0005�PwX\u001b�'��'�h`�y-��B��[,���m#DZ\u000e�P>;Ԭh��\u0004�\u0017�S��!d4��?t��E\":�\u001f���Tw�һ\u0016�+\u0011o\u0001E=~t:\u0012\u0002^���07&�N<�.0�m4kZ�-Kk&I�SBW\u0015*\t9|��0\u0015�\u0005�\u001b\u001e�8�W>�.��K�T��g��(H�s��A.�\u0016X��M(r��\u0004*=���F�0?\u0019\u0007G�;�q��\u0014��3cv\u000f�\u0014W�'���&dK�����\u000b쇠2�iWp�\t[��1'�������8��l/t�q�)?k�ԻE`\u0015�$�a�\u001e���\u0017�kY��/����Lx��<�PH��OH��K��G�`]��M�S�K��\u0001\u0007�\u000e��C�ɤ\u0017�\u0005�;\u0015\n~�\u0007CRA�\u0000���u��<�]�'ܝ\u0006���c��#\u0003�׎�r�;\u0007t\u000b^���Қ\r'\u000b�p�EW�Z ��-�0C�S�֋�|�̼W��� �����'b�\u001elME\u001ag�XYS���f����9\u001f�6����/S��o]H2�X$F\u0018\u0007�\f��|i����l��-/�A/�\u0016l��M{���\u001d�\u001c��*����x7\"J:�l��\u0003g �I��f��\u0003:��s\u0010�Ą������@���a\u0012���b|\u0012g6\u001e�$� \u000e!�&Uv\u000b�֮�)F�I�\u001f!=\u0016���\r%�itD^B��VV)��8\"󝻗�T唞|+���6\u0013)���\u0018�2ኧ�\f�\u0003��:4qa�Ջ]v\"�CvH�G\u0012\u001c͍2�\"\u0012�\"��/kN��;�6�s��K8z\u001a\u0018\rJ+�{��rƖE\u0007Q?�\n}[!Fb����D�!<�bV�Ui���{�b#&\u000f��_�p\u00136u���\u001d��\u0000r��o\f]��:�5y�\t_ۈ_��\u0007�+��Dum��� ���\"8�m��c\t\u0000��!\u001bR�A+�\u0016���X��\u001d��j��ˇ� \u001aG��31�>_(�\u0000��QL\u0003�T�Ρ�I��\u000e���G��'�WP�[s����\u0000��oBBY�;\u001f�\n!�\u0012�Q�h�IQ�\u001d�\u0002VN�>�,�\n�'\u000f��\b�a٬|V9\u000b��\u0018�+�R\u0004�v[\u001f4q\u0004[��\u0000%�\u000b\u0013.�\"\tw!?\u0002�t���y���\u0014\f�^ȏ�����K�ݾe�ه\u001c���\u0005��l,\u000es\u0003F�j��\u001fZy�����\u0018\u0017f7��er��@�'�>�Ɍ�.\u0018U���A$�\u0016���L�\n�k�t��̐��\rO��\u0001o\\^Lw�}�/�\u0003��\u0015\n -N�)E��\u001d]�AY�\u0011&��e�o�Q�FNY�1sS���\\+~�·dbcL�\u0019\"h01,\u0012t\"��\u0016�\f\u0006F� d5���\u000b\u001c\u0017mN�\t�Bl�U�O��$\u001b�{�kW�\u0018���\u0017�#\u001c\u000e>���D��Շ\u000bx$JW\bM�ۏ�m���t,�O���K5��@�m\u001e�o��S\bvl\u0001P��ڬ��Z���\u0001�6��uD\\��\n���[�?�dt�\r��Z�\u000f �1��� \u0003g�\u0016\u0016��d�_�B|NE��ׄ�_�b��\u001c\u0012�}�<�?���>�\\���6���A(�\u0016���L�+��b�\u000f���݆����\u0016�ʹ:�۶�/�_�#\n\u0001D\u0001(\u001d_I\u0005��\u0015\u001d�(~�0�Cp�`���'��YG�Vn_\r<���\u0004}�\u001f\u001c\u0016�\u001f�\u001dɰz�]bl\r\u001c�p\n櫋\u001f��GJ\u0003~%��E-�s��|\\�D�\u001a��է���j��\bU����E\u001eٟ;�#7��\fY��8\u0015����W��|�̌�\u0006�\u000b[��?�L�\u0019�\u000e�}ɂ�$�L\u0014t�h�\u0014r�������2N\r�\u001f������Q��g�n#@�\u001d\u0002B\u0004$M�G`)��\b;\u0016����?B�3�\u000b8�9\u0017\u001a�#\u0001�Ŵ�D�\u0012��SF�-�\u0015��&�ܘ�Q���@�(��\u0006�\u0001�E�ɿSݟ�4r�$v\u0001�=����(��5�\b�\u0002��^·W�^��Go=�I�]��\u001cK��r\t�v1�sf �cО�I��D���NJOA\u0010DN\r��,\u0012^�1\u0000y�Vt<�r4���Ny\u0013�U\u0011WuěPS�Z\u001d/ecCu\n��L��\u000f9�$V\u0017ےpl\"1E�QjBnn��=�0�Y�A����T��0��;���A,�\u0017\f���\u000f\u0002ڞ!\u0014-)z�V�ܶp��|��\u00118�����\u0010A�j\b!�S!�\u0010��\u0011�v��o�V6�\u0014T���z\u000b���� ;/�X��QUl\u001fǍ���\rcT���D'AG|J�e[�)��}X-F\\B����a�@��K\u001bR��P\nmP�S�\u001bP��e_�ŴR�\u0011댼���3q�\u001c�zٷ� 5�uF����\"Y���\"�d=i��)��\r�e�h��_�zj�\u0000\u0019�\t�\u001d��㚜9��\u0015\u001e'���=?4t.`:h4AV�L�K7�v���:w�$|�$\u001d�\u001a��R\u0001\u0000�\u001f�\f�\b�\n_4y�)��{��\tx\u0019��\u0003��5x��r�>�V\"-~>tB^�\r\u00126I�A\u001d�\u0017 ��L�\u000b�w\u0006xd�\"D\u0011����p�j��rN�i�\"��(�%-!�w��P[��\u000e.\u001a�\u0016B,M5�L��\u00046[6egd� �N�[P� g�Oȟei-ڮ\u001f\u0013�z\u0005?�Ÿ�']�Z�:\u00133\u0018v�\u0006:�\u0015�\u0005.\t�\u0014�J�W�eA�y��N\"�Q+f��\t]�\u001f\u0013l�\u00148�WO5��@�Q�qv��\u001d~�V)�!j��3\u0017��\u0012���x����\u0018�ިhDL���qfB)\u0018���k=\u000b��I�Erڸ�g#V��\u000b�b��z��\u0018���ɒI��\u001d��-\u0007�\u0004�ڈ��р�3��w� ˶�Ӥ������3��:1�����;���f�A3�\u00174��MW�tۛ�T\u0004�Z�X8�#���%.r:\u0018F�\u0010&��s\\\u001b!*&\u0002+-�=7oл��*��\b�\\��\u0005��3\u001a���2hM���m�؍�a|�މ$,4�ה7j��ݩH�\u0016a�5ʱ�UT��X\u000e��2\u0006;�J8eWߵ�\u0016�pk��Ω,r*\nš5RP.U4u�r�\bv��E2\u0017ې��a�����(���\u0014Z\u000f�*�l\u001f�1�;��y��n\f1�%�\u001e[�T�yl�F\u0002�n�\u0007\u0006��x�;ݽ��\r�Z2\\l���\u001c�\\��D�_ԟmYD�'\rD)N��Ozӓ�\u0016\u0005\t��E���A�jA\u0012�$]\u001f�������\n�\u0013���nl���\u001dL0E3��'�أ��\u001ccM|m�A+�\u0017H��L�M�ڣ�\u0016�~9�9H��r$\u001e,�>Wm�<��\u0015�~;�\u0017���\b�I�pu@q\u001b��V��<\u0014o؏Gj�\u001d^�\u0017\u0004�h4\u00051��%LZ�,B�:FN�\r\u0016��R�[�k���\u0014)p��1Z��s:-���\u0004i|ΓH\u000e��b��1�\\\n\u001do\u001c���43K�\u001c��U�A\\\u001fF�r(Υ\u000e�\u0002����zӍu\u0012���Yt�S�\u0016�`�t��q��p���\u001b/���\b\u0011j�wՅMS�;d��T/�\u0014(�o�݄d����z\u001b�\u0007��>/х\u0016D�Q�:�\u0004P�\u0015�\u0019�Ԣ��,hF\u001a��7�ޡ�{?\u0003\t����2�)d�#\"�⸉��x)~��6�A3�\u0017\\��L����Cp\u0001�E���&�\u0004�\u0000� �ָF�G �J�������D[����4�\r\u0005\"}���\u001d��|�ZS@ͼ�~Y���N3?f?������&[���Q�\u0007y\u0018\u0015큞L�\u000fc�3a{���0C�u���\r\u0002�Z��v���W�Tj�T�]\u0018\u0004�\"��~aΠ<�F9.&L�P�u\u001f嬜\u0001\u001e<ۭ�CU:�I���2D��\u0002*�b\u0003d>\u001e���Um\u001aޕ2Ur�DW�P ��\u0016�\u0001��izH�\u001e�2\u0014��~�\u001d��f����U\u0007�t_^�\u0017�Kx��=�\u001f�/�Y��BD�^\u0006�ׄ�d�Qxa��עɣ�+�0�'�r[\u0001vl7\u0001��Y&�T#��=�=L?�Yc�A2�\u0017p��L�2=\u0013�\u0001��Ӛ�,6R't^y\u0010W��� �\u000f\u0013\u0002+f�P\n����{\u0001K�N�-f\u0005\u0000���p��@\u000eZ7n�\f�u�y�!\fQ��?�Nh��\u00045k�~v\u000b�KN�<\u000ejj�~�\u0005\u000f\u001bS\ra��t��f�E��\u0000���ު�Z�\t�c\u0000�E}��W�š�����,\u0005�X�i�ț�R�_~����R��n���\u0003�Mfs���\u0005�\u0015��V�\u0012�:�\u0003T���c\u001c\u001a���!Rg�\t#H��w�u|���N?����\u0010��J\u000f�\u0014\u0016\u0014n�S\u0004\u0007\u000e�ⓓ�\u0013-��\u0000�*y؈��83���0�\u001c�9д>Ò\u001d\u0006]8(�}�]�9\f����=\u001e��\u001d�P�\u0016��c��\"�A/�\u0017���L��\u0012.W��e�U�Ϧ����a���\u0012�T�n��-�@��\u0011л8\u000eg�|���1\u0001����L�ӊ�y\u0017�#\u0014��\u0014|<���{Fw[�C6/\u000fx��G_���I��� �/3��\u0005��t�S���zM�a�Py�\u0019����jTu����,Ղ�����MY�Sw���^�qm��nh\u0013�\u0016�lr��=†\u001e\u0014b�_���\u0017�\u0007�m0[I�U��t�t�1�t\u001c\u0014�q!�i�~�0�8I��C�Ќ׫n��UƐ�\f�VK�>)�5Q��!Pa���s��\u001fM>�\\7��KT�/�{oJ�[R�t�U �\"�����];�����R\u000bO�.WF\u0003�vʑ\u0015\u000f�\u0007�$�A��\u0017���߷�ۑ�>��f��X�Dz�2?GZ�����ޔ\r�~���1%25&��-�\u0003Z�v\u000b�4��\\A�ϑ�\u0016���JU\u0003��Zq�Y|��)\t<�f\u0007\u0011�\u0014\u0014,�u�\u001d�&��n�s\u0010?�v��SP�2\u0006&\u0002\u0015�\u0002&U��.2�\u0002�y�y�J&�\ns�5�{P�8~S\u001b$I�\u0010Od���^���.�k�S��^�>��\u0011�����\ni\u001b�)�b\u0012�k��GPx�]�E\u0003\u000bT'\u0012�Dp\u001a_����)7*��_�*�k���ǵ��HH�\u0004�\u0005c�����1\u0018�\u000f\u0017#n\u0016��0�H�Y�\u0004*���\u0012�\u0004$�`��qu�\t��\u0010\u001c�,���㱀ئ�*��R:p\u0000h�c�[�~O\u001c��e�!;��=���V��Q��q��V��ˏB\u0014'�@p�%~R\u0014�Ai�\u0017���l�7\\\r�D\u001d�1�AsPh���\b�Ö\u0003t\u0012\u0011\"���\n����\u0011��\t\n)c�=�,�~\f��\u0000���\rok�\u0012\u0004�;���Y\u0013���\u0004���\u0001\u000b�QP�o�$s@��'\"�R��D��� D8����^\u001aV���ō[|g���\u0000x��\u0004���\u0001�Jf��\u0016�?�\u0012«\\�\bqXb�\u001fC�F\u0012�by��7��6 ,�=��L�:$v��ͺ�\u0014�\u000bl�@��\u0018���iv8\\d�\u001f�Tl{%�\u001e�\u0015�#R���W�\u000b.�ƒ=ʹ��\u0014�UU��V\u0006ݎ\u0017\u001d�mĐq�; ֵ�t\u0016�s�,��7���)g�=�C�� �\u0001�F�\u0001�����o���\u0013a�o]\u0002:��z��_��5��U[P��ov|��T�j��~N�Ӆ�X9�\u0012�\tpo!\u0012?�VWm9i�޵\u0018��]�AX�\u0017���L����\rO�}5e�n5��\u0000�V\u0018p&\u0018�g/�3����j��C\u0005�v��,$��a� \n��\u0003W&~�ŧ]��J���$\u00119O�\u0014�בR φ&�\u0013�Տ���D�^�K=P(`I�dg�/F\u001ef�\u0019j���B�q\u0007\u0011��7�%��\u0019��BI\u000e(��O$6�u!��p�zz[����\n6�kOU_�G|tZq\"���9��6'E\r��\u0005�T����W�\u0014\n;\"�i�/�\u0018�\u001b����\f�Ѹ�\u001a��6V�hfLb\u0005\r��(U\u000e\u0005\u0013�\u0006�.i�W\u0000��`����(�b�����\bQ��U;QAV\u0012\u001e=��o���3�Ω\u0016\u0005�d�����k�Յ03ɖCe~Z]\b�4�K�{�H�N����3/\u0003%�z�4�\u001e�;���6�����WJ��nw�u-�A8�\u0017Ԁ��ڏ��z\u000f��g\u001fT�̓�*� ��r\u0012f�Je�7��q��~F\u0013Aӕ�l*y1MϺ�*&ӳ2\\�!����h$�ՇU�Ƿb\u000b\u0010\u0014%<��r4q��Na��iO�DH9\u000f�\u0001���+�ՙ\u0015y�M�\u001b\u0001W\u0017`��\t�F� \u0011�u��_m\u001a �̲!�!�1\u001d\u0007�\u000b��\u000b\u0018\\\u0002\u0005�\u001d�u�#̆g3�+BDf�PZ'��\t?Τv׳\f#���H�V�zyk��\u0012fzҤI�a�\u0016AV�c�Z��l,�)\u000e~u^߬��L�<�Bi�\u0010.��\u0006H@��]�F���\u0001\u0014R�^���\u0007�85d�TB���!\u0007�IZ�P���W�j�v�\u0005\f��O\"\f����g��\u001c{��:y\u0013�A3�\u0017���4,�=����2\u0003J(=��\n@\u0017��I������\u0007�f8�7��8�fu�ˣ\u000b�\u0012���\u0002:��*b�.\u0013�M�ݼp�a2\bX\\�\u001d~\u0011���,�*BZɼ��\u001d݊�D�:*���w}c\u000eN�w=�\u000f\u0006�h�դ��/\u0011\b\u000b'�U��\u001f||a-\u0010u\u0002��k��ئ\u001d\ny@�$����G-��;���\u001f,�eOc��\u0000��Ft�����\u0002���F\u0012\u0013�|�]����\u0015Ȟ'c�0S]��dU�u�D�ȒIG��LYs�P2�_]�RP�@\u000bϬ/=\rM\u0015�Z�'V�jX\u0002�[{\u000ff$H@2�\f��[��������P�\u0018�\u001en�\u0002�V�\u0000\u0013�Tv9n\u0004\u0014rTĥ�݂5�\u0013�BU�\u0017���{\u0017-\u0015��U�\\�\u0012ދ[�-\u0000*#�r�~Kc�uE�Vu��+}�\tKޣs:}���L���\r�1�&�G���\u0014P�ԍy����rG\u0017�����$;��&�m!�Ζ�]7t:�3��\u001a�\"����(_�N}\u001b\u001f�v.�}�w��.x\u0019𫱑\u001a�t�!��� u�2�**�\u001b$�nE�\"b�ji�4�\u0019���$.z����n?\u001f��\f���{\rf�ر�\u0017�[�@������ܦT��\u0004d_���� ��?�\u0003_\n<�?�4�\u001b�G��\u000eU �0��\u001a 5��-&R\u001d�O)\u000b\u0002��\u0000\u0000\u0000\u0001%��ҦO�\u0019�\u000b/�1�\t�i�\u0016�>/պ!\u001a�\bv�c.�\u0002\u0007���To����ز�6t|�{�rC\u0011�8�g�ǛE�s̡�p}Áe�\u0007WK�3#+Nr�9���pl.\u0018�x�Q�Y�7]@�q\u0017t|nT�\u0007M���S�\u001eh�\u000b��d\b�\u0013��\u000e��1Yb�5w^\u001fB�\u001b$p���\u0002|�W��\u0005M�2�=��\u001b�(쐍;)s�\u0012���Lړ�a{6.���E��\u0003�\t/�D��q\u0001V/v)�&� ��\"�\u0017\u0018���\u0005�+���Ϧ�\u001c:��\f������\u0015�F��ҩb�\u0016�\u0004X0�JNy/~��YSO�\ndM���\u0015_�]\u001c�\u0013�œ�g{�C�󹛶P����2�@\u001b��s=J�ER�����\u001b���\u0005�����\u0012DQn�n�A��\u0018\u0010��|�\u0014�\u000fI�\u0005o��A�ږ��\u0006�N܆\u0012�7|�~!E|\u0016\u000e&�H�A�JV\u001d�l�\u0011�� ~��k~���.ܗ�ٛ�\u0014����*��uw(f�cR�\u00009�\u0011�2�\u0012��(�~q\\��qG�30�l}�\u0007�\u001a�\n\u000f��\u001e?1m�3�Wc�f@=�X�d�������8�+\u000b��|�3\u0015\u0013�\u001e�ӂu�:~���4�g�%����I�~+7\u001f���\u0016\u0005�т��\b��(�D���R͢��\u0003Dt�7׬=���M\u0016�BoH���H�>pV��l5.�\u0010wG?�\u0017�!c��7.jg��\u0012��49�E�D\"��?\\\"C�\u0001�6[7�j\u0010���4���Yu� T���\u001fz,A�H�\u0016&*���\n�5�D\u001c��2!\\�U/F���\u0002F܌�Y�T�չ�w�b%�@��\u0018$��m�1�*�-A\u0002�J���j�*��-�U��m� �tŅC��ߣ\f�c�\u0002��2Nn\u0012����矕���-\u0004�'�*)���u�d=6O�f�\u0012A�0}\t�+\fő��\\�MC�L�66�eᢀ<��H�\u001f\n�*��$\u0012�S11��\u000e[�㮕�����\u0004*\u001b�\u001f\u001b��[�/UZ�\u0005\u00024c�o��RU�����?�\u0012\t���q�o\u0019��v$\u000f!a�2gj�.�_o\u001c6YaW���\u0005��\u000bĚ��~��)�Fs>��Ws�/\"��F��g΢%�xFx�96n#�.\u0006c�A\u0003�\u00188��X�_\u0014�{�1&�X��{\u0014(~�\u0012�R\u001a�b�R4\u0012%\u0007\t~Ce?\u0006^��\fg�S\u0018\u001e��'��Ѿu�d/&ma�(\u0018���fHca\b\u001b�e-v��^,_&\bc��Gٕ,��@��|̳J*m�|Gi\f��\n\"��'\r%��2#�:\\J�\u000e@�!�Μ\u0012�%6Љ�#�p\u0003f�ha��]��%\u0018ė/�i�\u0016(kξ_ķk�L��\u001c����4��2X�‹7\u001d�{� �\u0017�aS�\u000b\u0016�v��g�d�%��B����d�9��l������Aተ��!!��\"�\u0013�yϔ#�&��\u001dpy��A\u001b�\u0018L��X�k�����b���[V�\\�d�q̋/�W\u000b��\u0016|`k\r����\u0014e�F\u0018f��\u0003� X\u0005�\b��6���@O8�BM�\u0015.^l\u0010��^\u001e(�8[�\u0000��֤��]�\u000bS\u001be5�4�hD\u0005�h�Q��R�pI�\u001d-�\u0003��!���/��\"�!Xg2�qN6���e�|�f�\u0006�|H�g��5�J`?��y��t\u0007�_]бz�Fŗ���5ܭ\u000f0>�\u000bL�h\u0003@��w�\u0012�n���\\x?--�\u0016n\u0012a^�rN\u000b��H�C;\u00149�k� �����f~�C�w\u0010x�4�\u0016\u001d3\u0007�z�M���Y��\u001fv-n��oʙ�\"�5��7�]�����\u0006�\u0001��\u001a�T��&�}�v)��s__t�\u001dR�Yl�g��_Z\"�\u0001|�E\u0013 �#D�&']ņO��$g���\u0016fZ�ѱ�x�\u0012\u001f�Xr�����#>M=���#\u0004z@(����i\u0015��\u0014��\u0016�I\u0017�\fB+�H���\u0015�\u001d�[�\u0014\no\u0004�H�\u000fm�$�A%�\u0018t��L�&s}��W���\nK9\u001f3���hS\tYIBq@}*���v]��\u0014�\u001cn��ٮ�dtXʆ8��\u0007�.\u0014�\u0014�^e� ��\u001b0��\u0011�d���1�O\u0005\u001c��T���\u0017n��*��$�1м\u00029M��$�^n��F�@{K���1݈!���X\u0004>����ݷ�M�����m\u0005{\\\u0007�h`�J<�$��g�J��n��z��1f\u0018�tE��\u0011�_\t��?-��WU6�\u0002C>w���-��J���%H\u001e�\u0004��qlŐPd�\"O��r��v�k&%��kC�(�O}�`o��&\u000f�����M�\u000b\u001e��q�Q�&`T��y�/�\u0016�����ls\"���A'�\u0018���LȒ�I�H�a�L�WT'k�W͛\u000bjΨ�\u0002�\u000b<��u\u00178�>��c\u0011?>�R\rpi�\u000f,�SCF�\u0010o\\~�\u000f\u0018�Ix\u000f4I\u001c�����\u0006u�n\b8$�-SV\u000bzM0�I�`��6�\u0017\u0005A��p��8���)�>K\u0002�T��\u001b��7���3*���$\b��w\u0012h�؄�.�]O9õ� \u001eI�D�p��֊�y��cWM�t�b\u0010\u0001W�5�B�dgC�i\u0004$a\u0001ljt��F\u000e-Z��&?��8�p\u000f�᠕\u0011u0jY\r�\\=��߷{s�/ߘB��W��SY\u000b��S���:��\u0011\u000bB�Q:W��\u0011�]F \u0006roq��jw�'t��ܮ�i�E|���A-�\u0018���L��(�5�P�����-:�Dx>e����dOy$�ȅ��Ӈ�PWn���\u0000˜4�.���:\u0004�#��gmpb�ђ2��$�2\u0016���9\t\u0011��F0I�Mc��ˠ���Y���A\"��\"3܍��\u0007D`��\n \n\u001b+�9\u000f>2�^A u� b%�[s�Uλ��\u0010�i�'��\u0010h��)�f\\r�V�|��Aš5钌\u0001\u0018(�9��\n|n��\u0012R(\u0017=xҶ�+�\u0002��Aw7�e|pZm?�~�Fd�Ny6\u0014�P��\u0013���*������X��j�j\u0002�a�_\n\u000bP\\�\u0000X�3�\"&`���\u0017H@s���\u001a��ށ�O�}��\u0005\u001d7V\\z��� g�����[v��T��H�I%��\u0015\u0010F�\u0003� e�Օ�]>J@��>\u001b���m�1=��{�5z\u0016�M��\u000b�᧴�Tn�wv�я<�u\r]/R\u0013Q�\u001a\u0016�m\u000exG�\u001fR�\u001b��\tC��\u0010�pD�x\u0002\t�\u0011�s��V�R\u001b�2����\u0007d\n3U�\u0010��(e���)�PP�c\u0011�0-\u0003�\"�Zqd����A4�\u0018Ā�L�9\u001cl̪C\u0017���\\���L!�[�QT\bk�\bçx?�6�x'81m3ڏ�N���~���\bJ\b�B\u001e���枮`e۹p�\u0001�\r�dZy\fu#�\n�!��1����U\u0017І�,tF>n`\"�=L{U�WLA3�Ա\\�<�73�v�\u0010\u0004��\u000bձBQ�r�\u001a�Z\u001a\u001a�И2\u001f���\u0019�C�ʫ�\u0003�/�;B�SI�C�Sg̽��{p�\u0007%W���.$y���T�L�hթ�38��^��xq�8&_��Ǒ���ҋ\t��G��L4~��;ɒr�̭q5n}���\\3)����\u000f\u001f8\u0000�\u00048�[-ܵc)�'5\u001c�hsD���\u0017:E\u0016�E��Dϑ����6���o\u001bQ�[~FbP��k�/��UQ$\\uK�m�\u000bK�\b�`\u0000��\u0002/ȱ�x\u0004���zj{m��֋��\u0002�\u000bè��t��6\u0010\r��є\t��r�}J��L�La��a\fy��ũGE�_�n�W�1\u001d�n\u0001\u0007MF���P\u0007\u0006\u001c�Ó�@�V4�H���\u0014\u001a_�`�b[F�}AӼ�\u0018����p\u0003�\u0011f\u0003�\"<,��r��\u001eW\u0006'a�=�f�XB�ʺ��>k�Օ_Œ\u0015oQ?���(+d�ȿ8�I�DXt��B�Z����\u0003�\u0010�\u001fy)R\u000fx����y�>$%�d�}��g\u0019r�vQ\u0015n�w�A#�\u0019(��L��\u0000T,��\t�L9G���:��h���� ���\u000e9y�����`J���0O�>��\u001a3�>#�.�����\tLlM�����\u0016�oo�pU��t�\\\"·2x%\u0018\u0000\b�6�\u001e�&S�x����Ŏ�$\u001fE̲\u001d�TJ\"N���=۸��L�\u0006�����3B W�p�`W��E���ɹ�\u0005\u0002p_�VIC�㹆�o}�����ss\u0014�^\u001e���A�\u0013\u000b��pE��^��\u0018T�`Cڊ�\u000e5o�q\u0014\u0010Z�o�C�\u0012�z��a�\bi_!�5R�B�����\rP\u000b+\u0013�V\n�\r\u0000\u0013�IÍi��ƀ�\r5i���4tj(#�l\u000b@�LmqQ�B�<���A!�\u0019<���\u0010�X\u001e\u0007D3�\u0005\u0019�M�8�\u00124[�&���ܬ�\u0016$^�f�z���F�\u0010�]I҆|��\u00117|��21p���\u0018KN\r��P�\u000e�\u0004{@�Ӊ4��⻶Hn2M���z�4�c{.o��\t�O\u000eb�.�t�\u0016vW:z\u0019\u001a�\u0018��\u000f[挥`����5��VP,9\u0002�֛׫Vd��k6�i7,��>�$�3E�Ԅ>q�E\u0014�����k9h,\u001f�\b���=�)#Ť��jMN��d���S$ٹ�#�\\��s`~hC\u001e\u000b}!�w\\\u00147N`���_\u000bJ-\n�\u0007\u0015+]UN�8�\fL$z���\u001fY9\u0004�$�L��B\u0005�����ʏ\u00043\u0012\u001d��B��A!�\u0019P��L�\u000f�D�gv��2�\u001f�f���0\"\u0014\u0001w�UOrV��_[Z����r\u001a��\u0011����P�\u000ev�����\u0005z��\u0001\u0019Y����%�!\u0019+�S`�Pc�$?:�H\u000fbw���\u001f3�-\u0010�K�2����Ɂ+�)��]�C옇=����\u0002�~��\u000ev�,Ӭ\u001cz�\u0018ĭ�ɡ2\u001b)�\u0010�\u0018\u0003\u0018q�\u001f٧b���\u001a����\u0012`�S��<$z��G\b�rdPM@ɥ~SQ�jBͶ…�����\\\u001d�]%�H\u0017�D��\u0014\u0006��M1\u001eQ�tW\u0004x��C�\u00036z;�z\u000eH^@�@\u00121\u0018a��i\u000b\u000fˑE��\u0004I\u000ey�r��D�̵�����&\"/Bۼ�ţA-�\u0019d��L�{�\u0018�yL�Q%�\u0019,D�8E�r�J�ٛ&��;�8�A���+̀�\u001e\u0012���Āf\u0005�.��m��\t�5�\u0004\u0012�g\u0007*�V�4��r@<[��\u0011��$����\u0016��>i�$UT9\u0017)�4���B�s/l���g\u0019�ٙ�\u0000#��7!�\u0010E�`a\u0006��(+�1qm�\u0000\u0018\u0001'*\u001c��pÒ�H�\u001b|��\f�S9y�\u0016v��~�F<7\u0011^c�.6�\u0012�·���R�\u001e6�ZU\b��C�J\u0011r�\u000fɗ��e�\u0001�Ŀ\r\u0005�?���ޭ�?��D&���\u0003\u0013X\u001b�b��[ԝ\u000b�\u0012>�|��K�K|Z\u0001䬇�\u0005�2�\f\u0019�<4�\u0015�r*\u0015���n�ɓ~\u001a\u000bLz��x���A,�\u0019x��L��{Ξ���6Jq�e~p.�<�ת���Tm�c��/Be}�o�\u0004n5��L���l:��\f�\u0016^�Ub8��g9ŗz�\u0015[3w��\u0001��z�P�`\u000fbs\u0002|4\u0005ڧQQ��Tť�v��E���k[\u0007쐍gV�#������܏ǤXϵ\u0015�n�q�\\F\r���\u0006�^\u0015\u0004�O�7v�i��F�G���\u001aŘ��L�>Ǚ%Ř(���\u000b{P`lE��\u0014o�F\\v�\"�KR#\u000b�a\u0005:5���A<�\u0019���M2\u0011}�\u001a\u001dDb��\u0019���\u0015�&\u0003�X�#�Ge?.��pF�\f��W\u0004��]�V\u0019�\u0005���S����bw�?�\f��U�碨��ct�磒o�/\u0002\u0014�5$���\f\u0016lũE��n���L\u0015DG����e�\u0003ߢ��M�\u001cV��K\u0013\u000eB��̨O&����9�\u0006\u0017]I5!�N���\u0010�v����\u001e_���\u001c \u001b���Z���rm��\r��s���A�G�3C�����V\u0014�\u001f\u000f5�\u0014b�\u001d>\u00047���F�W���T�\u001a�Aa�\u001eU��#*\u0016AQ��,\u0004�\u0014$,C8\b�:&\f�q�c����\u0015�5$^��\"_�ӧ�2�%{�/���&e\u000e�eg*\"R��o���\u0018��� Qp��M�2f.Gjl��\u000eR�Y��Q\u0019\u00024s�!�\u0016'f�9C���-iP\u0013*�a=�\u0012,�u��U��@.!{5\u0003@�\u0006�S�;\t�ʗ�\u001aP\u001b�i@-$���\u0014�*����ZW�>c\u0000�\n�z\u00187�4\u0013\u0011Zƍf�ڱ�r7n�7\u000e'��\t�A8�\u0019܀��~���Қ�3�=��\u0003t\u0003�υ���9�A��)M�\u001ewk\ta\u0019^�γ\u0011g��p[�j�W�`�'�_\u0000B�]E��ը�P=�U��1�R�\\o���������u�[�@04pT����1W|\u0010&�|p�#k)�y:�{��W\u00154��?9���\u0006���c�����$ש����0��Wϥ�l\b3\n+Q\b\u0019���HN��2����\u0010��L\u0016~y� �V�7j_굱\"�~\u0001��A7�\u0019���.\b�B��.G\f��\u0017x\u0005�3\u000e��Y����J�&O��F\u0006�����I�\u0013�\u001di84�&L��\u0003��T4c\b*y\u000b-аɤ;�<�‹�\u001dO1\u001c�l�x[`R�=O:>�2�!�ۃ\u0017�:bU���t���dN?����\u001e$��\u001b�\u000e\u0006p��\u0004R\u0007XI}l(%S_\\T6M���\u0017�U\u000ef�,�@\u0002��T��^�S\u0006���u>\u0015��pjT�������\t$�{�`ͱ��5�\u0014i�\u0000A��\u000f׃A��i���\r\u0005��n�xtJ:�\u0005��\u0014\f\u0014�\u0007f�\u0010&&�2\u0019�@�+T`�ceeIR\u0018=�➁Z�\u001fj�U�Ci�-Ċ��k�}H�g�\u0007�ɔ�\u0001�u���\u0002ݑ\\�R\u0005nt\u0011�A1�\u001a\u0004��&%�e�\"�d\u0000��\u0006\"*���-RX�\u0015-�\r\u001a�R��H�\u001aY��\u0001x�ň�7�\u0004;\u0012\u001b�\u0019��r\u0010����\u0013ʆ\u0003��`U\u0018${H@�F��~�6mm�%�\u001a\u000e����\u0003F���η��N�6��S����\u0001�s\u0001Y��l:\b{�XMs\u000eW�ԗ�g\u001a�7�I��\u000e�F4��A��f\u001by�ﻫ�~fߖ�z1���\u0007�\r4L��m�o�}��9�]�T7�3�b;bH�ڋ�o03��x���\u001b��t�\u001dy3þ��H�����\\3zhW�0�\u0017�C7\f(\\#��%O[�y�DW@�ҫ��\u000e�G�_`��?WP�f沵\u001d�N�(�\u0007s%+���%)\u0012��5o�\u0005:\u0004_��A\u0013�\u001a\u0018��Y\u0006�y������|�\u001f\u001b9x�\u0003��z$��\u0013\u0014�@�\u001d�o\u001e\u000bi��\u0002�qr\u0017�C�������a�4���6v^�z�[\u0017�5c��#\u0012��\u0001/�/S8e��D,.���ݝ\u0003����Og����^W5����:P��R1���z�>~���n��Z���S\u001c�~���,���yv��#�\u0007���h�;N�\u0019\t���\u0006�\u001c�h���[RT\b�\u0017JP�x\u000b�BzO�\u00184�G\u0019�J{��Ți��a�{=Ѣ�w�.$VG\\�6\f�\u0002ɡ\u00126\"�aIB8\u0005\u000f_��8\u001cK�U\u0011�\\i\u001f�]\\W�r2�%+[o`\u0000&�[��~B�Ao�\u001a,���qը\nܿH�\u001c*q����뮉�C:���JW��3�\u0019��H�F�5�P�`\u001a3$�T�L\u001d�\u000e\u0004�S�D��NRB�D���O�q��_\u0017�\b�ű\u001c�Mx㶼O9$&��\bVػ\f\u001fk\u0011�׿�L����]ýg�i��$_DJ�%�\u0010\u0019���;�\b���!y�Rd|��r\u0019n�d�~:e��9'<5�\u00128�6ל\u0007�\u0004��\u001a�2�b�&��/�y�gu�\u001a��Y�uԆ?�b]��~���E2\bX��\u000b�/1M6.�\u0011�\"}$P\u0004\u0014\"�\u0017����1DTz��w�hɘ\u0001\u0017?+J\u001a��d��\u0012:�~\u000fV]%�l�Tz���\u0017=XS�&�#��_��~V�Ζ���^E�'��U�q\u001eWV\u0005*��FGR�F��4W\\rwʐ1���Uh_Y�~\u0007�3ݵ\u0018\u0001���z���!\u001e�J�k\u0006�y���A\u000e�\u001a@���xx5k\u0003��JU5GF\u0014e�Ɇs�\u001a��c\u00110o\\\u0005���H� @��R\u0012�>��X��q#�9���\u0018\u0007eс��<��D\u000e_V:V2c�`��i՗�b�Lc��B���%]��;Be�AB̅S\u001d]\u0012S[+��X\u001aW\u0012��*�q�\f/��y\u0013���!7.K�]\u0016�VX6)\r)�\u0003���\u001f�\u001dI9]Ŋ?U�\u0004l)��\u001e.�p�}�\t�K��g��\u001c\nE�й7.�;]�\u001cA}�\u001b�D�T\\\u0014\u0005�\r\u0015���b9�Wc�`?\n�W\u0000lN�#B�/�Jm���N���̤���\to*�\u000f�����y��\u0000@�A\u000b�\u001aT��X�aR;�����V��=\u0019�\u0015\n\u0007\byO�S�B�����_�s�_\u001c/��\u0014��+J�\u0014m]�ө%o�|�/���\r\u0002)�\u0003�s��c�\u0007�\b+�{���\b|\u001e�~�\u000b\u0005���v˸���o�F|�#0=�T�y!,Q�f1�ܰmu��=���7��,>7X�@�S�2��R�gv!���ڱ�W�ӽ{\u0006F��T\tWcu�\u001ahI\u001fl��w��x\u0019G\u000fb�yu\u001c�?���<)�=�|/`\u0018dV\"��\"J`<\u0004YA\u0005ũ���5謟HkY��V��\u0011Mo�~\u0013�#�@\u001e\u0015��\u0000w+t�K��\u0006\u001c�I�A%�\u001ah��L�E}��ȏ �Uw\u0010�?�\u001d�j\u000f��U\u000fo\u0013V�t�oY$e�X�e5�O\u0010ڊ\f�نѰ��0��v��eb����A��K\u0004F�a�\u0001X^V��\u0010lb�%�V\u001aμ�c�E;�v!C��\u0013@�����B$�\u001d6��\u0014���\u0004m\u0001��C\u0012�E��\u0010�$��\u000e�3���`�\u001f����8��\u000e&�\u0012Sv�0��=\u000bE�����B��/䚔�%��� �x�{�K�\u0016�_\"\u000bR�-2��=\u001e��/�Ȳ;\\�P�d�d91d�?�u8�ޑ�D�}��E�\u001b\u0010�H�H�&|R5�\u0002���1B��һ\re�\u0004�\"���9�•�P?�ƭ���m�w�_�A\u0015�\u001a|��L���\u0013�b2���o��\u0019��#�\u000br�9��E�=�!�W���(�y�{���\u0002C��0~��ۻ��zꗎQ����\u0011\u0014�{�åz1.������J\u0003�S\u001c���\u0002\f�}A���A\u0019�\u0005�-��\u0010࿜�-I*u\u0007�\r�\u0013�i\u0013����iB�����\b���\"��ӗs��ۦ^^�6�e��=��@�����}.��$��\u000fv�1�pD�,\u0016�/�\u0019�N����\u0015y\u001enkd��\ri\u0006u\u0015\u000e%\u001b��ڢ����\b�%+�@f��{\u000eC\u0014\u0002�\u001b�\u0013�\u0015%,��\u0003m<�\f\u0005-W\u001b/�F�o��̼%0#�\n���?�KɣA\n�\u001a���L�ZsL��o\u0012\u0012�t\u00136�\u001aB�Z\u0005��ёq�'Y��<���N�4\b24+��%F\u0002s\u001b�7j��\u001bt�ت�\u0015)���mx���H��¿|��_���\u0014�͡��\u0005�>�&�@�\rJf\u001c�&�\u0007�l�-�$�?�d\u000e��3�A}Z�7a¤aE���W$\u0003���\u0000�*J\u0002[\u000b_[\u001b�a/�(ݪ%�>���ٖf�\b輏�\u0004\u000b���\u0010\\�W�\u001b\u000f�Xݡ�\u0004�!�\f����\u00011�\u0015�\fD���a\u001f^LJx�\u001a�B3}��zv�Ox\u0012�\u0010�@h�e�L���{�\u0014V�z�z�۸jJ�y9`ZK�P�\u001ba\u001d �H\u000fr��egH�Њ��9�F{\u0004���A\u001b�\u001a���L���<�{�l&�/Mlj���K��C���/=\u001fs#��Ɗ\u001c�Rs5�\\\u0002��=��=��\t�Un\u0011�\u001es\f\nb`e��\u0018.�(8S��ĥ�q�_�����2��j�1��LZ\u0011,\u0001�\u0016�d\u0013�!�\u0016����s!�\u0017\u0015�n��\u0006i�\u001c\u00170 \u000e�%�] \u0004C\u0017`�F\u0003D�Z�\u001dP\u0003\u00002D\u000f\u0014y:���ֶ��������vU\u000f���Z��#@�w~��>z�\u001a\t��\u001dK�&\u001c*5\\\f�\u001c5)Sy�\"�T��\"�Zx9���r\t�'\u001a(@��ˇ�.n�NļwC�\u0001jj�J.Q\r��\\\u0000��K-�!�Q\u0001#l��'���^4��>������S;鋷��|�N�\u0001G�ۡ����R�\u0010ÊFfˀ1~\u0014\u0001r\u0012�de����g3�\u0006\f�b��u\u0018�\u0017uS�[a\u0012\\���J.j]S%AD�s��-���7b�ʗuJ�k:���R!��;\u0013(\u001c\u0001��JjԲ'W�\n�\u0011\u0005Kt��#<�\u0006��d�����$����\u0002i��\u0017;@\u001c-�\u0002�e�\u0003�\u0011W��m�\u0017�\u000b�=g~?o ���p�n��h�]����I\u0012�AH�\u001a��M2J���YNf��-A���\u0002�\n�\u0015�\u0001���S����+�\u000e6d�_��v�Y�\u001c�>�㔖�V������\u001c�#d�t*+� ��L�؉\u0019�JD\u001f|Xt1�s\t���2O>=�����\u0019Ya�y;\"V\u0015#E��\u001bۮ\u0000�\u0006M�\u0001�\u0003oX���ٲ�7�D�,Z�2_��~��E��h{^\u001a�\u0004\u000ey�8ߺ9� _ѝ����?�e|�b^����/֛刲L��\u0001��j\u0013\u0015��yw��p\u0002e��Hk���9��h��\u0014K�\r.����A�\u0017�l����\u000e�(JLQ�F�zX�\t9~U���̮%�>�~T�i\u0002�߅\n�_\u001b;~��m\u0001\u0012T��\u0010\u0005����\u0010V�#�En�%��M��\u0000ȭ�Fr�v\u0015\t�Aʁ\u001b\b��|�m㕰\u001d��n�����@np�\u0002�f\u001e�G1�sz\u001d�\u001fj}�B������avNj�V���N���\u0013\u001b�\u0007�4�ν����\u0007�N5K'&�|�\u0003��\u0010��2�\u0013F����\f�\u0018Qq\u001c[�\u0012|\u0018$Њ��[���o�Vc�\u000f�K�����΋v��1x�V�812�6��6��_�\u0005&ȶy\f�'�R�K�\u001d\u0000o72&w_Aa�V�K��\\�\u001e�%(-QXG%Q͈�]�=i?����eG\u0015q\u000e��X�o�N\u0015&�k\u0007[\u000f�\u001e\f�͗�Z]��w\u0000g�\u0014^Di\u001b��GE��t�ϕ���!�W��x��p��$`6\u0001D\u0006\u000b��\u0012p\u001c���S�#���\u0015\u000ff�,�Փ��!\u001a�]\u0004�.����y�]�>�\u0011�^_\t=\fe�-�F* ^��1��G*���[�\u0006\u0006�*��ȕf�\u0007\n7��.\u0003t\n�\u001f�2:4���K���R'\u000f�%�^>��S&��G����F\u0002�L56QM�/��Fk�]��}�d�G-t\u000e\u000fl�\u0005�@�EQ�%s}����?@\u0002B�R�2-A�A5�\u001b\u001c��2zH`�j^ܯ��\u0000�\u0019�\taz5\f�\n���\u001cF$\f\u0016���S��N��2`}kR�\u001fǧ�\u0016�\b�8�\u001ec�v%���{�\u0007��X�*��\\�ϙ�ig~Pa���\n�\u0003\u001c\\>�\rɼ�>���\u001c6\u0012�$�'S~�X�\b\r���l�\u000e���\u0005g���$a\u001b]3������\u0016�{.ʬ�\u0018h������J����\u0000 9�\u001d\u001e��F�\u0019�m� ϖ�\u001eU�\u0003}�\u0000�Ҵ�P�Q��Z���\u0007�\u0016��oB�\u001f\u00050�В]�A�iSX�]�;TT��g?\u0006c;m�)�4�(��Zf�\u0017����\u00121\u0014�t� ��r���~~�)`� �\u0007\t}JAs���\u0011\\�j(MO\\�t�H\u000e\bVnP�G�A\u001d�\u001b0��/c\u0010��\u001ak\u0011�n'�]�D�\u000b�ʇ<�\u0003�\u0002`�o\u0018����\u0005\u001b�Os|&������|\u001a\b\u0001��N�?w˘�1\u0001R\u001a�=�'\u0003+?�߃��r�5�o��X��J����G<\"_|\u0001��l\u0018�W\u0007\u0004�\u0003�\u0011�h\rG:U�R�;ޕg\u0004�%}�N\u0014(�(\u001f��i��6�� ���\u0013�ܰ9\u0017Z���7q�_\u0012Я�+\f Rw\n�MM�i����X��-݅�c�2��\b\u0014����ņ��C\u0017]\u001f�\u001fs���)�5���\u0005�T����u-��7V�E����!�\u0015\u0005�N��Iy�\u0015]�\u0006E\u00068� 3|��\u0013?;��&\u0002�#�1.�~�ujW�A+�\u001bD��1�~�����Ns��|;�E��״�\n��Iq����Bԯ7��)\u0002\f�H!(�\u0012(p�MrƝ�i��K?/�a���Ch�?5ދ�Fm�$\u001c�c�\f9\u001c\u0018&�bA�ڿg�}O�9�s�=�>�\u0002Z\b�?q���(\u000e���Ē�!���+�}\f{��dǿ�on~��*4����\u0007���&�g]\u001eу������K��ñ�\u0013g��5z�\u000e,N0K�P\b�&��e\u0012�\u001c��L \u0019ҩ\u001bV�!�\u000f�\u0017�6�Ůg1bҞQ�G\bm\u0001��\u0019��~^���Q�r\u0004ɺ\u0012��N:?(�A#�\u001bX��6�@B�X;���\u0019&\u000b\u001d?^���\u00039�r�ǐ��X\u0002�_��\\\u000bP�g/�w��C��\u0002$P9�EѶ�c��\u0014]�]B���x��\u001b13C�\u0018�J�:*��k\u000b,�\u0007���\u000b?���eA�\u001e�8ֳ�\u001a\n�W��x�\u0002FS�h_\u0007\r��`Dt:j.�L�\u000fW�ہ��E�h�V�L�@\u0018,�n\u0007pK:h�[��ZN�!�Lgbu:�PO\u0011����. ��S�\\\u0014���i�n\f��w�7e��+o2�\\\u0016|�~�]�\b\u001b3.�\u0017&U�o�-\u001f_ɩ����\u0003qz�*��A��I\u001b��2Y\u0000-���鬳7G\\m9��\u001fP5oriy\u001f\b\t�\u0013)Q�A\"�\u001bl��K\u0007�\\�\"�'��1�g?�=%��$�N��f�r�P\u0017<0�WS�N3���¡��y'Tip4\r8��\u000b\u0013�r#���ʉ��f��+�\u0013%�F���n?�\u001fǥ'�]\u0004s�\u0012`B\u0003��W�J*P�\u001f��\t�d��h�\u001f\b���#����\u0005�\u0018���J���\u0000(d�Ɛ׵\u0002&H\f�\u0017r\u000f�C�>#3��E��ʪ�\u0011`��\u0002ˮ�\u0014ץ�\\��k��d\u0006\u0010LԜI�uh�\u0010� ����%��\u0000\u0001�}�\u001d���%S��*Ag��\u0010�U��_�{q\u0016U��P\u001f�\u001b�\u0010\u0005����\u0012\u000e�������z)�E0|�C���?�*\u001d�T]��j�4� �A$�\u001b���L�q!��\u0018�jH��m�,��TZ�1�`���\b�D�ɨ%�ڬפ?�\u000b�V�\b�\u001d\u0018�ko%��ą�f�4\u001dIw\u0016���\u0014�D�h\u0010A�ܙ>E\u0005Qx�g:pVK��\u0019 y'q�\u0006Z\u000f|Lo���[��#��\u0010�)�\u0012�\u001c�\u001e�y��S��P}��������.��Tq�,�|�%\u0001\u000f� �\u0016\u0016�?\"�o���e���Gw�~2;\u0012�xP�P����ި�w�\u0001��\u0007d1�_W=-Z�\t�\"ԸV*L�V�n~�)M��V\u0003\u0014��7���7\u0000�MX�\r\u0018���0K>�I�%ߺ�\u001b�\u001a�z�\\G�g\u0016�b�Z���%����ٿ�%\u0005\u0012�A(�\u001b���1��\n��-�����$�I�LW���2�\u0015���`�GX\b$�a̪�\u0014q�=@��:�D���;(2�n\u000b�pA`'��(\u0006I\u0002�x%�j�G6]�f�e��\u0007��߉\u0018-��|R\u0017cΈ�K\u0017\rL2��9�ɢ\u001f6Q�ۢ�0fu��`�\u0007P\nk�I\u0004�|�\\��12kT�\u001eJ��Ѷ�i��z1�7�)�$�A,J���t^�N����Þ%J��~��H)\u000fgvL�.\u000e��ox���O\u0015\u0011m\u0014�c_\u001a\u000eJ����\u001b��<�G�\u0012���� B+y\u000f\u001a\u0002��\u0006�Q%��ݾ�'u��\u0004nŲH��wf�\u0013F��)\u0000��Ԥ\u001be���V�Ͽcӭ�A)�\u001b�����N�!��ݵ4Q�A�k:�\u001aȇD��\u001d�{d�r@��B�L�\u00147rN�&�Zu�^=|&����xLn�o0��Ғ۟�`�\u0013�����������,-s\u0004�\u001a\u0007��3�trjPah\\?���;�g�wRC\n7d�\u0014f\u00171ut�`��L�(s��nj[,��\u001d>�\u0006fx'~Ʒ7��O���!6�\u0011�b��\u0005\u00036�o8K{�G��ŕz�����1a���[�u�\u0000]o�\u0001���'�2J\u001d�K>ƙ{)\t\u0000�\f�_��*��e��\"���m�x\u000b�\u0005�i\u001c|\u0018�uc\u0018\\[\u0019#\u001f3?�uA��o:�\u0005\u001e�铷�@X�2�\u0002`����Y�\u0010\u0002��A\u001c�\u001b���L��\u001c\tD\u0002\u000b�ӈ��\b\nc�]η��\u001d���\"Z�D���\t����$�d\u001c5�H�(�\u000e���#\u0006\u0013�xr��&�`�A�\u001dDh�\r����\u000f\f�Ie�#�c��������\u000b\u0002bh\u000e)���ƣ�\u0018<:m�̱\u000e\f��\u0011u�m��뛦�\u0017�\u000f׮Q\u001f�w�\u00017�\u0005H\u0012P�Y��v3\r��9zK��6�:x�\rU����7M�������\rsd�?��5�\t�ؾ��;�\u0010&PX��w\t�DM~M>�\u0007��E�*\u001d���\u0014��D�\n���h\\�&��NȀz�\rfR|��\u001d��\u001e\u001c�2J�y���@vWf���W�gr�\\��ӻ�A9�\u001bЀ�)\u000bF��->���r�hG��;��[\u0013D���AXB�h\\A�aw.�W�\u000bM��[�\u0002P?�,\u00065\u001e�����\u0005��\rN�:{�O�\fԣ\u0013\u0011�$r< \"A��\u0012��X|�\u0002�y\u0002W���\u001b<�\u0019`��\u0003TF��Ykզ~��\u000e&���\u0019t�?M\u001b�d`����E��o�G��\u0013K�����ݺ�\u0003�f�ʕ�d��j좏���\u0001/#��c\u0012:E�9�(�aR&�\t::�\u0014P**SH�� 3\u001f�\u001b��H\u0014'^O,\u0011�i1g(�Săϐ\u0000�jR��n��\u0007�\u0018c^$���>p��Ї�I\u0015�����D1�|�}N�o�Pf�v/��c\u0018\u0001�o�i�\\�|�k\b\u0000���=\\�o_X'���A=�\u001b��1��[���\n\u0017�'�_��V,굷\u001c\u001d\u0002\u0012\u0018�����*\u000fS\u001b�l�=�qgXny��W#\u0019\u001c��gP�M6\u001c�\u0003��\u0016e���\u0018\u00056\u0002_ �z�K\u0001\u0010�N���8��41�.4^�2\u001bS\u001f�OB\u0019�i�7~�\u0018Q�Pe%#��A�����q\u001f\u0014\rJ�'-��a\u0002qM8&;\u0007M\"H;\u0004��\u001e\u001fR���!���|�x�+F�yOe�#[[R\u00005��]�\u0002�\u0013���Tzbh�<�.��O�q�7ʎ�\u001a\u0004\u0001\u0017�Z���o��\u0013��):�z�ȍ_B�&��\u0003�+��\u001b/^{�5뙳u�\u0014��7���,�\u0018n�\u001b(\nAYOZ~a�Ő�\u0001h4B=����\u0000��,����7{���]-�M���0�NS뺣A3�\u001b���1�X\u0016�W��o��lS\tYE\u0004x�pXWo��\u0013\u0003bv(AԮ��\u0003]Rj)�,�\u0003&�i��}�Q\u0000�@���Ɉ��!�3\u000f�\u0003�\u0007����\u0018���~!��v?Ju��Į� ��\u000bl�\u001a\u0010�$ZǢkݒ\u001e\u001a 6�W8��\u001eE��_f��:�=�wH�8us�Z�CI���\u0015\b�;\\w����:�_N�\u000e#|�*�\u001c�.r�x]��֭�R\u001b�\u0013v��`��8��k��\u001a\u001f\u0004�%�\u0004\u0006uk���Fc�w����\u0011%�/��ul�T�\u00034�0��:gH)\u000e�\u0007.G�r_�L����2BQ� �Z�\bf�\fU%�Rb�\u000eO]\u001e\u0019V��Y�x��|]-��\n����2��|�I\f���AQ�\u001c\f��M{1��\u0003rH�\f��o�\u0003��y��\r\u0011��j��To%g��:*z\f\u0000�N��,Ҹ\"���\u001av\u0015�W���07ђ��̟���P\u0000�'S\u001ap4[�\u0003��j̓�A\u000f�\u001c ��]��\u0005�_x.�_�,��\bF/zr�D�4(\\�U�\u0012\u0003��8�h�5�a�´IXCȤZT�\\`�\u00069f\u0012I\u000et���qᦅ�\u0016��\r����~rz�f$\u001b�!�\u001a֚���O�\u0003�\u0006��\u0014������1�\f\\\u0018S�Ƶ�)�J��?b\u0001�8\u0005R\u0018�q�*[\u001e�*c��\n\u0002K�`���ڻ�����D~�\u0002�\u0003O�ȹ�\u001f�~�bۤ���k\u001d�*�租�{�؂?;8���_�6����\u0010��V�q�C(���b�ܳH:�\u0011'՛J��,<>�1\u0007�5@=M\u001cT�Zx��RsJB\u0018�Œ-�\u001b�A\"�\u001c4��X��\fd1��\"o~\u0005wl��\u001cy\t�L\u0016�\u0000�����<`H�_�Ս)�\\��E��[��,\u0019we�~wyL/�\u0007W\u0002��D�G�\u00033�@�d�\u0017[2��\u0015\u0014]�9_�<\f|����\u0005��\u0017\u0002;~\u000f�&\n�\tz�\u0016g�\\΋��+�Jm���_�H\t\b\u0004�d����t�\u0013�%��A\t|����xj@�L����2�C\n\t�P�L��k�����;���<�{��\u0013�u3=������j���\u0001ܰ�\u0019��?��;\u0000ߢo&,]T�ed���83��3ͬ�R-\u0007�\u0006\bhmPa��k�Ǟ�\u0019�-\u00161��\u0003�c\b�v�!*a�\u001d�d���W�q'V%\u0010nR�A\u001a�\u001cH�������\u0010І�9#:�+QRR�\u001cN�E\u0002\u001b�\u0006V��Rt\\�ѯ(\u000f�\n�$��\\t���|�Q�\t�[��������6\u001e�KN\u0010��]����*�sg\\t\f������\rO�F�kz�b��o\r\u0002�d�4��\\�;o\t\u0005�\u001f��5��Ƹ\b^�x\u001ds\u001e�+�\u000e`�\\>񎘛J՟���F\u0011��\u000f�;\u00164�(�q\u0014HХ�\u0011_�[2�4J����)�\u0015�;�b�\u0014��E\u0016#��AI���c<<�1Y�n6{�\u000b�\u0012���\u000f`��UA\u0006\u0001UoEA\u0001Qo#\u001c\u000f\u001f\u0001���L���\u00112��\u0014��\u0003�*���i�m��%K�˜5�z<�Y�A\u0018�\u001c\\��L���\b��ZM�l\u0004���h�N�c\u0017�L\u001e��'�&]�\u001f\u001a\u0012���\u00116$��A��ȣ\u0004�d#�����j��m�\fZ~F]6;�QB4�T\u001ar�j�9l�A#�\u001c���L�n�wj>\u0013�B��e\u001eMsݲ�\u0002�1\r�HY��\u0014\u001d�bA�{<(.�q�\u0011-◴X_h�\u0014�m�;��؁��tZ&`�\t��b?�R��i�#r��\u000e�8\u0004�q?�Ho�&�8����p�W=\u001a7Ϛ�J\u0003�\"\t�6ݢ��\u0011>5�\"�z�41ѝY\\�P8�ѽo�\\�h\u0006I\nX�\u000fm���B\u0019�� �4�X��\u0016h�C��,C*m��p?\u001c\u0003f��2�\u000b�\u0012�z\u0014\u000f��\f� ê�<ؕ����+\u0012�o�6P��`��i�ݫ\u0016Q\u0018�s�\u000b���\u000f��5\u000b�VF���I9�D����5`��)�@�+��?�\t\u0015�)`�\\\u0003v�rb�=֗�µ�A\u001f�\u001c���M �<�i��f�V\u0006|�\f˞���D�2/i#�J��.�\u0010q�P���g#9���h��K��Q����\u0003\b��\u0005�g=\u000e^�P`\u001fMj�c6}`c�\u0013v�@����i�4/ޣX+\f�%FCc~�+�L1��\u0015����P��b���h�x�&�'3,h�)6�'�_׮ɖ�]*�\u000eL�'M9�V\u0013CK\u000e�@�f��Svb\f{�?�]TYq\u0014�7���[�$����\r�ѻ�D��S\u0005�\"��֘\u0018j(�%�8��|uuB�\u001eō��\u0017d!%�f�\u0011�?�o<6�\u000e1`7�� 7�\u001a�ͷ6~_�\u0007��Z������̝bT�诘��~&�\fb�+̠^`v��ͳ�Z���>���b�$C�#Ji�]�T�qĺ6��ڀ��c�wH�hV\u0017�yx&\u001dq�;�c9�c����}`�Q=�\u000f�^�s;ぴ�;���\u001eg�����m�Y�\u001d>�3��VDr/ p�֎��Q2��L\u0013�\u0003. �\u0000\u0000\\Gk�b����7��A2�\u001c�������\u000e\u0005\n\u0018�1`�i�BBD$�d�n�*�z\u0013<&\u0017�!\f\bU�\b�\u001b\f\u000ew\u0007�۹�\u0012h�x��EIN����*�\\�^!���^<�\u0019�G��ʦ\u000eG�V6\u0016��{/�g��Њ���!zY��^\u001a\u000b>⑺���4�m�G��������\\>�S�T��\\��(\u001e\u0000�����J\u000e�Mݪ\u001a)6;r&\u0007�\u000b\u0005���+�\u0015/�ݳ\u001c��b�r9@�g8�O�\u0007}\u0000���U�`\b���&����.L\u00180L\u000e�j�F\u0012:��ܜ^�0;����'��\u0005�>�!�U�����3:]R�\u0010��S��G(/k9\u001d�\\��� ��\u0001',-l\u0001��&�~s�\u0005\u0015 A�����գA,�\u001c���L��\n)���/�}\u001c:��S��.c^\r��$\u0011+�9�a�\u001d��<�u�\u0002Y\r\u001c�6�Gw�N��ښ�?v��V�)�&Xk�7��G����~\u0001\baX�\u0013��d��fV��q�\u0013\r���\u000fA\u0001�\"۰�\u0013F�w�2��SՍHM��+�<4�l\u0014p��\u000fN]'=x.X.��2�hg��\u0014Wj=[���\t0}\u0016�^Qz�[�:�ܳ��\r���7��Ǔ>�&�Ϣ�w&0ej ȮC��L\u0002�V�\f�ҭB\f\u0010\b\u001f6i~{�\u001a<\u0019\u0013\u0000\u001e\t\f]y�`ő\u0012�v\u000b��W�\u001f*l�\u0019������5�=�\u0003\u000f��8��n�(\u001f5Vy�O�ӿϝ��\u0001��nR�\u001ds��ңA-�\u001d\u0010��L�\u0017�A����êq\u0017�\u001e���\"�\u0015i��R�ш������=����p�3����r5\u0003�D9r\u001d��\r�\u0010yӕ��\u0010:��ط����P�@7TB\u001c�7�����`2n!�h�\"��\u0019�W:M�\t������%��\u0017� ��%rlv%_�)q�=�\u000f�\u0005�\r�\u0003*�5:\u0014 oТ�:��v�y\u0006/cߚ�gE��byf�0����t\u0005���Wa���)`�\u00068\u001f\f�q�L×�w���~�\r��\t6\u0019��)\u000f����;�����\u001c�\u000f�î�o#9���+t�\u0006�\u001f�7����]�w���\u0012!f�7\u0010w)�E�#-�ӿI��5ɨ��ɛrV1�x�w|ð�ʣA �\u001d$��Mw��+�3x\"Wk\\���e�����\u001f:�\u0011Rۋ[Q/j�@��.�U�O\t����R\\�`(�\\�͏��\u0000�_e�Q�~\u0010�$R~Zɖ��'���-�4l�\u0004�W���\u0010�\u0011�'�\u001a\u0003nBh�\u0002�Z]$��B��\u0017L�i�ae2��\u0002�4@�GԶ�^�\f\u0012)J0��P��+�\u0001\f\"ئi\u0019��r�+�\u001b�\u0015lK�z�O�a%�L�\u0017\n�R�t�y\u0004����\u0014���Jڢ�.Xr�v\u0018��U�\u0007?�b�����B\"/|\u001b��H�TG�Ad-\u0002�\u000b�S\\c�+\u0005\u001c\u0004X��\u000eHybJ\b6J_��\u0007(�@'Ԡ�$@W\u000b��\u0018M��\u0002\t�A'�\u001d8��2y�f���X\u001aR7�qn�v\u001b���-�c�K�\u001a�k�����B\u001adA�rW�\\�ls\u001b$��Bڿ3���q�i\u0003Ա\nυ�;���޺���%^�hk�D\\�ejpuM���M��\u001e�\u000f\u001d��-$����M���f���1@��#�\u0004�\u0005wC\u00007jn\u0005\r2�aZ�'\u0003V\u0005\u0002�f�\u000e �\u0001\u001c`\u0017\u0019��e]#�4y�\r���C�\u0012*d������Ab��3'���I�)�yJ[t��G\\<�G��b�rɿ�\u001f\u0018 �����1���;�;\u0016�)X:]�i���i�^�\u0014�-qs��5:R\u0001\u0014���7a��(�\u001b�^��\u001d;�\u0007jLynK��Cѳ�|�찲n�A.�\u001dL��L�O䜚��\u000b-��8\t4���8�.�c�zd�5�]Yr��1`�Q�\u0017m��C��\u0016�!�_�c�<�qTa�h�{\\�!eO�\u0012���#\u001f]Ӎ��JE�b�$&\u001e\u0014�G\u001eʱV�]ͤ\u0014�\u0004A\u0011DO��O&�he[���p���o��޳�8s\u0003tZ��k2s\u0017$\u000fZž�\u0010�y=���ƷQ�tV�)HXg�C����(�\u0015���Z�\u000b��\u001d�X�'\u0012t�����\b4hb���~܊�\u00124O\"0,H�P,�EhJ�Kw5�2P�ԡ(���O�-dԮ:�웳��;�c�\n�x���|��ߍy]{�\u0007�\u001b�0����!BQ�⟈l!�U�g��R9���`�A+�\u001d`��L���w;\u001b4\t�m�\u0005x��Rr\\�|�x�?�ɉMٲ�\u0001�-\u001c�N\u0017��S,�\f��*�\u0007=����Cd+�\tn\u00020�<�W\u001a�����my�l{m�\u0014+�AWR�\u0004\u001f\u0016�N��\u0011��\b��7��+�=&��\u0000���k$�$�\nB���`�\u000fg�Ĭ�\u001e\u0012\u0003�彑��H�8\\�-\u001a`�-hEw�c�X 0�����\u0002��8/��\"�2xՊ��\u000b\u0017�(�n\u0006\u001c�L\u000b�\u00054x��w�̧\u0006.�9�.Tv\u001f/:jO�16�C\u000e\u001b�4 Dx�\u001d_�$\u0016\n�\u0019Tt��ɖ���o\u0007���IO`��\t\u0018�[rʱ\u0010�H�(\u001a��Ru\u001e\u0003 ��&\r�\u0002H��a`�v9p\\ѫ\u0011�A3�\u001dt��M\u001e\b�`9O��\u001f��\nC#K�]�ϾC��h�\u0013�Z��*\u001e�N��_/&\u0010B�%��Z[�U\b�;oe�B4h���\\�@'�\u0007�^\u001fo�I0ey{����f\u0003��9�:\u0016r�����\u001b���Y��򔃻����x,\u0017*\u001e�B�\\��{2\"�D\u001b��\u001f����l�\u000e\u0002՞Bi�ã�5\tڈ.l����\u000eiC\f˺1ew{�l���co/�U\"\u0000�\u00024�\u0012��U\u0015\r�\u0011\u0011��71;D7�/�ư\u001f'ܣ�x��[\u0012�\u000b���\u0015C�b\"�\u001b]�1\u0004>�\u000bp!������\u0011����v ���\u00115�+���4a��q���V�}�ܨ\u0004;t]��\u0007�\u0002�z�\u0012m1f�_q\t��TУA2�\u001d���\b�\u001b�\u001c\"�<�\u000er(��P�\u000f�j�x�%��.�Tj�l����@�\u000foAWX8�-\rw�����-8�\u0002a\u0018�\u001f��vx�BJK�\u0012���������^�\u0010\u001aM�\bX��\u001f�r|��t����6\u001f�D\u0015�v��\u0016��\tאq��\u0007�\u000f�H\u0011��\\Є��m��\u0013\u001b��b�?R�3�M\u00147j\u0011�~1z�n�RL~B��͛�����$r�F�lV��9�����G�a�0mS�XQ���#�\u000f*݋U�:�:&kvw�`s\b2\u000b+M�\u001e��N��I\u000b\u001b�\u0003��\u0005\u0017�\u0011\u000b �\u0018��]��2h�\u001bB�d킀�EK�N3��N\u0016e\"؏�,�ɘȌ�+�v���\u000b���\u0018�9QE�£Á\u001d���}[(ص�y(���;20�����)/��o����3\u0007��m�O��D|��\u0011�\u0017�\u0003\u0007:veat�B��V�\u0003����/���7\u0013;�f���\rM����^\n��\u0015~���]m��y�$>'��±:�\u0018.|[\u0003A[�����/Ȑ���\"����c�'?Œ�\t��+\u0017���P\u0001��\u0012(�y\f\u001c\u000f��JL�.�P���6Ky\\8��\u00071�8j�\\�)\u000b%�JH�r�Xc�\rĄ��\u00007#�c�Z�*@��\u0001���\u001e�6�TJA\u0003�,&K�\u000be8.V9+�n��\u0005|5���ӭ!k,��ks\rP\u0000�t��x���\tۺ�P�r���xR~�AX�$;}�0\t��3��ؼVv�(�A�)� \u001d\"w9��g\u0003US���\u000f�\f��\u001ap������5\u0016��Ǽ�\u0005\u0001�n�'c�����~�%+Į�Q\u0011q1�4\u0010\u0015ϊ9\u0000�(\u0012�j�aHE\u0019JH�e?,�d�����\u001a�ܿ�\u0000����ޢKk�\u0018�\u0017\u000e�\u0007D\u0014��e���e�֧�k\u0016��i\u0000H@�\u0010�x��#��\u0003�\u0007� �Au�\u001d���\u0001�/<\n�i\u001b���Tn�c0Q`�\u0016�\u0012Q� I�I--���q\b��Ln�p�c�\b���ӎ�*��\r2�s{d0�ߠi����c�u\\P��x?!\u0003&;\n�\u0002�d?�J�\u0014e8 x�,��f\"��\rL���_�ÊI\u0010��4)K��+\u0002��F\u0013��~��U��C�\u0000oFs�7d\"��u�D�޾��|�[\u001a��PFO2��bLtNF[��b��pD�\u0010؃ ��\u000b�b=�mk\u000f\u0015�P��[�x��o�x�\u0019�F�\u001e�'���\u001d�=��ĺ��C�9צ4C�1�\u0013J�\u001b�bQn���6�`,��ײ�,��-*V�B\u0006�N0o�O�_i\n��\u0019�N[\u001aj� /Tz'\u000b=\u000e\u000f���\u00074�u��e)<�;.*\f3m�^�x6�\n�\u00184Hf��WR�B\b��['ʕ\u0018��\u001dU\u0010� \b�������aK-|�AH�\u001dĀ�1��0�},���ړ\u0017�H�i�B���[��>�e���TH\u0000�\b�|�*��Ε\u000f��N�~��{TD4��\u0007�OGdΤ\u0019\t��H��e��Q��0��xϿ��.��{FXN�\t�\u0015�\u0013t�\u0002�BE[or)�\u001d\u001e� \u0017\u0003�=&�e�pjicM�r�����߬ӏ�\u001aW��3q9\u0003�5ӟ�35wZ�\bm�H�=\u0017^g�31�\u001e��O�\u0000��\u0004������FEkO\tOǏݨ�����\u0001��\u001a�Q\u0012�s�=�R�\u0012���ݱB\t�\u0015'�\u0002*�V?U=�l>&�w|�tpϡ�\u0018\u0013Z�A\u0015�\u001c\u0007��߾�#\u0019\u00192\u001b����tlZ-$գ���\u0014|8��\u0006��\tn\u0013��{�@����H�U'\u001bE\nG؁�!�\u0018��z\u0014S�AG�\u001d؀��4.\u0017@Ӳ��Ə=|��J>�s<�B\u001c\u001c�_��}M��qߔ9\u0013U�0Fb\u000bW�%�(Z�g�+Q\u0012�������鉃�!���a�\u0013�\u0007\u0016��[\u0015�:n��#O�u\u0006�Ҋ}�<�F��]c�\bO\u000b\u0015\u000b��\u001b�p��Qt�{m]�Փ�\t�_�0\u00189�q�#�Zˤ��!ũ\u001b�(�L�\u0004c2{Yn�>�x\u0012qq�?s��Ԡ2_��fM��\u0019�잃�-&kbj�y���\u0017��h̾\u001e�\\��ٲ;\u000eB�\u0003���\u0018\u0013�I���\b��9�\u0001\u0007R�O�����l\u0015@C����S|*l�;qTkO�\u0014\f�Y��z�����l�AXv\"*���AB�\u001d���u\u0017[��^\n�7+\u001e:���\"B_\u0007��Z���ڱ�\u001d'\u000bd\u0002쁖\u000e�\u0018�[\u001b3��P\u0007v��G������\u001a]�\u0007��}���Amp��S�G(\u0011y�9���T�I\u0016)��V�8�ܜnċl����8Ǿ\u001c\u001fb�����q|�\f>�)4p\u001dY��[�*�\u0018�T���TS\u001a6p���~CJwu��-��TS1��_��M{{-�)�J9��\u0006B�~��&\u0018u�Uat\t��d�ӕF\u0002�]�Za\u0017�[0�za֛\u0010[&�q��6B\u0019���%��L��\u0017\u001c\u0003ߛYГ!�\u0010)�\u0014RA�P�\u000eC\u0014��R��y�H\u001f�\n9�^��\u0007�����'\u0003��9��.�\u0016L\fs\u0015-U�\u001b&z��\ne˛����3)�\u000fB\u000e\u0017�18��\t���Ѽ\riʐMA�E/0�8V5\u0000G��?����l�\u001a�U��*P\u0019^\\M����g~��`b\u0017\u0005,�\u0010j���#��\u0011\u0001#�ԝX\u0000!Z\u001a�/z\u000en�h\u0017O��kRu��)\f�3���k�v>x��\tRt\u0003jӬ�q���t�7:I=\u001fQ\u000e\u0018���\f\u0016�z�\rTG\u001e�\u0012�۳�'��6�R(@����c�EX�pMk[`G8h묺�\u001d���\u0003��#SK���uh\u0001�dMvF�E\u001b\u0018�%�ֺ��\n\u0016�T!�\u0002�x\u0002 ]���\u0019���\r�\u000e����γ�\u0014�\u0005�\b�}S�P\b�C���F,fC+qW��A1�\u001e\u0014��X�֋��0��v1bз�uv�K�a�uG�ٚ##�\u0003'p�R��-Tf��'\u001c��\nH��%�\u0004B��Q�@\"�;o\u00182��iM\u0016�1�rA�r=1�[L�\u0011%\u0015�$�~p�>{�S㣊�\u0002*�x��\u001e��!s\u001c[i{�\fQ�ğ5(���A�r�ھ:�\f$\\c�i�����1\u0014�W�1�/\u001bƕ}�6���c�\u001el۞W�B��*��\u0003�}���\u000e-N7q��տ�\\�B���\u001d����y4?\u00048�6��5e�\u001b\u0015R��\u0006\f��BY7��i�\u0019�+��\"�zS�g�ݔ��n��?S�\u0013l��m�\u0010x]�\u0013J\u0015�\u0004\u0016q�\n\u0002\f�\u001d�?��\u001e\u0002d�IP\u0014Q�\u0017\u0014�,\u000eX�A.�\u001e(��]����u\u0013����\f�l�\"�١\u0018)�I��۰��u�U���O\u001cڧ\u0000�eXdL�ҭ�\u0019�\u001d%�~x{��j��d'ث�����r�_\"S?��l\")�\b\u0016�{�h�\u000e\u001a����\u0015���FDJ0���ݐ�\n]�m w�@f��Cr��l�)�φ�`\u000f9#ˤ��\u0003�>mV�K{bw�=�\u001b���N\t�!D��’�B�E|@5����Ό*�\\�c�\u0003�z��\n�\f�\u001f5&\u0016�!¼�~8�\u000e�Z���=��}1��Y�SI�Ahw��-�\u0005\"hl��W(���O�b�� �\u0007#\u0010t�a\u0016��,����'���|��\u00036�,1`��t\u001c���M�\u0010�U27���A �\u001e<��L��j?e�s!�kM~K���\t�\\en�Y�X\u001d��I\u0006��Z�.<5�\u001f��_p-�F\u0016�>U��p������|U���9��s!\u0010)\u0003�I�:�_�B\u000f�tfH�0} ie� \u0017��\u001f�»�԰c�-��Nn�\fA�A�9�]�� V�6[\u001a$�8\r^�?i�Tz��!$O\u0015��\u0003�$;�K�HZ�}:*���=\"\u001a���\u0001dD8n\u001dZ&��MD\u0003`t��`\tY��\r��\u0006�\u0016n\u0004p5\u0006�\u0005\u001a���Q���_�Aw�nR��\u0001]�i\n�?�x��K��ݕ��\t`sR$\u0011o�{�\u001fð7��Xɮ�dn\u0011ƫ��\u0002��/]�(�d2�q�?�A$�\u001eP��L�&�\u001d_�l)�\u0013E�\u0003��E\u0002��߀�h�.�\u001d^�Hp��.r�E]��k'\u0013d�\u0005/\n�+��Ah고6�>��\u001ac}�n@g��y�b)9:\u0011���]r'I����ކ!Q:����x�qJ�)�\u0005ZX��o�Pq�� �y�z󋡿L\u0019�Z�l\u001c�.N1��bQ�?WF��$.覣n-�Q6ˀ%A:XުgS�'�O�<\n�9�W��z�\u0006\u0011�L�\u000bt���������\niS�+���ʣ\u0002�--�UQ\u0011�\tI~�d�c\u0014S��hx�P8k��!ԡ�C\u001b-.��0`\\�\u001c�����K���\u0000I��m�5�Fj��d��A\u001c�\u001ed��M\u001f�{u#@����/�돪��\u0000X\t)\u0000#�r\u0018��\u0013R\u000f 5K0��Fv\\�t�n\f������e\f\u0001\u0002�!d����m��\u0013aKqв�\u0004gc�����\f8�Vh͵��\b:D�\r\u0013Cس\b\u0003��5�R+\u0007���?���\u000bt�24�Tq�f\u0019�s��f�\u001f�B������3P0�\u0000���qE,:�\u0017���Ӆ���v~�\r��,&\u0016D�\\�>��\f\u001d�V\u0002��yZ������\u001b�'tpԤi�b��\u0004�V8` �NQ۷K]_����\u0014\u001am���+B\bpG\"�\u0003�+��C��oE��Q�j�\u001dv�B��G�]�\u0007嶣A\u001c�\u001ex��L�_\n\u000b\u0005G�\u001b؈\u0012Y\u0006�\u001cj瞥�y����#�Nw���c]y\r��Ub�G�\n)\u0003�\u0011��\u0014P��\tu��:��\u0000P�\u0014�W�_��Ů��_\u0003\u0001\u001d9ttgz�c�^ .�HC}��#=�� �U3\u0007=�W�GZ����O�>�{M���� _L�x�|�xn��=�V\u0006�(Ҵj�f\t�H�QK�6b�\u0014�͑��&\u0015\u0003\u0013G���(:0�4�m2l�\fUU`��\f�0f:���L3�P\u0006�����\tǀ{�(�b2�g���D�wD�,�񆅣��Y�i�\f���=#i���\u00037�\"�\rvڠE�|g����D�\u0015W��RX\b����+�\u001b�\u0019�^$���\u001b؊��\u001f��a5\u0019����#�����ȭ@\n���-�A\"�\u001e���L�ݥ��Q�H+�3A.\u001fF�Qk�v8�f�\u00105֐Hyɱ:�!\u0014�\u0010�4��\u0000=��_\bX9��5p�������K�4,Έj;���z!��0��%üs�B�v�ȿJ�\u0013吁\b}\u0004�:q,��M[����L\u0007KU\u0016)�\u001f-�n��QY:\u00075�F�p��]�֕��2\u0010u'N�@\u001b\u0014dr��h3��mvK��[��^u�����r�\u0006>ǡM�I��d\u000e�\b�'����O*�~��1)�\u000e�\u0019F�\u0004��i!\u0018\"'dU�\u0014l��{�\u0002��ķ�!)X��&,}+��<�SVs���{|��2+\u0000̚�h� �\u0013I�#b\\��}2����_�-�A#�\u001e���L��2H�\u0001�9\b��ڗ�Z���W/�,u]Ii�n���g�vp��c�V\u0006�V�.�W֮��k\u0000d�`;3&\u0012bg\u001dtޙ��$��m\u000f���l����w�<�b\u0007&�E\u0015Zl�\u000e4\r�\u0011�h�����b��^� }�\u0010��\u0004Y��>\u0005�KB�灷4k�\u0011�\\kq����6���)Y�DZ�A�,Jǯ#6���\f�e�J\u001f*y����#,��.оz�0�&\u000e\u00106\u0001��8�ɂ�ʺ��[��[��.��\u001c�ߋ�b���\u0015Z�Ϥ=2\u001bo���ds\u001fώ(\u000f�Kj��׺\u001aMZ�CM\u000fhB�HR\u000b��+��\u000e^\u0001�\u0002�>�\u0005)\twsN�#�A,�\u001eȀ�L��eFl3橌D�\u000fq��b��W=7�F�L�\u0003C�))���@X#Q\ty�nQZʹ\u0014�n�W*���Õ��� \u0006���>�w\u0002ͤ��\u0003�dI�d�����:W����rI;�C��<�)\n�\u0015��ՖM�$�ޚ��ԵU�u3M\u000fT���4(\u0005\u001eI��Sp��Q��Gp����G��\u0006�\u0001����\u001dH}��y~��H>.�������7®}&S�2\u0013R�e�����1f�����\u0004\u0001$���[����\u001d2�\u001ev�\u0005�҉���'R\u000eۦ=�\r���I�>.�_$/,�\u0011�60u8\u0015�\u00013DB�\u0002k\u001en�4\u0007���dU�R�\u000e3�\u000b��ȩ�\u0011\n|u�A/�\u001e܀�1��.K�a5\u001b�*���B�\\�s0���W�\u0004��\u0000��~�[L�\u000f+m\u0000�0s\f�'>��`���c�Юq�6)��\"tX�\u001e�\u0017��?�\u00194:�ܭ`?��P+OO��\u0019=\u0015���[I�5>����dd���\u001a>vW��\u0019҆^{Ux!]��\u0016%�y��g\u0006`(vT�\\s�[5�\u0000'W|s��|%6�T\u0010�*$�.��p�4��Y>�{�\u0012h�E�7�nI\u0015)�B\u0004�Jy\u0000 �����Q�[v=�\u0013������ms\u000b�\u0010k�@�LoK���Q(�C�\u0004cqm[d?&ˁ�m�mC�vt�ѓ�\u0014��J\r�/c\u0011�b\u0002\u0016iU!_��I�B7����m��\u0007kfO��n�A,�\u001e���L���Q���a.-��f��&\u0004����\f�8|����_#�Fؽ4���\\\u0000���,�֛\u0006р��O+���Y1,G\u0007\"+��\u0016cp����\u0019�����\r,�5+7����6fI>�T�\u0006�d�\\;J��>RwH��+P�խ�t�g��M���#��H�ޚ���~6��u;� �ck�����Хfu{�I�Z)�e\u000eޤ�A�#�YMs���_;ح��pb�AQ��\u0017�w�U���$g�zEǿ�LB��>�!m\b�\u0013\u000b��K��@\u000f�s�*\n%AS1\u0007)���3\u0012,�s�&�\u0016ۏ��N�+\u0000̈́\"��������\u000e}�\u0019�˱�A0�\u001f\u0018��N��w�����\u0015z��@\u0006�p���&�5�R|Ds\u0013�\u0013�:[\u0007�Ec�}E�'��6\u0011\u0011��v�����������o\u0003jn�f��a4��\u0014���)&N����R��n�q��~lY�עU_�T�c��l\u0003�\\�H\u0012��U�����J\u0000�9�\u001a��i|�5\u00039v�0�����%f��’�\u0010n�8�:\u0000s��`�-o���o,�\u000e\u001b4\u0019=�?-fZ.\"\u001e�\b�Pp�a����\b��7\u0002�\u0016&��x\u0011RZϖ�~Ut�V�\"I�l���\u0001t�H\u0004��\u000b�ˠI�aB�k \u0014�R����~_.<}4� E|����&�;�H~�+3��[8\u0019\u001e�\u0001�Y29�>&�eM\u001c\u0000��}fǣA)�\u001f,��Mu\u0017D\u0018��'7![�ȃp�_7��z��\f�z��:�8+\u000e\u0001���V��h\u0007�(�o�~�\u001d����H�%��H\u001aU��C\r�ʧ5��\u000b}��\u000e����\u0000�y�\u000e���\u0000\r�\u0004\u0010I\u0005�o�s\u000b\n�RH��K�=�u��%��+h��#>���lw�Ws\u0002��o��]��@h}P�XNܑm\"/]�\u0014\u0002���h��\"\b�uy��ö��\u0004�N�9��\u000bG����Ҽ��f��L�8��G�-e(O\u0006���q�\u0019O�)V��\u0018�3u�e\u0014A���D�\u001e7\u0005�L�+\u0006���h\u00069'\u000b�\u0005��ub�1!���j�+,�J�^�\u0011PW -0O�\t�Ǩ�1���[%�A+�\u001f@��L�<���q�%�v�g�=�6�\u001cb���>j�^��\u0013kw�{�X'�A��{ݸ\u0018\u0001&P�9LnmD��Uj�:��EJ�4-��z�X@�mT�\u000e�4͉�&T\u0005\u0003P��y�p,@����I�v�\u00187\u001e_t\u0003W@�\u001c�\u0010?vhD�\u0012�^��\u001al��\u0007�\u001e:\u0018f�\nOQW3!#?O\u000f���f~w\u0015(�Lꉒ�Zչ�\u0003;p�Kq�>w��m���'�Zt��G�O:\u0003�ՠ]�\\\u001b]�~Wr\u001b�\u0007��e+\"����-)*��j�\u0014\u000b�v_wj\u00111�z���-��\u0012H1�� �+W`s\u00009\u001e�|\u000b���rp=�W'�\u0014܏:�>�_��P\u0014᫶���N�%�A'�\u001fT��6Z��\u000f&6\u001bN��>AE\u0015��\u0003��Y���]7���l>~i�P��uo\u0007��\f�M\t�\"�\u0014Ɂ\u0010�ǻ�0V\u0002Q�;����NJ�&�~���\u001a�#uض��ʡO��\r}�{t���[�G�\u0011Z5�ғ�\u001f���.��\u0015'��eÅ��\n<�h>\u0004�V\u000e��@\u001f�\f�3��,mY~3`��\u0005'׃���m����\u0000��;P\u000b&9��h\t\u0005d���c�רS(,�C{��DJ:�l���D���Z����G��`%������`0\u0001�I�p{�����Gs����\u0010;�n�s� \u001flB�s6�`i\u0002_Zk��-�\u0010%E�p�\u0010\u0010&��]��O�A.�\u001fh��X�P�ђ\u0005���i�Wi\u001c�\u0018��/[�ͨ\u0017�\u0006���f�!�\u0001��ո��I:\u001f��_-\u0012\fI�-�����\u0017-C��/���?�;\u0007'v\u000b�D\u0001\tnW\u001f\u0019��\r�8����Fs�r��t\b�W`�V��\u0014��\u000be\u001cwt(�Pi��^Ԭ�\u001b�$i���\u0000�%k{p�\u001cL��M3��\u0006�\u001b�b��%P�󙴑5��5\u0016�A��Pr�\u0017�Y:;��L��yf��7�`r$A޴NC%�\u0005�|��\u0010b�:�`��\u0017�s�b�O�)�\u001a\u0000Q�k��Ԏœ,\u0016\n;\u001a����Pj0[�A\u0004e9�c\u0005��\u0007q�\u0016\u000e�c���x�]���e�V]��)�\u0002v\u0017�!���6AңA-�\u001f|��L�}\u00016Y\u0015E;ߖ�d�-���e\\S�B]u�ӟ\u0014:\u0007ߌW��=�\u0010T�n���\u0005\u001c~\u0014vJ\u0016\f]�\u0001d4��D,[���й����NC������ �1U�>�\u0000\n���1/~\u0006\u00189�E\u0005&��ڙ ���R������\u0012�t��\f�A��%��* ܡ\u0012lR\u0005\"�y�\u0005$\r^�����۳�\u0019V���#K�e\u0014oH�/>΋3\u0003*\u0000�������\u0011F���\u00130D\"H�\u001a�\t�u\rha�v�\u0012a��E��%^v���8*��j�\u000b���s�\u001a\u000f�H\u0018���@��\u0018\u0005����\u0015_�b��!����\u0015e;�/��P70U.�1��$7�� \u001bVAi\u0000�w)�ST�An�\u001f���L�[�\u0002�l%�H�����3�;\u0002|p�\"�\u0002�_�=pD�Z�Yi\u0010��g�n�\u001e��;l>���\n/�?�\u0007�\u001e6NNm:�g��\u0004%T��[�n���Y�╫�V�ェ܆�2'��(.�y\u0014:��\rc�\u0004BI\u0004n:�\\��_a��YW�l���7&[�n��U�CN�b�>Ӿ�����V\u0016C����Z\rR�\f\u0006:\t���t�h[�\u001d�G4��#s�g��\r�X9\u001a\u0016��D�tW׌G\u001e\u0001L���q�}�\u00199?D�ɨ�T�%֫ٲ\b2.�������\u001fr~�\u0019�\u0017$\u000e\f1@v`,��!\n�Õ��\u0010w.L�\u0010�T\"�,S��L�\u0012��\\n��\u000b\u001am\u001cr�IӨ,R���xK�$Z�\u001ce^D�.��A�)�Ա�a���\u0001,]),Z�M�I6��7��\n�DSpt��z���X���Al�\u001f���L���Y�Ӱ����o�|�\u0018R�nqț8\u001e��i8(r�s�\t���\r>��B\u0001nHO��\u001c��/��8FU����\u0017\u001b�dQ�K�Vc�H}\b�7��3X\u001ab�\u0006'��h��Tj�NS!m��B���b\u0005.�\u0006/\u0016��Bԣ�H\u0003\u0014R�^�6}�I_���\u00043d\u0005^�ZS�e�\u000fi?gGi�\u001e��xI���U?қF=�,ޢ\u0006�i;�t�j�M_�z��\u000b�.\u001d��7\u00046].���[�tf�4�\u0017�1^\tH��֘/��\u0012�\u001b4�h<��\u001f�GLb\u0001YG\u0013���a<��M�g\u0000�#�g����T�d���\u0014@jѹ:�疥�%�N\u0017�k��'D�|V�\\�)dz\u001a�C����;�\u0003Y���\u0005�+1�D ���q��\u0010\u0003�Oe��\u001e����n\u000f�]:\u0011f�ۙ��\f&�\u00113�Y6�A8�\u001f���L���B�Zj\u0019�s��e�T\u000b:J\u000b�W�nH�F��\u001a;�k\u001fC�b\t\u0019�p\u0007��ӎ\u000b�\b\u0000Hs\u0006�\u0012��gv\u0015\u001bѰoR\u0002�c�#S\r�3�|.�pi\r�\u001f�\u0000�\u000f�\u0017�ʴ1�����&�\u0016g���5�\u0016��j��\u0014\\�ʌ��\u0004�<�#�@w\u0019�(�0����!\\�*K�1D�\u000fGW\u001a�L\\��>��D#4!�����i{���#Չ�Q�g���렩iY�g���K?�w\nO\u0001�u��\f���kM�8����\u0019�9\u001d��:�f\u001bj�2�L���]\u0019�Cd\u0012]2INd+\u0000η��$LdT��^\u0000\u0019��+�%�;��3�Vn�\u0006�n���\tc[��\u0007t[������Z\u001c6\u0017��5�C\"��A2�\u001f̀�ۺ�6]�ɺ�3�]��\u0005���)W�\\N� $�\u0010V`z�\u0006�}�*��B{�O�ԣ��Z�\u0012��w^\u0016�X�b',l\u0003k�A��\u0003�k橭��땷�fKֶ@��M����٥\u000eC\u0010����2�\u0011E�D�Fi���Ó[h\"��$.\u00072�0?��24��̗Q���\u001c\u0011z�i\u0018�o�\u0005N6���$��F�#\u0004�\u001d�\"\u0017\u0013�Ň��\u001a�H\n+šD+>�;�N\u0014V�\u0016'gx\u0010���\r��\u0005���H��4�� u���h�,��4�Js\f&\u0012��� �m�G��\f8����\u001e|\u0017�ɞ\u0001��\u000f�'���a��<\u000f�XQ�\u00018BK����\u0015;���\u0018Ks�fnv�/��I\u001d1i��A;�\u001f���۸��E#C�C2n�MXݥ#�\u001fԾl��Ԫ�t�\"F\u0002\u0016\b���9���WR�.c\u001aU\u0012c�o�\u0003Z,�\t\u0012bF\u0015f�� \u0003{\u001d:\u0007�b��M�\u0013��m�o�Tp\u0014R�p��\u0005���&�I�\u001c{™�9���7�Ԕ��\u001f5��~��8y \u0012��\b�Z�\u001b�~��'2d��\\�\u0004��[�d�S�=H�N%u�#+�v��\u0007��Xc\n�EG\u0006����A��y�ݺ\u000f;�\u0016n�f�W�p�\u000b�С�e���\u0006ѿ\tx�E�~�+�p�!� \\B��\f���U<\u0001�lm\\zAԆ8;��ߣ�h�p�\u0011%|]1��I\"T\u0014��)�A�\u0001��B \u0007`����\u0010\u0005�y�L-��%��+C,ʒx N�״���B\u000e�\u001f����u��ؒ\u0001��\f#\u0004E�5wU(B=]�.£\u000eH�Ke\u0014�D\u0007{.p��(\n��ʍ���&���!}���4�\u0018�\u001c\u0019��i!�uj!to�w���;X�{\u000b��\u001a� /�m*\u001dq4\u0012\b$�$���(:����?l��{���!�5�\u000e\u0011�js\u000f��T�|P�xէ�Nl�Gu�(=Q{�F�?�P��|�',2-�2`��i�=�ly�\"��K�`Cϫ�\u0018h��+w�MĆ\u0002IV\u0016�\u0002P�\u001a�g_\u001eR��\f\u0006�\u0015��\b�Dm*�L�7�))3�\u0013.��t&\u001f��3��VC08@�\f�H\u0006��\b:\u0013\u0012X���\u001a�%)4��\u000f�-7'��s��>�� )�ȢE\b�+ㄇ6]�\u0001\u0016t���\u0018�j\\\u0007Z\u0006��>]��{f�r�\u0005�oc\u0018\u001d,��uw��=���;Ϣ����C\u0003�\u0001񘦾�;-`b����SB&��3y�P��&\u0015��hRؠ=���ۢ�a^=wY������Am��\r�(���]�\t����T���Q�&T� \r��\nTLȟXm\u00189)\u0011�A�� \b���W\b\u001d�\b-!���c������y~�ra\\Xt��ǀO�_���\u0001|\u001a7\u0013t���4p�\u0005H\u0018����������\u0016�����OU\u0011���\u0003ص�w���b�H�\u000er��\u0013���吲w�O4jge(��j��h�'��\u0015��0\u001e�2yư}��x��\u0013��w���v�܋&�\\��x%�﷑�\n\u00063�d#\u0011\u0017\u0017�!���\r&mjrV\t�u`�G��ߢ1��cR�)t\u001a�\u0018(��\bR\u0015D8\u001f����A\"���˵��{��[��Ҍ�\u0000$���z\u001d�{�3B�j\u000f1>�\u0016\\y$}�/�\u0007�N�\u0007\u0012VZ\f�a��\u001aȅ�Z��\r0X�b���Τ���.�$R\\�zEQ�vΪ\u0013\u0000�Ԭ�)�.5��\"j��LD�ǛJ\u001f8_\u0018���u�ʡA��-f�\u00100>WS[\u0004�}�����!ሃg%����8pC���+}��Bc����\r�����\u001fȣA � \u001c��X�xr�.FGÈ\u001d��5�00�\f�6�)hZ��\u0003T\u000f����X�\u0003\u0004�5E\bvneN\r���\n�G��\u0010�\u0017��\u000e>+�lY{�]��\u000f\u0017�Ł\u0001�\u0006I��8�+\u0004��pi�\u001f�y>ǹbsE�%��ߛ���j��f}��6:��.]Д�S��|kz�{i�M e�V\u001b�.K�ȫ�\u001cر��F\u0018�����\u001dE���G��oل���#��D��ϡ}�w��k�R��w����\f\u0019/j$�\u000f\u0004�\u0010#�voc�ɭkp\u001dRNu�0hE1�&Co�?��\u0015�x\u0018\u001b+��D�w�\u0003Qݳ�D7du�p�\fh�\u0011��V�+������dc$$�\u0013�A � 0��X�bOh\u0002n�q��L)�JP��z`�݀ߨ�-��{�d\u0006�\u001d\u0005�\u001d��ߒ8\u000e���>aL'[�\\��\t����\f>�ז���$���|��D�8\u0010�Lk�~�e�3jlIa\u000fro���]͂�O��1X�K�2��']��a�Մ�«����{��\u0004#��a�78y\u0015\\0|\u0006\u0017=\u000f�\u0010c5B���.������\u001d\u0011�\u0000a�\u00031]�g��ރ�\u0004n�G\u000e~����\u001c�I�뒑J�R�,��l*q�_���\u001fQ�/��O���˜�\u0007T\u0001,w���)=\u0014G��6\u0001�C��'>���\u001dT���\u000fb3��\\K�m@\u0002뛕96\u0005R57).6ɣA\u000e� D��X���֭�����\u0018=��l�T��Ԇ\u0017 �x=\"#�QL�Q�\u0013���|�q,����\u0013�\u0014\u0015�>����d���\u001a�l�¡Eت\u0015'i\u0019y��$Q\u0001� k��b�n��\u0007rGw�q\u0000#0�Y�?�y@i[J�qlė��?zo\u0007�e�ǣ9!��#\u0016�\u001e\u0014�\u001c�\u001bSJћ\u00061e�}?�,�鳯\"A�\u001eF�9\u0010�\u0016E�@�L6\u00170IH|�q\u0007�\u000b��\u0014Q��R(^.o�\n�CֆN=Ь$J�,I�D��>L'\u0005:s�\u0010,AAG\r���J�\u0016�\"�7�0�ϐf$�\u0005�׈�\u0019\u0019\u001c�P�j�N\u0001�byd��R�A\u000f� X��L�!~J����\u000eg�.?���\u0013��쁊5\u0002\u0000�$T�������\u00049k��:�i>m\u0014�#�������\u0017=��\u0013�'b��9�\u0015^\u0017TWA�S\u0018[�2=b8e҃1���\u000bYN�~{�\u0003{\u0007�cJ\u000b��_\u001c�sy�~��\u0004r�_��\u0004�\u001a�a�R\u001d��P�`(\u0019\u001d\u0014�J;`\u000b\u0014T%�F�*�-�\u001d�(j��4�%����T��U��q��\u001e\u00049.s����\feX{�6\u001e�wؒ9�Ѿ��]��6X#Zv\u001b��\"B����v�M�\\0�x`l��O\u0001\u001ae*\u0000�=��5sŶ�H�ym\n�4rJ�؇�`\u000f\u0016�[�A\u001c� l��L��ָ�\b�g�D^19K]ʻʆ��a���,�\u0003r���j\nT�Y'�����N�e\"��\f�tx�\u0000'�\"C�\u000eF����9���S\b�\u0017��+D\u0003��\u001e�F\f>�I�(�!'�.p�,\u0017ie��\u00137�x����Z��}q��=��((F\\Li�RcO��\u001c;\u0011[�):�^�F\u0016,p��N��\u000e�\u000b}x�j,�L|���zh\u0002�y{\n{i\u0014�QB��-w\u001e�s�\u0016��]�\u0010�C.\bY\u0007\u0007�Q�\u000e]��<\u0012zo}](��v\u0007!�\u0004l^�yj�0F�\u0010r�O7$v�z��+�j`�\u00000��r!l'�=&��\u0011l�\u0001�۝��;T�2��A(� ���Lܓ�w�I��c\u0017}�\u0010�\t��t\u001aH#\\�4�s�7;��I��Ő?�>��H�=��Õ�����\u0004�\u0016:\u000b��oj`�o�u\u0017\u0018�:���KrzeLĹ�\u0001V\u0004��%���=�uMZ�:�is;\u001e��n\u0006\u000e\u000e�>\u001b`'��ﶰ�V]՜݇h���dk�W�yޖ\u0002}�{��2%G�$�)&vX�\u0002�OVt� �e�u��bb��\u001d���\u0000�<�� �\u000fk�1H����\u0013e\u0007�\u000f_.tr�����u�\u0002�)a�\u0001�N�mĢ���YH�~���c���a�>\u0003���[`²ʩ�P��Љ�\u001ap,\u0007\n�b\u0015e�4Z�O���7(��\u0012+,JF�\u0000��m\bm�A+� ���M{K!��QO��g�3:2˾\u0016a'C\u0007��\u000f�\u0018iɗ\\\r���F|w�l�\r[������%��8\u001ad���\u001e4^��FP�0b_\u0019����d\u0007��Ř\u0015\u0012Q�[g�4����q'T�z�,\u0014���\u0007G�Uk@]5\\�]����e)d�\t\u000f\u0005\b{�Q�~�.�X��\u0018T��X��=mv�p�\u001f/�W�\u001e����ʣ�*����0l���:p�i�\u0012^��\u0005\u0001T�\u0000*�xE\u0014��?�ʥa\\l�얜+ғ�X����e\u001f\u000f�^��7���W1IynA<�\b��\u001e����2@�����y��N�c���v}�A`��\u0014�L�\t����r\u0000\u0011�d��-�A+� ���M)\u0019��\u001bBN�F\u0004񭆮ë����\u0000�t�\t\u0013\u0005\u0013g�\u0013\nQ2~m\u000bCִVG���}����*K�N���P8kvj�\u00195V��F!�d�������]�ϻ�d������\u0019\u0001�\b��B�6��MT\u000e��ه�\u0010��^E*���k\u0013�E��^>޽@$ ��/�q�\r�����q��A�Pr\\O����\u0016tU��B7���^\u0002��w�<\u001d=��Nz_���2��\b2�4kѦ?�. <��\"{H�w�0#X9�7�\n�\nw_t\n\r�|^�q\f�܉&��\u0015[A��\u001d%B��q.6N\rbJ�Z��'\u0016t��\u0013[�\t�aϟ[��.��<��KqHĈ\t�tp�Gj\u0017-R�A*� ����j$C�\u0017|\u0012\u001b'��Z�y�\u001c\u001f���z3�\u001a���Ya\u0012�8\b�y�@��Y�\u0019j-�\"\u0003�bB�����uF�\u0005��\u000b�+\u0014$A������6N�hp�~�\u0015qԯ�\\�)G�\u00106Xx��yZ\u001d�#\u000f�1�ضYr(T��q4�(\u0010�\f�YftP'��9��M\\�\n�/��L��\\�\n�7��\\�z4]��t\"���32`�S���xW�W�kM}�*���&�\u001a\u0000�iQ�r���0�/k�X3U,�\u001e��}�]�4W&�����sAl�/��L\u0007��ٶ\u0016&!�\u0016�\u001a%\u0013K�ˉfP��FIz���\u000e�g\u001c`>�Z\u0013l{oH�\u0014�\u0013�m҇h�\u001c��r5��v8�A<� Ѐ��f�,��P\u000b��\u0003e�,W<�P�_�l��d$vb��T\u0011���P�5U\r\b�\u0010���jw[\u000f�^�k\u0006�\u0011�\u0017g)\u0014�1f���\u000f�\u0005�m�ٛa�+���\b����֭���s\u001fI��}\u0001�\u001b]sDL,�u23�~���\u001c����pRyG(�\u001e��m�&�\u0017GɃ��b�a�Tw��Y�_�h�>%\u0001���2��&\u001f.7J\u000e���;�̈\u001c�sJ�~��qE��Šrd�V��\u0015\u0016�\u0010{K�\u0013����{l�����\u001e�vM�\u000e�)i�2��?(`\u001e�z����\u001b����\u0010\u0014�n\u000fn�Y�:EV�ܘ�8�XN��\f�\u0012\"�_�^063\"��fQX�-ݒ���P���c�\u000b�<��X�A7� ��L�\u001b�DY]�\u0003�\u0002�x\u0014@I����ߓ�0CŰ���XA�ʤ����\u0016��\u0013v�Y�\t��O$Ee\u0015!�]-5\u0000I��&D���w�.��#�s�P��5�(K�?e||�k4AYL�\u0005�1����o���h�lH\u0007�ʼn�[�7�m��i�q\u0013���\u0017��|1}'^�mŻlpaF9��Z��\\\u000bP��\u0010\u0014�%���\\^|�����\u0007\u0018�>�(W\u0013٩\u001e(�#\u001bS��եoU�<�d\f�H\u0012{���9�嗸�Qc��Uw$o���(�XQ�6cHA��r��p\r��\u001c\u0000\u0004X�ʀ���\u0001]�(��1[�v�h\u0011�\u001c����蕼G\u0002Wm�3��Q��C�\u0000�\\�=�*\u001aW��S�S�B\u0002� ���}a�)T\u00105K/�vpL�\u0011�o��1O�!\u0014�Q�f�O(�!�6\r��{�sE�1�E�@�\u001b��V璜�/�Nj^\u0019�\u0010c�=�\u0019(�g˽/l07�N\u001e\u0007�ś�\u0013n�p\u0004ku�?�Ő��Duu(�4\u0001�e7\n���{b\t�:�&�\u0000,��Ң/7L_��u\u0003���7P\u0004h\u000e��б\u0000�9���1�^?�\u0016t9\u0003��(\u001a�ޘ��úpm*�]%�\rW�\\�oZ$���I\u0013FP�\u0014\u0016:\r8L\u001e_~��j�6��҇AD�;t ��=�Ӱ���)��7���Z\r�ȯ<\u0011d[Ef�^�x��I�5h4�.S�}�,\tU�Y\u000f��\u0018�ك��\u000b\"�d�6.�\t�L;�;�(\\���\r7\u001c\u0010�|\u00131D\u0011��rg����Km���\u0006x\u000f\u0007,3�*�e��������K����y��#�\u000e���\u0018�̧��\\�A�t�����ڤ�\u0018߬Z)\b8z@q�\u0019}p�j6��)z��iCt|\u001b��H�o�=�T�-ߨ��]{МT'[\\e\u0001����g�]\u0002\u001a6��/OH�\u001c%t�5{�w����\u001b�g����ŷ\u0002�c\u001f�4qe!�N�f��\b?�)ݖL!mM��!˅)YңAʁ!\f��|���\u001e\u0004��J,}�m���\u001b�\u0001\u0006\u0017����,��\u0019�6Te��T�h���Dd�`\u0011���l�����S�k�:-{�\u0012,�\u001f��))���}��/��儵ƥ���̧�𨀌�ٳ ��v� ��\u0019�E���HS�n|�\u0004b�,��ý�����S!�\r�o�/&�\u0016$\u0000\u0018q\u00007T8��#\"0�5\u0010�\u0018\\\u0011�\n\u001f�\n\u001cH�~��M�r8�&Taq�h�Tˋ�\u001d���\n�3\u0012�\u0004�\u0005k�\u000b/�iO5]��\u0005�[m�j���Ht`�j��8�mR��\u0017f\u0005�%�\u0017�;��$�R=h4��\u0003���Ziiz�'R])���k0��ڴ��o\u0018���\t\u001a���`��u.���/�� �W~��\u0018�����\b`\u0007\r�m\u0016��\u001d�hY��l\u0000U��焻i�sz�{z�=+��x)�\u0016~n*y�4.Me�˻�\u0014:\u001aׁ\u0017�w�.ϩ8{%噫��\u0004�K\u0004zgȀP0TEc�]c\u0006&��o<�\b�+�{��D����Ap�**�l�{�3��\u0015�ɗ[w\u000e/}a5\u000e�^\u0004ɣA\u001f�! ��..��\u0013��k6|�qat�\u0015��ն���zFr\u0016q���T����MX�q�\f\u0017+eQ�6�puQ\u0001�k�\t��;)2T�>�1���\u0004=޼�T�\u0000z%4�lp��0\u00006K�A1B������\u001a�HU�\u0018����\r�p@�\b\u001fI+��5k1\tM���F^34jIB�9|�K1p����jL��T4k%���ٖ�l�|\u0005�.�^�s[L�\u0001ђQ�H\u0014NHdK\u001f��_Nl��qT���Z\u0004��<��\u0004�K��\u001d1��j<��\\�������E�1=��\u0006��㓤Ge�䊜pP-��B\t�\u0001ګ�e�\u0007�t\u001e8S��@�\u001dgXk\u001b%�A\u001f�!4��L����ұi�l���\tT�\u001b��E\u0010�\u001f��/Ѿ�۬���\u0007�R#!�\u0001\u001bB\"B7\u0018�P\u0004Ӫeͭw�\u0001����l]�֚�\n�\u0017�\u0006\u0015q��$d�OMA�jM��x\u001a\b[�\u0006�\f\u001a`(.vE1�R��3��G�I.��4�@�(�;SFx�t����qB\t�z]�9�خI@�\\��|�1]�8h�ۊ-\u0011��G\u001d�P�c�+̤!\bo\u001dE�fqռ�ݣX\u0001\u0010�8�\u001f^�Dt��h=٠z|\u000b��A\u0019(,V�Q�W�����\rZ\r�?���@u\u001cb/�,\u000f!uyu#��\u0005\u0016��5�.\u001b��O�\u001d\u0017����`��e\b\u0016��@s�pv�7�\rUs�z>�j�\u0011\u0011�_�0\tEV�N��+h�\u000f��A%�!p��M\u0011Y{���\u001c�4|�%���Y��\u0002m_���Z��&I\u0007쮇���T!\u0012w$�7\u0017m��\nL�����Qa�k\u0014��H1����=�Z/�9��'Hq\u0017���i���?z\u0019�9��U��\u001a<卋-�`\u0017\u0005��Ɵ�U���4r�^��(��?S� WI��c����B�mq!��h\u000e4S���*�{�~,=\f�Jk\u0001�{\u0014��R�\u0011�����v5q(��*}Ī����11��^�\u0002/�B1���DP��G|���Q ^���Kn���o��z�]��=S�d�\u000b\u0019OT�#u�\u0002�p�\u001f��-\u001c\u0005�Z.Gf��\u0002vH������Z��]q��A&�!���L�\u0010��T5n�w�\u0017\u001c�\u0004�����0�\u001b�7���x+sd�M�5҅��\u0018�,w�� 2�j\u001fq��H\\�y��V\u0004�\u0003��̒W��]�z*\r�\u0010z\u0006?\u0018�`\u001d\n������� ��v'�G\u001b,+k\u001d�J:l�\u0007�/\u0019�r�%Ĥ\u0004^�� \u000b�\u000bf7\u001dD�����w��~/�\u0018�i�^�X�����Z\u0005�\u0001Dj�7\u000f���(wcJ�w\r� ��O��\u0016�`��ܣ��ln�\u001f�[���#/$$W�Obd\u000bN�PT�\u001b�(�\u0006\u0013\b8�t�C��*a�{&o<�N�!ʤ��,��b�hS�g���R�7�n�]l�\r�x�W\u001c=���5�G�-\u0018��A$�!���L�9~���*��\u00160� \u0014\n_�\u0017�\u001d�\u000f���Q�<�\u000f�l�^k{��(\bE\u0011v����9��u�\u0018�=�\b���c���CˢOw�4��\n�Rv��~J��\u00182@p\"�5¨�\u0007��W���+�8{�RG�\\/|옸`�\u0001�fSY�S�\u000b\b*�H�{�<6��!�����\u0012�+��ž\u0004h��<\u0014�����H���\r�O&��|C�,�;�-.\u0003���1\"\u0001}6�\\]�B�\u0018\"�ik�ٖ��:L��ܮ�2\u0013\u000eԎ��HS��~�\nP���\u0014�pQ!��xw�ǛE���dٰ(���(n����\r����\u0017L���J��į�C��\u0002?z\u001b�A#�!���L����\u0017A�ts{�%d�c���z3>�y����@T\u001c����\u0015��l�Uq�\u0001\r\u0007$�i���~��8u�I}f<�\r�HTj�w\\���\r��iH��\u0015T\u001d��c�\u0004�\u0005q,ͳ�ttФu���{=b�\u0015���\u001f30G�\u0006��h\n\u0011w�n��l\f�R~��\u00043� N\u001aU@��\u0013Ӏ3'���no���v�ɰ�k�D1/'�A\u0014J��\u000e�\u0019(S�UZ��\f�ۨ�0�g!j}\"�Q�G��\u001c�|�n��\u0002��e_\r��׺����\u0005���\u0000\b>��I�EKRY֣��\u0002�noN�����ͪw$\u0000LON�6M�\u001dA�E%�&t3K\u001a�A/�!���L�l�X�\u001aInHW`�g�4M�O�ż����\u0016�\u0016ry�$�\u000e(\tr�b�j\b_�\u0002m8C><2����\"\u0019�#=jH̷\u0006m�\t\u0001��Kl���N��̷�BQS>4�_}\u0005�T�/\u0010�@�\u0019��o\u0002\u0005\u0002t.�v�#\u0015�0L�� �vn��\u0007\u0018\u0010�\u001d\u0000�A'�!���c�ͽOZ��|O��0��\u0002��y�μ��1\u001d�F\t�h���\u0019�\u00041Ez\u001c�d��K\u000ba��㕷\u001aڿ\u0017[W%ӬI\u0013�K�|��\u0016�\u001e���`˪��;�cgdl�`�4:\u0005�\u0002�n͗�N���t\u0001\u0019\u0019\u0003\u0017\u000b\f�^��X\\xn��\u0015mf$�=%�Z�\u0001;o\u001c��@���\u001d��\u001a�s\u000b�U\n�����t�7�E�)\r_�j�\bX%�y�C��\u0015\u001d4\"�\u0017ށ\rH\u001a|\f��N�\u001ct��Yk[M+\u001c\u0003�Q��P�\u0001����aafΞﶞ\u000f�B:O�w����(�\\\u0010���\n�fX�I�ņ�_�N�cimU$:\u000b��\u0015�T+�\u0005\u0017�\u0003x�ַ��a�\t\u0015�A\u001d�!���MU\u0014�i�4�T���e��=L���0��37�h�A���Ba\\��:Z�qP�z���%�\u001a�ͬg�\u0019����=sѴ\n����\u0014��`\u0019\u0003�k��X���kA����\u0002*.����\t�=����)ȟV�;K�w����\t�h\u000fDҫ|��;Z<,��B(�\u0013���6��aD)!-z��p)v۩���W�զP�HB �|�K\u0019G.\u0019w�\u0005&!�ްʊ\u0007�n�\u0017\b�\u0005�[\u0012�\u0010��\u0014<����2�&^����i\u001cL\u001e��C��f%���f���/j4^��A\u0012�\"\u0010��]��\u0014�\t,�\u0000�\u0014i�t�j�%`\u0017X\u0010�`���\t\u0002~��3g��j<��:��\u000f��X���ɤT/��B��\"�~\t׀\u001cf�ÿ֡��\u0004|\\g��ל=��\n\u0012\u0005�+㉫��\u0015�ɹ9s��l\u0019\u0000��86�\u0017S-@\u000eH&�Ÿ\u0012�\u0006���\u0014�6>��6\u0018��/c�6���l�\\p\u0005���gj���\"�\u0007�&~\u001e1�{\u0017|M�|�3���W\u0015�\u0012��\u0015����y����^�����٦�{Y�7�)l��r����\u0012\u000e���c\r�R���5�Z!�\u0006\u0001��W�\f�<\tw1\u001bJ�\u0013�\u0011�=\u001c�xg�\u0000�A$�\"$��X��\u001dP:�`�G?�U~�ZD\u0019\u00077�RH�Q'���͹���\"����\u000b�?I�\u0002x����{���+��ߚ���]�\u001b^�M#�y�4�.vb�,���cɶf|\u0004�*�g\b뼲l��\r�e��\u0012}��R�\u0017I�(�A�m�����G|t�}�\u000bZ���a\u0018�iH�*�E�:Uf!�#8A���Ȩ��L\u001a_�7�6`�S��r��U��<ˬ:��T��%q��b��`���9T�b�\u0003rt���\u0019Z��M��7Ʉ,MV;�@\u0014\u0007s]n�\u0002���fZ.\u001d\u0013��MZW\u001b��z^�<�q#\u0018���\n��\u0013��e��\u0019\u0012�]�\u000eb�B��\u0010$[�A'�\"8��XО�\u0003[d^>4�L��v��@��8��R\u000b,l\u001a�����B��߳v�.a\u001fJNY��sC�:ՆVM�1�\u0002�\u001e�]$��\u0011l)~���M��I��[a1g���\u0004�t�&#t����b�ā6��\u0006e��ۖ�?s\u001a��c�G�\u0003�TT�q\u001a����\\�6\u0019P4�\"����\u001f�/M6αK��h��\u000b\b�����O�|\u0007�RW2_�%�\b�\\:�x�h�\fl(�\u0004��j\u00169�\t�\u001e�\t�#d\u000fnT\u000f�\u001foo�*\u0012\u0013J-�\u0004r�\u0003\u0012Nu\u0005Ʀj�W\u000fn�/eJN��R\u0016Y�?�)�O�Ҳ@��.�(\"C����\\%O��!��p�\nJ��1\u0017D�A#�\"L��L�\u0000c_Լf�T�\f'@��5\u0018\"�oϋhaXE\n��\u0016\u0003}��\n�t�\u0013�K���g~�j\u0007����J\u00007�\tA�\u00165=S�\u0017\n�{N�A\u0002�� #���\rӒ�Yy�Yw�\u001d�I���\r�\u000b��sH.<�f,�\r��z\b\u0010���\u0017�H8�=Z�D��\u0007�0\tㅚ\ta�\u0010�\u0015�J�6���\u000fuM\u0004+Z$nOO˔���\u0000#�Lu0�h�d\u0003�\b�q\r����U��l:����9��C號�F=\u0006ONöd<�\u0010 ��(d�9|)��|�m�3�%��\u0000H�\u0004�:�ǫ��9�orK-�A��gL����ҍ\nq\u0007�\u0013m���a�2�k�C�-�A)�\"`��M0�l�>t��\u0013\u0017�{��/�\u0011u>�*�����\u001e\u0018r첱�A�O!p��q�\u000fU�Y�{\u000fI%yN�,��A�\r�o4I��\u000f�m�O�\r��?��v�1����\u0002tx�s\u0006�\u000e�¾��h���dYe�S�{\f�\u0016�\f�\t#G\u0019\u0004\"�@>d+9�R՝�wͳ�f\u0005\"�(V�H�pI\u0019��G�a\\��4\u0007�\u0003�)�&�O6u�d�,!R���\"c͏���\f\u0013�a��0}�˅��6Ӊ�#~�\u0000k�p��uWB��̧$L$P�Q�[#��nf�-�\u0016�9�f�\u001b9��0(\r�MwA��F�]\u0000\u0018Ѿ~mF2�ۼm\bP��zW\u001f�Z�0\u0002��l8\f���A3�\"t��M\u001emч\u0011o��<�İ��\u0006]\ntF����y7��\u000b�� ��-9\r��i|\u0006�\u001d����~%��\u0007/��A��ʾ\u0019�\u0010\u0005h�͒�&$�� !�A\f\u0019\u0003)���l���2�f�tH�J\u001b}\u000e z�뗷8I\u001a�l\u0019s޳m�Hdf�O�]L�����~��3M����Z�\u00025\u001a�ξ���x�Qo3�f0�\u0007F#�g{����P<�9�y��ܠEҺ\u0014\u000e\u0019ȅH�\u0004�\rh\u0005X�\\\u001e�r<�+�$B�VK/ �\u0006�\b�\u0003�_�\u000b�-'`6�0�69F\u0018�\u001b\u0011�\u0019��׼���8p��ޚ� \u001f�\u0018e\u0001!��f\u0013� ���N��\u0012���\u0016ߒhvҳV��d���\u0007��A!�\"���L� �6\u001d\b\u0016���\u001a?��\\����\u000b���G0\\a9q��ui����Y�i\u001f��X\u0016C\u0001\u0006���N�\u0007k�on\"�~\fK�\u0019j�*���x\u0003�\u0015�\\)�oa\u0005�^4n����Dk����wTQJ\n��d�\u001eT\u000e���*�PY��\u001b�\u0015\u0019\u0016\u000b\u001f��/\u0017�n\u0000޳XVr\u0016e\u0002Su�|,���Kk�\u0011��\u0011�n��)��e״����\u0019U\tF�/�\u0007l���J�\"�\u0011�i=\u001b�yt\u001ca��λ��R�ɼ�F\u0011Ll\u0017\u000b#��\u0002D~Z�f*���f�V4�\u0011YR�QӇ<�=\u0017�\u00064˓(�)��v}wL�m[�\f�\u000e\u0013/\fs\u0014O����\n%��P{\u0010\u000b�A>�\"����Ō�\u0005O�Q,�\u0007\u001fb�\u001a���v|���\u0006�]J\u001f�Z��(=�]n�\u000e{S[K�uV�=n\u000f�>�\u001d9�if{���$\u0019AM��r�r�밝L�$ROԱY�k��_�`���1�:�1t[\u0019�١�\u0013h�{\u000e�aT��.�|\u0016���H,2ěC6T �=\u0006W;G&D�-�\u0014Ah���v�>ߤ�#��A��'_�ƚ6���B�q\u0001\"K��\u0007204틴�v�1O|\u000eǯ\u000bL��D��#0���a�v��lR�,�HE]���e��'���\u0018~ѭ��+��Z�p��C��u����+҂8P��r\u0002l[1��\u0005/=��oUS\\��亇\t��ݚY\u0017å�\u0002\u0000����r\r�\b���.\u001bU�Ad�\"������.\\ů\u0007|7�l���(�4'\\k�7��(\u0010p�K}�\\^��Nҷ�\u0018�_Ba��}=�B4su&�b>\u0000�$\u0006��\u0010B7!:�Q���w����\u0002�a� q1�d�\u0019.\u0010�\u0001pƖ\u000b�����T\u0019������b\u0003�Y�D�7�O���\u0001n��}.�?\b&b5'�:5Q�z\u000b)\"?��\u0000Q�0h]��v!nfw�h:�t�\u0015\u0010j\u0010r���q�����ѥ�dqP���ظ���\u0011�œ�\u0014�f^*h�\u001b��\u0000q��]������foEJ���W��\u00114��t��\u0007�PjCi����\u0016�t�\r\u0006.J�j}��\u000f? nҶ\u0016I����\b\u0001CB?JAO~B����\u001b)̂2���\u0006�p}�����MYi�W9\u001d�\u0006g)\n���6\u0007U�\u0003��\u0019T��z�&'iƬ\u0006�Q}B�W�AI�\"Ā���uTeP<\b\u0000t\u000b8�Os��;��C\u0004\u0005�\n!�[Q���iq\u0013��>`��s�\u001f\u001f\u0006B�Β\t\u0017��'O!J�:K�\u0004�~\u0018S��s\u001c��Ux�\\\u001e$�\u001e�\u0013?{�!�\f@���]��{�3ļ5��V�?���\u0017\u001cw�I�\u0013���\u001cf]�<�Rc\u0004��_����y�ǼG>�f\u000b%nx\u001f<\u0016��4X\u0013�\u001e�M�\"�V8<\u0013��͝K�6��\u001fY\rq�����\u000f�T�6\u0015g��au�+�o�\u001b�\u0018����kX�q���`���r�ŵxf�\u0000P5o�s�f���fjy�W0��(��xf.�Ac\"~^�%ɟ$�l��\u0000��u�J�J\u001d\u0011��nv���\u0006�YO��k�����Č)\u0000ll�Bl\u0003��%��U.c{d\u0018��[�A@�\"؀�.�i�7,�\u000f�R��w\\.�\u000f�̳�T�0����6�A-�f�\\XB��G�3��A��\f\u0014��d�J|����\f��\u0005�ΐu\u0016wT~�NC���o��3\\��34�H�:MG�UJw��e{Ν�;��)�nR�h�c\u001bl���Z��\u0010���8�ಠ��zQa�nz��5N.\u001d(,\nGw�\u0018C �ь�dd7vދ*q��&,��@�7C6�Z\b\u0015��\u0006p�zX<�\u001a�6rf\u000b�!;.�2�٨�\"���\u001f%p�m����P��\u0014J���{\u0005R\u00051\f�m2N�U\u0006��]�\u0005g�'x骂��l-\u0010\u001c\u0013��B?5�*p\u0012W�rG�h��H+wӡ�xq��\\��:\f;.�-K,\u0007\u0010�<�0�m9��A;�\"��.����L\u000e%�+gZ���s�\u0017ة��l���ݍeTgW���aqqy�$Q�VgS\u0003��+Ń�}x�lv��јH�AB֏Q��d\u001a��f mUN��Hz�;�<=(�\u0001=�./.H�*.v\u0012�)2��)D�ђ�2f/^m�Ħӱ��x\u0006�&��R�\u0018���������Nɯ��2�Oi�a��h�>�C?����\u0012\u0016���:�T27�\u001f�ݽo\u001d\u0010�Y�!\u0010+�n�,��K�84kA�.n�D=�/\u0003�V�6�\u0007\u001fT��\u0006\u000b��q�\u001d����\u0012���mmU�6\t\u0014=���:\"EɈ\tS\u001a�i`�U��%Z-Qb�+���-†}\u001cQ�\u0004��A�ùyO��K/��\u001bfծ�\u0013��~����B9�#\u0000��|�b:�EǾ(Fz�ȡ��\\�\u0014��C�(8�Qp��)�Z\u001f��9�Y��\"LyPd��P�����/p��\u0003F�`����O=\u000f�\u0012���\u001b@�\u0013Z\u0012\u0016��5+���OALI��ŋ�~$�c=\u0015�\u0017…�t�b�#�o�O��:�\u0011��KI���ʌ\u0019}\"� ~���ڮ����+�\u001f��\u000b�v�f\u0019z����1�ޭ�w����T�S��\u000bW'\u0004��=\u0000uY\u0000�`3�p��÷������+���Tg�n\u000b\\���\u0019\u0015ȋ�4|<�kf\u0012�\u000f�`��\u0018O�o��(\"�%����\u000e�����\u000e�T���W�\u0006\u00125P������\u0002���\u0004|\u0013\u0013���{�H�t�\\�8�@��.p�ގI\u001b�\u0000\u0018��w��;\n�\u001e�_�e�j=x�JuI\u0019.!:����×v\u001c���'<��Y�hx�D�A�~�'��J��M\u000e��iiu\f�]up���d�W\u001a]\u0006\u0016�C\u001fа��]\r6N�\f/�\u001b\nNW\u0012�DG|�v��W1D�}�X:\u001b�ۨc]����ϼ\u001d\\l�\u0013\u000b�\u0012�W�H�~�\r��\u0018\u001fr�\u0010�\u001f�Q�n=SB� �W��D��hN�.\u0017�8�8R�g]�����\u0007\u0016��h��\u0012D�4'��a\u0010����#?CɄg�Dx�\u001b[��}#W\u0011E{��!٣Oiv\u0005\u0001\u0010X��-_�*�A0�#\u0014��Չ\u0017�b�׆\u0012@\u0007+�v��0��S�\u0018\t/��;�%.n�Ir�\u001e\n\u001fQ\u0001�\u0004�1�ނa�o>��v���b�\u0005[����\u0019��.��tb\u0016>�\u001a\"\"\u001f)�\"�z>��\r�l5�@Z�2۱��{t۾�W=�\u0017�k.�������}^%�\b\u0000�qD���\u0017��\u001f{��\rD`M],7�q\u0011,��\u0004��\u0019a�Ұ#1�y��{�jy�\u0006!�\u0001�:�pf'�\u001cr\b9�LQ�o�\n��\u0016�\u0013���0���Ž���J�h7\u000b�\u0018�\u000f\u0014#��Q�=���!p;��\u0012U,�\u0002��\u0014���^�t�:���\u0013�76�\f\u0000Hg��f\u0015���_���RjWE�7�A\u001f�#(��K/ӢYN�9#�,�?3z�\u0014��C�hG\u0018���'\nC{o�\u0004~�|n\n\n\u0016\u000b�\u00023y�F\u0016\u001d�0��@��C4.R��:,\u0010ۑX�U�#��tr�j�]��P΂\\$V����\u0004����o��V`ݔD��\u0001*\u00075\u0007�cڥ;�\u001e�\n�[Q����³\u0014��\u0017\u0017�GS��ˠ\u0016d�\r�\u0000�����z��]+\u0018��Έ\"\u0000��6��{�jz����\u0001#Dۛ�ڼ�|�N\u0002�8v���5er���r�g�¦�@��w�����\u0011\u001f�����8��\u0010�[�~�8�\u001d-L���sQ�\tf�Zcuy *\u0010��\u000e��\u0017\u001a\u0005Ȁm\\ ��ɫ5���A$�#<��2mEv�\u000b\\r���텶X�\u0019Im\u0015�G�\t�SI�9dk\t�b蹛�1>z�$}1�n\u0014\u0005\u0013���U�뚯\u001b\u001f]w��O�9Kf����f\u001e-l�Y_��e\u001d�׻�\u0016�<���?Dw\u0014�\u0014�\b�%�y��\\���\u000b\r�k\u0012g�\u001f��Y\u0014ڷ0p/���T%ހ[�营R�L�o��?��\u0010�\u0018I�0�`b\u0001�&�A��yĿ�9\u0000��\r�x\u0014���ҲS�*�\u0005pp^�^\u001e��\u0007�c<���\u001a��\u0013F�pR<��d\b���3})�B3���8d���\u001f�DcO����\u0014��㓵��#�q�\f��j�\b��6��'�d��)\"$g{\u0010\u0011��:�Y\u000f��A$�#P��1��S*�e��>���gS����W\u0003\u0002lV�e�[���` \u000b�)���P�\u0010�\u0017\u001e�)�\u001f�'��\"H�YU\u0019\u0011��\f����4��\u000f0ʥ\u001d$�\u0002��ix�\u0001ԝ�~�\u0006\t�aa�ț��H��\u0001�Ț�q\u001c���\u000f���Ȣ���9a����/�\u001a�g�\u0006�\u0007���5�x�G\u0016�Q[\u0003JW2,�81��l��w/Gl�x�!I\f���N\u0004%PQf���\r�\u0006l�\u0003���t`dM��Rr��PҐ)�\u0015l�sܾ��Q�i\u0013X�{\u0017���ip�gW�9��\u001e�����.z6\u001f/ӡ\u001c��QU�\u000b��{\u0017\u0013BE\u0015�|�dVR�I�\u000e���A$�#d��I�z{0�^���\u001bMԑ�7\u000b!\u0013�\u0012\bH����\u0002�EXv�o���N~,�\u0011���n+�(|�(:/��G�����^-��Xي�=��ǽ&�|�N��\u000bȲ��͡��X�n�[�xM��\u0019'���HT+se\u000f��.Eʙ�x��Ϸ�\r��\u00010�̉�#�2�6\u0010�d��EA�\u0016\u0018��\u0017�\u0004\u001b)�_����C\u001f�ѥ=SIm\u0013y1�8:��ft\u0007�a),q\u0010\u001f�\u0007�5��Z��\u0016]O�\u0012`�\u0005�\u001a��/�JJ�L�b@1q\u0015\u0005\u0014���N���-�Gz�G\u0011�^\u001b�۽�H�u�r������\u0016�p=�B��a�-M+�sp\u0005��'<�51�A1�#x��\t���2,e@\t��7����FP4�\u0004\u0001���,y���l��F�?\fy+#Dϊ\u0006*\u000b\u0010\u001ef��\u0018���ǜ�9��z\f����\u0006�8>�\u000fUM��(\u001a�D&����\u00001��\f�?��Y�~��H�M��\u0001���Ԝ\u001b\u0011�Σ�=&O\r\u0001�s��Ϛ��\u0012��/�\u0011�E���\u000b��B��\u001e!�>nU�M��d�#/�����Rv�3��8�!\f�2;\"\u0001Z\u0016\u0015 �\u001b�\n\u0000��ML�t\u001f�\u001c��c΋�;_0�Ga7�+����\u0018*m���yQ\u000bcZd�\u0002\"��e+v���Sό�.�\u0001\u0011\u000b3�\u0003,�����#�\u0018�\t����[;\u0001AwsA����͇ܵ��m\u0013ÛǣA+�#���K#�1������@�u;8;[p\u0012����?ʄ��\u00168�\u0010#�\n�\u001c\u001b�Փq%����X&B\u0019[:<:\u0003��\n7�V���� ?��\u0013��������>�a`�\u001b\u0006L��#Ў��\r)�@�b�Nj��-�\"d�eBvC�Q��q��:�>&z�\t�.\u0001=�\u001a�h\u0014�\u00062C.nuN�p.B��j\u0011��+`6�;\u001e\u000b6<�\u0002TQn��Wu\u0011��w>��@�,�R�i\u0015)��I�=���\u0018�1w}o;J\u0006���_xu{#ԻߩeL)\u0004\u0005j\u0018\u0004LV;\u001a+��;d)��k��!�\u0014�y�x��K`���ݷ����^��?\u0004�Ѕf����PT�\u0019�pi�\u001a���baX��A+�#����2��\u0015p�K��z�HLE�\u0019��fc�u�ů�3$�E�@�z����\u001eۍ=\u0001��63�{c\\f��ۮ\u0005+�y'~k��i!�F��/�=��X�Gm���+5]�P�\u001a�rŔ�\u0014ץ\u0003�9M\f�ņYJS5\r\u0019�\u0007�N�x��^\u0019N/\u001e\u0005;���wC_��ȅ���_���\u0001$j�6C��(¶�x��`K\u000e�\u0010v\u001fL�\u001a��KU��r<��q��X\u001e��Q\u0016A��7Ւ\u0010�\u0004^\u0018�mN���c��X�B `:\u000e�B}�\b�e�j3}�$�\u0012��&+.�\t����Mn�Z��`�@P\u0012ΐ\b:aD�*-߽\u0004�<\u001cS�)��\u0001$�N+S�``��Ci�A0�#�����?��\u001d��|\u0015\u000bF��(.:D弻�̮��+GT\"���T�s��\t.��{���~=\u0001\u0002��c\u0013j?���=/k�\t��Q�\u0014�h��!��]̪\u0013�\"Ije��W?ů�d:`/DCI�;)�!�\u0016̑����9�*\u00041��ż�F�)n���A� �g���\u001c\u0010\nG7]�\u0017ꪻ�,l~�]v��Q�=G�0A��R|����'�\u0001\b堽�M�\u0004;��C�]�C�sA�\"�\u0001˼\u001e\u0016AF>��$�z�XM\u0000�:QvT\rle�$\"\u001d8�\u001c)�+�\u0003����,@��5`�_\u0018�5��i�8�?\u0019(�p�w�jh��Zu�q���������������~��U5\u0003c�A/�#Ȁ�2k�Tn��>?��Àz��!�g\b���~D�*O�\r��VCNz�vv\u000b��y\u001f�\u0017t���X��-\na�\n\b��Ep��#gv��Z��\"\b�ţ�\u0006\u001fx͘.[�/\t�������M\u0017X�\r4;q{���\u001a��a���J�Ç�4��;��rh�i��s�\u001cN�\u0000\u000b�o�+\u0019\u0004�E\f�[aNcq�H���_a2�#E�s�!%��\\F\u0013:�\u0007|*?f�>�M9^��[\u0014�a=�\\-� V�\u0002w\n��bJ\u0000�{�@>��\u0012�\n\u0010\u0007\u001c�!����8@�`U�vK%��\u0002u��\u0000g��Ѱ��C\u000b=���8�S[;h�Ʈ��*�d\u0005�;v\u0017*F�\u001fWTI�H���O\u0013�B��ţA2�#܀�1Ӓ��B�5��)\u0001�O���nF��\u0011�&\u0000l\u0002P1�㴼��\u0005\u0013���\u000f��E���\u000eS\b��]�G��rc�xI�3�0�[���m���*Nٮ`�0��t�\u001f����k�0\u0014��\u000e��#7��\u0015~@\u000b�\u000b/͓��4\u001a|���\n�V60�� ��w1���a6��\u0006L��P��\n�݉���\n��D�Lpxb\u0004h��H�R9\\1�0�\u0001\b�2�v�W\u0010�&� �(\u000b�\u0007� ��͏�!:\u001f�,Iq,�zL���\r��O��Q\u0000�\u0000����B��Om���3\u001b�[\u0004\u0006\u0003�\u00035��\u0012ɑ8�Z��%�O�\u0002�ܺ�ٻ��\u001a\n\r�\u0003ɭ��\n\u0005���>�ʸfϥ�A<�#���L�\u0007霑�W�c&�@%�ψ�\u0003��K2\u0014-\u0011��5Ą\f\u0014M}3�b75\"o�\u0002ܾ\u000e��:�\u000b�\u0011�Oj~؜\u00007��\u0011i����\u0002~�\u0015���de\u001b%�)\u0006�S\u0011\u0016W��\u0018�m\u001a\u000bb��:��w�7.B��V\u000en�,\u000bf���I�\u0016\u0018��2��,�\u001c�*��򉲁�x��~�����:)O�K�#6�H�\u001aA=ɜ|�EH_�y���Jٺ\fq1�n�X[ס�\u001e�wEn]�\u0019���(\u0006ͻ�H_\f:�-�v�\u0016�(���{2�6�%v�\u000f�8�ǚ �d�w��K\u001f�҆����I\u0006?vi\u0013;Q9�@)�,�����|a/��\u0013�\u0005a�f�\u0016��\b�\u0018Z�Ֆ\u0002\u001c�ĭ�};�9\u0015\u0012m�&q2\u001c\u0019�)����-k\u001ak\u001d��`Zu\u0010�\u001f)ޏ\n�\u0018Yw��(���5s��&��T�\u00043'�0䞨\u0015\u0015��|�y��'��\u000fK�����H:�TE���襜�z��5ԏ�`�\u0010\u0014j�����\rW4�}�\u000eN��-5��\u001c\u001c�2e=*\u0003΀í׈Rh>ͼ��J��\u0003�A>��\u001b�A%�$\u0018��X�\u0015�@\u0005�\u0002+8F@:�5�H�\u0002�o�5�����?����-\u001b�\u0016���7r\u000eg\u000f�����L\u0002F\t\u001c��8���㞄PI7&\u0007ͱ�8���<�US&`�����b�2\u000f�\u001d&\u0004\u0002G�\u0002�ҝV���#@���\f��ЁZ�X6m\u001f�\n�����4�1�\u00011Gv��B&^�O�M��\u000f+��\u000e\u0005e�x�-����%O�4��G\u0012Y�s3�}�\fC�\n����9���8�A���d����k���#���ϯ��V/Lg�\u000f���ѕm\u0014=G�n�k�h^�)�\u0000&�H�~Y�ӳ�\u000e�ӟU+H�+��\u0004\u001fo%\u0000\u0014\u0000;:j5k���I��o�\u0012\u00150\u0019�J�A\u0017�$,����Xj�ɶl�I}�\u0013�\"��a��N\u0017�\u0006ƽ�����$(�\t5p\u0010'�@�Vjg\u001a�aE�ɼ,H��+E�%�jGݞ\"��*�AcN�Ğ�\n\u0003A�E~f\u0014�\u0019\u001c\u001a\u0017���\u000f\\��Z\f4�}KE�_`\r2�\n5��=9ա/!�sa��\tT�r�6_U}�veQ�O\u0015e�|\\cT5�z�y\u001c5��Ӱ�\u0004\u0007\u0001��%�4@Yl\"A�Db÷\u0006���\u0004�g�fV�·���\b^\r�?�GI��Z�řu�4�<�08F�21b\t�L}�n�\u0017�\u001d���+ݪ����sm�.TY����9ظ�ݼr]�htd\u0017y\t5�A\"�$@������\u0006(\\��\u0010v���0H�����%\u0018`\u001fcq��[�]\f��Δ�huc]��4!�\u0002�emI-1\u001a4w�Ҹ�E�� \"\u001c\u0005��\u0017�ķs6�F��\u0003]l��\u000f�9��\u001d�u}\bp��Q�\u0010F.R���\u0014�3�\"���\u00150�/o�S��*�k]�[w\f�\u0004ע�kшJ�8�n:\u0012�����\u0017߶Vu�{����-^�S��Qܓ�>�u!������e�\u0005�\u000f\u0005'�\b�ڟ���;&\u0001��\u0004h^^�\u000b(a�~���o���\u0018�'kJz�W`�\u0000ע�Tl� \u001e��B�0cE�o�_�\b*5�-*��z��42��\u0011�g�\t\u0006��� !�͋@v��8�A#�$T��L�r5\u0002ų5�=\b=\u001d\u0011Čx|As�4����a�\u00054\"\u000f\u0002S�;�\u001a4@?'qʦo4!��*\u001dF\u0006/\u0013�ك��p]���Hh;�-�q��*L>\u001a�ڲ�\u0012v�:۲\u0001mB�1m��bCn�߹��0\u001a��\b\u000b\n��6\u0007p\u0017\u0006s��M{��E���\u0011{�[�,\rH�-y���W���\u001b�ִxY\u000b`���J,e\u0004\u0003�\u0012H\f=@4��Q��k'[�Wӻf4��mV\u0003�\u0016�\u0013��2T6G�\bG}\n\n�\u001e_a���\u0011*X���)`�7R\u0000������\u0001�H\u0001�$��{}\u0016�A�вd\u0016�Q\u0018�r�ȃ4�Ĵ�(��T��\u0012���ͥ�@U9�\u0004�׬�s��n�.�Ӈ\u0002���\u0003D�]��\u0005\u000ej7�m.�ڻ\u0016��\u0004�\u0001\u0016\u0002:��d\u001cX���4A\r�C�\u0016��XK\t�\u0006�S���#H?�$z)i���\u001e��W\bR]�~ܸQ\u0007V�e�=���d\u0011�\u001b���-��k��S\u001c��@�-$S�߯��>Ii]+�\u0014�by��tW\\`��n��ov�A+�$���M{�\u001cڰa���%�(\u001c��K\u0017��ȏ����._:g��R��[�;�RL��~nd�y\u001d�x�\u001f^����Z��{5�\u0011o5���I�L�.��e�D���K�N��>X*1j���YҶ�R��}\rr��8�J$���\u0001�u6\u001bڛ\u0007a�@�x���Cl7I\u0000ۮ�9\u0001��\u001c�q�5�\u001c\u0019u3⶟�\u001c\u0013=��7:�ϩ[��wO\t\u0006�\u0014��F���9\u001b8�H����5xѦ\u0000\u0001`��A�\u000b���c�T��\u0006��\u0014(���U��H\u0001�\u0006&O��\u0005\u0001�\u0007\u0013��ϧ~��U|+�'�\u0006�hS����DŽ\u000b2\u001d(�Y\nUo�v�du\u0019�&V���Z�A0�$���M\u001f�2�\f��f����/����ć����\u001f��J}\b���BaK_`�6�(�7\b��\\�ۄ��������CfN����[R�\u0019Mۮ\u000b��'����/h��ȈЍ�!Z\u0005�u4����-�f.<�\u0002qŹ\r�\u0015A�\u0015��9�:5���'g��.\t�ˍ\u001b��v.P��2vk�aC�ř�'{\\��fh�V؎檾dj\u0003��KD^:X\\:y����#�ʷ\u0002\u0017�#�;���G.>�\u001c��y�\u0018Um\u0015��LC����}�������Õ�����1�SB=����,[�PKsn��)������X�R\u0014�`�-H6�P�\u00176��\\&w��\u001a���9gK\u001d��\r�{\u0004o�S�8&k��d��\na$�^O*rx�9�\"��Rb%-\u0014߸�,��!���r\u0017ծ�<=[P�\u000bK�{B7����A��A$�$��1����i]u�=��o4d����\u0001�;�����&\u0011�'\u0003u�`�y�\u0019G��\u001b^p9}��\f�f^a��S��хGi�A?\fsf�\u000b腥nYv��\u000e���\u0016s�LZ7G�:�\u0011�\u000b�<:�������U֪\tG\u001csM��\u0007R�7�@����=\u0018�b��5�?\u0013=�ְc5�\u0013�K(�\u001aP��\u00135Ҵ�;p�\u000eY��\u0000\u001c&��'�t:'˖�v�۟�*+�z�-�J��y\u0016`c�\u0013�W\u0015·�i���\u0011\r��,\u0006Cb%r§�57\u001b\n�#�$�=�[���N\u0003\u0013���'?\u0013�\n�۷��;��6\u001c=L��9\b���|�����ؠ���Ao��ԣAh�%\b��L�@%`�Aw�=\u0019Kq����͑\u0015�A1���\nB\u001bt��b�\u0013�b�\u001cS��v�}z�J\u001d:�>�\u001a��U���|���\u0003R��_\u0004\u000e\n\u001cτ��R���\b�l�Q�\u0016{���\u001a��A(Gh9�\u0003���\n`f.�\u0018h�X1KrWs��m��\u000e(p\u0004\u001eA��T�*\t�7�G�:\u0011DuYF81�+4�n@]��\u0011��w�\u0011V>k��P���\n�ԍ�唆�3��\\��S(0�\"\u0016\u0018�+��R$��z�����jR�f:�\u0011�\u001a�_Z�<���ºz�6\u0001\nT\u0019�\u0006\t̥y��\u0013L��J\u0013����Pg.a\t\u001a�\u000b��a�L�����S�SX��R���d\u0006\u001dQV�+Z��\u0014\u0012�G\f�i�e\\o�\u001c��B��\u000f�<�j曘{j���\r#�'i_��\u000e�u�:\u0013=75�t�\"\"�}�sڣA!�%\u001c��6��\u000eRa��\u0012��\u0011�G5��$�TUvJ��\u001c��\u001b\u0012$t{��ؘ�N'\u001e�\nS�+�s%[�S�*nĞ�$QR�E��^s�x�:ަ\u0006�8�]\u0014�c�c�%\u0013��#y���AT���Π1\u0017��^\u0011�\u000f;|w%g\u0007q\u0017\u0004\u001a��Ǥ}�Q\u001d���.O/UH��2�\u0012$\n���{��t��Lt\u001c�yD\u0015�Zr��\fߘ�r\u001dTtX)/n�� Z/�tz��x\\��zt\u0002�1���trqu���yI{�\n몎\"\u0013'�-�l[��6\u0006\u0013r�p�\u00043�<+����2GJ\b�H���gp���\u0007\"6����7Q���P�H\u0004\u001bxb�6�/�\u0006�G�A0�%0���s��GZ��;�|\u0003iqՑ��>6��|�Aq;��X�\u0012`s�k,I�\r ��S�`�VUz�����'\u000e5\u000e���ѫ2�C|\\�\u0014�JOܱ����~�t�\u001cF߭\\\\spӮ.�l\u001bǫG��4��Z�\u001b��%\u0016�]�_t\u0013b\u0019/���P�H��3�^�8I]��\u0014�B,���c�9�\"�QN`�S�:�w\u0000\u001c����2�\u0005=\u0018:�\u0013\r����_����Ygg�}��V�\u0013/�y��X�м��\rs)��qק8Vm�'�)��y�f� ��1�ÁOH����p�\u0010�Q�fӄ�\u001a�\b��Y�.�\u000f��c\fw�\u0019X\u00102,�>4�&k���J��ժ:\tȂ(��A&�%D��L��+K�l�X�锥�|<�\u0012�J��ἺC\u0006��&&=Hn�^\u0004�ˋnB�:�-m����]ԅ���>�$�\b���\u0004��c�j�i��rʨ�(^��>G\u0019U��[�vJ�b*Ѹh�\u001f��0��o��c:�\n\u0012�\u0007\r��.��$\u0007c�7�羋����뜶S\u001aHS��bI�3��^���G.V��N�M9��㪰��\u0015\u0007*{�|'����\u0000��D=���J29�\u000b;�_R3~d���\u0003-�la4r\u0014�hZ���Xq��\\��V��]�!C\u0010��x\u0001��eTã&~# ߜ�U\u0015v2��v\u0014�RHB�ޫES0\u0006U���\u0017���J=�\u0013�ģA(�%X��0�x��\u0005���\u0005�����t,�6��F�#6��\u001e\u001a��^ x �����{�%��I�������x�~|�;&�\u0018�y\u0016���\u0000�\u001f68\u0004T���*3\u0005C`^$D��U\u0001D`-\u0016��\u0012��\b\r\u0014�ytN�\u000f��({\u0012�-\u000e�\b���aH\u000f8p��5\u000e��7Bk�0\u0002�1W�uyG����zd�t\rFz�ݛG�8\u0015� a���>��d�_$T�bc\u0005k�뫾�.\u001a�\u0019m�lW\tT)�h��8\u0001FI\b\\�\u001å)|\u0011���f]���H�����\u000b�\u001f�3\u0011����\u0013�L��ο8,?��g�Jlp_����S:��ꝤHL;&%\u001bn����p�z\u000f>�*�A7�%l��6��ͫW\u0013\u0013����b\u0010Ի�������u\n�\u0014\r[V�\"��^\u000b?�\u0003��x���0r�C�9*���x��H�Gy��\\i%?�+�\u0017�r�⺶�E)\u0019���k\u001f�r���cC�\u001f#�ԋ�~շ\u0019��`J�B��L}�jE�\u001e\u001e�+\u000b�z�\u001fр׺�\u0012�W���\u0003}/�=p��\u0005�M%C��Y!\u000f�d��a\u0002[��\t�c�N�b�\u001a��Wz�N�?W��7\n�aq��i�1��8B\u0016\u0002zG�nG���R[��:�\f\u0007[�0xA����mu�\u0011f�(�D\u0010B���b\u0010��\u001d���\u0003p�UC\u0006���\u0017?X�O1%�,8�\u0002�\u000f���I�z�'[>�'qO>=o\u0003b��\u000b�\u00075�H���Ab�%���L�v��=��\u0006Ɍ5Yy�­�Jw���Ϳ��\u0004�kM�\u0001��#\u0015A�/�Q\u0004�����yG۲�(7f\u0007b����y�� \u000fF88�:M?a�}������\u0001�o\u0014��h\"B[o�4��ą��\u0003M_����\u0019����\u0004\u0001A��S#\u0016.K%�\\V�\f\u000b��\u001fE��-\u0017\u001b�Z�ۀl���0\u0000�*\u0015@cU7-��\u001aV*��\u000b�\u001c\u0015޲H��\t�!�#b�\u00066d<ܹ�j��\u00158�`A9��Br|��}e,�0\u0013��տ����Ҋ․V�\bX8Fw��'\b�!���7���;����l\u0006O�4�\u0013\u000f���\u0011�x\\�ݵtv�²E�U�\"ۢ��\"�\u0005\u000e�7�\u0015�E\t�}�A\u000f/20��\u000f��\ne�P�\u001b��^��\u0011C����\u0014��\u0001\b��ɴ\u001a���)�E��\u0001\u0013�\u0017��Νt�>X�/\u0019���!2�\".\u000e\u0015O\u001b\"�6\u001f�yo��+I�tq?\u00042��r#\u0005����V�hC�fG��p(d%}&��c�-\u0005A��^�\u001b@�PE\u0004�+l�!Ҏ�U��f�\u001e+t�\u001cJ���\u0001\u001d)�5{\u00149�u?�Ӳ̨��x��\u001d��|�E�AM-����Z-�|��\u0016�y��s\u001cz\u0013���'_#�����_\b ��^]���\u0011�8\u0005����\n�\f��8\rR�����\u0000C-�<�\"(\u0000d�A[�%���I^gݣJ�:��)�p\u001e�]c\u000e��\r\\�j��f��O\u001c��)\fy�ƞdn�\u0016\u001d\u0016�Dn\u0017\u0019��b0nB\u0013l�)C�[���p�!(:ߒ�Q�Ǒ��\r�j\u0005�>!��~�ex��(+��М��pU�:�\u001eZz=�I\u0001ؓ�X&3FY����M�I�vؗ�u��!�𦉡����]`�\u0005�}��ARBC�[\u0002Y�_U\u0000��!G�c��z\u0017\u0015\b�P�{f\r��D��ԡb�i�5���s�E\u0006c��\u0018�\u0001J��P���Q�b�d��V��L����\b3p��WM�ڍ��t?R�X\u0006\u0017�%jS\u0003\u0015k*&\"���*�~�j\u0000jI&��l\u0000��{-�PV�)����\u001e��X�dFZ�.k�����8\u000b�$���\u001f��r��\u000bA?�%���.?�E��������W\u0012W�f��9@}�\u001d\u001e�{� \u0002F�<��\u000ec\u0010'F�`ڴ����#\rg ��q�5\u0001�\\��9��&�_�\u001d�\u0015�E�\u0014\u001d}|��T��ƶ���\u00142�Ea%\u000ejκ\u0006�\u0014��+MJ\u001d�\u0007��$�!YՑ���\u0019@�P1�p�JH���`��\u000e��T�\u001eϥ\u0007Z;c��+\u0010@�\u0012��o�y$��\u00049򟼬�7zw�,�e����\u001b����\u0005]a8QT�ޡ'9/�\u0000��n%W\u000b�bx6�Ԏ�T��_�X\u0017���-9�u[\u00040la���/:�XS��\t�*Η�)\f����EO�/>\u001e���Fl;�����m�\u0005��\u0006���\u0016�\u0001�Ɋ\u0016��}�v�yE_G�u|H���A=�%Ѐ�\bU�df.��\u001c��;Qf�O%�FD\u0012X�ef�����>gޤ��;\u0019@���x3D���<��r��\u001f\u001fLU�;^�0�V~D�65\u0007b3x\n��,X�fߣ��H�\u000f��\r�Bw�������O\u0010�\b@5j���}��m!$y��\u0006�<�\f��\u001a�M�\u001a��R�A\u001f�y-�N5�R�A<\u0003�\u001c\u0007�#F5�_o\u000e������.��@�3�w�]U���>I>E����?@�����k\u0003���\u0017Ր�9�k���f(�v�r�\u001c�YP�t��;3\u0016�2��lQ%.�S�\n�o�����\b�\u0001�?�L�\u0000\u0006\u0016�U(iS.�k�qG{#Jg�;7�?��:C��)m\u001cs`�r�8\u0011G���&\u001c���A1�%����1%q|��j\u0000\u000b\\\u000b\u0013G���̅�:���B+\u001aB)�2�����cJ\u001b�͊\u0002����\u001aU�\u001aڇ�෦��-K;P\u001fQ\n���\u0017�u[�ݗ\b7V�\u0019�\u0002Y�\u0016��A�Z@\u0005��th��=�A�F��\f�R�h�\u000f��!��\u0016�X�X�\"�\u0014͔f��rmIO#�U��\u0016�*��q�x�\u0015�:��s󎯃�oN�o�,=�9�Zn+AS,c�\u000bD��Mg�89��\u0019u���\u0015sz*[�+w\u001fR\u0019���E\n̪��|�21|)Uv\u000f�\b�m\u0011�J�\fpB\u0017EMG��~�Ey\tc����깾���ȩ��\n�azM��b��z�73\u001d���\u001e����m��\u000f���Á%���|��09Mf]m(�N���x\u000f7V� ��\u000e�I8�-�%��\u0003lXz��\u0003\u001d\n\u0011/\u0012�x�\u0018u\t�t�\u001cK[[���C�W�n&\r�mI�]�\u0019a�⬧s��\u0005����x���J�|���\u000b9T8\u0016��l\u0017�\nF�#�\u000e�n�3�\u001b�rx\u00102_����\u001e\u0006�0�W>N\u0018��C�-\b��\u000b�\u000eE<���P6��\u0019ȴ�BT+�9{a\u0000�_\u000f���]�Ұ�����G=��\u001f-Gq�?O��k8�v��/\u0004��\u001ey�\u0006\u0013y�f���\n�ُ��\u0007Y�!�����<\\c�nR�\u0000R�5�$�O��������G�\u001a��u��1�+si�ظ�*\nu�\u000bZ\u0012�8#Ӱit\rݎh\u0003�c��������8�o(D\u0014�\u0012�>���A���ٖC7\u001d'�/��+�j�\u0018_#�B�J\u0011\u0011���K\u00176�(u��\u0010\\�f�?/!șv)�9˚\u0018k$N\u0017��\u001f���bL)��b�$;�\u0015`��\u0004�\t0�\u0018�%&�\u0012\f�G\u0007�ΰ1�:V�H\u0000P�����ɮ�y\u0000�N�8�x(\"�+b��G.��ףA��&\f��}b�\n\u0015\n�$i�)��L�ؘ�\u0018\u001b\u000b��\u000f�Hl\u0019���\n���w�S/�\u001f��O)l�\u0001N���o_C�\u0016�\u000e;���\u0018�\u001fePF\u001b\u001f��\u001cTӅ��&�B�=\u00157Lp\u001f�L^1\u000b�%Λ�[2F厀Kj\u0019�\r��j�����\u00168����A����\u0007���A7cUr0ec\"\u0005����+H�P\u0001l���ɋrIy�\\Q̚zd�J�c��\rv\u0017��`M\u001b�}�x��L\u0017���ww�.�\r�\u0004}\u0010k�u�Co�:��(\u0017�����S�4I�\u0005�qǭ\\���\u0002�茄�\u001chZJ���8U��^��y�Y\u0011�cɏ��qӳU=tp��\u0015�Z ���M)W�3�c���ȷ��O��\f���\u0000[ \u0017P�T!_�v#�\n�/\u0010��$\u0005)\u001d\u000f\u001e�X�Gs\u001b\u0017\u0006�\u0002�\b\u00143J�|���7*��\u0010)[o�i�UDa�!_�=w\u0018�w�s�H�i�����E<�\u0002\u0019�\u0012�\u0019��\"\u000e\u001a��M���\f3��\t�\"��R�N:����S$m�A\u0016�&4��X���2:Uƈ��P+qە\\$��x�h\u001a\u000fOWڦtH��+C�9~Z.��\u001e��\u0019���@'f'Ͼ\u00190\u0006F&\u0018~�8O�G�Z\u0017\u00141�C�DM\u0011��\u0017�c�x\u00120���2����A6�GU<�!x>D\u001fAo>\u0013��s|���n\\֦ch*���8S_��l�9'��M��\u0012�\u0016�@y3W>,�T�᳑=X\u001e��\u0014�9��!�Ё��\\\u0007����E�\f��y�B�{�P8m9�r�\u0010��p\u0004�L\u0006@��x��x\r)��\u0011w���>���E�\u000f�tyR71��\u0001 f>�W��^�\u001da\u0017j!8]6\u0004�\u001bpm=�_�\u00115?r��A(�&H��L�$ƥ��\u000e�,[�ߟ�$�vx��\u000e��p\u0006�܃HH\u0000m�\u0010\u0007$�d)^ K�0���H��p\b]���A�Njܘ@Κ�f���\"|���\\N\u0016�r�^�E~�ϭ�CG\u001f\u001e@Vl-ë�\u001as\u0015�\u0013xUHeU��|昏\u000b;��;IpG��X\u0017���W��\u0016��a�����(�^�%���X�\u000e!s���p���j\u001b9cA����\u0003s.=%��S\u000e�\u0004F\u0013p^,�\u0000�iJ��)&~\r�M������:��G�;֗��m>t�\u001b){\u000e�+T\u001d�\u0002\rϬLR��\u001f��|��C\tD�ŁH��R��#��9w\u0019�w�\u0006zՑ\t��t\u0011�m]\rC���[�A.�&\\��L���`�^�T���M\r\u000fbֽ�������v2���:��\u0019�`=\u001el+�{^3Ǚ�B\u0007:�^�&\u0004�%Uzd�\u0013ύ�S�@�e>f���\u0013��sx���O�\\���S�\u000fp\u0018��\u000b[�\u0002d%B�\u0004\t\u0017\u0015A�\u0010��&��\n�����x�=\"�s���5����B��y�\u0002�C�z\r\u0015U�)�SQ \\lK��:��aW�7\u0007b'���%`=Y��4%���YIA�\u0018 R��Äc�J�6-��\u0019����(\u0017�U.I��\u000e��\u0001�_n��~��c�\\*��\u001b\u0006y��I\u0018\\J:\u000f񗱪�z��b\u0016\u0011-N2W��?����d�!?�����\u0018\\_�\u0000�ok���v��Kk-�A1�&p��L�\u001d\u0005B\"\u001dO��Q��k>�\u0016��W�5G\\��d\u000es5\\����\u0019S����\u001eO�f��ß�L��H�D\t\u0005��գ4'_��k�\u000b��7\u0010��v\u0004o��ь���}�8[\r�}PnO!��&3\u000b�{A�n�s?\fm�\u0001�ڔ~Reb�P��I�!Q��ae�E��%\u000b��t\t�odm���\u001c�mG5��\u000e�\u0001l�<�{���ܑ��.S�$��%@g�\bv������,�g\u0013\u0013\u000b\u0004�c���\u001d-�-\u001d��h��Q�S��^T�u�3�\u001e�q\u001a�Y�\\}\u0013D#\u00143nO�↙��0\u0007�_���-��7GJ��� ��\t6�쐡fcj\u00023�g\u0014�5O�\u0003�\nm��=������A-�&����b\u000b���'\u0006�_�\u0001��y��\u0005�[j\u0003��e׀דH(l/H�\n�\u0015��\\��xh��b�~��\u0003E�[�Al���\u001eN�v��}~�m<�ȭ�T�`���ļ�1�[\u0015�t[bj*�iE���$j��ie�q��o\u00155�C,��%\u0016�5\u0010��]�PGY��\u001c\u0012\u0000�\u0016\\F�\fa�����i���E%]��{p{�g�ٽ�*�!R�&`q�R\r��\u001f���$b\u0001L>�\t�Ǐ�%�5�\u001b���z.��0??q��蟳vȠ�zZ\u001b��8���;�[e]0��g�J��,g\u001c�-��\b˒V�\u001f\u0010ؐ��l���J,[��Lp�\u000f�\u0012o>�fV�>m�:����m;�A0�&���L���6U�Y�Cǣ���\u001c:�L�ٚ��ɇ�\u0000\u0013A�����W�t\u000e�.\f�2���\u001a��s��\\\u0000���\u0010��Y��\u001c�$�#gݞԂ�E�+ޠ�۷��F�t�b�q]1�8��\u0006X�\u0004W�I�\u0019�\ru,�:A�~GٝP\u0015\u0014�'W��&���ƾ\u0018�]�x�r�!c\u001a�#��޴���\u0017��2�\u0011��r��PL��������9�\u000eG\neT�P�)�Q�ղ�'�d�\u000f�����N/�M��m�\u0001�Ѩ�{X~�\r�\u000bq��'W\u0014�ڥ�@���O]�\u0004�C\t}�����E\u0018�c\f�\u000f\\�yi��3�\u001d�A)�})�\u0003��FK3��J/�\u0003\r4�F����o[�A;�&���M2m��S��:,I�be��PՁ�)���55Q�XO\u0015��9v�H��-��)��5��\u001bx�I�� XɅ\u0003\u0001e��Fԕ�ͻ'��^�t�y\u0006{\u0002�����H�#�ڃ�V�\u0005�\u000eϪ��2����\u001f��\u000eRy�\u0012#�5Ӳ$j7�F��\u001fv1�N��g\u0014q\r� HhF}�uH\tQ�G;������R`H��dp�\u0003p�D��\u000e`E�\u000ek��\u001e[��}ȏ)��\u0001z�Ke.�\u0002�מ����� r�<|�]4���iƋt�ۑ\"�d\u0003V�\u0006N��(��y��b��\u001b\u0012�����\f�ʥv`��S��^[ʸ�3�2?آU\u0010�f�\u0019\u001c�\\4\u0001��R��C�%!�8#\u000fU\u0017%U\u001b���m�A3�&���L�k�d�my�'_\t�b?\u0007�Q�e�����\u001a)��\u0006�Ep��CG����\u000fl���P�k���Z�5����\u0013�K�>�P��\n|d\u001aZ�\u0011N\f�D\u001e����N*�e[~g.Ԭ�\u0011��e\u0011\u0015�!H�\u0003�[���37�|��\u000b\u0011\t��\u0018Z��\u000e\u001e�3�J�7A�wyz|h�����躔5��������v)���h�\u0011x�\u0013E3���N�\u0018�7=��өK\u0011[\u0003~>qX�.�S�\u0005A�H�|\u00126\nƹ45�d�\u0013}��՚�jt\"O3�y6��%�\n�D�\n\u0007iB!��40:u\u001c8t�{��~M�?����R���}\u001ba!(��Da1�a\u0011k#�)Y^0+>4\f��b^\u0002!�|�Q�AG�&Ԁ�L�I\u0002��|\u001eU-��kiV����/�\bַ�\u001e�hx�|1�n�$M���\\�*lf}�\u001e���n5�����}\u0014\u001b�n�\u000bJ\bg�e\u0002z�8E����p��LrZ�6�\u0016�GE��f7��n,�\u001077\u001c���<&�Ji����k�A,ɬ�9=�%w__�L�Mu�K¶P\\\u0005�?�;��\u0013\u0018��?(�vC����C\u0012yuOI-�'�/��\u001a���d�Y*�\u0015��z��9�\u0014�\u0016�����\u0005�gi��S�X�\u0006\u0004�Ҵ� >��\bi$�\u001f$�$\u0002��'�צ�\u0013��D#}�YgA�1<�\u0011\u0001ui��8��5��\u0016��Z��a�r�%\f�\u0019�\u001d{�\u0013\\x@|���A�6���{9$���n�g� `\u001c-EZ)���>9\u0011�F-�wW[�\u0014�S\u001a>H>���K���͑�A7�&���Ms�#ܐ,�5��I��5\u0016��\u0019���\u001c\\\u001f��%j�\u0017��l��>����Ս��#�ԛ\u001a�W7Z\u000fD�ކ4Qp̖OY{@���\u0010\r+u8ۢ\tQ�\f>�0�m�DwW;@�:�����b�>|\rWh6\"���6\u001cB�\u0017\u0013@W���\u0013�t\u0017�1\u00120mg\u0010�\b�1��l.99�\u0000{�$n�`?�\"|\u0015�&�[sJ�q�\u001ae��T�\f[2\u0013�Z\\�Ty1b��fa�'�KY����\u001b�f�)�bSE���\u0000��`'�Zs\u0012�a�QQk�l,�\u0004\u0006�\f_s>�aF\u0007�=nO�\u001e42y\u0003\u0016\r9�M�\u0007h���ؼM]�\u0013����_]\u000e�,�7a�;�\u0018>��3\u000f\u001c\u0007ZwC\u0013.�:7��v�\u001fC�u\"d\u0001�\u0001�ѣA*�\u0000\u0000��M\"7��Sq\u001a��M�i�o����%|„���3\u0000�JK7\u0002�7������ʣJ\u0010{v\u0011��`:\rr\u0019�/�����O�\u0000�v\u0005gJȅ��\u001dN���\f��^\u0001��3N�D\u0010\u0003��\u0007�F���[\u0000vH��7�-\u0006�J��[.�\u0019����{̓sE]\u0013����l�\u0011F\u0012bX\u0016��v�\r\u001a}4���S�fj>>�\u0014�$����\t�\u000b4]��Sа�ܺ\u00170��L���\u0007��\u0017\u001a�)\u001fi�3����*�\"����\t�Фı�z���\u0001m��u\u001c\u0007\u0011��D�&��¥2z�s`kYq�̲�yS\u0019��k�.\u0002ճT^���~]����y�ShF���B��ӵ�d+l�\u001cU�\\�3\bSmz\u0012nӽ+�\u0007�\tX/�;c4&v�8J\u001dl�l�*��-�p�\r]%X���Mz9rj�1\u001a_�K-���\u0004}�{{��a���-U�r��Ȓ�4&j�W`\u0003\u0010\u000f�\u001ec7�\u0007�&Fi�86����&C7���O\u0002ҿG��JDzFys^�\u0006�\u0006X���\u0014�oӥ/�IL��6��q��s\f��ξ��R�\n�=��\u0004?�\u0012\u0001�{w�\u000f/z��ܒ��B\u0018�\u0000x��}b\u0004���\u001fh\u0010\u0013����B]t:\t/�,�4�����\u0003(\bV\u0002\u0015���\"�Q��\u0016�\u0003`�1-�ٚ���)��$)^Q�w�\u0017�:v`{�\u0003�n\f��\u001f�<<���\u0004\u0005>�\f�n8V�Mr��EM��\u0013+���M��e�7ʦ��\u0007�\u0005�\u0010z���\u001fgFz�\u00057K��W`7��x�8d#Q��P�W�X�5d���,\u001f��\u0006���;9A\u0010\u001e��V��\bݕ��[��ր��%�\u001e�:��o\n,��T�����!\u001dc~�/�^�O�2\u0002)\u0015\u0018)\u0013�\u0018��ӼE;�m ������r�\n7S�\"GXo�\u0013\u0004�{\b\u0017k���BT �\u0010��A�+cU�f���a�OQ\u0019H0��$�\u0006�a�9�fFK�֣\u0012����\u0019�ڔ��\\�\f`u���R�\u0015�J�޿��&���\u000e����\u0007\r��β��Z�q��E�\u00017_�}����\r�\u0006y�C�O�#�lD�+���y6�\u0011\t�\u000f\u0014��!x�i&_B~��f�\u0012���O�LE�\u0000�zX�y���_\u0017��8�\u0014\u0010Q�FY\u0000SZ\u0017;oe�\u001ep�䄃�*6\u0001�\u0005\u0012.�\t'�\u000b��\u001c\u001a��V{�Rʹ�k�E\u0017������`h�I�2!��x\u0018�\u001d5\u0014�l�Ӌ�S�b!�j�\u0015\u001c��\u0018W��AC�\u0000���1\u0001=,Zc\u0000���Q���\u0015\u0013\u0011s�\u001eX�9�]\u0015�@Ӥ�M\u0018���ӊ��*\f\u001f�\u0013��#=jT����\u0010��\u000f���8����\u0018�q�\u0006ϖ��7ct���E,\u0011���&�@N�j�T\u000b$\u000bX�F�j$��^5�T�Z\u000b4��5��p�%z��t�w\u0011(��\u0005:�yz�c\t��F��8�R�c�\u001cD�\u001f�k�(��S��;/l����O���'���\u0000\"���J�_�Ka�•S~(|�cC���x}�J+�\u0013��\u0014�l��V\u0002\u0018��\u001b\u0016��)[���&:T����\u001a���E\u001c��\u0017��\"\u001c�,1���謒⛔\r+��'굜��DS`e�E\u0014,�p\u0018��\u0019�?2�r�l�f�I��b�Փ�#���.\u0013�A,�\u0000���/]{�K\n�+��`'*ݩ=�&�i�2���uc��a\u001d�z��Ia\u001e���;Y@>>��F���U��af��¹�<.5�aqa��\"�+(0��\u0012}���ߚ��$�\u0007��\u0017Σy��\r�ƞ\b4D?�l�Phr\u0017&�\u000f�#2\u0010\u001b\\a�\u001bꯁ\u001aMB\u0006��\u0000��\u0017�\u0002_\u0013\u0014��;��O��Ə\\x\u0011�PB��æ�߾�HM�̇1��\u0012GLl:�%�O�ߕ��\\Ԍ��\u0019\u0004N�P=%I������+�JX�Y��Ғ��j�b�����$є\u001b�|�\u000b�\".�\u00130zq�6�}�ofQTC��7\u0007C�)i��\u0011�-^��4�3�\u001d�d���\ffَ��\u0001�A/�\u0000���(fTM[Myn�H�[�C��r����j�+�l��`���ү��k��\u0000\n�ε�фkMe��yR���\u0002C�&\u001fݟ��N4fv�J�\u0005t\u00176,k��\u001a_`)��cͼ%�=L�lヤ|/\ta�\u001b�F���G;�F&.�����,\u0002h�\nx��A�\u000b�7��G�anE��\t6����1.��G����?\u0014V\u0014:\u0004�TDp2.y���ñ�\u0002��\u001eR�\u0001~Mǎp2=�vߏ��:�g9JlKš\f��Q�6�G\u0015c\u0002\u001f�a\f򢐯ڹ�۝��7g�;�a��͖\u0019QY�i�qF�Ҫr7�=��X}M�\b\u000b��Nt�:�?�k�����e��\u0007����Q\u0005��z��A6�\u0000Ȁ�I��\tX\u0015��\u0011�hW�f\n�޾}-B|\u0003��1~��$W��\rXk�<�%��\r�\"џ֑���\u001f\u0000��y%\u0015(�&\u0004����S�n�߿\"�G�\t�=��\n�`�J\\\u001ff�\u0015U��%�\u0014\u0003F0O<�G-!\u0017uչ��+�(\u0005~��D�6���D!R,UD���QIի�/8�D\u001e��vg��\u001b\u0005y)�f�^�?��\u001d>�O�\u000bl��\u0019�Z?�N{#W�\u0014^��ƢQ��s+\u001dK��\r2�\u00143�l��?i\u001c_W5o�Nq�B\u001b�\u0000܀�{\u0011�6��ry\u001dw�7\u0010�ӌ\u001dc�B})ئ&\u0019:�\r\tU\u0007}\u0010�\u001a�۩e�'2�\u001c'�Ul\u0018\u001c�ԥ�!��[\u000f�� T\n��\u00130E\u00030`�BgvJ�����lçkcAa�\u0002�T*��+�J\u000bT�bY�~�#�'\u0013���X�P����j7�o��l��\u001c�%j��_-+nǕܥ�b���S����1�%��G\bAjsV�A�7昝_�'�$��s(\u001e���>��m�Ȉ��\u0005�͉�n��\u001b���)\u0014r\u000f����\u001fd��)�\u001cg+��� 8v��ݚƙj+Z��B\rY�G��{.Z�`g8�w��\u001e�\u001e�^\t5���~`b�7N;�1a8����\u0000�g�ƺ�}���o?Uf���XAkh��M���<�T�\u001d\u0016\u0017>\u001f�wc\u001d`�U\f\u0012$\fF5����KI\u0015_��a��O\\��/�\f��X&aF G���zu�#��%��|\u0012�dc��Q2v�p�iE�\u000fQP�k0�k<��[as�\u0012Ҷ�ЎA��n5*��Y��\u001ch���\u000b�\n���^ I�<ѣ�An�\u0000���X�\u0017�E]-5���\u0005�&�)�H\u000f�?�D�\u000f-^@�',+����R����8�z��b s�<`�v\u0001�q�;\u000fO\u001d.�\u0002�\u0000gjGTM|��Ʒ\ng���\u0012\u0017�Mt�g��A\u0010\b�V\u000eV|���ڷ\fv�<��\u0013*oi��:�\u000e��y����i(��[W�.\u001fsEpJ\u0012��Y��c&O\fl%�$\u000e�(���U�`\u001e�Vb�M)�9��+L6���V\u001b��\u0000\u0015!����\u0006����?�zFS�Q\u0015ԭ�4d�Ѻ\u001b)G��3\f#\u0016��\t�˭kY��P\u001b��ܚ�΅E/.�;:�M\u001a�\u001f�'��1\u0012JfyJ��׵x������d�'\u0015�I拝1��K*��\u001e���!S��?߯gva��T}�~\u000b��1��X�yg^KL�㴫&�:\b�\u0014�_U\u00070�\u0005n�n�\u0007*��@3���~�A\u0011�\u0001\u0004��X��.4��ҳ��7�\u0017ƚ\u0012{#އ)0E�Z�\u0016���$\tu�,�m��K}\u0006\u001f���>��a\u000f/��\u0010\u0014LJ9��\bG�(N\u000esH��6���\n�ꗚ��\u0000\u001b\u0006Ӝ�K�I[�3�\u0006H+�-Ӯ_ڦⰧQ�5�R�\\~\u0001o�9\u0004p�ʞ~(�����L�\u0006��z>y\u0003�C\u001e��\u001d��%$\u001a��+���\bW%\u001a�&:�Lj��\u0010{�39\r{��\u0003|4ť\u0005L�sM#���\u0000��~/6�qv�P�\u0019�(�x\u001f�P��t��è�\u0015�K݃���\u0014�ol�Ԕ�����BO\u001e��\u00034{\u000b�7�*���a�d�A'�\u0001\u0018���\u0010\u001d�(R1��6��ަ��\u0013�.j_\u0000)t���s9�\"�w��\u001aS�]������qPHS��h��\u0012�\u0018$dhB��~9�T\u0007N�b��\"��UhH:�P沔7��\u0015�\u001cpM\u0019�\u001eݙ�cP�?����N�3k~�s�uH\u001b�m!��q-���\u0005m֓uv�Q���Zu��o\u0006\u0010z��h/~|��nVd���Lċr8�\u001b�\n\u0003dʎU�\b�\u0000��ov9o0O�o��9\u0016P\u001a�$;a\u0003Õ�6�\u0010�\rh\t����%�sp���n)�1dV\u0017���Py3��oR��\u0000_��e�L��a��\u0001���`�\u0010\f�e�5�\u0019�����a>�OЉq�\u0003:2-C�Q^wg\u0002nR��k!�6�:�}�x�\u001b�,\u001a�A&�\u0001T��L����]\u001b:����[�}�\u0003��\u001f�[���\u0012\u001a�f\u0007��\u001d�٤�H�s2���x+����#�DjqB L\u001a�(�m����\u0006qdjc�4.����\u001alV���7�_L%\n��\\�R&�\\\u0010���(�6K����=n\u0007�w\u001d�vdo\u000f\rF�րCdɣA%�\u0001h���\r���N����i��8*�|\u001d�G,\n���kmm�\u001e6:�����\r\u0012\u0011�\u000b��\u0001.*\u000f�Հ��S6d��=��1ӗ���s��./\u000b\"۵����ш>շ\u000e\u001b�h�\u0012:Xߌ�l�~�L��R�\u00004ڕ��@���\\�� c�v\u0002�t\r�T\u0007P��+\u0000Q��{3\u0001H��\u000bn.3�\u001d\u0015\u001b�&ƻ���E\\�\u001d\r�\n�\u001e���Yx�QW†�_j�\u0005�$2<���H�W\u0005D�̞#\n\f���\u00051\u0011<�\u000fh���\u0013���6j��l���L��fh\u0014�\u0010�ᐘ\t\u001cU=2\u0013X\u000b�O�@g�[o��\u000f\u0015�t�(\"\u0012R��\\��\u000b#�\u000e\b��s�/\u001f*�J\\�A\u001f�\u0001|��NDI��G\u0010�\u0002�\u0017�\u001b\u0018\u001dAɶ��$�$_�ӉaO]��\n3u͢�XO���\u0001����ӔA�[�<�?��Ü/\f�C}\"\u0002\u001a�b�f`���7'���\u0005i!=�y\u0006�η^\u0000�b�C�3&�\u0005�i��=��\u001b4�\"��E�1��=\u0018�H�ɞ�\u0000�a��KCK'�r\u0019\u0002\u0012\u001cD\u000bҠP=���”'Hg� ��k�\u000b\u000e�@턲�\u0014܁�8\u0004r#k�\u000b���m뚕6F@�p{Lz\u001e8C��j��:I���\u0007��Y�g��.�ű�@�\"2\u001c����\u0011Ġ�\n$��R\t�̷.����*�b=��M@U��EB�Q�xTy�\u0019ǣA&�\u0001���M1�\u0003Ё�:�KM#�lN���\u0003n����x����D\u0012�g\f��Ψ\u0010@C{�O“��\t�����2�8�9/\u000b��J���s��J8\u0003$p��1\b�\u0001n҇\u000b����)|�\u0018��b���\u0016f�Wɝ��/�pu\u0002fYh��m��\u000b,�\u0003�[�\u0002+`\u0002���HN));��I�\u0007?\u0017\\\u0007��c7���Q���\u0012�Pl��B�\u000e7l���eUb�'�)�;\u0015\u0013\u001c>���x\u000e=\u001e/4}5%��\u0018�\u001c\u001c\u0004��F<,]m�!�\u0007Pvܳ��X�(�\u0010\"�\u0017�\u0006�{�\u001b]��R܆��e���&̯�i\r��Dꋟ\u0006�\u0007�o���\u0007�܋�Bxԏ����0\u0012P�ɣA1�\u0001���Mt�׬l�\u0011Q�˜��D\u0015}�[k<�b؄\u000b�s��?���\u0007\b�(By\\�\u001d\b��U�C��\u0013�%ob\u0004�v�r��\u0003j\\�\u0015�\u0014a'�i�L[ԁ\u0016�\u0019�\u001e�(��\f:\u001f��\u0019|����P�\u0013�{�Ʉ�ط��̉�� �\u0014¢��U\u0007�\rdzݑ�\u0007�֖�ы6����\u000by]j�:ϸ\u001c\nn��6�Wz�+:����>�?$Z�\u0006�/�2��_��\\�b6&���$�1v@#��x>\u001f��b\u0003���!����\u001dD\u001d���&�9�r\u0007{<�\u001ca�f��e�meƿ��\r��a�7���8ۅ{�Ǿ�Wo��\u000e���<@)��h���\u0012��g��O\\3��<\u0017��]�A4�\u0001���L��\\\u001a��^x\f\u000b�Kz4L匿����{\u0015R??\u0013�\u0014�\b��_�X�{e��jt��?G�\n�ר��t\u0016����l�\u0003����\u0011�|g��\u0012\r�h��+��\u0006fj\tm=�l.\u0015�\u0017���3���K�P�Y��\u0001=Q�Q�}��\u000f�\u001a���s9YM\u0003K��QX\u0007}����0��R0�F�#��m�֓�����)G����9K��\u001b���\u001f�m�\u0001*�%�\u0010/�$�\u0002R�5_��{\u0018�\u001e\u0011�ܲg��Xx����ߞi��š��pZ=���/4Vgl�}��r�[����W�6�CS�n�M\n\u0014��cAX��K�B�S�;��a(��=�ʾ�\u001bO�#f#�oߥ�x��RY&�A$�\u0001̀�MUC�~g<�ns��m\u001e`\u001e~���;qX12�2�\u0004���\u001c�<�\u0012\u0017\u0006�Ӆ��?O�\u0010~��\u001ae2?r��\u0010��#���@?�~ZŊ\u0001�$��UL}�ed��\u0000L\u0013��+�����\u001a�:Q)��w��\r��-a\u0010J<��(��\\�%j���,�\u001ez<�)�\u0017}�h�L�\t���T/,\\\u0016��Qz*�\u0018��xM�En�b\n�U�K��9=��\u0018t��|}��\tf��$+��^�$,\u0019� \f�i�68��ǯ�c�'t:9\u000bZ\u0006}�\u000e���F\u001dC3��md#j<�>I��;�\u0003����kz}-Q�!�ƕ�\u001fY\u0003~V� ­����������_���x�4\r�@�[N\u001a�quV\u000e���\f�Q��P�@}��k�\\�����������cC\u0004�+c&���yvc�Y!����L\nhӱ\u0019\u0000{\u001f��WH��$AW�s4�\u001eͱB\u0002\u0015Q�����\r� bG��~Vm\u000e,�ܳ����%���\u0018ڥ\u001c\u000f!\u0015c�\u001a��Q�,�0\u0019�#�\u000f\u001f�\u000fsvV8\b\u0002ǩq�SX'<$p\u001c�\u001a�\r�\u001d^;��\u000fF����v\u0004�*Z�\u0005���%*�%�A��\u0001����s�<��r�>��ӑ�6\u000e�(�Znӌ2�\u00066)2W�\u001a$�g˶�\u00168\u0001`��\\n\u001a&��\n�lK:����\u000e�M�i[���[\b���ap!\u0010�+����lܪ���9Ύp�c}!օ�[\u0013�N\u001a8�\nP;\u0007\u001a��R���n�:�1�k\u0015��~yk8\u0002�\u001a�N ������YJ\u0017��GI�$US��\u0001�S���\u0018����\u001a�gyˑf�GuLk�\u0015_Q\u0018\u0011m{^E�'�\u0005�j�����P!\u0007ߙmn����aa\n������n[�\u000f�Q�Qm���-��V�\u001f�=����Ö��)�#���hwl�\u0016�粔���\u0015>#2\u001b�(pjW�\u0004\u000e@�M'��6�q�au:~�n��\u0003�\u0013�_p\u0011f��;�\b��N���\u0017�f\u000fZ�7f�^Z�>\u0012,^x��g�r����!{�3���\r�\n�:�f~�t��[\u001e\r\\��7Xѧ}p�A�}�J�2\u0001��A$�\u0002\b���w\u0011��\\mH��f�-7�7x�7���\n��\r��\u0019_\u000b|r�\u0000��f���\u0006�у�l�!��\u000e�\u0003����L+��\u0018\u0001\u0011�,G;Qd�{�I���CkV9��Wc~b.�w\u0002j�+��\u001cEb�P�m�t���j���'^^mي��z�{�����l���c�\u001c�/mޞ\u001b\u0003xv���o��3ep9\f���+�qxyĚ��\u0004v���A\u001b�\u0002\u001c��L��\u001a�-���\u0017!�Y:КT�KWq�N�٥�\n+\u0019J\u0002r��C�do�߱ψb\u001a(t��|�\u001e��9ij��\n���ꤓ�\u0006�\u001a�|����ù��y�\u001b�O\u000bw쨲\u0014H�^\n\u001doy�oV��\u0019\u0001ho�\u0001�A�S�}��\u0006�\u0002��k��r��Y��U\u0015Ȳ�Q�\u0000�rN���?�:J�6|�\u001f�GP+f�q�\u0015�5M'�\u000bs]\b��Y\u0013Y�鸌���*��@񾇚�\u0012�`��b�f$\u0006�d*j����5��\u000eF9��6#\u000b�ia���c��w��/�d^\n�\t�\u0015���v\u001d�\u000e�\u001dΒ�<��u��I��\u0010��\u0001�\u001e��m��\u0014ٍ\b�#\u001c\u0004�\u001d�H��d\u0011����5��Ƣz3�\u000f�x��0�%\r����p\u001a����׉�|�W�g�q��\u0018��\u0000\u001f}��&�y0\u001bm\b\u0001�K�=CuIb�^�H)�\f�gΚ+�\u0010�\u0002/�\\]���\u0015�'��\\Y�`.���ް�\u0018<_�����\u001e�u#�v'��C�b\u001b \rڲDg����&�A;�\u0002X��۷�ȜU:,>��=�,\tA��c\u0004�Sbx�Yv�+�����%>���/p�\u0005�Y����\u0004x$\u0011�T%\u000b�c\u001dm�4�H\u0017V�|Z����ȯus���[I�w\"���\nR@Tʃ�\u0006P\u0006�Z\u001b\nc�\u0002�.�t;��i'��\u0006�x�\u001fi\u0012�ں���\u000b\t&���_A2\u0018}�֢�<��!�/jJ\u00106#*;�m%;NR\u000f\u001d�����\u0005�\"�?��~jI\u001fη�q�=�[\\hs��\u0010K?<_���S�\u0018��D@~�Գ�o8\u0017z@��\u000ea�1\u000f��N>�\u0014y�.��t3�7�ֿ[Ƴa�o�t�9�)_KC�ٍ|#�]�\u0013�\u0001A����.�\"���h\rh��S \u0000\u0001\u001bk+��V��\u0007�\u001a�i�A8�\u0002l��7\u000e\u00190\u0018�1���%\u001b�.��\u0005\u0010V�\u000e4c‡\u0000�\u0004G*\u0002wL�\u001b�P��.PC�f�ԫ��#�R`l��\u0011c�A\u0010��2ܶ���y��Ҥ\nw���\t/(\n�閘�|��\u001eZ�\u0011��v���H\u000b��2�\u0018Ԓ\u0011*&�Bz�\b[�3�\u0017\n�QQ|R-5\b�iL1_\u0004[!K�\u001fMO�ip'�\u000f�w'\u000e�\u001f\u0003I\u00124\u000e��,��O\u0019\\\u0006�2�۶|֣=4�I\u0005(\"���W\u0012h]\u0001��\t�[\n<��@��ħ�^�0��\u000f�4\u0013\u0018�\u001f%�x\u000f��c\u0017�|u�07\u000fI96�)]#?�5�2\u000fQAd�?B� ?�P���t�\fb�$�w��癄\u0019�9]�q���\u0002[c���)�+9�\u0018\u0012\u000f�AB�\u0002�����ަ�Ʀ�\u000f�T�|nDg�S\tK\u0019�_�\u001f�=g�+�j��૤V�\u0003w�eɐ���\u0017[�\f݆ܶ�����'\u0004aj�&�\u001f\u0007\u0005�8�����cY5Һlj�|�~��H\u0012��t�+\u0016M��\u001c�TY$wN�\u0013����kO\f��b\u001b\u000eį�(\u0002��\u000e��D�4\u0014�y\u0003�q�>�>�\u0001�\u0007���8rh[\u001e�3N((\u0003\t����~\u0001ڔ�\u000f|�̚��#��-�[o����n���\u0013�ҥ1��3���\u0016����ڝu��oz�\u0015\u0015�N�ЄP�&�\"�mD��\u0014��n\u001aū�\u0001m�6J��O�Z��\u0001\u001cTH��}�\u0015qaY}��y\u0003��?@���))1��a�\u0003@\u0012cal��#d۪E�\b\u0001�\u0019!\u000f2Y�A+�\u0002�������V�}�\r�V%=�W�S3�=nj\u0007���o�[g\u0015\u0012RBï�m�,�8���4�\u000b\\�_~\u0015d&�s#5r�+�ٌ'��1a\rϾ�L���^2��A�&\u000f\u0007L�\t�7h�\u0019:\u001bo\u000e\u0002S��Z\u000b�\u0012���\u000f�:d����&�!�\u0003�U8\u0003\u0014ԭ�,i�+iW�:5:ߧ��㫮���Պ��Y��x\u0004���\u0001p&A\u001e�\u001aXR�\f\u0013�-۫!���>P:�-�^΀��̿���՝��UՎ\u0016���<\\|�\tbF~���6�1a�$d\u0014��\u001f\t$Ĺ�?*-���7���nG\u0002s�\u001e���\u0004}�@�\u0017㊛\u0001jn:��\u0001��$\n��pk併\u0000:Y�A,�\u0002���۷\"�&��kӾ\u0012Č��s�V������<���\u0019R��dn��wY쭾����:\u0000+�dP�]K�x���\u001d�J���vʹ�������{���4�\u0016󜦿\u0015���\f���}E#�SK��\u0004�-�3�\"���s�~�Jz�\u0017\u000f#���\u0000�\"\u0011L_��1��3�W��Xk��\"��H�Ԋ��#�j4��T�4nV�릊�\u000fwa�\u0019,���\u001cZ'^W\u0006\u001e-\nEL�\u0010��C�\ftq��w��q�\u0012q%�I\b�\tz���6�~\u0012�\\�d��=u�;�_�\u0005�\\Ԃj[���\f�p��c8\u001b�\u000fy�u�\\�ˍ���y\u000e�,\u0007����\"�x]v\u0016�\u0017�-��9\\xEOCy`�B��dq���C#�����lR�\u0018\u0007\u0019)��\u001e��\u001c#�E/\u001f�)�*�Ţ�\u0011/�#A�Fhp_�JD�\u0011\r����R�cfBj�A\u000f�\u0002Ѐ�L���^\u001ccI�T\u0006��s[�\u00109s�l��\r���xW*l�9d�-*\u000b9k�\u0014bS\u0003��4�z��[�\u0005�?xj���\u0015\u0004�O�)�ӈv��\u0006�WE�x���\u001e��=��N�^j\u000f��\u00194g�ޥ�n3�w@C�/�G��X}\u0010K\u0013��Ҭ+D��_\u0001�f!N�K���~�5�z�\u001c���j\u000eE�\u0003��t)�aYQ�\u0005_�E\u0007��M\t��N\u0000���\n`e\b&�\u0019~�bk\u001b\u0019�7�\u001a�\u0010$�&�����R�|_\u000bQ��\u001fg�7�ʘ��\u0017�@\u0018�Ɍ7Hq=\u0014\u0001�>E��I+�' \tpm�f\u0019�\u001abÙ�$��&k�\u0005P�]�\u0016�k��9�<�ɮ\u000ei�w\u0000�[%]�����06\\�P����\u0019*��I���%#%��]�����瀑U��>��\\\t}鳔)�vF��)�\u001cf�U�E�\u0012��A\u000b�\u0003\f��X���\u0006�]i�\u0007q����t+IH�O6�x�g~�*\"����y��1�i���\u001d��\u0007E�\u0007\u0014Ͻ���\u0015\u0000��ծ�m\u0001��_�;t�@dŴtZhY\u001ds*��밢4�:�+\"��\u0011�BK�\u0001�H\f�x��\u000b��ʗ�\u00005]�Q��o\u001fܝ��\u001aw\u00018\u0015\u001f�\u0014�\u0001?Υ\u000f�-�a�}v)Uq'�\u0000�s�\u000b\b\u001f\bP�\u0016.B[��Qf\u001aٵZ�]��%\u001a\u001c\u001f���Gޗg� l\u0018��E�\u001f#��\u001a���s�'�7Z�M�qQ��u�N���\"�\u0001*\\t��\"z1s��,��tS\u0000�T��L�z\u001b�A\u0005�\u0003 ��X�p������J&/gZI~T/PB\u001b�i�\u0016ض���q��.�\u0004��~1p��\u001c�\n�b7�r��~�&�A�?A6qX�ΐƈ\u0012��;\u001e����I�\n�2\u0012�ŗ�\u000f( ���0�s�8�'�\u001b�c8�C��Y\"o�(�$n\u0007t\f�w��g\u0017������\u0005J-�S��p���\u001fj�$e2�ɴ�4C��\u001f��r��$�Ƥ�EA5�4+ct\u001fr�� ��4ﰰ�;\"!\t�v�oY��\u0007��\u0018i\u0006�$�8��1w�9������__N��\u0016_ˎks�|]�@\u0003]�\u001eH֦�i:�\u0000�A\f�\u00034��L�\u0015�M�ݾ��Q.+\u0006I�6��M��}�*�n-*��$���\u0015\\��\"O�\t/��{\u0002�&\u0018dv�\u0010\r��\u001e6Nq���^�4\u0007\b�i��\u001a��47��Mxh\u0005��4),)�\u0017��\u0000���\u001b\u000e� /�\u0019N_0m��U�5�\u0017K�#W\u0014��kd�-G�M��6SJ��r\u0004'��,\t���[f\u0006��\u0012i\u0007���F [��$�\\~O�\u0019\u000e�\u0000��\u001b�Q\n�}b��H�'Ѫ�\u00131ɕ�}���\u0011�nZ_�5�mc�6�-��U�\u0000\u0005�d�A\u000e�\u0003H��L�\u0017lcD���o\u0003�LA\u0012�\u0011S���ߞ��7D��ֽ\u0005}Ǧ�\u0002/���B�,�IT\"+/�-\u001a�Y��J�A\bx,E\r\u0016\u0011I�� yW�L�*0��:��H�*؂,ثP��)0\u000b��Cf�\u000e�U��[�z�E��0HQ�և�Q0`w\u001a�:�#Uw������h�G�|��\u000e����\u001a9]\r�7L\u0005{\u000e��\t�ǂ%h�&b3?cC��D\u000eS�*\"\"э^�\\�S�5�� ��\u001e���3�m*U\u0017�����\u0011�',u\u00147+n_�u��t���\\��\u0007�<��KPL�&S��ݭ\u000fj��T�v�\u0002��A&�\u0003\\��M�Km�?<�Wx��{��J��<��7�PC<���=�*�X��\u000f\u001f���\u0005w/\"�+R^�24�F�7bD�\u0001��y\u0004/\u001d��R;���d��\u0007��Xx�ɻs�\b�JپE{�q��\u0002��\n\u0019^\u0018�c�\u0016�i����\n��&�{��K\u001a߇�\f\u0019ߦ#��%n�խ\u000e>eԞ����~'$\u0005�͒\u0005�~Ռ\u000b�zܙ�fY�\u0001���X���\u0019���r�H�ϐ�Rh�\u0005\u001d��Gx��J�Ѷ1<:\u0015�!l+\u0004�9U�\u000fK������WěҞ�M�ު�(�]9��]�9:��D�j�g�\u0007R�Q��w��*\u0015^}������/\r��<0�\u0017A\u0012�\u0003p��X������0�\u0000��M���\fKUɓ�\u0012(E\u0001f�L�9b\u0002\u0014���\u001b��('\u0001�?���5�\t���$���Qd\u001dv�٭j�]�\u0018?*%��A��2f6メ[��Q?�\b\u001d5[OR,0��i\u000f�/`&!�.q���\u0012?�\u0019��K\u0004�\fL�T�}��p�ũ���~\f#B�?��l\br�7�?��\u0010\u0004��\u00115�T��\f����\u000e�\u000f)s��\u001b=s\u001a�9(� ��\u0011`q���\u001a\u000e^\r6;��xWq�\u00197g��UA�]^�Ӯ9\u0000�h�\u0010z��r5�A\r�\u0003���L�UW2\u000e����Ͻ��PH��4�\u0003�ᙴRp'.�R�g*9\u0000��kQ�\u000b\u001c\u001b~�r��$��\u001e��P\u0012���� E�$�oQ8�p�����7?�HB\u0011��\u001e���\u0018\"�f\u001d\u0016�,\u001a\u000e�mF�d������k�~[�]�'����Ga�\u0003/�Ggڡ�K%\u0002\u0015��`7�/��pɺ\u000e\u001d>z��Z�;=��bD�\u0000��\u0003�6\u0017c?^-{2D\f�n��\u0005�IXթ\u0010\u0014Eu{K�WL�@aA��:���ۧt1q��j��I]כ\u001a��\"�ͣ�Z$����K�pC�\u001e����=�$����\n�\u001e�Q3��A\u0019�\u0003���Lζ��+�0�˄�����\u0003�Ȉ�\u0018z7�\u0017������co[I��I�\b:\u001b8�zU\u0013�\b���l�f�/�Z�l�\u001f'\\s�yg\u0004������Y\u0012I���\bD��2�\u001bX\u0019'\u001f\u0013\u001d�<��!�\u000e�\"��?�~{LO^nN��s\u0003�\b\u0003�cW��vݶ\u0002}��\r+\u000e�k\u001a�&�n�����\u0019j\r\u0004L��n\u0001Y9��~&/qͽ�T�T�/\u001c���/�pǣA)�\u0003���I��de�D�#�\u0018H�G�(s�NB,�~�O\u0001.��2\n\u0003�{�-��\u0014���\u0007\u0000���\u0007\u0011W�G�\n���\r\\�g�t��׎aؓ�rj\u000b���d�$;\t�\u0006�\u0012!])\u0018\u001b�ҫ\u0016��)�1�\u001elZ\"�p��g��C���P���\u0003�TF2�.Я��?3���z��x.�\u0017{r<�`�`�\f�\nh�m\u000f�/���'�|{��>��+�\u000fI\u000f�~�i����ُ�yA9%\u001f$��`\u001c^�o��L�ta������X��\u000e�+�8��w�m�c�_��j6�aM\u0013ђ��rM�\u0011/�¿DWdL�\u0001��<\u0011\u0003i��l�V-`�{Y�]����ר����A'�\u0003Ԁ�0�Q[4*��ɫ�$�\n�\u0012���p*��iu�Rԛ��]��\u0012\u0000Vk\u001f�\r�-M�^�B���=���!\"�A\\\f���\u001d�3}�x_j\u0005)-�{\u0016\u0011�*AX\u001fU�f��\u001bw\u0003.w�y\u0003�@1>���L\n\u0015�\u000f,}�V��u��˃a?\u001e��m�D�U`!t���,�:�KsR��_�.O�[\u000b���;,���\"\u0005�\u0007�\b^�K+��(��k[e�A'�\u0003���1��\u001b�t\u000b��\u0001���:��T\u0007��>�:~\u0002�hW�-��6Xu�:\u0003\u00019�Ԃ$ˇ�\u000f�\u0005qp��6���Q�g�D%d@ \u0017��\u000b�BV\u0012^�?��@��Ct{�\u0000x�3��=�P���Y��g,m�l�Š�����Q�F\u0000�[�\u0014�,��������2\u00149E�\u0005\u0006:o\bO����q����\r���\f�A�-\u001b*�\u0013\u0013�A��B�f�{�ବє�_�_g����d�p�i�ل��dq�V����\u001a#�\u0007,3\u001e\n�c\f��_���Uv��\u001aU�>�s\u001bp���f�\u0003��}#��!̨x8\u000b�GB�o�\u0019��d6|\u001f�\u0003\u000f�H'�2rr��գA/�\u0004\u0010��\t���\u0011���$����\t��lr\u0004�\u0002��\u001a���V�&;�p����\u0005\u0007Z���r3�_\u000ed\u0016��}a^�B��?�\u0015��\u001dD.,���{\\����``�����lWT�}��K:x\u0006���w�U����q\u0002+\u000ewretc��\u000fgL�)��= ��@2~\u001d\u001d=�oVc��D'\u001a줧�Ջ\f����e\t�wI�\u0011ݣ\u0016�\u0014���5���{��<��\u001d5\u0002���%{�Jٓ\u0006���L�����+Iǘo�+��b�\n�:��%C\u0002�ExQ��\u001a�#�J�!�qvʾuH��䅴��L��H*���P\u0016\u001b�+N��[��f\"\u000e\u0004Kii�C@\b\u0015#(�CY6\u0000\u0002[\u0010\n���5�A*�\u0004$��1��[\u0003�ЪObE��tpu��l�\u001a��~�Z�����dQ�}��ش8&|'\u001bH��`�<�5\\\u0015.gR.��:���`W�1�mGW�v��\u000f��{�\u0005��\u0016�S:'”\b.8\u0019C�ndڡ��\u0017���3U~c�\u0013k�\"�Q�����l��j>����|��fW��\u0004Z���+g��\u000b,Y�)�~�{�!i,f,e]\b�\u0017\u0005CwOjK�����Y\u001c\u0012\u001ab�7�%U������~��(�>jQ���*�nE\u0017-z��B\u0011�v\\��Q�^�بb�ލ`�B\u0007�'��\u0018�\u0019{��$\n���9͋t6d�V^XI�\\�?�˼�~�m��-�@�y���%ͤ�T`���\u000f��J\u0004\b]Z\u0006�\u00046חW��s)��.��ע11ʡ���L^!\u000b���\u0005T�-s�5��%v��H�d�q�CJ����򧈞#��o���X&\t&�E�A%�\u0004L��1��\u00116��fb?�(�\u0006�@S{�Z�­kBכ����\u000b��\u0003U�\u0014\u0007$��쩈���ږ�C��Q5���DGp4Q�OB^q�\f\u0012${�ۏHcTwm�ɾ�z����\u001f֎��|\u0003�^�ڹ���)ժ�dO\u001b\u0016�\u0018���q\b�q,4��TI�\"_��\u0005�9Ny\u000fKwR9\"�3J\u0004��߄\f,喃���l�r�5!qs���(��.��zف�ƨ��T�'�ўo.�ɼ�]�i^y� x���y߫�hl��h�I�l��D\n��\u0001�\u001a�>z\u0000D��N�A����@+\u0017�iV�3g�T��kd,\u001a�tsI?�����~\u0002ª��P{\u0001\u0001}ߥe�A'�\u0004`��LȜ\u0018���l�&&�R(�W\u001c�X�\u0005�\u0007\u0018�v�ë\u0001h��9X�\u001e�ѽ-ϭ}���\r\u0013iC��}�X�UmU�f�H��[2]$s�rf��x�P��\u0015��\nO���D��\r�!�(0T�%\u0015\u0014�\n�A\u0003��\u0001%�h\u0015\r���\u0012��$�;ACЇ�[6�\u001d�3�Ր\u0000v�Z�n��\u0006�\u0007����9��U��_�;a\n��\u0010�q� �-ejāw�m@JGш�3ba����t���u!׋W��cT��d�z�T��\u001eB�\u0010�\"=}F�G/�s6fW��\\nUsME\u001b�g��Ҡ�|Q\u0002�-���\\���y��b�\"ׁ\u001b7y�A�\u0019�0hm�JS{\f\u000b��A,�\u0004t��\u0002��l�H� -��X&��C�g��6r���͊EH\u001f:�UG����^�3\u0000\u0006�Ι:�!\u0019\u001f\u000e�I��\u00160rr-;;����{\u001e�FK�>7y�\u000e\u001aOy�\fN-ϋ$ݛc��\u0019��v너�E�W'��<\u0003\u0011̯�\u0019\u0012\u001a���)��-�BD\u0006|�z�ey\u0013[j�\n#X����\b�&H\u0004֤>�ѩ���f^���X\u0010P�{��\u000b��m\u0000�+\u0003.@hQ���|\nL���y�\u0014&�4�1r'�I��F\u001e�Va�\u0019]pLA��\u0019\u0018���\"5�l�l���:/���f�wb\u001c:�\t\u001b+\u001c`WIגE�\u0012�Z�\bב�艊Է�r�\u0018\u001aݛ�p\u001cd��ƹ��`��!�٣A0�\u0004���Mu\u0018��{u�A�*�EF�X��'���@\u0013;N\t\fF�D?�EPsǹ���肦��\tE9X��4?$\fw\b��)�”�XL�\r�4��\u0013� \u001c\u0007\u0011���S'�;���bK\u0001���yĢ�\u0007Ex���\nU��8\u0004��^�&B�{�7(\u0013�0\u0001����o�ܷ�\u000e�̎�b�2�zw\r#\u0001��\u0003f\"\u0004�-�\u001be\r̂��R�h��ﹶT���i��\u0002K���\u0014T�ÌJA��4��f\u0015p�}�\u000fy��\u0012��_��Lj���$t.x��Y�\f�W��f\u0019�\tҺޚ\u0003\t���%H\u0010O*�!u<�,�;����,l�\u000e_���w.h�)���h1#��\u0018:T�s�\u0001\u0000��A$�\u0004���MX\r��6[U2���\u0013\u0003��-_\u001a4ֺ'��%m�V\r 6�\u0015���O:Lr7�In�#��Ĵb��q��S1�������?�f\u0005�yL\u0015�%�\u0010*\u0005��Xg��I���g��\bq�\u001dm��Ѭo�\u000b��J&K?��)��4��C�䣊\u0018������_V��\u00143�'�\u0005�/�\u0006�6�zg)�Ch��\\K;���`��\rL\u0001m��@z.v+DUUz|\u001bOͳU�1_�qk֩�\u001cGU\u0006[kS�\u0010٭�x\u0017�\u001c0��k�Lёo\u0014#>P���\u0002����m�\u0000{0��ϺGq�5�w��-\u001dj�W����{�?\u0011,��/�j\u0004�T���\u0017�Fx\u0002�A5�\u0004���(��ڸ��d�Zp\n\u0011\u0016G��\u0010���3����\u001d7{�ktmΒ��(�bK|�LO��4\u0013K�RH�z�#\u0015��\u001a��7Y2����}l,����;��\u001c+���u�;\u0000��\u0019k���\u0001�\u001f����\u001c:a\u001f�&V��A�\u0014\u0019e���\u000eX��\t�\u0002�\u0000�Z�zW\u00141��d�\u0006H:1#\t|ڹ�o59�Z \u000e��̅��I� z+;�/�Z�a�/%�\u0019�\u0004ΐ\u0006Uh)Z\u0019�\u0004�n�e�-͹��C��9�9z\u0005��\u0010�-·S^�o\u001dj��r�/qĀA��K6702�V�><�\"B&\u0010�� `_bpv��Ҝ�\\�u�O@�\u0010;�֜l�n6r\u0010��>���y?F�\b��s9���A1�\u0004Ā�1��&�ޔ%�\u001a\u000f�@�'\u0005U,��^*�e\u0004�\u000e��\u001c�bV����.���\r�ũF8kt˦\u0011\u0004W2�\u0013@\u000b���\u000f�t���ڝr\f�\u000e�Ձ9;�J�Q\u000b��\nh�\u000fe��O�Ǭ�T\u0006�a�\u00116A��t��5��zv[{ɥ��~�J�\u001d揆Gݻ��1�|*��o\u0013$Qo������u�a\u0015�Y�@\u0015��\u000f\n�\r\u000e��+�D\u0010�\u0018k�؆ld�\u0004��=��1R�:>g�\u000b�ː�g\u001e̻�U��\\0Z,p���T\u000e\u001eA=ܴf��ekl��SmZ���\u0016�\n3��!*?� \b\u0016�F���h��X7��+1��z����\u001f��\u0001�N��\u0002~\u001c\u0016���$\u0001�\u0014\f)r�A8�\u0004؀�ؿu�ɬ��:����\"�)��~��w5B)�)�z�\u0014�\\�}\u0013�5ㄛ���2*�.\u0014�Z���K\u000eQ\nt`�yۢ��0�lj�\u0001<�#'p�uH��\u000f�\"�����w9gH�\u001eL\u0012�̡�o�*v�٤E���\fڝv�)vgӌ���ux\u0014\"j�\u0010�@h\u0006M+e�B�(\r\u0000���)d�y\"���ӱ��x��\n��\u0018~���9)vJ����Vt�\u001a�\u0004�u�\u0004�����\t\u0001ߜ��>t�+�,%\u0017�aZ\n��K��\u001e�E\r;�3�sw\bK\u0011������\u00055�-��6��Vw���i3{\u0010@\u0012�0��\u001e�v(���z�\u0013h�{�,�@R������R� ��ȑ����i\u001c��M깣Am�\u0004��}�\u0015?n���|����;?\u000bQX�j2�|f��\u0003)��\u001c��0��\u001c�L�K\u0004G�V����E�X��(���\u0015�\u0011���c���=���S������(��t[\u0015��p\\\u0004o�kU,�jB`lN�cH�l\tS�Tnj�\u001e�\u0015=\u0000�vZ�ą\u001d�J���v�V�Ra\b]ݻ��\u0006\u0010p�b��qB��S�Ս�\n�*N��q�m���Þ��k�\u001d��\n@�1/���\u001c���.\u0014�x\u0004�.*�,����U��?Ba?�zr��ƲK�)tC�\u0011�2wO3��&\u0015(��W�H�O{%|4�Z���\u000fO���y��+����U\u000f\u00140ȉM��\u0006����2�Q12dJ@~��n�e�aڸמl!1͟�*�0\u0013��\u0017������?���\"\u0011]�|�K��\u0001T+\tr\u0002FI*����\u001e\u00197�l\u00174�A\u0017�\u0005\u0000��XВi�\u0017l\u001f�5W\u0018���ʣ�)]q�2\u0010�7�2�< ]*\u0007���$6�\u0018[k$�I\f�U\bc2�������OS�e�<�{�r�L�\u0017m1��\u00198�d��\u0012��߹3�}�lkNwA�\u001d�2�Ɋ\u0006#�\u000e\u0002� Vô�^D�vfM��\ble�d�D\u0000�b\t�^\u0015p�g�Њ󿸭'jh�\"h�Z�pC�><4�&�0�z��\b��Q�2\u001c�\u0010GƸ�\\0�\u0019\u000eG&�i����L��l��8\u0007Q\u000b�m�#�t2�FWq��OA\n�9\u001c�/y��\tM�8�I���\ng]��P!1]gm�L~��y��\u0006��(���V\t��I�A\u001e�\u0005\u0014��X�v5\u001b���V�N�y����6u�.�146��\u001fR�RČH>bC�v�d���3oia8ɇ΋{�\u0015T�L\f\\���\u0003*Q>�`�ș���^�ֽ\u0019�I��S�\u001a3��z*�k��ۨ�\u001a\u0000�,L��tf#:��\u0003fc0۠�����.�\u0005���\u001b,x\u001a���\bj�v&�T��-H�!\u0019�:��~\u0019{։�\u0013���!\u0006北\u00046�+{�\u0016�M\u0014^�.A��\u0013Ɇ4�\t��\t��f�r\u001a���6i�\u001e[�/��Sڀ\u0003n�7���y@H⺱M��\u000b&��6&'(-��\nq��\u001fǕP�\u0013�aY\u0016;ӓ)���\u0007���7�c�Ϫ:�\u0011�A\u001c�\u0005(��X��T\u000b�H*W��Ιi���邒�_\u001d��J\u0016З\u0018L`���\u0015Nkݧ�V�c��C���\b#��)]�#�XT�\u00130u��Rύ6d\u0018���\u0010\u001be2�\u0004i\r\u0001�Tl3��\u0002�~�һ�d5�����5q]\u001c�`��xbr���\u0006�+eo{%�0�g\u0004���k0���N��W��\u0002\\\u0004d��m�`s]m��wH\u001b;�X|5�:]u��ZVם�\u001d��r�FC���B�\u0017��-�V�γ����+;@��V\f\u001dNg\u0013�-N[�NZ|\u0017e!P.0�\u0018#����]?(P�@Mg���}C\u001dS��)D�-.@\u000f�ͧtэ��y��?�b����A+�\u0005<��L�' 8u%��*)�>}߭\f��X�\"#O�]���� \ft\u0015�J\u0000���\u000f?t�\u0019��R�]�8\u0011l�+2�И��\u0002��\u0013\\�_��5hmR�-&w��Y��hC�*_|����\u000f�\n\u0017RU��M�b�`8�����)\u0010Y�R��'\u0014���}X��vg!\u0005�\u0005\"�<(�b�$��g�\fin�,�I�\u000e�\u0011P�?��&��@V.|U�wj��$n~'_mf���}\f E�7Z%`s(� ��}!o,\u0015�\u0015�:��\u0003�\u0004\u0001LJ��Fo0g\u00022:�m�\\����\u000el\u001f�K�c�H�*��GZ\"�/���?q;&~V��\"�L��xbh��\u0016\"\u0016�@\u000b\u0007\u001c/�Zi�/E8���A-�\u0005P��L���g\bP\\\rs��)\u0011F��P�}�\u0000`\u001b��#\u0002�M�BG<��5�wR���\\:>��\bwv�C����ޱ<%\u0015y?y����\u0013��@'1)�>\u0012N\u0006�K�ya�icc������U_Q?�������_���QHg�$\\�G+k���:��S\u0001�WV�\\I)D7Ӹ����*L���\\8�8%u�J�)��d�X�>G�\u001b=B\u001e��k@�P���W�\u001bX�իk���\u0011\u0005:��z�����2ȼ\u0017Mri\u0007���eO���\u0019\u001ea\u0018=\u001f�M�����,C��d�\rΆQ\u0013��Z�k`$�&��/�a�{tɹԳFK`C�\u0015\fk7i�K\u0014M���T�8��I�\u0006֓�A\"�\u0005d��X��n\"�3+��I\u0014\u0019n�H2D?��$IC���('I�\u001f�Ҽ�Ô\"�\f�q݃�e\n����oĪ�l\u0002�fBQ��MK\u0003�\\c|u�f͂�\u00159Z��\"2��\u0006*�P��-;��B\f\u0016\\h2��\u000e8��_�i(f�^�UZԷ����\f!�{�[D���\u0001�W�2�\b�\u000f\u0011����\u0014���c\\ꆮ�6����nٻ&��̑�;\u000epʯ�6��!,\u0007����\u0017t�@\nc~\n� B�\"9�\u0001[�7(����lJ�\b\u0010ȹ�x�\u001d�d�\u000fS\r�O;Nv�u��Z�\u0006�����c�,(�/�'�\u001bo�O��9����k����\u001f!����$�H�A3�\u0005x��L�i�\u001f�\u0001��\f�\u000euTll@yH\u0016G_\"+�����P[O�-D�zϭ��*z-ŝb�\u0018,-$\n�t+?��\u000e���\u000e\u0015[��!r\rܨ��q�4�+t��KY���Q�\u0002(%��\u0017��a ؾ�g\u00116��\u0007�\u0001\u0000\u001evI�j���\bw�ֽ�d1:�w@\u0000v��ƫlv[K\u001d\u001b~��\u0013�ΏR35�4M����,\u0010�J5M\f$�sog>�;엟�#��\u001aЯ=�~�\u0004�\u001aqpS�\u001f'��\u0013\u0013׍�Y�\f��ڜ��‹˞{6\\�5���f�\u001e����\u0000����\u001dc��.�-�?Cͧ;H���\u000bD�M\u001f��\u0010��y2|s��<�\u001al�8\\\"и���\u0001/\u0007t�\u001e\u0017��\u0017p4���A+�\u0005���L��yrh���\u0007\b�-F��Z\u000b��L1\u0007�˲u-n滯U�ŷ���\u001d���,�\b��@{s5ʎ\u000b#@\u0003ğ�Đ�S�}l��\u001e)�@��N�\u0018c�A��\u0016@�mم8'��eQ����}\u001d�Ӑі\u0011�~0߂�7.������x�ڞ������>���Pę�V�r���y�!ڮ\u0017\u0013>�T�5�afY3�Sw�j$\u001b�>�5�P��6\u0003(���\u000e��ǬoK�G���Yq!\u0004\n��4�҄\u001f\u0017�;�\"�*�\u000fJ۶�'���\u000eq7Ȑ\u001dm�Vxv\u00100Y�c�I��\u0013~U'�d�\tP�~�*�ϝ�[�\u0001�a\u0002���\u000e\u001e�ۑ9㑒k�W�Ⱦ�A.�\u0005���L�O������Ϭ��1M-�貆7��OR� /7\u0010]�\b������4= �v^`�JL`ϱ9\u0017��[����ᲃ���ڜ�2f���?��>#� XF�ċ�J�\u001d;D�\u0002ÓCeL5�2f[��QO��c܀|Y��]�\u0004M����\u001f\u00016��}�~�0�i;:-�����w�f�Ԟb'\u0011�,���H���8�|'�|s�*#\f�\u0019���\u001cr�\u000e�\u0019Xj\u0004���\u0007��2\u0010��ӴM��-��\u001f�%�o���\u001b:�:\f�pSrm'j�1�_��K:HK��z����Lc�_\u0018\u0015��{y��!���C�h)�Y��SS�\u00119�\u0007�iI!�\u0000��g>�\u0007\\\t�$�A`�\u0005���L�:�~\u001aP�]`q�֞�\u001f�L�2���\u0012\u001b\t��C�<��,R�q����\r�`��#��\u0010Z��\u0013 1u��n�\u0016�\u0005���\u0014�u\u000b��v\f�\\M�\u0015U��S�\u0002)�\u0016���4qL�k ��w\u0018Iau�h\u0017L\u0015Fγ1\u0017�rt�n\u0012�\u0002�1���)\u001f��L� �a�]N2�\n�~�Z�r��_\u0015�ģ����{����}հ��m\u000f~\u0002쿺k �D5�4����3\u0002M�����\u000f�9v��I��;��o��\u0000\u0012�i�\u0002�G�o��\u001eZؑ��\u0018\u001e\u0005��w\u001e���؅�<�E\\��ݗ�\u0010\u001e�ܝ��;?�-��\u0004��\u00024؅F7;A �J�\u0003g+~\u0015�%!�\u001aЏS��\u000b�\u0001���1��\u001b'��nR��x{\u001d�\u0000.�8�q�ݔ�p��ʄ�\"��$�A+�\u0005Ȁ�M\u0017}��\u0004�#]�Ú\u0000%��F5�R`1:(�T9΅�\u0011,�� �\u001e�:\u0010�Ȯ�kl��\u0018?'\u0019\u000fr�J\u0019�x�\\���ʫMH(T��K��z��\u00135��\u001a�L`�M褽\u000e����:��\u000ff_�AY�S��1�S��<�\u000f\u00177�럖���\u0010e5�'w��؅���e\fД\f0F�?\u001f-�&(V\t��J񍢼*\u000fm�rWo��E��ng\u0000\\ �\u000f��!�m�tv�B������ڔ�\u0012����\u0019�RUrV��䝻*���\b�({����\u0005ʬP_L\u0019|��U)���#�\u001fb�b\u0019]���j\u001f�oF �W�����c�DZ\u0015�T�d��vm$�G�\u0003\u0011�%aI�A*�\u0005܀�1�y���X7�߃\u0018CH�k�\u0006�a�\u000b[QS�P�ܤi��\u0016�^�\u001f1�;oa\t��\u001e�mh\u0012mď�J��(�\u0015�F�02ѿ\u001fŧ����\u0018\u000bC�\u000b�_C�O\u001f\\(\u0018,���0�\u0014�\u001cZ[kI@74�\u000ear�'�?\u001c��\u000b�hW�O/\u00025��i�(�L \u0012�3bd�%�⥶gx��*�f�\u0001@�7�w�{m�%\bL��_\u001e_�Zz}�]A�\u0018\u0011;��U\u000fV=��\u0001��Y�w�:�~†F��[\u000f�\u0019�y��\u0017�ae���3�����s�!��F\u0006`�\r�������;.\u00156WܯRy�J_�bL\u001e�AF˯�B��Cs�0/.��\u001eP��n�\u0018��CأA �\u0005���Mz���K��5�/�+ҍ��wG�\u001d���Cy^��9^��Z�:]�@F+�ĂL�)ei�\u001a��/���^g\u000b�a\u0013iRƝ\u0005��0���\\\u0004,`wF�Q9ruK\f\u001en\u0002���DD��'�\u0002�lF��,R��k�r.�\u00119x#_Z��\u0000���m�b*���;Z8\u0005�\u0006�S�\u0015�N|Wr�`�k;?�\"�g��\u0002�kx��bAe\u001c��\u00129��l�xm?\u0003�%89�톻\u0015c����?H3d�?k*�<#(O\u0007�q�\u0004��&m�q1��9�/�w��\u0006Vo�\u0015Ҿ\u0016�\u00139�U�[^��dX�\u0002����\u0014�9񌡘l��\u0010�nEw��U\u0015�����e�A\u0013�\u0006\u0004��L��c��f{~IC���=p�%M�\\�Ǹ<{����N�H�\u000bN1\"\f�Q{-b�L\u0016c�n\u000f\u00033�*+�A��k�wS��g��5VD�%�~D#`�\u0005�@�A\u001f\"0\u0006^t� �a\u001df��\u0015Jn�� �\u000168,&u�T�9�C\u0005e\u0006\n��8ՑF�/z��\\�@�˞\u0005G����\r?E�!1��\u0014�\u001f�@\u0016�Eɕ6�+�N���gFu\u0018\u0016�\u0013�P�+'�7K\t�`�y&�]2���+K�I�\n\u0019\"��r�����I��M�\u0015�-��\tU�3ɮ���������}��i�\ft �V����{\u001c���\u0002�H�񔉕\u001a�ܣA#�\u0006\u0018��1�%�@�,\n�E�\n�$^̜�THK��������j@��\u0000\u0004?��$��4\u001c��\u001dn�\f�c\u0001G\u0005����:Ę\u0019�\u001f�c�Z����-�\u0018�<)�(�\u0015�it�-��ˆ�S�Cp\u0012\\�=T-y��AE@\u00068\f���B�\u0011|�\n;tiOϣ�nA�N5c��\u0019�,�~\u0018{\u0011a�q9�������:_C�o-\u0013�v߳Ż�\u0017��\u0011V��Ig�T�=�+\u001f{7EoSLAn�A(�\u0006,��Mz�\u0011G�&�̈́���\u00053\n�\u001f\u0005�$!d�]z���z\th�ߑH#��34�\u0017:�\u0002s���J�\u001f\u000b\u0007�\u0010\u000e�p\"\u001b&|�\u0003D��T����0Vك��R\u0015jq\n�l��\u0007S�o�r�R�iB�����fY�:�L?r��z\u0005��K�\u0012��}`\u0004R,�h1\u0006ϛ#U��\u0001����T,��,�\ts5�'Y�v�\u0010��=0�n��/�s�I�o\u00054\u0005�܎]�wUveRZ@*�oY�\u0012sQ̏�ƥ��ͳ�c)\u0000���\u000b�ӷ\r�����Ͻ\u0006M�>���\t��\u0012��0�\u000e���ڤ=�\u001b��k�.R�\u0016�v�� \u0003|��9�xlՂ��bEF8CD1�R�A*�\u0006@��1���t0�9c5g��e�\u0006��%�h褛 ��\u0011�',ɠ���7��@\fe:�٦�)c��e5:ofik��2�\"��k\u0011�\u000f�7N1\u0010\u0012�z.$#�z\u000b\u0005!A�\u001e٭��1�˯�.b�\u001d�9E*Y�#Io��ag\u0007P�L��wn\f�3��>�#�\u0004\u0004Be\u0010�Rqlc\u0006�d���ԫ�E$)�:�w�R~\u0007�`Qrj�C#�\u0017\u000f�����A>�U\"O*�Z\u0019P\u000e\f�C5\fG\u0004��n�\b\u001a��\u001b�&�F��+�\r�r�+�1�ak\t\u0019b���� ;i\u0003�(���L�@Rố�\u0005\t\u0006�!��\u0002��׵c�1��t\u0019���J3\u0010��#�F|�F_gb5Ӝ\u001b~�A*�\u0006T��/\n$FS��1\u000f�T�I�!\u001cC�U[I,\u0012֘���=��Gp�>��f\u001a(�\u001ah[�yn\u0003.��\u0004��F�\n>���ܢ�b����v\u00182�+����H\u0000ӂD�?\u0015X�@\u001f\u0000��^��?���R<\u001cJ��:藪�\u0004N\u001b\u0019[\u001a8B|d)߱]g�\r|)�W��{��|d`%��^���\u0012{���\u0019q�\u0013 �;Yd,ѹ�����٫}����%m\u0016\r\u0019��{�{q%\r¶�:ů�\u0005���𞄤��G>�\u000bD\n��\u0015�������LY��E�o��I�#\u0018�%%}\u00009Y\u001a@븅N�Ͷ{��$a�\u0019_B7��\f����\u0005n\"��f���ϊ:c\u000b60MS��B\u0017�\u0006h��|��e\u0002�s��\u001d�!Jg��\u001a`�i�M�\ro\u0018\u0019�bwz\b���\u0015�7�4�(�ִ�\u001c��s���K?\u0007\"lTW��4�t�E�*E�t[ך\u001b��\u0012��Y\u0006�����b�Dt�)\u0014����H\u001cV\u001f��AS�M��5}T$�\\FT\u0011\u001e\u0018�}7���*\u0015u\u0005�)�:�\u001e2m\u0019`��@�?�~\u0002�S����\u0018\\��щ�s�\u000b�K�D���^2fL\u0002���\u0007��&7(J��'�`��b��X�۞�\u00181~$;��T�\u0017�~�)�\u0012�?D\u000b<�\u0014��HP��!�g\u001c�s���\rm��\u001b�wP������\u0007\bDL�h!�x\tšu\u0003���y�Ya���\u0002�\u0011\u0013(�\u0002qmQ@��\b�c�h5��-�'~:`n�b��\u00022^Q�RZ��W\u0017b�C` U�X>��\"𙑗�b\u001e�*�?���\u001d�\u0016a��)�kp�1�\n�*\u000e)\r�n�J�MI\bv���͊\"��mg\u0003J���C��z�c��g]���\fG��{i���wj�\u001e�~\u0010b$|O��\u0005R�)\u001a�\u0002�&P(�\u001f��\u001e��J\\\n\u0014%3D���cX���u�z\u000fY\\\u0013�\u0012A7�nh\"�7`����_�\u001a\r,PX��C�(��҃\u0017[�P\u0001��:�?�5'\u0001\u0013�n�i@;�'���Ӂ� �l��N\u0004hJ��i��\u001c��;����Y�o��|�_�q�.\u0011v`�?1\u0016�_��7��HMF\u0001�4��T3�/�)W�wD\u0012�\u0014N��\u0017\u001c\u0000O�\u001c;\u001d��\u0014\u0010�����'�[u��*e�=�e��\u001b:\\=�f�\u0007��-��6C��쎑��B�\f8�\u0014k��C{\u001a]�U���s�޽/GÛ8�*\u000f�(C6:tb�i\u0002��\n�`\u000f�(�\u0016zS\u0002\u000eWj�\"ׯ.�w����\u0018-\u000f6���\u0005'�=@��\u0014�oֺķ�\u0014\u0002�c�\n;3�\u001do�a\u000f�@�&��\u0002��\"\u0017�n�A3�\u0006���0.�2=g��\u0010m��|[�|ݒ_l��\u0000��j�)\u0016%He/�\u0012c\u001c�f�d\u0004/t\u0000��R��4��ym�`�Il���k�*s<�Q��s{��!q7�\u00188j��Ɔ�5��e�_]��\u0018���2IԍS��\u0019�b�޾RJ�Q�H\u001e��\u0003��e�u�\u0006\u001e�b<�(��\u0002���+�\t\b��^�L��a\\�X#\u0002\u000f\\[�Mu m�ǘ�\u001e�y{�\u000e��\u0019\f\b��\u0004��\u000e�\u000b��\u0014�\u001a���\u0011��`�B}\u0015;\u0003\u000f����QH�U���J8��\u000b�E\f���F�\u000e]��h���\u001dWR�9�v-�Y��I�?��%\u0013�b\u0007��G�L\u0019$A=�!��\u000b\b�\n\u0011\u0000�&07��\\ܙ8�x��ɣA.�\u0006���.����D?�� 3Je�)\u0017\bߪ@��\u001a[.xRA��K�rѮ��\u0000YS\u001e�hS��\u0019`�G�@s\u000e�5�[�?�iF~\"���e\r}�*\u0015�ğ��K\u0004\u0016k,\u0016�N�c6����å�Ù�\u0015�K�o�h�p�=��62�_��W��O��Km\u0003\u0018YCי\t�1」ݏ����2e�\u000b��S�8:g=�O����\u000f�E'��N�������G�V�\u001e��$�|ɺ\u001b`�;�>ĩb�A,�\u0006���(e۲re\u0002\u0005H�GN�{\u0003O\fj�l�GmI�:s�7��w�F9�\u001b'\u001c�$�\u000e\u0000�!ՙ�bS��Hi紋Jl��N�\u0006�[������3�Fӻ�#�|�U��P��\u0006�X�f��\u001c�#�\u000f�J[��.�8�r\u000e��f�\u0005�3�H� �Vo�\\*����Jj�!\r��B3 EQ�B2���Jj�\u0004�0V\u0007��\u0011\u0015&��W.�y?��b\u001dE�K�F�\u001f\r�a��\u0018S͝�s�F|'�v�N�*b�w/\u000e�\u0000l#�S\u00038�����Sq\n\u0015�d�.�g��G\u0001Cʰ�\u0002�\u001e�}?E�\u0003\u000b��V��L���\r�\b\u0010m|_#eD��\u001alp?���}mN��D{\u0006`WCh`�A.�\u0006̀�\b]r[���\u0018�@�x�4E���)d=ÇU�Og�6�\u001a�{:vNN�I���9�\u0000���\u0018�P���j\u0010�H9B�as\n\u001d�1�\u0003� .��7�K�\u000e���2\u0001�0\"I�\u0012�����-E���f�C8ʏL�%o�\u0011���WT�o�\u0018H��za��\u0005�\u0016Q�9�H`�wK����@��|D2�u\u000f4\rtx�_I2�X��\u000b��?���\u0010\u0014a�0�d?��uՑUQ5��*��R��g\u0012�L\u0017W�\u0016ύ1�]�\u001e�CW�&M�\u0010֧x\u001f�=O\u0017�PÕ\u000e��P�����\u001c\u0006���ʑ\u000e�'d!·\u001c�i�\u0006+�\f]<ĥ����֊���'\u0002g� �������R�\u001bG��&�Aс\u0006���}� \u0019t!\u0017��b��*/k\"�6|��ruga��#\u0013�X�h\u0007��\u000f�8��}��}�\u0016;s�\u0010\u0017+='U�[s�\u001des\u0002�CE\u001cL�P�x�ɺ޸��X7u��\u000b�\u0005e�{qﴮ���іj\u0014��a9�7/�O\u001c��6Jx�\u0010)\u0002\u0013�q\u0019�Z�ů+��B��\u0005��h<Ŷ�>\"�@;5\u0015����\u0016َ��\u001a���\u001d\u001c���^|{\u0001��C{�CW��\u0019;\u0000\u00040\u0005B;��7\u0011��2\u0016��\u000b�`\u001f�L�Ko&q�\r��n�����Z��(L�3/�ԋB#Q�\"\u0019�e�6�\u001d\f+\u001bc��]���G)X\u0014B�9(^b�\u0003\u0001��v�>�i�ֲ8�׏͕���s�I��R�a�6��,�1}e��\u001e��2U��z'\n&�Rc�&�j`Z�\n�At�\u0000�\u0015���hv\f�L1fpC�^#���5Mɇ�\u0002C\u000e\u001ez�h2�\u001c�[X�\u0014;`��׿�UMK�\f\u0001dk�$K��6L[\\C�^6H\"|f�N�\u0010\u0013Ci\u0002Ao莝�$ ��+��qCwR�ے�\u0000ꍧ�\u0006�Z���~\r���8u���\u0012a�A\u001b�\u0006��X�b����/����s�\u0019w��c�Ȧ�#�\u001fd\u000f(\b/E\u00040�\u0000@��\u0006։\u000b�\u0012�! ��3\u001c,lC�\u0007G\u0018<�~f�m\u001b\u001dk�\u001a)�j��s8h�+\u0014����]��ȭ31�\u0004sdq\u0002oK��vY$z��\u001a����F�Dd�\u001f\u0006\u0016P��üp�md���\tX��N6^X|d\u0000?\u0006���\n��6��Ur�_��;��n[�z���1w��+xK�ʎ@\u0016\fRN\u000fxQ�\u0010ln������J�:�\u0003��`��D\u0015S�B�\u0002,�d�%�ȇw������#�zF<\"����M�oI�\u001f��Q�\u001d�\u0016�\u00033!�@\u0001g��\u001a�\u0012��\u0014��A'�\u0007\b��X��\b�Sv�_6h�d%L�q�����\u0017a'��7Y���(Ō��g�}\u0001̦��i}Z�U\u0006�\n�|�\u0015��Hr�1�� �\u0010�8ݓ\u0000�˴3 ��f���\u0010\u0011\u0018�(�K\u001fiYr2\u0011�v�\bwY���ѱ\u001e_<\u001a\u001c4�b�M�\u000e�C#\u0003��(h���(�\u0003z�4`ğ�\u00039cY��\u00073�� ��,��x#\u0004x`HI\u001b��ᠸZ��ʵ���AؾX֙g�%��\u0001g/V��s��\u0014#\u0014�ȩ��\u0011\t�U���tWv$��2X���\r��T��\fZ0U�aL��>\b�����G�\u000b<\n��4E7��Rb`ZN���\u0000v\u0006#��\u0018�\u0005j\u0013�WTI�A'�\u0007\u001c��Xнu\f�\u0003����\u0018���.�/���U��\u000bBK��\u001dh\u0003�.ɣ\u0014oR�\b�>�\\%qc��#T��ݮ������jP*Rke�ΧDo[c΍�>��k��Mi�\u0015�13�G���v`\u0000�8�/Tp�!?�I�\u000f�z\u0011\u0016�\\����}���gō�=�q����=�G}GX$H\u001cI�\u0010aI�\u0011ۖ\rūeҫ\u001b\u0006M�v�B��^�o\bH�\td��\u0011�!Óg\u0018\u0000�hh�h1�\u0013��!�!s�¾\f\u0010���ơ�\u0011�@\u0011�Mģ�Jx��\u0006��\u001d��c\u001d\u001f������C�3�i��R��\u0006�\f�qT�E�����@�� \u001eKJ�\u001b��貕��?\"�A0�\u00070��M\u001e�h�i����\n¿�h\"_��W�{\u0014��\u0015=:�42܎\u001a3 7d��K�%�i\u0000�\u0006�ws\u0004]\u0006\u0011�\u0002��~T��`?J�V2_���z*n�Y/ƪX���$\u0005�\u0014[\n�G\b���v���^U\u0016p�\u0007\u000e\u001e�1>x�_^��\u000b`�j�ԧ\u0017��z�uDCL\u0019ĀX�\u001a\f{\u0011��m \u0010,&Y-�Xp[�6\u0005���1����\u001f[�:\u0001�\u0002%�6˝�r��0�\u0010�B*�\u0016\u001f�\r��(&�y���\r��س]���}���\f`|0����p�G���ԋ$�o7�`@�o\u000bh�k��\tÏ\u0002�\bu�/������R��\u000b��Q{��گ�\u0006џ�q«\u0003�1L�Bz;\u0003ۣA6�\u0007D��M2��$}x�O=�\u0001�h,K���O\u0011<�\u0016\u001d+c���GB\u0014��p�'\u0012�0�\u001e�%��B��\t\u000b�\u000f�'��$2_�\\�.q]6�&_\u0000\u0019�!o�<\u0004\u0005�R�rҺr\u0002!�\u001d\u001d��(��Ӭ�$\u0011�\u0007��?+�\bf��-T\u0010�\"Sg���q\u0015z��}r\n��\u0011\u00189x�F�\u000b0�;�+޵Q�#X9t�?�&\u0019���\u0015��v\u0017\u0006ͩ_�-)[\u001bN< P� F����\n��H�r�5\u0006l2����B�zk؄޿͕T���ü�7�l�],� �i�y\u0006��v5����&Hpb���kgȊ�����s�A��e;\\,��K�=B-\u0000�b\u0019�B\rZX���\"7Z�\u0018S�?\u0007\b\u0004�b4�ݣA'�\u0007X��M2��\u001b�>Z�ͦ\u0006\u0006��Mޔ�Ąm\u001f�\f���\u0005�\\RU�s �����Ֆ~��A�J�;����ڻ��\u0003\u0000\u0006�Zb)��\u000b�TI�l��<{�,V\u0013��\u0004�4\u001c$�����Ftp�K0ϭi{rQ�%l�gR���\u0001�$��Q��\f‚X����/�M��M;�\u0011\u0015��g�\u001b�\tK����zOz��A$�\u0007l��L�\u000b\u000e\u0018���n\u001d�\u001bE���S�\u0017o�5\u0013qF\u0016�T)p \u0000\\�!\u001a�u\u0003\u0019\u0012P�\u0006I�|��\u001cЩ��e,�s�\u0015\u000b��\u0006K5�A�Ҟ�Û�\u001cq���\u0013��'ccd���\u0018C�H�-����V�ia't?N-���3���rNd0�$��&�\u00003�!�ac>��]vFn��\u0015u;�(�S�rJ\fbJ�>#�5'v>m�\tp�:��r,���[���<ӂ,�o���=���\b\u000e��^&$�d�\u0002p�t�M��\u0017�&\u0019�u��Я�[R\u0010}������y�\u0004�\u0007fcmq`8=-�\u0005vA��Ꮖ���ZY���\u0006�H��Fhzh�r\u000ew\r�]��\u0011v�A'�\u0007���L�\n�N[A��\u0005���[\u001a}\u001a���yB\u000fy�>͘MPM���Џ�����/�\u0005VO�I�57\u001f���5`��͟�\u000e7V���|\tOwhr�ԍ\u001a�lL_R\u0006���\u0018k\u001fH�[��\u0017���zDҺ�l�J\u0005L[\n��b�Iس�b\u0011A����b�\u000eMϋu�\u0019N�Q��Пf�-���\u0001\u0007��X0�\u0000����3�����@�\u001e��%txB���}]\u0011t�\u0007��\u0016��\u0019\u001d�Q\u0016*L<�\u0019�,�\u0012�8��DZ��h��\u0019�Yk?�\u001e\u001d]�s�\u0000�p�1�9CN\u0019�\u001d�H�:�B�g�먇5�_\u001ap��\\>\u0019��D2?\u001b\"\u0001��J\n�CL�t\t��\u0006�}M�\u0012�K[�A*�\u0007���L�,Z��Y!�\u0002VW��1��=�J%���J�.z�9��\u0000\u000e�MZ\u001e\t7�\u0014C���EU\u000f�+�ս��$��Y��H��\u001b�$T�\u0015\u0017���\u0007�\u000eE\u0002�l\tbE=���z�?:}@Z�Y斑A�e�\r�\nq@\u0011�N�W6\r���0��mw\u0000�Z��3�Vs���k}�������FL�cwJ1��\u0012��\u0001�GDO��),M=\u000b�d�P'��Ⱦq�;\u0006�C ��J?�\u001a��Y��A)�\u0007���L���u�Qu�Y\t!\u0016��#�l��5�M�g �*�����%�;�y|\u0001=K��Vkz���yP\u001d��N\u0001F0�d��򖓓�W�@�:�\u0002p��'�N������#�LK#d�.��e����Z��d\u0002�R\u0013Pu\r��r����\u0010[9\"��\u001av��u���J\nA/\t�n�,�\u0010�,�_ތR;\u000f5e�\u0010=P{ʊ��������\u0000՛\u0002va�-\u0005���A\u0015Ŧrx��\u001d���h��ӵ_?\u0007�8:�\u0000EU��\u001ck�)�q�\u0015\u0003\u0017\u000e��\u0000C>\u0013:m���.Qan)�0R���\u0019sQ�''�?/\u0016\u001e6��y���_� ������\u0012��Ǹ��υ�չ*-�A+�\u0007���L����W[]�\u0016\u0003�\u0017л\u0018�fq\u0011\u0016s����A��h�W��W�nk�\u0015�ރ���g�]!x�Qi\u000e��;/@uTv-�޸\f��^�W�<���v��vkB���\r�B D�I���YG\u0004V��\u001f\u0004�J��\"K\u0007\u0012\u0018E3\u0017\u0012gi(��2��\\�O�mѰx12�\u0016\u000bN]Y�^�\u0006�V4��\u000e������h=�]o��lV��.�lR\u0001\u0012\t+7�^V�\u00049��\t$\u0006��6�1t�\u0016�^U��ͳ�\u0019\\;o�\u0017F\bC���DsH�(@���w~\u0015P45��8QnILf͟����~<��5����w����FSC�\u001e���\f4��gB\u001a\u001d͇\u0001\u001c$�>��ы�ɣA7�\u0007Ѐ�L�ܽ\u0011�����\u0004������!}��!_n��/����GJ瞰�\u0018��s�@W���\u001c@S��g;\\�=wV�D\u000eB̠��B��Vڽt��f|��1�}�+�q���8��\u001a�S,�U��r�\u000b\"�\u0012qxޙ��\u0006FD�Nݒ9lZp�M|\u0010L\u001e�ܛ��V'˄�ͺF����@\u0018���o�s\u001dW-=�\u001c�0I%��evD\n&$.��ͽs�����\u000e��*�?쨟�����6������SpP�2S{\bA�?0��_,} ��s��]F�p��\u0018ߵ\u001e����\u0018�r�I�N�v�w�ղm��6.\"\u0012G\u0001�Q�\u0014^��:\u0012\u0011v\\�\u0013�!iaHN�\u0005�\u000b���>r(u�`���\u0005@�A2�\u0007��W���p���b\u0000r�ri��@��جs�.\u000b�`EV\u001cI�U���J!��I�\u0011�\nA;N<'�|�0��\u000b�W�w�\u001b�\u000f\\0z�o\u0003~\"c��\u000f�@U,���\u0001\u0013Jܰ>.���\f\nW#��-�?�q��~]�\u0016\u0019\u00196�V\u001b��5�F�1ؒN\"J��\u001e^[=ַV��ȩܘ���l�\u001b�桶EN\"�zԗ��T�H���9I)\u0000�?U�o��N�a�\f�\u0019���H��\u001bx�KǠF�\u0011�P���\u0011�����v\u0005\b�\u0014p���-2����n�3�;D���@T=��h�T�V6 �E\u0010��'|�[a�Mq1���l\u001ae�\u0018En���^��\u001af�\r�v�E��Fah�x�A3�\u0007���NK�Ia�L��\b_���5�E�z�\t�\"��mL�q����K\u001b�+S\u000f�f^�mt�x��O\u0019.�)J\u0017,�\\E\u0013�-?\u0017\u0017�\"�\u0004*�wU�I*�'(oQ�)�\u001f�\\�����7?$�V{a��~�\u000e�҄9C��Z��\u0003~�����U\u001cf��\u0013�\u0012\b��5\n�V�M��VtV�!�T\u0006\u001f�U�o\u0017\u0014.\u001d�������/í�\u0005�O�U:%\u001f[�\u001f�\u0014Qh�V��d6��\f#�\u0019ާ�\t!�%\u0015�\u000b\u001a\u000f\u0000�y*�\u0001Z\u000f��[]N+�E\u0019�4�~�k�9=b\u001c\u0003SW\u0012���\\��o\u0007\u0019'<)��d\u0003�<����'�΀�N������\u001d�>ibX�\u000e�\u0010i�f�$�\u0015��ZF��A?�\b\f��M|�\u0002/�B�z�$��p�{��G1*b܃$\u0019�Z�(Mb�,�Dܱ=<\f�\u0007��8)���%Go�n\u000es��n��\u0003.ޥ�fi�\u0000��9�\u0016���\u001d�}R�A��g2?\u0011H�\r��۳�p\b��\u000b��\u0017\r�\t\u001f��\u001a�\u001e�q��\"\"e\u001e��H\u0001������\u001f+�h5�iKJEu�p�R\u00146�~^�-\u00005ֽ<�:�t\u000e\u0012���~�^\u0006���h\u000e�EQ�?D\tu��-g�/��\u0019xĢ9\u00152��e��\u0016�2�\u0017f��H��h�+�\u0017\u0003\u0019]т=>.�c�ی9���{0��H�\"i\t�ꌊ�\u0000|~vr\u0005�R��1��@\u001fSiA�\t�A:�\b ��L�H?�gR�櫗�����\u001f9�.�_�\f\u0015TE�\u0011f=T���>ڈ��Dۖ}Ay��?��\u0017�1��q��\fxŷ�6k\u001b.�\u0004\u0001����$⵷�i��S��j]�\u0010G}P\u0016ս��+@T�/{t\u0004��\u001d���n%`�[��\\e�~(d�'<�M�����~�O{7���8-\u0016��� )\u001cq���se�L�-�أ s��Z��5\u0014��\u0013g�h�����\u001a��\u0012ôn�\u0019\u0000\u001fPIc\tf?��S\u0012�����'���Uz�����\b�6�p�A��(fe��6���f�ۭ��3ӔSJ����2\u000f1\u001e\f/�߉\u001b�c�Y��=^�1��x�*1U�Di�\u0012\u0011\n��\"\u0001�ǣ��l���t6ͱ:x�!tsW]�B@\u0016T���tS��!�<�ԝa&��\u001e2+\u0015�x\u0011\"��af/[�/:�\u0011�]��f�����7Y������\nʅ\u0017\u0011�\u0002�܄6F�\u0017I�\u001f��O�DT��?���A�\u0011�Z�o�\u0014[�\u001cՎx8j�1_'��?����:�A� ��LTQ$��}��\u0003�@ƭ�\f&��E%A�AE�\b\\��L�3\u0014�\u0000F�'���\u0002�K��›M'��d�Z6Ͽ��ن\u0005 �7%����yF\t\u001f`� b��ȉՃssq]�ϣ#v�Bn��.1�\n�c~\u0012�wE�\u0001_�\u0002\u0007�\u001c/\u001d�w��K�zd:Đ���v�\u0016X�\u0003�~j'�K�Y�\u0017?��kJ\u0011�'v\u0016M\u0014zl��5�3��Y��Z�-'�'|�����1�\f��o��w{�c�X�u�|�k�wF�\u001f$��G��PlT��sdޕ#�\u00029�����?��=���M�}�y��\u0002wg��SyU�\u0013�� ã�ӌғ\u0013e,�\u0007D\u001b`���t.772Y�Z�Q�|�7���A!�E>gɁY���e��t\u0015\u001c��:@����,��t�\u0002:��$�׾ .�^�=�A��\bp��MD\u000b��@2\";�:�qIO�\tS[i-��]��^�T�z�\u0007��@��\"�+/I�/�\t�|��*n�\n�<]y��29\u0013\u0017&�\u0010�\u0003��c\u0012I��~�x0��\u0016i��\u0015O��'d䶲��G[�\"���\f����!��\u000bΑ�.\u000e�\u0005���]\u0010�\u001eW�(f�Ea��'\u0010�x��5w�\u0019�\u000ee���@0�Z\u001df��F6�9���Q�hvhb��\r�t�\u0001}sD\u000e���=М�X\u001b����dnJ9�hX�z(���4�6�B\u0004����Z1��~\u0019E����U�0�3Eo*Np�gU��a��H���#��t^4E�\u000f�e�j\u001dwWFkt\u0004\u0000\u001b�*O�&����d{V\u0014n�\u001c�QΛ���i\u0019��S�4�����\u0015��a�R\u0006L�AI�I�\u0000�,�k8�4z4!ܨ�s��\\\u0016�)��.C\u0013���x��w�����3QG��\u0013��s�\u001b�%1\u001f�)u�RM'��C�C��ݣA1�\b���MX�|��\u0011gu �\u0004Vݝ�\u0018�u�drc@N\u0018�\u000e���\b?/.ef�F�{*?��\u0006k�P]fb�\u001f+d\u000f\u001e;��|���L�V�s�X��\u000bO��R�S\u0006Eʋ�5�ƀn�w�\u0016�gn��\u0004NS�5E�)զb�\u00180\fJ58\u0003���8Ko��\u0004��.�e�&���\u001b[J� ˌ�J����Ih�^k��7?�\u0013�\u001dYrI|�?'せ��\u0015�|,o>҉��#��\u001a��#\u0016���hpt\u000e�\u001aɢc�NHw\u00162>�Y�\u0013Z�>w\u0000���\u0019�J-�Mp�\u001c\u001c\u0000�A6�\b����\u0019J\r��\bF70J�\u001e�y�� ��g\u0018�\u0004�]����\u0011�\u001aH\u0011\u0011��@ɛ�H���D%�{!\n=O��\u001a��~z�m\u000bkFn�v�\b�^X\u0018�l:\u0018�!�\u0019�B9�\u0018B\u0014��$\u0002zI6�m�\u000f�\u000b�*���J�E���w�(1���ֵ\fC, �u@A*�M�s��M��������~])[���\t�h�\"S�\"��\u001fK��\u0018��\u000e��)F����\u001eBXK�����{y�ڎ��T\"��\u0014G��� ��\u0016s�m,��\u0015�8�X)�j\u0014HQ�0\f��La���շyz�\u000f�Y�\u0007��W�js|3�\u0016��⌮\u0007D�\u0004\u0006,+\u001b��M��\u0016�{�,���+ncѓw�3\u000f.@\u0010��¹�A*�\b���M\u001d���K�493r\u0005m�F3��(��\u0017š�k�li��W?�>� ]w����>UoS���ơ���k\u000ez{&���%ن�1�Pχ�\u001e&�\u0005�����MUs\u0017\u0010�:�\u0012�a�t\u0012����i��2�r�\u001aø:���#�\u0014�d��t[��oc6\f:,����\u0001�[t\u0014b���G����PwB\u0012\u0011��>\u0018�$2ʿ\b�n��{�\u0011'�W\f<\\�-��\f�%� \u001d�o6��YF]�er����j�\u0003h'Xĕk�o3���z��L������+��ઐ��_�6NlZ�!�zU^�`��o�%����Q\u0010�\f�I�A;�\b���M&�����\u0012�A�\f��2�u[U�e�P%@_��\u0017V�\u001c�6��V��t\u0006s�D����\u0011�z=?�\t㓑��\u0018�?�\u0011�Y�#�q$�\u001eo�}����\u000eN\t%j�ZX�\u0002�W�\u0001��d{�/�0�\u001f�p0xq�$�\u0007\u001a\fת\u000e�K0\u001d\u0019r�ŐIaK0\u001d\u0019r�ŐIa\u001b[�B0�G2�\t\u0003kr(F\u0017�\u000f�?�\u000fkCܸ�\u0000��\u0000�\u0010B�]n��vKJ?�\u0013�P�Kw�\u0014\u0015]8�7r\u001e�\u001d��÷�3eљ�S��\u0012��C%{�̚kMO���3��d�x(&�����Dg0�1rm�����\u000f�G����+���|�\u000bM\u001d��{x�xR���yIĞ_��T!O\t��G#�R��\u001b#\u0015墲IF�ō+\u0018�\u0005R~AP�U�\u0018���D+��[�-&C��\u000e���\u001a\u00148��b=�O�\u0010�\u0019U��qgL]�>�� MXЀ��da����vX�?@�:�,\r����z��w���r\u0014��\bH\u0014�S���$�\u0000\u0000S�z;ʺYJ1\u0013�)��/�\r)#�G'�\u0005vk���Z�6 ��ѕ\u0016��宮��Ɩ�!/�\u0017���0\u0011\u000b���Pa�\t��\u0011\u001c`��QT:�D�O�b�����J���k\f����K\u0013휍\u0003�:���\u0015�8Mi�)��\u0002��nd���R-����NM�\u0011#�\"�y�*n�\u000e��}��i#x7Ȁ�\u0007ȭ�h�]��ΥI\u0011wh\u0002J\"�eM3S�r�ʆ'6/�?�>2]\"{O��AZ��om\u00164���\f_\u0015ӈ6�ә?��\u0011��%GCs=���zf�+Opk�\u000f���1���s\u001f��s\u0012*��l\u000b�cTd�?����p\u0012�W4�\"�ݷ��B��,t��\u0011�\u001e��Q�U��_������N\u001a2\u0010�\u000e\n��W�d��P\u0000\u001b��S����A*�\b��X���\u0005���Y}2:\u0016����$s����լр���M�I�D��$Oق�\u0011�8@4]\f\u00199�م�H��[\u0015Y�o+��J/�U�\u001e\u00058�Ӽ�Gp�\"�|C;L�^���jS�\\9�\"\u0019+[g��m��n\u000er]���If\u000bG��\n3܏i�}-\u001ct�j&�!Z'��8�\u001b�֍�{�\u0018O�@x\u001bW�DC��K)n\u0016�b�9�\u001fVJ~^�3�v�as\u001a���x\u0006�\bEH-�f��e��f7yW�l��J�\u0002�Y�U �\u0012.���o�\u001b�P��`Q���m\u001e�'��YEت3Y�ph�'�\f�\u0003�\u0010\u000b:ŵaP,��}w�p��\u001b\u0003�I�\u001b+Ƿ��ʉ�A\"�\b���X��5�i�Q\u0013���� a�􅐉I�\u0019\u001c$��x\u001c\t6����7��Q٩�VR�9\u0018ȣ�/֦T��F\u001c�n̓.:y��\u0019#�͋ӧ�f�G�\u0012`�l\u0003T�GZ13I*��U���Z�M2]�B3��\u000f���\bd�\u001d�n9>=\\8COe�\u001b��XU�\fY��Oi��4\u0017\u0005:ϊ\u0018�,� *��\u0000��z˥0oe=g�\u000bޕ\u0000��W����MFF(\r�#'մ�:\u0014;\u0002L�s���\u000b�c�����b��n���3�.��2�\u0010���G�\u0014�)��@M�榄�ZT���'���P�\b&`��B�5uH�k�G��b����L��&�l�d�A\u001d�\t\u0010��XоS@3��5��Xǵ��\u001e=⾔-j�8�_T�\"����:��l�|;\u0017�h�f�\t\u0016�0((��\u0013߽��xC'�̚���[�\u001f�<ڄy)������wT\u0003>ۧ�Ms{e�_͌��k��\t\u0003������\u0005�\u0007���9��$�s�)\u0004�D\u0016\u0004\u0013.5�h\f��'�e �\bӻ|z���n�b\f�6�\r\u0010f\u0005-/g\u0011\u001b��4%\u0017zC$m��#���RT(�O�1�\u001bL�=n�\u0003�[\u0017����������$\u001e�RR;\b�Ő\u0013\u0019R=�3��I�ӯ�3��\u0003�^���E���5<\u0013�U�~zd���]/{��K5�%�\u0007�\u0001\u0017��A\u000b�\t$��L�ˠ;�5�<�\u001b_j&\u0001Ǐ�I���Y\u000e�:�R\u0006���\u000b�B��\u0015�{T��G��C1qPS{�ܧcW��ᩕ�OB�I��0�7Y�&��RoP\u001a��p���D=����2a@\u0002�����ŀ&�\u0017l�j��v\u0003�v���ۏ����\u0018�Y�g���PT�\"��[��t����Y\u0014�,\u0016\u000e�\u0004��\u0005C������L�獢�P�u���ѿ����d\re�T\u0017l�k�tE���9�I��\u0006���1Z?�\u00047��\u0011�%��_\u0018�)����q\\|.XZ�J'E}xkpA+T熛V~)\u0014�t�A\u0011�\t8��X�-�03^�=#x,�ըq\u0014�2O\u0000\u0015�^�O���-??\"d�Q�6�-e�|�Rla/�2�aZ��e��0�ػ�H\u000f\u0001a�J\b6��D0L~������$�f�\u0015\u0013k?8��B_Ѿlw\"ϋ]���n��*;�XTKb^��y�-C\u0013��\u0010\u0010�\u0001\u0003x�zG�Ȳ��N��ݺV�?vR����V\u0005_Q�\t�P�ŴA�-��\u0018Z�KJ�Z��ճ�`�7w�F��%�7I��t�0�\t$��n��0_�l2��M\bT����W�X�?b~ń�6Δ!�]�/���*u6�\u0004�!O��! �G�`\t֊�A �\tL��MW'�� 8�@7����\no�4��\u000f�N�!�s�̟�|Cc/��\u0001��\u001f)\u000b��vz�v\\7���H�A:�\u001f��J�i\u000e\t\rd�\u001dj\u0018�;l\b\u001b�\u0007��n\u001c5\u0015\u0019�̹\u0018��T�2,Q�W�֬h\u0012\b����^.\u00122�����!�\f\f\u001d�I?\u001f+\u0004��Y�Q�\u0019\u0001�&��<\u000eѳ��\u0013`d*�F�-d�(e1\u0001_g~�+ofG0KT�>\u0014�\\�\"�����g�C�\u001b��v1\u0017\u001b\u0006#P�_γl$w<��l}�\b�s\u0017�\t�&�b�\u0005̅]t/<܎9\u0005�\u001d�?%D9r�Λ�\u0000��Ą��o/8p=y\u001c�\u001a �\u0003z\u0001x2�Y�?�A\u000f�\t`����\u0014�QI��\f�c�s3pz^1��\u0019���my\u0019\u00158\u0007�o9�\u0003�z�\n\u0004bτŘ��p\u0019�VL�l�\u0004�����A�J!ֳy\n�=Ջ2ŏ�gH���K5ֳ\u001e��x=��\u0002\u0015]�!�\u0005\u0004\u0012�ņ���!�j�\u0011�\u0010���e^\u0016#\u0019zLS1%��K��v'�WL׼Y.\b\u0002f\r`2�M�\u001b�B\u001f�М�b��#ޖ\u0012�S@�\u001c{�i\u000f���s����f���?��\u0014�pk�\"d�����s���X��)\u0017´�\u0018Av4ש�@�)�w\u0019����tƠ�#�\u0004�1��\u001c��8�\u0007m,�\"y\t(�'�9�A\"�\tt����6\u000b��Pb����y����H�\nK�-���09�%`yX��d���\u000b��f5@v\\��\u0018��\u0001w�\u0017E�B�P� \u0003��Y�K�\u0003佡ˊ���`[�T�l�f��l\f�q��>�\u0000T\u000e�u��\b\u0016G�I���9�#O���/YW}'�\\�IK��\u0006\tL�\r��7��áC�\u0011Nc�d�F�Lׂ1�\"�V��x�LP��E\u000eL��b���2����jp�i��\u0015\u0006\u0004\u001b~4$�U�6UD,*�\"�Ox���\u00183\b\fI�������f�\u0014\u0019&z��QD`1w?�/U\"u�J�=60eMs�uIV���ø�O�i��e���LZ�n9�A#�\t�����-.]�\u0011��\u0011\u001e\u0005����|�3˜�\u0011�ܣ�*�I\u0013�\b�^��������3\f2\u001d'G^;w��DXM(�Lj|���I:����Xq�����j�R��\u0016J\u001alo����=/Y`$��^���%(�\u0001\"���\u0014\u0006\u001a�9�\u0001�,�K�\f�\u0006��� �\f~\u0019��d�\u00181\\\u0007CD�\u0004\u0010\f�\u0005{�rE���r~�)?u�4�a\u0018E��\u001f�S��9���^�@2��c�/����\u001e��Ӯ\u001cq\b���du\u000f-LJ�\u000fa\u001f�\r�\u001d��=���f\n���_e��\t<��0A3�@��O*ep�\u001b�@t\u0019�\u0010s#��Y.�\u0000z����܇\t��!xC�尭9�A0�\t���M.5����\bʍ+�\u0006�����,��\u001f鬵*��]V���\u001f\u001e;/8ܘy�$)�A^��jf��,:���\"�\u0002,\u0005J9qd����\n\u00198���Y+�\u0015`��\u001e4��r��h�N�V���e��0,�lFV۬\u0016I�������\u001eef�\r�@�g�~b�\"�eo�w��\u0011LJ\\\u0004\b��^�J��p�\u0003D\u0016�;\u001ad+\u0015q.��r�(ӫ~�Y�\u000b��\u0001$\u0007�7H>]��7,\n�f]6��_c��'\u0002?\u001d�\\�o�4{/���*�yd�A.�\t���L�Mf��nv\u0010=\\;�$Z�y�d�o�f��X�v�\u0012�\f/����$�\f�Q�\u001dEj��^dn���_KѺ�H�=�聸�=̳8\b<��\r��)�\u0002�&��@7`.\u0017O'F��W�q����z���Z\r �-�><��� �J�]��^�Re����b6%��1\u000f�q�@�8�S�e�g\u0016��zr_�l���\"�H��iw�ʢ�\u0015dm�%�Ÿ6'9ȡ\u001a������\f%p��\u001d�o���D@���\u0017�92\u0010誀��AS�\tĀ�I��\u0014�\u001e5%=��c�\u0005��Sq\n#��\u001a2/��E\u001c�0�\u0015�\u001b�-R\u000e��)���6��o�����6yh�J��+�\u000e�\u0003\u000f��X�)\u0019�\u001a\r\u0018�V�!B3�QdD\u000b!r۲��˟�zh)\u0012��\u000b\"f�@d�:��\"\u001c��:�\u0010S�\u001a\u0010��T����*..s8��\u001a\u0015r\u0000�P�61�(�I�M��_!����\u0013\u001b��\u0006��ed�񋲷�~�\u0010f�\u0019>Y~-�\u0006��C`��D��\u0007E2�\u0001�������;������\u0000.h���Lm���2˚�q\u0005=��\u001f��YW�3>'=�\u0000��҈f�\u000eIh\b���]�\u0004�h���A�ͯ���l�0\r⪩�P$9��0�\u0000�4\u000bm�M\u000e�~�>�$IC�m��\u001f�H0'M.���&��Aف\t؀�}a�\u001e��\u0014������\u0003��\u001a\b�\u000b*8�UZHt\u000f���l�\u0016&{�#HDT`6���=�¤�*\u001b�3~���5)����\u001d����`��q-#m\n@w8}o�\u0013\u0000h��Dҽ�ɬ/0�\u0000\r\u001c��\u0004Q#�nQ[����3�\u001c����S����\u00166��j_Y#$�Ʉ\t\u001anŇ7��f��\u001d\nS���� ��Շ¤\r�KZ�pO?ge>;검\rq��Ԃ�l\u0013[�*\n��5P\u001a�\u0011�\u0011�MO�����\nxo����᭘�˕�}�˶beth\u0003�\u001f\r����d��Qmͣ�7]i�#\u0003�2\u0003\r���\u0011��\u0019ܵ]�)�ZIRرE���\u0019�O��:���n\u0017�-b�p\u00003�B\u001e/\u0017���=i��Z��`��[�QǓ��\u0007\u0016�8cn�Y�#�\\O��m�R�E�N�\u0003'0����V�S�\u000b=D&�$�E`?v�\u000b��y��Aվ��hԠ�j���\u001f��3h\\�1-�\"ec�\u001cm�M@����eP�d\u0005�覲�5�N����\u0007\u0005NW��C\r�\u0006o�\u0018�������\u0015�\u0011��\u000e��A!�\t��.\u000e)\u0005�}N�+��n$�q\u0018��լd��P+���BLj�\u0018�V\u0015\u0000m\u001d\u0017���6�Z`�9�y/�.�w�\u0004�\u0005��ܵ�r���8�q\u0012�anϽ\u000b�x\u000e=\u0012$��{47���f�5�5���kP��u�V��\u0003Ϻx��(�<\u001c���oZ�X9�\u0005��xQ\u001d\u0010�[/�\u0001H�|lfo�S6���Ws�\u0011\\����X\u0016�w��*JF\u001e\u001d��Q�{���>6e\u0003.�w�oXf�6�幂�\b]2q\u000f>�OO;������\u0006`lz�\u0002kҋ�\u0010��ǡ�\u000bqrPt\u0003\u0005~��\u0000�\u000f\u0016@D�[\r���ZWuu[�F%��#�!b���\\�\u0011v�A\u0016�\n\u0000���\u000e\b�U�\u0013/س�\u000edn\u00035^2N���Uпa|�~HL\u00111\u000f�����a\u0004ѽ����#�-髦6�l4OZ�2��S\u0004G2i�D:\u001fRDZ�?�;�6F'xϮ\u0011\u0019��*�x�����D�\u000f\u0011�.q{ m+��\u0001Y����{��+Dێ\u0006l�6��\u001a*�\u000e`�~��\u001cH���K�x~\u0000��xhZ�o$���\u001c�\u0014L;�m��\u001b�=��8�\u0019�;��\\���@C�\t\u0002�D���d]��\u0012\u001eui�d�C�o��JG^^�Z\u0012[\f��3��[\u001c��\n�O$o�Ώ�����K�m;J&(�/�/��y�Ҩ��!�i\"��A\u0011�\n\u0014��L��Cd�~�\u0014S�ʙ&g\u0010�\u0000P#Ta�,x�\u0004\u000e]]�G�H=�_\u0005���F0����I��L$؝���N�s�5��Q��S��x��$��3\u000f�G\\��\u0007��3V��u;\u001fd1$�%�b��z�\"}A^4��[\u000e�.\u000bn��X\u001f�EH��)/�5\u0001��s�o�6#\u0001%\u0019�:�)i�.j�O����Fu\"}B����C��\u0017<�7�6�\u0013�)�Q�Ԉ\u0014ڭ|��^��k\u0016\f\"xxȐE\u0017���_)h�\u0012�W(�\fid���{\u0002��/�>V��l��8�q�#\\��>\u0000l��6��q�nt�'S�N���\n �\u0004#�\u001d|��A�؈�ӱĵ�s�\u0007�{��mu\u0018���\u0006M@��DH��ն�{�ܙb���\u001dmr�1j��\u0002d���\f}/)��)�\b\u0011��\u001c�^�\u0001���=��@��2�\u0010��7\u0001��A*�\nP��L��|\u0003��\\ҏ��)\u0013\u0011�\u0005[Q\b\u001d��\u001c�\u001f�^�Y�ڱ\u0004\u0010po\t}j����\u0003����u�`X�\u0018,�\f?�(��\u0003�\r�@�Wc2H��Rɢ�-\f{\u000f/f�j\u0014\u000b�\u00005�#ϙ�nL����\u0012ԒNdl�J��oÊ2����j\u000e��X~U\"8(B�ӤF�U>�̢2\u0010:u\u000e�w&)Q'�]\u0013z�Rl��[0��\r{\\\u0011��OA��s??���\u0012�A �Byj\u001a]k��F�\u000bJT\u000e���ڢv?���\u0019\u00050cy�5�x�]\u0005�o\u0010J��nd�C}����*�#h�T^���\u0011�T�)H�V$;�nN�C�����L��'�\u000b�ϕ�8\u0017.�\u001b�A(�\nd��Mz�\u0014�}&t�0J����9�t\u001e�;�2u��AP|m�\n�e^�0͟�����\r��/'������*|�)w\u001eCr\u0013�C=����{��}\\ѡx�?�<0\u000f���.��\u000f�&�V;�ġ�4b�\u001f��\u001f�\u001c�M‎\u0019?#T�Pl_cU��o1\bp*�\u0013�\u0015��^�\\��.\u0007�\u000ep�\n��jz\u001c{��\u0006)R��X��\u0016�\u0015�X���F�!�X•yS�SXU��EI\u0005h�'�#�w(txk�\u001e�A�P8&,@\u0007\u0018\u001c�d���=\u0011����Mԏ�w�%�|\u001bg�D\u0000�Kdo\u000e\"\u0010�4:d�\u0010S���G8��w\u0018���\u0003,\u0015�!��\u001bd��X�K��\u001b�A(�\nx��M1�%�N}6�Y>�\u000b\u0006\u001b{�5Yt�\u0013\u0013YB��\u001a+fҟ�k8�\u0004�8��D\u0015�Y\u001a���\u001e\b?e�&\u000f��r{��kD�I��R�\u0019���4��fH.�iF~�<\u0010<\u001d5\u0011�\fR(��\u0013��\u0016O�:$)3��k鲄�D��A\u0012�_�װ�\u0001�\u001c�\u000e�,̆\u0005��R���\u0000�1UU�\u0013�FII��D_\f\u0007�1��\u0004CXY2Pg\u0011\u0017�f���\"~p\r���)�Iዋ>W7�9���̄��\t��̼��\u0003�;ͦ���!\u0019�\u001c\u0000�\u0002|�U��r���[oA�9|\";\u0002T\u0005�\n�\u001a�(+��\u0005�\u00191��\n\u0014;\fr\"��k\t���G�\t�����K\u0015#^��\u0002�8\u0011O%*\\��\u0019�pد�\u0002!\u001d�[��<\\v�\u001efmͯ\u0006�V�K��A)�\n���M{\u001b\f\u0010���ؕ2t�qh⇯[����a��$º[5���3�ĕ��QΪ��\u001e�+\u0010�����\u0015���x��c�\"z�\f��[k�R\b8��&�z\u0014��\u0002Z�A$�\n���M(/Cļsp\u0019R\u0002!MRC��^8�J��m�=T���\u0012�q�\u0003�@�(WF\u001cW\u0014Ƹ���N�hy�$ӡ\u0000�X.#%����\u0016\u0007c���&�\u0014����R�\u0016�\u0004��Ǐ�=����p�%*�e�d��\r�À�\\��H5:1`\u0003X�\u0013e|����ӎ�- Y$NkL0� uo\u0014P���G�ٕ\u001b��\u0007�=c&��i\u000f�z\u0004L\u001b��\u0017��L�_͵X�|Z\u000bV6�\u0012,F�2�R\u0017D}L�\u0014۬�+�\u0004c�[:\u0002\u001c�Y\u0010��\u0015��\u001a\u001b27-\u001b�c\u0019�=s\u0017ma1��Ys��\u001e��\u0011�z�v�_}\u001a���\u0001��q��g\u00171e�\u0015��\u001c�Lh�|3D�<4i�\u0001���A\u001e�\n܀�X��⯵\u0002\u0000;�⹊1���������'�t�)��٠�~�\u0019�\u0014�t��tڄ��\u0011/#�\u001f\u0010�х�\u0011m?�[�A���\nv�\t�Hk�x��f�BH~�\u0002eJzHK>F\u0018T\fc0\u0007�����I\u0012¥�\ri�_O/\u0016�(הT�)tv��\r\u0013�\u0000��Vhȴ���w�\u0003*jyS�T!\u001bY+Z��u�*-\u000b\u0006(\u0014w��\u0002\u0001�T\u0007ށ�tJ��<����ͅ�G�'���s'�c���'9\t\u001b$_MW����Z���.\u001b��\bݼ��.Q����A'�\u000b\u0004���l�\u0005sV�>H�\u0007Җ�Ѽ�$��d�:^���\u001f'B2\u001esgá�jǝ\u0011�FP�}0�О��O�ԐǏ�%ݛ\u0012!�<��Y|�\u0019�\u000b>`�\u0019S��QE�~e �K��G��fHљ0ԯ_P\u0011�\u0014)��\u001azӿ��%�Z\u0000�퓾�ِ��\t\"�R*\u0003�\u000bPgw����Һ��#n�Z�\u001ea�y����<\u0006т��j%S�%ɵ���Xמ:F�ͩC��j��3@�VI�\\\t���Q�h\u0013}z\u0012π�3�MB\u001e-\\,��<�\u000b���\u0011���]�a����Z7�T�.�\u001773vm��k�ۙ��F\u0019���\b���g=�ve�\u0004�A�A$�\u000b\u0018���f�EU��\u000b\u001dͯ�TB�ܤV\\�\u0019��\u001c�\u0006�$G�\u0005<��S ������\u0018KE!\"\u0019��tq\b�+,�0K�s�P�/��]����b�\u000et�\u0016\u000e\u0000�{x����2]�d}��<��k�$���7ly4�k�\u0002R\u001b�ѕ_t�`#�%�5�\u0016�@�'a\u001c��\u0003M\t\u001d����5�\u0001\u000eD\u001a�\u001a���E���VB�W⩟k\f�wF�\u0011\t\u001e�B�o篷�8d/�g�8�QkO�@�\t\u0005��}X\f��\u0010\u0015m�Dd�Z^�ώ.|qNΗǺ�\"-}�����\n����\b\u0016F\b�?�Ip)��\u0014��%�\u000e\\K��\u0019B�\u0001Ȅ\u0007YdBv�گyT\u0018)��_\u001d*y��o�jD�SJ���1�\u001d\u000f�8��p�\u0016k���Ho\u0004��\u001al�\u0011\u001d1���r�\\\u0000��$T������֔DZ��g�$��3\f*iߘ��]4�\u001f�\u001a�}�?/\t4/�i\u0003��,��m��A/�\u000b@��L�΃�*�(q�����\u001d��M\u0017\u001b�j�O��:P\"�2t���\u0015�%�\u0011:\ba\u0000^�\\8�|����\u0017]��X\"\b�\u001a>5���_�������fn`�\u001e�?����\u0013�\u0013D��@i�A�#3���<\rB_��A�B��kꉉO�P��d��a�F���2M��ȉv��I��\\�o�T�҉��%;�ώ��Vm�xzJ\u0011��t�B�!�r�fr��ED,ڊ��\u000e,�W�e�\u0006����\u000f�ft�N��9�\u0006nW��0��\u000f\tV�uq��\u0001\u0006�1�\u0013\u0015��M\u0014�=>\\���\u0019�YZ\nx���l���~G��j�Θ:\u0019t�BG-�^�t\u0007m�=��F�ڋ�w�Om�A$�\u000bT����48�օ�P\u000ei߀Ŕ�рn���\u0011�E⣅Y�k\u0000���XQJ���\rh\u0007\u001f;-(���X�9�P2�o��ߝ��\u001e��ř�Ο\u0005�E\u000e\u0013\u0010��A��gm��N�R_\u000e���\u0018Ot��.�)�A\\(�Էc,��c�W�A\u001c�\u000b|��L��\u0015�+gl4��x]lj��X?+��Ⓨ�\u0016`7�5�\u000et�C��\u0006#�v[����\r�$\n ݡRK��?�Р-�}!.,+��\\\u001d]\u0006\u0000K�{\u0016��GL>X8j4\u0001Z�{�g�����\u001fV�l|�5\u0018M�\u0012�>\u0015�\u0005��=\u0016�*�03\u001bF��{\u0004�@\"h\u0006�K���Z\u0002��~�����|s��_��W\td\u0014�\b��3��7�l\u00128e4j~�\u001co��\u0003a����\u0006�AN�0�J����B5B�g2��c$\u0006�\u001d\u001e�\u0002��\u0012�$\t�8��\u0007wR\\@\u0016\t�Vb����S\u0014����2�k5)g���G\"\u001fs\"[��Ю+\u0001�p�\"�A\u0017�\u000b�������RyD\u000fN*}C-�]�\u0001)��_�!�\u0018c���r**!��\u0002\t\u001b�m��N_��=f$�nRo\u0017cExODW�7�6�\u0016l��F:u\u0012|\u0001\f��������\f_�\u0000�@\\1��c�\u0012�6s%�,\u0003�,��\"��\u0000���)g��S��**mHsX��\u001b��w�\u0002ẞ�o�\u0010�\u001cY�RؿcBR�<�Ͼ�\u000eْ���'ΧGv��� ��Y*[�=\u000f���\u0010�\bA��\u0005����WZ����q���\u0013�/+5�&���\u0010\u001a�YGJn\u0017凈���\u001a��;�\b%}e\u0017�G��J�苾��\u0003=�L�\u0002����C\u001e�%#_Z>\u0011`�ρF<��~������8�)el1!�\u0010:~�6Vf�T�\u0005��ɞ\u0006U���A<�\u000b̀�I��\u000f�7\u000b�Y�8��)�}����G\u0012�\u0017A\u0000�\t\t���Ef�_�ӧ����IvY\u0015���c�\u0016ѐIJ=M\u0007\u0005PP�\u0003׳\u000b.X����)5����7=O�\\��\u0019���us$wt��AĦS�O\u001dp����\u00060�\u0011��\u000b�\u0018�YBKkC$�U�\u0000��p��G-/(2�;W�Q���1����\u0015AеU\u0017&��%��[��q�=g r�(�2\u0011-�p�\u001b�\u000b�l�q\b��G0J�=��£_�-\u000e��\u0018�\u0005�S¶FX���W����HT��޲6�A�<�tT9\u000e]U�Ě�Hд���cBX�9a%�B\u0018R�`\u000b��4�=�����\\׋�̶���DO��!�u\u001a-�\t\r��\u000e��\u0014�A#�\u000b���1��6���D��P�'\u0002ǶV����?+9�\u0012\u0017��`\u000f\u0014i����oW�\u0014&*h\u0016̻�H\u0014 �g#����\f=l��Dg6�W\u0015F��`M\u000e,K���\u001cJ�\u001cw��\u0001\u000b���f��s�3k��j�\u0017�+ӽ�gkU?6n#ҭ�҅����s\"n\u0007�3��}~���3����\t�FV�43*��5ɼ<��x�\u001cp�d\u000bbiM����\u0015��M[���#��2�\u0016㜰\r�\u001f\u0016t�d�\u000b�g�A�P\u0002u\u0010\r��FO\u0000�����ji���N���~��\u00061�y��`ˏ���N�)��_����+���e\u0003C֒z�ԫ\u001eq�\u0001�h��4}L�ɠw�A$�\u000b��L�F-\u001ae6�Ba�+T\u000e��A�T�\"r���R8o���bSrM#���0�G���\u0001z�H�pl���m!�\u0000��<��v���k)4y'h/�w�D�#�\u001d�+�܅���u�0�\u0010TRc�����]��E�C���,H/|\u001a\u001b>X�;��\u0004�#(�-\u000f\n\u0007\n_?Z��t���H�,�\u0017�v\u001b�S��e\u0005�:sw<�+�����#�^\u0000U0�@�\u0002�\u0015��J�,�ծ�'�)*�`�i�����+g �a\u0001K\u0000�[��ٔ���r����ߐ��ؒ���^*�\u000e�\u0001�)V\\n~��l����͜\u001ax���u�\u0004B{��~�8O���p�a����A'�\f\b��L��b�Sݞ\u000f�'D�?�[_v㨶M�g�d���W\"\u000b�b�G���$]w\u0004���x�\u000bi:@�z���\u000eTc�{>\u0005\u0003[u\b\u0019mQ�����n�{�Ӳ��H��Q7\u0016s�Y{J\u0001#\u0004�i��cE�&{����0��T�\u001fZB�[aP�I��������\u0007�\u0004\u0001Z7���M�J\u0006�R�,\u000f\u0019�-��'\u000f�ԑ�#��a���`\u0003�\u0011\t��\u0018a*�DO�\n\u0016y䰾�XՊ-n0��\r�En�k�(� \u0005]\u000f�#\u0006\f��ʂ�@\b���'\u0015���~E����18��{�V�\\x��EK���#\u000e�\u0012\u0001��W\u0010m\u0004����������\u001c�;@����A\u001f�\f\u001c��2xM�*��˄w՛�k`�u\u0013�I�+�8:\r�$ބ�Q���t8�3i��SH��?���)�S\u0006uހw�0�'�����(C\u0005���;\u001d�m3}�:�TX\"s��}��I��O�ᩔ��݁�M]k@9��b��WX�:`J\t�PP�\u000e8߰ܧ�n$Nq��|KZ9dk�|%��\u001d�ñ4X��\u0003-W����E�\u0005�������MF���R��0u���䥞i�\u000bvq����k��=\n�/HM�n���$\u001d�\u0002�\u0016��'�%Oy�P�5��Ĝ[���Q!\u0015\u0005?i�F���\u0014�o`\u0011u�F�ՠ:\u000f�|\u0018>�\u001a\u001cl��%��г�\u0000�A$�\f0��J �Z��w�lP�:\u000f�\u0001\u0007���m\u0010\u0003�1?\u000f\t�,q��g\u001a\u0016P�Q\u0010\u001eZ�߽��h�p�[\u0000K�E\u0002���3o��<Ħ;�\b�\u0019�\u000b7�-i����\u0000�\u0000��Ey�%A+t\u000f\u0012�ů3��u\u0007d��r�B�aI��\rЙ\f\rK�|��9'�gt}��x��\u000b]IXF�H4-%��@���5�A��zE������\\�~�Wm�~���Bw�M�GX��*��z���c��($B1ўL��⠫��h\n�\u0000��A\u001c���2-\u0016��mh�x���\r��\u0006�Cj�\"\u0010��J�k|Ly_j�V�Տ�9����\u0006��7�ĝO\\f\n�\f��4�A.�\fD��1���I��~����~/�f�\u0012끋L\u0014j�W_\u0017��rK�\u0015L����i�F�A�\u0007\u0018��)wGd}�\f�Nl��\u0015�\ri*��W\u001a�\"I�\f\":ɶ��8��@@Œ�X\u0005sۋx#�Q;+�QH\f��5{�VR�|\b�<\u000b&J�/��\u001bY�N\u0001ƈ��6\u000e����;i�l\"�I�&�6\u0005�su�\r֪\u001f�p\u000e������\u001c8��f�g�39�(&x�n��I0\u001dL���\u0007��\u00197�īa�-5h�q6\".�q��\u001a\u0013�\u0002Z��>ɃϫK\u000b��1/`\t�L嵫��� ilW@��f{��\u000f��m{מv���d��ӥJ�ݔ��#<̔�(a\f�\u0007��E\u001c~���A4�\fX�����.�=�}������\u0000��}s������\n#)���\u001a24�\t議`\u0005�r�rnBd�J\u000foL��Õ��2%F��\u001b��\u0006ap\u000eu�<\u001a\u001b\u000e�o\u0018k��)T�D�\u001b�fՎƜ��\u0014�{HL`�\u0004\u00172P8/CU-\u0003�e�C����/ZgF\u0004�hB@.f�I�\u0011\u0010�\u0013|d\u0017�uR\u000bB#$�GjFi\u0007}<�}r���Z��q���%\u0011\u0012h�E\u0012�͛�\u0011<�C��P\u001dO�d�[�\u001a�\u001b���l�G��\tA�\u0005MKW\"�\\\u0010O�Ȁ��­\u0007��{����o:�_۹�\u0012w\u001eeo�W�@'�\t�.x~�GL��]\b�)+�lT�J�p`�2�\u0005\"\\�\u001a>�\u0015����\"�\n��A2�\fl��1�#~J_�\u0018u����<��W�\u001f\u001e��\u0000[mXvsВ���'�`\u0013\u0016eٻ�\t.>[BQ�lz$��\rʮ��&�Z�1{\u001d\u000e�k���6-\u0016o�\u0004!�\u001a�6 �ʨK�d<81�t\u001f��2�iyr4x�ef4\u00051�#\t:t�۪N�=&�W�\r]����ΞU\u001c�T�RQ��B�/�\u0014�m\u000e�@�G+�\u0014��3W��PV�@\u001d�Y~\bES��\u0002�\rx��)��R��~�I\u0012�kL'�J��\r7�\u001a9\u00199���\u001c�{L2`\u001b����?�F|�E:݄\u0004.p�\u0006�G\u0000��\u0001\\��Ϩ��\u0010+�B�f�J�R��%�a�+�\bZ�a��e5�����j��,�H.���B~\u0006���Mr\u0014f�\u001c�N͐�&��\u001e\u0002��8�\u001a�\u0015��%9��\u00148�J\u0002���\u000b�,�\u0014�*0(1`�^�Z��(\u0012'm6\u0000K�j����\u001d>v�ei�`\t��L��\u001d$�%�}D)���\u0015\u0013�A�f���\r��o���?�V�\u0018k+�AD�\f���L�!��!dy�Ս��\u0004�\u0004��S-I�ȳ�\u0004��Y�At@��>ʵ2a�����\n\u0000f���M�k~�Ut�]\u0004B@�ɥ\u001aO���F�l Lw��\u001e�6����\u001aр3�\u0000+�_�n�\u0012\u0010ؿ�\u0013����W\bf��9ן��\u001d\u0007b\u00020�)N �+�|c�R\u0015�c�8ŋ\u0001T\u0015�a#��r�).O���uXF�z*\u0001\u001a+M\nZ��{5��a�J��\u00052�D�}�F\u0018\u000f��/\rF�0�� q��v|>�dK�؊�`WG��ɖ�\u0002]lrl-r\u0016t��7w\u001c4�1s��6φNg���]��\"\u0000�ZM�b-�/�\u001ac7��V���ޢ�;LL\u001eC!��]�m��G��9h�;Z\u001f������/\u0007?̈�Y�?���A=�\f���MW�\t��\\}%��Iһv�0M���p���ZJx��\u0002Z\u0003�=f�JW�ɒNx��\\C���S����Pq�,S��K�\u000e�\u0004b�OA�y\u0019�q���7��\u0018�\u000e�\u0013��\u0003��GjJ�\u0000\u000b��bٶ$�ߵ�-�u[m�$݊��Qw��֊��Hij\u0018�l�����#�\bp\f\u001c!\"�Z:0�ю�t\u0000���S�\u0014�\u0012P\u0007\u000e����lx�h����o��Ϲڸ9���\u0019��\u001aX�[����\u000b(bJY���~K�AA�\fЀ�)\u000b�~F|�����Æf�v�DC���FM���}*���\u001e���|�/4[�\u00055��\u001b$&i\u0014?��\u0010�3\b�lE��Fڂ\u0003��\u0005\u0016�}r���A�Һ\u0004�=�Hd�����k�d\\<�EWn,�:'p��\u0004g�\"�\u0004�`���\u000f���a�\u0013�,MQ���F\u0014�x�\u000bz���\n\nv\"3/A��d�o���$�A�\u001f���V�\u0002Pϐ\u000f9/E\u0001�b��pP��pQ�4Xb�l$�o&D���\b�� \u001b��y�PAӈ�\u0002\u000b�.#G:\u0017FJ�2����ܭ����.��s��5�M(mf��٥ܨ�c�����cܠ�f�\u0006\u001aw�G�����$�Kz��a�c\u0016�\u0006�\u0007\u001a�]�&��\u0006��O*�\nX�A,�\f��]�Q�^�X�\u0007���l:k\u001e��N���\u0015Wz���\u0016s��&!�*Di8��\u0011P\u0003\u0012M�Ns�U�N�G\u0010�*D�\\���6X\u0018� �]��;ź�\u0015鉵�13��0׽Ab�)i{��8I\u0007i����,q�X�9\\˼\u001a{�'6N���\u0010����\r���3ā�ŗ\b��\bt����os\u0014)�4�|����6�\u0003���oy�{\u000b�!D\\Go�\u000fp$�\t\u001d�\u0000�E&����2���\u0015�\u0015�\u0000T\u0005�$L2'k�/\u0013��\u0016��X*�/d\u0019d3붅2\u0000�n\u0016C\u001c�����L�P\u000e��DC[C�3\u0001ie�)J�7�y\u001cH�ۛK�X\u0001�@�\\\u0001ٔ��\u001d�6\r&`�E�A$�\f���X�J\u00198��\u0007{Bդ�c��~��z�\u0006�XBQ�\u0006�G�\u0005�vN�{%�\u0016�2�h�\u001a\u001e�:;�e�\u001bR�cAN�y����7\u001c��\u0004����W��}��6�\u00068�}�˲S\\��ˢ\u0015\u0002+���rB���\u0019l2�\u000b�\u000f-\u0002\"�=����d�*0F�\u0004��9h��?'�\u001c\u001f\u001c=��)���K��\u0002Y�\n¡v�!��dԭ��\u001aw\u0019�n~�\u0017\u000b���\f��\u0019��T%����Oj��\u0010C\u0015y�~;��Zu\u0015��JEn\u0019*P`�M)\u0012n0@7\u0013�Er~p`�B�֑���D�y� '���6_�\u0011Z�vo��NTq��\u0014\u0013��\\��\u0014�]�Pxo�P�A\u0013�\r\f��X������g_ie~�rb\u0015��oQ@���\f*��i�1\u0013<\u001a\u0017�\u000b\u0002�\u0017\u0006jz\u001d9\t\u000e�\u0006�<�l��!6��i��YH��6R�'q�i\u0017�+�oI�ʓ���\u0019�A���K\u000f�\u0013�\u0012�2�\u0011ڂ\u001b�\u0004\u001f�p\u0010�����K\u0015=o�x͌�eC#TY��\u00034�TQwcJŇs]c\u00180\t}��y,�R)�������Ic͠�m�\u001cb��%ė7ֆ��\u0007�;��U�S\u0018�\u0019�n�VŸ��\u0015�™�\u0016٘�s\u0016n\u0005���\u0017��o��|t/_�\u0007��\u0007\u001a\u0005�jm���\u0004�0���\u0017\u0006)\u0019�O�5��� \u0017A�3f�\u0011�A\u000e�\r ��L�\n�%��\u0005�#\u0015e��D\u000bX���\t�\u0002�Y�76_�=\b�Ͷ�\u000eKwdR��f�\u0010e�(����.fL����-�~�P�b6\u0005s��\\�-�uS1�\u0006./>|F�.�ш�\u0016GaV>�b:�%�\u000b��?�h/\u000e�\u0019�I�j퉘\u001e��~�(OIRm�%�\u001b\u0007�YH�w�Huv�̰�x�{�}ďx���y�\u001b|dv�~��~\u0002�f\n^�9�\u001e���顱�\u000e�(����)��s_���[׊?pф�]��&>^�|A\u0000)�k�\u001d�\u001a\u0014�/������ �[\"dŒ\u0000�#��33�8�\u0004\u0000\u0001�\u00126}���A+�\r4��L�yФ�֑�\f\u0017\u001b_\u000f:�d���Nt\u001c�A/��+�]�P�\u0006\u0011,�\u0013�\u000f|��\u000eTu6[���\u0002�\u001d�\u0006En�����ST:���d(�\u0013]2�\r���;\u0000ۥ\u001e3�y���\u0002\u0016.� ��^�\u001d�gGs\r\\�)��zk��\f\u0013�\u0006\u0011B-H�|PAV�Z\u0014\\B�\u0014?�\u0003ͣ�\u0000<�{4Ѱ�a\u00008\u0007Nd����A�:5\u0004�����\u0018���6$���\u001dM�|�6_�М�U�t�9\u0006E�|�\\��C�\u0007�#Պў�\u0007��l:ښR�)��\u000fhUͨ�(#�>��������\u0007\nPS\\�'\u000e%�^5��gô��gN�\u0012�DDA�ޡ�6�M�\u0014\"��A$�\rH��M{^dF\u0000h\r����F'�\u0016�T\n\u001b�\u0002\u000bn\u00035��B�?��~\u001dr1\u000f(:��\u001fL��2\u0006��dz����8\u0001�i���\u001b\u0011^���\u001e�8�S���\u0019|R#�$����-�HO5\u001dݥA�����\u0002D��̈́\"e\u0013mi���U�'��g�\u0014`%E`�R;5�X��;)��d�Mk�����RU\r�̇��]\u000e�q \u001bf�@\u001c(&m��ʨ�s\u0000_��f���z�����\u0016�F�b�X\"���\u000f�(HL��]S�F\\_\u0014dR�F��\u0014ؠA%\u001a\u0018��g��·i\u0019\u001b\u0017�m7+\u0013Br#i��N/����Y�����XA�,A<\u00199G\u0019�R)�Mј���A*�\r\\��L��O�<`����/Ԃ�_�l��\u0005I\u0004�����\u0002\u00188�{߷q�= �\f1�\u0019�ì�a�Ԓ�_�:%CIP�����\u0017}ݱ�G�^�'����\u000fu9+�9�\u0012����q�[:�t��j�����\t�0&��\\�\u0005�~�A���C��G\u000b9M|�Jꭎ�|*eoZ5\u0005H\b~��K���\u0016�dd�\u0018җ�+�)�k�~�֪�7�_�7U��O's\u001e�nv�\u0004�\f�Ůe\u001e�x�E�9�\b�\u0015��\u0004\u0004��ߡ�����냯D��JHvͶP\r��0��L��\u000f$>\u0006w��iD4��Z�\"��b\u0016�\u0014=��|l\u000f�o���n���\b�RXj\u001b��+�\u001c����A+�\rp��M{r=��pp-1b�h�}˛$@\u0005'��\u000bW̴����y������\"\u0003Ҫ���R�k�\u0015+Ԙ��\u001c\u000b��Q������K���Qo�f�\u0014\u0000���>���\u0000��l,���-�\u001d�d\f��\u00114ـ)Q�;n�\\\u001c��\u001a?�6�\u0010(��:Lj\u001c�\u0015��!D*���$���؋��]e��i��N��Ϥu!�q�Y※�\u001f\u0018P�\u0010�\u0014f2�j�T�1J\u0014���\u000eH�b�Ǿ��a|�c;\u0019��[�\u0000J2S\u0007*#<�m�P߈s��5c��\u0001�w\u001a���\u0018�\u000fg^�lx�\u0015r�ӭ�H.\u001biȅ#���sC\u0014\u0007�\u0004��=�*?���5i��}vv��+���kb��A6�\r���L�\u0011��m�XEq\u000f�p�uL�������y駊X���%(w)\r�Ee�L1̞�mT�V䃒\u001b���_�.PJԧ=p���/�\u0018 ��&:^~o#\r�\u0019��\b�x<���Koi\t��ݙ���Nj\u0001�\u000b@���_���0̬�jJ\f�\u0013&;�Ћ@H�MR\u0014�;�\u0017��7ð�8�g�ID��?�,S\u001f����R\u0001r�\u0006}��7\u0003��T�\u001fl�y\u0003&9]�,u�\u0003��n�~��.rn�)�+\f�8ʕ��fr]2���P$-�O\u000eX�\u000f�\u0003mI韗\"w~\u001b=ڂ'��\u0019����3��\u001b��\u000e��\u0010F���}\u0014=��\u0012[\u001a�ϧֶ\u0000�\r\u000bM�\u000b��ɜ/�N;k�>o�?�A4�\r���M{\u0015����V���\u0004�,ϥ��\u0016��E��_�fk�\u0001�%3~��eڬ/�����8{��\u0012��p ��A����\u0011e�a��3+\u0007���r\u0007I1��q��-����ȱ;�\u0006�ZK���\u001b�̀�[:o��|�\u001d\u0003��\u001b�\u001f\u0014S�\u001cC\u0007M�2+��O��\u001d��mȖ�!���*?.=D�\u000b˾���\u0003\u001f8��\u0003��\u0018E\u001c��p��a$�lvz��t�(����F�b�\u0016��\tl�\u000f\u0011+�5ǭ���\f�s\t5\u0004���:*\u000f���o�9ua�h�vj�q���I��ǎ?�:\u0003V\u0004UB�Ph�\u0014\u0013霗������v�R\u0006�h\u0007R�v���\u0005��\u0014�9A8����G��2$��A4�\r���L�Lb)\u0015�<���k0\u0012x��.\\�{lB}naQP���g$\u001b�U0���� \u0013\u0001�\u0013�ͳ)�G�A\u0018t\u0000�c�Xg�B�\u0019b\u0013�&�,��m��m&L��Z1�!2U�I\b]� Q&��]�\u001d��\u0011�+,�\n��x�\u001b}�\u0005@����bc��\u000b��m���Ѩ��1\u000fٚL\t�\u0016\b�h�j����:i\u0005��ﵳ�&`�pa�\u0003�d0�`��@\u0010�lF\r\u0001��\u0017K\u0003�$|��\u0000��3�f�B\u0011$Kޓ��\u0003aՊz�\u0002W\u0004\u000f�C�?\".\u0016�&4\u0018eS��U�g¯��'l���͐@\u0011ʚj�������N�<��1\t\u000fN�3棋d�i\u0013\u001a[%�\u0014\u0000;]{D�&\u0010�\u000e���A*�\r���0ۡ1\u000ed\u001c\u001c.�\u001e�\fR�__��T�\u0019'P~���䯨\u0006\t�a\u001a�d�ʘ\u0005<��\\\u0018O�ź\u00036���\u000fG��\u001e7r���� U^�\u0016+��Ѳᄑ��U���\n��PKǘ`u_y\u001f�0�}�u�z���\u0012�Sҧ\u0001��d]?K�C�\u0014\u0010���.�p=\\����ݨ88���'�I�����e\u0013��z|��B��;��W��%�\r\u0012I߰����M�\u0010�5���ǽ\f��l��BT�9j\u0012Op\u0010\u000f4ת���M�j�\u0015�t����0�}Žǚ�(��\u0003Z���I��e�\u0003���eˤ7�XJ�z���\u0002Y�qz��N�\u001d��\u000e\u0011�B��<��\u000e�\tswn:��Bˑ:����C�ͣ۬��i@\u0015�\u0018��\u001a�\u0014�Zp�\u0016=�`����-+h��9�В���\u001f\\�\u0006�}�0�ڬڇ�o%��S�J3��\u001d\u0003H(7�(�Z�\u001b�\u0001W�\\��i\u0014��k�n�����T��.\u001d��G���\u0017\u001a�{#5�o\b���ƀ�TPA��\u001e����z\f\n�\u0010\u0017o�����\u0016�\u0014�:�5�ʃ\u0011��ic�[�;�A���\u001d�hLk1�;]�!�lP��u��VZ��\u001dI�Q\f3��;B\u0017\t%`Rv��\u001e~���x�^*�\u0011�N�O�A�\u0017kگi��}��Z�A\u0018�\r��K\tEG�;\u000f�\"AD��\u0018\tD����c�p�{Ń��Cu\u0003i�\u0005����β�\"D\u0003\tD��2�9��\b!��\u0015�\u000f�e�����)��j�i����\u0017\u0006=@\u0005?��s\f�v�Bp�\b��@\u0012�\u001a�o]н�r��쨹x@q\u0013��wv�0�ǰ�%��/Q�<��1��+���ʲ;�w\u0003�\t����\u0004�<�\r3��gS��3p�7��g���)Dc0��2@t�n��K�\nF�B\u0011�\u001b�w�\u0012ݥL��c��\u0014�R1��-li���V�\u001f��5(�Q\r�_\u0001�\u0017���\u0012P\b\u0010&�\u0013\tJJ��ک���0�/�G֥h_\u001a!��x�A9�\r���L�\b!�z\u001eZH��FH9��n���K&5�\u0000��h��.Ѧ�\"�r\u001eԋ+F���\u0018c�\b�\u0010\u0003v�M+����\u0015D\u0010��Hc\r�E�zkX��<%�'�\u0017�!��>R�i�`�osp�X��oLI$�����Ԅ\\�e$�n\u0017=#�eF��\u000b�l=\u000b4�i��o��S\u0017�1�PT�\u0007{>��u�i��qH\u000f��\u0019-�eq6Qe��\"�\t���(­Qb�����p\n5\u0016��'7�\\����dj�U���qr �R\u0005�\u0011-�����/\u0016��MD1��g��\u0013���\u001c��„�<\u0012͚L��i\u001cc�i,�O2��Ը�����`2f��\u0019tpot\u0015\u0010�X��\u001f�\u001b[k��*-�Z�]j�\"]\u001c�AC�\u000e\u0010��6�\u00025l��\u000f@�\r68��O�Y`�O\\b\u0007���f\\�\u0004���տ���վ���2�Դ�4\b�Ah]d�<�lHF��ʵ�)�\u001f��z�+����@�\u0016' Z^J�u�\u000f\u001cx��\t-�^���(�d���z��h�ť3b\u0014g)�A��O�\u001c�1=����O�tD\u0004�f�D�U'�Za�1�uv\u0018��\u001d=C\u001c֜���^�]�ٿ�6J� �\u0014 �\"?���rK3=�8/�\t�۟�\u0004�z�BE�\u0016��>(�\u000e�HZG�\\�\u001d�J����\u0016\u001bA�D՟\u0012�\u001fNE,JV\u000f�ۃ�ௐ\u0013\u0003\u0010T����=��l�\u0017�m�0��!�\u0004\u0006��)z\u0004Iz��\rd\u0002|k��A\u0006��1\"x;hZߌ\u0000�+�8j�Ǒ��A9�\u000e$��1擈N(k��ԢR�-8\u0006�\u0013\"\u0001_�&\u0001��qc�\u0016� ��\u0001H��<ۑ�z\u000e��\r2�\u0013O��� \u0012)��\u001b\u000eb�����d��jN�?���<����uG�\u001f���\u0010�'�\u001e?�\u0011J�\f�\u0016G����F\u0000w)J�\u001c-\u0001��\u0010����@\"�\u0004:L�P){�^�V�[²��\\��\u0013�D�P�\u0001���@��9��^I�(�.�ͦ\u0003\u0006\u0015�K�4�7P��\u0016\u000f \u0016��=��]�APl�t\u000b��#�ov�r�Rm���tl��(\u000eJa��\u000b�4���\u000f�Q��U@:�\u0004&5\u0000��\u0014\u0017g`�ߖR\u0019�5�S\u001dUZфr�\u0013�ͪ~\u0003\u001eA�����c��\u000e\u001e=�I�|��V@��.~r]�A=�\u000e8��L�ל$ik=6���Ԥ\u0016ۃ�\u0010��/��\u000b\u000b���\b���,�\u0006֌��3K�W�\"p^�C�\u001f8\u001b\u0007\u0014r�@�E&�\u0007�(x�*����\u0018쮭��N�T����b�\u0005�W��N��V.�(M�ߍ�\u0018W,��=�y�}�����p���퓥�\u0004�\u001e��L�F��d#y�!�>��\u000e\u0012�0r���e�R�*kfz���KV,����\\���2���=��hGc�\u001c�o{\u001dŖ\u000b�m\u0001�\u001a„��/Kb�aH�x�'u�#�m���\u00132D�c�!�8Xڿ�i�\u001e\u0017��h�\u0001\b�q�\u0018��s7{(�}_\t���\u000fE�.����Mi�[�q�v\u0001WxR�\u001a�t�\u0019!�\u0004\u0011�\u0007��&V1\u001a�\u0010\u0011�A8�\u000eL��.sd�����%�=��dY\f���H��.\u001c���5s;��d���c����\u0002�W{�r˂�J�e�1,\u0018&�V�F_�\u000b\u0016�ʆ�\u0019\u000f\u000b�\u001a�� ��[=���dE��Q�j\u0010\u0016��U�����\u001bY#����_)1��\u0002��8��\u0016\u0016VN�����{c~\u0015�\u0017��z߅vr��5k\u0004�^~��q\u0010�n\u0001\u001d�>pa�)��r�Y`�p�\u0002\u0016V�{\u001d�S-Z��W\u0018�&�t�\u0004H���뜜9�+��(D�F9\u000f�6u\u000e'=\u0013�4\u0003-�͋u\u001f@F��S\u0002�Ni+ŷ\u0018,wܶt���-�\b0(�Ĵ���#��w�\u0017�<Ӻ�ܬ�͝���B=�K�\u001b#��-6(�H5+7����A�\u000e`��|��o\u0004'���0�E\u0012�\u0003��\u001b,m_�\u001f\u001b`�;���[b�5�}���H\u0011��\t��!��zCq�GO�\u000b��G'�;.e�-�\u001d�����R\bҺ\u0013��8�a4�#��>�\rI��U��ɳ8�-Ĵ�R�A��\u0001���)�7��A�\u0016�����;$b�\u001f\"�\u0001�)q\u0018\u0000Y�|��\\\u0017A�LXg\"Q�\u000f$�bc���c����u���\u0003U�k�HJ\u0015H�D5�)i�d�0�d9�,�\u001c�\u001d�T�t��E>~��k=����}ɽ�e0\u0005�){�Lv�\"�I�wEF�|\r�]��2�j��+�=�����^��T\u0005[�\u0017�y\u0002�i)\u0006\u000b��\u0013,5+\u000f��y�\u000b�:�8��Q�?���ֺP\u0006&����U_Ol�NW+D�n�.f��\\ek,\u001d����,���.�w]�C\u0003����d+��l�Ҫ�ͬ,\u001f\f/��h�\u001b��*nlD��߂�&�y�c�hY��:CΜ�kk\u0011��T�\u0014]�D�\u0014\u0017�c��j�S����\u00078U�A�At\fK5ob״�k\u0002�o��@f$wz�5��{�8#���?�\u000b�4���,\u0007��N��\u0005\f�C�mjh\u0004��S����v�\u0003\u0016�h�A)�SW�\u0001�\u0014�`]���7�t=3���JI��\u0006\u0010����P\u0003{g�-\u000bG=��n2�&��˯ɸś~�\u0015\u0015�wMt��>�$�XD�\u000f\u0013\u0007��\by\u0003����D�W�?ä4w*\n�u�\t���\u0013<0)3K�eB���#��\u0002nA��&��.O\u0015/5�ց��rF�7�N���3�\u0004�x�k,잤c�E��~<�\u000eG���\u001ee�,�A>�\u000e���\u0006��Y}����\u0010�Rr\u001b��pJ\u001a��R��v���\u0016�\u0006�Z8��\u00018�P�B�C��c�r����Yt\tN}\rI3�\u0011음M���}�� �\u0001�g\u0011ٴj��^P�i6�1��S��\u001ar�\u000fX\u001ak��y�f5���d�\u0001��:p�.��4\u0006',=�[�\u0014�b ?�^\u0016S\u001b�IQ�?� 㕷�Q�i�6A��6�]3\u0013\u0019\u0010�.��E�`���:�HL{QN@$q�(ֶ��P�Z\u0000�A[)�Y֦gZQ�h��\t\f\u0018�7�z���?��L��I5�&?���\u0003��K7\u0003߶�\u000fJ7\u0002D!Oz�\u000e�E\\��a\u0004����7!�\u0010K���Gr�˚�\u00178���\u000eU��)\u0015�_����+���_\u000f�A9�\u000e���.��=�F̙\u0019E6T\r�#\u0019Q�9#��)��O\u001cU9d:mI�uV\u000e�\u0000�\u001b)��7�L%�\u001e���,]\u0011S�=�e�\u001d�^��&��\u0004l�\u0014b�B�D�\b[��^u\u0007&�\t\u0011�`O�?-� �カT�>�j�\r�(pn\u001c�'���h\u001bЄb�jĔǬ`WNQU\u001a�dQ_QԚ�\"\u0001�\b�(�\u0010�4��\u0016��<�\fR:t�i�;?\u0005Rۏ���|\u0007*���b[��\u000b�J�ߖ�K��s�j=�<\u0013p�P0dȑ\bB�u��\u001dл\u0000@E\u0005��j\u0011,I��<\u0016苧��\u0014Y~\u0014�\u000b���A�V��My��.�\u0014�T�v\u0000�\u0014M�\u0011�m>G6\u0012-�l��.�|qv�[�����][1B���sWe}��A;�\u000e���0�3�\u0017�M�!�����W��\u001b>S�>�!\r�詚K�-��xvx|���\\\u0000\u0017\bg���ك�\u001e�\u000fv��������.ld��^�\f��!�{����n.\u001e��\u0007V+�<��\u0013J���,o�j����鉼�&��$��k\u0017-)'މ\u0006\u000b�\u0019A�@��\"\u001d=+��\u0011�@y/���g�l䚽��\u0000+\u0011��0��$w (�\u0001\u001d\u001d��n<�%ũޟ?t�:��X!�#�$H�[�-��_P)�>\u0007��X:tT/D\b#o�X!��ef��\u0007a�Z\"!��H\bOO�Q*�Mo:��|U��\r�\u001a\u0000F�|�M�\u0015%\u001b݉k�L�^.hu�~—LB��.�P���]\u000b����?��9��_p������NQ1[,�u��Q&m9���ʑ�\u0019�����B!�\u000e؀�}�\u0003�D�Z\u0014��\r��h��̯��K)l�<�\\��nԔ�\u00167\u001e98|sl�+���.g�{\u0000��:�\u0018���x�\u000ewL�\\YL�\u0010q����}��\u0001\u00170nU@\u0017���J�\t#!�0���4V|���bs,_\u000f��N$\b7�ѽZb��`�\u0006�c���yuh1aZ� /\"+��,o{\"g]}mC�\r�}\u0019\u0011��t(�P�\rM\u0000�����<���6�[\r4b�\u001d�\u0000\u0001(��\\�T�â�[|��P\u0010\u0003,�V�����\"rY%��Bh��ܰ~�\u000e5}�������$0o��W�+��\u0005l\u001b\u0018T���y��[��q�LR������T�f�\u0006a���6��!\u0014�NK ^X�\f!zќD\u0018���\u0011\u001d��t�\u0003�Y\"�UO6^z�s�]�\u001dh�G�%&\u0019\u0014\u0011��=h߭\u0013�\u000f�fe�v9\u0017�e��Y���?�\u0013,\u0006����S\u0019lR���l���%�0v\u000b!{5 �S_&��d\u0015r��,\u0003_��d\u001c�9�V#\u0016����N�K�TБ\u001ec\b\rوa\u0007�.6�\u0003�����4(��$\u0005�<~�ȿ�JJ��|l\u001e�i�9ǖf���\\�_�e��B �7��z,��\u0017WJ�\u0013C�a�L�3\u001d�#\u0010����\u0002J@��婈!;Lu����F�50�A!�\u000e��X����.݌:V��Y�9:|�Tև\r�e\u0013�K=o~����\\\u001c\u0004�>�l���>x����Mo������%L�s�Ǎ��\n\u0003ɪ|�\u0012��\u001bH��=m�\u001d�2G��S4\"\u0000o��i�'�\u0010�k\u0017^�pJ1\u00010`\\�\u0016Q��6OW\n���.R �b�ɣA%�\u000f\u0000��X�-��˄ް��?G\u0018r6��_.��\n�u���\u001d��R\u0005Zp�j\u001d\u0019@�d4\u001f\u000e�A1gU��U\u0000�\u001a��\u001cu.�x��`+Slͩ�\u0003F&�I�ﷄ�\t�ba?8[T��˓i��\u0017�k\u0013\n���yh\u0015\u0007(\u00194���\u001bK�D���Ɲ�\u001fs��J�@�8�.�\u0006���(���\u001b�1�9cU�'{\u001b�\u001f*j�Ne4E�F7�j��bJW�$1��4�\u0017\u0015N��.�ķ�Rk\r\u0006;�E>h�^Bl.��\u001c\u001f-�s2rd����[Ō�Y��*\u0002��~\u0013�Q����)�\u0011��\u0019��k�Cx�]�\t\u0013k�c@T?���d+���؄��|�\u001b\t�A&�\u000f\u0014��L�+\u0014;CWM\u0011Ap1����\u000e�zǬ���渙�����L���� �ۯ�v�S���\r�\u0011B�b����O�C�-+�\u0019�S\u0018E�a�Bm�d��ٜ]\u0002\b����� ��`e�̶�\"B\u0006�;��\u0010\t�2���٪!���Kujn�E��\"\rf�\\.f�x\n�mAAG�T��&\"c\u0006�?�\u0000�R��}m܎Mƶ\u00170\u000f\\cy�.��i���A\u0017&�\u001d�\u001fbn�:4�\b>����ؙ+B+�ֽ�\u0005��A\u0001G>\u001b�B��'\u0011y���\u001d�]�\\$2ٺ���,$\u0014j<\u0017���6�\u0002\u000f�.ca�\rv�r�T.<\u000f)�%F����r���G\u001eI-R\u001eH\u0019M[t�\u0015�A*�\u000f(��L�\u001b\u0004���ڙ��\u0016B�����A,��d�j��aw���8�b�`U��F� ��P�Kz}���z�簞�GR)�\u0018�3B���H��s�V��KG���b}|N.|�\u0013\u001dQ�P�\u0000{s���\u001b�CKi3��Q\u0015lM�7.Ŋ\bߎ�\u0018(Sj�_��D�r�K\u0013nP�\u001aCס�kIx�Hh\t'�@\b�lzٹ��T����\u0002��\u0002�ٴi���|;h���u��nO)���\u0016چz�+����$T�f��]M915��*�l����I�\u0014�3Xy\u000f�+�R�3�D�=r\u001a��Pg�F�l/ g\u0015lg��4I��+��\u001bCi\u000f}W6���\u0000��A �\u000f<��L��W$\u0018��@��3>��e�\"\u001d(漿.�\u000e\u0004Py� �\u0017g�ւbe�\r\\0�r&\u001e鐐=ӧ\t�ת�}���{\tmT�`���Su�\u001d�;��w�J0����\u0005�ÒQ�:�\u001d�Y�����lԪ\u0004�\u0011P����9\r�\u001e�wԤ�\"*� é��U��!u�Vx��\u0013�N��Q�\u001d��\rF���ff��qE��pV\u0002uF���uc\"�\u0007�@�60��ٙӽg��i�\u0011h��p�\n�n��\u001c��ξ�\u0014��Rs\u0017٭s�\u0002�\u0003W@��\u000bR\u0004�ƥ��\te\u0010���k��I�A4�\u000fP��X��zliꬲAդ�^�����0`�}Dp�q8̸`�{�H���g�уMA�w������+X\u0017�D��b�6\rOSv\u0004\b�\fc��G!G\u000b��'ܐx�Ԓ\u000bg\n…�\u00140�`j�\u0005_~?\u001c/@���á��\u0003\u0002Ѹ����\u0002�\\�\u001b\u0007.Eo�Xj�v��DE�\u00059_��f�\u0013=e\u001b�x\u0016�E\u001c\u0005��\u001dH�C�8f8xJ�nw� C�Y^�;�3�Π�R�b��5\u0000~�\u0015U*t-�\u0002�`)�\u0004b�N~\\�9�\u0007�ctT۲�7��.��C\u0019b\u001a��\u0006X`U`�y�\u0012P�4�`Z{\u0002��\u00130�Ww\u00123xcm����\tԊk#$�\n��و�����)�\u0000K�4&d�\u0007z2�tѣA/�\u000fd��L�\u0016ܛ��΁?�y�\tŖm;�;\b�G�d|M6}ocI\b�����N����\u0004;�\u00019�}$�^�F\"�t?��쑅�\u001e�\n5tى\u001fˠ\u0006��T\u0018�0\u0003nj�1�RB�l��\u0013���]\u0001��w����W�|1���\u0005�΍�G.���\u0018��\u001c�j�\u0007�'�9�\u001c��4aQ�5�\u0007�vF�d�\b�F�\u000bMt.��ӄ[;�F.�@���\u0010).�0��\nK�h�ۂ8_+��(\u0018�M��\u0013�[�[#�z&;�\u000fNs�����a�\u000b�1&�U���\u00196I_�J�\u0004D�`9��<��ȡJ<��i��F,�P\u0006�\u0007�\u0000���R\u0016�~�G��*q(C9�r�r͊���\u0010�\u0004\\�A$�\u000fx��Mw\u0011g/�#2R\u000b�\u0005g\u0011t���\tL��P�\u0002��\u000e\u0004o�\u001cɟ6\u0019vk��\u00012^A:עL�r�\u0013e9���[{�\u0010�d�b門\u001d5\t\u0005�����e]�zP�\u0012���\"�\u000eִ,]��\u0019A\u0017����$j����Ey\u000eh�lqH,�[z(L�G�v�\u0007�\u0002uY\u000b=mr��m��F�Z�\u0006X�y�\u0000���Z����+��ެ��:�$S\u0001��%ݶ@|�]V�/\u0002\\\bK��Op�Fy�]/��VB�[�|' _� Q\u000e�\u001e�;���9\"7充n6\u0011�`�\u0018[!:��Y\u0018@f��\u001f.NMa�Y[&�K,&�9Z&\u000f'��ƻ�Ϯ&P\u000e\u0000K;�D��A)�\u000f���L����HM�w�\u0015�h\f\u0018�]#�\u001d]��1'�\u001d\u0001�Ήbۜ8FwAWK�%B��]g��?ɧ\u001e�\u000f�o%Φe,4tZ\u001bS\f��b�|�\u001ee��#[\u0006Wc1��s�L�-$�'�f�P/�$�ջ��\u0014\u0010�ʐ��ᵧ\u000bt&�w\u0007�4��Σ�,!_�\u000b_+G�\u001a��K[�,\r�[_�\u001c��e+�=�\u0019�\u001e׽���c�w�1�nHW?\u000f�������������.�\u0014.�\u0006O\u000bȡX��/���Y8t\u0016b�ѡ��\u001e0\u0012�M�[��\"��Oe�B�m��v0�?\u000f�Z�!��Ζ�Y\u0011v���\u0000\u0017��>S|r\t7ul鱦���TR��;{{�0�i�g4\u001eK\u001f\bFd�e\u000eo��\t��� 0r\u0014�_�?\u001b�\u000f���'CT\r�#�2�3��\u000e'Z\b �Y�\t��L��C����\u001d�-�Ux!�c\u0002���3:�V�+l,Õ�ј궻�km�ϗ4|w��Ty6�^�\u0014&\u001ap?_�.���Rm�J�UP �+$/S�?�=�H�c����4�*\u0013�A-�\u000fȀ�\t�l���\u001d\u000b��<\u0016ħ�\b\u000b�i�g7Qv}\u00009�ޣ6�gr�����4A���:������\u0003��u��c�F�}\b^ԨȀ�g\u000eq�����1eb\u0013�3 į\u00116t�gʅ�T��uY�^\u00006\u001b����A0x�\u0017E\u0017�~C����ղ��r\u0016/W|A��\u0018���ܬs�#\u001f��7DZ��_��'\bσ$�+��;t�ZO�嫸H?�g��� .l�HSߏL �\u000f��9\u001e�b k53$��yA\u00160c��s�\b�\u001394o�EW�\u001a2��B��,p+\u0016\u0013���[Ƹ`>���(Ǟ\u0013�i]�k�!\u001d6�\u0003o��[����\u0014%�\u000f��[��SF���A&�\u000f܀�L��l�{��\u001f7�����G�Wb�{���Ƈ\u001e��<{�gMrj\u000b���S�ˢ3\u0014����iWI3��\u001f1�ʋ�'�q#���T��]�z�d�p���_\u001c�J�����3;�Z\u001ax��M\u001b>\u0016A!�\u0017��\tڡ��z$g(���K�^��1<3��\nY\u000e�����\u001c\u0018�\b��:I�F�)H�$T\u0019\u0010:!��t��7p���{�O+y�Z����JP���)#�B\u0012`�[����@����#V�3�jV�<�i\u0006!}Rl\r3��e�\u001aK��K��\t�m���\u0006��b�\r�2j����;�\b\u0007Z��cnv�\u001e��\u0016Q�95yД���`4lK��A1�\u000f���X����/��\u00173\u0005�\u000bHA�夌�r+��\u0000��Ҧ����'����Hg���PcQK9D\f��o\u0015\u000bq�)y�����\u0018�kOH�@��a;�D������Z�\u001f��e\u0019��JK1�|���^^���m����ךv�D8�\r��L�5>�Bf�\u0000�ⅲ�\\s�S̉���\u001cAM��K�ˉ��\f�}�3٬\u0004n�;����\t�\u0000>���M\b���S8��12:���L�Om�\u0010ݸ��\u0019�J�Tg�������\u0006D\u0005x�S\u0014WU����y��G�s�Hb�O�\u000e&x×�ϲ\u0018Մ��\u000eV�\t�=�����%�!*�Dɖ����̝�Y��C�\u0018\u000f�:8M�5nyY�e�3���ڍ�RnP�ݸ[\t�M\"�\u0012��\u00065%v��\u0015͙�\u000e=:��C|?1�B��ё=�\u0015�,� ���\u000ef�r��sԉS'����9q����7L3\u00030�������/�?_\u0018^�?II\fK��\u000e���J��\u0017[\f��\u0005���V�K^�H�D� \u001b�\u0019�&���BhI�6E����.$\u00101���!��q�c\u0016I|�L�8\u000bQ�\u0013�\u001d�S��\u0018���\u0019g]A�Km���M��4\b�\u0019��\u0007�g��f�Aρ\u0010T��߷��.l3�x\u0001g|d \t���۔��\u0006\"�h\u0006\u0001�.����q��e�\u0004\u000b�Ԇ9ۦ\u001db�d\u0006�}`���g��!�\u0000�%U���X�v@\b���8�ϴ����jrp\u0003���\rnupŽ=]\u0017�\u0002)�x'&�R�)����BZ����\"T\u0018Xv\u0017H��/\"E��%�����Ul[�:��lrg�Q\u001d��\u0002���\u0006�:�u��gcj3LZh\"�{N��M�\u0007\r�F'8C�\u001f\u000eR���\u0014�=U5�\u001e���\u0005\u001b�*�=ç�؜���Ő����(��X��\u0010I\u0013sŮ�HBk�q���tʯ\u0015�r�t|F�/P�g\\\u001e�@\u0000�6\b;0ϰ\u0018��8T�F\r�f\u001f�N;㟊\nV\n@����h�ԗΣ��\u000bi��G��Mw\u0004TA\u0012g�Y�Y�N+>�<��W)*qu�֜\u0016\nL'����[���h\"��2�*���n��%%5/@��\u0004U=���#ab�p��Q^��D`\u001f\f\u0004���\n4IdJ#�l�°-h�J�-�?�tf��T2�ٞ-\u0012�\u001e\u0017o��-��\u0007\b�\u001a\u0013�A��\u0010h���*�n��T\u000b��y�Nxj \u0018pq�ޚ �\u0006�ecsS\\l���\u0007�}�ypv\u0003��ڰ�ylk4RܯUZ������W��PÏ@B��%�NJ#$�\u0000�]��!7�.�d��1��l���\u0018��V{|A7Y��I��-x��Ա>EB�����3��O<��O��'�!\u0014�=ڔ\u001c4���\u0015\u0016�>��w��f��C2E\u0013�f�����_�JbK3�~_��\u000e4���\u0002�@%\u001d\f8\u001bz��c\"�B{t��\u0012�\u0002o���W~�G�0\u0018f� 3�80�j�T\u0012�\u001b\u0002�)��0���O�\u0016�ϚA\u001f�/�XS�\f�\u0016%����4���V�-{\u0005\u0000�����*\fd�bT���#y�p�S��|r����g�v7[�\\d\fG��\u001c!��6Zu\u000e&��R��\u0001}�\u0013\u0014\"�e|��X\u0005AK�Ϥ}�\"�~�:�J��\nF\u0011�}�r\u0014�A2�\u0010|��ۺk\u000e3ї\u001c�(C�\u0000\u0014��\t�\u0005v���P�5J\u0014L೙)�0݅�'\u0015\u001c��\u0001�\u001eYv��r�i�<���\u00121ol��uݽ�A\u0004��K\u0005~�M����B\"�-�r��Ms.UIC���\n�����Ǿ\u0007�X�b���)(�\u0004^ʝ���a�!\r@��:Y\u0006�B�\u0014$m����\"���� \u00001Xv���&�r\u00014�S���W�\u0016�\u0000�\nuW�=o\u000bߒ�R�ީL\u0014�\u0004�t���T�'�dҊ�_\u0004����\u0001������{��9�ɳ��ĀM��B�\\\u001a�k�8 k���Dz_hV�&Ѹ\u0016��0�f��[��L�T�x�r\\\u0016LO\u0004�)����D����TD�����\u0013�A6�\u0010���۷e��h�Q�\u0004ᨘ\u001b��_��\u001fTf�9��u\u0011����BH-\"\"\u0005\u000e\u001c�&=0�w\b��\u001b�72�z\n����\f\u000b�t��X7�\u001b F`����6k�wR��c}*x�\"\u0017�\b�%�\u000f:���9�\u0004#6\u0002I`-\u0004%&\u0001\bZ�\n0�uz�5L4�g�x�3Pq�q��\r�\\�hޚ��f�\u0004�g��-�3\u0016�i�.)K>�??�]�\t��s\f���LxL�Û�y0�zD\u0016��DG\u001dX�n_�;��\u0001�Z��_N���~���d�=p\u001dK�iޡ\u0002\u0002\u0014�[\u001b�r}�:��^\r�\u0015�e�\u0004\u0014�v�8}\r\n++�\u0013��\u0015�\u0014K����\b��\u0018�\u0015���D�y�;B�n0\u000ft49Ωb\u0010�A3�\u0010����p��\u0002�P�jp5�$\u0006�`fb^|��˯}\u000b�\u000b,\rc�L\u0019\u0007a��ec�M0VawA\u0001�-G�����0\u0006\u000606���\u001d����x%�h<�/$%&dz\u001f�\u00053Z\u0017�\u000b\u0004��$�\u001b\u0011E�7 �M�\u000b��ɓ1\u0002�ߕ\u001f0ze�v�8r��5�\u001a@���6���,\u0011�?�%T((¾�_V�S\r�J\u0002�v�}�)DF��b�΅�\u0000�\u000b�O���=�}�9zs�\u0006rat�ZW�.rǶ\u0016���\u0015\u0019\u0012�4n�t���$tS�e�L�qU,��\u0007rЏ\b��B�O�N,[�l`S.8�\u000bN����\u0012�+:>����|�~��$\u00006�87�W�}���}A�H ���1Z}Ũ*\u00174�Cr%Iďwz!�M\u0010��'�y��\u000fln\u000f�^`i�\u000e���pr>v�2���s8�գ\u0003]w�\u0004��\u0016\fk\tj\u0013\u001fu,��^�Z\u0019��fl\u0016\u000e\u0014!\u0014�R�u�i�>��ӚV��\u000e�;�P��\u0019�V���غ�cr2�s�^�?m\f��oL�4`Έ����wK�/�\u001c\u0013������Oy�8CX�?t��J�n\u0007@.��z\u000f4��C��\u0004���S�WƬ{F��\u0015ǔ�(z�&w�aϊ\f�+�u����25�&O�|\u001f���g�㾣AŁ\u0010̀�|���i%S\r\u00038��\t\u0013��<�$rA��k��\u000e����m7��?�o̱�Dw�\\�E�ӈzO�ΫN&K8�����J5z�����Qe�z�K\u001cJz8G��O\\T ���ɮ�F�\u0000��+�~�\u001f���� ʕ\u001c\u0018\u0004b\u0018ѓ���^D,�J�\u0018~�\r�G�d�Qy\u0017�U�\u001c��ޯ�פj\u00043��+8IDe|�rN��F-DJ�f�17i\bsh�̝�\no3��\u0006�nn\u001cHv-UQ\u0007P\"�H���\"�\u000b�\u0013\u0007�T��eJ���U�c�vR�~\u0007�3���5��K�C\u0012]86��?��r����H�?��\rӤd�?,�r�^GE\u000b\u0015�-)T���<6����\u0004��\u0017�1��@�\u0015����\u0011\u001ac�?��\u0002Q�쨷\u001e�D9��\u0002��x_aRyg�\u0006T\t��H�*���Z��\u0018�\u001cD��c�l���i�|}rh\u0019z\u0014O\"����v��h7����粑M�4�A��s%�d/U��\f\u0019\b�@�\u001d��e��{�\\S�铺\u0013q8gf��H���eȈ]\bϟ�A\n�\u0010���X��U�w��\u0017�_a�0$d���ZƦ�B18��X�3e\u00153�~*�\t�\f��&?i�\u000b���\teI\u0012��\u001a��d|�\t���G�-M~�As��ߚ!,��\u001cZ\u0016*\t�\u0005x�o-��z�y�q��<>u]T+p((��\"�x��+;��d�O��Ll�h���A4y��'����\tT+��@��\u001a\u001ef�\\mZ�>z����Q��\u0014A�g�q�xE�����vz\u0012�\u0002�Z��?e̶V��޽e��T�L�{eC\u001d�u�\u0000V�\u0011�\u0015��X��i`�Y*�8�Z_��|��!W{�\u0010��R��l)[�@�A\u0019�\u0010��XХ1������Q[�f����_\u0000L�\u0002�\u0001���0?3S&�ڣ+�G���۾�-�\u0015O8�m�E�cߴTϫ�\u001f1\u001f=�_�\u001f�P\u0005�LG4��m���K\n��[��q �~%��ƜuD� 6je��7ya!>%v�\t��jz\u0014�>+��K,����i�#�z��\u001e:2����j�݇P�\u0002���\u0017^����0�\u001e3/\u0006�[�_m\u0015\u0019G21\u0003\u000e�/�)4;\u0013}0h��^'̴�!+I��\f�SYbӉm���I���Xr\u001bܻ@\u0018tjf��\u000b�f]�\u0001K�\u001d\u0013��^֔���ԫ�\u0002yd�G�kWZl���\u0019\u0010.\u0018{��A#�\u0011\b��X�۶���>��ȼ���#A�/ҍ�\fJ�,�!0q�&F�U$�#^)`ځLA{/��]$K�*���ukvh��\u0016$͘G�g�Δ\u0007�A�\u0010}����<\u0015�i�j�}�~��1���\u0017��P��-\u0014\u001d\u0010�� �\f\u0005��A�������¡V�\u0017!�(I�\u001e��\u0002�u��X4,�,k|��l��Fz��*�E;w����w�~v͈.\u000b\nx�Fx\u0004OB$��K�\u0019d�A\u001e�\u00110��L��1��5\u0005䃪�\u001f\u001f��\u0014*�\u0017F��\u0001�\\\u000b2�<��\u0007�S�\u001a��3X5\u0002��ӑN\"���p��[�+�[�@��\u0010��\u0005O�շ{���\u001d {(5ʅ�(y��'�XF�ڷn�ls�\nRK\\t!��#\u000bL\u0017��O=b,h�c�{ip�_��.4x\u0000�Waq�X�\u000e]a��T���e�꟔�:�\u0010�J��t�$�\u0000�\t��\u0013�H\u0018��\"h?l�-�\u001d�P-\u0019�t�?^��\u0003\u0004�르Ї�͏N\u0012\u0011^\u0017�a\u0019�&\u0007\n�W�'\u0001����V���,Aʢl{����\b�2͊x��$�:�饇�\u00044��.ɩ�:_2K����\\��w�A)�\u0011D��L��5���a�X\b��k�rM4uktV���^�l��\u0012\u0017��\n�ۧ�Ƽ븱�\u001d\u0012n(_�2�T�7�\u001e\u000e\u0015���4�\u001d�\u0007\u0019t)<2�޹���U�U2krg���\u0014x~���/��,\t��\u000bb1�\u001b�z�\n��B��\u0010��\u0016��\u0000`�\u0000z�\u001a�'�94~I��\u000e���ݽҬ\u0015)�Ұ�{:\"d�\u0016�e��~\u0018\u0004�h��Xʟ����렱�Io�����̏6��\u001d*kB�a\u001f!3��3�\u0011��|\u0001��W��\u0002�eʝp؆��\n*ۑ��l��Bek�[��8�«�<�\t��\u0005��tAa�\t\u0003�I�]\r��Qo\u0017�W�W\u00015i(�-�Lm4`�d�A%�\u0011X��L�Mǔ��\u0002LX\u0011�%��\t����&o�2|�ۣ)�{L\u001d��t�N�y(¤�p�(\u000b��\u0014��\b\u0002�/\u0016\u0006\u0002�/=�����Ϋ�ڲ�2�\u0016�/7�P�CR��&pjP�ޞa\u001c�m�'2jA��\n$�Ʋ`\u001dj�D\u001a��;���z��hpZ��1S\t�DJ�Z�ҳ\"�;\nDI0�ش\f�Zi��TQ�\u00196�]&�S�5ߕ�\"�sm�\u0001����%�2�X�Xs���:\u0003Hi7l2�\u0018*6��\u0010�;��P��Ld��b\u001e-אވ\u0015�Χ̼�\u0002��G\u0000�]\u00194\\w\u000f��WwI~\\��\n�!�~��>��Z��|@)\\9K��;,\u000b�\u0006��\u001b\u001a�����y\"\u001dy4�\u0004����\u0010�&�̢e9v\u0005�8S�<\u001f���\u0002����\t��0단�\u0016�Qv�YK�A��+�>���p?`,�\u0003`}�qC�O��9{wK#E����\b\u0003��x;\u000e^H_��=�\r\u0018-Xn�:\u001c�s�\u0015d��)H�����\u0013�i���mU�/\u0000%\"N��+\u0013�\u0002�ϭ��A\"�\u0011����·� T\u001b���\u0017.��?eɽS3����,�\u0011�\u0010\u001aneR�\u001f\f9K�A#�\u0011���L�ۨ�\u001bb�J�Vxj���>R�;\u0005�(N*��\u0012Q{@�\u001d�\u001dA\t�iιWn��\u0013\u0004dw9\u0011� R��\u0005H`9\f!0�\u0012�Wƛ��^��ȧ\u001b�u���x�l�.4�YX�\u000f��\u0016uE֜@\u0000\n���<�\u0004\u000b,\u001b���V;\r6pU��|�_�܄�\u001f}o�KX1�)\u001ex`/\u0002L�8�qЪ=�:U)f��\u0015���r��/^�!_*䉢\t\u001b�p0\u0010�I\u000f�HG*'w�\t��{>�\u0006\"\u0018^b��~t\bUL\u0014���\u001bP�6A\u000b�m��\u0013�R�\t_�<�\u0019\n��\u001c�G�8I2Sm��U��U\u0006��\u0007�\b�:Z��L\u0000W�%\u0015����P��x9\u001d+O�ؑGz\u000bm!OQˏ�0�o\fP�4�dY�}\u001f�Ѥ�0��tA\u00059_0\")�v�\u0018:��\u001a�\u0003R�B\u000e�\u0011Ѐ�}aI�\f�#R\u0010\u001a��e(����E`�U\u0003�m�m.�$\r�0�_\u0015���\u001fu�\"D\u0001ɐj�{^\u0011���\n�r��&��\\|\\&mX�z�n-��`�\u0017\u0018O\u0005�4�fQq�^�l/�\u0010XC�\u0006\n���Չ��,;��I\u0007g\"p+�\u000f�\u001c������b{9�\u0005��DF\u0007�#ヰ��>40\u000eX\u0001\\�Lp艏��Lz͢R�/�\b�d�\u0010\u0001$��\u0002=��\n�/@\rݾ\u0007�%��Q�O\u001d��5wb��t�<�\u001b\u0017δ\u001e\u0012f=q��\u0013�\u0018-$��v�[$���\u0000\u0018k�\bQd}�ʔ\u0001�\u0017[Z,L�H�\u0005+`f�\n#���N������3��\u0011�G�<>�\u001e��ȫ�T7EaQ��+\u0002|'Uk�b���\u001c\u0013�\u0013��&�\u0019�=F5\u0003�yٯś�\u0002��\u001d�¢\u0010�|\u001aF�\u0017�����P����57\u0003���FĆ\u0012�Z��dA�,3�\u0014m��)b�\u0014\u001c�@1�o�P[�`�I�\u001dL��ʶ�O�\u0017GP{�߁����ϝ\u0010\u001aͩ1Ƅ\u001cp[�)6���d$%���ч\u001a��R@n\"\f<;\u0004��F^ݼ0�%x��n��\u0019�\u001e��\t��D������\u000b�R�u��\u0013���BDA��.`�ȇ��2}t�B2#f+>�A\u0017�\u0011��5X�$�\u001c�`��r�����x�rv\u001f.�\u001a�q��0�U���б�\f��K�\u001cg>.I�\u0010��\u001f؁S�\u0012m��vÑ\u0016Y\u0004����:���b�� �V���(�\u000b�̫�$zu��D\u000bo\u0011��D�¦���v��\u0013�N\u0010�m�ح��.\u0014�9�����\u00077=\t��\u0013�.\u0000<�\"\u0017I\u0011\u000e���\u0017\\K3�zh'�����Y]�>^V'��K\u0011�kWj��GfNE��f��F\u0015vz�a���L�T���R�njjd�\u0005QL!9���;C�m`\u0002�$8������T��f��3Tɧ~�\u0017�����5�Oi\u0001��\f�\u001c\u0016��3.��A\u0018�\u0011���Mw)�u�\u0005,i0�cŞ�E��O`Z\u0001(�Z��}M�\u001bQdL�\u001ed�l;S��4�\u0000{\u001a�%$ҫM\u001c!��\u001amW��5\u001a\n�\u0012�,\u0018�\u001dw�{�iW�lA�t���\u0006j1�\u000bg�\u0011��ƕ��5�7\b��\u0013�d�j{fm.��C�\"�[�<\u0011/~��jl2\u0017W�Z�V��L6նR34���\u0015>���C���BI\f\u001f�\u0018N���\"�Z��5q�͌R��3\u001fp�]$�\u0010��ג\u001a�^�6�\u000b���Bpјh,#{�\r秪\u001a7)4�e���\u0011���\u0018���Z\u0007\u0015ϐ�67�)��c\u0019�N�=�8D\u001f�F���'�\u0011\u0000\u0016�\u0006gU�ow�J�A\u001b�\u0012 ��M\u001e\u000e\u0016\u001aEV�1�V�\u0017>_6^\u0016�2�<6\u0017\"j�`�~�'�w��\u0001�:�/\u0011�\u001a���=/t$�)�0��]�af�\u000f�F\u0005�\u001b{\u000e��K�\u0011��S\u0019b?\u001b�\u0015z��4�P���\u000fǥ���\u0004�\u000e�G����c��-�1!�T�x�f����G0�@�l��\bέ=�l�?���}'x��g���\r�\u0013h6�E|�@$%�b�Ԍ8i\u001c��*D\u0018ඇ(cQ�������W\n�t�˲�;\u0007RZ��)�U��y���e�I�3�d�;��v���\u000b+�_�+\u0001��\u001e�\u0001qD1\u00025Sn��:���g0�,�1��%&��t��σ��A:�\u00124���\u000e��%��^���\u0004G\u000b+���\u0019\u0012\u001e\u0013�v߬��\u0012�\u0016<���v*TĨ��B�*��O,6^\u000f\u000b:�G�\u0016c�ƭ\u0011\u0010hje�\u0018Z�]�f���Z\rql��@\u0012l�n�dN/V�laL?�\u0000_�\u00023�cF=\u0019\u000e\r�V]�ƹĀ\f��_O?��䨅nz�i\r��\u0019�hQ�\u000f��\u0015wY�B�1#h綾�N�XZQu��5�ڱ^��\u0000����D\u000f\\a=�\u001f�.��\u001b#���)��rFHf\r�kň�y/;\u0006\u0018H�\u0006��v\u000e\u0012k�z����ژ�\u0012H��UӠɤ̹��e�=���ݟՎ\u0002�w�!\u00191&QC�����؇=\u0005����ZS��I\u0018z���b��b�\u0007iR�>\u001a�S%�A'�\u0012H��M2Y�<��Ͼ7\"M�\u0014��s�c�}fDZ��K��]���B�cŠ\u0005\r\n��\u00149\u0017\u0018� X���\u0019��ƃ���\u0014�\u000bde܂�ﳑ�F�\u0000�h�\u000fd�\u0007/_,^݅�^�=�0\u000bE;B�\u0017^��X`�S��a��v�<��\u001e��K��}�U\u0003��\u0014el\u0004��ڎ���I\u001b\u0004��\u0007oVW\u001d_r܏���~�e\u0004#\u0003\u0018��C�Z�\u0006�77��;^\u0013FS�К�p��uH/a��p8�d8��\u0016G�q�\u0015D��fc\u0019u\n�s�x�����_��9\u0004�I����w3p5��C�>I�DМ�C�n���?\u000f��I�2�Z���\n��5�i\u0011\u001a㻈���:�A0�\u0012\\���\fM3f�M�Ky�ރR���f��˚ba�P#�VW�4�{\u0014�м\n�\u0003d�f\u0012�w\u000b:�.��;\u0002�\u0010\u0000���-/_��D\u0000ē�\t�\u001b�J��~\u001d�\\�0G+�\u000b\u0015\u000b_��\u0003OD1!b���&\n��oi�\u0018�0<\u001e�%~~\u0015u\u0012�$�)�r�ힵ�Ȱ�SJ�}��ؖ�8�Tm;�t�\u001c�\u000b���\u001d{���šN1\u001f��?�\u0006Im�\u001c�q+ �����\b\bI�\u0001�\nh:,zF�\u0012u���)��O�˜�)(�K�xH�D\r�T6���aU��u��w�\u0003���_lZ;�\u0003ƀ�Xv�\"c*�\u001c�����+\"\u0016]v\f���~����\r�9�TA&P\u0012Q�ը��E'�\u0005N�A0�\u0012p���\fM�`i\n�׽��D}����[�D> d�\u0016L�\u0017�\u0003�\u0000+)\u0018�\u0013Y��*S����I�1�X�<\ndߣ�\"�l�h���t&zt\f=�)ޗ�x���5��\u000eVӌ*�-���&t�s�Hv�\u001dU�A\u001cЈ�n=\u0002e\n��f��\\����}�(\u001b�\u0014َ�2�\u0014�s\u0012���\u001d����?�����B�:��\u0012�Y\u001ae9l��CtpZRӖK�ao�)���q>:�,�p\u0017,?�@0o�l��e�˄\u0003���}!�÷��?UV\t��I\u000e�\u0002�-�>�\u000e>\u001bT��f+��-rT���\u0012A4^���\u000e�c�l��H�y;Ǔo��_�I<\u0018�\u0015�l\u0002֮�\r�\u0003���B�\u0005k�A,�\u0012����\u0016Ђ5r]]�U\u0014��F\f�F�1�M��;�AU�o��?�����rN�גHl�?�I$\\�n#���H�G\u001b�{�G\rI\u0003��OBӤ\u000fJ�\u001b*v�-\u0002��\u0001\r����;��q��!;����.h��x�;\r�\u0018�$��!�/\u001a\u0012`\u0002qC��L���\u001b����:�֜` \u000e��*I��e�ѫ�D\u0016����\u0007��}yobun�{����\t��,O���aF��=~ک\u0014�y��D\f�7��1�˃[��1�?�yI]B\u0010\"��:��T$;��\u0011\u0017\u0013����Vi�\u0016�\u0017��\u001e\u000by��׮�ll���\u0006@�+H�� �u�\u0012��J�O\u0000��[�y$�q�)��-x�UY�A\u0019�\u0012���.du�\u0013!.g�4�z;\b�\u0007�\u001d�n_(��JGƔz���9,P!\u0018p\u0004�La�[�ٔ���I��z9��ҳ3����*z4�m6��b��Ј/�;b�!h�rP'4Ѧ?�:\u000b\rY\u0015\n_L�W)X`�d�\u000bj�+6�ƫvP�:Z�8��\\��T�4���3E�\u0012�w0ʥJ�!\\@Z&�.�U�!r��ћWh��\u0015�4�\u0002��\r����B\u0005��i�%lE��yc�����C��*�~\u0013&��k�$�Rro4]�\u001eN�+�P�n3��Ge�z����!��Ǥc�Y��}Ƣ��\u000fP�p�W��\u0003�ݑ$\u0018�nF����d�A\u001b�\u0012���\u0001�\u0001F�߻��\u001dj0�@�D\u001dC��\u0002��Z\u00148U\u0017��@�'1]�\u0005#J��]���۶��'�=\u001c\u0017�\u0013!R4��|�d��yk_�X�RĿ�ݰH{Y�l��w��F�_���N�\u001c�W\u0012��Q\u0011͌�\u0004`����~g�0\u0010�E6Z�ʖ �\u0000\u0018����Ƀ�4�u���;�h\u001fw^\u0004 /Ѣ��&��MQ�O�jFd\u0007�-��`X\u001c����b�\u0015F�N%\u0015.z�Q�صz�h�U\u000fR(�[���ˮ\u001e���)wxUZ��v覞`~�{hj����\u001f�%�%U��8�����\u0005��\u001c$U��\u0006\u0000�\u001dLJ�M��6���/��\u000bN��A\u001c�\u0012���\u0001�\u001b6�\u0013D�q�\u0014��+ﳛ\u0005�\b���'�4c{\u0007\u0000!��mP�Y!tc���\u0013IL�ͷ\u001f��:ԥ�����(P�\u0014\u0019~�x'��v�d&��|���?g�[�/\u0005���H4\b\t.���,L96��I����2���F���'\u001e���\b\b�59x�/�M���Wǣ�qXlt 5�� \u000f�\u0005\u000f�)M�$A��6t�`\"m~�gp�:HnG�\u0000�A�ɚ����d�\u0010?G,\u0006\u001f�A�A$�\u0012�����xB\u00068\u0000\bH\u0013�f�Ln�]�.�0\u001e��\u0003���=\u0018�`�C}HrY-y�\u0004��\u001b\u0014©�E�uۏ\\i3�,�Luĭ�_�Pww����\u0010��{\u0000���2\u0001d\u001e�\u0001\"u�ܸ���4l\u0017�u\u0007�\u0007�\u0014��\\�<�\u001aApN�m>����jط��\n/�T���g�&.ӆ��\u0014�:1\u0017{�.)�;��e�o�����\u0003\b)\u0003\u00079<�*!�Yݿ$�Q؉��5Y�s峪�F��g��LrL��\u0003�؊�K��\u0012�Q�`4��\u00117�\u0002\f�I�now�ѻ��䃎���:\u001a���(�/�u��1�x�\b&{�t��\u0015�@5����Ssq,\t��6��A*�\u0013\u0010���f�E��|�Ɵ�D�\u0005\nm�Q�Q���a�P�h\b�6K\u00015V!�-U�\u0017���8.2�\u001b\u0017�\u0019��(8�7�_cM]&$�l\u00047���p��\u000b�WҨk`�m;U���d*~�\n8�Zް%�O�*\u0007�\u0006���N\u001f!����΅9y�B\u0000��W���\f\r�WVe��A�d\u0001�\u0013��\r�\u0011�'\u001c����t\u001c�d1��H�x6\u00075�V`�G���=g����\r�K�#�%\u001e���l+�=O�p�^�x�\u0003�\u0013 *����m\u0006M24�_0���A?�\u00138���\u0010RK�Ď\u001f�wSb\u0016�*��f���[�y�\u001d\u000ej7\u0000s\u0006T��Z��_9��?�8��Z#��[喻ƶ/��\u000f�\u0018��\n\u001fj\u001d��B�#\u0006�\u001ce��(F2�\r�m��?\u0007|��m���H�\u0014QA\\�06L\u0011̊w�sp��Z�?\u0007`dx�\u001a�4Ov�\u0012�zZ|:�ە��07\fZ�\nE�.[\u0001\u0004E'�U�o�f\u000b>Ť�%D<���\u001b]z�\u0015��[I\r?\u000f(ʟ�\u001f���33�)��\u0010�ɥ��QX��p���1-�X1��zX\u0000��iX�J�9\t����\t(S�Vs�L]@\u000f\u001a,����\u0002�r\b,n��h�mC��\u0006���7���n��I��\r�\u001b\t\"t�=\t�\u0000��@�\u001c�ږ\r��Q}\u001c��ңA�\u0013L���N����\u0005Ȏ0\u0004S�;_��;z�\u000e��mf��أ���(O���U�\u000bk!\b�jg�u\u0005�.��I\u0004�0�\u0007����j׏X��%����Y�\u0001��\\����p�n�\fF����qVx��\u0011�Z�\u000e��ff[�2�<����OJ1]��\\i��?_����\u0007���\u001d�\u000e\u0012+�fJ�����_�f\u000e|�\u00112��`,�Ȫ�\u001aR�1e�f#����a�nH��[�\u0004��.��BB�Ƥ�����]��\u001eƷ��\u001f�nr�'\u001f\u0015#��@k\u0019�=\u0003�i�\u0012�(\u0017b\u001c�\u0003S\u000b;�\b�\u001d�0���b{�҉&�\u000f��F�(^��1�n?��E�76�Q\u0003�e]N\u0013\u0000o����F��i��\\|�\u0019UT�{��\u0001��J�p\u0015��\u000e����p�AΫ�s\u000b\u00162#����\"�I�#w9�!o��\b�Y[��{��]���\u0015��\u0003j`�4��\b�p\u0010J\u0019��Ph�n\u0019)0Wz�T��\u001b\u0016�$����׳R\u0002G�lj�2O�E䀍�\n�}w�|`D�H�g\t�Ë]س���\u001b�7W�l�*��s\u0007�\u0005O�����\"�'�e��ZŔ\u001a)5ѣA��\u0013`��M�#\u0016!�0MB�\u001e֚iz�򌖹���o\u001ddg-�z�!�\u0012\u0016��o�\u000e�\u0012\u001b�皑�\u0017-�)p��y�,�Xk��y����1�w��\b�\u0012�R�&*� �R��QK�҅��p쇄Ʒ!�s}\f\u0001��ѩ\u0001�uT(S�x��\u001d��\t����\u00199�]�4�Q�h�`�\"�ύ\u0005�K?�&��\u001f��Cl���lS>�O4�n\u0011�Y\u0007j��L�xy��KY�\u001ec��7��.$㴽R��{c���,\f:O�N��e�S\b\u00124ZHу�\u0001��̪�\u0003p�\u0017�\b��Bܬd�\u001ak\\�K@eMd5桥\u0012)�\u0003ɛ��<\u0016���\u0016@'���rlG�����\u000b����o�\u001c������~�q�:��qӄ\u000f\n݃g<\u000b��u0�ӟ���A\n\tz��]R,n\u0014�\u0018�\u0019�\r\u0001���v13b��P\u0013���&�3\t\r��Gd�Edv�j\"��\u0017�w�o\u0005\u0011�A&�\u0013t��L���n\u000fl�t�M�\\��Z֊\n�U\u0017ؾL@��˘\\�{E��:\u0018�p��q3\u0010\u0007\u0006�6,af? �\"�nG7\u0005\u0002p��\u0019\u001f`\u0004�� �}��\u001c�S�皀.\u0001�t�D/\u0010�\u0010����x�y��\u001aHHȼ���n-�N(\u001c1��\u0003\"W'p�'���-&��q���\\��*�N�E\t����&�\u0018yX\u0017�=�\u0010O��Me#\u00107��_F{�\u001d��\r�\u000fU=S��X3)��\u0013\u0004��\u0010zc�\u0017�\u0003��-/[jic�d�̗���D$���/~v�;��\nB+$\fl:Y��Ư\u0011J��}\u0017�F%�RJ+�\u001a(�f;N�{U�v��6��Ѥd*V�I\u001c�73%\u001b�A1�\u0013���M1�L��d�\u000bm�Ff��ʌ��v\u0006�\n\u0012�?�}d�E��nzH\u0005�U]\u0001&�\u001d�_�\u0018\u0012ĘO0;\n�(\u0017�\n>\u001d~\u0010{�Y羖Q�漹\u000f�]��\u001cD�I%���=�듣AD�\u0013���.��/!�2:�\u0011��C��A\u0016\\�9Xr��@�p�DͿ\\�\u001d�4�J��nf\u0012\u001f9�'\u00127gE<�L��\u0018�G�\f���\u001d]�.�\u0002����\u0018 c��J=��V�{��6���\u001d��f\u001d�Z�0B�����\u0016�{u�2�܌s�.���k���39~- _|2i��s�5�X\u0004�.��UA���\u0007 \u0005�Z<)T�\u001c捵�\\vB��\u0011�R\u000f��\t8T[(�\u001bF�r9�\u001cǪd\tBw�\u001a�̚^Bq'\u001bI�^\tׯ��\u0015�f����l��1�%\u0005_m�F����q/<\u000f9Z�B��^,�\u0006k�#t'�aɰi���{��s�\u001b��9\u001cR\u0005��\u0012�)���AC�\u0013������\u000fi\u0007)��+XE`V7@F-�?\t�Q���費N�c^֡�U�O�\u0019\u0001\u001e\u0002��FW�@���4ԺyNݔ���AD\u000f��\u0012\u0010\n�3���ZO�O\t}�w�\u000e\u000eD�7�N\"�V��S�]Ø�,��i73⯹�R\u001a\u0018��\u0004o�S\u0003ѩ\u001b��^6P\u000b���]!x4�+�D�hW�X�k\"\u001f^�8u}x�R\u001d�4�e�f\u0013\u001e��%�����_6轕\u0014��]\u000fm��Q�\u0000��h(፸p�b\u0001���R �Q-Ǫ\u0002�ޤ����^�֓\n!d=ȭ��ʏ��\u0003��\u001c\u0011�۹1�$��О!<��X���ը�_\u001c�RL��|�:��p\u0004�����1ɵq\u0002dwC�����\u000e�&#\u000e�����C�3iJi&��\u0017�`��I\u0017��d˦#_N9CWy��\u0018k�\u0018X�q\u001aZ\u0000�\u0012��t�\u0000��}\u0000@P\bi�\u0003�A0�\u0013؀�M{H��%ss���\u001e+(sut\t���ѯ-��1��HL���/\u000f9%2��Z\u0014\u0004��l挤y&�*�\u001c\u0014�ZS�v�m�9v�/�\u0016�)�\u0003���p��<#\r�\u001d?6C���\u0006�,�dK�z�'c\u0011�\u0011\u001d�\u0018���!D\u0001\u000eb���jƻ��yu�\u0011s�C��y$\u0002��\u000e�����\u0000\u000fW$Mky֔V��9�ĝ�xp~��\u0015(\b�e�g\rG��1r\b`f�-,<�\u0011\u000f˴�;\f�;h�1O��L�{��o�A���$�y\u0005 \u001dnU�8D^ߴ(T�p�q����q\u001b}k���\b�D<\u0019\u001al��OE\u0000�\u000e�[a\n���q@H%g�,��oEK\u001b�\u001c\u000fk&\u001f\t��z��f\u0002�\r)��A\u001c�\u0013��13\u001f0j@\u0018pBj�\u0012��rd\f\u001d%\u0013'��K#���}5���,�\\;��N�FR��I�g�-e�\u001b�\f��>�:FQ:��P�h��\u001d\f�p_�(�%8?%�x�}���9k��\u0014b\n���@~}\u000e4:�\f �\u0013\tDYʋ�D1�HB`s�\u0007�����\u0017����\u0019��ʒ���|�Gĉ��D7�F���\u0001\u0003n&W���Wh�ٵ]��Ueu�BBH�.�յ2:P��\u0006�Z�:MGb��\u001b�Y��\\�\u0013gx�\u0014�OqƱ-�5X���\"��R�{I�V\u0014N�D�/�\u0014qnY;@��䮁\u000e�ix�M�9�q:lG\u0000:�r\n�\u0004��~\u0006�\b*+y�듖�\u000b�]��9����薥_٤]!c\u001f3��U�A@�\u001fJ\u0016(�A'�\u0014\u0014��7\f\t��\u0019����zڌ��k\u0012�\u001c)JD�\u0000I�X)���۝�9\u000b\u0018�X���޴�����\"{\u0010�\u0012\u0004\u001c�\u0019����,{}Q^\f��v�]\u001b\u0005��\u0002����Ħ��p��L�\u0011�隵�p�`���M��-:��d�Yl\u0017�\u0005�<\u000e/�\u001d�w\u001a��\u0010gԄ�f4�\u000f3k\u0017�co��E�T�F&hx���\b\u0016��W\u001fZ��\t^ZM�\u0014c]��H��9\nB�3۔a���0��P����\u0003�j�stU�=�0\u000e\u001e\u0007��u�+@o�Д\u00039��/�6\\C�A2�\u0014<��2dh���\u0014�}P�dƘ���oޒy�Bh� �5Ld\n�r9�˺b#-Ck�z�\u0018>J��u��'�U���5\u0017�i�_(\u0017\u0002K@Mm1���[t�ʩG��:�9�V�h�˳^����O\t��֠������a�f�[\u0006����\u001c\u0015}P�zS̎�}W���x�e���*g�\u0013`��t��\u0016|�s��pwIJH|K��}�\u000f�~���O�\u000brz4�gT�\u0012I�����v� ��v\u0005Y��,n�A2�\u0014P��2y�x�\u001a�=���C'}o�+\u001f���E�E\u000fP��/j3��r���d�M�Y�W���\b���\u000b�m���5\n�����W\u0013�%��]\td+\u0014���\u0016*��o��\u000b�0���N�����}Kao��\u0017٘\u001c�����x`ح��\t\b��R�,Z��R\b�<;�J��\\פ�yp�~]�j\f���@=\u0006\u0018>��wT�tV�\u0006C@u�Z�a�N��t��qI�[4b\u0015E� ��A&�\u0014d��L�.�G���*���\u0017��\u001d0\u0007����\u0005��1�\u0014�s��\u0019��\u0014a�k�!��]�\u0006��c����AN濖�ӳ��<\u0015S:�\n��{Z\u001d,\u001b\b���\u0002\"Y�p��o\u001fj��J�+�5�\u001e���\fQp\u001c�2��u\u0012�h�S\u001fV$8��U\u0007z\"Z�e����$S��\u0016`5��:�.H\u0002\u0006~�y�a�JKa�!\u000b�!�+�o0Bt�Q���h��A(�\u0014x��7\n�t�\u001c�݅���`+��^�]-�&G�\u0012�B���$�.���.�/\u0007�u{y\u0015���gW�6\n�!�m\t9�'��=�jV/\f�f��\u000f<�\u0000[���d7��\fv�)�\\���Y۬9��OQ4\u0019-\u001e��:S�̊��T��!��\u0010��Ej��D�Z�=�2\t�|�y�x聫���^\u0005��,��6��;�2p(�m\u0012n�B6�SBu.��\u0019΂f�C��]�\u0001h\u000bl��B�{�l;�_�L��\u0007�f\u0014\u0017�n+j�,)��J��n���r\u0006����p�Bj_�����xT�\u000f\\<�\u0006��+A*�$O�}�\u000b\f�A\u001e8g\u0010�sHOY7&��n=k\u0001��Ka�&M�A+�\u0014���K1�jw6���O�\u0017T�{���W0��]|��#/p��\u0005���j|\u0015�h׃�e����n)+.��pV8ҿj\u001af�f@�U\u0005\u0000c\u001b�\u001c����J�H\\9I���}\u000f�u��\u0017R�΄v��&1���h� m�q[�\u001c�������:��m��}�K�\u0019.7��\u0000\n���0x��b��8�\u001e\tG�-\bL��w�<���Q����~~��mN�N�/$\b\r/�ĉ�\u001bR�5K�d�#�<��\u0001��}F�\bߗ�\f/s�������s�m�/y$\u0002\u0019�q�\\]�v�c\u0001�~��\u001f\u001b\u0016���:[u\u000e y\u000e\u0016�3lj�P��,\u00194\u0012z�\u0010L!W\u001eC�*!-Qi�=Ϳ���K\u0019�t\u001e�β�I\"n���˄��j�\u0002#��\u0000�Ɵ�!T\b^Q�a�;r\u000e�\u0002\u0010u��)�����Lm�\u001a�9�?%X27N w\u0012\u001f7fУ\\\u000b*� �%�n\u000b{I.+%��JwLC\u001f�9��Y��G\"?\u001a\u0016�\u0007\u0005/�bW{w5b!W�]��A5�\u0014���K/�\u001c����\u0018\n.��ճ8m��\u0016*B��$��5���!\u0001L�Q�8��\\pT�\u0001u��D�\u0001\"�4���\u001b�D��r#N�\b\u0007�6�}2�Ѳx%��gJ�L��Y�v�]8e�ɷ�\u0019yKz�2�d��>`Ȍ\t�d�<^\u0012�K71��A@�\u0002g󰸓+\t}-m�և��Z�:����ϸ�\u0001v�3��\b\u001b\u000e�D��e���g=\u0014�t.��O� ��\u0001\f�k�c�(>.�6+5_f\u0006�A\u0015��L��+8�)�O�\u001bώ\u001c8Y�5S�%�F����C�w\u0003�ޟ���(>��ēW\u0014�D��\u0013\u0012�cu�ܲN˳H����\u001a��΂�[���>�\u0015�\u0012�\u001c�`�#����2i�AP�\u0014Ȁ�X��&\u0002��oB�ްt\"�D�L���� �.}�\u001bF�\rVm\u0007�\"g���Z���p~����P\u0005B�O;�x�1ʵ���=z4��5��R�\u001aXJXA\u001d\u001c�yu�\u0015wo�#\n�<�\b���4�Sb�y�ua���\u0004ee\u000b��bW\tNbb��l�wp\u0016��:\f��+�&x\u0014z�=\\RN�\u001a�\u0019$���\u0012�EX�\f�\rfm�\u0014^J�)��\u0002\u0006E\u0003zIЇ�tjr�\u001bl~�hVϺ)��1羬��^\u0012�\u00112�\u0000Ó7�خ\u0001(c�~\\ۘ��`s}3��\u0001�@�Ծ���N�GdG�D��\u0001\u0011\u0019�)�[|�X�\u0006{\u0001\r�>m�>qb�\u0017{���Z\u0005��P\u0002���;ڣ�e�\u000f�\"�>y|�\u0006�Ѻ��C\u000e���\u001ep$b6�6\u0015�`����A\u0010�\u0014܀�]�T\u0014)oFB��= \u0001M��*6�D���0rϿ��-��$�܏�\u0000�\u001a����mm�\u001c��1\u001d�5��1}+v�d\u0004+����G�e\u0004\u000fp���p-n\u0015���\u0010��7M��I\f�J{��\u0013��� ��O\u001f�\u0012���l��y��9O*/}�7�r��$Ud�s`�\nºT�\u0011:_O�-(\u0012�����6��\\�$�9M����\t��\f@�=#\\�\u0007�低=�,@�d6�J�`��&h�R[P���9�gPqԽp�K�qt�#���#�\u001c�[�i<�#ֹj���6�-~��\u0003\u0002L`���ܩ�\\\u0000I�A\u0003�\u0014���Ms~lD\u0015\u0000\u0011�|)B�`Ik�\u0015?\"��\u0018�h�\u001b�ݣ\u001d����\u0012�k*���ڔ��\u0015͋s��3\u000b\u001b+����`������m��NX��![0ٛ�[\u000b���#�*b�T6�T�T~q\u001a�=���\u001d�t�*�a\f�4�߳z�\u0010V.X�\rv�x��0��ٻé��<\u0007��9��7��D���_�ܪ�#.�akI�4\u0016����{V�\u0001x�z4PA��m�j�΄�J<������*�Y�f\u000f歀8�0a�\u0000���\f��Y�cӿ�)�B���4�_��\u001e\u001cK�~l�?�\n�f\u0012��A&�\u0015\u0004��Xеƻ�\u001bS��̴\u001f|� ��\u0016:d0T���ޢ-����L��y^�>�\t+�Wtb@\u001c�\u000b��er\u0014�\u0019��}!z\u0016\u0015��ֽ\u0010ڸ`ר��\u0019\u001d�\u001e��\u0013�Mw\u0000��\u0018��as�����7W�=Ƴ�M�\u0011�� �\u0005��\"�UL���J��2>�f�0�M\b�5�\"$_v=w��a5\u0006�:~e.�B\u000f\u0011f�y�:]�?��^s��Uf�6�UU\u0018�\u001b�Č�U\u00161�<�g�sT�K��2T��j\u001b�i(άhH1\u0019��L����/\u0018dDEN+�_��:`�+�\u0012�A%�\u0015,��M2/�sDy��Sp�9k0ס����t�c\u001b��eֶ`Iz,(�\u0016!��������\u001d��$bⱁ�\u0015��vr����>���\u001fF��+�&�?B���J�ݾ��\u0018E�%�2Q~��T4j0��*)\t���\u0002cχC\b���\u001e�Q�\\����Ӣ@�\u000b�z��\nj�\u0006�=�\u0003k7��\u0007%z�f\r��ΐ�9QE?��y�Ng�\u0015_\u0015 �eJjH6\u0013�����\u000e4\u000f�/��>\fdz�S�\u0007�t��\u0007\u0006A�w�6\u001d�\u000f\u0013m�͕�ۣ�P��4u�G��\u001dgT�P�g\u0002�ė�3y���%\t%����(\u0000A߲Eo�\u000e\u0002\"�>��5���B}��A0�\u0015@������\u0018��U*1I`�>�\u0010�K���I8�)S�i\u000e\u001fT��.�\u000ee�R\u0010j�;W���\u0012)�\b���t��V'5�zE��U�\u0002 �\u0005NE\\����%\u0014, R\u0003�\u0010cUJ\u000b�\u001f�י儃����ĠL����Ľ�\u0003<�ht~&D`��#w?��ض�A3�\u0015h����:�[t��Э\u001a��\u0007���M�6��w��t�6o+\u0015�yt\r-3���жn�_bg��Xw9>\u000e���X�����2��/޹;8.���\u0016\u0004��D\u001e�;�}7\u0017����uF�m\u0002QŽ��\u0019\"�/O�$Ǘ4�y7��\u000bZ\u0003�_��I!q܇-��X���>+�\u000fL!LI0�b�Oi�ǿ^�\u000e���{���&=��\u001a��9n8\t�C\u0012\"�@��k�P\u0007\\������3��h��GTKMJ�\u001b��A,�\u0015���M'A��=ƚW�vs�ɽ�,\u0014�^��B��l�w\u001b\u001c��N�|#�rWXُ�/�_��\u0000g\u0003Q�R��q��\t�\u0015ڏ�\u001f\u0010uH�\u001a\u0019��k��\u00004�1��uW� tb�3\u0019�֍o����>Y���QX��\rL���d�o%�\u001cu@\u0013.R�н�U\u0016\n0X�n-��f\u00019�(w|Z��`���@�^Y�\\�#��s�\u000eǡ΂^d완\f�\u000e7�PF^��B\u0006;���Rޟ��7�+\u0016\u000b\u0006\u001e\u0012\\\u0003��j(ݳī\f�\u0002�v���\t�2�螳zڭ\u0002J��Z���%�\u0006NO?�A9�\u0015���1��)�Q^F\u0015\u000ej��A�\t�\u0010��2�ju�\u0016��&\u001a�\u001b\u0010\u0003�0�$i��Ԃ�e��5���g��\u000e�\u0006���\"�\u001dH�P�6~$��=��?�|\b�\u000b��x�@6룖�/DH\f\u0018�E\u0004H�\"\u0004�\u000e\b.�H��^\u0015\u0001�������~d�\bR�z\u0002=�Y ��XWU^p��^!%����\u001a�kR�^K+~��\u0015P�\u0019=��\u0007�\u0002�u��ө\n���N^������2o󲋛�\u0002\u0016\u0010@R4Lu\u001a�j�l*�er��%\u0016sR���$�k��:\u001ej��e/Ѝb\u0000]�\u001bq�=�a���7�#o{m\u0014\u000bp�\u0005\u001a����c�,�̡\u0001�|�N\u0006�\u0014����\u0002���OVӟ��\u0012e��a�\u0019x� ��6�AŁ\u0015̀���w\fLndN?�w�%L\u0006�R`S��P�UA�m��gw�D\u001cl}���1�q��a�P~\u001b|h�^�\\3���2\u0000�&���\u001f�6s�ɛ�-\u000f\\-���\u001d\u0012��\u0010ε6Ƙ�K�Y4�x\u001b��\u0000\u0007�;��'[�Q{C���{�A��F��Ю\r\u0005�hZ�J�\u0016�u\u0005�\u0014�cBZ��͚X\u0019#���\u0019\u0003Z��݉9QC�)�\u0003dL�>�\u001fէ'���x�+W=F\u0016\u001e�F&oT��/��Y�����\u0019z\u0005 Y���\u0005�\\V�`xƙ�E�X��!���D�OP��Ӂt�\u0012Hn;�,�O�-�r*�(ۙ2j\u0016R�\u0001:DyQ�\u0017�<�zp���\u000b&��C�d�\u0000�:�R�҈��N&�����l8�ﮪ��t�@���`\u0007\u0017@a\u001d�����?�pPP�`�g/\u0005����m�\u0011YS���($3�� Ø�GC���#�7�����7T�\u0014�\u000f�1̛�Fe�QO\u001f8�0���\u0017�\u001b�=r\\I\u0004\u001ebtAr/c���(M#�L\"��4G�T!$�?P����զ�,�\u001f�z\u0017���������L�&\u0012�ʶ[��r\u001d�^�\u001c�A�\u0001xz)[\u0011�@9>��&j\u001fQ�^��2�~\u0001Ҝ�\u0011�3W��>���\u000e\u0016�U�u����\u000e �G���\u001b�A?�\u0015��Mv\n\u0011@��Ĺ|\u0019�\t���i�+\u0013��l<���X��'n\u00106N��ߝ\u0010��{�$\"A�(�\f��U`S�Dlߋ�=�\u0011��\n�\u0013��B���Af�\u0005\\d�/����.�\u0015ߐ��j\u001eh�/��\u0005*�*f�\u0006\u00074�\u000e�u��&��\u0018�\tZO��D\t!��G\u000b��Ê�\u0007�g��6�\bU\f|�^\t�d�1a`\fy�F�\r�S���<�:\u0016�I\u0017bV\u0004��W\tB\u0017�X\u0017��/1��������MY��i�\u001f6�#��\u0002\u0003CT@�����z{�{����$��P\u0015��\u0006� ��ת:7jb�eK<���T\u0012�c�\u0012\"�$>��\u0002�zdWľ�V&gbb�+M\u0001�\u0001d��%��\u000b�p�\u001d\f\u0002�Ds�]\u001d#\u0012J�A;�\u0016\b��L��\t��7-2�\u00133������p-k��渗��$��}lvV\u0012\u000f~�\u0005;_�UJ��E\u0017�I�,`\u001b�d��F\ftW\u0016\u0016\u0011����,��E��\u0015_X��`zg��!؆H��kן-k��\u001c2�a�W�Y>�{���[�`G4\u0007�+�U>\u000ek���w�xN(�c'�\u0000k}�co�n%\u0006*so�\f���\u0018q��)�I�m7k�\u001dc+&��6},ֈ\u001b��eV�W�I\u0006�F�\u001dd�T�.�y\f�u\bE���&&�k7QʂLNO�?']џ\u001e�;Ǣő��[6�R��\t6���Hʨ)� �L�\u0010�u��\r��;!w�2}i����~\u0010��z\u0016���@\u0012�s�WP�06۶�C�u�6Jm�\f�ңA>�\u0016\u001c��L�\u000b��EZ��HQҿj.E\u0005姶BI�\n8�a��?�~�/�r�\"\u00071�pt6��������X\u0002�\u00119�ĥ�A��\f��A�m6\u001c�~|�\u000e��P���#e�﹮���ս��R�&�X��\u0019�d5cWߐ��\u0007w�\u0003j��r��\n=$�&CU�\fw�(��o���[����\u000b\b�版�j\u000b��o\b�\u0017\u0018�\u0007y�\u0014�tR�\u001b^�eyJP�w���v섉jܑȟ��(\u001c�2�\u0014\u0013Һ\u0006�n�\n�\u0007zh�\r�F\u00199����8\u0016�\u001a��'\u0000��YOq�&\bG�kY{�BjV�:�.Q\u0014ց��3W�5%��i%B�I:\u0017~\u0003�X�}\u0013%��\u0011\u0013��\u0010�-��\u001e�[K�\u0005Y\u0014�HZ�A4�\u00160��L�c���Y'�xb�1Yz�#���+Sscc,�'H\\m\u0002�:�-aZ�f���:\u0013� �e��\u0004��\u001f\tF#�\r|G\u0002ӗ�G��Ъ���E�xmsФdH(���v\u0017�?\b@\u0004bGn\u001bS���e���Ԥ_R��\u0002�X�l5f&��12`�c\u001f*<�]�Z��T�7T\u0011�\u0002\u0017;�«v���%ù��\u001a8w?������\u0010\u0017�-�qw\u0019\u0010\u001d���/%��2�G���\u001d�/�n��n�������\u0019�\u001f\u0010��.iwa��+\u001c\u0017�j�'_fȠ6�a�cÂH\u0005'U�;�\u0005\u0016�����f�\u001f�\u0010��18B#�C��\u0017�U���Vu��&���#\u0000s�\u001f\u001a�_��6\u0003\r��Zea�\b�Ax�\u0016D�����A�\u001d%�x���\u001c/Q��fl\u0014�\u0007-^�ː��֪C1r\u001e���v��ҷ~��n4�+2^^[��ɊW�a�+bU>�*\r\u000e��ʆk�\u0017-oK�&7�\u0019��,�y1\b#�����\u001a7N�\u0018P�^�8�ӣAH�\u0016l��M2} �A�k�D�V���F�>�A6�D\u000b��\u001e\u001f\n�G\b���R�\u000f��C(5�Z�Y�����5�p\u0017��rz�L5\u0004ړb�DJ+�q�E\u001b\u0011H�\u001f���\u0014}��xQ����P=��\nF�[�Xuz�}'\u0002�y���׆� �I�$\n�T�\u0016�x�W۫�\u001cI�D��\bW�f��9W'}*\u0014i\\�Ӄ_�q2�$\u001c�r#{\u0019:n�?�$�2f5\u0004���[�hy��Py��X�\u000b�\n�Wd^cO�ȬB8n�ӗ(\u0019� @�\u001deo�F�Aˋ��3x�\u0001��4� m�.\u001d�2���}��C[��`��B\u0007���H�4�\u000f�K��}�\u0007\u000f'�.|��[�\tƊ4\u000b��d��a�\u001b�\f��׆2[o�\u00049��q�F�����AN�\u0016���.y\u0014a��\u0007�\u0014%��\t��r\u0015öN\u0011��\u0018����Db\u001a��ϻ��\u001f=���m�O}�\n\u0019ɏ\u0012m��U�,���j�A=��s�\u0000��E\u001a�$'��f���q�=��qW\b\u0012�3��-6�֙\\��d�\u001d����V�Ҿ/��\u001f\u0010�؂�\u0018�\u001e�2ۋ�.�\u001b��\b4�A�C\u000b\"U��\\\u001bt�\u001d#\u0014\u0018O\u0013�1�\u001f #�\u0015b�7�I\rҳ\u001e\u001c/�Ԗ��?�\u001b�{��@i�\u001f��vA9�S�\u0016\u0007.a@��\"<�v��t�-�t0\u0000\u0007<��\u001a��\u001a_���s}�:�\u0017X\u00002'w7��J��aP��E\u000f<}|7����3�\u001c6!]�5���\u0010eD�O4�@z�\u000f�ͮ�+�*��m\u0015y\u0013��|��t\t2���i�.���?��ܐ_*�AW�\u0016���\t[�\u0001\u0001���y]MhK�=�/\u001b�;�c8��\u0014:v��p��\u0018n\u000b�)�\t`�J��`����Q4�\u001a�����?�ҋNL\u001e5�7�\u000e�5\u001c����pU��<\r�#ޚ�1�N�J�E\u0010��I�b�V��\u0017֚���ɘ&v�:�䱔\r�u��T��&\u0002\u0017����\u000b,~�sn���ڋ�lt\u0004FH�v�t�9��\"O��~n��ΡOH:\u000e��EC\u001fd\n\b\b\u000eM\u000fZ���ݥw�\t�I�Q3�9\u0003\u0012��\u001c\u0005t�\u000f��ݰ����{P��\u001d�`VW` Ӧ�\u0015���\u0000v)`���`��\u001bw�Iq̘�\u0003�y,xm��'���$�:\"\u001c\u0015�\f�:XW�S%��qH�ӧ\u000fD�>n�z�Ѻ��)��э��ı\u0002�!t�:�dj?�l�TS@#��\u001a��\u000f�AZ�\u0016���\b�\u0018\u0014���\u0013Z[��!ʞ\tں���lw�����^Q��B�k[�VNf�\b�m�?F\u0018lJ��9�K\u0012|Q�\\\u00135�XD�w��{�\r���\u000bB\u001a��\u001d�]���e�\u0019X� ��}L���}\u0004�¢��*\u00065�\u0000���|@��\u0011\t?�c\u0006\u001a�G�y��\\�v��E:�}Gy0\u000es�AB�\u0016Ѐ�]����[6-C�}гw\u0003����.�Q�|*tG޵4\u0017Z�\u0014�\u001e���:I�i.\u000f\u001e��\\t\u0000\u0006�Y��B��:��\u001c\u001c5g0˓V��u\u0011$��\u0017�$\u0010��L�nHm����r*w�\u0006�\u001aca�U�щ���b7{\u0012�}��\u0011��\u0015G&~'�?\nէ��Z$̙f�6t�R��7��\u0014�X��\rW���ps�SBM��B\u000e���e�m��l�\u0004���KdD �j7fz���:��ڹ�-\u0012Z\u0018yp\u000b����M� �C,\n�Rޞ� �\u001b���zK��]|;�09� /b�1�O\u0014\u001c�����c\u001d����\u000b)�ߏ.\u001a��_��=��\u0005Q\u0018��H\u0019+�\n�/o��\"\n�g����\u001c��a�kC1:Ԡ�A9�\u0016��X�[EW⫰\t:�5�tƯ�\u000b{1:�3�\u000b��R�C��zd�1�k�\u0014S\f>��C�ߢˉE���n�\u000b������/nƠ$㗉\u0015E��P\u0007�/��x:@J\u0001�3u\u0005}LZ\u0011M�sL,��¾�\u000e��\\�Ҭb9m<�i�|��EFޑ\u0001e��mwf\bl�\u000f\u000e��qlP�(xӖៀuOq�[/\u0002��뤎���X�ɭ#'x\\,�…�\u0007f_\u001dڲ.�嫘\u0010�ws@�\u0014�\u0012�M�6ek�0\u0006x-o�'��\u000eM�*�Ѱ��y�{:G�\u000f�\u0001�w�E�\u0005>�@��#̬��v@#ŦR\b�y\u000e\"o��\\i��L�\u001c�CН�-)��<���(2�Kkq'��\r��:�d�A$�\u0016���X�^\u000bTm�-\u001d<��\u0011w��\u0015M�j�R������\u0001\\�\u0015����u��>K\u0010\t��;!@ܬ\u0004�\u001a�\t�\u0018�Q�\u0006N���.\u0017�2Ǡ���b�j�:Pu����bs<\"�Æ�_h�p�����?��5�A/t���.ս�.��\u0001�洃�\u000f\u000f\u0003,6'���Ѝ\u0015�����_3][� �k24K�\u0014�\u0000d�e��5��1�#���)\u0006p���w{�S���\u0013\\\u0013~{5�\u0010}1��U�Q \u0011�w\u0011�0�XX��{�\u0012t+q.�7hT�[�lX̗p\u000f�T1\u001d�\tDs\u0000�8\u001dIٛ��2�\u001eۦ�\r^��r$h���\b��l�\u0000Y|?(���\u0006ѣA%�\u0017\f��L��A?pѯ`\u000bZvߠN� ޿���G�\u0000���O\u0012h����\u0004��\"X�/_\u00059x|��\b\u0006M���(@!�sZ��!��$�k���O�kiQ�_\u0016��3T����+�c�\f���C��\u0001B�}�n\u0011sl|#-\u001a[A��=4\u000b�+�l\bތ� �nj8+\u0004�E$\t�cB1�Ss�G�8��G����j��,+|���\u001f䓖0GiAϽ��\f��`��N�U�z�li��_�\u001b߳�\u001eQ��FO\u001f\u0000�p�9�:n\r�\u0019Ԝ�$\u0001G\b8@\u0003���t����;\f\u0002ٯ�w�8�І�\u0017D�\u000f����\u0018�W\u0018����KV��o\u001c-�rB�\u0018�\u0001���H�A$�\u0017 ��M2q{}�\u000bꔔͺ�+�М�P�Q\u0003�f\u0016BM�{\u001c\r�\u0003��Ժ�\u00142����*3��\u000e,\\-&��k�ś�x�n���t�\t�U;���;c�'�G�2��z\u0003�J�\u0018����銉�����B�FC;��i��G�![\b�\u0010~�\u001bmE��\u0001�\r�9\u0016m�JJ\u001f���N�c3���\\uVX�\u000e��9��n\u001ek��\u001c\u000e$1w��k�V��\u0001M�B/\u0004�\r*;�;�\u001c�oLG#\u0019�\f|�\u0010�R\u000e\u0006\u0010\u001b{+@��/7�m�;�?f�m��\r+ͣA!�\u0017H���\r4�h�6��Jq�\u0005��Q�\u0005�N(��\u000f�)��$h���E4���Đ���X�)� �#2��|��'�\u000fR�N�s-k\u0007u\u0006[F��x#Ԫ��'�W&b�z}^��f�I.r�\ni\u000bH���m5���\u0004�\u0005�ٚ\fp�\bz��99\u00194\u0019�+��;��緜\u0014�\u000fr�C��$H��\u0016��D�2��yB��\u0012=��W���5\f�4��\u0010\n�g������3��\bC�~�|��\\��[9�1�A$��B��� ���ш�J\u000e�[_�b�п�\u0017��̴�V\u0006~-l�rP�\u0004�%X��p%\b�\u0019�Д�a�p�i=ʆ6\u001b\u000e�\u001bz��G�A#�\u0017\\��M[̈́�����D,o=����é���K��P\u0019�gf\u0016\u0015p�\u001b@p7��h����3�En�K��x�rxb����>_LX)��\u0003��*���7�\b9f��\u0000�\u0012�Id����Ձ�ϰl�����8��\u0019��yt\u0015��Bн���_���j�\u0014=:4�\u001c��ܿV�\u001e\b�T��W]\u0001M\u000b��l�UcV\\\u000e���ɧ�`�ƊJ��2�\u0013O\nc�����������\b8�\u001bP�D�M��\u00050�xLh��t(\f\u00169̟pr\u0017\u0013�\tQs�Z\u0000{�A\u000f\u0016��\u0013�\u0011]�z\u0007֔�%\u000fl�{Q�a\n��T����>�\r1lt�A3�\u0017���M4*\u000f�Q��c��\u0000\u0005�\t�vC�;��\u001a�~h\u0010���5�����Cl\\Ԕ��~�\u0002�k\u000b|�_(\u001c��I���&��0/�4[E�Tt���\u0016�\u0019�S�u�\u0019\f�s\u0007��!@�ACTh���\u000bN\u0016�x����\\�h�\u0001�k�w,���繲y����[�\nL\u0003��_g�\ni\\O\n?\u0001�+��H\\Q�\u0002\u0007W���B3j�K\u00136d{N�4�i˽�\"\u0015\\���3� ��y���#�\u0000W��\u0012/CE\u0003�A6�'����pq\n�]�`��q��뉲_��~�2��\u001a���\u001d�����ny��\r�u\f\u0018����ɗ�C'K�9j��-��8D\u001e\"m�e5R��[����l��d�V��]R�A!�\u0017���1�΋�\u001a���\t,�R\u0012�;Y*̖umK\u0019��P��v�c\u001aw�a�ۛ?{\u0019�3\u0019\n\u0007�9i.�V�g�UI���xĽ�'?���29�R\u001f!��Tԝ����m�vK�����=3=F��̾o[�eC\u00145\u0012�o\u0010A��#\b�p_\u0018B\u001d�3\"�d~�\u0010��*�B��\u0006��a��dWq=�[\u001ah�����?=\u0005<����&�8\u0000D��k*��u�/X�\u001d�N�����2�\u0002�&L���\u0003/ٚ��+�9:�0\u0014ay��If�T�d�\t� �R\u001ak�U�\u001b�\u0005���!�!F����d�gd\u0013*�7\rsp/`\u0016o��\u0012�\u001d��IJs�(�J��j��A$�\u0017���L��4\b��V�<�¹�%\u001a��y���^o�L�kZ��r�\u000b��\u000eKQ-@�t��L�{\u000eԠv/^�@�\"��n�\u0004�y�9�7C\u0010n�,D%�)�4�9\u000b��pL�h��x]�qx햤��\u0014dwT�+Z��\u0004�B&�\u0010x\u0005��6�.�F����p!�\u001aҞ�_������\u000e��\n�i\u0015s�o�~��8U�no�Z>JF)��\u0004\n�VH-�h\u001eY��0���q�B��/EN\u0004��[��NL�#�&NA\u0007\f�,~H����$x&����C,�\u000fu\u0015��Z����\t����S��!��޺[�1\u0010�:JoR����xQЦ\u0017�\b���\u001f�\t��A'�\u0017Ԁ�L����H���e\u001b�\u0002&�d�9�'����[\f��M/�������*���\u0000^��\u000b�\u0004�/��=\u0004�\b�\u001dO�/\u001epB\u001d7�%d\u0004FYbΉ\u0016\u0012\u0014�+��\u0011MgmPIo��\u0001�?֜�a\u0013k�a�Q�=wP�trN�#i�V��C�'���TH\u0000�\u0018\u00126\u0000Qøi�2\u0015V�\u0001�m���I��\u0012j��U�$4\u000f\fY1RE\u000e^'�\"�\u0011ۡ�ꟕб�{/�n�q��x�h�7�HuFJ�-�\u0016*��by��M;�f��\f��s�'*��Y�\u0014b�\u0010�E��*[��������f��H߾\u0015�w��Eh�J�+��\u000e·Ju�!��\u0001�T\"�4}��A\"�\u0017��L�\u0014d�����J\u001f��\u0013\u0018c��:=�e\r!�1�[\u0015?��p�ڰ.�z\u0011��㷧�9�剣�ް���#@\u0007��Ɇ���ȝ춼�l�\u0004}�Uj\u0007�f\u001c}\u001b�$�� +��{p\u001d��\u0018�������F\"�\t\u0005�����\u001c�!��X�5�M�qV���#d��3�rP2��gT�\u0007`|\nX��W�\u0015:�\u0016��*q�|}6�/'T� #Y\u001f��s\u001e\u000fͳ�e{oy���f|\u0010%i�;�\u00172���W\u0004.2z\u0000d\b��癌��`h��0��\u001e+�Ғ�'���Q�=Mw������kP>51t�j��\r@/qb0���u\u001fvftT����\u0011��\u001b\u001e1\u0015DG\u0005�������6u!Y\"Q6$t\t�.y\u0001��wa(b���)��H]����\t5�Y�5El�e^��q�\u0010V�a�%��\u0013��̲��A0�\u0018\u0010��X\u000f`�9���1�rND\u000b�g,�w��C%\u0004�g�-%\u0017\u0012���I����\u0019\u0005�7�ja\u000e�(:g�ZE��N�����\u0013\u0014pw��B�G��\u0003\u0017�#�|�~��4����7��{~�y����d7#�D��d�\rG�{�s~?\u001a�Ԑ�\u001b��悪\u0003\u0016ʍ�\u0000���������k\u0006��=I��\u0019�\r�2+�5M�t;��\u0010�ON�kH\u0012\u000b1�MpX>�$JK��[.�%\b�lx�r�P�s�6w��~z�X,�W\n�X��x\u0015�\\�Z�7��\u0002�G�����w�z�*�8rV�\u0014S���4���g������-��I��\"f�\u0002�qZ�㛡�S�m�q\u0018�\u0006��i��\u0001'x�A4�\u0018$��L�(�\t��b�(ax\u0013^�\u0015�]�֏��>^���z�K�\u001a�eT�s;\u0012�#)��l�VZo\rp�\r\u0019L�m���\u0015\u001bN��t�F��\u0010v��\u0013�y-u|�UYg�8U�#٢�Q\u0001=�:�\u0005�e\u0007i\u0017=����\u0019-�K�\u0011\u00140�7�m�7�\f'9\u001f�\u001f\u000f<&��\u000f=;�ĉ\u001bs}�e*8�>=\u000bF�Y�΃�Ŷ]k��jW����d��h5y�j(���=�I8\b�y��Nt>z����\f:.�IU�\u000b���f�'\u0017��[G\tYo4�n��㖢)�\u001b�fT>Y��Y�[�vI9|O��Aem��D�s������Y����\u00183X�\u001b\u0005Ww�|�0\t�\u001d�e�{8�S��\u0012�A0�\u00188��L�\u0010ș�J�E]\u0014:�Uhl��8����� q�\u001by�\u0016��5\u0010�HG�n\u0015-�JLѮ\u0005������@��c�����jq��@C��\u0017\"�\u0010�4Л\tM���g�\u0003�\u00145��{�y�%\u000fA*��v\u001f\u0016|10�^�R��7\r��?~^yp>���_�U\u001b\u0018�uF�\u0002LD\u0007�;\u001d�3{m�!�3���\"w1��\u001f�\f��^8V[�d�?\u0015\u0001��aD4�\u0003�K[�s\u0010�\fy\\u\u0017�|�������wϲ\u0006c��գ�r�\u0001�>\u001f�W��p��\u001f�x�\t}\u0014�`+�D�D��T�G{*�\u001d\u0006y\u0002y��:[4�܊�\u0010Xwp�P@����\f�\u0015��O\u001e��\u0017N��(\u001b\u0004�l�A��\u0018L��}a\u001d�Q���\u0018d��P��:}�؁��H^�����O%G�8�=�\"3��P\\Ped��<����\u0013hc\"\u0013E�p��'g���\u0016�F\u001d\u0019��)g!����@\u0012�\u0013D�ah\u0005�\b��,�\u001a\u0000\u001ff\u0013Y��I�n�\u0002Yf�\t�t�\u001e%\u001b�\b�۷����\u000ej�d\u0003��\u00178��.C9,n�L�Ja�`��>+�]�3�q�\t�FY��[�~2<�h�N;��}���u\u0010�\u001a�X^g���֝�p��O\f���ڻ'94H�1Y\u0011�s@�w#z�$�U<��E2��\u0014��3�*��N\u0005λ���W��_@�S�\u0011����Y]~�����I@\u0013��Y\u000fK~�\u000b�a\u0011\u0003\u001bi��\u0006���M���!\t\b�g�d[\"�2�DY�%\f\u0010�\u0013}������\u0007�\u0010�+�`\u001b\u0012�\u0002�\u0000�a�3\bb\u0006�e��m8�}i6�\r\u001b�U+O.\u0005jӶ��t6�(��b�aǧ�>�9��\u0006��g\u00181\u001b%��Ɠm2�\\��U\t\u0015��,Y����$J\u0006�K�B^V��WZ��|�u����ǹ�َ_\u0003s���@G�Q�\u0019>����i�v)�;Ŏ\"���tr-!%�M���c��Jѣ}��nF��A2�\u0018���L�\\G�57s����\u001c�#�6���\u001f��r�sP��U^)���Aٛ��Ûe*�g\u0007�\u0013>Y�2���wv�=V���!Ϝ\\ȇ�'b־\u001a�\u0004��Qt'Y�c�d��\u000b���zO�5\u0016�R�p��\u0004�=�0T�\u0012w��\u000b?\u001f‡�\n@30���\\IR\u001a�����5\u001bP\u000e>���$�7m��\u001a\u000b��\u000fW\fi0G�|Ve�\u0012+�MS�m)�g\rK\"k�\u0003��X��B:�[\u0007\u0013�uը��\u001f1{��S���\\\u001fS��x_.�\u0011ϯ|\u0003r\u001do\u0004/�ʥU�ұ~`q��\"w|�#Iȁz.ei!'��\u0018�r���g!\n�Z���\"\u0002�3�\rq�ɱ��\u0013J��\u0002Ź��Jk���A!�\u0018���I�\u001cѥ�GmF�U��.�\u0015Vi�u-+6\u001e5�Z��!�N�p�\u001a��P�\u0016Xh�\f\f�]v@��\u0017&�\u0002�ln���j�)�@3+�\u000bvVH�Y�]���A\u0010�����\u0011���\f L\u001a��\u0003I�!O$X\"�Ӌ�>��\"eWls\u001f��S\n}�ԤM�+(Q\u0007 �4��Ol�CW|S�\u0006�R\u0014�Ͷ��jq\"S\u000f��ʳBD��� ���a�A���t�řP\u000b�\u0014`Y�IW�\\��K<�-ε�R���Vl�\u0007�Ǹ���9\u0014���-w��&W�9�\u001b�@�\u0007���ŏ����0n8ٲTG�U�����#��\u001f�@�ċ�-�&�n�B�d�x8�A2�\u0018���� �k��*f�\u001f�\u000fl�$~�\u0004���M�\u0006=�\u0015b֏ax\u0017�\u0012�\t&�\u0017���8��Fّ\u0011\u001c�'�En�rk\u0011�qK\u001a.��\u0001e�\u000b��P�_d�1�μ�����YѶ\u0000!.�,�[Ӿ\u001c�����&\u001fK�F��6���\u0019\b][0�h����un��f\u0006���>c`�w�(�a���\baj��@�tGܠ*\u0019R]����H�{3廩���\u000bW��F���.�o{9���\u000e��Ul��ap���4��+�I��Wg۵��v\rh�\u0002���F$W��ݛI�t\u0005\u0001ɋ�%�\u0001�A��\u0018Ā�}b�\u0012w\t6A|��U�\u0017��'t��F���w�rT�\u001b\t|�n6�\u0005&3T=�>�#f֞L��N�Cr��D��ɪ.�p�o���+�K�?\u0015ܻU#��_\u0017x�w����r��Б�H�z��R\u0014V�9\u001b\u0019�~\u0015\u0019\"���O�\u0007���*\r:fx�����\u000e\u0001L\u0018UO�\u0000-��<�\u00021�s�Ū��g��e8b\u0000�\u0018��ҒD.?�\u001b���(yK\u0005��p��X�s��g�\u0001a\r��b�~��`�~\u000e��JL��mL�BI8s���mַ���7\u001e�\u0003o��s�O��@��(���\u001a?�\u0014����y\u0012Y6�^Ƚ,w�T��\u001f��\u001d�>=�\u0007:�^�}�ynq�kg�?����)ܡ��\u0012���\u0007;��:\u0015,�Έ2��\u0018\u0013\u0013��=���0�]\u0002\u0019�\u000f\u0015\u000b\t{O���,S�\u0007���o\u001dW��\u0011��\u0005����e%rɖZwM�r5��\u001by����\u0000�-.\"��Z#\u0018�s�븋���̝F���<\u00184�\n#\u0003�\u0011ő�\u0004\u0006KeDv�K`U\u0007�m��@��\u0018؀�XЮ�I/\u001bVnS\u0019�8�;Q�_�\"���҇*��\u0014G���u�\u001f\u001c���;ۂ��6\u0018\n�հ�!K�lER}m_S�k��>\"\u001a��ה�k�\u0003��x�q��\n�\u0016V�����ћG�d�8����g�`�Vi\u0000 \u0012��n�����@�'F�]\n�s�\u0007�\u0004&Q&�\u0012\u0016���P>�\"��\u0010\u0013Q��S��/ː�\u0015�7����\u0005f�@`��\u0017�X�\u000e��K��3A�O\u0015\u0000sT�:;�x��kA/fH\u0016�^I]e��\u000e\t\b��!7\u000f�\\�\u0016�\u000b��3\"&�^\u0000�ʺ�^��A\u001e�\u0018��L�&�)\u001a\u0019�zx�� |Q\u001dU������\u0005\u001f� �\u0006��\n��>��nW\u001d�v�\u0007ˤ��[@��W�]�\u0011���|��u�o�R���{ȳ��\u0011c�\u0017;���nG�Y;\u0001&}\u0010���\u0016�p�͗\u0013�\u0000U�K��\u0000\u0002��(J�ڊ`N�\u0014&�\u000e����3a66�溥8(�yP\b�?���\u001e\u0010\r�ê��P�+\u0006J�\u0004\u0017����䚛z�N͆^^^G5?>�G�e,��ͣ�\u001d4�@F\u001a�W�3�IP\u0017��8����+�R\u001f8�\u0015\u001d��9I\f�CA\u001c#nҽ���\u0017��|��a��S�\u0016�{`\"���_y\"��[�7B�\u001f��\\��𾀟ho|�\u0001}FΕOW\f髹�m,T�\u0013T(��$�b�#/�\u00197�8�U\u0007uy�����u(\u001f��=,&0+qZ$W�v�A.�\u0019P��L���\u0000�a�Ӭ|�=iBɪa��\u0012��C �J������\u0017��L���'\u0017����T�M\u001c\u0004�\u0017|ZԆb�ek�~'�\u001c��ؒ��\u001f\u0010 n\u001e\\�5n��^%W�\u0016�ޚ%�%�����w+5���)�\u0018e��B.�d��2�p�bJ&�O蟐�2\"M�~!�P�:6��z\u0007��\u0007�z�\f��z���Z��<}�'\f#��w�\u001d��\u0010\u0017����-HG=�}\u0011l����{;\u0014�ɂ\u000e����Pɼ\u0002�d>x�Z�0G��\u000ewM\u0017s��;it8��\u001c/�y���<�,��k\u001f�u���`�†��X�g\u0010DPA:]7�����\fٵ[a���r�m��E\"�ȹm�AC�\u0019d���\u000e\r\u000f5��D�b1�\u0013�sނ�x���R���wX�u��\u0018cmg�[๖p\u0004��\u0010B;��П���p8�ū`(����b��9o\u0013��. �з��cA��\u0015����\u001e�Z82�x\f���(�{:\u0006�\u0001�\r����F�\u001aPٲ���������\f�*�`�u�w\u0015zY\f�\u0010B-���mp�\u0015��e�1�}C��T���Y��%��R4��)����<�����ԽR�8�Z�o���В\u001f\\\u00141=�_���l6���\n���>l\u0018�IC_\u0001����:�@$��/\f�b��{����r���j�NH�\u0006��/Wk�\t�A4n���d�xì�w{I���\u001f�\u0016\fV\u0018I>湈B-̍�Í��8�\b4яh���Am�\u0019x������\f�S#$xS��y��L�\"&�)��q͢��w[nz\tQ��͜�C���$`��o�՟~�ۼ�=\u001bpw$S�:����;\\�\r��\u0003� �G�����a�/\u0018f-\"BA��\u0000�B�|��V\u001c��J�;�b�\b;S\u000bn[��&e��\bM5\t\u000f�\u000b܏�8;�����V\u00026Ԙw[�1>T�k�4Œ��+���7k��g���`�e#:1:0U^i\u0014g��\u0007�W��Dz��_\u0010\u0018���ƙ/\u0014�\u001dX\u0013�\u000eݏ\u0014~���)Uƞ�����W���m5\u001c=�N�+�d�&��\u0002�)׸a��\u0016���rݯh]��ǭ�x ��'�\u0011S�}��;F���w�3Ҥ�\u0007�o}\u0007�*/*�\u0001��gN�H�Q^hV̷t*�\u000f�\\J�/ɞ)�\u0004�4xqx��ЕD���\u0006�X\u0012dJW\u0016^\u0012���o<�An�\u0019�����h\u0014\u0003Qs\u0019�<����_z�59�)uAm�B�5q�#�h��9��蜔\u0018\u0000���V�\u001aX����\u001e�y�2�K:/��\u000e\u0005��ɬ��}9��\u0010\u0005vǴ��\u001a��{�t�d��pz_�\u0000�:\n�\u0013��.�\u001c�5��\u0012%�\fB�'*����� '�\u000f5ڄ��).�!F��p�{Ĕ���ؾ��\u000fJ\"ߋ:��\u0019\u001b���KO��'m\u0014�Ԧ5\u000e�\u0013Z��\r}22M$����\u001coj�:i\t�Y�h]�n�*��\u000f����\u001cw.�:Tiy, *��yK�1�\u001a��Am�|�MD٣�\u00053d�7\u001flZ����g/���MT���笆\t{o�\\0'��vJ�5?D(9���W2x��b�a�i�~�r�+�S�'�Cv��0��E\u0015X�����XP|�D\u0012zp�$�P�������%��e��\t%���\\�#k<�B~�\u0019���|�\u0013\u0015\b��u�^��\u000e�\u001cgn��k\u0015,�\t��oXi�0�Y���\u0003�\u0010rt�\u0000�O.\rh(Of��V�\r� �t?6�.�Z�\u0016L��\t\u000e�uF&Ͽ�6xb\u0019�{�H�����8���[tOI���O�f�1�;���]s�lE�\r4�V�(T\u0004��&\u0019���Yzc+\u001f\b,|A�v��b�$Ί�SC\u000bf�\\o��BU;o�@\u000e/���P��A���t�3]��om-=xC\u001d\u0016DH���A�\u0018��4.�(K�\u0002�Xp�^�IK\u0013��\u001c:�x�\u0004�dy\u0002��BW\\Z�1�~P\u0013\u000b�8�)'苬Ⱦ�\n�)�Ҡ��j��b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0014�\u001elJ�s(X5L�=X�\u0002<\u0018]{ҩd4\u0012�\u001ew��\u0017*KY���\"�^e�(�T.\u001f<\u0013�=�|g]�M�,E%��\u00009�i��N�{�\u000eP�s�\u0018���i0*RV#��m}9\u001d�ȩ\u0013L:\n�Խ*.�X=��\u0018�\"��*�br�HA�\t\u000ey��\u0002S\u000b}�㔀���ɘ��B��]?}�\u001e�\u0005P{*y�~��\u0016\tS��1���\u0015\u0011�v��\u0018_8�w�D`�b\t\u0014�����/j�G�\u000ef��{�6�\\���2\u001e\u00073��\u0018\"8�)FQS��\u001c�s/�\u001a\u0005��\u001eܘM�>݄��Ź �7�t(��J\u0000����̆\t\u0006\u001cZ2\ns�v�A!lf\u0017�v\b��\u000b�l�뉛��L��M�I�z\u001aP��V\u001d����4�ϖt\u001a流�\u0011\u001b���Y���'I��{��\u0012��AS�\u0019Ȁ�M*'�2�f��\u0013����6�f\u0015��\f7R��?��q��\u000b8MB2�^�\u0018�T��H�#5�͗�\u0016��\u001c�\r��\u0007�\u001d�ޮ�N���5��Ȣt�9�\r@�E�\u0015yj�qt�LE�Sx���@�\u0016����������%⯵LS=\u0018�8T����=B��TI�� \u001b\u0019���SН\u0019\u001e��!W\u0010�ƘC�S\u0017ۺ\u001du\u000e�\u000fZ�}ȵ�\u0005r�>���y�ቺx�v���}���\u0015A�蛩��Ǫ\n�de��BaO�\u0003u:�nb�Zͩ��[��y\u001b�Q���A�C\u0006�\re�M� @��UV�\u001cI%[�\u001a���\u0000.����!��0�f�\u000b�+~��B�VȟG����̈��w���UV:{��Q��E��j�\u001c�:S!*��\u0011��y\u001a�AE�\u0019܀�M{\u001b�\u0019\u00126�\u0004Wk�\u00019<���Ы|F\u0002��\u0007�:-\n\u0018\u0000���SZj��qsm�P�L$n�\u0002�L��o�\u000f��\u001e�;�\t�����ł�O{�#��`�1��x@\t�ݥ\bˁ�bp4�s��u\"l�O�;��\u0017�Iw�C\u0013]ߴ�u-яQWvIQ\u001d�\u0001ׅd��!\r����\t�� ȃ(r�L���p�vř9^\fU�\u000e,����Z�\u000f\u0014��Wä�\u0003ټ��D�\u0005��a�y8\u000bҀt��Xt�\u0003��r�w�\"c���4�5˞�2���a[���9�\u0019\"�:�I�3�����\u001d>U�\b�̈�v\u0015�u���1\fQ�_\u0012�̽��й�u��\u0007q\bHm\u000e�\u001b�X4�����=��*�8�`7=ș?�E��A5�\u0019���L���\u0002�&�����\u000b�E�f������������UK(E�1,��Ð!̵��7�\u001e�!1��F�M�/�]\u0010��\u001a\u0005mP��\"��j\u0012ugGaL�w!^:�\u0012s}\u0001�W�ʤ\u0004H�$����\u0013\u0010���s�*�{�)�P\u0003={ZO�υ\u0015�����YhV�w�v��c�j��\t��ãX͊�q�a��A���\u0000ŋ�\"&�\u0017A;z_\u0017ߝ�>RR���W�\u0016̰\u0000���!�p�TJ��p0u\u001e�¯���z\u000b��Τ,s\b\u0013�z\u0004nx��4}\u001a7��Z��\nN�%��:�F�vq�!Ʃ7\u0017�\u0001\u0019 ���8\u0014�\u0002��N��]S�G�N�k\u000bJ���\u0013�tS(��PJ�^$\u0017X�A=�\u001a\u0004��L����g���c\u0011Or\rtz\u0011��h�K,��U��$g�O�����.�)l\u0015Of�7��J��\u001b��~1{i�&�g{�y/E�M\r\u0000\u00172\f����]K�Hܥ�Ȓ� �Ø�G�+\u001b��\u0001�9\u001d�ڒ�\u0006�.��T B\nž\u001c�k\u001dA�\bw?�\u0000�-#u�F\r;d\u0019�\u0018\u0002Z�s�j�*�H0bՉJ��4Q.%<�1ʅ\u000b\r\r:�\u0004����6�\u0002��\\�f�\u0018���\u0019��T�뼲��S��JC��\\����ȳ]\u0004�}K7�\u0002\u001bb˔�p\u001a��\u0001y%�\u0013�Z� v)�L�7����z�\u0014p�jze��\u001e\u0001��u�:�}��=��c��4�V'ɣ)��\t~1\u001c�X��K\b\u0000����ѣA2�\u001a\u0018��M\u001d���p\u0015`%&��\u0007\u0015ȷ��uw6�\\f�z�<\u0013o2aU�Y\u0018�\rH�'���Y�\u0002u��\u0011����z{\u0015��{a�md��I��\u0017|\u0005\u001d��%kN���[\u0001R+\r\u0004��Ռ���\u0001��\u0016�F��=�z�n2o�O�u\u001faj$��J��XW]\u0014�\u0006\u0001z�,�\t�\\��fL�!\u0002j��Oj�P�N^z[#�\u0017�XYL��\u0001�v�\u0013\u0012X��QJ\u0001Cn\u000e�B�b�CZ�y��B֐��.�\u001c_�(jU�߭����`y�l\u001e)�K\u0011\u0014T8Pb!��2����k��y�u@B\u0018�\u0015SK������Bs\r��w�1\u000e#�Ad=#��\u0002ž]��jc��Qzd�g�|\u0014�܅��{uk�AC�\u001a,��M2��]=�@��:W\u0004�_�Nƣiv\u0007m�LD�'V����\u0017��q��@�,��~�\u0001�B��z����h�\u0006㰿�\u0010%\u001fb���æq9󪉅O�iC�;7�:\u0015��~�Qi1\fY˯f�\n�;�_!%)�\\\rK�‚��yl�CC\u001b\u00074_������/\u0016�I�=P����\u000b�\u0004�vU��\u0001\u0004:R��_\u0004\u0004��\u0001�w��_����мL�FP��\u000eB^����\u0016o:i����τ}\u0017\u0011{�j�2:>\"\"��\"i�!\u001c\u0001�\u0016#�\u0010��\r\u001f�G���'\u0016���b��z\u0018����Q%��\u0005�c��Ѕe�5y}C�Wŵ�#�K�����]�եt����\u0004I��c��z�}���\u0016�H�\t�\u000b9\u000e��\u0012�£A��\u001a@���\u001b�k�Ė�e�\b���.��|��1���_���\u001c>\u0015$'r.қA�Y���\\�\u001a��\u0001�&�?v\u0017Ynv�\u0011���7���C��`w\u000b\u0002?\u000f��Pؚ��\u001c��XӀ�oo�ۼ\"\u001c�!�\u0004�2\u001b>g�%�\u0003\u0005fR�s(���Y\u00186�q\u0019%D�ؕ�ª1�pKm�]�m�\u0007�\\G���iVj\u000e��4�;�y�9����OZh������\b��l#:\u0010:sT�\u000b�j�[�\u001fu����WQ��)!�Wb���`CF��\u0014�?�\f�rno�oB�n\u000f�\"�@\u0015�Y����*X\u0003G\u0014��5��\u0016l�5�u����\u0001�x\u0010�\u001c��o��M��q,���KYI�Pw\b�?}���\u0007��=FV��wX2��M6�;��im���2$�\u0012�+��\n\u0001�\u0000`����͕k!�6�����\u001ed��Q~�\u001fd�^\u001f3���o�0��,\u0010s6��\u000e픂��Sg�G�R��=\u0015.�.�A�v��A5�\u001aT��-��&CG��ێX}�3�,8h�Q�\u0019�Rxw�Kf��L���>�\u001cz�\f�J�w�p�\u0018q��r�Р�%�O\u000fĸb(Q=\u0014� V�\"�\u0018�è\u001dڒX�[.���}\u001a�3\u000b�\u0004�M�\u001c��^#_\u0012&n��w\n�zR��\u001a���Ī��y#q�\u001c��\u000fh�E�|�\u0010$��k\u001c�L�D�[�\tڛʒ@\u0006���ѭR^^/�p̍�\u0015��>r3e���������E\u0003K\f\u0006$Ϻ�n���<��Wۄ\b\u000f�\nZ�4�E���k\u0003�i\"\u0016S��\u0013�)T*��\u000f5J*-\u0016DOc��\u0016��;\u001b�\u0013����\r���[��\u0019FW�#�RF�;�\"X��h\u0019XE5���j\u000e�\u001d�A(�\u001ah��L��\u001d�3e\u0004=m#(�L�C83�ލ�hq�������\u0012�\u0011�n�W)�\u001d��\"\u0007)~\\F\u0001>�\u0002�\u000b�D�,\b�l,�\u0004\u0014��WM�����#�}v�\u000f{���\u001b�j�5��\u0010�.�,����\u001d�������ʇ����^��\u00012�\u001f�VeV\u0006\n����\u000b[����\u0017\u0014\u0015�������(FbN�cI\u0017�\u001fȅo&\u0010­/\ts���?���M��˝\u0002�H=`\u0019\u0010$q�A�C\t\u001e�g#�\u0017\"\u0013��V\u001d[p\u00196��s^u{L�i�\u001aQ�~z\u001f�W�|�\u0005�WqeM�\u0015�Х�d�3�\f�D\u0012c\\bE$�i[\r�\u0017o\u001f�g<���'lGt�i-Oe�i_\u0005\u0012]��A(�\u001a|��M)�Y����q�e�\u0011������H��;�{N���B�%O]j��ۣ���5#D!,\t_(\u0013xe�j��ô�\u0006Ӿ�\u0001���\u0004i��ͫ2���7��\u0019�z��M�4^��\u0001{\u0013d+���\u0016i�\bi�Nd7��j)�{��~hmž2�Uad,�-��r��v�)\u0014\u0002\u0007c��`�����`0�\u000eUX|o�¾@TR��};\u0007\u000297�A�)�NPg��)�\u001a�r\u000f� L��O�q�{?{ȖSl��nj��\u0011I\"[n\u000f���CB-:O\n\u0015V��\b�eP\u0011�_�(^�\u001f��9;\u001eUjNC\u0010\u0000ә/\u001b���\u0012� �\u001c���N\u000b\u0007���;��\u0017۹�Q�n�A,�\u001a���L�\u0001'��2��j�Z�&\u001dd<�tz�֞�9�{�\u0012��uǂ��i���H �����|��ޝ-\u001bh*�h��*�$�\u001f�&�s��1!6�j�{��W.��&_5�SM\u0012�]Mo��{Tj17��Ј���jp�(��h\u0007�\n��X���N�\f��F򰗺4Ş\\x��HQ���C�p^m\u0013\u0019̶\u0003\u0001\u0017�`}%���$��^m>̪�$���$C�F����\u000b�\u001e\"�\u0015'_\f�\"��d\u0018��mq��'_zG����sw^�=<��\u001d/>�ֲ/�A�\u0000��W�衣�i��\u0013���AB׳;1���9\"��50VyN�K�^�����\u0012'��=�O5q\u001bI�A.�\u001a���1��#?R\u0012�:�d�\u001c���\u000b$뉮\u0013e����?�?h��\u0003��-�[ɻ\u0012B*;\u0003��\f8bX&�d<��x�\u0001~�)p\u0003�\u0016����\"w�\u000eh\u001c_��\u0002\u0001�&�L���+M�\u0012�B��z�L\u0019\u001fP���\u0011Y��[\\[�[���u����Em�-�2� ~�G{\b�\\�\u0001��uwO�wK?TC�a\u0014^��׃}��g�Cv�\u0006\r1\r�N2�h���U�ER�b��\f�=\u001e͡dYx\\���KS�9�\\t&t\u0005Vi��s\u000f��b�A,�\u001a�����m;z\u0017n��^8�$�\u001dI��j\u0018����х��+��ҚV@��%��ȫN����񴹉۱��1ZtS�n\u0017\u001cgQ}��^�<)��Q��oJ�e{\u000f\u001b���/U\u0002;-<��b:4��>\u0004\\Q�#���\u001c�,�u�џ�\t\u0016�DP\u0019t2\u0012+�\u0010�ַ@1�Z\rh\u0018�Ǽ�k�\u0019m��\u0018#s���4Ùp٠1��&G��\u0018�ӝ���5\\�\u0011�t1v�QG,�O��*J���=�>����C��Q�4�\tl����J_\u0011.\u001f\u0017��g1F\r�\u0005�\u0002̏c\fg��u\u0001�Z\u000e�x�X���2Cq�,x���$^���-\u0006\u001d\tD�z���'jr�\u0006�jЧEn\n\u0017�\b��A\u0017�\u001à�]�8�W\u001cj���Zj�7�������5�(F\u0015��n�(˶#\u00164=[�\u001c~�I'�\t\u0004�Rץ[�$4o8�\u000f��\b��\u0012�΁�\u0007�Ť�n]����\u001d@Z(�\u0002���n�\u0012\u0014qXR����u�\u0005:�gf\t�۲sՠ���\u0004���C�\u001a�L�(y�a�\n�\u000f\u001d��\u0014O细���7�#�\u0003�B�q7�\u0018�� w\u001b���\u00017C�N�G\f����� \u0011���\u0017��~\b��\u0015<\u0012��\"���nκd�o^\u001dN�A\u0014�\u001a���NT�1\u0013Fٿ\u0005Uʜoir\u0001�)��\u0003o�]��j=\n\u0004��}�tDl�o\u0016�\u0003\u001c~��h\u0005�@\u0016�34�Q�d����5\u0015�l\u001c\u001a\u0018t9�O\u0001o�\u0010&��e;�6Σ?�$�\t!�>6I�)#չ�RC\u0016r��\n��\u0017>�t�{EVy\u0012\"�+�z�������l*�������&���������(\u0010\r{��Oq�\u0002ų����8H\u0011ɕ\u0018\u000e\u00054оj\u001a#~�VZ�\u00157�t\u0003(�5*QY�\u001b�,��q$\u0014\u000f�\u001c\u0012L\r�\u001aFs�5�w�G���\u0010}Ķ\n�I�8�����\t�o:�q�����>�F�W\u000fݞì�~=\u0007�A\u001d�\u001a��L�\u0003��J����'�\u001e��$+\u0001;G����m�\f�BBx�W��%\u0007�W�\u0004�b���\u001d��q�\u0010�\u001dx5�z\u0014�ٕ!��/\t�\u0007\u0019�\u0012Ne)p�f;��\u0000'��Ev����JeΓ%\u001b��b�\u0018�\u0016E\u0000r#\u0018�{/@��s;E�+��\u0012����q���T�&\tY����.4�\u0003?\u000bȭA�Ҡ�\u0014WTlZF�䣏4i��r��B�k\u0002�&�,�\u000b&����;���9�\u000b�'nw�H\u000e��5\u001a�}xR�k��a�m�E3!|�Md9σG\u000f\u0001x[�4\u001a\u001bPw�S\u0004��$X�w�T�o\u0000z�\u0011Nj\u001c���\u001a\r����x��R�\u001c�v�6�A\u001d�\u001b\b���\u000f\tӤX�AQ�v�Zl\u00182OQ��������t����04�\n�~2V�\u0003$\u0000�\u0019Q������\b{��\u000f\u00058\u0011n\u0001\u000fs�@�n3̚\\r��U� \u001d�鲝��[�St\u0013�\t�gEN�\u00113�\u0012^���6�uPw\u000eP��gB\u0017|�RVW<�LH\u0003�u�\u0001��!s���\u001bG����:Zw��Dh2F�ʻr�5\nE��\u0010G\u0018ж\u0003_5����g�u�=\u000eҹ\u0002zsԝkgX�KM 8�/�\u0003�����j���JGh�c&\u001e(�a᎗���Aa�+����>�6���r���\u001aɮ�'��B\n\u000b�@:\u0011f\u00152���+�d�\f��wZ��A#�\u001b\u001c���\r��O��f���I��i���<(�{��\u0012�fY\u0018����R'\u0001��t�H\u0005\u001e��X\"���\u0002�P������1��L\u000b�j�+�\u0000�-GY/A�.��e \n��rC\u0007/��\u001b�]0\u0001��%!ѷ\u00006\u001f\u0019*:�;��\u001e�IT��£H�W.�{�X��Q\"�VB���S|��:�*��\u0011ݮ\u000ey���>]���5\u0010�f)��\u0015Vn��.�.\u001f�4S\u001bȍ�4��ld�a�6\u0016�;K%N�\u0012@i#�C&�\u0015vo��\u001f\u0001M\u001eե�p�[�\u00124q\u0010ag���u�z\u0005\u000e/k��[�d\u0019@�z���dm��d�$���v��ek%�\u0004fM\u0010�#�_�t����A\u0018�\u001b0���\u0010���2p{n!��_��H��%\\\u001a�G|l\\FD}�G�å�����T��yO��r��\u000b\u0001��vn�,�'A\u0000�W�=\u0015=\u0019�{��鶣~m\u001a~�<\fK�J��1��s�8����\"�\u001a/}Ɨ��\u0010�I�6����\u0017�nHŠ\u0012�S1��\nV�!�YW$��S�\u0010gO�e\u0011<$%T�nDe��m-v�\u001fS\t\\�p�b��7\u0006*�0\u0006��ʽ*��YN\u001d\u0004 ���)@k�x���\u0013�xW\"\u00181�;-nO�\u0001R$|��\u0012F��A)�\u001bl���\ru\u0000:o7j��xTQ�E\u0013���G�N�5�ꀑX�xm�\tDqI$I9�u���ﭹ\"��]Wڮ�R\u0013���\u0015H�\u0019m�\u0012WRW\nSVH\u000b3[\u0014:�~\u0007q,��p��)��)N/{~K}iG�y���4F2d)m5gF��?2�Z��\u001d{�^��n���\tԺ��J�ZE”�t�W�DK������\rT���#�퍦v��)\u0000�Y���\u0014r�^S��F��\u001em�t9ǿJ��`�0�^d:�\u0015\u0012%��V�d\u000f+\u0007O\u0015�3zY�K\u0004m\\is��b\u000bV$V��\u0000�(O�3\u0016)Ȍ���h4�\u001a���ԓ\u00029��,\u0012܎ň��pJA�g\u0017���18��AB�\u001b���LڂWd��A�\"3�}v(�X��J�(��k�\u0003_Q�Q\u0006���\u0018p\"��u�/\u0018hٟ[��|<\n�5�ɭJ`;g\\\u0011��g�\u001e���\u0011�)6��ꘊ�}S���t��♘��Y+�<'�a�7�̃c�\\�tH�k^^q��T\n'09�C�v�\u0013��Ʒ�C�f\u0011���Md\u0018�R�ߚ��)e�����28\u0013��sЌ� b�\u0017~����M3�פ��������4�\bn~1,.�?�B\u000f)1������Rw���l�cF���\u000e��J�b-\u001f�ŀ�\u0001���G�l�V܈T�\u001d�Jۘ6�&\u000f3_\u0004\u0000\u0005�\u001a�+?�iq���؊��O@�8gY�\u000e�ڷf)�So�c\u0005��2�K]�؎V�2#t���AC�\u001b���.il�O�J�&��E[S�\u001f��4��I�>����b}V\u0019h�ЫrY���l�O�d�%\t\u0012���#v�tڸ�;�\u001b�/��=\u000f�FLu��N˧�̽6��ԛ��\u001a����\"o\u0015\u001fJ�M�Q��GM�8��u9[K|��@VZ>\u000fGns��ۦ�~\\~��.i�ߔ�ci�\u001a�c��pŋٔ\u0011��5bmKa�\nǍ�\u0014�\\�\u0013\u001b�ц{G�Y͔��Y��zVA�,�1�\u0012�N���\u0016�\"W��\"\u0019�^�7�{�\u0010�C�))�x�9��\u0012W{\u0004\t��,i�f�NJ�\u0005�(��\u0012�xϞ�v\u001f.�p���n+Ŧw�l���\u0014j]���(��0t0o�Q4���t:�nO�O�4\\\u001e�j��\u0002��A\u001f�\u001b���Lڑ�^4\u001a=T��rl\u0017e�x\u0016I�\u000b\\��qSvM�#�}\u0007ٖ���_�ڵ:Q�d�v\u000f\u0018��\u000f�\u0018A\u001c�$.l�%���?����~\u0016�z�\u001d\u0002�ϛI0��\u0012\u0015\u0006.\u001c\u0018��P��\u00141\u0018\u000e�d6�r�TQV\b,P�\u0012��Q|��Zܳi\u000e\u0007��N�M\b��gJ�y\u0003\u000f\u0016�\u0012���V�\u001b��D�\u0010ƶ����u�\u0018B��\u000b'��A\u001a�\u000f�In�!�ٵ��L�����/�ޡQ'=�j�>}\u0000s�������Gb^bV�ϋ�y��\n!��wPD�3�\u0006���}��\"$�{\u0003kw�)B�/����m��k�KQ�\u0005OB8��A\u0012�\u001b���&�d���l{}�\u0016�\u0011�:�Q�82�tǀ]Յ��͞X�9�FC�^�(�%\u000bv��p\b\u0017#�\u001f�����\u0018@\u0017�E���~�C_\u0000��\u0007�Xۧ�M0�ߙ�T�v�2�EGFj\u0011�\u001fV8\u001fd\u0011C\\�2{I��\u001b�0�B�5\u000e\u0007/\n\n�;Mh��#�X\u0003v\u0011�ɸ\u0003��-hQ5c\fF�z��)\u0011�h�\u0014�ݩ\u0002\u0004�[s�U�ں�O\b�'\n\u001a$\u001330��z\u0002DŨ%;0\t�l)�*�E�}\\\u0013iXsT��غ�\r�\u000e���\u001e 1\u001f\u001c^\u0011�\u0013�\u000e�d~��0��y�DR���AaƮ?6\u0005�\u0006B�%=Gg���Q��A(�\u001bЀ���0�I���\u0018�l�]{��sj�PD�R\u001f���d�\u0012F�vg�Q\u0017\r��V\u0013m�<�q��\u0003��\u0001��fy�e�]6:`E[q���\u0004e��N,�I�u\u001f\r���-�\u001c�sS\u000b��w\u0001�,0��o{�)�Ի\u0013�R��1Fo(Wۘ.1\n`����o\u0017j�\\�[8\u0002�\u000b��x��ҩF��\u000b�\u0004g>�����A͕{�V�՟5���\t�q��0�3�\u0018��\u0007\u0010�\fx�����6\u001a�Xu��p�\u001d\nA_��\u0002L���_\u000b�1H�n��L�\u000fk57���`���\u0000�Nc�\u0012�z\u0011��K�\u001dv_�mEz���d�\u001dbq[�o��R\u0007\u001a�I.$\u001b�n�H\u0005�Y\u001b�A\u001e�\u001b���.\u000b�1�*V\\Wf��T$�dA���e�6�5��:�\n)�h����|�$3�j\u0019\u0002\f�r\f=�E'\u0015�/A�\u0014\u000b+\u001a�g�\u001czs���\u0012�{/���iT��Z\\�@�>�\u0005\\C����3�\u0011�eO�,���\u0019�i��M��z�d��\"�`�S�G���̝�[\\�p�\u0012U\u001c����ŗ��E\f�\f=C̃Ӌ͎(#��@�P�vC�m�d�\u0013��y@����^~����\u001es\b�S@c��1�L'3]E\u000b�\"Fp#8E�+P}\\8�7��f\u0007���\u0018��\u0017\u00117X��u\u0018�C�Kh���ɣJ\u001c1�L\u0005]�Q�ķ� ��N�/��ul���\u0000�/�=Bk$�\u0002w��p3Ox�|���;��j��mGk�\u0011%�Q�$\u0006��\u0004�\u0011��b�\u000f��և\\eڑ�LvG��\b�\r�\u0004�����d���GJ|���\u0011�b�JOOSXv��P����,S\u0007����\u001d�0�\u001a��\u0019�9��\u0000\u001e\u0003�*����\u0007�L�B�lNQ��A\u001d�\u001c\\���\u001dW�!Y)KB�J/s@w�\u0012𹻀ֲ�\u0014l\u000e+�t\u001e�\u0013�SW�08C�q��yOq\u0014� \\O8\u001b�\u0001\u00138\u0018\u0011��jAv�P��F\u0015/�)R�W[I\u001fD|\u001fmM[�����G�H����C��s�>\tr~�:\u0014����N��Q��@�М7��h�6\u0000�h��cĭD�y�B��ώ�ܡ\u0000\u001c�\u000b��x��\u001b7p\u00024b_;�i�\u0019�$��\u000b\u000eV�\u0007ֽ=2���M��\u000e.0\u0007璳\u0010���\f��\u000b\u0011m%�\u000b(�\u0013���rQG�|��\u0017�{�o\u0007���:�\u000bu\u0002�4�qKu��W!���u\u0002\u0017��E �4�y\u0017��#8��n\u001c-Ֆh�\u0011�AK�\u001cp���!=�0\u001d�\u0014��\t=dHE\"�q\u001d\u000f����#�\tm�~��˟�H\u0010�Ӯ����Q:H�X\u0011����\u001a��A�@�\u0011\u0012��\u0016�Pf�.�\u0013�M��?�'_����n,���g\\hZ\u001bB�\u0000ܨ�x��J���\u0017�\u0017��;x�D�\u001a'�{��\u000f�1êH���4��4�‹f\b�}F5`�&������~�5�^3is��\u0014\u001cN\u0005c\u0017�\u0004u`��r/\\� Ud�^H��h�,\u001eUeɊ����g\b$���[\u001e^6�\u001d�\u001d\u0016�>\u0012\u0006vA��@7Z�k]҉�����d\r\u0003���V��4�y�\u0019{s4椝\u0015��g����*S��\u0002D�v�i'\u001ey1\u001e/��\u0003�0N�kƺ\u0006\u001bF�t#ü�u��A\u001dN�\u0006��JݷW$��H+��\u0011��AD�\u001c����Z�]��\u001b����ô���2ا��~�Y�~\u00061�㽮GVG�\u001e�X�_���p5Hx��b�.U\u001d���ڥF:��7\u001b\\�M�t$n0��\\\u001e\u0012Ì*\r�\u0013�Vx�������\u00171\u0018��\u001f���\u00121�wj)p�_Cb\u0010L�\u0017\"��w=�~�\u0001�\u0011�;�\u000f\u001e��V��ѷ��B�a�9�.T�p\u0013�\u0019�\u0002+LVag3=6����A/*7ak��g�hG6���Ŵ�⸁����HZr�r�\u001c�RM���h΢�H�e�B\u0018�b��s\u0004'M�d�(\nm)h(M�\u0011�\tί�Ț�SLE\u000e�2'MHK?��h�\u001d�R�\u0011\u001fUZs���N����O\u001d�\u0016�\u0006\u0017\u000e۰�\u0014��{gξ�p��JM[D|P\u0000�'��\u0010鑣A/�\u001c����Z�\\/\u0003��j\u0012)�%@�*��\t��-~\u001cp���T�l�\u0013A�W�ͦr�\u0000���b%z,�wz\u0016�*)\u0012ч��j�q\r�6\u00108�(�T�ꉙ��k��ݪ�!�\u0007s\u000b�=΂��o\u0010z6*T��V\u0012�Ɋ���x�w��qů@+\u000fg$���:Jm�ّ\u0007�\u0004M�Z.Li�\"�\u0014b\u0013\u0002b�P�'f�������”�o���{�\u000fs���DE6��[p�u\\��j/��8$\u0012�\t�=9�\u0013ѵ\f\u0007�%b;\u0014��MAt\u000e�$x��u���%zkv�\u0019JL��\u0015��\u000f��r����kLU�Bh+�\u0003!PLF�92�\u0017�b���]J�1o�S\u0002���n�5YH%�+z�\u0014�A:�\u001c����[�A�VFo\u0012T�$�w�ء����(��~/�\u0014�\u0010�\u001c�\u0000Oסfc��\u0018ͮb0�4�zHG,��d8p�ց^c\u000e\u001f�7��e�����k\u0018�ȋ�\u0012H�8�:\"\u0007vD�\u0004�ϘP`\n�\u0015\u000e+疞�ҙ��ɱ�$�%x�\u0013\u0003�I\u001cA��鮜����X���4�}K��\u0001+�\u001e�h�x%U'd7���,F�p��\u0004�^�$/�,�i_�\u001dɎ��V�bY�\u0003I.t�/�=%����j�0�m������\u0015�O&�!\u0006�3��^\\\u0012�T��d್.]>\u001a\u001d/+���+k�C��a3��w����]'\u0017���z�\u0006h�G�\u0015V\u0014��\\\u000f��\u000b%���렖Q�\u0004�A�\f��<9\u0016�AW�\u001c���}��#����Jw-\u0011Qhn\u001f�*]�5\u0000���\u0018�Q@U\u001b�;��0�N����W��`�k����b�(�y�\f4\u000ee)/(�@\u0002sˋMC�����>F�b�R=bb\b\u0013�=\u0006��n\u001d�7\by8��<\u0018~I\u0010b\u0007#�D^���\u000f�OZ��#�9���\u0006\u0015b�\u001f�o��~�zͦ��G��`���Am\u001en'��E�\u001fD�H/�M��.H��~%��\u0012�&?w\u0000M\u0014����-������03n��\"z����$\u0010\u0012/\u000bM?!�R6\u001a�c|%��V(`\u0000�\u0018�K`^�\u0000Q��\u0005گ�Q�ܯ3\n�\u000e�u\u001b��\u0010�h��sd<���!n���(p�\by*�<�D\u001bzF'?�\u001d�][�4�`�\u0013sP\fUG;ٚ,\u000b�\u001a\u00043}$���<\u001d=�\u0019\u001b(�2�A\u001b�\u001cԀ�XКw�9���J?��|�C\u0006��C��q�\u0015�)�j�����KRlm\u0016\u0013�rK�\u0005H/c�F���G>m�iĭ�- �P ���`FVX\u0017�M��[\rg\u001b�\u001e;�\u00074ݤ\u0003��\r\u0007B��AZ����5#�G5�L�=\u0019�G.7��_�8l�\f ��8��\u0002^�I���0߳r�7�\u0017\u0019VR�)w\u001f�+PK:��l6]/y�%���mY\"|\u0010\nZZ\n��\"4��6��-��U���$��\u0000\u000ec\n����J��PO/�\u0002�\f��x\u001e�^�vMt)h�\"O�*D�\u001e\tyl��t�ˬ�!�p\"�h�\u000f\u0016HianX�+�%�\u0016��\u000f\\��A\r�\u001c����Q������\u0007,pXr�`��LÇ�2���\u0015V��\u0015�+_\u001f����\b\u00175�A�\u0002��\u0004n�*�\u001a!\u0000o'_\u001dKư��?��)��J��\\����]�/3*���`��:]#\u0017ΈK�h�\u001b\u0012\u0001Z�f�QG��������-\u000f���>��+P�����DE��m��\t���l��_�w��K�\u0001\u001a��I��y)�����\u001d�XR��௸(��U�i�Æ��\t5�\u00181�\u0004�6�6��n``qRu[澛\u0004����з��R�`������\u0014����eV}\u000bR?��Q\u001b���J\"��ljQ\u000f|\u000fU�A\u0000�\u001c���X�|\u001d�Ϙ�T�\u0003\"�=?\u001b��As�R�E��Ng���6\u0000���$P e�]\u0019.��Ü� �\r9S+��x�\u001cf32&�lU ���b{Cٴ��\u0010i1��'��M8.m�\u0017W\u0018���Y��^5M\u0007����\u0010V���!�J3(]_3�iT���\u0004To���2��\u0005�\b����B4��T�]��;.\nqRT\b�\u001c������}H\u0015�҃ %*Fпї��7��!���R0���\u001c.�2J�ex\u001aҕ\u001e�/�Ŗ�\u001fd�\u0018��\u0007\u0000����8��c�\fRy#��ɦ%������\u0019\u000f\u0016�W\u0006w\u0002�����Dt�= >�ot�\u0018\u0001�\u000e\r\t���@�\u0002��֋\u0006�&\"�\u0002�!{h!�c\t�j��\u00164���q\u0006p]~��q��<>\u001e\u0005���mꂷЄ\u001b�p��+�e�?���1��+n�A˖��D\u001fe�j�}l�Փq'�^�`�5��0W!?���eh\u0002w��\u001c\r���A\u001c�\u001d$���2���\u000f\u0001!�L�\u0017�њuj���bs4�/�6_S�ư\u000b�p\u0011�T\u0017г��=B:\u0016vB��g��\u000e8\u00187`�d�\u000e?\u000b��\u0000�f:d�r�=9��̴\u0007\t,�©O��7`��u��\u0013�\u000e�vll\u0015D���\u0011�~H�^�̠\u0003y\u0018�\u000b���\n�:��v�=��\"\u001c\u0014�?//ژ�\bf�u\u0016Mo:@��a(���D��`��r��7g��+,�\u0001�U�Z�>�\u0011T)�\u0006��,\u001e!�_D�C�E�K�~�\u001fR,iĬ\t�7�_�v\u001d�\u001b\u000e\u0001>R\u0000!��Y�k��cuu�뾹�=�P~����|��MT��g[n�\u0017\u0014E8�J�ޝ�S�A)�\u001d8���ɧ��s��B\u0014:��0\"�\r\u0005��z�\\��\b*thg�{��|)��V��\u0000|2����O��ҏ���R\u00103��\\��\u0000ȫbw�:���m�\u000fb)�9�\r�\u0000b�\u0017MR��hAPA��\u0012��r�nR�\t�9�F+���\u00008\u001e,T��R'$,Lv���u�/o��R��8�m�\r��\u0001X��!��3�\t\u001c�tx��G�э'�BY��\u0019Be�@\u0011���\u0002�Xo\u001dhJ4\f\u0011n\u0012�(U����\"��#��-�\u0018�~E�ǀ�?�\u001e�A�xv�&\u0019����n��z,�9W�Ɩ�Ү�&�L��\u0013t���š\t��\u0013�O�[CC��\u0002V|��Bb{���=����'���\u0006sT�{+���\u0000�sҺ��:��\u0007��\u0006��\u0017~;��\u00034����]��I+��ì�׾M\u000e\t�w�\u001c��Y͝���/K��Q�j��ۣA'�\u001dt��M\u001d�\u0003\bD\u0019l�avx7I\u0019D��\u001b\"��M�\u000b�p�_0�\u0004�\u001d&8\u0010i_h\u0014\u0016�m��s\u00105,L;\u0006\\K�}0XE�=9\n�\u0016de?\b��\u0005���6��\u001c���U>\u0010���jx��e\u0005\u000f�\r�.R�u�#O\u0014�YF\u00138:��\u001ağ2{��G\u0018���r\u001b��\f9$f1S�/\fa��QX!�\u000e\u0017\u0006<����ރ\u001c�w��\f^N�]s\u0018\u0016m�}@7�\u001e�C^����V\\��^�P��(c'�O�}�\u001d*\\�m`\u0001Zu0�\f�B�h�T+T�\u0010u���\u0018�7\t��\u001d�q`0����\u000e��Fă��]\u000e\u0012M͖���Q?�\nb^Ӝ�b\"\u0012Gk�/\u000eHj�1ʴ���A#�\u001d����l}u���ߠ@\"x�����\u0013\\�S`�#�'b;@#\u000e��t�@�iT���\u0019��}�\u001d?KͅV�e��}��\u0015\u0002C>����\u001f™�`��\"�;����\u0016���\tJѯ�9�N$��\u0011d�\u001d�ޜ���b��}\u0001��^�vRU\f :�쁊��gU9wYX��ι���c�\u0010FS��<\u001e��o*\u0015K\u0005��R\u0019P�2k�I�S�\u001a�\fx7̲m�����v�X\r�v܋j�m��\bFL�e�r��q4;��ؙ�\\�*��M��Bɜ�As�~���\u001b�q�w�\u0003F��_�!�Ԛ'\f�,�%�#\u0005��X\u0007�e��Jݙ���\u0010�3�\u001e�\u0012�A\u001b�\u001d����+\u0004:�����T��`<��&�\u0003h��4\r%4+D�y\u0016�zt�X\u0007G\u0007��-�k��r\u0000��}E��\u001dq3np�\u0010\u0012T�k\n�\u0011��]��\u00036�c�D��@?t�G�H��t'D�\u0016��\n�U@�T\n�\u001fs��\u0019$��\"\u0011�PcU\u001f>Y��6���_|�#�^�IJ�M?2n�R�\u001a1\u0013�\u0000�bO�\u001bb��:n\u0017j��B&\u0012�t%]�t\t�\t�\u001c;��\u0017�Q��I�Z[^l���'-\u0004b9�s����\n��u6�㾮:�M�Ѕ�0�d\t:\tL[P�\u0010�\u0006?\\K\u0002Ej�\u0016�\u001f\u001d\u0017�Ѓ�E\u0005IS��w�\u0010�\u0002]뙸�\u00127��\n��\u0014�A%�\u001d����!*���R���Z���G3����*��*i�ud7�c�q0�\u0006O���p\u0011\u0017݆H�\u001b\u0003��\b)�c\u0018�|��Gv\u0013N�n\u000b��\u0017��4{\u00179�r�fm�ՙE*���>V���� ��Je�\u00018�?\u001c�m\u0007Y��n��\u000bh�z����{Z�����\\k�~\u0012�EL�bl�\u0011�\"<`\b)���Ik\u0018I�\\��\u0001��r�_�\u0001\u001c�\u001ff���2Ig7@Z�J]k^f1W�\tC�wq�}'\u001a5՟�~���j�c�y\u0016r�q\f1%�/�zƾ\u0007�:�\t�4ܛ��\n�L��(��Ppx�Ѿ�?\u0010f\u0018�S3\t�ռS���W�(/�Jf��*�@DŽ.n�\u0012�A_�\u001dĀ�L�(�X�M\u0004\u0007٫�\u0015�Fy��ۯ���\u0015� ; �U�\\4M\u001e��~1\u0004�:�����\tr�����+��\b$��\u0019,z2����l*A��\u001c\u0014Ȟ\u0011����ƌ\u0013�\u001b�\u0018�%���rk\r����[HC�9�\u000b\u0005ٯR%�\\~\u0007\u0005u��sv�\u001f\nX/�h�)�T�U(f\u00000��?�\u0013\u0012k��\u0005Y\u0018�\u001f�0A\u0002:��<�\u000e��P�)mz%��G�Y=��^�\u00006\u001eJTک󭗪�(U?�쬡���\u0018�q�|\u001d@h����x�Zʡ�J\u0013 \u000e+o�N�x'�\u0015v]N�ū�\t�_Q\b]\u0002#\u0019��dJ\u0012�̘\u0004�J=����&�á�A\u0013�\u001d؀�M\u0001m,�\u0017��?��eW���\u001c~(�����L������d�y\u0002�ע�Y�z�'5\u001a&�(��\u001fN�\u001d��\u000fCn;\u001e��0C���q�O� �x�G�'.:\u001c�V˘��҉�\u0002\u0017�\n\u0007jԈC�!���6iG\u0001_��?o��h���X���:\f\u0000X�IQ�r��8��h\"�q�\u001d�G�\u0019q'\u0006�t��e��uz�$|�ۧ\u0000o?�R\u001b�W\u001a�?2��oIV��O(V2��z+��\u0007��#G\u0016�'�*P7�m}Eg9o\u0010�\"�\u0015\u0002��3Ue\u0013K1A�s�F���\tPc?R��.�+'��\\n�ˮ�\u0005\u0001�oQ�\fh\u001e\t�A$�\u001d��1�ȁ|�A<�ߵ�\u0016&�4\"C�����Ø\u0004�߉͸�T׋�4�1\u0001�\u0007\u0011�x���\u000b<�Y��\u001c|\u0013����\u0007\u001a�\rE\bh\u0013\u001ek\u0004�w$m^ ��T��#���\b��Ӎ�P�ҵwS�&\u0005[���\u001c\f�`����h\u000f�\u0000��,\u0011�W��ĈMO���/{���x������U��iv��\u000f$z)Zx\n�6�iS�\n6'\u001c��>oJ�{�Nؗ3�U\bQ0��?�G\u000bP��D�`�?Z\u0010�b���g)1l\u0001\u0006�\u0016�����+��W��18�7�]JE=�\u0018g1��*1Aq��u�ZPf<Й5���\\/�\r��q�~ѳOԄ��`{>e&��pf�A&�\u001e\u0000��.'\u001e�\u0000��dw:/���ЈBIM����%P�\u001dc�F,�\u0007ZE�&TJ\u0006\u001b�2��τR�gS����a�\u0005ڡZ\u0004$�H$�\u0019�Ԫ<��W\u0018�OR�I�^*�\\\\�j���Y\t\u0014��Ҩj�\u001b����|{\u000f��T�ѧ��\u0013�µ(��_�gYA%�P̺8��ӄ��:\u0004s����?kZ󕘖\u0005��`$�\u001eV&�����0E�)���@a��?�_��*O\u0010<�$EG%ɱx~\u00078\u0015�6�f�O�)�Nq�\u0007-\\�P��\u001cl(,�D�����n��ʘ�j�\u000b��S�\n��c�5�+�AO��=�!�5o\u0015���\fS���m��K��oll+}�A\u0018�\u001e\u0014��L��j�#:�\ra�lz'\u0019.�s�\u0010j:D4�\u0016/��^[����\u0018o�bz#&P\r\u0013\u001f�*�����R��}/ב�\u0000FB\u0010\u001bOyH\u0018�\u0004\u0012L��M���T���w�3ym+�\u001c�5�Y�E@e\u0011{�\t�M~�d��\u0010�\"(5D\u001b�Q��i�r>�D�X4�\u0018���\f\b��\u0004��k\"����׉��@�&)}�2�x\u001f\b��\"�\u0018�\u001fi@��\u0006>c\u0012bd�o�+&����7\u0004\u0014ϲ�\u0007��i��}��������\u0012א�B\u000b~�E����w�䛂f�ۧ��(�<\f9Lz�1\u0015���f\u0007�7^kU���'�@[����\u0019r ��A<�\u001e(��0d�&S���\b,\u001f�\u000b6\u0017Q�oWz�����\u001c�]\r\u0002}����r�X�v���\u000e�-\u001dGb@�b 1�a�āB����\f�\u0006�e�Ҵ(���o\u001eq�\u001b;��\u00038\u000b�\u000f\u000f������tX�h��I&�㘲-�ɕ�A\b��_an/RN\u0002\u001aY�{&,�ԗ\u00156��&VPj����\u0004���!h\t���7�&Ƌ����(7�p\u0017_K\u001f�L{Tm���Xު�xUK�\u0018\u0002�\u0018R\u001er��w�=�G�D�<\u0003M��\u0000����P#(��c��|\u0011������n:���7�m�,�Gq�\n�s����v�(���X\u000b�Z���Z�\u0007�\u001a %����,ޞ@�0���Us�pi�\u000f�\u00020�\u0002��C�Y��#��B\u0013�\u001e<���Nd���rv������<��P\n4\n\u001f\u001d��D���+&ɱ�v��B'�Q���\u0003\u001ek�oOHP�J��#8�c�\u0003������̚�\u001ef%c��=h�\u001a�\u0003\u000f,��\u0012b\u001diNnq^a�\u0015�̿W���\u0013h�>�\u0002'x����$4�l>�\u0007\u0000Y�h���▯h�̣N��\u001a\u0007��u�u9�6Fn\u0018ad;\u000el�3��M��KmqS�uk��B�|��+\u001dd�9�$u�v\u0010��-\n\r7!j�\t���\u0003~\u001a^QR�!0*X\u0018!p��>\u0005Y�1�/�@\u0002��c�V?U_�!�϶\u0010F�FU\n��7ذO��֥�\u0007�\u0016�\u000eC�� \u001a}Ɏ\u00018Lцx�화Xq�)��U��Ycy\u001eB�]�\u0001���C\u000b\u0002���?�\u0001n\u000f�+����/�Ù/�\u0006�!�%�#�\u001e\u000b�\u0000�&���bn�����Yy�\u0017$�h�����\u0019�d�\\=\u000e)�J�L��2=2\\x[Ağ^el��+�\u001e��y�J�q���+\u001b^R{��\u000bSʊ\u0003�\u0018N�U=\u0016`TX��\u0006�RK�\u0018�jr�C�\u0017=�湠IZ���j��喛�\u0011�h�Z�3�^�zM�[��\"�z��3 Olxlkj��\u0006\u0011\fx�@fT4�/�\u0017\u0019��\u001aT4bn\u0007��p�����\f�C>O���, \u001fL�ŘE��N�\nʗ�2s%]�o�\u0007��l�-'׈�\u0012\u000b�go\r�\u0019�ڸ�{9�/��k�\u001a`�x/+�c9\b&��r?=!��\u0011���1%��>0�ִK\u0017���vnf8C\t�Z�3�\u000b`��_��)�云?⢨�uP�\u001c:\\,\u0006��]\u0019�5|��B\u0004;>��\u0016\u0013\b��v\u001as��Czi�\u001c�R��A\u001e�\u001ed��.��e�*��~KZ3.'���)�����Pئ�yg#����\u000fC���!yѰ�z�p�����5��\u001e���c\u001c��K�-�`T�I���I��\u0019�(2 �\u000e��Df8�׵r\u0005���c�>�0���j\u000b�/����P������(�fpL3��? [��-��Ǜ��P�\u0001&\u000b��h$��P��ȉ��\u000f�\u001f�А�����\u0000U\u001e�Ǻ\u0001\u001a���3<\u001d\u0018�$�\u000e�:Q�Q\u00109�{�e1�����=\u00197+��\u000e/����N�\u000f�^�\u0011r��K`����7��[R�w�\u0017��X�\u0003�8����\b\u001a\u001a_9��u\u0019�\u0015��݀pݒd\u0015�T@�Qy�\u000b+m��JCp�Bhr\u001f%�{�Z�\u0010V��!�U7 >����r���n�\t��(��e��^��*^+KH`�\u0013���X�چ��}\u000e6���<[\":E��A!�\u001e���5B툩�\u001c^*\u00070�6�R��� \u0015�p獱�\u001c�̳ C��*���云a�.TM����<\u0018��S�+���F�v���HO�\u001c\u000e1[V��T��wP��JZኊ\u000bjr������)�\bx�\u000bV%\\\u0019�r2\u000f�%!}�*(��\u0005�%\u0010\u0014��Ѭ\\(Q�7>>�\u0012M���}(�>A�x���\u0005��(s��\u0004iق��\u0007����8�+��en8\u0012��@\u0012���\u0000�XZ�GrV��{ւi�\u0019Jt��\u0011D\u0014o�^��1���\u0001TyN0�bA=f\u0011�v�l�\u0007�N\u0014bG��o��$�K�\u0003D\u001b���玱��\u001b��y.�\u000b-s�hRz�?@��BD�\u001e���|��=L�}\u0014q\n\\�9\u0003�~�C\"��K3�#=�9��'t\u0000ǵ�c�\u000f��)qG�3k�IF��E�qu�\u0006�\u001d3@q�(A�CB\rmmdsC�DXD\u0001�^\u001dy\u001bM\f\u0000\fB���7��d�\u0012�\u0005�쭈i�Pp�hR���\u0004�\rS\u0001;��*0�2����cFwcqY�/���O��D���\u0012�֊����$\u0012I\u0016qx\u0015\u0010����͑�{\u0002?\u001a \u0003T�KSO�hsT��$G�KY'�\tZ[GQ`V~�L98xq\u0010<�EZ�r�F��\u0007\u0013\u0019ibw�\u001d|\u0010���83�A���^�-�.�\u00041�ZC��7*R�\u0000\u0000\u0000h��!,t�2\u0002���[�;t���9��\u001eu����\\\r\"iU\u0015T*�>�r\u0017��ٵuF\u0004�ғO�m~���T\u0016�5\b��s���\f�(!R����^~�isJ\"����o��5��\\=q�\u001e���[�����Cy־? �\f\b����\u0019�\u001b�\u0015�4\u0006�P�3&�\u0011���\u0012��l@L��S����<�-$�-�`�1�ģA\u0004�\u001e܀�L�{��\u0010�4T؍�!�0�^������\u0007o�Äa�4�qx\u001eI����Q\u0003`��puݢ�\u001d��I�����8��\u000e\u000f5\u0011�>���\f9��;�X��A=S\u0007�Y\u0018L�D\u0019�m\n�@J͗r\u0007Hp\u0004Y=�N�\u0004x��&\u0010\u001d�d���\r�a�\n�pY�\b9bh�2�;\u0005`��t�⇘\t�u�ֶ1�}_�)�\u001d��j �q��\u001c�\u0013w������!v��`9Ra�`��\u0003\u0014\u001e�3\u001f�U?y��������\u0017D\u0000\u0000\u001a/L\u0016\u001ao��R�\\P\ra:�TB��`'�=�a\u001dmD�S��\u000bZ�?�@��\u001e����m�\u0017i1-\u0019;m�c-�C�W�S�|��%R�L�}ִ7D,�!@\u000b��Qݑ�}Q\u0003̭�\u0004۠>u\u000b�@�VRe�\u0010�\u0016m�A�K�\u001f�(i�*<\u0015�!�o�FF�\u001b�-�\u0010I�����\\0�ޣȅ�P\u0017u��\u0016�A'��Tq\u001ee�n��iV����DZ���9G�j�h�ScI\u001f\bM1�d�E�r�\u001e�R)�T�|� ɥg[K,Z�ݯ.�\u0019�m]�dbJ��� ��oU�\"�\u0000)�TV�~�\u001f��\u0003IE����\u0012�[�\u0012����\u001eX��\bT�\u0019M��\u0011\u000f����@�@��\u001f\u0004��Mz�e�%'�J5\u0004�\u0016����\u000b���(OV�\u0011�v\u0012C�\u0019\f����4��s�-)\r2䏼 �)\u001cyg�\"\"�\u0017j��^—\u0000��Q�j:6WM�\u0007t&Kn��9�n�^ڤ\u0018,I&�W[�i2�1;����y\u0013�dA�2\u0018~�m�]��,\u0019`b`�����޽_E|-~j���A)��Y�-e9փ��\u0016��y�\u0006聰\u0005d�M6�\n�j��Dž=[��,�O�\u0004��\u0003��1*�V��\u000b\u000ex�ah�\u001d\u0017\u001fY�%`\u001a�\u001694�\u0005ǿ7�Rd%�\u001d�e٢#\"��� \u0002ṭ�A\u0018�\u001f\u0018����-6tǔ\b\u000f\b���l�pM�2�٩Z;4�M\tw�����jJ%�\u0000��4쁢�z�\u0013���D>ozVf�g��y�up�#�\u0001�P\u0012\t\u001e���\u001a�j������p�i﵍�P�y���M�\t*KV��%�6��\u001e\u0018���V2\u00025�T���.&�Rj4!��b����y�-�D\u000f��j�F�_O�*O.,��\u001d���A�\u0000�Il���u3T� =�\b��\u0010�\u0018*?n\"I��wi�\u0004\rɧF��ka�0\f8-�,�Ӊ0\u0001�:8SĈz�@|����~A�6��7���:T�$����;�\r�����h�j���dS�t->�A\u001b�\u001f,��X��GT�AP�~�����c�d��\u0005Z�\u0007��BlLW��s��\u001b_[�\u0005j�U��\\���!9���������\u0012�*��o3]u\u001f�����:�e�\t���E\t�׵�\u001aB@6\u000b�\u0001�/�\u0018c���d�B�T�����3~����I�ƶ�Z�W9�II��5r\u001d�þ(�d�\u0002�1��\u0005?��2��D�{��T\u001a&ˎG0�]5�-�>\u0018�[�ږ*z3�����ܥH#�\u0005���\u00143�E�i\r.�\u0012����K^�5mS��$*� ��Cw�ˑ�����|\u000b�ဘ \u0014��8�W@��r�\u0014ܱSM<��\u0010��\\�.WF��A��\u001f@��}^@�\u00033*���7�\u0015�A\u001bˇ쌛\"h�- ��vB�a���^�2v�Ç�տ��2�^o���N\u0010\u0007=�%\b)Ҫ́� ��J�\u0018\u0004�;�\u0015�[�\u0014,(�B\f]+\u001dy���A# �6��\u0006��\n�\u000b����sx�����M����+���,���\u0003��2�1�\u001a��%�\u0001;\u0003�\u0017\u0018\u0007�/W���_Z��%\u0002sA�\u0015��\u001c:���\u0013�\u0004Fk���\u0014\u0014YYx�@7$���1�Uo\u000bHNI\u000f�[I8�\u0004�@�B��+۶b���\fk/�R{�*��ʡ(��*��#c�\r\t\u0001�\u0012\u000e\n�\u001dU0N�u,��U._�\u0005\u0005d\u0006\u0003��]�\u0015�W�����\\?q��-9�X�\u0016�\u001dB�P\u0004_\u0014�\u000b���?x��m�7\u000fg�`�1\u000b�먌=K�!,���,w3��y��\r)�����\u00114nA��.\u0001�\\��\u001ba�2\nM���R�\u0010���\u0012l�!̈\u001c��V��{?Ƣaq��_i�H\u0014�Y=^L�\u0015�2���8�A\u001d�\u001fT���)Jҙ�\u0007F~�r��\u001c��ϯs�|��\u00112\u0004\u0019M��ٯ�ȣ�gfh�4ZÑ=H!hb/,%_\u001d��O�f��[�͖3҂��pk_��du8C#�\u001d���M��Xw�L��\u0019$��i\u0005옶p1_�\u000e�\u000f�\u0005i��Y\u0018�J\u0016١j[\r\bN^D4��)NQ���Y\u0017M���\u0013`$���b9\u0001\u0001[Mƕ\u001f�M}��\t\u0014�\u0018ƶ����Σ���~��\u0002����>�r���a\u001e}��xa\u0018k\u0018i\u0013�����N7��'31��M�A�R��o����A�ڤM��\u0015?�![\u0010��^W0in/��Ӓu�����K�A��L���3�A\"�\u001fh��L�(�]��F���AC����o���!��\u0004$A��(,Ę��@�(��\u0013�\b\u0002U�\b)�B�|&:Z��(�k�G���\u0000\u0007��l,�X�����R^~�\t�U��_�k\u0006N���e��d�L-\n(��>�2$���I��'I9�3Z\u0013E�\u0003�{dm�f�ϸU\bJ\u0016\\�A\"�\u001f���L����\u000e�\u00004��<�1�A+�\u0018NC\u0002��Y\u000e\u0018��~/IwO����|��X��\u0013\u001a\tc\u001aA������$�#���F̉i�.�N�f�C��j���‘���B�噿�@oP��⍃5i�\fY�NʁZ�\u0001�B��[�\u0016\u0014\u0019\u0007�se\u0002s9[�[��Y���˼B\u001c;z���j5��-��d%e�q/d�\tu⛧�\u0010�6\r�R�Z��'��ݬ�2\u0016\u0018��\u000f�~��Ә���c��\t�\u0006.*��9r�N�S�p��Z��)wAd����3����O5s0xz�I3\u0000x�\u0003i:�n������2��l\u0016��\u0004�c.սt4r@�؝%w�@�A)�\u001f���-�\u0001�xӇ�Y�4����3��o�B��xCN<\u001f�\u0007��D�\t��\u000bhP\\�}(���\u001c>��/�� S��ٸ�Z�+uJR`[)G�V��n�H�?�\n0�`7�ϋ�e?\u0003�b\n\n��B\u0017H ��\u0011�'أ�ܘ�ޅ\u001a(���JW��bi\u0016��5��yҟ\"���,�BM ���\u0011��\u0007\u001f�5��!���M��Q\tMi\"\u0012EP|[C�\u000e�0�d�\u0006\u000foݲ\u001b^�5\fE^�FKe T�69���\u0000��€}�\u001d�\u0012���ϴ�>��a�\u0001w�^\u0001��\u0003\u0006O�������O\u000f^UسU{ʻ��\u001d����d����0*�4I&?��B]_��R�A�XQ~�B6�\u001f�����X�g�3ZW1�e�M��_9�����\u0003X\r��X��t�L�\u0000��;\u0010\"]\u0017�s�x<��u�_�ӫ�k�1)��,�҃�؟V��I\u0003^��{M\u0013W2\u0014�Y�ofÿr��!\\�\r����xAtn��L\u00025ljU�\u000e�\u0013�\u001c��,��,[�酐��J��\u0016�גr��`FH\"��\u0016J���і�W\">��4���\b��Z+�u\n&�#�dLZ�2^6\u001f���i�\u0012�����%�ʥk~�zﰠ�x���{�%��K@\u000b\u0002\u0018�=�04-��\u000b}9�#$��\u0017Z\u0000\u0000\bv,�\u0014�ɞ\\�\u0019�@q�V$��ݲ\u001d8��H���z���\b&3\u0005���1�r�\u001d�\u0012v�e�+�˘�\u000eM�����N8h�\r�0a,%P\\\u0001[��z�p��}�*� �\u001eJ\f8��ʲ}\u0014�ce\u0011�\u001c�-\u0000+��_O�\u0014E\u001c6.�ɳR��R�hD�\u0010\u001d8W+Ȩ\u0014�!�U����'\u0011V.����y\u0013u-����3,�F����\u0014�\u000b�\u0000+`b\u000b����q�@\t�/ǪJ�[\u001e�O\rk.�I0\u0006\u001b6\"\u0002�S��K��QT���t�*L���ּ���H>\r4H�i��tV���=\u0011�ʎ�\\�L���9\u0000A\u0014l��� �E\u001a��QU�²�0}X�1f�y6��]N�U)\u0012ko�\\��#O��@��\u001f��L��Pna\u000fm�oR$�1?�wC��k\u0019�?h�F\f�;�<�>d�{�QT�\u0006: \n�譱�ȑY\u0013-��\t�\b\\Z$\rN!z�\f�24\\kS^\u001fʲ�묱b���em\u0007kn\u0012S��.\u0001�\u0013>�!��p\u0012}O�H��\u0019\u0014݃��~EC��N��^墳p\u0013+m�-!�\n�����\u001b��\u0016b��B\u0003��u��\u0004]�{��?]�q{�~\u000b\u001b��UL=V&ַ*֍2����oً0W���\u001bמ\u0000\u0002\u0000��\u0017�Ђ\u0003��&�c:��.v���Y,IB�\u0005/2d�Ҵ��x�Q\u0005���A\u0000� \b��L��\u0012��޽WFqp���������\u001b0���A��\u0004l��}��+O�*`0�W\u001d�)[ݗ\b���3:�S1\u0005`<¹\u0017��\u0011)c�I=\u0019\u000e��x\u0006�/���$ |�q�X.���}i���T�ƊV9qL-��f�\u0005׃�\u0014�\u0014��\u0012�:���}S�&�����i���Ӄ\u0004\u0018#�\u000f�����\u0017�W\u0011nd�P8�%�u��\u0006�%�Pj{t�r�x�w����н�\t�|M�ʏG�~w�2�}:�Z�U\u0015�s*����h\u0003�`s�C��A\u0014� 0��L��\"��\t�Z���;y)Ii�ȡT=S��(���@\u001b\u0014\u000f��\u0002����D\u0005���c]�\f\b��k\\�y���*PD���\u000e�\\�׿�\u0013vmK�j�[�8�ZHk\u001d[F\u001b'��\u000f��\u001f����`�\u0002R\u0010�n��\u001aIjmx{J�!~�$�N��mfw<'�Z��d{\u0005`҅�-�S���A\f���$�����̱^\r\u001b\u0015\u001bUz\u000eAK�/�l�7\u000e\u0016�0�'xA5��v�\u0012!�\u001dM{㜾0hEv8|��a��z��ڵe\u0011��\u0003J\fh�+\u000f\u0012��'�\u0003��r\u0007��w�/笈��784<�\b�v�7P�l @5�A�� D����.Is\u000f�\u001b����\u00002\u0006� \u0011.\u001e�\u001eׇ�E_\u000f}�b\u0003CU��z�S\u0016��dF�y|{�o\u0019��#��quf!��A,\u0012�O\u0014Z��%$\fM����Z�E�\u0000�\\��\u0013ُ+\u0007���o^w�(3!�����C�;�R�K5?0�\u0011;��¹��1��`�5�yh)��T]��\b���PIW)�\u00166���;\u0005�~0�^<\u0006\u0000\u0018��@���\u001e�d\t\u0015�PI��RN�\u001c\r�\u0018;\u0005�_DQtz;1�1N��1�6D(@�\u001d�o_\u0004e�%v�Y�J��^���g�\u0016\f\u001c��Tq�T��Q���,\u001b`\u00194s\u001dmV�g���5�KԪ#�Oɪh\n��Be�:�\u0010�|�OV�\u0012��m>\u0002F!\u000eʿ�a�P���l��>�\u001a߿\u0001�h��Ѥ\u001b�5��Ś�e.=6���߹XsַM�\u000b�\u001fS.t!��^�fи�%g}=xX��F6�\u000f�\u000f����$&<3�\u0010Z\u001f�=��y)P�P�\u0004['\u001aχd\\کQ���k3v��)�G�AR� X��&�6���9\u001c|е�j)��D�V5��~\u0001QS�\u0003�\u000f:��90�����\"�\u0005�P`'�\u0006�Z\u0013G��;^�\u0002���-\r0��2P�H��\"�A;J:\u0007���\u001c�������UžR>+�ϐc\b5��K����e�ՁCչ�\t$�)��\u001by�����$\u0019ָNoN�\u0016��LUQ\u0018P�0�5�Pw��a��\u0016z W��o���r�\u0016\u001daɧ|�\\���ȻP\u001at�+<�F\u0005\u0013\r`�rVq<^L\rǛ9\u0016��M;t��~b�m�\u001d\u0002G��}�M\u0016�#A(L��ɽ^����\u000eHf�Y\u001ax�@�n��gw��eB��_\u0016O\"�`�Cs�A=��9\u0000�T{�\u0007w6\"J\u0017\u001d\\�^j\u001c5�n��+�'���(���A��\f��vj�]��A\u0006� l��MXX)QuM�����zg�0\u0017\u0005�\u0017�7���4�\u0011�p̈́R�=%��\u0012�\u000b�\u0012��\u0010�^�\u0000�1B\u0011\u001dY�\u000b\u0010���\u000e��\u0015>�/�^��\u001eҘ�\"��\u0011\u0018T��5\u0010\\D�6��-K��\r��w\u0018�<���\u0012�I\u0001�\u000e�!����\r�2*I��Ei�lP�-��_\u0019�\u0010�\u0014g��R������;\u000f_�>_4\u0007��O ����ٻ�V\fS\u000eVn4N���\u001f��3z�+r#d\u0013\u0001�\u0006�g�ב�\u0005\u0007,�4������\u0011��\u0018��m��I�M�V!�--�R^�%GK#�dVTGK+��8���mN\b�A � ���1��;�&E}\"I�^�\bc;�:\u0003\u000b0���\rE�y\u0012\r�|fN��\u001b^\u0014e\u000f��\u001b�D��*\u0006?\n��\u001c\u0011��kƏ�\u001b��9c\u001bR�\u000ev�Ei\"�\u00177�N,�}���Ge��\u00140<�\u0000l\u000f\u0018I�\u0017\u00058ε��L혝��#oτ�\u001c�\u001br\\\u0002Z����d��Dì��7s\u001e=r�E �;\u0018�m�p\u001bU�)WD�ZƎ��خ���E��n*��m\u001f\u0003Tz\u001c�oY��\u001fϒĞ�׍�Z4�7[V��s%a+�,E<���\u000fx��?��HCr2����\u001b,\u0014��z(p��|-�{pc\u0006��3=�{��#�ţƨ\u00021�\f#CE�clK\u001f��rm��f�A\u0017� ���LêN�\u001d��ږ%._Wj^o��xm�\\�#׼\u0010\u001d�H�p)\u0019\u000f\u0019��\\�\u0001�Գs��{$I�M�q�Γ��[��- �n�\u00010�V����M��u��pp��w\u0006jn���V�S����\u0006Q\u0013N�<�1\u0007\u0001h\u001f�1�\u000e�7���?��#�E��?��5>\u0013�Z�\u000bM���)�V�=4b\u0017�����1�h�ߴ��S\b�$\u0002�\"�\u0001��ʗ�E��0�4��\u0002�\u0011��*I\u0018C�zJn�뒪{Q鸈v��sz���vM���<|��2���\u001f�m���x�\u0003_�\u000f:@\u0016�1ᓉ�:\f�.�l\u001b�1�\u0007�a��٣AɁ ���|��LH��a�I~�(\u000f�2�؎�-54��º�W\u0014�M�CK-���Lӷ�!\u0006\u0000t\u0019K�q�M��7E���Eir�OZ�q+�m=���D��E����T��x�jhv¦~��$oYvc*k\t@y\u001d�@A�T�\u0017�\u0005xi��|�\u0013�=\u0006��\n\u0015e��\u0005�=�e!Ff�q���7����\t�D(�f:A�\u0010���\u0005oH;\u000f�\n\u001aq���\u0007�U\tt�\\n#\u0016\u0019_���㨄\u0014�\b|?v�����䕍�\u0002�\u0013+}���\u000b��ԇ��c��q�7�ޙ�M�\u0007�YdLJ\u0005o\u0011?�h>'��-�p;�>V� \u0001�\f~�H��olQ\u001d���\u0000������n��g�ϣA<� ����r˜����$��%�5s�\u001e�He8�.�!a�=VH��A\u0000ο�c4�t�v\u0000W�6FmE\u0012G�܂��Ul�R��MA�R��O�b\u0016�\u0019\n�\u000e�\u0010z�\u0004\u0016\u0012n����8�\u0001��\u001a\u000f�h2�(V%\u0007-l��e�U�:h�4z��%d07�7�M�w&�\u0000`R\f\u001b���eͻ�\u0014+�{qSL��Y\u001d���Y\u0014���o}��#QUؼ�7�G0���D����}���d���s*n�%�\u0000ʠ\u001aɳ�lw��k�g@�4�1o����\u0002�V�~.�;DA\r\u0004�4��%G'@�?S�@� ���X��T_Aj\u000b\\#\u0017����~�=�\u0011>p�F�8IG�k��6H\u001f�'�ޘ�LV=h1���G�!��z�\u000f����Q�\u0003z�N*w݃\r\u0013�ˊI��\rBZq��7���ʥ\u0005�/�q��%�:\u000e���\u0018�~,��w\u001f��=\u0005�\u001d����\u001dؽ����?�h�ر�\u0017\nS\u0003�F2\u000f���@P'YT��\u0011\u0002���\u0006 ̟m�8�|y��\rz_�e\u0001�\u001a=�F^ˬ�}��%м&B��uѴr\u0015\u0005S�n�o\u0013�����\u0019TH����\u001eI$�T��\u0005��A\n�!\f��M*\u0005���ž\u0002���űW�og�F\u0014�|���\\��\u0002�\u0002\u000e\u0013��\u001bT�g�07Rq\r�6\"�a=�:Is\u0004������]��i�k\u0019\u0005��I��Q�\u001e:���\u001c\u0001M��~���G\u001a�K�|$Tj�2a��->6�@\u0005�pg]�wuwF�MyV\u0011A\u0019l�\u0005�\\:��7\u0014؏�\u0003�|��6l(���YX��\u0000u�^ҿ������=҆H����� �%_�\\�#X$t�F�俄\u0006�!�z\u0004ub>�A�_\u0002\u0011��eڴ\u000f3\u000bl�犒�y��2\u0010q�ӊ��e�į@D�mԆQ�Y\u00057¾x\u001c6��V��%�\u0014Q�m\u0016᷒\u0004���g�hI��>͊mb&�\u001b\u0001��n�Uj\u0015\n1��W�\u0015�s��'\rW���%����<�\r�5�z*v�~,��}���\u0015d�a8�,q�0r-�\u0003�\u000b�C\f!�\u0012,�F�m�E�+\n������aT�z�3o�$#�V*z��\u0013�\u001d�%��`~���\u001f�\b�You�1�\bir.S���X8�c�\u0000��t\u000fH��}N<��\r���o������ _��A\u0011�!4���m�É\t��\"!��\u001c�`�gs)^k�i�=��`1�[\u0003��\u0012�F�P�\u0016����M!\u001d4���?�M��\u0000��á*�4\u0003EW\b��\u001bo\u0005*�V��e\rv\f����6&f�^\u001aϮw\"�`���g��:g:�'\u0013p6\u0018\u0017\u000e\u0017\\B��`��\u001f�\bz�\u001cm��Y;�/��\u000f�x\u0006z��\u0018ڍ�\u0015p���pG\u0007��G\u0007t^�)L�z$��)\u00189\u001e\u0016�H\n\u0007�\\�\u0017�д\u0007��\u0017^S}\n\u0015\b\u0002��GL Q�\bz�\u001foZ!Ʀ2�g\u001a�RJ-?ȹF\u001f��\u0005\u0019R�O�u\u0017�0��\fT�\u001d7�b\b�\b�x���������\t0�A\u001d�!H���b�^�\u00104Hd#�\u001e�\u0006o��u��U\b�\u0013;�h��H�<���Ï�[��0�\u0003\u0000���?�*�T2���M�I\u0010��M*�V�w;*\nN�\u0007\b]�|[�+����@\u0006%<��u\r)�*� a0LԠ�� �Z�!\u001b�l�\n�� Q\u0010/�jH\u0010J�(��K��뒘\u001eJ�\u0005}�tW��נ%%�����+�����\u0011S%YK�X\u0006R\u0003�WӼ�7��u����b��]?\u0019�xܥ\u000bl�{�2\u0000�\u0016-8t\u0019\u0005�{�/��\u0014������\u0013��-t�թ�-A��O����n\u0016r \u000f���S���\u0007�]��h\u001c\u0001����r�>�mZ��O\na$���A\u000e�!\\��L�Z�\u0017\u0012����(NA���\\�`Q'����m�.��\u0016�������a\u0019m\u0005\t�P̼�\u001c�Yͯ\u0011o�Gy�v\u0002�\r�8Y�EQ>ox-�Ce�z����\u0007��F�� �\u0014��Bֺ��f����1�\u0014I2b(�@ؾ\u0004y\u001d�Ԑ\tQCk���\u000f}+Z��AcTX�Ū��V,�:\u0012��$bT��4�\b�|/��dh�2d1܎�e\u001c�؉���H6�\r���c0�j�>\u000f0M�\u001a\u0018�����d�ӺP\u0011W���\u001a\u001b�}�<�@��\u001c&\u0002o�.a'S I�m���2\f��\u0011\u001eY�@�4'���ECN\u001a�`O[�A\u0006�!p��L��W�OyHrl�Ii:�\u00057\u0019\r\u0013\u0002\u001em�v�<.��|a�f\u00045\\dz��0[�;$1�yw<\u0000+�D]\u0005eo����A�\u0019�Z��\u000f�(��U\u0001�]\u0015�-\"E�dm`�ӌ\u0005;X`�u�\u0000��l�}�\n�X�[�\u001c#nw�qKp\n��)+&]�����\u001d���$\u0000��|V��t�y�\u0002-�\u000e\u0012�\n��%��$�ì�\u001dK�ߎ���P��\f�Z1�Ȑ[��N�/*���\n[�Ŵ��#\u0015xM��\u001b�\\A�N5\u001c\u000f=��\u000f\u0011�\u0011\u0003&�\t�\u001b[��vv$�w��.�.\u0007��\u001fFs���eQ�A\u001c�!���L��oӝ\u0007��qZ����@���&�>:Z8+�\\i#�=\u0010\u001e��ɍ\u000f�9X��\r)a�\u0014\u001c�K��^��b��}�֣V�_\u0011�9<��9����ב�Y�����Tc�s\"\u001fX�/;*�~�\u0016��K~�\f���!\u0001��]��\u0017�*�\u00048�yU,d��0�yj:=W\u000e�&&�̥�\u0003E�g�.���\"4tn��9���,@��]��\"�9�f��q�&n\u0014#�?V��L\u000f]�oqʇ�x�b9Z�~��7�Y{���E�E&\u0018/��jѰ��,�Sg%ȓj>�T:��\u001d\u001dd��l3�F�\u0003\f�H��=\u0011���H\u000f�W��\u000f�f�\u0010%�A\u001f�!���.��y\u0015�S)\u001d. h�\\��3xV%�\u001b\u000b�P�@cIv�T��\u001e�ǃ����`|mm=\t�%�V��;�\t\u000e[�ʂ2����ihG�#\u0006�3^=߷�GG{\u0007����q\u0016�Q�A��͛�\u0001b�\n'k$�S\u001d�i��\u0019�����|xo��\nfa\u001eC��3��8k�B�;g.����C\u0000=���\f�Y�\\\u001d�$������\th�3�\u0015^���hZ>1���\u000e�\u001c�)0�o��bB��zˬ<\u0002@l�\u0013�Ƨ��=��qѬz�\f\u0016\u0014E�Pn\u0010�\u0001�J���\ri\u0007\u001dv@s���\u0004WP3����<�\u0000�5�XT�H����p��[\u0001�q�δ��Aށ!���}a0�{\n~�?�0\f\u0001O�Z��\u000b�*����?ڧU,�\u0000D$L�^���:[S%Y%\u0019r�=��W�m#`6{!O' ۤJF�e\u001d.��D��SK�H����%�Lj�8Ff�\u0005\\t�\u0016dW�[i��p�\nF���\u001ck\nO���\u000f|��W4��T\u0000�§���^�@\u0014(y\u001a�z�Z�\u00113�\f\u0016��,\u001b'\r\u00068\u000bX�ү��Sx���߽F�t��\"y#fw���\u0010�� ��q��+�\u000f�%ӭ#�y�\u0006\ns\u000f�\"�S�)�-P>�p�\u000brS�\u001d�\u0019T\u001e\u0010��әЈ\t�A\bbi1\u001dLe\u0013\u0019t_-����S�޾�i�+#��\u0017�\u0005戺=��Y\b\u001f�H2%�(\u0014GH+Z�u\u001a\f���t5���\te�?<��\u0005J���0,\u0004��Ώ�1D7�0��Lg\u0005�ػ�~\u0019�)�\u0007��՛�vY��p\u001a��\u0018]\u001e\u0005��\u0013Cة`B�)!���\u0010��\t(\t[�E��q�b��\u0012F�\u0002�#�[���\n'ZM����\u0017�kO�ħ�\u001c�N�3���|1{�w�P��J�t�2��ě��`p���\"�\u001aO;��\u0011\u0004\\_R�A7�!���.M\u0011F�\u0001��D�%\u0001ި�ûQn��~��\u0017\\%�˨�����+�:$�ږn�j���~�3f�ɷ.�E\u0001���z���:n�x\"o\n=+�Ƌ;\f\u0019��\u001c<��J�v����f��v�\u0000\u001bX+\u0007K@��q�?\u0002ֽ\u0000\f���~\t�A� �>��\u0018��C�=[\u0010�ݷO|�Dy���U��?�\rXdt������i>.\r�]��6��2:,�W�����D\u0015\u0011ޗ\u0019ONz�\u0019���]2'kY���\u001fv�R?\u0002'C\u0016�ᅭ2��uwz\b�\u0005n�\u001d�\u0004\u000e�\f>��\u0018��4I���s?��B��H�ޯ�~����r��g2\u0013��@���U\u001a5MT��V{��\n�.���\u000fp\u0012s?/_�@��!Ԁ�L��\nf@ڨ?�E��j\u000b�h-t�ˋo�3\u0013CK\u000b\u0013\u0017(��J�\t�����zM�T���rۣM�\u001b\u001762ػ<\u0016��R�G�̫����\u000e��,ߪ{�Ѭ�\u0006:M�p��)��Z��BD�-�w#��G/�)\u000f\u001a5\b��!�Ɖ�\u000e�|2�!\u0004$:!w<�I�\u0004�\u001a��$�0����q\b�2�.���$�07S�S\b��ڵ��=�����sR<�������I�ui5�fzm�\u001e\u0002��ZLC�'+�;!xLg���\u0018�tH\\�0��uO��$f�i��+�����b���@��!����L��Ѡ�\u0012_\u000e��B�oI��\u0013<\u0002HY��^$CO\u0011{s��_��\u0019ѝ�\u001a5�\u0014D�_ӄ͔�!�W%��֗&�ZQ��Ě^%D����p���ʛ\u0011��*����AR\u0015���0Q:\t��^)�9�t�f%��\r�Z�\u0004\u001c�/\u0001�� �S�hA�^\u0001q>\u0012��\u0011�7x�]@�m�Q��gZ�\u001b�[��\u001d���zޮ\r�\u00062�z.\f��mW~Fi�\u001f�\u0018Hs\tQ(\u0015����+ik���q?F�v�$��A\u0002�0#�>lSk\u000bai�V��vh�\u0000�ZJ�~��ɣ@�!���L�r���C�燚�|o\u001f��\r��\f.\r�w��\nFf��WҌP�}��{){�I�8b|\u0017�+*�է\u000f\u0017��\tN�o�ͮ7�/\u0013�A�F��5\u00156�^��\u0007\u0019�\u0018�f�龼�;\u001b�\u001c�\u0001�*\\\u0001\u0011�i~\u000b[}�\n��d�xm㜺�'0Zw�\u0004�\u0003��\n�:S�ѭWM�4�'\u0001�����\u001a�k[x�\u001c��z%\b�4���9�HT:C\u001f�hy�H+��O\"�IK:ru\f^:h\u0011\u0002<��ͦ�������\u001fDf���@�\"\u0010��L�]\u001b���:�\u000f��>g�\u000f�hޅ.�\u0012ߖ\u001dBA|J(,�+�\u001ah\r�E�\u000b�\u001a�^=��|���{.ٍ\"\f����\f��������~�ڊ^���+�1�8\u001cؠ���\"��KV\u000e�\u001e�\u001e��l�':a@�?�\u0007�����\f-1�\u0016\u0002*K�x�U|�c`�Lb�E��]���\u0011�NJ\nR�\u001d\u0018p{���9u\u0016�ҧV��a�;l�2�`M\"�\u001d\\y�Ws�fk�\u001baQ\u0014�^=��%�ZܸD4\u001b��nM\\В\u000e������A)�\"$��L�\r\nf� �2�󈒒�^Cy)��)�\u0017e��\u0005-�PH\u0013��+�<����\u0006j���r\u0019�f�9i\"��D\u0004�HWj\u0016�~1��TT-�\u0005i\u0017\u0013�O���D��O2�}�\u0004�}�qc�&��'��\u0017�Sr�7�n\u001b1N~\u0010Q�yւ�\u000e>&d����t2�e�\u0000�PJ�e|�qP#��:\u0017vX\u0011����\rgW>�d\u001d�OAeW9{e#\\3�Gg\u0014�\u0015O�w��I�\u0019Ҿ�����/�:\u0011��\u0003\f\u001e��:�\u0000�/�t�m��骉.J�D*\u0018N���N�;E��%c�o\u0005�z�\\��#G��\u0006�x�d��C*d\u000f�!ZᶊQ)����v�և\u0010�m�AՁ\"8���p�o��h\fͷ�\u001c\\?�0��]�AQjԬ��\u000f\"��4ח-A@�E\u0000�f�����L�ي�c���A��\u0000\u001bp\n??%\u0000�Mk_֣Pm�?;8��\u0001\u000f>�?I.�\u001e�\u0012-�>�_����x�<+�V[Y�5B���'�\"x̖��H,'r�t���ݠ\u0018��\tvwi���9n�\"��A\u001e�wP,oG��]�#(\u001e���z�R&�Q����\u001a�d{�Ǜ��\u0017��\u0013�%�\u000b��ʲ�U��\u0016��������\u00062��g�8ǿ��+>jjzn^6k\n�\u0017�)�\u0010'�\u0017S��\u0004\u001bǿh1����H�\u0018S�\b�\u001ez\u0016$��!SR�\t�G\u001c(K��P^�L:\"�\b%�ֵk�E�-�H�i;�x\u0011��>�C\u0006��xQc;\u0010�{��A\u0007o�S�\u0018�\u0015\u0003\t#�\u0003�1���]�W��[\u00151\u0011�\r B�~V�K0���^�`�\u000e�\u000b*����C7�2����MZ�\\~�|S\u0012\u0007�?�U�ë��,�N�BG\u0012�3�H�����򤌋���f\u0017��l�\u0011��#v�w��/\u001b�@�Y\"l��T�\u0000['�5�A1�\"L��.���Wu���3gW�j}I��� �\u0016��\u0007%1'�$��^\u0014�\u0000\u0005�mq\u0012\u0005�s𸸕\u0003� \u001f��>U\u0011�0Aǎ:A~�\u0015��!���:��k\u000b�\u0007�^l��B\u001c�V�J�v-�%�y�\u0013I�Us\u0010\u000e_�L8ҁ���D�\bGY�aLcw�΂�ב\u0013�Zk��H#�\u000f'_$���.�+h��vO!��\u0019��?��\u000f\u0010,mt�ezt�C�Ea��\t�3��\b��g�G�*��ZC���8h�@( �\")��c�%\u0003������d�(�\u0000�\u0017\u0019�T��p�-\u0016\\�5ܬ}X�\u001a:gD�f\u0014�@\u001b�\u001d=�tr�\n\u000b\u0003I�5J�\fxb*��\\�f�E�B@��\u0000�w/_\u001b�2+�,�A&�\"`��۸���+��#v\"G212|�0#��\u0003|zqt\u0004��A��#w7��yb\u0003�.�s�G\u0014��b9\b��yt��/����\"�\u0019�\ns��_\u001c�ڰ%\u001c��5\u0017{\f\u0016��!i��\n�����#�)����[��F���Tv\u0012�G�X)YQo9��\u0011�ۇ�\f�'\b�W�6f�>Y�!���\r��G\u0006UǼ�\\�\u000e�\u00148�A\"�\"����c��'���/��'��\u0000�`�����+��e���]�\"v,X¡VÅ�0?����F/w�fե2X>�fBSR?�u\u0015Q#�z�x���`\tk\u0007����\u001b��k\u001d\u000f�v�R\u0005\u0000h�\u0016Mcu�&��H��5cEȷ^������才P�\u0004� �\u0002\u001c��ʐ�!���]c����Љd�\u000e'�U7K�Qp�x\u00125���:>f'1ƻ��>�h��\u0001\u0011�\u0014�T\u001d\u0003�#\u0014b�H�\rp��#*�\u0012\u0003�Њ��tq�i�\u001aWL.4�J\u0011�\u0016\u0019��I���RΫ*h�m�L-{\u0007̸e�d�r̊��z�%��m�Ǧ��6\u000eݑ�\u0016�F�W�gP\u0005����A\u0015�\"����\u001e�-Fݥ�c��^)��|Ofe�h�&�t�=��ٌ��\u0001��5�(���nKaɅkB�\u001d\u0010�jE\u0006�9�\u000e\"�>w��L��0\u0015R�\u001dF���;�㽚u\u000bF$��\"_u\u001c��\u0007��^RS\u001b��\u000f[(�V5�9�%�����;1\u0012[z�\u0017�f���,�>͢�\u001c$v��oN'��p��\u0018��\t����p\u0006��\u0010X��\u0002�\f\u0018\u0000�.�dizM���\u001e`\\�\u0001���n\u0000�C_��%�)eU6\u001d����\u0003ڒ)�n{I|ya\u000e�c��0����]�L̻�'�����.�1�G{Q�\u0013��[B�[�$�@��\"����\u001e�\u0000�\u0001��տH\u001aj�^�\u0004�~�#Pj�B�O�y:y��\u0019�G];�ٙC�{��Գ�2�c\n��!\u000b9%\u0005�k�ɨF�9.���b<9�!LR���=+b��).t���\u0012؁\t-����v���$G!�/�xw����d�T��g1�T\u0005$�\"��cf8\u0018\\���ɹ��n�B��(a��#\n�?�C3�+�O�.*�\u000ew\u0000��\u0004�>b\u0012������\u0007L#�`٪Q\u0007�U��QP���O��\u001bz�p#�Y��am�������N���\u0016��Z�p\n�'�A\u000f�\"Ā��Q���Ef@\u0000\fO\u0015$�U�{��]�K\u001c�Frӗ\u000b2�\"c�#���%$���Sn]��\u001dÐx3>i=�V\u0011R�T\u0006�c�\u000bv\u0004��F\u0014�Z\t!QA\fa�ZJc�;�r��\u0017\nt�M\u001e.ʈ%래AӾéy\u000b�i�vH���5Ѻb\u0006&�\u0000����Y�Q%�]��Y��܈f\u001c\b��\u0015��F��=�N�\u001a>���\u0003��\u0015�{\b�p�OW1�\u0012�fs#=ˆ�B��\u0001��\u0010����Kٔ\u001b�R��I�\u0010����\\��U>�nl��(�o�8�d�����^��r�2n���!\u0002�\u0019�6�\r/K-EB�h��,�A\u000b�\"؀��\u001f[Z&ݤ�Ӽf�Y\u0005ך���\u000ef�\u0002�~�������>\u0015^'�p�ٷ���ˆ��Ɵn\rpU�o9�5��C��\u0014p'�\u000fMV0�\u000eҋs�5�H�\u001e*\u0017�S\u00156���C\\c�\"��h�nO��\u0010�.��nD\u0006�-a�����c\u001a�\u0002�`vo��Inc\u0016��\u001ck��;F�\u001d��M\n\rX��\u0013\u00020J�v4�����\u0019rC'N�\u0010�2S&\u001f�3���\u00179gV\u001d\r�X\u0005��Ԫ�����\u0002�]4�\u001a�*��!�K������#\r���w�)S��Yc&�o\u0002����HS\u0003�-��Z���6�,�A\u0001�\"���s�L\nf���,R� x�*k\u0017�}�'�1\u0004\tZ�\u0002��\u0003s:*\u0000Ǜ+�<��K!ڙ��\u000f_\u001c�A��$���M�w��㹖�b�W\u00067�6���[Mw\u001dD��u�bT%p��S��͙3�B�u&)�j�T�\n)�;\u0018�{\u001c\u0004�T��P^\u001a\u0011#N���+z.z)�P�Y�@d?�7\u001a��^U���=��mg�I_[���\u0001�f�� @ǎ�\u0017�C\u0012p\nV��s��},���\u0019��w���8�f��x�\t��坤�A\u0014U4�b\u0003�K����\u0002��4x\u000b����\u00058f�\u0000 \u0001'�A&�#\u0000��L�NM>:�\r�ֻ,c�ʙ�=Jc��=\u0004߶6Ph`�4~qN\u00162|�\u001b��ri]��\u0000o�\u0019��^��v����<�)\\�!Ux:L��]�|}‡U�A#�u��S���1�S�/^\u0005�� v��?\u001dέ�\u0013u{٧���!�x�\\\u0003+B�>t\u001c�/\u0000n�_a\u0012�\u0012qR��\u001e�@�B!�_�:�k��ԈP_��\u0011P���Z�{�~\u0013W�jVU��G�\u001a\f�$�,��.�&��7��\b�Gd�\t�Bx\u000f\u0010���t\u001c��\u0002\u001f[�U,\u000fK7�@\u000fG�z>n���}��A&�#\u0014��L��g\u000e��\u001a�\u0013~�\u001f��Jy�U��\u0003������b+�&����g\u001d6Q,�d\u001b�E��\u0019���_\n��\u0011���e�<р\r}�9�\u000b�(�?锈̉v5\u0006@ş\u001d\u0003\u0018�Y�\u0013t����\u001b\\�~jp\u000f$����\u0011�\u0018\u0000��9��L*���o����e\"8��\u000b�\"�\b\u000b�Z�.�D$Gv�c�ԗ�U��R\u000e(\u000fJ4\u000f�)\u000fݬ+�o\u0007o�JD\u001ai��h���xUT����M\"�\r\u00130�\f�@H\\���z}8�{��+/qIq��{f:9�\u001a\u001f\u0006A�\u001d\u0004�6㐄8\u001e�\\͡�6;��G��\f��\u0018\u001c�\"\"�N��k9?,��\u001bm���ّ�$��E!ɣA\u0013�#(��L�5�'\u001c�IM�����on��Ж�;=@\u000e�瀬3\u0015:\u0004�K>Xc�\u0001\"�,\\�k�\u0002��ߎ���=�mX`���pQ�\u0014�9��o�_�J�l��m\u00020�}]���:��Bl�\u0010ɯ��\u001b��6\b�hA`�7���?��2{�ؿ�\u0000v�i\u001bl�E}e>\f2�U\u0001�\u0010\u000ba{�\u0014�Ė\u0013n��e7�Yٸ�\u0017��\u000bH\\K�=գ�\u001d\u001d�+\"\\t�\"�Ek��q ��gy�z`�ߨ��8�-��yX���?����7�N�4>NЉ鷠ק\u001b�\u0018U\t��^�Az��}��/�%sY\u001b�N��ٵ�\u001b�A\u0014�#<��MO�\u0015^9��ȱ\u0017+\u0012�b\u0013�5��\b�0�\u0002�\u001a�\u0005�\u000f\u000fGŠ�\u0016*�G�����#e&����1�?�\u0018^v{�MIP�i^�p-\u0017��a{����J�\u0014��\u0010�K�8&?-�I��}��\u0016���\u000b�\f\u0007cb•DWk�$���e��7�Ӝ���3�=����[��B$�\u0005�%���-��k�#��m�0iV����}v@\u0018#���taā��Vf<����\u001b\u0019�Ȗ�6\u001e\\��\u0018�\r]=`\u0014��3�x\u000b��\u001f���\u0002��\u000ba4Z^��O�J\u001aAr�z&\u0017O0R��0�h�\u001c���-7��I\u0006=I�n��Gz�\u0000�A0�#P��L�@��{���;�P�!q.����n�\u0017\\so٭��߸V�q��R��5�\nH�~���\u0012�Ň�B�\u0005F��Mq',�{�\u001a\u0017Ǿ\u0011K�\u0006!����ݘ�Εe=�+u�\u001fZL̝��S���e�e� w:�%�*\u000f0\u0011�r;��Y\n�\u001dկ��%�)�hQ5�\u0003*\u000b\u001el��D8\u001e��I &\u0002����hL��8_`|�\u001d�\u0015�\u0006��\u0000f�\u001f|ew����k�w�u��I�\f*�U�ߨ�\b�BbV�J���������Ӑ��=��[����E\u0002\u0000X6��\u0013�vm�&+�xc�S�ĝ`\u0000�\u0003��\u0011),��P_S7��OM��ɕ\u0018\u0004�߂׬�Tc���Z'I�Q~U}{I�A\u001d�#d��L�-\u0012��Dt\u0006��}���cn����G�\u001a�\r����\u000bK\t����B���d��x>2=��Pm��{3��S\u000bhV�\t�o5z�\u000e/Z�|�\u0019�]��\u001d)�ˀbC3t�y��ϔ��q�.�3���[�\u0018�oE��x\u0007��/�a�`LEH�qȖ���D�m�d�OS\u0004ܹf�k\u001a���=�g�D鶕\u0012\u0017�-�n�J�\fo��s\u0019��Z�\b��ӂ�H�\u0007o����|*�o!d=��{p&E\u001d�\u0017��|���溭��\u0014�\u0014,�Lx���'?���\u0010f5NS��PLNG�^��n9�J��m�\u0013�\u0018�fMU\u0005\u0012\u0007(>%%M�I\r݀�AG�#x���k��/)��A��c�3N�\r�����AO}�f��\u0012w)-����ߍG,�;\u0019ZH���Y�:ym�\u001b\"��\u0014\u001f!�\u000b�\u0019��\b$���\u0019����!QCJW �C�!\f�|=6\u0002?q��V\tmŷ=��a!v��cg|g�'\u0003W����h�\u0019�d�$�Q�@�\u001d}\u0000(G@:\u000b��\u0018��e�[���\u0007�r�1����(\u0000���~�Ao����22�����CX��i*��]\u000f���B\u0006�a�#@݊d�_�\b\u0000C�հ�f*eZn��n5+\u001dd�N����h�\u0006�\\�O0�\u0005�@�%�4�T��qs��Xl�x�|Vm`3����\u0004�-�\u000f�\u0013hSJl\u0019:`�@^�\f�_2��\u0003d�Oڒ�?!�\u0010\u001e��G���AI�#����a�E�8\u0012]`q\u0005�>ӆ\u0018\u0003u��/{�I���v�s��/\u0015�?q�1����&��Kp�.��\u0018��\u0005�*�\u0019\u0017D���~/eø���\n;\u0003}\u0005[l��^��\u0002\u0000���RI/�:��\u000f,�\u0014�m�\u000b��:�������Q\f����|������#���^�Ygqr1�M�\u001e\u0015�^.7��\u0010\u0018�L\f�o�� �\"ڲ3\u0000�-�-�1�9�)���\u0006���ȗ�R\r�)5� ��Rh�\u001c�0���~\u0011\u0005�1��[ÍV\u0013\r;m�\u0000\u00167nZez��\u001b~��:b�C\u001cۓ�1甛o�Wm��\u0014�`�\u0012FM��gQ�_s�\u0017�\u0002600��b��]�t*ی\u0015�Q63䖁�\u0007�2�ؽ�L�{\u0012)\"����\u001f�(�K-I��A��#����b\u000f��=cѠ�b��K�\u0013��\u001b\f4�yIi�e#�7K�t~\u0005|\u0007v1���@9�\r�cqk�;}M5��gџ\u0004v�$QYh`JG:��\u001a?�\u0016}+�\u001b�R��C��\u0003�4��P.��\u0019��\u0004l�h��:�7��?\u0002�\u0019��Sr�\u001d�\u0004�)\u0010\f -Z9\u000fWG\ffК�u��On�9��%�\ro�s�Q�F%���X�������4T���\u0017\u0015V��Q<�mE�Em�ȗY杺F��Q`F�hR|;�\u001d����\u0014�c\t��p_\u0018n�V�\tQ�\u0010�2�\u0014�R����K����u��l\u0002�\u0011(\u0006\u001b���Ja\u0000\u001a�����ys̏�\u001a�\u0000'���b�x�\u0002d,\u0018`�4-��yz걞KT{�\u001f���\u0000\u000e=�n�#(�S\u0018��\u0005��F\u0007�S��A�t�^zu����G!\u0013���\b���y��Ȣ��̶�\t)��a��.�`7&ގU�\u000b\u0013b���,Yj\t⯔5������x+j�\u0018\u0000tX�5\u0010-����\u0010s��d�{x���;\u0002p�i%;�RQ�b���Nr��3���\u000f��𠿰y��zK%O�._�\u0005\\�*�c����\u001cSY�#<��'2\b���x�\u0005)S�E�\f��?�\u000eOU�v\u0014�lPy�Y�AHhh�&\u001d\u001f&\u0010���-C�\\��S�@;Ҝb��9ʁ\u0000\u0003�F��-����6�?iW\u0003�Z�Z��6\r�{�a�KWl����)\u001fʗn7�Ƀ�hm��A\u001e�#����a���\u0010�6轊7\u0018�܍���!�e>\u000ff\u001b%\f\u001b�\u0017�\u001ctPy��q�Ab�bE���{\u000b&X�>6��-��nP��k���\u0004�I$��%�\u001c��6��O��������sƮ_\u000e]�%TR\u0001���\u0014��{�@\u0012*�~ϛ��x\u001f��\u000eS-�7�\u001aK5E\u0012�<�\u0018\t�\u0017\u0000\u001cR��?[��~a\u001e�V5�(\u000b.��u�\u0012>�Y�\u0007}�x2�E��\u0005�I�Tw��i�=C��\u000b\n�#S���{��,H�\u001d2��XA%R�ͫ �p\u0006�ˑ�`��r���\u0003qK�|\\��@���%\u0011�q���~�2��vi\u001dS\u0003�zp\u0007�H���A\u0013�$\u0004���b|��ŗ\u0010%G�-x'����}a_'\u0018\f\u0000O\u0015�7̆��¯*S*���t��c\u0017ʚ�\u0004��)�\u0012��(��T\u001e�c�nd�'�I�;G��L.x�C�\u001d\\zم��s���\u000f�)��|k��5����\u0019\u001e�6\u00057}1Am!P���f+�O9\u0012�/ខ\u001d\u0017\u0015�D'\"����$g8�U��t��؉��t�CmS\u0000\u000eh�ڔ5��m��d�ܐ��~�Ce��Gr9\rBcM^\u0004>�v5s%��\u001cje�}�\f��9�n`y��$����'�9�ud��ܪe\u0018C\u001cj��$�\u001a\r�\u001d�`�h�-\f��Jߦ���P^�\u0001��AA�$\u0018���b=�\u0000,�%zY�W�@P\f�d��Zα��In��E�k�\\~+\t !\u000en-\u0003���\"�u\u001fQA\u0015�<��S�s\t�S�v�1\u0002���f�]�i�\u0003�˨C��D\u001c� p�>؎yK>V�\u0000Uߡ�\u0018�D��\b�r��p�\b���\u001e}���ڽ�3���y\u0012Bl���}��\u0018K�\u0019��.�7!�L\u0013zMa�|{���HG\u0004.�Shz��UJƹ��XLZ���`�A�\u001b[�x~jI�džn��&��\u0011��\\�\u0005V�\f\u0010l$\u0015��Hu*��L���x��\u0007u�����g�Ӄ��ĸ�=��\"��,K�4m�\u0002b�>�e+\u0007`�,��rZ\f����\u0016'ДH�A\u0010�v~��\u000e�3��\u0005+e�ҞFP\u0015�զ�AZ�$,�����i���Ĉ�nlz�ڴ\u0014�g�g+Xo�)䳡l�EN\u0016�q3Ez�\u0000]�\\1D��@X�ףÿ`?����]Og�꠯�%B\u0003���B�QDOU����^b�>�\u0011�@����b&\u0003�d��!�\u0015��y\u0000J;�챕\u0015��ݬ�\u0001a:2\u0016�����Tf9\u0005��uJ�Y��MjB�M��8]J�/> (�s*�\u0004���\u0007���c��\u0014\u001ds�\u0007rȉU�\u0015�\u0002��ٽ<\u001c��\r<�:v4~S7�h{�3�x'�Xza�\u0003X�(7 �\u0013���\n����H\u0017��#���o�RI���yms�����ݕ�B���)'8/�_�\u0011���1��E�9Yi!e\n�\u0002x��6˗-��#\u0003\u0001��/RU����o{J�\n��,(�\r:�c�\u001b\u0017Y��d�\u0006\u0013���AL�$@���bE坌��\u0003�(�f��\u0019^�}…p±��#!Yl^٥�ۺ<\u001b4�l��O%5wK��y88T�\r�b�:h\u0001_\u0003]j�\n�A-\u001e\u0006ijU\f��T*���Tz\f��\u0005\b\u0006��F��?Ǣ�*�0B$W��~�+Jm~\u000f�0)B��kW�*\r�{kW��f�\u0017*Ҥ\u0015�\u000f,c���Ѭ&\u001ep���j�y]���\u0000\u0010�7�Zeٴ���A̡�o+��\r\u0010��E3��+?�\u001b�X.��9�%��5]��)]��$\u0000�o�Ib���\u0000\u0014����(��D&\u0017C�\t��g�\u001f�Y95\u0016�@X�\u0010\u0005��ɼ^\u001dD�l�M'�ìj�D\u001c\u0010֙\u000b\u0017��\f_�nR�����\\Ψ2��\u001c\u0014ҵ9f�\u001bC�f���%��AI�$T���r}TLM���_��\u0015�\u0005��3�Q\r\u0019�D�y`c�l��\u00123,�\u0004N���j��O\u0019qW\u000f-����\u00192����1;�\u001d<>� �t�J�T��w���+\"�;��=\"-˛�&\n�cE1&���q�\u0011q̥��P��c�\u0003�?37�)�y��z�\f|��p$�N�\u0003�p�x���f�N\u0002b^�kP�\u00175\b\u001f\u0018��?ʞ��K*�:6��S'Z��=OW�\u0015�@�-�q\u001d\u0011�ArYk7[���W����}���>�S\u001a\u001d\u001e���0\\�r�!�Wz o\u001c\u001c~Y������1\u000eˣ�%���\u0001i��\u0014�n�i��FԞV�z�ʍ$�,$\n�S�'?\u0002�\r(\u001c\u0004Հ�'=P�ؼ\b*[@�_¹:b����\u0014%\u001d��A@�$h���\u001f��{6�(\u001a��}��\u0012��x�zM\u000eX �֌s�����\r�\u0015U�\u0012\u000f1��L�‹'/\u0014�\u0018���;͊�\bĮ�,\u0018�\u0014\u001a��>�蛒\u0018$@\u0010�Ʈ�'V\u001e�)�5\u001d�hS}O�\u0001V\u0015�S\u0014��5N�{��g�\t\u001b�\u0018K3�[�\u0016�\u0011x���GJ��=�\u001ba�xJ*���^�Lx�����g�\\ph�:���T�\u001f\u001d�å&w�\u001f�{.胿w�`��EI\u0011�{�����\u000e����>Ĥc���K��!�*}\u0004r(G�7���艾]�e�\u0016�H֡�@\u00059q��5��s\u001cG�7B�\u0001�< ��\u0001L\u001c�:���\u0017���K#\u0002\\\u0016�Ԙ\u0003R�y�Z�\u0014{i\u0005�ʓ�?��4d�&��B\u001f9d�ݧ�A<�$|���bI�z�7�Y���ɋ��!�{��{����q�d}³�\\��(�\u0012I�\u0000=rJ\f}䢲�\u000eDjϙ�aރ��\f�O\u0017]'��3�Nz�^�\u000f,\u0017ٶ�g\u0004Rcv�������Â�\u0002Ł�I��n#J/ԭ~T����~�0fW\u0005A�\u0001�uL�?�G�\\\u001ff\u0016�\fH;��I\f/�gY\u0002M�;`���Q�(�Cs�\u001cGL��k\u0004[�����rQ\u0016M%W\u0007����Ÿ�\"<\u0011b�ϓ�~3X\u000fƟ��V��\"�z�nb!�\u0000�TgI΀*�\u0003�JR�<�xR͚�\u0002��xU\u0019w똠Ӂ��������ey��%X7%��A.�$����\u001f\u0000ŭ\u0007���*�k�:�KB�ٟ��\u0004���T�u=�\u0000�\nb�1�\u0016�;���#���S0��\"�\u0006Ckk&�\u0003\u0019\u001c\u0011�OVۄ#���v��\n��\u0017����`/\u000fnnڊC��M��\u0017\u0011��\fғ`�!3�\b�R�LC\u0003V�F��YN�\u001f�������\u001e�&���\t��Իxn���*�1-�z���K���,\u0007\u0015>D�u.���\u0011�\u0007;��Cy��v�y&�\u001a��0{D%�-k�\u0018��\u0017�;\u001e��kC�0�=dj+*>ԭV\u0016\u0018^��7�\u000f��uBv�\u0014��1>\u001b�Ź��\"�:\u000e:\u001b{s瘃\u0014S\u0006QHn��\u001eG\"\u0018��\u0007�\u0010\u0011g���H\u0000\u0012i4�@�\baO�\u0002٭�A\u0016�$���ą���d�-�5�Ǩ���Z�\"�R\"[�5����t�P\u0005�� \u00129���sc�\u001bs���ڧU�y�!��V3���O�)�E�Y@,o���\u001f�i�����z��N��'o{��\u000f/2m�\u0017\u000eb��\u0003�Yb�w$5:&†Mw�1e�n\fT�\u0014w2c۸v����(H��k&���?�\u000erW�A�\u0018��\u001aḕ����4���g<��\u0017�g\u0014���K�\u001e��^046[�w���{�*��-�����}T+��j��W\u001e���|\u0015u�H\u0001\u00001z3�\t�.��\u000e��/Ü�$\u0003+3�6���ci�RD�;�#�4\u001d��A!�$����\u001f�6�Ы+����$2\\r��{�r�\u0004��z�]�Q�t=�8)�7G�I�\u001b H�-RqkD\u0004��Fg\u0003�\u001f\t�U&y\u0014?���TO\u0018��#k�\"t\u000bVn�\"��6s�;��>Ś�\u000f��u\u000b�A4x��+�\u0016�q��m�炀\u0016\u000f�>�y\u0018�Y�m��^@���\u0010|i�)�Q�?(%\u0007�EmD�ڒ(�\u0018�D�\u0002?UX–@�Z�[�^qf�RO��ə/5����\u001c\"�@�����\u0004@���J�d\t ������A-�$̀��\"N\u0002vT���PKeZG6�$�\u0013��f��=\u0004��\u0000w�N�n���_��)n��:\\�8�\u00161�]%\f��.g�z��x\f\u000b�\n��q^\u0006�MƵۏ�™s ��Z�\u0018ٌ���\u0013\u000e�5��\u0001�\u0006�G\u0019\u0015�\u0000]gE�B\u0017�\u001e;�܄)�&R���@���h_f�t�B1�T\u0000��öX\u0012\u0016ٺJ-?��xP�L@�Ɖ����\b=�_�jK\u0012\u0006/��]IK����A;�$����K�Wj �OhXz��\u0011��?�\u0003\r��]�-o\u0002\b#�\u000e-�)�F�\u0011�F�@�G�T�K�\u0004���W~\u001e#�<�\u0001�:K��!š�\u001fEF\f�L\u000b�@�M\"`Ě���\u0012�A8�0\u00030��D\u0002�i���y�\u0001\u0017�Q⺴�K\u0015=�%��s@Hۻ�6\u0007��\u00171�\u0002�\u000eT�a�&/4\u0001�\u001ck\u000b#�u���64�Bx�|�J\u0010\u00047\u001b�r*�6��\u001bG�b\u000fg�i\u0018�\u0000?�{�z\u0010ǻ=1�P�\u0007[}i~���\u000f�Y�6ss��dh��6w��!4\u00144\u0003S��Q�\u001ao�\re�~�8-���\u0019�w'r7�A�\u001cň����xm�㶯\u0012k�r��%�i\"����\t���&FG(�%\u0005��J�vE*���AA�%\b����Z�h��D�k�T����xLv\u0015C�\u001b�3퇌:P�JPG�4ֳ����z\u0003\u0001�\"�!�^K��GOC�\u000flv��T֬as��J5��\u001e��\u0005,yqD�T�Wx6���2x�)φaD�8]��v��Xg���/�������=UR�[�=1y\u001aB�h��yw�\bv��@qiD\u000b���N\u001b\u0015��|�kc�%�Esň~�7\u0013:��eDw���og\u0001]�\r���\u000e���{\u001f�\u0015��W��S6C\u001cR��>\\:��'į�\u0001蠎\u001edI��{:u�7X��C\u0010�٣����\u001a(�V\u0018\u0002xޯ��\u0014't:O'�e+7�/pn��en�*�����\u0001=2��́f��E�w�F���bC��b\u0003tJ��&�AO�%\u001c�����E��\u0004�:��4sL'Ĵ�?\n�#\u00169g�/7��:Onȼ�/2E,\u0015\u001f������u��\u0015�{�/\u0010�x���\u001d $��j\u0015nsc��0v��'����~��ダ܀\u0000�����t�#��K�z�Ș�3$%�7;�\u001d�j�\r:ap\u0004�꣠�ǏB�0�Â�!ڻ������\\���懻鷞}�K\u0006)*F�S\u0010c���z��FW\u0007\u0019xǼ\tlj\u0016�hn\u0013�\u0013jL�0)��:��\u001139Q��z\u0019��v�\u001a9N�s\u0003�\u0015/�+=\u001f\u0007~X\u0010��\u001b��#�m�6�`w\u0013 &�%�AA�%0����K���?\u0001p\u001a�Q5^\u0017\bC�7U\r�\u000b�tShP�4!�����\u000b\u0015�\u0002sͤ\u001eܜ\u0012J�=-�\\���H\u0018Ә*X�B\u0014��`\u0016Ϸ:\u0013��6\n�A\u001b��\u000f�I`�\u0003,w&��\u001f��pd_6(��u�P\"\u001b\u001aA�yDL=`�08��\u000f\\�)\b�/�f�� \bi\n�1�3��Zn�v\n//R\tyu���*�-O���:[�\u0014L��_$\u0007��r��\u000e�}�\u00027\u0003���|=b�\n�~T\"7���!��\u0017��6�[*��dű\u0001��Z�Vfs\u000f����\u001f�`@�+q\u0000�J�T�3��\u0003��\u0007K\u0012�\u0002�~C�m!��mm0\u0006PD�,�\t�����\u0019|\u000e�2�?z\u0016�\u0011u9�J\u0012��\u0000\u0004R�t\u000e�x\u0010��j�4�#�A$�%D���\u001f[u)AT?7�΍�\u000f���c�i�q��<��v\"\u001b�ߠ@qP7��c�Jq9�,��)Z�],\u001d\t=\u0002ź�_�>A�M��H���S���/֎�w�O�(���Ӿ�5�?5�<[�Cw͆�I���O��b�B�Gc\u0013��X����vP�Z\u001e\u0014P\\T�j{��xKZ\\�ƭɠ�U���0�S��+�v<\u0007�\u000f���R��[|�:��k\\+�M��K�1DlH��ο����)�G\u0013o\\����IDxb\u001a\u000b\r���S�p�\f8�q�[E�\u0019(q��Q�~\u0012,)jHN�x�j_��6ňh�\u0003��8;��$:i�\f\u0005��c \b�h7p�\u0018��^�ą5Əb\u0004U��?P=f�)�U\u001b��/��\u0006\u001f0&g�\u0015\u000e�\u0005ޘsNJ\u0000�o��]\u000bsQZ�.\\u8\u0002}f����)�\u001b#�%\u000b�\u0001���v)m\"��\u001b���A\u001f�%l���!�?�ڗ�q\u000e��j_R.���T����\u0013�_�\u0007����R�\n6��%r�4���Ę���\u0001ӥ����\u0004_ݯz걦\u0016F�G<��o-�\u0011#���\t�pi�B�H�\t��&'=���5�D|�;m��1\tw���;�1nA�O�Gÿ�1���\u001c\nѳ�'��\u001d�\u001eѸ����\u001a•\rF�2Y�e�z�\u0003��$��L�\u00062#�\u001c�^�@I�l��l\u000b.\u0000���\u00010|�����A?�%����!f\u0013�\u0010Na��l�-1���)\u0018)�h\u0014�q��A��?.��]����^\u001c�jޥ\"qn>�M\u001e��S2\\e�J�V�ᄂ!��\u0001���eU�<&�$�,#%�\u001fP�\u0019�{G_�ޫ`le��L\u00198`�\u0002�a�$�\u0015Ũ&�o�0���!q�B�\u0018 �63{�)�s\\�����r�3\u001c]0)\tU���!\t\u001e�⟔m���a\f�\u00121�iNc$2msk\u001cߣ\f�\r�7G<�&�s\u0014\u001b��=��\u0003�\u0016/r�m�\u0010�*���\u0011`\u000eۚC�\u000fn?̱$\u0010\r����킖-d�\u001d���\t�^\u0002R�\u000f�F\u0002��\u000b�3��D8̤«�\u0006���(�ꄜ\u0017'!\u0007W�,6fu(`�\u0012x�ҏo���LG\u0002q����A9�%����\u001f\u0004DCV�޹7��?���N\u0000\\5X���[��D�%�T}W���� \r�)\u0013�]\"}�0]/\u0010�d{ῦe\u0006\u001cqT��)ʾAjeN�S$2�ht�E\u001fk�X��\u0002U��qt^d�H���8���G\rJ��\u001e��Yu��i�\u001b*��A2x[u�\u0005s��\"'\u000b*gQlx\u0014�IFtL�J�Ipj\tԨ5�C\u0003q5r%Omu\u0018nM�pa\u0014�B\u0002Pj�\u0000\u0001c_.�s\u000b���eJ�7\u0006b�\u000b����l��\u000eDڠ�BJ��;=i[{Z%��5Gn*tu:�ĉ�\\�\u0006��-�\t\u0019:�$��������c�GO�\u000e\u0019x7\u001b.���S\u001c0�UI`۠�\u0013f\r\u001a�'��-�=cJV�W����\u0000\"���A\u001f�%����!�\u0007+#����B�/\u0003\u001c{t�N'^���xn;)1h�\u001a�q`\u001c\u001dp\u0017�q'Wm�\u000fI���r�F��<�,\u0001Ӈ���\n\b�ƿŐ��xY�\u001eO�1�!)��\u0011�`�C\u001d-���ľ\u0019w��N�\u0006q\f>��w�\t�GMfm�\u0001b,\u0007\u0017r>�&y*`��Ku\\����ˇD�f�Ha*�׿\u0007�F�\u001f`�o{��]�\u0014R@���\\2�.,�}�u�{i\u0007]�<\u00183\t\u000eAL*\u001a�\"\u0006q(��ݬ/z���\b^�\u0002r��\b5\u0006_���N\u001e6��P�'j��\u0016;�\u0007���\u001dU�H��\n�����\u001em�\u0007�n\u0014�[�7'Ohҭ�\u00169���FE���AP�%����\u001fO\u0007����b�\b��\t��p��~\u0010Ҟ$ə�N��4�����\t�\u0016��\u001dq����@��|��Ja\t�[����@\u0007�\u0001�\n\u00040ⱬk��U�pH5:L�(<���ϊ|�\u0001�\u0001��Y)�S`��v���\u001e|���\u001f�L�buס��\u0004�楾�;��\u00139�\f݊M�L\u0005�l\u0003\fE�:\u000f��|��5�q�\n�\u0002\u0012�J;��_��˅���8(\b����;�3\u001a>\u0003��\u0000��jͬo�ynG���))͵\u0003��0\u0018�\u0018PQ�\u0014q5��\fp\"�|F\u0013����_\u0014K�V׫p��\u001b���\b��\nUiA]�,\"6luU�E7�~�z�\r����V�7\u0007\u000brϲ:y�(���/�^S\u0000\n`إ^��� R\u0004o�l��>���N���\u0000q��A3�%Ѐ��\u001fQJ��њ\u000e�>x��F�\u0019��ҖG ²S����\u001a�|�\u001d���䳠�29\u001c��W_��=I��9%2ؽNt�\b��;Z!���~'�f\u0017\u0010��K��\u0005���V��/Y��F�6��}�a�a>N�\u0007�f.���p��&�.<�T�����qN�*�\u0019스��\u0006UR)$\tl [���r�A��ƽ\u000e�\u0000\u001f��M�\f�t����i������:K��\u0003Y�o7��\u0018�9�����]�i\u000f��4�'�\u0011�oT�\u001b�ɩݑ4����%]Hh\u000fX��2��6%v���i�Zh�e���yz�<�*\u0019\t\"�\u0000�m\u0010��;@@l�m\u0005\u0011��LtՁ�&��_����w�5�ϼn���A!�%���\u001f�c��qU���v3Z8@d\u0004�\u0004��b�\u001b�+���\u0018�!\u0005w!}Lд��?�PڅL�cƘ\u0013v�V\u001a��B\u0000~�>�\\e\u0011%�j�#�\u0004�\u0010�T:��\u000e�\b\u0018���ب���\u000b\u001a��Q\"d�o/(b�\n\u0018�����G^�S�c�\u0014r�oq��A\u0012��my\b��\u0004Ǻ2'��$S-ja\t��\u0005�����I3��\u0007\u0005P��,1Y\r����n/�X.(+�mL\u0002pDQt�N�顭�:�5�C���\u0005��\u0011*A\\ޡ�±�FD�6V��d\u0019�\u001a�\u001b��'��bRu�����:\u0014Y���\u0018�u�\u0001\f��W�\u0016��)�\u001a?_3oiei'e���l\u001d��A�A4�%����\u001f�z}�\u0012��\r8Y�j��/��$�S���p��Z\u0016�Z3Y�R��-\b��\u000e���@��\u001f{��+c>'\u00195�|)E蠂�\u001c��K��\\;P3�`}�d\u0003�u\u0019�S��\u001fP05]�ɲ�Wp��vre�ޓ�#!��3S\nĜ{\n�\u00015�Q���/��\u001f\u0007-\u0016��\u0010�XB��\u0014�s�j;\u0001\t�\nP���R�8�\u0004�\u0019�$�}�\u0002\u0004�Zt��+�\\�)����+��^�Ӽ\u000e\u0014}�J�\u001c\u0019�T\u0019M�Sc\u001f6ݳ\u0007�5�3�k�\u0003�\u0010r�Hǰ���k���\u0006O���e�Gb���c_�\u0006n2��,QP�����\u0016A�#mΠ?���x8�\u001e\t\nC\u001b�e\t����!�\u0005?�d��R\n�R��\u0007�ϼ�F)�\u0012�6ש�?\u001bgi�ղ�9�9S\u001c�l\u001c\u0000��C\u0014��P�؋�,\u0017�\u0014�\u0015Հe��Z�\u0005<\u0014`�N@�e(��s\"zR>]�\u0014\\Y�+@B���v�#㩔?࢐|N\t�M�#Z���{��&zw���1��z�\"��E�yn�+��d9��\u0013\u0014M�гo2\u000b�\u0017;�\u0001�]�����w�Ÿuk៝\u001f�U�b�6�8n�_5Ṳ��\u000f��Y��d��=N��W�x@�!�G\u0018]��ps�\u0015�k'�u��O?۸%,��\u0018Ɍ�;�M�ս��A\u0013�x��f%�&�>�\u0000$IB�A)�& ��1��()�+f.!m���r�\u0004�WMC�Y��O�\f���\u0016��\u0019\\\u0007�vֱ��I���T��z�J@Ha3ˢ\u001c$��w���M\u0010z���[k�����\u0002侑А�$���\n�\bj�[�G\u0017\u001elh��ʮ��2�/\u0007G\r���ˈ�K�����;\"z�>\u0012���a�y����\u0011\u0004�u�G!/\f���ฟth�\u0011�#��+#mWر��0\u0016\u0012TRCk\u00164|ul��45����\u0003����\f/$n��\u000bT�U�\u0001r�$IN��ZH��U^��Q�]����:��\f�ǜ\u0011n/b�`�J-�9�b����\u0012\r\u0005����ޢ�W�6��-rn\u0015\u0013�#NNb@�A+�&4���ߟ4_�A�2�Nj��_N���5�˾�?�v��\u000f�ẅ́��\u0014�\u0000�Ok(,\u0014��Υ\u001eՇF!H�N\u0005�C*�\u000b���k\u0003]�cnR�����\\l�DE\u0019+�Z�d#�\u0014��84\u000079L�\u001d��&\u001b>c�X����г\t�\\ڨ���9�g�{L��,\u0016�񿴬�g�\t�\u0010��\u001d�\ts4v�`b��^@f�a��|\u00122+��`'lX�I\u0007뻖��\r|ԝ&���ִ��eY���*\u0019\u0003�\u001f\u0011�N\u0019�\u001bCoI1�\u0013�,%*��\u0001ц�t���Ay>��\u0013W�c�ee2���lU�*nf�|�wl:�1����\u001c��\u0002P٠+k�\b����S&\u0013 �\u0016ON�Q�l��\u0013��4��-fZ&(󎯭��e�F\u0002�E4\u0003̆x㛂B�5�K�\u0006��M>fl\u001e���]�L���\\�y�p�-�Ź��z\f`�/f�\u0004\u001d\u001a\u000f�3\u0017\u0002�xf��\td�o5\u000e���>���H��*A�w�@�\u0011�u�^a�BCFBΆ7��\u0002b۳\u00189\b�\u0001͉z�<0�'���\u001e�\u0005��&p���!�*�2�%\r�\r\u0018|K�gϠ\u0012+(Ӽ�\f��=+w\u0006�{a�\rm\"\f��!\u0015�\u001c@�@Ljl�9ݦ�\u0014$i*=!d\u0003�\u0011�\u001e9���M��œ�z���\n�\u0012���\u0016a�\u001e�f�e2\u000bd����1��j�rb�@\u000b�^���X��\u0013�cc\r\f#)�?C1�*,^\u001f��\t3L���\nĘ\f�\u001f��e���$��\u0014�Iug�Ri\f��f!�w>w��ʮ\u0012ြ�V����K�t�@\u0001�<7e�\u0001��\u0003��<��\u000e7���W4�\u001f�v��'cS�\u0004.D_�������\u001c\r\u0006�L�Ǚ$h��s\u0015�����\u000b������B�Ԡ���01����|�}�{v\u0005\rY]�Y�\u000e��H\u0012�I\u0000\u001e��*�p�#�A=�&����!�\u0011_�noŔ�d<Ŀ0@�Q�\u0006�\u001a�U�VE\u0015��<!=��5��Β�X�\"�\u0003Y��?��\u0019ٝ@�x�\u001a\u001etޖt��H�w��q���D\r(���x�n\u0001d#9յp��Eus�t��Lup\u0019&\\����'�X6f{�J�����\u001e�1�J�t\u0006/Q\u001e����36�\u0003=���\b�>U�j8Jw��+!ؤw��\u0013�R悑NJ�ec�5��~�2yTJ�>��w���ݝ\u0007T\f�n\u0002P��&�g\u0019\u001c��ߴ*.#��+����⬵�t\u000bX�{����/hi�n#�w\u0017���HP]�B�\u001a�:}��h�:��+�P�4?�j~q�\n��jl��'6i\u0010K&_��`xT��$�AE�&����\\�3BnS�ࣖ�ǟ�6:��\u0002y*쭺��g�ԟ�\u0000�\u0002\u001d��H��\u001b-��u�ݳ�}��s&�D�\u0000\u0018*\u0016\u0003\u000f���bj��J�A�O\u0013\u0004\u0001n6㾖V��d��٣8\u0011��=?ɗU�cX\u0003>0_����H\u0012+Hf�]��ɹ\u0016\t7�6�$N÷�'z�h��\t��\\D�N��NӌF\u0002�[�[��;pyסP\u0002`\u0002�\u0019y���\r\u0012�9�J1XJ�\u0016�w$�8\u0010v5\u000b\u0012��3��g0��\u0000�u�Q<$dj��\u000b蹴��\u000e\u0007|D;���/\u001a݂\u0011-\u0013�\u0018��\u0005N�}��[y\u0012�tR�,�\u0013���DFO��c\u001d+���#�J\u0002�բ̱&\u0010$�\u000f�U�y3�ۚVI�!�dm��)(Zܚ�������&�A<�&����!�w��\u0000\r\u0013��\u0004\u0000$~)�>�_���=�|���w�Lۂ��,�b\u0000�2\u0006���\u0011���Qp�\n�&@\u0015�Կ7؂G���j���X��z��\fB\u0016�K4[0p�Q�Qx���\u001f�6�;\u000e�Jx���؄o�d'\u0018\n.��\u001apZ\u001d��A�\u0000�vV�\u0012q�>\u0004��,�� ��W1\r&�!�\r^@r�Pk���:S�1HH���X�^��[75��hX:�����j\r\u0014X0���\u0010�\u0016`��xn\u001a� 7� Bn#m��\u001f&As&T��Jԏ�����o\u0015Z\u0012��\u0006\u0006=��\b�j!�޴i��FѴ�G@q\u00032��c��r�B\u0010��T\bv8�\"����CC\u001e\\���Q.@&և���\u000f\u000f0�O�\b&(�AE�&����)��4/�E\u000ez#\u0017��&��^��\u001c\u0014���O�\u0000�<��sE��w��Z�B�����=���z(*J���/�K˝��t�6\u0007�R�*���9W�3n�\u000e��4�/�0ͮ19Su%e�ݐ�)%\u001c\u0010���'��Ӫ\u0018��K�C\u000e\u0013���;-f&*{���m\u001b��\u0015��Ś�W�\u000ehm뷨��VQk��`������*�8똸��X�\u0007���5\u0006j�/2\u001e���\u0001'�џ�C��\n����q�\u001b��B$\u0019hpgǕ�7`,��C�9mx��\b��{:\u0019����\u0005�i�\u0006��po�\\5P�(~\u0013�7\u000eʶ,�E0\u0018�}�o*\u0013):�\u0012i]Z\"�)��T��X\u0003��t}��~%2�RD���^��j�m٭�A/�&Ԁ��#�� \u0017���a�N�8$0\u0002�^���Mdn6�\u001e<`�e�W��pe����9���;�\u0011�\u0015\b�&\u001f��߻\u0000Q�i��Kyc\u001b씖 �\u0019�rXd>I\u000bo\u0013u�x��N]Y��8��&�]̈́�\u0019�\u000f��\u0013��\u0014秄\u001fnL�\u0003��\u001e�����\u0004��Q\fNʼ��]) ��KV�aC�yq�j�'`��K�P�p�\n\u000b>�\u001fH6\\��ԛ\u0003��i���\u0002-A�Y��^j\u0012k�c�\u00178��\u0003�ݙ:����\u001d�/���y\u0010�/\u001a����\u0016b�_�{�8�[@���gI���r�䲁x�\n>u8��\u0019�+����\u0010I\u0002B\b\u001e/m�+��l�\u0018�l$�;\u0019^~G�(��A\"�&��\u0002��T�^I�C�Qm[nj�5\be�\u0018�A��\f��K0����\u0016�M�\u0004�H�vQ\u0014U\u0004Q\b\r)I�z�L�}� _N�\u001dgY��\u0006�\t�W��E�Y.&Y\u0016.�:���_\u0015oO\r\n���hC��X�o-�\u001c(h0����\u001eJp��8tDo�D�(�A�7\u0003�܊'�+�۾�����â7$�J���=��5[\fc�8����Λ�\u001c����2�Qte�z|���`���\u000f\u0013a�\u000frE&)��4�\u001c�8o�\r�N�?F\u000e\u0015���.�>\u001b��[G�����F&�y�\u0004�jS\u0010�[\u000e�\fAN� �L۪$\u000b&�g���\b��(��\u0018������d�A\u001a�&���.\u001c0�\u0013\u0007׺��\u00127\u0001JG�����P��ڟ\u0013��C\r\r�ܶ��pX�\u001dI�=�E�!�{bȿC���Ǻ�Cז��ژ�锲�=����йP��\u0002�\u0001�?�MD��w��N����R��>7�\t��͚��x�ڀ�{8��G5�������e���=�M�\u001f\u000fH106�o@d3�f�\u0007�,\u001d�����V�;M�'4`��\u0019��,}^�1)�L8�[\u0011\u000b;�\u001b�郰\u0007��m�18�\u0017�+9��\u001fC�u\"���\u0002\"�A\u0017�\u0000\u0000��\u0002\r@ovX�\u001f��;�m\"$Š���^��N~��rDR�\u0014��ĭ\u0013\n�x��\u001e��P�)\tg�n\u0000�44[�Zpa�U6%T��Ź҅\u0007�S>���q)2��)���4/=u�O)\n.t9n��R����;o�|�\u001b��$([f�Ѵ����Ȫ��ւci�N���wy>.6��'#�ا�I�'���X\n˶:_)\u001b��c�%P%@�ۧr�e�B}o�A\u0012�\u0000\u0014��1����G}�Θ����8$\u0016Կ�qm��M�R�\u0003�ʬ\u000b�Ü�����\u0016\u0003�B�D\u001c֥��9D�\u001fx[_&��=��Sd\u0002���`�\u001e�]\u0017ё�Ub\u000e�5�6�\u001f���,ݮ=ቔ9gǀ�����!����\u0006������s�\u0010e(^e}�a3�2�%\u001c\u0003({YhS�\u0011_��\r?�\u001eY����\u0007=*�;&\u0015�S��M�10�^�\u0005���Gi&\u0004\u0001%ߕ��(y(���L�`��AQ��]b���\u0015����-�O��\u0012[y\u001e�*��\u0003N�JB�\u0015\u0005A\u0016��¡��8(,J�\u0007c\"!t�X\u0003��\u0006ԯ�\fW\u00130ʣA\u0004�\u0000(����7/}\u000e\u0001z��\n�mL�-�\u001cn�Y�\u0004Lt�\u0010[��\u000b��4�\u0007۔r�Ae\u0013eP��\u001aωΞJ�Ic6\u0004s��%�!��8�\u000f���*\u0016��5����}��o\u0010�\u0001�����\u0006�Q7�]V�A\u0018��GA��0�f>�&�46���\u0010�>p\u0018c�+7�M�8߮@\u0003T��R\u0017�\u0012\u0017�>;��fd���\u001a7�C���;�\u001d]����y\u001e���\u0003\u000bL0+L��Z>�iĽt���u�\u0000�S��*��:D���\u0004�=E�+\u0001��V\f*�}T�\u0010'�o\u0011�\u0001���5�R�AQ�\u0000P��\u0001%�2d�yq\u001b+m�\u0018�ÃG\u000f}\u0011�������0�H�*��d�,�'ҫ|\u0019�*�\u001a���g6�\u0010{�\f�U\u001b���yw�ϲ��b�k̸�����G����m��v�f�72\bg\u0006��+_B�)��H{�?��\u0002`/��n4�K�H/��_'��xw?�:�a�Џ!��b\u001aJ�\u0018�.z��>����f�����\u0010a$���ϛ��$�\t��V?��}.�\u0017*�b����\u0019<\t�ʆ�O\u0006\u0013�f��`���0\t1i\u0000[�goX�LOQ�\u001e�����t�\u0013c\u0017\u0014z���t~�ˠ\\㊐l�\u000b�E1YѪ��6\u0000k�\u0019kv�*�\u000e0S=8\n����\\�\u0001\u0007VLcw�\"\u000b9\u0002)��N$��hh���2��\u0001)-�ݬ��V1����A\u0015�\u0000d��\u0000�\u0016΅[\u0010�\u0003�(}Z�[�vaa�\u0016�u�'�\u0014,�\u0001�i\u001e��F��t�2���-n-Ȱ?\u000b��� ���P06��ꎺ�.��$1�\u001fu� �:\n�J�\u001c\u0014\f�xI��z�2���3���_�+\u001aj��K\u0004(\u0004�5�6\u0010/�O�\u0016\u0019L������\u0010�Fx�\u001e�8\bd\u0011����\u0010�悆��\u000b�\u001b\u0012\u001c��-��$<�8�q;\u001d�\u0016���2�z�CKޜg�\u000bw��x�0-q��|��U&8\\\u0017�7�\u0019�$Ȟ�&C��00�9�}��|C��xO\u0017�x焢��pa�\u001dG&���\u0000\u0013�7J��*\u0015�H\u0004\u0011C�J4��\u0002���A\u001a�\u0000x��\u0002\u001cN�\u0012w����l9v�`6�SY\b��@�\u0017g�K,s�x\u000b\"��EQ\u001bhPT�5�\u0018Y��d#��K)���\u001e1\u0003�č�|�b��'A�SK��{�P\u0011�\u0018\u0010Z���H\u0015߯�����B�O�3)��;%�Å�ܼ��=��{��\u0006w+�����-]��n�6*F�t��\r\u001bX���\u0019�S, ��\u0006k\u0010�i��U��l\u000e,\"\f$���k���g�Q�\u0013U�\u001d��\u0002�1�\u0017�\".�G��c\u0013\u0012��D�\u0004ć��\u0016�n\t)�05K\u0019\u0001��m�����\r\u0012F�Zo�\r\"Gz�q\u000fi\u0007�\u0000G(\u0010�\u0018}�x\u0001ڋ0:��A)�\u0000���\u0002\u0002m��4��\u001da��a<�5\f�w\b�\u0019\u000b02���L#uݩ�A�Z\u0011�ǂ|��Y�-\u000fu�Y\u001fI��\u0018_�G\u0017�%\n�8踪\r�KPA\u0016ϗ�\u000fuϯ��(S�t\u0015��:߳��A\u0000�J�\u001c����j�/Q$j�{��a�f\u0012_���B\u000b���\u000e�Ԧ6�@\u0010�Bp\u0002�uy�]�\u0003\u000e1��\u0005h�H���_U��� ���2\u0010\u0007sU���\u0016ގt�)�@yJ�ʮ��K�9�\u000b]�=��̭l\f��8\u0001\u001a�m�e��X\u0018a\u0014r�21�i��\u0006НԦ1YET\\�\\���\n�g���^��\u000e�\u0004�\u0001K�l(2|}[&.8P�l�\r�\t�\u000f���\u0000��T\u0018�R��A\u001d�\u0000���2r\\\u001cJ\\�*�!5���#`�>��W�!�\n��Cd�sד�HE�~�\u0004\u0003�\u0017F��FR�\u0001�{፦Sf��\u001d�\u0016G˗7�O���d�\u000f&8�9wsZ\u0003�ְy�\fէꕮ�F4;���mMx�JV\u0001��v\\Ƈ��L����\r>���v,\u0010��K\u0012\u0012\u0014�Z�����c�\u001bپp\r�\u001af����Eq�[��\u001b\\\u0018��.�!F�7|\u001d\u0005\ro�߭��,�Ť�l'_�:ΉWic��sd{M�\u0007���dw6\u0010ev�Rv���է(N�d/\u0007�U��'�9\u0003J�\"��\u0016AC��4�F��-��\u0010�p,�P�B�\u000e���A�A&�\u0000���L�Ӛ�4�)\u001b�O2��#&M���'t��G�wo,ٛ<�\f\u0011�\u001dn�ƿx���1���A�k�\u0003���p\u000b\u001b�A\"�\u0000Ȁ��\u0004��\u0005Y�3fr�\u001f���2~Ʌ;=�\u0017/��V�|ޔ�5\n\u0003ݶ��ZS\u0007.�-W��A4��\u001f�\u0018\u0016\r�/O@�r\\�\u0015!G�!�\u0012[ah�l\u001b+�ގR�LI����M��}b�\\��\u0002�\u000f�5��J5��k˖r�4�\b�O�.�\\� |7\"h\u0016��J8f���|�٣A\u000e�\u0001\u0018��\u0002'C-I(h�?~3r��q8�X�`\u000b��:��E\u0011j��k�T��7�5�r�\u001a�1n3��%�JOu��\u000e�H�\u001a\u000e������p\u001e0~�b�6mȧ�\u000e*�,E�9S\u0007u tYG�\u0017,8H��bM�'5@b\u0006�\u0004*���>��\u0016a�b�V\u001ek\u000e���\u0015��SI���J�nB��u>&�0�f�\u0000\f��D�5+k�E���U\u0003��m\f��\u0007_5���Z7a%*�\u001a�?���c1�&�&+p%\u0012���X�$H�3I,�i��G;\u0016\"�>o���=D��@����a��f�^�]\u0013��\u0019-����\u0001�ZG \u0003�A\n�\u0001,��.N�\f�����9\u0001h\u000e�:��$p���\u0003\u0016\u0000W\u001a��M\u0005��a�a�����V��\u0006%���D\bzȮə�\u0015�#�\r\u0000��׃/��j���'�Hk�\u0015�}��۞�_���g+�n�\u001a��NR�`|�pcB߳\u0002\u0004�Uaalt\u0014�X\u001a`H>��\t;\u000f1y��*t�����Z��\u0015|D��|&���cڝf�\u001a<�-��d�mE�2E����%\u000e���㑿��Q�\u000e���VQ\u001bcV\u0004��e\u0005ӯ�ff֨�(7�EѦ*7n\u0019�\r�\u001e_n���@���4�\u0016�;�!��d$H�\\^��D��p&��A\n�\u0001@��\u0002\u001a�j7P��\bzN\u0011X��a�\u0006@�\u0013լ\r`���3\u0001��Ż�>\n��aR�So��@��x>~�\u0019Ln\u001f&��yE/`g���t7�=��V�z�:�\n��Kƣcm�oMm\tU��Ҽ�\tƔH��॑ު��-��u�W��\u0011:�—��\u0012{�hN�_�\u0016;º�\"G;�<�9�l���:1-)�8��K\u0006G�\"��\\vUvr0\u000b�W\u00067���%:at�t=\u0004��˨��͊��3���\u00059��Q5h��E\u0013\u0016'�\u0004�R�\n��\\�\u0012��\u001d���!a�q�wcoT\u0007\t/���b�,8�\u0015__�A\\�\u0001T��{\n�f۲��z\t\u0001�>��|P�M�G\u0004\u0000I˗\u0006Ɠ�=\u0013�����\u0016���X��\u0017�\u0004���\u0006\u0018���j�)í�9w\u00124�J.I7���\u0005��a*���I׮\u001c��v�\u0010{���\u001e�0��B���?.\u0016{�\u0002\r��m��Liz��\u0012%����\u001b�ED��@ы\bE��:�ES~x� \\���}\"�u�\u0007����Ȧ��Lv�x\u001a<�u�o��Rڕ���\u0001���\u0015(\u0003���w��\u000eGS�B��{Ь;_�\u0002d�����Ռ��hJ�\u000b- 1�^\f�$ŭl�%)*���\u0016s�;�X\u001c�\u001b�\u0000�����\u001eD�$���\u0001^\u001f�a�#��'���\u0014�.9[�\r�\u001c�xꎱ��\u0004������F������F��@�a\u001b ����HL0~�02�3�P��\u001c/�>�A!�\u0001h��\u0016�]~����\rΝ�����b[\r\u0015�C���\u0017��\u000b�8w��j��7p�x\\�_\u0015<(�uD�߬2�β#��X\"]s�7\u0006�ɍ\u0005;`O(�q\u0013K>pґ�\u0018h1���\u0005с��2\u001b��R\u0017-eP_z�2~^Z|��\u0015�F`A��/�i\u001f�<�g�����¿��bW�7�Jh\b�\u0003ٳ\u001dT@\u0012#\u0006e���<�k@o���xڃ�Iq���\u0019\u001fss9�A\u0000_��l��\t�~��/�ܔl��J�\u001d=��G�\r��0h�+�\\5đ���H�����=w]�n5�-ȂtI��0Q��P��?�>q�\u001d��!˓\u00142m���|\u0007'\"A�A��\u0001|��z���\u0017S��\\�3���HG���s�X{X������,�����b�ճ\bf�uƟB�<� ��\t�&,��$\u0018�\bt\u0013�\u0019}�\u001cU\\���C�2�B��+H��r<\u0013�#�\"F?��\u0005~W`Uڥ��=�Il�\u0017�?\\�A����Ќk�/�H\u0007�r���\r��>x�d?�\u0015��s�V\u001d��h?e �\u001e�w\u0017�0�̊�R*����zR�Q���~�\u0011?��m�;\u000fTJ\u0014�~��\u001e8�\u001b�d��](]bU��!�S\u0010A�+\u0007cW�Q!�=�i�¡���6�঍wo�昲'\u0007�PX�qJ}����G� o��(8S���7�\u0004����'��psP�x,��}\u001f�\u0012��,�\u0013\u001f�V\u0010+\"�����^���؝�����Z#�\u0015Fz6���\u001c��e9�<�b\b��(�WQ�e�G�צ�(�\"\u0002\u0016�]�fp�Vՙ�iC��\u001c\u0003רT�h�*�AW�\u0001���>�έ�(N�ʉ���Į�hO��\f���ϣ�-4��c�H���P�z�\u0014늙��T�\n��\u001f�G�t��\u0019܌����Q�xeWdé8Y�V�@c�8�����++V�~\u0003m\u0005m\\��&�\u000fa�%�N\"w\u001b(\u001e��,�[�BF�0M�1�Y�p����Z�վ�\u0014�xIO�\u0011���% \u001a�1�6$cD\u0012��w��֒\u0010\u0014������\f��b�����\u0000u�:��X�\u0001�������G\b��6G(p�\u0015�m��A�(\u0014�0��e���Z\n����\u0004:��T��<�\u0019�Zc�\u000e\b��\u0003x�\u0002��l+�Z�\u0011\u0001���e�e�?b�~��eQ>7J\u001b؂9\u001d�( ����J��U��o�S���c\tX`�\u001d+*\u0010�ч.�u|��n��]\t��.�A��\u0001���w�\u0013Z�i�C�p�`h�\u001b/�?2Q�J�����\r�ը7�R��\u0002��&}���)�\u00160�S�f&���-�D���\"'��M^��OM�`Vz5\u0001��P D\u0010��Ƨ��=4}ia.�Kvs��\u000b�\u0018��\u000ee����[\\8j\u0017���� ��c[\u0001��\u0005;\u001a�����v5Gg��\u0006�G���˨�\n�iLT�j,������,\u000e*��/\u001fR@�\u0019.��ێbʞ\u0016 ��:�j���{�m�ʼn��\u001d�IiZ_{~�k�dz��\r�lPv��ы�O�Z��*�\u0014\u0002p��.Dχ͟���\u0011��,�������4�F��i\u0006�4$�VmH��\u0013�Ix��##��R��T�4��\u000f��4�_\u0001>rO�L\u0001���\u001b\u0015�CsJ+gѧ�Hi�]�c��Hۓm;D\u0002�V׫�|�\n�?��2�I�f�\u0014ޕ��X��i�*�4�5.�����\u001a]\b\u001clݹ �\u0013$\u0017�8/��\u0004�ō�p�H�i��\u0015Q^��͓ظ�\u0012x�\u0001G�\u001d\u001b��͉\u0012@q����&��\\�����A\u0007�\u0001̀�욟\u0019�ն�8����t�tͫg���Us�\u0002�G�\u001e�}h$��J�\u0012.����X>�z��ޮ�\u0001ǩ\u000b]3\u0000������\u0017\u0007+K�/3�b��A�,�\t�Tv.\u0003��̔��R��K~ay���~����\u001b�MI\u0014�y �vb'9�bD��\u0006���\u0010z5r\u000b ��R4�C��8���\"x�L穹�u����P�M\u0013譜e�ġҀ,S\u0001w\u000bC5D�-�հ�R7��\\f\u0004QF�����J����)2��\n�\u0003�e�e$C\u001f{�\u0014^;�\"�$7�����\u0007�}���-�LScG\u001d���;���|\u0001bi�z�6��\fi����5.\u001ew��$�uc;4�5�<{\u0003i�/�À�t\u0000�\u0012��UI�c�)��.�pb��dF��\u0017�?\u0006��\u0017H�����K����L%��i�t��]�]�\u001dtT$^1�iZ�\u0000(\u001b\u0005�:L\u0013k�6-\rP�>�\"\u0013��“��\u0015)K�XrLS��C\u001c���#\u0006�Ț���x�#�\u0010H���\u0000���d6��A\u0010�\u0002\b��곓\u0001��}%�]J\r��,c�\u0017˔\n�\u0007Ӿ\u0011Z�ƀ�\u0003i\u0011��P?\u0001\u001dOg~4��h�(��Z�P�i˔�V����D\u001a����R;�\u0015�&��x�s��*\u0016١@F,a�M���B\u0003x��� ���jkVҦXA\u001f,�E\u0019��6���$�G.\"\u000b����D\u0002� ZJ��\u0012�Z[\u0016P%D�����\u001f��\r�! �Qf+�\u0001��\u000emv���YyoK�\\\u0019f�]�\u0013��w��~=�,C�\u000b&�w��H��\u0007�Lpi\u0011�\u0004�8��F\u0013\u0003�?�\u0005��g[8��~���B��R:�5(�v�ԀEѡ2C���d��@��\u0002\u001c��\u0017N��U�[\u0019Λ���\u001a]��,$'��\u0010_�}eԙ�$t!��\u0003<\u0007\u001fZ�\f�\u001d�\u0013M3j ~u�ݴ\u0014�����\u001e�ME����\u0019i��F�\u0002������`��\u0001\u0011��:`c\u0017�L��\\i,�D�\u0002@�\u0010��\u0003eu7\u0010���\u0010��Wg�L�`�(H�&\u0012\u0005)���l|\"@TN�\u0016l�\u001f\u0019Z���\u0014\u001a,�x�B\rmL3�\u0016�\u0005)A^?~�P��%\u0006\t�S>�\u0011�o�I5\u0007\u0014�XTͅ�(\tWqJ\u001aY��n\b�\u0005��d�)W���#х��YrFe�����\u0000���@��\u00020��\u0001\u000bbn\u0000�\u001ff�U۔���\u001e\b�ߢ\u0018��كUg�KSq'`��76l�`[���\u0000;\u000f;^z�ȳص�1#�$\u0002�>\rD�W3\u0001�P\u001e2�b�����CY꫸�t��r���F�\u0017BP\u0006\u0010�\u0007k+,!��\n�iؼ��*ܮ:��x@˳SE-�R\u00002\u0000��\tf\u0012�k \u0004��V,Ů�\\*�ڶ\u0011m�욳\u0016^�9��\r!�{mP���u$��ǚR�\b�cG�d�\u0002���R\u0012��\".~�y\u0005Q�����n}�G�\u000b^O!��\u001a��\u0017��r�w[�����%d�/���@��\u0002D��\u0011\u00015���l\u0002����!U][�g܉\u0000|e(���{\r\"�z\u0014�h��d!��?D�\u0012���\f�\u0013�]\u0016_Q9�{�ެJ�\u0011+�7�i�:C���\u001e���v\u0013�K�<\u001a��14\u0004�[�t\u0015`%���ޞ$��\u001af�+Rg����K\u0001,N����ﲞl\u001aO\u0015\u001b0�z��\u0015\u0016}�Á�f?����,!v\u000f��������\u0016c�CF\u001c��Us`\u0003IҙM�AS�\u0002X��w��*�\u0016\u0004�<����7&��I�ٹu�������Ë��.��HPn�\u0017e�#p>�!�$vɰ����\\Q�\u0003\u0007��r�Á�4+�d_{0���O(l&q6��m�����F~i>�nѬ^�\u0012�P~\u0003k�\u0012޳;{�\\w\u001e\u0002���4�V?C6Lp��\u0012O,@\u0018J�T!&]n\u0017�_�*�1���\u0006��@�*�\u0006|峅j�f\u000bg��$������\u001a����\u001d���\u0017�U�\u0005G����7myL������[48v�w�2��,GPS˅\u0010�iV9�}��r�/)S\u0017S��9{#����+/z�\u000b����:�����\"\u001d(�����{�@��L�V\u00029\u0000lw��v)u�Z\u0014�%�L�CEo���8��o�\"�\u00155T)&v\u001b��h�5ޣA{�\u0002l����\\{ܑ�~��R�\u0006Ay\u0015�I\tImV�H�n�/.u��}Y\u0016J|�0�\u0011oX\u001c���\u000b��u\u001e\u0007�\u0006�'<,e���\u0010��ɏ�\u0004xu}��`\u0016ƞ\u0012�\u0014��\u0013n5�\u0002}�\"�v2�8�\f(��б�\u0012�Yc���؁�Su%Z2^�;q�\u001f�\u0012�������.G����{c\u0019\u000f�H_l\u0004}\u0019N�>2\u00109D��\u001ak����g_�*�Lwq�f�.!*J\u0000�:�\b��\u001aaݙ�e���gCfq��r,OOc��\u0001�?�t�\"���\tu��ք�û�t�\u001d�B7u7�;��9<�I\u0010ѵE�\u0005\u0004m�\u0010�},i�0�\n��;��#;)m�Dz�̡�`p�X�.R\nϹ�ͧk��M\fD*\u001c��c�-����č\u0006O*�&�1�\b\u0015g,!d�<,/�ˡ��H�L���S(%;tU��J_�>�\\Sש\u000e�ٔ� j��AD�\u0002���쑎ɷr�:��������3,���S�P\u00171f��ᇑ[Ss ���f�^c���զײ�F����R���a8��Ó\u0005\\\u0018��q�\"{^|A�9o\u001d�n��\u0000K�\u000e���\u0010�����Gd�9�\u001f>�����q�\t\u0002�*�E����p:X\u001dÖ��5���2��~Uc�\u001a\u0004���N,f��N��6!\u0006V'~i8�\u0014�uS�6m\u0019U�<��,��Ϝ�R�\u0007Z�\u000br-5w\u001b�uE�+7�&Dӹқj(O:��\u001e�73}\u000e\"笰�\u000bP�a\u001ac��\u0004���h�wϵ�\u0010�}�kVB�Z\u0001n�Z\u0012KX�\u001f�^⏒\u0001�4M���.9Q?_���^\u001ai��\r�列\u0018��uL\u0011��F\u0007�c|��\u000e�\u0006`���@��\u0002�����X�.Η�_�\u0016S\u0015\n�/��m\u000f�\r���D!2\u0003�\u0019�ߟ�D_(��&g�o\u0000�M:�y\u0013V\u0007�N]�<�\r%\u001a\u0002;':[�e�\u001fsw\b\u0010xf�i�No��N�$�z�/!�֏ʦ\u0004\"�\u000f�_�JP\u001b��\u001a�]!����S�2��^\u0017�,/\u0018����h�ɼ\u0000�:Wv.\u0012QRͪ���HL�C���`̄P� \u0019qGsu8�r}�5��H�p�д$\u000b)�2\u000b\b�b�.J#�\u001dk�?%7p�t�n�^�q@|I��C>��Nq��\tA\u0018\u001a�\\���\u0000��܏�\u001b4lUȿƋ�A\u0014�\u0002���\u0006\u0004�=�ܯ#n�A�\u0012�fP\u0010$���&���æć{'��\u001d\u001fZ\u0011�K���\u0019;�]�}ik �WȜ��![�Ðx��C��\u0011�\u0003��'A�-�~�v<$}�}�9�!6;��eؓ��͢\u0003ҁϒ4��=Ɲa2:Al�0,��ڜp]!HK��_�\u0005�N?�R͖�l§Z7�8�\u00023�$��kA8V���f�E�̄?���Ki\u0013\u001b����\u0019�B7f\u001d8����*)�cMFʪ����xy��XS00��P�y⭧\u0002�'\u001c��^%���\u0011SQWn1��.j:�\u001c\u0013�_�`��2\u001awEG\u0010rD�'z���,&�j���X8�q�\u0013�{D�pt\u000eB�a\u0015� \u0013�\t��\u0019��4!:j\u0013���(3 �\u0016�\u0010\u0011,�+\\Po��#���^S�����>�\u001d�����\u0004�\u0006|\u00121�n�![S�]��.���b]��\\�$�&@��\u0002�3���\u0004����\u001en�HD\u0001�y���=V����a�h�\u0015�dW�=�`,�ц�\u0003�\u0018C�Pе\rA\u0018Ŭy��T��D����[\"\u000e��\n�%�\u000bқQ�n�\u001av~-A6�A)�\u0003 ���)q�\u0002��?�����J}m�z�Ū\rYر\u00152{\"�M�߫�H��\u001e���\u000b\u0004��\u0014,�u\r�Ι�\u001e�����ݙ�\t���U��:�\u001c���(�7f\u0010t�.�/��\b�\u001at\u000f��B9~g\n폈��� IW��H\u0003�j�Rh�q\u001d�*�w%�k|�_����\u0019h\u0013\u001f{5Jc� }�H��y_�=X�4�\u000e�\u0003`\n\u001c�J�aEqw����'����!\u0015��\u0018b�D\u0006�V�B�O�41^��El\u001c<&\u0015EBѯ|\u0001�p��+:p�@��\u000b\u001e\u0000�����oL\u0007:�\u001fjz���)1�Wo}�\u0004��\b�������\u001c���|�|(q���ȉ��\u001c�[����B.7�A-�\u00034��\u0002w�o��\u0002��\u001c�ɹ4�\u0006�s\u00138Vl�Z\u0004�GAB���*\u0016������C�\u0014e�8<���g@>6�\f4E\n1C�Y\u0016A�|v��z*�\u0001M{�\u0018=�uq\u001e�\t!;9\u0001VH�x��͛\u0012���l�u�fv�K�\u0006f3�^\u000f\u001d�\u0011\u0005\f-�>!\u0018������:÷0m[����i#\u0019��<,l�B\u0006#�\u001d\u0003�Uu\u001b�\u001fnEۂN�3�\u0003�Q�� ��m���f\u0016\f���Iz���9�]�\u001a\u0011��o\u0005����i�\u0011Y�8\u0006>p�u\u0018�\u0004g\u001c\u0015��>S���\ny���\u0001�8\t\u000b�{5�\u0001��d���\u0012�\u0007���|�m�o��Lz��3,�BQ\u0001��_�����4\u0003�A6�\u0003H���(�&������?.���_\u000e���\u0006\u001fD�O�\n�\u0015�����Q\u001b3I\u0001���q-�y�B�E��T�8ۊ��$�i+{�\u0018�\t\u000f~�\u0004fY\u001d�fAA�;\\ر��\u0002h_\u001f\u0002\b\u0004�ג�\u001c;\u0006�>g\u000b\u001a��_�$�\b��\u0001�\u0012�\u001b���kH�-�\u001e'^\f�>�\u001fn[-U�y\u001f<�A\u000b���8�B8jZ#O��I��?�G*\u0014��+>\u0003\u0015��\t(\n�\u0001֑\\�\u0016qʆ\u001a\u001f��u=ٯl1&2S�w�ꋵ�\u0018�\\�ߒ�p#�nMFf�۝qӜ�\u0016\u001a[��\u001dg{H{��23Q\"��u�/�ޗ��7��8i�3�6\r��-�\u00165��*n�48v�_�^s�Dn`�-GkY=�\u0014�r�A�*�A\u001c�\u0003\\���DI�-\u001b��j|N\b\\�\u0002�u��@6�I\u0007�G2\u0006q=�<�L$�'\u0007>{\u001e‘�\u0015�D>aw0\u0000oG�� \u001aY�%����I\u0001�\u0007f��`ʒNj3-�|�$j=���F���!3���C&��\u0000��\u0015\u001f�A\u0019ד\u00071��i�z}�lF��h�>mh�/���\u001e�@��$�x�����w$(����'\u0011j@%�h�K��5�5\u0013\u001a�?�����Ei�3�\u001a����h��\r�;�bt=r���v8�_�ej��x�q�$s\f`MM�zɇѬ�.y��ʱ\u0011=nr�\u00189��\u000ea�P��fO�>'u�@\u0002�#\u001b�L$���\u001fӅJ�����A=�\u0003p���\u0002;~�\t��,�a�\u001c\u0000�X�\u0004;�Y�A\u001b���a�;֌\u001e#�ׁ�'�Z�3�y�E��\u00166�;%�&�\u000b��_�\u0001[=\u0002\u0018\"4x\u0014v�PN�N�̈́/�B�B��c�xy.�R�?�S!�jA������4]�uP$���'���\bI5\t�a����5\u000e�\u0001��G\u0011l\u001ab\u0014�ɱP\u0015���#�%�O� �\u0007\"�,X�XR#��� 0�\u000f���j{/��FD��Q��\"������\u0006�<�Ϋ��/\u0017�6\f�vB5��΂O;^6�fmH�8�g�}\u000f\u0013^B��I\u0018!h���F\u0004���\u0019�E�M�/�&\u0005}@P ���SE+\\��\u0007�C\u0004�$�A\u0015�\u0003����Ӗs��[Μ×�h&�\bl��lJND�������\u000e���=��\u0005�oL �\u0007�\t\u001fĶ�5�<\rd���`H]�\u00195E��N\f\u00134��̥5�-��\r.?��JP1\u0010�\u0005��*�A\u0010�\u0003���]�\u001c�RI�\u0018@r\n>���\u0017��Ӗ�w܋6��L\u0002��\u0002�\u0003������K'������&�4`\fD��pzc|Y���\u0000\n�D9p�L�P� śJ��H\u0011+��9q���ڇ]t%;��\u001c�=A\u0012\u0000��R|�ڛh�rK,I\u001e-�\u0016y�;�GR�����Y�bPʓ�C���`\u000b�t�\u0002\u001a�c��R�݂xg�����\fK��iX\u001b�E��B�2Oǂ�6�m��V.\u001e[m�C\u0016V�\rߵ\u00015dB��]&N\u0010P|�,��X͏�v\u000b\\�֧�{�`!\u001d1�ilY�\u0011��c�C{}�mR�u\u0004��{�\u001eI�@�\u0003Ԁ�L�\"\f�[,w�`���^�`�BZ@K��\u001a!,&�QY]�K\u001b;\u0001\u0001\b;\f%�g�W��z��)&��*#u���_y\r,�\r~��wx�\u0005j\f�)�Ir�ɒ\t�͌�cF��~�g�\"���\u00151\u0002�J�(#�X��2y�1��G?�����(\n���{\u001esm�qX��\u0010�i�Xnrꥣ���Ɂ���M��r��f�\u0000��.�\u0000��vr�$���{\u0007��&‘El���IJ@��H\u0019��ʎ����\u0011�|���)\u001cϝj���t��\fx�\u000f�'�\u001c�d_Z�@��\u0003��L�3`Nx-�v:lYC\u001b�����ҝ��&\"�ʨ *;��\u0002\u0002M�k�t�b���4�ȡ\u000b�CL���\u000b�w�%��������\"P�TEM���#`ݟ��X�4�\u0002F��9�\u0004��Q�H\u0016\u0005!<��D���u��P\u001f\u001c�l��\u000b��͇\u0014k����^�@o?��+z&7��)U��A�tN��/����\u0002�s僸�s��D�\u0013��W^K�\u0019\u0000��ˋ�v\b��7ynm��Zg0v#��qn1��d�j�U\u0011�}����}y��no������I\u0018�X%f��AE�\u0003����y\u000f���v�Z�\t�`�^�\u001b\u0013u��\n\u0000x)_\u0017Ί�ܐ���\u0014�\\*��G��@�\b\u001b\"و3�1ӻ�6���2urJ�πZ$\"!���c\u0002�+\u0010�l���>+�����.�~�\u0012��\u0013���Fu�p�?j��!*fg$��\u0007`�N�M�I�\u0004 �/�%'ec�Y�\u0001�S����q3\u0018��p��\u0018˃4B��r�9\u001c'��ǫ5�b�ԤER;�\\�\u0017uT\u0007�a��#��\u0012\u0004�zL\u0019u\u0014�H<\u00026Ryܝ�c�AW|\u0019\"\u0013\u000e�#i\u0010�k��R��\ba��<.\u0003���H����v�\u000f\u0006�%@��\u0010\u001b�s�n�\u000f��\u0005X�\u001c�\u000e��y�\u0012����_I�b��\u0000h�����~l����N�\u0007�Rm�}\u0006���?�A4�\u0004\u0010��۷uz�?��\u001d��gF�mA\u0018����'�jE�:G�9\u0004�\u0013�\t���\u0013�\u00136C�\u000b-A\rz\u000b��>�\u001e[k\t�xD����8�0Bf1I��4�;e�)�^t��\\Tm�ޕb\u0006d`w,�\u0005�^N�W���\u001c�\u0006+\u000eY\u0011G�����\u00140i�;[A�&\"s��0�\u0012dN\u00063�n�\u0018s*�G�\u001e�Fv��|�)�\b\u001c���\u0006}A[\u001c�K��v\u0003�L���@$*���G\u000b�\u001e�'��\u00172���`ɎOK�/Z�ۅH���S��,�=+(\u001aU�\n�G�\u0019�`\u0015�^�\u001a^\u000f�Ⱥ��\u0002�E��K\u000b�����\u0017�\u0005����є��\n�Ƽ�\u0003�#��8�\u0012�_d�\u001f\u0005��Z\n���\u0012`URB�A\u0014�\u0004$��M\u001f�Eu�`��ҷ��TW�b$�{vr��â�O`au)�\u001aq����8����O���\u0013�WV��Ջ�/\u0000���l���{�I�ɤI\u0013W\u001c5\u0000V�\u0015`��`Q�\u001aA2vno3���\u0010��\u001f���8�&�&�$�!6�m\u0013;լ�b���p?x\u0011�x���\nؙݾ��\u0013S[S�Ϯ��3Cߥ\u0017i\u001d\u0007<2\u0014��z�K��[\u001c�\u001a4�v\r���E�N�_�N��AVA\u0005�}\u001c0�ꋾ�d���`��k8�������\u0014V\u0019�B�%��C�<��ҭ>Q3q�\u0007\u0012�I�@i1^���<�Eo.��<��\u0007���G��ۣA4�\u00048���c�\t\r�gk��\u001c�wz��|��FMH��H���n�w��6Ny��I}\u0018��\u001fΒ�j�\u001ed$�2h����#��\u00012�?x�14�z�-q��i\t\u0018��\u001dP��DW�\u0015MH2\u0006��Bb�W<���}A�Ny\u0018�e��o,P=.�h\u000e\t=���k\u001e؃I8��D\u0005?�(�\u0001\u001cŏ�U9\u0007��g��\t��;���\u0007%}�\b�fZ�X�̺���<��\u0013�r@���\u001c��_��\u0001�IHՓ\n�\u0011d�-\u0018m}�\u001c{��'od4�N1�8!�UI��]\u000f�zb�}��w�-����g��\t\u0005|���g\f�jS'��\u000e� 2|Q+gk0b}��1\u0018B��K�)-�r�d2���?���A<�\u0004L��L�6���g��5��#>:W�١M:n��ox\b�dZ�\u0012G�\u0017��d��\u0000�^G\u0019T?�\u001eMF\u000e���N��~\t\u001d�Ё�VO�\u0007ߙF�\u0016���\u0004�H�jnj����\n3��x�s\u0004� \r;�}�\u0010��\u0003��ᷯ\t��I�QuG`[\u0013oiS���3#p�\u001d��7B4�u�~kɄ\u0000�s\tz�\rA=\u000e\u0005��l����\u000f�|�Is`3��<�r\u001d�\u0002)i\u0004���˩p�\u0019�+�L#����YA\u0012\r�\u001c�J�v��!l�?\u001eKx�/A�*\u001b��,\u0002�D\u0016{aY��\u0007��\u0017�ľy\u0014\u0005\f�o�\u0015Y\u0016�%NI٧�����\u0014���M\u001dxJJ@�AB�\u0004���۷tw�~<\u0007��e\u001f,.�_7!��\u000b<3\u0011�\u0018�\u0003\\H�Y�oW�mo���\u0000�#]a\u000bX��0��\u0003�\u0000�F��ğ��$2�\"��=@t�X�4�\u0012�{�\u0004G3��g�>\t�I2��QH[b���Iڙ�р�'\u00103a��\u0015�=�Z\u0015����6����\u0018�\u0010�LG����\u001a<�0Oo>h�Q��2���&x�Lh�_D\u0004���]\u0017Tln����K��~ V���v\u0016|\u00015�ſ�1�X�\u0010�.��\u001a;-\u0000�u�u�E\u001f\r#/\u0011�\u0000����+\u000fT�*%�hF#�\u001a\u0004y��\"��2n\f\f����+�\u001b!��HC*���jO�9�En��]�\u00155���NJ���:��c1\t�\u001c�$$�n͸H?J\u001e�d�\u0000ϒJB�A��\u0004���ۺ\u0012F/\u001bF��o�\b�-@&[\u001fx����U��.�k\u0015\fN�\u000eY����O\u0007��\u0016X�Ls/Ǜ�ڥ\u001a*�����\u0004�\u0001�\u0002��\u0017�\u0014�y{˝q��r�J:��2@Ju�>+�n�d\u0001�hR^��A\u0019�͟��t��b\u0013Q\u0005���>Z\u001b��-�χ�Qn�Q\u001d�\u0001>�mvl9&���qC\u0000\u0011��t#~�e�x�\u001c\u0019��}��w�V����ƿa<����;�эkNWn]\u0002�y�Y\u0014~h�&Y��]����׼ٟE\u0019����\u0017�`\t��۾���p��(�2�-����Y�-��xNǒ��\u0006Gp%�\u0006@T\u0018ϔ�v\u0010f�u���;\na�Ԓ����̻O��\u001c\"�\tT���������US9l�n�YO~�k\u0002P�ݶ\u0002��\u0001���\u0013���|2۔�V,\u0010.~\u001e���Ǯ\u0000�S���\u0005ױ����g\u001e�$7\bܐ�퇛��\u001dWm\u0002jU�\t\u0015 0E·Z��JD�A$�\u0004���L�\u0007�=-� xܿ]\r���;��<5�\u0016Ȝ��hq6���H�'�:Ŋ\u0012g�p.� �\u001c��c_\u000b+m�y\u0016'�&7�\u00135�8�\u0004�Y��u5�\u0014�\f�aMd��}g\u001197R9��\u0011Ň�9�2|Х\u0005%�\u0004�K��0==p�숆D8˲�oL(���Ya�M\u000f`\u0011�J��t��g\u001d���5�&��\u0005�����t�\u001e)��I�\b���ri�{\u001f�O�-�03��W�۳*���Z0c����v�\u0002�Y\u0014\u001aZ���'G��4Yw�ҹ\u0003\u0011'QE��k��\u0015�5��=l[W��\u000f�8��!�8�* QxWs��뿎g^�X��kMh>�(��h���A\t�\u0004Ā�L�\\��o\f�M꣙2�7,�\u001ev�����u4�ª\u0006��\u0006���\u0003sϲ�u�\u0016\u001f�uM�J�2ʿbb\u0005��k�\u0017S�CG6�%\u001aɲ<����\n��@ \"\u0001\u0014\u0010?���N$\u0014|�\u000b\b9>`��o��� �����qG\u0007�z��/��\u0007Ⱥ��P��½.��\u0016����J����i\tqԵ�E�}�\b\u001f��R~\u0000;{��\bm\u001bU��\u0011vZ���@��\u0004؀��d��gV+{�\u0016G�)\u0006�z�{�0�r�8�|11Ի��\u000b8���I'��I�u\u0019�g\b�K\u0014򊁵Y��O\u0014���1\u001e�ȉh+A?'\u0017\u0003P���>Yh�s�g����\r���\u001dw@�/\u0018\u001d�L*��o\u000eK�.�'¹D}�M���l���]\u0014(s�\u001e�k\u0007�M/c���\u000fJ�2��Μ�\u0001��n'�r��.G‘�𗺈�r+��I�v�\u0004��ޮ!wB\u0011ԵZ\u001b<�\u001e�}4b�R\u000b��C��\u0003\u0017Mђª��k�ޞ���g�?�?,��&�?6�5�\u0005I �@��\u0004���bS�U��q��m�.D�]��/ʔ��֋�\u001f*^���`\u000b�\u0011[� :\u001c'��ל�7W�s6�1.�����ל�\u0018\u0016�J\u00039�\u0002䥧%gd�!~\u001e����ء���\u0012�x\t\n�\u000e���� �\u000bpW��n��\u000f[V9\u000f\tGX���Z�\u0015*�˴�*I�\u0002d�[�6(����U�o�b��\u0002�\u0000I�\u001f�k�઩\u0004'1v�7���Iw^ȸ�*kb˦T��>�ߓ���f�)\u000b�f�&��[u��H\n��Y��]�l\u001f�+>�?F�(�%�D-�]\u0000c�}�Hm\u0011��i#�@��\u0005\u0000���l�����?�\u0003q|s�'� vjr\u0012���OY�+Ie,�\u001aг}u�\\\u0005��I\u0011\u0014B7�a�P�_.�,.L�\u0000�b\u0004�.�:���u\"\r��l4LJ;�xF�:Y�\u0011gq:\\ \u0011�\u000e냩���\u001eZ�\u0017�!�Ny�\u0018\nN��Dݗ��žWXg�L�Z6}��D�dʵ\u000e\u0010g�wC׷F��!��t�p���C����>9�\u0006�s��oAl\bݦ\f\u001d\u001e�K�|\u0003�\u0019� ,j�o�|�rYniՖJ�ۀ�����\u0019�\n�?(��j\u0010n�W��h�=m��0�\u0001(�AX�\u0005\u0014���b|\\{Q�����\u0004P��p,M�!I��\b��\u001c�5'�\n�ثS&0 �\u001a\u0003�n[U�,�:N\r\"V%\f.�\u0007\u0013�S�V*,\n`\u0003���a6�\u0011\u0012_N�u\u0010I�=KcB����\fQ}cx\b\u0014\b��8\u0012�vEn\u0007.�`\u001a;u++�\u0015\tY�\u0015��b;W��&ͮ���\r�#��\u0012��'�E�3�(\u0015&����\u001e#^���=��\u001e\b�5��چ^�����8�zĸ��JDQ;��⁋4[\u001b���zW�|�v��g~�R�F%1��E�\u0016�e��\u000e]�F����ܶ�k\u0000=�Ls9mEj���#\u0014�\u0003�W�\u001a�qJ�\u0014����z\u0006�d�D��~8�ǥ���\u000e\u0001Υ�\u0012�^�\u0013\u0003$�)\u001cE�\u0003���l�Q议ô\u0000�����4���k[\u0012$\r��܍*�wm)�A>�\u0005(���\u001fO\rv��>\u0015O5|�\u0013�� \"���7Q���J�!��ؔ�L��|���j\u0010�\u0007�݅í\u0000\u0001��˕��t {��\n�\u0018x�\u000eԗ��o\f:\u0016F��׳c�\u001bn�Y�v��Bh>�\u0013��R\u0011����2`���\u0000�O\u0004�\u001b��Q���J���\roR\u000f��O���\u0004���}��Q\u0018�M\u0011�c�K\u001f�\b�̫�M�j\u0013j��?��\t�\u0003I��\u001b���U\u000e6�D��l\u0006�\u0014\n�C��p��\u0013���ݰ\fY�5�*�\u001b�\u0012\u0004�4,�\u0014L>Cԃ\u0017��\u0003�\u000f��:��k\r���\u0015D��/�r��\u0002�%N�tL�򛞇h�Yq��\tM��lP��\u0011�\u0013�\u0006 ��\u0007�+N�u\u0011\u0017%M\u0018씥��\u000f�e���AG�\u0005<���a��� ��/�O�nr�C�Ÿ\u0005�F�\u0016*;`m����g�\u0011��?K+�)��#Ɨ��0ظ1\u0002��ʟ\r ��?af��)\u001e#\n���i�!\\\u0018��@\u0018O8\u0011i�*�\u001cu�=H��z��:������\u000ewa���MP��2-�Ad(�\u0000�\tU�#�R!H��g���B7��\u000f���,WKMӕ��m�k�\u000b���\u0017�Mlֶ��\u0005\u000f:i�ng��/�h�ۂ\b\b��\u001c�Q�тM<�\u001duvHQ\u0000}�;�Ô`/�V<��@��>&\u001a1�\u001fn.\n&֏U�{\u001b*�k�\"&\u00000kf�<��Ե\\�t�򦠨��n\u000b��4�E|����i�ǩ�:d�\u0003�ƃH�x������B�R�dٰ@Ǐ�%\u0019[\u0015}�m��AM�\u0005P���\u001fZ�:�p�mL�p\u001d�`\u0019ԇ\u0000�\u001dؗo�0He� �'��#��2[xM�X�L}\u0010�+p[�\u0007C+\u0001%sb�Y/��%�\\޹��\u0002v�\u000f�82�\u0005�#0�U��\u001f\u0018�\u001a�\u0014����\u0003�\\�<\u0014��E�\u0011�q�'/�z�0��9���X�R�i\u0007\f�\u001a��B\u0004oC+W�j\\�\u0007�}�wI���K&\u0017�*��٢�Ag�$�-׸\u001f¯X3p\u001fUuhWI\u0000��ښ\u0013\u0018>\\���,I�a�\u0003�l\u0006�R+c{$.����.\u000f:*)� 9��^�\u0004`L\u0003E��\u0019\u001b�he\u000e+lL\u00104��\t\u0017h�\u001cF�\u001f�b�w�|� \u0011q��_0�v\u0001�\t�Q�o=�ͪm��ԍ�s2�\u0000w5�v��a�4\t]�\u0017\t.�\b8}�B>�)mhj����AU�\u0005d���br���\u000e��h3;\b�\u000fw���){\u0019�ù������8��o�[\u0002\f\tW\u0004S\u001e�`gҲ�̎b�_n�)�5fׁ]\f�]o��9h8�\u0001�M�ێ�c�s$���JD#��:��pL(kV\bh���� ��Ug�\u000f'yxMDm2�\u0003b�O�� PҞ��\u00105����IkA����\u0011<]7a�=���|���%�\u000b��\u0007��HQ�qD�C��\u000b�՜\"�vʻ\t\u0007V�\b�^�\u0003�\u001aI\"�A;�\u0005x�����&މ���o.醊`�E�x\u0013ɧߜ\u0018����\u0015O&K�N�����f�\\�1��@\u0003��3�⚍\u0012s��\u0000eclܵ?f\bnH\r�Rp0�\u001e�{��\u0013�w�=��+쓣��rl\u001c?BA���RM�������/(��?d��^���E\u000eJE��5���R��\u000e\u0014�_ƭ�?��\u0011r1�ю�f�Ճ@\u000f�wSa6sZ(ޚ,�NH��\u0010\u000b�2+|F6\u0011��25�å�\u0010*t�Y\u0016��q\u0002�h7�L.��U�\u001d�h�U\u0000\u0019��T�R�\u0006e3d�0\")<>36����R��p'dz�X\u001f8ԭ\u0018Y\b&��Jo3�\u0010�t�Y\u0016�l���l4Zоv<��ڃC�%d����b�\u0015ǜ�\u000b���&�AI�\u0005���ą�4��86�\rt�r��\u0001==�\u0012U!}\u0007��\u0010��ŜhɆ)pV��;zm�~���T�,�t�\u0002B�S�j\b/\u0000S����0ݤk���`=e\u0005clh\\��m�e�'\u0002e\bva�z�����1�ƺ\u001466LE\u001cj�y{\u001e�y��:Fl����?\u001c<�O�42��3��k��k�u\nM&\u000e�����j�\u001bQ������7n\u0003ZĀ���\u0005�\\�'{���P���7��0\u0017�B��X�؊��\u0005/_�5u���ٶr�\\��K�z���N�:��\u0002���~y\u0001\u001e� $��\u0007��d\u0010\u001c{���ԍ��I�m�f�3:�[X�^��NgL�F�\u0015*��\b�<�\u001a�\bI} \u000e[2�\u000b�n�D�mK���%I�$��¼\u001d*�AJ�\u0005����bI��1l|\u0000�L\u0001���x��n��\u00158(w�.�ljQ����\u001c[8���m+��\\�Z�\u000e*����G��]���\u001e^�'5\\�րF@ڤ��Nu��`�$���hY����J�ͫI\u001c�}�\u0010�\u0012\u0010����7Y��o\bSx��]\u0013d���z0�2[���ٹ\u001aM��>\u0010���3st4���W2�P���\u001a��.z�!�U��\u0016x�\\p�ԍ]*�L�[9�[��iܲ29D7K'?�\u0005^�t�]�`��&����8\u0005,�y�a��\u0010�@Zع�NF\u0003�-�\u000b2L݊�l1�?$���\u001bR�\n6�sz��B��ό�\u001eG,\u0007/�t������D\f��8c��B���չ��\u001d���⣜Q��~�F>3�?�(�7�\u001bb�)�?\t\b(�}�� bE�����\u001e_\u0000���Y��e�_\u001aw��EY�`\u000b�1S\u0015C�k��i�^J؊��L��Lί)@�0� \u0017=s� ����0ҹ���l�4�{e��*d�j\u000f�\u0001�@��L��V�%�u��n\"�fH��92���~X�f�C1\u0011,>��ɥ\u001d�n�+������OZ\b���W>�\u00007s`\u0001Si*��z�}��A(�\u0005Ȁ��o�\u001d\r�9F��K�qi�-��\u0012^�|1\u0007;Y�<8�x\u0003�7%Of�1\u0014F���*��̴d]�?�5�\u0018�Ȏ�\u001ao�\u0000ިR<�r^i,�o�����w�Us9(6C�_�ḫ�����\u0015�\u001c~B7�yѵ7�0�����v��\u0011��\u001e\u0003\u0002���\u0000���sF��\\>�I�m;�IB9\u0017�f��nE-�\u001d�^�²<�\u000f��X�Jf4\u0002�A\u0006HR�eC�\u0001�*�/�j�Ui-�\u000b\u0004-ĺRӵo\u000bC�\u0005\u0000\u0000DT�\u000bh��#�3��%)t��D#���\fv�4\u000e#1�0@qn�$]@\b�\u0015\t�A\u0015{��-<:�W��!���Hݥ׎Q�#��W\u001d��AB�\u0005܀��\u001f[mm�Y��>a�b��\u0014\u0014%����V\u0012�y_��\u0005\u0000dVx�E�\u0010h$!5�2����UP�\u001a\u0005�QWA�:U.��c���e+Q9\u0006X=�\u001e��V�\u0005��+ː9�Q馆Dk�D�\u0016�y\u0002����\u001eI���\u0014�B\t*��Nek���e��^R^�f �W�\t\r��&(�l,l\u0012\u000b��j�`���\u0017}#�޺t�2�A\u0018�\u0017\u0005g\u001c�\u0010��_�]kd���\u0012�7�E+�\u0010���p#��t�S��Hf`�ؖ�5�ze\u001c�$��b�L\u0011`�2UE\u001c�N4��\u0005��h���\u001f��\u001b���\u001a�H&��\u0011r���\u0003\f����T0}r�q���O�\u0010�l�s�\fDwMH(�{���\u000b\u0014�\u0005\u000f��1�\u001d����\"���A,�\u0005����n��\u0012��\u0001�`ߕf�'��\u0012�+�\u0018��2Jj�'��Fu,��~�Hr��di�����`x�I�r��\u001c�ul�o�\u001d��\u0005��Agx\u001em�i��-�`�\"5�_\u001e$�#�-.)+\u0001d�\u0004��5��\u001au���Gȴ\r��\u0019\u000f�3\u001fD\"vI�EO������_C�\u000f3`��G\u001c\"��Z�H#49j���s�!�.�@_0gM\u0013\f���d�2\u000bw��;e\u0002v\u0013�\u001c��~M�g���2��Q� 1@m�}�ԕM�\u0018^\fI]~��|\\^�G&�����_�lqa\u0011�q__Ũ��;�\u001a��\u0003�r� x\u0010\u0010�\u0017�)Ό\u001eÇ�ܛF�c�k�$�P��?�VZ\u0000K�\u0002��AF�\u0006\u0004���!q׋\u0000��9�˅.L߼�\u0018?�}����w\u0017p����C�\\M�Z�P��-��K��Ld7;�LBq�P���X7W�����B����b<|H�S�Gߖ�\u001eC\\R\u0000�yST�f�v��l���G�\tM�@i\u0018�\u0003�<��2,�\u001a1���\u000b�>�S�\u0003��\u0015�\u000b�\"X\n�\t\bmV�V��B���'��,\u0018�\u0019\u001a\u0002,�\\1\u0013�4ȁǎ#\u0018k\u0006*�-i�D��Л\u001f����+��\u001c݆�$ue.�k�/��e^' F��\u0014i\u0016�\u0017R`:]\u0007�W��x\u0002Є̑\u0001�\u001d�s�\u0004J�d�\u0014M��|�[�l7\u0007`\u001c G�Y�=�?G�W\u001c\rg���\u001d\u0015��\u000f�\u0002]|�ݙ���2���|XҮȇH���K97T��ڥ�A\\�\u0006\u0018����jD��\u0005��T�;b�y:*J\r=�\u0000���pu� �+!��o�\u0013X\u001f�\u001ch�[8[\u0003ϗcU��\u0015�p��v\u000b�\u001ej|J`O�ˆ�B:\u001c�¿K��X��$8\u00025OE\u0004.�\u001b��!��6EӺ�Q�o2���\u001d��<�\r��\tq䥇\u0014�=��\u0012Z�\u001f\u001bL�w\u001e`\u0000���;qV=0��;�\u000fE���ϸ\r[ϼ��\u0015����m�5}e�\u0007\"}L�\u001f�|\u0013�\b\u0011Z��Դ�b\u0000\u000e:%S\u001d��Oߝ~s�!\u0004\bh|M�M�A�\u0006����%S$D�C��GXj�E��e\u001a����7��+�=�'�\bS\u0014�۞\u001aP�s\u000b\u0017�\u001e��XM1��$�\u0003��z���W�\u001b�Y�d��A��m,\"�'�c�v\u0012�,��6���e]z����\u000e\u0018����\u001a9{S\u0002;��?��#�AF�\u0006,���\u001fZ�<�]��S=2�G��v�iȸ�_��h�\u00120��\u0011�&�'Vb\u0010���խ-;!\u0016$\u0013bF)O�%�(=�\u001e�a�Ҍ ʋ�\u0019A\u0012P�\u0013\n'.\u0015e!\u0002flwtn�H�\u0013�\u0001\u0019D����@p\u001d�Z���\u0013\u0002��`�\u0014�ٜ���:�\u0007�����dO��w�w\fE�7��?�ܪ�ꂳ��\u0017�\u0002jWGX�@̉�Er�od0\u001a�zK�'̩\u0011��9\u00012�7�\r�ee\tҘ�\u0001@h�\u0003-���l���2�7�\u0011��\u000b�:؞�ۨ+ʳ�v�d{�&�pj��B\u0013?\u001b�4�,G�\u0010�[d\u0005\u000b\u001b\u0003�Kg�l;�\tY�tς�_$܎����ŭ{���\r`P!���\"�^(E�U�F��\u0005�˖��¸��Jhە'�AF�\u0006@���!�\u0011=F�o�\u0000�ߨ\u0014-�'�����WE�e\u001a���Wc�PI0Q\rӈ0#\u0011\u000e�\u0019�j\u0012��4�\f�LO��n�\u001a�H��s\u001a�Uѐ�lB*��[8k�p\u0014��J�ב}hD��X?��\u0002���;C��L�7w\u0000\u0010\u001eN�|\u001aC\u001b� ;��6���\u0006`d\u000egH?�ZhD\u001a�pC\b�\u0005�}@�(y-_n}\t����#��`$\u0003�\u0011���X��\u0001;��c�M~��G\u0010 ��VL�{�\u0000�\u0017� h�\u001d\u001b�#q}��T%��Q<�Q�+jsN\u0013�}�\u0019g���m(p�X]J��p��t`��\t@�hր�\u001d�_�\u0006V��^�;�,G�\u0011y\u0013\u0019k���u\n�\u0016i��q>������W(��Gb\u001cFB7\u001ctk\u001be=��7�AD�\u0006T����'���m��:|\u0013Ho_o\u0006�#�R����y`>�e�uX��)Nd��,&T/N�Ї��QT���\b\u0005\u0012�b=��\u0016�\u0004�����)s�2�V��ZrA,\u0017� #v�=%\u001e����\u0002��8�\u0017GR<'�8�\u0010� �!\"�\u0018T������d�\u0005�|�X\u0002��\nsaƃN�2JB3�~5�:�,�ax#��\u001fb��^�m�s�N]��j�a\u0016�)��'\u0013\n'#�9uX�\b#��#7E\u000e�p��m\"�\u0017�\u0012�\u00153���FnA\f�\nm�>,�\u0005t�X��ͩ��\u001e�Qs�AB �o����\u0015c\u0017F;��GM����4�OC�\u0001�g<ю��:�\u001c6\u00142\u0019/��:#4�лK���)<�J�l޳�h�vCΣ[?�9�A;�\u0006h���c�\t��(7�T�=�c����HfF\u001d;]E\t(�x�V�@�a�R�\u0002�]�s�\f��m���!\u00144hB�;g���ž�:\u000e�7\u0017:g6p;�`��oݎݲu�,�E��]�ǣf��!���d\b\t\u001b\u0005��mp��PI\u001f4UN]�\u0018\u000b�u�\tY��\u0016���!�\fJm�\"�kZt��W��7�;�V�x��\u000e\u0011�l,��A-\u0003�g�n���2���t��+��v�5\r��\u0015zR\u001b\u0006\u0010�GZ\u001a����\u0017N��m� \u0015�'N\u0018q���\fu�J�_�P��t�c�PC���ye^\u001f�%G�z)�Vl�����M�����\u0011�\u001dӬ�2�\u0015�W��\fL�7%�\u0001����%\u0000�h��B�\u00028�A2�\u0006|�������+�IU��,OY;\u001f�̥\u0014�\u0007x\u000e6\"���b�\u00042����m*էL�*�H�\u00113�\u001c�Ua\f;t\u0016ĵ��\u0006���\f�\n�Z��tV�m��\u000f�\u001ayGǴQ��?\u000fc{\u0003u\u000b���\u00198���~Ġ\u000fA>��\u000e�\u000fQ�\u0007�g��\rm7���k�\u0011�,���_!\u000e%\u0018T��B\u0006db\u001f���y�r_h\\ܰe$��\u001eQ�ΔS��CZ�k#����;�G1�~�^<�{��8y�v\u001a�+��HI\u0018����Ƿ�\u001f��ﳹ�3\u0004P���a�\u0016w�\u001c\u0014���\u001f�OW�k�fKG\nI\u0010��+�\u0000\u0004&�����\u000e��/br}��4^���T=D��`Vl`JD��T�\u0000\u0017�we���H��A9�\u0006���15���b[؆\u000f�\u001e<�\"������%N�����\\�s?�\u0010\"E⠏w`�������xNe��\u000f��\u0014����1AV�qI�ڄ\u0018b���\u0003 �\u0010\u0001\u00142:K䂘&\u0006~��\u000b��⛳N�j�\u001d��O:h0'{��j��^�9M��+\u000e(�\u0003ܢ���:�ܽv37։�\u0015���kW~L��C��\\ʓ(�\u0005�t�amtX\u0014뒳�H{\u0006�I��\u0019�\u001b}\u0015�ج�\u0002�op̡*�VP�A����Gj?�\u0000ˌ'�\u0002u4�H\u0017�X�]�:\u001d��*z�����'�R\fU�ae�dx6t唣D����/E���)qc.>\u0010\n�OD=�jD�����S��@��Y�2mGp�M�6��[<�ڿ�AR�\u0006���0B˘��9��!S\bH�e�*K�-E����\r}�.o\u0017%�v�R\u001c6�#Z�qUN_��?R�\t\u0012+9�x�zY�m]C<�jи�A��Mt��ȴn�2^�=2[$`��e�L��c��y�4�k 22\u0002u{��f��>Gz�rc�V$�\u0019�=�Q�v���(߄��\f��.�_��+Z�ݝ�\u001a���}��Ǘ��\u001f�}�M�wx\u0018�=\u001a,�k\u0004��<��\u001bgY/\u001e�0��_=�s'\u0013;\u0005M5 ��I�,oD����L>&a\n���\u001c��VuKL R���)0�@�\u0001?8���\u0014\u0018�/�qi���-�8\nߒI�;���\u0013���z�.*��\u0005\u0017n�Ζ5�I�a��5��v�%̯�pK��9Ao��'1)\u0001�4���r[���r\u0000�A\u000b�\u0006���/�7���\b\u0015��!�Ȗ<�đG�\u0014\u0006��{���j\t,��\u0010)ֶ���� j'c+��G\u0010��<ã�Ka�\u001fdw\b\u001a\"r��1z�N>Q�\u0012;�\u001d��D���ad�č�\u0005b u\t\u001dyP�W�\u001e��4v�߷���[���+��\\\u000f��\u0003����އ�'�Xt5N�ڥ�I\u0003�*\u0007@�J\u0005P�>�:�I�5[/;!\u001c.���6�\u000f|�\u001b\u000e\u000b[ӝ����\u0000/��MMp6�����O�P�,+�{����ʅk--�[�vȭ�H7uRi�\u001cԡ\u000f�w�چm�[d\u001dZp\u000f�ՠ\n\t\u0017���no�A\u0015�\u0006̀�.D��`ԃ�\u001c<{���\u001b\u0002\u0019�\t�Z��,܈@��(F��\u001dg���\b�3�\u0018�\u000etN���Ჭ�.�-(\\��N?�����lv�K��kj�vA����bE\b�1��^cN��V�-���mۤ8/�\u0006���W��\u001a,�h��aT��`�\u0015�<,��/'>l\u0006���\u0018N.��E����R�\u0000Ԫ���w��?\bVQ�\u0001�_V���{}\u0018�Ń��7�7�\u0015_\u000f���se�\u0013G��3\f���J�ԕQ��UZy?�{��������%]��>�m�*N�\u0004�\u0014;�\u001e Ў���Y��;�����#m�I�\u0002\u0007\u001c���*R�A\u000f�\u0006���/?��\u001d��(U��I�7\f0��5�Q�#P��4Zϭ����t\"�\u0013�Ts�7iͶ�\u0014\u001f)�\u001a���l5b�\u001e��=�*Ϙ;U��\u0011R�\u0010\\�[�C�����_'�]|O��x�qtp\u000b ̶\f�k�Z�\u0000\u000bZq`����\u0003�K�\u001e�K�y�,ʰ�%�;�\u0005B�C��\b�}\u0004�;&�U�\u001dyf��0ЕP�\u001f\u001d��\b�W��6t�a(�b\u0002cڋ�Nr�k욅��+����)�w0\u0001S��U�\u0001�I�ʘ��pCRk�f\u000f\u0019�u��4���_K��V2�\\�\f3\t.���Ĉ�\u000b�Ӫ`�\u0013�A-�A\f�\u0006��.M�y�u�p\u0012݅\\��]�h�Ѳ\f6\r�[^����g\f�t��\u000e��Yy\f߅�\u001f<�e^c\u0019�\u0017]\f�\u0002!H�u\u0011@q���S\u0019� :ں��HUTԡa$3��kY\u0005P�\fZ%}\u000eI\u001f\u0011��7\u0012���f��j9�A���������d\u0007=5����yW��xmy�?���)gQrU�*)��I2?���,\u001f��\u0000u���ö2���Z\\�%\u0018��\u0014�n�_�������bW@���R��چ^F�`X�\u00013�֧���\u001e���l��J/\u001a��~��\u001eq��^}�\u0010b\u0017��v���dK�����N:\t\u0015�@��\u0007\b��.�s\\��!����(2)�)P�%p[Jm�ܥ��|%\u0015\u0007��xU\r{�\u0012\u0004�\u0005(�\u0016�\u0003\u001b�'��\f;�+�;|��|[\u001d�K\u001a�&��\u0006f\u0017��x�o�;��|]m\u001flFY����\nM�@�\u000f�n\u0011�F��e�� Q��K����\u0017h�'��^-�j��n2�H�Y֜�,K�y><�����`�',�N��Z\u0016��,\u0018���@�~\u000f\u001a��8*_�I2U\u0011y�\u0017lO\u0016\u0017���\r��y:}�>��\u001c�,I�~�}<�6\u0000��㷨�|%3\u000bc��e�S�X�pa��M�ڶ\r/9�*��4\u0007q���Y�6��\u0002�d�\u0010����b�\u001bѐ2᱌F㈰��S��\u0000�\u001d����*�\u000f�\u0010��-%b\u0007��B\u000e�,�e\u0017s\u0004\u001e\\*�>��9I*�E;�˜���A2�\u0007D����ګg�d!;\u001cV�4���*\u0001G�m.����\t\u0012N�Gb�P���U�{�>���[-������fZ{�1�?���=�P�%\u0002�D�>��Ə^�I�E���N^�z���0UL����`���=\b��6�\"���\t#�\u0001���_&���m�T�^U��6��<�a8\u000e7\u000ekJ�@|L\u0015a@X���pV=qM��dlz�;(�ƶ�\u001e7��KP\u0007��\u0016\\���\b\u0000�\u0000ڛ�zK�\u000e��6 �K��� x6\u0005�*!��\u0002�je�]ʴ�V��AR�\u0007l����\u0011V�ʧW�[�5'~!A���4Hu�ڥ�%C�\b\u001a���\b�\u0004��yR����Im�7�g\u0007U�ڳ���\u0018�,`Fk��Υb{P����3�9�&��Y� �\u0001���jef�\u0011��T��VN��:*2�\u0015\u0011��\u0006�k��$N�\u0004�y��\u0000��F9.\u0004���6�\u001by+�(��`z�\u001e\u001b�h\b�\u0000��o\u00020M\u0001;�ğb�5\u0012�\rQ�y�G�N\u0004��c��`��\u0000�\u000euvB\u0012T�#�\u0013�4\u000b�=}�c;�ՅmQ˨�s�O��c��\r�cr���Ψ�~p�9��X����,|��W�s��\r`@��,�W|�\u0013OH��vw�1\u0013�,?Â��z��\u0004Zx�������\u0018�\u000e\u0000T�\"\u0011\u001d\u001dfNVΒH\u00150����_�����F\u001f֧�Ab�\u0007�����43���Qj���$o\u0002\u0012\u001e%\u0010��\r\u0010?#\"���3f\u0007\u0006DoҔ�q�\u0019��n8��\u0013\u0011um\u0002\u0017#D(���\u0016�\u00134��j�gAjmI��ِ,Q\\�#h��\u000e�\u0014\u001b;p��(�\u0012�U�P�C%fPƗ@I\f �^�m\fE5��(F\u000bGvijR�\u000e�y\u000e\u00019&�Ð���۱�n��1���@k��|��,\u0006\u0014\n':�O���wgj~6\rX;(�\b!\u0016\u000b�!ݜ�s<`\u0006�\u000f�\u000f;.I��j4\u0013\u001e?#\t\t��\u001f߷r�¸��=.����\u001f��r��\u0002O#�ZS�P\u000f\u001dΤ�\u0002\u001a\u0012J�����aM�D\u00159�\u001d1�]n=\u001b\u0014*\t��\u000b�����=�[)�j���\u0014�4u\u0016QZϞ��-\u001b�����<�b��1�������\u0010n��h\u0018O�bN�RY6�n��A��\u0007������\u001c�s2/�y�E�p\u0019(9[�\b؍\u0016D��O��e�9�\u000el79�\u0011\u0015������pQ7�rc\r���C�=ԇ���\u001fU�k\u0019yg�L�/���%BVAT(ғ����3��~\u001c\u00119c\u0019v �8�3\u001a�U\u001c2l�\b�\u001e�p%\\ս�2P�cT\u0016\u0000��ͳl�3���.5�e�F])\u0000�Z@s�YگGlT�FI4��\u00118���������-���\u000b�\u0001j�Nj�\u0003Sa�Շ\bj�\n̒}!.5�J\u0010�p驼I�H\u0018����'\u001d�\r<5�M�\u0019/�e;c{-\u001c'i���K�X�\u0007\u000fH�F��\u0004���Q� �^�F\u000bp��Ne�}\u0003�\u0014jI���BV2�\r�20�{?7g���\u0002���;�����ƒ����\r��~\u0003�M�\u0014kW�$t�Q\u001a�I9$�Y�-\u0000��9�A�t~\u0014u������/��Qm2��\b\u001bm&�A`�\u0007����Ӆ]���O�-֬U7l&�k�\u001e�\u0000��z\u000f��~Q��\u0011|\u001c���ڿ�C���g;s�\u0016,>\u0012\u001eS�)�2�vy������ɠ�\"�g�������K�_\u0019p\u001dW�9~����(4\u0015�5�z�\u001a:����=\u001fkD��cV��\u0007�rD�vg�fQ�\bי��b\u0019�\t2��=��~\nn_�2O�\u0013\u0000^Si�\u000e��!\u0013�a�P\u0003\u0004\"?�߭��b�lW7������\u001a�mz%D�u���#\u0000I��^iY2>\\�>b��\\�\u001fIs�?#[ l;���F�d�r�Ig\u0017j\u0015U������'�Mz;��8ϛ�\u0016gr�V\n��Gl\u0011��O�\b��\u0014\u0000ؕj��p�>��j\u001b}u(�ip���ف�lQF�s݈\u000b!���|���zZS\f�\u0010\u0018\u000bI\u0019�\u00118|\u000e���J)�Av�\u0007����ӕ���\u0007�`c�{\u0000 �B�K�\u0010��\t�M�ͧ��}�\u000e�8\u001d��\u000e4�\u000f�Z9W�> UQj�4��=\u0014R;\u001b\u0003Ϸ�\fݟP�T�(�w�®F�9��Z�N��q?����V�C���)�j׀�\u0017O\u00133\u0018h�nhy\u0005�ߏ�����ny�\u001e1q�L�PN@1��\u0011W7[\u0001����>�\u001a��W���(�^�o�C�H��=�\u001d������\u0013����ɪb\u0012e*�Jo�\u001c�\u001eԂd�}K�l]�{�64\f)�:��e)h\b%m�\u0010��%�\u0005�rKϏZOp+��~ц��ybô�+����M�\u0016�KS\u0011$)s��\u0002�m���]h���d���s�\u0002�E6\u0000e�<\u0002`�\u0012V�\u0012vz������\u0003����v�O>�Փ\u0011���[\u0004\u0011ю\t~��A����=\u000bC�;Fh\u001a�\b��\u000f�+a�\u0007\u000e|��=f�(�A{�\u0007Ѐ���\u000f\u001e\u0003�D�C�+��\u0001A��\u0007lg�`���2\u0006�\u0005lSH,;�ش�s@@�%��f\n��l���f8���{ި�X_D؇خ\u001b.?>��q��F��+��J\u0001�-\u0004eKM�V�V��\u0006p䚴\u001d\u000e���=RPH5\u000b���IP\u0019\u001cN<�>���$��#��̞�������\u000eo0��/�^��\n�f��\u0006�ef�L���P�:V\u000f�T�\u0007��s4C~�!\u0006ޫ�������\u0004E�:�H\u000e�$\u0003���Ae���|:~�*�}��\u0011v\u001d6���i�L\t�>n\u000bV�C��-\rI�\u0001�F$)�_���A����OCɾɜֈZ�\\��nH��Tث\u0014�b��h�P���s�jj5��r�\u001fY<�\u0016-K��%s�����_\u000bQ��\u0003���?!'��b�c�:C&|���5^97�…�)��\u001c\u00124MVF�Y�7��5�u%(�AW�\u0007����ܹ\u00117j�?hl��O\u001bִ\u001d����̡�\u0016Nˬ�.\u001d������OS��ќ{P�0\u001d�S�5L�?\u000b�\u0010��\u0007$1\u0010�_iT\u0000�_�\u0011h�\u001d؛\"�DWh\\�d\t��pΠ\u0006����\"�J\r\u001e]�\u001e\u0005�\u0005��v�[\u001a,�\u000b����M;���$�bN3�./�w���JE����\u0011���C������<(�d]ɩ�A\u0016�(]bY\u0014>~)\\2��\u001b���\u0010r\t��c0�p�\u001ey/�\u0005���R�C\u0005��U@�~\u000bj\u001d*rdp)fvC��խ�$IpP0J�\"�4\u001a��>\u0017�\u0004�k(x��\u001ee\u001f]\u0013מ��|v����>hn�\u0002\u0004�ؚb��\u0011c���F\u0016^�c�m�x�q\u00058=\r�\u0016\u000eE�4�Ͼ.p�`R�\u0015���HٰI&)b \u000e#���+�AK�\u0007�����jk\u0016h\u0017\u0006ko�>`�Ǵp��u\u0000�\u0019�\u0004�.��ǵwוֹv��\u001a�\u0014\t\u000eZ�\u0005d�\\�\f|O\u001bA\u0000�ЬC�?\u0016��BR�9ZI\u0015j0\u001f�\u000ex+L�;�\u000e�Be9|ʱ�:W�?\u0000v��d��Ag\u0012\u000b��Yj�-�\u0007�\u000e�k�\u000f�����\u0012��J�����\u0016�\u001b�\u000e�SK��\u0001�V\u0010����ɹ\u0001~�N�e�\u0006�� �.\u0015أ@\u001cq��\u0004_ݡ.=5�\u001f�\u001d\u0003~o2��1CGeHKvd)��ǻ^l�\u000fJat�\u0011�.�3Tnc�WZ\u001c�\u0001\u000e\u0014�\u001f\u001a��*�\r���\u0004��\u0017/�3�Fn2�E��-�\u0002�H���.�{F�֪�Cv\u001f��f�IK\t��a����ƀ��Ν���\u0011�\r�v&@��Kv��A�{ή\u0000��A6�\b\f��.\f1��w\u0005T]5\u000b4\u0004œFC]����h��M�\u000b6�<�H�}&?:�i\u001d�f��<�\"~d?����:O���I.����\t_(�7���t�3\n���\u0002\"�����iX���\u0011\u0011����nz�\u0003��\u0013Ǒ%�\tds\u0019��\u0012$�\u001fL\u0017ߓr�\u0012\fZ\u0010:\u000eK�\u000e�/�:�w8;IVv[t��p�z��l#\u0016B�~D�'�\u0010�\u0010����d���N��?�+����}2��RX!����F���S��Y1\u0017(1�&\u0013���6��\u001f��X;,N�pq�\u0016\\���Ǘ�Ř\u0006\u0005���qb!�\\�V�\f`\u0002�b(�U\u001b>uH�ה��uzf�\r��\u0016\r�?.�\u0002I\u001c�A�n\u0011�n(T�c�A&�\b ��-��İ�\u001a/\u001e+)&H�(sDZ�r$敻�\u001cT�\u0007\u001a�c�aΌ�Y�>G\u00022\u0001�\u0004v@���&��\tH���]\u0007nR���e*����J�\n����2\u0015��X7�\f��z��A�~.<�\u001f*sO\\��饍�G���-���>\u00183\u0014g\u0005~�0��Zü��t[��S�[a�\u0014��c7T?R7mU�\tD��-m��G+{��0x�EX�*N��_�;��dO\rɔ\fj�A\u0017�zΪ7l�\u001f�\u0016��W�\u0014����3g���(~���J3\\\u0018\u0007C�E�5Ξ*\u00026��s�$�]�\u000f\u001c|$�_�\n3\u001f�q��ng�\\��.Iܳ[��\u0012��崨�!\u0001�BS�R�A0�\b4��7��\t{�B3Ͷrl��ϋ�dE��\u0005ߌ\u001a���\u0019�k\u001e�IV�i\u001d�z�rf�'�2keܝ�z��`�\u0016�C�\u0015Nދ��OsD�;kN,�ܸ#�O^5ʃ+�Fw�}\n�.�<\u001e2\u0004\u0014�$��ϱ�HQ�\t����FU �|�\r�!�&Q��Cu�A@��.�1X�f}�\u000f�/_=�X�s3j���vaC��ኰ\u000bE5�(0�F.�C��N�v5mm1Tj+\u0005��m��\u001cu\u0005�’\u001f\"����,�rK��\u0011\u0003�䧗�j�M�\u0012�?\fF8?�mc��r\u000e�h�m��\u001dᢾ=Ё���F\u0015\u000f\u0003(���J��v�܄�\u001du�=\b!#�\u001fۮ5:�\u0004.��\u0004\u0002��A)�\bH��-���)y\u0004��#�bHe9j��o�������r=x}\u0002���p��c\u0005�����G��ؤX��$�^�Y�'\u000eZ;�\u0014`�\u0013������j/\u0001gM���\u001f+\u00145\u0017�\u000e�lJ��J\u0002?���O#�_ߦ�\u0016e\"�)3P$��?o����¾޾�:׀>j�\u0000<ˤ�D�&�a�:ՖS\u0018��0~�3e\u0003�a1#�\u001a�\u0005��X?mm�s�eu��v\\V0�_�w�\u0004J[�n\r\u0019�l���>�]�V�������6<4�@ki\u001dU1���w�^f���\u001f��'=��2p�\u0000�Y\r�撅�\u0006�Q�\u001d��\u0019w�B�l���Q�H�#m�C�\n'��:P��A\u0014�\b\\���xe�u��-)��\u0006W�_\u0015\u0016\r��ڣ�^\u0017�k\u0013\u0001�y@�m#/쿍\u0010M\u0019�EI\u001b�Rof0h�����������\fFq@18L5(�=bmTj@��`=�B�ק���\u0013��U���\u001e\u0000��Bʩ���\u001d��\t�ET��^�0wGz�&\u0017\f�\u001a\u001b�]����=\u0016\u001e7���O?�h�s;������s㵖)6�6���iŸ\f/ǩ\u0015���\u0015�ж\n>s�wR������}�9���V�h�X�I=fᄒO��[\u001be_�qbٹ\u0002���J`�i�}\u0002��YR�\u0015WH\u0010�!�!]�6\u0001\u0010\u000b@��1��W>j@/d��A%�\bp��.�_\u0019���T���^}�H�\u000f{{\u001bWy�\u00106���2��D�CG9�D\u0016b�\u001b�4-Zb\\AA5�p�\u0012�\u001f\u0019�\u0011�k9�2Z��\u001fk�XW�|4E@\tz�&W^��8��I��\u001f��\u001e��/̀a�V��b�\u001b>�\nn)�6s�\u0017˖�͹2\u000b0niC\u0003<\u001b\u0002�\u0002\u001d��{\bL�\"��ԗ\b�^\u0017�c�����3\u001a�3�S�n�d\u00049�\b��\u000f3���c�VM1=6Vߍ�,��\u0006�D5\u0011[���gFt���,\u001e�mY\b573\fѷ�}�F�i�È�\u0000H|\u0001k�\u0011\u001eǼ��Ԟg��\u000b�\u0015��x\u0001\u001b��B�qt���𺿂c���-�7R芤�A#�\b���.Mƫ2�f0�hqL\u0000�y_�F���7��g�>Ho�\u0001�L()P��\u000e��m�\t�\u0013ȺJO\u0010�&گ֢�V�4�\u0010\u000fǍ&��r���K\u0007\u0002\u0000?H��U�ra\u001c\u000e���Z���\f��Q�\u0001��k��jQA�'�\u001e\u0016�L\u001a1\u0013�x?m�4����0�T]e\u000f��qx�t\u0011lʉ�>�d\n\u000boM�j\u001a��\fX�Hi\u000e�m\u0011ު�3���\u001cOBU��633�Nb��\b\u0002\u000e\u001a�\u0012���C��-\u000b\u001a:�v����M\u001a�q\u0011���!�|��@~g1���9V4�}?\u0010گ�b�x\b7��Vhb�9�J��\u0004ޭ\u0018�?����co4\u000bcM�d9�Z�\bgI\u0012�A-�\b���2-Usẟ*\u0017��\u000eo�����NN��\u0006�z\u0013\"���j����:����j�olP��{\u001f�\u00177sX�\u0011�\u00001T2��\u0003yM�\"[uZ��Q���\t ��]7�\u001b6\u0014�ހ}��Ď\u0001�Y�����Lf�=��Z�G#\u001f=�2\r�}@\u00007��E�\b�[4�����Q$쟷\u001c%&\u00185�BQ�\u0012�\u0016<�Kq+(}i��;*�N������z���3��L�4L�&�l�5���e*�ٴ�Kg\u0018x�\u0011�A/�\b���1�\u0003\u0004\tK\u0002�+\u0006��M�%�wԂ\u0018\u0004yHo�.\u0001��FV͐~D����mn���\n\u0016Z\n���\u001c:>��\u0018��d�|lS�N'\fg�\u0018�\u0007G����2�{\u001c5���zq����{�R�(���\u0016���B4�\u0004���3�r�\u001c�Q\"\u001d��cu\u0002\u001dA�Z�\u00115@J�\u0012��1��?\u0007!ދ�M!�\u0003\b\u001f�i�q�<\u0013��J(w�\u0018�k�\u000fM����� \r\u0004m�Ga��˜�=�;��l��O\u0017K�U\u0003J�E�����\u0002��[B�\u001c0����a�FW �$\u0010���b\u0007?u��\"�P�a�t\u0019F>O|o/���\u000f\u0005�N�4��Qo��{�K��6�jZe���\u0017f\u000e�I\n�A-�\b����\u0010z��N@�]�-\u0014��;\u001a&�\u000bO���f�vn�p��MkLZa`B,���焙`\u0000 z�%\b�H扩�����\u0010��v��z%9��5�O�S��,?�P[o\u001c\t��k�3\u001f\u001c�2ڷ��c�Xv���m\f8�u��K���l�X�B5\u001e\u00145,瑙�\t����1���kS��z����j�\f%�I��*\u000b�ٹ�m\u0014�G�\u0005\u0005H�$��f�R\u0019|��x�7\u0019֠زЋ�\nC�b�/�4󀌣�ѿ�~��\u001d����[x\u0002\u0000���Q{�&\b?�H-\"z�\u0004=U3�\u0001\u0013���ㅳ$\u0003t���:2b\u0013;D\"\u0017���S����z'��)잀�E�~��@�!�� �A5�\bԀ�.U�\u000b�\u0016�C�\u001d>?P��@\u0006[7��r\u0011F4�\u0000�\nb�?�G�7�Cɀ\u001dá��:�۲�\u0014��]tz�(���\u0010\u0016�9�<���*מ*\u000f��:\u0005QL�q��}޷��M�r��\u0012p�(JH�k*�_څ�\u001b#b�Nm�|\u0017����(&\u0014C�]�_\f��.~\u0017����>r��It�G�M��\u000bR��\u0016\u000foO8�\u001e̥�G�\rh&�6��� @����ۅp�\u0010�s\u0006.S�\r)de��~ \u0019ow��\u0010g�`iL`7�\u0000+��\r����:L(��G'�Э��7~'��W\u001b<�\u0016�=G�Z{�\u0007�u�ͦ<�W\u0017��R�'�\b�\u000e\u0014\\S����Ig�1\\����}q�Ֆ��z֛�A$�\b��9�)�7�J�X�;���\u0002PX�Ǖ\u000f�ϣ\u001ed��\u0012�;�\u0003�g�RمeOj��$�\u0018_CO��\u0003�P��maI��\n����J\bՊ`���<�)���i�a�r����O��F��jA��\u00175P���4��'���B$�`�#��F\u001d��i>w��/(����J��D�u(E�����-%\u0007��)�(I0����䰤:9�]�9\nT����q6\u00024N\u0013ċ�\u0010��\u0018xH\u0015�dōU��˫*4R�.���\u0018�����m��J\u0000�k8�)�8A��U��\u0017��^�>�P�\u0017�h���}��\u0014+�ƾ}�*��4�h��)R�<��\u0004��A\u001b�\b���.��-�IkCGیeC�H�\u0018������mӍ��\u0013P�1�=�uW�SX!�t\u000b�wF����\u0011�!����5O�}\u0010z\u001b���A�&���l4γ���\u0012\u001bV~�`:��X톸\u0002[\u0002��&ʅ�'�b�ݻ��\u0000K�XP�lZ\u0011}�hT\u0000�����y2�\n�9��\u0006+箄��^�r�[?��OuCB�\u0006'\u000e��>�c�9}\u0013�\\�\u0019)���xX���DC!\u0019�������\u0015� �F�(�\u0015�dԅ�\nl��/�=�W��D��\u0017Pܺ\u0004з\u000b�Ƶ!\u001e{����o��q%1��\u001a��7ĵ�q�߀\u0002�\u001b\u0000���4����M\u0012�A\u001b�\t\u0010����,�rB!)7�{���A�\ta�g\u001c��\u000f��\f\u0002q26�\\\u0003dH&��p� �o�?=*�r�vz�Aթ\u0019���\u0003�\u0018�x�\u0012=‡��A�\u0011$ȥt1Or�*z�+���?Ar�a\u001f\b���8L�ƁP��ĵz%�r��C��\r\u0004'aKȩ��v�s�\n��|�^n�x�\u0001�vyr�X?lфzY\u0006\u0007)�\u0006Sdz~s�{B�`�tQ\u001c����rV\u000e�LB>Ge�?0�����c���w3M��Ǚ\u0010Q��Zh`�\u0018�%\u0003:�(���0��h\u0014p�\u001b���ey�\u0019?�ܝ�Y�\u001b\u0015\u0017��!���}R%<\u001f����O\u0003��łkpe��\u001d\u001c8��e���^e��)C�v\b�!,\u001b�����`\u000b\u0018dh'6C�}R�.Ys�\u0014V\u001e�����\u0011��?�����p\u001ak\u0010� �vc(y���Wo�k�mii�\u0010Gs����e�\fR&��Z��=�p���ѝ~��6C�c���Pw^\u0000nI#>�j�އ\\�45F\u000ex�sH7��`�9&X�7Hy��k.��xFE.\u0001��°c\f���KQ)�\r�Y\u0010Xr\u0015\u0019h�v�\u0018�\u000f����j�Gq�5yc�v� �S�\u0003\u001d\u0000.mB\u0017����\u0001z�Pʤ.�kG\u0000��\u0004�OW�\u001b��\u0017]\u0005��\u0019t\u0005��\u0018����\u0013\u000bI�-\u0005�\u0006\t����8��~Fr�*�F�w�ə늞���r3k�m\u00021���U�-@r���3PbR��@�\t���%��uH\nDrJ獜\rD���\u0012��ٱ*R�\u0005�x/\u0006���2�.\u001f�\u0014<�\u0015�+�9�|nU�֖�qR&�/�IpUL���֒\u0012\u001e���Г9�Cr)���\f�$��4�4pP�j\u0006]��|\u0013\u0001�����ΨE�{H�`�/B��R�\\�\"�NRT���m���:\u001a�wH�\u001f�'���'\\��\n,�y0\u0007����A��}w\u0002\u000fr��V�.���\u001e{H&�\u0006��K\u0001+t�-.�C��P��ר'&\u0016\u0000\ri���rF�m�\u000b�\u0005\u001cf�L�A\u0003�\t���\u0000�\u0001�I}�: \u0014�Mj����\u0007�\u000f������K��̇�\\>�=�)�\nR��\r(#�h{�W?G��{z�Q����c;����c�0�:��D��\u0016R�� 2�\u0003�0[r�2=�u+�\u0019�K�e��y�\u001a�q\u0014�s�\u000e\u0001��^�3�\b\u0006S;��z�1�\u0000\u000b�ѓ�W��;���/t�X'k�˛\u0011'�/�$:����p\u0004B�\u0005�\u0000���\u0010(_�@�\tĀ�\u0002\rj\u0004Ֆ�<���Ȕ\u000ex�F5��XZD�\u001f�\u0004���Uىd���oh��\b״��\u0019���g�\u0019�s71 �������\u0000t�9�q/q�\u0001�\u001fx�#fFH�~��\u0013�-�\u0013ЉR�\u0014?���T�K�\tW([�\u0000\u001d�![1�V��Ǯ�\u0000\u0010԰_��B%V#�\u001elfz�T�o����\u0001����^,s1@��\u0016\u001bJ\u001f��\n�\u000b���g�%���\u00108�ʙ�]eSz�\u0016��cr���c\u0017������\u0002n�\"����\u0016�.�g��1\u001d���c�\u001ca�TX\u000f�@�\t؀�\u0000N+�b\u0004\r\u0011u��4D�8i\u001a6��\u0012\u0011\u0002����\u0010\u0010>nsoΞ�]�Z��Ώ0]�6_O6p�w\u0018�8�ou\u001f���D6b���Scc��\u0001�HQt�pg2��*�k��\u0010Y���u\u001a�\r,m\t\u00056\u0002NO�\u0014̗�s$\u000eɅ�$aJz�\t^��E\u0012�w���\n�C\u001c�?Q�W�\u0018\u0002z\u0005V���k`�薸m��9��?\u000b\u0000�I$e�\t�\r�\r�&9^\u0012�f�#E����{-,\r{��إ�0W�4�L��l�A����O�@��\t��\u0001%8u�(��a�4nJ�Ն�\u0003x�F)�=>��ѐj�.u\u0013��,�͹�V��$�L��\u001b�\u0019_C�$��p�E[��\u0004�۾׽��{�s��x\u0004�]x�\t��\u000b�\u001d\u0007ũ��,�oM\u0001��.��/��G\u0005���g���s\\9Zx\u0018ʼX��?\n�GT3\u0006�p�c�fC!o\u001c��V�r\u0004�'؂:�-�W�\f�1{\u0019�i\u0010�\u0010%\u0005\u0018k�pr�\nw���6���)�^`��u��\u001d%/b�ܢ)��lio��\u001f�YE���z��� ���8w�p\u0004�]���О�?p�Z���@��\n\u0000��\u0000�\n�F!��}\u0005��$/\n�-\n�1���jT\u001aU�f�=�0Sߢ3�@�&���1>��E8��Fq\t���u�\u0013�G}�'� �\u001a�J�;*�j\f&���e��\u0010\u001c�\u0007��;^U�X��:�]\u000433�%�Π�\fV\u000f|����*\t\u0013�m<����D\nI��?�$��'-S��]AG�>�=�\u0015k��@����*L{�7\u000f��\"=�\u0005t4�����;�GB�\u0007�\u0006��K\u0012�T\u0005�9��xd�g�m={>q��\u000b4�S�k;���\n�A\u001f�\n\u0014���\u000e�`o�\u0016\\���\u0007�34\u0005���X\u0015�,�\u0005��w��V̉\u0014�ē�kҕ�et�va�!7+u4\ry%x\u0002�\u0000\u0012�_�ah�\b\u001b\u0016i�\"u�\u001aʔAs$�gGg������Ա\u0014k\f@�;���\u001e�����ɫ?76�!�������݌��Z���_@M�\u0010$^�d�\"�j$�8:?�؈i\bO?Ɂ2^Q�O��&���\u0012>]�����ك\u0014T$-�^��\u000e�����z~o�lX5,g]�۫�,��㫎T86\u000ed �P��4�R�-Es$��6��\n��\u0015E�\u0001켔E��(�\u0014/^;E��\u0016c*�\u000f�\u0014?�H����D\u000eq\u0019�\u0002��A!�\n(��\u0002\u000b�xUS@tk�����\rd�ͤ�}\u0016k�+g�_s�2��y!�8=�t�a.��\u0002}��\f�\u001a��(wa�K��\u001a I�$�\r\\�j�[O\u001c�\u000e��s���I�:(\u001a\"��\u0004\u001d�\u0002��g���X+�g�\u001dR-臊�,����5���g�8\u001f��`+��\u001c&�\u000f]�\fn\r\u001c�Y�\u001a�ӏ�q�g�u��n�4�{�\nu�6�[\u001a�֦8\u001f\u0015V�\u00173\u000e�GW�� J\u000b�g�\u001a�\"?6��ؒUхŎ:��f�/�MMo�ZVz\b)\b^�|'5��\u0017\u0017����F�ԅ+|�Hؙf7�=�3�\u0016����o�!\u001bKr�cQ���Ae�\n<��\u0001�У�4\"�M����e���W>�3V\u0000\u0019j��\n��\u0017}�1G\u0014ON�^<��\u001a�j��\u0002��ғ�\u0007\bJ�f\u001a�\"�`К�j��Ix���\u0005ħ�;uvN�i�;��\u0001J�/�-T\r�J��\u001fv���Nr-I\bԞ�!e��Qhw`��A.ر�����\u0013�H��\r���ĊM2�i�Fb���\u0013�nTh\u0014��Ѿ�\u0017\u0017$�\u0000\tK`\\�\u000b�\u001fI��\u0005�A\t�\nd��\u0014�z��E]�X�/J����xV�S��?����Y\u0000\u0002�Ei�Ih\u001c�_\r�V�Q\u0017�\u0017XG@\u0018���Ɂ��e5���_����D�i֬8t�T�\u0006�j\"������\u001eܹ�/5�l�r���+el�\u0001�\u0003t��³��\u0010�~Er���\u0006\u0013�Ti��(c4��P0�&L��|D\f\u00072$󌘤 $�{|��r�n�NH�/uG1�k\u00073px\u0004A� �U��#�p\u0004��̜�OM���=\u001b�\u0014�\n�\u0014�\u0014#�\u0018��\u0015���\u000fN&\u0002�X6(�!=�#sϥ���\u0013#���NuP\u0019\u001c��lU�)`�mӣA!�\nx��\u0013�w�����\u0014\u0011�t�\n�Jo�\u001b�\u000b��r�LЪ�~\u0012ᯧx����rk\u0017��z\u00110�NP4�S���=�E\u001a��ȥ-`e���\n�U�\u0001�j:\"�?@f\u001fr���\u0016R\u00058G� {��S��W\u001b�\u0016\u0000�\u001a\"q\u001d�D\u0001aX\u000eQ��\u0003_��\u0001bh������\n�W����h\u0016r2�Q���\u0001ow!%�����N��6'\u000e\u001b�4�\"\u0014]�\t���A(�\n���\u001c(@h��|\b4\b?(\u001c�I�\u000bZ\u0003.Q̊/�Y;�ނ�>�a��e3��#_��\u0011{\u0004��y[\u0013p\u0006�\u0018FOO�T��\b\u0015�\u0015�P1�����\u000b�50F���Njw�]\u0004��\"�\nMQ\u000b��i9��\u0014�o#/j�td\u0016\u001d$a\u0002S�j��u��sW��-�\u0014���9�����>�������aJu�霆�\u001f�>}Z��SӮ��!V\u0018$\u0001:߭��f[�耮o\b�����\u0002Q��Mɢ��܄�\u000e����G� \u0003}\u0013��!\r\u0007\u001f�\u0011!�e�\t\u001a��r��|aw\f:��\u001ct�B3�^V�'�~w�\u001797�b�j3YM�={Fփ�������/��ݎH��p���A\u000f�\n���M~0�u�\u001a��R\f�)U\u0015H\u001b\t��ٱ�vdz���d�Q��GՔ@�X�c�K����o\f��{Ⱥ�T���v�g7�\u0018T�aD&�ry\u0010�\n�u�Īno�-q�s�H\u0015 \u0010?X��1��\u0006�v|�N|�d�\u0018\n\u0017\u0014\u0012~�J3�k\u000f�v�\u0007f�\u0016��jh7R\u001f9�M��2$���SR�\f@��A\u0019R����!Д\"$�t\u0001Y��\u0012�T��Qz�L�!�.\u0019 �[a��R�d�~w\u0016x~�L=��\u00102�\u000f$��\f^ȃ�G���U)+-\u001an�\f�\n�d�B�,��W\u0013\nV��I�[�\u0011\u001d��+\u0000%BU���a�A\u000b�\n���L͹J��h}<�4�\u0012�\\y�Ϟ��Q�\u0004t�\u000e��\u0010�O�iW\"�DxjPH��K�b\u0001�\\VJ\u001b\u0016\u0013M��5q�\u0007�WA7���\u0018�k\u0004� W(�\n��x\nJ�\u0015�]\"�Zz\u0000ag6Z��-0�&�ƾ\u0011�=���F�\u0004c�\u0015\f�\u00196\u000bTD��\u0002��\u000b�\u001c!�x��\u000b�t\u001e?\u0003\u0018�J�qJ)\u0018�\u001f�#��\u0004�'\u001dj�\u001e ��6\u0017\b�5���̲��D\u000e�z�v�%\r�>\u000bu\t�GO���AwXI\"��i���c�\u0007���c]+\u001b�Q����t�F�E�N�Wx0����~�\\\u0007��\u0002�6�_��\u001ap�AS�\nȀ��)]8\u0005ǀ�5� \u0004ȿ\u0001��)��\u001e��k* jl�]�$3�\u000e\u001b[���:��\u000b���\"\u0012\u0002�4����\u001c;Eã\u0011�\u000f\u0013\u001d�1\no���5�B���W�{��P\u0017��`7w��\u0016\u0006L�Π̱\u0017�y�Ȳ�����&b-I�#l\u0011:�$��*ݿ;s�CL\u000bFޡ=VW�\t\u0012�rռ/\u000fa/L�\r5\u0002%\u001ds�M~��\u001f�,��\u001e�.\f\u0010ד�5��+��7��޽ͭ����r����<���^\u001d\u0005z�b�\b\u0003!\f�|�\u0014vZ\u000b���|�m��;k���z���A��R�u\f���g�à\u0014\u001e���;V�s� ~(�\u0011�&B\u0000d!VNl�>���e�zjb_\u000e�\u0011n2c�\u0011�qJdU\u000b��m��\u001f\n���c3\u001c�a���dH\u000bT\u0002��*ͣAl�\n܀��\u0000|ܬ\u001e\u001f�]��\u0011Y߼�\u000fԊ���s��*Г�&,D=��?�M�c�\u0012Y�\u000e1;���Oq�\u0007\n�E.�\t\u0010#� ��_�q�EA<�\u0011=�}X��y�m�V���{g�e\u000fOtN����R�\u001b1}��l�\u001d�����������\f=�\u001d%GE�0F�\n�$D�T��r\u0005���\u001c\u001f��\b�;��_�x�\u001eћ\u0000��7N�i\u0019b��K5]dǁ��\u0015P�s�O�f�]q��Mvy�r�ܼ\u0010��(^\\\\�\u0016,�k��#\u0011H\u0000\\@ \u0017E�\u0011�ߪ\u0011\u00196-[O���\u0019��N��\u0013�h\b\u001b9M���@��Sx�\u0013)\u0004�\u0013F��\u0015\u001b$\u0019=�\u0010_�`����1\u0007\\D\u00167�l�\u0010o%�ǰ�,\n�ʼn�0��1��T�U�:�\u000e����dn��)\\Z�1\u000b�C\t�9[�\u0013�[�YA\u0000�J�z��ͣAP�\n���æ$��]��\u000e�x@6Gv'\u000e����1��p�o\u0016\u0012\u0013\u00026��/\u0003%�l8�y��r^9\u0005ạ�*���>�6�@��1\u0007��k��#�\u0014\u001c�\u000fU�8W�\u0010.\u001d\u0012\u0014��M:U�\u0001 Y�\u0002�u��Q����/�9\u001d�pU������ݎ�o��܊�rnu�I\u001f�7\u0002�\u001cb�K�F\u0011\u0016�\u0013��\u001ed\u0002��g���e��(dE��\u0005���N��|=p4+�6\u0003�TUͯ�#\u0002�7�ko\u0013�������\u0017�Pb��a>\u0003�GN��:\b!!0����\u0019F\u000e�&�\u001e$����p�3&�y!T>B\u000b�K\\�(�i�AS>�\u0002S;��|����x�W��셴I�\u0018\u001eƁ����0\u000f�%\bk;�X��>����8\u001a�f)�Q͔$`�w`�\t.�f\u0016p�+�O��E\u0016\u0005һ %r>�t����\u0011��ZM�}�f�\u0018�.*\u0011,E7�\u0000\t�G�\u001f�HK��\u0000׶ϣAA�\u000b\u0018���)c��G������T��W �~\n�V(��\u0004\u0007J�z\u0012^\u0018�U�(�S�*_��؆����;q: G�{\u000f�^-;\u001e�qi�j���()�U��\u000e &�)���j��l���`\n_�3N\u0002�et�Xb1���\u0018��M-�[�~q���^��T�\u0005vV��@-nn�i��|�$t���NI([8\u0017z$ң�*y $�n�\u000e,yv\u001du�Df�ɧzw�+��Wf!�T\bD����\u0011r��B�e_\u001b��,at\u0013���,��W�g��2��\u000b�8s\u0015��X���\u0007�\u000e�\u0019����\u0019\r�\bc�2��� �\u0006�\u0012;!%�[+��7\u001fzj�\u0000�좝\u0014ܣ9p�1 �;$�\u0015pę;�?�\u000f��Gv@\t\u0001,nK�eɣA*�\u000b,���)b�D`�iN�z����E�b�kk��w��>\u001c���Z�\n���7N�R$��6'R\f\b.��w�����*!����Dr���k[��\n�h㩴��yA �\u0011�f\u001eV��;\u0012@���k��@�G�+�\u0014-�th�=-mT��\u0010R>\u000b�Zď֣e3�9R�27����\n�e\u0019����%��r\u0007��E��t��\u001f]̗����\tܳ`ʴ\r|H͐2\u0004?�^�2�l �\u0014���[��F@f�i\rY0�\u000b/^�`����[�h-\u001e_:��\u0000\u0012�\u0006�=��'H��ipϠ<' \th�\b\t~�\u0007�)\u001d���\u001bZW{\u0010[��oB�\u001d\u00117�\u0012�sA�����}ԑ��A\u0010�\u000b@���)^����\u0010��c��X�\u000b���\b�\u0015�T\u000e:>�\f\u000f����\u001a��QI�-\u0017%��N0�@s1����;�\u0002lZ��E\u0006b�\t-�e�i}�\u000f!�!g���C\u0019f��F�yt�<���4w�����\n�l\u000e^�3�\u0018�F�kRi�{�S�MWo���qG�ɧ^�A\u0016\u0017�Y)���\\�z\u0005Z\b%���h5���V�t��k�f\u0006�H�Z�L#�;b\u0011�6H�Tr]�\u0000>;\u000fN'�BE�l�;2u��\u0011�\u000b�\tj�i֧�̬'�x\u0012���\u0017t�rp)\n\u001bʽi��3Q\\`g'W��2&��5=8�in���Ѹ�A?�\u000bT���)b\u0004�u�S�j=\u0010�\u0014߾���\n$/�\u001aV��\u000646�l�\u0014P��\b��ki��\u000b5��^,�!y\u001f�\u001aj�\u0013���g��A�h|�\u000b���/��t��&yxP�,����e�b��U��o\u000e\u001b��,�Ӄ*yi��\f���j�L�-�S�%�����]�0�.%\r����wP��U���³��X��]�!\u0013�\u0010�aeJR\u0018��K���77@\u0003\f����v�hW�ip�E\u0014\\��TxK���9uֶ\u0007��\u001b�]|�Hхp�\u0013��� BA��\u001b���>\u0003��a\u0016��'�k����AI�\u000bh�����V7�+�r\"����\u0002K�\n8u�\u0002�h�N~\t-�8�LkQ�2��B��R�\t�\n�v���m\u001f�\u0000���r\u001d�g�N\u00006\u001e�!��^&��vO��p��|\u0006�Eq�&J\u001e/4\u0011�>\u0007�}Cen=m$���\u001f�\u0017��\u0017\u001e�Y��\u0019 �V�C��&���-�o���\u0012U\b1�w-^�����uSS�k�?��\"N\u0007׸�&{����S F\ral�\n�� \u00124��\u0011���0�3��<�ˉ\u0000SB�y%���ŐA\u000f\u000fl\tS>�k��\u0010�\u001d\u0004ɗ�a�*�0p�w\u0011J{�x�ߓ:>����uF��ҋ�,h\tD��0���'��\u001b���K��\u0011�w����LpdƑ�z1�Qo�ٍI\u0007d\u001b��ո�$T�RU����A9�\u000b|���H¦ǂ>��\u0017�3`IJ*{�t�Ŷ��Q_V\u001f��Հ��y4�p$�!�{�`\u0014��}��\u001fƒ��]V�rB1\u0018����u�d�m�������^�tB��\u001a!���O\u0011��48�h���=�%Q\\h�X\"=�L��e˞���\\�!��.�?&�z�r=�e�\u001f<���7�$X\u0007\u0005t\u0014�4��҂��%,���\u0018kH�Y�0\u001f�h�;{�\"\u0015@|ph�g�֙�\u0006��\u0012r�\u0014&��\"(�������\u0004g\u0012\\��y����6��\u0016\u00028�uJ��#nQU�\u0012 E��(S��\u0004\u001f8\u0014/\u0002S\u0004�(\b30��:�_\u0013\u0002R�\u0006@�\u001b�r�Ż��#P���^&]�\u0004œ�\u0007T��T\u0015��AãAM�\u000b�����2�\u0018NugR�\r�G�\u0019�}BW\u001c.<\u001b���JYѤ\u0004�ڴ<\u001b�\u0019�U�\u0019L�K\u001c�\u00039d�I\"��;@��r Zw�sg�Ƞ�\r�M�\u001cO��*��\u0006q�0X\u0002�\u000e��]\"�D\u00150�ګ�\u0014��+\u0003�jp�*�֬��XW8�\u0018���>�\u0013�fZp�s�mH�S\nw+��H���b<=GL!ճ٢Fvh��4\t�\u000e�P���|5E?\u0001VԭP���\u000e\u000f\t�H��F\u0016��\u000b_��,G\u0017��9Or\re��n�\r�o��.�/u�\u0013!M\u0004e�����C\u0018n��_d��H�A\u0019�jg bj5`+\u0005����P^iRQ�\f\u0010p*D{ޣj�\r�w�G#�e��>'�Z.\n\u001e?�n�)�JKI�I�(8$��$H\u0010\u0013IaPk�\u001d8��E�AB�\u000b����\u0002Fh4�W�!����)q�E�pj�'8U�T��i\u000b�}\u0011�K�\tya�)�\\��9A��˚��$��#�c�K� \"E�s�\f�T\u000e�H\u0000\r��+TW�6-�����*��Y�.U;��3\"d\\@o3���,�m���^�_�eʴ��A�\u001d)P\u001e���(��\f�\u001cA{I�\u0006��w⛫��\u0018��\u0011)�]���\u0016)��1�Bt�� �2\u001c���\"�\u0000��o.\u0016}\r�'�Bf�\u001b\u0004\u000e5��G��\u0007T��\r���Aˑ�'�SQS�ȣtU��w �M��\b�鱮�|�twJ��N�7'N*x�O\u0006��{a/�wf-��[�#7��q��!:+h?I��.\to\u0007j�U\u00072W��N�\"+\u0004����&��$�ţAQ�\u000b����t�S\u00058a�����a��j\u0019���h�L�<��dʆs\u0007/�-�akt7u,,H\u0015��7̱�_@�G�;\"��\u000eQ��\u001b��>�\u0015����\u0017zE�7���\u001f���\t1.����i�\u0004\u0006��F(��S��J���Q4�\\�\u0014�\u0001��\n�?�̫'�\u0006 =ŝsmS-k\bŲ��<�\u001a\u0010�T����8X�����F\u0013L��3!\"=��\u0006�������p�\u0000�)���\u0019�&\u0003\t���\u0000N#8���\u001f�\u0011\u001aA۝\b\u0003�ؓ\u0011ϑ��Ч,f�]LC��a����gh2�R'\u0014%��\u0017:�&�X�Y�\u0004+�q��Ir�\u0006:{.��\\\f�B�Ёy���p�S���\u001e\u0001����T�\u0006r�t�.����<��ٱ�e�͙\u0004��ܺ\u0000,���G���Ad�\u000b̀�Ňo#�L�������6��%�\\��kQ|.���Mb[\r���N�>w�\u0012�I>��Q�)ZΨ\u0007p\fn�=$�jo�\r�Z��uc\u001f�x��o�M�6��t�f���a{w/\u0012�v����%�����\u0018����e�|�s�\u0018��B��(���h���ȃ���\u0001_�K��k�Y�d\n���F�����R�\u0017�%�U63\u0003���m�\bg^K���\u0012�'\u0017�\\Ө�\u001f�D5Q_ԔFU�\u0010�\\P�?\u0004��v\f3\u001dl}�\u0006��\u0013�E�\u0004\u001eX�h�r?������\u0013�\u0005��\u0003\u001a�n`���Y%�O�Ұ+\u0016\u001bػ�\u0018�۴�qo�'\"NӋ\u0010�����\u000e��S��p�\u0003J��*�\u001e�8Sי��0\u000e\u001fa��P\u0006�G�\u001da�v(���{���V��\u0017wj�\u0014��_�\ns~鼣AD�\u000b����b<6���tΓI�ۣ���\u0007�\u0001�7t\u001ex�eBr>\t��C�\u0004/W��\u000b\u0019x:v���tZH�4C\u0007��#q���:�9���\u00076빝��|�Z�i0Lb�c��\u0013�?ộ��6\u001f��\u001b��jH����؂�`�ߗC@O�ӈ�Z\u001e���h\u0001i�\u0006f����:��o���\u00185����P�\u0007��ϟ\r�r�\u001aaj� ���/�DTh��\u0016tO���{b_��!�\u0010P�,ɬ�j��kٚ�G��miG����8l��\"_�d��th)+�/���W~ƍ�\u000b�\u0001\u0000\u0005o�]ύ_�TDB��\b���*�=I�HW�]���x]^ڤ�A��2���W\u0010K����~��\bOi��f��\f�����d\u0019��Am�\u000b���\u0002\u00147/58���>n�\u0018�}�F���\fn�w&\u0006\t�i�\u000b9ǐ\u0012�\n��v�;��.}�q=\u001c�\u0004�E��4��]M�\u0010r7�K�x\u0017bGlXJp��v`n|�\u001bs<+�X�l��\u000b\u0016�\b\u0004��i��g洹h\u0006\r��\t��1\u001e|�\u0012ca��\u0012�\u0016x~�%l\u0014��\u000f����P�#��U�\u0004\u0018�$��(�\u0018)�k�TC�v���'��z���7��d��{M��J8��x�x��6F��\u0006�뢤��-�j\u000fF��'�~\u0002\u0019�X\u0013��:\u0014���m�\u001e��Y!����B��O\u0015\u0010Ů�R�1i*(-E ﭑ=��&�#��|�\u001b�\u0019��b��¾������͇��S>�\u0007�����������$� �J�T���zf�\u001cW�\u0013�M�ҝ�\u0015�ra\u001b��\u0012�\u001aV��B�w�^<���C�ģAC�\f\b���\u0005p��/\u0003\u0004P�$D!����Y\u00021R�h�����f\rC�&i5h\r�x�|*�`��%\r)�\t�\u0012�6tA]�Ҋ\u000e,n\u001fH��\u0016F�r�6�\u0019.7Ĭ_y�[���J[鹰��/�M|DI],1xV\u000e�\u0013�b�#\u0014�\\W\u000e�\u0004�\\�4�ܑ�2���tg\nɌ\\Q\u001dL���/\\)�L�x�?���C�+_/\u0018��^�\u0013�M\u001d\u0018Ѩ\u0010�\u0000?�\n�\u0018+y�j�H�:\u00100Ϯ�Xƅ�0��DrW\u0003��UCIYq�\\.��=x]�\u001c\u000b\u0016V̖�m?Ж��\u0010K\u001d�Bu\\��K\u0004 �@@����B\u000f���5�4�\"�o��\u0019ɐ+�Ӈ�,���5����\u001f�e\u0004\u0006�\r�w\u0003\u00108���n=l�a�1\u0010\t�W��TuƣAJ�\f\u001c��“�5�‚ق��:��/���o�}~a�躆��\n\u0015�@3�s\u0004P\u0007x&a���/*����:�\u0010_v��<}5���\n��\u001e��\u000edӔ�*P\u001dϯBʿ%��\u001e��QY����`d��N\u0019�,�|�؍K�Z�3�%��ė�\fQ�?����\u001eP< O�s�~s(\u0019����N����\u0002fS|�1xO�<8P����\u0000w՝��@�[NoP�v%�4�1\u0000M\u001aXh)�����)v7K7��]i+J�\r�A#\u000eu\u0007�d�*]��<\u0019\u0002�=��\u0004���q�������{A+Q$�|\u001dKU�~��\u0002\t\u000e �7��\u000f�LO�:��\u0012�&��$�\u000b��U[�m�\u0018z��^\u0018l��b�7�\u0016��~���y���y\u0014$��D4\r�='=��DG\u001eK�m���\u0002���ue��O�\u0004�_\u0003�\u000b(4�&=\u0006\u001f��J�߸AC���Zu����v\u0014�\u0017�\u0001��7W�\r\u0018-G\b��c\u00141��HX;�k��e,�8&�0��n��>C6�\u0001��\\\n�\u001e'4Xc.\u001f�\n���=\"��0�☈�)���\bdA�R#�F�>S[�\u001d�F�adZJ_v����\u000br���\u0013ōI(�9��A��\u0003b\u001b��o��\u001c��k��d�{�@SM�� ����c�/;Av���}�ƩU掗�s�\u0016H�x����嫜\u000e��.�\u001c\u0002\u001e@\u0006�ޒ}:���\u0016�k�\u000f\u0006��\u0014\u0003�\nQ�{Y��j[wڮ�n��Tu�99\u0019�E���o�ģAn�\fD���+y?�T�]O�'�T��ER/:wʱ�4��k�¢x|�8|a])?,�/�٫�jt�zOp,̋���Y'A�\\��\u0002\u0004\u0003��n)y��\u0016چ�\u0014�^6\u001f��J)������/�.3B��,\u0001[?M��%e�Q{੣b�v�E}u��}��`\u0007�e,��DZP/�\f)�\u001d�\b5�Yc\u0001v�$���G\u001fד\u0007[\u0010�F\u0016M�JRU\u000b4\u0017;\u001d��\u0014���p�!�Z�ʛ���@2^!��\u0017��c���\\�T7y����=�Qxk�<������Q��/��Fr��m2����lHjy����\u0018��\"3نҎ\f�\u000eZ�^Jb\u0000@����~��Ŏ�P��&+�0c�\u0007�\u000fH�E�\u0013�\u0019lW��8�|�.\u0018��j�!F���ivv��b��.Q�j����� 1\u000bz����$Dt���a�y+�\u0011@�A{�\fX���+i\u0012+&��ڿ�Avv(�@���9��\r�ޗ5yqVL}�\\���\u000e\u0004�Va���\u0015�\u001c�3�,�\u0007֘\u001d!\u001aT\t����kT}K��s\u0017j��Y��\u0019��U\f����DF��\u000b��{f��Eq~����5�\u000e&\u0004J�J'��\u0001R�q�Dz#r�\u00194{��yC�\u0018�\u0015E��bG+T&;/�8\u0017����\bKH��ߥ���\u0017�KBU��U�>\u001e���O)��.�O�^{��\u0016=VY�Rm�\u001d���fOx�zmf =�\u0004��ஃ� TR\fӻ����\u0014N���l�@���\u0000\u0011\u0002Ϣ�tr�@:�\u0007byl���6�\u0003�#�`�l� �\u0001SXmL�'�մ\u000eW!/�^�t�\u0001\u0005��Ok�Ѕ�\u0011A��\n\u001cP�\u000f��\u000b(\u0015\u0019p?���\u001a'�q`f��Ȭn@ɋ\"����m�|@����N��eN�n�DM�\u0005M\u0007t謍B�Ac�\fl���+s�c8JW���;��\u0019\u0018\u00197\u001a�G��&�\u0019�\u0006\u0007E\t~\b[mk�Iv��.���N�͖�t��N��?y�&�/}����y\u0012�Q�[�Fh��{�P��N;f\u0018���8�k\u0001\u0004e��s�N����\t��Q}(J�����ɀG*A\u0018�Y�cv\u000e��>f2\u0006-M\u0010i�;�-��\r�-�mV��[�y�6��\u0016�M��o\u0000x�,�W��ް\u0007\u0012\u001e���g�x�\u0018;vW���\u0002��pf9�J�*���f@4��ݶ(r;� \u0002]a\u0001�Ej��1\r�ts\u0010�@���K؊Z݆�l���2P�\u000fTv��S�R��wi��P\u000fB�](���'�\u00043\tC2E_\\c�CA\u001a�#��}3u\u0014.afs\u001e��\u0014w\u0007\b\u0004m�x\u0006R�A�A^�\f����(�~�rI�6'�]��]��S*L;^\u0011����?\u000e\u001cX��9\u0003�(��%�a�w%� \u0012�6Fzb�D���m�a#\u0019�m`2FbY�1�1\u0014�-'_4���\"m��>'�Y�C�X�{�\u0003�@XE�!�1��Y\u0012\u0018�\"ۤ\u001c6���7H� 9�\r�H�\u001e'�l���Mm�FLQ�A����\u001f�~g\u00128\u00121\b\u0003����i���ֹ\byjU~�IZ9{]��\u000f\r����t�*l d�-S��?B�,R~#��i�\u0012�2%���\u0014��E�\np�\u0005j�����$��=�\u001f�\u001e��\"�Q�t�QE:�X�;\u000bc\u0004���h�%6}29�\u001cۣ]����\u0017|r`�t\nP\\s����\u0005\u0010�s�:6��y��̿[�1F�$�OF\u000e���\u001d��L\u000b\u001c\u0002�#s��\u001a=����A�Ae�\f����4�Z$\u001c��\u001dR:\u0001&A\u0003��r�'Z��}��=\u001d\u0001�\u0004��\\'����\u0011���(�\\]q�Iķ礊P[6\u001b�GK6#yνS������\u0004\u0000[\u0015W\t�\u0010���\rN��BM�,�0�T\u0000A�\u001dJ���W���\u001e˦\f0\u001d��:�v�ǻ�\u0013�\u0012�_��ie\u001f�\u001fP=��\u0006ʖf��!���D���^�\u0011��#�b\u000eMӛ\u001b�=\t=ɷ�z���\u0001��������9`��\u0010(\u0010� 5_TF�<��>�\b�\u0014�?\u0013\u0018[�\u0004h��A�����~�V��\u0003�ũ�\b|�K��PUE�k�������\u000b�3\u001b��\u0001H \u001b#oh9���e\u000b�Vխ��w`�䗘\b*�RKj��m�D\f~(W5�NO�\u0017p�KG��Ӹ�8��\u0010M[9�{�e�\u001aGb\u0010��\u001a\u001a2�Փ�@�E�A%�\f����+�w\t�\u0001)���%�����}�X �2J�8�NK#\u001eY��\u0006zbwn\u000e����w���%�\u0016\\>r�i�h���=ӏ�5\u001d���(����\\RT`��\b�q\u0019%W��X�E\u0010��\nI�\u001a�I�N�~X<�d;\u00062�F�\u001d�X׌��bQ�\t��m`�;S95��\u0019\t�����\u0005W�\u0005��r�Zݒ���@HA�.td���\u001f�\u0005N\u0005C�\u0014?\t\f�\u0012/�V��H���}�\t�\u0015��O�\u000ed��GY\u0001���h��N�ރ�\u001b���v�9�\b�bƭ7�g�\u0003��q��2��|�\u0002]��2\u0007B�;W�T��/s/�c�\u000f��I&M�q4�&B�\u0002\u001d(y>A�Ag�\f����u����'�����S:��\u001c��H����#زh��\u0000>K5Dd�����X\"�h�M�����[ �f�\u0013��Y\u0001>Kq!q$�+ĥ��Y�\u0019�\r���%�ŰjM�8m?\u0014#��\u0011��\u0010W�\u0015\u001b\f��\u001dkg#S|�<�%����o��LFŐ\u001f\u001cΥ0��*�2�U\u0000)A\f�������\\�����o�mp�w��>�t��Ta�#Yj\u0019|\u0000\u0007b��\u0017\t�u/����\u000e�`�fdY�N��C8K�\u0010aw�\u0010�#^���\u0003�(\u000f�\u001b`��F|��&3�,Ѱd\u001cl�b,E(C����7�\u0013;n�����\u0007�\u0013]�BW\u0003=\u0018��*�–9/O�K8 \u0016\n������� �Ѐ��X\u000bb�ֱ�\rɜт���|���Y�)z��$���1���]8J�\u0012\u0001 xN�$nP��I�B�Ap�\fЀ��+t\u0014\u0011gG�DOș\u001d�&2�����\u0012\u0013p���\u0019t�\u0018�\\\u0019�h��C�Je�)\b�\tL�M�w���Ra���z\n\"�|i��u:YϹ�e��-\u0013*1Eى��*\u0015\t�/o\u001b@ଏ\f��͉��-�z\u000bF�J:+e�\n�ޢ��Ը�Vװ�)����\b��b(k\u0003�\u0001�\"+\u001a�ut\u0001\u0011�\u001bѤ�_\u0001oZ+\u0012\u0010�\u0000,<��s��\u0011\tڊ4�\u0002�hM��3Qdb\f|ۣyM\n�[-������d%����pY#sO}{��~o����\"��11\\Z�6u��q�\u0005Z�{�R�ذ\n\u001fǃ�����\u0000�T���U\u0002Ɨ�\u0015\u0003�d��~v��W�fPhy�{^\u0004�1�0O�������&DcE��GHs���p(�R�]u\u0003Y�`|w3DѶ��^:��a�;��\u0000�?���\u0006�.����VC�Ah�\f���u�l\u0010]\u0014\u001cʴ�\u0010bBq�=0�u��w��������@\u0011�g��\u0010~~�\u0014�u\u0016�6I\u000fr0\u0001{�O\u0002��%�ˮ��\u0010\u0018��\u0011�x�mW���{ɐ��-����[r����n�\u001f���Q�?��h�� ��9ԯ�9Q�x4~SL$D����g7z\u0011�X�\u0005&�Z4GRu�_=��\u0018���\u0018\u001c�\u0010I-\u0013�s+\u0013�D��\u0004q��}��h\u0012At�c\u001f�Ջ4!k0P�8��\u001d\u000b\u0017�F͡\bf�\u0000��4���\u001e\u00027�-���4+�}�:��~����\b�\\V�\u000b��m�n}�&*\u0019\u0017�\u0010<\u001e�<:w��P�+L\u00014$��k�4\u0013\u0013�A��_�6�X�Ά�\\������A� �\u0019���\r�\u0017��?�{\f��ۆ�k&���剘ۓ�j$*\u001e�|>M$&�%�65pm�U�\t�B�A\\�\f����\u0002UU\\d�Ѓz��!N!zVX\u001e�&\u0003�$\u0015\r��a�Z �ߗ\u0014r�>Y\u000e\rm�M\\\u0003\u0003ω�\u000b30��\u001c���7Ȣ��b���ڢ�H{��\"\u000fȓ�ݤ���;����8\u001e�TLӶ��@0�8i���s���Vo ���z5-3yB\u000f\u0013��\r67�\u0013�t`%���ý\u0015����?\u0015��;u\u001eۄ\u0013VՎ[\u001ea��\u0000��Ѩ�E�x���9�W�\u00070�6�K-����Q�L\u001b��.\b!�=ߺ�\u0017d�\u000b��D��Np�?�4��\u000e�\u0007ƒ��'\u0001��?\u001f�h���}�O�˗a\u001ek�,�\u0010\u001dVC\r/�\u0011�6��\u0006Ʀ(\u0006�Y��\u000b��\u0004}o;3O�ފ�8�k�\r=U\u0011$�T��u�=d�[g��\u0010R�$\u0017\u001fr�`\u0003e�c-\u0010�gF���8�m\u001f�j_�t4VB�A��\r\f���+��P�*�\bi�\u0014\u0003��\u0002��$���\t\\\u0003\b_��2��\f\u0001\u0001�o>6\u0014\r7����p��0�Ƞ�\u001f�0f�Iz�\u000b�L�5���:F\u0003v!\u001f�>�;��\u0007*z���\u000b��YSk�Ӡ�a�w��Zh�\u0002�����{��犉oB��r%��_�zEФ�\u000e�Ӽ�Z���+ct\tJ\fS|\u0018\n\nҶ�K��5C�����⏙yD�b�����\u0006\u000b\b\u00071�(E\u0015�J\u000e�A\u0018�g\u0018�w\u0019`:dE��������\u001b*�X�z���uB�[�_&?�RbƉ�l\u0016\td̠�\u000f+�tz|\u000fHXq�o�Ւn\u0005�\u0017t��gb\u0004��V���ZOZ�f��\u0014����\u0012�5�,��<��\u0005s(=��Fo��\n\b9�iT����kx,����_\u0007.͖�*3���E�&\u0006�X��V8����x��\u0015����<�u��̻gW06�W��\u0013�n\u0019�q��A\u001c\u0001�\u0015\u000f\f���D�a[��zw\u0002H�J�\\ 5\u000f~)BR���q��ΣY�{��w���\u0017�d��&\u0012lk��0�3﫚wF������rʩ�vhF��\"�\u0005��\u0017P~��đ\u000e��ۜ7�\u0004+{����\u000f�\u0018k PF\b0w\u0005�D҆Z�\u0004��Q��,q��F3��߈��U䁿qQL������|���&�\u000eM�j:��\b��~\\�\u0001�\u0006�bN�>��\u0006K\\!�u\u001a�c�]J�\u001dy��ãAp�\r4���+���O�#r\n>�\u0019�r��\u001d��T�->\u000e\u001dɓ4?� h��\u001a\u0016_m���\u000b\u00162�c�[\u001dZ9�c\b�\\�S�|����d�L\u0018e����%�½�A��Y|�\u000e�.�\"�7��ΙH��1\u0019h[���@�sCm�yZ�\u0002�s���I�\u0013�\u000e����\u000bѓ\u000e1K��\n@�\bq/�\u0018{\u0006��/� \u0003��\u0003�t��Q틇x����e���(ݛFXM6��Յ$?�v�/�\u0001�4mJ:��N�m\nI �j�j��n\u001f�-���\n7����7�B�ߍ�PR�\u00059O��\u000b�\u0006P\u0003\tnH���M�1&\t���\u0017G\u0006��K{U��K�\u001b�p��d�b�^*\u0013v��\b�R��-s�>\u0013\b�,�!��zLO\u0018c\u000bÕ�6�\b��Mr\u0018A�\u0014Ǖ]R3��\t�^��5���gD�v�T�q\u0012\u0013��\u0011�\"ãAx�\rH���\u001fZ\t�Jv��`\u0017G��8���]����\u000e6��n\u000f�a0��\u001c���0b�\b/�\n3���\u000fn.�C���\u001dDk�6\u001c6\u001c�\u000e��\u0004{kg\u0002�=�\u0015(\u0016(�\f\u001c���H\u000b`��j\nC\f��\u0016��+�ebHZ���\u001b\u000fj7:��k`�3M�d���W��E�M�Z\u001au�F>n�:7R�o\u0000��<���^jjQ\u001c\u001e��\u001fc�\u0006\u001d�6���9�\u0019gt�����H캠�Gi�R;���%���V��7��H��\u0013-�9���\u0006Zj��=��1�K\\gA\u0016ٚ�ST��\u000eye]\u0012P���[�H���\u000e\u0013����ņ���S�$k6�B\u0001\u0011�s�ޣ�=8\u0016U|\u0017H���y�\u0000��v�\t��k2L\u000b��|�\t�.�\u0010�\u0002r1��.:,\u0016캴����өC��>$\u0001\u001c�G�Q��ǂ,��/qD����������\\\" Y�B�Ah�\r\\���+� �\u0001Gz�����I��\u001b遵�{\u0001\u001d�αc7���>�Kߤ�u�u�u\u001bo�\u0004)ms�u!{��9]������2��\u000b4\u0003\u0002�r����mWE�Cy�\u001c�0\u0003O�J�>���k�2\r�Ū^��v\u0002�wj��\u0000��C�(�k\u0011h��\u0005\u0006f!\u0002ȅ>/}zʉ���JVS�DZ\u0001y�t�ց[EqPeV3J�$����2�i\u001c@��K!w�\u001c�yj�*����d/� �}�\u0016+X;1��@V���Үq��3�J?�����#CY�$&P�w\u000e\u0001�;B⡻�\u0014�s��:|pyf*/��b\u001a�\b�_\u001abK��\n6�xF��kb���\u0011�8�.�\u0018;\u0012X\u001e\u000eo���L�_�]����qh�ؠ��H���;�“�K�0\u0010���\"C�����\u001a\u001a��\b�5\u0003A�,��A.C�A��\rp�����tCR��E�\u000f���!\b\fhZ�\u0018F����\u001b\t�|\f\u00175�\u0016����m\u0002�P�#'����V*\u0003\u001f��\u0001�����v�_B&\u0004�\u001a�Y�\u0017���c��'�\u0001>�'�\u0000�\rf\u000f|��\u00008s�P���\u0007\u0019\u000e�\u0006�\u001b�p�/\u001e=p\u0004���%i�`�X�\u000b>� ]�ua�\u0003��R�X(\u0011P�`fIPm\u0010H�A^��\u001c\u0019k\u0017�U)��\u000b\u0011i���{�@j����\u0006T3r/PJN���By\u0010��\u001d��\u0003�\b�)�6Xu�lRT��_\u001f?\u0002D�5\u0006%�K\u0002Z\u0012�K�\u0016��džN���c\u000f:F��qut�X#OA�(kO�&\u0012eK.����Zmp���R|S�#S�uYI()���7��\u0007\u0019�q�D���Ƥ[����#��V�|�\"�Ѷ�{M�N2�qo,\u000b\u001eXO \u00022�e\u001a�W��\u0001\u0014'���\n\u00172�:K\u001a�w�\u0018\u0015\t$\u0001�Q����٠\"���j'�J\r߾�g\u0015���\u0003�zM�E�AՁ\r���{\n�&=\u0018nm\b�\u0013��̀�vZ?��\u0006��[6\u000f�(+�/D\u001d�x�vA��\u001d�9;��M{� �x�\u0002U��X��roi�H�M2#�S\u0007ю�QBrc\u000e\u0013��J\f\u0017��`�s��s�{��\r���\u0011��\u0005I�UL��W�\tVL1v��d�=\u0003��^�$\u0001R_�|�ܡ\u0015�$�p�\t��\u0005\u0012FJ��ҌkP�\u001a��\u001bJ�N�9ڏ���w�zJ?L�p�c^z\u000e̳�K��v�ʻ��k�ߊ=��k,����ߓ��w��\u000f�g����H�������\\�#���#�U�>\u00008�d?p�^���x|F7\u0004\u0012�kF�eu�?dc�����\u0004v����WQϔ�z��k�s���c���\u0005��v�^��ۣA\u0019�\r���\u0001���b�qF��\ng\u0015��d�=�\u001dw��\bQ�\u0014�j2��]��\u0006ń�\fSXu\u000b2\u00060�\u0004yq\u000b��WuD��8+��k\u0005(�H)G��D��Ү����\u000f�\\�P�C�Z�i��#�u�\u001b�v�(\u0012T\u0017�e]2!�x�d\u001a֛\u0002�\u001a�ݞ��(�yu��|������҄�9�qUiDż_�\u000e�X�Hf��1\r��h�Dq��`��\u000f�J��K���n�\u001fإd�N\u0000@]��\u0014��:M�\u000f�s��pq��\u0013\u0003 `\u001c�\u0007����\u00061�۠\u001c�/u�\u0006w$�u�\u0019�u�[\u0014RK�ӝՅ��`_\u0014�2l��\u0004��$Z4��A��\r���|�\u001b7j�\"��\b�U����X�P��\u0017��s��ˇ�\u0005�r�\u000b��\u001b���\u0003��\u0004�fʞ�'\u0017ո)ś����\u0015s��W�73�.�\u0014f��*��\\��nn�_)\u000b����_K�RX�B����'�[&��#\u0015�O�Rl4\b��gMBYI�^����\u0007��(pj\u001f�׳��Vԓ�\u0004��'چ\u0019��L����o��\u00014\t��\u001a�F�Kl���T;��L�p��Y\n%��J{��\u0004/�:^&ڥ��D\u0001o�n�Զ\u0005�\u0012`�\u0012��A&�\r���\u0013�\"�\"\u001a�*�8o7ژԁ'N�X]�\u0000ڃ�ƕ�2ѳ�+�Lh+���\u000e\u000e�1��4�\u001f\u0017[\u001b#�\u0014�7A�q\u0018�G�\u001c�F.0��n���%#�o\u000bY�.m�+.\u0000C��2~��\u0013\f\r��tW\u0019+\f+}c\tM���/0�5,�#�2�\f�'f���\u0000]�<�+/�Ӏbo�wC҈��q�6\u0011;\u0014��fC<ӧ)�����M���5K�!FO�Q�B�%\u0019�!��4�r��_e|�\u001f���@\f\u001f�誦��\u0017�\t`\u001eh��.��A���l\u0017Q��ο\u0012�ɜ> ]s�h�:�v�\u0003Qؓ\u001a���`�aI\f%x��k�֢J|���'\u0007\u001a�B-�\rԀ�q���2\u0002\u001c�ǖd_.�\u001c��\u001c�?]���\u001d�a1�nh\u0007\tH�P4��E��7�9�͠���x\u00032,��6�-\"\u0000.��V\u001b\u0002Y�,)`Ȼ�Ą��o\u0018���\u0012l\b��u\u0011t\u0017\u0007�U��\u0014L�ו\u001d,11\u0013\u0010y��cb�r\u0005���И��\u0018��Y���F���o�0.�)D\u0001<�|n�I�Kib�ϼ���n�]6t�+�k�\u001aǜ����\u0007y'�&��:���I\u0018�$J�\u0010��:D�,�\u0002�\u0005C��w\u0016�o�����\u0018\n\u0017�\u0007zmsR�.����ۤ���&JĎƁ�p�)���ە:��\u001d|8�:���-f9��~ٷל�;�\\�6�\u000f�g�G0A\u0012b�X��\u001fؑ\u0002�� ���~*F�m�C�y<ğ��\u0010\u0003.��L\u001ePrx���E�}�:��6L�\bxN�fU\u0007\u0007�f'\u0011�̖\u0006X���tv��Vx�\u0014���(�I\u0012�A}�\r��łƂ�PV���O�\f{�4�\u0016��\u0012�~\u0007wKF\u001ds�.o�ȕ��.\u0007Yi�L�@�5\u0016�\u000b\u001c䛽�B�\u0018n�\u0007�s���u\u001c��2��'\u0012�\u0013��SI�:\u001f7��T��\u0002'���p^\u0006(�P\u0013\u001f�0��\u000fW���3�!=��4��xr�\u0000��Gt���e\u0014��Tx$[\u0006\u001b1B�>�S{����cu��id��\f���'�\u0011(��lJ��H�V���[��os���(\u0015�\u0005�5\u001f\b�/\u0019\u0002,c㫙8��~�\u001d��98�\u0017k��Uہ\r�n��P�3�\u0015�Ac��(�oT�%�A�k�F��\u0017\u001f7\u001b(�\u0003��GΣ\u001f�|e���Q\u001e&�ڦ\nq����\u0002�\u0011��D�ɰ�\u000e/��h��bկ\u0005f8&bt\u000f[\u001e\u0018Ԕ��&��N\u0016g�g����ʖ�\u0010\u0001�-��\u0019ҪF*�D���\u0015���|���\u0017\t���a��m�t�ãA_�\r����\u0000߁���5De\u001d:)��d��\fs�V\u0000H����v\f�s0�7�\u0000馹\u0006L\u001c?%oD.ۛIu\u001f�}��\u0014WY.�\u001ac�SFC\u00102s�(m\u0019ҽ)n/\u0017�W(�^;��B�\u001a�\u0014\u0003�DjVQ՚���#�\u0015X@=4����u�p�\u001e[[�k\u000eh;�a8�r\r�Ž?�Z\u000bR�\u0000����'uъy��\u000bHm�߆�'���#��l/��%\u001cI\u0000���+�Z����j�(��cCh\u0007-#K��|g�@q���\u0000W\u001b\u000bCl���.\u000e\u001d�\f@\u0015�\u0007��d�#H�g;�r�V�[c#\\�\u001b\u0013�n�Na��G�/\u001b\u0014I\u0015L�kf\u001f\u000f�@�{�\u0005��\u0019�\u0016ϥ\u0012I�2�\n��$\u001b\u0018N%�\u001b:L�?�\u0012s�/z\u000eZ��>�D0��l���.�9\u001cO�$�m+}�ޕ\u0013�R£AO�\u000e\u0010���#\u000eB���d�P�g�MI�A�\u0006Q�I 3s�(e�H�i��\u001e{DO���PW�f��g��\u0007�\"��\u0007\u0000�G�P�j,��}G�%��*�ڨ�&�rj�\u001b�w�,zC'׷9;��*��]��+\u0004\b}ɰE��l��:\u0002��i�\u0001Jɳ{�Q�[�JD�DJ�śتFm?1o^z�\u0001�9��)�n��C\u0011�!xw��\u0001s��YB=4�}H��Ԏ���d�\t�VI�-\u0017\u000fk��Q�W\u0001��0We0����i�\u0007��\u000eG�\u0018���#+8�\u0001L\u0000a?|�o�Ø��_@@D��\n���#�)�̺�T(CF�S�s\u0006��������\u0014�\u0001ӵSL�Sg�\u001c��\u0010�7K���\u0000�A�>�=��+�>�\u0001\"\u0007�sﱂ҃D�\u001a£A\\�\u000e$���7o���\u001c+�w��\u00107R�;\u0002��G���o�`\u0019�{3Ǿ�Z�\u000e[7��\u0014�7y�(|�\u0012*�?DiV��dC�nO/��\u0019\u001cZQ�\b\u0000\u0000H��99�bݦ�\u000f�e��\u0015��\u000f����F�)��\u0004Μ�d\u0017�J�9jm�sҕ\t�\u0016}\u0012��I\u0000�+WA����a^^f�x2�o`r-J�\u000b��(��1�V�\u000b\u0019ꁥ�\u0003u�6����.�\u0001�[*�v\n(�f:\u000e̊5\bE���W�X��\t���\u000b�\u0016�\u0001�0\n�\u0005���|�\u001f�!�!�6\u0004\u000bY��?���c�i8�y#1c�\u001f�5\u0017�ϭ���S�(�\u000b�^�o��SX�?��\u000f��3ES/�C&�u�MX��<�\u0004n\b\u0003�Ka\u0001�\u001a>�y��\u0017~��a�vC��\f�\"��h�/ڊ��׸V��C&jãAS�\u000e8��™K����7J�u� {\nd�˪�y}��\u0016[� g��\\>G��\u000f a���cp~f����Z\t��\by[2W\u0002,\u000fބq�\u0013c?:Q\u001aF����\u000eփ�MÄ\u0017�z�\u0004�qTԓ�\u001f\u0002�\n�\u001bI_co��\u001e����$��<\u001f�ϒ�_�3�O:�S�qP\u0014��)\u0019�����f���槭\u0010��0�4KE�Y��UͧG�J�&�흉\u001a+T�E�HX�a�\u0004ҹu�gx�v��p�ARy눬��~��M�8Uk��\u001c\\\u0019�˔駇\u0004�e��\r\u001f5\u0003gA��d�l��g���Z\u00045oYX\u0015��v�\u001d�\u00167\u0003\u0000]\u000f�a\r\fbyuw���#��]F�^\u0012���5�)��;����G\u0017�\u001d\u0005Tx~;\u000fl�\u0005���\u001c\u0018�I�\u001fr����rC�Br�\u000eL�������\u000b����A1\u0004*v�p�hh\u001e���ca��J�*��O�u��S��#](�\u0000��Y\u0001H�?y\u00028�?�\u0001]O�攗�\u0016م\u001fQ�RѦ(Ҋ��c��С�\n\u0003�|�\u000b�\u001dL�WO�0\"�����$Li\u001b��E���()��\u0019\u0004���n�5�;�\r�b\u0011O��mh7���\u0002�, �E R�<\u0011�\u0002\u0013m\u0005+�6͢�\u001br�D�j�1�5JA��\u001eV\u001e&��3,˼m>�3���\u001ca\u0011���Bk\u0003��pW�Mف�;�\u0000>M�Cn�n\u0006\u0012sS`�K�g���݂\f䮺b-#&�NE���\u0013\u0017a6\u0000\u0000\u0000\u0000\u0000\u0001\u0010���u�OC\rƪ*��R,c��:[��y�&b\u0005���'c�`v�G\u000fC˷��F=�z5D�}?\u001dy+6�B�՞�\bʰ$\u001b\t\u00057=\u0017\\�)L�\nI��u�u\\�3�A�����U��Ȋ�l\u0005\u0010\u0014\u0017.�ȣ֙�k��\u0016z3%1BV\u0013f�\u001c�\"n�l��\u001e�(�)e\u000b�>?^��\u0006�=`��\\��\u0007=��s���p~G�/LI[cC%\u0004a���r�oO8�\u0004ۀ���o'X�\"�մ�\u001d��֦#H���HS�#c�\r�<\u001bl�}n˨�\u000f�01A{ݤ\u001bo]##�=\u00009�z�Ȅ\u0017\u001f��Iy���=�\\\u000b�ד�]fm_�]4�L�kzڷt\u001e�u:ocR��`�t`�BT`�ʪ\u001fS����\u001e��m�N���-i�zͣyH�{��\u0007���\u000fY�[�S��w�C�B��\u000e`��qE�_�6\u0002�_o�e.���ׄ&s\u0000�g�\u0014\u00014�x8G��_؞�4��U�#<,\u0004�%�PѰ�u�\u001b����d�b�\f�F�\u000f��֗�5\u0016D�Q\u0003�\u0003\u000bP\u001d���e�#vs\"X�9J��e\u0019{�g�ʱ��?���\u0004\u0014�{g,H\u0001\u000eK�|`�Y���\u001e@\u000fX�.=1�a��b\fh\nԈ�7镘����f���\u0015��3y����P[�|B\u001a�&�����\u000f\u0006�:��o�ʨ-г��g\u0010r�g�)���\u0018\u001e\u0015�t���J\bT�ӛ*�'\u001e��\u0017U\f�;g6�\r�\u0016\u0006�}Ȱ�6�\u00029\u001c��-O��0�>\u0018a@M�h�0�����L��l�z\"�3G��=\u0004�\nLx\u0005:絲��K���#{�H�`\rxG�*q�9\u0014��j2��\u000eT\u0010\u0002�o�\"��c�C��x\u001e�u�zd�E�5�qQ��p!\u0016۵\u001c\u001d��\u0000�-X�\u001aGP����\u000ea'�\tR\u0018���B��d�p��]*y=����$!Jmv\\��a�����P��\f\"�������\u000e���m�\u0007\u0011UY���#�\u0010\u00036�����D�'\tZ�k \u0001��g�j�J�+�W�ݣ��Bz�\u000et���iV_hFeCSy\u001e��-�y?e��d��\r?/瞴)=�����L+��o\"��\u001cĂ��1�\b�\u001a��\u001c�j�^�g\u0012 lϡ=�\u001c��)�\b��[\u001cy\u0015�c�0���\u0000��S����\na�C\u0002�\u0019�V\t���\u0016;+�OAEO����\u0015�GOMRyځw ���U!��R���\u0000�\u0006.&\u001f����I;�\u001cu���\u0010^����i��ջ�X��?�\u001a�竪���mN�V��?�\"���Z��vӊ)q�)��\u0007NY���J��m�/E�^9�B:hb\b+\r\u0004�\u001e��14\u001fM��@\u0005q�5�!��\u0001ܔo���\u001f\u0001��$����\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000x�\u001e�,u\u000e�\b\u0013�\t;�\u0000�p\u001eʿ\tx��\u001c�50ԩ@<\u001e�\b~�ݛ���ֿu^�h���v���$*\n(�\u0004\u0006�,����s(�\u0013\u001cڶ\b�\u0005�\u000f�QI\u00064A�\u0002��QJ~_��u�����$cO �㻩}��hZL�B�'\u00117Z.\u0004�VPM��\u0011U�&_R\u0000%�^_�n\u00162\u001bH�aTk��\u0019[\u001e'\b\u000b!\u0010��\u000b\b��\u0004�t9�˂�\u000er����[`Z�\u0010��\u000f\u0001�\u0014��j[j�lX7�P�շ9z�\u0016�!�)|���C|�.\u0007�\u000eH�\u0013\u0017F);G;5�\u0016C��\b�q�\u0001�rl�f���\fF��W��\u0014��g��\r�\tUﵻ\u0016\u0004�\u0011ꑲ���v��-㽻��H��:�A������eS�`��E�\u0010~�Q\u0003�\u0010�y�_��䏆B�B\u0018�\u000e���z�\u0006�\u0014g��v\u001b�\"�Gõt4�r��C\tg����`+m�2'!\fD,�[u�>R\u0001��!��n�2�J��\u0005�O���a�'���]Y�\b��C\u0004\u0001�EOk��+��\u001c\u0011\u0014P\u0001>\u0001\f��F��\u0005�\u000bM)v�\tb��.׽�-���\u001c\u0011\"�w,�?�|�x!\u0000�\u0002�<�|(=�,FDB�L��k�ݖ�\u0016���zp'+V����D�$�Dy=�S�\u0000\u0018�,\u0014-��~��@��u��\u001b!�y���\u000f�=ot݃�W�ph̨\u0012˸�Z���ײ�x�4��d�ml�\f����\u0003~�T�\u0014��Ah\u0005\u000bĦ�KHُ�N�\u0002�Ɣ��dlE�d{�'�\u001d��\u000f�\u0004Z�����~�����[���'b\u000e�\u001d㻐-��t�\u001e\u0010\u0001���\":y\u0005\u0001\u000f|&����ߤ&Dmf<�\u0002\u0016.�. e�\u0016�����?,.�\u000e�Dy�!3��\u0013!,��Q|ݻe�*_~\u0000�*�Pdq���\u0018�[cM����-X�١�x�S�^u\u0000;\u0001)*e�_ (W�\u0000��\u001dC����]\u0012�Z��ՙ?-\"��\u0010B�G'\u0014K\u0010�\u001b�|E���B��`FxImW!���\"�[�����{\n������w�V\u000f��!�J'Y�)\u000fnK\t�Ƥ�_\u001f�\u0014��\u0004+Am�A\u0010�\u000e���Bi$�\u0018��9%v�Uk+S��C�b���C@\u000e�\u0017�rX�U���w\u001f��\u0007MM\u0004\u000fun{l��IU�\u0014\u001a+�L���9�\u000f\u0005�\u001a/��\u0019\u0018ה�\u0014 \u0000YU9�n�R��\u001a<\u0014�P�_���H\u001b��\u0014\u000b.n�\u001f\u000b�|���ѱѺ&\r�\u0002�Ψu!`�K�\u0012�K�C\u0003T���Y�M�\fn�&�\u0007�F���*\"�G��M�RK������J�\u0005�\b\u0002o���W\u0006\u0018����s��(~�Riar�aUe\u0019�i\u0003~\u0015���+\u001as\u0010�u�k#�#~���\u001c\u001c�\u000fM�_G��.].:j�L�5����f����\u0007�3\u0000m���Aԁ\u000e����bl��N�\u00159a\t\u0002p�$�\u0005�\u0018j��D�lx~\u0019;b*V�vbF\u0013\u000er\u0012\b�B\bn�Fx˄\u0017���?�?���È��As�\u001b\u001c�UF`jǹ\"̞���\u0012�\u0001���\u0012\u0003s����Yq_i\u001b݆\u0002K\u0016cs�\u001c_PI9/��@r���7!#�E3�k60�*���^�\u0017\u0017��\u000eJ�\u000eM@,�A�v賔\u000f:�Af�\u0018��(��f:�AFm�8�p�A~��;\u0014����j���sk5�NV�A\u000e]�\u0015\u0003��O��\u0013�e�h|��3�[z�̲�\b�\u0000�ᛖ\n�m}�e���p\u0001�9��ե�S�8����\f�\u001c58~ܬP+�\u0005�.�D n�ÏI\u0006�\u001a[͛&�zC���\u0013�>y��ä�o}N�œ����zu8{����!�\b�\u0011\u0001�]��\u0018��g�*2����,�d�\u0007#ٰ�I������s����������=i�\u0018\nq��W%�\u0015�\bX.,f*u��h:�*5��DV3H��V�ГĊ@3�\u001f��3)�#�'y�X$�\\?B���)�\u0018h\u0016�ړi��\u001a;�O�\u0002�um�U\u0002�ƣAԁ\u000eĀ��5�\u0014�R�0$��a�/�Ln\u0011���ɬU�X\"Ŭh�s�e����Q��g\u0014�>��\u0002R��Q-�\u001ad��$�%\u001e��L��T\u0004��\u001c�\u0004\u001f\u000e!��\n\u001c�5���\u0002���ƃ��W\u000b\u0019�\u0013E��\u0011,\u0012/��6y�U�\u0013���Ow��\u0000Pk���:���\u001cȋ�~iZ�G\u0017�BA#�Y�\"�4���b�\u0012=�z�qL3��\n5�\u0016�OKd�h��J\u001bB�l_�n@�7Q\\bSJ�1��<���p��\u0006�57�\u0013\t�\u000b������Ԑf����\u0006���\u0004vſCz���N\u001e\u0011B�\u0016�;-�SG�h��]*�Y�Sd@�8U�}V\t�:)��O����\u0004sr!�\u0010����7�g\u0003�;�;>\u0015���\u0001�у�/=��I>��!GԠ\u0016�\u001ar��R�U#NT�\t��}(\t\u001d���W&@?*\u0005�QX7�#(y5��jO�\u0000�P��\u000f~!����N\r��\b\u001a�+�/��'[�d�\u0019c\u0002��v��۴(�D@p*r{c���\u0017Q��\u001f��/�F7�)>`'�ߛ��o��m4�$�#&���'�A�A3�\u000e؀�Ň\u0016��M���j�bv\f�ݵ&�\u00133�\u000e^��\u000b��\u0016:�mZ��/�Ʉ����\u001e&$$D��GH\u0013W�\n�����\u0011dE�(�<��Cq�\u0016u\fS���!\"�\u0003�\u0019��]\u0017�\u0019��\u0007�~\u000e\u0001k�1\"-�ƾ�\u001b���-�Ab�9M3���\r3�*���f�Am�\rT;�9�x,��L$�r�?�i��������g�R���l8#|��59��d\f�jX������d.���~�2`H��O�D\re:I\u0018�\u0006eO4^d���&\u0010�?���#$|[\u0013�ΜFp)plI�}\u0000<\u0011��pVnDJ\u001c����@\u001cm�v\u0003,+b]\u0015��;\u000e�U�\fɂ:\\�ߞ��ɖ�\u0000�Z%�����zD�A9�\u000e��™њ��!^����w���_\u0011\u001b�)`\u001d����?�R X�Vځ��\u0016tR�+�I�����,\u001fAgv`����6M��':{)jeB\u001d\u0003/\"�\u000f_@-Z\u001fWw�6T8�w|�sڤ����q\n;\bRQM`D�D\u0012UuL�;�]mR��|��\u0005x􇟿1?��\u0010��\u0006�\u0010P!��\u0004���hx&\u0014�`�R\u0014\u001a�\u0016�!6�i��\"\u001d6˼�+c��[�Å�fW\u000fĒG�ך��\u001f��� ��軁�\u0019/�%�f}Q%w��\u0015,r�?��\"�h\u0010�\bbZ�]��+UE��\u0004�$\u0010��y�͐\u00064�>�K0�[2������]ټ��3\"D�\b\n�B\u000b�!,�|�\u001f�Bm���\u0002@���\u000b\u0013��ǣA<�\u000f\u0000����4\u0003A/`��'��e�Z���>y\u0013��\u0019.\u0011�{�\u0004-j\bRӇ�МC�~3���j�ӥa����\u0002�\u0002n�a�����\u0001��Dy�\u001e]=�`Y�HZ)]-��s\u0007��y�\u000b)\u001b@Ȩ\u001fUB,���ci\"\u0011�\u001b��=�`�\u0016�\u0007�~\th{)�\"#���,\u0019�A��ܭj��x��N�\u0006W�UϨÍ����D�\u001b怹i�\u0011�j��\u0004�����J2\u0005����'�#�J�e]���z?9ݥ�\\v�h��axq��GfZb�0���!������\u0005�*��\r�s�����?OW��d\u0019��c\u0015O\r�\t��Z�E;.��\u0013�ÿ\u0015�*)�\u0004s��z�$[�G�W*\u0017�\u0002���*�\\+��DZ�2ƣAg�\u000f\u0014����\u001a��PU¢Fô鋥2�r���G\u001c�\u0017R���X~��X�ۛ\u0011��5�o7��1��u\u0013K\u0004.����\u0010\"\u001avr��%#di��:\u001d�V�/j?�hXO,l�S�u�vj`��\u000f�����ꍍ`V\b˼�H�\u0005�ᝌ�ߣ�9�ieT�1�Y�:Hb�\u0006d�U,Z\u0005�L8��@�:�pK��qL�bU�5��A�}\n�G\u0012��G\u0000\u0006sZ�\n �n�[���]�fF�_�K���׬փ��4�Wl^U�hR\u0011'��\u0002-�p0��\u000b�\u0013\u0014�+�9eґܫ�tj�`�\u001b�߆Xl��\u001b�\"5J]\u001eZ���PW\u0000w�D�������ȱ\u0004�\u0005�k\u0011vN~�Xi\u0003=\u0019��\rl�\u0015\u0016v����I��\u0004\u0001_�\u0005�o�D��Zi��7m\b$>=\b�gP48��$��ۏ�)�ãAB�\u000f(������)\t���\u001b��\u0011\u0010��\u0016�;�3#V`�\u0017Ư���B9soQ��*�%g)�u<�'�Hj*\u0011�0’�\u00143��5U\u001c(��.���\u000f�����\u001ck�JRB'�c9�Α�k����\u0013�P3ϓ.\u0015\u0002?jrkx���%\u00010���m�Ի�9~3U�l������\u0016��\u0016\u001d�\u0011�\"q�5�N���F\u0017�\u0003�-��'�Θ���y����E�T�\u0017'Pm��,-�E�Ĵؑ�_��>S���y� ���5�y\u0017�zK\u0005���m\u001f���\u0004�\u0012�2K����\u000b�/���JJN�w\u0000�h���\u001c�X{\t��\u0004Һ�ebE\u001e\n�\u0004x��6|��/am��\u0001�+\u000e-Hq;\u0019�Mp�@\t\u001a�`'�O��T(�Ka.��AG�\u000f<���*�'�GA�\u0000����\u0006�(,��;\u0017f\u001cݫ\u000b?`f�\"1IʇD\u0001?v�S2��\u00117�\u0018{`d�%�\u0018�����*S 珞�z�?N�ɅD\u0011E\nˏ�D��Uۋ��]ܬ\u000e�׿�\u0015�`�T�ck\u0003g���'�|q�vw5ќչ�\u001bc@�N��+�*\u000eo���,>�\u0012���\r�#��E�s\u001af�_�\f*��4\u0012\b�\u0018���\u0013�vL�~���d��C\u0011\u001d�\u001a�>\u0011k���/,�PIp�u\u0011\u0016�\u0004*`��yZ#�1\u0003��\u0017�\u0014���V�\u0002\u0012�c��\u0018<��k�,E]]��6�l\u000b%��dZ`0�*\n���w\\��\u001fyKI�\u000e�=�:\"\u0004X�s�\u0019M�\u001d���2~\u001aq�(���\u0012I��p?\u001d9\u0003 �1\u001e\f�R*��AR�\u000fP���\u0000}?���\u0019e��\u001ew,X��\u0005�؂�\u0001�(7�5���q�\u0013��rb}vXO�jQw#qҀ6�H{��V$\\,�y�%�&oΠ�4\u001d�'���9*�o,Jh��\u0000�����S���{F�̙E`WZo2�g��p�muK�]wB����e��\u0016��T�!�<�\u0012���ٲ�,�\u0013���g�\u000eWt��\u001d��w��`I\u0013s\u0006�N����\u0016�\u0012�\u000f��P3Td|b\u0011X�v��\u0004|F9s$?\u0001a��)#�$�a�bs\u0010���\u0001I���+\u0011�X\r�\u0003\u0005��E0��\u0019�`ڴݻ�I\u000b�)\"���sn4���)�lr��P�*\u0001�l�6<\u0005\u001e���{��\b^AP\u000e\u0019����./=\u0011%UU��|��\"0�}�[��\u001b\b�A�E��oB\u0004\u0007\u00003�\u0012ãA\\�\u000fd���s#�M�(�۹Oqi�i��\u0005A�����b\u0014�˥x�P\u001e�Y~\u0012�I\u0002\u000f�ݔ*k(y�,��\u000eP�CMi���9R.P��\u0015Θc�����Z\u000b��E�غ��y�\u0016�\u000b�~�R���v�?D�=�e',���\fE\u0004\u0002[Z����ω�?9�\u0016��\u0007S��\u0019*\u0006�_�/H�7-#�Wr�\u0012�\u001b�\u001dUrm-c��&4��\u001d\u0015�y�~e��N��-ͯ&�\u0017\u0013�|�ĉو�����|M���\u001bነf�!\u0018\f�i�I�[�z3V���\u000b�\u000bw)�'-/�:1\u0002�m0���A#���N]�47\u0013����mE�OG�#ҝ�C��g�ݗm�a�d�ox0@36��m5�J����\r΀�6\u0000����x�n永l�w�%���^]��\u0003�J�\r�D\u0012\u0010���)��\u0010C\u001e!�wܒR�\u000bJ���&s#\u0018L\u0012Q�-f\u0001'���\u0001���dO�7��&��D�AL�\u000f����)_�a5N\u0003f'\u0006G�1Ӓ��D��JS��Z��@\nCY���\u000e/Y\t�I��.n��Ʋ�k�s�j�&\u0015�C�p��H\u0014|5�a���dક�Q�\u0015��K��\u0012+���}���\u0013K�/�:H7o���nr��(t�zPkysLOi�G���H����\u0017�/]|�\u001cV�dz\u001c�q\u000fk@�\b\u0000��:>'�j�m��S�b���$L%uM�c\u001d~t�4)S�\t8�4\u001b�vzu�A��9��\u0014�ĭ#�\\s_-�\u0010W���{=�U�/�śYy*��� d\u000e��P�\u0016`�\u0004���\u000e5���$:�/�\u0003*���?ب\u0014�Xu�<^��\u0000V�\n��\b�ڠs�\u0015��\u0015g�\u0014�ncI�>Wp\u0005�I��\u0017���.���K\u0019))�᦮-��=�e�NTV�YI]�''��?��\u0007�V%H\bGû޺\u001f���q%\u0011����2�6\n'ko�����\u001b�\u0014̩2~��AM�\u000fȀ���i�\n�>+�\u001fa,M>�\u0015��N_Bp��6\u0002]3\u0001��'no\"�\u001a�?�\u0006dxZ��cE\u000e��B�epn��y,��\u000f,\u0019���x#\f���T�P|�u.�«\u00179�\u001b��;�GI���A�E?!��&���\u001b\u0001��\u001b��?\u0012\\��r\u001a\u0003|/!�\u001c\u0007\u001f��\u0010\u0004���\u0015Fh#\u0006Ϻ�(��:,{O��\u0018�LOJ\u0015�Ǣ�~�RӛQ./�\u0013?J\u0000J|�G\n\r�HT���\u000f���!\r׬�\u0018�L&��pLa)@�?r�4%�-g�dG�l\u0014�����-�o(\u0019<�)�\u0003mYJO�K1���B2]�g\u001b+\rg8�6��X��1�Rl���]�\u000f�{��(f�A��*@\u0005�_���t�[���S�\u0013��Q�I�D�����5R;���AK�\u000f܀���\u0002�*��\tŰ�8I3��l=\u000bf�9\u001f�̕�\u0004�@h���y}�\u001d\u0013�B��/�Ի\r�L\\���,blj�\u0007�y�r�>�V�\t��iTgj3-a�l4��-ߎ\u0007O�lJ��x�=�C\u0005��_�\u000e��v1a\u0016:”&�{I�k�ʦ��ʉ\f�eZ��\"�\u0012�1ݺ\u0011�ON�\u0018v�.\u0007A'�H\u0019ɭz�1�\u0015��Û�\u0001\"`�Uk@D�м+��S�� �B�jI�g+�#�EHG��m�'4f\u0012+F pߗsX]�\r\u0002��Xq����PY��\u0005�M��V�\u0016I *K�(y{��M�֨ŐJs�T�{����z\u001d�T�\u0002���>\u000b�\u0010��`�c���g;˥�\f\u0005�^hg\u0005�z��ηl\u001f�'bi�\t~�\u001d\u001fМRãA&�\u000f����)]֘�i���,N�R\u0005���p�-Ad�\u001d)�N8\u001f�����\"7�Һ\u000eE���<)��Ƒ\u000e\r�\f��n��g���\n�\u00076ئ�^���:�\b�~s��0~���f��\u0004���?9+��\u0002�k\u0005�Z�W�.ٜ���qݢ�L�җR��\b�}�jmp=�ݷ�D�ÉO\u0005�M\u0012�$\u000f{�r�߃CK\u0001�\u0002��3��\\@�v�W\u000e��]\u001f�\u0010S�\u001f�5��\\�k�\u0014�\f�GѸ�LJ$\u0018� ��ij��\u0019�&.�[�\\.�Al_��'8�'xhe�L�?�Z7rn�y����1�Ta���f�%>g��\u0018�7Q=\u0018�\u0000���r��\u0004G�B\u0000�ǣA��\u0010\u0004���t��\u0011�� (�\u000f�\u0010\u0010`H�6X\u0011\u0016���%-2�C�,�M�nx/Ak�����!C\u0019\u0013��XQ�a%�r�+qQKm\u0002\u001dO���\u000e�I��\u001a�ي4��?�1\u001bF\u001b��~ĥrU/\u0015����t�\u001co�Y\\_N��#<���\u0003�ʧ�sˇ,�R���zs\u0014[�\u000b�,�Ɗ����j%�����N�g\t�.Gb7����IL���]U\u0006D�K��]�����������\b��я\u0018E.G��E1gd8򰸕d�t�\u001e�\u0016�x��b�\u0012\u0012�\u001b5�q�a�\tbB��\u001b��<\"\u0004�0�$��6�ב��\u0006��$�#l|g��1R�Vu�\u001ao�4\u001c��_��iㄡ\u0019���\u0000�O�\u0001��f�G�S�m|�+z\u0015@'~�@k\u0007����O~=\u0019\u001b�M4%\u0019\u0014��8r=�T1�\u0004�E�$n\u0019�*�X�&�����D\u0002�n�\u0002ҵ^_���ȣA@�\u0010\u0018���u��\u001c'h\u001a\bT�&Vz˹���E)\u001a��?K6�tf\u001d\u00164\u0011*�\b\u0019~%�\u0000\u0004Baa9�@�`�o�Z�\u0006�%�o���A�K���O������\u0006xIG�;���T���� G�\u0001>29(���F��E�N��Nc{��Z�����G\u001eU@:�2���w���ܶV޶#;�\u0003�N\u001d�08\u0005E��-'���ӣ\u001d��<�n�\n��\u000ey$(���\u0001cb��.��D��\u0011�6�\u000eY��G��s���a��É��\"�u�GOXO�������2mѾ3�0��V�N<`��PZ\u0001��m\r�'�ˤr�@>e�\u0010?�/���bϸ|;nk��8�`\u0011E��+��b\u001blky1\t�C�A\u0010\u0014|\u0007�ǣA`�\u0010,���\u0002V�B�\u0011�\u0000\u001as x\u0017t����Pɻ\u001f����kJ�\n��G��������7Ȓ��\u0011\r\u001ba ��)\tV!o5&�\u0000��d�a��m\u0002>���������R�K�ij�TEʕِ\"c�E\u0003W�!�{-�\f�S��\u0007���2ݖA�-4Ð��su�ą\u001aF�\f��\u000e,,����y\u0013\u0011�;�b=�z�D�RZ\",?\u0015�M�����2E�;k�f\u0006�>V,P��XqM�Ѧl�\u001f\u0004q0�x��\r\u0005{f\u000b�`��\b�_�\u0016�\u0010%�c��6��?BD���2��f��=�Ui����Y,r�,p�<\t�_ʾ��\u0003��WLDS\u0013w\u0018(]��G�k�\rjK�^�!��G��ؐ�L\u001dp�\u0012r�,\u000bT\u000f<`љ�q|��+���G��Ew,�-�j��ԹX\u0005\u0003SB[�[?����Zjw��\u001a\u0010|�D�\u00193<�*Pҍ����\"T]$\u001cp�W��PU\u000f\u001e^�*Γ3WV�֏���d.}���B��� \n]vN�\u0007��\u0007�ɮ;?S�\u0017T�uޘ�U\f�\n!\u0013���e�\"��x&?�\t�\u0005\ng�*l\n �?����:{e�v\u0000�>�{�f̲��\u0013�z\u0015`4v�ͪ��hCRKwFT�%�+>�i.:\u0011�ãA|�\u0010T����\u000bK�꫌F�0�GŨ�B޲Z��~�P�\u000bx��4X��\u0003�-~*�2d���%�\u001c���Ԝ�:L-�x�\u001a��%,�g\u0019�\\_��\u0005\u0001H�2)��\u001e�m�\u0005�\u0016\b�ɭ�+�.��õ��q�)�\u001b9\u0013��\u001f�T\u0018�����\u0003@ �Ō*�\u0018./\"�&�%\u0005\f�C\u0018}�.�F\u0017Cdq�����y�\u001c`\u0013/r]o%���\u0012��%ɥ�\"ۥ��k�K�\u000ekA\u0018T����-�fnݍ&:I����\u0013Q#��\u0006IW>��v�Iz`Z�\u001f�\u0003&���Z�������d~n{��ku���\u0010��\u001bz��� {8=�\n3\u001c�_�\u0012�0��\u00111�Ov$��bCzlm� �Դ\u0015�*%*�l<\u0013\u001a>H\u0005{\u000fj򂕄c\tw:^\u0003�!g��B�ճ��K\u001e�֌�ZT0�W��\n\rᰆ���\t‡�*�\u0007\u00113E��C�A��\u0010h����e�q�}iX��dA\t��\u0005�x��\u0012Z\u0014�\u001bZ=�9��\u0002d6) \u0001E�J£�\\\t($��>�M�\u0003��2�O\u001c\u0014���\u0006�ε$>��ℕ�a��W�����I�5�!r\u0005��\u0013Q�i4����\u0010�ձm����+`\u001e�Km]v\u0011p�R/��\u0001\u0016�\r6\u001bf�\u0002�Ԁ�J�#P��\u0016Ϗ�ٛk\u0019�o��\u001e\u0002�\u001b��gsmٵ���F�wg�w\u001a\u0005:A�v���,Cf���F�1C�K�W(CL̢^���Ҵ�\u0016:}r��\u000f4\u0007��\u0013�?pq��Xd���zi:=g�2���n�5[��\u0012C�^\u0007�\u0010�\u0001k����:�ȭ�--ʎfP�=rx�\u000f�S@1�P�\n\u0017}\"��(\u000b\u0011��R4'��v��8�U\u0002*q>�\t5\u0011\u0001�:��A��\\����_F��G2\u0000B�;���J\u0005\b�ڿ\u001a���ڟ\nHx����\u0016J؃�r�\u0013\u0000�[�>�r����M��q��G��Y޸�z��8�鶖C�Ap�\u0010|��\u0017��\u0011�<\u000fF'�\u001c����t r%���\u0011�\u0012 1=!ŗV7\n��ie�\tly��,��\u001d���4�#\u001e-\u0011�\u000f_|iF��y:�ެ+k\u00173����\u000b�ԊY*�uX��C��E׭����4ʉ�ø�.�c��ƞ����-�f�\n��*�b\u0018�58��\u0018\u001bwq\u0000��\u0010wn��+`dKr\tX\u0001��\n?/u��AR�\u0010����!<��\u0005<�(\t\u0019��os(0�Gy\n��9MȽt��fi�ߕ�\fLm{ݏ��x��]BU�JQ~�1���=\u001fp:���e��\u001a�\u0019\u000e��z��\u001c�Tƍ�Y���\ta�h�5���d[��gc�\u0016b�D�B1l��R�j�j-�k���\u0015\u001c^K\u001e��\\v{���ݞK��pn�����;7F��h��YJ�}8\u0012������E/�U\u000b*��\u000f����\\�\n�l��v���v1�@��\u0003C��ݞHl`�\u001d/*�~�P���3X�T����E��+�\u0018�h8�\u000f���\u000f^N�\u001c��e\u0006����e\u00186�O�Jg�\r�SS��\u0012�H3m0f�A3f��A�x~�Z;�Τ��,ט�Ș��\b\rˣC�k�\u0003z�ϫ\u0000��4x���^���*\u0005\u0012J��_]�*D�A�\u0017\u001e)D�G\u0000��\b�ZJ�9Y\u0018�]�\u000f(�\u0017\f1���/<���\u0005\u0001���;-�G\u0001����������-ȴ�µ$�b\u0011\"@)�A����)\u0001ɣA\u001d�\u0010����+�\u0001�cӦ���\bk&K!\u000f�|����}^\u0006��jl��\u001bZ7\u001e$� �?�U���%�����9�}��=Hv��\f�A�~\u0016�-��\u0012wf%�-�e\u0011���=�[�#�\u0005�\u0001�ec\u0002\u0002�e+l�ۦ2+��\u0007� }����(?i ��-2���z6�4�ec���\u0014\\C<�0���C&#\u0013�\u000b���Jйt�\u001a��+�ܖ����b\u0001q�#>�������N\tZ��\u0015�+\u000e\u000edʔ����֧o��Q\r\u0006\u0018p�P/�IQ����ϝK2�\u0001\u0013��*��a.�/^_�Q��\u0014�\u000b��P�k�k�Hx�{���e��s�\"ɕ�6]֣A-�\u0010̀�›��q\u000e�6P�\u0000�F�-\u000fd~���qR�eHW�\u0017z6�ɢi\u0007�R�x\n#\r\u0006\u0012,�VƸ|�����\u001c8m1�BL�()�\"�[�ZMҌo�\t���\u001b}�66RϮ��*�\u0003=�+Ү)��\\�\u0005�ku�\u0002\u0002���0�Qm`�ၠ�ޅ\u000b��=��\b\u000e���#A����Z��\u0001ё��\u001f��\b���\u000f}P̘��Ul���/W44�ͱ\u001a�N�|���\u0003��\u001f\nk\u0017C��z�c/@\u0005��xd\u0012\u0003�o�\u0019Sa��#j�#�y�\u0003���E���\u000b�`��$\u0019���<3#�����\n�Q$!�t���V���B��Yc���T�����\t\u0012{\u001b$�I�����ңA��\u0010���|��\u0014p�\u001c��Ļq\nT�\u001beۧN9\u0002Y\"� vVM�;=�k2ls\u001d֨q���9�%��\u0019�\u000e��d9��{RCs�t�\u001e�t>c\b�\u000e~��\u000b\u0006B�� \u000e�\u0002���u�Y��r��\t��\u0015u��\n��-�����E\u0000\u0016�\u0001��ɵ�px�c�Z+JR\f�D��\u0000}��\b>����\\���\u0015��e֯�}�Q5�RT\u0018/�\\*^�F}�l�\u0012��+Y\"� �f;���\u000f�~���2�\u001f=\u001aL��[������Y$��|u�\u0011Zb�V�0Q1:KNF����\u0014\u0019�e� �֘�Cm�X园�E�~�($.L�-�����9�(�(t�@\r��\u0000}*\u001b�\t\u001a\u0003��/�� ��`�/6�!�\u0000�pÝ���#�G�5[�\u0001���<�pV�D<:su4\njV�&:S\u001f�\u0004e���A����p�S�X�=O,���<�$\u0019��\tP�������\u0005+��I���\t�\b��sN.�\u001c��x4Ƨ\u001d�8�~>\u001d�e���9ݹ�<�A��\u0010�����+�R��\u0013���K �-�Y��\u0017T�\u0003���:L'\u0019������\u000b��\u0013�YO\u0004�*�\u0003Q�\u0004�eT���Iv��[\u001f\u0006��'���0G��rxq�j_A���H;\u000e�?��\u000b��u�\bL�\t�+\n�fRm�����oB�\u001d\u0018/\u0003Z�g\t\u001br�g�v�)2?�u�=�\u00004xX1�~eΠ���\u0019u�\"\u001f#=tէ\u0018��.(�N�\u0011�5�'�նe��א��{�m��x8�xZ:5�RwO\r#҉b��\u0015�\u0006��\u000f���{\u0005��\u0017RCa�c�'\r�X@Q�L UbN\u0010r��hY��!�\u0005RuE\u001cev�.I_��3���m�\u0015��)\u0004^\u0018e�\t�f�-@^�<\u000f����\u0005�BÔ9:c�K��,���ӺF��h-y�\u001c\u0000�J���\u000fB\u0015/3�F�zNY˗���;����e[T��\u0018c-��E���-�\f�����dMZD�$��\u0014�9��^��}?3�\\R\u0005kٗ�!��[(�ًcsv%\u0011UT�\u0016�\u0016N\f�RZz��\u0010)T,�iP�A5�\u0011\b�����\t\r<\u001cΦ\u001dM������MBX�@��r��l�ٍ�{��i��\u001fϱ�Iw�Cp\u000e\u000f��[�Q�\u0003�\u0006�@���1m�t�row�Ֆ\u0005\u0007��˶�n\n�\"\u001b��\fa-�\u000eKӇ�9C������o�)��Y�U�:�\u0005mq�\u0006�PlX��6\u00020��&�N3^�J1\u0003\u001e�;\t�\u0016��8�F�}L�M`\u0001d�\u0001�^��w���)v��\u0014�$ur\nu�u�H��RԜ>!R�\r��\u0019���0��2�\n8]��\u0003�BãAN�\u0011\u001c����\u0005kf@y=�d�k��V�|\u0013�ӵX?=�pH��{H�H��#��\u0017�7���M�{Z�*A�{&iB�Zt��ȍ�Ǯ�\u0007ySj���Ԡ�֊� ��I�ڡ�2i� f\u001b(�\u001e:��������#���@[\u0017���o�k\u0004��Ysۦx+�y'\u0003�=k�dI\u0015\rߊ�\u000f�\u000e\u000f�9:�c7�ӝ�Ak��bF��֯�T��.� �w6O7Pe4%\u0003\u0006\u0018�{� ��\u000el]���h$�0�:��*��\u0018\u0018�\u0005A1Z\u0015ԵV\u000f���5#\u0003��\u0006��2\u0016�����Ԏ{\u001b\u0010w\fK�GR4�\u001fN\u0015ZD�=(�\u0016=�H�\u000b��V�\u0017\u001cK�c\u0007o6�#\u001b��5,O�~\"�\u000el\u001c9j*Z��@z*r��)�\u001b[�+T�ݣ��\u000fIRģA^�\u00110���)+�eW\u0006�5�\u000f��ӡLےO�K`uamƫ\u0006}��+��jY�O��}:\u0000��@�==�G9�\"JH���Ɋ�\f|v&yֆVl\u0018�e�n�1פ\b��\u000f�P�tl�+*�{d��efy�\u0006\u001fA6���\"\r�L�8YnH\u0002�\u001f�D\u0001s'�\u000e\u000b�S@EgɆ�:\u001e�a\u0004y��\u001a�u��\u0000��o����Y{\u0014��^��\rH?q�\u0010\u0005�Ѽ!T�w��I��EŘ�m�r 6ٳ\rV\u00074.>���m�=�\u0002�2��\u0010�y\u00185�X�`\u0016�����Ƒ�\u00033�+q&�Gv\u000e�[��7I���N\u0002�\t\u001e��\u0016ޥ눓�1@%]\u0017�n\u001a޶���W�Ei�\u0002!�\u0002\u0003�鵽\bpS��q�\u001b���?��\u000f�6��2�.�\\��L$\u000f�\u001e��%0l�|5\u0016je�ãAJ�\u0011D���u�m�\u000f\u0007�^i~���\u0006y˭��S6��՚���/z�-69��0\u0003“\u0001��oZ,�\u000bX����\u001fW>�|6��]�'OHH�=�D�\u000e�uG�\u0019�*���g\u000el6Z�� %؛�*\u0012.$\r-�,%�/r��\f���#h�$~WG\u0019������*�/�Յ\u0010����\u000f#n�=�\\\u0011����Ȝ-��s��?��M\u001c'\u001a��2�D\b\f��cg!�c�֡@�#��'\u0004�\u0012/���8\u0014'�Y,\u001e\u00072�3�t���\u001a\u0016��J�A��㢓;k�\u0005�\u001b\u0004+��d�#��$��޵Nw��hh�z��R�5d��\"�\u001b�\u0003���U{���@}欪\u0014\b�\u0007{{u=*@�P}:�>�ãB��\u0011X��ʚ���\u0000Pܓ�!\u0011m},30c�NB�\u001d��i$�.�\u0000�\u0011w\u000e\u000f�8L��ĉ�w\u0004���I\n�\u0007���F�\u0005�׊��Q��L�ݦL���H8\u0005\b|6�)�\u0014ⴹ];N�\tg�iܯ'�\u0015�����\u001e�V�Z\u001b{��P;F\f\u0013�\u0003@�g\u001aq!˘G�RilD�x}u�\u0000E�����6b}���\\���r\f�Wh�x�Y \b�>{�\u001dDmS}\\J�\u0005G��I3j @\\����N�\u001c\u0004[�k�.\u0005em�\u0004�c��Di���v�w��a\u0004\u0014q_#Q�X\u001a��\u0011��/(����X\u001dY�\u001f��ׇa+���ؿ�SN\u0017\u0017\f�0u�L�c]��\u001a^���d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001�eL�\b�L0��u��ε�'��\u0011�\u001b;E�^�2�m�a��A��\u0018�r��\u0005\u0016��P�k�DcV\u0016ݜ�k#$���?~r4�4<��h�\u0019��:�LK䘐�ӫ\u0001\u0005��p\u0012y��Wk�[CT\nlꅾH���+ �h�\u0007I$�3\u0007�\f\u001c\u001d�\"G�\u001c�\u0005Y`�c�Vt)3�u\u0019�BB�\u001fae��'Y_3\r/,lIj�Hԑ+�\u001a8+��r�?���oV�Wi\u001ak�T3���纱��\n��{�u\u001c&gP�T�tx�����|haap�W\u001b�{�\u001dQ)Q�\u0005;��}B�'\u0011C��Rsa$t�6�#Xy�\u0001�-�\bX�H|d��q�m�Gn%�Nz\nF�*+v�\u0005\u0004�Ŏ���Ec�\u001b*}=���\t\u0010U��-$C��O�(�M;��֥���qH\f.ãA�\u0011l���?�=K\b,��-56P���ErgR�\"bL\n\b\u000f�rw�\u0000\rB\u0000�\u0016ׇ�\\�P؄�mZˬ_�Q�u��\u0018\u0002N����JZ'�}+9F�.g\"�ϥ�ZA���!��Rɦ�m�*��o�}\u0001)Hk��|3\u0011\u000bʎ\u00128�B�)�L^!�[[\u0017�\u0018��[X���'�n��*\u00038W\u0001nD����\u001c=�\f\u0018<6�1�{~M�( �\u001b�@\\j�\b>\u0006��0�D\u0018���6\u0010\u0003/�Km��Vn\u0014\u0012�@�\u001b���d\f\nļ�\u001ag��\u001b\u001f.�#*v\u0001�OQ���vE�0\u0016_�\u000f}W�\u0001�ë/���Z0�ѽ\u0010�Ρ0\\���!�ֶ��\u0002��'\u0003,�NP�e�\u0014\u000bv��'{T��s���\u001e���\u0018`-�2t�\u0011I�!���\u001d��u\u0001��U���nɫϺ]2���Ι)\u0019\u0012�-\u0014�\u001fH��Ӳ��Ņ�\u0005����)\u0011� �\"Eh�B���\n`R\u001b�y\u00115�J���\u0002L��\u001f���:5>��o��-������]X��n\u001f��\u0005�\b�,�t�j!���}�'\n�x]��>2j����6\u0003����e�l�\u001b��wń���l�F��Lr2���Z�/��[a�E�AB�\u0011���\b�\u001d�qC��Gb��XJ\u0001=�L���h�ߨ��&�U=\u0011N2m��qm��$�W$�d��\\��\u0005�0n}\u0004+�3^C��Z\"�K�+�R_��\tPr9�\u0005z\b�����w�����\u001eY7b�����7���P�+a!N�\\qrɔ'��y\u0015��~�,�/�\r��L����ga���Xf M�\u000eڍ���N��f�����D?a�Z܉�����]*��\u00053���Ug�\b}��}4y\\�*^і�5<\u0004\u0012���WǠT�x\u0018�*�|Pu-R�f�\f��D�R���\u000f�B��m�Sx��P�R_w\"��FU��nd\"x٪\t�OuXhV<^\u0019��\"\"�c+�9�L�0��_�\u0017-J�\u0000�d�{Rokl�\u0006����Ar�\u0011���|�NH:ـ�B\u001f<���\u000eKi��yT\u0007/%G��BI��\u000e�#b�\"Z��tC�\u001cf��!�2Vy�3����7\u000e+�\u0014�燅XT�\u0005y�p~�\u0011]�H�\u0013[�,6}��s'+\u0006�2�׀\\\u001a\f��|T\u0012���\u000bS\r� ��!\u0005w\"��\f[Fm�\u0005dM���\u001f�\n�0a�\u001e�f��dO\u0001ɲ���\u0016�\u0002>/�[�J�<�*F�g��D �i܈,�#C^&4��\u0001��B\"vj]���l�k^�\u0012L�\u0015$���J���\u000fY��]\u0013�x4����\u001c��e�\tN.���\u0012���\u0018\u0000\u0002�\u0005���7�!JX�q�\u0001�*\u0016�sPr�s���i��Bݲ\u0010��G���\u0002֒o�\u000bC�vBg^�e��—�#ve\u0005h�!\fx���=�z\u001d��C����b*<��\u0006�=&,���!�m4���H\n��Kd�OnTA�1�Ax�\u0011�����|���L\u0001Q\u0013���\u0012���\u001e��\u0012\\�\u0000���x��ҷ�F?�}��7�UD\u001d+v\u001dQ�\r\u001fX���mgj��\u0000\u0018�pkOo\u001e�{\u0006\u001d�\tQ쓬@l����\u0019�n��3\"S��6;�\u0014��R��\u00105X\n^��跚�_їk�\b�>�������\f��s6Y�*\u000eN\u000e�����u$\u001e#��\u0001K�<���\u0019�46 &�\u0016.��d\t)�\"n��Zm�\"�3d\u0007�f�\u001a�:���S�#P�^\r���ԝ��pujN\u0004ͬ�O 4\t�<�J\u00163\u0012�A�\u0003\u001a���F�U?j[>�+ܕ��\u0011��\u0005oɔ\u001c��C��\n!Rֆ�n��\u0005�{o�٠�#/\f��&O'\u0019���O�|;��E�m�.���\u0007y��fgmi��p���B�'���Q�5\u0004�\t���P�9�ա����\u0006lTnI6؆ovT~\r�1O\u0013�ţA��\u0011�����\u0000�\u0007D�M���z�52��\u0007\u000fX\u000b)�k����\u001c�1��@p+����\u0012�L#��vy5Fݪ1�\u0006w��\r\u001dI\u0019�@쩬(�������\u0018h{��\u0007�~��FUҝ^�'E�my3�Y��.Y�t\\-\b���Z\u000b\u0014$�����x\u001fz\u000f2ۀ�Yr��p�.�4L.��\u0015�m��P��U\u0018܉k\u001f|��\u001bL\u0016$\u001a�L]\u0014V��<\u0014�z\u0007hJ�U\u0002֓���\u0016S�Y��W��p������_z���\u000f l\n��\r@�D��nU���\u0002�\u0016��K\u0018\u001f�7�-ނ{��=\u0005z���wE��\u001c\u0010[�\u001a7te�^��i���r�v��B��\n�\u000f\u0005N�}�=[PW���iu�M�\u001e\u0003F3��T\u0015X�G�jO��tN�|�֌��#O\u001e�2\u0002N�ӯ��k-�\by\u0013��'���Ԡ\fl\u0012�\u001b���p�R]q[+�eT��\u001b\u0000U�)�y�C�*2ţAu�\u0011Ѐ���\fwjQwX3\u0010�\u0001]�=b��=��+\\\u0019>\bĐ�Ѡ�D�\t��jp����W1�x�7���u����Dn�\u0011%���\u0001SQdc;��.�w��a�F\u0004\u0006E\t�\u0011(����͉`e\u0015�3?�K\u001c\u00042��$NZXZWS�G\u001eu�/^�Ly\u0004=���J`�[3\u0014�\u0001�S3�y�N��bWZtY�y�\\�\"�\u0019�5\u001cv\u001e\u000b�\u001exB��o\u000f��\fņş�h\bY�$I��D\u0017\u0007\u000f�f�DC�I�j�\n��{����������~���>H�N�ް���k�R�\u0017(&�C��G�Wzt\u001e�斨��,��-_j/.��2��`�4ҖُG3�����܅�q+��s�t�\u0001�u���\bqh���b]�����\u0002\u0012/v.�^ţA��\u0011���AWT�\u0003\u000f�\u000b��T\u0007�\u0003�5�*6=�Ƥ��w<\u0012��\u0001�5.a���•j�p�\u001erv�\u0006}B�%\u0016�@ۨ�r/��j��s8\u000e)�\u001e���J�]X���q4P�!X\u0016���pN\f�z�9Z6�9�����\u000e�! �����f���5���7\u001ev\u000e�Yi��q\u0003uaԸ��C2\fj�\u0014T\u0002��\u0004�f�\u001f'��,�$\th݈\t�‚}�s˩���2�7��\u0000��~�ʄ���jd~�x@\"�\u000e���ģ��~�5u�i�-\u0014����5C�\u0013��,IE�\u0000��!��s��}�\u0011W5��_\u0001�����)\u0005\u0003�.�\u001dH\u001a�\u001b3�\u001e��J��\b�\u0016\b�Z��gd�\b�t \u0006>\u001f3Ȋ�'ך\u00021���\bR��\u0007\u0006��†.Ǎq�c���z;��Iou�#�1М�Q)̂OZE*)~�\u0000l�ؑ\u001d��\u0004��@��\f{q�\u0006��ţAx�\u0011����\\�v�\u001c���\u0011Ʀ=�-�5�$�V�p�#~�O��\u0012\u000e��/k�+���\u0016ν��\r��\n7���*W�SB\n�j��*�À\u0019g�k\"��g�:4e6T�������\u001b���\u0004�_�CER'\u0018��2)Kl�b\u0013p�Cb�r�m3\u0002X̟��jW.���\u0000\u0003�1l1.�H\u0014\u001b�_��֤��R-`���e�\u0014����GFЉ\u001e'n� $c�\u001dqB�z\u0015\u001b#�'qO�{�}��b��\u0019��D��\t�t\u000b4\u0005],S���\u001bG#3?p\u0010\u0002A����U1,���Tbz\u0013rh�g�\t��}\r8�\u0014\n�f�I�rA��@Q��\u001a�8S\u0006\u0005͋\u0010\u000b��)'�5\u001c�\u0000��^D/�G�?\u0003-��I\u0005����\u000f�XWn�\u0004��R��\u0012W`(��ڏ/��k�hZ�Ē+�u&-��FI\u001aFM\u001f�CU���ml��!%\u001b���Ҵ���ţAr�\u0012\f���+\u00069\u0005iH\u000e\u001a�;\u0012K��\b�l��&/g�Rm\u0015�\u0012�mZ\u0018Hܡ�Y�P\u0012�!�EF)d���\u001c�Z�ux~^�1��/�\u0014\u0007�V�JS���1Mkl��W�zɐ��\u000ek�b���?,L\u00127���E\"+C�[�5a�0�\t\u000fqi\u0005��1a\u0010\u0017{��RU�E�\u0007�O\u0010V\r?����\u001bvm�3�C���西5MچL��*�K;o\u001cn˒��KC�!%\u0001T�h(�g� ��_g\u0015b����\u0004\\yH\u0015���\u001c���d�\u0001�\u001d����E]����y�\u0017t\"���#���L8H��\\~��\"��ɒ��b�-cܔ�N��i\u0018,���\f*���\u000f:u��є��M\u001cC�C�T�A�!r?�(�\u001bp��~�/\u0005x\u001ef^�7k5��(�D�P��v:ţA��\u0012 ���)a�f�$��d\u0007�\u0018�V\u0007�q�(��<����\\��\u0018�\u001au\u0002A���,�,�۫R�\r\\���5��Ll\\L���Fl>���G\u000bP�Q��\u0011Xn�f��ߞӎ1\u001e�_[�A`��*89hv�{�����VR�d\u0011s�\u0010���\\�\u0015\u0003�W��Ha\u001b>�c8��X�α �Џ�`���\u00023^�'H�8�\u0012M�E��}�RA�@\u0013�\u001a\bY�7��+\u0005`n\\#\u0007f��}� \u0010�Nz�c�\u0018�\u001c��Q�u�dM�Ĺ\"M{�ظ�\u0013�;<��*�'\b8^(4<)���@B�qk�J&IM�͡�N�u{b0��\u0011�\u0013λJ��̌EZ���pV��[JF��\u0019jE\u0019�&�F�����WݦF��\t��+�d���(�»�\u0002s��$$Թ���B�D��r�K��\u0003\u0001�J�\u000e����X\u001bC�.i�T���:�\u000e���{\nţAh�\u00124���\u0002\u0006�j4q�I��r%���\f��\u000e���\u0000Z}� >�͒tz��RaZ�d��\u0006�6�\u0004'��\u0000�\u001d�M�3n�$0�&4�HƓ\u0019�\u0018��\u00146�v�\u0012pr�E=�Vu\u001e\\�\u0007Bp�8��a^��<�tf�v�V��yZ�Xb��\u000bLa��{_M{H]\u0015sx����O#��ݮ\u0011\u0012���3�&���o*!/}�%��bF�^ɹ\u0005j��զ~��/��E\u0002\u0006\u0014��zƜ_��R9�n��\u000ff\u001a��M�/Uӓ\"\u0007\u000e^�v��*�y#y]\u0001\u000e��\u0007\u000f4��c�Hq�({C�@�z�\u0019)�=�vbC\u0001\u0018�hh\u001e�.*I��wQ�OX�\u001d����޺�Ťo\u0000\u001bf=�ָ\u001e^����\u001b@\u001c���j�&���\u0010,������cY}�X�g'����\u0012Y\t�\r�9O�n�\u001f����b��W����ģA��\u0012H����\u0010[�\u0004��ٗm7���|�E;�B,�{g_1K�\u000e�s\u0015?�\u0013^�p��\u0002��\u0002p���F��X��ZP\u0010\u0011��y\u0000�P��\u0012x�v.�\f�o�\u000b\u0011!#�\f��_\u0013\"�r�{`�D��\u0015�n�\\��\f���� gY�Ѵ���9��FA%��|�4���D6d�\u0011�w�[\r�١m\u0014{\\�(��\\�b��t���͵&7J�\u001e.�[ͱ)\u0014;*|\u000e\b(Ul�\u0006�f��hC�`�\u0004m��a�&^)\u001e�I���\u0001�qy�����&�尡,4\u001f\u0002R\u0002\u0004��!\u00063$\u0004G�3p�,\u001cE\u0004������q��O��,�On\u0016�\u0019\u0014_��\u0019\b��^u6\u001be,��L\r��\u0010\u001f��p�x������!F6�_\u0014�x�q=�e��Nj\u0018Gqȧv0q���Q���\bm*��R(�\u0018W��w\t��o\n\u0010�\u0018~�d�\u0016�͙�����m������V\b6ģAw�\u0012\\���\u001eϜT\u001f��?y~\u000fQN0�Bt\u0006D~;��#\u0006�2���,��l\"�\u0015d\u001f�n�v%U3\u001b\u0004��Ԧ������d�\u0005��\r\u001e,\t��\u0000\u0012AM\u0011*10��'�\u0002�_��U���@���^ا�X\n��5.#�_���J�\u0016H�9rJ\u0012\u0003u��)\u001b4���\u00164���ʞ�3!�\u001d�*�\u0001�\\*���D\u0019G����\u0019FX�2�'�\u0019rGw�CM��������\bN~�W8��\u000eD����\\V�}\u001e�����\u000e�P��\t+r1����47����C'\u00118�\tM9�V�ߩ�\u0006�r��p��;U&�ab+��N/\u001d\u001c%>\\�\t��<\u0001��M�=��r6����\u000e�[U��0�2\u0015�B�\\Y�E(\u0005\u001f\tz�L�<���\u0007��\u0016��\b��\u000e\u001c\u0014�n�r�X֐NmS0�['[\u000bM�Q�Ź~LL\u0006�\ba�z�&P\u0002��s��B�Ap�\u0012p������Sf��\u0013 �\u000f�\rW�Ё'�\u0001hv����\u000b\u0014\u000ea`\u0006�B���r�+�q���n!�\\R��ᮉP� �B�A��g��\"�^9�\u000e�h�*��\t��\u001b��'7�z�����d�\u0005��j��.��\u001fR\u001b]\u0007QӽM�4q`ϛ%8�\u0007�A\u001cc��m�\u0018�Q*����\u0019�N��,���\u0006�{��WO��\u0018�`L�Ae�*�h.l�:u�X�\u0014rA���'��o(.�u/�/a��ܟ,���?��\u0012�y���͘��ċ�Z\u000e�\u0011ῥ�uug�6�hi�7uN^�\u001b��\u0002�9pw�\"��\u0001�|2\u001dɽ��Z�\u0012����\u0013��=\u0014%2{z�\u0016\u001c��١��$S�>�z�^�\u0010H,��`��[Jk�\u0018�S��4�\u001dh\u0019c3�L9ը)xe]�Y2\u001b�j� ��\\y\u001e�+ѩ\\\u0011I�s,I^>\u0016ǣAU�\u0012����`\u0012�O\u001ca�Y����\u0007�\u0014�G%�n��\u0019(\u0018�|\"�\t`�^d�4UX\u0004�]x�)�b��e��\u001e��ȏq\b�Z�)�*���\u0014\u0016\u0001%k��p��߳�G�Ɍ��\u0017��x���R�\u0016C8'��,\u001f�M�\u0001�\u0012�\u0013���U�D\"�>\u0003��'�\b\u0010\u001d\u0000s�u9\b���Z\u0000{jfP����t0�P:|�\u0010��`\u0000w3;$�����N�4���m��S�\u000e\t<%�u!�\u001a�� F�\u0001�}�T\u001b������\u0019������\u0002m\\\u001c.�'����U�W�1*�ˣA0�\u0012����42�~Lޑ1J��W��rC�j�\u0013\u0019���q�\u0016�\"M4U�=���ɰo�\u000e�)\bi��E\u0014m2ɀ[a?%��U<��UL��(GN�\u001b%E�1�\u00167��p����\u0011 s[�\u001c\r+D�~rR�~�\u00138�l\u00027A%��a�P&%W�//\u0003�^��X�w\u0016��\u0004���j��\u001e��D������\u0004)�E\u0012\u0003l�ɎRG�>{F\r��s\u0017Š���%���uD��*�\u0003Ny\u0007X� /ķ�����į�6r\u000f\u000b8>��\u001e2����,1̧�z�X��7\u000f��a�_I��\u001b�M\u001e�,K���S.�@��$ǚEV!:�B������4B���`���\u0012�\u001e�U��#\u0003&\u0015\u0018ԹU�Au�\u0012����[S�E�~��!\u0001�$\u001fM<ߧ���Ղ>\u0010�E�\u001f�L��\f!P��S\u0015�c�a۪�\u0007�v_Z��v3si\u001b/�\n��_/����N�o�\u0012��\u000b(#?L�T{<\u0010E�h~~\u0014�g�?���?�a�XV|��\u00074c}0�Օ\u0007\\��\u00101c銫��p�~63��\u0018����[\u0018��:��F=�5\u000f{2Hx�;�\u001a�!O|vfF\u0001�����gĨ�����\r�tYp\u0006�j��\b����Qi�����,��9Y��\u0005yl�-x���(�ޮ{���3\u0013>J�>�\u0005Tx��V<\u0006y٩>C\u0006�����w�Q����\u0018���-�$\u0000k�>�.\u001fEd�\u0006Œ\u000bJʷX�E��L0� \u0002K\bW���(N\tL���k�PGi`\u0006!\u0018�$�\u0002�\t�!mج\\�#E\u000e]\u000b��\u0013\u0004�u��R��JDJ\u0003��\u0018t��Q��j�B�0v~w6�g-�(+�sl��ձ\"\u0004��\t���F\u001dj��C.�6�\u0007\u0004-����\u0007�\u0004�v��)봕k�\u0019T�ƭڲ֨��\n�\u00127P���\u001a��X�����.��Z���к\b��$ї�����Bq�\u0018\t��W�[��\t��)\u0012\u001d�ke����n\u001e*\u000f\u0019(�m��z��~r%��'~�.�<�\u001c�v���r���\u000e��v�s\u0007�g�A�K(�4.���B�m��<-e�A*�\u0007E��h7:�θ���\u0007�\u0017F���k�(W8���~�����h�3ӣ�U\u0004żz���\u0000�G�\t�ξb\u0007���R\u000b��V�Q\u0003�L/�L\u0011���!$zN�3�wl�,�Go�TR�b[�MEm�g�=�\u0005\u0011\u0016\u001aT��~\u001d\u001e��'\u0000��R\u0006�/w>�\u001a�\u001aԣAށ\u0012���c\u0000\u0014\u0007&X�\u001b<��d��OD\u001bd����\u000b��s��t<\u001d��\u0019�&�fn��bA��rm��u˲bga\b�`����Vl\u001c�MP`�ub}�6$����\u001b�]��B��\n)\u0017\u0015\u0005C�par��\u0014�\u000b�ٞQ��\u0002\u0014c}R�Kxӣ�\u0006\u0016p�GõH>��;M\tB\u0007o]��p\"ݳ�R�\n�9\u001d\u0006��Ksݮ��͜Di�_a��\u0003�;&ٰ™��z�<��GX��n�yT^9���!�N��[\u001b!Q+�\u001b)��3�Z\u001au<$�b�nj�~~��\u001f\t��ˉ\u001dYI�޷\u0001�\u000f\u0013�\u0019����1���9�\u001f\u001c��LTd���Mj�a��G\u0007���m\u0002���3xnÅ\u0015���\u0012#\t�S+��^ғ�-w�H�ò�\f7>�\r�\u0005�[\u0002�R��ς�I@\f\u0014�'\bn����`$E\u000b�9����\u0006���(�T�\u0012�3�D�/��qi�Z�p��K\u0017=�(u�x��\u001d������ʮ����t�\u001f�o�\u001d`A��\u000b=\u001f�\bU�,��B�*\u0011��݋�x&G\u001b��}Qp����\u001a�_[+.�Ǩ���e\u0010�;\nգAZ�\u0012����\u000e�&��V%�\u001c HT�D�ƥ�Ԟ��n֩^��\u0014q��%\u001d���l�z�`�?\u0017\u0019�&�ι� ~\u0006�ý��37@��+�1��b'�=2�y�\r�/0�/\u000e_���cL\u001fbv�l۟]�$\u000f��\u000e�\u0016\u001a�i&�t�c�o�?�T�\u001a���&�A�\u001e�\u0005��W]�W>��\u00075�,t�m��7i#3Բ[*�\u0012D�K\r#Ä��\u0000�L�,�\u0012��\u000e�:�������ey��,6{��0��\u0001�_��R1[��>�Q\u0002�(�h$Y�Z���\f�q�*�\u001e\u001a�`��{��\tQv^�ć�)*G�ǻ��0�z�;l.\b���L\b�oo\r��dW�v�58\b�O\u0006Z\u0013#�I��3TҌ�:eߜ��#�\"F눐��(\u001b5\"i@����篪\u0002nY�A��\u0013\u0010���\u0005�4�\u0016.��@�@���j܊kM�'S�<�\u0002\u0011K�P�e䇟���ܵ�\u0007����g�?t���%�]${�n�YmAa�Bfz���5�\u0002��\n��L�~�\u001d�=�\u0018���O��k��\u001f�k��z��[�g# \u0000ߤ{}O\fX�ĸ�\u0012�ߥ��2\u0010�C�4\u001d\u0000̉1�y�6�{o�Nܠ8�0\u0002������Ņ9\u0018��3�\u0006��J�\u0011�+);��`�~sh��\u0006��Vvp�)?�\u0001�\u000e�\u0015�)��\u0007\u0013\u0003�@SZ��\bP�T�.\u0002W�<7ZH��=re������\u000er�U$�1�\u0019#�l��D��N�\u0012�p��\u001aU���\b\r�\r�ˉ�K&��M��^\u00116A����٪�٣Ae�\u0013$���e�ҴC�\\������T\r\u000e��\t~\nT�s�R��b��%>�=��kP\u000f����r��\u001d��T��g?��i�Tl�\u0000�r«H�\u0006q�[�2�ĝ���\u0005�GJ�����\"���E\u0000\u0012.c\rM�e��Y�ĥ��n�-yi����p\u001eW�\u001b7�jfA̹���Q�)�,�T�Ǎ����y=�\tl��\u0003_�(LS�~���p'��D��85�n��\rA�ⓖ���z\u000eJ岃ٽ�Uae\u001d��I�dm\u001a�qt�\r����0avm��9�|���g��\tU *ʏ��I�]\u0013Z�����=I��xeWӎ�s!�6�oE�\u001a@����0U�\u001f��]�ߠ��9C��2%W1�����o,%oS��\u001f��\n��cy&٣A��\u00138���be���y���Z\u0012<0�4��_L-\u001b24�{�]xGZ��:���}\u0001�r�\u000bE6�^��M\u0014����؎\u0012c�e{y6\u0013en������*-�|�\u001cUDs\u0004\"�\u0013̊�>��&*!��\t����\u0015����|�)�k��di��fߪ\u0002��R|�\u0004�+��;s��-�1��ץ�I仿�\u0017X.���\u001c��х�G��Ȑ�Y��cB�{|\u0000R\u0004������&�\u001c�\r�Ƈ��\f�\u001b>XjHR]\u0018\u001d�7��ux\u0001��DJ�\u0016i�\u0018m�\\6k�\u0006�fF�ѿ�\u000e|�Zދ�:/�\u0019�\u001b�\",J\u0006�*p]�e\\~��\u001bY��${������8�P��\u001b\u0010\u0001W\u0002�/\u000fb�?J�{_�V\u001bD�$($��UՑ�Roª\u0013z\u001a�\u0006��lf\u0012K�7=�R\r��\fU����\u0013�\t����h��\u001f���\t>�a��p�?�a�� �8sV5\u0002��\u000e[g�u��\u001e6;չ$MS�\u0003�sf�F�ڠ>\\#ʀ����,�s:�T�\u001e��?SG�9\\������G�\u0010�z٣A΁\u0013L��������\b���X\u0000 �p�\n�Ŋ7H试\u001a�\u0019\u0011܀ݶo\u00172\u001e�\u0005x�h �4���\u000fS��)+Φ\\D���a\u0003�\r�\u0019���\u0016SBN<��Ҙ縰\n�\u0011�t��H1\t D��%���\u0005NV���Tg$��\u0001:~\u0018Ӌ�*M�I.\u0016�>�\r0��PAwM�\fc��\r�;1\u000f_J���\\8k.\u0010��N'�\u0013E�u����\u0006\t15�L�����ɡ:ʡ��և��L\u0014�O1\u0013\u0019u���\b6��SSZ(~o\f,gL�S�ţ�0($�����Q����$�'�T�.\u001f�u\u0000\u0007$\u0014\u0003\fR�]�#8�\u0019�\u0002���z�U�<@\n.}N�\u00006%��K���\u0007T�6%\u0015�f\u0016+J���9l��Ğe]e\u0015n�m\u0005�7��.\b7{6\u0016��K�x�}�?ѼPAS2*�\t�^x�}�믋\nY�\u000e�,�\u0013�*�B.ʅ\r�0!���x��T�5����\u00053յ�� \u001a94$=A\u0012B\\3,qF~:g��!��̗:$\u00046�t�\u0005�k�\u000fz�@�m�-;He��b��Bx��J�/�y��\u000b�ܗ�Z���픿�ZL�(?\u001fٜ%�%�#�9�������8���s����c7q�\b�e���-\u0010(�\"�C�\u001f�\u0000FFȄ\b^��fH\u0001%�k��g�?\u001e�\u0007�;��wdPJ�Po�\u0017p?�X*��\u0017��3���\u0019X�1ϣ��I��\t�\u0017��q��\u0006\u0005���q8��9�I�}\u0019k;���P:כ4���!��́Z��@��\u0001\u0012��\n��\u0004��+�S%T0�\u0015KpRj�\u0002L�\u00146vȃ\u001d>�n�\u0006/��\u000e�_�ݛ@��\u0018�P��b�I�ឞ���\u0012\u00140�Wl}�\b9�NO\u0003d��H\u001asaO�<�TUPR�\u000bNk��4śBh�HR����\u0013�;���\u001a٣A\\�\u0013t����A:o�\u001a_�\u0000���?��o��:\u001d'�\u000fJ��G�����!�ꂑ��alHC�[�A>s��˂�R��r^��Y�\"������{�i�>�i�\u0001�2���\u0018���#E�ե�\u000f�ߴ���@�\n���\u0001!�����F�\"�ʓV>\u001du��k\"\u0016\u00174<���~��?+\u0012�;�4�|�\u000b�A`Bd-���Ε���\b\u001bU�2\u0015\u001dڳrc\u000f��\u001a\u0003�$�\u001dl1>㾳��v\u0013�\u0010\u001e�\\`�����\t\u0014��F�Yc�U\u0007\ra�����r$�Ɏ��.\u001b�z�m�\n�\u0006R�y��\u0004\u0000�ݻ࿖��\b����֎\u0017��n����H(CF�q7<.�RT�\u0013�Xs\u001b�ԻH\u0015�Z���*\u001b+1j�HL���!��\r \u001d\u001a������\u001bd:a�c_`G=\u001e٣B\u0018�\u0013����qI,kwpI,�T� \u0000��7񅃎�\nΈk�l���.\f��\u000e]�\u0007\r���M�\u000f�\u00068�:\u000eL�ryq�ӓUGLL�����Y�o\u000f�E���\u0000�P��#�K�u�4��#�fL��i*��\u0014tt���u�\u0018=�T�z�\u0007*���;��\u001b��q\u000f� [ց,�8��\u000f�vu\u0010ӕ\u001dw\u0015J�\u0011�\u0003ғ\u0011s(%�\u0014�\u001b���0��H�M\u0010dB�\u001b�%'�/�\u000frS�P���D�M\u000f�\u0005-I�\u0004P��\u001aQ��\\x��\u001a9�\u000e�{�F���\\��efLi+�eq;\u0003�`p��Ɏ\t\u0019ǁ�iH��a_��\u001c�XS[-��~ǖ���(�OL$\u0018\u0010\u001b+�tƴ\u0002/�՝?�\u0007����J\bí�A�~Dd��~ܝ\u0017L���A��şV�\u001fE�\u0014�\n\u0012��\u000b��N�O�:~\b\u0003-f\u0006�\r�@T���󋾞4���B\u0007I\u0002�C���\u000b�e��x�'.\u0001��\u000e����٦����R�\u001d\u0011��\u0006�N��\u0001�\u0013xL}-�\b��A��™�x�\u000ef�\u0016x�\u0018���\u000f=�&��Ao\u001c�3�\u0002����}�A��\u0002�< �&ڕ-\n\u000b�����\u0006�<\rFN�T���:�����&\u0014Y��d�N�n��E8T���Ei�<���գAx�\u0013�����3;6\u0007\u000e^���:���\u0012U�;^�Ԫ\u001a!)�K�\u0006�1�\b\u0018p�6�I\u000f\f��w�<�d��eo�\n�\\�+����=���ht�J��_a\u000e<�S�C�|�҂i�L�\u0007�\\#\u0000��?w�(�3��?�A�o;bzC��\u0006M�G�w��\u001b�4>���\u001fˤ��\u00060\u0007��.׉��RP�RZ�n^gͲw+@=�P���x?�\u0012����d��#ӻ\u0019�\u0002S�6\f�IB����#r�g��B�\u0019&��E�I}S���A\u0005PW���=c�/�W�}U�u_��.�?�\u001ewm�q�\u000e�3�\\KOt�\u0015\u0003��5\u0013��,qoe���0σ�ujۑl\u0019�.�M��\u000b\u0017\u0007\u0010��\u0019n��\n��f�\u0013\u0012�V�[���0�OT�������Ma�7������f\u0003h��`N�ɯ�5�]�5���K�p��\u0000J�D�+��G�M�AC�\u0013�����\u0002��\u0006\u0005j�A�D3������:��ޟ$�\u001c�?컅��\u001b}�U�\\xh��M�gH�\u0013�E3��\t\u001f�\"ϼA������n\u001cB��)�����:\nV韰$�.�%BԶ�A�l�t���\b~���\\\\\u0011���F��D\u0005�\u001e\u0019XZ�*\u0003W\u0019d�x\u0011뇹�x�\u001c�9��Z\u0016���x\u0001b]��>:�/r�ys���\u0003�MLX�=��ټ6\u0015X[\u000bɊ�(�]�\f7\u0014\u001e*z�Rw�S\u0001��\u0017;T\u0000\u001f��:\u0004� 3&QKqd�n����ob�\u0017xٌ[�͠��Vs,B�G��\"�\bႸ�Z\u0013Y��.=��\u0010 �\b�$sx����\u0016<5�|@gS��Ⱥ��hW~�-�\u0002bS%\u0019\u0015&+\u0002z�\u001d�h��E�<���\u0004��@�����u%j ˣM`\u0012��K��Ո��\u001c\u001d~�D�� �\u0003� ��j�5r�\u0011���o�B~�lt�.8\u000e�S ��`\"94�T�Oˡ\u0015�Zܡ�V\u001e��\u0004W���\u0010�\u0019�\u0013\u001d/W��}�:*\\l����\u0003���?\u001f��c�[5����77�7jJ\u00101F�ǣA8�\u0013؀��3�*���\\Ӹ7da\u001c�NđJ���]��&0\n�k���8��\u001c��o/\u001e���I��:�\u0013����RI��\u0006��\u0013\u0006�X��]�7N�\bv�\tS�|�𰟜�7A\u0019��_4\u0003Y�\u00014��\u0005I=$��\fV3Z��6P��<�����gxb�F�\u0015��\"�Yh\u0001����e�p�;�Z�5�7��w4\u001d�\u00182��RX���6O(��p9�\"�A��+j��j�v1�\u001bLH��\u0013~C8*�\u0018�\u0013���bV7$I��`�B��O\u0018-l��j\u0002J���e�;��\u001b6}��$�#\\\u0002܀?f�kƒ��I�K}X[fFb�Y\u0015�G���%J\u0016Ŵ\u001f?GaxTW\t�[@�\u0006c�T=���n�~ǣAq�\u0013���u��:�U��\u0000Q�s\u0010#-����{`8�\u0000���\u001b\u001e��6�L.g!M�a�t�\r¶J\u0012m\u000fj\u0005�to�A�3�'L����m1\u001dq�T�\u0016R�\u0002�\u0006\u0019����p��)�F��������\u0004\b\n��\u000b]���Ң��K��t\u0018إH�<�K�1��S�*�xJ���ۻ?\r�plo��i��Ӕw�*-�\u0014\u000b,'�mSs匇�\u0002�&�ބ�5�������%] 8S�`+�m�p\u001e^u\u001d/�����l\\\u001a\b��\u0000$�S5\t�V-�\u0002�տ�\u001b�����Z\u0017��V-��sKK����G�\u001d��i}\u0016�H�?\u0012�B,\u0016XϞ��\u0004r*ԓH�B�@�6na��Zy3s���H���]\u0001+\u0019�q]Ӈ:Ú�$�\u00049�-Z=�%��\"Z�ܸ\t�f0J���w\u0001�nxG3g�\u0000�bc��x�\u0002v(RȣAy�\u0014\u0000���+q��\u0000�Z�\u0018�Ri���l\fd��=�m���p#�M\u0015\u001f{zIB���\u0003\u0007\b�D�������f�{\u0000\r9\u0018\u001e�\u0005ĆͶ(\u000e���L�4f\u000bۼ_���\u0012d��UL\u0000��7\u0004&y��\u0018�=G�JG�~`_[;�ڜ_�R�L^k�:�/�a\u0005�BH���\u001f��3�d��}t\u0003\u0013���u��㌉\u0007��٥�o�NT��p��3����Y�$�\u001dȉ\u0012�mS�$8y8��Qe�3��:G\u000e�9�\u0019v�Q���\f�\u00133�$-V�\u001eO\u0018�u\u001fyi+L޲G��\r�l��&\u001a\u0019�Ae_\u0011�Ƀ(}U�\n�⧻\tK&�l�\u001f\u001cG}.�\u0011�p���a>�\u001a�\u0006V��j\u0003\u0005���R:\u0013-�ؠ!\\�s��N�!\u0019�Zb��(�M����Jj̾��\u0002\u000b�i6�\t�.G\u000f���\u0019\n�\rJ�p\u0006\u001as\u0006�V�ȣAf�\u0014\u0014���(�#���BA��#8*��x�}\u001a�:�ho&��;�w}�ȥ]֣dF���\"�9\u0019\u001c�t\u0006bu��u���u�\u0005͓�\u001f�{\r\u001b8\u0016��g^���o�!�$T��.��\u001bˉ�fyK��\u001a��M�JK�����F��h���@Sm�%������\u001a\u001c˰F�\u0001��\t�\u0017�@��\u0001ڜj�\tZ\n�hx���e\r�ͪ\n\u0004�myY\n�I�N�P��K��ؼ���\t�9��\t�؊��J^z�/������zr҃\u0001\u0018�\u0012P6��i(��\r\u0012U��0�ۧt|�0��Q����\r��3\u001f5+�&\u0016�\u001b�\fcY��a�!�ͥR�]��2�I\"Dz�>��Bt�\b!r�=�\u0019�^2u�\u001f�@P +��>\rky�\u0002���Б���L��.&E\u0003Z�\u001eN��S{�\u001b}/\u000fj'b&ǣA��\u0014(���4��a� ����`�j�\\ZWN8�\u0015�CU�\f(�X�\u001cgЭ\u0006�܊L�!0\u00071�^�/Q���X�p3ws{�ޤm�.��B�2�������=&��֓/�o&\u0003מ�^��\u000b�8a��\u000b֛Ja\u001cQ7\u0007\t']��N[��jM�s�����dhhg����E�K\u0010��:.�.gZ�Ig�����X'�TQVL(���d\u0011�y\u0006�~��\u0002��I��չOp�}cB�F�Ao�\u0014<����7D���\u0001����W5C��tP�\u001bU��A�:�Û��O�H�\u0007�o�[\u000e\u0001\u0003����~�\"�1\u001d� |�z'���1\t\u0002��J��B�z�\b�m7��`�:��\u001c)b���(����0���)�t6�l���]C�ƲL�]K���K��it��;�\u0000o\n㺴�\u0011�Z;Ŀ�5��\u0018~��\u000e�W#BO�\u001c\u001e�\b��De�\u0019>�+\u0001XY��[$?��(�E&9�/]�Ds\f�k�LR\u001fv��iO��\u0002o\u0003���\u001dSȖ�D��´r�R\u0003\\�\u0017�c��\u0004���L��N>��7\b$@tM\b��ͷ(�N\u0010�F7�\u0012T���t\\\u0004`R\u001dB\u0007kls�+ТRZ��\u0004wW����ZMIK�����Я��y:�rsV�L�fi[\u000e�\u0005��HEϒ\u00146��\u0016���y\bK�=�ؔ��\u0013{�Xh[{:�M3@�#0�&�H\u001d�\t(��\u001a������*��tޒ�,\u000f\n���+�\u0014OC�`gH�9:K�Fс\u001d�f����k�C\u000f�*X�m��4JQ٠r���g9���\u0006�\u001aY���Ȕz\u001e$(J�T~$Ʃ���B�[�ͻcU�t���i\u0012 ��pJ��=����+M�u\r�8���\u0002��\u001d��*�-\u0007��n�.��M��;9�\u000f�|���:�v��XD>����k��d�(xKe4z��1,����la�)7�t�\n��\u001cɋ���ģAY�\u0014����Z�\u000f\u000f~�)�0JsP|�M\u000e.Ya[�\u001akd\u0014�e\u0006c��\u0007�CúFY\fb(.Ǎc��څ��\u001d��]�0.qݢZ\f\u0014T�\u001c;\u000f\u0017\u0003�\n�Q�\u0016ﴒc�D[m]M7���{�8}\u000e\b/�A+\u001c�0�|\u0003�>P���\u0012��_�m@w\t��b5�\"x@ž�\r��}�ǀ_��v�07\u0012��\u000f\u001b,\u0016\u0001�]:�-��W�.\u0019+F����\f\b�\u0018�M�]3\t\u0011\u0007��4��\u0019!�и��Ҕs\u001a���\u0000-\u0001���\u0012\u0004mÓ�cV&x\u001d\u0002z��ZZO\u0012�\u0018\fM\u001e�`Y86��AM�^V����IA�N�\u0000)\u000fG��\u0002I0���\t���>ܜ�Ur�\u0002i��QC-_�Zz�JX%!`�\u0010��<��_Fn;�&4���6�\u0013�PQ�\u0001�qҗq,��)�[2�\u0010bţAR�\u0014����t�\u001d��6����������@�`1nM��V�+>BZu�aʭڼ\bm'˭�\u000eO��]���\u0015�&ꄊ�'�+圹��\u000e+\u0003�\u0013n��ܫȬa3��E!��y��C\u0013P�'z�Q����婽X\u0018I��m\u0014����G�\r\u0017\u0002\u0019�.��*H����n\t�\u000fh�\u000b�H\u001f\u0015A\u001d��Q�\u0003ש�FD\u000e�\u001b���^i{����\u001e�����9�X\u0001��x�\u0004��PpH���3r����v��\t�>5�lŞ\u001e\u0013�5\u001a�\u0002�0Q\u0003\u001f�JgC3U];�/\u0007LT/���*_��\u0012)����Z����Ջ��00~����)SX�\u0011��\u000b�\u001d�Mۏ�O\u0015�\u0018\r\u001cy��׆n�>O�z�f0��޹��\b(�\u0010\u001cJ��@���\u0002\u0010�G[#\u001a�ţBK�\u0014Ȁ��b�SAt�*S�!�[�\u0016��\u00172�\u0013�6\u0018��ǎ�km��j�!����\u0017Xv\u0013H���?i\u0000��\u0010\u0012#�+�zht�Q\u0006)��\u00016ᾦ\u0015�3���E�����j,H�BY\"�a�\u001f���x$��\u0016�y'���$\u0000����mv/�4S-��m�$��Q�v.M]5T�{y�\u001a��`-yG��a��\u0012�Ϊ�^J%<Ӗ�D��H�b~ň��1��<�s��v�]�m*:�\u001ar\u000f�r�[Nٕd�F{[�G�\"���$�\u0016;��\u0010>�p)�o7�\b$�E06�J\u0017�Fj\n;d]Q\u0002\u000f����5���my�?��SN3�TB��L\u0019uܵ@\u0013\u00100�k'`5S ����Z���H�\u0018��gip* ��Ĩ�\u001b\u0005�=�M�v0�w��iv�-|�W�-�\u001b\u001c�S���l@Q,1��\u0010Y�dRU)\u001c7���Om���Z���\u001b:D8L�8/|�N�/\u001bf���)���\u0002��셃�Y\u001bE����[�2����Az�\u0014܀�bm\u0002��%�CG���\u0018+�q�;%�]R�{ih�<�\u0011E;(��2��З\u0004oN���3M\bp�Cݾ6�cJeϼ�8ǀ�Y�0�\u00103�\rl��†�\u000f�l4\u0004$Iꐉ����@��L��,gk���߲_\u0019�.��S߭o\u001d�N�M.�/��i8j��gm�۰H%/d-���GN�a+�#�4Y?�\u0007_6\b��<`���O�b\u0010@�^\rД֊9��߷�?�Hh����q/X\t�5r\f,���\u0017��(\u0005�}\u0000@�e�����Z\u001b���yx��l�\u0017�F�\u0013ɽw�.g�72v2�/}@\u0003A7}������\u0014v�+��Z0G�赶@�\u0004&��\bUE���\u001d��\t��w7���ı��t{���\u0019^z�0u%�StH����L�q�����&lc�\u0019kk�;֚�P�\u000e��?Rӈ%/�\u0006D�\u0004���-\b��̣A8�\u0014������$\u0006�p���/�\u0013\u000b��1W�\u0019��7���I1,7G/U�\u001b��e�!��\u001ewB�>>�\u0018\"�\u000f�\u0015o�E�P@l�\u0000\u001b�k��u3ݷj� gH�~/�Y�u��u8-Z��\u0000�\\KG�h���={\u0004K�/��T\u001dƎNl�~�|o\u000b�-���~�ͷ�<����֠�:�b\u0000r�}j�\u0004pU�O�M�-S ֯�NY\u0013����]ՠ���;\u0010�h�Y�?LC_�zл̥��v1��H�b\u000ev�h\u0012ל�\u0013�\u001e$T�V�C\u000b�=�3����*E�`��Q3O�����\tE�ٞ��\u0006��v,�_\"E)����\u001e\u0006���#�\u000eN\u0001`\r�|Y�\u0000����%E����\u0011I��\u0006���\u001c7�\u0000�X�7��Z�'C$c0X����sȿ.`�\u0015*��W�F�@9\f#�Uuu�Oc���1�KBփ`��T>�c\u001a��:'�e�\u000bݓ��\nN��s�/) ��\u0005g��eM���S�1n�FW�n��ǂvP\u001e��%\t=���\u0002ρ\u00063�AR�\u0015\u0018��\u0018(]l\u000bN��>�l�\b�պT\u0005���N@�\u0011EP����z\u0007\u001c�u��\u0005�\t�\u0019��c#}G�Y�N�3\u0012VW�]�&\u0004���J\u001e���y\u000e�\\\u0000�P�Y��)���\u0010�g��t�H���1�ZO\u000f����]#��k���;�)8\u0004\n��q���\u0017m��\t�01RƷ!{�`A1\r\"\u0007����$X2[Ѵ\\�HO\u0015�(.�‹\u000bwd�kֈ��\u0004�\u0000�G�Z���aC���M�1�ɀ]*�p�8/�Y\u001b�C\u0004�:\u0019��\u0016{C\u001f\u001e\u001e�����g�l�*��\u0015\u001b�\u000b_\u0017\r�4�y��%\u001e�m���E^\u000e�G�梪J��R��?lƂ\u0004lj�6�$c��x\u0018h�)*�L�vKˣj).\u000f�\u0007�\u0005�Yȷ��\u001c�\u000f���\u0002=�\u0019\u000f��A$�\u0015,���\u001d�r��:��q�\u0002D�I�\u000bA�7%\u0018�*�9���\u0006�m�a�z\u00063g�8�\n(է\u0002!����3�f�:�Z�mG���nO\r�\u001e���c�6ou�\u000f=��\u001eǹ\t?\\A����\bWw�0f4A\u001b\u0013Ն�\\~����kJ��K�D�\u0017��Bۄ�{\t�>�FNa�\u0007�jݫ����P�2'͎��-�!��fJT˨�����b�%]����$�_E\f�\u0003Τ�An��/ڴ��6'-�+���\"�R�\u0006Fl�\u001f^�shB��\u0016��Qԡ� ?���\u001d{�~��3\tCT�\u0011E\u001b�/d\n�U�d��\u001b�%� ��,�D˜�\r��;%��\u000e�\u0005�nn��A �\u0015@���~/��q�����w/���]�m𹖩&\u0014�1d�5�@��ao��pc��\u0015<\u0006�\u001b�}\nPە���R�A�\u0014��\n������T\u0004ΐ�e\u0015ؽ�8Ƹ�G�\u0000����|�7}I\u0001\u0002\u0002 `��J֕c�>�ź��'pEW��\u0014^i.��K\u0006��*�\u0002\u0018�\u00036B��w��)m{��e5E\u001a��I3��p�e}�/�~�R9XG�m5�NQ=�EE\u0010_7ƒ��\u001e\u00158s���)��+bi�y���\n�FԀ��Y��Lv�o�`Ȉ\n�\bU\u001c5Gȋ� ,=�\u0000E�'>S�$���&>�(�H-oW\u001aV��j�i�\u001a��ڕ\u000f������A+�\u0015T���)����\u0005\u0015�k��=Vb\\��\u0015\u000e\u0012Ol�\u001cƉA��h�6\\\u0001\u001a]�z\u001b�m�\u001du,K~�+ I����]��\t7Qjœ\u0016��\u0002�Uķ�·�\u001c�{��(c\u0003:Ұ^�L���v)~�-�\u0017�\u001a_e�D0\u0010F����L\\˸;�\u001a��!�n�x���˃�|�����Ƶ\u001ft���bs�+%�nmu�m-�(\u0007\"�-h\u0000\fK��z��AB�\u0015h���\tˆz�'/>!(\u001b\u0001�!#��_��\bI��]/���y��$aZA�\u0019���\u001c��_\t�;�\u0007[W{PT���p�&��\u001f�gt�/@����(��A�H\u001c@�b\u0017\u0018���S7�V�A���R\u0019�ǥH�6]3�;\fxs���h�&���$�b��\u000f8\u0002��h�0�\"q�[\u0017�|o�\u0018~\u0016Zm�\u0004�6\tv\u001dS��ǃ9��\u0014t��'������$�\u0019,�����1\u0017��\u000e�ݏ|����\r\u001c7�#��21}��\u001d���ʟ��a\u001fI_�hA­\u0006�s���\u0011�N\u001d\u001b��*���RQ��\u001e�7\u0014\u0000z���ˍ��B\bS\u0016\r�җ�j����N�Fy֛S\u0002�������e��5����3�p\u0007v�;���\u001a��Af�\u0015|����\u0006��6�\u001e�:8ہӖ���]�zX\u0003�\u000b>s\u0012A\u001fk�PMD�l�\u000f�ə��q�63�;Bp鯳����\n���0殍Zѳ�Zb� R%�\u000f1�:\\�c\b\u0004�R3�}��ˬK�\u001e��\u000b|&��\u0017\u001b�t2kJ\u0005n\u0018�﷭�\u0000�\t���t�e�l��\u0017d\u001e�s�4Jqb�P���Gԫ2����x�\\�F�\u0012\u0019���GT�|GK��\tf�\u0018Җ\u0002ҧ��&�, ��!�mgX��\\���GX�S\u0011{W\u0005˳�y\u001b�s�4N�o��/T-��,;Ϣ{:�]�#�V�xu<\u0018���-�\u000b�� N����|��\u0002g\u0019w=RhNh�&��J\b���\u000eFs�Hj�\u001e�\u0005O:�A�3K+�2N{�X'`RϣP�-\ta�\u0001R��ª)�Eu�G�IZr$�KiQdݕ+Ϊ��As�\u0015����-LЧ��|�6\u0017\\\u0015\u0014^�{�4����ЪO��\u0000�e\r-C�\u0002�B+\u0016\u000e�<�b��%\u0017\u001c�b�b�M��G�3>_\u0004�2���'��aGcޯ�ik�!�=�\u0018o����\u0010ag�\u0014��:�<褀h�1��q�5T��bk��đ$���\u000e�\u0017O\u0019�\u0018l�\\��vLE����9Ty��\n{��**9�b�D�O�i�<5\u0005�r}8�\u001a\u0004���yP3>Mw����\u0010��i}\u000e\u001e\u001a��A2:����\u0017��\u0019�����>dP,\u001a���t�Z�Y߃�;285=�\u0010e��\u0016���٩O�4�\nzq�t\u0019\\\u0017p6��\u0016�\u0007W��ӕ\u0017��\u0015�W鼝��iͼ+�3i?!989m�=AK\u0018��8��!��)\u0015���g��)n�H~D�V�V��8Q�Y�\u0001��h?�\u001e.\u001c�8����5�#���K���Ae�\u0015����4�\\��q��\u000bY-�\u0019�𛍗�z��)�����\\�TU�C�H���\u000bi�{��aL�Jo�k��,Z��L*�i�s�&Z\u00104���J�I��픫�/�5��.�M�J�\"3B=L*б]�M�F�`ؒ`O�q��J���0\u001f\u0012�� >��\u0007��m�\u0013]\u000fSDפ,�P�WK\u000f62��\u0004`#�\u0003?�Z�}��?��C��2�&rw�M�\b��yG>�\u0013֗6��\"�\u001fq��7�z���{;��\u0015�W������V0�{�M����#RDB\u001e�4l~�\u0007\u0012�$S\u0001)W|2��\b�Xӽ�>\u0005D\u0018�,[�/\u001awa�Y�����}\n�\u0017��y!c\u0002*P�O$��^��Ķd&�����%���\u001e*$�[��V�$�\fB�\n�/�K�ں���R\\�\u0007�^��F\t���rQ!�{�uɵ�\u0002WO^\u001bJV�¶�n�\u001b/C��\\�2^{\u000b�\u0010�$Q��ߏ�-<\u0000�$ŎQ1{�i��\u00115l��3й��!��F�E�\"��\u000f�\u000f��|҆Z�؞\f�5\u0014�\u0001kI\u0002��]�q�HM��|���Gh[�\u0015$//�\u0013O��\u001b\u0002�L�C;�\u0016\u000eS���\u000bݫ�\u001b~\u0003\u0003\u0006[+�鍑\u0007u����V���u�\"[�l/D�4�@Cu��\u0015�|��n|D'V�ջ\nr�s�\u0001ES���Ay�\u0015����6a>�d/[\fg���9\u001c�u��=�GܳI,�G��I�}�\\8�h����d�_���<���ʉ��\n߰]�E��=\u0002���_�,O�\nҎm���\t�Pg�v\u0017H�+(�/G�0�\u000f��\u0016�eh��\u001e���5\u0018\"@�TH��v���9b�lj\u0019$̚�\u0000���R4:�\u00017!b�\u0011\u0018��\nD��Y=�J\u000f�B$\u0006<����#���^Z�nj�`�`�(�5[\u001f$�*`}��\u0011�\u000f�C�E�\u0017����o� _<�\u000fz�6_��6�N�T\u0017�_�����\u0000�\u000bsq�:�U\u000eΝ�\u001frx����8�G�Z-r��\u001f�\u0005>�j�\u0000\u0010\u0005���&�\u0005�!y\u0002\u001df��jsI�[�Fԑ3��W�*�e\u0000-]�GX�\u0017����b�\u0017�^d<``֩Ux��ib�cLpO�\f6}\u0001\u0004�\u0000\u000b\u0001D{\n�9\u000b�\u0003�4���A��\u0015���p�D\u0017�N?\u0002\"cG\u001e\u0018+��%���X/�T���<�2Y�H�O��\r�~I����˒\u000b~����/p��.7�P�y���-˼�a�\u0018�d�%o\u001b���%\u0012�A��.�ө�\u0011��P;\r�.\u000e8)\n��t\t���/��I%+NPH�R�\u0006�2��o\u0017�v)\\�4�\b�\u0019V~t�ܳ������(춘�uXE���@jР�'���z\u001a\u001b,��0zPHF?2�2�\u0007\u0018\u001c�,U3Ю.\u0016�:�'�A�i�e��q6�r�l\u0001@� \u0010�C\u0003�6(�un��(n-5��v��\u001ea\u0003[�&\u0011��*ܙ�z\u001f�[�\u00020x򒠠\u0001U\u0013+٬�\u0000]\u001ah\u0016�8s�\t��G|E�zR�\u001e]�=�@^XX�\u0018����߬8��\\ո\u001d\u001f\t����\u0006O\u001e���\u0016\u0001rw3R@4���OB��p�\u0001��G�\u000b����)^>L�|�\u0016�DE�v�\u000e��Av�\u0016\b���L�@\u0005��\f\fa��W�*�q�:)\u000e\u0004\u0001�?�\u0014\u0000�w-�;UG!9\"P\u0004t\u0015�6z\u001e\u001d4��i�^�.!P�{V^r�H����Q��r[���\u0007k3�YǠLf��\"��+2���\u0015ր~\u0014I�=\u0011ʎ4ܳ+�ר\u000e��Ԫ��$\u0004\u000f6�v%���2\u001a:�H�@��T�\u0000}��Z+e�B{��i�`ro�\u0018�\u0010C��zo\u00115\\�e�\"�\u0005n~�a'9\u0006r��\u0013��{��BW_@Ó.���b\u000bZ_�\u00117l�NϦ1,H���Q��D\n*,\u0011xg8�T&�9v)x�\u000fﵪ��9P�,4��Y\u000bA���|�&��w��a�NJ��#�\u001b5>\u000b��\u001b���L���D���\u001c�^\u001b�\u000b��B\u0016�]\u0019�<\u0019\u001a;�ep���N��i�LPVd��)\u0017��\b�\r*\u001cγNxe�*e�L\u001a)���8�\u001aᘛ?88�2\u0010޹�A��\u0016\u001c���A_��q�1Yi���\u0013��+�q~�bK��\u0005��q�%\u0006��!���c'�4�\u00059Dv\u001f\u001fb\u0000,\b\u0003F\u0014V�Ee85�.��\b�+4�@��޾�/׀4�f7u��3�x\u0003�dB�NwD\u0017�\u001bwLt�\u0012�i!@6\u001e�lN�\u001fd0?�~+;��:^8A�w�K;3yY�ֳ�ٙ�sӏ\u0010x9�c'r�~?�h����q\u0015���;\u0006.?�|[n�D\u0016�tU�B�\"�3b\u001fV\t���\u0017��Ry�\u000f4����@N�\u0015\u0018��\t�0T:\u0019�4\u0006�X`�dQa5����\u0018�G~\u0004�Zn[��_�M�b�(E\u0004��&�]�p\u0018�t%u\u0013�r\u001b\u001b\u0013K\u0013��k�?��:>�,�\fR\u000b�gQA�*\\\u001fH-��\u0011��+X\u0018�*\u0007�[!9\u0012]r!�o:���4Lv\u0006���/J���>5\u001c�L\u0004��ڝ��Q�\u0016ݗ��p2?�qcD��~��ٯ�����#�y��msWH�\u0016��T�������l>\u0019\u0017�\r\u0011������=B�FGU,rg��r+=\u0007f�\u000b%\u0007��0>~�3���k/�;�u\u00049����\u001e�6��9\u001f\u0013��\u000fR-Ǣݖ\u0001A��\u0004E'��X-*Įly��M\u000e�\u0019ULh��B\u001a]\r7��J�92\u0011*SFϼ�q����R�\b7�����?\u0006�\n(���Q�C\u0004w5�`�a\u0019�~&F�Z ����`�6��A��\u0016D��� Rwx��vo\u0002�\u0006\u0017�A����.\r\u0014�Χ!]l�<÷�x��\u0011�QF{|@�:\u0003D��NL�E#�\u001b��腏�\u000e�h����ق�h\u0018)[�}|8I�Ա�������\u0004����ok\u0013���C�V5�>*b��\u0003��\u0013�2�篌�6K�]���`\u000b���V|7\u001e�贯?����Yc�%�nڠ�a�t�`\"��\u001eF�G��*\u001dhx�����\u001a�2�!���r:\u0002/U�:��ޖ\"��`��\u0014�w�ҍU�\to��#\u0013y%�\u0014=��y��(���!I�>�\u0004�>�\u0010�\"v\u0014�\u0003n&8��\u0014�[�\u001a��9�\r�\u001e$�Z�\u0014\u0000!��}˘��@�r��&!s���\u0012�\u0000�HO\u0019\u000f>j�X��D�\"#g��W�چ�1�\u0018�4V�-+2~����䠠6\u0019/F�Z�ZSu���\b���'�l���g\u0010Q�ڸ�A~�\u0016X���_Ӷ`��\u0002.�\u0005J�D?GZ\"L�6Q�.n�%�r`�\u0018��`\"^7�L\u0015\u0000A�\u0002�Dr2��Ⱥ�ƹ(&�\u001b\"���X�\u000b\u000e&�#f\u0000\u0004{����jO*�SyV\tê��\u001f��0E�Ban��\u001d�Oj'\u0019\u00029��a�3\u0005�\u001ew��\u000b�E�J��Q�K�3�\u000b}5�{�����d\u000b;\u0002\u0002��2\u0011�\n����~/��#���6��z\u000b\u0019�C\u000f��@\u0014|ߓ�c�r�K�TaH&�:]K����Q)�4��\u001f��P\fdU?위���(�PIN'�]H����UuQ怮�;�h�4�~\n!|�Ub.��ɼh�\u000e��0o�R�@8�|\u001aԇ�\u0018m��F����Su�'��CpVo*�+�ya�,�.�\u001c;���\u0019>A��\"�I����\u001b���\u001a�\u000b�4\\\u001d\u0019�a�&\u0012\u0014w��d��t��X���@t��i�0��#(�w�⸣As�\u0016l���Z�O��P\u000b}ԭ\u0011s\u0014w��z��\u0013��L:�\u0004<�oe�:��wn�]\u000e�v��\u0011�F�1�\u000e\u0017��hW��ڶ0x�q^\u0007�9>}�/M�]0��\b�<\u000b�lq�\u0017�ʊ����.$H�\u0015\r�2n���Y���\u000b�*��_��\u000eNKb.�A�6������aL��1fݕ�����\"�O�\n\u0006��2n�I�\u001aq�o���O\rϒ��|'\u0006=�=›\u0003&O��?|\u0013\u000e�\u0013��\u0011bi\u0006F�\\�.�Ӿ�qm�l�I��n\u000229*�\u0000��\u0018�5Bc�/� \u000b��d�\u0017��sqr�\u000fr}jA'\u001b�D���/H��\u0005V@��\u000b`}� �X��\u0006\n�\tD�a�-�O��d9�UH��\u001e���zľnv(�k$*�\u0000����}�p\u000e��K>\u000f����;�v�m\u000fb#p�\u001d]\u0017�{X4�H+�cn�\u001d�T���P��f���A��\u0016����s\u000fW��\u000f��7�\u00075\u0010x{�<��t1�ūm����#���0�_\\���td��d{\u0002��L/\u0004�\u000f!�+�\r���)���S��\u001e�-\r�\u0016~\u0006�MF\n�`�����~�K�$i�\u0012�>\u0003�&/%e���n?#*�z�Ѥ�\u0006>]9\u00058w?�Z�b'�1_��oTh�s��\u001b\u0002\rc>䅶X\u001d��駧&ࢮJ���G�b��b����pz�a`<:�U�\u0002\u0014�Wz}��q�o��1'-����/\u0002�6\u0011g�X��Q�3\u000b\u000b\u0012[�\u0004B��p\u001dܪ8̸�b�.g�!�R{@�_��ԨV\u001b�g�$�c�\u001e�\u0002\bM]��Y��\u0015��0�U�\u000b�a��f��7\u0014��tb@\u0015mu��\u001aq�\u0004\"�\u0004l�.��pY\u001a�N�+�.�\f�G�#H}�~��\u0016Ӯ�\u0017R�z0k��}�Ah�\u0017p=rj� �\\�a��!��TB#\u0003\u0015��qb��\u001a�?F�R�\u0010���\fޠ\u001c����M�����:�ẉ���R\u0017���|A�BmuI\u000e\u0011\u0007�tƈ��z��\u0012>��ǣ����r��=F���%u��\u0012\u0014�������\u0018�\u000eک�&�(\"�������c��+�v������\f-�\u00161\u0003�h��Bf|PZ5'�>��*y�n|��3��\u0017\rf�Ĺx�b�ͨ-\f�v�;;b�NP|�\n\u0001l\u0019Ca��v��\u000fE@|\u0002�+��QEYF�)�\b\u0014\u000eh�VY��� \u0003��T����Ao\\���\u000b�Bjׅ��z�SK��h١\\h[�e\n�r\u0006\bVk�\u0003p�\u0011-U�\u0000T'\u0010A��0x�y\u0002�`��(d.���+�t��n��5��\u000bc���\u000fs�\u0003��v���/P87�RG?���A��\u0016����)rh���Fk���C��J8%w�+��\u0017\u001d��ԗ���\t5@.\u0003��H�\u0017\u0001ia\tl1��W���;��y�����B�m�],��mw�/��{o��\u0010�m���F�G��g��\t�\n�\u0001�\u0002����C\u0013K��\\��^�Q����ײ�kg��\u00192|�C1C}��4\u0016̧w\u0001�T�'�8\u0018\u0016���񛮽���\u001b\u0014?�r{p\u0005*�qǎ\u001e�3Qmv\u001a�\u000e()\"3�a\u0017�\u0016\u0004\rX�\u0019��(\"�k�\u0001��R,K�+�\u0007�3­\u0003�x��m\u0017�|�\u0011\u0010\u0003?� �f�(\u0016�#\u0001\u0002��\u0010e\u0013��:����!K\u0007V*56β��Th9!�49�y�„��u�O�\u0000�)����\u001d��l��\u001f��\n�1\u0011;,�M,bO�n�5t\nu���\u0011}؅%�6<��ܱ�\u0002�&�\u001e�\u001c����L\u0001u�|�d�)�x�Sb'�-�|L�Fk\nt�\f��M@,�.�}\u0006�vX��5�7�\u0011�3Q�\u0003�����T���TR��ɗ7�h꺣A��\u0016����V�����\u0010�9�\u0010M1q�eY\u00135�2�]\u0001��Г��I�0\u0019��YiDV\u0010�H:>h�o_�-/�]��'�Vn^��k�?N���L���n�\u0002�=A���0�\btj\u0018|]\nƦ�\f\u0001\u0001;����W\u001e]ϓ%+\u0015y|\u0010B\u0012�˵�X@��\u001f�lnc\u000f�}���sI���\u0010/O�;\t\f��;$�wU�[)W��\u001ep�> c�\u0002\u0017tu�\u001c*�?�L��W\u0017�!jh�%�p4H3͓�\u0018\\\u000b�\u0005�%����f\u001cG�(�\u0006\u0006\u0017�^\f\u0004\u000e�\u0019���=�%M6�!����K\f��Z�G�\u001a��g��\u001aG�2J+W\u0015�gQ\u0019�Wh2*\n\u0010\u0002���>\fE^���� \u0012�����'���y1�:��դM���Z�\u0012\u0018G���!\u0010S0\u0012�0:�E�\u0003B�\u0006��χ.R�����nv�R�\u001c��\u001b�:�Ը��A(�8�Q�*�a���O�����S�{�&<��A?�\u0016Ѐ����[��\u0000.�Y\u0019���zri\u0019\u0005(�֤G��r�;A7���\u000e�q�@�p�\"��W��@�nzb�#�\u0006�\u0004c\u0001O�\u000b��aQ���r@\nĺ�\u0011@��E\u0000�\u001c{�i2�mܧ�/\u001a��c~��堨��V�\u000f|��v\u0016a��\u0019\u0010����b0�*¶�\u0004\u001b����B��\u0015�K��w\"��4�CPr�Zrm��S\u0007'�R)Qız/?�{o\u0000\u000e�]+�4>@�Ɓ59>Y�ŕ�+\r\u0014��'3S'���'��S}�hU��F�w�\u0001�\u0013�w�\r���\u0005\u001f���\u001e�\"SБV�\u000e�+R�\u001cKë(3���Z�\r?�\u001f�~�\u0011`4�\u0004i��Z7;�L�\u001a\u0005\u0014�\bkh���}TUU�k\u001b&4�ة\u001c��\u001fj����Am�\u0016�����6a� �^�Q\u001b\u0006����n�A'$����\u0001�K.Os��2_��8��&\"-��\\���$\u000eV�(�R���]\u001aԜ8�=�}�N��\r��\u0018�&��\u000e�p١G�Dn�\u0005\u0003��x\u00150\u0016�1옚������d��)��Yր���Y��vW#\u0004\u0012\\�!�\u0018�T��X��\u0018\u0010�Q�'2{��o҇�'��**��'2��S�\u0016��T�TZd�v_$Y\"���q��N\u0004\u00065zϏ^�3��b�\u0002H��?D^���+��>���u:׫n��P\u0011��3E��r�\\��ʉ�ht\u0001*,,�ؾ��'1\u000e2�^u��?wZ��dB��|�d��3����\u0012ҕ>�u��Z�\n��3�o3�Ǒ�F�\u000b��旷��W���b/��t�fz�������#]2\u0018(?\u001d�-�\u0000k�\u0002��Ѱ\u000f���=��AT�\u0016����3�\u0017�\\����A�\u0018�f���1Gn���n��f�>���%r�i�\u001bM\u0015^�����\u0017�\\��ܰ�?�4#/*ff�\"�6��h�L��!�OSV\u000bw��m'\u001d��F��\u001d`�[��%\u0011\u0003/P�Q��Me\n�\r�dn�܁�b�\rb^�a\u0018|5��5r��/\u0004�\u000b��=A8}\u0014��\u0002\u0019�l�??JP\u001dj�X,o�y���[f��Lt?[���\r\u0013���\u0002��lV�\u0007\u0013��\nC\u0007�~ͲX�����\u0019[\u0006\u001e;\u001a����\u001d���s�Z\u001c��\u0004k��b\u000e���鐁-\u0017bDC��%�5\n��m�j���w\u0002�ǃ\u0019\u0019��t\n�閧�%j&LJ:c,\u001b\n`\u0007F�������\u0011V����&\u001eJ���>aF-}N\u0010��\u0014�iA�\u0004�I\u0011�n��w�Q��AW�\u0017\f���Z�#�mEÑd~_������� �0S\t�\u000e\u0013!�%��[�%<84��\u000fa��]\u0017�ިXPq��-\u0011W���>��$*ڈt�u�WTO�Fp����-�\u0011����b�\u000b��F\u000b�\u0004E�a�3�\"Ǯ_̀_j���i5Y-\u000e$���}��p�a\u0014,����URRo���\n\"M��D\u001b�}ƴ��\u001b\u0000�8\u0003�4�_\u0011�\u0014z�!M�|^�-�\u0010>�\u001c\u001b\u0017?�9]_[�ΐ]��\u001c��T�ħ�p4��w�\\\f�$�)\u0019�q7d��㤞`ˍ�2\"��+�*���\u0012�\u0017\u0013�԰>&N�xG�I$���i�\u000fT�wSi��\u001d!/�}�\u001aP\u0005��v\u000e\\\b*\u0016��|�\u00053�\t��Կ\u001a\bW\u0003[�I��@,\n��G��Ȅo���?S\u0007J\n���������A8�\u0017 ���R@�ԓ(U\u000fMc\t�5~�⸥й{@��a�\u0017�F���\u0016�66\u0018Z����\u0006]�'\\�\t�O��Wpģ0�3�\r`b�A�FU\t\u0016����5E`*�\u001e��p�[O�Tܤi٩燒�\u0011�x���)���wF\u0017@��l1in�H�59\u000b�e\u000fM�*��Wb�n�V'Y\u0002��^w�[i\r\u00000���ӎmL\u0017�N\u0002���E1V�\u0017⒁\r�\u0013�kF�\u0007|n�C�] \u0000�\u001cPF�D\u001a�\u0000p�O�(D\u0018��^%�5�����\u001dO\u0010��\"�B\tߡ2\u0015��\u0017�D�)ڸ�Ѐ\u0002���,H�\u0010��_\u0007!S�h\u001cܐ��zv��=%yޕ�>����E�vn�N$��d'�A��\u0011��\u000elZ��A9�\u00174���\"`�\u000b��+�\u000e�6�\u0016��8g#�+.<`v�0o@�\u0013W(��\u0012\r�!M\u0006~��#eE眍�֕�P�Y��\u0018�\u0019(�E�=@�}T�c��=�/���n�}c���$�?ػː\u001a2R�) L\u0017L٫���\u001d�o\u00123\u001b�-���ӭ��?�x�R�\u0010\u001b��@���l\u0004/Ι]j��A@�\u0017H���,�F\u0019�\t��N)�zz��]�o��_Θ֨u=Yؒ\u0006��\\���=�]\u000e2?�qV�\n \u0001��D�|�\u0001��*~��}F�Nιi�B�4/�;Rr����{��fE�M\u00014��x\u001b�\u0003\u0004\u0015Bث�)$�\u001a�C���K\u0000aR�m�@�\u0015\u001cl\u0011��\u000fDR��AW�\u0017\\��ƈ\u0016\u000f��&b\u0000w���>�k8I_\b\u001ah(�Zdt\u0013q\f��f\u0010g\u0007���?��O{�M�������6\f6�\u001e4��܎M�tb�ys�Q.�/\u000f�\u000b3\u0004�BX��@�\u0010MK'�A�L?�Q�\u000b��\u001b\u0010��߳��_�����\u0014w.��ا�!�\u0006h:����<:m�A\r&Tq�Ż�p�\u000bӽ��$#!4d��o��b��!2\u001e�;3��({��o�����E7M�\u001c\u0012\u0003��:��\u001aÜTo���w�W��i�D˝�½{F��n:������-\u0006I\u0014\u0004@�kw\n��N}\u0001�v���\u0019�� ݍ������z�v�\u0005���7�\u0015�O��\fe\u0000�\u000b� P!�_(U��M���\u0016lkiGߚ�(��L��n���\u0019���O�����Z��B]�\u0017p��ʢ}��\\�[ ��%GV\na?a\u000f��\u0001Q.\u0014ME=T������}Ѥ������\"�Z\u001a\u000f�\u0012N�����f��(V��\n��|]�?���Q\u0013ہ�V\u001f[\b`x\u0002̢���=�g��KޘO��l\u0010F)hLᝋW=,�\u0016o�Q\r/�(\u0000y�0�ל�h�$/`WjR؇�DeA��2%�i\nk��\u001a�u�?\u0018\\+]��(\u0018����rYK\t�sa��\u0019�J`j.�\u001fjb{d\u0002�ʋӂ���.u7����[\u000b\u0018\u001aǯ�/��\u0014Oǽ͇\u001dyǕ��X�lt^�ݖ)֎[[BP�����=�W�0�0��}�\u001duϞ�\u0000\u0000\u0000\u0000\u0000\u0000��\u00009s�e�-ፑԲ����p�X(D\u0012d�\u001f�>\u0007m�\r�\u0001{\u0000�M\u0005q��k&�n\u0003�\\ޫ�>i���]��O��῭\u0012��\u001c��\fU\b��2�\u0019\f�n��\u0017V�WX+���d\u001e/U~�H\u001czQ��k��\u0001�+�g��OMv\u001f$p\u001e\u0017h��ʛW�P\\y�2�ʰ��_��t��?\u0018\u001f�+\u0011,�\u000e�\u000e\r\u0010��A�\u0006�a��j�Y3\\\u0005\\�=P�[[l�\u0015�\u0007�u���XZ�����\u0017�U#㋖S��N\u0003\u0018���\tC]��\u0010�A,8\t�\u0002�N?�w��T��\\�\b`B�K\"�\tGn��\u0016\u000e\u0013c��`�X��?R�4G�)FY}��w�!^���܆feOJȍk����\u0007�ٕK~��o�t��о�K�ؤ�A'�\u0017����lr\u000e\u001e\u001c�\u0012�OB��\u0016]t�\u000b*\u000eT\u0019߮���\u0016���7��P�H9�)�:�ԓX��:i���́h�͍4����0hg��}�ˠ�&���7\rAv�{О�?�3�H��$�i-�<��;�D`��oss`�s�|��q\u0005�!�\t���\u000e���߮b]�R�`��Nu&�2��`�\n) �CTޟ~2��هn�\u00030�!��?���\u0005�L�[�G���ӣ2�z��\r���x��lm��Є�C\u001a��M A���F�xD��`D�\u0007(\u0004�3\u000b\\Z\u001c\u001dN�#�㜳\f��\\��\u0011`���\r�{:/w$\u001d�><��/.���\u000b33���S+~\u000bms�K\u001d��\u0003�.\u001fw��z\u001d��'FhТy�b�����\u0004q�,\f���\u0016.3b�\u001d��\u0014Z��&uD\u00001\u0004��aTC\u0001���0�M>+\u000b\u001a�J\u0019��A\u001c�\u0017����b�3����\u0013\u0018\u0003=�м�+\u000b�\u0003��Ji��1\u001b\n�譕Dg�\u0005�{ӛC;\u001a/r\u000fb{�-<��mg�ӱEw�E\u0007C��^��j��5\u001c�a \u001f�io�Ob�\u0005\u0005��\u000f���=�|B\u0016\u0014��[\u0016�W7I2q(�xƿ�RW�\u0016G�\t\f�R������� NAg&�c\f�����@\"wm���b(}��L��5JH�צ\u0018*��YN�l�x��̯\"\u0005��B�G\u00157�5\u0001XT��\u000b��a��Y7l�s�����t�'�\fa\u001c1f����\\&\u000bF�d��R�8aBI�\u0007Q��|\u0016��d��\u0007d�ۤ�vX��v1��~O�O=\u0012�i�\u0016\u0011��AG�\u0017Ԁ��\u001b��\"\b<��\u001d��?�X��\u0012���Ԫ\u001c1�e�o+L6������O���hrd��jf\u0011!ש�P�\tx<�\u0002�{(����5~��\u001e|���i��Qњr\u001b\u0017ͭ�ն�� ���'y��\u000b܊��1[��\u001a�ﰮ\n\b\\\u0000�k��¸H�3\u001d���f� ˌ�~w�=\u0018��N��w�����v+l�\u0019y2��g�Ns\u0014�\r·�\u000b�^WP)�7}�ȅX��\u001f\u0001n�H�I4��N�ͫC��cYc$r����\u0011%o\u0018\r2,�p\u000b\u000bvM�᭮T��K�`\b�1a/�qx\u0005\u001fR\u0007`0�\u0002�?�6Ɛ�m�T�qn��SGeWf^��80t\u0007։��\u0011@\\\u001dH1{)*�����7{\u001e�o�I+d�D\u0014�\u000f�R��K���AE�\u0017���o\u001f�F\n\u0004\u001f�\u0000�\u001f��(�돓����5��}\u0010�1]Zzz�Cˍن����Ȯ�+�AMI�>\u001b\u0015�[`���\r�՚̬�o�i�>A�c�.R�`F3���܁R�8/�\u001b1̲��f!h��b鲸���b~J�\u0015oA�x�B.�k7�O�����\u001a\u0012sX��\u0001���zY�}�Y'!1؄������0v-N\u0016�\u0012~��قc@{�f���\u001dDYm\t���1bi�� �I6[\u001d�J'�,(s\u0017��A�7�Z��t�\u0001�\u001fQ�R\u0014��\u000e\u000bW�5�|@\u0003�ю!��D��\u0014�c�-\u000b�:ލP���\u0002�% mk'\\��_b\u000fz\f�@�y;��Sߘ\u0016�/�;Cz�r\f\u0002@D�\t��͢���]����A+�\u0017�����r�\u001cH��N�2�\t\u0002�IU��\u0011#}Q^C�)5��\u000b��\u001c��Zo\u0014ݑx%%s8N��7[�7\u000b\u0001�V�S�aL�\u0006\u0018��\u0019+\u001b\u0005d�䁊��\u001c\t�\u000f�\u0003��=U�\u001f\u0001�Y�D��yfˁ�4ws��54h�ȩ�|�\u001a\u0003+f�\u0014\u0003T\u0017�\u001c7�v��%x]\u001d�5[��9�\u001c�U5\u0002v.©�q�\u0003帉\u0016�K�!mbA�]��\u0010��`�c��oB��\u0006T\fy*]�|\u00155h=��J�qO/%�����\u001c�;��y�_�9\u00135�=Iz�s� S�O1\u0000��\u001c,&�\u0017l�1.�hм���\u001c�\u0007TT�\u0014m���\\T�3��\u0003j\u0001\u0011ݗ7���kb���\fB1ی��Y���AI�\u0018\u0010���m��\u0000����/r�kS�#Q�\np�a��\f�K�K0�U\u0012���O]�[��R�~\u0015���\u0002���m\u0010�!\u0002\u0007cߐWg�K�{�S��[\u0015�l9�t�\u00052�3\b�B\t\u0018��@��j麻��φa�IUi\u0003ڗ���A\u001c�\u001bA�w7\u0014(��k`_w�])T�-���8�a@b��FMg&*��\u001f\u001e�H��)U\u0012�8f�z\u0001E��C\u0017?��;�UO�\u0010\u001aƷ��%&ɠ\u001c=��о~�|\u00151m��{{�*�I��'���c\u0016��\n\u0005\u0013�\u001a��,��i�A��N�\r�\r�t���Z�+��.�?�0��������h�\u0011AQ�#�~�m\u001e�\u0017\u0006��b\u0001fC E����w�\u000bI��i�S�gZ>p?��p�q|`���U\u0012�2��AE�\u0018$���&w>�|>���&|�۸'��\u0001>��J۹6WDӛ�y�`\u001bI�\u0017̖ͭo��h��D\u0001�\u0018SN��w{e����\u001e���[���Bh�{��\u0003����}�\u0018���z�do�-lq/���\u0018\u0011�\u0005�4\u000b!\f�\u001c�c�&��A�=�:�\u0004G�#��Q\u0011j\u0001o�j\bq&SH�W�2\u000fz�\u0015�\u0007.Y��\u000b�RX\u001bSa���\u000e��\u0019\u0012����Y�K���A\u0016��i\u0018w3�\\��WZ٫�KBn�[hߢ�uEW\u0016b\\—\t,��׭�����*�\u001d%ݙ��\u0007\fm��bp3A��b?�M�*n�\f(���[Ru�f%�)I��d4x�c?\u0013j�ZČ.�$�fcmZ�x�.`��\u001f\u0016\u0007��\u001b@x��o�ERH��\u0004lࠣAK�\u00188���bX\u000f�@��\u001b��'�5Z�\u0003��H�LG @ۃO(A��\f�����.^+�\u0017,��-\u0006S��_zJJ=\u0011�\f��B�H��)�w�\u0002^\f��X3�\u0002�t\u0018\u000bO\u0004nc��E(���\u0013Ͼ��\u0006R\u0014\b��*?:�Wd�=����Ã��\u0007V'���1�Z\u0017�\u0017�>���j�[���\u000bB���\b�$��V�~1G�Z\u0017\u001c�\\p�\u001bKF�I\u00134���?\u0004d�͈\u0007\u0019l�E\u0015S����\u001f7j�\u001a*I?��ߢ�����Q�\u001b\u0016y�Ya��cy�2�I\u0014i�\u0005\u001d}\u0018 \"�+ݘ�p\u0017\\h��C?�]\u001d�\r7g\u0002B>�(+�Ђ��J��娸nW\u001d}�X���\n�D�yM�\u001a�6S&c�<[���I�P\u001e�}'��ӷ�\u001fܲ%�AQ�\u0018L���a��L3-\u0004\u0016���ύu�FzW\f:���.\u000f��w՝��E�iTLЦ\"�\u0002�������\n�G\u001e��~X�j\u0013\u0013�:OoU`��%\u0018${E�@�Ӵ{�\f\u0002���}�\u0015*D�\\\u0017�% w�\u0017�IJG�|�\b�.��#w�ڀvE\f����mM�\u0017�\u000e&�t\u0015-\u001a�Sj\"��\u00144G���5yy�p\u001do%���w��ލ�~M\u0013�\u0012~���t\u001e���B&C�(q��\u000bY����J�ɚשW\u0017��\ta�j7�_1�$<��(>>�jR�3C\u0004��\u001c1\u000b�A\u001a�>_y�@M���>\u0002��v�կ�\u000b�%�\u001b�}~>���fȪ�n\u0018'P\"�;\u0005��<�df�+\u000e�5���\u0015�8�Ϸ\u0017���U�'3���Tx?O�����j0�~U\u0017M�'�AT�\u0018`���b�=uiD\u0001<�`{\t��*!Y \u001faUT��#h[=��̅�=3��W��\u0011X�d3\\\t�x'+[��+�y`mS� τ�9\f�5�H�N^X�Q�(q\u0010�'\u000f�3x���[.�E��#è�6`L�i�B��1I�s\u001dx�{�>\fT�C��c�0�\u0002\u0012;]9�\u0019�'�)�60�G��`�j\u0001�\u0012��\u001d�N\u0019�'I���\u0018�D��?���\u0002W��pW��7�o�U\u0000��g��&�0ܣ�&\u001d\u001e<��\u001c�m���\u0006r�jX,y�=�\u000b��\u001c�=�\u001f�\u0014Lŗ���x\u0014!BO�դ>�W�ɒ3�T5��\u0019����\u0010\u0013�\u0011(�\u0010|�+�� ����y{�$G��˟�~��0ԨR�Z$|�;O\u001c��L�_0�9�U�d���\t��'\u0015��\t\u000fv(�Al�\u0018t���i8pY�Jt�^LBCš^\u000fS:�\u0003I=Y\n7���H�\u0001#�\t�X\u000f��b\f@_��f\u000117=�C�A1[a>t�B�F�fp�������/&BJ�sA\fm\u0002O9�uӟvI�\u001aO��\u001f�Qi^\u0013�BW��/�f�͒��}v���~\".��+�U^��c\\��u���_��&4�m:��dF�X��xf6\\��he%G�s}ɧQO!�`��(����Tn��-��Y��f~�{\\�\u000b���e��'A��=O�\u0016����%g�\u0013l���؁6?\t��R�,� �\u001b(pܮ�J���of�\u001d���ӿ��\u001b��gCv�j>�}L>��\u0011�W�����\u0010sNU��N�\u001d��\u0001���\u0013\u001f\u000b\u0016���ɒ:�EK\u001c�\u0019\u001ed�\u00062�ܲٔx�MD��c!\u0013��@�-����C�ez�'�AI�\u0018����l�\u00063U\u001e��\u0002R��{|�p�\u001e��\u001d\u000f\u001a\u000f1������E��\u0019�h�1w\u0000~��z\u000eJ�/s�Q�/\u00189hW��M'\u0003�\u0004�\u001a\u001e\u0001�^�\"3�G��!W�\u0018��.��O���9��ϙ�\u0015:�p���>�Y�����*��9P��hu\u0002\u001f\"\u001c\u001d�թeC�T��&FCd�>\u0015�\u0005h��f��\u000fЌ�:��te��J�\u0016�r�����hm�9\u000b��馱s5\u000f�h{\u001d0�I\b~�8z��D`F���N�1�\u001e.�\u0001�1���$#�ˑ�Ѡq\u0015M���\u0005�\"\n>��-\u0017EƳ�~7Ԓ�����|�r(oa���m�%�?R��\b�l����cأz��CA��r�@Qu�P��0\u0006U��{k���~\f\u0002�,�\n>��֚$�A3�\u0018����b\u000b�Dk��\u0013X=}�\u0011�2��\u001a�MR\r�F$S�\u001f�7�\u001dq\u000b�\u0014@�t6\\fT�MYkl����1�p�\u001f\t�������\n �.���:����~�as����R�\b�8������\u0010n-A�\u0001�CA\u0003�$��Ս�N�{�Si�\n��\u0014�\u001f���)=v-�����V��AP�\u0018Ā��b�\r��M{�HhF�\u0013<�Ϟ�KX���H��6@��aO(\u000f�qUt`�\\¾\u0019~\u000e|Av@�9��\u0013 W�<�\u0005�����\n��'A)\n���zV0�M���]%\u001bO�\u001bV��Z�\t<���5��}��\u0012����.�Ɨu\u0002\u000fv\u001a\u000e츇ijg�\u000b�L\\\u001b����h?�N���'���\u0000��(��E�����|�`���7�(�D�FV�^�*,ɠ���B\u0006A�\u0019}�\u001ah��VJ�JT)�Q\u0014͌�y\t��C�&��(\nc<(J4�\u000b�\u0006\u001du��\u0015x\b�PJ�Z)dP�'��\fFP7\u0003w���Ys�\u0013��U�����+�y)Vb�xBc��V\t�QҸo�\u001b��\u0007\u0000�S��{Sp�.�ˍ�D����v�\rj�j�`��\n��AQ�\u0018؀��b�I����S5H��(Gxg�~dI��Aǧ�����O��z\u001cxE���/�-$�z�X\u0015z\u0016z��r���9�\bc4���zh�S�[�H���-o�\u0018�`�s \u001b\u0004�i�{\\�J�z��8]�]vh�-�P�)�7M��}��Nu��#k��u��R���h\n��\u001b_\u0019��+\u0001\u000fϛ\u00153\u0013��sh�ܐr�YHYA�������\\z�H��\u0015~Ј%j&��`V̗!\u001c�\u001dy\u0014�\u000e9d�s��;\u0010�qz[��\u0012J=�q)� �O��c\t(�L��b��Lj�#���\u0018�W��B%݁�X\u0003RcR9}�K\u000f�ϙW�*K\u000e�j�\f]&\u0016\u001dz$�y'�|�^�o��\u0000�Ǧ]������|\u0003�\u0003�\u0018W)�\u000f�.����\n�\u001e�!�L��v&�B{�\u0018����J\u0015��&\\�/��ǘA�\u00020*�����oac\u0013�Ӂۥ��mC{�nd��<����\t�B'�`5�\u0001�c�\u0018��db��&�����jQ�y�yZM��}\u0005�CZb�\u0006�\u000b�H�l�\u0010�q�f��\u0013\r����my�\u000e\u0019�o@$|\u000fP�.�\u0017\u0011\u0000�\u0000����3\u001a�y��\u0001�\u0000f��+!:��XX5\u0001[<�\u0003h�:��H��y�n4\u0019�����O�O\u0003�A;ډ|�$�JF\u000f�|�n\u0018yP+#;,��ܥ\u0018��6ZD�^�\u0001�� T�I�b���\u0005tk'����\"\n�.5\n��yC���?9�D���+��QG\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002=͑4���\nd(��$��q�M���\u0018���F:�!\u00144�i�O\u0004V�ћ�9��p0�*��i+��\\��hGU�i\u000b\u0019#�=d�щ�@�S�)���[\u0014��:�g\bHZ\b�]M�!BM�� ��6�\u0013SF���\t�6�\u001f�|(ɪ�)8ӲȎo\u001d#�ϰ��G!\u0018~�\u0016Iro�U�`\u0017m v-�C�z<��I\f-�_rg�i'�0�\nP�CuR�\u0001�\u0015a\u0004 Bz��T�\u000e��+��k$4�qB\u000ep�\u0006\u0010{vx\u001b�\n�q�H�S����rS\"��?�?�\"��Ԗ\u0004���s�6+\u0014|\u0010�c����\u001d�P��\u0004�(�\u001d\u001c(�n��8�* �2-�� �H�S��ώ���m�]�X:\u0012��Pam�{]=�\u0002�pz��b��w���ժnk\u000f��e�8�ڋ�^�AD�\u0019\u0000��M0J�\u0001\u001dSK�\u0018��\u0001��4$�'\u001b'��̇*��[\u001e*8���#c���u\u001a��m�\u0002���^���X�m�Dʵ���Z̔Oq��U6�\r��͹�\nS�y�R;�k¦\u0018�i♦#�\u0005\u0000��x��L\u0015#8������\r�(��\u001a����7F\u0010\u001b1��Y\u0004�5�l�l\u0014\u000e<ʎ�Ԅ�e�A-�\u0019\u0014��M\u0000S�L�gkU�鰎�F:b�\u000b�\r��C�n�1m'O#�������\u0019\u0012�X�����&\r#;�J7�p�t��dfT\u0016�{E����\u0010ǫ\u0001�L˺�r\u0007\u0010�\u001fx#\u0007�:�ד�h�Z���pmU�f\u0018}\u001e\u0016i�\u0002qy���ɽ\u0015�:�\u000bF>�\u0010�&�@~.\u0011�}I�M6�-�џ�X10w����A�\u00131*�A+��(L\\��y��R\u0014$\u0013_���U��xp5gC��7�쬰�j��`\u001c�\u001c���R�\u0012S���_6�\\��\u0019��JlN\u000b���\u0001�\u0011�%?�/�J�\u0004r��膧_'�W\u000b�a�›�)�\u000bh����k�\u0005@\u0006�w�\u0014ZA:m�\u0018��b�\u0002���w�9\u000f/\"I\u0019:\u000e{��\u0013���1��<\u0002F��I\u0003[SV�j\t{R,C�A��\u0019<���Z\u0004�@U�\u0001�3\fM늛��\u001ftef��� o���~�M�'X�\u0012cꀋ@]l\u0019ӈ�7�c�����\u00188����Os5��\u0000�����n\b��_�B:\t\u001a�\u001f��u&�ћPb���m2��\\J\u00135�}�=<��,��d4���|[p�\u0013?#��~�����\u0011AiWD�\n���㑕�w���V\\M�7v#\u000f�M:�\u001b��iQ�GXs��E\u001de�zκ�7�Q\r?j=�\u0013�=���)k�*\u000fbs�\n�>��\td�\u0010\u0000\r�B#�s\u0017($�R�X\\>���:~w�)E�ȍ�u=<����\u0001}Q\u0007�5\u000f{��sW��\f��,d���v�4$�Q(�m��AU\u0017�N�!�AF�\u0019P���j�̀��X\f`��kP�1���\u0015\u0004�צA$0�K�K�zt�Q\r�X�[�\u0012�\u0012Oٜ���i�o�>��,~�(D�e~v�#y@s�N����]�������'��'�\u0011\u0011�-�\n�pA�L��!�Y�^ ��lQC ���.X��m����NK��\u001c&\t��w:$\u001c�����o���~�l�m���N��\u0005�����j��#����n7����v�[\n���:��m�\u0005K��H`�\r3t�}X/��r\u001bO8C[\u0016C��m��垓\u0011��gt��\\Ψ��U��\u0004C�m��e�}���MdH7T��\u000f�.w)�y\rv$�\u001a\r�\u0011�\u0015?3��M\u0002\ruPb�rr\u001a$RO\u0005�\u001bzJ���x�鹭\u001e1�\u001d�5�l�#�B\u001e�\u0019d���bi�D�]\nI�x���|V�*���#�#\u0016^b>��!���K{�/_�8>\u001fὬ[&���;�X,\u0011�Aߥ{��\u0016�J�~�,����X^x��f��\b\u0018��\u0011�$�LD��\u0015)Y-����\u0001�bݘ}$;ͮ�\u0002��iG��–�S�Ok�Y[�O��)tU�=��\u000e�VR,˒ӎ�\u0000&.2\u0015�O$�\t\u0015�\n��^\r��n3*���t��p2\u0015k�1tܻ��\u0012�vt/��-\u0013z9򻱑o��f�\u0015e6m�ʝ\f}�iK��_!�k���\u0019��\n\u0010Fya\u001f\n\u0004��7��K��fjט�\u0005����\u0004��\u0016S\u001c�O�U2�^Ѫ�Q#l�I��L�r{��(O�!\b�W�M��H~�H'��.��z��7�:&\u001bյ�\u0002��C2�ROY�\u001fʵy�cs�~!�U��.\u001aZ����\u0013\b�L�(�7\u0006�F\u001e:�d�\n�W?8it\u0010H�՛\u0003�\"�׹�\u001f�_\u000e:ږ���\tI�j#Y\\`�\u001b7�dLe�A3�\u0019����e��*WW8\u001a:��[\u001a�opW�mlXOv%\b)6Y�o\u0015N��h����xQg\u0015��\u0000QiX�+a�\u0011y�~ea���e�5�D\u0002�E�=`�,<�j�ׇ�i��K\u00076\u0001������*D�Q�0>������Z؂\u0002�\u0010�:��\u000f�Px�F������\f\u0003_��\u000b\u001f���6��\u0018K�В�&U\u0010~��\r�\u0012\u001a?\u0014�x)s���]FE�[3�Q�D��N\u000b�G�E\u000b��|K�2��H�b��\u001cj*�#p�\u0013A�,1\n���\u001fV���M��5[B\u001d\u001f7^�\u0019�GՈ�|�V�}B�\u000e\u0000\u001c-\u000f�G��k�'=\u0002L��Eċ\\�\u000b�w�o��\u0014��27nM@���\u0005ǿ��W\u0012���A,�\u0019����s�\u0013\u000e�W�\u0011�E�\u0000\u001c@UW#}3'\rfŦ��^\u0016H�գWof\u0016�\u0004^�q�-��MJ0�\u000b\r_��s��qM�\u001d�\f�6\u0015\u0012�dS����B����\u0006�:�\u000f���XOF��\u0010���j��G��\fq���u�\u0010�J2?���[f\u0005\u001cOZwW�(m\u0015VS\u001a&O�,׆�����?��A;{db\u001c�d���\u001c&�o�d�\u0015�\u0003k�*-&�E+���IW�#�#��*�\"�~��R��@�ʐ�ݴ��U\u0012H�\u0015a^�'S9����S�ʴ_�T\u000b���U!�+��\u0004\bi���.N\nӈ�yʪ\u00104�k\\����*�=�\u001d���Ej�NN\"\u0012\u001e\u001f��Sb�rR\u000e]�[\u0001���A6�\u0019Ȁ��m�v�4�m\t���Y�?�\u0018�0�\u0002Ļ/sg=�(�+6�4eݱ�޷\u0003D\u0014~�3`R�B���Ap�\u001b!vGc�ϮR0dJ3W�Fq\"�A2�\u0019܀��4x+�W7�l�=��ħ�\u0016�\u0005\u0014�yaJ���uq{^�f$���g�7-e��\u0005\u001b�H�H��} {C��)��\"kE���P��V�\b��gZ�1�J�c\u0017��\u0011I�qRG�\u0015�>��~`䒢�*���C.(�����f\u001az-ǩ%��$P\u0004ʅ�f�Z������F(T�>:��J���➐��f\u0014���C|SK�ij�Ӳ�g�^\u0016?�ˌvQBQ���\":��;�W�W��Le\u0013�5{\u0006���?�%\u0011\f\n��\u0003��<�����5�\"�C\u0002��Y��1��x\t\u000e���.4�v�D�\\\u0016�L�f@�9�ꉍ�\f?=CF�l�\u0018�\u000b���zt/�(\u0017&��#�B(�\u0019����\\I��\\h2D5`��V)pH�N\u0006A�����d��F\u001e\u0015��\r��u��s�sF�����\u001a����Q�T�S�S�_ya�9y_�\u0005H�=���\u0002�$1���\u0015d��C��k8L��A\u001e����$\u001c�D����Nd�/p�)h�Ɠq�I�@��\rGA�\u001e��\u0003���^�)I�\u000f>Q_-��\u001a$��L+���eõt�x��/�\u0017Z��oI�h�����yU��H٭}��5�䦬����\u0003�\nd�3�u32M��/�a�� \u000e����5�&\u000e��hA\u0000\u0013H�M�h����Zd��B�K5\u0010��)��6k3\u0016Z\u00122q��\u0016��(��\u0019;���� ��-o����KG}���w\"��zLc!u��\b\u0015�ڤZ�5�@c��hA2�\u001b�X\u0013���\u000bNn���\u0004��\n\"S]\u000fE�T�I�VR�����sx#\u000e\u0007�\u0001K���\b\u001f����153�򟺛�:�\u0002n$Ҕ\u000e�<�\u0016�>}�rHW��[{�Z��,�q���L�Ӵ�$��\u0017@S,Џ�iաBQ\bT�X\u001a\u001cX.��@�~�6~~X\u0004�ø���\u0007U\u0014a��vX�\u0019���H����J5�w�c6��;�\f�j��-;‹�}�VS��;�)�o\u000fl��3�\u0004T�N�@���A38��j1��A/�\u001a\u0004��.J\\Z��9V<\rk�]\f��)��L\u0010��r]���zNG�\u001a��\ft���Ĥ\u0012r\u001fb�/�_��\u0002�Z��'����/�+̩\u000b�-��|@z$̳F\fa\u000e���!��\u001fl���g\u0015M���\u0010�X\u001b�Ȃ�W�\r�\b��\u0007Q�\u0003;��z֐�\"e�0|�\tű�K'�V���X�'6�d��y.�\f�/}\fcVBRp\bv�^\u0013+�P�,\b��A����\u001a_id��������ʳ���Rcy�|�\"\u000fE\u0001T<\u001e�o`G`����Y2�/}����I��U�=6���~�\u000fC`�V��OVx5�\u0015�\u000bnG@�e\u0004�S��͓'�wR\u0017�O\\2[%\f�\u000b��毎2�\u0018�tc�A?�\u001a\u0018��X\u000em:\u0019b�q��\u00133�\u0010�\\�~ǵ\u0019`y#E�<�\u0019iZ���[B\\�Z�w�{m�~��q\u001d:�*\u0002�p>N�W}�Z'Y�ь�Eh��)��\n8��'\u0001\u00016-����ϺVl(�xU��\u0004O�J\u0004\u0010Ƴ\f\u0002�Z\u00139\u0003\"��dj*?���{-Jv�a�\f��/G�P�[�\u0017�%�K�\u001f���'kiX��c֚_\u0018xC5���_\u001ci?�\"��\u0002J�\r\u001e2�|U�R$&�\u001d8?�\u0002\u0015�\u0005A�pR�\u0012\u0011�\u0018G�C�\u0018V���Q^x�E�=}�n��.���H\u001d��\u0002\n\u0014\u0010\u001dđW��k��j콶�D�Y!��ES\u0002�T��|�ބ\\<8\u0014LoHNBP���k�\nanLu�!\\�=\t$��\u0003W'�\u0013�*bFM���AL�\u001a,���bBV�g��2���\u000f�Zh�\u000b\u0019�Ż�h\u0017��\u001f�c\u000f��8�����_�g&\u0019�\u0006g�4��maz\u000e�=���i*��\u0010�|�Y�!����p2���\"\f�\u0007��:\u0010�J���/���>\n|[�H���'����M\nf��xϤ\u0000��ؿ\u0003ގ\u001dS��u��f�g~�t�ɾ�.n\u0000���`�KI�g�\t�f�U����\u0005+���\u0006{�\u000e�0�7�l�X�5��\t)\b 7�Wv�J�,�����J�\u0006b�p�D\u0017*0�\u0000GF\u0017\u0002\u0004�\u00167X����˸FeK�J�ƽ\u0013\u0006��~ޓX�ziW:\u0010Ƽ����i��Ux\u0014g�GE�\\2��?�W��o�Kp�\u0006��PɄ�,�\u0000�\\+\fX�n�\u0019Oy@H�\u000b\u0004#���Ṥ�A9�\u001a@��6��\b��K>�-�\u001fd])��\u001d�j�=\r-κk�8z0�{�}��GOZ9or��gSG��Z�e\u0007�\u001d��\u000b;�\u0012����\u0016�?l�.\u0017>{��B鳂c7\u001f�em��u\u000f�z:��lo\"G! �z]S�<���)\b��\r�~�D`A�1��= ��\u001b�\u001d9���\u0006��2�V�9)�1D��y=�1\u0010��l\u001c,L(\u0014��\u001c��1\u0003��\u001b��z1@��ڲ�󱯢Yz\\�s\u000e�T�E�u���5���X�\u0016�W��AN�*qg\u000f\u001e\u0004�n{\u000b\u0010\\���ڙڢ\u0004\r駎ў4\u000b��\u0007#�6�Z��`OCP�]SM�ߖ*�!ݸt����ƕ�?6/��ofR��\\u��4���\u001f�A4�\u001aT��I�H3u�xH\u0010\u0005�\u001f\u0005���<��\u0016��I�F�X��P���L��7�K?��/VP�\t9��0�\u0011c]T`t�m�\u0017�\tȆ�������,6\f\u001c��\u001c\u0016���ĸl�|\u001f��\u001biyr�\n�\u001f+!�S\u001f\u0012����ͺT�c��ݲ�EƜY\u0005|���\u0015�\u0000G��CO0{Ӄ��qz/�|\u001a���!4��)\u001f��\u0011WZ�e̥j�n�}��j3\u001a[���f62\u0014h�\u001dŇ\u001b��\nވ�0�D-���χVS�c\u001caއ_�\u0000�jb��>kA\"6ܧ�p�k����R\f\u001e;\"бՓ�/s���k\u0011䋙�LwV|K�G=\u0018��\u0010\u001a��{Q֊\u000b�Ai��\fS������*[vkd�aܤ��B\u0015�\u001ah��|�\u0010m\b�\fsr����o\u0001��\bw��۟\u001e�o]��\u0017��R�9.�NI\"\tK��c\u001a�\t\u0003�W�0���\u0010�y�Ԁt��y�O�tI\r����ZM��fn\u0017�}���YM�+\u0018\tfV��a�X�\u0016���sO�|�K�M��Y�H��iæ� ��7�k\tJ�'Xk�����p�S���(\u0010���P�%I�I�L��\u0011���9��6<\u0015�Xe&)�\u0001�*�\u0013I��\u0001��\t�V��v���n��Ԝ*\u001a�\u00056\u001aε\u001f`ߗ�\u0003R��\u000e\"e�#���\u0001B\u0018\u001c5y~�NF��\u000ecj��\u0010\u0012x��~�\u0004�$\u001a�����\\�_�3���y���\u0017K�ao*�\u001e�\u001e����)z2�Sx~)#~�Ex�\\e@���L\u0000��kw�\rl\u000e�\u0004��v̰�������\f\"�I�7�`-�eͭڿ)�HZ]&b%5><�\u000em��\u0002v\u0016JIk��wp\u0011ݘ��7�<��nw�p�\u0004���V\u0010�\u000f]����M�&�6K�iF\u001b\b|\u001b���su�V�r��)�\u0016N�\u0016+;*�\\�vρ��}\t\u0010�\u001b=��\r\u0018�\u0010k'��2h>V\u001fs��q=�-\u000e���d�>�dw 4�f�4#Ӫ壙�\u0002�\u0013�4O(�ɝ�XM�J����g�A)�\u001a|��M&\u0010F����\u0014��K�KVa�7a�\b.œ�d\u0006���KA*�\u001e��f�X�j�1Tf�ʶ�c��oƒ��t��D�YJ�������������@p!�\\B\u0004Ÿ+�\u0014��7�.���\u0005��\u0012�\u000b\"M��wܞS[\u0016̅��E����r�>��\u0011m��\n�k��-k��k�5\u001a�\u001a-�R\u0001�\u0005y��?w\u0019T���;)c3��\u0001�i���́n����P��\u000e�c,�(:!|\u0012�-%��L\u0014v�b�A�\u0016�!���Q�!2$F\u0012K[\u0010.\u001d��e\b@��l���\u001d�����\u0005~w\u000e\u0000Ur\u001cO�(�t\u0018�\u0013�;+9\u001a��m�\u0016I\u0018i�\u0006\u0018x�r֓�kzV�줣A\u001e�\u001a���L�-8ý�9�3�ӌ��)�#2��0��G��Zȴ�`c�`�X\u001c}{<�J�\b���7>�S\u0015λ\u0004�i�|\u001a���O�\nE���G�����,�@\u001f ����%����?b�\u0006�\u001b4�\t�z��L=$v�^\u001b�n�`�R�@I��&����zt\u0006��\u000f1\u001d�2\u001b�$���,�`�c^�H�>J���f^R�%��\u000e<�g,E\u0004�G�����<� y[.w�c}f���ة�\n�#�\n���\rJ�����%�\"4z\u0015:Mys���F+����!7$�ٻ������+����\u001e�&%W����&�/\u001b�\u0000\u0010����nf��\u0000#r\n��A\"�\u001a���M\"\u000f�v�c\u0016�L\"\t=4�\u0003v�<\u0019��E@����^h�c��\"��\u001d\u0016���\u000e�\u0018��M�Kp�b�7������T�|<\u001a���E�%\u0011�f������[�aT�Ӄ����G���\f¹\u0006\u0005P���\u0018Yf1���k\fD.\u000b��}\u00144���;>�Z���>�X�\u0016��e&\b��#�8\u0004�{\u000e�\u0019\bQOQ\u000b�\u0013\u0003b�I��\u0007�7\u001aQ����E��@\u0016;s\u0015��)��(��C_�>�\u001d�R�Q�{�\u001fx�\u001e\u0005r\\�p\u000f�&O�|�0p*�Jk��n9\u0006��;�g��l�%$�z�u��B�D\f�A$���sDvi�=�0$nw\u0010B�P�b��\u0004��A)�\u001a���6�\\\u001f'G¹\u001ey�7`8$�l�Ɠ�c\u001bH��J� \u001e�=م\u0012$t���j�L�+.EZ���Ö���g�%y5��X�\u0017\u0005���uU���a�z���\b\u001fְ{\r\u001e�\t��\u000fy\u0018�L��\u00139K\f�\u000bq��w��h�\u001b\u000bu�\u0019�<��PRh}\u000b�\u0006��D�2�wH\u000fêXD\u001d��!�e�\u001d��z�C�2��.��ߑa�]��qU�׏���\u0006V/+_���1��s���#����\u0000܀ؚM�\r\u000b\t�m=X��$���!W�y�!9���#�*��|\u0015\u001d���X��CH��_�\u0007���>��|&�\u0016�$TJ�3\u00032�\u0016����m\u0007�G`�0C̳,)ޣA!�\u001à�6R���4���.wO4�6���c4A�b��^�&9�\u0014���O.\u0012\u0012��h�&�D\f��<\\t!�(\u0000q�=��r�0�ޓ0��\u0007�y�O��j[�ac^X𞠝C|�VW�Xv�C{_\u000e�v�\\c��\u0005��ۑ��\u001f�&�\u0002��׭G.29�� Y�ڧ�TJ\u001e[\u0011��e\u0001n���s��SH\n\u001cK��龺�z�攙,�m��z�\u001d^�P{�\u0004\u0005���\"@�@\nL(���\n�\u001f��\u0003]\n�S��40�:1��4�A������\b�m\u0015�!�u�tf9�<\u0016ZbIl���M}�7y\u0002־\fR$̢@\u0007�a�-~+g�������?z�o2�\\�A#�\u001a���MO;Mބ�;2+L�'\u0007�Z,z ,�|f��b\u0007�F���������\u0016�\b��4��y�B����]q�\u001a,0T�K.�\u001e��I��S�;\u0007��O��&)iތ�\u000e\u0018�\u001eqrV�\u0019\u000f���\u0002\u0014\r��P�p�8��·�MgW\u0001{�,\u0012�^rI(+-8*�zN���\u001d'/D�~օ�Q��\u0012�\u0000\u001f�Ͱ>J\u001e�G�`�R\u0003\u000f�7����խ�\u0011�����\u0005�\u000fį�f�|��ƽ����\u001a���1\u0014�Fh=��L�\u0015�\u001f̋��k�\u001c7�M�uۏO�iT�_}\ny�hXn�`��͊��i�ڟ��?\u0003d��\u000b��'-oA�t�:\u000f5�\u0018�A\u0019�\u001a��L�?\u0012DTA��\u001e�M���ߛ����\u0011_�\u0012`�{5�?k�\u001fH�\u001c�T[q�jd\u0019}�\\j�r�m�����|å�>;6\u0017p�!\f@�\u001c!H�欷u\u0004y�SX\u001f�N]�\u0018�\u001d[�ä���f�<}1΀�z�?�X�\u0012U��'5���9o3\u0010�[��d��Qy��F_��\u0010�Y:K�F�@��&���?�Iع��S�K+\nB���\u0014\u001e!���V��Ч\u0015+���\b}�\u0017<Ǡn��� \f��‚AFI�$:�\u001f�\u0007�W�\u001cÖ!�U�\u0011��\u0007�j?\b�=�/�*\u0018����zC;+�\u001f��Z\u000e\u0003��$܀B8#��ܣA\u000f�\u001b\b��L����U|I>\u0017W��NZ8H.-�w�J�n\u001f�Š��\"]rB,,{�p\u0012�?_�0EV��\u001c5���Dl]\u0016\u0013ר��mZ�U���\u001f\"�F�َ;��|-Hq�Q+�G\u0018\u0007����x�^5�I��\u001f\u0007���C�5 ���\r<Ӷ�Qi��>��/h�i��\r\u0016�o��\u0003\u0016z��P���r�\b\u001d������k�R���1�\u0004��}ag�\t'��f4H%*R�B�I�u��c���_���O�\u0018�'\u0004;{(9\b�F\u000f�\u0010�YP/\t�V�p\nx��I�C6���ߋ+\u0015Q�\"/.\u0016�G�H\u001c\u000e�B9�H����A\u0010�\u001b\u001c��L�(!\u001d\u000eA�\u0007i�\u0012T�..��v^o\f�&\u000b=O@���`8v=wyc��\u0012q�m��� ,1�X��NF�\u0019�\u001a�&⫿\u0018�p\u001d9�J܊���:��{�[-_�;��\f/�]��\\�K�\u000e��B��F��P�Bڪ:\r��c��$�\u001f\u0015A5�[\u0018-.�S\t���38\u0014\u0002���@s��5��)B�\"\u0004n�\n���z:b���h\u0015�m׆Q��~\u001fȽ2\u0007�\u001fp��kr<�_�P��+J�܏��5�-��!����&\\\t���\u0007P�\u001f����:�dX�K�a��&\u0003�Q��#�rp��\u0003+4���A#�\u001b0��M\u0010�4�\u0016N�t�yt��C�2^�\u0017�Ȭ�ƫ�J�\"�_� �����;أ�.y��\u0016��a�K\u0012�P����$\"��l�}Z\u0015��\u0019��B\u0013͌p��.K��\u000eC�\\N�JB��c�G�\u001f�A0�ž4���l�m�\u0013�\u0005�Y2m�'\t�{�\u00018&\u0001{��\"\b\u000f@�F1h��N�OI���q���7����pƫ��\f|���d�p\u0015�tё\u001eۏG���xC��\u0003&�1��6�|���\u0019J@�9��>W��ű�W|��|7�\u0016|�\u0013�C\t��c�<�\u0011A˔�!;h̀�2�C�O��|K��!\u000e����\f+\u0013�A�]��Fq'�\u000e΄�\u0001g+^�A �\u001bD��L��m��I��b�_��cv��\u0003�Z�\u0000-j������\u0016g�\u0011x��(����Y�x���ЗIt�M�0\u001f bk��\u000e��u�:�u#��O��F\b!A\u001a�7��<�A'5���3�� a��f\r\u0019\u0000A�\u001dPV��v�'@���p�[~�İ3A��\u0007�|N�%φg�1�&\u001e��\u001f�-�*�y�\t���*,�\u0012\u0013X�\u0005��$_�\"$���X}��ͤ�꯿\u0019MER�1\n���:����[c�H�<\u000b>\n�Z\n����ހ6h�\b�\u0007X\u001c}� \"�\u000bm�\\5�ׂ1���@#�(�4��Y��s\n�y\u0000�S�Y\u0010�����\u0013�\"��B�A\u001c�\u001bX��\u0002+6O3�6�\u0012rc@g\u001e\".\"�\u000b��5}�,]\u001a\u001eo�ᾯ�\u0018�_߫�\n�~���\u0016����(��m���e\u0016l}*!��p'�o�ޱC\u0015���\u0002ۓ��c�t�W\u0002�(7���Ufo��\r�m�{@cH\f:��\u001f]���_T\u001eT���M�W���{\u0011\fd�Cׇ���4��(X���)�}�o g\u000e\u0002k\"\u0001����/1\u0016$ӭl6\u0013��\u0006���-��\n�Y�\u0018��[��x�ž��\u0012���\u0007�m�j\u001fy��]%���(��&|�N����W��@-\u0005�J���†\u000fk�\u0007����\u0013b�*y����*����\u0001\"\f��OC�c�f�@��\u001bl��\u0013����h��P���9\u0012{�������;\u001b\u0005���#�����?�\f:q;~���j~�\u0014Z�2\u001dge_t�K�V�)�b�=��§�Y���c2b�>�F~\u0001*E�^\u001e�#�e\u0014o�'��d�3k��\u0004�DH�c�\u00062��k\u0005\u0005\u0001&\u0013@ٕ�\u001d����Dd�Px5SS��H�z�Jq�#\u000e�ߌ\u000b���gH�\u001b�!]�\u000f�|$�'8\u001a$\u0011�L��p�E�����~\f(�3�YW��\u0011��|8v'Q\u001c\nK��2�Ѯ���C�\n�*��w��aX���vj�)�^�\u001bE8�6�A\n�\u001b���\u0005�\u001c��\u001fwV�\u0014,O.H����q\u0019((�o�Ӈ�!�]�F�A����J���j\f�װ���y�`��i�\u0006ӯ<�[�^�1���8�7�5\u0004N�7��\f \u000f�=�i�#M$�\u001au>�t=#��]��>\u001b6+�p��L\"\u0016A�\u0017\u0001�\"B\u001d4\u0016˟l��h\u000f\u0014G$\b\u001d�\u001a�\u001d= �+C`�G�=+���hk\u0000�q���$\u001a^�Y�JA\u0015H���\u0004ˍz?Q\u001e�\u0013\u000e��\u0001����\\�o� �v�}�mB[\"�F'�ɑ��l\u0017�h�\u001c g���������;3�r�4�\u0000�\u001c��.\u0006�c�h���Ҿ-5���A\t�\u001b����nmV��\u00168�Mc�ɡFJ8 ��1�\u001b^\f2\b-q-3�ϋIh���R�nƠ@l��pه�@���*�\u001a`I�U�MK�x��\u000e�+U��RqK��\u0015�\u0007Zܲ#�54�\u0019_��/��K��9ś�,\n�\\��?�iq\u0010����\n3��J�\u0005��lp�\u0014���r\u001d�ٲkc�X�\u0005njXz�CX\u001a��'ֻ�u\u0015��b��Uq>}�C��Eb%�h�\u000f\u0004/e*ϥx�2�0O\u0006eYN����Jh�\u0015��2\ty�S�\n����Z\tz�o\"Z�F���xOV����d�l㉘\u0006�_����\u000ey�A\n�\u001b����\n\u0004��݀^9�+M�N\u0002���\u0011�!̌��c5�ׄ���B��0OM�T�i���w�Ȟ�cQ\u000b�n\u0005�\u0000^?��>����\u0007�\u0014\u0006>��\u0011�W���E=��5��Jh8���a`V\u0006IW\u0014\n� dl�@�]��S轗T����k\u0001JD�\b����\u0011\u0007�v�i\u000f^�ⵞ��A���\u0012Y�%��ϥ�\u0016[d�\u001cE%�!\u001a��Ǵ��Q�!�-�(��pl\u0011R\u0005k��y�\nKrwL\u0019]�\u0006_tn����z�ч\f\u001fI��KoC�YX\u00022u$^��{MKn|\u001d]\u0005+�(�J��)E�\u001c2�?>��fv�A\u0013�\u001b����זF\b���(��v�NNʾ4��?\u0007s��\u0018�:�\u0003���\\\u0003��#�+�Y��mX���?y�Ԝ���\u0011�Ϣ\u001a��\u0012�y�m�����`e��F\u0016\u0004X?3O��ᅀ\u0010��7\u0014S�e ��h�k�\u0011𽾕��Q�IZk�\u0004\u0016��S��JO�.\u0006�9`a\u001b\u0011�>�x�A\u000b�\u001bЀ���s�#���\r�\u00167�\u0003\f�X���\u0010\u001f=m��>�X��_\u001e���X�\u000b\u0010�PI�v���&k�-\u0013Ob��Up\u0001�ܸ\u0015�\u0010\u0016\u000f\u0013s�o��SUԂH^\u0000d�l��8X�VԎ%0�\u001d�������ʈnwL���S���XE>s8'�8��|jԭAd\b�\u0002��G��#�C\u001f�K�ʈ�d\u001a6\u0012��9�K�s�BQ�������ˤԨہ�o�L�\"��W�{��\u001e?��\u0003�\u0005k\u0011҃\u0012{B�\u0007��C�@�\u0000\u0005���\u0016��W�\u000e�.�\u0003���\f���ؒ�5^$\u0003Y{8�H��ֈ֟$t���L�g\\v���̛\u0010�H�u\u0014�s\u001f�\u00133����+E��l�ă\u0003T�0�>��C��?X���Y(Y�����d���\u0015����MU�A\r�\u001b����ο�\u001f��8����uB��\u0006�^�#�A�'���;�\b5<�\u0006��X*�u�s���5��G�Vً����_n�%Ÿ��2K<)p���,�����B��\u0012F��L):\u001f���7!�%�\tʔ\bC�\u0011sI�u�>��D�(�%�Ax�����2f�_>�t>s�IJ��L�U{�\u0015��C�T�,�Uw��� \rl�\u0011|\u001em�R���+CecV.��_��%�DM\u0019��\u001c�\r{Z�{��fS�\u001c�=\u0014�l�2\u0017��\u0005T\tK\u0012|�n�\u001b��j����cn\u0010i��y�A�\u0012�6�Å�S�-R4�/\u0005�Z�A\u0019�\u001c\f��\u0002�͖\u0007+dmN��U�<�\b����.\u001fu�\"+6\u0000�W�{�-�\u001b�\u0018�e\u001co�\r��UeC�\u001dg�]Hv�����(��\nX\t�\"��n$��\u001az\u0011�s�}I; \u001f� �qd��\u0016�-�\u000e���\n�1�/���]�('\nWA\bY��j�\u0014rh��\t,�����\u0013\u000b�l%�\u0007Vj�\u0001�Kx\u0019<�o\u0001�E�:����·��\u0002\\?��\u001dJG�\u0006Ė��k�\u00136o�'�g�\u0004_�1�\u0015|p���\u001a��)\u0005P�P\u000f�&��\bU[�\n�\f�\u000f�=�:�b�\u0004\frX�nY���\r@a����\u000f\u001e�|He{\t�P��=b€r\u0015��q7#��A\u0014�\u001c ���w��\u0000�����֊�]�\u0019A��\u001dC�\bh�ujw.��\u001c�D�\u0013��ZC�ybb��2w�C\u0007z��\u00012�Le\u0015\b�'�`�@\u0015\b?�x\b\u0011�y}Դ\u001er�)2\u0015_J\u0018V�\u001f\u0004�惶\u0006T=n����h� ~J\u0012\u0000H��\u0015��=R̶�B~>��^�3��>աܡ���[q.�l��l&���S׭�.\"<�\u0012H�\u0015�Aa\u0003\u001d�\u001e�ӭ���\u0011x��Gw75\u0019�*`�2%?rV\u0010���va~�]A)F��0~�V���~T�A\u0012�\u001c4��\u0005�x�\r.�.�.�H1�s�Q\\�x�<ണ���m��\u0003����|@��\"R\u0001�fM��\u0016�=\u001f��݂O�\u001e�\"��Fu:��h\u0007k�\u0016��|�\u001fu��Q��\u001f�Hg�\u001fx��%2z6\t-�C^��?w��\u0002\u0001�b\u0002\u0001�]����.~�P���^\u0017?�\u0001��C\tؙ�5� a\u000e\u0016\u0018룱�4����Q\fVh\u00007*,��\u0011��J2��[e!㎉87��df�\u0019J–|L\u0005\u0006����Y�K\u000b\u0019Y\u0004�(\f�؆̀8M�1\u0018�󿺔�\u0017\u0011��\u000f��*פ�'���\u000b-����n�T���=8o���\u0010\u0014l=�Y!�A\u000e�\u001cH��\u0017צ�fX&�\u001d�U���D!*\f����\"��\u0002�r��+�/\u0000�R�0\u0005\f�@�\u0011�\u0016}.1\u0003���N�9�\u0011�C`\u001f�>�Y��ͥ�A;s�%��7��s��Sya�\u000b�%�\u0002Yp��(�J�S���\u0017 �\u0017t`�F�%ī��q�|\t-�H\u0019�l�1� s�V}�\u0002�S\n��>�z��\r9\u000b� N�\u0001Ai0�fF9�F�귌�H�\u001al�T��ตJ\u0005\u000f�hR���L�����\u0003�\u0018�z6�d\u001d<\u001b,_\u0013wn�e]%B��t\u001f��)�\u0018\u001f}H�{4���\u0007�h\u0015���e6-U\u0019�}��\u001aqo�2�A\u0003�\u001c\\��\u0016Z\u0015$��W�S�{i�P\u0017��~�L\u0002�}/�U��\u0004��=����3���kc�\u0002�\u001e�~{o���\u0003(�����6呟�|���\u0011u�Pk�Z�t}�����5\u0010Y�|π\u0012rS6�\u0004ދ�T�i$l5�I�\u001c���\u0000&A�M(.�q��c~�+srJ�c�oU=�����I���.p\u0010\u00057N�IzJ�@\u0011��\u0011\u0005�z�\u0006�\u0010\u0002��|$�\rS ��\u0016j����\u0012?��z紘S�\fL��jj^\u001e5)pU�\f�z |��\ta��]\bI|}�XE�8�fjb��5��r,�\u001e/��'۲�A8^�A\u0007�\u001cp���7u�J`,��\"�r�=�ҝ����ٴ���6,��]�&P�B8\u001c���x����,\u001c5Nx\u001e�H`1�3��S\u0015P�7\u001d����Q\u001aʅ5q\u0001��m|�G o\\\u0004K��'z$�#�(x\u0007�[9#0h|���\u0006��IԬ[�\u001c\u0013\u0019fc]\u0000d˴*\u0006��ܦ��('�5@Ι�tY�,O��i�8���rL��\u001e\r�\u0006is\u0007�\\���YD�\r��\u0018����?L\u000eT�\u0019|~�lZ�z�\rț��h���}j�1\u001e�\u0019���\u001c��ؒ���\u001aGn\u001e���\u0007�5��\u0007}45��\nF\u0006E۾�c�\u000e\\�[�A\u0006�\u001c�����5%�\u0004\u0018\r�-�\u0016��4\u0001Fu�]��\u0015Ay\u0016a��:�\u001d�O�6\"��bj�}�w��\u0002Œ�\u0012BC��Gq\b\u0005�\u001bi\u0010F�����(\u0018���\u00122\u001c��\u0002J6$����ݒm���+��\u0017�B*�\u0019#��T�e7?tAE�iR6Ս�^z���\u0014���\"��(n�W����\u0012s\u001a9@Y��R�>y���V\u0013�*��ņ��OE}�^�6\u0012�mުԐ�]�\u0006'�.�r\f��t�ژ�~\u0001^�1�%RIv�C!tЦ�h\n���58�.۳`l��0�\u001e@7�̒e0*�j]�N~]�A\u0005�\u001c����~�~��Nz��\u001d���\u0001Ԑ�qƚ䜆��K��\u001a@�y��ö�\u00177t\u0012\u0013����Wu�¬�-���@S��k�нѽ��K�^��B\u000b�t�f\"� �`�g��Ny�Ĵ\u0006��L�:RH!��\u0018����Y��c��.Qi\tY���\\\u0014S�]�H�g�g\u0006Ԫ#�A\u0007�\u0011\u0019S�dŜ\t�L\u00195��3�v\u0010�.�\u0005E\u0013̫Y��Cs��/?9���p-8ݣ�A�O��\r\u0007\u0002M�$v�\neŏe�ˌᆳM�YT������Q�'5v�3;�ۘ�̈[�\u0014\u0006�*@�B�6�Z�A\u0007�\u001c���>��ƙ�Θ���CF�@���d�\u0001�3��|M���\u0013?�̙\u001aB���1���\u000f\u0019�����5mȨ�\u00059)�d����Qm�3�PWg\u0001\u001eh\u0015Z�MP���\u0011��C�A}�ڊ\u0004��r�Dw\u001bJ���D\u0013�F&�3�a�\b*(f\fk]\u001e\u000f��4�c\u0000��nB\u0002\u0006����P�T���Wm�\u0011��d������\u0015�̬�>\u0018��L��\u0019\u0007�\u001br�\u001e3\u001e�\u0006 \u000b�dOp\u0013�K9\n)\u0019�_Y(= �y�lJ�f���\u0014&����2O�'yђJ`�6�w�V�0V\u001fP\u0003j�kKdb����V�\u0017ˌ�A\u0016�\u001c���\u0017�\u0004j>���\u0012Y�\u001ep|S�Z�\\n\bӣ�@��\r�Rۊ���,�\u0004��2��B(�~[�\"^\u000e�0\"��cI; 0�p\u0018lG\u00063\u0015�w�����x��۰�\u0003�z\u0012Y�T���\u0004H�I)ԩ�\u0013�\"%�˩O��Q����#�펽#/\u001c_ɛ�'&�6�P�ӨP�+.�Q!�զ����e�\u0002\u0007T^��\u0016h���������\u0018���\u001cd�\u0014�+�\u001e���,\u000b��I\u001eJ������\u000b�\u000eSc����;=�Wz�.�}4�W�[�L�U>p��Y�=c�Ȭ\u0006%r��Y��V����\r�\tIQ*#�̘���\u000b��M^�\"�sͣA\u000e�\u001cԀ�R�ǃW\u0004\u0004���OB�\u0002:�|�Y��\u0001���9\u0003UNQ��(b���E��v�oL�6�h\\]�Hi\u0016�X\n��\u0018\u0003/����L\u0014����lu=Fƺ\u000e�|>�0�,p<�Mʘ�\t7ʉ��\u0014#?\b�\u0005Ԅ\u001dE:Gv/��,\u0002\fΉ����o{�3�=�n��0�&�s}ێ�\u0019\u0018V\u0006�[��=BVg��Y\u0016���rg�J���97\u0014Fs��\u001b��>�\u0001ѿAϧy�R�A<��\nY�?dlX�_�4(pq���IP\u001d\f\u0014�ɗ=�,���\u000b��O�m��&�b7 ���O���*\u0018}�(Z\u0018��[���A��\u001c��v�p�?�Q\n5\u0017�\u001e|ED\bа�\u001eح�#\"��S=�*���Lj)~\u0002�\u000e�\u0016�7�eFN+��\u0004eP�\u0016=��&6}�N<�Hyt�_�\u0018������\u0001\u0002W���mS�)\u0001�5�\u0006v\rO�U���\t\u001b\u001eiF�3\u0017s�Q\u0018�.Q�^s\u001f8j\"٧\u001f\u001e�g��-\u001a�&e�Z����3\u000b�\u00071�Q{��fs�(w;O{!tb��\u0012�טe���e�2۹uj�6���ͨh��\u0006=Z�\u000f��P�\u0016>K��ҋ�\u0005�\u0018\u0016���)�T��3�\u0012=&�;_��L!\u001b�D��&\u001c\u0002@���\u0013��$�J��Ϋ�c����1^+US9�G\\�w�>����\u0003�F̂a��\u0003�3\u0018ۦ���f�L\u0014u��\u000b\u00022�E�ޫJ�\u00048RPb:�w}-ݫ�N�ϯ�Ԝ8\u0007�-rg88\u000b\u000e�v���ȜVt��D\u001cA�I���j΁\t��W��)�����\u001e\tE\"b@�S\u0007��A\u0003�\u001c���D�<�e�%��*�K��ӏ\f2�>�X��Hk��K�ӺHav�:��K�\"�4̳���\u0006�8�M\n���.Wf�\u001f�\r��Gd4-�=¨Éf\u0018�\f���K ��RК���#\u0018\u0007�•ܩ�\u0015ʥДL��3�趘z�x�r�\u001bB�H�fM\u0012az�_h�\u000e��~_n\u0016\u000fٯf\u0016NMK�[�R�\u000f��F�ݏ���qQ�\u0011%�>:G<�\u000b.3�p�ba�-���8\u0011\u001e��—��\u000f�=�$u��\u0012T�S�+�M\u001a\tC��j�\f�L\u0005\t\u0011���Aʓ@�\b�����n�5�|�A\u0011�\u001d\u0010��<4Vrh��a�b?/^J\u001eH��*2�V�2+}��!h�\f<�zS\u0016?ػ����O�Tcyha�\u0012\u0010'�~9�TA��\u000f������tG�S�Xb\u0004A�~���r*\u000e\u0004Ah�\u0004��(\n0�{���g\u0001�KN�������}ʹ��:-*�T\u0000����\f�SS��2��<�|��G���FV�GF�A�\u0019�e���B�B�k[S+�gO�\u0013\u0017\u0013\u001a�R\u0013�1�Qs��2A@�na\u001d$(R\fX�o����W9���\u001f(���ir\u000f,?�Z�\"�\u001a ��A\u001c�\u001d8��C�I\u001d�����`5v�\u0018\u000b]\u0005�\r�A�7��>��)I\\V�����G�����&���\t�\u0001����A�ѥ�\u0015,ӱ\u0004�LT���3\u0000p2)e�\u001f�\u0016�aD\u0003���\u0017��2��)DI8�0\"���#�\f��ݍŻ�MR��Th�P��[9'Y���m�\u0018\u0017\"�I%�R=O��3�/�\tt���˸�p�(�}�����>�=f �z�DYd����5\u0000�Zf2��`L\u0007y�!\"�S\u001e`�L��\u0011�\b�p\u001c0\u0000�C˶\u001a\u001fd\u0019\u001b#C��%�0-�\u001e\t�v$!,�D�>�/X�;\u0005��-��c[��|�~\u0010j�9ѻ\u0002��i\u001a%�A)�\u001dL��\u0006���\u0005r���X�_7����M�\u001a�VhC�)|,Z�\u0016u/VJ���TY�P\u0018@\u001e�\u001d�}$b��֫��\u0000@\f��RGb�`�%jpfeV��]-�c�\u001di��s��Ajz\u0018\u001aG\\Q\u0015�\u0010~�JǞ\u0001��*H��qi�'��J�*PK.=�\u000f~mf�\f�\u001c>D�oX��k����\u0013V���.�.<\u001a���yj�JD\u000e�œ.�$gmw\u0000��5�G��*p\u0019kn�\u001dn$��[uy\u0012�ί�2U�e��n��l�F�@\u001b�Ȃ��U'^�O:�S���^���,:���\u000b��5��X\u001fB��|&gԩ8'N2���|\f�Aόtyi�4�A0����E�\u0003�Be�\u001d`����g\u0014yڎ�i��MW��1:��\u0017F\u001e6OcPN(�\u001c?3:��\u0004���{���^ ��%7��Ͱ��b�\u0015��S'\u000b�f\u0010�\u001d��\u0010S?\u0015�\u001ebp�,��2H>!K^;X\u0017t�\u0006��\u000e�\u0013v��=ЀNXk�E\u0019y\u0004�}\r��R�$V�Ԡ�#���\u001f���\u0010W\u0011o_���C��\u001f�}\u0007ǘ+�Mn\u00068�̨�O,��)�\u001b\u000fG�\t��\u0007\"��Ub�҂��p:�H�}��Cs��zo�a\u0004a�YA\u0012\\\u001c3�{C�\u0005>G�S�Yd�R�\u0012`&��\u0006�j2\u0019HQ�52�����r5����4�\u001diΆ�\u0006�b\u000b �-'>Y�y�>@@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017�\u0017�X�\u0010���\bz�Y\u001b�\\�޷.�\u0005�\u0003������FF\u001c,:��-���\u0017h(&�͚\u0002D��ң�\u0000\u0003���)X�ǽ�R�����+���t��-�S�\u0011��\u000f�\u0005\b�۷XP�7QX[����g7ג��md]>=��\u0019�!p��\f��t�nj�\rVT:ýY\u0013\u001ex��\t��UL\u0013�զ�c`�y̒�#pS���b��\u0005k<�F�/�9\u000f�k?�a�'+��x -r�;�ŝFg�\u0014��3���Q?�0*���\u0015^\u001b���\u000f��\u000b��\u001d~��?nw��Dy)�5�\u001cj���jJ�?�:�X&e��ʯ�\n\u000fa\u001f�\u0002A\u0013�Bd\u000b�K=(��It�\u0000�K�A\u000f�\u001dt��n�Uӷ@Y+���A\\f\u0004o4��Ui�>\u0019�'\u000f�0�!�?�t��_\u0011W�p_�NC\u0006lLC�_�\u0017�\u0015QZ���<��1�:&��\f�\u0002��=�F��Y�\u0005)p_�o�U�\u0014���b\u0000�\"�:qdN�:f��\u00119��z�4�׵� ��8\t\u0004>�\u0007��\u001c�\u000f��\u001a<���m\u000e\u000e�g�~Ƥ�^De��ֈG�f�\u000f{�$y�8k\u0011\u001b�\u0005@�,�*\u0019Raב��F�j��Y;���I}<�gS\u001e;��qe�xo�\u0005X\u0002�@�س\"���S�%�����\u0002�I�},8��G\u0015%^�m���e��FT��A\u0010�\u001d���Mz�s\u0005���x��#E�\u001e�Y�D��\u001a�\u001d%\u0014�I���f��(n\u0005���\u0014������\fV�;����o�~�EC�}��O��4{�g\r�O\u0016�#�,@zQ3�R�dz�G��g1�G�]sX\u0013sT�Ɯ\u0011�e��\u001d-4\b���Be͕�n�\u001b�C��Q��%���\u0015�C\u0010R\u001c\u0007�rC��\u0007怸��>�uE�`J������mJ�8Ȩ�S�\r\u000b8f\u0003#j\u0016�A�W��qB�ϥ�G��k�\u0016��9>���(��8~^��W�\t8\u0019I\u0000��}�.Sz�q=z���bT�J\u001d��� ��8�Y����|d�A&�\u001d���X�>Xz�1q�߫�L,#\\uC�&[\\�J���1���\u0016j�ȝY\u000e\u000f���\f��w�R7�eύm�p\u0017��gn]���\nP\u0004�\u001f�H�S��݄9�7��:��+S�G�\u0012O�9�y�\u001bc�����!�\u0016��=Q��[�I�v?���;H\u0003\u00124\r�8-`���<܃�\u0005�ܶ�WA\u000bMc6� � �,Z�=�p��5�����XZ~�$�n�����\u001fM�����[��%[\u000b(v\bp�f�\u0004���z����\u0004f���\\\u0012>�����\nK�{�\u0001SZL��}{b˲�)8TbO\u001b6�\u0003�\u001a͓���:��{\u0015�\u0006j\u0003�\u000b��}�\u000b���Z+[s�ڃ �A#�\u001d����b\u000btB\u000b,c�����\u001a�\u0007E��6\u0019\u0002�7y��\u0001�\u000602�x\u0003�\u001d`��QRM\u0006���\u0010��rd�B����b�խ\u0013\u0005GR��¿s?�KEM+W��5^��h����5�����i�\u000bx\u0011r��pTa|V��Y5�n�)�\u001e��2 [�\u0007\u000e@[�&�%\u001e\u0013���>:�\u000e\u0013\u0016ZE3H^\u0014W��7s�d�����Y�$<�,��Z\t�΍ݐ\u0019\u0010z�&x��l�����\u001f���4wDV��z'�,�MM\b�\nd(\f*\u0007\u001bT'�\f�ĥ� {q\u0006>m����Ax���\u0012Q:��cؽH�ݘ��Cr,�IV@�\u001c�tq�ڿW�%����\u001e�A(�\u001dĀ��b�e��,�o�{\u000en�\u0013\u001aa{ߓ���āZ�\u001ds?\u0012\u0002���,�<�%\u0003�\u000b�y�\u0002\"/%y\u0005�S�S9�ݧm\u0017���\u0003>%�I\t=y�O\u000fo\u0012n���,\b�K�nJi\u001d�m�T����\u0000\u0011\u0007�&b��\u0012��eA�\"�a��6\u0002�&)��&\b\t�R��`�%tM��#�1����~X� ���\u0001��~}�\u0013\u0005�qff;�\u0000���'\u000b�\u0011��&�$�O�k���P�\"v\u0012\u0007>�1\u001a���c{snt]����`�١��t\u001f.<\u0011>�П�o��xhy_\u000b):�[�/��^��e�F\u0018��gHdV.�o��$,2:��!�CQf�\u0010q��,�]\u001e\u001c�d�\u001d�A&�\u001d؀��b\u000b��\u0011n�\u0001�f\u0004�J\u0006U������h\u0011-\u0010\u0014��.���@��k[�YJ0��/�\u0013�\u0007%�P�X\u0012M\u0018�T\u0004���_��ɯp|SSoB�^���\u000f2��ơ\u0010��܀\u0014Ӏ^�J�yo��\u0012)pt�\u0007J�\u001e��������q�\u0006y\u0006�w�{�3^��_j���9UC�QkS�j1�\u0012�N����˪\u0006Ȑ���\u0001R\u000b���ǐaF�\u0019f{{ᥧ�E-���R\u00164�nWB3Y��M���^�zK\u0012�u��.�mU<\r�k̚@�)�6ll|�hjv�b!�\u001d�s7�2�!P\u0013�6���VE��V|p�\u0012�A8�\u001e\u0000���f% \f?�r�1G@��n�f��N�μJq\u000e��\r�p�5]>\"è���\u001a\u0005oJF\u000b�w.H\nNP��\u0010WT5\fͬH��X�At\u0019\u0004��;bCB���\u0001�\u0006m\u001c�~]ߡ��V4s�\u000ef�DA�Xrj�&1\u0006���V,��?)(ԟm�=M^��Y�#g�ţ�\u001cZ�0>�\u0016U����\b����\\&;jP���;�S�a���6#����Z\u0005:[p��ʾ��u�J7'\nT홅&��\u00031\u0018�}�~0�2�>�\u001b��\u0011\b��\u0011�����]��z\r��3ʙZ\u0011S��1C\u0007C����\\5g�H���M�E;<�q1i�\b��썝X.���v\u000b5\u0003@�\u001b\u0005�X�I�J��ڕ�yّ�A4�\u001e\u0014���e��ܛא\u0007����ޜV�\u000ecx��񬪸pa}��*đ�6p-�v�g\u0012nQa��5Hq�x���\u0015\fg0@��\n���\u001dz\n����\u00170�f�yر�����df����\u0004cVe:a\t怯L}>F��C\u0017���\u001dR��\u0006E�\u0003�_���l�c�y���\u0017�}\u0006\u0003�>�nS\t\tLҪ\"�\u0006�\u0006\u001dE c���+\f=�b/�Wq�Fm(=�'A@\\V���\u001a\u000f���@ą��ݱ�S�=�\u0014n��M�2�ٳ��v�󿹾\u0000�u�r�\f��[\n�M_�{�\u0014�}�ժ��\u0005}�e6\f\f�^bU\u0002�k\u001d��\n���[�\u0015'}��$pr�c���*9s��\b�\u0000H��X���AH�\u001e(���c�,\u000b���\u001b�����Iz(U��M���\u0001�yb����\u001f�$1ʍr�iZ\u0003��\b��\u0017r�j�ld\u0010�\r�ԋ�1��\u000e�-��JOz�AA��y���ƈA��B�XP��������J�@<%�\u0007P�2���T��p_,|�\u0013�3�\tw�8J�]- *\u0005����\u0006:��\u0012���p5Y����\u0003\u001d��Q\u000f\u001ah�\u0010\n�\u0018IA�i�˛�{T��.�ӝ-��@\"\u001b��fi���F,��ۥ�S�����K\u000fi\u00191�$�95�i��*����m�54�>�\u0001�\n\u000f�YpG��4�^`l��a~�_�#�{�Ҵôt32#�v�\u0006���m`�(��D��Z\u0010��9�\nG��\u0003�B��:\n, $��-�ō�\r�;��n\u0013�A]�\u001e<���c�ٿsc\u0007Ct�NVxP���J%��EچOv��~GO\"�%\u0019#b�A�4^A���q��\"��G\u0006J�\u0017\u0013�Z�O��<��\u0005҄�5`P��a[\u000fO����n�M�\u000b!���9�A�L�Z7��\u0004\u0006����:E:%̏h�(�G�\u0006�����:�\u001d�j��s)UF'''\\�\u0005ڏ\u0016zL٢�t\u0000\u0010\u001fI��@���'�'�7F�p��ު-�Jbƌm�wY\u001d71\u000f9x�\r\n�\fF���-�tVg����h�\u0002�\u0010H�\u0003�*\f�k����\u001bG�\u001bb����6B���\u001d���s���2���kf��B��]l�/��,e\u0015�O@e+\u0004^���\u000e,{R�;�w\u000e\"��n\u0013_\"@�b�f\u0006ǧ2��\r-�l}�9\u0012��\u0012%�j�8\u001f~�\u0000j��G��W�\u001d/\u001c�\u0013�AO�\u001eP���mA\u000b�*a�Y:Q�5Уv��O��oq��)��!4(Z�?�C�b\fF�<і�<\u0015�0��Q�fm\b��\u0006���K�cj(�Ɛ>�9���:K\b<�W��>8�%nX�{�T7!\u0018��⻺{\u0010��'�\u000e,�x'�P��T�\u0014\\d\u0017@.���`�9�+Ĩ>\u0003K)K�&�&X����1���\"+7A�\f=�b��U>z\u001b.�6i�p�猴�\u0007�<1̹�k\u001dn\b��m9 K�b� O�m\u0014q��R2,�?1�\u0000�}\u0017��ت2�2��K1\u0002\u0005�\u0011�w�T5u�E7�Q�f����\u0016Jb�Љ�{4�qs��\u0014��\u0013��FB�� \u0017OΩi�k�3���b�h��z�\u001e\u0002{�\u0015.�v�T�;��2\u001b�=��x�\u001dٺ�J\u0013�B^�\u001ed��|�\r�E�ɹie\u0003�Ȟ\u0019Fdf�wt�D�ۥ�\"\\u��\u0018��\u0005\f�nѦ qi1F�\"���\u000fc�4I�\u0019�5\u001c��=}*�\u001d+���\u001bBѼ��\bP��b\u001e\u0014���,0\u001e:�\"�9/\u0018\f\u001df\nf�\u0000\u0000\u000fe��\u0017\u000e�,\u001fS\u001c�s�#��E�&y\u0011\"�_�H�\u0010�Q���\u0000J���n���\u0005>W��S(���\u000b�\u0006:��\u0013Ie6�0B�\u0001\u001b(�@�`\u0018J��O��\u000bwR�\\�<~��xz]\u0001f�\t��\u0016F�\"����!4]�dh�U<��d+?_\u0003%�Bk\u0002�\u001ap���\u0002am��=\n��&��\u000e�Ga��\t\u001e�\u0013-��e�'�o�F\u0010�X�\u000f\u001a�[�V\u0013�L4��\u0007\u0010�\u00048:�D����H\u0007.H\u0011\f+&p�\u0015�8�:\u0019\u001f}b��@[��F���l��wl-��\u000f;���˽Ga<� O\u0001\u0006i)\u001fptl n���ߋ�!�+�,�m�t�\u0007�\u001f��F\u0012��;��K�؍!ɮܯ\u0014:�8Q�M�g\u0004Fl��}\u000f�\f��Vl��������&&�Q��\u001eY1{\u0015��Ah�\u001ex��0�0$��� Q\u0015-\u00110\u0013i‹�k���?�##j\nW:�T����l�gr��\"��߅\u0010^u���3Ѐz�\u0011��;\u0018���>!\u00143w%\u001b^���\r���e]H�\u0017/�|'�|d�<��@��oҰ�DO�-�n9�\\E�:Jm\u0014����\u0004.��:\u0018�`lV '2�5�\f*���6�G���t�@�H�l�@j����5�\u0016:'s�^\u0016\u0011���C�߰\u0011�˜���'�c�iP�mC&�@�\u0005,ց$��3Em���m8�-C\f��#�O���O�2��ős�\u0014���g\u001f��2�/\u000e\u001f�\u0011\u0004\u000bZ��~)��\u0004��d��\be�\u0010�R#U���h\u0010i\u0016�\n�eDw㰊[2�����K���?�!�K\u001a���\\\u0016Gk�C�v�Q�4��\u0007Y\nd�\u001e��}�D�0�4ΰ+T:\u0014\u0018Q�A/�\u001e����m@��[�\u0003\u001a[������\"��N�\b�j�7-�\u001a?\u001c\u001e�������\u0011�{��8x��={\u0002Ǩ�\u0006�g�]n��oe�-�&�*s���i�ý&��S*\u000f0Щ�8y��ԗ��\u001fO� \u0001�v�}EP����^=����\u001d�*x����+\u001b��]fv\u0005�\u0005��q\u0002�\u0015e{4�,��(\u001a������pMJ},�����\"Pۋ�(\u0004�g\t�� >\u0014N�\u0011\u000b�5��9��zC�\u000e¶�e�W,F|��^�\u0001;���bj�W\u001d'���&r�G�&a\"�p�T��~��ǒ\u0011�wY���v9�x�-�7׭19Ї=��\\�\u0012�Hة��W�TJL ����s\t\u0015�A+�\u001e���Ći\u0007����y�\u0013�a�%%\u0016/\u000b\r���K���\u001ch�4���,���E\r�L�wmrU��q��9i\u0014ӭ���[�'�ց\t��iF�#���Ѐ\u0016\u0003�s˸�\"�%����D�dW^\b�Z�Q=�YvE#�zFI��k4��Gf�\u0001�(�����h\\�\u0001�-��)U\u0015F11��\b�Y`ͻ��RM�+f@Kc� ���I��\u0000�+\u00009�\u0012�\u0012�7[^+��P�~�n,��7`\u0019\u0000\u0012�-��@\u001cu\\�%��������'��\t\u000e�b�@��P���O�\u0005?[��T�d\u000f�\n�5f1\u001e�\u0012\u0005\r\u0001�+�\u0005\u0013�;�km�*Dx�+�\u0011\u0005�R�'�#\u001ah��IF\u000e�\u001a\u0011�A.�\u001e���M!�\u0011��Α�^���3�\nڹ���KS��2\u0002�\r�񙔕�\u0003��B\\&=\u0001�k�T)\u0001n?�\u0006\u0016�\u0016˭n��á3�s#�-=\u0011\u0015�eP���rN\u0003s��`\f�\b\u0002s�`q��\u0003ލ\u001cV�\b\u0006\u000f\u0019K��D\\�\u0012�����\u0005�--!��;�������\u0001,nt�V��a\u000e�$3Ֆ�\t������\u001eb\u00196N�c\r�ޓ��*C�U_�ZL�s\u000fg�sC*@\u001a���\u0011\u0012���r\u0000bj�T��!1��X}�_V��)\u001b�$������\u0000o\f�)}\b�+\u0019�=��;�\u001f�5���1�Y񋍵ѽGfs_[)��x�_�\u0004��[�m&N�L\u0013'��5�6�;]�8.���A/�\u001eȀ�M\u0011�\u0012��j0'�ns��ڇ\u0013�[A��Ug\f��v\u0004&6҉?�X\u0019��2\u001cz!\u0004e�]�I4\f�D%��[��{��>p����:��3\u0006���\\_\u0006h��5���B\u0017~ ?�'U�f; z3z\u0001H��\r\u0016V�_�UX>\u0007&���A4��;i\u001e�\"o\u0017t��*8S=\bu�n�}�;ڕ\u0004��\u000eφa�\u0001wM\u0003��t>\u0016��G��\\)��)�8_?�f��߭��\r��Lu{\u0002�˕\u0019�3\u0005����o��H�́� ��*�{n��iOxJ�4�&����\u001d���\u00004l�kf|\tx��\"��\u0005j�[�\u0011 \u001e`\\����\u0004�\u0003v�^\u0004\rZvW#��7�~3��hX��^�\u000fWȣA,�\u001e܀�1�1{��Sf\rWo�\u0012|�I�ݜ\u0005V\u001b9����\u0003�\r�?���`e�\\������3S�%<`�z�?� r��j�\u0016�\u0013\u0014o\u0014����U�e��#\r>r\u0006�\u000e�WkN,��\u0018\r��\bb�t'=Maɾ\u0004P\r@����^�����n�)*�\rs.\ntV4zf&g\b\u001f���\u0002\u0013�\u000e���)�\u0001��L'q\u0013|>��*aS�S\u0019�o�#�A�v�9/�OW�5�E��0�3�v\u0017�,��:�gn��7���bn�҇[B�\"�\u00167\u0003\u0016Cq�\u0004�c��.�ח�_�c���\u001b�\"�m0���C3���{[\u0003E��\n1/�{ۀ\u0012��:���:\u0012h|\u0014\u000eq�,�F�Z�As�\u001e����b@�\u0013*�Su\u0000��ZF�׸tn\u0019\u0010�\\���M�h>\u001cr${����\u0001���L\u000f�V)��I���\u001a\u000e]J�\u0006�&\"��h7�Τ��+J��L�\u0007�\u000f\u000f�Q\nD\u0001P��@�\\�K��P�\u0005��ŭ�y����4�\u0013�I��\u0010��&\nk���v�\n�=���|֟����L7r�/\u0011���V�8�w̰%N���:\u0018�+��������L\\`%��|��PW\u000fz����a��ݓ���\"���\u0003;��'Ã>J�yK�EYX��o@���-����\u0012JϾe���a�Н��\u001d�1m3T�ǭZl\u0015�\u00197)DE��M�Wz��\u001e\u0015\u0011�/\u0013���\u0010@k��o2`�WI^\t�)\u0010lV(1���\u0016e������vܗL��\u0001NJ@TD��-�@�TI��3[�N!�\u0001�7Jx)L\b�b�^:��\u0014�#!\u0015�AA�\u001f\u0004���!�~Gi���L8\f\b���NW�m���\u0017jдo.\"�\u001e)-�fc�ȯ��aG-�2� jd��yk\bJ���\u0013��\u0016���.\u00024&-FL�V��\u0016c\u0002EgA�2\u000689D�b�1��1K�غ�E��\u0006�:;z\bK������i`\u0014Xu���5\u0014h��b�\u0016�ʢyt�J;��jR�q\f\u001d�D{\u0016��rb\u0014\u0005\u0003��y����u�\u0011hgkB$����h�f�\u0007w�2uV����굮�B�M�5Ҵ\u0003�+���\u0000a�ڪ�\u000e��M=n\n�=%k�U\r�*�[M�t�YT�`}���pXaj��(��87Q�5�\u00034B��Y�\"P�!���9��%\"�\u0012���b<�4B-��焃DY�&��\u0000�Z#\u001a�\u0014�AA�\u001f\u0018���!�\u0000\u001e���;u��>�4��?��A-\u000f\u0012��K=�4�L�%9�O{#ٯ2�,k��x��I\u00003�InJ�e\u0000\nD5�����Tf-J%�N�$k̼�\fl�:���ÂC���t�V�(Zj��oR��̵�:8!�.��\u001ei6\u0003�=���6ę\\�Y~��|�K�W,\u001e�1�$*����P��V�$�\bˍdz�w����+J\u0019AB�Ńs�XW�3�(�i��Au�o�\u0007��\f�\\\u0019�O\u0018�ʸY�g\u0007e\t�nc/b�c�#\b�s��\u0000$rW�\bCz�+8�;8\f�&ƅ ���駡`�a�H�1�;ݔ�G�G\u0006q\u0012�AX�\u001f,���4?H+8\n�#rwtD�!qG^x��\u0015��S�%\u0017���v��n������2�\u001f�\u0000�=L\u0002%A����b�ʽ��H��)�CE���\u00002\t�c������\\Ic�\u0000B�1���z�\u0015\u0000b���,�\u000e\u000b堰��,Ze\u0012q\u000f6�H��m��i�����ʤ�Fj�ߐ\b\u0019LS\"\u0004�\u0015���v9�]�Vjޢ»�Z[�\u000b$#�\u0012\u0017Y���\u000e}�8�\u0004�8_pfQ}�\u0017�º��\u00064�\u0014�`\u001ao\u0005���ǃZ\u0013�\u0013��ʌ���\\B��|�Cԇ?���@â=�{]�s}����\u0003��N\\qy���ب�c\u001a}��\u0017\u0014Q\u0004��J�[\r�%\tQ\u000f\u0006H�qA\u0006)�+�\u000b��@���|a��܇���wwg\u000b���h�\u0002\n��\u0011�2��ݙ��+�[ia\u0012�AH�\u001f@��M|�h���̹�pE\u0019Z�mA��0b(ٿ�c�\b�(-�\u0016&X�D=ܚ��^�/�spkR�}>������?��s�Ѥ�QԻ\u001c7�:��D;yPN��婟���t��\u0014��\u0016�R)����)*�ԃ}��R�v��ڃ*\u001bo���\u0011�� �\u0018���\u0013�����\u000fmA�I�1W:\fB.0V�\u0011([7v�~KCsh׾q�+�s��S�RҮ��\u0005�^�l}���JS��CZ0�\u0014�4\u001bŃGT����\u0003��R�<�}�bW�d\u0003\u001eU��S4~���~(�.�4�^\u0003���'��dH.\u00184�\u0004<�\u0003f�ޖA����\u0001�?���UG�\u001d\u001d�.\u00149�(��ԍ��\u001b`+��HH�_���37d����V:c���\u0003��\u0018�A�\u001fT��ʛ\t.I�\u000f\u000e�V9^�@��`�\u0012H�;Ck�}Ć<��\u001a\u001a5���}��A��s��`xHY�ɭ7�-O\u0016\u0006O�gU�E/�\u0013�\u001aD��* �!��\u0002{y��\u0018WNAh��5}��\u0017�6<��zNRƍg��\u001f\u0015NL\"��\u0019� �s\u001b%�D\u000f;\u0004e`s��Qìc�,=\u001c6��^\u000e8ls��=u^l�W��s\u0016�Hطc�*�z�ط��r�t v��\u0010]��y\u0001�\u0003!\u000f��K��X�5��K�$?<�sWF�����6��\u0012\u000f-f,�vR\"5\u0016�EGx\f�]1\u001e>B���\u001b$�\r���\u0006oP��\u0001m�\u0002\tۧ2Y�\u0002�H�\u0014�\u0014)��[���_�zQ���j\u0019����j(�\u0001\u001e�SO\u0014,Fڄ\u001c��\u0014���B���\u001b��\u001ai�_\u0019��\u001e�s_�T�\u0000�x9\u001cs�r��ދV�A[SG���ӂ��}+�\u0003�ab\u001cf���\u001a\u0012V��S�|B���p�F)@�m�4\u001b�;\u001f�z�\u001d��\u001f-56��3V��w�~�\u001e�\u0006eqI|F��\u001c>\u0006��4l{��<��\t�Q�P\u001e\u00015.R:;\u0016�Yw�RԮ\u0001\"Ll&��p\u0015}��A\u001d�\u001fh��X�.�Y\n\u0012MQIP\u001bKD_/&\u0017�\n�S;��%�q_\u0007����\f\u0001mo�ᰐ)���\u0003�:����o�?N�B��)\u000b�r�\u0010�\nΣȬ\u0005��\u0018`�>�a�Yl�b\u0019V4R`p�Iht?��.8\u001a� sb때�o����u� e��(\u0001\u001fX0��c��&bC��\u0004�.>�U�\t����Q��N\u0015�N�B�t�ʜv|S���untm �\n\u0000�\u001e\u0018?Pl,��$�2\u0011E\u001c,PJ�ཱྀ�\u0014��[����\b��vO���8n���Vǰ�]!�\b�M��F�\u0004�ݜ\u001ex�T�\u001c\"(��՚�\u001e{(b񙒸Zz:����촦�\u000f\f�`U\u0000d�A\u001d�\u001f|��X���,Ba\t����),ؐ\\1��\u000e�N\u0018p\u0018����\r��e�i��d�\u0015�w\u000f���2�\u0005�4M�\u00103\u001aT\u0002*�Z(\t���Hc!xu0�.�wa����H�wW�0\\n�;*�c[8\u0016�\u0003̸֑b� \u0014\u0005�#�.й��J���_ix8y�LM�L\u0007P\f�>r\u000f�i\t�TO�f����EQo�쨘�Wϣ<\u0003��\u0015\u0001\u0006���\u0002gP�L��w�\\7�d��H\u0007��>,����\\�ÃF[A�=�zNR���T^�Ϛ�\u0019��!�P\"�-s3�t�6����i�`�k�����d{ÜbG\u0014ߣ9��\u0003��\u001ca�k����\u0003W�?�A*�\u001f���NL�\u001e��\u0017���R%|��]���\b���\u0012�(1P�\u001a\f��&�c�l�\u001cw�����!�\u000b-�\u00125�\u0016��\f\u0007y\u0001�W�,B��}-\u0000cT~:\u0016�\u0005��+�j��\r��/\u001eD٢ݩ�\u0011�\fs��n�+|\r��\u001e��J��k�{���U��f�|.n�\u0012�A��7��\u0000�|�����\u001d����g������\u001aFNѧJ��\u000f\u0002\u0003!>\u00122�QJ�T�\u0016mq#���\u001a�Ǡ���#\u0000�3=�\\_\u0010\u0003�2w ���\u000be�4XXZ��\u0013\u0007'�\b�U�Ν\u0007]i��=�A�L�Ҍ\u000e#Э�R�K�<�<�p�lwc�B�\u001a�f���\u000eD�ݗ���\u00069AN��27��G�A#�\u001f���L�=FF$#gv!��m�;O�'��‹ߧ���L�\u0000Š�\u0013����?3�\u0018phʌ\u001c/��A飕%�.Cq?\f���5�Q���\u0007\u0007�}��\u0014|X�x~sdN�MT��\u0015\u000e�f�M$\"mu��qD����\\\u0019H��ĝ���M��_�&\u00070@���̠w\r����S�z�ƒ�w�\u0006��\u001ddD�\t�2�3�\u001b�\u000f!�Pi�B\u0002�U\u00197��?�\u000f���+@r�|g$r�\u0016c}ЏL7ے>�\u001c���~���x��\u00160t�|��IÏ�m�Z\u0018�8�\u000em��\u0015\f6�.���\u001f=��PuBD�xn)\u00145��\u00076�\nEVE3D۶��M�X��\n)7�A �\u001f����f\u001f\u0002\tw���ܵ�Nc��o�\u0007\u001b�Ů�\u000b�\u0015k\u0011*\u001fP�r[��k`}��=+a��`S\u001e[��lf?��z�O;L^��v�D�c\u0002pr�vh,��-\u0002\u0006ڜힺ^8:KE2 ����&�I�\u00126\u0002�p\u0010����>|=��A�\u0016�P���>�&�eYQ8!��+u��t��M���;#-Z\u0004fՇ*s�w U\r�\u0017�_��@�u��2kz*����Q�����X1\u0018�6�G\u0005��\"���V$tS*��LΥ�\u001cKr�\u001c2퓣A4�\u001f����l�-��\u0006~^�\u0015���\"f\u001e2&>�2�u���d��\u001d\u001dX��6���\\��S/\u0016׈�Ųm��\u0011�\u0015^0��˷w\u0018�\u0002N���?֙\r��Ъ�\u0019\bQ\r�K\u001d��{��Gc�;\u0013\u0003�_R����\u0006�K�(4��]C�ݩEZ^�z��ü\u0010�a����_��\u0002Qr<���\u0000\u0006�q\n�Lm�cQ�W�\u0012~�`$���-6�̊�\u0010cr)U_���Sz\u001c�*�X�\u0012�\u0003��X5�UW�b7��kf:s��&�4����'\u001d��Ƶ�ꂵ��/O�{�D���P���٨\"N\u0014W��tH����e���,��K�!\f���O�ؾ�c�Y]>\u001e\u0010\u0007_a�9:���o�eg�/���퓣AC�\u001f���s'��31�LR��\u001a�@���9��Z��΍`[@!̶0�A?���\u00156�ԦĈ�;-�@1\u0006oP�n�+\u0013�|hx��o��4���9X*\u001f�U��G^��A�w��f;����f��\u000eI������?�!������w�#Oc�\u0013�\u0007��|x\u0014�JꐜV�<��N��+���o*���#{,\u001e*)�Rz�x˼\u0004���ƛ�Z*\u0007T�WN�\u0011�$����-�Ua\u0004��\u0019\u001dLD?�#��\u001c���+6ZԪk�<'�d<�����\u0003g\f���.���<\u001a4�]���W\u001a\n��\u0006\\\b�*�`�\u0016�\u0016SU-cO>I���a�H���w'r\u0001�&\u0015�+��*6������2��InsM��I���v�2�\u0013Փ�AG� \b���c\\\u0006��IL�^�\u0011�\u001a}��R��\u0005|Y�������w�v�_����\u001e��[H��Zt51+uvr��1�WqW�\u001a����~��\u000e2�Mq.\u001f��G�pa\u000f�b(���b\u000f��\u0017%���t�7��+�I�&��JS|�;\u0018]���dRQ(�u�;�h�Չ���\u001d�꽤����\u0000v��a\u0014�ȍ\u001c!Xa���E���\u0010��2�\u0004�6ٚ��F�\n�\u0014\"����3m�����o���!�3�h�\u001eT?\u0002\u001d��亂��-\u0011~i�'!\u0011\u001d�wt�Ai��6��}.Ó2\u0019��5˪��a\u0017�t���Y\u0014s^�7:ؿ\u0015�1�NG�{���ݗE��:�턳���\"u�S����1\u0011�\f�ܶl�ֽ)�g!�����AN� \u001c���mC\u0007&��]�\u0017\u0013Ä�*ߺ�\u001fx����\u001eީ:xўC@ӧ۩�8�H�\u0016�|z�y�~KB��P\u0011���`.}R��/�\u0007ff\u001f�\u0005?�s��P$�\u0015��5\u0015&�� x�!�;�\u0004�\u001f�P��N�w�\u0002���r�t�&�S=<\u0000���s\u0000,���\u0007�\u0013LTq.ߪ�[��ɗӶ��\fd�B\u0000�L��^Ty2f\nNMX�3_�����o��\u0002�O\u001dDIbna�\u0006�#\u001d\u0012�QQ뻦�\\�O\u000f\u0012ǽܺ�$�6,а\u0010�`�W~��Ie�\u000f�\u001d\u001b\"S}�-�;q�x��z�e\u001d����\f��������Ok.�л�\u0004L��6E���Ah� D���kǸ�E�ʹ�\u0019y\"\u001b\u0019kS�C9\u001a�(�%\u001cP�o�\u0006��p����\u000b���D\u0005�\u0006'�\u0001˻��{B�=Q\u0019�_ 3��F��\u0017�q�=���e�\u0017�\u0013��a�\u0000�)q��16���@��vR���)�E�‘xI`S��-\u001aV\u000e]\n����NM�����v�\"\u0003�s*�萄�\\2�Ac�S���P���U7r\u0004�6���x�[P�B鹜ML5�><\u0006�(N�\u001f�\u0002fk2&W�Ԁ��\t8���E!��~����-\bL�hD���L�^�j\f:� �_���\rI;�(0��]��\u0018&4�3\u0004P<��h�l\\X���Ư������Z&��+�t���P'8F�]`�\u0011�D��g\u0012� m��(�S����.N?��\t~�ur�i��!�\u0014�9�\u0006p\u0007�\br��=_X�◶\u0013�B&� X���bdϝ�\u0001�ܮ�\u0014�:��fT��l��טU3�4���A�\u0014\u0001[�s���\r�\u0017\u0006�\u0001��\u0006�S��Rri��\fy�u\u0015��[�\u001a\u0005��J���\u000e��\u0016�\u0018���\u0019���P^\f*�-l�rĭ\bv\t�L�sG\u00134�>푌��(��ۇ1�\u0019o\u0018�L��?\u0010\u001c�#ą\fRfbaȂ\u000b\u001a/� �����ȒLG���%�\u0010�TdN��\u0005c��\u0002��OƸ��vװ�\u001c��L��v�m\u001b/����d_��m�`)o�51�]�)]@'�T�G\u0000�U\u00196AH���Gu��$���O\u001ai�\n��v\u0018\u0006v��[���5s|\u0001\u001d!\u001f���l�qy��%��$��\u0016�7\u001d�U�\u001b�\u001b�kB�J\u000ef;\u001f�1��n��\u000b�\\6ߠ�3�\u0003\u00168�\r��\u0010�p�$h��9��+\u0003�#̒!\u00147([�/�fI��\u0012ڗ�z\u001c\u0004�l\u000b\u001c��f_{4�S\u001d`\u0001\u0018��G������\u0015�Y\b�%�m�!��\"���s�ٕ�AK� l��/\u001e+�aZ[���Db1Y\u0004����;�B\u0017���N4fSY\u0005ky\u000b��ǣ���~\u0015��]R2�![�һE���\u0015|���D@U�1�,�2\u0016��@&�&\u0007L���x���Z���3�Dl���� �~ʌ���3�-���™���Tn��\u001a'�V���v�����M���OY?�ss�<,�_\u0003��:��\u001ftQ��H6�j���[�\bM��=%�T\u00021����)%h�yȗJ:Zj@J\u001d�\u0005Z0�k��a�\"����t�\u0015�\u0000Oz#��\u0014�l�a_;�W$��v,5�\u0000�Se��\u001f\u0019XʔEq\u0006]\u001f�\u00079>�W��,\b�i\u000fp\f\u000e\u0015\u0015���ˣ���\u001a4\n�|J̔��v�ŚCB~H\u0016\u001fpA��\u001b���O&,�б�ks��A=� ���L�6giQ�Q����WT{\u0016l$�P#~\u001a�wb�I\u0019���f\\�\u001e���\u0014-�5�Y�2�Ў�|���ً����e[��#��\u0002\u0016g���4tNt��׊Ep�'�iT��>o��,�\u0016KܴyxJL�\u0013jʐ��J��vWA�M\u001f�\n\u0014n��T\r$BĤ�Ó[fSTs��������ٔ�\u0007EEW�)6\u000f\u001dZ�|Y���@�\u000be\\�ʎ�x\nd ~���b;e\u001dFu�6\u0018��1��%�.'�\\I�-0�\nԥ�B^�*ϞI�{\u0007�~c<\u001eM���{9��v��#�+��?���\u0004=K\u001fR�h�����,̔A?�B�r���yq�ʡ��\u000fF�,bp�1��9��6\u000b,\u001b�K\\q�A\u0004�\u0013�-�-�AK� ���L�\u000b�s�p�'\u000f����B\u001c+|VO�L���\u001c0��@\u0000�Ò�8��\u000fQ���5�髈��@H�\u001d�z\u0004��,\u0006�\nxqL\u0002CD�\u001ee�z��L:INt-� �C]��1�L�^0�k2$J}yN^�;�\u000b����w��`Fb�e����w�Z�k.\u0007\b�\u0006;����5�;SzD�6\u0010\u0001�\u001ecm��AM� ���L�\u001d\u0004$F'���\u0016�@�\u0007���cL�+��#/W97tY7^\r���\u001cYV#C��\u000b�dƸ�7I�ZU���l��e�=A\u0014\u0004V� \u0000�H�.�,\fU��Zi��9(��ؤ�)lID����\u0015~\nùqM�4G��3\u000b�hʦ\u0007��˞���W�V\u000e�\u001b�X,��N8`j\r�\u001e�\u001c\u000e��\b�=���ض\"���!6\u001c�\u0002�h_�\u001f�Ց�3�Ơ\u001bO�6�z@h�3#��\u001aԡ\u001ef'kl��\u0004�c��&�Gs�+\u0010|}�ťr�\u001d\u000f�<���5�c>xg���]'6��\u0003���\u0005L�hLE�\u0001_֋`��TmE��R��b�� Ĭ��v\u001e��(~\u0018���}b(\u0005F}[H2�\u0019���\u001c����TM��\u0002�q�?��x)���AE� ���۷7muw}�[�\u0014���_(�\rZ���i�\\� ���A8S�r#��M�0P�7�Ŏ�\u000b��B7�_G��T�[�+'�S�w/HP���!܃o5Ī��G_44���W�Å}�\r�L�Aߪ�v\u001c�v��0��`\\d��\u0018�\u0018���s\u0007\u0017��͍C�ш�\u001d#�*�\u0011�\u0012I��\u0004��\u001b����V�����Y_\u0002-�vi°�Ef�p_�xf-7\"�:\t��ɛ./\u001c�p`�,-���r�&�/�|$Ǧ\u0006\u0013��J<�M�[~ʳ\t_\b\u001e�r\u00195�\u001bO�9\u0011���y1��>ʠ�7�X�\tr���)I�e��z���Im�i#�Y3�c\u0015�L�)]\u0001�~����O�?�`jS`�n\u00019�\b����@V��E�Ao� Ѐ�L�m54�E���^��OYx!�A;daQE\u0019\r�o�$��.�#�ywŽ�2�\u0000FgQDV.\u0012�f�����3F\u000f)Bݱ)q#�r��a��\f)�#~G� &��Z}+\u0016Bjv5�1�\u0006{\f�8\u00050\u000b���n�\u001dL�*�Ը0t�\u0016V�RS4\t?<̧\u0017�t���`di<\u0000�\u001cXDV�C�m`��Zd\u001d[�x.����R*VJ��v�\u001eĉ�5�-\u0002@1��_8��%\"��\u001a�۲N��\u0003z_�I�`�i�{lL�TA\u0006di\u0016��V�f��Z��ǣ�i�ʋ�;0�\u0011\u0016�yk�Z(9H�\u001c$��C}\u000b��7a�������:V*/qɋ���#�6T\u001fc�l�����Zfi��(#�\u0016\u001d(��\\~b�w[lg����L(\u0000G&��A<� ��M\u001b��h�B\u0001{�d:����$|p�l9\u001a>o�K�m!�\\>|�I8\u000f\u0017�A7Pl�m��VG�\r\u0013\u0018��k�@�����|<��T\u0011\u000f���\u0018��k����Ө\u001e�=��}�\u0016��p.�ǐn\u001f8��\u0003\u000b�U@\u0014\u001a�%*\b��\u0006���BWr�Â\u0014�K\u0015��3��L_� nG��\u0000)���\u0003\u001d�E\u001a� ��i\";�����\u0017(�N\u000e�;CD:��Z+{Rd��M�ĝ\u0004jC(��&�\u001dn6o]��\u000bZ�\u001c�������4ښ�D\u0005��C̴_�B���\u00112�\u001d\u001e�k&�PCv��\u0019�@��\u0002Q�\u0016b�����J�53\u0005uGř�Ƌ�!G�a2�I�\u0007!XՃ��-�%yq������j�&�X���A<� ����/�\t�|L#�{+�0�&V�\u0002k��s���o�\u0012>\u0013�b���\b\b\f�Y\u0001\u001c�B��Eڟ$�ASJ�\u001a[#s��\b(!���\u000b�e�e��|ԏ�NПm����\u0018g�Ƴұ\"�-��6��\u0018Æ��\u0001�v8��3u�\u0018¾\u00186��Vl*TE�1��sc\u000e���\u001dŋr�`�Az�\u0002�ybx3�\u0017e��^��\u0019Q�I\t0\u000b�@����Z�ha�O83����yA��΋��\u0006T\u0015��z��\b\u0015�H�{JNY�U>�(�\u0011Ѓ�\\l@�����$8�\u0001i�Z��o����,=d�\u000b�E�]��R\t�\u001b�Z/b���Ԍo�r�H�m�`��2��M�ͨˇ�>7�'\u0013:$k�K�R�tţA=�!\f��XОX�L5tt�v~��J�T�C�[E�'�m����!����u�F\u000e>\f�/��\bTe��u\\�J����b\u0013l�����:mv�\u0013InDjѸ�\u0012\u0016\u0019��5\u0007+��\u0011�Zp\u001e%$T5�\u001bW?H{�Ŵ)�H5-�q}[1_9Z�O���\u0003��%o\u0001�:|\u000e\u0019�5�\t��3\u0003�K��b�QZ;3�D*�#�����\u000fr��\u0004�q&*p{x\t\u000b�\u001d\u0013l`Κ7��'j�g\b\u0003�pMI\"�_�\\���+�,�H��\n����l�T�r��w�O�U\tKI?r\u0012�$�\u001e�B���s7��U\u001f�\u0004\r�\u001cwV�g�\u0006x�i�/���5�͆0O��\u0013\u001aĮ�O}6�\t=z۞}\u0016#i|���?�,k*���G3��g�[\\2'Y[f��3\u0019��\u0013�\u001bIO�8��\u001bKބ9��^���VЭd\u0003�d���J5�\u0004w�\f�A}�����\u0017�I���K,'�\u0018��-\u000bi\u0010-���\"~>\r<��A.�!\\��L���}}(\u0014����nt�\u0010KҼ�\"JJ\\s�0\u001e0%]�W�>\u001fຨc$���\u0013\fRa�\u0018\u0013Y��\u001a�N0�Q�\u0000���,��&�-��˼�\u000eC\u001a��{�\u0005�׾��m_i0�[��#����\u001f��]7`�W�:тYl*�s\b�~\u001b�\u0018J����p>�1\u0001¶Ն������\r��@��9\u000f\u0003�[$3�\n_�����̓T�7�\n!&h\u001b��~��f�;Y=9�gp�\rA��\u001f�rbߜ�\u0000=������`\u0001u\u0006e�s����\u001e2�A�������H �/�wSnGw��\u001e\u0000eF���R}L��cїQ��\":�������O\u000euܩ\u0000\u0013ԩ5g�S��sz��-�A\u001d�!p��]�{#�\u0006�I�ugq��P?(\u0006�1Pz\u0000��\"j\b��G�_y4>\u0017�7�:u?��!c�'�\u0019��\u0000�\u001a�$_ )�\"\u0016�%��\"\u001f�Aj!l��s�\u0010J�\\9\u000b�Rt�w�\u0000�-V��Jh���3�\r\u000eF�C��y�޶|��\u0010�#���!\u0018�}��\u001bc\u001c�\f��°��\u0017\fH�;�)\u001cp/\u0015\u000et�u\u0010�\u0001p\u0005�\u0011nhVR��)s#�\u001a\u0004Ѐ�s��-�\u0014\u001fG/P2��`�r�\u0001�*\u0007�m��L����\\A\u0005OYD�ÿ�XF��ef�ސĔ��*}\u0015i��lȖF�9��/��\"�)t\u0010\u0000�\u0003b�:3�n��.f�\u001b��zf�t��A\u001f�!���L����9\u0016$F��-�yL�\u0007�B[��.����&�\u0004v@2��\u0010z�]��Y�V*��F�߹i\f\u0006\u0007�\u000b�l0�\u0003g#\r�4��dM61�\u001f���c�14\u000f\u0018o����uc�^�>�p�m����\u001a�GޞX�\u0011^VC\u0001�NJ\u0017`�R��ޭ��9�x-+^U��\rp�<�e=����\t�V~ڡ(�\u0005�S.�\u001e\u0000FJVF_]�\u0019aU��\u0007��[�S��{fLf\u0007���6�Z�!�Yc�S)��\u0006\u0000\rR�\u0007&*��t���\u0015�k��,Ԓ\r�A�E�$��,��&P�U\u001b-0\"\u001b�2޾�C��х�Gý\u0014�\u0006\u001c�o���\u0006t�\u0006��A\u0017�!���X���\u0012R�F�o��\u0017\u0000\tZ�f�.ӽo)i��\u000fG/u\u00161O��9\"K=���8��֏�s}vڂoƐ�%��ǕmB�\u0015�\\)�\u0006D���6o��*\u0014:\u000f\u0003�<��\u001f�_H�\u000eu�D/A6�\u001b@\u0011n=Q�*�ЉO.�Cq�\u0001y#(����jB\u0018��ظ�\u001cAt�oZi�-\u0016�x�u��a\u0015\u0015[\u0012�i𶍚y<�G�cYbD,H<���yk�\"�.�f9�\u000fw�-v�̏.��6�uB�����Ǻ*Փ�;�v�f\u001a\r\u0007'w\f/4�\u0006�n��\b�\u000eTKo\u0006&�g*B{\b�1�9��뻐�[�\u0012dǒ>��A\"�!���L�ʷT\u0013�aSo\u001cd\u000f�[AS��k��ps����?ƒ\u0015v!�6�\\���\u000e�R�\u0004T]$�E$�?��\n�G��!�P�q8h\u001e�ɚ��K�\u0000��\u0019���\u0019�\u0012�)KDO\u001fI����n�݈5�\rz5���A*�!Ԁ�L�\u000e3���D/Z��4��3'�5�\b��+��G�g�4\\څ8�\u001b�g�N\b8,�Z�\n�\u0000M@l�T]\b��\rؓ��R�gú\u0010�3��\"�(\u001aE�;:�0\u0011u�\u001a*�m����\u0007��\u0019'��D\bƋ�0�K:*\u001b\u000e�\u0000ɽ�\u0005�\u001c�6|Λ���\u0013��\u0005�*;�Qy\u0006sQ{�\u0014��G;{��kl�MK���͞\u0004r��ޯ\u001d�ɣ��s۔\u001e̓P�\u0012.(1�u|��;����o���ۊV����x8H[��j\u0000�\b5�ϡ�Qg!�I\fn+h�o��Ĉ�̻ni\fVI\u001f�-�t��u��a@UM�r}3,��a�̵�H2���c�\u001a/\n1>��$5��A'�!��lՏ\u0016�kQ�.��I\nk\u001bS:h�2p+�hF\u0015��[2<�\u001eXe�2\u000e\u001b\u0016�_�R�����ژ��V��D)6���1d���_o4�vq�٨\u0006��\rU�ד�\\N�+2�v\u001e\u001c�\b\u0003c�E�i�؏)8�h4G\u0015F\u0010�&a\u001c���I�&ٶ��s�\u0004�\u001b�b}���\u000e�3$��EQ�y(Z��j荭�)�^���\u001e���<�Ҕ�����ոb�\u001cD���L��a\u0004�E�6�����\u0014,\u0000\n�\u0002�o�\u0016�nۂX�˅\t�\u0004��\u0010���\n,�\u001cY�.1O\u0010\u000bx\u0003(\u00034�xR�*5wي�\u0013\f\u0019�.}�!�O�W\u001d��9k\u0013+��m�^F�pz��A��A5�!���M\u0014�Y��\u0011�m�L�c!��\u0015��\u001a��-4��U��\u001dV&�\u0017���5��\r\u0016��b���Y��]��ƚSQE�/�\\b��M�\u0002z\u0018�2āS���Y� \u001e�\u001e��\u001d�<����9�\u0001hd�\u0003�$�B\u001ap^%��c�x��4Gs�;(xƅ�]�\u001a㨷�M���L^��`���W$Gvݡ6;8\u001e��@��Ity��s�ֱ���Ly����\u0004���\u0005����Q�څ횢���wG�\u0007��Z�u��Z���\u0004�\u0010*�j��VQEr��N� Ch\r��\u0013E\nG�|\u001dƘ@�5����/\u0003\u001dAܜ�����DVS%$-ڋu���V�\u000fc��\fxx�\u0003�BI㝻2xݞ�N����A3�\"\u0010��M|{���E3�}M~�]�r�Ņ4�A#4�o�/�A���#.���yA�\t��t&�[����[��W�\r��HYP��@���YnZQt`\u001b�퇯,�X�,s!u� -�޴��q~��Y\u0017\u0005�����.ó��'4�/D�V��Y�����I�t��*|��hы��2\u001a[3T���\n�s�\u0019\u0015\u0013�U��+G\n���\u0014�Z\u00034�,\u000e�L���דځ>�ڸg{�ϙ��\fC��UB�y��~�p�S\u001av�G���\u0003�/�\u0013\u0013\u0011�:,h�a��r\\Md�b���q�Y4�\u000f�yl\u000b���4\u0000���\u0015����+/�! �\u0017e�K�v\u000fU��ND1������|���@$�A�\"$��L�Dʨ\u000e!���s@�\u0005�q�~�@�\u0002�\u0016F\u0017c|��Bf9�\u0013�M8�,WX=|]��c�\u0004}\u0002AA�\"S\u0012��o4kHT\u0019?d\u0015Q�[��]�qВ\u001a.Ҝ8����MD>��]��z/*M�e\t\u000b��3z�O�gy�����`0���>�_P1����J��,����;e���ÁC�j��o�㊕��?��+�TM\r Õ\u0012��\u0003B�c\u0018��0�u�c\n\u00118�a��7v��b����8��<\t\u0001�r\"M^ϔwa�z��\n��<\n/3J��8�����Ŗ��?g�S~?\u000bL��a���\u0002�솉6�%ڷ�o\u000bQߩ�`.\u001eu��e�\u001ap����3�ǡ\u0018\u0003nx*ẳ��\u0018p%\u0015�\b��94�Sq/(��6�\u001er\u001c\t\u0002�\u001c��Җߓxq���d\u0012\u0013PxD\u001f�֎h\u000b�y�qd�蹨�%\t7�]�V\u0001�\" \u000e\u0012m�A5�\"8��L��,Tx�Ey7��wEC\u0006\tr��Z؎��ҧ\u0001h�0��|�cE�<{|�ޜ\t�j��s�ԅT���\u0001�B��\u0011�@�:\u0012\u0005�3V�?j˾\u0004W������g�\u0011B�}FY}<�Y6j)dI�\u000e0�D�o��L\u001b\r���bu8�\u0000#��k�k�\u001cD�$\u0000����\u0015Y[{�j��\u0007\b�I�\u0013.?� ��h��\f�M�.t\\\u000f���G#�B\u001a0+`�_�=�c9x������\u0018��Q��)�u�r�]N\f�'�\u0003��\u000e\u000b,���m�*<�>\u0006�C��\u001c�������@O�@C\bz\u0011��i�R\u001b\u0006�T�ۙ�\nB�q\"�h���\f��0�\u0018�ȾZ�l�TG�\u0010A�왭8R\u0007�Ͳ��A1�\"L��L�rB���\u0017��\nz���7�� ����%�\u0004�[�G3��N\u001f�M|{.=�\b�\u0010�\r}/H�F\u001e�c%�+ChH�ܦ9�&cEp@ԋ�\u0014|[WE\bf��%\u001a=��9�kR��o��껢���E�\u0005\u0014�\u0002��<7K\u001e�\u001f���H3z�f�=��x���ߔb���`�ʽ���Q�\u0003�羇ـ��!\u0014b^��\u0001��x‹T�f�q��\u001f���&6`\u0019�\u0018`�����Dſ|�E���\u0017KP(�j��n�5�T�@�a��Mv*7�m�����l;\u0017�1c\n��hB�܉CU�\u0011އ٥?8�\t\u000e�Vb�5�\u001b���(tf���+|P\u0001-�I$\u0010��\u001a[�T�\u000e[���A+�\"`���e�'v�\f������,ؿ6$�G\u0000�\u0012�@�\u0017�t\u0019��dp�5�\u0004��\b,�Q,���t�k\u0017�g,�X�\u001e\u0005�`�) ����>\u0014\u001f�G|�ǹ��yZ6�W3�\u0001�Wܠ��҂\u0000���Y'����I>*�w�Q�\u0005)K'�T��\\����{�?�\u001a���?�}�+��XPx��2n@�\u000e�YX\\�Q��Ăk\\��}�k\ts\u0006�1���WLI=���y:Y&�\r���\u0000�����o���\u001b~��4�\"�vx��T\"��\u001b\\�5��m}�\u0005�\u00037~���\u001d�ީ�k\u0003�e���u\u0010�\f�2��I��8�\u001a�E\bmБ���T�qf�c�\u0003��7�b\u001f�A9�\"t��ۼ\u001d\u0004O�e8�'\t�2����°?xG8�]A\bLq���|��N�[Ľ�C\u00124j�W��r&���:=\u0003\u0016SvI`Ԛ��Ky�+X�\u0001-ɔ���u�����p8\u0015�,\u0006\u0018��}\"ߚ;ҫa�s�/�$g�����Y��a80.�\u001f��=�\u0019XOna����AV,\u0003��WK\u001fI\u0002�x\u0002�(胓��Ȝ�\u0006\n��Q���9�\u0007-�x�S���^�7��N��xO4ȟD4\u0013�\u0013��+�t(�{w��9��\u0013\u001b?.Ѩ4������>M�΂\u001c���[�\u001a���N����\u000e?�>\u0005��\u0013��Y[��#\u001b���-�p\\����8� �\u0014�Xv\u001e˟��!\u0019�?���X\t�6�������j\u001d�A4�\"���LՆ;\"I\u0004�0��y�У{\u0002�f�땉�z8\u0007݅���i�\u000fq�L�\u001f{ħ��~�\n��\n�\u000e�ցS��e�mP\u0010t�sv[wʶ�2�Ū,�F\u000e�'3ԁ�3�XCn]���I\\\u0000�>۽�B\r�]��@��*\u000f�\u001d�*ާ\u001f�\u000e�\u000f�\u001e��\u001c�\u0002�\b�$/̩���{!ӍVc�d{2��t�e�D \u001dџ%�3�)g\u001a���Q�\u0006�+s'����n\u0000y�P�N�gQ\u0005�pХO�K����\u0016#�\u0014~�\u001c¿\u001c��4��~�O9�~�A�[x����l�\nE&�.�YP�h6�D}\u0002Q\\��\n�6\u000f6�� qR͛\t�9-���9�iu���x�\u0004\ra�\u0015}�]�\u001b�AC�\"���ƈ�O�\u0017��V�\"vF��S;w$�\u0005t\u000bţ��̬)~f���Y�{z��/��>o\u001atP7�@\u001eb\u0006������i���C��(�R\u000e޾�\u0017X=��\u001e.q�ݺ���\na��{'�\u0018�ڍ�W�\n�V5?d�\u0004��بh.$�\u0001�\u001ef�Y�]�\u000f�&�r���.�R$Bu �G\b\u0000_��\u0011�bQ�\u0016���I���'$�2�`�b�\u000e_\u0015�[\u001e9,\u0007��Ǧi�\u000f�\u001c�\n����\u0014a���c�\u0019�\u0006\u000e!}/�d�r�\u000f�\u0014�b�\u0011bVr�^�����J�A(8�J�kWOU�n��G\u0000\u001f\u0000�\u0017��\u0019m�\u001c��'�\u0004?o��񔾿�L|I�mlZ��lf����R��9\u001f��UR@\u0000.إ,ۖ�E�\u001f\u001d��AC�\"����s��\\\u001e���C�=D�\u0001\r�q �\\\u000f���j��ȠNJl\u0003�������h$DRMK�[\u000eO^\u001cY�5D$�!��o���x\u0015J�\f��M�]&\u00146K#�\u001b!\u001f�4FRn�\u000f,���\u0006�f�k�:�\u0011�&E�]�\u00141\\���9\u001b}r-U��\t\u0017�+0\nD�3Kה?�e/�S�JV�\u0017�(�dh\u0004��55U��\u0011�8EUpY�\r�.]¨*b}�'\u0013�I\n��a\u000e0\u0001,�\u0017P\u00121\\��|3���h(�#A\u0004o�)7�qmGv�{.��75�MΕ\u001c\u00058�\u0014�騿A��/\u0016\u0000�Z�A{,�%Onv�3����H�����0\u000b=�ʚ��W��v�̚^��\\q\n,t��\t9��އ�~�nE�A���AE�\"Ā��mk=_*�\u0000p>\u0000�ח\u001fb�:�\u0006\u0001�L�\f�\u001b\u0004DU�iѳ�����i\n��'�\u001d��g�e\u0017{\u0007�G\u000el�*�k!�uj��k'�\r'�-\u0012���v-GC�$����v;a��Rw-B\u0006,�IR�J�ɷ�Se\u0001�+M'�2\n��}�'��\b'��\"#>qZ�\u0019g����\u001eQT��*/LQY\u0012�Ц�6��\u0002�s\u000e��\\��;x�.cLH=\u001e��f���\u0002Ǎ�7���\t����ٞ�\u0010n�ǣ\u0007���u�9\n'\r�\u0017ɭ��A^���\u0006E�,I��ٶ�-�\t����H*\u0007\u000bT��Y\u0019\u0016پȃ�\u0011V\u0007:\u0019|�\u0002��\u0018\u000f�_\u0018��čF��$$�����]\"�Tˡ`�)If-�&j��\u0006���\u001d���AS�\"؀��b\u001d���b���_j@&�D#\u000b�|K>�Bz���L���mKy��@z��0,�O��f�cJ�)����pJx-�4�\u0000���\u0016jr\\\u000b�#É�8U\u001c(�&(.QEۊ��j!6X5���w�\u001du�c�R���\bd#�F�\u0017\u0012�����F���\\)�i:\u00118`�ԨҁON�\"�m!(n\u001c)�6�\u001f�������\u0001Pd�@Rn\r\t�nI̊��(��\u0013\u001d�P�[�X��������\u0002 +b��{����_\"#�)[2ʔ�C\u0001�<\u000bT��y�V?��\u0013<���K�\u0011\u0000�[2�9��s�vo�[Cy��l\u0016�.�\u001b|4z��z0��\u001dΫv��&\u0018����c**a�(��mP���C��W�Өe�\u0011t�>�U��c�p�@\t\u0014�ْ�Aa�\"���d��\u0010�9?���qj2��ܖ��\u000eSz_GzL�F�O�uQ\u000e\u0000��~�����t���Y�s��\\��Z�\u0016�aF\u000f�Bb�\u001bxV�Va�\u00076,Vf��!�F�dob\u0007\u0006\u0015�\u0016]�o\u0010\u0014�\u0012~,>&C_\u0019�MJ^�H�ؙ]���\u00111\u00110 �\b� ���\u000eP�\t�\u0004t\u001c�0�g�%L��\u0004��X\u0017�&��7E\u0016q\r\u001dWt�\r�\u0002����\u001aE&�\u0003��\u001eK\u0014&\r\u0019�7�ԸC��4!_r±jH��z�h�{�g\u0010x,\u001a\u0015eD\u0015E5�)��!��&�bm��\u0007���\u001e��d���x.u0\\#��3^̴\u0012\u001ag�>U�F�J\u001fN�y\u000b�$$�\u001a�zJ��O\u0003J-�ܒ���X\\Hw��\u001c���d�=E�������K1!\u0001�S\\t��\u001c����\u001aM#�L�r�\n]����AX�#\u0000���l�\u0006�!pS�Mr�\u0016VFb�o�U�\u001cT�[�����\u0003�oo� �#H�\u0011�S�}�\"\u0004��}.L\u0002����\r�H\u0012�>\u0016��QYUO5�m\"mF\u0014�erU�� \u0016ERd:dY��5u�\u0001�\u000f�W껞�Eȕ�<�.;�P��\u0005<�k�-.T�L�J��70-��5����\u001cz����\u0004�~b\u0016\b�]N�ȭ�X�cy\u0006QV!�2�&$���B�����Q��=:�\u0005����x���ߢib=\u0019�\u000f��!R��_�-�~�l��{K�M`���#yŽ����)��\u0013P\n�\b�[�Y\\��\u0005�8Y}\u0004P\"ܓ��\u001c�q�� P��$Q\r@�\u001aL9N*g�\u0006�;���\u000b���:��@�$Ta.��:���\u000f��\u0003���e��\u001eN����Z��VՓ�AU�#\u0014���c1\f�\u001a�\u0005��܄wZ=�\"XA�B��\r�@�.t�,��\u000e{\u00009����\u0018\u000b2��\u000b�\u0005���5�TU)��q\\CԈ{څ�\u0007�\u0013�\"��Pxh�8a&_F�q)�\u0005\u0017h[S\u0011��P/�._��Ϧ\n�U�%�\u0002Q����Ͱ��\to��C�Vt���\u0015PY�ğ�\u0001w.VSo�/�V��AY�;�$\u0005�����¾�\u001c'٣�\u001b\b�׿L=�g�^�Ʌ�k\u001c$L�r\u001e]Q=-��l�#=C��fe�|\tƧ0��E[7����\u0012e�b`�+s�L_ e\u0006�\u0015\u0003�R/�%s�a�:��D���9�s�\u0012���~=k�Y�\u000f\b�l��_?8e�LhXe�c��/\u000b���Ҿ\u0002��m\u0003��T����w\u0016�ҿy'�\u0006�+u\u001f-�>���AM�#(���cZp��j�hu���34��7���������C'V%����_�X���\fp�>\u0001F�g0:�\u0019Y�\u0014\u0006��\u001e��6{�p)^\u0012#�*\u0006^:����\u000e����\u0013{��_�\u0015\u0014�\u0007��̑࢘�J��m�L��~Cc�Z\u0017g��_7!��U�B��8��Q�b7\u0006���� [���~�\u0019e�w\u000f\n���0\u000e6�,�5$\u0019#���;�7b��dCy�E���h��!^�\n�_c�#�\u0003�ͽ�o��\u000be�^\u0011>�+R�=����2=\u001c��!�\f����5ad�6*���\u0013����t�H���'?w�m0��U�3'�B(���9��Q$\u000e���{ur���y�s\u000b8��i�-X\u0007\u001f\u0003�<��-P,���\u0012N\r����y�\u001b[[�*%B�3��K�g('�n0����x��!��������p0\u0017ӟ�N<�}�$�\u0016�d��r\u0010���l@\"��)^�V\"\u0007s�\u0016�a1\u0010�aq.�Uf�tF�o����S7JhXǥ5a�(楈���3R\u00197��.'ϕ����>v�/}�@\u0012����!\u001b��d�A/�#���X�r��/L�N���4o�p��L�\f\b)̈(�I�'\u001cCj���1�a�yڐSC�����7\u001c\u0011\u0006\u0013�I�/qlB9��(�H7ˇ\u001e\u0001�P\"�*UW�F�DQ���@��țS�#\u0010�!��s\u0015�g��}�\u0011\u0011.\u001e)k\u0003�-\u0003��u(�\u001f.�g!\\����H���W@��\u0006a��Zj�H.G�\"�2������Rnv�\u0012S�\u00019����im\u0013UF�;��\u000f\b@�6-��*��^\u0011��5\u0000�b\u001a��\u001dp\u0007��y��%��^�9F�\f٣���\u0017�{\u000b\u000eA��%�b&���[��PR�\u0019$cS]�/\u001c��0�v�\u000e�\u0005н.j��\u0010U��\u0010�e���T��\u001e�\\��y4�A8�#����c��:MN����\u0010�U�o\u000fr8\u000e�:�gn5m\u0017(Ispx\n_�x��a*\u001e���\u001cU�S/]�a)H�>ye�Ɨ̴l>���0:3d탁��\u0001�������\u0018�X�\r3��\u0004=\u000ed�i�\bҨ�UpO��$\u0001���`�yu_���\u0003��4����\u0001y�n]���;8Q\u0001�L\u0003��,v׋`g�G\"\u0003:\u0013ݺ�h\u0017{(\u0010��ۤg��H���\u0003��nK�'!szX0\u0017'B���Y(��\\F\u001e�Y\u0010i��X\u0017\u0006Rx��U�w�o9�\u001c�0\fwT8ݤyI���\u001a&\u000bb���S\u0011boي�x���(�\u001d\u0011\u0004F�\u0016�mF\"�ݸ1�x\u0005�o�\u0000�vA#�w����I�$����D�m�\u0015�A3�#����l�p�y�\u001c�`����%;��T�vy/�YL��cX*�}h\n�]�N��f�Ez��ic\u0010LrIYm?\u0001�L����\u0015��҆N\u0018)�\u0016���k��߯�\u0019W_\u0010X�Y�A��\ffm\u001a��Y�,�䀎n\u0014�D��xm��~?����\u0005O;�ƲWSi��\u000f��G4\u0000����\u001c��m\u001eY�q�\u000fz\u0016�Y.p`�\u0001\u0012G\r�:y5�2�R����\u0017�8�{)�\u000f<\u001a�\u0004�\u0004Q&�7�\u0013�\u000b���?*pv�AO�#���L���\u001b�}\b|\u0007��FV\u0011S�$;��W\u0016\u001a�{ĪF~�]x���ؠ�J6�#\u0000\u0013@��<(@6]WU\u0016\u0010���\u0007ױ���A����bH��h^�RB��}l@\u0001��\u0017\u0014\u0000S�`HFSt\u0012K\u0018����o\u001b̀�P�.VP5��'����\u0017bq6 \u001f{�[\"���Rj������c\u0014�t��U þM�-`�浙���½\u0007����G*I&ӵ\u0011�\u0019=�\u001c���\u0011c�hv,)Ƀt_&Fh\u0007�$�n1�R��>��\u0016ˆ�a�r�ԃ�Gi\u0017\u0005�yW\u0018�\u0015\"�˛���ITNQ{�K\u001c����\u001e��=���-�\u0014pH0��ө8��1�{>�M\\@'��TF\u001d�O���\u000bK��Z1�\u001e�Y��2\u001a\u00127�q�l烇�`�⤼\b�e-�AM�$\u0004��L���?d�S=�g8d��\u0013u( �J�Z�����>\u001c����|�ך�V��U\f2�\u001e|>%�\b�[|�0\u0019��6�\u0014K\u000b\u0015� ��uF�8U�\u001d�-*��;�\u001b\u0002��E2�b�\u000fN\n��J�\rx�@��:�n�\u0001|m�\u000f3�5\u0004\u0013:��}��\fg���\u000b�\u0001��E\u0011Ӽ�G�2e.,�'i�VE�3yM��|���|P��{N2�m\u0013L9׼9K�����\u00112����8ә�vj\u0015m/Ƹli_��m6\u0005\u0005\u0006�^�t1�kp��\u0013�B7�(#\b�ؐ P�ޘA����{����ѐ���\u001eT �I�~<\n<2\u0012�iWd&wu\t�/����`�6\u0001�,��\u0018J\u0012�߰�_\t5b��\u0000i����f\u00030{�\u00053I9$��\u001eQ!���\u00193�ۣAW�$\u0018���p�o�ZP��͊�\u001c$,���\u000e��F�\u00069�Y&�O�(�S.��:>\tլ�|&G�c\u001c��4Rr\u000f��\r�K��\u0015x9ގ�\u0015x;��ś�\u0006%ˍ����[���ֿ��}�S�Èf鑪3��P�\u0019$t|��DXT\r�ò�i���v֯�4����*\u001a��\u0013i�iT\u0010>\u000b=�ݖ.Y�(�\u0005a�����~vPH�r�Q7��\n\t��\u0013�[d\u000f���ep�\u0004\u0000;ɐ�N̕\u0014�0k-\u0001�����t���mݎ�E�\u0001n%e��O�\u0015l�|�j��\u000f�˸����[�o��Y��\u001d\"Q��b\u001dCR_$��'�����Kv��R�;�#�a�\u0019��\u000b54�~|\u0001�W��ƝGwR#$e\u0012�\u001c�.�د����4�D>���x�)�1���\u001cKxq\n�AU�$,����\u0013�<�<�(�j��R��\u0012�T�k���n&.u(w�B�%�*PǵVEd��Q\b��֣�\nR�G���ڋ�}r�n���xrd\u000f��\u000bk�5�s5�2(8��Q�/��^\u00138�%��j~c�&nAp��E+�Ƚ���5r2��q\u0014�\"�s-]\u001dk\u0002�r��C7}Ը@��r�6nB;�e��\u0019v��K`г�u�(\u000e\u0007\u001f�\u001aT\u0013�\"\u001d���B���j^�\tQ�+,�^�瞤\u0018\u0011��gƹ�<#>B�\u000f�aJ�\\#�BAvO3��Rs5��^�\u0013\byAT���I�!3. �AMh��v#L��\u0010-{\u0018�\u001a\u0000S�&�\u0014H*o܎�rT�\\\u0002\u000e�U��eL�>��\u0012�'kN\u000b��?)�ݴv���Ud����hr�;Bm\t(`)\f�AR�$@����?�\u0019��k(��v:FA;g�ٮ��U�Q�3�\u0014�򀔄����\u000f�c�CI��\u0006��d�W-dh��ET\u0011d���\u001f�>z���\ti�HW.\u0018a@�.�K4�9��g\u0012�#@B�^\nS�0\u0000�7R�ƂJ� K\u0005�������S)��͸�\u00005\u0017\u0002���?m���b;�\u0000\u0003ʲ[)\u0018(>�^���@2���j��\u0000�\r�$՜^�';n���Xδc��b��c���z���U��VP0=�\u0003a\u0015�G��Ep@\u0018v9C��\u0000�Q\u0003\u0005��\u000fݛ���.̚H��Go���\b��*����9����DŽ\u0001`I��&n���b:\u0000����Z2��\u0012\f=y4rHN����0'�����8��\fêG;Jӹ��Ķ��\u0012�צ �w�y3>E\u000e�AL�$T���8V�ֺ�\t�pߢ\u0017}[\u0017�C�#{6��=e�v[\u0014��q�\u0018\u000f����8[�\u0003\u000f1�[\u0012�#�^ʦ��%�n�4�E�4\u000f��\u0014DN�O§\n���D�\u0006�\u001d\u0015ڒ���/\u0016U��\"�\u000b5{#�d���f�����M\u0004\b8\u001d�93ѭ;�\u0018�j�\u0006��*5�)�Y�\u0002�~nF��m\u001ca\u001dN\u0015k\u001a/�\"�S\f����\u001e���)R~@�\u001f�\u001an�ѕ���,�\u0000�L4W��\u0016;��VW#E\t\u0010��{�?7���V�\u001e��::_�;^���2g�\u0017���� � ��h\u0007�\\H8%�ՠ|*5�a\u0018g�\u0011\u0015.}s�5�����\u001ek\u0015%�ɤ�0�@\u0013\u001en�\u0000-��[Uy\n�`��\u001b�+�ۋyS�q���\nD�J�p��@�\u001e鎣AK�$h�����@\u0018��i�\\=�\u001c#U�\u0011�I�uAV���J�v�w��\"P9�`\"��T\u001b\u001aj��\u0004\u0017d�|��W�\u0015ݼ:��vK�ˌ荭�~\u0004\u0013����d�V�\u0016�z��\n<�1c-b\n@m��!�\u0019-�m\n6�[j��}�\u0002F:PdZK��JT\u0012a�����\u001b\u0016\n��n\u0013\u0001\u0010w\u0000�\u001d.΄+ҿ\u0005c���\r\"��Q��s��z���U9\u0012�'��R���_\u0012��F\u0018��j�\u0014��m��P@�z�\u0007\u001e�)&�ũ�<�::\\��\n\u001c�9B\u0010\u00127�4]L�#�2��90�R����0��\u0010���F���4\u0000�0�Y�\u0019$\u0019��l��P\u0011��>@���\u001f-ޞ��N�k!~w�\u001f|�\u0011��\f�k�{�-Rb��+�P\u0015�ծ�\u001fxc%��A@�$|���5�n���\u0006b\u0005\"��[��\u000b������1��k�5��9�����1���<=0x��!c�H_��\u0001��\u0003-�\u0002]�;Wr\bS�ba�$OMv��r*7C��:�\n����\u001cx]�ְ�\u00041�6̣+�p*�{\t������\u0019�\b<�\u001d�o\u001fP4�]0O��z��\\\\�E D�j��|�'�u6���?/Z\u0003�)���sOҥ�v�5r#�)\b���o\u0017�y��ZE#�怭�K�>��^W@1�h�Oz럩��/D���&R��\u001c\b�8=\u0003\u0018���U˕\u0015ۊI�ݑ�=§Hf\b���F�7E�cmB��\u0000\u0013B&��\u001f��\u0013���\u001d�įʤ\u0003�3���e�]�\u001b��\u00160XF`�Բ}\u001cȦRe��\u0010�ኣAV�$����)rN��{�K�d���h��l�\u0006�(����i\u000f�#B�\u001e6Y3=\u0012�\u0006���냐T���N>Fไ�\u0013�ݨ}��/@��U��z��\u00071�=CK�ʃ}�WZį�{�]\rQ���R4zF(\u0004^���A�\u0011\u001f\u000bG{��9�g3\u0006t[M=F�\u0012\u0000s��VQ��a�\u0017\u0016���R6E��Ü\r%��\u0007\u0012)Щ\u0004O�\fI$��&�c�Ƶҡzk-X�{\u0010t}��G�\u0003����\u0010�r\u0000�\u0018�;P��\r<��M\u001f���\u000e��ʛ�V\f\u0013>Ǐ����ܡ���\u001c�d�^�w�O��_d�\u0011B�������r\u0012t�BD\"��r�$\u000b2����n2/���0\u000fI��\u0014��\u001d�D+�8�\u001aPPk�k\u0014HoT��f�0�El%�����o���«lu��AV�$����߀�\u0005���⭨��v�\u0006/�ώ\u0014ho�G\u000fB��\u0005ZHz��\\n��!fy��3tΏ}~8�\b���B�\u0001�Lq�\r��p\u0007��Vc�e�[�V���B��q�c$��\u001c�\u0004K*;?\u0003���,w\u0007�X�#�U��듣4����L_�; I=H\u0004�\u001dS��F\u0017'�\u0005�\b:\\n�w�\u001b#\r\b�㫐*���\u001a����ۃ#�\bl\u001e��\u001d�ӫ�5\\`P�Ω\b�lj��vY�[\u0001Ҷ�a}S���sED\u001f9�\u001e�^\u00070��\u0019\u0018��G���<�'���UR����C\u0000@\u000f�2%`?<��1q��\u001by��B��\u0002>]\u0018\u000e��3*\u001d��[k����*�ޚ�\f\u0002�I\u0011Xm#��D\u0018�1D�h�m�n\u000f<���\u001d����$��gmد�jy��AS�$����9\u0019��v��\u001fP[4!\ro>i,�h��t��D\u0018���\u0015\u0013D/ĭK��|�7sܫA\u0002�m\u0017�l~&˽8W��U���U\u0004��)]*�@��\u001c�~���U��\u0018��sml�!�'�8RU:d�\u001fa\u0006�cQծ���|\u0010dd?\u0017�ȒG��h�)��j�,�\nc���eQe8�qҐ#�x�+ŗG�\\Ԯ��h#\u0019��\u0004D=3%Zd����\u001e9�`\u001d4�����*�d,\u000b���|��!Pi\u0016�0\u0015v�N\u000f�f��\u0019�5�\u000e�`�c~Y\u0014���r\u0007/�oC.\u000b#��\u0014\u0019��R�݉�x��V3\b{\u0012���\u001c��%j�(\u0019&\u0010x\t��\u0013��;�������9C\u0005�C�P\u000f��C̹X(~m,\u000b�8t���~�oQ���\u001c�{Q�jP\\P����AT�$̀������M\u001d�\\�H��\u000e�`\r��/#�,Q���V�2�>�H�N�\"op9*r�Q�Ҹ���{��0�n��\u001fIT\u001b�\u001e�xx\u0017�gy\u000f\u0016ɱ�\u001cٕA��\u0015Z�A�B\u000e4��Ņ�)�H�i�k�`�g�ඞ�3��RK��F��6�E����h�:�NG�����V��ȝSytoHL��\u0019,\\)2���l.�I���>%�������t��\u001e��D\u0014\u001b��\u0014��\u0002\u001a��X�{�k��\u0007U��M޻m%e8\u0003\t��\u0006�Y#oG�=�;E�\u001a*�/wN5,���1�\u0019Yp�k\u0010W&\u0011����qFK��@�#\u0001?�d\u0011RT\"��Ct�\u0011\u0011�{Җr���W4��ݝjɅ��� �҉4�|͈�p,�i�4��\\\u0000~��B����8��)��A��$����5��e��2}r�UC%�r�\u0002x�7R�����\u0000s\u0000D�\u0015���\u001cl�:@H>0{R4V�j1���P,Nn��\u0000����E\ri9&^U-])}k�\u0005yw�7�)m,�(���OM\u0007b��\u0007'\u0018\u0011����D�� \u0018\u001c�\u0003dk6���:T@F�o��RM\u000e�Fҷ�0(J��OW��OB�����v��\\�\u0004�і\u0015�\u0007nFw�\u0002z�\u001c\u0016��L\u0002�\u001b������nj�\u0006��$쮴'$�׵�/o�\u0010���Q�\f�\t�IuD^�{\u0010���~�c²T��\u001b5v[q�V.7*.\u0007\u0007��d�\u0017n�Ia\u0012�W\u001b�ݍ�AL�%\b���+4'ɡ\t�-\u0007�\u00168u�;����\u001a\u0001Z$\u0002Ӎ�MU��T[�l\u001bF�N�\u000b�GB0y�kt�����g�~\u000f�q\r�F%�\u001f�\u0005\u0015�\u0001%ҫ�\u0015H\u0006�*�\u0007L\u001e��ߥ��\u0001��\u0015[9.\u0010��N�� =\b�W\u0017\u000f����³�[Y�\u0019\b3\u0003u\u001cHIC\n\u0005>�B��,;0�2��'\r\u0001e_\u0019{T�\t��\u0013Zl�ѳ+\f�-��������P8g��L�YI\u0018�4�b,:+�hZ(�zY\u000e���\bp�:ξ��Dñ����\u0013�\u0019�!:4+\u001be��cy#P,ϻM�h�����ڷ�\u001d��tX}\u000f̩�\n�\t�\u0006q�\u0002��(\u0000��SP3\u001dS�\u0012�3�\u0006�żP���G�w�2 e\u0010հ��|�\"�-�\u001c�;���V\u0013�P�\u001e���AX�%\u001c���߉ʅ�zh���TO1�\u0011�.�%�^V���l��� \u0007g���Z��\u0016�3%Mu�\u001c\u0013�iuq�#\u000eL\u0018H����}O\"�\u0013L��\u001a(�rdk��_���Q�gX�Z��+�k\u0001�\u001a\u001eC\u000f(.S�҃�\u0018\u00024\u0018<�9\u001e鸩\u001e��le�~\u0014�:%�\u0019\\u���!*��\u0007��\u0005(A���$\u0006�:6���C�peG��a�Wz�\f�߆\u0005�x�� r���v3���ӚV��\t�J�R���}��s\u0018'A\\�I�\u0007�g*\u0016\u001d���.�,��5~ܢ\ba=$�i|��\u0000��hs`b���@�״�id��Ֆ�\u001b��a�@�4���S��毉�X<�\u0000T$���\u0003��q\u001e�[\f��I\u00124ݬ�\u0013-�T��%a\u001e���II��ADO��i���%-��A[�%0���8�L�\u001fAͮ./�w�!�MNԾ��G��b��ө�O������\r!|:\u001b���D���߮m�� ���`-r���x�T��]գ��T��{\\Е�w�L��xU��\u001f*F�\u0017{��\u001c\u0002ͱ�T2���וS��n\u001b�)�\u000e9֎�=f\u001e\f!Z�\u0016����;�\u000bv���T[\u001bu�@8o\u0000�zr��\u001ab\u0005�a\u001a��d�Q:\u001fgZ���:#)��Ͼ��[g\u0015���Rг~ju\u0001���\u0018�۱��\u000f(���]\u0011��'�+�T�\u0019o�\"Τ�K/�\u0002kӷ���+m�q���\u0005��9���:z\u0004C�J`w7M�\\�zҧ��z�j�c�I���\u0016�U��/@\u0004\"EL���\u001f�� \u0018\u0010D%�\"5\u001c��!�#T\f�~�P��YL�NO�E@)�� �ǚ�ց��AZ�%D��ƅU\fX:���0\u001d��;@='\r���\r�\u001a���k1�\u00101��\u000fPM�{\u0003��6�_\u0007��dKD\u0011�+\u001d��p2�*\u001a�X�\u000fKKc�9���8� ��,\te����L���My\"��jw��K�F�өj�\u0018�\u00118�I��\ne�\u0002��9m��Z�7GǗֳ��Q��F���g\u0005}�b�\u001c!]Yl\u0001�e�,\\mՋ=�\u0014\r���aG\u001d�玲��PP�$��\u0005x��f�3��\u001d\u0017\"�ϲ*�T��N{���, \u0012�( 5iH\u001c\n��U��B\u0004�%X��}b�+E:[�ڲ@9\"��,�O��y�\u0015\r'�*̎��`����h\ra\\���\u001eIQ\u0015= �\u0015�{���+�qq\u0003AP5d8(�V�F����n@�{\u0004�Bt\u0013��ƴ1�4y��0�\u0006[k\u0016��X�n1kC�\tQύ��icì\u001d\u0013\u001d\u0007pn|4�>�\u0016���l&mFR�2\u0006z\u0002Z�\u000e���؂�0a\u0013����\u0010l�R*�X��\\\nb0Ui�;�\t%��\u00108wE�\bf̑�\b�\u0002~ibmˎ��'�ε�0��B����M\u0019tZ�}�ͻ��)A�٨|�\u000bv7��\u0019����-���j���A�$�(�_��<�)p*).%p�WU\u00054\u0001�4@�\u0019��04����\r��|JZC \u0015��o�\u000e|�+њdQ\u0016>��TBh���v�A;�%l��XЗ}\u0015VO\u0006�ԫ�w���\b\u0004'�����k�/N\u001bʵ��\u0003]�P��1�?��J��x-�\u0013l��\u00115��E�\u0005��|�D�ڰ���W\u0007\u001ePw\nh�n���ǥJ�9?�Õ�OB\u0002yQe$��\t���\u0001\u00199���݀��\u0003�v��Ř\u001a\u001f�e�\u0016eS�О\u0001-�I6�F�J�ƻ�7\u0016��{�_ƪ��k\"w��4�ы>g�\u000fu�e��i�4&\u001dKכ��g�\u001ei�\u0013y\f��\u0011*=�?�&\n������R��~\f; 9���S^{�yzs;�ѭ�\u0007$Ļ�\u0002zG�\u0015�\u0010͊+ňX�h�A�4�ׄ�Q�T��Fw:���i��\u0015Vs� x\u0007OL���Qx;ߛ\u0000�0\u0012��@���(�i�\u0000�A7�%���M{���ti�j�\r��[u�|��=�{�iQ��3є�ꀙ�\u0000�f��s-�\u001e{;���Ź�\u0007�'ou�S��nս�q��n����{���UUf��9\u000e\u0010ۊ�Ї����C[ޜ-�Ƿ��O�g\"��w��\";�=cr����\u0014��C�\u0005����e\u000f<�\u001d8��\f\u0015#\u0003|\n�7\u0017��w���9�U�-��7/�\u0003a���%\r�\bB6���\u000e.L\u0012�\"\u000b�Zp{\u0000*�\f\u0015��@\u0017N�6��b�85���v�\u0015G��,��z��Ng�A��3�T4�}v���`\u000f�p=�\u001cf\u0012��O�\u000ec�\u0017Ĩ�]}n\b���«:(�&�\u001c���h}\u0007��[Ɓ��)�\u0004ڙ��G��&=��h�?]�~�d�\u0001}��]{\u000f|\u0007�\u0011\u000b�9닧�&s�u�xF$�> q\u0004A��ў1�\"�~C\u0006�M��\u00173�X�p�J�(WG=�\u0006���@�е?��~�_/5}�����K��QGu\u000b�W�Œ3�k���Q\u0003\u001f�\t�\u0013g��n�i�e]ĈM���[.�\u000eL�b�:�x$�\u0011q=���?i\u001amv�A*�%���L���F���\u0017\u001c�s����׽�E�I�P�R4q0�\u0010c�\u000b���+s��\u0011d�Í,\u0014�\u0019k�T��\u001f����\u0003�Î�~��M��������\u0014\u000e�)P�~���j�\"jF7tt�00'�� ��:~Lam��)\u0016��S\u0011M�i��Ƴ˺����$�\u0018D\u000e\u000f�?])��-/\u0004#�qܐs�]w?B.���r��P�\u001f�\f��3��\u001e\u000e%�\u000e�I�g�n�\u0017��_�L�g�\u000e�\u0013Ʉ�7���3�`K\u0005�tW�%\u001b7\u0002q\u000b�Χ���;܃��Z����\u0014��\u0013t�\n�\"�\u0000�4����>W��9z\u0005�q��\re\u001c\u001f\u0006�I��X��ɕ��\"uCe�8Am�A1�%����bt\u0014��J�ӿ$ש\b��Kۨ���R+�i��c\u0019�:p];/)�\u0014�ɜ��\u0011�\u0005��\u001b��'\u001a���n�8\u000e�\";��\u001cT��p��%'��P\u0017\u0015~�躌\u0007Z�&��:��t�\u0004(���E%�\u0019���!�F��u\t�p�zI�oW>�ט)qs\u000f�s\tj�]�GZ�\u001cKKP��n����G�؛���К�\b��i;=6gW�\u001f�\u0019\u000f�[�P����}ڹ�\u000f��n\n�<˲^��|z|�\u001dY���d�\u0003�������\u0004��\u00012\u0003oO���R�� �+:?�P�h?��\u0007#�\u0013�\u001e��\u0000A�d�{?���y��\u0006� Џ\u0016\tO�x$��M;�w��~�\u000b�A+�%Ѐ��bn{ �U��Xͪ�U��-�V=�R�ԗ�\u0016�aT���:��\u001eM��ETΕ\\.�9\n2R��el�=�\u001ds��D������S�\u0013k��\u001b#�V��`�\u0014�`��\u0015��\n\u0006+������\\?\u0001�ZH\u0013�U�\u0019yJ�\u0015�\u001d--\b�\u000e+\u0001��~�0�KV�u#�+L.��9.,�\"N�\u0019\u0019%�Q�-���(Y̾�ë�\u0000s�.�h�ő�s�\u0014��#C��Aim��8$&U*�c��`Z/�\tH\u001b�ڲ\u0018���\u0015n��\f鹈\u0011\u0001,E�Q�_� ��f��#N\u0001��K��|��#�6P�=����o�=��(Dږ#&�������zC����\f�A8�%���b\u001f:9-\u0005\u0018�V\u0000\u0016�\u001c�y�q���H���n-�^\u00065G,��\u0003���B�NW��SjYq\u0015!\r\u001e}a\u0016��\u0003�G[�SS��fҥ\u0017�W�����~�\"�Ό��\u0015�Z\u0005`.�߃E\u001a���_\u0018%t�~'�\u0011��kۖ��0,�\u0019\u0004�>�\u0016[F�z�\bTꄪo\u001d�]�O�v���\u0000;L\u000f[�+\u000b��c4�{g��Z\"Z\n��\u0002\nK];��� e�\u001a~�n��d5\u0011�n��\u0010(Cq��\u000e\bǸѤ��\u001a��\u001b*�cئ\u0007~�\tG�{\u001em�V�n\\P���\"^�\u000b���%M\u0000��\u001cB�r_r*g��b�o\u0014!~5��N\\��\u0015�f��Z��U&��\r�F\t_@�e-�\u000f�\u001fh7&�S��\f�AC�%����bn\"\u0005+޿^��j��\u0012\u0005��,e?͓\u0019��ӵ�1��\u0003�ۛ�b8�\"\u000f�9����'���ńh�%(\u0002k����4 -g'��c&�*v��1�\u0011@є*M�\u0014�~�Ya'\u001b\n� \r\u000bR�Y�w��x���F�`,�K�5���0[,̔dA'-\u0012[j�0\u0017l\u0004��}}Wk\u0010[���X��/�ܬα%R�&�@tô{S�I�jǥO��m\u001dg�\u000b�\u0002��C���v�{�JuQ��qw;�F�-���y���g�I�A&�����%��c�\u001fs����X�z ���a�|'\u000e`��\u001d((_L<#\"\f�|:�n�kCd>NF_u�� 9�\\3^o��{��`��\u0002L��=\u0010���Y�l�KmI\n�A=�&\f���e�Kn\f�s�*R�\u0010���?��\u00031��S�e\u0003_���w\u001e\u0018�\u0016�`m�wcI\u0004���g\u0017Z�n����hV@ϟ⩓�j�\u0006�[��¯.1��\u000e1`��*\u001a[,Mw\u001f�[�N���G\b�j�@0����gI�@e������\u0012�:n�KO�Q\u0005�*@��/��Ȫ\t�p��T��_X9\u0004��\"�ʧQ_\u0007B�<�\r˩�\\$ڡ�*^u|\u0007�n~1�����a\n�T(����[,Wߪ�|��u\u000f�ba3!�=����~dO���\u0017P\u0000hN`\u001a��\r�Q�Ѯ\u001c=y�\tXg��P:s\u001e�%^�\u001b��;�8��\f�{�\\�\\�N�\u0007\u0001�\u0017/,�\n�\u000f\u0019���=�+\b>\u0007e�U8A�n\"�����-��t\u0012��\u0004Mrk�9��<�]\u0004�jі�L~�t[��P�S����$@�\\��\u0011<6\u000f0�c\u0005YW\u0000Y�\u0016��(H!�J�bk�\u0004��*\u001f�Q\u001f���Zi\u0007�o\u001f���1afS���㿾\u0018�\u0011��e�\u0004V�F�3���[\u0003-\u0004j9��J��d�\u0010\u001d�\u0000���Z�\u001c3��u�\u001feMfBQ��ͣy�i\u0019=k�;��*�Ƶ�\n�AG�&4����\f����.�\u0000���F5Vm\r���p��Z�K�� i\u0011Os�)�_�C�\t7\u000fWrj\u001e\u0010\u0017�v��_�ײ�\u0001p\u0002�Iy\u0014\u00117\u0002.I}ö�-�[kJ�\u000b_��\u0004�ݢ0�I\u0013�l]�SHӌT@ĭ���m�����\"O\u0007�\u000e��3������������h���&\u001a��\u0017fJ�3�d�Ys�Doqs\u000f��8Oc\u0005a��a��\u0015d�&$�~�#���RPz���$\tic>F9�J�:��\f�C~��ST���LP�Rq\u0012�\u0002��R6�:�n�\u001a�ڋ���+�&�\tZ|���\u001a���-�\u001d(�z��Cp!,\u0000�\u001b۶0��IY���C �s}>��?j�$�ď�Q�ϋl���T��;{\f9�\u0018d��@���F�\t�AM�&H�����:��\rJ89F\n1��#=:�\t|�W֦��\u001f��\u0018N��\u0010i=5\b\"qI=����/>�C�2�p�fa��3�K����\u0012��n�A����A�`�\\���f��=�\u0010v�\u000b!�F�궰�S]��HI}u,�l�ke��A���'��/-V-�iVe!�l��ʚ`����W\u0006\u001d�{\u0005��\u0012����NB�F�n�H�@b\u0002nŰE�2\u0015\u0001(����\u001c����\u0006�������2`��]�l�:�%�n\u001d��\u0005!q�G��{��\u0017!�xD�+n?A3�݈Śt&�n�1�%�%&\f��;f��9��U��e�\u0013�H���x̄�U\u000b��!��+M+����<��\"&����C��#�v�ǂ���ͨ�ǛI�.\f>r�>l&6e�O�.��6\tW�6\\\u0012X,\u0019=Y\u0018\u0012��\u0002�Ҁ� \u001e��\u0013\u0003��!��}ބ]+F\rF8�A�:Hu�����F3���\u0019g��TRC��0c�ɶ\u0000�N\u0016�oF)M���t�0��+�\u0015�|漨y\u000e\u001ez�a��7���c��a/i�\t\nT\u0007syj�p�C\u001d�:�\f�\u001a�\r� ��P�Hڶ�\u0011�'�\u0011��sZ�\u0012%��$Q��U���jۨ�T=������\"ppZDR�Ɨ'�H\u0017�Z\u0011O*�X��& y�\u001bS\f�E��w8>Gl�\u00173X�����H9W���B���$0�)��\u0007c��zc�>���\u0006�A�W\u0018��y�屪pBoMq���;�ގx��?�G�zػ�JS\u0001\n�AO�&p�������\u001e�-����\b�\\G\u0013p:@Ħ(\\\u001e���ҋw̛K\u0015\u0000\u0017��É�h�\u0015&:\fK�1\u001e���[�Ny\u0004�\u0014ցO�>>�\u000e\u0012D�^��]�k��Ab?\u0018`Nx�j�ю�,L�+\u001di\f��}^6�z�\u0017|پ��7e�o��2�{��DA�G�<�̉������\u001d�\n��ك\u0001��8�\u0019t�I�[�$\u0012�(�g�\u0004G‰�t׭D��9�\u0000x�\u0013��t@�e�;к��\b�\u001cD�04$��\f\t\u000e�\u000eX�w��f��_��J�!gL\nU_��ߡ@\u0002H��\u001b`��=\b.4\u0013iŖ\u0007�hׅW\u0018�iݥ\u0014\t��,��{9���6�)(\u0007\u0017��1\u0019�w��-%B�)F\u000e'�\u0014�\u000b�\u0001�[��!��J]�\bN7#J~��\"\u0005�:M\n�AV�&����mw\r\u001fdt\u001a��R�#�-e~�R\u0013\"��>�$+��ڋ��\u0017`\u001d�6�I��l�i�\fy&�X\u0001k2��\u001d^�\b�h]�_��6'����\\��\u0000���'�~��kUY!3�\f���C�yJw3��\u001c���Q�m\u001b�U�f9\u0002�F�B\u0016�DWΜ��P&HK�Ȳ��\u000e\reS@v���\n��nB��L\u001dw3�,\u0019~0#V�\u0002\u0000�A���%ZǺ�BD:\u001d�M\u001ag*�>�[\u0001������B�c������I\u0004��B\u001dn�˄C�\u0005�\b�,^�<��e\u0003}h�'�H�\u001f\fAc䶉�\u001d\ro�k�m\\\\F \u0006�*��A^�&������w@��I3�Z\bq��do��\u001c���\u0018M/�\u001e��K|jp�>\u0002{���\u0003\f\u0012p�nf\u0012���PbYx�[S\t?+�O�k\u0014�\u0014�,Yy/\u0019��\u0014��b�'�$b4��\u0014��yLM\f���~�GL)��p����eq����D�WC���D$�/C��\t�&�3*���l֯'�~)h\f\"�\u0002\u0014����\u001c�ª�\u0013H.��kE��r>%\u0017�~���\\JNOEw�����\r���\u0016!����5��\u0000\r)vv\u0013\u000b��N2�K���|g.PIjVi�\u0000b�?YbG~��|�\r�V\u001b�9�]-�?�êF�xD�\u0011M[�|\u0000����Uk1t'sv����q�U5�Y\u0012朓��$�,Ȅ�C��沏\u0018C�\u0012\u0007�\u001e\u00110i�KlBp�g��á>s��\u001c�\u001f�\n�Af�&����cͬ^95\u001eֵ\u0004x\tBt,��[W-��N����\u0016�\u001b�\u001f\u0000I���ͦJ�;\"`o�å_���J��:�Ԉ}�`\rN�\u001b��\u0017�D7�\u0004�/��vӽ���;Dp\u000e/��S�;�K-\u000e\u001fɀt�\u000e\u000bw�VZ��\"Ñ��Z*��\"�$�\t8f���a����ύ��§\u0006�A�\u000b��f|���͟3\u001a\u0017\u0014w�_h��\u0006���u�1��2��\u0019dD�X����\u0001 ��Qf0�����0ұ�C\u0014�-.��Eȏ�t�Hj\u0002�.E����1\r~�\u0001\n����\u0014y�\u0003w�g�q\u000eL =�l\u001d\u0000�\fJ\u0007�{�;m��AV\u001eG�A|-<`D߆gYJ\u0018�\u0000��\f��AM�*b�(�s�d\"|㙫[K���#�G\u0016��\u0018:G��\b\u000e{ \u001d����a��!$���qN�\u000e�\u0015\rJ%��Ab�&���1�\f\"��h��g�����9��U,R�H\u0014\u0001����d�����?�'Ko�B���\b��\u0002Q��V쫵�D.����$Wn�\u0011q��\u0015\u001e�Ew�@\u0000�\u0000%b��*^7Վ��\u001b�ق�$\u000f\u001c�@F�S�����\u001f�D*u�W�,�eO\u001d�\u0005U��S�Iӷ��JO��ۦJ�\f=dla����:�\n�\n���Y�-����էPq��.Y�1\u0003\nr\u0004�����\\>\tu�~o���Q��g��BmiK�l���\u000b��&��������\u0015m_��){S�/��џ.{��qb�\u0000'A\u000b����O�$�\u0006�r��\u0011��_=�������\u0015��� Ѷ��'`�\u0003�G\u0007\u001d+q[�RzR�+��:\u001b����vcߐ��;򔺡U祝%)�����=�����D��AW�&Ԁ���\u0005\u001c����\u000f\u001f㣋�\u001f�۽�׹E=[B��\u0001ƺ�\u001fn�\b��E\u001d\u0011���Q˷Lܳ\u0004�/��P@�)����Gc{WE\u001eݽLJ��@�©�\u001c2�������S�\u001a���=c6�U�uϯ#����䐬�۹�2�ۥ�c�wW�J�\"��\r)O�٪�L4��n��@\u0004�@I>���\n���`\u0002���*�\u0007��vx�V�tjI�\u001a�aB\u001eG-J��\u0018�=�������\u0012MD���\fbN;\u0006�\u000063\u0013�m.��$ֆjmϷ����T!x�<\"\u001c�)A�?��)�p�!)��\u0010蔗\u001b)>]\u00132V�\u0006�Գ=��\r�\f�-`�\u000f�\u0001.W�\u001e�il�E�ʙR�\u0011��u0\\:��ƭ�-\u0014�\u0011\u001cJ�\u0004\u0012T\u0013N�\u0011W]ʴ����[\tŘX�^F�AX�&��\b�\r��I���c��\u0012\u001b�\u0017�?6\u0014~���\n���7}��������L&_4\u0000y���\u0004���u��\u0003L�$!�7��\u0000���3��\u001a\u0016/�\u0013��2Ѷ�j����{�Rvs��a%����۟�\u0015l3�?�=�%�\u000fZ�9�&\u0001Y���rCq9�[�\u001b\u0007mMn��7�2\u001aJf�u\u0006fJ\tկk��;����Ϥ�%\u0016:2�\u001dG�#󿔝x6\u0007lՅH�`_[ ���;U\u0016W�ŧD\n30cW��Y!�p�8�YC�B����\u0000@�F{\u001eܯ�s���mT��P��T�/�ܛ�\nZ��\u0013�U\u0012\u0016S�\u000b��\"h:��\"� X\u0002TS\u0012D�C�\u001c�\f\u0010 \u0000�\u000f����\u0019\u001cӓ>d(t[\u000f\u0012��\u001d_����\r\\U�~݇�S\r�Y\u0005\u0002���0Y<�G�AE�&���.3t���ל\u0006,]e�B��\f�u��^�F�\u0019y1��Eu\u0004\u0012;!�g\bȅ5�3��ʫ�(Sitz=,НL*Y�\u000f�/�G��KS�!O��\"Y�\u00159��J\u0006;k�)A'�`�^��kϜVRz*V�B�}�\u0017�����$��\u0004keǺ�\u000f!p\u0015�\t3]n\u001c;��$����\u001b�YK�@�M�uB7\u00002t�zN*\u0007�|\u001d�\u000e�.�Ol\u0000B��׈ѿ�&A�\\�\u0011K\u0002�|A�߷�E�\u000bk;\u001b�\u0019X\u001f�d���U���\r�KÂ�N�\u0012���C͙ok\u001f�˟3w�#Ka�b�!�\u000f�j�o�Cdk�\u0014������v;��ӣ�^� ���\u001a��Ϛ��ݘ{|ya\u0018;�\u0007���8�#�p���\u0006i]�ԣ\u0005�*m�\u001fC�u\"���\u0002I�AD�\u0000\u0000���\u0018e�I�G)���\u0012����޼!�V��Ϸj�냥�P�\b\u001b�$��fQ˪�7Sn�U���:��*�������a�9E\u000b�J��/�#;���ȣOn\u0004�d�����_9\"�\u0005Yև���r���N\u0006v�������O[wo�yk�\u0002\r���.\u0013b�rK4N�(Y͆wF*5|�_�� ohgXB�X\u0019\u000f$�0�B�\u0002\u0002��\u0001�l�\u0004T��u�&@��u \u0016��\u001e�\u0000�շ�sbw�\u0013JX�aYt\t��\b��\u0003^�F�A��!|�\r\"\t�����to'M �ԅ�7��_c�f\u001aq[\u001e��Z�g��\u0018ut�*�Vx�읊PF\"�I��A�\u0014�.\u0004�# SS�̠�m@3\u0014�P�'�R<\u0007���࢈X���AI�\u0000\u0014��\u0002\u001c*��\\�H�y\u0013�\u001a ��]\u00199ǾЅ8��n����d�AȚF��W\\��\u0003�\u000f4�Έڠ�Y��4n\u0016�O���_�SQ�)�������fҴ^ᒣ��\u0014��V�2��{IԲ�\nc��2�\u001e���l�\u0016�\fFa�5!���~�\u001e\u0014\u0004\"zsHQb/��̻��\"�sT>�J�[\nϫZ��^��z�Zb�/�\u00039KE7�v@�C�^�\u0019N�,��\u00144ۖi��e��̙�̠�`����z�Ys3���\u000b@���`*��\"\u0004\u0002��6H&�w��2rvˠvr�,\u0002�*�\u0010�U%\u0004�\u0019���=s����F4�\u0007�<\u0007�/\u000fd-(�/ş���o&��\tL�A\u0018\\�L�ۻw�s|@ cHs����ë��A;�\u0000(��M2#P�5�L\t+N�d&���m/̷}`�,a-u�J�\u001bQ���É��\u0006�}�.\u001a��\u0019iB\u001e��ἥ�\u0001_1\u001a\u0001���B���1J�س\u001e\u0013\u001e���?����\u0019\u0015��\u000f�Bo+\u0011}ma�\u0004��\u0000\u0017=r�\u0014ŗ;���sEv`αc�P\u001dF(\u0006\u0004\u0000��\u0003��B\u0011���Eb��0x\u0011\u0002��[hN�r@ ǜɶ\r\u000f\u0015�_@�\u000ed0X�[\u0000[��S\u0011���f)rSi\u001a�\u000fr��r�B/\"��<8\"i��\u001f���\u0004�\n��q��zԬqc�X��L��gԨ�ڃ3��[�.\u0011\\�]\u00002��\u001cZq6��1���mQP\u0014��t)�m�y��zv�[��}��Y`�ǯM;O���G�on��Jat�ȣA]�\u0000<��Xɼ���m�`ߒS�{1$,�Iy����IX�\r�\\���\u001c��N捗+���$�<�\\\u001b�dK��\f�g\u0006�T&�$\u0019T���\u000f|0�\u000b^#5)�`V~z\u0011�\u000e\u0019\u001bx\"j�?�\t�`�ĒK\u0014i\u001b���)oE���\\,6Yz�JR��\u0001)_�\u001d�\u0013G��\u001b�1��T�g�#?���\u000e���d\u001b�~\u000f�*\u0005$FmY���A#?�1\u001c��\u0015q(��\u0017�7؆7\u001d��\u001eĐz��\u0001�:�8�\fF�\u001d��R�K�/��\u0002��݉}�>���\u0000\u0015�\u000b�b��5�E@���\u000e67�l��\u000bу��\u0019[JP:N|\u0015ǰ\u0011��+-�\u000b�rZ�XL\u0005�\u001b��\u001e\u0017\u001d�J�7�G�k��\"�~�S<�\\9>��d\r\u0016�݁3�w��:�L���a�V�\u001d�kk?����TUҡ�\b�A\u001e�\u0000P��]�f\u0006K��Ku�NJ�R\u0002o��\u0015#�~� fSP�e�k�\u0018��Z\u000fZ�1-��Oȵ��²��U(\u0000Zu�\u0010\u001d�nx\u0001R=ƴ\u001b �߈�q@[\n��\u0007�~��x��j\u0001p�\u000eE߹[�/G�?\u0005\r]!}؟y�ⳈT1��\u000e�@\u0003�>����^9�h\u0019h���Oe/\u0002L\u000e<��.�.2lO��稧\u001f��d{�w�\n)`�����?�<��\u000b`��TX�\u0013\u0005�@\u0005y�p}��J�\u000ež��u�T&I�$S}��y�\t\t^����3�G}��\u000f�r�\u0012YF�Nn�\u0002Ω�s\u001dλj[�ˁ\ni���T��_�,ٴ�\u001e��\u0006�\u0000O�\f�A\u0007�\u0000d��X�7��5��w�_\u001ax�\u000fcG�k��\u0001\u001b�\"�\u0004<�ƺ�C>uVY��Ye��G�Ɯ�.�\u0019�\u001e�d7\u0013��E�liCKM\u0014Y�����K7%�z�ڧ��\"�词���xPA(p\u001b�\u0012�1i�\r>��,�\nU��\u000f>�-��+\n�5�C��\u0015����F�\u0006��\b�wRX�\u0000\u0001�?�_\u001c5����i�B��:����E��\u0012{-�:o��2\\L���1��*��!�\u0007?iKI\u0000����K\u0010\rS��\u0006P�-�M��K�My���S#���On�\u0016d�I��[�A!�\u0000x��X����\u0011���y�O\u000f�[�5(�\u0010����_�\u0017��Hv�\u0001��0ץ�V\u00123\u0003[x��c��*�)\u0003\u000b\u001b�0�D\u0003\u0006n�䜯ta/\u0016m�\u0014Ϲ`@�g\u0005Jt\u001aT�4Ra6����Ź�\u0000\u001a3�ԩ��\t��C�:�dO̲�y����#7T�JGr2���\u001c��@��g���򡪓Tobv�\u0014���t,�¤�A&�\u0000���L�1��w�}�X\u0019T�l�\u0007t^)��$���i�W�ϘV\u001ca��\u0015mN�8A�s\u000f�\u001b�\r�{)�߲؃\\���V�!#$\\c��X�\r`�|Z�\\I\n���\u001a��\\�\u0012\u0000x��\u0011\f\r\bY��P@\u0012�c\u0005X��Q���P!%�Ⱨ)�4�a\u000b���{�g\t�O(��<���үܚ��\u000fGS���9w���i�\u000b娶5l+�{{\u0005�WE%�\f�6o\u0005�\u000f\u0004\u001b(*�ᷱ\u000f����\u001eQ�\u000e�be�w�8��(��Х'_Y᝙7TP��\u001f]f�5�L\u000f)Hl�?ϧVO�\u0007\u0012.\u0002\u0004��@��O��O��\u0017��Pȫ��\n��ڿ��kv���X3�\u0006���A\"�\u0000���MWrp�K�������J9�j�s^��#�\u0016�`�O��d[\t0v(\u0006\u0016E�UE�q�\u0013���\u001dV<&I} ��yV�@�U��J�\u0003E\u0005\u0016\u0000]�ǜP�}�/�\u0000������|�������\u0018,���M\t�@\u0003��Ƣ�\u000e�hK�\u001ci�G׽f��C��Y\u001a�S��\u0018�M��E_��i1}\u0016\u001e��dTF��W\u0010rFD6�\u00109�a\u000fsX�k�0\\6\u0017x3��m��*�I�\u0018��,e�\"�֍�3Z>sH͠��x`r\u0006Ĺ�,\u0016��XE�\nI���\u0019�44\u0019��\u0013�O����k��̋&|�%+�)�Ӱ�9Nk\u0015\u0016ô�N�5XK�P��Av�\u0000Ȁ�L��>3/\u0005�f�M\u00141B\b\"N�N\u0018�����<�5�\u0011�x�R�:�E\b������9t�����m\u000e��8u,\"�q\u0015�����?Kxy��!����<\u001b\tblf�_c\"MgǦ����P��ڐ2\u001b\u0003rK�!Q5նj�R�v.\u000b/\u0012U=G�?2�J:S\u0018���PULB4�0��o\u001b�>���̀!i~�\u001b���%�!L�\u0000��\u001aXWC�hC�\u0010v���\u0002x�ߖ%�9g6\u0012ct�d7V�q�u�-�-�a�\u0002\f�h)L3�Q�$�\u0006�\u001c|�;|��]-$�7Ð\u0007�@.����G��\u001d��w;IL�9\\9�Z�z�d�C@�ް�҃N��,7}\u0005\u001df\u0011r\u00023�w�,��D\u0001�����x`K�c�P�~��#��)߈\u000eX�/s�rn�^�'\b��󦘆y\u001b\u001d�\b~��\u001d����Q�\u0015��\u001eUYH�Sv�A\u001e�\u0000܀�L�\\�tc�^���|/���\u0011�%�c����wH=)�?��A�%\u0005�ϯ�\u0002�L����%�W�&�\\�Y0�5���Hu~}՟\u0004u:P����\u0015�����\u001b�\\��o�k�K�Vin�C�NM��2Q)S���96lAU92�]��\tC�c�\u000bd��Q\u0014V�Yk���\n)����L��\u0016W�i\u0003�D��Psa���8�T��g'\u0017o�O\u001c*�Z�\u001b�\u000b<��\u0004ڜ2\u0019D������\u001a��IB.Z���U%�,9\r�, i7΂}�6��=�/���^��TA����w�r\u000e�أ�}ꬿ��[\u001f��\u0000I�q\u0016�\u0018���|��绒�A0�\u0000���L� ��}\t��Q�\u0014�2�Y\"�n\u0012������;�`�*\u001aY�f/+P�!\u0015�[��Ȑk���\u0002���\u0011�)��R��\u0013�ˑ\u0011}J��lƉ�����9�5$�m?8�\nJ�\u000b\u0002x\u001b} Ɔ^f>�ˀ�\u0014�\u000e\u0014E\u0019\tdŶf�\u001f�\u0004�~����V��ԴJ��5Z-��ケ�`�*�G\f7�%�I�4z�E�\u0002�4�&�C��D7���JX�~�x������\b�GD�\r'�w���C���0�U��ٟ)�we�C�5�q�r�b\u0010@�������\u0001'\u001b׶5m\"����Cm_���[T�I�P��\u0014RnS�\r���{\\��:g\u0011�Kd��������\u0000u�A^�\u0001\u0004��My��\u0014��ʒŌ�q�I�D0H@�G��G�\u0013a�\u0017(�0>\u0015\u0016��\u0015H�A�\"H�_Z�\u00136_\u00141����z��\"@$�J���\u0014V\u0013������}=K],�M\b�E��4s)�\u0001G;\u0004�U�X\u0003�N&�+�3\u0012F��퇜v�3{�v�ۀ��ۍ6�Ԥ\u0015�\u001b\u0005�$��:\"\u001c>\u0002�@�6vȹ�Sf�7F�\u0004\u000b�\u000b�\u0006f�Y�(…\u0012�l�K@��˕��-�Q��s�\u0018��_S[�\f�\u001f�\u0016\u0010\u000b�\r\b���dܵ/\r��C\u0018�r8��\u001d~�g!�>���!�8�D��6RM\u0006c\u001f�\u000f�x�\u001a�\u0019\u000fO\u0013�Kߚ�\u001c~|ux��\u0001�\u0001�w�\u001fe�<\u0001��7�ISY�V\u0018�dFL$���D7�j\u0002����\u0004\u0002��\u001e�\u0004dc;��ޓj��\u000f�\u0016�\\�\u0014U R�Z�$0\u001b�A;�\u0001\u0018��۷ �\u0012h�����\u0001Rt%�{48�R��G5�\u000b�ά1\u0012*h=8B�CY�@�j���)Z�/Ħ/sV҂�\u000fB�'q��A8\b��X\u000b�\u001dJK@���h��W��@\r\"�N\u0011�rz؞��k7�X\u0013\u0013�,\u0010A�$G�A�rX�t!�\u001fC؞΁�G�\u00148�#\u0010����2t�\b+�ҷ\u000e�#|DZ\u0014\u001e�\u001aX�i\\)�\u0007\u001eG�W?�L̪\u0010M�\u001c�L��UB-\u0016�\u0017�\u0001Ի�O�-���T���ژA���%\u0019?E!���u6Ph�\u0011���\"�Gt&~�8�h�\u0012@\t�F��`\u0000�\u001c�\r�ya��\\\u001d�C�\u001f�k���.li����}d���{.B�Amv\njo�\u000e1F�/�i|ބ:�F�AB�\u0001,���w\tt \u0014ߊ�a��+S�}������\"�4q�\u0014O\u000b��(S��5��\u000bh�1~�p\u001d�#_Z�Jf�\u0001�N�>�-�y;\u001f�)�,\u0018x{\u0010�\u0003>\u0003X\u0014}�V�\u0001��*\"��.\u0014=V\f@հ ��^'�|\u001ew4�c\r\t���3��dJ�G#�'<�Q�\u0004.Qc�N�,ʯ�~��\u0001G\u000b�W�ۗ�o2���\u001e�n��?����0nx@y��\u0000\u000f\u000e�D>b��2%3�S7:�;Ӊ�\u0010��:����\u0000ְ��\u00008\"��|\n��*4\u000e���\b��$)�v�ב~\u0018��V������y�ۦy�l\rZ�r�\u0019��\u0005\u0003dH\t��\u0012���%�h�2�����2\u0001�0@��L�rf��?�����ͭj_�\u0012[�G�B\u001c�\u0001@��|�a��l\u001d�I��� �J�a�]��0�;��]���\u0018�8���V�����\bLN/%G�\u0017׻gO�k�\u0011��\u000b&\u000f��X\u000fmK&��/\u001f\u0002a��&m�X��wFNn�\u0010kо@ja�\u0019�u\u0001����ҭ_\u0000\t\n\t�L3���L\u0007���W|�+�sf�n_*9.n\u001bn#[����}\u0019��'ڦ�iZ-\u0016~.\n\n,cG�{��R\u001au�\n�\u0019G�\u0010\u0006ȼQ�w��\u0002�\u0016�U�w��\u001a�rjwh��\b��\u000fD\u001a���IDz��DD�\u001cO�\"����^�E~��}(]��\u000e\u0010��R\f�\u001f��J\u001f��=�x8�ǧ8?rU\u001b�*��,�w,E�HR\u0011�a�Wo\u0011�A��ݜ<��7�&�x\u0010�\f�f`�Զ�s��+\"\u000b�d�csn�:��L���2\u001f�\u0014��;�Z\t>�e��w����ϵ\u0007#@\\�9zΦ���`;��׮��&����Ox6D�?#�Z�S'�\u0000\u001c�\n37��\u000e\t����\u000fD\u000f2<)㨱�1y�bf�G�N3�����B\u0007\u001cC�m�M�8��\u000e��%�\u0003X��\f�\u0004�An1�\u0016�\t_��1h-\u0003�g\"6���Mı)�Lf�j$ׇ\u001d���ut\bΏ��T���������`��W��\u001b)�2P@�\u0014�~�ޑډI�A-�\u0001T��M&��q����de@�tKپ��\t\u0007�-R�$}�x4�\u0011�6rog�J\u0011�4�u���a��q�B��\u0018\u000b��\u0012\"\u000ew�Y&��cS\u0011�^<\u0001��_�y�:M\u000e��C�3�Ҫ�/����kζ��B{`\u0002`����_g�\u0011���\u000b����i��(���U�~\u0016H^A�F0�[}�����/�\u0019�[�-D\u0019��%0`\"��jݏ\u0007�}��T\u00141��\u001b�ag�\fcK�\u001b�kū�\b�l�\u0017��`*\u000f�\u001c\u000eά��\u001bN�\u0012\u0019��l�x�30�8\\\f��\u001a�Z��C����۽�1�Ya&�\u001cvز\u0007���[M\u0007�+��3C\u0007��4�&\tݠ��CB�\u0006�cp^�|\u0006Ϸ�A/�\u0001h����8`��2\u0013�B��\r��\u001f��J���>\n����͹�cU%�u���\u000e\u001d�k�M��\t�)�\b�ʹ\f0\u0016�\u0011�L�����3z�\\�\u0005߯�;���&�|��٘���/\"Q��\u000e�\u001a�\r9FUȧ\u001a��z�K\f�[�\\`нdŎ��Z�]�\rS{�݈�$��4�\u0017ܛ��V�;��1\u000b��\u0003�ڰk��ߜ����\"��^�}��n\u0000���9\fW��\u0019��28ZO�\u0010���`{7�y;�O�O![��\u0017!\u0012%(^�=�\u0011�fm7�b]�r� O@�3�;\u000fJ\u001b;��X|.�Q�j�wm��� ���i�\u0017\u0016HוQ^�\u0016�Lѩ\u0004�4\u000b��\u0015��4�:\u001f�AF�\u0001|���b�@\u001e�\u001b�\u0015�xMg��؋��z�\bO���ĴƷR\u0007:ԁn�\u0016\u0015����\u00135L.\u0013�\u00176��hmq���T\u0005�'�N��l8���\u0012L\u000f>�����\u0017����z��1\"�nT���3�.��\u0006��~D��Ȩi䠼|�:Fx����%\u001cs\u0014k�n��q�S\u0001�.�)���\u0002ą=�я�Q\u000e���%���x\u0012\u0006���^W0�=\u000e0$�;\u0018#���AN�\u0001���L�����(j&���D\fa%ah\u0015�4�O�I\u000f\u0000O\u0012�\u0018��o�jև����+\u000f�r�\b�PY�\u0011Φ�p�z\u0014�QcI6J�Š�\u001b��b�\u00148tV�\u0005�i{�U�\u0005qW�\u000f��4v��:���y�(\\@b8�w�=3�����\u001f�B7���2kJ�\u0004M�*h\u001d\u0006�U�?I\r{4�&P\u001cG�\u0010��+�Н��@��\u001c����xg�!;v:nN\u0014��N��\u0010���h�\u001e:\u00171$2��>�K|�S��\u001c���\u0000�9����������BOz�ݶ�\u0004\u0005����\u001d���.���`L�Trb�k�\u001dSh+t�\u001dU+��̚��o\u001d�{\tV�9�+��w�`\u0019�¯��J҇i��|�\fO�V�G*�\u001c���oM\u0001��E�uFN�X���ңAX�\u0001���L�=�޲$¬��0L+�GaAo�f\u001d�a�Чz<:m\n��\u000f7tTU��\u0014*4I�Z\u0007I.b\u001a��d\u0013hL��q����n\b\\�񧗙���b7�X�G6x%��f\u00076��\u001d\u0016u;Mk�/N\n�\u001cs0��\u001b<�\u0004B\u0011��Yi*2#��n���S�#\f�\"<��l\u001b��+\f�\u0017�\u0019b���T\u0019\u001cp��4td��[�\"\u000e����\u0004�����\u0005X��M,���\u0013�\b;�Xg��TA��Q��8���Ѣ�7)\u0010�Z\u0010Y�H�9�����\u0000%:��?\t3��Hh�MAe�)\u0001z\u0011\u0007�e]e�x\r�\u0014\u000b\u0013\b�L��>�)�\u000e�U;�o�Pf\u0017sĞ��xx�\b\u001d�wlW�e{\u0011�\u001f!�����\u0002���'�mS�#z@;���\u0013,+`&�b����Ca\u0010u�AR�\u0001���۸�mn&���\u0011R&\u0011�\b4\u0002�l�\u00079�\u0012#y2�\u001b��g��9�[�|\u0007US\u001a��6\u0012)S��@q_�\u001b�e�\r\u001d� R\u0000y\u0016�,qO���G����r�p��\u0019��\u001f5n)w�׸;5��̮�3Uܣ�i�<�CԾ�+Q^�\u0014h��V蟼��޴�~\u0011��r�\u000b�C���>Y3��v\u001c��\u0016�ھ�\u000f�\u0007�†�@=�%�\u0004�I�\u0017�Ԍt�\fz\u0016Z1����,�)f�u��y\u0002��`\u0012;;$��\u0004\r$c��\u0015��\\Z�(p��XkL��\u0003}��\u0014rݣ{$%P�\u000e�R1r��\u001e��\u0018h[q��ʉ\u0018\"ֶ>:L��\u0011\u001d�\u0010� \b���\u001fX\f��pn&�ڜ�F��\u0010-N�s\tC\u0014|ac…G�)\u0015K�:X\u001e�\u0019(좠\u00071=�\u0002�s\u001e�B7�\u0001̀�|��nٍ�ϕX��k\u0015'->��N�}$�zL�R�\u0013\r햹S\u000b��\u0018���q����\u001bN��O`�J��\u0003�\u0010�Â��\u0013\u0005\u0018�\u0017�Kyۀ5\u0013���xL^�J�a\u0005��:y\t�\u0011u\r���7,\u0006�I����к��\"1/ �{\u0002�7ȹш�8�F�^�\u000b�г��?�a1��0��-q\u0005)�+�T�YX\u000b\u000f��\b�\u000e\"\bp+\u0005��OG-�f�0�=�\t�ʈw��T�n���\u000bk���R�����\u0010��H�`�\u0002/��\r_�ꕣ��\u0006���O\r�\u0000��M|\\L+�\u0004[�(�ۋ�\u0000\u0018J��\u0013\u0019헑Uz>������\u000e��2�JNp\u000f\u000f�av\u0001��:K/}?�#?`K����އ<�2\u0011\u0000\u001dj39\u0010�\u0003�_K�*���l����1\u0013�\u0000PD�g~>���)Ն�M�\u0016ˆٷ��r�>!\u0000�֋ܡ�\u0001T�P��T\u001d+��g���u�r�^�[7�Q.��1E\u0003\u00073\u0012��+��ٻ��\u001d�z!9�&�sߑ�\u0010���ô\u000f��\u0004��?(x\u000f[����B\u0004�7�k,���'i��\"�-1\\r|D�S.\u001f��B�O�\u0004\tf�U�*Tg�b��������2y�x�\u001dOSv���o�Z\u0007���&�\u0016�D����\u0005��\u0004e4�Ӳ\u0010Q\u0018�4j�\r��W�\u0013\u0000��\n��\u0006��?�Ao�\u0001�����\u0013�#����k=2�\u0005\r\b�\u0012-P+o:'�0RF����q��$8�k��5����\u0007,8N��\u0003Ŵ���u��\u0001G�5s�\u0003�?~[�vřR#i����z/&�\u00070q\u0013�/!��9y��e�j/���6l߽9|\u001fg�����jWm\u0013���f���\u001cw�\u00033\rb6[ߺC^\u0002��\u0017R\u001f��\u0010\\��FI���}��y(Rljs��G��\u0011;��\"� X��\u0010�n9/�D�m\f��.�0V���[8h�\u000b�I�\fo`Ty\u0007|Ӓݸ\b=\u00148y�\u0007�\u000f.aZt_��?��\\֨Cm(�cxJ�G%.���h�\u001f�˔4\u000b�E��>�[e\u001eDa\u001a�\\\u001a��7��:H�;ȧA��4���^݃�)�ȼu{赦�Զb.���HJ!~�\u0006Ap\u001b��\b1�,��m���Dc��7�:�;\u0005�u�B\u0007�\u0001���\u001cT��-\t�i�d�Q��\u0016f�L�o\f�\u001d��3CЖr���n�A�'�!��E��\u001c\u000b���W��\u0003\u0012z�?q\u001d��\u001aw${��:�9p\u0012�|�\u0003�n\u000eN��\u0007'6)��r�\tZ+\u001c\u0010}����⍍�\"�,�\u0018RM˥�xU�;1<\u001d�G� �\u0016��\u000f��2�kW4�S�X��!�\u0015N�.�(�Ɲ��uD �\u001c{K�\u00139\u0017�!t�>�vW�����Uz\u001boM��\u0016\u000b��K|���0�����=�\u0000�g?\u0011�u��yj\u000f�dE�˴�`(K\u001a_\u0003�T.=�ׇ٩�/�OQ���L�+�\u0005�Z����������7`V\fј�Β�0�����\u0002'��x\u0010$�Q�o�\u001f��)�Թyqr�:�\u0013�\u0018�6�\u0007��\u0013;<��X�X\u001c\u0003�~\u0010��a\u0019��r��N\u0000\u0015\u0011�(*R4O3�\u0003�/d+=J����\u0000��=��O\u0005\u0003�T\u0000\u0018ׂFo,Q���\f;���6��\u0016�>�:ڽ��t�\u0007\u001c�n6\u0005P�1\rz};\rQ�+�Z�\fκ��/#�ܚ-aeRW>��i���\u0015��\u0005�\u001e=\tG2���4؋�b$\u0012cE[�J.��\u0004\b3gQϪY�\r\u0000\u0002\u0010fv*��T��3�\u0007\u0000�n\u0016e��\u001d�nңA��\u0002\b���t1.\u0012�\u0002s.��}��㲂\u001d:5�E�R�i[S,�K�\u0007L(|��b<�X�,�Z~��0����� �w��Y�\u000f�Z��\u00068k깕�o�߾قH�\u0012�-��m��\u0000��Am\u0001V;1�M'�ڵ\b1%\"\u001a\u0016����rH�!\u0003�!k\u0016���Bܿ?\n�\u0005�<��)p�_Ru�j�X�Iuz\u001a�\u001f�t\u0004ïss\u001e�\u0002\\{\u0004�\n���`>l�\u0001I`�\u0014�\"�2#y�N�R\u0010�s\u0010���;T=@G 7!�}OE�נ��C��/`�N��3>x�*����i��W}\"<-���\t�ؠNX�\u001b�~tP��\u000f\u000b��J��q�J\u0019S�dH<�k*�/RSĈ`\u000f_��F��}ʊ\nЪ��F��\u001cځ���-r�8��B��yV�E$�o>�o\u00177��\u001c}$\n���{_l����5���m����O�iwl\u0003aDt\r,�oi}\u0001��\u001d�As�\u0002\u001c����I8\u0002˽\u0017t�%�^\u0011���X�>���x}�$�@�G�\u0014�g�NdOF���J`~|����\u0013\u001e�Slv7�>��:\n����v�*%]x������\u0018ڧ� #W�l�E\u001caD�\u0015\u0019�w��p}}���\u001b\b��\u001a\u0016\u0016�/�ㅫɼ\b:$b\u0000]��Os7�,F\u0016�|8w���Jt\u0000���ɡ�g\u0014��=�Ž����Rhp� \nP�,��\u0000{6�rU\u0011��vB\t��P\u0018��N�%dP8���`*�e��{��\u001c��}\u0002�q\u001e��O\u0016�]�9%�\u0013�\bo2�T�aq\br��)uϒ�\u0019PZ/�\u0000��hw��\n\tI��i�U���I+��\u001c�P%Z}�RH���_�i�:{�\u0016WC�v��0�%�{Z�t�E�0�*���N�k��s��+��֛�6�S\u001f�[��2r�'�\u0013���\u001c��Ѫ�B-�Rj�A�\u00020��|���s`�$�\u0007������:�\u001a渗�!P��<�%\\/���J�!�\u0017����i\u001eF�=b\u0014�[�\u000b/C��&n@J�\u0011Ѳ�n�E�\u0007�\u0016�0\u0011�\b�*\u001a�=J'�@\u000b.\u000fGa�zCz��d�Ѷ5Y\u0017�.�\u0002�q��p�\u001f1���6��}�0�_\u0018.h\u0006K�6��-;��_,�9�b9|\u00162����\t��\u0003ܡPQ���OB\u0001��[�Yi\u0000X\u0000�Q�\u001b���1{upN��|JMޤ�\u0004�o0@\u001e9;uY���-v�\f�|���o��\u001e��6�D�[�A���^w�!%;��]\\�1�(���d�^�{�_26w�I\u0004+��t�I\u0015������a�@�-��Eu|Ć7�3p\u0012��\u0000T�a�|Xb�\u0011�\u0001���N�~z�h�C:\b0�ߙ\u000eIsy\u0015����p�ν�:e�;���zR��\u0004�A��\u0003�kμ���!�^�K\"t\u000bq�^��\u001d�iW:��a1�[ZF�g�\b\u0007Nh\b�cX�0\u001f{.\u0004���\u0014�/�W�6\f�\u000b%���L\u001398�䏂�|�\u001a��>�M`%�q������ӟ\u0010X�Gn\u000b��\r��)��͆�fa�h�A��\u0002D��}b�4�_�D�\u0005�d�d��-Μ�R˸�;ʌ\u001a\b��\u0011\u0018\u0018��e{�T�bV��?�+\u0013wx\u0010�׶IY�!��yH��f�\r�\u0003.�c�>f=p5\u0018�G^^�\tU��\u0011�X������)h��N\u000bJ\u001f\u0014\u0015b\u00007�#�����/H�T���{%��e��T�zA:�\b�?m�\u001e�\u001a\u0011��\u001a|��H���eH\u00037\u0014ZJ�FP���\u0006\u001a��!���r���äыT��\t�Z�[3�\u000e��)��\"\u0004�ƵW�V��o�b��vb�#��Ȉ�\u001dc}��\u0012��c�A9�\u0002X��M0�\u0003x���ī\"b��c\u0006_\u0007�\u0019�n�\u001a���D�\n��6��\\{�� �WaЂ�svݧ\f�\u000e[#�\u0013j�\t\u001f�\f\u0002l~o\u001e���7�uπ;��)\u001d��\u0011�jP\u0001�\u0014|vw1�x�\u0013o@�_?��~O�M���2\b�\fΧ�9\u001b\u000b�\u0015��|񃙰�P\tkL<�\u0007�7�)s�@�)\u0006����f�]���e*�Ɨgxª=\f���\u001d\f����_�t�\u0006�T\\m�0.�^F���\u000f޷ԡI�퇥t���\u000b�H\u0014�)I���G�=�\u0002N����W\b��\u0016HD\f�\u0006*�>\u0015Zj]��y�x��[�u#�\u000fR�L֢\u0003ٔ\u001e�Β� �y��u�\u0016��\u001b��\u001bp���h W���A)�\u0002l��L�=�Ŷk����v~��M�p����?@@���L��5��E#������\"����rP���\b�(�Y����\u0012�K���W��VO\u0000��A\b\n>�8\u0018b.A\u00031��H��3�\u001ae��#u��Xr570Kd�`\u001a�uD�l�tzE��_.�\u0006\u0018�/\u001fvb�\u001a��NcA\u0016�|8<����\u0017\u0017���/�f�i�y���a�}�θ\t�*�x\u0019����3p�\u0014G��\u0000�,R\u001e?����}^�\u000f�r`��ڽm�f2�P���1�o=��\t�W�~kā*��=�?��>�jG\u001a��\u001e\u0006>qKj���\u0014�$��|U�r\nG�\u0019ꛘ\u0017ŊH\u000f���?��\u0005�\u0019\u000f�\u000f�A&�\u0002����\fK\u001dX�3�O�t�)�\u001a\u000f%�.+\rVO&y�ZK���u��,gG��[\u0003�U��J!��(�XF��}[�\u0015�v\u0004\u0013ʘ�\r�j��\u0005/�\u0012*\u0011R\\ʗ\u0001���v6�5\u0014\"*�U\u0012M��H��xb͗����ζ�Ǜ��캺2�}\u000f^\u001b\u0013e�f��&�ja\u0014�Cl�Fu�\u001b�0_b����6���K�C ^+����~���ڶ�\u0004��*�6\b'H�jǩ�r\b�u5\u0006P\u0013�M+m\u0002\u000b���U6t�wA\rQ1����/-�x%K\u0000\u000f\u0005f�@��\n����;�\u0013\u001a@��*��⌌��#k�DZ;d���ż�\u0017x���I\u0012m��t>r\b�\u0010�`��u�A\u001e�\u0002���L�̓�\u001f�\"8��\u0014\u0016�gZ��~�������Q[{�|\u0015��xlG�خ!��k�}�\u000e�O�\\T��\u001a��&שT|[\"�se`�_ԕ\u0017f�ܽ\u0016j��#�܋ɷ\u001aމq\u001dř;밄�ىj�U���\r�5�)�P�8٬����CD��ٺ��T]�ܘ\u0014��F��#{�^�<�\u0003p^��s}�\t\f�{�֗�>S3\u001c�\u0005h��\u0007�\u0013ϒŹ�Bʣ�Ѻ�IbxP\u0012͔$���Ʈv/Bk�H�J}�r�9�I���W��������n�/��PU��Uh��7�V\u001cy�\ban�\u0019��aP����\u0006P��C�_�\u0014��A%�\u0002����s���Zeo]�\u001c&��\"\u001c�\u0005֪��k���%��F5��\u001e�\u0002�k�����\u0007[=�$�\u000f3E;���k�\u00067F�P�Y��|!\u0017X\f\u0011�\u0000\n~�>v^�\u0000\u0017���[}%��W���\u0014Ҁ�\u0004���{ܞ�&M\u0006\u000bs\u001d_�/�r�\u0016�E\u0001e��Z�3\u001c��'�3���˙�Ā'SU)D\u0013{^��2�{*��x��\u0015\u001e\u0007�\b������\t�Fih\u000e�\u000e�r<�\u001e����Ȏ�\u0005X\u0005:���o��Ƈ:�\u0004ݰ�Nj%-�Z�\u00062K\b!X��� z��\u0012���\u0006���\n\u00149�\u001b�\f�\u001d+r\u0005�=\u001fr\rQ\u0006\n���\"hZh\r$\u0004(���\u000f\u001d��d�\u0017�A\"�\u0002����a����d\u000b�_��{����\u0002��hռ�,C׃L�t\r7�G�\u0013�\u001d~�\u0015�s�u\u0019��\u0001�L\u0006}*\u00170��~�^-�#�*ps�����k�QN��Fw4w,\u0014H�A�dlP\u001a�g�[���^�\u0002.����q:�Q\u001c�Jᷮ\u0000�p}���\u0001�zo\u0014F��}�\f�o�(��I�]J�\t�\u001br�0�&�MF{�j\u0000�b�\u0015�~�\u0001�c���Tv���c[�Y\u001e��y.�붵\u001c�<䐬�;�8��mg�׍|�Ȳ�9\u000f�����~^�(Twzqם\u0013T~\r�0\u001d\u0016z0�~���u�\u0010�^$C`�F�]���j�S��ޱ�?�\u001fl�Z������AO�\u0002Ѐ��s�j$��\u0000w߾�<� t������+2?�\u0003�\u0011����!�\"YX�2��\u0007����m7wwJD�+z9\u001bY�\u000b��\u001e�>/\u0002Y\u0012\r����A�-%\\�\n#̛\u0007�w\u0014�\"�2]�O�P�6.\u0003���=�N�?��\u001a1�P;��g\u0004_�\u0005��B�r�8��\u0015O�|\u0004�6\u0010;\t������\u0016(�9Ƿ�\r�,��.+n�\u000f����\u000b���M\u0013�cQnb,�\nm����1T�W��{�8w\"���l�!k\u000f\u000b��\u0006�ϰ�)V@�r\u0012\u0007�]��C�od��*�J�Z�\u0003�XD\u0001�%�3cG\u0017�\u001a��K|\u0003��/\u001a4�j�#\n�9��)\u0002�9\u001e`���.���d���N\u0019d\u0017�W[Z�\u0011v�\u001c��\\��5\u001f�׈ǐ�\u0007A��\u0013�AY�\u0002��L�\u0018���E��\u0015�\u0013H#����}'\u0000\t<�\u001d���L�g1{\u0014���7�����B�b�\u0013뭪/�\t�L_\u0000�\f~>\u0001\"\u0002}C�<��;˖~M�.�\"�:^�\u0018)�`v����%Ǒ\u001f�i{'W\fڇP#\t\u0000yN(�\u000bZz��Gjw|\u0014\u0017W^��T`=]=���\u0006(�-(,�T���d��\u0018��W\r\n`�#���Ů���Md-��x\u001a3\u0013���j7�3赵�p%(��(�FL\n�2�e�.���1�l���N�`�r�n7?�q@<\u0014�t4@J�z���|��\u001f�W��@\u0000@N4Q��\t��`�=T���{\u0012�O\u0003����(�\u000b\u0017�\u0018bu8v\u001ez5�\u0016|C�s���\u000ba)v���µ\u001f��\u0005�T\u001c\u000f\u001d+~r��AS�\u0002����g{��܎�˜�3N�F����H�\twG�G�u�\u0019�^\u0005›X��V@�f��\u0000ܰ8��\u0012h\u0006�P+z\u001a4~\u0014\u0013���R�|���t[*\u0018q���\\\u0013��٠\u001a[��nvcD8qO*�X�Op���\u000b��sxʁ�O\nd�u�;����]w�\t#�Pq�0W [��\tǢD�\u0019'f�\u001cO�*�\u000fM��Q\u0016b\u000b��8���:0p�\u0004�\u0011�� \u0003[�\u0017'\u0016�7`7X��\u0001`�4�;\u001eyS;��1\\<\u000b8\u0010�\u0000\t�cd�\u0000\u0014�*�@b�e���q�'\r��[�ͿV�>��3O�!�c\u001f��&\u0013^s���+\u0004\\�\b`�z����R\u0000dye�;\u0003���\u0011��“�Ko\u0014�׭��x�s7s��\u0011\u0005�C:��g\u0002��l��S��쭄�ǵ��AQ�\u0003\f���c��,h\r�(\r�M�暶�]�C0���:�^Y8�\u0006�\u0006[�(�A���4R\u000f�g4�\u0016{�+\u0004Ա#�ʟ�9�Z��\u0018\u0004F�U�}���_��\u0003TH\u001d\u001d�LKy\u0013�9\u000f\u0006�X���v�p`�|����\u0002g\u001b�܋�J7[k��% !\u0005�\u0018h(�S\n�\u0011�v�yz��Vy�\u001b�0���=�i\rv��� �{M�,��>��\u0007�\u0000��x_��\u0014!�\u0014�#�\b3z栣��L��J\u0007����\u0003�\u001d�\u001e62n�q)\rv����Yu��\b���a�����[�J�&���\bW e��{7\u001egW|.��ei\r+�+\u0003=�v\u0006˧V)���\"�&�9\u0014��!�S�����d?5�$\u0004�s%(0?�x���P�\u0000M+M\u0010T�(\u0002!��ؓ�A_�\u0003 ��.r�\u0005j�Q\u0003��8=cNo��k\u00109���OAuR�\u0012��r*��� N��a&��t�7�jd�C�x�\u001a:<���\u0018Ts\u0005�c�\n����M�\u00170[+6���^��>82h���A���MB�����\rL�X�H\u0011�\u0011����Y\fڼ���'�\u001eb\u0012��o���\u0006nx��܁2��)�\u0003�YĶ���M\f\u0012�Ak�\u0003H��lӛ\u001a�;�,9;D���z2�H\\\u0016��I��8�Hk\u0004��\u0000qG�ҵ�&�f����%۔�\f����\u001d\u0002R�U��xhY6di�\u001e�}E�FRi��\nFE\u000b\u000f�8<�q\u00132�\u0004\u000779�x���� �;S���\",D\u0010�9�BD0\u000e��,�Ͳ4\u0004\\Ƒ�J;ȕr�{��S3�|����\u000b�F��$Yu�i�u�U�s\u0014\u00072Svw�,�g��'\u0001\u00125w�@v�Q��ȾZ\u0013�I�/�K��~7M-�*�d7����q�\u0016�a�\u0013j(�7\u0013\u0007�t\u000f���\u000f\u001f\u00010��2|�����!چo,I�,�\u000304:~�CG�\u001f\u001d�,᜷����\u001ch���kK�\u0010�茬��[5�G�}\u0013\u0002�8�cV2\\F���\"�E�\u0006q�Ӳ���;��\u001c�2��\u0015�\n�\u0015�L�#Ga�kb��\"D��An�\u0003\\��MZ&�\b���1��\u001c'C�S˚2���j��>~^Fׅ�_��� :N%D��cp[@�I�S\u001a\f�*�C\\�\u001e�S,e\t!\u0004��L��OE˖�#�����d�m�\u0017��n\u0004a[毟��\u0000Xމ\u001e��߬\"|UW:@c\rH�r_:�{13�\u001aR8n���%�!��b}��G�,?\f�\n���4(���i'�\u0013ؕ���aa�\u0013�Ȭ\u0006�綤o3Go�\\V�,1�\u0007��Y�H��G\u001dnq�H\u0017�e�� g�G\b\u0011�p8%�\u0000-\f��U�mo\u0001f�������\u0016`��y̑�mV�d�f\u0003os�G��ϖ\r�\u0017S�V��\u0014��|�DL�f8�\u0007\u000e8\bl\r��Cƍ�m;�\u0010�E\u0013���\u0016!��Z\u0011���*T>��QK(��RI\u0007H��nWAz�\\�\r,�\u001cn��\u001c]�5hXl����A8�\u0003p��L����'��\u001e\u0017�,���\u0012\u001al������M�j\u0019ܶ�\u0017��~��\u0019=tCy07\u001a\b��\u0004��<�ئ�y͂M����\r��\u000b��\u0012B\u0003G�h�\u000b\u001a7\u0014CW�7\u0010SX�Zjf:!��3��'���%�Gcb\"�Ӣ%Ya��\u000f�n\u0019��mʺ�����H�E�\u0011�}��,~�(�\u0019�\fL�eȳ�(�?\u0003p��M��b����y�/m�\u0016L\u0016⃠�\u0007\u0012Ӡ�f\u0014�k�}���*�/!L5\\\u000b�\u0001MN��#)�W����ˇ\u0011\u001c\u0016\"v�D�\u001a�p��$E���\u0010�؈�c\u0003�\u0012�\u0017A����3�`�Ma\u001ex�n�+���鏞\u0017�s$�֬\u0005���\u0005�K�\u001d\u001eS��#n^\"'yU\u0010\u000e�&\u001a�h]\u0003�ܒ��O�6�`X��\"�����]Q+#��r��Hd\u0014\u0010'*�\u001a�-\u001c%ܧU9����r$d��\u0010\u0019�6����<��K�\u001f��Υ��\u0011\u0003=�Wq�2Bt�\u0019�W�r��ƕ�x6�>��:{{-ƍ��\u0015Ko�\u001a\u0003��8�ܤ�X8�D�\u0000O��,{XО����������\u0012`�䁴묱��B��l��h-k\f4\u0019\\($�A\u0011dhu�Y\u0019��nB\u0001�{�3����m�A3�\u0003���L�\b\u001e\b��\"�$)�<\"(�\u0006~�s�;9\u0006�D\u0016y�KWW؞���\u000e4�v=�֢�(Ӣ�?\u0003���}],\"j���H�Rr��w���p0'���ϔ\u001e�OSN\b�s�Qj�^�+\u0006-4@7?�\"���}�b1��\u0019�y�&�{m�c��`#S��B;����x'��\u0014\u0016\u001a\u001f�{�.��E*��d\u001e�_\u0004O�5�\u0012�R�b\u000eZ���2/��p\n�ޞ?��`��dTá���Y�\u000f\"�q5Q��RʂX��cz�������P\f��6�\u0011��6GZ�P�\u0017�{MÆV�����p�'�&��]Ҫ���a8\u001c��]��f�n�@�\u0019��z��ι�\u001e�ٶ��\b2y\fh�6@yѹ��j\u0014�\nJ\u001e�ʉ̆��x)�+v\u000e��<1m\u0015L\u0014�.{Y\u001a�A�[1\u001b�T\u0012�\u000b��`�\u0012�6{dgPmqr���T���7��1\u0013����r\u0004P\"���7���^�Qm�\u001b��z��MF_���EA'\f\u0019e�AO�\u0003��M+\u0014\u0006��ՌD!�?��!:�k\u001d@Q'��4�������\u0000\u0003ټv�ZE�����X�$N��\u0005]Di�QM�\u0019�7B�\u0000�hz�3��v\u0004���c)�\u0019\u0017\u001a%�Q�\u0000+�\u0019�!T�j�,�3E�v$�;\u0019����8�4C*�\u0004��zj��!��$3R.\"F�\u00122\u0010�*\bQ�V`Ը������^31B�h�\u0005�\u00056�h�]ޓ���S\u0005�\u0017����\\<|�\u001cP\u0014�&�\u0011�=\u001d�&�ڠ�?�\u0002���K�F�Q>t�\th�u���?Ѓ\u0011��ܺ���N�9�ˮ�F��`�\u0018�0tփ\f�\u0012z��x�V�\u0000��'��s\u0013ƿ22��䋵�\u001a����z�s]\u001a�ɺ|�\b\u0003�\u0011���� >i�A�1�^$��vN�J\u000fy\u0002\b��AK�\u0003���.j�1�7A�ٽ�3����!0+>'�������Ś�������ҝ�5��E ��\u0003�8��g�w\n������\u001a���\f���\b��,��J��\u001b\r�Qh\u0003@��4\u0002� �S�W��i���پ?\u001a���`�*p�l���Fu���;�,'���D׹N\u0015��\r3���&���L`���\u0019B/�{y;H͚����<�\nDW�N\u0016�\u000b��~U\u0005sqH�a�5ƺ���Qb�nT5\u0011F\u0016��\u001c�\u0017���M\u001b��n�\u000f\u0005~��� u�\u0004����\u0002�);4���pX\u0017��'�����g�\f\u001e\u0005x��;\u0003�D�,��%�\u0019C\"�b����XYs[�?{Ui\t/�\u001e�d���\u001f��\n�.\u0007����\u000bD�J�X��\u001eu�m�AE�\u0004\u0010��.�J1\u001c��������v��g\u0003\f���3\n7\u001dvi\u0015+S�NX]�M�P\u0000�:�\u000f5@��i^[Ϗd���n ��IW��\u0005�Gn�\u00187e�\u0011�;�\u001f$�\u0005'\u0017����fe%J(�/�\u0018��\u0015hF�̄�>�(�M��\u001f\f�كk�?��T�9\u001f���@ɗ?�N�L�\u0017���\fL@��Τu�\u0017�3I�l��+�eiA48��\u0000e\u0019�\u0015�fW\u001eW4J*\u0018u\u001da_�¼��E5\u0001��y����\u0013z͞��r,LŁ\n�e�gxn���$\u001d\"�\u0014˴�a�\u0013\u0019��[�l��ebM�rm��9�\\+\u0006�A\u001f��{(�p�q|Ʌ�\rm\u0019��\b\"q\u0016a�\n�͎�\u0006&�G\b��S�����u@+$����I\u001d�AV�\u0004$����Y�\u0011u\u0010%�b�B�R�%���Ӧ�\u0015��i�.I����q�d�_�S�C\t�D�F)���mب#ߪ\u001d_X���\bDӌ�0��S�\u0014��M�΄�Ԩ��-Ww��_�V?�'o%l\u001cҽg�\u000f�^�\n�CbѴ�kӧ�I��#R؏#�\u0014e|�\"�o�B\u0006\u0005W�y}��_v\"ً�T)�S�,��jʱ1�\u0001�էc�Ƀ5��F$��ح`AZ~���\u001b�N\u0003u5À7��t���t��\u0017%��B\u001e�ɵ�8�eoR�l��K�J��\u000f<��i\"��\u0004y��y��O�y,�a�;�ޱ\b���J���.$��+�W\u0018$�m�\u0004��Ӄ��ٵZ���<�\b\"|�D��A,�\u00048��X�A\u0011�:\u0018_�\u0007��\nT\u000f\u001fcCv���p�\u000eU\u001e/M4��`��\u0002����w�����}�!\"h\u0006�U�5?\u0014<[\u001av����,+x�Y\u0004/Z�}h�\u0015Z��k<�\u001a�.Cn\n�\u0006d�Ԋ.:�)�v-��'GA��=\u001e����߇�,�j\"\\X�_G3\u001bQ(\u0016`\rG�[~���E�����0ԍl�N\b�|m��Yi+�z;�&�[�1��?ض4a�fI��p$�6鸿G���K�װ��\u0016�n\u0002�3�\u0017�;2���I^M�L�sw�6\u0019[�F~�`\u001feg뇾�\u000e����R��?�\u0004�{2?�f��\u0012�tÉ%��[P�aNԛ��dK4\u001d\u0017�b\u0005��A*�\u0004L��]��\b�2\u00183���>F�*�L4@=y��,դ�'.\u0007\\�\u000f�\nƘ�<\r�\"s�T*�B1��r��V�H�_q'3\u001b�\u001d�ڕB��薋\re�\u0018-�B�m�,�b�_�e��F}t���\u001a,+�\u0006r\u0000F\u001a7���\u00072\\Z�\u000bn��$\u000ev�\tH��5��\u0001\"K��K�zӳ7�;\u000b��V\u0013���\u0005D����&�\u0015+�8-�y\u0004�y�\rK\t��ν\u000eݬ���p�?\u0012/J�\rs@{l\u0007[-�ҁm’\f\r^��6��@d\u001cZ�\u0015&j�<�q0�M�\u0014Y;��\u0011�\u0011����$�)�\u0005�h��\u0015%a\u0015���5�Ҟ\u000b��\u0018�i��\u0007�\u001a�n��f�i�\u0000��eYSw�A.�\u0004t���e��u���f��ВT�}�3\u001e�\u0000�[y\u0010���T\u0005\"�|b\u000e~��\u0011\u0004\"�rK\u001bnO��M�YN\u000b?���t�]�.\u001a\u0015`��9�B;@�\u0004Z\u0017ļ�&�K\tE�6��\u000b3�7=�\u0006\u0013G��|��_�P�\u0014�x\u001f��qv�4:F\u00192\u001d�Cʫ�ٶ�~$��o8�?\u000e��\u0002�$��1�\\�o��;͚̝a+�\u0016S[N�Z�tĂ:��V��%�p�nk�&h��̰g���`Z[5S�7[�EjV�\t�F�\b!?\u0000\u0013=7\u0006�`�\u0003���\twU�\u0001�xO%y�;�N?�z.\u000b������x=R�p\u0011\f\u0002˄z�?\r8}\u0018�б\u0002���\u0003dP_H�i6�n��Yj�rN\u00128�A%�\u0004���L�\u0016�㺘�c#�vqϲ�@�F��?\b��\u0013�Cķ\u0013��t�T���.o�\teB�\u000b\u0004���`x�EGߖ\f�sr?�\"Ae�\u0007U��;�~~=�a��^\u000b�ջ;Ʀ��6�?!x�\u0017�'?�\u0017\u000f.��\u000b�{�\u0006�i��\u0016�V'���?�8\u0003\u001a����h��T��^��I����)�\u0015�e���\u0001\u0015�\u0011��� y>���FQ��+i�� S���\u0000\u0011*EF�],�a_X��\u0019�X%�a�8[�U.\u0019=i�\u0003\u0018G!�\u000b�Q�Nٰ���o��l3�����p��\u001b`�״��od\u0018�ϯ�`�Z����R�C��)\u0001=\u0012�0������\u001ej�ZY�\b���A1�\u0004���M\u001f8�S\u001a\u001a=�A��h� (�[��LәL�\u0007\u000b\u0017��\t_��zҢ���\u00141_Vy>���Y�J�\u000b����(�zi\n��A��\u001a��\u0005C�Uh.�{R��\u000f��ql\u0003���Et�+�H����ҋO��\u0017ݝ�����98��*ot�$��I\u0006s�8�\n\u001eG\u0011\u001eN\u0013��UM��+���ڲ��\u0006�\u001d#\u0015�0H�\u001f��\u0000� ң�L>\u001cN2�@�\nÍwT�\u0010-�\u000e������S)��\u001a4y��R�Oo� d\u0003��Z\u0005\u0003ԈEU\u0003�\u0012��\u001b�\u0003�\u0003?O�3�� �Ⱦ\u0004s<�\u001e��ګ�(�b�'?�~��\u0005\n��*+V��{IUH\u001b^\\�鴒/O\n�/SHT\\s\u000f�h�g�w�p�\u0014b�c�GR�47{�M�eM*5�M`�Z��Nˮ�R��{��\\�^�\u0013폳�5�t'8��=ݫ\t�pP���\u001a53\u0001�w�E������0�5���w�\u0019j�_d��O'&9�B|�z4�� s��S2�\u0014q}����\u0016:`a|y��[a�F�%�\u001d�\u0001�ى���5זﵐ\u00051��+\u0001���]�S\u0017�\u001f�AS�\u0004Ā��b��\n�IRSL\u0007�\u001e'�t~�\u0013���}�]�gEh���$.�{�\u0011��E \u000fE�0֗\b��\f��\u0001�I�>|��@L�\u0016V�����ReJ�\u0012�\u000b�2\u0010��Mg�L\u0007� IU�\u0004�s���\u0001���ܪ�_��O4��]�=�8\u0019w$�S7E\u0012\u000f���\u0000T\u0018-�#�G���8N���b9\u0001S���;ž\b��7#��\t�\t\rr-�u�\u0001���HC�T�>&�t�4N��?�H��n\u000b��\u0015!��f��\u000e\u0006��oƳgi�iLbO\u0005�\u0011��\u0016\u000ba1����1\u000e�\u0018��v�����k8��N�+�\u0007�a�u@\u0014\u001a\u001a\u0000�ّ���,��OF�J���3Bj��\u0012\u0007)�K�]h�V��LrU��7>\u001e�ۯ6��$�zfب\u0001��\u0019Fё!�A:�\u0004؀�L�\u0001f����`j\tP�\u001a�(��a9>H�\u0004�Ye���)�\u0002\u000b7�Ӿ\nJ:�\r�2��N\u0003�%��.�ӏw����!�\n�d�/���(��Ԉ�(2\u0011�\u001d\u0006d��\u0019׼���Q~%/�\u001a3��+\u000f\u0012Z�B>�=�~ʠb��]�m�j\u0001�e13m����.�\t�\u0017{�YL���\u0018;D�o\u001d@�^y�;����9p��6O\u0000\u0000h\u0000^R:�69\u0014�CJN��\u001a�Ѱ�\u0001�uЁ�df�+%o�\n1E\u0014�\u0012'\u0000�\\��c7?`\n���Y�+F;�,#Lj3\u001c�e�7\u001d��շ�\u0002�2Ri�#Q�gw�^\".Ȫc>��\u0012�t|��a�ǭ�7\r���U�\u0002%�W\u000e\u001aJ�JL,\u0004\u0005ݝ�K�n��P\\�AC�\u0004��M&a+y�\u001d���2Ei`\u000b,�KY�\b�f�~��W�rb����M�\u000f�X̩�j�������\u000bê1�\u001dU!/>�wA$\u0002��\u000e�p�\u0004 �$���q��]\u0003�\u0014*L��&��r�z�b��p\b�i`L�+\u0019Ɩ�0�\u000b�\u001c\u001c��ab\u0014꺲̈1�m�Gᚸ4\u0011�G\\�Dc����A&�'���n;����\u0011�U7���iO���\u0017{s�&��\u0018ߏ\t��.���\u000fX(]��\u0016m+�:\u00140��\"�}�ߜ�6�`2��Qˤ�F�����\u0005�b�vUaI�����C��ds7�8(H)�l\u0012���~\u0007W�D\u001b4�!r�=k �\u00134��\u001d�Aa��YR�q��{#���\u0013~$_\u0000�\u0002�*b�L.xI�\u000f*R��-�A>�\u0005\u0000���l��E�2�$��\u0010��YP�\u001fߑ����g1#\u000e�7��7�������\f�v�M\u0006��42����܇��/�o`�A�\u000b[-��\r\r\u0016��h7*ݶ�\u0007��\u0014�b.����!$�\u0000\u001f���RΊ�*����1�`�+\u001dJ�\u000f֒ZHS�Sh�\u0002���j��uYƟ���M�ɨD�LgYE�6R%\u0016��|��}�Ny`GL�otl��\u0018���4������Ɖ��C�|\r�m�ܝ�\u001a�΃Q�\u0016&Xf\u001a���03\u001fjI���G\u0004���%�\u0007\u001f\u0006ɍA�h�>q�\u001f�Ì�8\u0013\u0018��K�\u001a��#jN�6p\u0015�G�\u001a��\u0004Ƿ!s�Ÿ�R\u001a�]�@o��?OV\\\t@pg�Kp�Z\u000eVa_)��A;�\u0005\u0014���\u0011\u0014Q�\u0002����#p�\n\u0003�\u000fZ���\u0013�:�~�K�o�\u0011wE:Q*11��\rh��=��MV�a�Ə\u0018G/�ܪU\"��qJ��T4k�d�\u0006.DxC��J�o��̋&��xe\u0002�\u000br��G#��ɗ�(�f��\u001fφ&UΞ���\u0016\u001c�8\bot�c)��<�D,\r\u00076\n�uAw?�Ǽ%�y\u000e�=�n]�m>VM��\u0003�1��\u0002�6L�+\u0017M�\"���e\u000b��B&l�\u001b\u0011hw���d\u0012�\u0005�\u0016P\u0013��-\nK�p�ܽ<\u001e�אN\u0011��5M�B~a\u0019��M�\u0007���U����ɇ\u001d�����d�\u001f\u001bn��\u0006m�\t�~\b0���0'O��\n\u0011R��'���?$�^̂�S�q�\u0015�R�\u0010\u001a��\t��AP�\u0005(���\u0011\u0005�\u0013�7UJ]�ő\u0004�FϹ�L�\u001d��D*�{!D�T��!6M&\u001a�\u000b�\"ۘx��\u0001�K����\u001a��һ/�\u001b.J�H�Z�\u000fF��H��\u0002p\tv\u0005V�:���\u0007\\�_�~�\u0014�J�\u001a�J�4���\r\u0019�&�\u001f=�J�1;\t\\�Y���5v�������^��\u0003�d1�8)��\u0014NB�I��|�?�3x\\�ú���F\u0000�\u0015E�=\u001e\u0005��f�*��\u0016պp���\u0014����\u001f?e\u000f\u001c?�r,o�\r2N\u0007��z\u0005�ie�Ԙ�\r�\u001e�\u000f�f�$9����\u000bV���<厅��I�N��#�nhi\u0001V�q2.��* �TzTu�6\u0010���ZF�\u0013��7\b���;�I1��@�wV��K���@��c��\u000f\ny��`Z�t�\u0019H����A]�\u0005<���w��Q\u0014s�$�R�*/\u0011����4��E�}/כs�D�D���gb�\u0018�E�t���-\r�D�o�\u0014\u0000s:�ݟ��úmu�\u0011\u001d#�A\u0006\u0001h�\u0013\u001bJ==�\u0014?ƅ�?��F�j\u001e�T�7|���sI\u00002ia���|�\u001d�?�w�K��\u0005\u0010@͍��g\u001a�.\b)}��b Jz�f�\u0003�a�Ņ�����DX\u0016>I�8B�����\u001b�\u0005:�m�OVK��̯v3��Ü����\u0016i�x*3'�ZΩ%��\u0001#\u0002Ep`�����9�9\"�\u0015j.$MԵDŽ.0Rb��z̢�2�\u0004t\u0013\u001e�� ��ޛiR\u0002�T\u000f\u001c\b\\�\u001c���`\u000f�馴\u0015���kx^u�Ѓ*�d\u001f\u0017䧓�N\f��\u0000�C���\u0001��\u0001W��r~%ߵ'ؔ�vR�>E�֟f����AP�\u0005P���\u0013\n�o9\u0016�P�\u0019�\u0014��:�>�\u0000-����ȁM�|��O\u0013i�΁w��=�q�š@\t^��uSY�J �� ����t/h9�\u0012�T,�h\u001b�Ǻ�U\u0015\\F؈Ŧ�\u0017�\u000f���[7\u0012�\u0006#���X�#�.)\u001c�&�Q)��`Ji�r�ꈖK¤�kB�\u000b���k�\u0000 ��Q�\"Ux��zK�E�l�\u000fс�~���1\u0019��*��_ \r��j���\u000f\u0015�@�D\u0014��-�;!\f�ɻ��\u001bW\u001b�C�H,%v}��\u0012E�\f��)��u�\t�+��]i�\u000b�TF�.`邊ץ&];�ʻ-B2�UA��op��E�cO��\u000b�)7\u001e�\u0006�fM�0�/�r�\u0001~�涮����T�h�XU\u0017�b'�l�;ӈ��N}ha����p0x��AI�\u0005d��\u0002\u0002�\\3���\u0013K�A�.�3\u00181J����\u0014����M�x�\u0001�4U���?K\u001a\u0018�\u000e})Z�\u0012��3�#�E�i��Zu\u001e߮`\u0019���]+�� Sz�;S��N�o��__�7�!\u0012vE\u0016�h��/A��y���\u0006�ϖG\u001a\u0010����޸M��\u000f�8�O\b\u000eE/���\u0016*鶐�*�G{\rh>���\u000f�s\"���.��|8�\u0010=�S�'��Y�ߎR\u00126�\f�i(�?@�\u0018fN\u0006\u0003{$컮�)I�|]�\u0002�\u0014�ZY��&\u001a9\n���\u0010���.\u0010�O�]*�ǹ_\u0013cy���t�\"A�|���T�wڄ��8,G��� ~2�=G7�����\r$�p�Ͱ\u0000����s�OQ�\u0001�\f�\"\u0016�\nζ1Q� \u0006\u001b�$��A9�\u0005x��(N\u0017[��o�!\"��7\u0006�*õ\u0016��n���F�L3t\u0018v �+�)��\u0017�<��!\u0018D\u0012e�*F�5���%pČ���^�!d\tl���1�@hdv\u0017��Xa�09n�]�~�sm�6��!Zz���)�\u0001t���K�� %���\"3f�l\b���2{\u000b�K\n;\u001e�\u001d���\u00050#Q�&h?�n�:Wn\u0019/���\u000f�Y���*>0\u000e\u000e�KvCn�:�\u001d,�\u001d���\u000fKBӠ\rD\u0010�s���?�ql�\u00001�n\u0004M~R\u0019��3�\u00077>Ѭ�\u0010΁���b.�렝\u0015&��7��v�\u0002R���;�@S�\r��)�!\u0007��\u0015ɺ*�4>#ܔ����H\"؋g\u0011�S]wZ6�;�e+��4\u0010>�]{0�î.���XZ�\u0014\b���A9�\u0005����4)Y\t��oԡ���4�۩.\u0019\u0011|\u0015.R\u0007Y�-s��y�`��?1\u0006�Y�W��[�N�B<�\u0004��}Z�\u001cϘJ\u0012\u001b��K:pt>\u000b���v\u0006�$�����]��b���5T�O�8�U�m\u001fN�K�, b�V����\u0016-;[Vv�f\u001b�R���?��q�I͂w\u0010\u001d3ѥwfO�n�7\u0013�!h��<\u000eb}I���<\u0015\u0012<\u000e.#۾\u0019H\u0004��\u000b[�\u0011�t�]�P\u0016�\u001a�F��\u001by�^T�u\u001eO#�\u0004�\r�\u001d�W!���\u0017��g�\b>J:O\u001c�{,��^w\u001d>�\u0018�\b��̐\b�SP�t��\t���5t\t\u0004�4�#�~�\u0018\u000b�\t��9+�bD\u000b\u0012O=�k���\\\u0014�������3�\u000fgNQ��A>�\u0005���(�)\u0005��5Z��\u000bZ\"\u0007���)f���.\u000b\u0011S�\u0000;n�1�\u001c>��}Nl�ěh�\u0017�6���£�\u0007�V\"z�6(���\f���\u0019\u0007�}Ȉ󋴽���q���E\u0014�\u0013�6�/\u0002)�U�B�t�MB��ݒ�a\u0000�\u000f^c\u0015\n��w][b��\u0015�g���c\u0005\u0016\u0015�[g ��B2�\u00052g����\u0013�Xc�zq��#B_q�j��\u001a���k�0\\����\u0003R;\u000fy\u001d'ೀ6w\u0000ty���0�-�\u0011��������,L���š�\u000f��;��9�\u0003�0K��\u0011\u0004���\u0010}:k��\u0018u�\u000b`�\u0005xL�`Lڐ\u001f\u000b\u0006��\u0011J|n�M\u0001騘��;o�ٲ�\u000e5�\nU֧�\u000b�k��ei/�A�\u0016��3i�A6�\u0005Ȁ�&�l\\��a\b��\u0017��;���T�1^�5o�f���j�/�VL\r�e\"3��\u0014�ϯ�b��U*����w�@���w\u001d��5E�A�[4�z�t-���L�:\u0016f���}�\u001e�a\u001d��L�\b\u0011\u0017���=,�wr嫉i�m��\u001eeZG���\u0011�i�3\rD8�8�\u0015��\u0012�V˸IP��A\u0011�7W!6zo\u001a�\u0002�O��\u0016c���F`�\u001cu׊ӻ]��Ae�\\�����E\u001dm��)�\u0007#;�\u001b\u001e�Q\"�\u0006\"��<\u0018\u001b-��\f)��s\u000b��\n^y\ndhٌ���|�`\u0005,,�}��Sմ�����2J���\u001a+\u0002\t����\u0006�\u0000��G�6B��GP\t\u000b��,����؁�ә���!�AC�\u0005܀�\tn>>��~�\u000693�v��}J\u001bk�̓qM�g���d�ZR��\"�oU����4%68ա�˗�w�\u0014ٍ`���\b�����c\u001f\u001e��y\u0001��k$&��)�������G��K�O�Ԫ\u001f�,2\u001ba<�V\tD���1�v���&@aW�{7.(,{a\u0015`O�Kh�\n��\u0019\\s\u0016:�yu���r��\u000b˯���\u00075pOۀ\u000b�W#�!���\u0002�5OA��V��RT��i0�\u0004�bm\u001bg;M��'Ko5��!@�wdQT�b����\tŶ�\u001f�\u001drA(�\n\u0014+\u000bu�Ś�U�T��J�m h\u0001�W�\u000b�)��h��ف��+����\u000e\u0015oL(H`Q\u0006�\u0005)i�̺M\u0017�-��\u0004�\u001dr�\t\u001d\u0010���B�l����AN�\u0005���\u0003���- �����Կ�O�R��e0\u0019ǔF��ـq�E�����džKvS�Ђ-$�om�:�*R>���X ��<\u0011\\K൳Lc�0�\u001e�ԥ=fޘ��\u0010\tɍt3+��#�wN��hT���d�1�9РC:\b\u0005����@fj����\u0002�\r�Oydk�\u0007+w)Z\u0017(#-��\b̀���A�N�H�]�Fzik\u0017\u0002��~��Gb\u0006�В>��\u0018\\w\u0002&G;��Dw�_\u001e䙍\u0004���.�g���hG�\u0004\"\u0017�8���QbD�\u0015\u0018�\u000e��\f\u001d��d���^�F��K��U�2��!�w[�. 4��J�\u0011�\u0016\u0000�\u0001f!\u0003��ȡ}q����L�8�gIo\u001e~x�*�,\u001b\\�Z\u001b��\\�a��.dN*��$�J5\u000bn�AH�\u0006\u0004�����\r;�)|U\u0012�+�m�7\u0017�!sz\u00159��Z�y%�k2a�����3���\u001dD&]Z��oI%�\u0001�5*��BsU�tgUäd\u0003;L�_���B\u0018d���i\u0010�Gz\u0004En\t\u0014@Z�\u0006\u0014�i\u0000��߮��Y�\u001b�Ya�P��3��C�+\u0019��\u001dI��?�՘y\u0002��ޅ�����L\u0015�j\n�\r念5���\u0019\r�B`+\u0002�D\u001dH���>&r�W��g5/���ˮ\"��@�4��\"[��(ݛ�6�x�\u0006yE�\u0003䠣A:�\u0006\u0018��\u0002\u0017i \u0012��ڬ2���g��!\u0003h?ׯa'\u000b��7*|vyA6�\u0001��,��Ѻ��/^�U[�\u0000\u0016��\u0015\u001b�o\u0007��2�\",��=;��0�\u0012R�`�0�\u0012��\n�y�Ey��f�~b�n�6t\u001fq|Ͽ-B��Ժ�\tF�\u000b�\u0018Mxik��/i�q,Q��Gq�\\�X�م;��2\u0013�mPS�G�1��\u0015\\\f\u000b��{����b[e�H*�\u001b�u�3�!�y\u0004ӈ��=�[Jʋ�'�d��9�2\u0006��Kv��R��Ȫ\u000f\bē��Tj\rF����4R;�\r+��n\u0000��x\u0000y)Ȟ��'s\f�f\u001f�1\u0006L\u0003�D�?r5��w6�`�q�\u00049\u000f;�@9\u0002�t-ɂk\\��\\c Y�-�o��As�\u0006,��ĕW�\u0010r)�^S\u0019��]�?|���M\u0000\n�v����T�\u0010�&��}U_�\u0010�e�\u0010L4ض$?�\u0013�W��g̸�\u001d��R޹ΐ��x�A\u001e\u001d���jeJ�\u0002\u0011�t�j\u0006�\u0003���6��9o\u000e�X\u001c\"\u0005rp�.��Sl���\u00051�Q���*B�D�<ّ�2����45#�e0A\u001c��.\u001c.��3�~5Ƚ\r3ӦD�]\fp�Sg,7\u000f[�w\u001d�{��s���\u0013�e�+�Mq�|)\u0019N���� �9����[;W�fD'#,��\u0003\u000fΆ��#c-�4:@B�*L����n!#s3���(��R�?\u0005�\u0019��U\fʹY�\u0016+�5��CX�9,���wJOqǜ\u0017�C���ܠ!r�\n��^��/��b\u0019�Yݨ�e2\u0019^����\u0011�O\u00184���\b�tDo��k��'f�/)T\u0017������@\u0019J�A��\u0006@��}� \u001c�m�9$\u0017B؝BH.�\u000e[\f�\u0000nqXi2����J\u0004��Ufe\rhفX�Ɂb6V\f9'\u0006��(�!�>������r\u0013ъ:b�\u0000ܳiE����=��!rRo�D+K\u0011��#�oPffT�2���\u001cC�\u0000#f��\u0018\u00012\u0019Z�qoi�y\u0000�!���CN�� !���@��&\u0004�\t\u0000\"�\u0003֨im�c��y�=>hFě����S��.\u0012�\u0010%D\u0015�C1S��n�tAkE�]\u000b�i�ߘ#ܲ%�_��e�3�\t�3��!��\u0018�\u000b)�Uz��cfp�Վ\u0004��N��3˥�s\u00049=�b��\u001a=�M$v�\u0018�I\u0017\u0004�&��\u001f��5M��-v�One/�\u0011��x���y�ٰ�<$L(�\u0012�ӢBv1�v\fv�j?y��sn�_��W�h�3�N%y)�ӻ�S1%�T�roGެw�0�ov�\u0007dތu\u0004Ŋ\u0016\u0006�������2����oIg�����`V?�l�.��]*+���o>krţA,�\u0006T��X���sO��_\u0015W�\t��\u0000\u001b�pe��,��\u0005�4E���\u0004\u0004����\u001a�\u0014�\r�{�\u001b{a\u001f��Qp\rE��?.�@�$�.l\u001cm�Ϟ�\u0013�\u0007\u0005\u001e`\u0015Ҙ�C���,�\u0003�[�3A8\u0003?\u0017�O�P|6!��\u000eb�5ܱg*\\�9��L�\u001a\"lJ�ULl�\u0003�\\�\u0011p�t\u001f\u0007\u001c1���S����\u0011w\n&MS�h��fM� \u0015��A\u000f�\u0006������%�%:�����Rv�7�\u0016w�m*\u001e�x\u0004\u001cfE#�5K�G\u0011���\u0006����H� A^kU�\u0011��1\u0014\u001b��!5+\u0018B$)���^�aD�\u0017\u001a��\u0014���\nC�*\u001c8/�\u001f����f�Y��K�l���€h�氏�\u0007��\u0000�\r �\u0019�{)PB����+�\t�\u001d�T����򋦅ê��Û�η:�E��\u001dS��\u00185���ki��Q{0\u000e\u001aD\u0014j-!rP\u00147��U{GVk)|L\u0003K@�bا<��\u001c��hŪ���~5s���9w�>���z�v�ƻ�\u0002D�d�O\u001c>�\u0012��]�A)�\u0006������}��A�4\\��B&Y��9#��g�%�=Ć}\u001aD\u001d�J�e�D�\u0018�^�<\rf\u0012\u0019f\u0002���C�{�\u0017���sA�\u0018�����\ry\u0016um#��1�\\���e=\u001a���L���w!`F@(q\rdbC\u0006�\u0011��)�QS�\u0011��1\u0010R�\nW����2\u000b?<�fTrO\"ա����\u000bT\u0001�\u001dM�4\u0006���܁PE\u001do��*V$\u0019N��E4�?\u000b=\fI��JFל\u0010b\\t\u001e�����ˢ�Cp~�G\u0015\u0010��Mm/;5��n����Q��-!�t\u000f��,.�\u001f�`E֎n��kj\u001e�(��a\u0004�h�\u0001��]D��\"Y2(�l�I��\u0000j\u001c�$682>\u0003�N�AG�\u0006���L�H��\u0004\n��\u0018���\u001c���x��@�\u001e�X�\u00032R�6�Ɲ��ȇ\\dFuz\u000b�8\f�\u000bl\u000e������X�!�\r\u0001ra�\u0002�;�\u0002N\f9a\u0010ΦK����Ӑ02_\u0013�r8\t�\u0010k\b�U��l���\u0004����meM6�\\\u00186o�y�\u0015�Bsm\u0010�@��|��T?Z��\u0004\u0015\\)\u0004B֣�\u001d\u0014���\u0017\\�Wm�$�W\u0002��_���q��j�����ԣ9���m_��<�ʿ/}�,\nW�tg։��dg�\u0006\u000b|l\reE�V\u0000�`���m~�CXX���2���p0X��c\u0018�\u0006���r�Ь�\u001b\u0001Q��=r��>D�EF���h\u0003�a��\u0005ˀ�\u001fx�5MOX\u000b�\u0010I��z�@\u001d\u001f�(�\u0012#�K �����u+\u001dÅ\u001e5w�AO�\u0006���e���;W�\u001bR�,�`���=nV�\u0004��P��\u000et*�4j�j�\fZ�C�zF���z�Uc�\u001fS�C��)r\u0013�+gsL�뱘?�֥\u0014\u0013�(\u0005�h��s�3ɱJװ�w���e\u001f�\u000e%i0�\u001a��\u001dk���\u0001Te����\u0004/�}\u0000\u0005ղ��@�\u000e�f\u0012/��п\u0012D]|آ����ĆIދ�!\b0\u0017����v�����\u001f��X��E#�A��\u00070��1�VCqZ-:��X��C�R��\u0011��\b\u0010��4��ե��'\u0012Uĭ\u000e�O0�\u0003�2�d\r�w�/w\u001d,s|��oc+%\u0001��_>Qv��\b��\u0016��R����F��8�����Z�\u0013�5D\u000f�$�/}���v�H���\u0010D@���c\u0013M��q\u00155�Y~c\u001f*�\u0014U�%l�v�lվ/�[\\�/�\u0000Mȁ�QO?ozd��T�:��ʡ+V�R��\u0012\f\u0010ȇ��9dw+\u0011�ww\u0000sW������n�T�kh+\\���'v۾~�S:��_8\"V\u0014\u001f�\u0017�`\u0010\u0013���\b)=\u001d�f\fD���\n�V\\7'(3�ŤΟͥ��%�-\u001b^�� uF[�\u0000k� ?����T\\\u0002%�o���~��\u0004\u0012��\u0017s�\u001c�/u\u000e�-�A;�\u0007D��Mv;\b��M���mˉ<�4(Z~�\u001f��_����\u0000\u000e�!\u0013�%��w2㱗���@��5Y�k{Y�����/Y\t\u0011hl���\"H\t�6T�\u001c�\u0005�P&�M�\u000b��7�>�\u0015SI�\n%VŒ�v�\u0013۴�Q1��2��7�\n��3��Bq�w�OLz�*\u0010�&�\u0010\u0017��\r\u0004��U�3��\t!�T�1�8��{�?uk\u0004Ǵ���S��5|�#�\t���^����@\u0010�\u0016p\u0002��X�%Uq�\\\u000fh\u0001���us�V�Z3�wL\u0013�(8880�%�NV,��\u0010Vցۧ���\u001b�DB{*�\u0017�t��0fi�R�x�\"\\͔���\u000f��\u000b���\u0007yP\u000e��d�\u001b�Q���jC�\\�u<-e�6�AH�\u0007X��M\u0011ؾ��b\u000b&}Y\u0005��\u0019�m�r�\f��se\u0000YEPS��E�����\u0016ǚ>$\u0002�<�\u0001W��\u000e���#\u0012$zTS��i\u0014}:%�\u0016:��X�f�U\u0002��&\u0017�C�������\u001a�\u0012�\u000bA�\u0019��\"b�\u0001�Pr���X)x��h��\u0015\u0017�j݂��홉� ���xlF��/H\u001d ��ͤ�z��ZItΜ C�9���T�\u0015��c*$( \u0016�n\u0005�hK\u001azzWR\u0013�d��8��x5�\u001b�\u000ba���s�&�PJ\u001e\u0016���w��@*���.ٝ��[�#}vSE��q��\u0000��)\u001d�H\u0014(3\"\u0002���\u000f�\u001b}'\u0002�\u0015\t9�c��n����/\u0000��K�w!��\u001d�����Bo��M\u001ca\\���\f�+n��*H��Q\u0001�9a^����<�<�3G�E395�����NKi�x4�-��p�\u0016!�Gj�jHp~\u0012�VJ\u0006+[�m\u0004%��Se)�x��*ot���Ԑu�E\u001b\u0016@��J:I�jFB�+D�+-\u0002،\u0003���Lˏ@��������\u0017�\u0019���ɸ\u0010L|�~��rzk��\u0018a\u0005۰��\u0015���\f�͞\t�ۨ�����\u0015۵T(�e�\u0001<\u0012S��*�+K�M�\u001a�\u0004��Z�m�Ѭ\u0006���-e�\u001b�I��w����t�\u00199��b?i/]��5�����,=\u0016!��p�����\u0006�UD�L\u0011�J:\u001bt�ޘ�\u0002}�n�\"%\u0002�'�&d�>��(�祎\u001dH�4�0�Rz�@:�zT\fB��{��B㤜%9D��!v�\u0006��c\u0014�\u001d2�Bol��A��Jb�\u001b?��\u0013۳�\u000f\u000e?�\"\u0003\u0011\u0015�\u001aJM@�U4��2d�\u0012ʻ���0,�\tS=�j&$�G�7J̕Ο/�\u0000����^�z����\u0012\"���\u0004���>P1[`��3p�U���d\u0007�$��m��\u0006H�\u001f�e�u�Ih?�][3)*����z_��U�[�g�\u0013:yޙ�e�}X�ǃ�fxp�$�j!���v��Q*YU�\"?�P\u0004�ޞLO\u0015�^+,0�\u0006�[a��r��>,�\r����\t���]x�ߓ��o�sQ\\������o\u0006R���\u0013\u0002�Y����\u000b��_�k�82��~.u��`FS�k�c$�qۻPi���:!Q�Xg\u0016�i\u000b5��_\u0017�t��J�e�ݘ���[I�\u0012'\"�\u0017�!C˙A��y�݉�|���8���N�\u0019�Z\bJ�>\u00152��7�n��`��\u0007v�|\u001d\u0010��li$�u�K�A�\u0007����b\bk��5�S>����l�vΫa扁C��\u001d(�\r�\u001a\r���O\u000b�\u001f8���������\u001a��H\u001f�k �\u001aoH\u001a\u001dO��0��\u0004I\u0011G�z�W\u0016�k5~\r��<,\u0002�\u0000�\f~)\u0012��\u0007��s�-�z�\t\u0000\u000e\"�&@\t����\u0002?���[f_����B|��|��FAd����.�WE!�����(u\u0007dZ�i��!�\r�\u001b\u0007�E6]���K���-�B��bX4��#t,��X␦N�r�\u0005g�<�Ij6]\u0012�����ཱི��b�)��\u0003\nN�\u001c�]�t\"�V\u0012�F��&^�ε��i�\u0019����\u0003\u000f�S4��8��P��ea����z�ʿ���'�\u0014�y�P2��\u0015\f��6o��\u000f�\b��K��1��I|\u0012��\u0018��\u001a�k��+\u0015\u0017׽�ƫ��K�\u0016E�\u0002��3�s������Ƥr�L��a�E�\u001e�\u0002�=u\u0000[�Y���ğʑ�\u0003\u0000�h�],��gm¶F�$rCbB�w\u000bѥ�AP�\u0007Ѐ��e�Es�c\r�@k�L�\u001c\u001d\u000f(qx{�Ux\u0006�±�10�ߍGs�,Ir5�\u0011��x�#2H��\u0011X�2��������Mۤ��$�/�\u0003���VN��՜�;���ג����W���>�~\u001d�����o_�\rz\u0010���^�&Ժ&���Q%\u0001�ࢦs\u0016Vl\u0015�I�I��\u0004�~DX�\u001f-�_\u001f\u0018нr*\u0015�\u001aӄz\u001d�ד��n�˿�4�5Rx��M�\u0000�,|�5=w\u0017���1\u0010�O�dW�\u0013���`�tF[�OD�n�=�\u0001\u0003��M\u0012\u0004\u00038s�+�},+RJ\u0017(�(����\u0001��ST����}\\B\u001a7\u0004��]�0Y\\�\u0000�T��s���q��}�--J�3M>\u0014s�?�'¹���6\t�λ�9�/��� \u001c5xF����)��AI�\u0007���\u001dW\u001f>���\tVk�ۜ��S��a\u0006�y\"�r�\u0003��\u000e�ҧ{�@\u0006J\t��\u001b\u001a\t^`9C�p3\u0003U��p_\u001b�\u0006a�έ9?��1���ګ��3X���}X�\r\u0004-�\u001d�I�&i'��\u000b�\u0010\rs=A�|دH�?�e\u0003�<��__�y�Q����\t��Aζ8�Opdx�����\u0012���\u001b�\"T�X\u0002�d�ZZ�cl\u001b4KN��8Ѣ�Oi�ȼTS'TCM�~D\u0013qʘ�c���\u0013�=8�r ��Rqn5����J�c���φBQ?k~y�aV\u0016���)\u0007k`\u0005XW�\u0019DrS\u0019`����p�\u0017΄�\u0011�8�����?���W�E�}{\u001f�ӛ�y�\u001d\u0017�hAY�D.\n�����Fk��R�~��\u0003� \u001b�q夣AF�\u0007���/#�ø�t$\\�*x��s�JL�$�ky���\u0014����\u0001\u0000\u000b�P\\�9(�D��¸\u0013�Ek8\n\u000fFo4�I�{*��\u001c\u0006�9\u001dI)�E��>A�B�n�\u001b�\u0014�E1&|�Xy\f\\�#�M�kO�\u0005��j\u0014+��j�y\u0018y�x�`��T��{�Ĝ����v����:�8�\u0019�]�+xՠ�\u0015&\\w\u0000�Q7M\u0006J���\u0007���\u001f�\u0014�\u000b��3��|` �jϛg��Ȫ,P\\�~+�\"�7�y���%7�o$�x$�wv\u000b�W���7ʅ[Z%���\u0005)$��=��+���\u0010�A��\b ���\u001fZ�Պ9K�r,/V�\u0014�I��հm.\b׍R��0���3y��1Ϳ�]�D������Krf|\u0013�����\u0012���\u0006��9\u0011��zr4\u001e��\u001a��$�\u0016��}Az�\u0002�O����)\u001c�<�,��N�|B-'�x\u0011\"��\u0007\u001c\u0000\u001e��6ŷ<�шSMq�\u0010��:\b\u0014(�\u000f$҆�J&\r��I\u001fA`��\f�\nN�����si����u�!EN\u0019�:AT��\u000f �@��()\u001b+6��\u0001!�8� �l�]6�AX�\bH��Xпj�IֻoiMq$�$\u001en\u0013]v�ý\u0015ܟ2m:�R���Է��ok�tmC@����|�~�h-KmO�H�c\u0002�k��\"J��� x|���P�t�q�E�\u0006\u0013��4�T�y�`��.�GBj�r��f�/9\u0006V\u0019[05\u001aq��s/k�\f��������$\u0006�\rR~\u0006*�d��-il6��R)\u000b\u0004�\n\u0002GS�u�n��cs\u001a�|�����\"\u000f {T`^�W9�`�*�N)#\r7�ӽ�\u0018#&+R�y�g\u0012W&�:���\t�T�&j��M\u000eh':m�a\u0013\u0012��č��vW��\u001e�Z�\u0018�cd�\u0001�$�Q��!(Q�{\u001dNO?����\u001b�\u000f\u0014���\u0011n:�T��ü�\u0003s\u001di\u001c�}y؆\u0010��\u0011e�ND�\u001a�`\u001f�������ⷕ206\u000e�`��\rS�L'\u000e�\u0015\\)\t�S�K:Yӱ\u0011I�A\u0012�\b���L�#�?�7�\u0004E\u001a�A��a�Q�,Җ�\u000fwp]m�K5�\u0001�d�*}E�6�\u0018bE#\u0000i��5o��f�O��!\u0018�<�y���\u001d�ܶ\u000f�>\u0014�*;̼&��$\fzh�Kڎ���YgG�q�k�\u0014�Q��L7�M�yB��X��H�7z�/��K��u��e�/M��D9`�\u0019o�\"]�(r+�Ni�w�K&Z&1�>��B\u0016�u\u0012\u0001N0����{\u0002�]�B�\u0011�\u0013\u0011\u0018,\u0016AMY�u�X:*�w��B�\"G�TLu#�h�!f�\ny���y�)��\u0001�~P��Dc��XO\u0013�\u001f[\u0011����h�r�֙��\t�A\u001c�\b���W��OO�\u0004�BO�Q���NN��t\u0012�x�\u001c)�$\u0006h�\n�%-�\u0015�\u0007F���4 F)J0)�p��y���\u0015��\u001c��\u001f�d\u0002�\br�Xx}\u0005�\u0005�€�:l��R9�R�\u0012�R��:\u0000\u0010�*W\u0001���|{\u0016,\u0007X�␇��\u0019����\r�)m�d���8�k�Y\u0018\u0014��\u0006��x\u0015\u0010\u0006��=������L��!\u001d�\u00175n�bC�u+\u001cu��nn�&��/&��\u0016<\u001b-�-J�\u0001<\u00155,V\u0012\u001ac�I'F�\u000b�\u0012kv6`�T���[x�͟I��l��^^��9׈�\r&h�\u0001C��3$ֲլ(�\u0000�f\u0017m�\u0013�\u001f���\u0005a.\u0019^��A\u0019�\b���L���Qc�뽥�H8��H��\u0000E=\u0007=�4Й�L5��q\u0007ɐ\u000e[8R��~��\u0005��嬿�a��m�ƿ��|kP����\u0010\"�\u00180��@�\u001a�$\u0018S$�k���i\u0015��^�\"�#2Ѵ�yNy,<�I�kg��̶\u0017+o\u0007\u0000���\\C�*\u0004V(N�\u000b�\fg䁴a\u0005�1i˿X\u0002K\u0019ܭ�\"G��dȀ\u0012�XX��`�\u0012�W��$]�\u000e�fIA4��^�\nB�\u0017רAV�xh�\u00182E���]��\u001f�ښ9\u001e�~�Ń�/�8e���\n�\u0019P\u0017\u0011L��l\u001e��\u001b�\f��V���A$�\b����s�_��$�[�o\u0002Y*�\u001a3pd���!CZ�\u000b\u0012�Iįz\u001a\r��O\u0016թ\u00182���v�zC*؍ik��9^\u0003\ntĔq�z������\u001d�\"\u000bVM\tL���C�\u0014���}�._�=�\u001d��7���)gND��\u0001�(4��v0��ܼr���T�\u001aF)#�v$d�#ֹg����M��g\u001d�\u0018�h� �\u001c͒Ǔ&[�� �:v\t��G��f\u001a��oѝ�5{��\u0016�Νi^\u001f�YL�ޮ�X��\r�Bϻ��\u0016�h�T�����B��J�̥\u0016��a�L��sE:�`YB\u001c�G�Ni��\u001e������o�\u0003i�Nt5\u001e2[��ފ\u0015n������AL�\bԀ�LɱS��Ұ3���j�~��Z�r�+����8h�\n��x�m���FS�Ce�|[��41bfy��N\n\b�6*\u0013\u0012��H#���[�\u0004p\u000b:��i\u001aN��^�\"B;���\u0002Z�\u000e����=�\u001d�\u001b�\u0007,HuA\u0019J�J�,\u0006(��Q�#��JU��d\u0012�\u0007\"+؇�\u0005h��ٚ���\u001fh&5�b~�S���� ��$C\f��\u001f�\rVE$�\u0013��G����3i\u0015�\u0016�`�׹�>�Z�T�;T\u001e��W�qg�LE��\u000e��\"���\n��5�!��u\b'�a\u0007�d\u0006������kZ;癟�Q�\n�4�\u000e\f��$�\n� e\u0018\u0000�a�\u0002�O��\u000f�ğ�%\u0016�ۗ~��`�p���tHؖ\u0011��1��e�\t-��2x�>V���\u0002�A?�\b���b#Cv���@���\u001f?jZ��9)W[Zh�\u0001nE\u000f\u001c�2a�oyuK\u0002ʂ���Ь�u(�?b�/�Ɩ�L��\u001e��n�ܬ �.��Y������Z�a\b�Esk`�Q7�X&��s\u0014|��5�P� ��c�\u0006׍2OL2kNc\nd\u001f�dф����\r�\u0015W�)A�\u0010�G�BU\u0003�\u001e�\u0005\u000bL|�5-��\u001d\u0011�Cʍ�\\�|;g\u0018��X\t��Ψ/��qBR��n�p�xD�����)�m׹��e��*���ȓ+����=\u0016:2�ط�\n#\u0010\u001a�~�:�����\u001d\u0000��%3��‹|��K\u0007\u0000�zJ�����Oi�[!�x�|:.��^�%g\u0014r\u0013��\u0011�f�Sk2�\u001e�7�n�\u0019N�\u0010��d���A4�\b����bE�Ⲽ\"�nn��\u0006H��t�A\b\"�/��Q\u0017:�h\u001a\u0015�oY\u0012�#�b���]gj��K\u001f���(��;mR<}����e㝻�YR���1�G���\u0019G���\u0013��|9�\u0005���\u00171�`�X�#��u����\u000b|�\u001aUAw(@����b[��w�܉S�\u0019Qx�oe��t��Z�#(+D�sH�\u001f���t�m�c\u0011\u0010�:&8\t\u0001��gӤ�C� a~�WMfk����\r��%�#dv8\\7��:���\u001f���PƄ�\u0019:_Ъ��.��I0C5+\u0007����\u0000y��c�!2p5����f5x��_$\u000e��\u001b.�k�1�*�g�c\u000f�o\u0014ݦ���O\u0004]]s\u0014�])��A/�\t\u0010���eä�(�:S�t��ef\u0002d��|�~��ÚI\u0013�tI\u0010�\"���L! �~i�\u001b��\u0015�}��1T�\u000b\u000f���%�N(i�����\u0015��{������#ڰ��@W�ǂ��i~��9�p%!�N�5�֗������\u0015:qG�2�EO��\u0016��En\b\u0012�\n#*Uj����$(ڒ�����\u001d=Y8�r<��<����B�*p,.$��ۮq�}k$\u0002$�%Bלo���Au�EϦm�8G��\u001f��* g6��\u0017ɸfM��/��/\nC�M\r�J+�����ce8KF�\u000b��\u0003�w?�NwV2\u0010M\u0017�k%���@KР�O�{\t��lw�R�6\f\u0018�5:���<\u001eґ$�A@�\t$���bI�ݦ\u001e�$L�\"M����n[\u001a�Y��R�\u0001N�\u0012�r�n\u0016VDZ���?aѽ���C�r�3Y`'�D�+�Cy]\u0013jIF\f���\t\u0014�\u001e�MG8�\u0006{uf�]�[�}�)[\u0001��#\u001a7���Ѝ\u001e�UE\u0000���ν�^5�N�>�@/u\u0012>�� �R�A\u0017��$-�u�B@�\u0013��ӹg�^��[\t�b�`9�Z\u001f\u000e\u0007\u0018�B#�*r�jo�^J�ػ������c��R���f6��D����[u\u0002�\u0006��)@Un2\rs�-�€�#����9���%��\u001a\u0013�7�\b���a'�cb\n��4dLH��k�\u001cV��\u0006�\u000b�\u0012'Dj��ޒR5FLO\u0010�>����;\n��|\u0014Z\u0007zwrh�+\u0003ݳA$�AF�\t8��MsA9����]�\u0001�Y�=OLj�9|�a������\u001a\u0005����^\u0011\u000e=�\u001c�[|S#x��h�\u001b1�E\u0019��(�ň\u0012�h\u0011h>oS.�\u0012D\u0014�a��:r)k�D�ئ�ґ��fS�^�����\u0000�0�\b\u0014͝C4;�\u000e�nR\"-�\u000bnZI\u0019��7M>w��0\\鿢�\n�8��\u0019����\u0016\u001ate�EvA��\u0016\u0013L<���'܀�_\u0004ΞB*�Ỳ�\u000f�]j\u0002�\u0013�-WFi�ݷʿK��l�\u0003d�ȷ=q7kY��\f��\u0000c�ΰ�3��\u0010\u0016����j�t����Ҏ����p�#�}\u0010w6|�x3T�\\JΏib\u0012�\"t�,��!~��\u0019�yƷ+�Gm̅��\u000f�P��{\u000e2�6|\r�\u0013\rDIt!�p��=�H�A@�\tL��L�r\u00059E�a����\u0013`\u000e\u0013\u0010`��Fn�?����GI{43-\t\u001ac�R�\n2���X>���k�����/�\u0015��\u0014X\u001d�/oU�\u0010��Y�`8\\�`?@��$���\u0012t\t3W�}�\u0017\u0017��p��\u0004���\"+�Y���\"mp\u001bc��V\u000f-IGL����ޟ���9e�YF��e\u0011,\r��vȩ\b4�\f�\u0007\u0007��ٮ\u001a\u0002-�\u001d�ODz\u0001�\\J�N��y6�6o��C���EM�6\u001e�&6i�T<٣S�'��YU�^w����`,�~X&��f\u001e%�\u001b\u0002oy0M�r�-Q�k咭y���Pe���MV��N�\u0016\u0012Ț-�g\btF\"�ˈg�Zy\"\u001c\t\u001f\u0014�ES��\u0011��\u0003���%�K�\u0001:��AJ�\t`��L�\u0012�u�\u001b�'�\u001a��c�F^���k��\u0001Z㕇v��J��w�\"\u0017\u0000�+��H�\u0003�\u0015����c�*��R\u001fz/�)\u0010��3�C���H&�g-�\u001cIw֖��+I \u000b`$�V�������j\\\u000ba�i\u001cpr\u0019�J�0X��\u0005z{�����*���Cw�\u0006Z\u0010*�ܜ�$l����b�x�A����S�E\u0011�v�\u001aH ���\u0018�\u0015����a�\u000eX��\u001b�o�\u001f�&��F�ap\u0011���C �1�\u000b�C��\u000bk찗�S��\u001c&�Vw�9�\f^�\rh#%[�\u0014�0륗(�s�Z�\\d�5����\u0005E\u001d�\u0001��\r_���{ĸ�\u0018�A\u0015�t\b�!�ӛ\u001dob�\u0017Q6�sZ2�\u000fD�\u0000e�EM}dr��B`�m76+��m\tU�H�5�A:�\tt��MN��:\u0004<�>鑩տ��3���Д2#�`��\u0014\u0012��\u000by�\u001bB�.)��:0�Hd�G5믳/xA�\u0000�\u001f���:�X\u0002]s�s�=�\u000f\u0001�$����B������\u000e���\u0013}Ic��\u0000\u0007�_޷*�6�y��NG�B��\u000f�8CqT���/��IhE0]S^+S��4MW�՛���\"��u0�\u0007��֢6\n>N+@�7�D�s؇c�h�\u001b�����7'54愱\u0001��i�Kv�w^w.��g�\u0019hŴ[���`��\u0002Ҳ��iR���c=_&���0�\u0000K\r\u000fq+\u001f\u0010_?n��\u000b�����Ba�7!�Jl��Tk��ZJ!}�\"X�(ğ��P���V�Uc �,\u0003�\u000f�S�A5�\t���L�a��� >j�+`�g�\u000f(��l�H\u0007��;O�'��G���T��m��vy�b�G\r�\u00075���x'�\t�L��T�JG'�a2\u0004`8.��+`��\u0011ӱ[�a2��YL����A*YX'i�#l��v�O�_���&2mL�<\r\u0004ɛ��|��ɴ�Y��~���#kO����U���r��p�S=��ګR��\f��42x\t������:�\u0015=VU�[\u001a?�`�\u0016�D\u0015��o���\u0015���>\u00159#-�\n�\u001bizf�\f\u0014�?Щ���\u0013�A5�\t���Mz֭���6��c���n��y�S�\u0007��\u0002%P������#�s��\u0011�Ξf�.�\r�a�Z))O�&\u0001.�e�\u0011V:a�\r:x�q5.\u0002��\r>�X\u0015Ľ�w–k�\u001f,�3�+b�#:�\u001b��i��Dy���=�?�}��\u0000�gt�^�\u0000�\u000e��=�bϯ��\u0016W����0�\u0004\\p�m?3�|\u001f!��%\u0000S�.��w.n��FGY[z\u001d;��RgR�I��faƻ�}.�քZ�DH��\u0003��5�\"�gU\u0017\u000b�0�\u0011`��\u0005�H�l��>!��\u0003\u0016\nz��j,S�ἤH\u000b\u0013g\u0002�\u000f'�\u000e\u00163\n\u0002!r5\u001bs{���R���\u0019�$mc&��_�M\\\"1L�ee<�0n�A?�\t���M{\u0011+�o�(����FF\u0010E\u000bsْ�\u0013��\u0007\bo�o��_\b?\u001f��CF\u0016\u0012_�.Z\u0018�Y_\u001a)̼����p\u0018�,��B��x\u0010\u001eCY�e9N{j\f��b_��\rb=��\u0012�<�&��;���|ۙ�\u0006�\f.�\u0007�'�\u001fh/\u001f�\u000e�D�B���c��\u001fB|�\u0011*H����|%�VH({I�-b4bj2i��O�ŸАs[S|��\u001cT�\u0019s�>K\u001a�$X�t�Z������B�d�??����9q=�*��N\u0000�9�j1���1\u0019�2��v�\"�Ժ�\u0010������\u0007\u001b��\u0003 ��oT�{X���8�5���{�������g\"�\u00066\u0013�Z�y{()�CR�A\u000f7h���a@��d�\u000f\u0014Tœ�{*`.�A6�\tĀ�L�\u001c����K\u0018hL\u001d��r�6���{}��MyƑ% ��b��s8�xn��5��\"e�1��U�ҭ}a\u000bt\u001f�#�{����Qw�g�\u001a@Q�!��\u0002k�y�� \u0016A�0�̽���\"��'\u0014[C��&`����>� b�n\fQ\u001fw��`�\u0018hsc��~�ȼ��e(��ѻ~��\\\u001f�v��˓\u0012s���*�\rN\u0011\u0007\u0001����\u0002����\u0018 �O����:=Q�NX�9h�� �[p�4\u0001�4p:;���瑒��\u000b.�\u0015���4\u001e��\u0014���˯49Fl\u001c�0C\t\u0000���(�W�\u0019���\u0013���H�\u001ah�\u000f�\u0012��_��r�3j�\t[?\u0011*�J\u0002�h\u0002\tI��յ��{�ۣA<�\t؀�۸фz����H��\u001aw\u0013�:�STg\u001d\u0014�(؃�{���^�5�\u0014���7n��\u001c\"�Z�<���-�'�W\u001a\u0003���cem�C���\u001b�Ö�4�ɕ��;٥�\u001e��C�\\FG\f��\u0002��D~���XE\u0003\u001bd)��\u001b���L�\u001b�����$�A�\u001a�|r�\u0014�k\r.�*�_��\u0012�.�29�5k̏��1۠���\u0018b1<���č9Y\t��qJ����&=��{���VҶ�\u0015\u0019�\u0000��l�/g��\u001b%PvV��|j^¦i�/��OɄ�q�\u0012��������ϊ��[Bb!\u0002\u0018�o�\u00117�\u001f���\n%\\��\n�/�O��)�<��Au��m��3�$�\t-\u0017���\u0004%@q������A9�\t��L�9�ʊ\u0004�߼��\u0000\\\u000e���(9^�X��λll�Q�\u001a��4���f\u001a\u0017_����P�w}3\u000f�)N�\u001a�\u0018K��r��\u001e\u001b�.��s�ұ�<�\u000e[�BB\u0011��O�{�1�\u0005'i\u0000\u0013��:t(��P)Ǧ4���Kyd~��\u0002��\u0006\nj��'L��\u0006\u0005\u0001�/a�S\u0019���\u0017,�o�����l�y%�kpH����\u0004犯�E.\u001e\u000bc� ���$\\<��v\r�_�!2��]fA���#w��\n���l�E>\u001aضqj[N�\b��@��\\]#F3U-��R��L���\u001cs�<�ˬ�:�\u00185t��.�6�z��O:��a�B!��-F��\r���\u0019���\u001d��똠�@��\u0007��;b���A/�\n\u0000��L�I�\b\f~�\u000b��V�\u0010��\u0013���:�ld�\u001f\u001a�\u001cu\u0004=k��N�}9_3�U\u001d-�\u001bdu�\u000e�\u0018i`�}݄�\u0012�\b��;��\"��\u000b�P�S\u0000\u0006�X��I+ )�I�R_DUN*£\t�[�\u001e'�\u0018r�� Q���}p�݇��CEoq�\u0000��A�\u001d��7\u000f\u0016�\u0007�\u0011��@G$�<щ\u0010\u000f�XJ: �}z)0崱k�\u000f����-q;�C\u0007J'\u0006~��-�]\u0002\u000b��9��|�\u0015��\u0007\u0019&�$�|T����n��\fL�3/KS\u0011�\b�2|�<]֊7��>��!\u0019�ݡ��\b�\u0017�)�qH n�nA\u0010�1$���.b-�G���)MԐ��zK��\\\u0002\u0015�ɷ\u001c�A2�\n\u0014��L�l�O\u0002\u001fS�J�]a\u001e\u000f�a�\u000b�\u0003��;�o�\u0019�\f��M&v���_O�\u0001�^Dի�.�5�q�\u0010E�\u001dh!�S1k\u0002C#\u000e�]��Ĭ�kn�͊ɤH�4(�+�\u0005\u0005�D<�\u001c�����b\u0018X��u\f�\u0006�\r�x�ۥ�hCzbi�\u0014E�ǫ(���^��6\u0004�\n��{1��\u0000�\u000e\u001e@�#ϗ�\u0002E�z��t���S\u0011���}��M_�?ߟA�8����C\u0014lA��������c\u001d\\IY3a/\u000e�h�\u0005�\u0012�u�\u0010�<��#�Y��#\u0000'\u0018�~w>;��6���E��\u0001xȀ�g�J7z\u001b��w\t��Ç�l@4����\u00076��vؙ7[�\u0007\u0004H\u0002J>I�\u001fY\u0000�Z�A��\n(��|�\u00139\u0006L�M\\�ӓc��@8�\n9�����J8ﳖPQ]���.as��5�`b���-rf�!\u0005�៩��o�\u0006\u0013S��G!�竘�z\\�6/�t����\u0004\u0013Rr �>��S\fgf}5,��o\u0018��\u0007���j\u0015���|�\r뚰�%!�\u0006-�\u0005Ħ�\u0013�IH�n����\u001f\u0011�=\u001b�\u0002G�7�\n�vsӋY3�k�����z�( ��̾}��\u0019�=�YbM6\r�T_��������\u0000U�au��\u0004��(�\u0014c�����w׻���ln��!R[��0PeNa��\u0006�\u001e\b�{\u0005F\u000e\u0001�y܄���#^}�1op�Q\u000556���I�����Jo���[pԮ��3��')�D�P�<�4;b��(�\u001b�)o�_�.\"\u0002�n]0o04\u0010f�%��Fw�\u0019\\�\u0012��\b��}�\u000f\f���aBi��8\u000b�\"\u0006�SS\u0010u����6�$�\u0001�����5��\u0016��\u0006\u0004����#\u000bَ�g\r�Ba�$[���[?���Z\u0019Ŕ�}�H���ݶ��­�A �\n<��X��^VH�7'c��\f�CrtP�\"�t��\u0019\u0016�U�޲�R�C�q\u0007\u0000%��\\vP8\u0011y\t�}t�\u0003\"�uLr\"F������\u0006\u0003,|�uߞ��\u0015��rE�\b$�4������,�\u000b�ʜ/\u0018��\u0016&��Z�\\/�\u0006[`�M����\u001bU'_��M�\u001d\u001c\u001c,e��\u0012Z\u0019�\u001f\t\tH\f�ǻk\u0000�}\u001d\u00046�÷Ƿ3\b�\u00180�A�g�\u0006��A+\f�\u0018���\f��������\u0017Y\b\u0004�7q��\u001fߑu)��\"��\u0002j}�\u0000��}]�k��\u0015'[\u0016�\u000b�lW\u0002|��TjG\u0007\r;��r�Vհ��'���\u000bld�ښ��� ZS�\u001bP����؆�\t�A\u0019�\nP��X��J�<_:)�\u001a��F\u0016��\\��L�v�\u0003�\u001a��\u0007H�*g'|)����\u0017��f�|��WA��9���^:\r:�ݍ�D*}�\\��\u0017U��D��Q��6��o��k�m�]L�m���\u001f҂��\b��\u0003^�d�����rL�X,+�es�BsԆԷJ/E\t\u001f��~�%%�\u0002ryj\"\f�\u0019\u001d�k\u0017q\u0002��z��RMX\u000bE�^�;rٙ.5�œ1CY��!�π\u0010\u0010��p\r�h�x\u0018��cO\u001e\u0004_�Dp�Um\u0015��*\u0002�+\u0003+��\u001b\u0003.����2�\u001e��|���D\u001c�\u0001�d� �@7�!W\u0013�jM6� {�����Z*f��A\u0014�\nd��X�\u000e�\u0013�E�\fa�\u000b\u0017X^�P�\u0004\\RX��I\u0006 ��\u0005t����G����cn�D2�\u000f���G\u001c�IZz-�JG��ry\n�?��\u0019g4ꟴ�g�\bش\u001b��2�ĥ��\u00140O_n2��:\r�`�SEn�\r9d8��z\tqr��u9�\u001e�y�<�ʣA#�\n���X�\u0003�jm�Pk=������E\u0001��0�Ѻ�S\u0005��N�@�I�Żv�iVH{|�[ey���d�h�\u0015o\u0015�5��O�\u0019̼�Ft�9ށ��\u001b�!F�A�m����{gҊ̏\u0004~M�D�W\u0018L?R\u000e��\u0015/�A/\t�s?�h{�j�ԧ������Eبr��a\u0004��]�\u0002;�oq?��\r�W3�����\u0001\u000f�\r�O�Ui�\u000e)���\u0005�a&�%�@��F\u001cz��\u0015y�F\u001e\u0017� !��'�\u0017���s�\u001aZ��\u0015�D���\u0004ż#P\u001aOY\u0010\u001f�R@���g;ak\u001a�*�y��[_Ս�5���\u0000ࣿ�Ù��K\u001c���ш������h-_��A&�\n���Na��w5O�%�GcO���\u0013�ㆋ!�;\u0017=�%e���\u000b�\f�\u001aH��EO���*�Ԩ��\u0010=3��IA��\u0000����9\u0016��kU�T\u001c\u000bU�A�\u0016&����U\f�\u0013#6v�Oɼ!&\u001f�X�vM�\"#у11��&��;aZ|\u000b0:��^�|H\u000f\u001e�i��P�b��L\b�'YL~܏�\u0001i�I�\u001c\u0018���P�6�@��Y��\u001c�\u0011Hm��\u0018�tqm��!\u001b�\u0007�\u000f���i��\\$ؼӧ��i\r�y��f\u000e\u0010M�\tz<��qE�ƤXb(\u0006]�%�KՅS�\u000e)���A'�\nȀ�Lи���\u0012�\u0004���e���֗\u0005\u0000�e���yES�D���@6�\u001b5�̎���\u001c�\r\u0018�2;�B��n�7�DA��Ee\"�T�*�#�SG_ߟ\u0004X�;�\u001c����\u0007\u0013vMxY��,8Z�\u001a\"ժjz���[;��>\u0014�3d��E����!9Q�����E�\u0000��&�\u000f�I�\u001a���)Q��\u00113\b�?]>b�9^�{��0;CG���\u000f�/�5J*C�/�%�]⡫�o>�\n�9��\u0011�\u001aw\\��\n�\u0000���@��@&�\u0002\u0015m�f\t Ne\u000b����\u001d\u0000��\n��\u001eC,�^�m�Cr\u0012�\u0019\u0002�X��śE���k��\"����\u000fU��AE�\n܀�M2\u0006\"�\u0019\u0010�Vod\u0012�M�寬\u001e\u0004���d��3^Iu\u001d�\u000b�)����ύ�5��U1\u0001�Q���.����X�\\�\u001c`Ɖ�ٓIk�D>08�=N�\u001e�:��}\tB�\u0001\u0001��)2���՜���\"\u0014�<(�\u0000\u001bY\u0005K�����\u0003�\ta��(!�G�\u000e���ׂ<\u000b�`�5�C��\u0006\u0004�t�Z\u0010�\u0014�.b��{\b�i\n|K�u�>g�+��\u0006�:ю����&�\u001bɀ8�С\b�*cM�\u0004U\u00163@\u000bu�\u0011����x�T�b\u0018�[~'�\n1X'��w0�YNB�I}E����>{�.\u0004J�U�O��#EH�P\u0016c\u0015flI�\u001dY{\u001d\u0011�w��zc�G�yشV\u001a\nF$��\u0019\u0014��\r�%\u0003i6@�#qq\u000e(��\u0004\u0013�AB�\n���.����F�>�5�'ok\u0003����g�ޭX\u0018s�fDl'�]�\bF�ϚE�\u000bP�P��?���l'ΏIk�\u001cR��2ls4��n\u0007\u001b4*Z8���̴!Q�ӱ��G��?x����ҥ\u001e1e3]\u0019'\u0016@t�id��7x�n\u0012?�v�\u001ek�XQ\u0007���ע�<�b{�N�6��|\b{G�Tq�_a\u001e�\u0010���CO�(`��E\u0017\u0002�\r?/�E���_�\u0015���؋�36�g�\u0006_V ո0gKp�%M�R{6\u0007\u0013\bCn����nW�\u0001�\u001b�\u0003���\u001b�[R�����(@C�r\u0019�\u001fyF�?���<{,��\u0016�@�Q���\u0003\u000bO���#%�P\u000fL���^�K�������UV\u001b9́��,�gqSq8惔\t9��A?�\u000b\u0004��M(1,�.���\u000f\u001c\u000e�ݴ��B�pK�M�D�N��\u0006�\b�)f�\r�����n��f�\u0002$o����\u001d\u001e7�\u0018əf\u0016�\u001e2\u0003o_�ܬ\b���.]�١\u0019��C\u0000@I��\u0006�vC|���`�X\u0012,��\u000b�e�\u001b�́>�ճrɴWDPi�O\u001e6>\u0018\u0001/�-\u001c~�\u0017�H,�6`w72Jrm���t:1�\u0000?�v��\u0000�\u0010�\u0010�?$�c��6��wFA\u000b�V�^����?\r���`թ��\u001f\u0001&O6ew������b���\u000e����\u0001tK8$;E�_!\u0010r�c��M�I�&q��O�ux\bvk#NF7�N�\u0010ͩx\\\u0019\u001d�� A柖�~�\u0018�s�n�\u0015\u0000tD\u0002�� �tv\u0010/��L�vodG����c�뉣A6�\u000b\u0018��Mw&i�^�+�f\u001a�\\�W����x�\u0003���J=��0\u0014�~`\u0002�7BF�\u0016��Tqz���_5\u0012XXU>-?`ط\u001arQ\r�k���\b�8���\u0014��P\tX�]�|�4�&�w�?�t\u0005�\u0001�P�\u0012c�&�j��{�\u00171�o/\u001e�&�>�>,�\u000e���m�Uf�@h\u0019�\u000f_;X%�D�qFk=��a�����._\u0014F����� M}\u0011�I�s�4A�>�\u000fo�a�a+W\u001b\b�\u0010fj?�[\u000e��Vl�Cf۝��|k���S�U�?�\u0002X\t�]\f�2U;w��\u0015�R>i$�/ ��3F\u0010�\u0012�wۯO�):���GEA�\u001aS��[&����E��\"�H8Rm$�\u0005�e��]&���I���A(�\u000b,��2x�4�6�\byX�\u0018F�!\u0006\u0000]��)��\u001cJ[FTT�#�\r�k @\u0005\bzI\u0010qbE\u0010�^\t}��P!;\u0001*\u000f'H$\u0000\u000bO6NkmZ��\t�7���74\u001c�`@���tOT������\u000f\u001e\u000f��s�*������:�8E\u001c�\u001a���wF��\u001a�*�>\u000f��2���\u0000_/A���K��z�\b�/^H��|�:t�\u00025~\u0019Ǻ�\u001c�\u000e\u001d��O�s\u000eb\u00056>\t5\u0013\u0002�\u0007�)�z���\u0002�2\u0007$�wK\u0015\u001b�\u0002|���$6\u0000\u0013�\u0012W��\u0015Os%�\u0015g�\u000e�3�z��e\u0013���y?�]b�&\u0001\\躽W\u0016�i�H����\u001e�\u0000�%\tji�仾�ۖ#N\b\u000b\r�\u00108\u0010=�A%�\u000b@���c6��b<^��X�s!^�Sq��\u0016��e�\u0012a��Lp~~�\u0010=��\u001d\u0017�\u0011F�\u0014ȣ�M'��\u0005���\u001a������\"\\���̶d��w�/Ӈ5�S}�J\u0017�\u0011-\u0005{�[冭\n3�M��f��\u0005ѐj\u0001N\u0017�#<�\\�^в\n�k:�\u0006�=\b\u000b�0K^kB��\u0006���F�U�Wcy+��\u00120\u0013��3C\b���J�)�\"/`��\u001b����\fz{����Cަ������dѕ`3$\u001b�g{IAW�E�P���D|\t\u0013�z�\u0006={�m~(� �\r[\u0019<�D�!�\u000fN����.�-�&�\\\u0010B��z\r�B��>��nh&�\u0002`7\u0019������\u0000��A*�\u000bT���U�-xx\f\t\u001f�z��*�r\u001a\u0000�&_i���\u000ft��[�u.Ӂ�)\u0003ҫI�*���Wπ�\u000f��\u0010?I\u001d(�\u0002_K��˱a\u001f��\\�v��j��\f|��V�W��}��\u0010�\u001c/��\u0007����SX3@\u00004���Ok3<)e�E����NrI\t}�m�PO\u0006�%NU��\u001f\u00075\u0018;�TO���eO\u000bd�f�_�7���\\6�\u0002k�1���V���\t9ٹe™�\u0013�2��;x|Z\u0019qz\u0001�U꙳H���h��\u001e*�q�Z��A��Y#0̣4��H7\u0017�!nJ�\n���\b��9I+�C�ѫ���L:TC��2\u0005\u0002�c �>'��o��L�\u0012\u0002�3��ӈRᦣA@�\u000bh���f�a(�p�T�7�\rqe�\u001af�vo�~\u000f֑W\u0010�֝?rc��Ai��x\u001f�gm��p�\u0016W�<�\u00136\t\t\u0003�2z��1� 6��\u0003�U��B\f��q��\\<�>�]\u0017�)\u000f�\u0017�[�S\u0012�E��Y#�c@k�:�����=K���|~H�hT�\u0011M�!��`\u001b�l~��[�H�/n���ė��r�fet)���)\bG=�`��שq>sk_�Ih���\u001bkǎRՂ0\u000f�\u0007;\u001bz�\u0018�i^��6]�!���|%p��\u0014�hf�=�\u0014n��3\u001fzJ�*���0�ч,�ri\u0015r�D?Qv�e}�~+\u001eU���x�O\u0006\n��\u0000T�}�Zw���Yw��,��Mإ9�v��G\u0010�\u001b4����A.�\u000b|���b�I�\u0018\u0015�\"!�\"s7�\u001b�\u0014����af擦����\u001e0����*\\+��߶W\u000f\r\u001cz�߇�t�M\fiA���\fE2������\u001e\u0015\u0007�\u000bl 2(+�\t\b�cg\u0002/�(��X���樫�\u001bS���6h\u0004�\u0004��>�\t��9M/�PxM�=f\u0018T�nv���pW�{��P��Vr�\u0005=\"�e�\u0018��4\u0003�] D��\nwz2x�I�>\u0011���Vu\t�w�5l�xq2\f�Z�G�Ë_׈��\\�vg£~x\u0005�f���jg�\u0018]\u001eE�L�pÈ��\u0007\f�\"A\u0011�\u0014˚Bb�eF��`\b�^0 �ɬ�Pp����D\u0004�V��2[uԂ�طR>�U��\u001f����A+�\u000b����c͡r�ܑ\"\u0015��<\r1�Q���F6�P�Ջ�K��|���$\u0002��\u0010�\u0012���\u0014�%�8��؎-�G�;.3\u0012\u0018R[\u0013q�0���z����M�\u001eA��v�\u000b�`\u0015��X�{��a(cg�)��y\u0018‘�vl�J��(W�$��:��=/�\u000b9���pr�%��2�\u001a\u001f+�j/\u0004\u001f\u0002p>�\u0007�(ל\u001d�T�\u00122Ln\u001d\f��9���g���ޫ!\u00166gTѫB��������[9�\u0007{���8��։p�e��O���U�$2\u0006��G���5�\u001e$\u000f>\u0017��<�9�[�N���`��j�a�+L�e�B�\u0015�q��臞\u0016'\u0017/B��#Rc�f)Hy\n���\u0017�A-�\u000b����bЛ��\u0011w側�2\f�S�0�kLr'�6�>\"fZ\u000f!\u0014iuO*> 5Y�ӎ9�����5��i���\u001e9�7\r\r\u0006\u0005c��ܨ�K�~P�t�so@�a����M�����fA\u0018 �H�\bذR[�ʞ��o�%\u0019}a�\u0011�;�c�!<���\u001e>-_�P�W\u0002�\r\u00052�����\u0013Z��v\u000f}ɨ⊅b�P��\u000b�_��U�ǟ��h�1\u001b�����\u0014��D��8��\u0007����i�������G&�A\u001cE\u0001?�<\u001c�/��\u000eY\u001f��?M���\u00111:\u0007��rX@��6��_��C�N\\\u0002�&�\u0001�y�$�5�b\u0012�.\u0000.h+0mG�N�!��H㿿NG�j -�Z����\u0019�x�ʇ��!�\u0005&\u001a�3^��h:\u0006��B�<�f�M����d\"R�¢��,�y�\u001f'OJŻb�\u0017�oc4�&Z��I�*V$�0O�s��3���G�\t�r�\u001c��H4Ue��H\u0001��AJ�\u000b̀��q.A�x\u0001��\u0012�QT ��\u0018#\b��n���\u001f.��*��\u001dd�U�;��t�|�Y�'��e�p-\u0003�k���P�����Z�b\u0011x�F��Li|f���Wa��[n��\u001a]\u001a�Z�\u0005�C\u0000��\n�\u0007���j;Pq�����\u001b�*qgT\n��Rʘ\u0003�������Z�)�^+��3~#�цq=��:.�\u0015�a��%\u001b�{��\u00130�\u0006TY\u0019���|��z|[�C��8a��k��O�E��G;��h\b�\u001c�<\u0016c4H ���p\u0015�*pOW��0�?��\bؕ�2]��AA�\u000b����d�g�D���_춉&�)3h\u0012;\u0014ȣ\u001bʠ��e\u0007>��Ŀ���Q\u0007m\u0006��\u0006ҝ�r�S�y�G™��i�\u0001\u0016��a�m��@FK=\u001dgl�5�A@$\u001c�8�{�;*�o����\u0015(����Φ!ko\u000e�C\u001b\u0015��\u0007\u000ec��a��\u0005K�\r�W�RW\"hV�ܞ‹6�yS��S\t�\u001f[�x��\u0011X���Թd\u0013~�^\f\fx�޼V\n\u0007��rKM/K��Ö_!7��[\u001bR�\u0018x�B���&ٷ��]���D$�h\"��\u0014Z�Q�.���)�)JXt����\u001a�z�ԬM��JLݝ���\u0017�ձ�7�;�\u001a\b\u001c�Rޞp>���k\u0004�Tħ\u001cK��B\t^�k���|��\u001e\u0001�5���v\u0006DL\u0019��AK�\u000b���l��%a��\u0015�\u0018;e��2�\u0003�\u0004���\u0019��;Y$�Q�x\u001ehu��#��^K��Ʋh\t\u001a��h��\u0003v��m\u001f^�X\u0014i첶�K�d�'\u000f���\b��准����t������[�<��#� w$��0A\fղ�%�����ǂ�\u001ek�\u0014#��\u0013��y�Ÿ�V\u001eq�?�W\u0002�\rP�\u000f/�ݱ��%�g�r�\u001d��\u0014K\u0005���\u0000��\u0019���9ܬA�w�r9����J��f��\u000f3�\u001e�ұf\u0001����tA���f���ĝ�Ѝ\u000e�\u0010I��F�.f����W��A\">f�=�9}�\nfz�|�i�?.}Ï|�}\u00021�k<�\u0017S\u001dx��(�+3\u001f>�\u001d9z�:����V��{h~4�~u��[ q�M�G��lFM�B\u0013�A8�\f\b���2rv�\u0017�N�;�B���e}�h�z�sY�#\u0002�d�����U#�^\u00067��;.R��\b\u0011�M�O�4�A�K3����^��*�\"�*\u001aE�� �\u0013y�2��_\u001f`1_m:d��,�@,�����:<9|��\f4�3?S�#NL� ��斋Q�a����~0Y�%�&���*g���4ICoٚ>\"\u001b��N<9�c`\u0010���_]�1\u000fR'%\u0012�b%�\u001a�������eIToԅ\u0012u0�҈\"gu����*�\u0016���\u0014i1�\u0012�D����\u0001�4�\u0010��7R��nO��b�\u0010KB!\u0006�\u0016\u0002�%b\t��ؔ��8��?ucP�����[��!�/yl\u0017�o��pǠ�\u0003��\u001e�'a�\u0013�A;�\f\u001c���\u001cw‡5��s}d�'�\\����ow`7�-���������8\u0001\u0015N�=l˖�+�ù�[��\u001e��|�\n;f���\u0000��\u0012i�\\}�\"|m2)�r��?y���&\\ȵ�!��F���j����Uvd9\u0018V1�Bp��c?��\u001d{uP$�Ҳ���\u0013�Ɖ\b��M�\t���V\u0019Y~1\bsw\u001b~yy\n/��\u0004��\t�ـ \u0011�g>��v\u0004��rS��\u0001\u0019�|�g�'sS!V�V\nJ�t����]I��l���]B��\u0019�p�!ћ�mK��ω��\u001b��-��a���\u0011n#�1\u00029M�����}^#J�:����]�c�\u0003�X�\u0013$ge���\\�Ϯ%�;n�K.�\u00025�~3\u0007���Y�\u0013�A&�\f0��X��]�O\u0016��b�8Je���\u0015]��\u0015�I\u0005�}0�۹�\\K�D_\u0017�Y#DZ9wr�|��X\u0018;\u0012\"(+D�t�\u0012�\u001cqbf\u0007V��$��\" D^�� x�l��w��y\u00075Q�펊��0�fxH���`8\bwNT���3?�{��Ef^�8u�s�%Z�ˈ�n^P��\t�ধW�K��Ǚ8�R[)矇q�^�~m\u001bƾ�\u0018\t$�j4^��֟c0~}\\\u0018�1�5�\u000bor�U�ﱺ,�d��o���\u001c��ʊ�\u001b�\b፺&?ḱF�\u0005���4S�`tx\u0007\u000e��O�b��_p`\u0019�9]�����\rLc|�s�I��$��?�jxT�}�A\u001e�\fD��X��J��\u0017\u0015\u001a�\u0010�K�)��1���;�h\"Kķ}�����BS���M.q��\u0007׏\u0004��\u000f\u0013��-�\u0010\u001c���\u0003@���ߒϭv\u001c�iO�u�+m\u0014�w�k�\u001c)�X�'�R\u0013^7�Z�!�v0G>�/����~z\u00020D��\b�\u0005^�lm݌��\u0018.��6��\"�\u0019�|`\n�LUppՆ�������ax�|��P��4_�^\u001c>�}s�6��9Z/;bz�3�b�9<�{���c���\u0018T�[\u0014�\u0010c'$\f5�pA�[!\u0005��f(!���\u00031ޚ\fH��b#�����\u000b�\u0016\nu�fcu\u0018�L^I���}�%��\u001bc_����A\u001f�\fX��Xмt��]��UO�;���.ײA�6�F�\u0014㵴-\u0018�\u0007�Iř|ȁYu \u00173�\u0006<�)T�@k�J\u0017�#5�ى\"�k\u001c�_�\u0006\u001d\u000e��\u000e3@��X�\u001b3�\u0001�� Ԛ\r|\u0013�\u0012��@Zg\u00160�~�G:!zaw��O�e�\"۴\u001c!:�g\n�)̧��Mۼ�k�ǔ�6�4wWO���ar�J\u0019��/�̤��j\bdc��vi?���\u0017��\u0005y��6�nBrv��n�J#��,�\u001e>d\u0018�S�j�����\u0013�\u0000��\u0001]Y`\u0001���|���7ý�\u0005\u0010��߹\"y�DE�9e���0�@�\u0013��\u0004�{�\u001b/��w�%�!?���i�z3�A\f�\fl��W�2�6�[��\u0013��k��Rk�$�\u0016�22\u0015�1�Fh\n�,���Uk�(�7��n�\u001c�W�ӑ-�W.�W�>ڐ1.�z\u000ed��`)�pÓ��E+\u001e�\u0019T=��\u000f\u001e�#\n_�\u001cK��\u001b\b�Mfϼ)�e�y����\u0003R��\u001a�s��{�K\u0001�K�x�E`A\u001a��X�4\u000b�육�>\u001d�n\"X�����\u0017ƙ҇\u0012��\f�An��̡���48\u00165xΕ��\fPw�0�ñ��%��h��T稻d�\u001dL'��s�\u0007j���\u0006��\u0000�\u0010�p-�\u0016�F�\u0007��g�y`&�ye��\u001bG�ߌ��׬'8�A\u001b�\f���L�����U����}=S�rw\u0003�S�\u0011�q\u001a\u00156�xi\u001b�\u001b0�f|�\u0006�0?��4%%r��@u�$�\b�h}���p���~�̿|��6����D7\u0015S� ����+L*�\u000eb;\t��ٵH\u001d�|\u001a\\!\u001b��ʴ�N�\u0010��[\t�)�,�7\u001b���4'�+z\u0017�\u000e�p\u001e\u0003��S����C��\u000f�\u0017k\u0002��e����࡛F?ѯG�k�P�\u001d�����\u001a����5�\u0011P\u0003\u001c�*�D�\u0005˨=P0��Ӳ\u0002o�-�ՖOR&�J^�l|�)W��\u0002r?{\u001f-�(�\u001eZz��\u0002�,��\f\u0013�3�r�%�VB7�=4;Q���)=��A)�\f����a���y--�'��d�y��\u001b�6m�\u0005��\u0001d*A�f��\u001f*\u0006\u0014\u0005z\u0018��\f\n\f�0VƔd'�\u001d�����\\���$!\f\u0007uߴC�� \u0016\t�Z�*n��W\u0002\bڜ�4\u0003Ï�v@���|k��\u001c\u0000��\u0019t��JE�\u0011&5�`t�t\u0014\u001cuN�z�c��)B��ऐ�,6�[D�Q$D\u0010u�@پ�M=a\r�p\u0006��Y}���$�6�q�\u0012E�P\u000f��ׯ �4�t�e���\u0003�\u0006�!�\u0010Yr,h�\u0004�f.��=�TV��\u0019��DWE6\"\rۓWؙܔcR��\u0007i��hb�Z�ܕm������)/F$�5Ւ�P��So�R�A3Y��\b6��m\u001f�A6�\f���Ƅ�\u0000�%l�˗��P\u0017���\t ��g>H�r˴����o�_L�q��y\u000b�7*�*\u001b��\fӓ�|����\u0005�Z}���u9����\u0014�o��+aְ\u001c�ҭ�pQ7���:\u0012l��\u000e6Xg�T\u0018M\u0010\u0016\"ޮr\u0016��RtX�؟l�Ǐ\t\u0003��n�\u0011`\u0018�wqdE�Q�x�3\u0013;�JQ��\u000f�,D6ǰ�4\u0012�3�\nr�6I�\u001b4��_�w|\u0002gA<�O��4�\u0001\u00164\b�s(�\u001e{3���dTv�==�\u000fJ���M�\u0011I\u000b����m\u001eS\bC?�7�d*uW\u0012��n5P\u0005-=ۮS{����\u001d��n1����F�|���\u001d���������at[�H�<��\b�~\u0010\u001a2=��!2�\u001d\u001e�A5�\f����cͨ�^�L��)\u001a�Yŵo14\u0006fn���(o�\u001dEW�X�XHy����U�m�\u0000\u001fR;Z�\u0007����\u001e&��lv�\u0001\b\n�hgk\u001b�]\u0019��:Jp��#�AIv��@��\u001c�m�\u000f��o�O��W|�\u0012\u0007��4��B����-*�\u0003O�\u0004%�$\u001ej�*�9|M\u000b�\u0002�q�gʌ�Y\u0013��4��$�j�]\u001e��|�c\u0017��\n)\"3�\t-��p�\u0006)��ɤ�{�{�C[����\u0010��q��\u0003�3\u0005�/L\u001e���Q��^�z\u001b�����6���\u0005y�I\u0000U\u0010�#��!E�����¼�\u0006S� �\u0004ó�ة��>�4�}\u0007\u001fht�����vF�E�n\u0006�@�`�L���/�C��\u001f�A!�\fЀ�Mu�\u0011ϩ�M�<������'��\r�C�Ca��Ѝ\u001ci$-ܚ\u001a\"N�)u0���`\u001d\u0002>�^��\u0002\u000b��Z\u0002j\u0001!�H[ˑ�n�q*�Q�)��Mǻ�ӽl��X�'�\u0014\u0001w�%�5x#I=r�'�\u0019\u001d�\r�\u000b�B�8l\u0018\r\u0017(�\n�'j��Q���|%�P\b�Ip�<(\u0015'�{\u000e�\u0006�Ӷ\u001ep�ׇٖ_;����9ų�\u001eB�du\u0010���#X�\u0016$@/�FŚRK���|-�4�\u0005>�b�\u0018\u0005�B����j�\u0005�PF��������u_[���Qbd�0&��8�v�\u0015�\rP}\u0019���d_\u0015�P�s�\u0012�A$�\f��L¾�:I�eO��Ll\u0012\u0007V��\b�Y\u0005�Dbȟ\u0007�\u0011*�=�\u0002?m8�Yu�j�o�\u0018����_�\n�p7��_z�#�kx2\u0014ɴ��8�.��U3\u0012��y\u001d}\u0004�\u000bFwSu(�\u001e��\u0017�b����g*`���넗V�fO���t\u0004\u0013�_\u0000̳���zU~f�t�C���X�2�\u0010��츭\u0000�\b\u0011�\b�\u0019�%İ�I��A>�\u0001����h.\u000f��}�1�ÀmZ�<9�E`1 .\u0013��*���l\u0005J� 2G\fo|\u001d�6�\u0006Y\n\\�,2��\u001cߊ�5�,��\u0003\u001c���͋��\u0001���c惠hR#\u0002�4\u0002%m�\u0011���.�\u0014�x��X�w���Z�A4�\f����t\u0001����\u000b$�La:�rL^\b�ͭnL�o�g��u�&��;j�{\\VO'O��~���m\u0003+\t4��z�jei�*���\u000bqA�\u0001����\u001d$!���\u0004n2�\u001e�z0R���\u0016�_J���$5\u000fe?#�\u0002$6\u001f�*:T�_�l�F\fY\u0007�bt\u0019��S����A�b\u0019\u00189\u0019L\u0002�a\\�mb:��\u0005������7��bs\u0000@K\u000e\u0014p��\u001cTG��?I����,5��\u001dEq��\u0018rRj�)\u0005-���3N9�L\n�\u0006���@!+�>�d%�X�jǓ�%�^nzH�����+�d�k�@\n\"5��Q3EȳS?;��\u0017#>\u0017��\u0004\u0017]+�I�A�١a��\"`$�a�8E\u0018��hc�=vw-m��AA�\r\f���c�\td��\u0012���>��Z�������\r4w �\u0001�ʥF\t��m�\u001f�e\u001dJ\u0004\u0007�g[W�\t�����XH\u001d�;Q�����i������䧥9r\u001c�$�\u001a/�\u000e\u0018ɩ`�TxDj,\u0001�&zI���\u001e\\X�\"\u0018\u0012���2���\u0000M\u000e�r�@���~�'�BM�SoU1\u0011\u001b����v��*ʿ�\u0011�#��\r��| J�I����\u0017c��\bê�\u001c<�BY\u0019m�V(q~0�Tx���t�\u0017\u0011� ~�5|-��\u000b\u0004R�C\u0019-����h\u0011��D\u0007��m�o\"u|R�dI9�͂��\u000bF�fb�b\u000fm\u0019rn�vPa�G�0=�Y����r�l����.�p�Wح�x5�Z��v� (��}mp�JW]\\���AH�\r ���bqp��\u001e��(���-���H�h^b/�D/�\u0013k\u0011 ��-�Q��ڶ��H�m؂�\u0015�W�\u001fs\u000f��T ���\u0001 �\u0004�\u000eR��a3n��>%���]<�o)�%vD\fXp��|X��\u0006�$��,2�R�|�1�:���\u0006噞��+�3��R3��\u0017\u000b԰��s^�\r��K�����\u000b4�7Lͻ3.d�4�'�Һ\u001cڧ�᪊�uW�G\u0005arVv�\u0019/�gy�4��\u000f�\b�\u000b�Z�}u\u000fB\u000e\u001dp��|iP}?C�ܟ\u00079�\u001b�r>\u0010��\u0001Gǂ:L{�}`�}���4]��Q&K���s�\u0006i�v�{I��\u0006�r����)�k�=VZQ�瑱J�\u0007\u000b3v�i\u000e��n����\u00054����\\�퍒�AS�\r4���c�J\u0019I\b� �1���U����\u0004T���d1�V�xBQ��̶��\u001f��=%\u001aW�n\u0017\\q��F�RI�\n\u001d�ӯ\u0012\u0007N/\u00124\u0002\u001f�\u000bUH�C���b2��Q�n'��wI��֡pB\u0003NJ�!��\u0013����\b����g���<�{�W�\u001e��JF��|R�\u0004+q��\u000b�O\u0007`P@��k\u001d\u001f1�%c�v\u0013Ƶ��/�[q��\rT���`[���Eߍ��\u001d�\u0015l�\u000e\u00078\u001c�T�\u0017\u0005��=^�]�N�11��|A\u000f�/�#\u0019�v�������\u0019�~W�����θ���+m<@\u0015�U�TvٿY�w�\u0010c��u,����\u001f��N��'�t���*��.�0319$������x�\u000b���1��=�M*C{�\u0011����\u00151�����\u000b%7���\u0015c&+g���l ہ���~`�j~!O��y��Ϭ�_���\u0005��j^L\u0013�\u001e���\u000e\\�0Lo-�[P��f[5aS�����ؖ�\u001f\u0004�C�ıBc�+U'\\�\u0006���F�\b>#����P�q3+�D�<8DѨ�iY�ڂ�\u0015\bf%K\u001a\u0002�`B\u0019$[-e����N\u0013�n&��\u000f?\u0015N�m3��&����'�g0���`���'�ꋱuC\u001a�\u0007gH;}��q*#q&��\t�\u0000�;In��.1Z7I 5�=~4�c\u0015��I��AY�\rp���t\u0001��i.FC�9�[\u0014�GW�P��%���ڵrfck�~��(+G�\u0016�%�k0��s<�3�|h���������d��\u0017\u0007\b&�}og�%{Ma\u0003B���_r\rg�V)!������{O���\\Յ\b��z^\u0011`�w��b/�J�<�\rQ��s�B�\u0001� �Iw��xc�\u0013�<�����������ҕ\u0015\u000b�vO�\u001bᯆ>��\u001039�Ī-��;n\u0015��q܀o���1�+\nr�w�\u001b�`��;r$/��+G9�BD}\u001eM���w^T����b~��Z�\u0016�\u0011֢:j�\u000f*��#:�x�JzV�v*�\u0013��U\t�M�\u001d�L��ȗS|T�x����MW�MD��U\u0006D�K\u0001�\u0001k\u001b�P�9��\u001e�t�\n��1�fl\u0012v�\u001d���R�E?\t�\u0012�AZ�\r����b\b;B�E��n\u0012+�����ON\u0003V9\u001fa_ڈL�\u001a��\u000f��Pq\u000b��>�Lb\u0016��Nvk\u001a]r:,�F��!�a�#�s��R�\"\u001fO�������\u0013:�A�\u0011�9xg�5���\u0017iG�ƀ\u00127\u001c\u000f���[~\u0015��\u0013��\u0017f���Y��qE\u0012���M$\t�s��[\u000f\u0001̽@��d�x\n\u001aC@L�$K�zj�غL{\u00134��Thj�_�\u000b�8Λ�Y\u0016�*]�� \u0005\rú�ܶ$H1\u0015���k&\u0006�Uɢ���XW��hr�\u0004�=���\u000b)������ٓ�8� v�tz\f�!>X���\u0005�y-��U\u0013��糓\"/�3>�\u0012՝^,<�-9Z#H8�`�\u0000�2�\te�8\u0013�aS��c\u0007c�7�\u001e��\u001d��P���3�L��6�\u001a6O���*L���A�ƒQM����&��ws:\u00162���h;{�\fk��E�ѽc�\u001f�fR'}W,�\u001eŬ2�L6,�\u0006�O)}��\u0003�q�\u0018D��\u001epO\u000e�_0ӋuXW���׀�ݛ\r��F��A\u0006V�\t��s�.��1AE\u0013�AW�\r����c͡j�\u001bܗ�\u0002clJ\u0002���\u001dQ\t\u0003�\u0019D�c�������>\t��\r\u0013���\u0015-�\u001e\u0017O�}\n�A�83޲�\u0016\u0001\u000f`#e�S��Rr8�P��T�Ƙ��-jϬ��\u0014䎦\u0012M�\\��v�\u001f�n�_�tT���Y7`Y�%��)�܂> 兝��ZS߲�^@�7�Nv\b3�\u0016<\u0019k��z_�h)`\u001c��\u0006H`AZj#ϸ�O������\r�\u000e�\u0014����n��3�A ��\u001fx�\u0005�\u001dD���~�,T\b��\u0001�\u0004�t]�P��\n��I�=޺\fV�͝\u0002�m�<�\f�\u001f�'�Za��,_��YR���\u001c�N���Bm\u0012�w9�qP׽� \u0004е|�\u0005���L���A�\u001b\\]�4��7CO�S%�G�n�=|�*\u000f�l\r��L����Q�e�\u0015�A^�\rԀ��b[q��\nlr��K�E��u�P�_pc s\u0006�3���91�\u0003���f�a�Gb��\u0019�\\��Ko�,^��\t$�s:\\\u0001\u001b����d�QU|�4F,?6Ʌ\u0007Z\u000b\u000e�r��{{\fn�̢\u0013�����ַ{�\u001a�Gu���AZ+I�\u0017�\u0019\u0017A��Dܔp�\u001e8��N4ܽh�uR�\u0017ǎ�<�\\�/xmBk��!�Uf;$*���\u001b@\t\u0005�h����U&�Ń]��e6D\u0010�\u000e���4ET���j\u0000�x�qөl��@���\u0007��U߲����)���9@��Q����6\"\u0016Fؠ!\u0007x�\u0002A��$�Ug~��ARj)d*�\u0017���~C\u001c����\u0004����D��\u000f-6y���0�����߼|:\u0015�\bELb\u0000M\u000e��\u0005��\u0002L_��(�<�Tk6В\u001d��t���M�J�LY����qkV٥��V�\u0015}:%�:4%�\u0016d1:6�K;\u000b\u0013\u001d(�\u0011�R6���k�\u000b�DxyRco�t�\u0007��E�7���H�랸X�U\u001c�AP�\r����b\u000b�0;[pr���\n�;,`DT�4[��\u0018\"�;��\u0003\"�{3��\u0019��4hـfJ\t\u001b���B�cQG9�5[���\u0011O7�}G����Q�\u0014���أI���D���i7���B��mx���o��3~����e�@�u\u0007�\\o�/(��\u0013�NM���'5�\u0015Q4\u000f�\u0011;�j(ׂ\u0007:��:#>�Bz[unLo\n�`\u0000�\u00055���%�\u0012\u0011X\u0005৓�0 \u0007���Rɴ<��?��\u0006\t��\u0012@�@��+_�J\u001b�������_a��:k�B%�(\u000b��OHs\u0018\u0002\\�ڸ�~ \u0017�z��/��Ec_�s\u0005�\u0015n�O�3��\f�:��p������.�fo�M�E h?�CJ&��\n�FX!W>;�7V�a|\u001b�vch�\u000b[��fwXb�\u0000*\u0000�t\u0010��9�;�6O˟`�\u0016z�$-\u001dj�\u0012ܑ�x��{\b�R�M��*~���\u001d:R�w�q�V\u0013�i�\u001e�\b\u001eDF�@;y�i83ł«a\u0006ʂc�~/_*�=?�+M�*�-r�\u001a^�[��L��\\�lY����>�>�Kr \t��K�\b^�\u001dq�\u001c]�#�D{�\u0011��\u000f��i�� �\rH��\u0003�ӥ���80-�� =O\"���\u0002�3\u0012?�3��F\u00112ֱ\u0001��\u000b{�囙�\"R ���}��i\u0012\u0006�n�\u0007#g™��h���m{����Jb\u000b/:nn���)Ԡ�۟�To\u0007�\u0001l��q�\u0014+z�g�s�%@��3�>m\u000f�AD�\u000e8��X��+�b�8Q�D1Z<�4��5\u001f�oV�~\u001b\u0018]�2��|�qmL�LiK\u0012\u0015�ɑ%>�\u0010u��@���;�\n��\u0000[\u0002�����A��/Q\u001c�v9�!�dy1�\"cs�D�9\u001d�י�\u0002;J�{�AD��W@/���}[\u001c����\u000f|\u0017o�>�W6��[��\u0010j ,��A3�\u000et���mB��H{�ipע�@1����\u0007\u0017Oy�\r��\u000f5L�C5.\u0000H��\u001c��>�M\u001b�\u0006�W��76{w�ecӤ�ѡ��J��\u001c-�5��\bC8�\u001f�H9����M\u0006�w�����o\u0002[@n\n���.\u0013�C�W����\u001c߀���\u0007s�\u0006S_�jW��S��\n�ij� �\u0004���Q�\u0003�w�ɐ��2���\u0011����•�n\b\u0004�g�\\,��K{\t+#�S��芧��\u0017\\���g�7�l>��ȧ��eE.<\nD�����_�\u0002��H�� �Q*�e����\u0004\u001f̄!k�����*c\u0005\u0013\u000e\u0002�՗#��\u0014�ߐwF���^b��>;\u0004\u0000\n���L\u0012/�)c�_I��A4�\u000e����c���I�y\u000b2�������J�*\u0011\u0006�t:{�p\f\u001b� 4�ȵ��/���-灘���N�X�����넅�6��I���;\b�&*5\f��y}�_�\u0017_\r\u0011N�������\u000er����(d�4\u0003{�[�e_���Þ�\f�;\u0002�L��/-�Xs0sgS\u000fbO��\u001e�}\\�.(l�9!�\u0011/\u000b\u000b\u0004í�Y[�q+�twx'���b�g\t\u0007�L��\u0005�� \u0013�I/\u0003���E֧$X�J=�\u0001�L\u0011�c\u000bG�o�\u0011�\tH�/\u001d%���\u001c� �˝��V\u001em���r�\n�O\u0014e��;B~դ��o��\fy�ژ}x1\u0019��}��e�n��lx'�\u00187����+\u001e|�ä��o���AE�\u000e����e�Hk0�0fn�\tc#�\u0013�z)���&��`\u001e��&�kA>23i�=c\u0006\u0007_R\u001f�\r+NW1���\u0016f�F�>%ޢ�VYd\"�\u0004\u001d5���\u0011u\u0011~�/���\u0004dj����\u0003o٬\u0016��\t��\u001f(K*�\u0001t60�����{qD���1\u0002��#�����\u0001��\u0017'b\u0010-#�18Ġv�\u001b\t '��D\u0010h�lוp1�i.&ꖂ��\u001a�[�n�b���[�\u0004$e�%\u0005�O��Ӎ+�\u000e���2\u000e;\f��|\f\u0010�\u000f\u0014��M�a�%\u0017\u0004��wyN�\u0002�Dc�MO�i��\u000e�3�e\\�$���S�����w\u0011t�j��\u0003�\u0002���x�ͧ��M�]�S�8��W��\u0017�t�fku\u0007�ZЄ�䔽�^�k�\u0013����AC�\u000e����c�\tm��T��h�&-�\\��ΘB`��w����\u0001�q ���_�d[��X-_$\u0000�XK���s�$���\u001a5v�D\n��\u0017�\u0016v��Uc�\u0003)�\fR�=Μ�h�� ��\b\u001an\u0000I�\u0006�7e䭴��ն�\u001c\blr\\b1�\u000ep]�\u0007�\u000f�0ꅟ[\u000b����0)�\u0019i6>��%g�\u001cscs#k�\u0019@I�\u0011�7D»\u0019�k�Y�U��5>W�A���H��\f\u000e\u0019�=�$1��@�+\u0011ЋOG�aS��J\u0011�Ԇ_FkO�\u0016q��\t��=�EeM�?9Wx|B|�#�O�.[3�\u001d�%�YP��9�P��_e����\u0015@��E$��\u001c�Ѓ;�B!��PH�c%�*)\u0016\u0003��\u001b!T&,'n�۳�\u0005��A+�\u000eĀ��c��\u001a[H!5�\fK��`�ݽԸ�\u001f��E�q蜕L�'%5�(<�\u001c\u001c���_k\u0007m��\u0013;5��\u0006ۮ���گ9%����+'��+��~�!\u0016���O1 �y�\u0018��]�\u001f�2\u001bd�|W��\u001a�I\u000e/�\u00136��\u0014��7�/��\u0017��*��n���\u0010�������`\u0012��h��0e� \"���d�X�L�p>����}���H�o�\u0001Z �r�O+\u0010�\u0006�x<8��K�s�\f/7��jv\u001a���j,dN����<\u0005�N՗} K8\u0016\u0011�\u0004����\u001fC\u0000U\r\f#`�\u000f�F�&4�Κ�1O���\u001b\u000ew��\u0013d��+B憤�괥��A7�\u000e؀��b�;������:��\u0014|��ꑖ�6�\u0011�GWE���w�f��\u0010|����@r�޹\u0001�\u001as6�j�PRp�\f�J\u0005lqҟ�����縬�\u0003�\u0019X4bJ\u0019��/�ZTxC���k�0y�9���y�'���1�\u001c�iM��1\u0010�R\n6��\u0014b0\\��\u0000�IP}�Ҳ�#Mg�B�4�\u0017��5(i�\u000b:T4��V}�DtR��������p�.7��f�����\u001e�S��Y�X�,q�e��\u0000Y�5��M0*���j����Ux�\r\u0017�F����:���9�\u0006��?8�����OMqy!��$7TYN�w9���V���\u001e\u0001�(�����d�z��T����c>\u0001>�Qÿ�6��}Z\nV�\u0003�'���\u0012�b�+d\"Tg:\u0019p>T����\nm19lt\u0017-�\r\u0003Y\u0013_4��G=#�~E���!�1��!-�%��:\u0007����Ϧ�(���9�6wbi\u000es���H�pkN\u0002\u001b�}�Ep���m`m�\u001d��t�vrXż���/%:t����o��s��`��%CЌ�\n@�\u001d���o\u000ebd؇\"T\u000f#�i7:aP\u0015!\t\u0004��\u00026m\u0018=dE���>�IJ����:&A�KJ����a0c!�X8�,\u001f�۶��N[�\u0002¾�;)H}di(C\u000e\u0016�AV�\u000f\u0014���$N�Ѵ�T:4��D#�\u001aI�%a=ǚ�&�����4o\u0013$!�v�\u0019�\u0018*OoB��N{M����E�v��\u00064��b�j�O�b��8�MksG��%\u001ba\u0014t��c9Z�˶��5\tE 5����\u000e�x\u0004e�����䏱�啘���\u0005+9��.iI�\"J�%��`�S4�j&b�\f����:��\u001b'U\u0006|��O'D�*\u0013�\u0001a�8P@/n�r;�\fF>\u0000񈊨)H:����Z����7��b���={\u0011�\u001a\u0004�q4��\u0003B'��\u0011o*�\"\n�2[TTt\fgg�}tU��5Z�l9�\u0000���`P���\n9'\u0013�È��L:4Hru9\u001e��VB>���#\u001bQ�g#�6\t��=����>�W �HN\u000e��`��lOu\u0014��\u000b��\u0000\n/y�y�\u0014�Aw�\u000f(���C\u0001�s^髒���$7!n�\u001a\b\u0003�1�70\u001c��$\u000f ��T��dV똮��w�0@1�O�������s�$u\u0007\"��v���nk\u0001�d�\u0005��'��?�v��l���|,�t��\u00032��i��S��_n�]�\u0012����>�\u0015\u000620Nk;{��\u0001�\u0013b��|�|�uw�����svt�\t\f\t\u001d���\t�U\u0003ϣ�K��%�d�`\u0019t��\u001f\u0005\b��SLM�P\u001f\u001f$!�ꓥ1<��;c\u0000\u0013�@BL����7L��9��\t������5��R�,q�/ēqr=׶���W�ÝV��QD7���t�k\u0001H\u0016\u0004:Cb�[\"��W@hgXQ�\u0013�\u0001�$(PS\u001c\r�G���}�)�f�?�)w8 h�_�H�\u0016w�Ə\u0011���5>8�@=���Ya^Q\u0010��0Z\u0002���mj�Ԥ���)�`�VzD~�\u0011�AU�\u000f<���c'��k�Z\u0005Kւ�?��`M���Kf7(��\u00172\u001e��u��Db��6-}:��O�NI���Jk2�b���\b+\u0007w����\u0013^�>!��v�\u001b�LEk�y��͟��g�W�%s�c���G\u0003j��\rlBH�_�vvr���c�.�\u001bx\u001c\u0016�,Tq��3u��o�ڏ�n9�\r!�rөLF\u0001�ߞg�\u001f\u001eK:�+ԏ����cǜ�\u0014���e�F�'H�Pc�?(��\"\"�'��L'��S��Ez�w\u0017p\u001ed\u0017cRdg\u001e�|�ٻ[W�kf�H��^�JM��)n�\u0000\u0005c<�pշ�\u0013�m��#\"%��y�\ru\n\u0019� _\u0006��IP\u001b��u_qI���� ��gի�x{����\u0019N��\"P����\u0005 �IT(\u001db������u\t����H+�\u000f�AK�\u000fP���d��+�:\n?\u0000$}�%1�&��n\f��VX\t��$8ӹ�����k�ov�$��,\u0014W4p{��AU7��� Wl\tj�诀��x\u0011���\u0015\u0005�\u001d\"�ë��wHb2�=�\u0017�bd-\u0004��\u0018�o]ǃ��L-���B���Pog�B|H\u0000���\u0006\n�\u0015khaij�3Oѫ��\\�F.���N�E�\u0015-�\u0002E\\\u000f�&I�\u0012�৪�g+ְ��,\u0003��\u0000\u001eߧ\na\u0000��$Y~Z\u001c�N�(g$���L?���\u0004M�DQ�G�\"��Ù��Ƕ%���\u0017~F\u001f��h�05����\t��ٜ䍍P�Jq�m����MЋZ�I$&��$j\r?���G��I,��hw%:3˃��[�u��c�z���xQ�67��^�X:�m\u0010�AN�\u000fd���r�!\fX?\f�_�i~��-G����C.?���\u000e�\u0006���\u0007����O��\u0010���ÅI\u0003a\u0017\u000f`�sy���؀�CS߇�j|hbv����Vf��o��u�r<ݝ�d�!\t��\u001fJ�\u0015��_��\u0010S#7�5\fb����\u000e���][�V\u0001�����TR�\u0019��;�;�,��R-‰{��]\u0002�2—\u0018��j\t�.Ĝ~C�&\u0001'Mt�a�w�x\u0005{�P�\b�$&78��l���\u0006���\t�ݜ�wS�\u0011ԯ���lv��4\u001e�3�r�%���\u0004R��\f�̒��Wa&�k�12c����wmJ�p�^���:����a��>\u0002����3��|\u0019d+��\u0002�\u0000���7}��#��q��J.��I��q�I5iz�I�\u0013�AM�\u000fx���r�9\u001c��|:z�\u001d�h�B�7��~_\u001dM�\u0000��7M�\\\u0012\u0019l��W\u0011�� ����o\u0003/���\"J�\u001b\"4��D�i0�\u000f�\u0001I@jF(�B\u000e��6u��_v���:�wW�Ez��J�A��/Ty��\u0003ܜ�\u0015n�_�ϐC���\u0014x\u000eR_\u0003S�d���.��̥�\u000b_�\u000f���m�\u0018���$��bJ�\u0014�AM�\u000f����r�:��I\u000e3\ff��@ڪF\u0007\u0011Rh�\u001d_��V�\u0016s\u00075)�}�9\u0000�^Yj�Ύj\u0019�\u000f[��o\u0011[�̄�u>���w�BT\u0007A�arz����\u0014�NP��~�9}d����c�\u0014D|\u0013\u0001�*���e��?�ҪM�cP�\u001b�W\u0002��jW�)@$\u001e��\bf3\tp\u0005\u0004�%��(�Q(ŀ��Jm��I�*�8�\u0001��(��\u001c�c\r\u001b\"�i2\u0001��\u0019t�!�z��8\u0016�Cd����k\u0007�H��o�|V�d�cd��S�\u0018\u0018�#���\\�v��κ>܎5�\u0002�\u0010�.|.�+ܧ=!6~�-�\u0002\u0003��a�n�\u001d�ʇ�=��s��(�~��\u0013�k\u0004A��@\u000e�\rhU�@�\f��^�$إ��|M��룴�[O\u0004'Z5I\"@m\u0015�AT�\u000f����b\u000bt�\u0014%���o\u000e�rR��Y��\u0010a�8�59\bj����o�5�\u0000S�\u000e��xG�y\u0014�#I\"Q�\u0019�HVa��c�(�\u0005!�\u000b�.��,�An���v?����\bP�S\u0014\u001a��^�\r�\u0006;&�\u0002��\u00044C6�Ave}��1 \u0010�}y��8+��\u001d��B3Q��7�|�����Ԥ��u�\\�\u0002����r�s�|�l�����@j�\u00114lN�D�������G�EGnw/���6����\u001e��R.EJ5�*�^:i~\u0007�w5�n�\u001bgI��T\u0019�ꫫ�\u0011,�\u0010xp\u0015&D��v�S9p\u001a��-�}VxE�\u001d|gmX�!\u0019<�K}Qs\u0019I�b\u001b�\u001a*��e���ɉ^ϡO�>S���4\u0019�-�#\u001bv��\u0004��Ϧ����gvq\u0014�AO�\u000f����d���-��\u0019O�IHu{\u0011�J�\"7G�$�]ss\u001b�8�N|#�@{\u00165\u0003�O3�\u0011�sа?���\u0014����t\u0003<�\"�\u0010;I�M��zE��\u001d.Ԅ��Ȝ�\u000fJ��m�m�\u00188>\u0018�#5\u0005�}\u0015���u9�:��Bؚ\u000e��Ur��\u0002�u�j\u0004�\u0013x)\b\u0003��҄�U^\u0005��ɉo��7�O\u0005��<��\u0018XW����Ҳ�\u0016�y�\u0012&)�a-E��Suێ�2i\b�P��Q���\u001d�3b\u0005\u0013\r���\u001c���z��f`�\u001e��@\u0018��B�?���^\u000b�Wf�� u�\u0017�\"$�F�;7�v_\u0007ё��&\u0002�c-�{K����1,��F��ǟ�w�Öjž�@\u0001����~qݭ�ۖ\u001d��05\u0012\u0006�L&�#H\b��\u0004\n�\u0012�A?�\u000fȀ�L�#AͿ��!6WGc \rj�D���l,z|o�1�X�#\u001c�y�@\u0005q���̦ݜ��v��\u001cY\r���_\u000e�U\u0003�@i1���o^�y� r���wye�D\\/\u0011��뭠��V�HA�ɇir�\u001c>h��!$\u001fr��A��\u0007�$�m��`\u0002�j�rw\u0010�\u0014�����ErԠ+)\u0006�\u00140�ń\u001f>�06K���X&AG��R$�^�s|��ũ���\u00000^I��\f1�)a c���ik��!S\u001e���+Z���\u001aP�/Ў�Ȳ�\u0018\u001e@�\\va��ߍ/�C�F��\u001f:D\u0016����a0���H�c�\u001d��Cr��8��`ynKt-F>�\u001b��\u001d�QA�K\u0010��i\u0013d\f��'vb\u0013��R]a`P\u0002�rI�AP�\u000f܀�L�N)��\u000e����R8�g�\u0019}\u0013UT�s�\u0000�����\"�l�qE+�Y�`�\u0018\u0006~�D��5nH� ��Ta!Ad���Q��o�\nA�\u0017�?�f���1Fs\u0011��Wi*蟇��lG��3*h��&�9�r\u0013�dj�1�\\��pM���A\u001f��UHУ�/��ԅҺ'����}z�S�\u0003\rnZ\u0016�.K�3\u0006�WS����OJWߠ�G�q�[�vT�\u001dü-X\u001bd�\u0015L\u0017\n��1��L�2��v�\u0018�2�\u0012��X�EĔ#�Ib�4\u001e*��\r`����j\u0002��\u0016��͸Cۦ\u0016 nG~�h��8/�A���Kf\u0010��\u001bj��P\u001b�\u0014=����\u000e�ަ\b$�\u0006��[2]�m)\u0016�wa)G�3\u0001@�%^��\u0014ys#\u0010����]\u000b-�AI�\u000f����c�$� 5�;�x�08q����Ġj:�|��?>\"��ҋs\u001a���d'���.���.\u0006�����O���\"���,9�šI\u001c�\u0002vic�v&򷇴9\u0019\u001c\t��\u0002�\f%M�-e�ބDx4��� �\u0016�tb��y\u000bP~�X�m��$���\t$�[��i��/�ke�vƮ�\np<�zc�R�\u001e�\u000e��v��l4���\u0006c��IP\r&\n�������հ\"�\u0004×�x�O�썘�\\ޣx���WRc��YW\u0010\u0017K�<ڦ���k�p��]�ק\u0004OV�r%6�:\u000e5:�N�$�]�s��F�5�^��N�\u0011^!�\u001a��ep�C�]N�\u001b\u0019�����U�rH���$K�@���\u0017�Z�/�rm\u0002`��4�\r��,����AD�\u0010\u0004��1����(r�����q�pY\u0019�є�eurɣ��'�`1h�#T��\u0019\r�ٶ\u000f�i�\u0003;n�[�\u000b�\\����,o�59�5j��H�\\2$ \u0019X\u0012�!\u0019\u0001�H[F�;�aѭ��Y=�\u0018\u0012�P�l������\u0006ߡ|��ؓ��Kᅢ��x*EN�B�9�\u0016\u0007+\u0017k�\u0007~����Eؕ��\u0004�V73\u000et��ӰF\u001e�F΁�b�\u0014= \r=F̥��s���Y�\u0004\u001b�{ \u001b���F��\u0015꿗FÔ�-P)N�H��w_p�� \u0016��.J���\u0019d#n�9��p\u001b;i\u001c�B�xsF�\u0000I�\u0015\u0006o�2��2�Ԣ��1�@���Y�&F\u0003�@\u000e�]�\u0013\u0019.\u0004`�K�9�+�\u0017q�u�\nq 7�\u001f�\u0017���\u001d��AD�\u0010\u0018���b���C�ʤ�����-ʽ1�[1���\u0012ByP%��\u000b�~\u00044�B\u000b\u001d�v�\u0005���\\j�ʅ�0w�a!\u0017k��\u000e#/\\�`���E�z��\"�\u001a�5+ق\u0011x\u0013���\u001c<��\u00142�\u001f�}��RvV�e#�\u000f����;Dt\u0013�x���\u000b\u0017�X׉�3\u001b5��P��\u001f<\r#�X\u001a�\u0012�']rљ����!�P�p����[���x\tU\u001c%�\u0015\u001a��d��\u0012'ڌz���\u0018���/)�q\u0019�\u0004��E[�L\u0006Wk��\u0018;J�q\u0011E��.Ϊ��v\u001b�f.�\u001dH�\u0014�*���/`��G[\u0017ÔܶS\u0015\u0014>�\u000fK�v��\r���b��� ��z6D���\u0002�1�8��mo�!�\u001d)]\t(�=�*�%L��%�U��A��\u0010,��}b�b\u0011��Z#<�7�)�ﻵ\u0001c=‰*>�\u0011���IY&��\u0006S�y��A9=\u001dE�r_\u0004V%I˜\u001bh��p\u00155>�\u000e�HX#�o�?�y���]\u0014��ΕI��<{�F\"(�{�\u001a#6�NC���2�1�\u0016�߈� �zD�N�*��.Wٜ��{����zi�\u0017�\u0019�W\b�\u0004�~͒pǚ�~��M>�\f(4�`\u001b�\u001f\u0005Z\u000f\u0015D��O�S\u001a\u0019c\bbb\u0003�&��c���1l�1v�j�;h\nc�\u0016�\f�q\u0017⥡{���sL[~���h'���H�4���j�'0�q_�~��/�j[�\u0013�\r\bo\f�8�\u000b#\u000791\r��\b\u0000_�b��J��'\u001f���X�nE�>�����m\u0015�VN\u001387�\u0001�\u0006_�*�H\f�ez�`�����֣��\u0019�\ra��W[A\f\u0003Kr\r4�t\u0006\nB�f��\u001fV\u0003<��g�nr�\u001e]ƾ���k�\u0004����WD\u000f/'\br?2$��\u001b��en}�\u0015ƿ>��\u0017�wn\u0005�r��\u0000�d����$O���)�AK�\u0010@��XЧ�+�;l��҉��\u001c�$�ε@×��}�#D�w��\u0001\b�r\u001e��`\n��c@�s\u0019��O�VW\u001dpwa.��#�\u000b68鼁q\u0010)��Lt5\rLJ�X�55\u0015�B\t(��]C�\u0005j�\u0000���VYz\u0003F�.\\AU\u0004����Kfs�.e.^v����G�yt{�\\e1�@:Y��\t#�Z�Q�ɝ�����K�\u0000J��\u0013?�ȾiÎ��s{�Ohp�ʄ���\u0019���\u0001��\u001d�Q!xΛ�H�PƵ{(aY@����&�`�nrd\u0013:_�\u0005�:\u001eK��5�9X�L��\u0005�K\u0001\u001b��4=� :�@\u0002���\u0016\u0019hX�4��GH&k�^��3���\u001f�B\u0014�CD�\u0004�c\u0007��d��\u001dytQ��r��\u000b�ﵧj\u0019�=\u0012�A%�\u0010T��L�3���T�]��D1]\u0006\u0010\u0002�L��P!R`\u0002\u001aN��l����Z��zhu�����S/׬W�oc�Tҡ��\u0018\u0015�򅷎���\u00062�1n\u0016\u001dy\u0014��i�\u0012��~�ȎU\u001b�^�d\u0005g�/�S���$D \u0000`\n�d��i��iƒd1\u0012�YXf�.��FkW�=��\u001c��Я\u000b����\u0018�7���G\u0002职�J6�h�\u00166o3�7up���\u001b�pӽS�7\r)��(i��\\Е.\u0016j�H�=��D�_Hn1\u001b�`�����\b\u0005��\u0011�\u000f��y���E�.q��3���k��ɛ2a4�\u000e�������e�\u0019�����B\u0002�vh\u001e8�`\u0000+QK-ϣA/�\u0010h��X�+�k&A�\u0014���\u00142�e��\u000e�E(F����KeN�U\"�n�ʕ��m\u0006RԅX��ԩ@�\u000b\u0011�89�1��nloV\u0013Ϲ`y\u0016'Hl�\u001df����b@�饱ˍ�!�΁D\u0005;V�Eqq\f�\u0006zdl��V�,�^>��~S��^Gҿ�4�SA\t�\u001e]Va9\u0006�Z\u0005���BL�\u001cd-��+8�\u0003I��\np��\tP֧l�2\u000e�\u0016?�\u000b\u001aim%��jf�\u0017�8\u0011��[V\u0012s\\���w9\u0006\u0019�\u000e\u000f\f���\u0004�\u0013�\\T\u0017yq�\u001d�y�f��xR\u0000\u001ayx]�k���Q�h�{�4d�x�Us��oI;C>rU��~��N�/\tÜʌc^��k�h�\u0004,\u0011\u000b�R ��Ԁ�A7�\u0010|��L�\"�kʠ#bAu\u0000�\u0013��!�\t���\b,\u001d\u0018\u000e�=�\u001d2\u0015c{(���#�!/P\"�/F\\����e�bŜ�t��\u0000��*\u001a\f\\�\u0013\t\u0014�S6Mɪ��ƧG�\u001b�\u0019�l�$ϧէ�8|�'�Г\u0006�\n�͟�n�!�%�K�.\u0014�`\u0015�m���6F����\u00115�\u000e�\f\u0006����FYI}����\u000ef��|h���\u0007�\u000b��A�>�\u001b�\"�})@:Y_Q�\bi\u0004*N��\"\u0007�wX���1��4(��G>s\u0001��6 �젍��.��S�;�8$ff\u0005\u001e/^�a\u0012ug�\u0003\u0004C���{��\u0011�Tk'��*s�%�$�\u0004N���U��uT/��}3�Y^��vm�a�\u0001I\u0012j㩒\u0007-��A=�\u0010����d5�\"��\u000e��.��\u0017��02Nv�ۙVE�\u0002m��-\"\u0001g�\u0005���\r89���\u001cV-\u0018D�ą\t\u001b�\u0001\u0018#>\u00006�D@y9�=#\\|�u� \u0002\u00055�\u0004U ^�\u0017w�[\u0019��Y�6�y2�4S\u0014�0)�l���N\u001ej��A\u000e�9�Цk\u001es\u0006�0�A#�k4�?�ˠ�9��L�wW�\u0000m7c�D��Xpi�Oh�\u001a$��~#�'U2���i3�Q�|D~W�\u0007\u000e�ujqZ�懩\\\r�x�\u001f\u0001}@�3�9�ǚ�<����Y�\u001e���l�\u00008�^̠��\u000f�,j�\t�]��\u001d_\u001a��m�ć�\u0005���\u0005i��oA]�Z�I�2�/\u001e��6_?��\u001b���\u0002�}S��\u00150\u0004\u0002S���L*�\nE��A5�\u0010���M{\u001c��`�Rm�\u001f�-\u001aͭ�kj�3]Lu����HU�|\u000b�-O\u0018\u0014[F\u0005���e�\u001c=����.�f\u00020Ʈ�� ��c�)�\u001c�\u0002�ߗ���QK���c7��\u000e �[\u001d \u0014�K����|?\u0015@UL\u0003S?\u001b�(w�@R�*�Qߣ�i�\u0010��6a87�H~ϵ�\u0011d�L\u00133�f�\u001d\rb��Ⴜ\b\u0011a��Ĉ���T�-%:�\u0019n�\u0005\u00173M��\\^}�h�\\t\u0016\\\u000e��\u000enD��z\u0014�H\u001e/T4�\u0017V\u0002ͮ:9��\u001cM\u001e���DA��γ'�I���9N\u0011�.�)�ߚA�DO��͆Yc��E\u0015\u0006��W,��$U\"\u0004a�X�\u000fW+��)\u0006�\u0010�\u0014��O\u001c5��\u0007�Q\u0000�\u0007��A/�\u0010�����\b\u0017��_,����\u0013\u001a�7�%�ʮ�\r�um\u0007c�z�>����ע�F�ȫLv\u000br+{\u0010\u001d�\r`羓\u0006A\u001e{U�TЧ^^���V�f� n�%ԉ��l3j9����wA�C�XV��&�l\f\u0012�B�r�-K:\u0004C|��\u0016/�\u0013lĞ|FFC2�U&��\u0005�\u00051��<��/5.Je.��8�\u0018��+�A\u0004:\u000f�s\u0006C\u0000���\u0011\r\u001b�5��uN��#_\u0002�����g���\u0014�繩/PTv����u\u0006��\u0019<�S62q.\u0003���a89º.$&��p\u0019'�u����\u0006��i��m��'7\u0005���0�a�����^��Bí�\u001b�E\u0014����\u0006ςwt���\u0012Y�A-�\u0010̀�L��l\u0012dG�\u0001�\u000b\rU��\u0003��pw2��B\u0018O@\"�}e:��'��`X�A\t�\u001cS\u0013Y`�_ij\u0015\f=yq�Ԥײ��I�+\u0016=���PbM\u0011\r�\u001c{8rE�\u0002/��½����[k��\u001e6x������c}�ʲ�p���) ��U>px��\"::�!�=F\u00124�B���;i���zMA��l��{4H,\u0017I�m��\u001f?��!\n\u0010.�F\u0017��F���:\t�P\u0005���P\u0016o˳4`\u0014i���i�iP��\u0003$S@;N9el|\"�(��v\rԋ�\u0002��\u0013t�;Z9� �ۏ\nd��\u000f�[i��O)\u001e�2ё�\u0019����)Wp���B��f\u0012C�^~Uͤq��\r�Pt�U-�A/�\u0010���M{\t/[���\u000e����\u000fX<�|�)�3�Ѳ�_�\b\u0006�v�ҽ�ð0�o\u000bY��9�5�\b�F��ўy�i�(:�����%&�f����=\u0017\u000fk��EF%�R�\u0014xd��8NDXwK_��r@�c���V\u001d�A��1\u0019�W�P\u0007��י�9�5?��3��]f��0��U�)n8k�Bα$0؇��\bv?�ZT�-�M\u0005�r�LGH��>�\u0007�\u000bh��xa��q\u0002g�$\u0013\u000e�+���\r�\u0011\u0000�:��0�W迃�(\u000f��Y�8�>5�j�o����H�\n\u0001U�^�p��չ!R����e�� �X���\u000f�e��q}'�[!ȅ�\u0012L�@S\r��)\u0001/\u0014��\u0012�A7�\u0010���\f�E�hH�ּv�&�\f�!\n�G�I?\u0012�\u000bې��2����ƅ���\u0015��n�]QT$�Εe��5\u000b����,�޵\u000b\"҆>�����x�����`��z\u0007LyY�Q~�\u001a���\u000e\u0007 ƲЩ����zm�t�\rO�J]e~JaÅ��\u001c�(_˶�m��\u001c��KL�A�Ӂ�x%�d�vz���y�VΖ�1���y�� �Nk�\n\u0003��L\u0016I�\u000b�?�D\u000b��)����\u0011�<�#����� M±����3��Q��ɦ��S�bEȓ�\u0015�Bf���\u0002��r\u0019��-M\r�܉���0S��\u000b�\u000e��\u001c�\u0002p�g�O;�|�zﳠ�L\b�=\u001a����gV[\u0011��j\u0018�\u0012�m�AG�\u0011\b���\u000f|\u000b+\u0007�;\u0012\u000b��~�����t��3X%@La��<�cQ\u0000�h��\u0017Y\u0006I�\u001e��R曆;�)�Y`�M��#�q;Q�D�~��\u0000�}.(\u001c],W����\u0002�jC�&m��û���\u0013.�>Z�:0w���\u000f[�\u0014`y\u0017�\u001e�\u0000D��\u001c-�h��\u0004;s\u001c�֤\u0001}A\u0010mK���J��l�\u000fܸwܔ����\u0016+�cf^\u001f˦6 �WL�$�æ���\u001d�;��\f0g\t6�1@#\u0011��qF�@�]�U%a��A�z5�w�\u0001id����u\u001degwZ~_��g��\u001d�e�����ٲ��\u0001EïD*Ѱ'�i^��\u000b&�SM\u001a���K٣%����q1�����u�j�(��z�\u00005.\u0002��;Uϧ���l�.�m�AD�\u0011\u001c��Mz��[K�T\u0010J�\u001f�\u001f\u001a��|I/���*�\u0010\u0006rŃ��@Q����?�dLD�O������n��P�z��|È>I�\u000e\\.�d3Aؙ\u0010N�gd��$���}�n��O/���ܖ�t4'�#Ê���_\u0014�k�ȃa��}�h��$h\f�\u0004w��d�\u000e����\u0017�l���f��/�}s�Q�Q^��\u0018\u0006����P1���n��\u001dշ\u0005ˎ}=�3\u0003��c�+)U���I'\b��ɯ�\u0017mz�2\bv� L�kXU������I�\b��_�\u0018�f-��\r����\u0000�~!��\r\u0005j�u6�͒=o�gW\rc �\u001e5� ����+\tU?\u0005�`\u0013E\u0019�pιȑp���Y2��\u000f<@\u000f���>1\u0006��7-���A=�\u00110��k]�Y'\u001a|؏j7m9�{�y�TZ���\u001aS�)�\u000f��8d\u0000�Cϡb����5�%���1n'�؆\fT����ܙ�,b��^ :p\u0019\u0006\u001f�\u0011%�:����e?��6\u0002�4 \u0014&^���\u0001e�b\u0010u\u0013F�l���fb1��\u00074�\u000bv�\u0004�),�\u0014��D�H瑸ݍ�\\ů��iAd&eu�\u0017m�ʁR �)���j�S\u001c���\t�@�pܢg4F'�6�O\u000bu�\u0018�>\u0002\f���\nZJ���L\u0016������B���\u0014N6��\u0010\u00111�\u0010�#�\u000f\\8�\u0012.w.�x�:꾱/�\\~�\u000f_WO�0RT'\u0001~kE=銫d�ˤ'oG�\u0019��ޅ!&���\n����x�\u000fT�\u0014\u0007�M�Ƨ�U��*��AF�\u0011D��Mz�/�&\u0018\u0011�+�p�I[b��\u000e�4�%���C\u0006\u000e؝�01$/(\u0005�\u0015�1o��|\u001d!y�.�\u001b\u0019iy�}\u001d:gknD�[�\u0006���>� ޳�L��b�\u0014�!G�^�V���r�����\ry�|�^J�Rf\u0013BE�آ\u001ft%�\u001d��j���vO)�����^C�s����\u0013cC��Rl��З���\u001b��\\�\u0001��\u0003\u0011;V�+4魨\t:\"X�Z�\u0019k|U\u0016����Y'��c<��s�\u001a��Z��ܟE�->�\u0010*\u001f������4֓��>2��\u0013h\u001b�E�j\u0001\u001c(�`\u0019��XoE\u0018�\u0011\f��n8,vW��\u0019�Q\u0007�\u0011���OIw͵���������\u0005�HQˁ[\u0011��A��yB�hb�\u0004|�$r[\t�A>�\u0011X��L�;���a���\f2é�\u000750�%\r\u0005�!%����F\u0012N��O\u0012��-b��j��刨�3xȊ��닂���[tH>�\u0011�|]�|bh\u0015(\u000bb\u000b�/�^����\b%{��`\u001b\ra%��l/�P�PF�\t��\u0004V��\u00158��z��s�_��]�Ӳ<�%�%Ƈ=[DN\u0013���x�5�[\u0011�!�]���\u0017XX~�.�����ڊÍ���|�\t\u001dcs�\u001a\t�q�viGJU\u001f4�ʽ�^�mn8�?H&�p�&����a\r��\u001b��s\u001b~�\f�M�#7oG=\u0007��+���9_�:+B��t��-\u0012Mv'\u0000�8��%�ڗ�'�O��z��˙f�ar\b39\u001c�d~�[�\u0017�\rݗc7p�u2�?��y�d�A9�\u0011l��IwX\u0019��-���G�\u00108s\u001e�I���Y�My��\"ڒ]j�鱪iW\b�\u0000���u2���Ā����G�\u0005|\u0017d�W�\u0003,��L^��c��SI3'u\"��ʓ��Iܑ[�nJ�$HIe�Xu���Tw\u0014�q�\u0010E �Ѹ/�S+\u001b\u0001�࿝\u0019J\"#���7�)�\u001b��\";t\u0002l�\u001e>�d����=�b`\u0007�=h���Y+h�Z{!`c�D�����\u0001�\u0016\b>�B�\u000fq�k�E]\u0013��E�KDl��K�,j���H�J�[[(��,(�\u0012�⼦��p�*?ܓ�\u001c���zw��\tcn��ppn\u0017���g�\"͔\u0012NFP�\t}\u0007����Mi�z\u0011FG�M�\u0007�\u001cP\u001c�\u001cŪJ�8�A0�\u0011���M{�\u000f���0�,%T�Uu,�x���ܡ�N�\u0000��� =ǬC�]�Y&\r�U�7�_��p�����b6�����Vlm�Q\"H\u001aP^��\u0004G�y�q �nȈ���\n�G�_\fD�!wI�ykQ��B�w��\u0004�\u001f|�\u0001\u0011���r��-��\u001b\u0001�=9�R$\u001bA\u001fs�S�t\u0015�v���k�9sJ�+\u001c\u001e&u�z|�\u001a\u0017�|\f�ɒ��\u000b����!\u0005�\u0005Ǖ�°8(�r�镙s��GNV]ͅ�W�gΟt��\t�Yf\u0007�̍帯8t\u0004���Br�G��\u000eف�'�i�\b�rđlO-KJ��\t���#�*�8P��^��\u000f��+��\u000f����Èct\u0006K�\u0015$\u001b�A.�\u0011���Mz��.�z��1\u000f���8\u000b�*�\u0006\u001f(w\u001d�2l�m�52\u001f�&<��g6\t�\"�/Lf�'\u0000g�Ys=Sv�^��.�UՋW�v\u0005�u\u0000��nd�mT���%�h)te�ݥf�U8�O@�ђe#�Ơ�M/���@�\u0005�%��-\u0016�o������la0\b�l#���\u0003�<�j�i` Pl.��&Jo\u0005�g\u001a�Z��jEz�q��\u000e ���\u0007�\u0019n7\u0006t�=/�p��w��5F��18�]^&|)�\u0013����\u0018[\r�\u000e��qUV/TX�U��\u001e��\u0005�C8\u001dĥ�\u0000�M3k�;�\u000b��H\u001c:\u0018p��\u001fnaL�\u0004mA�1h�7C\u000f\t\f�\u0000�0;�U�ߑg����x�D��9!O��\u001b!���\u0016�v/�v6\f)勢\u0006ȩf�/�o���l����ԋ�Ae�\u0011���1����\u0010�#߭V�3\u000e�H�����\u001b{#\u0012�r\u0017����~���+y6�ʎ�*�A�\br'��\u000f`\u0003�Oe��\u001d]��U\r�8UX���\\�Z�_\u0014���a[[F�\u0016\\\u0000�\u0005j#�%�Q�ؤcX��\u001b����qHy���\u0010Aꇷ*�f�M`\\\u0006�D�1�=��>���y�E\u001b���\rzQV+\u0007\t蕣�؇\u000e#� M�=�V�_*#c��\u0001AZ�,\u0011J\u0003ݻ��c�:O���\u0002x\r\rbS�F.6�ܶ���\u0000�F\u001fi��Z�l�\u001d:�\t��=����������\u001f��E(L2��=�U/hW�z�\t\u000b�ϑ�\r����o�D�0�5��\u0010Ǔ@z�����hzj��ϛt�c��O\b�\u001b\u0012��\rWd��Ze�-��=�V����e�.�6���\u0018�6T'Z�L#�w�l�A&�\u0011Ѐ�K\u0019\u0007\u0004�Ny���\u000ez}\u000f\u0018���/E��?�`خ�B\u000f\u0018S+o�,\u000e�����G�{t��4f�8�\b�\u0011,b\n�>�V�?'dbO��j'\u0012Qѣr�#\bb3�\u0013��V�t�\\K\u000e��.�Eݝ\u0007��;�V�_֥�H#_d*����\f�\u000fo��Vdukc�� �����\u0005C���\u0007x�u�_�w�\r$�\u001fk&�Oմ$��++����A\u001dy!\u0013/�eCG�\t$�C\u0015P�\u0011�L\u001b\n�P伐6\u0007�\u001eI�-�\r�NX����d]X0|KV\u000f�g�s�\u001dʠ���\u0012�x\f�p\u0013<���\u0003��\u001b\u0002��:\"��sZ�\u001d��\f�\u0006�V���@ou\u001d��,\u0016<؏��q�AC�\u0011��1���.�4�8�R,����\u000e�Gd\u001d\"�\u0003\\c�IYo\u000650��^�5Q���ͭ����KK\u0016��:������>�\u001fw���<Ѻ~���aҎt���\u000e�\\�9l�7��Bw����h�蕿͎g\fj\u001b�X[FeW]�\n�z�8��3�\u0006s�(ۭf�a���'0�\u0015�*�MBS�f9�K��nJ��4�����\u000b�b0\u001f��.[���b.J�(J���ܖ׾%-�U��\\�:\r֙i�\u0015\u0012��R�VxY�dF|�x�\u0003�UO\u0002W\u000b5o���\n�0\u001d\u0002�\u0000k�c��&o�����\u0000\u0015��ś��=�b\u0006<_\u000f�ԧ\"�r�\u001e��e7��\u001a3p|�\t�}#��1�I�����l7�\u001d�I�'�?'!P�A>�\u0011����f#\u0007����xm\\�}�jc\n����Q�Ii�o[8OU�$�\u001f�[z����\\�p�\u000e�$�2�)\u0013���9�\u0014&��O�;�Y���N�\u0015��G4����4�x����-$!f�hP_@���\u0017����\u0016q����ٌ���2%.E�\u0002����U�8P�pOl�,`�\u0012�תj\u0007\u0014��\u000b�U��\u0011\u0014N\u0016.��>��G��H\b���zE���j��۵#H�\u001fݮ�_�\u0019���\nR�(�\u0006]��[�\u0005�\u001c\u001d�(�!t1�p&\u00010����\u0005緅Z}|f��D>���ֳ�gyB/\u001d�\\.#[�a?\n�?�/4_#?�z��-����ˊW1�J\f\t�l[\u0013��D�k�]\u0000Ep�ͮ��\u0012�\u001fm�3\u0012s�9��Al�\u0012\f��Mt<�\u001di���2#\u0001�8b��K\u00033�J��z\u0001\u0012\f�j�̌��\u0006�X\u001a��k��~���;@�����S�x.i���N�\u0014A'�'�67(��.кG��Gnj�]�j�G\u001d\u0011��\r�Hf��8��B��\f\u0004�*���f&��Ά}�4&���\u0005}G,*�\u0005��& ƛ��\u000e\u0002�ɠ�ݜ'ʿ1V�(q��1�q!uQ����Jz�m\"&H�B\u001d�>�\u000e2h\u001a^���:y?\u0003�ri0;�4�LŸVv�\u001c�v�@�kV���դ\u0001̤G'�W�\u0002�\u000f�\u001b0�X�c�����&�E�|<�o���ݚ�ܯ\u0016�ƩV�\u001aa�Ǎ|-j�&��I�{�w��\u001f�n|��)ڣ�Mݒ�[#��\t\n{�Xk����[���e�ƾRO�q洶I�F����@�\u001dv�\u001bw���7��\u0014<�Ax�\u0012 ��}\\M�̝W��ڲ(�)��Τu�\u001f��H�\u000b��\u0019\"K����\u0014_��mȑX��>��Ru�\u0012Š��}F��G�^\u0017�^\\?�X(\u001d�\u001c��ea��B��p�]\u0006�r!c�׈\u000f\"���;��]\u0000�ևF�/��X�!)��\u000fNt٭�\r*Y$��\u000byc�\u000fI�M�\r@S��Q��\n�\rF_��y�g�\t���ͣ\u0013��N�F#^�\f�Pn\u0003F��ͽ����#\\\u001ev�J�\u0012��_\u0019�=\u001a薟���62Å�=����c>\u0004/�.X\u0004(�G�EJ\u0013\u0005���\tBܔ��-V䥈\u000eꑛS��\n�8Ϝ0 \u0003�V0�{��U9^&�Y\u001c�=F2�e�mH[`0�AI\u0005C[ƅ���\u001eޛ\u001cL\u0000d\u0007����'x�~I�A\u001c�\u0012p��L��\u0004\u0017P�\u0016C���9��\u0016\u001f�\u001d�=\u0006\u0005��?����:\t�\u0018H#�\u0003��n�\u000ff��4)mغ_�3��\u0017��\u0010�\u0012���ҏ�:?�s%���\u001c�nr��2��\u0015\u00069�\u0016���k9�\u001a�T��t\u0017����^\u0018!�#�\f�a|[/Wwx�^���ޫ�^\u0010\u0007��q�W,�Ҡ9�Y�\u0011�ɞ�I��%��h��䱆\u0019�n������/�����\b��H�\u0004&\u001e�\\�y�*\r��\u0007f�Ξ�3rY��\u0019di��\u001a��y�`z�g�2\r� �2\u0001d�>y��\\�a�\f��\\|�\u0005\u001b\u0005yοu���#��}[��\u001a'����\u001b\u001b�A%�\u0012���X�^�OϠ�\u001c��f֑�=�\"��9K�����L��up\u001d����/�&\u0014��\u0014�����'�#�\n��9�͟+�\u0000kt�8�����n\u0003��n�*+f]\u0017\u0007~\f\u0000��P\u0011*\u0010�Ƙ4�>��\u0016o���\u001d|;�2{�\u0017t�å<\u0004��Ņ�\u0004?\u001a5����\u001cQ�of����ٙ�RY�_�����\u001a/���\u001cp�oNb�\u0015W�\u0012\u0000��zۆ�MsU\u0016����\f�d�B\u0005QT�ܴ�\nz&s�j�rRdEY���\u0013��\u0010\b)�a�0�\u000b\fh������U4\u0011�L���9��\u0004�U�M\u0006vk\\N�)���Y��4�x'5\\��Q�2����@I\u0002+\u0013@�A'�\u0012���L�/�j�0�rE��M��Ċ�\u001a��f�����A�IZ�Ĕ\u0012v}cP�׋|ɡ��H�\u0001�pW��2�AE@��P��ݠN\u000f���]�\u000f��\u0016�J/1�\u001b5�X���\u0007\u0004Q6�l�\t�dI]��\u0018�i1O�4(\u0010`I��[h\u0016��\u0007_��.|}\u001aA��6�<��b�\r!L�GzQ�j^\t\u0018���\u001bj�vKž�\u0017̉�.�g8<�~7�Ed&�l�f�\u001aj�@\u000f\u001eػg-��-��\u0004\u0017�}�cR!W{G�F��\u001cB�\f�%%f�w�)p@7@��=�Vu�\u001fM�\u000b�V�����\u001e��f�\u001c�Z����\u001f\u0002f���ϯ�>S���+�xd7Z+�R�Am�\u0012���X�u�\u001dڰ-\u0001�|\u0012i2*����5]��2��r�%oc�,����VM!�q��n�X�\u000f�A�\t\u0000���:�\\��\u001ar�ѽ��Ջ�\u0012\u000f\u000bLU��%Ɉ\u000fO\u0001\u000f�� i�c2tDf��,؝5f�\u000ee<��\",w���\u0010^C�{���x)�l��߻�6Z\u0011�\f�(\u00012�yy�1�G�Y�3�,0\u001e��\u0017\n�=�&59I�j�~�_\na\u0018Q\u0017ߧ&\u001c�\u0003���a?�u 6�6\f�\u0013s\u0018\nG{T�\u0001\f.��ҙ�m��\t�Ʌ� \u000b\u0015\u0013�$����s#����5�\u001b:\u0002^ʸ�\u0018��M�d\u001e\nl�ߎ2z�Y�\u001e��}\u001c�_4 �\u0013����m����\tPf\u0002\u0011#G�0\u0018oZY+�j�\f\u001e�烡s\u001a�;'�e9��\u0012ʴe��Q�B�#�TC\u001c[5����\b&\u0012\u0019�(��a�@݀�J�x\u0007�;����\u0004^�\u0011�\u001c^�����-��M�\u0007�`֓�\u0019\u000f��{\u000b_\u0014��f,\u0002:�\"�s@*��i�\u001b�}I�\u0012\u001fϫ;7�\u0007�5\u0019���\nrY�R]\u00108D\u001c9\u0014ߒ�AH�\u0012Ԁ�M{C\u0017\u0005\u001az0�⼜��\u0013�F�h�M[\r�,\u0013dW'� ��\u0013\u000f�A\u0011T��\"-����`\u0003�\\�\u001d�$�0.3\u000b��=:IW��(7'>d@i��\b��P\u0000���\t9}\u001c\u0000\r\u0015OP�3��,�\u0010Ym�}����v���\r���\u0004�j\u000f�̥\u0003��E���b\u0015�p�:�+P+�\t�2\u0016�t\u001boר�\"8�\u001eLT�CR);��^\u0015�\u0011҆��g�.�\r�ΐ�U��|�s����r�n�p\u0013R�j;��r\u0018�+ȍ�T\u0016�=ѩ���f\u0000����/w8�!�\u0012}/��\u0002\u001cݱ��]K^#\u001c4�\u0002����頿�Mlͬ:]L;\u0015\r\u0001�C�m�_�I$�A��B�\u0018o_��@��\u0000q�z\rK�\u0014~�\u0007���u���.�Խ�Ҥ�AA�\u0012��L�\u0011����$5`�\u0016]�\u001bq^�=\u0011��\u0015�)Es���P�\u001dNܼ\u0006���\u0002�u̒J�A�]%v9b� R\u0010�\u001f�\u001dP'\u001e\u0019Pl�\u001f�v\u0011ܴzB�\u0019�\u0012���QV��L�:K$�����1} ��\u0016����~\u0006'8>4)\u0002�'c$�&� i�:'�IE�zz�\u001d�l�P�hD�ʼ�4\u000fɗu��P�\u001e��*U\u0000�ۭ�\u0015�?\u0004�\u0002R���#���xb�\r�Yg�@>\u000e\u000b�\u001e�7�3,c_�����\u001f\u001dh4�Cn޼Z���\u0015����`5q��MO'�]i�Oj���\\ͽ�_V��\u0011�\t��\u00016d }�ʖ(�պ��)tX�\u0000O��\u0013\u0010��L�'��\u000e�f:'�F�w��w��-�c��k��p�\u0015W\u0002�\bU1D��l�8�K�p�v��N\u0011(N+�\b!{Ɯ{s+��\u001b٭\u000b\u001f�������9��|\u001c�W=��\u0017,\\5p!{�ٙ���f��6\f\u0018�܁T\u001f\u000b��l�\u0001�_�X<���\u0001��\tm��\u0007�\u0016e��v�/���n�vSxۆ\u000e>��V�>��*u�q\r'�c\bP\u001e��\u0000/��Տ�<��\b�\\S��H�\f��\u001a(�\u001bW*.`y\u0000Τ|\u0000_�\"g�,�k�Y\u001aQ7�x\u000f�~�\u000e��\u0000*\u0018\t�a-�b�\u0011��\u001cypOY����\u0012S��W�YP\u0014,�|Z��&'r���N��?н\n>��\u0011wV��W��u�K��mo�P�\u0003�V��A�\u0013$��|����9\u0017�RŠ���\\�7p\u0011�`'2Z�\\��P\u0005�~�H�\u001f�4ׄ�m���\u0003�\f��P\u0010$)\u0000�^�u`\t��\b��o�n�ƭ�~��(D~����¢\"�ɡ=��\u0003�Q\\�{�\u0000\u000fx\\\r>�!�T�H��VJ�,t�u\u0010�\u0003��S>���Dkx�d�=,\u0006խ��/1\u000b\u001f���3�ۊ��~�QW\b0�q\u0000�F�;TV\b�3_1�M��K�fwh\u0000\\X\u0016\u0011�Tz�VN/�cI`1,��!�hC�e�ngR�Qjζ�����su��U���^=m℧J��\u0006�+u���T��TmF\u0017KF�4\u001f�Y�fw\u00192E|3�\b�i�=B\u0004st�4fcvKf��=\t�J\n�F:�D���\u0019h'7*{�u]0)5E8.�_�GY[�Mm:xc�\u0018�@I\f^\bٜKNF;��y��\u0001�\u0019I�$m\u0019\nJ�5��\u0017w��f��6��4s\u0006�V/udu:����)\u0003:��T��b?��*��gH6J0d��\u0018¸q\u001bս�����9e���3!K3�F��[�Z�\u0014̺�V�\u0004\u0001�\u0011qdw�f��W1���,�F�yF�1r?�����A\"�\u00138���\u001f\u000e'�*{e0�x��\u0018��5@3�C��\u0007-��[�w�&�~?i�}�}�\u00139\u001f������:�s�ʨ��9M=fY�*�2�\u000e\b��\u0011\u0011gH����\u0013j�k\u0006A|P<�¶\f�ޱ��L�_Y�N��\u001f@�\b�xe����\u0006�9�sz�_�\u001b \u000b���Iʎvށ�\b\u001e\u001cGm�u��+�l>�\\��#���U���\u000fw�����%B\u0016��\b\u0007���\u001fy�$��Ӡ�\u0015�K�\ry?��g\u001cA\u00109�H�cJ.׷�^ `��\b$��\u0003�}���E<\u0012�\u0001ޟ�}}��u�5��l\u0002&���\u001c��\r���\u0019���9㹽*\u0018�ʚ�|:��A\u001d�\u0013L��1����\u0005N\u0013l\\�U1�-@�����T��2\bB����3h\u001b���Dm=�\t�\"Z>�}\\�<+4מ:\u0005͈K�d\u0018\u0005*���+\u0012f���|�\rR��6�U���n�Z#�D�\u00174A�\u0015|pI\u001dY��\u001bߟ��\u0015�\u001f�g\u0015���C\\\u0005%\u0015��)=�\n���G�.L\u0004��Gv\u0002\u001b,xY�c���b�\u0014V-\u001c���]f��4+?�\u0002H�y#�nUk�\u0002\u0011\u0019?a�33��힕����\u0006\u001b=��oV���oK�V�\u001b+Gؙ\"v�����R�\u0019k�\u0017��gܾmiV\\*YM���S�\u001e?��\b�V�#\u0015���77��i-���=�0&���m�A(�\u0013`��L��n_k��U�#c#/\u0019�\u0005_7/�~�cF\u001b؛n\u0005���\\�/���\u0000���^�.���A�\u0013ݵ\u001d¯\u00110ek\u0002CO�Nl�1�;�y�����\u001f\f�(\u0001�����׫)m���3��,�\u0001�RZƜ�@GW��\u001a9�*�a����-�\b�fAX2U�|�����<�z\b*�+���\u0002�|j����\n�I���zp٥s�LNG㵮��ԯ���ox�8��=d\u0018�N�T,&�\u000e�3S�`�\u001aS�6\u001er�4y��y�Q\u0014��\n�بI.���Ѧ�\u0012�{��\n�~\u000e��u�M�r\u0011 =��c�}M���g*KƆ������&4����\t8�s�7\u00064�A,�\u0013t���t\u0001�d�6S�\n����&t�\u0002��\u000bmg\u001a�/�6+\u0019�\u001c\u001f��8�i�*��\u001d����Sd�\u001cJ45&w�3�q\u000f��!�Q�\u000b�������)}��q��*���kN\f��\u001bQ��T�4e�E�#�I��̯)\u000e�q�\u0014\u0017��\n>��MwF�\u0001�,�f'H\u000e,�V?����0;lJ.�]�I,��T�)�6\u0014�u\u0005?]��\u0017�Q\rn\f_Fvv�E����\u0003ah}\rp\u0000\f\u0001�,\f���m\u0004o/1�:\u001e+\u000fU��:\u0011��G^7�����?F~Q\u0012s�\u0006��u\"���c�\u0007//\u0017Ş�\u0000d}��\u0007�_�مI}5�A/�\u0013���Mv������lQ��.h��u��ϞY\u0011\u00023�@;�F��\u0001\u0007@~�B�M\u0019`i�^��\t�\u0006��\u0010cx�]Z�(_'���|�������+�xЁ�(��\f�t�\u001e�}�\f��:\u001c᎖|n��ϑ�>.�yΎ\u0014\u000bOzy�g\u00173'�������\u0012�\f�\u0013�\u001a2�\"�9�x��Rny/E��R,~�ձ'wu��\u0003\u0019�O|�\u0011XK��\u001c�`\u001f^�t���kLt>�^jXm�3[���d�g\u0019���b��WS�\u0012�F_�P|������1�\u0013�T�^\u0001\\\u0005�$��4i�;z�*\u001e5�\tG����\u000fX\u001f@����E���ԏ:㛘32`\u0010$��h�l�% �||�-���A*�\u0013���۷-��&��\u0003%ͬ�>�էӉdž;i��3�S��A|��46�m�$ϸ�Ǹ\u0005Gpf������9�#ĩ��\u0007\u001f�\u0014�����;�?\u0018U6��4�\u0004�!,��ȥ\u000bD�H\u0013�W+a���!o�:\u000f(?�`d׽P\u000fx�e`%�w�h\"�BA\u0010\u0006\u0002�Xw\u0000D��H�Ս���èw#��3i�Q�\u0014�y����j�q���Pe��<�]�\u001eVy��L��\t#�L*��T �\t�yυ�G\u0012�]\u0005�'�0zσ�@QD���}���t�w�Q�������\u0012�\u0007*\fIJz��%�6�܀��MdUd*��P����7s3�\t\u0013��4\t^S\u001f��**�o�AA�\u0013����ȵt'�tkR�q�\u0001g[h\u001402��9)d�\u000fV��73�`e\u001e8\u0000���;\nM���\u000f�N'3ތ4�\u0011���MC�lO\u000e�\u0007�:6\u0005\"DQ\u0006�C��*9�T9������\u0004�r��>��Ȋ�5�$&�Lh[9�?�7\u0007P\u0005¨��i\u001c�J/D0KE��+>��\n9�z�s�J-�=��b%�@x@����{�u����߁%s�@s��\t��2\u0003�f��u�֨k�\t\u001d+'n �Z������\u0002\t��\u0007E���������1Ë�V^dD,���O��Wr�fS\u0015���\u001b��ـÉ��P<�������m�\u0005i��ڧ��\"�Nn�K��y�\u0018P����%D�\"f�h\u001b��х�+ߟ�R))n�A4�\u0013Ā�X\r��i��6�_20vY\t�\u0016L�\t�&\u001b��S�1s��ز�!\u001d���q��\tC�\u0003e�f\u0006Ů�\u0014d\u001d���C�w3\u0013����j��H���\u001c�b�\u0000Jc�!���3�R�zVQ�ƀKt�W�i�-)Tn%d�AP\u0004�b�5վ�|�\u0016\u000b\u0001#\b�k=���\u0017O�P8G\u0004V)�J�c�������\u001c4嗄?�9�]�� ���\"G���'�k�K�b\u001a�2.F.́N@�\tӻ�\u0004��d��;M��:�&-p��w:�����\u0005��N��Ǿ1=/�E�3��\f\u001e��\u0003f�8\u0010��u�ͳ�\u000bGD��]\u0012�����j��33�y;��ZW��.i-�\"�e�8�\u000e�\u0006�L�A,�\u0013؀�۷B���Ac�}s}-l�l�\u000f�B\\��(`2gG\u0007�he�4��\u0019��{j�Ky\u001b\u0004��B��H���|�b����9��U �\u0014��3��t[�f��}+OC�s7��Ck�\t���\u0002�Y����+1&��pΚ���\u0002W��5Ҁ\u000b���xIAN�\u0015f,����n���{�]\u000f�\u0004\u0013\u0011�\b�R�\b\r\u0006�v\u0013\\�=)�\n�O;�ʺ\u0002)�4mg\u001e@\u001d��4��O5\b_ cۋ.��a\u0002�⯤+q�f�\n�Ql\u000fA\u0013R�y��7A�-d\u0006�!��J^W\u0017+T�_�兺�����{�Na��v�f���C'�\u0006{Aa\b \u0000\u0004��\u0004�N�=�\u0004��\u0005ꅁa�A>�\u0013��Mz�\u0016����u�d�����\u001c�\\v7�sj��\u000f�&�*@��1�C�YY\t;�E�\u0017�O�����c+������<֜�:�H�\t܎��>��\u0004%�����}��\\^w7)^\u000b�aM\u000bPж3�&\u001b\u001a*'\u001aD��3�ʥ����\u001e�z�a���뛈�‹�`6�\r\u0015U�;\u0002�\n\u0004_��\u0016}M�W�\u0003��L\u0015?޴�/�A�\u0005\u0005O$��\u0013TK�S~�\f\t�9���/�7�\"�š�\u000bf\u0005b��#|��q\u0007�4�ű-k�:\b\\�\u001d�H[R%e#�\u0001�~����q�\u0000{\b\u0011Z�s\u0010�U\u001c~HySL��[�\u001e�����ؘ�dAY.�91^�\r� ��`�p\u001c��(��s\u0014\u0012q�k�^g�T�\u0003d0��A;�\u0014\u0000��L�\u0011��POeL��\u0015\nɸM���\u0016t/W\u001b\u001e�M`���\u0003���w�a_�6��Y�Pz�\u001f���\u0003I\u0003�)Ď8\n��*\u0001'�u_��-/>/p�s)�<��o�\b\u000f\u0010�<�����Zu����\u0001i(�\u0015c���Y��9�)o9��z\u0011�s,��?j�.pw{���R���V\"�C���R\u000b�h\t;e\u0003��o�{��C��I�>�xic&\b�\u0018�{�\u0007CHS�+��:CE@\u001d�)�!%���#r\u000b�]F2M�y�\u0000�A:�\u0000�5F��M,���g�t%�G\u001d}T\u0001�C8P����ZL��Χ�ޠ�n�>`_{$Ji��\u000e�N{����\f�B\u0018Y�;��w�װ���Ĝw����;'CãS��f\r*�r�(\byJY�e�~�^�R�X\u0007k��z�hSy�w���\u0011\u001c��y���K��Z����r,�)'W�s�\f\b\tO�I�\u001bo�|�\n��m#����.��G� p�[Vi�f�5�\u001d\u0005H\u001e2�0�F.\u000e�\u0016�I��ǃ\u001d5�Ŗ���1�\u0000\u0002Qej@�\u001dc�f�P\u0013.�D��\u0001\f\u001c��9s<��`���\u0014u[�\u0019��FɆ��ݯ���L6�\"�z6Ҡ�sgm�\u0001Ŧwd�C�BI\u0006@\t�����߻h6\u0004=�w�\u0012J���i\u00055x�\u0004ZW��\u0001��%\u0000?��|�����@b[Bن��\u001f#�\u0018�v�M I�\b���-ţAH�\u0014<���d\u001fmgt��E-�~,���g\u000et��+��{��Aw2lRgm�\"��>쀗����Y\u0011�C\u0001�\u000e\u001erD�C\u001f\u001b;N��x�AIv&��ܕ�j���\u001d߭W�a�6�ߓf\u0010c�\u0011V,�3Ҥ�ȵ(�h\u00194m`�c܈\u0012m�ު��ֶ�E��\u0017\u0000^WQ��Q�5V4kq�c�����Ӑ����:t\u0007{k/\u0015;@�\u000e�\u000b���9x`ܘ�]\b�+)�\u001c\u0019%L��=��ݕ2ܵ>F+�\u0001Je��'����y���=�/$L��\u0015\u0007N�a��aq^{�U��F�~�kn�y�ZV{�9�\u0013\f�qù\u0000\bn�a;�v���rp��rn3�\u0018���?B[��\u0015�‡j�o��4�m�ο�\u0014+�[�\u0002�\u0003�\"�_r�B\u0012-w@�A\u001c�\u0014P���m\u0012B�\t�Q&\u0002È[S�DW+e������}��\u001bYޓq�2/u�Qx��\u0012n0��s\r�ugf�x\u0018�\t\u0015|��\u0012c-Z�1�_��Ԣ���-5�c�8lN~/�lT�r�I%-�Sq��q\u0019썌�H-ZA�\u0006���a�8���d�-���σ���X��N���\by!�<�z�ҞӸsD���\u001bš2�_��6���ŗ��\t9'���FN��;K�ϊ�9�ɅW�~g��\u001b�\u001d;��\u0003��&�$��N=�\n`��҇�@4�܉Dg\n��[z>�D�N�ST�@��6��؍L�*������i|�\u0003X�9h͈}D[B�A!�\u0014d���c!���m,�����6�G�Y�a_���M\u0014_�#�\u0019\u0007\u001fɴ\u0001���r�t�u\u0004]̉\"��D}��>�\u00160�h���ɴbT3��?0�N�\\\u001c#+\u0018$J�\u0012\u0012�c��x!�\t��u���&\u001a\b�\u0004�/k�G$���!a�X\u0019_�V�11���\u0006�\f0ҡ\\y�1��|H\u0010.�w��irp�\u0007�W������9�\u0001�L�́�q\u001cv6��*���7F����LV\u001c\u001aH��L�C@\u000e�=I��G�K��q\u0017>>�:.æj�\u0014X�0��\u0016�A@�\u000bϜ�(>� \u001c}�Z��x��N�X� qw\u0007�Y�\f���ᇣ\u0013Ģ�R�\u0007�6nIM@�A+�\u0014x��Mzة�$u�\u000ek���#�7�ط\u001c7ᾩ�B6�~��+7kHs\u000eN7�6�!�@�;O���������as�U i���\f��Ŋb񮏽�۫�$\u001e�\u000fL�e��\u0003Gm�\u001a\u001f�����\u0015�W#X$y\u0007?m\u0004�N��^���\tm�(�ܟFB��g\u000f޷�fbF�\u0016�\u0003�k&^r�����es\u0005��%?�oݦ)��X9�O`�\u000b��\u0002dw�\tL�\u0012i�\u0019`�W���.�\b����cm�U\u0015s�r��[��\u0012��6*��\u0001�D=\\\u000b�C��q>\u0011���:*,<��\u0003��M���uuL.g����Q�Y�ԣ���n�,���>[*��������?N\u0015��vV&\f��/�1e\u0005\u0019볮$n׍\u0013ڻ6.pۙHGP@�.z�.\u0000\u0019@��^\f��\b��i��@\u0001\u00125~pƫ�i\u0003�x}�9\u0001+>��k\u000e��5V�*C����M\u0007�W�q?Wu�Q�9\u001ei+\\�\u000fʀJ\b��å����\u0007�yӛ]�^�;�(qc���(�L�L�\u0000���\u0006G�F2\u0005�W�-���_�T�\u001bv\u0011�g��a�����\u0004\nq>5�U�������\b�rjk�X���&(��(�cȸ�\u0016�n�R�\u0012�A;�\u0014Ȁ�L���33 ��:t ����)�y�/1�\r /g]�#\n��5��~Q��\u0011�ߴ\u001ex\u001c�\u0011\u0005o��-�;B?�ה��A�\u001duU�A6a�m\u001f��hD���Q��\u001b�\\\u000el\\�Q�i[2Q�t�5\u001d…@�ؿ\u001c\u0017��*]G1�\tNf�4\u0011BRzȟP��S�\u0014���/\"�U1��S��I�\u0001|\t�^\u0015�\ba\u0005TZ�p��ÀK�4\u0010u��\u0006�Eϒ6\u0007&\u0002\u0004h�I�-x(��\t��\u001d�C~V:\u0001�.v�\u0007C�\u001b\u000eO\"���\u0001&-\u001eR�����C�%\u0007R*\u0000a��t��mQq��i�\u0012�a�k�\u000b[.�!jm/׳޿�/Y�uLsݦ$���K��+��[�\u001c4���nIy\u001e�ߋ�\"\u0012ڣAS�\u0014܀�L��nK����\u0010o�������d����u\u001c�����@�*��I��#ϣ�\u0013\u0004����\u000eqq]��3L�W�l����ii����\u0007�\u0018�\u001ezm\nv�\u0004\f�1�5��\u0003�\\\r�&g�ӍRGV\"C��M��ĥ�\u000bQ\u0006�9,�^�\u000e����\u0004���*��'\u0019�!ٽ�<\"\u0018���\nL��Q\\�����Ws\u0012�D>e�v\tկ°A��W\u00198|\u001d�����<[���y(��ѹ#�lTS���\u001bL\u0000�^�a˓0�AS��!@��BN��-ng24������qpÐ\u001e�\b�=+��\u001a���5�h�L,\u0000�vG�GC���.�3\u001c �4\n\u0013�6Da����\u0013\n�\u00003ɩ�\r�mK�3�X>�}�brl�\u0014ϊ����(\u001c�V����;Ť�A9�\u0014�����-n!\u000e�\u0007�\u0019��N�̇���y| &ʙ9\f�h�l�]\u001a�\u0013LT3tD\t�\u000b@��\u001e\u001c��I;\r~����<=���o��o�\u0007\u0005�I�\u0018%P\u001e{Rߥ4P%�,3\u0013�);�f\u0007�ģP\u0002�\"bwU�\u001b��6�\u0002�����\u0007��~\u001f��\u000e��@�s\u001a�{�#��>n�y�!V�d}\u0012[\u000et\\�\\(k�M�f<;�l�W���p�^|\u000fW�WÓF�xO�G��7���r�\u0019��GM(z,�j��k\"m&D��z�J��L�ҩ[5�Dh�S�G\u0015\u001bZ��#����U`��#�\u0002�8[\u0003�\u0012�Ȅ��dKm���y�m ŋ\b��_\\\u0012\t���-�Բ�v܋Ƒ�쥵\u0013�BF�\u0015\u0004���?���~���դ�A;�G�ĜsI�\u0001Iř\u0019�\rQ\u0017\"��Y\u0010h�\u001f \r�\u001d��Uu�\u0012��)��4�AKɬ#\u001aס*ܯ��\u0018��\u000f��ܟ�?� \u0015\t\u001e�\u001b�D\u001f\u0015��7_9m�S@\u0019\u0015\u0016ӱ@�'�vu�G\u0018�K\"qnk�2�m\u000bKUϣ�zEx�\u001cÁs�B�f�\t��.��~t�䴦C��\\0�@�3�1\u0018�n�b\u0018�O3\u000f��N\u0017\u0010�C�O\u0012����9��M,@�\u0015�4��>/��?�A�-L���2\u001a���x�h�Wi�Կ�[���K#\u0003��EY)�&�*G�~��^z���H��2��]���\u0018١\"w��k�K��C_��@v�m9�GFq�Oи1\u0016���\n[��Ȝ\u001ano��U�C�2\u000e��=\f\u000f�(Ao�\u001fL�1\u001f>�rÖr\u0005\f\u001c�\u0019��[�8R��:�+�H*v��U�\"\u001bw��(u��#�\t�A�M\nS���Q2Hig��X\u0007�a���\u001cHM�\u0014\u0017k��mFE��b�u\u000f�%��\u0016���\t����k�9w��\u001e]yʧ�q��qK3���;��\u0000�K&J�<ʒ3�fO�q8Xv�\t���\u0015�I#2(�=�\r'��*�?�7؛]`�,�M��\u0014\u001aZ�@���~�K݉�8z����@�uP\"��-��P��Lg9��+ӡ�ѵ�\u0013�A>�\u0015\u0018��&v�\\o>-H�\tpڍ�ʗ4����\u0019�jP\u0013�\u001a�,�13�n\u001c8�A���\",\u0017�v\u0000�\u0015M�*�\u001dHI�0.�E����Hy���FS�a�?���H$6�>��Kl{��A�~���7�V{�\u0012�*�y�G�yXl-u(��\u0004s�ڑ|�wԡ��5l�D�\u0002\r�&oψ������\"������2��\r�\t �t��#\u0011\\kg㢬(����%k��e����z\u001ccoK%����/Ƽ�\u001f\n�^nY�_�U�����V`�\u0019�>P�v�j�5R\t�\t�似\u00011��kһ#����m/���i��_\u0007�\u0010V�\u0005|��\u0013��u{�b�]��$Yo�(<�\b\u0004V��ޣ\u0003l�\u0000��\b�ph�A6�\u0015,��M�$N�H�%�74;�+\n��/�\u0001\f��\u0012�s]��%\u0004||����\"�\u0014�0����\u0001�°˞���;�l��봮O��\u001c����\u0003�%\"\u00036(�%��}`�\u000f�\u0007�>�հ\u00033�\u0013�\u0001P��9^7���=����\u0012�uI��hM4�\u001a�\u000b�E\u0004:ϛc�\u0014V\u0000Vљ��s����^gt���Q4�\u0016�\f�\u0017R��ln&)'n��\u0002=���?e�Y\tç�o�\u0015\u000ew�qsn\u0015r.\u000bB\u0015�ME\u0004vl]|�u�M��,���xT\u0007߄c�\u0011�7)�'�\u0016��f\u001dV5���&I\u0003�0S�.M���\u0002ap�%�_�������]���_�������\u0004�|��聈9NO��n����[i�\u0001�A*�\u0015@��\u0002/y�\u000e��-Y�SH�\u000fŷO~��\u0003!Em\u001e8Nh\u00070�p/\u0016B1H2� S��H�1\n\u0001�\u0001�\u0006HӪ��\u0010\u0011\u0003=O�\t\u0010N-��:�#I\u000e������rx�j!<;�a�\u0003@-�!õ��\u0005�t��\"\u000bR|��h\u0007F�U{-S\u0017�jx`ʲ���\u0016<��\b�\u001b�S�ݏ�0������l\u001f�\u0013E}��E���\u0017t+�\"\u001c\u001e��a�-��6��\u000e��\u0007Dx䮎�4��\r�܂�\u0007��uh1D�=Q����/fƐrK�<8I\u0011�92y�G\u001cx��(`�-�!\b�䆐\u0014<@@IW��\u0006s�*�s\u001a����­\rو���^�Q��.�>D\u000b�����ܟH�A)�\u0015T���9\u001d/\u001b\u0014�U�\u0017\u0018�(��@\u0017����5g\u001eD\u0019k��\u0002�́�e �a\u0006\u0017\u0012��Ѧ\r\u0014�Zi%�l7��\u0018�m���-rT1}Ax�\u0002�D#!\u0016\u0000DB$\u0017}G����nq+fΕ\u00063QxR�-\u0001^4#V�OL�\u000e\u0000�ٔ@v�����F\b���\u0001��n\u0002�E�W����H�V�SNvYU\u0006֗�f���$:w���%��y�\n\u0013�D�0X�\u0019P���+r{EZ$�g\u001a0�t�>;u�\u0005�tB\u0001�H{LD�f\u0002\u0018\u0002\u000f+p�\f@�9��\u0019NМ�nK��\u000bQ]BCC\u0004s�L'��l�\b�r|EL��b�g��Z9��ÁD;ն��=\u0011�.��Q�&�4V�᧣A)�\u0015h���\u0011fH�|�~͂\u001fd����\u0011\u0013�\u0017!w�~�Ҭ��U�n�\fG4GY\u0010k}\u0003l\u000b��֚\b�J\u0006�f\u001a��6i��\u000f9��3F��·�N֑)�\u0018y\u001c�����$u\u001a�*!?�;ԋ#\u0004�C�\u000e_G\rǁ�RB��\u0015\u0005Psm>�\\}}\u000b\u00144,;\u001d�{�Nrµ�Y�i���مSy�^z���c�N\b\u0018�\u000fn�R�v�Z=��+�R���\u0013\u0006��\u0016`R2�\t�.0ԋ�wev��;>„c\u0013��\u001e�[\u0018A;\u0014\u001e`$W'��hu�A}s�\u001blϔد�\r�'0\u0016s!�\u000eZ��{ž�$���\\NdFHI�B���\u000fOp�t��\u001f̒k�`�H\u0007��@�� )��A)�\u0015|����V)�e|���T��\u0015�k�DL�\u0000*�\u0010pI�8�B\u001b۶�\u000f��&�}����N�[Ц��m���w�W�+ѓ3��\u0001ޮ�6?}\u0000�����]Z�\u0003>�FkuA���E�\u001fAƠt��f�>�)�ۃ߅粑m.Ze7\u0003�T�eꋎ��،J�O\n����nM�\u0017ٶ\u0002-\u000f\u0012y\u000f@�Z\u0010\u0002\u000b�6\r��0�:S�$ؑ����\"�A\u001c\u0001T4�\tY�5\u0005��@�m�J���i�h�\u00075:G�_\\oW��0���c��u/f�]v��\"a\u0013��f�ڊ\u001d���1A\"�sXj\u0000\u0018\u0006C\u0017!`��s\u001d�\u0017���3�0(���&=�\u001b���I�\u0019\u0001bQ\fM��)��A\u001f�\u0015���\u0013�����[jb�bM�!�\bh\u001d�Q4�w�;�Z���/�w�#�\u0002�\u001cɇ8f�\u001c'B��%7�9���ҚY\u0016�+�x�yB�ǧ�\u001c\u001fR\u0016k��\u0002\u0000�*\t�7lYD�u����z��e��\u0019Lw�\u0005%R�dTK�\u001b�ɋ���<:\u0007���S\u001e\u0006\u0000%N\u001e�F��X筱d\f\u0010Qt���*$ä\u0001�\u000e�9ظ��!�\u001aPvx����K=tl��8^�\u0018�JJAA\u001f\u0014\u0012\u001c��~\u0012�T�Zs�\u000f��>$#�\u0007�\u0015�\u0006�d�\u0013[ܢ��&�\u0004�\u0010�p����|*�V �\u0012�\u0010a\u0018k\ne��\u000f{�n��y�s�\u0015���\u001b��!���\u000b�{\t�ݣA&�\u0015���/#�@$5�8����$1Sf�w/�k,�-�\r�q=\n�O&\u0002{�\u0014B\u0001 ��O�y�� f�\u0000c��fp��BD(ɋkڬ\u0001��\u001f�|�*\u001a\fi_�|��X�����.�⻙5\n���\u0006����Gw?]�\u0016]_�A��1���wC~g .q/\u0013\b�P\u0014\u0014�V�!&čA��M�\u0001{'z\u0011���0�R�b޸��\"�9D,Nqx��4���K�r[�\u0003\u0000���^<\u0017E�s��\u0017��\u0007���T��\u001aW�\u0005�1\u001a���\\\u0012,/�?�M9w�N��3.tĶ�\u0007eEi��c��職�\u0005c�ӠT��=��ǵ�j\u0019]\u0015��\u001d��\u001bL���F����G�uL�A#�\u0015���\u0002,_;�\u0010J\u0005�%q�\tzpo�quc��+N\u001c��\u000e�6��c•�L�Eʭ\u000b�Y�K�L\u0010yS�5l!\u000e��O�&q��1\u0010Ȯe^��G?�f;m�����盁>�c�\"�{���!7��y����Q���o\\}e6VCx]�$I��\bp��%��\u0007���+�[[�\u001f\u001c\u0005nK\u0018-�[c�!Gy��w{��vmq�����8R\u0000{x]��\u0017l$\u00136;��c�\u0015p\fS\u0002\u0012d\"-!Q�PaldP��\u001d\u001a\u0011&\u0007|�sP\u0001�:�\u0017S@��/3\u0014�\u0013�_��\"]�u&�EJQ���д,�'�*w��\nO�f\u0015�ђZ[ ��6�l\u001b.@�Um��\u0001rOh���A\"�\u0015̀�\b]\u0001\u000eB\u001fe�.E΂|�s�0�\u0006O4��2\u0013��\u001b�د������DU:��i �\u0003�r�\u0006.3��Ώm\u001d���a�����\u001b%�\t\u0002��ݞTly4��k�cX��\u001ajQK�\u0011��,�?l�\u0005Է��eC\u001a/��X��^�@*,Ӡ%1c�MV ��T����ni�xߦ^g�_\u0003\u0016[y�R.\u001a|��m;�c'�lI���/�G\u0000�w�,���\u0011|gL�F�p��.X\u0003��\u0013����Z.%\n�\u0000�\u0003��ft��g�<���\u0017�;�\u0006\"ǻ�+�kԝ�w�����ߣk1·j喭\bZ�\u0018[k��O�#�\u0013���gH�\u0016*\u0007����w£A/�\u0015���\u0013f�5B��\ny�%kV/nR^S!\u0012\u001d��j������7��\u0012�[7��Y��,�m�~�ys\u000e���b�\u000e����0jgb\"�%W)ϸ-�����4���v����F��PN\u0018R��J�V(lh����Qג\u0015x��\\9�A^�Z��1\u000b���n!�dxm�Gc��J\u0004W\n\u0017nbL�]��t=�|�\u001e�yK\u0018�;�\u000b�Lx\u001a����cģ5\u0001\notV:[w@E\u0011��\u0010O� �-s�\u00199��\u001fU�\u0014�\u0011��2\u0011���Ѣ�����\u0019p���z֮\u001a������pm�\u0007C���\u0002k\u000f��<��B�b�Иn|)� ��AՁ>�Ǐ��Z��L\u00125�h�5�` \u001f9��J����A �\u0015��.\f>�[y�,�n6<�\tҞt\u0015��5^`�� \u001e�����-\u0016�\u0018�l����\u0019�.j��\u0005�Q;[�o<�\u0011���\u0000O��xk�u$b��<\u001a��u5�c�a���A^�r�+��|��I��o���\u000e�a\u0018��)K\u001d���7B���f ���\u0019�>�P�8D�B���LlR\u0011Q>���\u0010�\u0012�\u001f\f��&ğ�f\u001b\u001b���H�%Ɋ\u0019�K�8(�ݕzK�ǝ4�}E�h\u0000\u0019m�FD�\u0019�>���\u001c���+�\rL��x��\u0003X��̞Bw,�(ך�K�?DNS���|��]IF,�_����Bт��7}QI��I�S�c9HR&�e��s\u0019�V@��M\u001a4n_���\u0013\\�N�\u0001\n\u001f�SM���|��\u001b�K��?dj�\u0016��s�>�һ�*%xE\u001cjsμ\u0003\u0003\u001c�v��oR=N\u001d��E\u0006HK>�h\u0004�(\u0000\u0005\u0006���4|\bw̪��\t;\u0000\u0011����r�@�s\u0005�\u0000�1�6���B\u0004�ހ��4�\u001d,���d8�E���\u0016�2���\f+\"��\u000eA\u0007َ>R��\u0012�~\u0006W�T37�\"�a;��\u00151�q�Я\u0004��*�LJ�^�T\u0012�E߰�F��}�#\u0000�r��A��8��z����\n�Yk@��o�:\u0003n�\u0005Ʃ��w��\fa[�{�[�yK�*��\u000b��ˠ�c\u0010��r��l�,���P�r�\u0013�\u0013HG��rЛ\u0003�*\u0018<�g{\u0007��.\u000e�\u0018\u0015si0늹u;j�9�\u0004t\\b�K1\u0003Q��{]�\u001b'�r\u0015��u���?�@Wv����� �i\u0012\u0006B��n\u0001`?9Q��Cv�����21�=\u0001�ɛKZ&�z;�\u0003����*\u0010�6�1����I�\u001b��~�A\f�\u00160��X�^8D�>J\u0005�,���?��y�O9`�>Y�K`��n;\u000f\u0006\u000b��b~��h��\u001aj6�B�%��V�\u0016��U�&\fڶO�͠�9���zw8�\u001b�`ʫ��\"Z��^v��1\u000eAOܸ�J4�k\u0016�s�0�G�b��r�\u0013\u0017T\u001b\u001d \u0010#v��Z�\u000f{���\u001cg�q���\u0012m�D\u0019\t�o�l�ÿ�C�B�O\"�\u0010}�xF�����3͇��%8�)�\r��8-�}bl\u0000��BVM�˟�!\u001b}�m\r]\u0002\u0018��x���\u0019E��7\u001b\u0006��>�`��\u0019\u000b!&���8�\\���t\u001a�ln�\u0003\u0003u_��@��\u0016D��MY\u000e���v��N������\u0010s^\"���D\u001c4cٰ�\u0004��I�\u001c?q��}t>*H�\u001a1v$���'+�-w򓷌P���@�1��}��P���\u0003����e\u0002�&�!\u001bn��>v��\u001f�\u000f��u��S\u001bW��Ju�E�?S�ʻ��T��\u0003��wp�:��5\\�����r���� �!�\u0003<���?�\f�U�丝��'Oǽ\u0002��\u001d���Z��2\u000b\u0017\u0002��܌\u001b��\u00060��ᱽS\u0012\"�\u001d\u001bD\u001aZ��╎�p\u0007 g��e`��\u0000��5X�\u0014�\u0003h��S�ЪS�A\u000e�\u0016X��X����yX����,t�+k�9~���e���GRF�7\\Ô(�tȀn��)�\u0010��\u000b2�s�Q�������\u0018�_&᧩����~f7\u0003\u001cb��Q��w�|\f�7MX\u001e�\u0013@\fqj\nɁ\u001f�jJ\fs�;?��xh��r0�\u0014<�,)�A\u0010\u0006��\r�\u0015��HǹJl��(�}\u000b\u001bö}\t&f\f��@r��d/�k�\u0014\\;���\u001e�3���>�6(\u0018��#/\u001f�\u001fc�4g�.�\u0005<G\fC%�r�s$�\n�W��2`\u001e���1k�ʿ�z\u0019*-�ߋ5��.�~�,�\u000f0̐�S!�/��6D����ȣA\u0013�\u0016l���d;�\fT#�t�C�Ϩ�\u0018�!X��h�\u0005��tNI\u0001ݼ�x�Q\u001eT�)0^�ƙz�^yC3����[�:�*ҋ��\u0003���K�x�@{M\u0015V�OƋi���<��\u0004B\u000b\f+x\u0006�C*y�t�R�@�Oe�g���xZ�G�\f��A���?=�w�r\u00000!\u0003�֎ײ�����B/��S3�8N�!el�9�\u0007\u001a���5r`�_j�&Y0��\u0005\u000b�t#<�K�,��I�\u0005i��M��{9��惃ĩ<]��5�\u0007$�+\u000e�R��3��,lB���*r���'Fo\u0019\u0004l*�\u0000���Җ��\u0000�����I\u0011�A\u001c�\u0016����a��j\u0004\u0004\u0004#�˧\\5�\r\u0015�]��M�/��\u0004\u00180v�\u0006zs��(4\u001b��ץ�\u0003��h������(��b�Ru,2�V o\u001ec\u001e��ڇ��{�6+����q������7\n�y���.�R�׺-]��>\u0010m���\f�0\u0019���\u001f*��J\u0012�1�p�%��Jb�\u001c\u0017\u0002�v�m`\u001d�R�]��6�\u001c[D�$GolD�\n\u00078�τ�\u00036���\u000eZ2sv�z��ڌ�4\u001d+�\t�\u001eb\u0007�M�ܘbMA)��i�NB�i��\u001c#C9�3�'�\u0010B�l�\u001aW\u000b�\u0019j\u0018��d�,͹>�\u0014��\b\u0004��և�\u000e\u0000�}��;�\u0002Nf?*\f%\u0013�A'�\u0016����a������\u001f#�Pvx�h &\u0017{H��}t\u0018\u0001^Q�0�>�@�\u0010��$\u0001-\u0019-'�\u0010*%��K�І��A<\u001f=5S��\u0013V�\f�u��k)��B��\u001fo�\u0005�\u0000\u0010j�}�$*y\u0001H��($b�Q,�cVh�M�O�8�a\u001e�ewq��\u0015\\�p#�����\u0004\u000e��ܭ��\u00109�p��S�e\u0018l�!E�\u0010�.ly���K\\��)\u000e8�\u0018�s\f�%4\u000eo��L5��\u001d�F�O�(�s|]��j4\u0001�V�_pF����\u0017̱�X>ysշ�ëR|\u001ck�ʮ^�V�o8�YY��zp|�h��u)��\"����\u0018᭯��$\u001b���\u0019�P�z��(o2���\u0012�A;�\u0016���Mz��HPd#\u0018��'>����^0]t���ʹ��Ɂ�\u0014Q^�wB��vYw�O���ƾ���׉\u0007ꇙ��J\u0016~\u0001OЬmv�����x4��\u0011Y\u001dEu��\u0014\u001a\r����Y���\u001b�\u000ef\bML�_\u001e���@�#A1`\u0007>��\u0007~�r���V6\u0002�h��β\r+k\b�^�?�q�o�Dp���Co�>n\u001c�\u0002��ݖ�r!�\u0013��D{��\tҦA��R�0;۱�\n\f��6L��q�\u0004P�\u0004\u0014Fe��0�zBMXl�)B���Dw\u001b���\u0004�:f���\u0019\u0005�Vи޳U#�9�\u0017[���S��}9)�\u0007�\"3\u0017پw\u0017�\u0006v�?�6\u0006\u001e�-͇�H\f��`M/�[��S^JBGT�2�rH�AE�\u0016����U\u0011�ېŕ�v�8���y�צ}�\u0001k��H\u000b�h���O�El�\u0018�i��>\\�\u0004޷\u0019˒b�#��D�\fo�.�1\u000br97S��\u0006���7\u0005�\u0012�ӞD�z���t���\u0007��X�.h\u0010`����<\u000b~�)N��!\u0005Iu�#u:-\u0015t�d����\u000b��\u001a���v/��~`�����LJ�Vߴ�\u0001�s�h%\u0011�b��.��\u0016��\u0005�%U?���;�ug�/�؈�lb�T(�k\u0005$�a�T\u0017\\omTe=J���$\u0004ar��<�\u0000�q�nLo\u0018��p%Z@��/̅r\u000b\t��\u001e�\u0014����v����Gk4aRІ�a�:�$��{�\u0017$��\n�-�\u001bǟ���Jv��w�\u0006w�*˦l���\u0018�oi��S��ᒣAJ�\u0016Ѐ��b\u0016\u0002N�n�С\n��d\u001e�\u000b�~.�`]�P>ŧ�������1��eH�\u0011d_�\u0002{�E��\u0011ğ>��r�z��|\u0012Ǻo��A�t��t}\n\u0000\u0004�0I�ߪ7���4��;�٧i`�����(�`�\u0011�Z��h4H���4�\u00039\u000fg�R�2\u0018�:;ws��lH*�C�\u001eI�>�_{�xk����\b]%�#�(K2��_���gA�-42DIs�՚i���S��\f��\u0011\u0006��4\u001d�'\u0015�c\u001d����)y�B.�\f��}{Me�\u001b��#(Z��\u0001�j\u0013�Dr����=,A7z,\f�J͇�\u001e��U�)�#�:I�|�>�-�\u000f���<�X4�� ��2����̐����B\u001e\u001e�ZN��?z�\tˤ\u000e�x���M��A<�\u0016���s�γC\u000e�m\u0015X�l`V2_\u0004X\n�\u000bY\u0000�,}!�j�\u0004\u0018,�sVt�1\u0013���Pz��\"Fڴ\u0006��xڈ�5�\u0015I�sbӖي��\u0005��@��\u0012�AÁ\u0017 ���p���4\u0014#�Ak���'\u0004�`��\u0000����4�\u0005\u0003dH��\\/\u0011I��%��Ύ315�M�J\u0000�\u0003U��|Q?t��\f+,������Y�w\u0003�l�ف���v��A�t\u00126%�7CG��\":��D�8��\tS�OQ�\u0002�\u0010�*^��ʣ�0�PW���c\b\u0013;@*`�S�\\�Q8]�\u0014��-IJ�#����H]<�\u0002;\u00039\u001fr?�H��eii\u0006ym���?X�\u0001�v��bsRp1YZ\b\u0005�\u0010UV6\u0018��R�\u0017���;�\u0003ͬ�Թ�\u0005�\u001d��3\u0018V�b�v\u001a�%Ύ���k͉Gk�?Z��\u0002��Ccak�8g�˦p\u0003��P���Ͳ�������k?4v\u0011�����\u0004����Y�\u0015\u0005��\u0004�\u001e�]\t�\r\u0005�\"��X����\u001d-��Z\u001c����3��E��˜.eD\u0016�O�A�%�XG�\u0017`\u0014\u0002|\u0018]zD�`SG���)�掘�ٲ\u0012j\u0011XI��9��g�w�z�\u0004\u000e�e\u001a���)z~;5ʠ\u0004\u000fG\u0004��Wg\u0014[�\u0001\u001a\u0017���������\u0010�AC�\u00174�����Y�\"��*M�k\u0014\u001e���n�\\����\\�\u001a�Ɗ�T#�\u0015�>�F�\u0006��а�\u0005�\u0016\u0003���\u0015�L�\u00034�D#�珿_�\u0015�d\f�ʣ�\u001e�%����z��Q\\i��H2\u0002P�����̕��;aR\\�\rh�\n�l�X��1����Jb\n�\u0018�n�|�\u001b\u0012����\u0015��\u0003��o���:���\u0002�\u001c;�\u001d[�B$��\u0006\u0004�\u0015����*�\u0004x����IJ�r\u000e�����+�q0{�)cڟdÜw!M��\u0010�q\u0019�\r:3MT��\\Y[+8\u00120l\u0011j\u0011���\u000er\n�\u001c ��\u0018�\u001dƅϣ�q��^��ۿ�\u0013hF�'\u001a`��d�\tH\f�\u0004\u0012;`ݩs/����P+\u001dk���u⥺~�TZc\n�2Ui��AN�\u0017H���\u001e��\u0011y�\b\u0003�Y�\u001eH�O���$/]�hܟ ���\n�o�����|���Ud�\\���b\u0016h�Π\u000eO�%�q�\b��\u001a�\u001bs9Y�tb\u0017�\u0018[.�Ly&p���\u0003�]�,\u0015���K|�m���,��*<�>�-���H�\u001a?E�\u001a{4孇J��pJ�fJ\u0017d+&��RQ�<�|^�ZUy�1�]��J9ѽ�\u001df��2�<�����S�n��\u001c\u00185Qf�W3��o���\u0011��\u00031�(R�\u0017�ac\u0016'��,7\tZG|�f��\u001fa��\u001a���\b\u0012\rm��\"��S�ӕ�K\u0015D�\u0010V�\u0005�b\u0005\u001e@��\u0014~-�!ºN�=�-���)��\u001d�m\u0003\u0003n=�&�<�����\t\u0005:�\rX�x,=���#\u0006�J��\u0017��]C0Lݒ�AW�\u0017\\���!�Ns��\rf�,nZ�\u0018:�\u0011�3\\�$y�e�`\u0017\u0005G�TRv}�Jǐ;I\u001b�\u000e\u001eJ!\u0014��);t�E�Pz���'�\u000bPc�46KZ�.8����`.-nzB�=��ہ[}&:}�OQ��M�La��\u0017���o�\r��u�\\��f2��\u0018�f�����M\u0000�?{(JwG���6L������É�\u0011��l��\u001e�yqK�\u001f�ES��?R��\"�ϴ \u001a\u001d�\u000e\u0017>��u\u001f�\u0010�HW���\"|�.�\u000e\u0010(\u0016Ґ5�zoa���-^��ΔC�Z���2t�\f�%��|W;́��Ōf�&�,�ʦ?\u0013H��X\u00030Z�\u0000W�qh-�i6.(�b��{��'�^��Z�8,\b�fu{��9\u001d��ha!ԑ�l�̰�����\u0015\u0004�\u0013�\u0010�AU�\u0017p���cX��%!\u0001H\u0012\u0018�����!S�\u0004\u000e��*�x�'-e����ۓj/�\u0002ݕ&4��-M��e`DN�S\u001a�%w�k��\u000e�Nj����^+�sf4�kT!�#�a�9u����pBj?��Uȝ�1���E\u001f�� [\u0012�R\u0001\u001d?\u001b��s�4��^\r6E\u0007�.1\u0018S �\u0005�i�\u0011��PC\u001c��!�����\nQA\u0014\u001eisNp�YE�c���i9�\u000e��`1Y�̠赚+�\u0018�\u0019�%Kr\u001e\u0005U\r���ɑ�f}�H�x\u00041v#G!b��L8+��╾?%WH�s���\u0002�\tV\u0014�Y�})j��\u0002�K\u000e���g[kM-\u000fn�羾Dx%\f~��\u0014)�\u0002RS%h�YV4d�m\n:��,u+�2�O�O��Ty��:8e�\u000b�J�����)��AR�\u0017����&_o�ѣ�6Z7�88��J0\u0019\u0007��I_V4����N���@ڊġ�@�\u0006,�J8�e&0�cm�\u000b\u0007�\u000b�\u001e5�X\\Tv��Dw�Q`\u0004��7C\u0019�մ\u0005�4�]\u001dBu\"���\u0001�&�کz��„R����\b\\�\u0004\u000f�0�\u001b�\u0003+!#\u0006Nj����P��\u0002�\u0012zyXV���o&,�=���[͂��\u0012\u001ff\u0015\u000f\u0007ՙJ\u0012���$�[\u0000C!_f��ؒ\u0014yZ\u001ae��-6�ؠ��`�\u0012C��,|��/-����_�G��f8���8\u0001\u0006&_��'=i�U�[�\u000e�������\u0010��\u001fм[Y�,8��Z���O������+$�?\r�V�h��\u0019(�&\u000b5s\u0003E\u0005�-�\u001d�_e��R�i����v��� \u0004s�\"I���qNH\u001b吣AN�\u0017�����h�]��ؐe����i�H\u0015��\t\b�}��:��]h�\u0006�\nrW\u0010n\t��*��\u001a&��A8g�N��b\u0012\u00129��\bH��\u0005\u0018�lC{\u00055Bf�\u0006�����V�~'�|�\tF�ϳu�_\u001dC�ܵ�I-��iTK�S����\u0005�\u000e\u0017\u0001���2\u0004H�F�n�jv��s��#��?n�\u001f\u000fY��S�q\u0012�\u0000T�҆�d��\u0005�z��\n����\u0001\u0005ܵ#?B¢��\u0013�6�/d)��!�s==�\u001f\u0007>*\u0004r\u00028��\t[C(����\u000f�8�Y�\u0012\r��$��I�\f\f�h��q\u0000S��fMV���(�\u001053�\u0016����~��e\u0003��=�\"\u0002cl�\u001b��������\u001c$w���E\u001f+\u001a-�LC\u0002������h�\fb�ˁ=J\u000fEE����AC�\u0017���L�\u000b�x\u0004طɗT�\u000b�\u000e{\u0016\u001a\u001c\u0015���\u0019��\b;\u000f�\u0014�\f���*\u0012a���2�W��$m�n�\u00040�\r\r�h}��U\u0019�\u0014f-;n�O\u0003\u0017Y�O��rTx5�@�t��\u001a_��2�A�\u001d�tgf4��1E���\u0016���j�\fB_7\u0015�aq\u0001�;���J�y,*�\u0017\u0015��=�I6\u0015\u0016��I��(����M\u001f��\u001d�I\u0014_�Hj/ц\u001b}\u000fu�\\�F\u0016\u0012A�}%6��*E��Y�a�໿'�C-��\tԮ�\u0013RV\u0006\u0019x�\u000e]����hn ��Ϝ���َ�M�\u0018^��t�)\u00026r�\r�_`B���(p��\u0004���\u0002\u0001��g�'z� DKo�j$N\u0003��G\u0012�r��ϲ`VNQPь�\u0019�?a\u001b�Mfu\u0010�A4�\u0017���.i�b$!�\u0005�N�!�Vz�m��\u000e\n��\u0013�\u000b�R�\u001f(6�cD�\n߱1�\u0011\tY��o\\�:N�נ�0���\u0000�%����W����(^��{�L���T\u0019��Cw�J\u0012�nG���\u0006'\u001b�Z�9B1v��\u001eh��F��\u0016h2\u000b�\t��?B9R�+��\u0015�Fy�領��k(F��\u001d\r�\f�k�;����\u001b/*P�l�\u001f���~�~�p�ސ\u0017�\u0015�]�\u0001\u0004���\\u��\u001d�5��{S�D���C+\u000f�?\u0007�O�MPo��wN\u0000G\u0005\u0002s\u001c�shP\u0017l/(�CW\u0010)�\\\u0010�\u0005t�\u001fco\"��\u001b�m��\u0007.\u000bg���겸\u0003��\u001e;�\u001b#\u000f�vR~��q/�IC|�\u0005�V\u0016���A6�\u0017Ԁ�.\f�*���ϡ��m5�\u0011 �Q�O�q\u000f*�1��Q�9F�9�\u0006?j�OЯh_�N�_��h\fJ����u�-����$���m�٘(Aig��X3�,����`�\fę+�n�\u00110\u0002@��f5|;�\u001b�/\u0006�}��oψJ����\u0018`?\b\u001eB\u0013�€2]� и�ڪ*���\u0014`�<-\u0016�w�0�pn�XZ�ԙ\u001en\u0014�/���\u0014\u0010�\u000f��pr ;�q�PK��������&O\u0006u�ǢH`y�/K�5�^������������Uu���un����x��!�Ϊ�ݥ��V�M<\u001e\u001d�����3��}\fü�j�����\u001b&v�`>��e��[r\u000b�\u001b����̇m�A7�\u0017��. �\u000f�ߎ\u0014�F�8�\u0016n�Ȣ��s�k�%C@\u0003�i�\u0000�\u0019\u001e6\u0006����kGզ���6.\t�M�q�4�\u000b��.S5Jr�|�3��<7e8��\u0019\t\u000b\u001c���x0\b@�+�\u001a`BE�|�_O�I�F��%P\u001b\u0016���6�`\rD\f\n\rC��e��j\u000b�H\u0019�E�\\�\u001f�Ieh�V8g�Ϣ�f�_��\u001fH�윺�Gf�S�;��̹}b\"�����\t��g�8�H\u0010OU��\u0002���\u0019��S�XB\n!,l)Ҕ��ɔ*���;k�\u0011(_(O\u0006��W�F�L��\u000fu�hyh �\u000fT�Xʟ\u0006\u001e��9r\u001d�\u001f� vi���\u0002\u0013���\u001bڲ�;�F\f\u0011�\ndz�6��\u0014N�AM��ɣA)�\u0017���1Q��u\u0005��xv���\u0012Q��(<>\u001e�pf_�q���G8�9��2��XN�\r\b423[�@��\u0013��e�dN\u0019�\\�&\u0003�)�M\u0011y\u0012a��t�_\u0003�#\tC�2�������,S��N�_��\rc�&^��ǣ>��f��Sg�n�X��ڽ]�\u0006�e\fKk;m\u0007��\t��X��\u001c�\u0014*k/��m��؞\"��\u001b������U}�UG�C䉱\u0002�˦4~���|h��\tq����2i#��VAL�[��#��4�a_]�>�Aa����d���Gk�Q\u001d����4��۠e��\u001a��4\u0019?RϵZ�P�<\u001a���K\u0002\u000e��\u0013�^\f�V�@I�ޥS뚃ѯB��?�3PK~���˪�t3\u0018�O��NM��8u�V��\u0004\u001cS���w9\u0007c�\tL%�iƮ/d4;�\u0007g\\�L��\r\u001dl�\u0012Ɵ ��>y߀-J���să�\u0017i��A\u0015�\u0018$��]���\u0013�M\u000fSP�;�H#���d8{�+a�_��mm0��|\u001cd\u0001\u0019hao� ���B�9�\r��#�Mn��e\u001d(���H$\f�`י���ϽD3\u000b�~�$�}]ɉ\u001f�b��\u0015\u001f����|5W�-qݣ\u0001(\\L�l��m�\u001b�\u001d�Os\r�G�\u0007\u0015�]�%��O���\u001f06\\��\u0016���*�ZјD�²�%���g\u000e��\u001a�95i� ���b����\u0005\u0019�\u0004\u0019�H��y�;\u001a$����\u00055\u000f.\u0003'\u0003P���RI�J�B%\u0007\u0000�*��e�U�A\"�\u00188��X��4�^���}ƣ��f\u0018�\u001e����p�\"ScnR\u0003�B��\u0016Z�#�P\b��F��H4H�Û��Tn�u���\u000f���fK`�,�L�h%W#\u0014\t��3C�O%�h�V\u0012\u0007i�]\u000e�A\u000b�!=�\u000e���2T����\u0001h0��\u0014י_Z4X�\u001a���ʼs�>���\u001d��\u0012\u0019w�\u001e\u0015��;1T���|;l+Ƙ*}\u0018�U�:�����F\bFr�\r��L��a\r�Y{=�ĥD�\u001b?��\u0010u��on\u0007��?�P\u001f�(�\u0007PU{�|\u000b\u0005dz\u0002�G����mz�i�\t�����x�?c)ЊMlI�\n��\u0010��cy\u0015�����\u001b)F(b/\u001bT\u0012�A\u001c�\u0018L��X�jAI|\u001a\f�ҽn>@\u0005�{�3\u0003�U܄�\u0002Ɓ�2z�T�GI���f�\u0010��P\u0011\n\u0016'�|\u001aAB��4\u0006R�\f\u0013�K ܕa�\u0010jRA\u001a\r,��ܤ�i\u0012�J�9�-�'����6w\u0019��\u0005\u0011$,^\u001bZE\"\u0017�3\t�\u0018\u0005z���dw\u0002��c��K\u0001\f��K�i$�c��O#\u0003�-��I��p�\u0001d�̚�At����O#�\u000f�\u000e�^\fͽ�����g�h�\u0018\n�\u000e�\u0000��xz:��D�����ף�S\u0012=S�%�I�1�M\t�B/�ZA\u0019�'�b\u0011��l�5�S;\u001bd��#�T\u001b��\u000eoH���$p��`vrBIS��C\u0017(�\u0006NɣA&�\u0018`��M2��\b �OE=�t��>����\u0003^�\u001d�-63:\u0010\u001buTU�|G\"�\u000b\u0004�\u001c�&\r�\"��?�\"zs��p��LF\u001fR�D�������J��\n�.�n]F�����\rnc\u000f{��V������\u0005b�)mz\u0017�킓q\f��W��\u0003\u001c\u0001N�͇�I^�ZG@\u0007)���۰���,\u0007�8�K3-\u0015����O/9����\u0016V׺C�[�\u0005vs\n��Bp\b�g?N��\u0011\u0011�k�7���U�ѿI�\u0011�%�7lt�vqF��\u0017\"��\\���&�ps/3\\\u0004���\u0018C�����\u0019��A7�<��\b��g^fa�\tU�\u0011`�Qֲy\u0006V�\u0003�~�q�nGk'\u0019��A,�\u0018t���g��c+Q ��;��g\u001b�[R'X�\b��>�\u0010�?uP�ѥ�o���r�FM���4�=�C����X��\u0011�C%!l���D��vqԴ#�\u0016wlY�^�2;=&\u0013'�i\u0000�\u000eT�1\t���T��Q�#=d0\u001e�\u0016O{����\u0013A��a\u001f�Q�\\\u001e6g&�Z�\u0001H����3<ͱ\u001e�A4�\u0018���L�)˂.l��@�:\u0004�7\u0005��\u0011}�1&\u0012\u001f�xD4•����8Z�ѐ�����\u0014u��p�AU�\"׫ƅI\u0012-�t��7��\f����\u0005\u0019�,�\u001d���d�:�Gw�$�`���F�����EY�������$]�����U���G˾��g��q59�9\n�9Ch�=`Z0��$�\f��':V�mŨ�nu?\\���\u0011�:�\u0011��\u0006{S:,+���WMJ\r\u001c\u000fX�#��\u001cPQv��G��퓡Of?��WU��y\u0002��ݍ9F,\u0017a��x\u0011Ñ��F��[BM�\nsv�B�\u0005�(E>5�@��*\ftx+]>漽�� �i��.�f%d�s#�t�gr��n��C��\u001b�/�f�\n$�l)@qC?�y?�\"��l�\u0004�α��qe\u0019/0��9���Y(�b!�\u0006�*�����Ta��$c\u0016s9�kX;��\u0018N%��K\u000fj���7X��A�)��ҿ�\u0019���qJME�W���[\u0019�r�$�)�z��xT���U[��)3��?\"�l����\u000bq\u001c�ɖU,���\u0019�\u0005Py��\u0005�n�Q�G=\r���\u0016E9�2�[H�Jߨ:.;��-�\r�$^ss�\u001d�g\u001bcIc|p��oZ���^�*�У.\u000e|Oo\u001e�ZP\u0003)j;�<����j5A�,kͦ\u000b��;�N8� ��\u00163��?�ѳ\u001e�w��\u0017��\nY�$�wO\u0004��0\u0001��\u0000�fw��\u0006&H��Q�\u001e�8�\u0001v�� j,02șeh�3�pk\u000b����xO��Y����Km�!\u0002\u001d�l˷\u0018\u0013[\u0016�KwZd{Y�\b�x��u/\u001c��U��\u0011�Y��c\u00028Ԑt\u00020��X�\u000f���\u0016�k<����ϳ��>��\f\u0010Ic�\u00042`���}00Z\r�Љ\b�2|Ƌ��wi8\u001a�\u0002⽈v��H\u0010®�Ga�t�3\u0000��AL�\u0018��M2�2�\u0003|de�\u0005��T'�B���X�2�\u001dN�����Aˠ��\u001d#�%���\u00003<+;;hruLw�D�\\m\\��C�cY\u0018�USlU9T+~+��ÍJj���pH��m�S|��S�֬G�Wkl{\u0004�6��\u0000�\u0007\u0015\u001aq\u0011q�G�6/�i{V\u001f�Gr\u0019\r �S\u001c�B��q u��L!�Ԏ>^y��\u0016�]y\u001c\t����ɡ��i%v2�������=;\u0006@��/�\u0007\u0016��\u001eQ�ZY�}��.=\u000e!u;���r5A�D\u0014pC٢�]t���\u001d��0�d\u0013\u001fg\u0013��`ց\u0015��W�O0�Q�\u000e��y��e����&����*�%SUG�����\u001c\\�\fHT�*\u000b�=]y�U��U�$���V�H\u001e0\u0014�\u001e�\u0010�\u0002\u0004C\u0003��A\\�\u0019\u0000��1�?#3�&4iQ�Ðe�\u000e�JI!\n�\u0003�\u001cS\u0013��y�u8����\u0018\\y\"L��q�\u001a��\u0012���[\n\u0001SI\u0015t7HI�M�\u0018$����\u0001G��Ũ!Ry��%?�b\u0014�s^`y�e\u0007�φV\u0013]/��\u0007�\u0018�6��\u0012\u0012\u0003\u000e��\u0015–0g*�a��(8�\u0015�1Ǘ��\f�a�Ҽv\f9E�±�\u0002�\f��ZϢ�錐�=��iΦ�=0\\q2�m��ļ\u001c_��0�՞D�R\u0016D�L\u0006]tU9C����B~\u001aג\r�mK\u0016�\u0006l�\t�\u0019�f��i\u0005m�4S��9�=��᥍��w�D(�\u0010:']�e�AV\u0016�Λ\u001aźZ�f�x=�/B\u001b���x��`c�T��E����~�[�$�L��\u000eq��b�H�̕�By�|orrݿKdR��\u0006d��so���A��\u0019\u0014���\u001ed�ܷg��A��E��z��@͡;��H�dVa���$1\u00130��N0�{cI�|:�e��W�÷�1Ʒo��\u0001v�m�%\u0007{�w\u0004�=��q�G�i��#\n�\u0006��e\u0002\u0000\"\u0005�\u0010�sT_묲��\u0004��Xs�)�����Ƿ0��K\u0014�9w���*A@���Y?9��k�f�\u0012K�\u0003�k�\u0013z .J��\u0000ќ��^\n{���N��jq�&J���\u0019\u0001+��$6�\bѩ;,\u000f-�s>�� �1��/\u0002\u0014�S�h������\u0017�\u0012�z\u0002���\r��\u001d�V?��\u001e�|K�\u00109\u0011arS��8��\u0012\u0002\u00120\u0019� ���]��ax�cϝ6�U����\u0000L��a\"��\u001d���/1��\u001f��U��\u000eP����#�\u0010;Z��ߜ%����\u001d\u0016�'ޖ]�!\t�\u0003�\u0019��D�j\u001a�F�;|��F\u001aq�iUd\u0000\u001d���\\\u001b̨�3�{\u0019\u0014S�6��AY�\u0019(��L��\u0004�Hq�\u0004�)sޞ\"\u000b�]�e\u0000�\u0015��gA����0�]d���\u001c\u0002\u0011)�Y�/��e�\\�\u0013|��m�l�҉�����\u0005����&�1\u0016�\u0010#\u0001\u001c�>I+?f�3��\u000e����.�er�\u0012�\u0014��κ�D?�=�\u000f[5\u0017�m��-��I��;M�9&\u0015R�a�\u0014�%u�ټ��\u0015b2z�N�\u000f�]\b�W�k�^\u0018�޸�#�\u0014$8�6q��\u0017�H�\rJȄ�rV\r\u0005\u0012}Rʾ *�����7N�����W�.��`�\nU���zHdz+kGŊ�\u000e�\r�\u001d($��b����\u001cc�U��1�/��rc��}�0�6b��\u000fHA��tå�V՛\u0019��\u0012\\���(D�n�Q�'&?�1�@���U�*ݰ��5�v\b_CW;E�Z���'�R�G�\u0017�~��q{\u0015�e�\u0007�>��\b��\u000f�\u0002��\u0019G�\u001a'z�\u0000�߽=��d\u0012�m\u001b\u0016y�J2G�]z����\u0019 L�p�\b�gUG��r:����M}9\u0004���t�����\ni��Ay��ǨE �X��\nD�+���k�5j㈁f\u001ep�oR@�>�_1Z��0\u00148�2'�\u0015�5HP��\u001a5\u0001�$�K�aTpcF�\f���d\u001c�u�U����\u000f���V�\u0010�\u0012��\u0005b��no��\u000b&��_g\t�ʾ[�A?�\u0019x���eHG��ۆP\u0002��g4��??\u0013\t]Щ��i�\"�-$����\"��f���$�Ki���G\fh�\u001b:7U�+�<����\r��,%�a���\u0003e�A�́�4Eu&�c<��\u0013�r���\u0016L��Q̀b�\u0016ġ�\u0014�⏷R͈ھ�!��ߋwg�4��/?��τ\u0004�\u000eqr=\r�U\f\u001cq�<��\"�U6E@΅��\u000b�퀔t�>W~C���֓.R���E�W'4\u0016��\u0010\u0016��s�\u0016v*2�\u000e��Y:r8\f����^�c�\bm˳���\u000b�S^k\"�Tu`���x�~j��+2��k�1F|��M�\u0018*X�x���\u0015^��\u0005����T�K�8Ƙw0&\u0015|'f'N`�P�˹oÛH�z����%��AG�\u0019����b[\u0017\\f\u0015\u0007k\u001fI'���}\u001f\u0010�<���\u00130��\u000b�w�\u001d�2��{W��\u0005)�ޙ\n\u001f�\u0005�n��'\u0011y�d[�[���.�Bd�Ҽ6��j�Z�Z��#\f���\u000et���Ў7�c؇��!�]��`U�Q7a\u0012��W�ߣ�,yI��9-cCmX\u0019n\u001c\r���6\u0004���N�\u0002lT�\u0013\t;0�?s���\u0002C4\u001bƊ�\u0007q\u001e���AhmdwH\nCT�t\u001b\u001b酶\rQ�\u001bl\nu��\r�5��d�3@0<�\u000eiO%\u0014\u001c\u0002\u001cX�vI�\u001f�Q\r��d�P��i�*�G��\u001e�G�\u0016=ֳP}\u001b]�y�W�\u00170��\u001a�_\u00003�B_7���M\u001e<]�Y�/d�s!^ܐ���!����\u0005�s��}7϶�bA̸�U����!�A��\u0019���|��o{���\u0004��訫\u001f�T{2��[\u0002&��6$���\u0019���YO\u000f$i�k\u0015�b&BxZ^�M\u0013/ɘ\u001a�^�ov�\u0017]�\r�|d�����-&|�;��N��\u0018YQ��H��L�\u0017�N[K� @+e�C�\u0010��(\u0019\u0012��,�FX\u001e7�\\!�sa�H۷��#uߔ\u0005�(�\u0002�X�,�ck��E��A\u000f�c�\u0000aqӒ��i�\"~M�&P/��A:�\u0019���L�k�\u0018\u0003�V;7���c��O�n�\u0000���u \u0010\u00006�6@\u0011\u001a\u0017+({��?���\\r�\u001f�KfQ�\nE;\u0011���޿\u0018h~����\u001c�,\u0013\u0002X �ܒ\u0003��0�[u�(*�g�\u0010��}u��\u0007�:m8�\u0013�w�\u0012��\u001b�y�.q�S�\u000b�o�����4�<��4���A���<7�;au�q!�0W)�;�\u0011\u0002\u0002�c��i��xA�j����)sp����C㑇�`t$f��5ϩ\u0014�6\u0012F���g\u001f\u0015�2n�?��ã0��o��eޘ�����atGع��Jl��t�q��dv����%\u001f,\\/�\u00056�A8�\u0019܀�L��\u0006�����/����#g��^�h\u0014������w�.Q����@�N\u0002&0�(�r\u0006���mnﺈ��(�S�0�����1��\ri1�ps\u0019tDb��\u001e\u0010�N�5 ~��b;\u0001IR��+���\u0015QK~3�ٱu�Vl�p5/�AoZ����Mͩ����/[�Km_5�D���ŶB\u0017��zt2���0V\u0003�(y�k������r7��o�o�\u001f�M�RT�X�Y�Lj=����\u0004\u0016�K\u000b͓T�\u0002(�V�\u0018\u0017~���W�Hs�I3s()\u0018c�;\u0005\u00066�ee�O\u001e6�=�!6\u001f�O�\n;\u0014������h�v�!�٧\u001e���&�+�\rf��[�4�.�6�����6��\u001d&�P��A>�\u0019���16�J\r��b`��&��qKj˟���\u0015S4R\u001f5[yD�\r�\u0010�\u0013�z\u001b>�\u0016g\u0007堛�����\f�\u0013W\u000f^)\u001frK�8U��\u0004�7�/��1M�ɵ�T�g���Z{؀�|��������|\u000e�l�_1�7��۬\u0007���v��\u0016���p\u001bhC����\u000eU9\u0018\u001e:*��\u0004\u0010X\u000b�\u0001�\u0018�\u0007\\��ovLc�\u000f�A\b�f�b}��)|��<��`\u0019;)�'W�C\u0006��j\"\t�V}�wc8\u0002�ާ%\u00007+?���J��\u0011�Lm��G������w\u001c.9��Q����\u0007\u0011n��[\u0005<�[�ΓCAO}�A\u001d޹y�1󼵞'��ɛ�/\u0006qT�\u000b\u0015OB�|�,�z�x��\\�GHS�0iƐ�x�e�x,�Aǁ\u001a\u0004��|����((Ӿ�*5\f��n��S�\fm\u00197B0B\u0001S5\u0019})��[�z\u0006�\u00177��\\�\u0005�_��j/\u00115J5�p�i]˅\u0007��\u0000)Na��e����j�~���]u&\u000b%��`��\u0013��g���,�OKV\u0006F\\\u0013\u001d�ībU,j�)�\f)m��`XƓ��y��J�B�p\u001d�WN����&AI�Z\u000e�A\u001ax\u001a8�M�������V�<\u0016g|����!����CV��g�YT\u0005��(ޕ:X�\u0000\u00007�\u001f5\u0005�Uw�°��!uE'��Z��҈J�n���w �<\u0016v�\u0001<�W(��_w���l\u000fk�}љj��{Rzu]���$Y�g��\u0018�s��7��=gt�h�p\u001bm,��\u0004�h�\u0019���P����A�\u0016\b�&x\u001d�Ա5R�.���\u0010=�\u0007�f�$ńr\u001fH��\n�/iI:)��]Bv��oű[�����\u000e�5��\u0006\u0002ړOvS\"��hui\u001fՂ\u0010�$�f�\u001ce˱@\u001aT_�\"YLoU\t\u0017D/�\t��\n�<\u0016hI�_�\r�A����\"�\u0006\u001f��ip\u001b�_6�A��\u001a\u0018��|�n�4M\u001f\b٨�at�!YT�)�\u0001�'���\u0006���\u00010+�/�p\u0012U0�� ��^�\u000fʶo��:3�Skk\u0005�4��˪D\u0003Xz=j$�Cm�8a�K\u0018kǹ\u000f���0�PS�\r��ކ�j\n�θŒ�ל}՛�\u0005�L1\u0012�@\"�oTg��PX�x#\u0006\u0003ӈhR��K�\u0015,�\nD@�\u001a��\u0015F��\r�,�CD��#�^��@�^}��\u0002��[�N�%Pd��\u0005Df�._��IG\fQ�ٶ\t \b6U7�\u0011\u0016'�\t\u0019����(�v\u001e݂t����H\u0005Z\u0013B�_\t�^\"P�=�\u000e���h�e\b;@�9�����sש�\t\n��\u0005�,���V)��%x������vW�LR����\t���\u0007Z\u001e\u0004��\t�\u00102�s�\u001d{^w��qn'T\f��\u0001��5~�\u001eʼnX��-\u0016̼��q\u001e�wy�����So����\u0000��`\u0014a��\u00064,\u001d��\u001c�<���Xf�\u000f�X�n�6x\u000e�B�f�\u0006�\u0007���V(��/}�ַ�w�A\u001e�\u001a,��X���6器��&�\u001c�����2^Le\\:F\u0016\u0018׌�[G>����מ�_�́8J_O���,D��όBO[C΃�b�wO�'L��\u0017�#ϨN�\u001d�3�಑\n����)�A\u0001�FA�;ԸG.;�������<\u0002�$\u0014z\u0016?�ߚ˸���K��\b���\r���//�\u001a@�pN��T[m\u0014�}S��������'\u0014�\u001c��\u0018C;>��Z\u001e\u001fG�%,��`\u0005�\f\f|A\u0012_�HP\u0010)���\u000bR;̿�l\u001e��O�lm`��\rW&�\u0004�\u000b�֬�X�O]$���@�\u001bS\u0018�'�g��\u001e2�pc����\u000f���̚���\n.I\u0014A\u0017�zj~;��A\u001d�\u001a@��M$Ě�A��\u000f�z���\u0004\"O��8�\u0011��=rn\u0002?4�͡�/�\u0014&�>0\u0019��r ]����\u001e�]�q\u0019a����\u001f[�FDٴ�\bԤ��.+����r�%T\"DsP�C��\u0014A)(��\u0004�\u000e\u0016>�A�Ջ�\u0005�j�ʯ�ͻ-5�~\u0012�oR�iӱIV��\u0005q��k���[�G�q\u000e]E{nt\"�\u0011����B>���j\u0005�J�W')�\u0016\u001e��K^�\u0015\u0003wO\u001b�\u0000�i���'5Qvt���A�\n)���[|��\u001e�d������T�f�E��,y1��]�q�HT��\u0005{�\u001c/���j~�f�n\u0016.\u0013\u0014��.�P��\\�ꩇ��A\"�\u001aT��NN#d��=Z&N\fVfnHl�KOkS�.�\u0000\u0015W�!\u0010=�/T��D\u000b�]�\u001d-�\u0019�ZN*nj�Z�nU\f�i�[�Oi�O\u0004�f�����F���|�\u0018��+d�� }�H\u0016d�vk�\u0013�|���.��ol�{��;�\u0004\u0019\u001a\u0006ϒ����;k�\u0000\u000b�X/+\tH�����\u0010��u��^��\u0017\u0006w\u0014��JA�WH��u*b�O��2����r��a�׹a:�bg\u000bJ�5�\tX�\t\u000e����V��g�M���Z*Қ�|�/�%�T\u0006���\u0018p�qo~z�\u001d�����̻2ҵ�d���j���B�D\u0017��\u0012�:�m�[\"38\u0003�|��\u001dӣA&�\u001ah��MFM\u001d�<���\u0019��`\u0014�[x-�s�Q5p%��\u0007�zϠ\u0011.\u0012_p��it���)\b���y�i�\u001ae*�\u001dr�m���\u0010\\�֔O\u001c߽gA�\u0002P�S�k\u0019\u0012��\u001b��j /렙�\u001a)�\u001ač0�O��\u0005+��\\�h+���\\3�\u0014jG\n�#P�*�%��ч�2�\u0011F\t\u001d�1U�r6{��O�]����\u0013�BA�\u0014��� g\u0015^������\u001f��\u0007\u0012�O����\bE\u000e�׾M����)\u0012+\u000e�ĠL�\u0007�\t�3s\u000ev\u0017�u�Ҫ��k��\u001f��G\u0014E�;�4�aت�v���x��m��L�\u000f\u001c\u001f�\u001b�\u0019@a$O��$\u0004G�i@���\u001c^�뚣A\"�\u001a|��L�Á�Co��Q�w�ʿA�\u0001�@\u0004�(lT��}�@M���\u0006�b�!�ЀU>\u0015�\u0001��,��#�\u000f���JL�!�\u00186\u0004�:���.��\u0016�>�x��t)sX���L��'�XJ�\u000e����\u001a�I�H��N� \u0016.�J#�2|!-���\u00002��,�P�$�L�[�=z)+�\u0019!��Xl\u001f\u000eM*q\tWh=�H&ɂ�\u000e\u001e�|�~O55��\u0010z\u000fA���������f�)�>��(\u0010�qʼn8�ȶź\"�@\u0000\b\u001a\"�^�A�ԟ4,w\"D��\\�\u0004, 2�\u0010�,T����\n5x /\u0005\u0007B��#(�:�v����\u0004�#�V���G�s�l���A)�\u001a���L�\bo����8�����ݶ��X��JC\u0011\u001f\u001c�\u0013�m��T����Γ�\u0006\u001e~w\u00027\tq\u001f��6�K��5�%��)cW6�Ξ� �#��nֲ����\u0017\b�����\u0004�C7\u0016>W^/�d�\u0018$�m�\u000e��a�l��H�H�\u001cX\u0014\u0018��}Fg�7C7I�Tu�\roĮ%���'|����e>�n�\u0011�\f���b]�8��\n'��6�\u000f\u001b�\fx�c;\u001f�.�Yd��x\u0014\u0015\"���Ps\u0016>�ǝdpO��zE��/��a^�\u0016\u0010I��Ӻn���!��\\�)s\u0015��Lg�, �\u001a\u0018���O�lg_Vy�c��\u0007���\u001b�R]&�'\r9��\u001dҵFҘ�2Gnm9���A-�\u001a���L��\u001fG\u000e�Ӽ��KSG��u���\u0005\u00162�;�\u001f \u000b����5\u001cL\u0006��p�\u0011S�vx����7UjV�\u0016�xo\u001es����tU�\u0003\u0018�\u00012�-�p��rI�\nn�Z Az+.\u0015q�\u001fQl��ͺU>�\u001a�%Ւ>�E�>[wi��\bD�I�i�Aݪ�7Ф-�α�Я\u0013��ix���Z�b�\ba�\f��|�A�E�{��\u0013\u001fǭ�W���\f;�,D(�����#���`�v(7�q����\u0012F_\u0002��JZ���%\u0005��\u0006\u0019�j�/�;w�\u0013q\u0015\u0003��ͅDLL��y�B��ւ�ٶ�H�z[�P���I�A �\u001a���M(��u�+9�m5�tT��`�?���e`�^\u001d�21��^\u0006\u001e��2z��@��\r�����;GmM�y\r�B6����L\u0010�i4���t\u0006$����Ne�8�<�\u0003{�D�A�(\u0011,fǟ^��H��.Tx�n�Ą\u0005[�A��\u0011}��A~��m���c�jTH8\u0016Q���T����׾\u0014��vג\u001a��h�I\u000f�aI\\*��VRA^\u0014J�6��w���Qq}��\u00029\u0014���-\u0012ҳ \u0015\u0002���u(2,\u0004�P\\�¡>\u0005j�\u000en�����\fb��tf4\u001aqF����R�\ro��~��g�2���:rF�OFB�T�A�)\u0005%��?��\\��A\"�\u001à�L�wj�)t��;�`v��(\u0005K���\u0013\u0010E��\u0001`\u0003��Q|\u000b#�1[\u001f�\u0003��\u0014%8\u0003ؒF_\u0018g�0�\u0019y����K��}Z����=��ii{K\\���w�o-\u0004\r#y�($�8\u0018w�}�Z�`14q\u001bٚ\u0014�7�c���ś$��o�I:�O.#zak\u0017CU��M3�!�Ӯ<�ΩD\u0013��6e��*��x\u001bb5`�^;\u0014�\u001a��Tm\u0019D\u000b�\u0005����������\u0011A�\r��)�\u0010��P\u0001^j\u001cB\fY��S$�}`�o-.w�\u0006���})�\u001c\u0002�/�;G\u0010�%��\u001d���wg�a\u001a\u001dħ\u0013���\\H�\u0019ͽ�\u001e\r+\\r�\u0002U�v%��#�\u0001�A&�\u001a���M&��@�$�[\u0004�`vU?nS^@�~�P��\u0005!�)j���vx\u00173œ�-\u001a��cR���\u001a]��\t?\u0014����@\u0017I�ü:a�yM�\u001cf0�N�\u000b�\t�\u0005������+�\n^��^��\u0017�K�� \u0004q9�6�<�S�e\u000b\u001et'�/L_&�\".������!�F~ɛ&s�Pi��0>e��s���:����WNY2kw����Ԝ�\u000es�} {��'.�d�Cr�@\u0011v)�{�PJ9�w\u001f\u0015xpxv�\u0017aI\u001d��*n�„5�\u001c\u0002Q�\u0007�Ї.^@i�<؅\u0018�\u0017�l^Co\u0019)�\f��\nef\u0001\u00001��\u001e�\u001bmB��3�S�vG��RNm�\u001d\u001dңA��\u001a��|�J)q)\u0005\u001c�C;'AJ�\u000fֱ0,VM�\u001aO��R%�o�����\u0007��\u0007��\u0010�Y\u000e_\\�.̀��l\u001f�w�;*��\u0010�A\u001d�T5�ݭ\u0003o\u0011�\u0005)�Ҍ�'��\u0016��QD�;�g���\nA\u001fi�Va�4�7�0\u0003x�C�J\f?�𵸉�iKJ����=b4�4����Lh�)�h\u0003�l�%SK:�}�3J��\u0012C��[ExO#�a�\u001d�=m�-��#�ϱ_�\u0004�l�:>\u0010���6H�'��%-@\u0004\u0015X�1ٞ��\u001f�[Jn��:�5���9](6#��+�/rL�l�\u001a���1���\f�Ҕ�̛F�.\u0004y�p�w�&��\u0011\u0014\u001c��)�qM'y���\u000fDp���!(�����כFT�\u000b4�ԋ�_9.\nO��\u001el\u0015\u001e%��\t�������Y?��qS��\u0011�\u0011��f(d�\"\u0016�Wd�\u0013Uf�k���\u001as\u0011��y\u0010�JDb�s���\u001aJ���˙\u0002P���<��\u0002�\u001b�&I��\u000fg�� ؅Ң�R>�3��!�̕X��\"d�A.�\u001b\b��1���\u0004zmN�D����\u0012b�!\u0017Y��dL(�=\u00069W�_�V\"�)M�����iP�����u\u00055�M���'����\u0007֫ �\u001fЪ�\u000e�+�M�5*���_��QXF\u001c9y\u0018�6̵���\u001cf�k(\r�в#nR��\u0013S�Gv~g��\t�cr����Ȼ�6\u0018\bs�\u001d�\u001dN�\u001e�\u0019R�M�\r\u0001��[6�#\u001c�b$J��/�R��v^��#�Y\f�lu�)H9쌐{e0�})�FBKQn�j�\n���\u000e�\u0014`\u000b\u0010������S�(�.\b׺3Hi�*j���G�Ё�\u0017rױ`8i�I���D\u0012$A\"\u0007\t�\u0002��-\u0001(\u001cf��?sh�nL5Mp������I\u001c��\u0011����s��҄�\u0017o�孂\u001f8���zV*�z��\u0005��+Q�ҡ��A\u001d�\u001b0��L���Сq\u0012��Zo\u001bF��z(��߉2;�l�Qc�U���w�e-�˲4\u0011^�&\u0003Z�1��S��g��\u0013ЇNj��4�\n@N|;\u0017��6\u0018w��\u000f%\u0013�\u0015�H}�h0f�-�����\u0016V\u0011�'��x�m:\u0011�!?���%�\u001e��ߧ�0h�fk��?Ԣ��\u0012�\u0004�$}@N�o(�2�'\\\u0010�cdu�\u000b�v�E\t\u001d)9�>L7�6$��\u001d�{���z�\u000f�\u001cx�2\u0018P���\t�N\u0007S��-�<%�Ym�\u001e�%�����Ɋ\u000f����/��\u0004W�\u0013�%X�9�4���B�#\r�'�\u00000��\nmh@�J\u001c�2w��%�Z��y��A(�\u001bD��L���w�\u0005>\u0019uL\u001e���?\n�_Q|e�\u0012a��Ȟv�ļ�%�z�(�T9����I�9����\u001bR:�,D!�g�\u0015yz�\\��z�1s�InٵA2��\u0006*KɃi�\u0014\u001e�j\u0011\u0003\u001e�ud�(��Z�e�\b%�;���@��\u0012\u000bf�\u001a0���Ӏg�\u001f*������\u0007���Y��0+��Fu+��?´Y+\u0000�\u001b��l\r�]���+L�m�5�\u000b\u001d�&\u0014��i�n�e/�m\u0002�'�\u0014�S�.�U���j?}H�\u0014<���HS�KLm�E{�#���aJti�Q)7�?��}V�����n�)W�\np=B�Dd1=r\t\u0018ΖOۍn\u00192��Bl�\u0007[�A0�\u001bX��۸܈/�W�ןk�;av�����\u0014\n\u0001�+���K��_#~�仔�#�\u001c�\u0017��v�{�MIr �\u000ey�K�\u001c��;�_�\u0015'z����I��]�z�����^��1^e�1���m'sKһ\u0011�r��\u001da��k�X}\rɷ�{dIdЅ��*Pr酏���V$\f�Y�:�z\u0005\nw���:4��(^�0�?��{���\u000b�\u0015�\u0004�h>o{w��PX�\u001e������~?�`E�e�~���(��D�Tiז�ݩ�(�*k�R\b�}c�V��[]�T�齐\u0016�KG�g�\u001d�S��\u0003=�⫖�<�\u00040�i��菫)M\u0017h둳��F~��o��M_'�\u0016~����#\u001f�AG�\u001bl��۸ؗ�Nú9P��\u0016�.�#\f��\u0015�B\u0014u��c�\u0018����sԱ&�mNXt#�!���B��?�Sde����\u0012�\b��υ��\u0001�Z\f�[�\u000b\u0011N��e�L�\u0003~X���@�9\u001f�_V���a���t�\u0001\u0019��\u001b���R��\u0005��04z��\u0002v� ����K�w= ��gp�r�g�T\\�s�X��%�Ē����\u0011�eU�\n�G�`��M�拪����X�icb����2m3�]T�ڧ�Z^lIS��;3��Z����&j���g�P��>:�M�L�2!$��T\u0011\u0015\u0000Α�x��J��/��Iv��w���+�C�\u001e�v��]c\u001f�A?�\u001b���MD[\u0000��������\b���~z\u0000p�����\fN�.�u�f��;2�y\u0010\u0000_u;��=j;���\"&<�,����\u0017\u0016��W�k\u0013����Q�m2WF���}Ձ�ob\u0017�C���݃��\u0016��W�2�\u0017]�\u0019�&B�NfB�<\u0006cB0�k�+\u0007Z�g���\u0019�'u�$C��֢\u0013Ĭ�H�Ts�e��\u0017ir^�\u0019�f���RA)c���\u0016���U�\u0016��(B�>���>.�ܹZ���\\�j\u0015Z;2/���J\r��z�\bm���U�X��r�06�[\u0018��p���\t��%\u0015\u001c�����\"�݄5�\u0002�\u0013N�M��\" \u0010@�\u0015\u000b2�Li�mJ��Q\u0010\f�y���(�Y{�L���o��\f����_#�NۣAG�\u001b����ȴ��cm<��F�蛗�>��)4��3�?I�\u0006�.R���Y�kA\rsy_Q���4g�\u0013�\u001a��8�\b��\b5\bA�}���\u0016#�\u000e��c����� �ֶ��_AE\u000e�ݴrv\"������b�n��\u0011<�q�}�>�\u0019\u0019�>pSp���\u0016\f�ݨ��\u0015t���m��:e%;����\t;'�zR����N�Q�>\u001d�\u000eE;�&�{3E\u000b\u001e�~>���\\��B\n�\u0004\b,���N\u0011�W\r9421�`�uU�\u0012\u0018��u\t�\u001c�\u001a�0ސЮҷ��\u0013\r]�ݑ�j�����\u0004�\u0019�j��/��\u0000�\"�AB�\u001b���M)����\u0004�v\u0010�P\u001cH\u001aL2��\u001f6K!\u001f�\t�`�âa�=昏\u001dK^\tT\u0006�>&����i\u0002m\\�F\u001a͌L�%��z\u000b9c7e�V�wsq�%9L�ڎ��\u0001ޔ+)�\u001e�2R�\tkG��-�̆�y�92H\u0005�}��\fzo��թn�t�\u0001��E��;W��x�\u0005����\u0013���nN����~���V\f�$D�C\">\u001e�\u0015�\u0011Z\u001d��\n�O5PZ��I���m�;{�Z6��+�\u001a�T�\u0001��\u0004׬\u00040�i��z'ۧ�\u0015E|a�\u000b1-�\u0011���.01_y���`_�C�C��\u0010\u0005G��r(93ok\u0011\u001a�ݾv\u0010�^\u0010X:IIgn����y\r\"\u0003teX��\u0019\u0018\f\"�\u0007�4�\u0003���x�K��Jz~筣AC�\u001bЀ�L��w^�\b�.+��Z]�e��3�q\u0014�9;��H���җ�F���i!�#���\u0005\u000e\\-�\nP9��>�d�s͓�\u0013�,�_�|����\b�^=��*�7\n�oڟ;����i�~j+�x\u0016\u0019�\u000f��\u00032lKst\u001aꑚ�:�W\u0006�A�\u0004$\u001c�\u0010��r\n�C�i��\u0003B�\u0014��\u0004X\u0010��;\u0016��|���b\u001b��g���+T�\u0016��E�_\u001c|�F/���V�q(w�\b\u0005!4(ܗ\u0006�y\u00176]��!�\\���\b����./U\u001a��|�F�R�i\u001a�ۯZV��y't\u001cO�\u000bkp���o�qq��\t�ŷ���\\\u001eu֓�\u0005d��\u001a\u0017��1�9�Y���\u0018_\u0015�҆\u0007G񄧮 xگ�@�\"Hh�ϙK���\u0016\u001f\u0001�\u001e�yb�ԍ}��6\u000f���뗀�\u0001�\u0012�9^�g)�\u001d�?���'J�iЗ\u000b��F>��y*o6��*�t\u0010�WE�*�!@ڱ\u001fT�;��#�ۼ�L\n��^��Z\u0017\"��\u0001T��R.1T\f:i�W\fBeA|�&7mx�2�bhzb�b#�\u0007a(~�_+�{T��\u0001���A���\u0011ۺ����}���g��v��b�����+��„}$�\u000fD�ô�,�M��u�2ٔ3���\u0012�d \u000bI�a�]D�,�\u0005�\u0013�A;�\u001b�����\u000f��4�DpO��<�DdN��L�y��I��ǃ���\u001d����+�\u0005�G�d2gr6t ��]\u0013\u0003\u0019\u0019��o�}�\u001aZI�U�1(�ʙ=J�R�\\��r����\u0001x<��Tt'&��L�\r\u001d�#��h��d\f��Ql�ڱFg\u0014�#�e,^yw��\\���ar�y\u001d�+c�?�.��)\\mP�=�\u0013\u0005x\u0013��\u0010��v\u001d������&&\u0004��y���)�Lr+��HI%�u��\u001a���^��\"ٶ��)������w�v�\u0001a��\u0017v\u0005��\u001a�{�\u0013(T�\u0000D<�X\f����V��3�\f�]�#�Ւ�{v\u000f�\u0012(�}�\u0019���\b�\u0015�\u0017\n6��2\u0016��\u0003�.���w�\"`�\t���\u0014J̝�\u001c\u0000�\u0012�A4�\u001c\f��M�\u001e�.)cG��$~A��\u0015\u0016l�\u001dd0�c)H��\u0018/\u0005�\u0001�C�\u0007�,D�\u0002���\u0014��֙^\u001b���'sE\\���\u001b�A4u��Ȳ��r\u0005\u001a,p��e\f��ڧ\u0012���UAT���G�ز?'��1\u0013Q\u0005��\u000b*\u001a�SιD�VA��T)\n���lA\f8G-�J�ZEA�$��������qH�[?��n\u0014\u0003k\u0003�I�Ee'\f@���hh+\u0012k�M����e��Q\u0003wt�\u0002\u0018�E\u0017����ӌ&73ܜjӶ�M\u001e�.F�\u0004��™��Y1ኒej\u0007�\u0002\u001d�B.)b\n$���F�D\t��\u000f�\u0006�r��1�*��zT�紀�����wo�ű;a��F�m�\u0007�fP��J�A\u001b�\u001c ��X�\u0014d�\")��\u0019%�qm�\u0005�&� H�����*�@Љ��>Bt�\u0010\u001b\u0005e�qY\u000e�(�����\u001dt���51���1�U�w\b�\u001b\u001b2���c4�����K(�`�LJg�l���{���\f�\u0006�Ē�l�\"���ӏ:}\u0012\u001c4e��=Wc׎���l\u0004�r�$�ڌ\f\u000eD\u0007�A-�\u001c4���e�����\u0014k\u0011�U�U��c�X�\f��D�,X\u0002)Q4T�\u001e���Ǔ��c[�\"�y'-d\byB\u0017��d�߹lTX���h A��c��.���b�X�ӳ�\nnd���^s7>\u0015�I\u0000M�#A�\u000f��F7�Ժ�\u001bA�\u0006�[j7\u0001^oa���\u0007�y�G\u0000\u0003��g�?j|#�\u0013~��ٺ��^b�\u0003M��7\f����A��Y��4MR\u0010��n�����\u001f0�\u0005ժ�\u001d���;#�,\u001e���i��\r�\t�\bQH9����\u0010H\u0007~�[�K�̕���S�\u0004\u000b�ryO�cϲ\u0015w~��\u0000J�\u0017�\u001a�~���8��j\u0001�T|aN\\\b[��`[ \u0011�OOh�|y[O;0�AB�\u001cH��X�~�lE�|܂�G��P��\u0010[OD'�Ij�`!�K����Skt�\u0002\u0012\u0006\u000fa_\u0000�:\u000eyD�\u0006;�`B\u001f\u00051��\u000e�I�,@X�(�(H0\u001e���\u0019�\b���G�5U�\u000bfG�\u0018�Z�窝\u000bݒh����_�ZYW�\"l\u0018�Ҹ��>鋘n��\u0012\r\u000e��@�b��ְQ��g!@�s;bP������ij��EJɘ�*��|����y\u0014G�fDF�h��8\u001c�;�*M뒂\u001d��#�7:ɣ�!S��D�\u001e�\u0007�\u0013�\u001dT����\t�����_ܘ����u���_�X��\u000b����L������\u0002�2��c�\u0010�侓}�_Qu\u000b|���;D�\u0013\u001c�`Ӊq��G�U��8�\u0016zU�AJ�\u001c\\��L�\\�Hx\u0016����Q���=�*�k�඼����\u0019\u0002�l2U\u000f���VO\tm��ԡ�\u000b|\u0001\u001c=I\u0002\u0018�$P\u000b��H>�Q\u0013Z��\u0011\u0007}m��\u001b�\u001e�\fCy4l���\u001cF�1���!K���n�E2�\u0012\u001c��8�Ⴏ�q[2�lR6*��O��3E���$���[86\u0018��m��B�\r�*�\u0015qvzHV�r���\r:F�\u0007#\u000f���&����K\u001d��c���u��0]��!�d�A=�\u001cp��M(r�J\bNě|��_M�\u0011�@/\u001ev~\u001bC��n�\r�l�0��)\u0005!.\t�Z�����J�\u0000,����C���8�\u0018� ykJ����0�I^�-�u+�~�\u0017�+�`(N\u001d6��\u0014��>\u0018x\"\u0006��Z����p�kDI_\u0019����K\u0011eG�E\u0016�\u001a��;��QϮ�.]�B�_�*i�\u0002�\u00066�@g\u0012�D�[�4���\u0007,�'�Q����\u0015,�`g\u0018���t�\u0007b�7J�_w~,�w:\u0005�\u00101�\u000f�O�f�t+\r[�L��D���K\u0004��\u001d1SW�����U]Q���¾l�1� �<����?\u0013S�q�u;r�X\b\u001d��u�X�@\u000f`l�飥��3\u0002\u0013~V���\t���n\nFw���\u0007��AD�\u001c����seH��\b�ұ��{[��FGK�#�7��%d�`g\u001aw\u0011\u001a@��M��xG,3i�\u0012K\u001f2�/\u0003�/�\n�[&@�\u001e�fw5^��f\u001b�2vr�\u0011icݤ �o��x��wd�w�z�{�4qM�N�Sn��FOK<��ݥzp��bI\u0006G\u00198u}�8��@1�\u0018\u000eP\u0002@sN'�%y{5�ON�L\u001f�e\u0019�\u0007c4ΐB\u001a�p�\u0005Ov�rsӢCu�\u001b\u0016�a�\u0019QA+Jџ�3�Yi҂�Ӹ�}w�߾_�{Rn��xV�W���8��RfůԴ=NZ�RXnh�N����a{[$�\u0002�\u0014-'�Src�y�\u0011)����ck\u0014#�he�{�I�'\t�\u000e���\th-\u0006\u0017��q�oy6L<�\rt��`�s�ٓ�A^�\u001c����j�\u000e�3f�\ruԌ}g�⁁ڜ2DθRMO�ȵ\u0007Ԕm\u0017�<�.������\u0010,�Kj-|�„O�\u0016olI<�T�\u0012$\r]1U��~\r�F�M�����u^\u001e�$\b�\u0004�4��DO�\u0014�d�3\u0001& �ꙍ�\u000b��^��$8��*��j��I��VsL!\u001fH�!W�h��~q;��\\��<��8u��\u001a�\u0014=��l,H?�崨�쫊���u3�\u0001�=�\u0013m�ܜ4A�C\u0017�;\u0007b~�4��\u0006\u000b??9P٩�\u0002�\u000f-n\u0015�|i�#K\u00157|�L�6j^\u0006\u0018n�Oh1%�\u0011t\u0006��\u0005͜�f��f\u0011�r�\u001a\u001fX?�\u0002t\"�V�W���ݟ�r��F�{٫i�n���/�Z�tB�\\��:�\\�����Kv� �>����e-F�o߳S���� 0C�\u0003h\u0006�=j���\u001b*\u0004�E)�|P�T��E-�k\u0007\u0018\u0014�Y�x�N:vM\u0013�AN�\u001c���L�'K?�S�\u0010�o:o�\u0013L�ʚ�r\u0018�7?c4R�t���e%�S���M+��ʝۅ�֋��\u0000\u001e�� ���\u0005�N����@#;.�\u0016�!I�\u000e'e\u0016W9\u001bS��W��fZ��\u0006?���\u0006;��}M�w�P�n���\r�G��Fi�(c��I��?\u0017�\u000f�/�l�r��\u0019��f`��H��'���\t�\u0017�|��k�\u001e�B�X\r&s_os����p�b�$\u001e̝9��rVI�����'\u001eK���Iy�u\u001eC�Ӷ\u0002w�\r\u001b:\u00052��y��9�\u0018����Sd��ۨwZp���$ou\u001c9�����<¬�D�\u000e��C�,\\�\u0003�o\f�?�\u0002-g�z�P{�~�0���\r_�\u0002̃L�Ide��?>R�$\u001b,�xq�\u0005\u0003I�f\u001a�AG�\u001cԀ��v����\u0018�R��\b��B�9vS���\u0017\u0002�q��E}�n\u001d\u001eR{U���[ɑkp^��\"�\nnkNn�Y�ewÖ4>�\u0017�\u0002K�\u0005F��C?��P\b��2�·_%ς��1D�\u0000\"Xks�O��3���(�\f��4�\u0000\u0007�\u0002/M�J�\u0007C�P�aE�z6,(y䂘i�@\f����j����\u0017�?썄\u0000\u0001wr�����\u001b7b�hˉ��Մt`c\u0015\u001d�Ҷ)�*��n���a�7W��I j�uk�#b���9�d�EA��[ _{F���'}�.�\u001c��D�=���\nN�~h\u000f⒴�\u0005}v�ԫ\u000f�C�\u0000}�Zt�8���[��tw����`�紒)S��u�d�Q\u0005\u00160�wZ�=\u0004�a\u0005h�9>��\u001a\u001b�AC�\u001c��J]\u0018��\u0007x�QIX2\u001b1�t�Z��/�Eȩ�\u0013U�\\��\u0004a6ʪ�TX$�����*\u0018O2�vL~�s��3��\u00033�U��eM)Yi���D��S��MW�Bʑ­ş\u0016��ڲ���,�ގ8��\u0006���i�\u0019\u001e�\u0010\f[�\u001c]��ΣEg�`�\u0005V$v�p90��{~��0��AU\u0001��\u0016R��s��3�;�%b�������w�Yf(�8m�R�NL�LG��\nvnq:5\b�\u000b��I#Q���\u000f����&�\u001b��U����dȓJ���Ke�u8�a���͂��ī�\f��/�6\u000f0&Ä@�$S�`�-:\u000eA\u00178\u0005��\u0002�\u0010Xt\u00165\u0000�\rl���(]:\u0000�Ч���������\u0018t����~B\rh��&�A3�\u001c���/\u0019��x$v�.�L�0��54о��\u0011e��\u000e�Y�F^\u0002\t�T��� ��5Lh\u001e\u0007� \u0007�\u0002���Ԅ�8M7��B��C�\u0019ֶ�:ߛ�&Eف�\u00061�^\u000b2N� �~�J};�ߍ򖭑���a�v=�����G^�p�C�H��8\u0012��˼D|[1N���\u0012��r;7���-���fw���DM�fx�{��\b�\u0002n��.w6���\u0002�\u0015�%�}�ϫ-�&g.�s|�9t����Cu�4�/\u0015m�r\u0005��F�:���j������0hŭ�ȥ��D\u0012aG��^�V\u0005\u0006�ꙫ:%�,�\u0002�� �\u000f#�R\f+VL�s5~1V�3Ǒ\u0010���\u0012P\u0015?�U0\u0005\u0017�s��B+�\u001d\u0010��ߴ���[b�1#�N��i1\u0011@rC�g�|\b6<�̣=�3�[}��\u0013D\u001c�\f[�2O;0\u000b;�C�\u001f�\u0014�%Y�2�K.\u0000����]u?��o���W�\u001b�5����.\u0016��\"z���d�p\b#u\u0007A�=:�V��;b6�\t6W!(�i~�\b�\u0010�f��\fNlt�\\B��9-�O���*EAn�\\�iVo\u0013���磮�=��j��k�$�\u001e\u0010�r+�0�����c\u0002\u0010\\�(�y�Y�\u0013G�~>_#�ne���\u0001�㿌\u001c[^�\u0015�4�y���\u0000��/�Kw��T)��3+�([�\u0001��\u0004�\rs\u0016�*a���0ܞ/���L��N�A�q\r�%п++g0\u000f�����\u0013ok�K��\u0004��\u0016�\u0017\u0011-\"e��Tf�x�Y��\u0005��\u0015�5�#��I��\u00145ruO�e���\u0004?#��d�;t\u0012�P��7����0�\u0001|�P\u0002�u��7E��׀\u00191���\n#\u00179��O�RG�\u0012 �θ��кEV\u0015����0��T��`�6-��ZE>�\u000b<%��d�\b�?�f�(r϶ת�i��n�\u0019��:�&_CR�ݹ<\u0019��4�:i�&��w�x��\u001c\t/A\r�\u0014q��|��g|��5)U�)e�>���s��V\u0004\\�&l���\b�2'�];�J#ϫ��\f����?��\u000b�A@�\u001d$������Ȑ�~�R\u0010c[��ޜ��a-ˑ�)[j\u0006�>�h�\u0011؉H �1C횜��!;�\u0010�A�塛6?��5i���Z��\u001d'�\"�S$�\u0011��^;�\u001e4򭹙\b\u0017�\u0004`�\\P6Z\u001b�I���ِ*{���^\u0018U���I�F$��g���^��\u0011~��on�)���'V�\r�P:9')¤�|5��ҷe��ǫW��.�d'�w�S{4�|�F ��ژ�1\u0013��,�OE�J\u001a��7Q��ס�O�rHn��M��+�\u001d0\u0019��\u0004W��\u001a�L�%�~|\u0017�W�������Vpg\u001c\u0001�.<*�䞃����'�N.Ő<��9�R�*޶�؂�\rNd�bo(bq%$ѥ\u0007�!��'�E��\u000e�AC�\u001d8��ءdS\u000f�\u0014o�M|����!�:o��0�R���N\u0007���8�=\"Pv\u0013�m:�-~�\\�=��%U�2\u0007j�o��\u000fbꋐ=0g]� gH�{�>\r�\u001f��[�_֥�*�=;~\u0019��Gl8hZ���'J޽aqJH\u000f�CS\u0015Q�#v\u0014\u0002�\u0010���$3�ޕ)L\t\rѢ\u0005�U�\u0000� \u000f��x�6\u0017_�F��T�\b)y��\u0017��h1>�$.+E\tT�\u001c�\u000e;%�{��\u001b\u000f\u001dF\n�Q�KF�C�7�!�\u0015�\u001c��B\u0012�>^�z\u001f�ʣ�\u001c�\u000b?�\u001dK�~B���\u0001V\b�D]�s\u001f9q�4�|7��s��&+�\u0013�A?�\u001dL���kB�\u0002^�r:\u001e)����@�����c3؀\u0013��̖��\u000f��,\u0003ƹ�6��ۍJ�1@�\u0017]p�� ������0m;�0\f�R��#�\u0011\u0015Ҏ١�i�\u0003M%����\u0017ij\u0004Ū]�=T�)��lc��\u0011�c��#�=i6\u0005\f\"�\u0011C�t����a�B\u0018@�\u001a\u001aH}s�V�׍��N�\u0011\\�Ƴ�\u0014��؜�aϣ�DjW��7k)쁼!Jw�q�Z�\r%��9g�l����3j\u0016��4���A�;�;H�N�O����\u0013�x\b�)+>c��aR\u0005yW���-�H|�\u001df'�e�h�\u0016�=\u001e�0���\u0006@*�:a:��\u0001a����\u000f�\u0015v\u000b^4��Ƴ\u0014P\u001b�-0�M°�\u0012��\f��*9r\u001c\u0018�AN�\u001d`���jP�S!����/�G+�3\u0007�G���U\nzG놌\u0007֎h��Y˦�\u0004L����f�\u000f�EN��k\u0017U�%yA�\u0013��\u001f�[TB�~�q3�.\u0004���b�7\u0007\b�Q\u0011�py\u001d!\u0006'�\n�X첟�\u0006\\���`~Z��\u0010��XY :n��Rj���nkՇt:�2�ɊT\u000e�Z٩l\u0019�B�f�\"\u0018\u001d�\u001b@�\u0014K�T\u0005���\u0004`�\r�\t8�l+vOg��\u0003�G0��\u0007\t�fG}\u000b<>z^�&يR\u0015O�\u001bA�\u0019޻\u0012No`�\u001bB2�\u0000:�\u000b\u0015GW��Lk���ޅ8t��1&��I�}��Z�\u0003V��^&�\u0012��K\u0013^�����$�\u00177v�(�ޞyG\u000e����(v���f���u�D/�1��[�7)��[(�?�\u000bjk��\u0016�AQ�\u001dt���9\u001ag���`\u001d��\u0005Qis\u001f�\u0004\u0007��B>��ܓh�pq���w��WyY\u001f�Aŏ[���3�&�g�����?�\u000e\bk1\\�\u0015�c�\tR?�O1�0\u0004��\r��V�\u0012A�\"r�V{\u0019\u0010(%p�[�a����\u0005�k\r<*\u0018�Br\u000f�$\u0011�HA�p\\�\u0006\fɽ��Q\u0005�0\u0007�!5���Iyt���w?\t6d�Z݉t��|,X����\n{�.e�n�\u0018mqn�O\u0015ߚeCԫ �6\u001aUF[���$����H,]AX����\u0013�f�\t)�\t*lnQ��DRg��c��\u001f|��@� 4J��~)�\u001e9h\u001d\u001a�ԥd�\u001c�� �G�B�.� \u0007\n��a�<�;���\u0018���(,�c�C�o�T�� 6��~�Y\u0006yY\u001d)�\u000b%V�R+U\u0004tɋ�A]�\u001d����߈+\u000b���2� \u000f���nE\u0010\u0011�L@!�CI�`���W/�\u0013\u0015��dV���$�R%�@v���-\n\u000e���N31*fOj\u0001��\u001b�Ҷ��\u001f��\u0019'ݚ\u0015p\u001cu�R��̵1��Z%�\u0002���x>-��A�`���+�@�]\u0015�5=\u0006��=�>��W\u0006@L`\u0015:ֲ�`0/�[�\u0013oS�?�\bT�Q�7�\u0013�#,a��kI��\\W�=�~t�G��!�\u001c�j\u000f̹�\u0010Xyw��9��Y\f?�\u0017\u001e'��h�J�]H��F�:�ɭ���e�K \u0010Fg?�q\u0019j�bD�x\u0006��\u0012�4�-��s���d���MK&��\u0001:^��ם�]\u001e�\u0016���[�G\u0007��2���\u0003f������;�>a���ݝu\b�ó�1撁\u0001�\u001e��x/�R\u000e\u000b\u001c��?��3\u001b-��Af�\u001d����9\u001e\u0011���\u0017\u001eO1ڿ@��^��%\u0017�B�� Uy�\"bK0�|DA������\u001c����X�\u000b\u0019];\u0005B5<�M�n\r��ٮ�t!�z��o^�\u001e�Rc�\b܍29��]\u0005\b�ȳz\f��!(�i\u0014�h��u� �C��R�}N��\u0002H�R�,Jf<���7��Gn=<�u\u001d��\u000f�\"�jt��(�\fc\u0018U�k��p[~3��~�?\f�8�\\l�Y�:Lm�t\u0012ۢ(r\u0007E{]Y\u000b��\r�sD?�\u0014��_Nj(\u000f�\u0015 \u0015�3�\u0001H����H�\n\u0003�\u000f!L�,&��l�H��-嫊\u000b�\b�eV�\u000f�=d�\u0003Z��|/��L�-�t��J+�\u00118q�\u001b�G\u00157��۾�Ӥr��b\u0016�\tC�o�\u0014\u0019�6���%��G��\u001f�������\r5��\\�=�����١B��\b�A`�\u001d���\u0002\u0013��N��@ pe�\u000e\u0014%�UBL�o����fJ?7D~�b�>:��6�m͹.���BUh������6�:\u0017.�����1��̪A�D�T��P\u0004�C�~\rނ�I�I���*_���\u000e�}�;\r\u001c�dK�SNGFV\u0015�9/.��p��Ĉ�j�ョ�\u0015:t�\u001dZc_�>�\u00126�D��]�P�\t\u0019�� ���2�*\u0002|��E�\n;���݋k��\b�\u00164���pp>\"�\u0013m�\u00100yP�\u0015��n��\f\u000f��u�HO��y����Д+��\u001e�\u0018�U�~�\u0003�t�:�v\tG�7~+�f�\u0005�ݣz�xDz��%��Ȧ���\u0011��Ɂ���9\u0004\u001e-p=d8\n�~�\u0000��\u0019\u001fB�r��\u000e�f��7c�\u0018�G�g�\u0013�6u}�r\u0006��ݰAC\u001c*�>ץ4�AY�\u001dĀ���\u0004�&B��bn�\u0002k8��U�\u0007\"�ʐ��MM��D��%�%[�VDa�\u000eC�p�����\u001b�-�S�L�%��E�4�+�\u00008eܑ�\u0017d,\u001a9�C�M\\U�K�zgU�rJ\f��\u001b%���\u001a�QT\u0003{Xx�)�ZO�\u0017%��\u001dv��\u001d��d�%\\��z��\u0000f�a�Kmq�7B��m2��\u0011:�.�4&՜S�\u000f�����e����)�\u001e�ޙh1���j�ò�6M\u0001\r8�B�.���\n:���1�0\u001a7h��g\r��8 q�Г\u001e�'5\u0007�.{\u001b�e�L\u0011x\u001en_\u0001bk��߭a\u0018/\u0004��mE���`��\u0004��\u001aBW\t��\u0002�L�Gw�XN�\u0015��^\"��'\u0002Xa�&�G\u001f���ǣ\u000eI�Kg\tN\r�AL�\u001d���+w*\u0001B�(����t-�\u0015�\u0004�\bS�w4{�R0-\u0016�\u000f�\u001e�9u�h�D\u0014�^��@qF���\u000e�@�,�n�h\u00141\u0004�\u0013���B\u0011\u0005Kc��?\u0007��i5�s�MW�Oʫ�O��C`cE!sԧ���JΫ��=��SlƐ�`m➑\u001b:��320���\u0001���\u0011�\u0001�xk~\u0011e�|�\f�AK�\u001e\u0000��Ƌ�m���Š���H/�T�\u0005O��\u0002.�G忘�F�/\u001e�\u0016\u0015M�\u0003\u0014Ƹ.p\u001b�V\u0015\u001f�\u0003�!�o���X���j\"<{��\u000f���0Iظ����\u001c>��P~�Z值�+OK�!��Pv\u000f)@���rd\f䍤�}:\u0013�\u00185\u0019h4�:�\u001e��2t���~��\u001a\u0004\u0013,7-\u0006��\u001a/������F�����\u00044�a�\u0017j�\u0017��v�\u001e�%��Pgt�B\u0018^;�>��\u001d��uT�\u0017\u0002\u0006��\u001a����nU��A�\rn\\�\u0005;oP~=��%��!�u\u0002b�B�\"�>�\u0006��\u001f6V���ō���/��\u0013\u001e\u001a`a\u0014|�]�\u0006#6Ae\u0011Չ�w��\u0011'��DVy��\u0018;��\u001e�q�\u0018yo\"�pco��}�=L\u001cX�\u001fpiU0ԅ\u0015��A݁\u001e\u0014���y6�2R\u001d\u0003�n%�W��=FPO�j���l�mN�=�#,��M�g�k:z�\r�a]��PM\u000e�:�\u000eϧݥ_�^�\u001b�j)�fܤ��g�nf��O\u000f����XL�\u0016��7���w��8�rd�\u000e�Y&o���uMZ��)۶\u0000��6��I�e�)�b3��Չ\u0005&\u0005r�rJ^��doZ��hh�E\u0002e�\n��\u0013\u0015�j�8L�O$��\u000e��g�1g���\u0017Q��\u0004#%Sq�R��}��k��q���xRL��������'봨�mk�]��\u0017\f�\u0015��Qi��Q���zgt�e�K�\u0004մ�c�>C�%��K\\�J\u0003����$\u0015l����M35���\fB���n��a%-:��A\u0006�\u0018\u000f�*�>\u001b\u000eXN3����\u0012Z�2\u001d�E֜\u0015���\t�f��fa3?荩�V$J��o\u0016�\u0017�N+����{�Ή\u0018*\u00190\u0012 �\u000f�t|��ZJ�\n3�=|a\rq`��6��sA��\u001a��Po�༠���\b\u00012)��\u0003��|�(�\u0000�T�si�\\�\u0017��ԇmE���Y+s�evH��Hb�V\u001ck�Tv�A#�\u001e(��M&O�\u0012�s\t��\u0006t_��\b�Wm�'�����'t\u0003\u0019r�ɝ8}\n�gS\u0007\u000b_����9(�:���N\u0004ҏ\u0012��\u001b31�U�i��hc�.\u0017“����[����P��\u0006-\u0011�`�\n\u0006��2!\u0011���a�\u0007J�\u0010�\u0012�κ�\u0006&5$�\u001f����F�\u0004�x|\u001d��W�AL��1?fΘۡqN��Α\"o5�Q?�R�\u00131eIk�~�b�X<�\u0003I@�\u00133�\u0005�\u0012\u000f\u0017�'�d\u0004��z\u0013�v�E\u0007|b�k\u000f\u0013��)x�M#�KsP��w7��0\u000b�dz�1-�e\u000f\\�\u001d%� H���l)I��=%Z��?\u0003s7��\u000f>&3ǾI_�u�z�V�;�A+�\u001e<��M2�\u001e� �\u001a�r��KB�\u00074·\u0005d�`�\rM�u��\\��[x�\u0003��+f?!�qȥ^��C�ǕC�Q�\u0000\u001fq��家���[��H�7�\u0013���\u0004�=�2��0m��1t'\u000bi\u001e�0�T�\u001dp�/���\u0017���\u00040+�ѵI\u0013{_+��_\u0005\u001dtU�V��n>�Z&D\n\f�ru\u000f�}�O��\u001b�*�\u0001\u0016\u0003yBP�\u0004�&��\u0013*�`�C;��\u0013���\u0012\u001bt@wJ\u0014��@;�x\u0004����J<�����8\r��x\u0018\t>u\u0017Tq����������»M��Nhb��0�1&\u0017��w\rؓꞐr�l�z1^G<����%��K\u0016�%\u0018mD��k��},D\r���\u0013���A �\u001eP���bo�J�f�X�F[��=��*ʔ\u0019�~�\u000eZ��3���d��ԗ��V�l\u001a��#'�;�lh\r�\u000b\u0017�jh׼�\u001b����G\u0016����\"�T\u001df�\u001b6�v�\n�\u0000�:;\fQ�R`e��l`>�5�_��;6f9?�\u0004\u0005�䚴�學�~�5�\u001a������c����b\u001bO�\u0001�\\�:�t��r@��ќԱb╿��z\u0019a�eh����Fr�)6��p�T=�5��|Xx��@z\t�Į���ʙ*����\u001d�3�\u0013��\u0001�\u0018\u0002e�.�����߰\u0003��⥼�8�Y>F\u0003\u001b\u0018�(���\u000b�)��۞P_a\u0001���$YH.&�\"#\tl���\u000b�A)�\u001ed��L�\u001c\u000f��s^=Vf\u0006���A-�U��\u000e�k��\u0013>��P\u0003tW�e�\b\u0004\u0018iӤ�����rVNv�Tl\u001bU^R�S�Q%�ǧ��\u0000\u001f\t+�\u001a�����[N2`I0�\u0004�����:-n�\u001c�H �ߔ�&h\u0013K�a^]������\u0010OX�U�^R��k��B�7ǁZ[\r��0�D���v(#^�F���W��׃(�Yl�D����fy\u001fp�[\u001dV��\u0004�r\u000e]��R\u0014Q�\u001col�����!��d9K�����\rzrp�� V�H\u0014ɍ4D�z�2�|S5�l������C0\u0005�\u0015n,Y\u0016��\r̵\u0010��6�/�,\u001b��x\u0014����\u0001��0�Y����on�A.�\u001ex��L��Cp��opl\u001e�m;CZ����E����0�\u0000�\u000e�\\�;�x�W\u0017Q\t�$�R�e�G�&\u001bb��\u0002�<��PI~���\r�$\u0000���\u000f������?'$�D�\u001a\u001d\u000b��;>���\u0018��\u0016��\u0018�\u0018��wL\u001b`���-Fs�B\u0011�����%����9\u0012\u000e�&Nqh~�\r\n��\u000fl�G'?�7�\u001er\u000e<\f\\R���\u0016�~���\t٘�gj��iN�v\u0005��d�S�\u0016��#w���v<��j�\r��#^\u0007��\nU�\u0011������<_�\u001c6\u0007\u0005!�\u0004���\tR\u001e�]�X��v�\u001f1���l\u0000��L.\u000b|�9\u0019ssR���zfܰ��`\n��l��l��\u0003�L/'�W�\u000f���A6�\u001e���۷���߻���l|f\u0002\u0004��%b�0>Vm�IĨ��q;�H��/����?Ӡ�`\"S\fо\u0014�'S�K!.Y\\�]\u001b\u0007���\u001dҀI\u000e8A\u0019߄\u0006����rЙ�B���\u0014԰]�6�)\u000e\u0015�\fѨ>�I�mCsF��*\u000e�����v�L��6�q��\u0017��mN�(���\u0005�i/�\u0017&K�0�' NJ\u001a\\f�hԲ̤�����\t\u0016�bwo(g�>��`v�����=m'�{���P��VSM���J�+�\u0007\u00186��,�8=\u0011۪�/�d}\u0012 脎pf#\u0012�n~�\u000f\u0007�O�\rZ�`\u0003ȯ�=���Kx\u0000^����aG�}�\u0012Kk\u0017�A2�\u001e���L�G&��<�.�У� |�Y>�\\�f\u0010ZFόT�?�\u001d|U/��q��\u001d�\u001f�LwA:\t�%��\u0000��O�\u001f8\u001e\u0019�\r]b��\u001e�6X\u0013!���R\u0013�T|T�6�3�|Org\"��\u0007\f\u0000�PEu�HSw�E�\u0017!��,��^L�\u001dJ��]�띲!��S�=cBSú�m�b\u000f꜇\\\u0012��\u0000\u0017�,��\u000f�\u0002i~\u001aa��z[��\u0012�\r\u001a3��Ʋ4���\u001f�\f�\u0016�x\\�\r���\u0015e�4D�X{F�9h��֝X�\u0013J\u0019�����H|��w?��\th\u0000:���\u0000\u0011��\u0007ݹd�ɄN�~a�\u001b�1���4�\u001ag1��ʕ9��^\u0017��\u0011��\b?�KI�7,@��Q\\\n�=(ӣA:�\u001e����d-l��\u000f�p�Y���\u001f�填v�97�����w��)\u001b�H\rp���-Ԉ_�@�\r\u0019�z����@T\u001dH�\"��;$b����n�-7�چG���!\u000e�\u0004�\u0019��\u0002�������\u001a�L�\u001f1.�]�'��b�9P*t\u001e\r\u0007�\u001b�C��Z�\u0016�\u0003]y\u0007-#\u0012d�#\u0005zQ�.M�Z��o�5�\u0007�\b�9y�?���� Ӓ�\n�x(�$�\u0005�i`{n���]�>H��\u001d&�ZS�V�B���\bk/1\u0019~{�\u0004\rv\u0019�V���-\\c\u001842\u0019=����4�1=��\u0005�\u001e��{�����*x�*\r\u001e#��\u0004���T���\u0010茞�\u0019��\u0003O}p���T�\u0001�\u0010�%D\u000b�\u0003=�e�d��\u001b���A@�\u001eȀ���S\u0012g�\u0010�n\u0010�`+�!�-D�\u001da�\f�Zx��Z{�\f�\u0013�HZR%ꄕ��&�S\u000e�i<��t�Xy��1\u001b\u0017K\u0013ԫ�xʦ���|\u0000�f\u0018A\u0012\u0017�~\u0005Bq\f���Twc���\u0005��G�G蠲�\u0000ʄ�\u001e@P�F+\u000e�.\t�$\u0006�bݹ\u000b��\u001fI�欌\\�HM�\u001e<��\u0005�84��z(�И���c|��!�l�x^w�eY�1\u0012�d��Pn\u0006fT0=\u0014�P�ڨ��\u0017~�\u000f_\bN#%~�)�{Pu��*5����a\u0014�\u0007m�K�/��J��\n�\u000b\r���-�-�\u001e�?��/�6\u0000ڔ��\u001aW\u001b��C��D��\n�N��\u00112�g�Lj�@����\u0010&��\u0014#�ɺBO\f\n[G�\tu��\r���AF�\u001e܀��\u001f���1��\u001ck߲�\u0015�*k&\u0001\u001d�\u0006�+r�\u0012��4j�\u0006��^���^��:��'ϵ䭗�tJb�7d\u000bC\u0017=��D�\u0019w\u0016\u0013_�\u0007�p\u000f9�^EF�\u0007Vbb��,���r4\u0007����ͫo챺ؗ�j�X@o\u001e�\r\u000f�K���}��k\u0005�6呮�ɟow.�Y�O�9J�\u0011��q���\u0014\u000eu��u��LF:�a�h�A���\u0002���\u0010���\u0000�,��{�n\u000b-s�\u0004?\b\u001b��3�`\u0003!@\u001ef�k�@\u0019�|�� �F�;��i�LD�J�dh\u0015�Gy�'\t�ޢҌv�����I�b����q'�A��\u0015;��\u001a�$(҉[\u0006C���M����s\u0019]�J���Ό��{��/�.�\t���K��.S�I��AO�\u001e����3���P\u001fW\u0007Z����G�.����<�dG�>8��_���^���X\u0004s�\u0006�U(�h^�na9�&\u0019�U���\u0003�-6_�n�0\u00066�TL�\u0004cr�\u00023���X(\u00077c:�j\u00061a�����\u0019\u0000��.������\b�9���q��i-\u0012%��AS�\u001f\u0018���c&\u0003��!�\u000f輙T�f\u0006?����*'ߠ���\u000b��\u0013+��_�\u0014�\u001d1f�€�\f�-i�u�D=�I*�1b���!��\u0007��ֆ7D\u0014HL�\u0004�z�\u0017n��yX����\u001c\u000b�v���\b?���Z�^EϘ�1\u0014�l\u0005�\n���Cgdqy�>V`\u0001�^X�p5�O��\u0007E R�\u0018���>��/���\u0001�UIH(V+�u�8\u001ch��’�>�^���\b�\b\u001eҭ����\t9�U�Do��\\p����m�*�\u0007hK�\u0017Md\u0012�m\n乹:\u0016\n��tI{�]\\w\u00101�z�s���|�{ː�ȽH�1WN(���l�\u0013�\u0015X�\u001d��;�:P\u0011��h�s\u0000^��;\u000bL\u001a\u001b���z`��q�?�CO:�M����ӄ;b�)\u00067?�:6��\u0001��AS�\u001f,���b�a8y�O�w���\b\u0016ʢ�I%�\u000f\u0001�\n)���8�S?\u0013u+�yLP�?���\u001f��\u001e�@A�@�3�R�f�\u0013�2�\u0012D�g�%��i���\u001e�n�\u0019֋چ�>S~x5��.�ȵ���48�vs~�6FLt$�:@��\u0013�\u0002�D�7i\u0011\u0011N�+�bQ�ֶ�t\u001b����\u0000\u0001�𶕻Ň}n\u001f�j�ޱn��TR�}\u0018Y�6J�O����7qoL\u001f�R�c�w0Yq�@�Ѵ,зOy|�bb\u001ar��p\n\u0016zE���\"�'�/t�����8�៚kƅ\u0010\u0006��g���Z�=\b��Ҕ{��m�\u000b33�f\u001fB�\u0004\u0011�\u00130\u0007��=�6d9\u0013�\u0016m��;�\u000e\u0019ҁi�2\u0017!�Ft6�Sz�n[V��[\u001c�Z+�\u001d�\u000e����S�\u0004}\u0003T�\u0018:�ec��;�L�y��\u001b��sƔ@��y3����\u0014}\u0015\u001b�@:�&Ӫj��/��կ\"\u000e\u0011\u0003n��\u00060�ld�l$\u0001��\u001d�N[���ϡM��a\u0006\u0006^�?�t�3��ð�)��)\u0002\u0007�.\u001du9�\u001c6���y��#�\u0019�@cnz\t�5̚q�\u0016�y$�\u0018I�:���x�����›=^�=�ٸ)�\u0006xr��\u0003��!`��r.����T\\��dk��\u0012\u001b��D&?�ߨG`+�5�SQ��λ�M$p��t\u001fq�\u001a�\u0011���@\u001c�\u0011}\u0007��\u000e怇���\u000b��P(a\u001c�}�+$;��O�B�9�E&\u0015\b����\b�Ai�\u001fh���\u001f&\u0014ꅧ\\���@'\"\u0014\u001fĄ��X\u0000.�]�\u0004���r�\\\u001a�����\u0019\u0004\u0014f�3U:L\u0002��oPM��\u001a���B\u0006\u0016�Bz����\u0001…���6˥��\u0013�F'��i���Qv�ӷz^�d*\u0013��\u0014�چa僫;��bD\u0014�Q�!:�\u0000��/�8���v�\"�-ȧ_\u0006D����ݱ�\f��x�\u0006\u0014։q�(�UP��܌�\u001dW\u0016e�\u0011=���n��D���Q��ָn:@�-��+\nJr5��/�Lo�2f�\u001a�$��h&:�\u0004M��O)ʙ\u0005�������ډ��\u0011b\u0019\u0005`�P�N=\t��\to\u0014�b[�%.�^�+\u001d\u001b���s�-�\u0013x]V��FW�H(i���ߚ=NFAC*\u0004~�\u000b�p�\u0017<(�>�(��:�r^\u0015\u001d�gd��i4h�?n�t[3jTG)̓���\t�An�\u001f|���l�o� \u001d���\u0017=c/�\t���vWD�ґ�+��&���A��\u001f�Ɨk܈��6\u001af!�.�2�\u0018��\u0016o}����yN\u0006�\n8G�+�U�=#%\u0002I\u0017\u0004�w�\u0005l*E��{��\u0019~\u0007�\u0014f���k9t\t���泼�a������`�W�0��`ޯ�-����!R-\u00138�j�PX��O�h�b1n3�\u0003I��u��;\u001b��\u000ft�}�1��%l�\u000b>��)�:�K�3QU2�\u0015�s�L��bXh�\u0003\r��s���hK#z\u0006Oߊ��*�C�\u0016\u0004��W��ȡ^\u0015X���o�K\u000fK��\u0011�M���N?�fm�Ae'����B7\u0000\\a����i����j�\u001c)�׮�\u001a9E��i���G��e�\f\u0019��:Ì��A��,�&4�蘽�z�\f�ߗ��\u001d�\u0015Ì\u0015\u0006���u���0�\u0012N\t�A��\u001f�����\u0013\u0006\u001c:\\��!��;�[����5��<-a,%�ܰ%�ٟ?��\u0003������.�\u0004\u0019Kn@�9}���#��E��@2�����^�C\u001e��[+�\u0012~�”q��u�M��a.v�h�LB�~�\u0003�\u001c�fV�V��\f�!�}*�t\u000ev÷t�.�B;����椸�\u0007\u0018���s��aǥO%�\u0010\u0007z\u001b\u0012�\u0011\u001f��\u0007\u000b����LK��\u0013�x,�H��,x\u0015B��\u0014_gU\u001eAlh]遦`�^$��3�*�R��uqr�Rk|�\u0014�5�\u001a���حNl)�\u0013��\u001e\u0003��\u001e��ϡ\u0006���\u001b6~���YhS�9v}����ߺ��������\u001cf\u001c�h�u�:�\t��\u000f�\b�2y��U����\u0018=���t\u0012M�f�E��^���#�&��}\u0000%����!����g��2\u0003_.�;\u0006��Jޛ:�^+\u00116��`9���A�H2�\n�y��\u0007�.dE?�[��6'\u001e&�\u0016H�T\u001e}��� \u00175�\n�Ac�\u001f����߆\u0003\u00103\u0003�h=��h!rK|��\u001a���i\u000e����\u000b\u001e�t\u0016�o\t����)��Ч�ˍM�#\"�\u0004ۥ\"G��\u001a�)0\u0014�\u0004�X������\u0005h?��(d����\b���Z�� �E�\u0012�<��Pqx��\\*�\u000b���\u001co!0��������x-k�҄f�7�t�)\u0007�,&�6I$V(gL���Qw��\u001f\u0015�!c��&Xsc\u001dARG/�؆t^\u0019-�)��n��\r\"��\u001f,�u\u0000FqT%��\u0015B�-o�G\u0013�\u001b��P#���&�e�r�,o�\"�\u001a�~\u0016�5.\\�9��J��~��y�\u0018*\u0013\u0006c&5���3{�>�B�h�[O�[�����%dqM�&�(�\u001f�P���\u000b�AV�\u001f����r����\\�hҶ�.�\"�{䡨<0q� ��d�C��>'b�����ci\u0019ސ��;Xi�Y]:\u000bya�\u000b�z�(�)\b쩀��-��\\]A\u0001дϼ�\u0010��栤m��p\u0015�����E\u001byo\u0003�5��Nł�V7̓�Sܩ�{H��̆ل,Y�C�\u0006��N�6���\u0017�÷4��Κg�\u001d�j����Qk\u001f�Գ\u001e�9\u001bM�P��]���f\"R��f����k�ޕvsI�~.��\u0014����ʇ�3��)�\u0015�{\u001b܁ACM\u001a6\t��Kz�};��%�8J�ia1���\f�k�d��lH|\u0018\u0006f=���\u0014@GTT\u0012����}��2:\u0019�\u0004\u0001�\u0005J�qI?��\u001a\f����r��\nm* ��\u0006�t\u0002y�q\u0019�m�\u0003��y\u000e��-\u001e\u000b�A[�\u001f̀��՝Y�=<7�c\u0014�)������Y�Z�=�\u0006\u0007�H�\bh��o�㈅�D�\f}�r�*���\u0002�\u0011=L\u0017(��$�n��\u0002�\u0018.��v�A\nT04=\u0019�\u0014gtޮj��S]�0\u0005�Q\u0004\u0003G/>�v����}��{���A4�M�\r���l�\u0006d\u0010�<���dN�8u�X��7:ePHqx�W7粫-ʗ�\u0011)����?��#,\u0010�y��X���\rK��\u0004��yv�Oys�A� ��r�\u0015�6�zF�/�N\u0013�N*�V�,\u001b���\u0015j��!+�^7���\u0019OP�)����F�u�ڋ�+��M���uM&\u0017�$@\u0012\b����\u00069{EL�^$�/\u001e@\u001e@'��\u001cOH�c�A$\u0010梹\u0012wa?\u0006);a*`��IT�K��R��p\t\u0007�n'?�\u001a�d)�j\u000b�A]�\u001f����8W��'Y]R��f�\u001b�温\u0003=B���B�����OZ(\u000e�\u0011c��>HQ\u0014g\u001a�r��]�\u001bi����V��Jsh%�\u0018�:�\u0019\u001f���X��f~�$��[}�VS\bȠ�'����f��\u001d\\.�\u0000\"���.��Ō\u000e�\u0006Ir�A\b��ye�\u0013\"����\u001d���\u0004 ������Ƹ�Lp젧\u001d\u000e�q�\n��\u0005�iN*{>Y��9%\u0002( ��G���m�n�b_��\u001bb��I\u0004��T\nI\u0013�, Z\u0005�\u0010�V�z��OF�|\u0012D�#�\u001d)\u001b�z\u0005B� ���p��X�\u0016do\u001e\u000e!�\u0001�@\\8^���G$~����|}[\"�vB���{�\u0018J�&%YF!�X���}\u0001+�K\u000f��.6^z����R�DfP\b\u0012A��\u0001�O�^-��\u0006,������\u0017�\u000b�AH�\u001f���s��\u0000W����b�\u0001\u0001�_���\u0005z�>W\u0016IR9~\r�\\`\u000fk��xM�K�I��w3\u0003bI�rC��;Ko�\u0002A���\n�\u0001Ve:\u001fl���,�����\n0��Ս�\u0003R�>zL\u0006�\u000e�\u0017ME4�7ֽAo�fx��GP�\u001e�I�g�t���u�(P�@��\u0003]�\u0018\b��\u0007�۝���a*p��\u001bn�\u0002.\"�H���`�RU0��=�\u000b�\u0011?���>�R�\u0002!59\u000e\u001b/�Q�O�&^�,�R�挦���/���*�w��1k������YSc\u001e\u0005�b�լ��\t\u0006��\u000b���\t\u0013�\fw�(�hjxoL�wͻ �����z^\u00123����\n)r\u001e�#1�϶LvS4w�0\rƉ��I\rX�m��Cƹ�\u0010��o�\t�A9� \b��W�r�{\u001c~4��\u0006Ю�������]�C5\u001a�\b�L��X�\u0002�۳�{�\u0018\u001ai����X$�+\u001e��\u0012����Xs�_u`�\u0001^6f4S��Tc�d�򰐈ۧ�\u0005��\u0000|�%u\u0013\u000e�����\u000b�\"�\u001bk��\u001fg���h���\u00038E��6� jf\u0001�d�ΔMҙ����\u001b�z��;U�ڡ��O� �t蘱\u0003�+��I.:;�:0�X�\u0005j*E�\"�!2l�'�\u0018.7D�w\"\u001b��˾N>eG��u�M\u0004�\u001f\u000e�b�w\u0006%���\u001b|�\u0004��zu���\u0001c�n��W%��Y���\n�\u0004)�R�'�\u001c�0E^\u0001*R>ݲ�Bv��w���\u00017�\\�����I%8��H{�����A%� \u001c��X�/g9����\u0017�\u0012Z\u0018Cf.�h4:T=�\u0017)�J\u001b\u0019��V�[\u0016*λK�&)\u0003����v\u0011x��\u00138K��mV��\u0011��KT\u000b�������S�>���\u001b\u000f�r}�:�a\u001a�Y��\u0018\u00047T���lԆi(U[R��ʇ7rƷP3}Y���/$�\u0011U8Τ\u0004�V\u0019�r\u001eiÖ\u0003o[��UZ��c���&���\u001af=�^�t��q�\u0006�\u001b�\u0010~�\u0013r?�bF~�9|X9�s�BzЩ�|�]�I�>6�\u0015\u0002\fp(��r������z�\u0015JL@ةuG:U.�����.\u0019��,gk�?\t�W���B�\u0007��t\n\u0018K�\n��&��1����p�\b�\f\u001a����/�A\r� 0�����z\u0018Bf��[���\"/��u�O\u0002�mg<��^�!i{���\u0005l���\r+\u0000bU<\u001fD��&�fj��+\u0003��Rd���\u000f\u001a\"\u001b��t�!��^�Px������V'��{�O\\�\u0018rߎ�+�8�k��]��^:��WƔ\u000fe\u001a� Kd\b�����(�(\u0016\\<��ȑ�\u0015b\u0018t�g�玞9=x\r�%��A�K�.���+S\u000bT�\u0007�D³���\rK�j���8 i�5�\u0019�6q��a\u0010��Gz<���\u0014�O�.]E��?��Y�\u0019a�e@Q[q��3f����?sI������-���'�Q@��V�A\t� D������aG�­��\\{�\\3\u000b�)��a�\u0013aH�&�\u001d$Pf�b�6)��\u000f4t���+e�(���\u000e�'��H0\u000f��]l�M�\u0013�\u001e�k\u0001�p\u0018����ȹ���Z��Y�����x�œ�v��;���\u0014\"\u000eե=Y�lO\u0003\u001dt�RJ\u0019M��Q��\u001f���Ӫ֋B��J{\b&�\u0000��\u000f�_��I�5�q$����&��,��B\u001d�r�\u000f2�ܛhZ \b�rl���ڡT�4��0:\r#t1櫼\f��\f&\u001b�*~\u001c��\u0002\u0002HdStg�t��\n\u000b�l��S��HU1\u0016����Ҿ?`���V�A%� X��L�\u0012\u0007�2��\u0015\u0013\u0017t��x����'�O\u001d�\u000b\u0001+Gꕉ��/��;-���FX�Y\u0015/��ڞ�����^�\b;�LP�i�-tR�5A�P��\u0004�\u0015d�܋&��H\u0006��:�݇�k�^͵���e��\u0000���*Kx������ڷ�ojF��\u0011���\u0007I��r��I�8�I��Ű�\u0005��ų���\u000f��%\u0006~\u001f\u0004\"�@\u0007Nȯ�i�\u000e6!E[�V1�Lƌv\u001fa��\u0013͟\u0010�?\u0018~��?�b�\u0002\u0001 mc9��c��O\u000e�`�d[���\u001a�0ҍ�\u001b�\u0002E��V��g1;���\u0006�2�-�n�`}O�2�k.��꽕W1\u0019ӏu7n�\u001b��X�=���A.� l��L�\\X,�\u001bg�^� �,'*C\u0012�*Ր�$K�QքE�GJ=�\u0001�&��]�6\u001b7�W���\u0016u5h���z�F�9���7��K\u0019\f�apUݨw��R6\b\u0007���E9��\u0011�w�jU��6�\u00138�ӻ�\u0018��S�6mZmt�W��⢏{�4\u001eJ\u0016\u0011x�\t�6���\t�—�3K\u0015jF�\u0019�k��tt����\u000b�N\u0003f���k�H'��\u0000�5{T�!R\u001c�y�������0k3-�&I1!�����V��%H�n�@�{k\f��X�KӀ�a�~a�*�m�I�@¿\u000eK��\u0015�.\n��^H���\u0007��h`�t1\u0012�a�\u0018\u0002ٙtD��\u0013�\u001f؅q8Ԭ�\u0016kQ?{p\b{\u0017�z2�\u0001��A\"� ���Mta\u000eV\u001c�^e\f\u001b��/�Y���\u00050#�yZu9g\u0011x�\u000b\u00160|~F_2�e���OvD\b}h�\u0002��>�|&X�&�PX�\u0018�\u001f\u001a��\u0018@\r�5����c!�N�A\u0000��\u000b�z+4�2��MeU����v�X���҃�a%\u0013Ɔ�\u0006��hDG�T(����N�kH\u0015>N\u0019�oN`�^��\u001aU_s�x{s\u001eT�[�T� J̜!Mmf�\u0015*~�\u0015�\u0013mY�91kٽ�č<�s�I\u0002�$=\"a+�a�fx��΃�b�<�Ѩl[�Y�ã\n�Q�O�A�����?�@�\u0006\\����\b%\u0016\u0016������\fS�kG]5��lC14F=�\u0005�Z�A#� ���M\"9��C�`o�����\\�#sW\u001d��Co\u0004�h��b\u0016q�GЪ�SQ��\\��%��\r�:�v�[d��\\g��?i�\r��ЭD~V\u0007\u001e�`�mE\u0004~+/�\u001a��b\u0007Ŕ\bh@\u0003�[�~\u001a����O���\u0013&�k\u0016\u001e�h��$��\b\u001fg�顣��\u0012�Ҷ�bWL���*ƭjgY\u0005�\u0012Y���\u001e��7W��&,�\u000b��\u001b�xË?�%���\u001b�[\b��a�8l�7�\u0001TXm�\u0000�%�7b\u000e\"��y\u001a��;b�:�\bm\u001f=:�;�^� D��q���/��v�Ϙ�6镥�u��2}��c��X\u0018C���;�\r�K������\u0018eˇ\u001b\u0004�5\u001f&[\u0005P�\u0003�\u000eՇ����SPW E\u0003����\\��\"E\u0015$��8�7���\u0015��g(gaw\u0003V�\f���}��d��(����\u001dGw�\u0006Ę\u000fB\u001b�l\u0017�\u0006\u001a���ݗ[��A7� ��ۋ\u0004���T�EG�%����Ŋȥ�\u001d�’�F�E#g��N��ݥ ��:\u0014P�\\X\u0011\\M�\u0013���\u001c�M�>���C�\u0015������\u000b���[䅸6$C1�\n�\u0010X���CC�o��@� ؙ�uzR\u0006;u�Wn�h�\u001av��}\"UZ\u0006�*w\u001e�\\��c����/Qf@��@�9��\u0019\u0017����}m\u0006|c�Hn���M�y�k�B����>UZ��+1\u0004�N��\t;IL\u001e�L\r�q\u001e\u001f��L&/d�ߔ}1G�C)�⫌g��\u0015x���{j��p\u0018:����׭cx2��\u0013:\u0004f\u000f��KT�ܜ��s��Z�(J3\"�\u0006����%p��*����\u0010?\u000eB)�ƛ\u0014^���'��\u000b�'�A;� ���L�\u0003\u001frG2O��c>�\u001fӓL2�z��h��\u0006v �D�\u0019��\n��c�:3<~��n;�z\u0001�B�T\\��������\u0016��\u001b���\u001e�ۗ�\u0011\u001b&ÆG�p,W�f9:��[�y�ޝi.&\u0005r\u001a5�g�%�Ǹո� �?�\u0015N� �g��\u0011YGE]�\u0010��I|�X�\u0001��\u001cȀ�Rװ�O�PZ=���.���ʠi��P\u000b�-e��Ѿ��m\"0��-�\u001cj�9�\u0010`a�@}��z\u0006��΃���\u000f��ܹ\u0012<\u001e����Ԕ)��V.��\u001f�\u0002�Q4z\u001c�sJ\n�:�\u0016�X�4�N�8�\u0015�\u001a�_���5�\u0016^\u001a�6�N��r�\u001a��Q?aL�x|<�\u0018�L\tF���m�5���*#�A��!\f��}b�\u0003�AU��\"\n�T��\u0005\t���q#��.�\u0013]�hJ8���\u001c\u0000\"�p{�s��wyMm�x�e�K�\t����ٓ��h�D\u001b��\t�xF�R\n\u0012Y�#�&L�(\u0004���\u0017�u\u0001\u000b����i���\u0013aN��z{�c0^^K�i�γ�\u0017�87�A}�'�A\n� #t��ڮt�9[ؼ�Pj����1�:l��pw\u0011��\u000e����%����b#�4l�����U�N�G��\u000b����\u0011&wI��P1b��w��\u0015�0�x'�%��\u0011oCM^���xX��n.��Mz@S�H���>͙\u000b�[cà\u0002�]\u0004\u0016S�{*�Ȉ��Ax�o\t�!c�E\b�T��w΢\u000bN���.��%w��s�F\u0005(R\bh�2��.�\u0016��m�X�M#���|�\\\u0014\u001c-/\u0004����7\u0000�\u001e�#\u0006��he�d�˜$\u0000�l��\u000e�`2�����\u0012@z�c'Z\u001c\u0002��v Q�.��G~�Q!Pw�G�A1�!4��۷E�6C��\u001cip3='�����(����\u0016���\u0011�\u0012\";�Ş:�F�k��>�\\/�����[.\n%����ᠯ�R���ڼ2\u001d�\u001a�#ĀlVF\n\u001c߹�\u001ea�#��$�m�7�A�\u0018��g_{a\u000fm^\n\u0018�t0\u0019n��E��qd\u0012N��C?\\��|�a��\u001e�\u001d_�xu�%\u0001⊾&�{�b,�[���T\u0003�TcʁO��:�n]g{;@�+�fO�ݼ4V�B�[�\u000fgp\rY6���1J����j�p\u0018/�n�hU�ʿ*>��D][ j>liJ�\u0019^O���{�0�U�ɣ\u00025/W\u0005QQ�\\x)u\u0014�(}_�mjJ��/�(�Ą��ރ�@T���y�u�1\u001e�A3�!H����Nx�&'\"�=�6�)����s�Н6����i�1�0/��\u0006�;. ��}a΁�\\�����,�\u000e�y6�p�%Q�GR�K!2Wc�?\u0017�Q+�d�\u0016�\u001dց����=P9-J4+:q�X�{\r*��Q:�t&\fCX�d\u0003�3F�u?�v�@�\u0011\u000b�I��77V޽��xZ�Bz��bѳ\u0001!�+O\u0006�K4j$�\u0003��R\u0005�2��j\u000f���\u0005\u001aCU�\u0007\\�\u0001'��s�q1'>�\ne\u00165i\u001f�AG�!\\��M&\u0018�?���G-J\u0011\u0019��/�gP^�D�^ѯ�<^\u0001���m��1\u0018Bު\u000e\t�jܐ���\u000f�k$n�����M��\u0017���<�\\D\u0010�\u001d���\u0014BY\b�D��ٿ*��-�\u000ea4y\u0017{pz\u0004�\f\u001c\u0017��$�H@�zک��~��y/1(�,�����/M\u0019��[Kӕ���\u001d\n��R�w��M)��AK\u001c)\t \u001bV���K�\u0011��4r\u0006�gU\u001c]Eȵ�\u0011�a�^\u0000RG\u000b�4k��Ձ%kD�T�!h<�eބ2�A�EE���*�$OvIR���ٙ4�\u0017��\u0015ۢ͠��oЛ�T\r\u0011�\u001cn]��AO�!p��L���>�V5i��O����N\u0013U\u0015U�uJy�|\t�N�ҙ��C��\u001a�\u0007������3z�'sR�w�\u001b��\t\u001b�\\�\u001a��o�l<�+\u0002t�\u000f\f���=ޥ�N\u0017�\u0017E>�jq��_,R\u000f�ak�p�\rS\u0002��5\u001b:�Z��\u0007H��\u0010r\u000b\u0016\u000f\u0002�>e\u001a�e|�Ma�H9�Y��ُ�`�\u000fuV�,�̀\u0014I�\u0019�\u001f9\n5��\u001aUǺ5�P��\\���{\f��n%�\u0018�\u0002\u000e�)\u001e\u001e1#G�h�b�︐��Q�\u0010�\u000b����_�\u000f&��wC����d|���!�\r�T'��.���\u000fH�s�\u0011�\u0000�T\u001f�\u0012J��R�8�)�́�ϝ� j'\u0002\u0002\u0003\u0013\fw��\u000bk\u0016\u0006_L\u000by\u0000�\u0013`�w�\u000f \u0006m�G\u0010�X�����9�\fgm6��od�A��!���7\n�/x����*��k���H����t��4d���p�\u001e��(���u�h%�s\u001f2��-\u0016�i���t?6�i�����d#�\u0003��od���!s&\fZ�{h,]8h��9��\u0006a�\bU4��s)��Ld�\u0005\b�l�\u0001}�?��ɤ~|O\u000e����O�\u001c�,=�\u0015��Vh�5\u001f�W���].�;\u0007\u0010ՁT\u0005\u0014�2��\u001a�p��2�\b��7O����\u0019\u00071C0ie5��꼸\u0010�^&��U�2Pz��*�+���]ȏ�\u0014�S[\u0012$K*F\rxs}�\u0003�NN֢��3@<�d�\u00179�6\u0001\u0003,\u0001\u0007��Q�\u0007B*\u000b������%1�\u0016�m\u0010U5��r0��\u0000�X�I\u0004��:\u001d��\u0005�?���3�e\u0010z��\u0010���r�~c�Ձ\rO�\u0018��ʑ��]\r�a@ɜRC�\f0��2�����w��UC��8,k\f�q�@����\u0006�r{��/��H\u0002���AA�!������z�q\u000ele�%����d��¾ (\\\\C\u0004#\u001dd&�qL)��Z.d������8ƣ�!\u0002��\u0014c�Xv�w����d��R\nD;���y���\u000f��r\u0000\u000f�Ǭ]�$�j�#|\u0013�U���,C�\r��Ո>\u0004�z�\u0012�㱣?��\t��\t�v\b�\u0005Y�(iЯyM���(|�,�nX�6raځ9\u0003�H^�\u0004q��8\u0002�\u0016%��<��8!�4W�\u0015��=N�b���T,Ih][c�\u0001�s\u000f`�(eY`�\u001c�����_�\u001dfY�3#\f�~�Pq�2N��M���0�S\u0018��\u0016�w����\b����A�O�QVw��j���AS�\u000fu_�|\u0013f���L�\u0002r�\u0006\\6ZH\b�ep\u0016u�� Ù/5�?J��C�f;\u0015EʞH��G��II�&\u001d���[]\u0012���+@�d�x����d�W��\u0019/DK��\u0015x\u0002��o#�\t\u0018]�ab�\u001e�~��8��\u0016�\u000eт\u0002w\n���m�M�?��5���Z�ٷD�2�`�\u001at�T]\u000f�>M3\u00112\u0019��h���PWm�l\u0016��\u0014Ty��W\u001eǃ����\fR\u0013|WP�*\u001f縁����\u0016sH�l}:,�n�'תJ\r�y�W\u001a5�=ѩ���a��\u001b�x�n㉢���Q\u0018�B��\u0000}�\u0001�\u001d���β{.�ݛ�¯\fl�9�\u0013�L%�+�z��\u0017�Jr��Y>�#\u00048���X)-�(����Tm��:j6^Kҙb�ѣAR�!Ԁ�.�#�\u000b�\n\u0005*\u0004�9��\u00124}Quw�\u0000�\u0004�E\u000e�7��?�D?\u0016�\u0000\u0012$�IR�˙�O ��A�ΝW�uZm�&��☭*\u001a��a�j���M��\u00177\u0019C�\"|�??�\u0000��\u001a`쨿�\u0018�^\u001fh)\\X��~3׹5,\n\u0005\u001c���T��`���\u0005���\u000f�4\r&V��\u0012��?i1\u0003��\u0000u�E�\u0007|A��Ƿ�<�\u0017���hU���)=�\u000f��\u0002?Z%�kDSwG\u000b�D�����'��8�\u001c{�{G��t\"���P�X��)\u0018��<���T�ЉQ+�*�uzH\u000f�G�[��^pg�l�j�z������b\u0012�%�Q\u0006ך�\u001c�\"�\u0017)a.�4#���\t�i\u0013�72�k=�.R��\u0001�\u0016�>\u0011������\u0002�\u0014��U�ٌ��\u0012\u0013�ʪ]�/�O\u000b����\u0003��Qr]���8\u0001=\b��$�~\u0012�}\u001a\u0006\u0001�\tD�j*�2�765��\u0019[��qP���0��)ǀf�[r���x浻\u001d*UD /?���\u0019Zã\u0015��q�\u0007.�\u0005\u0004͵3��m����<�O�D�.�$qJ����{^ ��j�����R�A;�!���L��\u000b���=>�\u0002���\u0015�fыe���\u0019@�\u0015\u0015�幫,]�>w0\u0010P��!ssz��rY�٥C\u001a�M*ӏx�z�\b>��r�Ф吣�\u0001�\u0010�{�6��\u001d�N�1���,\u0019)��}�)��|:�\u0014�s �l֌�\u001f���L$\f�I��A�%х\u0014�&�\u0004kY\fd\u001d�;\b�Fݔ0_(����H�1m�������\u0017���ь�\u0018Q7U&gص_�\u001c�-��\u0011�\u0014T���m'k\u0011Ѭ\u0017cE\u001a�A\u0014�\"L��M{���v�\u0006��A��퓒X\u0014�\b�B؁�~}�\u00054��#nLG��ޕ�j��w��@\u0006��c8\u0016�\\t\u001d�'\u0014m���3ۣˣ�\u001f�\b�z�;���v��pb]\u001d�\u0000��1���_4���}�\u0001�S���k���V��W\u0007ˣ�JL�ml]I�^2�/F\"l\u001dP׾*�M�g��Q�H\u0016��X�DU`�+��tϘi\u0004�W\u001e%�z��:�K\u0016�F�,\u000f�y�\r���/cÙ$�\u0005\u001d@�o�H��X}�\u0012\u000e�ph\u001a�]cn�\u001a�&Q17^Ĺ@\n��\u0016!GO��p\u000b�\u0019���wA�g�\u0002k��\u0011)&G\u000ed�\u001c�d\u001f\u001e�o[ϼg��a�|�=����t��n��:úp��h��K�\u001b2��XK�`���d��R\u0000S(X�\u0015϶��C��;���5A\u001c�i�iԕ�?��:�PR\u00011\b�p�wW\nu�\u0019�A)�\"����brR~\u0017���\u0019ٿ�W�d�#\u0017Փo�7�\u0001E�0��'>e�f�K��O��p̖Sjnɱg-.Kr\u0019�\u0004��G�\u0005���s�t}O��hџ�����-\u0015\u0012~��\u0002F=��Sp3�\u0001ڕr���P�7FR7Ȍ�e˔}t8��}�l�ѣ|u��Z����֌SN��5;��5}E\u0005ѩ��n�:��+���z\u0007\u001e&?��\u000b��eDufi���v�G5ƞ\u0013D�xR\nGڪu��Y�\\�!�\u000b�Qpn���\\������\u001d\u0013&\b�\u001eT87���������Z�3#��_.\u0017 ��{�îHρ\u000fj7\u0000�CQ\u0016H\u0003�\u0001\u0016`�N�\u001c\nb撹\u001et�@�TI��A?�\"����a.�R�[FO\u0005A��yV�)\u001d�\u00165̜(���xe�|bƳe8�G�\u0000����\u0019\u0017\u0011\"Y�x�[\u001e���ڕ�}%:*M^���Ȩ-�o\u0019���5^uy](��1�_��x����.j�n5�\u0002B2���*\u0016�&}l�|ft�4cH�}ܸ>aA�\\a]��y�\u0004A:\u0017��ۀ\u0000�\u0019�fV�m\u0007%�:�D\u0013��2�8\b%\f��\r\u0018n\u000b \u0002���|0�S��?\u000b#Y�o.��p��\u0002@bN\u0011�����\n\r���P�/dt\u000f��&��r(�\n\u0001Mbhj\r~\u001bR�M�\u000e�B0�⥓\u001d47ϲD���g~��d�?S\u001b{�\u000f�n�H}�)2�}zÀ�Z�\u000bP�\u0002\u0016�I�v�\u0011�\u001e������x\f࿓��\fs�\u001e�\u0015�N�\u0002�.�v~7Y��.�m��AA�\"Ā��b'�e�\u001b(øh\u0007�]���Yn�)��N��ڸa����o��x��Ӕ^\u001d9�u�!�6|��޵c�?v\u000b'\u0011l\bs�{��L:���^��\u0011�\r�\u0003���\u000f��\u0011N1�~р���|��h�\u00191Qd��Fh�T�RxTv\u00147W�4��\b\t�\u0013�\u0018\u0004�F4�\u001bhW�\u0005-w���~��v�\b /,\u0018Z�\u001bm\"\u0012���T)š\u001a���\u0007[ҌD�XM�=\u0013�)��\u001e%�1bu��\u000b��^G�@UI\u0003�L\u0019�*F���)���u/Ҟ��7�\r�S�\u0004${*�|6'ƞ��Y����H�Et��\u0007��\u001c\u0001Wh�,�\u000b\t��\u0015���q�'����=�5��e\u0001^~ո\u000b�&Uu�(\"�얈�0�U`啕�A>�\"؀����w�\u001b\f�S���,��.L���w\u0004\u000bV\n�K}\u000fӫ���j2;58 �\u0012CY��+^��\u001a\\ z�Eb'�fm�n����خ��\u001c�P�\u001a}?\u000e��\u0011�C�%h�?+]/w�%X\u0015���&4K�P���\u000e\u001eg�5^�\u0013��,�F�Y���\u00010�b�\u0000�o�\f���\u0006�\u0018�7':ǚh�+�+�����Q�\u0012д����j�HB�%��\\���{�^\u0003F���q\u0004��p�u怨��:�\u0001�p\u0000���۶��Iy���J\u0013GčC^�\u0012{��z?Y�q\tQX`2=��+�\u0011ꃹ�w���&��-^��\u001e\u001f8w\b��\u000b?\u000fb������\\����6�\fH���BZ��^M\u000e���?�`\u0000\u0012O\u0013���X�%Z\bL�8aN\u0014��{�\u001e�\u000eܱ���:�\u0007dk.3��\u0014ys��V��v�\u0016%�\"9��e��A��I�h[&��r!\u0014\u0010�͕�3Ƹ�?\u0012˕>�\u000eb8��\r��(d1L�\u0014�\u001d�]���اs�W\t�X��\u0013�9(9�P�o3u�#�@�\"T��yc���2�\u0016��6>\u0019�D|.l��Bo%p��{�JF���\u0015�8�).�A��#\u0000��}b�Y�'�B\u0001��O��\u0003+oY$\u0001*�W\u000b\u0016#s|�f&KpB��]�Q\u0016P�<\r���?\u000e��\u0007��.����Y\u001bH�Ȉ��d�\u0007k�s�?�!A��7���x%)|U`mX;���\u0013�lw�%��å��q@�\ty����3����\u0005|��r‚�\u0013�ˮ�ZtI��`֢�OҖ+�1s�e\b\u0006�J�R������ɠУMܞ\u001dj����K\u0018:Z�\u0004}fZ�(\u0015�J���\u0017�ƳJ�҆mf�,J'���A�e�\u001dDP\u001dd�\u0015b�\u0006Q�(��\u0019�$_�J�G/Ӄ�\u0019�-�����V��\u0010e-�o�-�u){�\u0019Ҟk��\u0007𑖉�\u001d�\u0004\u001a���CD\u0002.��.i\u001be�cfj��'�k�Qq\u0001��\u0012�\u0004Wl(�\"�-'��e:'=Y�pK�N{��\u0016�⌦F����*��wpU\u0014>�\u0005����z����3���~(!\u0011�=����+'}�ab�A0�#\u0014��M($J��B�K\b\u0002��M\u0010�/��㼬�\u0017(��\u0014�6Ͷ�r�X\bǼ���\u0001n\u0005�*�X��\"���\n�ɜ/Zr=\u0005k��ĭ\u0016TP\u0019����5eW\u0017��\u000f�9#�$l8P�ok\u001f���I��r��$]��~Z�CG�l\b\u001f�e\u0002Z��X�}��ܮ�\u0010�,���.��u$�_�\u0003ֹ\u0007��\u0005t��)x��9�^�Q��p\u0004O�\u0000Tw�\u000bQ6,��Ȝ�\u0012r߂y�\n\u0005(\u0006�An�<�\u0003�|zq�U��V\u0005��˴К��\u000e�#����0X�LRIP��Y�І}j\u0010�Rf�t�P�\u0003P�\u001a Y�N>̦\u000e̚\u000eeea\u001cV\u001c:�h�,�ƫ�\f8�fDc�l�����A(�#(��L�4�\u0017@xxn\n��G!>M3Qk%a[޲\u0012ן�\u000b��|��\bb.x����\u0014+\u001c�1)�\u0007���H-m?��y\u0001�ɏ�P\u00198'��P\u0004\u000eDN\u001b��=!ѣ㎘��a&�Y}ONh�*��\u0019\u0010$\bk�\u001d^���J\u00009u�nA*����ǯ�b#�\u000f�8ڃ���7.\u0003�\b���S1��1���G�|x!C�Qb�WI݇�\u001cGD6��+Kb��l睃]�\u001e�~Vo\u0015��L۬\u0014�\u0013���g!l]ה�*yw\"O\u0006@3���P�fE\u000f#��=�j�y�W.�\u0019�5\n����\u0005�A{�ƞ�Z\u0003����o�\u001d��j\u001aUkXr���A.S8�\u000f!�1���C\u001a�A0�#<��LDZ���\b��s�&�A���E���6�*��l;p\u0006W�XOض��������J\u001a��I\f;��z�ŭ=�����Ƈ?����mCR����_�\u0013\u0016�k����F.�\u000fSW��޴3�\u00130�ж�)]\u001e�g�f_$�@�\u000fs��\fa�\ns\"ϛW\u0016�O�_C\u001e%I-6�{�V\"\u000e�}\u000fK�+���s�\u0010�O\r\u0003�\u0006ޟ����=\u0011�ۯ\u00015�\u0016�\u00050b|&�B�\u0005�L�\u0010��7�b����Q�zUg���)�L����\u00147�q��l� ޙ��T\u000b�@��wv��,o!�Tc$�W ���\u0001S)�-���L��\u0016���\\\f�|\u0014ۣA+�#x��Lɧn��]\\2<�\u0012: \u001eX1�\b��})��aT�a2I5 �w�\u001c\u0019�f���'\u0005�#9p��U�j�\u0002𞡿}���\u0001`w'�&\r�!�\u00116P�ħT��Ie:���`��6\u001b���h)�;\u0015J�1K�&�2Ak�\"]\u001cU\u0004��o&\u000f8�9\u0011\u0019s\u0011���\u0004\"��˿UM��y�\u0018�x�:�]�GK㼚s��\u0015�f��\u0015?`�=G��\u001e�����̅�luD�]|\u0018�ހ]!��{����\nio����3��kw�'��\t\r�A/���\u0006EpV��B��fb?*��G\u0017��UM���:���`\u000fl�\u0012I�B��\u001e=\u001em�\u001b]\u000b���q�c�<\u001b{\u0018G'�#-�A��#���L�\u0005K~�q�6�%*��oQ�\\^\u00065\u0014\u001b{�wx\t��|�\u0016pBP�J��i��R���\u0013wmPHL���6�\u0002�!vV\t,��5�7E�F�J���.�\u001d\r2�&��\u000e0Plx�\u0019k\u0012\u0015,<ꎗ\f�\u0011�*�˷C��\r�C�d�<<�\u0011d\u001aۭ���\u0010�0\u0007�\u0006\u0003�\u0016\u001a �U�8̭D�n���nns�Y�^,Q\u00136��\t�\u0016��\u000e�Rv��\t��\u001bs�pʜ\u0011!������{��wۂ\t�Ѓ\u0010���js<��t?�y]̀\u001a�R��Q��Y�3Ц\t`\u001b�ߚ�\u001biA�\u0006I$W�9\u00012\u0014\u0010���\u0018��%A�,gJO3B:ZC\u001d��\u0006cG=p�q| nQ�\u000b��ɷ�����T49��'�\u001f\u0013�J���}�\u001ctXݔ���?���]��rc�\u000f�\u0013��Kf\u0000\u0014}�(O��I�9��>�\"\n\u001aS�@�h.�\u000e\u000b����bќ��P��A#�#���L�1�g,�r9�nƔ\u0007\u0012�\u0006�z%�;\r�\\�] w�/�o�k�\u001dۥ�f جط]U��`\"�x\u0016�8Y��\u0005̻��b�xpąњ��꡻\u0016�Q\u0004%�B\u0010h��\u0015%���V�\r�d�H�\u0003���$\u0016#8�5\u000f�P�&���CE�*��Pݠ\"�f�J�\u0007��8q�U\f��\u000bܓ�1V�g�%͈�#��?!�sH��\u001e&��\t��\n���O�}�lH\r�s}���(U�7��\u001a�ιDg����L�\u0016��m�$�\u0016et\u0010;��Zy�\u001e�MG�\u0002��.(�Z��A'�\"\u0007��ub���P��1q��><����\b�8��\b�ja>ۣA)�#���L��Fs�Ni�^���埿��Y����4\u0006�(-3\u0017J�����p�\u0012�p}�2�ꮉ�k}p7a=9g����q\u0018\u0017p�\t���\u0018{Ӿ\\\u0015Ib��\u001e�^�%�5a��'�rn�/G���\u0007��u\u000f���B\u0014��擴��Fu�\u0019�?��\u00011��yd}\u001c!~1��\u001c�4�y��AGe0\u000f\u0001'V`\u0011\u0000br��5���\u001a�iD�)z2�\u0001v�\u001az\u001d����ŰJ��,�Q\tLR\u001e�?Y�����W��\t\u0006�\u0014x��A��t&���\u000f��ש\u0013Bc8϶�/����{��N��)��������z�o\r���n���]\u0003־�\u001c\u0000�\u0015r��%��}�#.#π��H�A0�#Ȁ���0��rk�.\u0015�\u0004m����b\u000bP&f�\t\u001b!Z���0\u0011��)\u001ezG�V]:�97�}x6�n�\\�a�%s3W��r��%�AK�#܀��\u001b^�q�|l\u0017�-#�=\u0014\u0010B��j��Ɇ�e�[���\u0013\u0013\u001c���;.[�J\n��um�B[�yFC�@g�7�\\������\u0010�\u0007��\u0011����7��eׅ\u0011��g?\u00056\r���åE9RF����\u000e\r>Ä炉��pE�\"��)��U�EZ5+\u0017\\;�\u001a$�_�Hy��6�+d�g�\u0019jV]~�Bd2{�;\f^k;�\u0015�\u000f���\u000eT����~v\u0003dU���Ҡ'{��%�Mh��訟��L�\\ᇼ0���\f\u0018�w20\t�X\u0001�`S��|�\u0019��՗��5�W+|�\u0001T��\u0017EU@�P%�2!\u001cT)C͖G�\u0011��}�8�\u001d��\r�\u0000����A�����#�\u0013>z8q�`�cI\u00100���i+�\u0010�Kh�B�\u0015~xE��AT�#����#Q�����J�n��ک3ɣA��$\u0018��]���\u001a�b�1'\u000e!J���E�^,�\u0005 l\t����'��\u001ae�Y�a��4\u0004�o\u0013\u0017��\u0003������A`Fy\u0016�6��e<֗����[�5�\f��X�t��\u0012��j\u0012������8\u0007�^\rfp��\u0011u����{E�@�׌���#\u0012J\u0007�\u0017�B\u00193�\u0007f#0b�W����[y4�S\u0003hϫ�\u0003�5�\u0005��l�n�5n�`\u0014�w��\u0018�d|�������by���\u0007঑i!ci��WH�.~kJ\u0014�J�n��\u001c�Ѷߩ�\u0012��\f6�eyW�`�\u0019���G�G�G�\u000b�Y���e�0�a4,õZ��M��Y�B>��c\u0011y,�5\u0002��\f��>��\"\u0007��B�!aP4\u0013\u0014��Q�I���\t�\u0001⮡*\fN�+S��t(�/�b����u���p.�)r7�����b���\u0011M,\u0005�\u0001P�ds;����f�Ș�̦_� BW���It�k�3���2���\u001dxr���T�[]hۖh\u001d�\u0000�35��\u0011\u0002r��堣A&�$@���V�vI�����:�.��:�Ԯ�}�{�(Ph��~\u000b@�ɬ �.q���\\|����&|n:��\tcL��^~�[�?+'�V=�\u0005 \u001e>-�z��\u0011\t��a�x\u000e/�\\\u0005����c�\u0011\u0003���n}q+���Z\n0+�\u0013�(�X�W\f�>�˖��]\\��\\\b�U\u0017\u000f�zP�>���\r��\u0014�\u0016���qN@�TS��f\u0000x\t�>��\u0011��W\u0004q�!�L\f��ØڄO估����^�6@��7�̈`�p�\u001adB�<��sx+�c2Z�lg�mp͡��\u000f��H�\u000f}|\u0012��3�V\u001fN\u00117��\\Jnt�aГ7\\�\u000ee\u0010V\u0005;��\u0004��K\u0019��x �A\u001c�$T��M2��J�/\u001d�.?�Z��Y�K��Bp4���G\u001a\u0017�:'\nS� tINXfWk�9�&��l�Iv}\u0013-�d��{�|��<�\b�V���A����f(��DÁ�g�3��`ѓ��b\u0014�\u0012��O;��\u0014�b�{�X�[�m�?\u000f�\\^=Ȗ�m!yN\"\f�WG���\u001c9�\u000e��&�)U\u000b+���\u000eX>/\u001b&\u001f�\u001f��&��$��B��!�\u0015�}.\u0000رq�I\u0011~��\u001e��-\n\u0015\u0016#w\u000b�\u0005M�9�c�\u0019;g}4\u0007����\u0012\u0013\u0005)��aF\u0004s��3I��\u0016�s\u001a�\b��\"�/�q�\u0014�o�f �b2t�D�\u0019��x\u0003y��O9�§�MV�A9�$h���b����A�M\u0010\"�\u001a���\u001e�uc�$�h�}5\u000f\fa�=�쌯�mr;\u0006\u001d� ���\u0018V�Da�\u0004�W��O�\n��*:mL\u001e\t-�՜�?���,���-�#�vz;L�2�LuE�����E�i7�\u000e��*\r�-\u0000�$@��\u0001/�i��^��~�%\u0003<��\u000f\u000b�\u0005t`5Ђ����9�¶�$lǿ\u0010~�Q�s1<��s�7���d\bL��S�\u0012U��!�\u001a2?\u001e0��f�9F\u001b\\�[�n+p��P�?�\\il�.Pw�u2����\u0007���\u000f�4$�C��\u0002)��LI��h���B�s�u�\n���\u001b��{�a��E2�\u0006I��\u0015�n�k�٠�A.�$|���c�����\u0004\u0016?�>ǨV\u001b�z��=�&�}�X\u0012\u0006�\r\u0018��M��2Z�̧J\u0011D܌0�e�*LG�!\u0006ZTZ�\u0017\u001e\u000b\u0018Vȃش'iq}\r\u0006@\u0019f\u001d\u0010k\u0002Et\u0012�\u0004\b�M����\"��j���0��3��1�k��GN\"G�kҬ��=Gg�\u0005�i�wV�E4ԙ\u0004�\u000bK\u0015�G�<\u000b���X�Yl�땛���p1�\b~Lm�-\t�n�f\u000f[�]�Tz��?����\f\u0011����\u0011��5Ն���~qS�olO |5\u001c��t ��\n�%#@�EC��\u0006��l�8뜈�\u0013���\u0005�k��S�ڰ��0\u0000\\�%\u000f��ëA�]�6�4���ul���un�G�V^�;\u0001%�A)�$����eF\u0018?�\u0013�P5�N�S\u000b�\u001b*�Y��\u0019��\n\u0015X�[��t�1�w�\u0015|�RË�\u001a��\u0018W�‹�C���\u0007�{e٨C&4��\u001c_V���v�#����:\"+?\u0000\u0019\u001a��\u0003�\u0018��.Cv��з�\u0003�2^֪\u0003�\bD�/��?@�]���n@`���g��?�^��\u0018��r,���\u0004)l6\u0002\u0010\u0017}^\u0004*��2Z�(��/\\\u0010(Ӏ���R�3�|�Ô\u0012\u001bj�\u001a��p\r��e>\n���\u0010�$e0�*�A,�$����m�\u0018\u000e��ah6RC\u0012\n��\u0012\u0002(mPr\u000e'jf\f�t5�g�Y�\u0015(G\u000b�4��o-�\bI��0y\u0003��ip%턥�\u0006�~���HzMc������\u001e��\t�\u0016\u001f1��*A���\u0018�0m/ƞ��S!WҚ�I�B�.\u0015���'A\t�/S\u001b�\u000b7�~�S�M�{ouX#z�\u001b�+E=fp^o��pǵ%q\u001a�\u0017Yc��\u0016\u0005ͤ.\n��\f�\u000f��9�e�_S\u001b�D��P���\\�\u001d�ppߨ4�8\f\u0015\"�d����ط�i*�.\u0006DL�e\f߲l�RVYw\u0014\bC�~T,��l��@;�lŌ3J�یEK��o��ٺl�!�^�DNI�y�?m#�A,�$̀��.بC��f�f��6�y{M\u0007\u0000�\u0003Wd�\u0011��ǖh�,I�U�\u0011hU�\bğ��ż�\n��+�/\fN�]w]��@>\u0014��\u001a͹�h���-i��>�h�\u0013�g�sQ���+�e��\u0002�\b��\u001d+�jPQ<ŒZ�\u000fٌE��te\u001b�l�%�$��\u0004�Z���R��\u000b��mٹ�٥(\u0012+x����9�p�'�\u0000t�\u0010�/D|\n20%�Zc��4Q!o\u0013v\u0006zw+��:{I\u001c�\n= w\u001d:Ȟ�\u001c\\A�G����\u0004�V�\u0016������q�h�\u0015�J�4c\u001cUg�m�\rd`�� 3��k��t\"�!�\t�x�I�����}\u0013�\u000b#\u0011<\u001a\u001c�Dd�\u0002D�J��5&8{q\u001f�A!�$���/[2�dˇ�q����\u0017if�v�+��A̧\u0019dy��\u001cy)M\u001f\u000eW�.�V�\u0011��OuN\u0018vHt\u000ea�w���T�Vb\r\"{d��\u0004�5����\f\u001e�k��a��h�S�\u001a\r�%c���\u001a���1<؅܌�U�qٺQPY��z��\"4Z�S>k���\u0011�7�9VDzx��7�9Q\u0019\u0005:�IW���#EM]l��(\u0019�ɸ�\t�w�8���n���g�}=j�\r����V\u0015��Ǵ\nT�d\u0001*`͔?Ay\u001b��~��ڔ\u0006\\R�\u0004[��&\u000fU��\u0017]#�&�`R*\u0017\u0010��VT�Fž�oBto\u0017vK�����E;��ܩ���m�Hy�\u0007��A'�$��0�߉n?�\b��j�Y=�K\u0001�e\u000fW�\u000ee\"\u0013�^$�{h��f*��\u0007�ش��\u0017�\\\u0018\u001b\u0005\u001c.��O�\u0003ga�l�\u0014m��\u000f��\u001d�n/v_\u0002f,#��W\u0001��3��\u0003��l�m�\u000f�ͦŷЉ\u0010��osH��\u0013Ɉ\u001c��9'��\u0002�\u0012g�~`A ��5-�t\u001bS��?W?&�u_�M�\u001c���\u0012H��W0Ҭ��|J}R�\u0003�����Y�ˋ\u001f�o�1�,;�8�&�Q�\u001f�uL�����]����%�\u0000��*�\u0015�����\u0016����\u001c�)d�U�\u0004���\u0004�\ne��$��ij�H�Y\u0017m�\"��u��q,��7ƹ�W8�^y�?c\u0002E�GJH\\�A �%\b��M�\u001d_��Re����:�M�\u001e�=�}(\u0010�]�<\u0017�d}qZ��hq߭8��D\t�a\u0002jB3�:3>\u0005]�\u0000�Pln�)ȴ�*�@YJ�(�椼��\u0019�������MN�\u0003��H�\u000f\u0013yF�k\u0005�$�w�`6���x�Ns����Xշ�\u0000�d�\u0012�[\u0019\u0002G�d\u0018�.�u�]A�³�\u0017y;���i�\u0019\u001d������s\u0002[�UE�y�Ȑ�M�\u0010�x����\u0005=�\u001eN\u0012�P\u001bP�V�\u001d������\u0002�1���e�߀\u0015G\u0000wX/Im¥�����.YK��,(6�B��R ��4E���T�\u001b��\u000752�\u0013��Oߕ�Q\u0018�Q�ԣA%�%\u001c���޽I���톼�\u00160�0\u001c+8�\t(�?�W�\u0012C�\u0018;�GV$�_:t��$��{��\u0000M�<�u�0\u0014K����d+!�eK=���|���(�\\4m\u0001�LYv�˚�Nb�I��H`��;�\u001e��Y&���c�9�\u001d�U8�Et^7��߸\nO7N���_�ƨx(�v����8�̈́��\u0006�\\\u0011�}_��b�߃.\u0017��1)��<\t�q����e��c}���W`y+8L�J�)���M��4uB�c<�3�\u0015캰��_\t�t��7����z�J\t����~�pMv*`���K�H�СU�H��|�.:��PA�\u0002z���J��=�1oJ\u001f�A(�%0���+i���(�\u0016���Ϙ�_ZBU�\u0006;~\u0013�\u0011B�B��N�Dq�\u0017\u0014�\u000f��q� \u00192����zi^\u00156�Q\u001a��'�*+8\u0012)�������<�\n�S��c�ǿ��s�Ґ԰�`�\u0000ʤn�6-C\u0002��g-P��'d^�\u001a��\u0003����\u001a �c�[�8A��ߵƴ�RĘ\u0015|\u001e�wn��p8e�(\u001f{ݝ�ˆxb\u001e8���墁K��F��\u001f��ׇ�];��F�w\f\u000f����\rr�\u0012c\u0014l�\u001cذ���?Lg�g{��)K�1��}\u0017��{�.z^�\u0014�~Hq�N\"����g��\u001fЌr�\u001f؞�^nq������\u0013�\u001dO.*S��uΗ��\"�A4�%D���\"3ĤԠ��9��x\u0001��2�6\u0003\"��v6 >&��\\�*�'\u0001\u001d\u0005[?櫇¨\u000bg�ٗ>Y0|B9��\u001d�X�^�`�����\u0004ˌ\u0016\u0011i\u0004\n�i�BB!��\tb���?W&6���a\u001d^8k6$ע\u0002�ZX����\u000e�1�uIa7�b�Ś-�g�e\u0003%�w\u001e\u001d��@\u000f\u0013\\`�h�4E��Do��\u000b���\f�2\u0003��ָǴ��]�V�\u0019]\u000f/.�\u0000�\u001f\u001a�\u001a\u0005��tZ�\u0006�ނ��Ѻs?�=��?���m0��KZ�v��R=g�\u001e\u001e-G\"�P�O�(�1d�Y-��R)��N�=@,\u0018��.�iɬ��w���W�I�ݑ9;\f��81�>��ߴl���Q\u0007��$�6%�AR�%X���\u001e�\u0005p#O�{)V�\u001ed��\u0018�\r]�1��(�\u0012(�w��W�Č�\u0011REu�7�a컝g\u0019T\u000e���.gꇌF���`���\u0007Za��LG�g�$�f܌s\u0010\u0010��� u�QK�Ɵ���G���|�YQ��g����q�`!��<�%�A�q�\u00195`�|פHN������&�i�)Z\u0005e��L�`��*��k�\u0017^S0�6B����^�ʈ�lg�\u0006\u0011CO@���_�Ԡ\u000e�� \u001a(Qq�;�\u0003&����\rN�\\�5k;V\b^n�C�\u0005ҡ\u001e���\u0016\baW\u0017Tʭ�V\u0004\u0005z�rɭ�u:�\u000f���_�F]x����'�\u0000tDph\u0002x��B�\u0010��\u0017L����\u0007��cdR�s�\u0002�Q\u001f�a\u001e:\f�3&�.��jX�q9�M�a�A�F%�AT�%l���[�ӹ\u0004������\u0007�B\u0001�*�a��3G�nl9��ZL�\u0016���\u0001UX�FNNx�NM�\u0016/�-��o��Ŗzq*\u0002�Uę�6d��UũrM��ňi1꽇��\u0005&\u0012y�+�#n���##�z�c��P|��`�Ē8��RPh�`\u001d�Z8��ק��K\u0006��\u0004��\u0010pR�ڐ+�.�\u0001FÓ=�&vx.gt���h4�/\u001e���6\u00010\bv\u0014\u0001n\u000e,�k'\u000e�i��Ed`\u001c�\u0014�'gh�c�M��I�\r\u0018�0s��ﱌ�$�۴�4��\u0005⮉u�a�QLn�$T.Jݐ7c��K��?.\u0012�gރ�\u0011��G�̕s=���+�֥�I-��%��k\u0003ˈ�\u0012g��0�O\u0015;]0\u0007�ЎsF/x�}��I�\u0011]!�A$\ne��%�AA�%����#lZ��(�x��&\u0017\\x��\u000ee��/�`\u000bۉ�ۄsY[\u0010�\u0002��j;�\u0001��2D��\u0014�)�F�#�]V��\u0003�WZ\u0013M�\u0007�@�x[���\"K#����=�]晱\u0000\u001e��\u0014X�|%1<�{\u0004���SU��ɠ��y}�Nygy�\u001f�P�SkqO�_��-(?�Uϗ��L\u0017��+9Dw�I��b\u0012ɀ�\u0015M�(pa\\��\u0014�^���\u001d��;�o�5w��w�2��U���^\"�_�!Jn/xS��+���NN��.B/\u00170\u001d؊�<��m;\u0002S�>.\u0015����W��|��\u0003�|e5�4����w��6����%�A;�%���&\u001aHF\u0011�#^d�m\ra�6�sZ\u0007\nw��\u0016�\u0010>rb��n�S A�Yr,\\SQ��5���G\n�`�� p\u0016�{\"�Q\u0007:�g���p}\u001dМr\u0013Z\u0003/9�gMNU\f5\u0006\"�l���-(n�K&���lՋ��]��=����\r�\u0013ޯ��\u000f�2�YVk9u���o\bF� �\t�n�1�\u0017DY!DC\u0003\u0002%\u000bئ�A��\u0006�;��6G?�\\�6?�\u000bz�f\r�\u0015\u001aL1,-���z�?3kE�\u00010��pf9X�#d\f�gP��6����η�$�/'\u0015�g�\u000b��\u0002�ԝu�HΏ��m\u001f$\u0016��~\u0003\b��+��\u001eK�4�E�ucN�h�F\u0003�����\u000eg���nx�Xr�GГ\u000f�&H\u0010\u0011N.�A/�%Ѐ�.3\u0014C�t\u001ax��R��x�U���\u001e�\u0017��4�A�\u0007\u001f���n��ya�'&\u0013�[�H�m�z��3��k�\ty��\u0010�:X2a�׽��\u0007삕[\u001b�\u0018�\u0013%����[}@�ڙDD����T\u0006\u0013'5&�\"Ix���*�#\u0005��}���I��l�d��]��]��^����\u0007C �^ڲ�\"9�h\u0017YyrV�,��@m���\u0019\"jhRQ��,��u�\u0014��AlSlR\u0013�y��x5�ƾ1\u001b\u000e�a\u001dfPG\\�O\u000f�sW�=[\u0011��A!8��\u001f�-.�J\u001b\u0018/����>E\u0019���la�\u0013��N�\u0011�.e�(\u0000�KU��\u0015L��\u001ec;$�\b�In\u0019M���Jw�UAf��C��\u0004�Aa�%��5m4[-F�s�j \u000b�J�h���\u0019\u0010(#�Y\t��!�I{̯^*Q�נ\u000e\u0006�R\u0000[�'�gvQ�[)�����ff\r1\u0006�k,\b��.�|��(�X�̞����z��l���kb�,>/�h������S:y��\u0018���\u001c�\u001e\u0004������_D�\u0006��>�C5�H���>�Qx(fHZ\b&�S�\u0003t6\u0011�=#\u0015G9\u0001l߾g1\u0010�z�(��۩�Bc��|��v�c�c�\u001d\u0012D\u0004=�l���\u0019:_>%>�\u001d\u0017_�\u0017�\u000e\u0006���\tLz{�?c�u�������j'\u0001BcJ�fI�M�Y��y\u001f��ng����\u001d��\u0013�L��7�����4Nrϫ�wH?Z�':���ua\n�=��~�n�^g�<�w�>\u0012�O�d�\u001c��2�{\u000e�vP������0��\u0016\u0016uTg\u0013P)��A1�%���l��\u0019E�\t���\"�>;��P%o�&�{���&Z��ͷ�n(\u0006s:,��V\u00115��\u0018�>��\r��SGǣdc��Ƿd|�k�2�\u001f�~[P�\u001b'�0��۵'5?��H���\u0010�b\\ԟ�\u0002ԍ~Y4�e�~�'\\�q\u0006\"�_�^_9\u0017-�\u001a�H߿��#�P�y,\\\u0000��UUp�*�(?\u001f\u0010i��*&HP3��q&\u0003�/w�w'�������)\nqH���e��F׳\u0017�;�$��׽�\u0017ڿU]Fqs������v'w�:�n_\u0007�p�T��r\u0002\u001d\u0015\\i\u0005L�\r�LJ\u0004�D��ߦ�j6�Sd�7��C\u0007{ώ��E�\u0011���ަ��w��N��vN0׆A)J�A\u001a�&\f��X��\u001d�*��=S\u001bo\u00009+\r\rBU�*��\u0011��\bpE�\u00075֔���;\u001b�g߀�B�҂�4\u001dӮH\u0019\r�r��/�*�w)B�\f��0-On�\u0013,�in�\u0010M��G��*Q��OY��暮�\u001bĐ>H����:\n�0��Ď�t�I�հ�[�4��\u0002���>1�7�x�\u0011��4C�2\u0010��e�E��0]�R\u0010`��\r���G�\u0003�'\u001eҥ\t��$�\u000bnX~�\u0005n&�W��g\u0012��\u0005Z����7\u0016\b���o�K�S7��Dz�q?Xfa��\u0017Tߤ;�C-\n\u0003]6�b:\u001f���Gpo�̻H��*�J�&�M\u0016�Jx\u0010�s�\u0016�A\u001f�& ��Mvt]m윬���&�\n���؜�ϙb0M1�r.LD�X�f\u0018���dO$\u0012t�Z8�'�F.�x��hR��l.���G�0������cD�S�#�k�̂S\u0000\u000bǢ�d���\u0016��5�w-:��;L�.6&>Bd8�6eԩ���,�<>���\u0011<_�\u000e4\u0016��v0���\u000b��:���h4�u�\u0017],���\u000e�\u0001��\u0011\u001f\u0011ϋmFzB�\\\u0017�,�?B>�\u0003\u0006�X<3�_�\u0018�]��\u0010Z+��#i3�,�SG\u0003�y�P����(��\u0019\u0016�џ#�#z�YF)�[\u0000)\u0019]f�ʭ5�P\u001d#�6\u0012%!�$i�d�[�3�\u001c\"\u0004o�� ao\rѧ��gW�g\f���}�&p���b=���)\t�ҁ,.Iw�\\�\u001a�{޽��{\u001bru�\u000f�rш*s�ϳBp��/��y�\u0010�\u0012$��\u0001�\u0013G�Jί\u0018�qä��L���ke�*8&F�$�\u001c({!�l1R@Үd�y�v�����r\u0000\u000bi_�Y\u0018�\u001cO��}�CR���&6�҂'[\u0016�TI���C����\u000f>��]�����/�ĻA\u001a�R\b\r�u]�ht\u000f�>B�\fk>p2iJ4��\nx*k��>B�eL\u00017�ְ�LD*��\t|q��uC�Pih\u000b\"�\u0013��\r�ȍz\u0003SdUT��������F0[�J!�\u0012S���z��+5���礼=Ij��Z��괅�\u0010\\��=\u0006\f\u001f��1�x�\u0012��\u0001Ā\u0019m.�\tq�;�٥�A>�&����b�_�;���t<\u0006�\u001c��XWY�����D�\u0001�\\��6T��\b��6\u0014\u0002ӛ\u001f9��\u0017��&\u0000�ۧ2E�P)1��Q�%� ���z�\u0007���\u001a��dŸ�f˼��YzM\u001a�#��j�U�sS�A\u001d��_m�raWH���/��I�y�n�\u0019��\u00013\nW~�f���ҝ���\u000f�\u0012���}��#� \u0014\u000f�\u0015\u0004�\u0004c��YǦ9�E���w�h��}z\u0002U��lϚ)�����OC2�p+�|4�-#��\u0012s�v�CWA��Rͪ��WPY�l��meq�viq4��3�\u000b-\u0012�v}�ϡȗ]��H�zS޾��\u0005�\u0017W�H_$��o��_3�ݴ�\u0016��ևϡ\u0000e\u0011%\u001d���$�b�)�U���%�A@�&���L��{D\u000e\u0001�/ۀS��\u0016�(3C�k�\u0013t��%\u001b�a7�E�:\u000e�Z�1K\u0013֫)��\u0000\u001fkf��\u0018\u0011w�\u0010��t��#�!�����2~�)\u0012����Z���e\\\u0011a��kk\u0015N�دj~\u001b�t�e[\u0016`�\u0018�pO��\u0012�7:��╠��Y-Țse�;���30�砝��\u0012O�\u0012��O���!�0绐�ܹ��2���^*�v�+�W\u001c�\u0005����\u0012�`�r\u000f�7�%_Z��\u0001ﱘ\u001b��1g�P\u0010�%��s��:���[p\u0012����\tU�F�\u001db_�w����\u0004Eʝ���y�M\u0016�qP�➤\\\u0001\u0001֫7U��\u001f,ߣ��t���_\u0001\u001c\\I����\u0013\u0012�\u0005��A�$\t���\u0015U�B��\u001b�A<�&����e��\b�O(\u000bߘ����>3+\u001d\u0017�a\u0011�P��j\\\u0019\u0000�@?MD�W���@�^.��K\b\u0018�Q�vW�\u0014px�\bKA���\f\u001f�����Y(���̒r�Mˆ=����8@ׂ�^��\u00073�y�\u001fEǮ�?H��V=�6؁z�ا �o}�Gd�2Ck-O&���}��y:A5j��)42���d�7Y�l2��\u0003B\u001c�֞\u0004�M,~⎱@[�̀v�M\u0005;��\"��\\�ȶ����V:�2\u0017z�a�k�N]��%�o(:�2V\u001b[���\u0017!�ZI��(�78����D\u0004v�\u001f���/|a�����\u0000�Y��.�\n|�*gm'�AH�&Ԁ�L�\u0017�V��\u001d�k1�H�X���f���\u00115�H]�*���j;:\u0011&\u001d�yNĪۗ棎\u0013o/(�\u0015�Pꀂ����\u0006۽���\u001f�}�D��a�F�ߧ�\u000b\n,C\\�$:��Ӌ\bs]\u0013�\u0014���\u0007���\b#\u000ef�����]���Ky�\u0005�(7�6\u0019Mt��Ҝ�\u0007�y��f\u0015�qѨ�\n��ݣ\u0007 \u001bW���K��`�8\u0016��m�Ô�\u000b�Dl�\u001ek�\u0014\r8ɍf����dzP��`֐u@\r�@��~\b�����b&ļ��)��\u0001\u0007꺎h�J��:���S���`V��+�\u0002�B!��Ѭ�����W-��~��ف��ۘp�ҭ�b�kyud�)_8�\u001b�\u0003\u0004\r�7.���Y\u0000���DZg��\"�pJs��A��&��|��\u001dI�6\u0010\u0005�o\u001a���&\bs��2�4n��E��׺t�a��$�2Ps��KL�\u0018\u001c�?�\u0018\b��x�\u001d��|b�w�z��-�E4�<��i�TE\f]�%؍H�Ss\u0011C:K\bX$�z�e94\u001ct}r#j\u0014z7�=k?B���wJ^*�P<�IV�>\u0014L�K�jƥ��t닁����\u00146�k�����?�\u0010\u0017�\u001e��we�fs\u0006\u0005w�Vڒ�eTן9B��ʻ��.ʖe^<�,Wޟ�\t�\u0004-h�\r�4U�j��J��g���M�y\r�;�O�\u0015�+��n$\u001cZ\u0005\u0018%��\u001f�\u000e�^�0c`A\u001b�\t�\u001c�A8��z6(�>��^~�[=���\u0003\u0018�\u0007�h�\u000b\u001c\u000f��]�;��G���\u001e�,\u0017H2���VP�\u0006�b�\\q���&�(q��ES�(%�9)%C\f�ʡ֤x�dv\u0014�.\u0011A��z�\u000fd�]d�P�\b5����X9c5\u001b�:\u001d��;\u000e�mfQ����\u0010O�0y�\u0005�\u0003�6\u0016_o�a2K�M�\u0007���E�/\\\\��\u001e�u&�A7�&���.\u0004�\\(nP�1�\u0002\u001e\u001e-�F)��h��s��\t\u000b��j�UL���Q��\u0000C(1L���q$��p�(h�v\f�\u00057��B\u001c�u�cEf<,��\u0012\u0007�\u0019���9�R0��(�|\u001a\u0012\n\u0006y\u0017ί���1�Q���<}�VU\u001f\u0002mڰ���{����K��\u0002�QŚ\b:�q䘍��?�\u0010�_68�D�\u0015��}���ΰ\u001f���\u0004:ρO���%\u0004�\u001c,^K��6Z\"f�\u0002��)\\�i��\u0007�AD\u0011d$�\u000b�I7\u001e~�-�\u001d�6\u0015���.w4���>K)p/Y�\u001eOX�/d��\u001b�(\nʊg\u000bNОAa\u0018���~��\u0012��\u0001JԦ���\r�\u000b�*���7!�)0�\u000e\u0015+i,\u001fG��c1\b\u00050\u0016�\u001fC�u\"y\u0006�\u0002q\u0001�A9�\u0000\u0000��N�Ϙ&�w�l�gt�,��\f�\u001a�\u0007�9k2_�Ԡ��L�yڢ�q\u001b\u000f�~ƌ\nI?�c�T\u001bF��\u001e��\u0000�͘g\u0018$��D������P�\t\u0015�9�\u0019��g�\t��\u001e�x�҅�V�7�� �+,�3�m]���\u001em�K�m�W\u001b#�\u0016�p�\u0006V\u0002�\u0018��܉��u��\u0005}L6\u001a\u0018.<��z�\u0014�'����9/�\u0018*���S}�i�/�\u0017�-�H~��\u0013^�\u000b��\u001ad�\u0013�ڋ�̇\n���Z>��\u0012l���kA��\u0004H�\u0018��D��\u000e�ݍ�p^!�o�M�*��n~j�3�k+���Ġ����IO��O�a��\b���y\u001c�=�b8��9N\u000f&����\u0002��}3*��I\u0012�A9�\u0000\u0014��1�R�D�gn�\u0013b\"��\u0014&f��\tR���e��\u0019�3k�s�\u001e\n5�%���h>���ߊQ{\u0018���5\u001cr��\u001aF#��K\u000f����ӫ,�\u001a\u001eZ��EX�sK(Q�O���ˮ}�\u001a�>�g�[\u00004\\CBf\n�F��'��\t&���\u0016���v$w3500�#�:����Ѥ�5yB�<�}8��3Ӽ׷P~�xP`e���\"��h\u0007krYTE�\u0000��/6m\t$,�.��ؙ%K��\f�s~�\u00157߈�N\u0000ԓ�\"�M��ݴ\"\u0003-�OaOUC\u0016�ux��\u001bV��\u0019\u000eeѵ�\u0015�*�\u00009�\u001f��b�����ٷ�E5\f\u001cz�p��X�� Xn&�<�Im\u0004����\u001a8\f^w2�?nҷ��7�\u001e�:ut<�������\u000e�_\u001c_���0�3� \u0019p腱\u0004�U���0\u000bRh2.\u001aJiR\u000b��qћ�\u0010��W��'�Y�VN��\u000f��#x�2v\u00007)\u001c�=��\u001d�&'�w\"R��OK��\u0017���Ɂ�Q�\r\u0019.&\b��R\u0012\u0013.|���4�|z��&7�A,�\u0000P��6QY�^�\u0018P+��\f\u001co\u0012�⇷��5+y�b�eS��A\u0006Z%0\u0011Dm�\u0001ə\u0001�{ǥB��\u0017�I�3���q2���0\u0003\u0011p�,a2�\b\u0003\u0012���j�8��;��Qsp���\u0013�p���9'��\u0004햖��\t�a�\b-nsW\u001a\n�\u0005�\u000e�\u0012��e*���tF+�\u0007\u0000��Sź̻RI�\u0013�����A\rқ�H.]l\\\r{�4b\rGƵT֍��dcZ\u0015ZLyx�Nb:�ܳL��!�#sDs%\"yA��H��*�S�$\u001c��Օk���K��o\"�{�\u0007�/F5�c_\u0004J89\t�y�$W�l� ��u9�\u001d�Z��dM�iDo.��Gn��\u0016~\n�\n��\f�G�A/�\u0000d��1�\u00035B���ƨq��\u001a\u0002�4\"�\f��t�\u001a�m��y���e�pWh\u001d��8��#*��U\u0018�\u001b�H�\u00027�,�LJ�\u0014�=6�p�:ƍF4\u0001��O��\u000b[���'�f?�E�܌Dp��^���&J\u001d�x\n�/�����R��\u000b�+�5�Ɠ�}4\u0007\u0001�F��X�\u0018�W���[Gꂨ�\u0001#�� \n��\f�?��`��Y��Աc��)s\r\u000f\na�EC�.\u00056$@\u0015�ϐ��s߽�5K׽�@.t\\Z���\u000e�=��fn�ެiLB1a1\u001e��V��2\u0005*\u0015\u001b��E՝Q0���\u001a=̥���gkH�%�\u0013B\u0017��`���n\t\\�\u001a�7$&�\u0002��rA`�XॣA5�\u0000x��L�w�S�\u0015\u001c�*��V��5��'��R�@�W*'\u0002� �����a�,\t,-�<\n�6K�\u0012\u001fUeK!uO����ҙ0��#ʧE�\b6(�\u001b�x\u0002�\u001d\t2uK)��� �&#��k%�z��4\u0007�׽���eӓ��\u001a�\f�\u0015\u0001��x��.�pP\u0016\u001d�\u0005o�~�L����Ia\u0017��n�6_\u0013 �#�/�\u0010����� ��\t�U��q\u0006�ω���fq`�:�0-\u0005u��\u0019�H�\"S��h��R��L�e\u0003p�\u001b�(\u000e�8P�\u001f\u00060׋�͡\u0007A�\u001c��X7�\u0014�z��\u0006\u0017�p�%[ҟ��Ki�pP\u0010\u0019���~Sق6�hF�‱�m��o\u0002W�q���Än���P1iz���\u001c�A��\u0000���|�%\u0017���<~���ؗ��]��`ȯ��\u000e8�3�ٳ+�V8����X�\u0015D\t�u3��*\u000b��x[\u0018�=}n\u00103=s���:@7I-u��S�\u0013�\u001bP�\u0013��\u001a�\t�V�i\u0016�\u0013�<�\t�4�8y�`�J\u0019��?��_�\u000bmi�\u0005P�o'0�\u001d*���\r��l7mew�d\u0010�~��%\u000f\u0012\u0013\u001e��\u001e��\\W��\u001cB_R0e��T��q\u000bg���Jl_0H�\u0005\u0016�I9R�B��?9\u00112�\u001c�v��i�}\r�Aď91\u0016`�g��60����\u0001e�k߹F��\u001c\\<�A�\u0012��ҳ�\u0018��x�0\u0005\u0014W|JH���Y:e\u0000q\u0001\u0019QH��\u0019&e\b|p�\u000e0�\t�~!E�\u001f���l��P��I�G\"$\u0011FQ�K����ys�D?p�\u0007#g�2v8��l5��S��T\u000b3�ǿ\u0004���-\u0006�/O4[k�����\u000b\u0019 xĖ��xx��\u000b�\u001d�B_\r�\u0005��\u0014v\u001b�\u000e���GF��lts�\u0001��d�\u0000ģAB�\u0000���0JP\u001e��Ji\r䔜��V֙F0��D\u00175:�\u0000�%�g�k��g�?�z^/`�v��[J�D^�aX��,�{4~\u001ej�\u0019�A�z\u0017��Z�7\u0001vE���P\u0012|\u001f@{�0�[\n��\u001d�dzS�6D�\u0015���߁��?�(y{0�\u001f�\u001a�\u0006��z���Ke�L�^m������`X€\u001c\u0016\u0010\r%\u0004��\u0019oA����^\u0017�{\u000b�����oK%�/F�\u0018\u001fe�\u0007�B.�*�N��`��(”���\"���g\u0011�\u0000��a���n\u0015i�\u001e\u001cl�qf�g���\b'Y\u0002��l}�����\u0011o\rい��\u000b$�\u0002�y��`rM\u001d��T���\u0000��(}��ޫ��)4�ElK1\u0000Y\u0007�\u0001�\nu�)�\u0015Ehc\u0005,h/{\\�A;�\u0000���0���N=�x><�\u0003:�)*\\\u0000K\u001c\u000e���\u0018\u000e�q7��\u0007z����ϳ\u001bK��@\u001cl!�s�cg�]��4\u00180�_t��e�\u00155J�u�<��m.��$�dX(����\u000e��\t�2[[\u0013��3b�\u000b�\u0007�y��\u000f�xP���|�\u0004����\u0006Ojڭ��R��3�b˸aԀ#����\b�J�\u001dd�#�����\u000b\u0003��h��_W�\u0000t����(E��++����,no���\u0000�?�\u0018��`�>=J�Zl�+c&O�W�\u0017I��A��\u0003�m�K\u0016�p��xA�o�#�q\u0014E\u0002�\u001f{Ϝ�v�K\u001f2\u0011�\u0002]5\u0003.��7�p�l�$\u001bb����v�\r��\u0005�u���j�\u0005��,��X�d�:i(\u0019N��By�\u0000Ȁ�{\u0017�\u0016)\u0007�k���\u0017�'��X\b���;2'X�Е��GB��ȎO%\u0004��b\u001d��Y���\u0014���߃��\u000b\u0012#O�\u0002V\u001fa�!��(���83�w8)�ܞ�!U;���w����ͳ%����\u0001`������\u0006�\b,\u001b��Cͯ\u0011�*��&S�we�;������a\u001b8�g�p�J@�F�\u001f��K\b`\u001e�9�1�\u0007��\u001a2Xr\f�i5�kbN��(��T�yl�\u0017&C���'�5�r�߳����'�:�D�\u001a�n���jyE�D��/;\u001b\u0010�\u001f������J��@�\u0005_WY�FUk���@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u0013�\u0003+�\u0000ts\b\u0017����Z�\u0019�E\u0018e\u0019�\u0000��Y������\u0018\u001cN�\n`\u000e�\u0001\u0004R�5\u000f\u000fF�l\u0006�\u001d���0�\u0007�}���B�_ ���,\u0006\u0001����0�|���\u000bA\n\u0015�\u0005�\fO񺫕�O<�^���9fL����9e�E\u0000����E�@D�>\u0018�F\u0017~�Pj��9&�d��.�\u0003X�x\u0013�~��v||7}Ti\b\u0011��𚼈c���m��|e\u0002���\u0012�`̫���F^��O7/�7���\u0018�����0\u0003�v�%���7�u��[���}r-�6��e\u0015�`�G_ІW\u001d�d�\u0015t\u0001ǘ.�K̴\u0004z�:a�#>�#\u0002����9*�\u0007>��͠J7q\u0018�Y�!5�hC\u000b\\��ۚ�p!_6gma�(�\\���Ql�\u0010>Ȥ�rd��G�\u001e\u0005�:��C�\\vI�p\u001d\u0013�҃\u0015:�A,�\u0000܀�/S�ſ��}��8j��\"�x\t|1\"\u0015z�:V�2�;h���$����\t�9?��J\u000bPh(��{IS�C\u001f�԰(HelV����{@����po ?\b��\u0002��6Ɏ�V�N\u0003X\u0016�B��B�z\t�^�\u0017�?�8\u0012�PE�A�\u0003#Z����\u0005��/�˺��2�d����#f�J[^�穿�&�W��-��RF�3��WD�c����\u0012�Y\ry���`ӉK�\u0001�O\u0018|���\u0010z�t��A%�\u0001\u0004���d)�f�{ԪU��h5+���ks\u0018p�m�M��,\u000e3�9��\u0001\u001au]\\�/��eJ\u0000{\u0015��v������\u0013\u0013�$�d@!2]�A \u000fAD,5�י�h�נ��\u001a��mcf�Dפ�����f?g���&�K#wU�L�\u0005#Y�\u0013Ap��\u0002�FV�}\u0003C�#m�E\u0003��\\e4yU\u000f���Z^�~R:%��6\u0016����$\f�r9�\u00174�9\u001c̑��e��:f�C�˳mD���/,]��\n_����\u0019\u0002A���1��Q�}\u0006�7P='�P\u0017�8ߦ˛l�i\u001c��6�%J�eg�\u001aj��@\u0017+�Y���!���I\n,�,�\u0001krn�4�{*��-��0�A\u0019�\u0001\u0018���l�f\u0011�ߤ֖͜�\u001b6r�ղ���~}+�\u0011,\u0003F�d��\u0012�9C�%;���>Y���ھKHw&\u0014Kݵ{�<(����\u0012\u0003�����\u000e\u0015b\u001f\u0002ӗ�kM\u0011V�\u0011\u001aLK�\u001f�Ww1N9�\n�N\u0017��5��\u000e��\u001a�\u0011�@�\u0010c��O�kyA��1ɘ�>���|k�\u0014�3�G�����-N8I��\r�f�\u00109��\u000f/)�y\n_��ĐL\u0013>�I�d(͌��O�Kh�\u0007a\r*+�e#(ܓ-3Q��2tT�\u001d�Y(�j��\u0004BA��}�M\u001e����m-���{5c�c\u0002��0<�-��06Bi{v��q\u0015\u000b��2�\u0000�_0�A\t�\u0001,��X���m���q\u0002x�����0T�J����� �g湍�\u0002@�\u0019e�X\\�$����P�M���MӇQ\u0016V`t�^�J�5�#km\n�\u001c\u001e�\b%�Q���Ԕ\u000b(\u0000,eI;HՃ10y6\u0017X�\u0004R��,1���9a�[�=\"�rQ�Y\u001cD��\u000b���i\u00076\u001a\u0006\u00154T��@�j�l�\f䚤Ț\u0005��Uu�4�A�l�m�@.\u0018��{�Ȼ�\u0016\r���\\f/����f��@\u0000��\"\t�\u0001�X�͒�䢣W�\u0014Ü��$�]#\f�\u0003H}\u0015d�Ǖ1��&\\�1f���\r�l���ʅ�\u0006;-;��A$�\u0001@�����)��ƙDp�j�d���)�w\u000e1\u0001��N��\u000bn&�]��е51\b=�M�0d?43�9NY�-+fv�v4@���+�T�Ʒ\u0010\u001c��\u0013��\u0019Զ�4&�r���\u0002�d�U{�5\u0002��sOn�Vݩ&�!��\u000fj,�۞��\u000e�ϓ�-�0f\n�ω�\u0002ƾ$�!$����wfD��u��\\;�[�}�eOh�l�2M֭8 h�\u001d\u000f�\u001a;EI���8��\u0012T��m�3Ipy����^.��>\".�U�%2ڄ�\n~\u0017DFnF\u0002�\u001b�t7�ـ\u001a�z^\\�\u001e�\t0\u0016�~,>\n�=��D��a\f'�\u0010�X��\nf\u0011�=���9\u001f^޹�\r�Z�A'�\u0001T��L�-4!�Q�\u0006�\nQ\u001fd�*[8\u0010cw\n��;\u001b���\\�̒5\u001a?�g\u0013\u001a����6�ݬ(\u001e�\"d��zm\u001a4\u001f\u0014����\f\u0010��\u0015�\t�lP�\u001b�T�Aʲ6�f\u000fLm�\u0013���a�7���{�bȎ����\"���.\n�X��\u0006�t�g\u0016�:\n�1\u0007S-�\u001b��\u000b^���E\u0001\u000b�J�\u0018-���\u0014�}>\u0017e��������g�\u00008}�\u001d����ī�*�/\u0013\u0019p�\u001dk�v�G�d��w�t믫=�@��\u0019F�K���|�da���)���\u0005\u0007Ve���7��j~���\u000e�\u0016\\��W�:�T�쬥�N-��D�fΥWS-\u0003[%�ǹ�t��O��sp��,�A*�\u0001h��L�T\u0007Ɛ\u0010Xy\f�ƾ7�p5�\f�[M\u0019���\r��Q[�)^��3,��J����\b�~��\u001fAa�����3�\u0014y�;�E��X\u0007=2u[Z������S�\"�A�\u0003�5=^.��M�\u000eÁ��\u0016\u001c\u000b�`ˁ��\u001d\u00070\th����s���c\u000bj��gƚEr�n=AQ0�}aa��z����\u0007�QCN�d\u0019�\b-�*\u0004\u00074�Z�\u0018��<ދ~�\u001b[����Y\u0010`��\u001b������>3-㙬-o^t�xH\u0011%�A>@<�`�|��y�80?\u0002�(ߓ\u0007�P�&��w\u0002���`�\u0013\u000e�#�q\u000e�H\u0000wc3�l��\u0018�g��\u001f����Fl�j��{�w��p�p`�?�A2�\u0001|����6l�)�!�\u0007��@:�MJ�M���b(���:#�9��\"^��rCx���\u000bt���H7a�\u0012�n�(~o�\u000b\u001c�_��*_��\rnV�i4��2�(�\ro\u0001\u000fgB�\u0005\r�3��ZI֛oҸ����ND��d\"|�#�i����j5��\u0012\u0001�z��I�����L\u0019��\u0014_k.?\u0004ߡ<\b��o�?�\u000f��/�9�e\u000f\u000b���Y�A0�\u0001���L�n�a\u0002[%}�`�Q�`?�8���pyueH��4_���o��&+�\u00044\u001dʳBl�%�\u0000ϓ��:��{�:p(�\u00147���3)\"R�\f00�%�J�$�~�y�k��(�+O�\u0018��\u0015�\fR��\u001e�\u0019���hpxl������'\u0015\u000e\u000eb�,#���\u0012�S��J~6�h$`\u0001�&�X�/i��\u0013Q\u0007w�:�w̗����hk\u001ee�z�������\u0016\u0017�\u0011\u00118�\u0017�?0\u0018�w��r#șzy������\n�\u0010N��Ji\u0015̆\u0016E�\u000e wKZ�vZH\u000f��2l\u00048$��\u0015\u001dv��D.��&��Q �����\u0015Go�CA��\u0013B��n@�\u0015�Z�䘴V\u0006��9x�4T�\u001f��A2�\u0001����b�}�@��+s��\u0018c�t���I���=zQ�<|\u0012z��\u0001r�{\rw��W\u0012�\u00126� zh~����*���\u0010�\u000e\u0007X\\\u001b�3���l}�}��\u0017�QO���{N~\u0006�'�Y|�(��O7�̑%b'��R9\\��\u0001\u0001E����mb�\u000bd�\u0018���\nh}�r���'�p�8�3*b�C��\txn\u0011*�\u001bq&ɦ9�\u000ePepu�u�\t\nj\u000b����d\u0005��\u0006d�^�S�\\�2�+;\u0000��I�Tc�eq�g\b�]Z���7`��?b\u0011\u0007�i�^1�4��m4\b\f��%��2\u0011'\t�Ё���e�6��$?�\u0019;�.��L�>>�VJ����m\u0018O\r������b��\u001aB\u001e\tQ%�\u0014�AI�\u0001����a��նz�(:�YJ�#�=\u0000��m�Tu�\u000e��|��263r|���\n�ӌg��R�Zv�\u0010\b,�\u0017\u0001h'�㻚j>@�\"Q���\u0017!~B�M�A�T*�\u0017;U\u0011��u҂ї'�t!zI����T��h��]ɬ�\u0017\tܛ�IBY����W����2���R�K��@��D\u0003\u0016�Ó�i��\u0011M\"m��@��V׺O�)�5cr�ߝ}��b�\u0004��E[\u000b�����\r�\n�ٴ\u000e߰\u00193J4s�AB\u0001m{\u0014!�*�~,lmq�o+���4Rk�O!�g��L�I���k\u001e�3WK�\u000fEfz��[)\u0002an��5�\u00156\u0005T}#�]����շ\u001d*W�\u001aE�\u000e�駶?\u0014�e��uF��4ʈ\u0007N�D>�|�bg@�<윞��\u0012]xE�O6\u001d��,o8�G�(Z3x�cE��\u0015�f=\u0001\r��v�\u0001b�-�+|�尢D��\u0018�S^���\u0007\u000e0��g�\u001d����\u0012XZGh�\u001cD���rDy�+\u0019� \u000b�HW+�,}\u001b�eg��\n8\u000054>\u0006\u0015�䂛^��V�z�u�i�1���\tj^��\u0019�\u0000-x�D��n�c9�M�\u0001'��gzؿPϴ5jh-�Mm��t�\u0010��TJ��\u0015�OLL�ϯd\u001d�������z8v)MZ����ػ�x�M:FF|�%ZW��L�\u0001�u��KQ�v\u0016x-n��\u0014$yM�\u0002�\u0012�\u001eL�B��QR�\u0014�Ao�\u0001���s\u001eh\u000b��ٻx�v]\u001fb6m����-\u0000Ͼg�\u000eVE=5��N\u0006�@O~�B\u001d\u001bD̸2�A\u0006/?������/�@d�\u0000�\u001a\u001b&���S�7g����\u0014\u0005\"w�^h���\u000f\u001e=J��g�G��a9��\u0003�s��6��bb� ���ݲ�\u0010OV \u0015j�4H o�\u0007,���F����\u0002�&I�߱_Z\u0002-C5\u001b��\u0011�!I�a�9B\f�\u0013�IM\\�ՒK���\u001f�\u0016\u0018��E��U�U\u000ec3\u0013X���e\u000b\u001a\b@]\u0016���8,_��[\u001a\u0017߃\u0001��j\u0007��Q\u001b��-a�\u0004�����\u00068L���'�\n��9��#�_�N#�s\u0007%�\u001d����ͨ_�\\���}s�8�^�(��\u0003�F(�\u001b�����}��\u0016�7j͟`N\r�ä�ܒr�.l��I�1s��\u0013�!o�v\u001a���؀�\u0018��[M\u0013�AU�\u0002\b���a�\u001d�\u0001��ή\fl&E9�P�DI�5s%5UbZ�^�0]P��\r�^�\u001cK�:Y��\u0000?\u0015�h�$K�8ӱL�pt\u0000\u001c�)\u0007\u0003�;\u0007�\u0014L�#��z�\u0011�B^�r��h�����I\u0015�)^*-�Z�I�Z玸/���\u0000\u0003\u0015'�4\u0010�?�\u001d��\u001cf�V��I:�BZ�\t)��6����l�U���\u0003�m[�E��qI�k}�G\u000e�HZ��\u0019��_�[<]ѭ����\u0016 ���h�\\�\"��bI�;L��b4�e�C�\u0014��}�I\u0001o\u001fO\u0010�S\u0013+�M�����\u0014/��%�8@�~�\\#Cf��F�k}\u0018\n\u0019�h\u0013'�M��Z�\nG�9���5v\u0003&Q�\u001a�&'�\f&��\u0010�ɾ�\u001e�\ny�\"�\f\u001f�L�ɷ��\u0011V�\u0012��\u0013�A[�\u0002\u001c���b��f��\u0013����ut�4�ݽ�{�/��-�\r�dl[f����H��q0��\u0017�Nޞm�5��3�\u001c�\u0006\u0015�U'V��<��0b\u0001\r\r�m�n=�3dY���!�� \u0006��U/��\u000e��\u0002�y;�o�Jf\n\u0004W��\u0007\u001e)BD���T\u0013\u001a`���\u0019R�Tә+JG�\u000fe>\b��+�X\u000e�ޔ\b�Q�\u001f� �n��Sw��g}��B�{`��\u0019�w*�e�5t\u0000��t�׷�ო�6� c*t\u0015��9\u0012�b\u0006e�ہ�A�}��%�A�&�GG;��8P��9�qT�`ej�6���x�=��Kw�^#\u0004�\"\u0006y���ᵓ\u001bUij���5��XO\u001c\u0016C�����\u0015s�mx�u\u001c�!�\u000f `�\u000b�\u00036\u0003R<���r�\u0016R\u0010���\u0016$�\u0013�AQ�\u00020���b)�\n5��R��X���g�&\u001d�H~��\u000f�ɏĢ�/}$\u0005\n�&A���\rE|�1���ʼn�n\u0003ӏ\u0002\"�`ŝ��y�O0M{vhl$\u001cn6\u0000���\u0007\u0002\\�!no�Lʾf��\tUŕҰ\u0018\u000bu\r��\u0000�\"\u00054���\u000e8\u001a�o\u000e2�\u000fŭ&��\u001b�٢�$W\u0001�,��D\u0017�c^��\u0013�3U���/�e`K6&�0��'N7�ߢN=I\b�_����3ҏYa\u0012���\u0007y���\u0018\u0016[/y �T��u\u0003X�\rgj8yh�}qc\u0015N��SW'�I���+!6�;\r\t�\rg��B�&�\u0016�ǃ�<��\u00073����Iý߭���Q��\u0010�J�\u0002\u0000�\u0001�c.po�E�\u00175�&����\n\u0019\u0019�v3�3�Jt����]���أ%{�\u0002��\u0002�\u0014�AP�\u0002D��ƅAq҄�]n���������5y�=�=8���N��\u001eʠP�=^�k��.qA\u0011?�\bZ\u0005��>|$�>��R2�{t��F�S��J�[���\u001a����`\bB'c�9\u001d�*7�D����'�w\u0015�����\u001c\u0018�3%�6\u001dY\u0015X%\u0012������F\"\t���6�ˣ� /�\u0013ln�����2�gU��\u0003�r�.k���޹�Ɉ��?5\u0016c��^��Y��]���=������\u001fVjP�k-gG~�?\u00188�\u0010\u001d�t\u0002\u0018��O��|�\u000f��Bi\u0015\u001f�\b�o4VG�ׄ\u0005\r&��$\u0012\u0018�'`��Tႇi��a�s��}����:�\u001d'g�S�_�\f�d�\u0002ՑM�]`�-}{��6�9KD��I��K\\���\u0017A<�bE�\u001d��A=�\u0002X���b̄��Kit\u000e�\u0013�\u0013*�ѬK\u000bm�2��\u001a�,\u0005�j��eC\u00066-�OB;8)HD&2��/&�ߝB`\\����\u000b\u0018��\u0011\"c�\u001f�,��\"2��K��tm;E�h��\u001e�'��\u000e9\u0019ļ����%v���4��\u000b\u00194C�ur�b�\u0007cy3��i\u0004\u001a\nuMq�\u001a�\"U���V�W�ڹ�-*���2��\u0015��Plf�[o�*th�\u000bH��\u0002e\r85���(m|F%]\u000e���$u�_�t���[\u001f^o')\u0012r᪖��AI\u0005V�4�CrX��12\u0014S\u0019���=�B\u0019e-��������j��π�6����z�\u0015R\u0019[��p������㷦\u0006\r�t�wC�I��\tS�Fj��1<�\n�u��A��\u0002l���qM\u0002u�+�R\u0014�U[\u0010��֍��\u0011�϶\t�$����(��GS�J�?\u0007���mq\u0001�sIbw�B�\n\u0003˰ω镒v>(ČU�&��g\u000e�ʫ�das\u0001o���\u0004�C��\u000eJf�Ǻ�5٣�0=WK��v�;?�)��R����Fwm\u0016��9����Фw�膦O��N\u001d@KN`H}\u0005��*��T����@ih|Դ]m�r��e��ƙK\u0003)E�fE���q��\u001dD��|���{�:.2X\u0019\u0016?|�ڰ�6�!\u000b�\u0015:\u0003\u001b\u0007rE�\u0006�\u0011�� ����u��\\c��\"�����f�\u001dM\u0007\u001bs��\u0004*\t��Z�\u0005$\f�1��|�W�Hg�Vm��\u0019���|��?�X\u001e��\u000e(]s2tF\u0006m�1jD_�g���ӧ�`r���s�̆\bՓ\u001b�s\r^23(}P`߾��p��6$p������2��y\u000bޟ\u000e��\u001d���`���~{^�8������+���\u0014�2��%\u001f�AY�\u0002���.�XS\u001e���C`DJ�.���:v\u000f�5�O�\u000f���\t�\u0017��ղ�3IZ\u0003�I8�*�%�q\u0007jl�Ia\u0012m�\u0007�S�̣F���h�O��,�ڣ�Z�9C�ix�\u0017χ7��\u0014�����kw\b�\u0003�\u001bڻ�kԲ������չ\f�\u0011P�䣸\npF�\u0013����Y�\u001c0gk`\u0016�@0�7�\u0018�T�Y��u��@N�\u0005vm\u0003A˼&5����_O\u001d�\r� B)�0��3.�����=��n8\u0002��!D\u0001�4\u001eA��ƅ\u0016-��[�,\u0004\u0000���N����_&,�o\u0012��t�Í�\t�%s�\u0012��\u0010\n,�4�\u001b8]ؙ�\u0018=;�8\u0006�E�2�\b��A_\u0010���_TNW.�D\bb��~ua��\u0001��CR�\\)Ո���\u0000/���U�\rܑ�����\r�S~Hq/$�AW�\u0002����eG��=p�!\u0005N\u001b��uc�8\u0000\u0000wa��»2���1_oK�� �؏\u0016.\u001b���׭�s�OV�\u0010M��'��Y�Eb�p+C[X\u001a�K�߳z��j׃\u000e�.\bP_\nW8lJr��\u0003-�p�d'�>\nb��/X>��ZO��.�Ҧ�!)�>%����=iZ������V֯T�^Ð\u001f^\u001c�\u0014.[�r6�w�D\u00044�@�~�\u0010a\u001f@x\u0015��FDR\u000f�\u0016\u0017a�My�ə��[:�W�6V\u001f.Vdd�\u0015�k��rD�ܻ��-&�O�\u0001\u0010<��\f�V\u000e��\u0004/-���P\u0011����g��@�\u0006)M�����[A�̩��ˎ���y����3FU����ޘMT�Cg� β5)�hK�4:��;2��7��m�%�/�ގ{�_�\t'�P�\u0001��A]�\u0002����b\bg�\u0001\u0002�&\u0017ݮ͇�\u0018r�D�2\u0003��y�\u0012�\u000f2쳈v]�@3�m�r-x$T��J6؎�Y�pC�\u001a��I�Q\b�$*\u0011�XүD\u001aHڄ%!�LO�tv3Y�zh�\u0006�u����\u0018H5�E^�Il�I�\u000bJ]��(x�)����Q`6-\u000e\u0017�eB�Wh�\u0000�F�\u0010[A����)��wEF\u0010\u001d\u001d\u0002�[��T�)Y�Cm\u0002u��o��u@&\u0013`u]���%�n5��>\u000b* �&�&�y���'�;\u0016/�\r\u001ed8�6\u0007;j\txԄl��L��>Z�9���߈;l� ��+�\u001f�΁�R�d���9n\u001bxP���<|�\"7�T�$.┻�*�G�b�H�>����ҡ�i�\u0004W\u0000\u0016=w_<�\u001bǴB�h��9͟���\u001e\toIo\u001c��\f��pO\u000b���AV�\u0002����c���-jg˞\t��4��+\u0011H�;��$y�2\u0019\u0016l��`���B�[ch���X�Ze*���r0��\u0002��\u0012�G݆J���Hǣ�g'nt\t�'\u0003z{� ͳSu�s\u0003q\u0018mWY����7J�'1)n\u0002�3��Wc�o�.�󵽆�o\r)��q�\u000bv��<\u0006JpqH��X�4�p�nAš0!\u001b���_��\u0012��� kuI\u0002)\u0003�`τ#\u0012Po�#\r�>�\u0002� ���\u0004d�;��Z�\u0005���\u001cf�8Dc�\u001f`XI_\"D�b��LO���\u0015Ǘ��P��})\u0016��t\u0002\u0012�#Ϸ\u0006_�����o;�ZF��Sy�\u0013����uh]����8�:u��#�\u0000��x\u0017 \u0002B��o�\u000f�$RP�=࣮c�f���\u0006i�ou05��(��8�T�ӵ��Ad�\u0002Ѐ��e�ё�O��\u0017���uS�\u0004�k��\u0011�!9!�/���Ԋ/�`���};MT�o�6V>\u001a;���Hх�)��O�x�t�м/�\u0006\tMR_�� �.<Ӫ\u0007\u001a�¸�2{n����\u0001��ٸSm J����)\bU�\r(8XD|�u~)�N(��\u0007��t\u000f�\u0013Y�\r�8,v0��?W*x���\u0000\u001dGXr�܇�@N�u<\u001d�d�Y�f�w��SǓ2�\u000b�N�|����D9��!�\u001c-w�ױ�k��D�g#��\b����W����\u0019���LQŠ�㯽���k%��&}$|?tz��P4�p�|8ǘg���C���\u0007�t5'��VH�4!,\u0011Ӳ��\u001a��\u0003�q��\u000b���d�ES�iޒ�K\t��\t�P@��\tj%�p��o~��\u001dX��.�R��<\"3�\u0019\u0017:���Aց\u0002��|�16K�v����) \u0002M���.�v�Q�L�4ڧ�է���~�XP�h�*1��>��b\u00148�6l��/�/��(�q��\u0019�)��I\"����H\u00019�w�\u001e�4b%��'��6��W]\r�~�\u0012�Ѳe�\b�<�qxL� \u0016����AM\r\"\u0002�ʏ��{Z�r\u0001���v]tJъ-�CKw�\u0015D�˥�)��m�a=|f�%\f\u0014k^~\u0005\u001c�_�\u0006�Ⱦ;-��\u001c\u0010\u0018���%��]���A=\f\u000e\t����}\u0010�\rXO��,�%1�\t�|�w�φy����p\u0004��~�B�����I\tv\u0018���w��Ps�\"��ğp\u001fT2ʌ��\u001c��5;�\u0015\f\u001b�A\u0004������j�\u00035����7�At�q��5��\u000e��nZ�L,w�tK\u001c�.]&q}$zr�q���:��y��&�M�Mb�m��0��y���\u0001$_qA�5����\u0014�����s#1ٌ�\u0012\bb��\u0000S��S���\t)K��uO�A\u001c�\u0003 ��M1ܒ�\u000b0���^[5��\r�\"k\u0000�=`�6t�M���CxJ��u�E��b/(\u0011Țʓ��m�1�-���\u0016%k�P\u0000rO\u0018y�N\u0017\u0015�5�,\u0018\u001b��៥�\u0001�N�>�C\u0003�HK�.pw���p��w��f\u0001�T0;�I�\u001c�\u0006/\f�1�D��TQ�n\u001d��\\FϷWmg�\u0016\u001c���_\u001c���\u0019�[N�B�\u0003 P�j&h`����s���\f�ܶ�0Q�\u0016k�{�\u001e�|�ހ�\u000f�v�;[�N\\���\u0010�6W´G&���c��\b�T���n`G]���\u0005�����&�qnoc�}�\u0010�U\u0010��R��D�i�m\u001c\u001eXQ�\r�A*�\u00034��L���|&:\u0000���\u0019�$�:\n�7�0��\u0004��\u0016ٟ\u0007�Z%\u0013�,n�r��$tm&|���zH\u0002\t�2B�6�\u0007\u000b��+\u00195���Ő&]�^��s�Q\u001a�\u0013�BD$���˝�փW (��¨��9\u0001��{�Cc�pz�K�� �E�Mr�\u0003�\f�\b��\u0005�|\u001aa�z��\b�%��\u001cC�|\r�\u0002���\u0014�Uc�7FM�O���\u0000�\u0019\r�N�\u001e~8tq\"�O���\u0019�p�\u0007\u0016ЉU�������ۊ_\\�K��|�#���m��e�`+\u0005S���\u001b���E\u0007�4@�h��[jz�kk��uM�۔�?f3���(nTL��MG�\u001b�\u0000������(\u001f���\u0016cUM��A\u001d�\u0003H��X�a}\tI\u0010_�j*����\u001bd%����e��V���\u001d��u{\u0002�D|�����X�.O��8\u0010�\u0012\b�If\u0000� �]S��r0ǀ`R ���pq�*��4R\u001ea�\u0005\u001d\u001f�\u000e��#r�\u0012N��2'\u0013\u001dQ��Sm>�N\u0013��\u0003\u001c�\n�`\u0005\u001bB���)ָ�HJG��+�۳�����)�p�\u0012�37�Y�c�4\u0002c��{\u0011)�G(H���Ǝ2�f��M\u0012�3&\u001fg\u001f�,}��-F��29�k��c�+*��\u0006N�;\u001b�E\u0013Z�V&6y;\u001e�@ϑ��=?������eY5ɦ�#�ʺ�=��\r���5\u0000g�&�\u001fpPt7S\u0005h\u001e\u000f��A+�\u0003\\���a��g��[\u001e\u000f6u[m_/t-+����Y�\u001c/U^\u0011\b�;Ƚ'ݨ��W<���\\�Q���\u0010��6e(zT��M\tOu'�hzd�S\u0007\u0000j��ѴŰ�v�7�\u0002EI\u000b�{�1\nf���\fE�S�\u0002����\u0018R��D\u001b\u0010�jg\u0000Ȏ\u0019Ҭ���_�co\u0016$��N\u0013��\u0000��b\u0016���\u0015a\u0003\u001b�a��;]j�y{>�Y��U��zDP��U�a(����\r����g��j�\u0002�ab��\u0001�p��\u001f���g�/�3�$Ը/S]V�.�\u0019�\u0018�E\u0014Z\t�7ш�\u0003�\u0014�ʼny\u0016��\u0015\u0010��Ƙf=��ݷ�\u00008���p\u0018�>\u0013ߋK\u001f�����w��c�B@ܛ\u0002���A\"�\u0003p��L�=F�y��O3�Qt��1\u0014�f�-9���\u000e|�\u001a*G����ֈ�9\b��_���S�!@��ZJ\u0010s�����5��\u0016��\u001d߉����\u0012&�+�K�>\u0015�\u000eXE���g��&��MN��(������O�g�Ï�\u001a\f9�)�\u0014uͥI�ʀp�H�\u0018�1���\u0000ea������S��=��&k�����mSo#����g5��s\u0013R�Z\u001fb���x1���Zm�\u001d�/��h�\u0007�\\�6b\u0011�\u00064�9�b�\n�K�\u0006\"�5N��od\u001bl��6ϟ�\u001d��\u001c�U?3���JH�˅o��iԴ\u0015ή7}s�\\�Z��W2�a\n)\u0007�^c1p�q�����ۘ��%`)-\u001b�,�\u0013�y����J\"\b̓�1LpGKA�Ȅd����\u001a\u0006�\u000b@��f\f���/�����\u0000��\u001e�I�\u0011y��Ph\u0004\u001e��R\u0007d���\"OA\u0018]\u001a�J�A7�\u0003����bDB\u00036��s[�1�!��[v��'�b7�#��s�^\u001bR��#���\u001f��ڔ?�@\u0006)M\u0018�6��K\u001f$o�\u0015�W�0�\u001eS\u0004��\u0001�2�zH1��4��\u0018�OklU�zk8Z#�/�!-����\u0002�c�X\u001b!�\u001f\f\u001b�\u0014E��w����A\u00163��`�T�X��\u0000~�4L'�<\u0010�r��碃\u0013@|f\u0001jݮ�[�۞�\u000b��N{�1�ޓD\u001d~\b�r��u�Tn>�0YGa\u0006�ēQ)R�%K�\u000f\u0017��R\u0000�3P�i���שΓHK�2+҉�w���j��\u001a`oJ!��B��yW�\u0007�V�\u0017��NI8�W���\u001c��0W�Q��\u0011\u0005��\u0000Z�ȡ)r���5\u001d�B�AK�\u0003����\u001fs�`�y��,p$�ty+H!XW��Nv>&f6v*��X{��\u0000{r�q\u0005MA\u0017{6Jሢ��1�G�\u0006��\u001aK\tc�\u0007t\u0010ۓ\u001f\u0005�l+�R\u001d\u000br\"+����t�\u0010�2`\u0012��\u0001��]\u0011\u0012\b��\u000b.nz\u0007\u0010:đ\b\u0006�M����r��*}WY���(��A��Ol�\u0015�8н���]\f1_��\\\u001d��\u0005:\u001b�\u0019E�u��\u0003��R����$��?s��\u0003�H\u001c�/Ŏ��h��J�\u0011����\u001a���I5Ts��X\n�.c�Se\u0005�6m�XA���E�\u0000��b\u0011\r0�y�\b}��f�O��\u0003@��J;R\u0004\u0013�i>�\b���b\u0005_�n\u001f\\�S�\u001c��X\u0019i~\u001c�K�`�/�\t�U��f�\u0007K+���*�\t\n\u0018=p]e�B�A?�\u0003���J\u0002��M�k.�wU<9�G\u0017!�.ч<��>}�,\u0015�$H�\u0012\\�V��M�\u0017�G=�\u000f*:�hNu������ҳfY�]���0A���}� (Y`\r��S�\"*�n\u0010(Df�.f;IY'�6ˋ\bkB7�\u0003�p�h\"�&+��(>}IŤ�M����{q\u0015�3T\u000b7�v=�\u0014rk\u001f\u0010P�\n�\u0000}{`3\u001c�\u0014�1_�1��44��\u0018���(m9N�f��V#R\u0001G8\u001e��\f�(�\f9z\u0012\nH�3�9\n�>)�:��}�����\u0018\u0003\u0002L�\u0011\u001e�d�\\4�=�w�\u0015��\u0002G��\b�,�6�5�g\"��n'�Y��\u0003p�\u0018?��'���\u0001�\u001ef��d�\u0000�}\u0000[��a�i)���qi�\n\u0000�q���ҁ�\u00178�A4�\u0003Ԁ�Lֹ�\fI���l״��\u000f�^Ӌ;���dn��Ú(\u001f�\u0000���Xm\u0013ةcC�5�xo��Rc7Ȕ�GY�g�����S�_f8`-0��v\u0002�!\u001e�cz��y�6�\u0010�B�O\u00180�̿$M\u0010\u000fr%��J�\u0019\"A\u0000\u0010D��t�\u0004{@��Ȳ\f�9� F6��\u0003�s\u0010�.\u0004Y��vf\u0005�bqF�iÉF��d���\u0012E(0��dz}����~\u0006��7K\u0005s;<��nd@�_�#ՆYz�K���#\u001f\u0004�\u0016�C\u0012&�[Ԉ ���%ݎ��5��B\u0003\u000f\u0000�����d\u0013���Ș�l͌\r�\u0014)R��p}��w�\u0000����N�5\u001e��/�A%�\u0003���L�zh\u0004�8ATh��\u001b����� ���i�����:���;��|*�C�SJ�`�N�\u001f�I��ni�(�=2�\u000e���pg*[���v>R�k������qT��F��\t���\"Q���\u0017�\u0015[Q�W\u001e�P;8�\u000f�!���k=H�\\Aט!\u000bI`q[�b��n��g��\u0013@�\u0016\u0001�T\u001b�\u0019��s\tH�\u0015\u0018tF��6��h\tau+\t\u0006������Bh�,�=qGn�s��B�S(=����\u0002\t\u0004͡|�>42ŠLM��7�_��<��H�������\u0001��Dk�“�1�A���G2={�g��8��\u0015�7���҃��\u001b�1�u�z��O��A3�\u0004\u0010��M.T��I\u0006\t8�\u001a\u0011� �^*�)��3ٲS\n'�\u0001��D�@H�ޱ��O���.K_�-ۅ\u0011���\u0013�,/�J-�[\u0001\u0004b�*L\u0005\u001cN49���{(\u000bv�Qww�\b?�4�jVi�O��b��Do�\u0001�y��:���A3�\u00048���\u000f��_\u000b�֙�xْ��o�#�U�w��1�H�?Pv�r��s�������\b#�N)&3\b���I��Ֆ�s������BA��o\r�S]b���ѧ�|�\u000f^,\u0012�i�]\u001d9G\\C�\u001e/&^\u0000�\u0011Y���/oh�k\u0001{��`�c3?��-��O�\u0004�\u0019n��~R����AM�ir:\u000e(j8���d\u001aX�@QUۆ�D��\u001f���\u0005g�o���D~�d\u0007/2}��j\u0010�\u000e���u�\u001e�W��1\u0011QsrPG'�6��\u0001�}���l݀��q�W\u0013����dP�`<�e�j\u0017hi�j8�!L���ž�\u0007-i�\u001b����ěJ��\u001c$?'���\u0013�e�����΋ڒ�3p�A)�\u0004L��X�^\u0004\u001d��ƍw|�./z�{Ί�_i�p\u000b\u0010�!�u��'\u0014��\u0001.\u001b�8�\u0017��G�*o\u0015H\u000f�N�\u0012��T���Ǝ0~�`hN�\u0003�\u001e�$5FVO�HVĥ��I�y\r�p�cE+&\u0007 '? C�0TlRsQڻ���ᨏ���o�!�C\u0001�$Xi��\u000e�\tL��\u001dM{�xZ��L7{��n>�\u0019�3��H�\u001c�y�\u001e�c�ɛߝ֓�\u00040�-��#\u001e\u0018jEs������`r�&�\t�(P��\u0006i�\u0005����P\u0007���\u0019��\\q�ʃ\u00156\u0014���@t��A+�\u0004`���m�\u0013\u001d $\u0019���l6�r:&\u0018��o?\f.5�S���I�1w��R?/Dl�ʋ�\b����O�<�DV�W������\u0019A'qI,�ޏ���E��g^\nw��`��\u000f\u0010GՐ\u001e\u00123zL\u001a�c�~�#��V�E�F\u001a�O��D��[���+ l�J��\u001fP�F�Z�]F�4��:�?�^��\u001b�]ڭ�\u0011�dɠK,G�i���\f\u0015\u0014\u0014jC��\u001a4�\u0012V�\u0010���!\u0012%ls���g�\t��>(h:\u0005�&|\u0005��\u0016\b�S\b����W-J2���{Ӗ!U�m\u0014\n$5��\u0017\\P\u001e\u001f�\u001dBb'�g�\u0012�\r&�ď99Z\u0005\t�ŦS�.5\u0000\\\u0006`�*��[\u0004\u000e\u0015b*r9�A:�\u0004t���d��\u0001��\u001eRw �\u0007���\u000fs\\��rڧH/“\n+\u001ei��|�t�\u001f���t�-�\u0001D��f�rK�(\u000b�0Y�9\u00032kr�ZS�\u0011���:W-e��������\u0003r��\u0004\n��%j��M��c�RxdEmiҋ��3��-t\u0012�x�QH\u0016�#ӇJ_\u000f;ݶ\u001c�3\u0013\u0004�\u001b���J����9���bh�q�k h�Ei�&��o��*j\f{��%1o\u0000.������@m��\u001f���ÈXZ\u000b�����pT�\u0016Ep�'�\u0010{�YB�C�t]�G\b:�J��yqd�T��d�� ~=a^�\\QLc�+�G2��K�\u0003�.��\u0003{f\u000b�7���q������\u000e�!<�(\u0006�E8�A3�\u0004����eܵ�\u0014/p�kٔ�F�$L�\u0004�6g=\u001c\u0007�)#\u001b�]9�\b�d�@م�Uޖ\f4ʼ�v�3�;hP�\r`�]���%�u�vzF��W?\u001e\u0000<ڔ�4k�3޽;$\\�G�\u001e\u001da��ًA�,_��g|hN��G\u001dI�\u0014�C\u000f��\u0018\f��-��x0�C\u0000c��+�bO�}Q4>Q]O\u001e��/�4\u000e��m�)@YNJV.�@o\t`�_,�\u001e�F���:H�\u000f�\u0005w>\u0015�_\u001c�+�\u0015Fb�E�\u0010��W��n�;\u000f��:B��sinXb�f61�Z\u0006'��Ͼ\u0017b\u0006\u0007�2c����n��\u0015�ޅ��\t�|`̇)~Ǟ\u001b\n\u001c*�%�ϐq\u0018l=4���@�\u0014\u0006�M�\u0013Ͷ�hqkI>\u0003��U\u000b�\n��4�����bl�B\u0014\r�OK�n��\u00062\u001d�.:^��+�(�gq �\u0010\u00074�\u0006�05<0\u0000��\bN}Զ��VL���0ۛ��\u000e�YH7\u0018\b\u0011T\f��A�x|\n�!��L\rҦ�_��O<���\u0015��\u0001�㰭��s��\u0016~\u0016�5\u0010��O�=��\\�a�\bg[�}�%�A9�\u0004Ā��a�2�~��|\u00004u���f\fr-}�2�V��-8��\u0012\u0000������X�,��*_m7�\u000e�1n.r\u0000\"�HS���{�h��Yp���aHm�ۅ`���j\u00169L�3�An_�\u0002�k,�\u00178�Ʋ�YpA\u000b�l�2��s7����a�S�莈\u001c\t�m�1?1�o��%?��=��\rF\u0005��\n#\u0018�y\\\u0019qj|vbH[�\f�Я\u0016�\t�P�?Z\u0000\u0000턎{ww\u0019�RB��.R�8_�#y�5\u001f���MZ\b\u0012t�Zm�e2�ƻ�\u001eu9\u001dw�\u0000�G��_\"\u0001���[��\bIY$�A�JU?ޒ$� ��p�8`����2u��lj\u0019U\u001co�\f��L\u000b&����U��\u0019O&ԕ��A(�\u0004؀�J^o�\u000ee�Z\u001f�J(F���?p�p�F(\u0017���[���q\u001b;\u00102\u001d��ו�\u001a�s\u0018)�]�Û�أ�5\u0012HW\nĦ���b��oX|��<��\r�'�g�i-E�ZM\u0006\u0016BM#�q��[sҮs҈�$\u001cs�ZˮB\u001f�b`�\"Y�OK\u000eu�����`\u001b�x|�j�$H�d�y��dD��ٔɘ�c1�4�����M�V\u001f&ȡ�\u0000gӍP�q\u001c-\f[���wX%C�\u0002X����\u0012�Mi��\u0003��8=Z��a���K9\u0018\"n6H����K���w�g�X��[<\u001dxm�^Ԟ7�'�*:p���{sږL���|\u0004�ȳ�;\u0012ܐ~�N;\fO�f�\u001bx�A\u001c�\u0004��Xɲ���ߠ���i+��-}^G�\u001f\u001d�A\u0014�\f>�\n<\u0017س�M�������y����l��@\\�b�B\u0015͇~g\u000e�R}\bhGZ�߾x�Gi\b��y\u001f�^��\u0018Bܮ��\n��ѼOp�\f�\u0015D�}�\u0011c��r\u000f��zYf\u0019��=}H5V�\n\u0003{�\u000e��-�8���P\\��N\u0013ޅ�\u0005Ces\\Ԭ׭\u0013r{B��]_��\u0004�-�\u0010^�-�W\u000eW\u0018\u001b\n�\u0007W�ߕ>�*���[v��֨����b29�&�����,�eJ�doq\u0016R���\bpf��E��\u0005T\u0017\u0007j6��\u0014/M���q�~̆H��1�Fr+f�m$\u001aFS��\\^,��A#�\u0005\u0000��X�Ͼs�O�3�\u0004�b4Te���K�+�L���7��\u0011�����\fJ���x\u001f�\u0018��Xޏ\u0018�i��\u001f�������\u000b��>s��-��&�\f\u0001��\u0019�qݶ ~�U�\\�P\\9�������.J��/\u0002��\u00194,��e��vnA��\u0018t,�}\u0017�AP-\u001f�%�\u0013t�ؼ�^\by\u001e;u&P�br���5S6�����;���\u0014O��u������wGxi��\u001c\u000bۂ�a3(�����9�\u0004��+T�쨺\u001f�\f\u0014�4d�ޠ��$N�=\u0015϶�9��\u0015T��\u000fIc@�%�1�\u0019��\u0015�\\��8$/\u0006\u0007\u0013\u0007\r\u0000���k�kg%���\b������A\u0018�\u0005\u0014��X�'SWa�4\n$̈����\t�B�|8�21��\u0006�l��\bC]p\t'��n��De&(��c\u000e'�٪\u0002\u0014j�\f2\u001f�m;4�\u000f�\u0013\r-����eC�H����$�P\u000f�v�+̏\tD���)r�\u0007�\u0012���;�7¤<~\u0012�+}0*R1/kC�v���y\u001d�c/7npI��qٝ��%�\u0002�\u001b�f�9C-�\u000f�\u0001n��)v\u0007mZ\b�߻D�rC���\\�FFxS��b\u00049\u0011W���i\u0002��\n�憈���yC��\u0001�sm�e֨�g������x�\u0005A�Bu��Un����JU3e�b���2r\u0000韺�sD�\u0002%�pl�\r\t�A\u001a�\u0005(��L�\t\u0004<�\u0013E�\u0012\u0003�)���j\u0000�\"�ܖ���]N�f��\u000e�4\u0015����3�3�Z$X��M\u001b\u0013�\u0012Zd�.�w��ZB�������Q���Q��P,�s2��b��\u0018τ�QC��\f��i��74F��{�~c����'\u0019+G�@_$v�W������q����4�i��-�qHd���Nl<\"ۃ={B��ĥ�\nd$\u001e�S�@��\u0016(�̖�,��R�Y\u001c\u0011�\u0001H^Y���;0p\u000e��e\u0013��S���y�\u0010{YJ�[)xr\r\u0019\u001d�Y�}o�����\bޗ\u0011���g�)o�B\u0006.-����[M:50\u001c�\u001d�F��)\u001dP\u0007Nb!6��A%�\u0005<��L�D��W�/<;����G�4�0\n�l���g���N$�������x\u001f\u0001��V�6�\u000f���m�%��T4�Zi,__�E\u00194��\u0012Xe��k�B���R�5V�֔Ë��5��\u0007S)M{���Cfj\u0010Y�ah�NH����NV���\"\u001cJ\"\\��v\f\u001f�\u000e�����xpX��\u0005(�m�\u0016a�i\n\u0012bh�\u0002�t���\u001a�3q�%�- 9K��ﶪ\u00117�y��\u001c%=�\r$8���=?`2\u0007\u0016\u0011V�\u0004�j��5..yb�X�:c�Q�\u0007J��\n,��>��1%�\u001d\u001ac���l&q�T�\u0004�\\�\u0002�N��F�*R\u0004)>�t�P��Fl\u0010��~�\u0001}\u0006��\"�[�A'�\u0005P��Mt�R�����y\u0015��\u0005-�����R-}�J��\u000eL8\f~]N�ƴ��\t\u001d�z���\u000e���\u0016\u0000~����܍����W\u001b\u001d#��\u0004�}?:��\u0012_azK�4&�Ǯ~��8I��\u0019�u�[�\u0003���a�#a�M��X�F�E���5�^e��1QOD\fh�w�Z}R6᥷\u001a]\u0016�i|�_Ļ��U�C6�m�|��\b�R�\u001b���%~��:���\u001a�\u0017S�}�/M����`$� \u0010Fi\\iAf��]�1��<��\f\u0011\u001c\u0013a\u000b�\u0000\"�#c2(WT\u000b�5\b;\u001cj�\u0015����7]���4��\b�a�\u000b-�E��<�3��[a�\u001e�\u0004io\b�w� ��\n\u0017�L�T�A'�\u0005d��L�\u0007]n%��|˄,�5\u000b\u001e\u00051w\u0005I�8�E\u001ed��BG�\u0006d����4\u0007\u0006\u001eZO���tʯ�]��9���s\u0012j��\u0003L��uNo\\�h�!F����\u0006\u000f(�����r����x�>vA���9�\n\u0017)���\u0005�Ͻ��C�{G�J\t&ȈWIĜ�e\u0018\u0006�^A���#����[�+�F�1V��R9v���P\\\u0003\u001a:�$�JU�\u0003)\u000e�!��r�Co�q�\u0012� \u000ex��%���v�A/�\u0005���L�O\u0005�\u0014�_\u0002��WçE0 Y�\u001b\f�\u0007J��/\u0002�S1�\n�\u001e�\bO<��H���X�j�%��,\u001c\u0011\fBr\u0010R�z2\f�2�H��`�\u00050��\u0001���W��!.~�sO͋\u0007�}�12l�,����Y!�Є)l\nB5:���/a�p������¾9v�*\u0018�\u000bA�zQ>ɍ�\u0007�#��x�\u0005����S�29hP�\r�ڵ����\u0015H.��@�'�M�)�p��\u0000j\rw�K�B��B\u0002�eM��K��M�\u0019���֑=kB�\u000eA�hI4��[֋O��\u0017Х�<9��\u001fj[V�\u0018�Ό4��\b��-�a0���e�A9�\u0005���L�\u0007\u0014�Cn�q��Z������n��h�\u00142�Iш?�UG���e�����\u0005\t��\to�;q�$\u001b\u0013\"�G�aL��e�I��O��}�\u0013�l���)?��\f#\u000eX�*��\u0016���[��'\"��\u0017_�T�So���\blr0\u0004�B\u0005\u001aĭ�_R|�\u0003㣢Y�o�C�g\u0004��OMY�����lv����\u001f,�\u00060�O��Sm�}9���\u001crƢ�!\u0003�����0\u0018f\u0014��\u0017\u001aڄ,@A�K�A=\u0007\f4��\u0003�'�o\u0018\u0015�|3~��T����\u0003\\:AVϮ�\u0012&��\u0004�\u0002�ˣ��s����)�\u0011/��Bk!���\u001b�0TG\u0010LD�E�$��Sf)��`y�ا\t�\u0002{\u0013!;\u001a�A1�\u0005���Mvt�ͧ(�(�7k�\u000f��\u001dIH�,��\u001bx�!�5]_«�j\"�Ժ�\u001d\\��3�%\u000e�\u0006�\u0018S\u000f��#j�#��\u000f\u000f\u0013\u0005^襛@bi�\u0000g4���؟��C\u0014�\u000f?;\u0003p�Xj���\u0005\u001b�\u001bK�w\r �U\u0011\u0005C��>�����\u0013����?�IA�D@��Ɗʷ�ʐ\u0010l̽ϕ���\u001d\u000f�4}\u0007��A܅3\u001eW\u0016J��ji[U�-�:\u0004s���Z��2XB��\u00016a8`Q�L�<\u0018\u0016�R\u0012�>Fi�ѐ��1�ϭKN�E\u0000\b�S�\u000e�q9�\n�P�i��p��]D&¹�\u00135����Zz\u001bV\f�%\u0003������Ŀ|\u00029r��\u0005\u0006�\tA���蒷�������A7�\u0005Ȁ�L����X\u0002|��Գ��\u0005�%�\u00062���*��DH0�\b#��P�hcw�T�D5���p_My\u001eܴv�r��\u0018�����+\u0014�&j\u0017p�)\"\r���Ì�Y��\u00055{5a;0�\u0004\u0019\\����ц,�A�a\u0003>o�j��>\u0000v�'~\u0013\u0014��6�\u001a���\u0003R\u0012�:�\u0019�;��\u0014�Xc�oG��:\u0006SNd�Ÿt\t:�v��\b�mN\u0019�X��\n�>\u0002G�Ƥ)�6`7\u0015\u0018��z\u0001�ۏ\u001brw\u0018�d[�Y\u0000\u000f���~�����6c��7\u0001ű��\u0014�[+{@@�&\f��Ҫ�(�\u001a<.w��?|����,�ږ0�\u0002X�ļ9tD\u001e��2�\u001d�E�q�ts�6Z\"Ҷ1�JM�d1�3����A@�\u0005܀�M1��\u0002�j\"�\u0004����M�����+v�E;Y˩����3�\u001bS&R�\u0005�*�^6Ȋ|�_v�9\\�\u001a��WP�_3�O\u0002,\u0016�o���\u001a�*\u000f�d�Z�C���\u0015�Kn��sc�\u000b~I�O��\u0000mp�hmg]<�\fɮJ!�=�\u0005�\u00128���ֳ��T�\u0005(�,N[ʦ�kH�1\u0003���}�O\u001d�8��\u000b��\"\u0011Y��h��m�!��P5Q:��\u0013��ud��w��gN\\\rj\u0004�+�\u0010-�؇��j �\u0016*�C*�\u0018�'8�>�?�;��p+�X�&�Bk\u001f�kle�ܭ経���\u0010��\u0003�›��\u0010��\u0012��+_��g�����\r�\\]\"T��k�,��<��2gy�׉s��cX�j��K\u0012��KM����\u000f�n�%�-š\u000e\u0011e�=�>��&��~��\u0011 �t\u0019�tR8\u0000���j\t.�;iȨ��Q��l��ꎎˤN�\u0005�!;�P��<�?�a�\u001cM�\u0015�\t�w���8b�?0��S�\u0019߃O�\u0012�O�Ѥs�b&\u0013��D�@���\u001b\u0012\u0003G��S!\u0018_›�AI�\u0006,��MW擠>��jf�haMh2��l�|S�\u0011����Ӡ�%����zr�(`rJ\u0001�Ӊ����k�\u001ecI#�f,o\u0018����^\u0007\u000f[\u000b-��z\u0012�1��\u0005����d\u0018��\u001fhd�,\fP�ܘ���wWrӱ\u0014'\u001c\u0012��i��I�Q��R^R�AR�\u0006@��MzR�1��͸\u001f��\u0019\bB��-���l�p���7�v\u0003x�����Ma�`f��lgY���J��\na�\u001ey�m��S�n �!\u0019�\t�m7Ƕ�Y�Z�р��`ף��>K]���Q\"�\u0013�l��������\u0012��K\u0002˄�\u0000���k�\u000b�bm�YPJ�C��D�E@.��;�WkH:bг�;9��\u001c�@���\u0013%,\u001d���\u0013D�D��\u0011��GR\b}�(Gg�紫�g�G�8��n\\\u0003��n\u0006�-�k\u0019Y~\u0013\u0016z=!�w!����w�]\r\u0010��j�(�?A6�\u001eo�=HKI���T5�u�\fv��3_}�\u001a�5�m��_\u0014X��\u0010\u0016�J�:Ȇl�Uѡ\u0002\u0015ܒ�e\b�Ž�h~K�]a��_\u000b�\u001b:�\u0013$�#i\u0005���e*$r��A��\u0006T��L�v\u0014H\u000bfd�H,\u001fŸ4,4�gt,��<�S��4xX^@F�F�̨�����]b����\u0002�~��(�d�K=-ۚ\b��Z3�P��V�\fi,+t\u0011t\u0006Sn��\u0015��c�!�\f�0\u0018\u0012\u0000�\b*߫�\u0015\t$Ivo\u000b1Z�y)�\u0015��\u001f�>�m�1�s�V\u0001����\"i\u000f\u0002N\b�\\\u0018�Ȓ\t�\"vvĠ6+��>�lf�V�|3����\u000f�\u001d<���2�I���q�\u0015\u0001�R\u0006����'�_\u0018���\u0005M\u0017m\u0005�Ja�V�\\��\u001ci��`\u001bsd�q�ʼn�ySR\u000f�\u0018s���S��:�Ό��)�^/���k���g��x��ʍ\f+&�\u0019�;��!���9/���\u0012^�'0\u0004�M\u001f\u00076]\u0015�Ӈ6��G܉�Г'^\u0017�\u0005:�@俱�iv�N����9���*5��*�Vij�\u0012^���%�o�\u0005j��\u0018�\u0018��\u0014c��ht\u0006�ջ�\f�0\u0019F\u0007�ңAI�\u0006h���d9��w�*\u0004k��\u001f�~\b�G{�D�z���G�\u0019�pMpv�\u0015.�F\u001ad�\u0019�\u000f�\u001a,�ԉ�\u001d��F�7�\u0019�\u001fʃ��&_�NѾ�U\u0004�ĴLy^\"i�~m�\t\ttyэ���J�I��f�\u00033U=��f\u001a�\nڳy����EAi�Q\u0006��-�\u0016�t<1�\b�U\u0016�v\u0017�\u001e�{�\u000fG�� �J\u0007��~a ���O���\\���������\u001a� �����|��m�ΰ��\bɠ�����rr�*�\u000f\u0019�&aZ��\u0002��Z8m�\b�.N�3h�z\u001f\u001fB�q�2�8\u0014ƴ��,��\ba�M~�Zq��mDm����\u0010�g�-�Yqc��M^i\u0012F@f“0���QT�VѴ5��#��y�)�\t�A��'l\u001b�;�AV�\u0006|��Mz���&l�p�k�y�_ֶ�ٿ�^�V��ڷ*#�trp�\u0006������V�;A\u001d���U>�Mz\u001d�5*�B�j��\u0010�]��!�l�H%Ơ\b�$P��\u0010��i����4)\u0010Ƈᗃ�W��)V��\u0012\\\u0003M�G�YR�hS��qde�\u001a\u0010�}���87\u0018D�NkqV�+�E�{v�Ѱ�\u000f\u001d!��\u0010�\u0016��V�4���(k?raAmi\u0002�H�)�\f��.�o��\u001b��1�\u000e�1\u0019��!�=�\r�7��5\u001e`�U\u0000�K��\u0012=ӣ\"��s���φ[�i��@'��F��O�\\�vZ@fJ;�se�͠�Qv]�8�Lo:�i\u0015��\u001d�A\u0018v�8٢[\\Z`4�\u0005.�.���x<���\u0000�\u0019��@\u001b5i�U�`����^�\u000be�\u0011\u0004���P\t�AM�\u0006�����\u0004\u0013Z��;�i�gVg�\u0012Fs�\n�h�\bO�\u0000k�/hR�\u001d�;�pMC4~v������^V�\u0000h�A\u0019�\u0016\u0005\u0019|���\u0001��TpC�7u��\u000f�aƬ�m�]�\u0012�՗|nHp:\u001e�\u0004�ȩSx��\\�Ko�\t\u000b�a\u0002\"4���Ҍb�h�\u0006sV�\u000f��t~\u0017\u0018w\u0013K��˄/��_U[\\FP1\u0014�S��\u000bW�\u0011��-(�&����\u0002[P��\u0005\f\u000eG�.6\u001eb 0���,LrW���%$�8�PD�*�'߭\u0011t(ƖP�\u0015� b_\u0018NN:r�pI\b�7�PT����W!+k�s�s\u0000\u0013�����yn�!�'�SBO�޼$�\u0014g\f��34�#�`������\u0015;\u0006_�\u0013fOٓ�u�%\"in\n2�LO��\u0014\u0014�qf�A;�\u0006���۷�\u0019�c�o����\u001e��Z�]+�\u0005\u0004�*�\r\u000b�wv\"�\u0016s�|�[�\"\u0018/\u0010,�Ή�(D\twt��\u001aV�G�h���=���\u0011\u0005�)4B�ӱ\u0013�l�:�^�5�!���g\u001f�\u0001�V\u001d\u0014��\n\u001a̰�hsK~��42��ԫ�A���lx�UaZJ\u0013ո\u0013����h��\u0004�\u0010믩��v�׆��\u001e\b�����*KI� \u0004�\u0002�xM�D4��8y�݌�,�OV���\u001b�*o[�?ƶj\u000e*.@jYU\rQ\u0003�ǰ&^S> ���6��m�I<�탾�b�J&ae�c�pY�M-a{\b\u0014y���\u0004��D%(� �U˖�\u00035\u001f^��|���R���wJ\u0019\u001b�\u0006����]�[l䯈s�S|Q]�A?�\u0006���MzV�Uu�9����\u0001�\u0006��\u0012�ؙ�����lO1�5n��U�\u0004�`��-��cŹ;�L\u0007\u0002�,r\u00129��O_\u0002>+Q\u0002�h�O�%O�>�\u0007}�7�2\f*�\u0018�����Z\u001d�:;�[;��\u0016.��=���c\u000eV\u0012)�g0�Oo@�-0U+\u0000i�Y\nR�ŷ[�\u000e�1��=)��ucI;�4�\u0001�Q�\u0012\f������A���!j5\u0006\rPI��X5}�Z�\u0007�a�\u0015�*0��(�I���W�ƀ���]�u0���\u0015L��c���@g7��^n\u0017�|�ۃ������N�g�3Yr���;F=��t�f�\u0011���:�1*n�\b�;���' RK�0g:�\u001cT+Rf'Wn��\\�!���t\u0005l\u0006de�A7�\u0006̀�M4\u0007��|4@C�؜0I�m�\r�~\f��\u0006�\u0002\u0015��20�\u0016�P�P)ٛD1%�<�D=J\u000e6N��$\u00035��w<΄\"\u0016r\u0016~a\b?j��������\\��oPMC���!7�7ew�\fI�h�N� o=�5�K�¤�\u000b\bK\u001e�R\u0005�\u0015\u001c1%��g�-@�#\u001f�\"Ol%\u0005��E����4��S��k5�\u001bS�]7a(\u000f�\u0011XIJ�6g��S\u0011�8�Z}Pl��K�Q*\u0001r\u0019�\u0010��q�\"o��u���; 4\u0011���r\u0001w\u000f\u0010\u00184��?=�O2\u0019\nj}�M1�M���R+-��\u000e\"+�\u0012�\u0002\u0014\u001do�\u0013T�\"?�`?�bǂ����5Nb\u001b��g�V�Z�|�\u000fɎ\u0015��y�����!�&�B\u0000�\u0006���|�4!�UQ�\\\r�A�\u000b��z��鎽�\u0004�Jn���J�-�B�\"��\"O\u0000\u000b$��\u0001\u0001\u0010\u000b8�N���\\c_\u0017�0��mvS�!�7�ಐ�6�\ta�\r�\u0003]J�&�T�mY�Pϧ\u0011�{B�<�����\u0000���v�\u001dF\u000b�lӝ�\u0019���`JlH܊\u0011&���n?sa��ÒE\u000f��u\\z�\u0013\u0000��C��\u000e\u0007���\u00137}it7�\u0010�l�J\u001d\r��\u0016\u000f�\u0001f�m���\t7�2��Y��A5�\u0006��X��j\f?���[���s�*�=\u001eq�jI4`����\r�Ȓr9�̲\u000f\u000f�P���:�4-!�Y\\��\u001a���\u0013Խ\u0006��\u001c�<$N1\"\u001c�U\u0010aŮ��)��\u0015\u0017ό-M�=G��\r�Ϧ�C\u0015Q�h>��G觚�/�s��i}C?\u001a\u0010F;�+�[y��\u0013������ݻPF�\u0003�H�~��'T_F�z��Ȩ�+0X�nvʝI%9v`�\u0015T�\u001c��ɂ�*n���Kժm��\u00196������6��B>��[j�\u001c�\u001bM\u0000\t-����\u001d�@S(���v#�ףv\u0001�'5�\u0016��V[�\u001fi���Eԏ�v�%��7$'\u0018�'DG�A-�\u0007\b��L�N��\u0005��w>\u000f���~�\u001cФ�#\r�R�u��\u0018\u00037oԃq��lKnt�?\u001c��l;1\u0016T����=�\u0012\u0019t�W�TSqlE@���&�hz��\f?6\u0006��!:��\u0007�\u0004��\u0011\u00038����.�\u0015�\u0019w�r�!l��\u0016ڍ\u0002���;��\u001a�%��s\u0005<߅\u001c#͚� �HJ�(Z\u001e�!N�w\u000e�&�F�\rXݷ�\u0007\u0004ͭԋ<=+�W�⒍�\n�E��=�پf���0܉\f2�E���\"]���\u0002\b�ߤ&����\u0014SV�X\u001b\f����I2��p!\u0007Q��v\b9�D�1�\u0016o�r����I!�ԢH���Ի�^IY\u001e\u0012Ϲ!q\u0005J\u001b�ޑ�?w�K�\u001e���ͪ�A#�\u0007\u001c��X���G�i!���>�\u0002�2�C�%07P&;(T#���\u0015avR~w\"z\u0017\u0007\u001c\u0015\u00073a�>�\u001e�I���\u0006�Me�u��;�s\u00137���O'��C��r֟{�\b���;�^\u001b�b�@�\ny$�\u0015�^�|�\\��U;�]��\u0019�����ǻ�K]�V�6D��l���mz���4GR+\u0012VY_��c7�(�&ĆӅ\n��N��\u001fӖ\u0007_f����M\u0004��%j,�\n\u0011@\u0004��J�7�C��!A7�\u000e��^\u0005�^Sw\tzh\u001b�\u0018�A��ZE��d�;&.=\u0001i\\\u0003b�Ŭ��\u0017޲,�v��]kV���c�G�p��\u0002\u0005���#=۵���Bc<��_�ڗ\u0011�A%�\u00070��1����\u0005�H�AMܿ�O�9���\u000e`����M躻ޑ��ͼ\t��\u0002\u0000l\u0016\\��9\u0011\u0019��T���\u001eX\f'�K4��\u0010(\u0012<�@S\u0001\u0014��s�7�O�\u0001�\u000b�a�?$�-dn�\u0016v�><�Q��Jc�M�^\u0003��Ϙ_F~mɢ�^s1��܅\u0012?\u0003�\u0016�M3aAŻ�Y\u0014��U\u001b��n}�C�M\r�8B/�pd�;���t��~~��\\8 \u000fD�\u0013��9�����\u001e>��<4(�N(2*\u0013�A\u0010��I�C�ܦ\t٥\r|≯�\u0007X�O:F��)��䂶�Oʹ���\u0004����Ӳ&h\t���L�.\u0019-�r�֚\t��[�z\u0007�QP������G'k���bP��)ʚ\u0006%�\u000b6�v�Z���z���J�Ŧ\u001c���W�<��`�n�:���gu%�觪��79� ^\u0000�ġ�G��A\u0017�\u0007X��L�\u00172/�VÑ\u0015ڈ��c����E\nLm�\f3�/��\u001e��5�[�\u0006�;>��\u0003\u0012�\u0004���q���E�\u0012� {]k��\u0018P\u001cn�tr{�N\u0011�ʴ�\u0001�N�U,��n)��W��-֙�E�!\u001f\u0012�\u0003��\u001c���uR ��?\u001c��K�N\u0019�+�O��,�\u0018\u0000\u0014�!:rT���(�ً$�t���\u0005�\u0000�wdh��U�z'y�2\u0005]��.��w�QB�s�Jq��A0�\u0007����b\u000b�\u0017/Q�?O�\u000bӣ��r�A�*$v'y��#�!u\u001e�u���yF\u0006�?�\u001c�-y)���Y��\u001aQ�Sq�|�iI��xr��w�_��8,�J�ä�u��\f\u001c���|�\u001aeU�����\u0002\u0016��\u0005&D>۪�+�\u0011 �/\u0019y(v�=4}d懽��_��\u0011ac&\u001e�8��I�+��o\u0007\u001a����U�\u000b���8\u0005�0�\"�d�H\u0006��\u0003\u0013�Kg��XN�+��\u0012�W���,��\u001c|��1\fpm\u0015�Xt7ܸ�55e��]\f��cn\u0013[��8��'�>\u001by��\u0019Y�\u001aC\u00191q�\u0017��\f�٦��\u0015G�o{0D\u0014sI��4�i/\u0018ng�mrl7�(Ð��g�\u0014���AC�\u0007���Myd�\u001a�;�\u0015ω\u000f�\u0006\u0006Ľ��>��K���P�Sv���\u00030\u0015{��\u001a��G\u000e\r��}{�k��\u0012^����\u0016q}�\u0014~A���2��'���nY�@��tL��뇪�k������ﺬ�హ���A\u0018)\f�w����2���G����!�\u001e�\u001d�A��U#͉���z�{M\"p�[�\u0000���i\u0018�\u0015$��\u0018}rI\u0001QBm�g��<�a�R�\u0002.�vEm\"b/\u001e�;��G,�T�s��\u0014�\n\u0007șݦ,����I5��o0��vȢ�\u000bC�d��O�dr\u0007\u001d\u0019F\u000f�\u0012�-.���\u0000\u0003_��Ž���l�{\\���3)\u0004\u000e���L��%�u:��F��L� ��jRJX�\u0007��%����/�Ϭ\u000e\u0019\u0004\u0014�Q�AE�\u0007����'\u0015�Q�\r$\u0001E����2�_�+\u0014S�'k���U\u0018\u0012��\u0000\u0013n\u0004\u0016\tqը1�fJ��W�%�`���\f�-�5��\u0017�U �$�ue\n�0b\fEB�\"<\u0005A�<�r\u0013��n����(�\u000f9\u0001�)�\u0019ߊ%�\nE�L\u0015l>�� �t!�e:�+u\u000b�����|\u00158\u001e4\u0016���u�\nA$�\u0016b\b�o��\u001d�OŠD\u001b7��%\u00057jvH��1�z�!]�\u0019��\u001d_)h�\u0003I��/=�d�����G�\u000f\u0013���\u001b�e\u0015��:��˻̳\u0003�\u0001��%xZ�]�\u00120`1�^PN��){�\u0015��\u001e�s�\u0006�@��L�\u001b��P2�X�m��\u001fU\u0000ۊ�ј+\u0000\u0015h��\u000b���G�D\u001bJ���)\u000e\u001d ��\u0005\u0001��[\u001c6>��8�A=�\u0007����\u001e�j�`в�yQ�\u0011�\u0016�\n_��b��%ڂK�����Ӕ��h��ֿq�ֳ�:6�)V� #'Kó:}��{�ʵ\u000b���Q�wk�'YQ\u0015��P�qs�����\u0017>�b�+i\u0019 c�\"�\u0006��\u001f�X&�\u001f�G�/�h�%�B���h�L�\u000f9\f\u0003(�\b�\u0017Ӝ�k\u0011\"54f�\u0013\u001fuB�@ 4�q��ax\u0014\u000b�H[�^���K�I\u000e4Q\u0006 ��ߖ��\\B�\f�\"�QtƟՅ�9\u0011̮j��8Y���\u0004�w,���\r!��\u0013$�\u0006���圪���\u0019S2�6�D���H8,K�����ө{J_�ޠ�*�����\u0015�C�s��Х\u001d;��9oI�a,\u0012$��ls\r�\u001by7�A>�\u0007Ѐ�L�#�C]5D�h\"!|x�\u0015�m������;8�\u001bٻ���A�5\u001e9d�O�\bn�4.��_2�79b��K�]��5���[c㕅5��\u0014��\u001a}��/6\r[���Fq7�\u000eݠ\u0014���\u000f���l!$�� ?�����[�o\u0018D�}.�L������b�8![|��\u001c\u0019����\u0013\u001c4Y,'J\\Sd�C\u0007�J��{\"\u0003?��\u00043�?#�7ш��-i��ާ\u0010X���|��\u0013*[PVM�X��la���\u0005�+�\f\u0010��ŘF�J�ӚA����\u0004�\u0005�5����G:]<�:�\u0007��TW�^�G�&e@�Uٮ\u0013e\f\u0007��\u000b�\u0005��ة5.����2\u001a�:/\u0012i\u0002\r�\u0017����4��L\u001c�e��[q���A~�\u0007��X���\f��z�v�\";�\u001d��\u0007ogG��ƥ֯\u0017Qƥ�[��\u0011T_���]�aḾ�:]�cXۤ�\u0012tQ��\u0018\u001c�a\u0000�9p\u001bx��~�\u0018�JL�h��h5|B4u�\u000fУ󲓓�� ���H2\u0014��)�\u001e\u0006����j�a�DY�8�P�\u000e�C��(\r�\u0004}#��q\u0006\u0001��\u001f�p�\u0017E\u0013\u0019<~g�\u0016F13[u`l���!K�:\u001b��/�Ev\u0016'I��%�Ȇx�=ݵD\u0018SA�P)X�?_\u0013Xo'�#Y�f�,+�JT4�@\u001aF;R�\u0014���J�\u001b)\n��H�җ\u0016?�l/��p\u0004���\u0014b�0�����\u001fѧ�\u0014�0���\u0001�,�L\"#�(�#3�,�pp\u000f\u0014���/pR�\u0007@x?���\u00128|\nz�8\u0006�L�b��쯲!~.O\u000e�p�&�\n�eA�f����h�J��\u001c����\u0001[H\u001e��u�\u0000�A6�\u0007���X�m_�W��䷫.�L��\u0001����\u000b!��\bοvٝ�Ɖ����(H\u0014�\u0007�C��`'A��v5�N�n�ܯ+\u001d����Y�rJ(\\\u0012b�9�\u000b�)��#z���J�M\u0004�\u0002��\u001b\tG�\r��[N\fmWH���HSx�\u001d��(�#�j�7�6�j\\rRi&N'^�L�- ?���䕳D\u000f�k�bw���8ȧ�$���\u0018\u0003�-Oy\\��ز#f,�\u0014�@SeK��8Zݕ�l�X��_�Ʒ�-B�\u000b۷��ÇC������#J��R8��ֻh*��L�w�^\"�\u0007�'�EM\u0001\b�7$�NG�J�{\u000b#%�\u0014��Y�\u0006�\u0002�_�\u001c8�ų�k\u001aU�\u0013@�s��l,h\u0006�����EZ\u001cʪ�b���w\u001c7`�y�p@�E:y\u0011�\u0014��,�vDA�\u0012�\u0007\u001a?\u0010\u001cmy��q�a�^Q4�\u000f&�Ӟ��g\"�0��,�܅V���\t\u0018@\u0019�3Nߕ��\u000f�oa�l�ϬȔ+\u001e��]��A9�\b4��۹�Af�]pE\u0011�-��[ҧ�HX�\u0001��Յ�\u001c��Ѯ�\t\u0004\u0003z� �z�Q�;\u000b��?i�A4N\u001a�`ͳhȳK\u0001͠�Z�X��f��>�T\u0005N\u0019ek.g(\u0010�r��,0�ځ��J̽/�������׮\" �On͑F�X\u001bLs��(��AE\u000e��\u0007w\u0018[���\bw����\u0017�R*ܼ�����8Q���NX�tGZַ\u0013+��}c�Q����(†�\u0003��\u0018tO�z\"F\u0002 �Ig2����_\u0017���h]�'\u000b�v�7��7\"Ц.=\u001c7LA��{���4O��AG��$��\u0015\u0005�z&{$\f)�\u001eܱ�{�w\u0013\f�\u00194��\\������?\u001d��\u0012�bRP��\u0005��|�%�A*�\bH��L���|�#�O\u000fU8��0�N�[�a��\u0006~9��f�\u000b\rKi�M<�r���N4���#�J�8GF\u0004񔁸�\r�߱7��TnU.�\u001a�EqQ�\u0016�VT��\u0006\u0003S��\u0007� �����?\f�vげm\u0001�v�YO��\u000e����\u0016���\u0014�뉑3��y��\u0006��/P�i�~bĶ\u001b�T�a\u0010$g�M�\u0000��B\u0006t\u0011\u000f�FO�1\t!S��S��}am��l�@�Ћ\u0002)�Q ;���5�p톎�����O/��j��\f���Z;\u000e���%7A��������o��\u0000��I�\u0004]\u0012�\f6f�\u0016�!���\u0000�(�\u001d�<6%���2#}��=Q�P$�\u0010TM;��A1�\b\\��My��X��:�����>bf��\u0011#!w*\u0005\u001ff\u00002\u0014Q�Ir\u0011Z�J�@\u0013���\u0001�\r^���_+^\u0013-0\u0003V3��\u0001R\u001f�Oeи�@uɰ\b�'q\u0006�RM\u001c�-R\u000f�G�1���S\u0012\u0002M]e�Zz}~2�ąS�,\u001d�c6|�\u001c\u0016�3\\^�\fck���\"�h�\u0000–�Aͅ\u001d|���mF�g�\u0002\u001c��\u001d]2��3Yƒ�}*�bq=J\u0013a~~\u0007�~��?���5�����\u0007� �����\r��\u0015�m\u0002\u0011���ν)�!\u0014�\u001e<���N��\n|��S�\u0005�K��ǭ�����Fp8\\:��\tx\u001fmx?��<��,�3�]\u000f��y8�\u0004�E\u0013\t�3\u0001$g�v�l0Ƞ�/Q]�2e�A4�\bp��۷\u001fl!+f\u0011�_�ed�_�9�)=HK�B�b��#�Gv\u001aˢ\u001f\u0004�\u000f0k�au\u0013�F4\\��s!\u0015d\\�9j���~L�>���\n_\u001f�*�I�YO\u0006�(ؘH��6Ğ(��\bY�.I^\u0000/o�i^a�\u001e�\u001c̵��50�pq��1�|\u0002���ı����;H�\rbc���e�1�\u001a�\u0015aP㤕z�1��G��q�\u001562�hbv��dzl�K� d�$\u001d\u0002�\u001e��=���M��w�\u0003���0\u0000_�ć��Y�\u001e\u000bq\u001c�\u000bg���f�}�u\u001fơ+\u001f�@�|��6Q\\S��WO^��B\u0010�1���W��S`茊.Q����/���\u000e�\n�����T]���ۅ���c�����p�A@�\b���L�8\f\f!\u0005\u001f\u000f�n�O<�m�A\u00136��\u0019�L.ܹ�\u0017pm�\"\\\u0018��%x,\u0016��\"(��]uѱ���Ԩ_�\u001a�%�*v���V\u0013�]la\u0002\u0006�m��]�� L�st����O}:�}/S(�Q2�\u0005^=\bڎ�B<\u0010\u0019\u0004�k\u0002d�\u0017��\u0018\t[Z�����\u0004g���PG���\u0013\u000e�e���7�����X��/x���^\u001fh1�����.���\u000e\b=�}�m^>;#xG���{\u0018@$�m.L�=\u0010e��N�f\u0018��8�Q�kJL�\u0013�t�sc\u00035:ǀ{A\u0014G�i��#��WԳl�����1���)�\n�!�8����\u001d�3�\u0011\u001d�K��B\u0015D�\u0007�a�\u0005>ϋ���\u0015�D��\t/JS��c\u0003Mv�AK�\b����Ÿ�`�ӎz�\u0001\t�U�\u001c�E�Y0J[n'����۸l�3��nU�\"�]/|y�$��7\u0004\u0001�r3��j\u001c2\u0013^CQ�\u0004Pv��p\u0006��H.�DZ�gJ\u0004��J\u000b�I�x�\u000f�Ժ,�T�Ł�π��I�qjϹޱ՚9j�W��\u0018M�\u0001\u0013\u000fB=�.�t3A�����8���ڒ7���>�H�K���up4V�C&�U�j��޼[X��*@���r��FZ�qE��}\u000e�\u0002�6e��!�_N�)�d����Ȉ�cz�\u000fp��\\I:�c\u000e\\]�<\u000f\"\u001a�\u0011`�cw���wߔ\u0006~D\u0003'�'�NR��`A\u0007Uk����\u001c�\u0017\u001b=�`��$��H*��Z�w�S�zuZ?��V��\u0003�e3����:zc��\u0014���p�A\\�\b����ު��tP\u001f٬��^\u0012��\t�T\u0010.7�!7���/\u0017\u0005mw\u0004=z���m�*\u0015\u0003�\u0007K�q��Rt��U:\u0011u_\u0013\u0007�K?P�����,��h\u0004�餪m�~S�\u001aՓE!��NhL���\u0005h>\u000eۢ�ª���l�\u0012�NZ�(&`:M`�W�_%\u0015P�\u0001�\u0019����'�,��X���\u0013O�ũ�h���,�Cb\u001e8�\u001e\u001d�s^\bNIϘ��j��\u001a\"�\u0001Y�o���-�[Q;Oc��i\u000b�<��z�QcI{�_\u001a�m��\b�x\u0010��\u0016z��\u00173�#F��#�b\u0016f1��L\u0013\u0012-V\u001cY�FR(��W\u0017�,�(��\u0007l���\u0015ō`\u0004��d���zBT~�Y�G\u0011����e�.�oc�\u0016�13��~�\u0017Vw�\r\u000f��\u0011\u0004\r�DV[�<�n���*�_�\u000b\u001b���:n�A]�\b�����+�2Ѡ0�\u000e�j�45J;\u000f�̛po\u0003�\u0017����H�Hs���\u0005^��\u0018X�����\f\u0011�1�\u0018��\u0016�h�-C8�ErՍ�����������@�C�����&.�\u0006�)�1�N\u001cf\u001d�n�\u001fI\u0015\u001d�\u000b0�s\u0006z{���\u0019�\u0005Vp�\n�ߓ����6�̬0�~l�\u001a,����P\u001c_*��[\u0003Eb^�r������a8\u0006>�B�\u001fDJ��񹺍�\u0017�c�\u0002P�3W��*����ac�d��k�\u000f�u���{�2�&��FW�G �.w�PÄ�i���;��hEp'����t��p�Ϥ\u001do�}����d~�Fn�n�\u000f�\rgt����\u0007:\u0012B�\u0017\u000e\u0001�+����c��\u0014�\u0010t���G�t�\u001an�N��\u0012�BGe��W��u�\u0003~��O0D�+.I;\u0003�\u000b��!Zy����\u0003���Bbc\u00074GF�=Kη\u001cu���<3���\u0002[dH��ݧ^�NzH��A*�\b���M.:���\u0000-�\r�\u0019h\f�E�x�3.e�)�k���q��\u0014{)�����9|F\u0004#�Kٸ\u001b��nb��~?�h��q�RTv��oI���\u001e�j=�k��8\u0006]ԯ�y���*�\u0004b\u0016��q��E\u001a\u0011�\u0014^���rO���yq�}��2IX;<�]T�dH�_��\u0015\u0000��ѷnˆ�\rl�)�\u0015�\u001f��#�>�PK\u0010��X���\u001b\u0013��[�M\bp��\u0015�\r�\u0002�/�I�x��\u001f��\u001cj����\u000fM#i\u0007u���\\G�\u001a�e��l����\u0001�EP\r\u0018�������\u0001��F8x5#���>�\u0004�cF�|�u92�ǎZ�x,m)�M39܅�K���{����0��?�A&�\t\u0010��L��\tytL�꯿\u001eԧVs\u001c�;Z���\u0015�\"�\u0002��G>���\u0015��iC�㖏��z~q\u0011�j�\u0018xr�sJsr��b\f+�n��4��_s��`'�F�f\u0007�i5y�#xK�ƕ�@����\u0005�\u001e�2��6�x�\u00070��������'���Գ�7�)��\u000e�!�!t�\u0017��8�N2��\u0013e��\u001f��\u0007���\u001a��g:d\u0018�T�-A\u0015��ۡh\u001fS�o���\u000e�\u0006naeU� �l5�ޕ:��t z\u0015�w���V������������i[���:n=\u0019�_zӜ*lx��M7p�2��\u0007��\u0007\u001c��.� �\rj��}\u0005St�V�������i�'�ۿ�A&�\t$��MY\u001eq� ��\u0004NMɊ:�-.�T�\u0002��\f�\u0013��-�\n$�\u00133Jܓ\u0007\u001c�s4�\u0003\u0004[q\"�憳�oS4\u0015iV��ʃ��\u0015�m�s���E��t\\(6|�\u0012���&�I����\u0004�$������\r!scTL�\"\u0018�\u0003�iXf�\u0019䡲��2rIk�Z�0���l�%�\t�{\u0013]2�\u0006��\"\u001de'�MT�w��=\u0012���o�r�z\u0010\u0012�\"R�\u0015����f\u0014Y6qA\u001cI���VK���54P+{.��D�(=Rq,�|��Q?1C����‘.?��a� q��:��}�G���6�C �P�3�\u0000<��P�_�]\u0013\u0015��ܴ)�o�p����^nŢw��A\u001f�\t8��L�̏���g\u0010�)��ʠX�,�;�dnW��i��(�d\u0017�\u0003\u001cn=1����\u001f\u000bn\u0014\\n \"�7G@\u0017�(�j\u0017�3��&y�\u0010�62D�`�zu�E��7fTyx\"��I� \u001cZ\u00042�v��m���z'��P���\u0000r`a���/�m�$\u0007�U�'�'A�N;��h���[�x�\"r掹m\u000f~�\u0007\u0007�\u0017�9��\n�H\u0015�q\b!�K�� �~\"B3��d\u0013�+~���\".�d`�F�I�ĭ�\t��6\u000f�d\t45�HOc�o��ȁ��/�%�-�2\u0003��\u0012-����?�U\"j>\u001a�\u0003g�.��!\u0002i\nY��\u0000��#��S!R��A\u001f�\tL��LǷ~�g��P��w�]x�r\u001a\u0014dW\u0003��Ґ�@2�Q\u0016쩺�[\u0017���B�7>�����%�7\u0006��?\u001do\fT\u0012T����Z=7��Dz��A\"~�F���&�\u000b�\u0015�\u0004`���>\u0014��\u000b�d�q\u0007���\u0012Z��\u0015�u痕T\u0015j�R��\u0003�0�F\t\u0016&\u0004k\n�\u0001&�\u001bTp���ӁVB\"|�\u0004��8B�I�\u0014y�\u001dX�v\t޳�y\u0003��g��=�}x�����8���TB��ZX\u0017C�ץ�웒�Xz���O��V�\u0005��D܆��\u0010\u0004�g#\u0018աQA\u000bJvb��\f��ˆ^�\u00071�\u001f!�껦�1�ȥ\u000b�旧0\t\n�N)\u00176�A!�\t`��L�rkc�~��\"O�>�l��ěQ4{\u0005���.�U/��m�\u001bOd4@��Nװ`�@�U4Oѡ�oJZ\u0011�\u0015C\u000b�?\u001c\u0015^H�q�$�';ZW����b�(�\u0004�}���?�8�GQ\u0002)��[-;���,\\���XB�x\u0001$\f�UD\t\u001f ÿ�\u000f\u0000+��\u0014캼\u0003,�Sgg\u0001��p�L,V�\u0010\u0013\u0007�}���\u0011��\u001a�~������r�!�0��$v\u0004D\u0000�oe=�Fhc���N_\u0010��\u001c�.�\t1�\u0017��M��迌^Y����f�d|6�Y�V+�\u0014��kC�P����S+�\rIkx:�I�!���\fє�xNH�\u0014\u0005E���\u0011\u000fʣA\"�\tt��X�3���\u000bco�?���<�j\u001dY�\u0015���V�8�=UPg�\u0013�ؖ�g�E(�<�6�\u0010\t\u0013U�\u0007Ȣ_\u0014'�b�\u0014�wƄ��\u0012�#<�� x�%\u000b\u0017�\u000f����q4B�0�!�����<�%��xػ�GHwI��7/Æ\u001b\u0015Dr\f�XK��e�c#\u000f��\u00179j5�\u0014���N<�\u0002{&�-�9�g�}��i-�|�����_�R\u0019��\"\u0013G^�[�\u001c[�XD\u001d[�BL� �\u0000Эkq���\bO��\u0006�ZC��\b�|��q\u0002�����\u00059��m[�\u00005S}<�\u0017�d3cB\u001a5�\u0001O��bW\u001f�Z,�\u0004���\n��\nS�?��~��%�+b��A5�\t����\u000fi�E#\u0018�\u0007L2\t�ir��\u0004A����9�#\nNJ�\u0018��w㓟2��V�\u001e�_)�.9��t�>��\u001a��X\u0011\"�G�G��@d&'\tc?�4��]�Z�+�\u0018*�9�?\n���\u0017�Ɇ�C'��7�v�L\u001a��!Y\u0005\u0001\u0004?���L��\u0004<���\u000b������P�\u001c4u��zA]*�\u000e]�xQ�#\u0004t:S'L�F�\b�1zy5��>l���\u0012\u0014�%^]k_}h\u0014�51\u0019�Հ�}�H@�ayh^ʭ\u0010���\u001cxTo\b���YD���V�0\u0017�\u0004��\u000f�>CJ=l��-\u001c�_��vn��;�ς��\u0014X1)'�\n�95\b�Q\r\u0016\u0011-EX:Zqy������q�\u0014�y�����\u0005*:�7�!�\"\r��m����\u0018\u0004H�\u0003�K�<.�rW@<\u0015qN=#��\bj/�x��V����-�{�%��=Dyt\u0015/7~��)���#�3��T#~}�,�\u0014�gsV����!X�u\u0003g��֬��z��;\"t�S2Ϥ:��$y�\b\u0011w��z\u001c�̾\u001a7�#\u0017N��\u0001�I� � \r?����I�AM�\t���Mt�'�I�\u001f�L�\u0016O� ��9��t\u0015\u0001�J��Gִ�sY�8\u001a���P�t\u000b�q;\b��EV\tb��V\u00101E}/��\u0017��>Ώ��.�ñ�3�n����{���%��r-�P��u�m��̨C޽\u001a�\u0002?*@��\u0015��Я\u0005�{�n&�\u0010��2_���gԅ8��B�q�2��\u0014�m~{2�\u001c��\u0003�m\u0011��\"Q���u;^¿p)��͇�c\u001d�\u0013ۯP�\u0004Ű�]P\u001dj_-��,���/β�\u0013����\rl+�W����G۝\u0007\u0014��6£\u0015S��Ƃ9��VP\u0018\u0017�φ�\b��r\u0007d�\u0000y��2aqj.�8��e�X\u0011aZ$�h���\u001a\u0016���\u0017G�ܸ��\":\"\u0002�{��״��\u0005\u0013\u000f�Э���\u0002R�AM�\tĀ�L�Ng�G�b�EZ:�r\u0011�=\tLzn��l��q��%h��\u00062\u0007O�\u0003-m�\u001d\u001f�\u001b6�T�V\u0015KW���Uf����,��1KL{@�,���\b�\u001f�Ƚ\n!��U�\u0001u�*㝂(�CO�5��7D˗\u0006w\t{��\u001cj�\\�r�N�+�\u0018)ET2��4q��=�n˓O\u001f���\u0005�r\u0002Q���V4x��\u0006;ԝ�%\u0019s�1S���L5���{8���G�qRc�ǫ��\u001f���٥x��0�﯊�Y�PK�\u0012����\u0015�\u0012\u001d���\"q\u000e�A�H\u001f$�V\u0003�g�\u0003�As\u001ay\u0011��R\u000ei��{�T\u001a�{�\u0005�vZ�c��_�\n�J\u000b\u000b��D$�o)���2ˑ�V\u001a��jBP?+�HǸH7|E�{�N52h�\u0013�\u000f\u0012J�'\u001d��A��\t؀�|�siQ�H\u000b�K9�a'��ڠi)иh>�˖\u0016�>ұ���.X��2�����#��T\u0017\u001a4x\u0016\u0014�C��l���'F%BO�\u001e�T9U��vO���\u0006���:��`��G1\u0002\u0003�=�q\u0017�}θ��_d����9\\{�u��-w��\r��N��((\u0017\"Y�\u0003��?ڮ\u001aHT\u0005��G�'$�Z�[�B*z��n��������.A�z\n�|��j&�~5%��0�q�|\n~Mw'\u0004��P쿏2E�h��S�/�f�\b����.���\u0018mĐ��\u0011�)�Թ҉p��\u0004[�4�F.�\u000eF^qꩠb�j\u0018S����b'p�f�\u0000��U҃��\f�+m���T\u001e���n>��W�\u000f\u0013�����2e�m��;��dB���Tىo\f\u0001�[\u0016T\"����\u000bU��b�\nȗ����\u0017h��O�s�\u001f\u001e�R�N��H\"g��h\u0003�\u00115�}F�חҔ�V��H��zo\u000fC�~�\u0010� �Db��}[P���PU�\u0013\u0001�A<�\t��1���W���2���R,�\f�p\u000b����\u0001��\u001d�Ȩ�\u000e\f���\u0019\\Ns_�Rm��\u0004˶`�/�s\n��\u0007_�?��\u001d\u000b�\\�\u0006sE�Q��ןm�&�ф~%�Jb`�J�Tt�H�>\b\u000bw�Ƣ$�{�3ZC��~.��&~w�tb�\u001d����b\u0012��V�\u0015���%\u0003ot�*\u0006m�\u0010k�{\bO\u0003��kV�X��G@� \u0018�0\u0018�]~J�9�\u0000�1�'D]��6EZ����\u0018��V�?h��T��@�[�@\u0002�\"�J�.\u0014l8��rD�A,�\n\u0000��1�z\u000b*\u00051|�\u0019�l�3��\u0019�\u0015|�QQ�<�d�\n\u001aSu\u0006\u001eQ\u001c\u0005Srd\u001e��\u0003���DIlIE��\u0001�\u001d��yc�t��D_ ��o��W\r\u00195/��}r��\u0002~��L#\t\u0011����&:e�L��!\t���\u0017\u001eh���\r� ��:Ά\u0015F�cRڡNrf���\t��\u0005�H��IJ�Qx�\u0002ުN)27\u0005Zp\n���0�\"��-X�/l�}V\u000ew�P\r\u001e�M.],Aޫ�����~\u000evl�\tp�F�x\u0012���� M�\rhԑ\u0018Zi\u000b�'�3\f�����I\u0002�;{ಇ���t\u0017���׳-�U\u0015]%�\u0007��\t6|�KR7\\Rg�4�Y|<\u0010\u0013�)��U�\tIR�A*�\n\u0014��L�q\u0002��\u0002l�yu��\u0013�%�D }�x�F��B�����M\u0018:��&a���!�&ƛ���t��ٺ���#���N\u001dY�fo�Q�\\9 &'Λv�c!����w��\u0015�j���F��Tx\u0003�)h����'\u0006�C�*UF��.�r6\t�\u0006g�5A�\u0003�DWdJQR�i_z�-�\u0014�\u000fEu�^�9�Z7�\u0003���\nX��(F\u0002dr�*~������D�4��Y9�\b\u0012]! \u001a\f�̗�ֻq{|y��?0WN\u0019�4�@榥���G\u0005�{)�\u0013;�*��St_Uh��hr�@�\u001fW��\u0019���T�\u0001D\u001fZ��E��k7���K���_�m6m\u0006��\u0016\"����\u001b�A&�\n(��6y!�4\u0019��[��+%т�\u0004�,��\u0005�H����\u000b��^�9Y����\u001b=��z\u0010OZ��wp\b\u001d7�\fo{��\u0018���O\u0002�SΣ\u0014�<\u001b+\u001a��j�\u0017�p���漇\u00189�ga<��������O A\fU��\u0002�\t>ځ:•\\\u0017\t�\u000b��7J�\u001e�jj�M&\u0005P\r'�s\u0007\u0013���TB_rf\b�\u000b)�O��6)���/��\"�ƛD�x�JCN\u0016\u0018��&{�T\u000f�ۀ�fR; V�\u0015N�\u0013�c�l��\u001d�+��_�\u001e�\\\u0014ΰ.n\u001e�}E�Q��u��y(3\u0006�E�x9�\u0018g�|�Y�\u001e@�1��&\rJ\f\u0013�8�����e$\u0006z$�SL����=�\r9\u001fO�A&�\n<��X��@\n��H�d&D�f�)\u001aG��9L(�ג�\u001a�̋����\u000b܌\u0003\u000e1:��6+�<��f�+\"�\u0016�\u0011ɿq���m7�\u0019�F�ٕAQ׉n��o����^B�\f@�/���Y�2�G<>���\u00151�U�\u0018$h���\b�\u0001p7\u0002��\u001cר�q���\t���c��&\u0001��4YSz���\u0011d���W�������9�\u000e\u0005ˮ9b\u000e2~\u0002S�>52\u0002w�L\u0014�'$7��\u0018r�]\u0007���:&F{\u0017#o�\u0017\u0001��-�IT��#����\u000b�Ó.��\u0013\u000f7\u0007�\u000b\r������'\u0014�3;E�U�\u0003��U\u001e��\u0017=IC4\b@�U9���\u0013\u0000�fL\u0012e���\u0013yPB�A*�\nP��L�\u0013�P\f�\u0003�J\u000e\u001e�������1϶�n�/=K\t������\u0002*\u00145c?o~�>��\u0010\u0019%%4b\u0015�o‘���F���-��ј�4�sm_�9ﯽ��\u0014M�\r���\u0012�:\u0013�k�-� �Ќ�UH\u0002�\u0005p�8/��\b��\u0016Ŏnz\u0017~��\f�\u001c\u0013�h�\u0017=˞\u001c)����6�s��.B��\nU\u001f����\u0014����\b�8�\"p\u0010e���Q\bq�W��u��9s��eJ���h�I\u0015?Z��;���\tq�7��6!;��1�8��]�n��I��&��\u000f��7�Q��&�g��LQ�\u000b��]�R<��A��|���K��u\u0015�P�83r�*��#ۗ?�_��A.�\nd��X��fk��\f\u00055.\u001e����:������\u001aXV\u001d\u000eq����\u0013\u0002�\u0006-�o���(�ـ��e\u000eV�v)&�\b\u0018���%�\u0002Y'��lB�,�V�hF��G�\u001a{8���\u0010�\u0017����\u0018Í�\u0017���\u000f�ka����?\u00126����ޒ��\u0012zpi+}ŝ�2W�oz���02\u0011��\u0016D��%��Bt�}�G�s�;\u000f��\u0005/_#�.�n\r\u0014��F�HY0���\u000bI������K:{Ͷ\u0001��Z��F�\"r�\u0007J���et\u0012���\u000f�n+��hO\u0015\u0006��~r�s�&)�H���1\b�Ll�!��m�3D�k�Wh�\u0004��?�+���,�SՖ�\u0002^�9S\u000b9��\b�\u0017p�A\"�\nx��L���A����\b\n�4E�\u001f��H\u0014�\u0002�O�9p\u0003B��ƻ��\u0019\u0012�>�;��I�o�0�\u001b,\u0010`75\t)��t�\u0018ȦB\u001a�@�%]O\u0004vu�;-�=}��\n��JmV�\u0013Տ��3���h?�9�s�ø�H��ǒ\u0000O\u0011��pg��\u0002\u0015��v��bս��!�ͮI�oRc.U�I�0���R5\u0003~�l\u0015����B�%�a��7�Q��˜�y�-aTeHH\u0011���*\u0016uk���e�\u0006A�-\t�6\t\t{��;dnUX{H?��o�\u0019�ż�'ᅜk�K\u001cf;}&t�:|\"\u0006 ���IJV�N����V�+\b�:X��\u0006��_��z\u000f�ңA\u001d�\n���Mt��Y\u0000w3ɩ�=\u001e*D_�}�c\u0006y����,�I�\u0015������J/�P�=��J��=��7l��\u001f&��:)\u0016��T�\u000b'�} I\u0017,\u001d\u0015��T��3Q�%��-H���[�:@�ܤ\u001f\u0019/�\u0017�\u000e�9\u0006���[/�����\u0010�����ҿ֏���e\u0005��q�\u0019N:YS6B�^z�\u0014\r.:� �\fw\nԲ%\u0018�\"�+6�\u0015�s�ۚ����\nN�x���\u0012��Ta[@��\u0001�\u001d�g��`��eq\u0007ʈ\u000eh�B�ś�V��\n��\u0011,P��O�\u0015��k��\u0001�U[�}I���ݤ�׊w7\u0004`�>I��P&�DLJq�\u0004�\u0006M��\t�A\u001f�\n���L�6��\u001c6�� v���[�\u0003^\tcj����BC�WS\f\u001e\u0002\u0010>.���+�Vo&��\u0010�.�j!b\"]��Y�iG��x���L���{\u0002��\u001a�c18|���\u001b�\u0014O��\u0007\u001bW��'�F\u0017�U~c7�䯧�9�,\u0015\bL\u0014eV�baV_��!��\u000e��I�\u000e��H⦕\u001b�g8\fL�V卯\u001di_\u0012O�\r*�ZB_UR��\u0001��3���+�\u0019\u0000�TY�z\u00117T聭��\t�y\u000e��\u00011\u001e~\u000e\u0006O�pIz��\u0002�\f\u0019þ�zƯ\u00176\n5V�IR�vέ�|(�\u00121�\u0010�Go\u0016��o5\";����_/\u000b7݇p�����\u001a8p��E�k-ӣA#�\n���1���k�E\u0012Er5\u000b\u0011\u001c����N&�� �[�&[���� �1�^��\u0013�:\\\u0005\u0001�X�>!�.,Reȋ��\tPM.e�>,G\u0019\u000fBi\u00142��mS�\u000e�A�zy9+��UKt�#\u0007F.�'��\u0015�\u001e�gE]|��BM������\u000b&/\f�o�,��c��\u0015�T0��e\u001e��V|.\u0002hW���kĥ�\u0012�S0j�A�#2\u0011���ᤷɅ�Y1{\u0007A\"c���wV�+���P�\\:\u000b�(ɬM){��\u0013�\u0007��Qg��� �����O_�\nچ\u001c4\u0004>\u001d�<�����}����I'�\\�NA\u001e�\u0011V�]�y��L�\u001f�q^'��\u001d\u0002\u0012g!x�5�A(�\nȀ�1�wb`��\u0018�oXiga�D���ZP\u001a�e|\r\u00053�\u0004\u0004Q\u0019�E\t?�Ռ�-=\u000bb�->\u000b��Q�a)��;��\u000b��2i�d\u0005\u000e>\u001d6\u000b\u0012�\u000f�i�[\u00004�r܋�j�^�w�\u0006K\u001bjÙ'�\u0015>�bF&\u0000�/�+\u0010�hv����$�]\u0016���I%0҈+�Y��\u0003���j�.�b��o<�\u0003^ǫ������gN\u001c��e6\u000b�s���\"\"��IH��9�\u00151�\t%\u000f\u0012\u0012zV{e�ч�S�m�=��\u0019��=O\u000b$��Z\u0000�\u000eȢ��fޯ��g\u0000!͙2�\u0000��3�M.r\u0013*��\u0010:E�?�����\n�{G^��^�”��\u0003�l�;�m9'zÙ��A\u001c�\n܀�X�*C�&��_1J�$z}\u000e\u0010\u0002}��ƚ\u0013A2'\u0016��\u0002�3\ts�\u0017�;�����'!�\u001b��_ϗ\u000f���0}Aߊ\rv��+8k�J��\u0006�ۄbt;tz���R\u0017\u001f.>-@�2\u0012�p��\u0004,'!�dV0�����J�M\u0016\u0010��_�J���}\u000eZ�\u0016�`\u0015�K���緒���ƹ��D�P9�;Q�f\u0001�<ܵ�Ct\u000f�g��Ǎ��if�DȆ�J\t�\u0001\r?��d\u001c��B�f\rcV\u001eI���;U���P�\tCx|��O\u001e\u0014H\u0000h��vt�;�\u0005Nt\u00155b�\u000e\\\u0015\n�3=���(һխp��hM�t�\u000eS&J؏-�[\u001c�l��A\u0010�\n���Y\u0001��+9�f�\u001em�>���H�C�\u0006�I��(Hq\u0001Y��9�\u0012c�\u000e�������H� ��\n���Q���?�\u001a�\u0006���1�#��\u001b>;;\u000e\r\u001cnƅø�\u0003�%9�z��ߜ�\u0007�Dڗ��������x[ic� .SU�F����A�Ț���zVX'v��=$��������\u0001\u0011��A��Z\u0006p\u001e\u0015�\\�f��.��t�\b\u0019\u000f���t9\u0002��پ`�d�xxȘ3;7`�\u0001���\u0012���\u000bG���#���oF��%��\u0000�\u0012c\b��ԉ�R����\u0018�-��=�@�>5��3�_��`������B4�ǣA\u0012�\u000b\u0004��X��07�]���q��nu��*�5T^p=�մ�WLgt1��3|\u0004�*#w\\���>�\f��U����qk<��TN�ZE�=�y�4M;;\u001e\u001c\t��\u0007\u0018)\b�\u00064������PD~�9W~@h:@���}�c(k�~��\u001eN�i��[ih��&\u0001G��$\u0007���|\u0007�/х��x��S��{�W�2Z��1�WT�Ξ^�)ڿɒ�\u0007�S������l,BI^oо����L潠D'�\u0010��S3�b�rb� *9��QKE(_Q\u0017)�¬j\u0015�}s/�!�\u00065���\u0007�ZIX\u0012$o�ȧ\\���\u0007?��X��A\u001f�\u000b\u0018��N;�\u0017�Z3*\u0016u�q\u0012v�+\u0006�\u0002s,\u0014�,�Q_h�I�\u0002�\u001d���Rj\u0001˾#QZ�\u0003)\u000bN��ĔȪ�hB�Eގ�d��\u000eky\u0014ֳ�\u0003n�\u001b_�\u001fR\u0014ć\u0007L0uuf\u0005҈�j�#���\u000eYҞ���\\3�\u0006!z(e\u0000���1��fխl|�[]\u0004��CT.\u0019��\u0018�8i��������o}�}^~�,��\u0007�����?M�t˂�q�bR�ĩB;Ý�I�b���g\u001a\u0016:N��G��&\r��*�z�C�\\���|�\\&R\u0007ɕ\u0002\u001a\"\u0012\r_ \u001c�\u001d�h�A�LƑ\b��B:��\t�֣k|�\u0002jJ[��]�G�\u001b״ĸ_�;㇣A)�\u000b,��L�\u001d�^�>��@���ڇ�a�;&~�L��\u0011��|���\u0006\u0005͙��\u001c�\u001b��\u0005��(���g��n\u001f\n�\"U�=\t,#�XDdZS\u000f\u0011_�H��ԋL ��b��\u0010�\"���V�\u00002��R�_�Ky���З��;`�\u0012]��l�\u001cn�ߴ�0�qV_��d����o���\u0012\u0005q�BEz#�\f\t\t�uh�R����.\u001c����ߺ8[�����,�Z9z��h����M\u0013|ɑ�}G+�\u001f\tw�b{����d��T��UȜ�Ȯ Ѣ�\u0002�\bH\u0006\u001d���:����\u0002`�M�5��(,�f�\r>=7���Ƿg����)�\u001c�������1\u0013��ѓ�A)�\u000b@��Mu�ݪ轕�:+�\u0003�)��\b�`\u0002�\u000e!T�,]j�ϧ2bI�\u0014��n;��Ĵ��G��\u001a\\6�¨(s���O�3����<��\u0006\u001bJ�\u0004���^�\u0007�(@�ぷd�\u0018հ�\t\u001aa�\u0016�;\b?O�,���-�%�T�b`�!ܻ>��\u0003ٜ҆��̞��Ӌ0Cӄ�i�Q�༅��Hgq�X�*�DüK4���˄�Ęu-Z\u0006����Y�Ιɛ��$�\u0018>J��@�#R��r�1W�\u0017]���y@e<���fFi\u0002lH��BJ[0�F\u0004�y~�\u000f��!�]:4\u0005{䞿FŦ+\u0001��\u001f��\u0003G{\u0013Dŕ\u001aG|J���\u0019�4\u0014�!c ��A|�\u000bT��M0̔�Ss�1m\u0004�������5��k$�Y��!�\"tQ>�\u0006/�G�Yk���ѭl/l����ۡ\u0011���Y��!q\n�&\u001cx>r\t�*)�~S\u001ax\u0003\b�*�{�T�A\u001c�A\f�\u0002Q�5��a��w�\n��l��-���{\u0004t�m�МΥ�\u001a�r\u0007�T��Ĵ:`\u0002�\u0006a�\u0003�_\u000e��][ũ��w*�.���\u001f\u0017�����ں�)���ϾW\u0006)#\u0002e��pT���M�e�\u0010\u0000­\u0012A��\u001b/�\u001d�Ғ\u0017���j�\u0007�!\t\u001e�AE=�U�\u0015�t��!�\n��m\"���T�H�(Ȭ���B�.\u0003���������$\u0000z�����ޓ\rݖ�s\u001c��Bc\u0014�\u001a�<��\u0014�s�آ��}B?�c^\u000b-Ƃ\u0003���A�\"�L�z��O``��əQ���_Cڀ/\f\u001f\u00193o��؃\u0006�6\u0006�\u001e�f�\u0004�m��h��N�N��AP�\u000bh��X\rҤ\u000eA{����q$��\u0014��H����W{�|\"�Z mp\u0011uW��(#���!D\u001e����w�m�Q��o�{\u0004\u001dɗ�*L\r\u001b����)~�H\u0000�[��,�\b^`�sUK؆:<�$5tmY����5��%�\u0002��/}�t?��y�I$��S;י�{�C�����\u0013\u0011*@Vq�ʅ|n���\u0016�͗\n\u001c晽����\u0004=��\b>CC���������ƒ�y�9�����K#q\u0002٦�\u001a\u0003�~�-\u001eʠnp�ڑ�v׺��\u0019�������_���F|]�����{�\u0010|�6o\u001f:�K,\f�+q��2������Ư��֔ۙE�cn\u0006�T�~\t�\u0000\u000fZ\u0014Ԇ\"\u0019��G�\u0002�`�W��'kn������T����A\u001c�\u000b|��L�4zG\u001e\u000e+�\u001d��\rI�CB(�qvK\u0011�\u0006ӛע����G6}�\u0002f\u001a�\u0018\u001a��\u001d{'E�\u0010��\u0006�\u0018��$�8��8(�S�J�H\u0000�x�\u0012Q�\u001c\u001f3a:�z\u0016\u001069�\u0017��\u00171��\u00063�\u0014�)'���\u001a� \u0006�N��\nZ���ں�\u0010��^\"z�� N\u0013��\u0018�p�X[�\u0014@\u001av�\u0011�vgYJ���Q{�k�%:�\u001f%>T�։\u0013TO?��%�3���2��\u0013G:f�\u0002�����9�{\"��<�\u0006�n'/�,aaI�4���D\u0016�c\u0004Ɨ\nC\u001bM�ΚoS���Ō\u0003>�ݮ\u000e�In&P��\u0014]n�Z�ͪk���;�N�NK�'��A#�\u000b���6kdk�?z�|�\u0014�@^\u0003Q(ŠHp\u000et�nL# ��\"�F�k\f�\u0011QP=q�o]��w�_s\f\nR,�W��$�)w\\y�,\u0003I�*\rׅ3��\u000f5�\u00162oѯ�Q�\u000ed�\u0019F��QWЙ�K��\u0000\u0017<�A��+Ҭ�y�ۃ\u0013\u0013ui���8��M^wg\u0011�g�K92I\u0018�H�`\u0005�,\u0003Wk﫫Ѓ>�v'��X%����g���\u000f�.�a�d�����S�s1f�\u001e���.\u0019Q{c�]&�\u001e?f\u0006k�\u001ai�����{�V\u0007���\u0015\u0004q\rĮ���\u0000��\u0015���\n��z�;���\u000e�\u0018Ш����'z��\u00024�X�2�� �+�\"�����`*\u0012�\u0006�A)�\u000b������VJ[Q$97�Eu�y��\u0012�vt��\u000e�e\u000bĒ�FE�jXg\u0015�M��;�W�񥷣\u0007w(��}R\u0000��\n�v�Y�@1�\u0004K��\fh�R��G�ݏs#Lp�S�?g�\u001aB��'`As,6v���\u001a�\u000f\u001b\u0016&\u0013�g��E�L�pI\"�H��Zː\u001a�N��\u001bo\u0012��O×iL%�9ٻR'^��\u000eYU�:\r����ƶ`\u0000��E��\u0015�IG�\u001b�\u0015�Ɵn�f����ȴ���j�\\�rآ\u0006�\\ )d]wQ���[�U\u0001�(=V�\u0015\u0014�`�ƛ\u0004N���Ɔ\t�n�`Sꀆ�V�dH\u0003�Ǿ}<ߧ;�,�y\u0007\u0019��dM\u001c���k\u001e��܊\u0007�f�K�A*�\u000b����f��\u0016*;y�ʊe�\tSjޟYq;�����aO��\u001c��\u0016F�o���/=誫S.f�S$s�\ry�\b�t?*«�a���b�6n�j�Af�\u000b̀�I�\r���E\u0015�*BN7F���ܪ��h��θ���W4K�Ё�W��[IA�\u00063S�8̫��h�┭o��#��*�w9��#.�s��\u0005�\u0000>�\u0010�5ET6r�=����@ak���s\b>N�5\nb�E��������c�+6�\u000ed��:ժ �\u001fj�\u0006�5\b\t��y���\u0013^���;.��H�7�!ۂFl�o�Ҋ\n$n�:?\u0002\u0002�m��W��\u001f\u0006����\u0015\u0017!�\u00162!�0\u001e��긃Vp�\rh?*ʭ�%�5\u001d��SY�E\u0013�̻?��(#�\u0013:x㱼���U\u0018�6^���d\u0001���ĝ�L��N\u0003��\u001ecGLi\u0010\u0003|+����YāHZ5��e7�UTܒ֥W�;ܥ���<\ta\u00139������SUX1� @�6i>���\u000b�ĥ\u0003\u0003�h�o�\u000f�d����A>�\u000b���X�B�5b#���Z٩�\u001eMC>[(�\n����'�\u0013�\r�_S\u0012\b\u0019���୞�s\u0016Қ�u\u0006���U�d��\u0019T�`iXV�<��X�[,`\n\u0007�;\u0006{\u0007~l���1\"]�K\u0014�bj}\u001dq\u000b�o#ݟ�Cpˋ��y\u0000�)��\u001a\u001c%�yv�����n��\n?���ȕz��%3G�?D8l\u000fA\u0012�ƒF6\u0003��\u001f�,�ɜK�,����\u0013�\t�\u0004+�\"\u0010Y\u0014\u0006�\u0013��_xf�|\u001a���<��\u001c�\n�Qp�6�=TXg�ƫo�O����\u001c7�o���5��\u0000G49\fP��4\u0019�\u0017\"\u0017����\u000f�F��׺�bS���1�t\u0002��K�I�>���P��\u0014�]��\f'\u000f�\u001aa�4�#���ĸ�A4�\u000b��L�\t<�Y�Ś�\u001a���a��2WꇀZL����\u0011Vl�f���i^Ju���n\u0005&t�\u0005i]�D��T��n{��*�ܥ!o�P(��\u000e\u0001�@�\u001b�z��AV\u0019\u001d%22\u001b�:��o;��)�\u0010ғ�\u0007@�އJ��y�g[���܈��H�KȮ��Pz\u0006u50�q�\u0002_`\b��A�ٿ/8C!]�<\u000f@D����\u0012e�h\nf㍵ߧyM\u0000f!Y�dK��\u001d�Z�L��Z����]�A}�=�>)\u000fR\u0013ū�#���R�s��R�����vT;���Ą�1�4�\u000e�S�/�(��6�'5�C�Ȧ�bOl\u0005�\u000f�xۅŻ�x��8F��V��8�zI�\u0000��|�\u0002d\u0006�z�A�A(�\f\b��M��\u0011(\u0013�����낁�\u001d��\b��H�]�jB�GB\u001cp!\u001d�ڷ��\u000f�*v\u0019\u0013%*�4\u000b}r�����F��U�M�c��`\u0016F\u001d��!I�A�]}�4S��\u0000�u]��#��)D�}v�:\r�\u001d�K��\u0006C��eA��\u001fn�M���@nt\t��ALl\u0019#\u001bv��g\bK��0!t�!��d�2ጞF\u001dm�@T�����\u0001;rq�<�Z��4�\u0019�\u0015s�Qu�\u0004�>\u0004ܔ%Y��a��S�`d�AM6����U��'!Of�\u001b�ng�d�n�m#E��x/�\u0006`\u00014��\u0011b\u0003sz�\u000e�W�c|:\u0014\r��k�nI^Hh\r\u001c��A\u0017I�Ψ¿\u0018�2y}W�9���\u0012��M��\u00024̥\u000e�\u0000S[\u0006\u0000\u000b��\u0001�eɩ)�@�H���\tm0Q� 1��:�\u0000�\u001d-�\u0004~<ɼl�(�\u001a�y\u0010���\teȾ���B�\u0004��J�D\u0001)�4��\u0000\tA��̯�Gr���y7�B������a-���R�B>hk�m%\"��\u0004�$�{.�B�fYĔ�M-E�\u000e;]Z\t�ڜw��đ^\u001a�[\u0014����\u0007�B<(�����#�\t��|�6np8��������\u0013A\u0015��ԭ�[�A\u001a�\fl��0�\u0001�g�y��i^X�MD�^��,j�p�0�\u0015�\u0017\b\u0002��\u0018d�\u0001�\u001eS�&�r��\u0000��1%���\u0013Z8Z޼��'5ʙ��}��J�|t���($S#����m��daP�y��[qV���d��\"\u0000���,�)\u000b]��,�� ?\u0001ԵS��\u001e]\u0000���ۄ;Ei�o \u000b;xmlfR�\u000f��F�]��E_6�\u001b\\\u0010��1g\u0002j@��*W�;���D2�\u0001_�4\u0013���k\n�rZ��6���>(ץ�V~����JF\u001cۻW�aLv��E}��)�V�2�5�;\r6ס�P3�D^V�1�!�)��d�MA%��\u001c�=)��9�\u0018\u001a��y�U���%\u0002u>\u000f�ܼ�8]f\u0000!�۱�\u001a��\np��@�6��\u0004Ɩ�A �\f���W�\u001e@t\u001e9Wg\t\u0012~���SJdO#p�\u000fR\u0004\u0010v\u0006H�b\u0005p�q�\u001a�1G\u001cX�5{�\u001b���}��@��H�\u001fX�q��8%W��J���Z\u0019-����w�?�7H|�r����J��\f�>x�UO\u0006Bo�]\n���\u0011�w+U�\u001c�ZIY\u001fY��\n~�T�1\u001f=�I\u001a���`����L���Y(�\u001d�\n]z\u0010�k��\u0002#P�S=��z�)Y���\u0018�\u0003�#�Fr�� ��Z\u001c�)1ɾ��@y�D���v��*j`_ W\u0002^�J��o�\n��\u0003/�ұI5\"��u R��QM�y��+�U��_��\u0000�í�=�dP\u0015\u0002[�;mq;&؏�֜�A\"�\f���L�\u001c��v\u001d-��\u001c�l�M�k�m��M\u0013�^��\u0002~c��\u0015(�Sn}\u0007�+\u0002T͘�\u0017@\u0014���&��Y�)x&\u001c���\u0017� �M\u0013髷��la��[��$t���l��r��;\u0014��\u0013I<\u0013�\u001at\\\u001c�/\u000b�0\u001e��o��xΐ�6y���\u0006��\u000fP<�Y�G�\bNӒ������Mد���&���?�G�-�b$��\nK\\���M�����$�֬��U�Ӣ�v�{[^��B\b\u000b��0e���\u0017/�\u0019&\t�v]��{��s�J�(R��_�am�\u000e�e�c��*:�<�w��p�*\u000bR1��Y\u001e�?a���\u001f��-�\u001bpF+�z\u0019�*�A%�\f����\ff/�����rE�tN��D\u0004b���-��J��H�K}�\u0011\"]�?}Y���\u000f�쌇� \u000f�E\u00115�Y����k���5�\u0000�'U�H����G�@Xˇo�ŎR�fl�c�����\u0006�m�(�4�:}�X\u0013,\u0000�J���`\u0007�\u0013p����3�\u0005��l��bY�d\u0003,!�z�\u0006t\"9���!��v\r\u000f2\u001a~8��� �\u0005��\bO��t�`��5���ls#|��1�G1��\u0000�\u000e�q]�X!4��q\u000f��v\u0010�>��(��\n�>��\u0002�c:���\u001ai?���.!N)\u001d��\rE��O�#\b�\u0002�\u001b�t9d�\u000bU2�D�C����Jc�-4I�A\"�\fЀ�L��b 4�o�#|�\u0018+�[�=�Ug6�O\u0003e�6\u0006S�����G󐴺�{�F�)\u0012\b�i{Yӡ|�5� �hS�\u0003g\bD�����2Ԙh��/��ճ,�9��\t���2�Ư~�p[s��n�\u0013��3\u0007!�\u0006:���\u0018�& ����S�5����\b�\u0002\f�OL�+��:�nX'e�:��`gdͰ����yXB*\u0010z̶��O�����\u0013�u\u0015\n�\"/�\u0010vx�ݢ�c�W�\u000f��;��8\u0013�uV�\u0003\u0010���FpEg��ŏ�\u0007\u001bPV3��Z��;ԋ\u0014fk�b%��\u0003�\u00050f\r��\u00058࣢\\M�\u0015dŻ\u0013µ)\u0016�/�4�\u0011�\u00021��A\u0012�\f��X��s\u0000R\u00129p�\n:����@ղ�Σ&��\nL^�ř��O�o0�\n{�\u0015�ǯ�>����ߴ~\t}�Z\u0003|�\u0015����S ���pRS\u0006�&2ה�\fi\u000b�N��nн��H�\u0018�:/}��+�\u0001�>�)�=1rC'�\u0016R�X��99\u001e\u0012Z���(�\u0005ڼ��%rR�\u00078\u0010�Ig%� 0�\u001dE�\u0011G;L�д�r�{���w�j��Lv���\u001b�\u001b�������~�9g#��S\u0016\u0003������>�3�~FaH�q�r�\u000e�\b_����09Ǯ�\u0005�1��\u000e�\u0012\u0019���CG�_s�+\u0012�\u000f��'���~�?�A&�\f����d�j\b(N�3��j\f\u0005g�/^\\u9�h��\u0001\r��V�Y\u001c�6��ʤ?z'�siĐ�.猬��\u0001�#�ҳ\u001b�[�pm\u0001��C7��6��=�J���\u001d�d--�aP��&�F�1�a���؈�\u000e�\u0003�GJO��V�M_��\u0004���\u0012xa9�\u0001D�O\u0001{:nnu�\b\\\\�\u0001�Cҡ��f{X'��yv��A\u0013q��n\u001b:\"�\u0014/M3�mbGC}\u001a����Ѵ��+o�.�h\u0005��b�\u0005�)\u0019qP��1�[�Q�\u0000>�ċ�����3�J����\r\bS�q��ܬ\u0011\u001aQN�{\u0016\u0018�]�$/<����i����[�\u001b\u0015�\n�1�o��v��A\u001c�\r\f���m\u0010{\u0011#\u0019\b�F�F9�D6�\u001b5\"�!�[\\��N������@Nv�x\u0015��VYf��b���ۉ\u0006�W���_�;�e*CB�P��[�'\u001bQΈ%�?.\u0016\b���2���\b���?4&\"IS$R�cw��I&e�\u0012��\u001f\u0006V\u0012s�K��\u000bV��ilb�9�n�\u00118�d�Ӵ�0\u001b4şK\\!�;�<�\u0012��X{8a��\fM�x�ڪ\u001e��\r�k���\u0016�b\u0003��d�i�12�܌\"!�\u0003H����P��5�R⡃A7�LOK����0�W�\u0018;l�\t��\u0004�J\u0003�9=�lJ��B�+|���`|1TG���3_-�1hQT���A!�\r ��MYr̫�J\u001b�fb��d�u��\u001f%�2\u0019;�ޒ\u0000\u0003\u00118�\u0011v���BO\u0011�������Yq'��э�37���W��&���\"\f㌓s\u0002-�y&\u0013\\��KW\u001e׭vVTc,E��[�̘;�\t�\u0014\u001a1“�\u0016�Ƴ<7٘\u001a�tZ���/q,G�*��P���OC�N��ȱ\u000fO�G�\u0013�w0�!6M�cf;��^�\u0002�\u000e������:\u0014�4A@^\u0004�[�r�\u000e\u0004w�w��Z\n}\u001cW)�}\u0012H����P[�u\u0004�p2V\u00165�B���⻹��^yh�4\u0002k��Z�W\u001eiV�h6�f�Y�p۵��u�v?��z�E\u0006V�M~�v+<#,?�A.�\r4��M\u001e\u0001\u00172�\u000e�7��Ey\u0015-9M�Bv�e�S~Ҟ\u001c\u0016N�;l]V\u000eS'�\u0006���ᮺ<�e�״[ށI��\u001c9��[\u0001��O^\"ԃk�H\u0012\u0019VJbWՇbG�C�I�7����?�[b��-N�&P\u0000m��\u000fYʻ���^l�^�d�\u000e�Ν�+�'h�r^���>���>:$���\u0006\u0005��\\�&\bm��dn�����k|N�p;@\u0013�hu�\u000fQlL:��\u0011+++>�}�n?���\u00124�X���Q]��jN���Gs\u0000���\u0003|�����\t�of'�&\u0017үȸ��>�*Xڬ{�P\u001d�|���R\"\nz\u0003�A\"�\u001eJ�' 9�\u0018���f��.J)��ϓ�2��A>�\rH��L��\u0002�����莋��Mc]��+�\u0003W���w�\f\u0012V�5�+�\u0006�!�����\u0007�ځ{�}g\u001a(@y�s��}s�#��Uf��q�\u0015.�^��\u000f��mԝX��88��h��&��g\u001aV�V��\fe*�4Q�Z��S�Y�%\b���\u0019�׹,i�u�\u0014i�h�朽tM�ݤ�5\u0003�whs)B��~�.41W\u0013N��5\b\u0000W�����S��؁߳o�V�c����Z�(�����.8�u�'h�\"'wy�$�\u0014\u0005��&�\u000e1\u0017}�bx�\u0016�\u0011C�+���'\u000b\u001d�*\u0017\u001b7�6z�ŭ�h=E�\u0012��mQPR19`\u001b\u000f%�Hj\u0017�Οm�Co7)U�Lq˹\u0001�B�Ҹ\u001e�+#�/\u001a�³̝����Z7%$���]�\u0017�-\u001e����\\/҆1��r��'s\n�Y\u0011\"�?[HQ��@=��\u001e4|���\u0014�\u001cL�&���V\u0002�*A���s�!t`�Ks�A��l�`U�Ϲ�\u0018F_2(�)\u0004���߽�cZ��\u0010�\u0005G��\u0011�3x��\u0005M%��Z���\u001f8G��-DQ�o\u001a\u0015�\u001bW\u0018��3�q7��\u001d%T\u0012��\u001d/+\u0018W1�уCw�>ϯ[2\u0010\u000e����:�]M��tA�cpʼn�\r���$'z��A�3@Sc�A�3A��h.P�a~��\u0011��z6c��\u0012�0�>�N1\u0018}�9�~s\u0011E\u0010�\u0012��Q�ǂy=��B\u001eI�AX�\rp�����+�J\u001dy�\t�t_�a�F�C\u0010�\u0003#�w窅�H�����\u0019\u0002_��^�D�l�\u000b�1Y \u00134�(�F;\u000e7�\u0013��GF�N\u001f�#��0���\t���L��_sG�\u0000Y�e�5�|�1I6�Z�%D\u0005\u001e!�-����v�…\r�4f���;��#����}x��nxr�c������5+\u0005�)�ה�\u0006fH\r�o\f*!M\u001f~;K\\J8�����A��#\u001e�rN\\L���[��\u0016�]i�W�\t�ƪ�P]�\u00013R��*��\u0001'�I�;�l���+D�\u0000��T�\u0001���4�2��|°_�1�7V?��\u0015�J$_��xBE+ǜ\u0016�a���F\\a�R��\u0014�D�k�c�+�Z��-a�c\u001d�(�9t\u0010�\u001c{�� (�`�Y�E��l��V�\u001f������AL�\r���L����.7E'�����E�r��-�T��a�n\u0002��\u0010��\u0016ϭ�V�ԟ>Ϡ\u0003ɒ�\rx.J��\u0007�[Gd�*ə\f�e�� M�\u0004��)w�����!��D���g�@\u0011\u000e��m�I�Y�A�I�\u000f�䁣AT�\r���.E�'j;[����\r�������9�B\u0007B\u0003���m��tPO\u0013�\u001bJd\u0000��h���9j>&\u0001�8Īb�&R|�ջ�i�}�\u001a���)9��Ik��y\u001b�޸�CZ�&>���l�g(2�W��{���W�-o\u0010Yd�\u0016&s\u0007H��Z����1�CK�R\f��åo_�\u000e�h\r��h*[2<���b�>]H�@ꖵ\u0004���WUhZ�\u0010�ø` Ɏx\t\tlqi\u0010�y�D���>h�T3AP\u0007�\n%�E\u0003�'m�ө]�\"�\u0018���i�=��a��j4����\r)\u0003t��+C.����v�HJlRwTt�9W���\t�.\u000b�?\"r������I�S��fH�\u0002\"�b���1���\u001dǸI\u0004�/�г�^-�S��إ�78z1�m�AK�\r���M'�U�\u0002\u00184q�\u000e��F��ܗ�_@����3ݱ\u0016A��(�V�T��\u0002�г$hlN�q.�����J�_o�\u0018��\u0004},��\"s۫u�Q]{���\\�M�x�������j1\u0018�PNq���ۑ���%��.'�$\u001a�Fɐ�]�m�ϴ�hq�\u0004$�䓿\u001a�,�R�+��\u0003�p�\u0004B`\n{��<_��:��\u0006�ou�6|S�\u0000�\u000ep}�\t^�0�\u001b����\u0018��?{lh����+Ɨ(E�ƴ���w\u0006A\b\u000bb��mٲ(�]@�8�NX��\u0007��S\\\u000b�D[e^|��\u001f�AuXlK�J\u000b!\u0005ΰ5a��:�h]N�{�bt�\u0007�d\u0001\r\u0018�g�{4��f\u0010�},\u0004�tU(�\u0015�.\u0006Q�IJY@+RmR�-��+V;d�\u0001�AQ�\r���1�R��2\u0007�IQm��:�\\�\u001a��\u001e:�\u0000��qz�\u0002RKa�{1�0�o���\u0017}�:�\t�\u001a\u0012�M����Վ�\u0011��6=vv��\u001eߥ��ad\u0018�%�\u0012.\u0007�l֭|�ug9\u001d\t�󑺾\u0015�\u001dO��I�;�ss�;/(��t9�\u0018�yT��\tZKJNp�k7\u000f��/���\u0013=�\r�GAJ��\u000fT\u0000�KQ��B�y�\u0004���a��1S61�-h��#�d�d�_RI���\u000f��3�\u001f������\u0019G/ʏg-�S��k��1S��E\u0012QZt��%[�b�9饉ґ��CnS|\b8a4?,\u001b�Y�w`iS? ��zitQA��i|d�\tҗ�8�z�\u0006^pd�a��o�|\nଞ���R�/U�h\u0017(DZ{��S3���0�PQ�A��\rԀ�X��Y8�y8�n�����E�g�\u0003\"��٩�݇��p\u0013p|I�p�J\u0013�⎏A\u0012\u0002�%%\u0000��\u0015�W�M:\u0002\u0016�\t���c\u0005g��#��xX�\u001b�I�t\u001b+�h1�[��H$D��jYh���A08\u0017��qa�\u001c[f�1����D\u0007\u001b��4ӗ�^W�y���F\u000e������&\u000b3�!\u000f��i��z��/��\u0001���\u0014z�N�\r��\u0017�Q\\ǝ�\u0018\u0012�Рc���\n'F�<_Fу���yT\u0014y�8�0@�\u001e�\bj���'\t�iCq��v\u0017\u000e��-��\\�\u0005�.\bƬ?�\u0015ځ�\u0007�H�0v�k��d�D9'\u001d�p���$��@\u0014�\u0013x�\u0007�S���d���t��x�\bW�MN|�v\\\u0002�\u0013�%���������ޔ�3�K���1�\u0010�8�\t��݂_]�8�`�\u0003O,�!�EF�\\����\u0000�P}�˹VW\u0000\u0015?D\n\u0015����o6抙�\u0018\u001c[\u0010]�!�F�~����A5W��\u001aC�AT�\r��\u0002��#_߯\\#\nC\u000ep�U�\u0010%lo�#u4���\fxX1�)\u0016^�p�G{G+��T��R��;�_Rt\u0016�*�\u0012\u0007��\u001bw� \b��+?\u0013��e\"�q��[d<\u0011E���w\n������\u001c�q\u000bT9\u001d�m���\u000e[^�7B����B�\n��M�1r\u000b\u0005ʾs�N�\u0013�5\u0010��x�4�Bj!;P\u000f\u00174n\u000e��X�T�\r���6�Όǔ��V\u0010�\u0001�K�V���D�(Q�g�{(�U\t&o����h٠\";���\f\u001c���\\\nE%XG��S*�x�7���B�`��\u0014�W,���\u0000�.G��`>v�0t�\u0018�O�l�_Д_��`\u0010\u000b��d��^�\u0019IP'�`ќ��Rhk�&�����u�������shʨy�d�܋O�P\u0007��\tsE[���c�AY�\r���\u0001�+\u000f�)ޭT����\u000f*��d�ު!/��U���s���\nSwy\u001e�g��-��>\u001f�\u001f�\u000b�^�\u0013?\u000fc_���%;Ċ�|�����Q�\tW�\u0013o?�}�,�ɨ�4��\u0007����-ٳ�z�\u0017rXr���ܷe�#b?��Rn�t����!爂1 �F*�\u0015l\u001b�\u0005�����S��|\u0010�U|w��Zh6��S\u0005��ގ����y5\u0016��\u001e\u0017�P�N�\u0004e�e%ͯ��ڀj\\���\u001bb�e&�M@0\r\u000b<\u0007\b����\u001cBr㟨�RfV�h��}?+��*B�\u0007\t\u0017��!�Qu��ыt��\u0006fU��P\u0012y��\u0019�ݪ�zE�w��HӞ�� ���ʸ�ɇ=�\"\u0011|+\u0011\f\u001d��\u0014������El�|����y�CK�\u000ei�bH�&����2�AW�\u000e\u0010��(�h9v�Jܤ)pP�˜��s�s!���y�~��\r��k�\b��2��G9sU#��R��_�A���Gޡ\u0007\u0005�L>t�\u0016�iF~�*��C��\u0015\u0005͊��dm���\u0002�>���\"l>��\u0000!\"q�F�s��\\軞߅��F���-����\u001f�\u0017�;Dɸ��\u0004tA�F��BO\u001ep��j\u0012^���ba\u0017Ԑ^d?_�\f.0��\u0018M:)�EsH̐}\u0014�J�\u0004[5ҭ��\u000e��WC\u0005̇�>WLz/v:�\rĵ��cX��k|�\u000b}�E,q�\u0006\u001b�|\u0014�\u0010s�,)�Nv�~F��s��_\u0001\u0002}fLq�Y\u0007���\u0014\u0014�e�<\u0017lI�oË��́�\u0011\bDd�R@�E��uG�ޭ7�[\u0005\bF�|�@�vJ�N�/I8���K�n5v'�@\u0016\u0006��AZ�\u000e$��IrG���Sy�^���+�%3\u0014�'�+�z���\u0018*-�\u0002\u000b\u001f\u0015�Q�\u0007���)r\u0004��z���\u0001}�g<\u000e\"�\u0006O�SA�I�f��\u000e��\u0010W\u000b�i�m�q\r\u0000D��<ӡ\u0016��\u0015�R\u0002��IU\u0017�Cr=P��\u0016�o[YGڦ�\u0019\u000e���\n�ٻ\u001c4��4�QDZ�^1���\u001a\u0001��\u0013!���g�\u001c\u0016�F\n6�_ԥ��r\u0010�>6����A�k=�M�_B�\n�F\u0015��$�՘��L\f���\u001a�|\u000b�8Ѽ��T���K���k\u001d�/K\u000b5�\n8\u00177*\n�b\u0019FE�3\u0013����!Wi�����괸��\u001b\u0016���=Z���\u0004g���NFC�\u001c��MF�\f�\u0002A��5YR=��2x�\u0014�ݜ!�eV�QI���\u0000̳-c�<����\u0001j܌�I����\u0001�\b\u001fE�If�\u0004Z.1� ��\tf\u001a�eޅdBA\u001a�\b�xl�>A�jy>��&��S�k�0Z���b��O=��\u0017�V�r�4�6-�9�&LYy2���_�: �\u0001�\"�\u0003�5���\u0004�r͋��\u000b4&�>A����\u0015euv�C�L\u0014\u001e\\+�9un����aa�\u0006'e��\u0019\u0001��B��\"���\u001f�\u001e\u000f�\u001bM\u0005(\u0012���ќΗN\u0006�9VkOE�K�d��iAQ\"fE�\u000e�mPM�;\u0011��7�\u0016\u0015��'خ5�n\u001bp��R}�j�Y��I��5��'�\u0000���2�4\u001d.߶������̳Ք3\u0004�Xy�lP��������]���;\u0010oK��4\u0000R\u001d(�\r\u0000��������e��U'l�X9��\f�i&�,\u0019�;��\u0003�m!�P�\u0013��y\"���9�\u000f\u000e\u000e���\u0010�����A��\u000e`�����\fgx��z��A��9n�\u001c�\u0019Q�\u0004\u0011�\u0002\u0013�_D4��D�m‹ժd14��Y�\f6{�#m�&:�I$�\u0012��&1?ж��3�\u0017�g�`�f���=s\u0017Q��'��\u0017��˻!X�����K�BF.��rtl=^̓\u0017�\u0011i\u0013A�\u0017�}�����v%!\u0019���\u000ec�E��(���̻C����$����*�����0�\rĈj>�Ii\u0006���<9JA�\u0000u\u0007>ςa\u0016o,\b�\u0012��\u0007\u0017,\"&�~}E/\u0006�&@cd���7.m���N�5�O�6�'t\u001b\u0018L\u0006C���IP\u001f�-��ͯ��{�\u0018_r\u0013��\u0019>'M\u0018�G\u001b?�j\u00181\u001a�5Y(�B�H\u0013�K\u001d�ϒ�\u001f��ne15I�_X�\u0013�\u00036P�n�\u0007e7�\u001b�\u0012y{f1��\\�;+�OI;���&,\n,\u0014�\u0006�\u001ch�~&�W�A��\u000e���\t��\u0004Xf�\r\u0019oO\u001cD�zڰ������/�U+��(��u�&�YKrxVs\u0000�;�5Ǧ\u0018�%q\u001b͹\u0005�ym�k9;,ey\\������IX���\u001eיjO��V\t�\u0001rW��\u0019q��.\u0015w\u001d}��m��|+\u001e�[+�[�\u001f��\\Faȝ���\u0018�\u000b�u�\f\u0016�3�=��\u000f&^��ﯰ\u0002V\t�qr鐄�\b�\u0002�1S\\I�^\\Pu�޺��|�\u00001'\u001e���\u00115\u000f�j/+�~�\u001c\u0015=P^4\u0007d9�VR\u001b��}Z�ǖ��3n,�\t#L9[��\u0007b&D��)l�\u0014�IݺՎU�\u000e\u0002{À\u0000-h\u0000\u0005��G;D\u001a��ʕ��PN�\u0018_�5\u001b�wT�\"�W��l@�v�X��������q�\u0000��$�8��;�~\u0013[�����\u0016�l������\u0007?b���k�f�/?�\u0001UC��g0\u0001��r�\u0010�:�\u0016޷\tiM��9�=(���\u000b�q2�/5Ie�{��b.X�:p����9�`V��V+LA�Ѯ.�A��\u000e���}a'�L\r]Z��v4�\"Xݘ�}w�*.�\u0018�?��kPԯ��wF|{��\u001f���7c�G��S��\u0013�\u0007����[�\u0012��0(ؑ���e�\u000b��/V�Vx��\u001d~\u0006쬳���yC#\u0018r/a�wp���\u0005+�#T=RՈTi\u0007�}�*��%�AG�\u000e�����\u0014u�o����\u0015�Ugؐ�Aa\"�\u000fG�\u001e�u$�,\u0005�\u0013�W��g�\u0005?\u0003\u0006�h�$�\u001f�;��f�(��`7�Y�B���i�\u0014Ш\u001e����*Ƙo�\u000e��P\nԞq�K��\u0007��\u000e��\u0011��\u00104�󋄋�eo����l����n\u001a�p]��]8q,��zU��Z��\u000b1�曏\f�ĕ���UO�\u000e\u000f�C\u0018�ڌ�/��Q�\u0003-�Z&.�`��L��f�X�� ��H\u0018wJ9Ӥ0\u0012�\u001f6{�\"�w_���s_�O�1_\f�q�\u0003\u001cOOt�E�\u0005��y�\u0016��FO\n9�ݣ��.(�!�&�C:�ۦ����f\u0016V/\t�I-Z�\fP�_ca��/�ʳ]@)�;�˘�:���1�p�^\u0012 �W�Y�A$�\u000eĀ�(����\\�-\u0005��\u0012o�0���\\k\u0000��{�1#u����:�D��F\r���\u000b#��'\u0000��3&�1G]�\u0001�j�m\u0011O��\u001a��\u0018>��&\n��\u0014�p�z߃��\u0018��zZW���Qw\u001d,�q\u0002�ĵB\u0017���2Lx��\u0003� \u0005�����0��$z;B\u000f��\u001f��jkjC�<�\"���Q(%i�\f4m\u001dث��\u001e�Vj�+���8�E,�\u000e񀻁_�'\u000b*���V��\u0007�K�\u001e\u001e��_9y�.0�\t'\u0013��Iդ�K%v��͋��q@\u0004�7\u0004.�B�é\u0017p�B�@3��|_Kn�>�\\����\u001f/���a\t\r��/���h�s����A��\u000e؀�}�\u0013Ro\u000f�\u0000{|�C��{ʋjT�\u0005�\u001f���]��(=HܬU!��,\u0011-d-�|�\n�yX�0�\u001aV\u0007�j�\u0001\u000b�U�g��_\u0011�3n� �9@\b\n[\u0012\u0002G�4��ٯRK���c�*�����}wըa�\u000f��\u000fH����go�\u0012�0/+f,9f�0eyWI�0�;�&KQM�͡\u001bO��\r���@$nh�ʍn�82\u000fXŠ�\u001cM\u0018\u0016�幓q�\u0012���\u0017�5���}6\u000bS�%:%g\fD۶��\u0012�O}ɛA%\u001aEj��D��\u000b\u00020�F�\u000f�Ž\u001d3�dA\u001fN����[��:�TL�,��䛲�\u0005�sk}04�6�?�DI\r�ʌ�����'R^��m�2�]��t��i��y\u0001͌D��\u0010�!�h�36-7��3�P8-. uq:�\u0002����ی\u000e\b,\u0006���%��h��\u001a\b\u0000��Ж���_�Y�\u0002�$�D#\u0007#7Ļ^�ŵ�\u0001ɨ,�j���J�4!�>Ԡ��\u001d3\u000e\u0015\u0010\u000f٣A\u001e�\u000e��M2bp*�f��\u0017�\u001c�3\\�\u0003�e\t��yK\u0010`�Sx��\u000e�Xܖ��-'�nv�O�~*i�ٽ\u0004[#�XWB|%\u0018\u0001CQ\"ݫ\u001f�Ze\u0010a�D�g�(]�2�!�ni�t!��8!dC��6��@~�W��.�,\u0018�n�^�\"�_�1��\u0007��d#�8���\u0012F(����,>L�=�A)\u0006��RMg4�S�̭=�\u001cF6�\u001be<\u000b�\tr���k2\u0007.���=��\u0000�\t�qy\u0014�V��\t�E��\u0006�\u001a8]\\���{�Ś�l�AVI�R��\u0007�r�S���\u0007��\u0003m\\��!�͛W�^�~�\u0011�\u000f����\u000f���N6w�[!�\u0012\u001c%�\u000b��A\u0019�\u000f\u0000��L���N����\u0010\u0000�����Ả��a$N�y��\u0002�\u000f\u0001r�\u001dK\u0005��*[6&��$��t�`�bT\u0016�5�ĝ�\u001a�D�\u0003�\u0012O�z�E���P�7�]�\u0007ƪ�\u0017�dע�\u0015�*��0�r��\u0010K�\u0005����̱�k?']�\b\u0019!m^�\u001d\u0016��\u0003iY\rE�ĜP@�<��F4j�=�s\u0007q�zY��\nH�F�\u0010�l]�M\bݨ�]����}\u001cʑᐘ��\u0015��wVm�f���\n!��\u0000F�_�^�������&b�O�3A����.n/���\u0015����I�v�lg^W_�\u0013[�\u0003P:\u0010,5`\u000b���,r��\u001fq#ӯ�A%�\u000f\u0014��L�\u001cS�H��u\u0005�]?��\br�Yƴ��t�ͳ��\u0007ܼ�����ؘΈR�IJ\u0004�F\u000f��\f�����\\4sE�\u0002���W�Da�\u0017�V\u0013�65��\u000f\u0005`��B\u0000�;]��rB]�\u0013/�O��\u001a��Gh�\u0005�܅��Cp�i5\u0003��l\r�1����{�^S�5��&���W�\u0010?��΃�p̄E\u0001�GI��\u001d\u0015V�-\u0004\u0013�6-�̿m�\u0007=�`%��\n\u0006�D|�\u001f���Ѽ֝��Aa����� N�!4߳�v4\u001b�)۵W_���8��T`|L\u001bj\u001b.i\f�\u0010���?� �ئw\u0006��=#�:�I�{R�P��xP~�o%\u0014�iB��s&E@�\b��A\u0014�\u000f(��L�\r98υ\u001d���^\u0013پq���;���C��<Ā����R\u001c.\u0004�\u0000\u0017\u001f\u001b���.th�\tOW\u0000\u001d5�Q\u001bRp�T|o��3\"���CA\tR#\u001a�ۊ$�v�\u0007\u001bW/x�\u0016�_���z\u0006Hh�\u001b�\u0004V\t^��@;g��\u0011��NO��Z#Z��/!�g:)\n�\u0013��\u0014}l�7�1�˛�[%X+V\u001f6����}\u000e\u0010/ڗ�\u0004GI�w\u001b�#o,\u000b�N��=�lgn�>4Q��dMS\u0016���k�Ų��2Y������\u0017Q\t*u7\u0004�b\u00019\u0002���.\u0017\"9������AI�H��,�a�-�y�v�6ˤ\u000b\u001c���nt?�A2�\u000f<���\u001b�X\u001a��2�\b5�-\u001f��\u0004��PI�\u0011�;�4ǻ�\u000e`b=����p����Z�ɧ.\b���1��\u0017�!v�'\\���K\b�?<�2n�P\u000b�U��q�\u0019��q �\u0003\u000f�xD����i\u001e��:\u001f�6\u0001E\u0005�>IP;��#;\u000e�@��c�)ry�\u0014lU����\b)\u001bx\u0007�H�n�`��e�\u0013�R��q�}6k\u0011�X;�X�7����\u001b\u0010M���\u0000\u0017�5b+L�\u001ab�*�09�5ԭ�v��+�O��q����\u0003���#SG��\u0011V\u001c]��\u001e��,\u001fs\u0003��&mSx�\u0007�&��TG����=�9gzU\u001b�\u001c�4 d������\u001e\u0014M\u0016�\u001b\n��:$�$�؇�\u0007�i�/�46��A6�\u000fP���\rC\u000eE�m^a��¯��k�@�)L�\u0004��·���\u0007a�;��/�߹JTN\"�n֎��\b�q�+�%u5�\u001a᳐r���#�0�UZ2ߕp�#! �VS���Y�\u0003�b��l�\u001a���z�`G�\u0002�\u001dUS\"�3�3IPI<��D�͉�c�y��?gX�\u000e�F����.\u0015Q��#%�Zi ��\u000e׀�PA�hC7o\u001aX�t!po\u001a׸�yL���W�P\\|-Bq8\u001a�H����9Oy��&�h�:���\r(�P07�d{�@H�p����[%g\u0017���=_�Q4�x�${r�\u001d'�q>\n$2Ў�B\u0011y65���>���w\u0014\u0018L`O&\u000eH�cjxAZ?\u000b���MOX��AT�\u000fd���\u001b�ї�A�:\u0004�����\u0003���Mk*��~`�=����\u001f���h��m\u0007������qsc<�Q�{\"ܯ��\f\u0010��'\\J�3�Īp��]��y\u001f��KMV�IіY�{�\u0002�Ymб��X�}ã�c#�pt�#�\u0016�\u0005��\".]ِe�\u001d$ig��\u0015a���=��a\u001d��|x���Y�\u0000\u0019�$\u0012��s\u0011�\\#n��\u0001C\u00038��umA\u0001}g��^��F\u0011_�*�\u00042���_��T�t�%{\u0015\u001b�3\u0015]d[�V8��\u001d*��/���v6\u001fX4j�<�\u000b����\u0006�+\u0018�c�\u0019����~G`\n��8�,�\b:��\r)�ob�c_H�\u001cʧ燑����AS�\u000fx���\u001bb\u0016\u0002.��\t\u001f�5Z�\u0019���F&�ګs�`��\u0017�\u0016�N�Ht�s�\u0017��O\u0003�+��5��\u0018j�\u0007\nSt�O����l\u0005au�:�j�)E���ƒq�Z�\u0014Fy\u0018:��\n��d��=\u0007dB0��\u0019\u001e�u#��<�\r�a�I�!W'�Y:��$�ʜ'�e��\u0015��1�qx\u001f������5�\u0015���~�]\u001chI�`��D�\u001f\u0014�\u0002�a\"s\fw\\\byF�>}J���6\u0000��^\u0012u���Ga�k\u0014H �M ^�\b�o4R\u001bG�7�?\u0010ܬ\u000e\u0006�g�>Hb�4�\u00072M‡��W{���\u001e-s�Ѡ�IM�S�S�ۛA�;�_9�\u0007�ߧ��3�\u000f��٠.\u0012=�v\u001bd���i7yY�7��ǣ\\Jg\u0000��\u000b\\\\crK�}c����'*��\u0019\u0011�\u0012��AN�\u000f����\r��9r�[�pt�y��/YU\u0018�C\u001cx���'i�ѕ~\u0002�\u0005\u0004�s��/�H>��\u000f��%\u0011<7�\u001d�U�}o$��R\n� M2\u00046%\u0002*:��8F�iWw�Ə`n��G?\r�6O��j7�,��[YQ$1�op�ʥ���e\u000f3�N�\u0006\u001c\u001d\u0019��n���\u001d�Y�i�\n���Fz����Ķ�\bqp���^N�Z\u001e�����J��m�\u000f)P�!�B.B������N[�)�S\t��d���@��\u001d�*\u0001X�����\f�N�=���zrޱ7�m`\u000e�C`�]�֬��W_\u000f��m������Y\u0007A�I2\u0013Ŗ������\t\u001b2�\u0004��\\ٓ�-��\n��I�r�,-���n\b2�K\u000f�>Z\u001d=G.p\u000f���\t@:Wߢ�/cG�\u00001�\u001c�ɲ�f|�5�\u0013�<�m�k\u00022|A�^N\u001c:�\\�0��GͽGs��W��9�%�]���͘#�����h{�z�\u0018\u001b���\u001c��C�\u000bMzTo �P(�\u0004�\\\n�4i�TEz��v�oH\"D�\u0013y,�\u0003�GN�\u0016{����\u001dCX\u000fiX�qJr�F\\@R��\u001e\u001a\u0015�ߝtK\u001c�Y�_�\u0010�2+��.\f\rn*S\f�Q�'�\u0015ű\u0001OG�J�g�%r��3\u001a�ąp��)\u0007V'�져6Dι�(\u001f\u001e��-�V�<%.&�9O��3\u000b�\u0006�E\u0007�D��nzx\u0006���&�(:�ۣA@�\u000f���L�\u00128/d#��\u0010fa���\n�iL�\u0017���\"pCxҎw8>�C�dAQ\u0004�\u001a�2�0���b��\u0007�#����S;+2��Ҕ\u001ek*7)���ӣ�q�ez���I�\u0016�;Hǚ��0�L\u0014)=0���s�Z\u0002Գ\u0006:iY��\\�&��e�T���=�]���o\u0000��.)�$JM`���1��;�Y��NVQ[4��jJ����0\b����Pf\u0006�\u0014��)�\u0014\u0015��B\t2�c��\"\u000f���IU���ɧ��@�H�2�ʫڄE����'6���:Q�&�X�]�_�\u0018����͗m���mR����K;\u00040�;P�0�r9N:�Y�V:�uK.�]\u0016�X|$�e^\u0002�\u0014@K��o��ll�\u001d��A;�\u000fȀ�L�,��\r���z�|�����1�Y��9�P�\\\u0003����On�k��lF��|�_5�1*P\u001f����\u0000��\u0006�H��n�k\u0004��b35�W:��\u0016\u0014g4\u0001��׮�`��8Ir\tK��-S���Ӄ\u0012��I)K��\u0006�5��\u0001��px����r�\u0017�9jP\u0013�z�O,ޏ�\f��Qy��V�+�\\\u0006>�\u0014\u0012\u001d��[Q�9��9I\u0018����F2\u0002o\u000f�R�\u001dV\u0011��OG��Ӭc����\tmS����$�q����Zl��y\u001f`�s��A�A���bR�܈��\u0004\u0014<�~.�\u000ex�&9��8����!R��_~��x\u0005'�\u000b�Xம�\u0016@Ә��;�2�B/9��ң� f\u000b,�Ah�\r�\u001f��A2�\u000f܀�X�e;�O*)j�\n˃��\u001f�^S��\u0000k���t�lN�\u000ec5�?�K�-��$�\u0015�O��[Yr��ŝ\u0002��ܔ��E�<\u0015/��[I\u001d^�(\\\u0019O-\u0010����ߏl\u0011\u000b��,\u001a�5Kk��s���\u001a\\\u0013\u0001���C�T��H|\t,�w<����\u0016�A���l����UɆ���u��*<�\u000f\u0019k��\tfg�Z����\u0004�\u0001\u001d\u000b\u0016�/\u001bO\b�����P��V��\"n�O��d��P�\u000e��>�5�߇�\u0006�<-�Q\u0001�\b�t?��l�A\r�e\r�ؘ\u0010�.��8%��ɣA\u001e�\u000f���L�Qr�$\u0014�\u0004�~ſ&��.-e�+�vj]�֖����`!��_�)�}\rj\u000f��,_\u000e�\u0018\u0004A}rЛ\u000b\u0015{�v�A��\u000b��\r23e��)�\bֻ���7���7�cp�\\�Y�q�\u000e�ߺeo=E��\u0010CH�x���4�|�-g��&�\u0011�)�r��������7��My^�\u0015&>\u0011#�+�\u0017\t$�sd}t�\u0002���\u0015�9Sde���5\u000b��\u001eT��w5\u001f���<��^b)K�� �E1�Ӆ\u0004\u001a��&0_���d\u0018��SFI�\u001d�\u0004�0(}\u001fI����W��\u0003*��8-���7\b�=d�n1ָC+��) \u001bjj��ʃ?�s\u0013�A-�\u0010\u0004��MY\u001c]!�\b�\u0005c8M�Ե�\u0004\u000f\\h\u001f�V\u0017��,�\u0012\u000e\u000bk�kg5�\u0010���Kc0�;\u0005ފӔ1V�!��M�aX\u0002FM&�_����k4\u0014�\u0003\u0003{��^��a1~z\u0019\u0017�-�lՂ\u0003��I:��������{�<�y6��k>f��MQY}R��Ek�~\u0007a=�\u0017~P�B���q�~�Q{�\u001cKwYBrc��?\u000b�n�˽��\u0003�\u0011���\u0012ц��W�f��_H��1\u0001�\u0005\u0005��9�&�0.�ގ#\n\u0006;\\��du��\u001c.+�%���]ab\u001aҳ��4�j5�\u001c��^��X~NU�w�Hvj���G�\\Hq�o҉m�`\u001aq�,%b�\u000b'���^���l$�\u0005��6�A\u001f�\u0010\u0018���eA}���q\u0003��(#z�_\u001bܧ\u001f$`�\f�vy�����\u001eLL�,�\u001d��\u001b����\u000f�T��%��M�\u0003\u0000\u001e�ĩ�\u0016�<\u000es�g�J�\u001e��\u0014m�\f\u001c�R=$ɂ��Oe�7�U�_�\u001e\nٷV�\u001a\"V\u001b��\u0014\b�v��\rcxca��N<�\u0001��b�D�\nH��\n�@�������ܳ�;<��l\u000b��NIB\u001f\\\u0001�n~!\u0013j������4iG��t�N�r���7؋�7\r�Y�l�\u0004�J�POѾ�n��|ę\t�\u0006Zv��v����.\u001eA��H,S����Ug�\u001c��G\u0018m0���x\u000e�9�gr·[\u0007�%\u0004�X&@��\u0010q��U�\u0014�A.�\u0010,��L�lX[�W��\u0015\u001d���g˨�[��\u0014�� �\u0010�!y\u0006�OY�e�:��=���z����2�\u0019����lj�ww��!\u0013]93ܒ1Ҭk���\u0011冤�M���\u0012\u000b\u0012t��a��D�V�H+4ԣ�&��\\G���\u0000���B\u0017�����\u0000���*�<����HP_\u001a�×��V�Fm���P��[7���\u001d��({1 �d�\u0007\fO����8\u000f����\u0014!\u0016\u0007�>�Es����\u0001�K�$�\u0013�ʰ\u0001\rU� ԟǎo�Zt��|��\u0014���[�\t�`I!�4��q��H���e^@���\r�\u001c6����XP��3\u000e@�򌕤��\u001f��e\u001b*�4��.�҄\u0007��d�A7�\u0010@��L�$��`>lvյ�D�����݇�]8K�\u0004�u-<���$�\n�\u0014)!f�F�&P���S\b�\u0019\u0015h��:fj���{/J�sY΃+Y��w\u00031��\r\n^�?`\u001ek��\u0015\u0005���qӅ�V0x�v\u001a��;��\u0004�j÷�\r�1��%r4^��NJ���\n�����7/Ӎ��9���Y\u0012��\u0019�-(z�1'q�jR�xM\u0004�^�̻\u0004�Ɠ�t#:��3t\u001cN}�\u0004\u001cU�\u001f�\u0003-\u0019v+g�=�\u0010��\u0018b�+P\u0006E��P\u0001�\u0006��uy\u000b�W�\u0006Z����̱}o-Dek����T�W\u0011\u0016\f@�Ǔj�n\u0010�\u0018\u0006��ã���u^\u001ek;!���8�v�JR7\u0014�\u0002ć�\u0003أ\u0012C2S�A\u0010T���\f�0�\r\f\u001ef�ȽڨVm\u001e\f[�:4�NFd\u0004c�\n�|\u0012��\u000f�%_\u0000\u0004���\u000b9�5c�\u0000,5M��5\u001cXw��'�E\u0002?�`\u0015�ZH,���2�s��\u001f��~��W�\u0003�~܏t\u0018��#%��!_���\u001fy�I�)uu�0�+F��s��'m����\f�(\u0000e\u0010� ��w����.��\n�|N�8�\n6�\u0000�M�]���]Z\u0017�\u0006R�V�U92��h���\t�.�]�4j�9ڽ1)t�؇4R���l�\u0014��9�~���\u001f\u001b\u0002o���O>���y\u0001A�?��\u0004���Q!�f�%}��I�!��teH��O�r@L���\u001f>{etv�q��J�t���:3�����0[�i�̂\u0010\u0007�\u0000v�f����\u0004wiv�RbL{>M�c\u0010L��~|�_�@\tm�$W\u0006�\u0000\u0013t��=�W��$��Myq7��\u001e�eK\u001a^������#<���4g��OH*N�y\u001f�\u001c��E�eW٥\u001e\u001a\u0015\u0010x�-�j��V�=c�!\t(\\{�\f˦�\u0011�O\u0011����ôRBJ�t�AN�\u0010h��L�ԝ$,\u001bgm6\u001a�U�\u000f�]T��J7I�aM��s�y9l�ڏ ��F�\u000bu�V\u0016`��<�`\u0019�&�\u0010\u000f@�����x�IY�P�]�+\u0004\u0005\u0000�3\u001b\"�˺�U\u001a�\"\u0012m�>�S���rQ<�#!\u001c�g�bӝ��\u0007\u001c�.̥��l�\u001aS�;\u0012���p��;8X^�#�e\u0001p/i�H\u0019T��H\u0015�i�.��w\u0000\u0005��c��:���]!�\u0015�\u001aT��&\u0012]�\u001c\u0015\u0019]y�l���\u0010JD\u0015z�����tL\u001dK�\\w9�'\u0001��\u0016p�7-c\u000f0z��rjc�gu\b�i�\u0017��_�Ǟ75�b\u0005��|�\u000e���t�\u0012k\u00117�\u001a�qt)�\u001a����!C�8!Me�=\f\u001c�-�ת@wȎ�+��|Q�X��:i\"un\u000bb��M�ND�A8\u0018��A>�\u0010|��L�9x�1��XF���!/_�\fn[���w�ߩ\u0011�l�#X��P쥇�\u001a�n��\re�\u000e��w�\u0005\tK`�HL{|��М��\u0005����MC��\u0019��5�,�T\u0019��\u0015����^\u001e�O��j�7Ѧ�1�OjZ�E\f\u0016�8U(Ou��Hj]���\u001f�e�\u0012�8Fp(��\b��\u0002\u001b۫\"\u0000�\u000bMx�Q��O�x�,3P���g��\u000f_��c=��R�ܼ�8ʍ��l�\u000f\u0001��n�\u0010�p\u0001qʄ\u001f��\u0011T-u��3������7Q�Z�\u001a�+6��%��L\u0018�L�'�\u0002)�2]�?:g�_x��JX�*�k��jb�g�*X\u001b�OƋZ�8���\u0000g9v\u00055�ì��E�:���'��.�;_����_T#��AL�\u0010�����\u001f�$���@�\u0007��?��h�4ls�ӌ�\u001d\u0019�7SFo��[�1ܽ�(8v�u�/\u0018�\u000b�����\r�wG��%��Ɗ\u0015�n�\u001b��go�����Qu\u0017�:'X�\u0015�w�i���3\u0012q\u0005���0\n��\"��\u0000q'��@m���\u000b�;5Q��\u0015,�S_�&:Yb�Lj»�h��3\u0003�;�EE�w�A��\u0010���L�^��Ї�K7��$D6'\u001a\u001f��>p�p'�\u0014���\u0004 l��\u0014��9N�!�\u000bA�OH(�\u000b�\t��-�O� �\u0012͏(T㶼x�\u0018\u001cUoAm�|!)���{���\u0004�l��\\Ϛkd�\u001a�\u001bt�\u001c#\u000e4�mn�ͭ�1�sM�E�Q�3S�̧�'���NO\\��\u0017U��9�\u0000�Ö\u0004�u�\f����;i3�g��b�=�����oM�G��}�e��\u000532���h��\u0017�\u00005C8��/�Lt��@��\\^�ya�\u000fm7�\u001bh�-2�x*ۈ���ns�\u001c���(F޾&\u0019��\u0010��2=Ӂ����Y�#�5�}_#g@p8>��`���ݒk�Wǻx�?a�\u0000\"�>R0��_N[��F�X�\r��ݛ�w�\u001b\u0012�p�l�ҝ��c��4\r\u000bȀ\u000b�ٳ{�\u0013\u0016\u000e�a�i�Ѫ�\u0014�\u0004RJ�'\u0005�\r�U���\u001a�@�ÜE\u0005\u001fn\u0004ﭣAP�\u0010���L�\f��e�/~�td��G›,����Ri���m�\u000f\u0002\u0011@�K�\u0018�~���1L�LJ��E.������}�e��>߄�g\u0007�\u000f�\u001cc��I��ss2���EOBJ���P���\u0010�\u001c\u000f\r�U����_�^\u0003\u0015�-���(T��Xc���\u000bh�S�:0����,|\b���h-����d�Dېx�\\��h\rs&��|.�\u0012>�WO�N�\u000b\u0006\u0014m��,X��(�v#{\u000b�qs\u001f_�\u0017�\u0000\u0017З�_|��w�\u0017]\t��%�\u0006,�_UR�p\u001c�Y�ͥ��zR%j\u001e��\u0003@�X-[[����e됬�&�ϰ�J%.�p�웸��\u000b/��\tj��'97�B�*�\u0016@��J,��ׯhe�\u000b\u0014d�ê���x[�냷�N�?\u0002�G��jجa��A7�\u0010̀�L�!{'~\n7Z8�\u000f�H�eɈZ�`���te\u0000CȎ�ʜ���%�*R�@��\f\u0014�4����E�����E�h!_꾛��&�\fRZ����\u0010�HO\u001ca�V���]�t\u0016#j�g��\u0015a\u0015A\r�a\u001e7�U�\u000fhWw��\u00042Ez��Q\u0017+\u00197%\u0017�r�Vzs��\trn��-\u0005��{7�\\[��O�^\u0003̶\u0011�yҘ�;�x\u0003���\u0006\u001b^��\r\f\u0015%\"�Џْ�w<�xY�U,\u001e5eHY�\u0006Sј]�,R�\fx��\u001f+=� 56i�N�\u001dQ��3L)\u0016��O>u��-�~R�\u0011K��c|Ht�<��)vVg�κFS^�\u0010c�d�]���\u0001�����%9�ܓb[j�\u0012q�y�УA%�\u0010���Xɵ�됋���������`\u0001f�\u0000s�\u001fp��Ȩ�ۣq~�\u0003�2�<��K\u001a.�7�F\\Od*�XbN\u0013�� �\u0019a\bo�Ob\u0002sKe�<���n��)�X���b”��\r�!�{\u000bA�C\u0014�Þu�}xh��e`�\u001b0��\f�\u0007\u0018(��������MHw�R`��6�`^\u001f�\u001b�*�_QN�%����)�\u0016\u0006G�uJV��#�U,�ք\u0016̮Yק��\u0016uZ�\u0004G>-O����\u001eD�90�b\u0002\u0003���(V��װ\u0019�\u0019#�9�p�t��0\u0000��\u001c��W<�l���øyw���A�r|ض�2~��u\u0011E{D\u0016O޴/�$�d��\u001bA�;iN/�A\u001a�\u0010��X�-x��/�䵸�Ş�\r��L�����\u0006ڵhv�\u00037촿Ϩo5�'\u0016\r����\u0017����X��v�T\u0004�U�[#�ҬF���T�\u0018�}�\r�Ի�ÈN�Q\u000f\u000f�����x\u001d ��\u000b\u0001\u000e4�ܵB\t�)�W,*\t��K�_��&����#l�I\u001f\u0019GK���D1�����I\u0002�\u001b%�\u0014\u001cB\u001d�X\f�*��p�p�\u000et�LJ�:����>�㌜�i�\u0000�\u001e\u0014\u0016C�A�gI��\u0019w\u000bFǹu�\u0001�(\u001b U\u0007�5_d\u001f%�G\u0013f|�sa�@�݇���K㞡�yUS�<�y��j�x \bv\u0000�H_~$�$��@[�A\u0010�\u0011\b��X�-7�>�?yaq\u0002c�k\u000e`̧�e�xh�d`�K���\u0018Ҥʃ<<�\u0003`knp���\u001f\u0019�����\u0016'�\u0005�\u0007�\u0004H�K4}$�9\u0019\u001a�\u0014\b`�8��|8oXAhe��(\u0013/�k8�\u0003=x��wɔ�\u0001E��\u0012i3�\u0000�4j�֜jS/�2\\��H{w���t�s�&�8g��\u0018\u001dq��\"��bP�s��\"�\u001a�y�u̐e�ޘÇ����Y��Np=2w�ֆ~�c�\u000b\u0004u`��\u001a���n\u0018���:j\u001c[�*2m�\\�NjV�R\u0017�9�\f�_��n��G�'�Q\u0003bx\\3�\u000e�M��\u0000\u001f��<�Q���\"I�A-�\u0011\u001c���\f��\u0014�dH\u000f����\u0012�\u001b3���Q��Y\u0013�tm�����\\��z\u001f�>��|�&�\u001a�\u0000O�mR+�E7\u0001B�e����\u0018\u0003h{\n�\t�5g�\u001b�\u001e�U_)K:\f���&ms\u001eTů���]\u001e\u0019��#�4���c�\u000bʥ\u0015�^�\u0013x\\��n=�cm\u0018\u0019�UG�›�“��I\u0007]�7\t0�ǀ��\t�����\u0016�\u0014ޓ\u001d\u0007?t�,�O5��~�غ\f�U�\u0015\u0015܋| �Sv�*v~��=�AO�\u0011X���\r~[�\u0019PT�E%��O\"zj&.���b�\u0005R^z�\u0002/�/m6���렏+T1��;\u0002��r/m�����p�m~�ը�\u0016.\f~M�ԃ�Xr�U�|<`2�\u0015n��ٕg\u000bU��y�\u0017�ӌZU���V�u\u0002��\u0014\t>}�\u0012�lFJ�������\n\u0001n\\�����-�\u0018��F�;��\u0004}\u0006�?\u0007\u000b�\r�;�Y3�\u0017���\u0001�#�\u0014��X%�.eϢ�u�4�r⧘�\u001cl�����.Hx\u0001\u0004\u0015<�.�\\��R��\"�~\u0005�١:���D.�[+\u0003�[*���S0\u0004z�%.#�ũ�%M��6���\u000e\u001ea\u0006���\u0006\u001aI���\f\u001c\u0014|����ҹ�\u0005XB�\u0001Ά��-xA\u0012\b\u0011\u000ev����cs�v\u00186��Hy\u001b����\u000b%nhK~�t{�\u0007\u0002\u0017�&g?��hj���D��ܻ�A@�\u0011���M1�\u0005*���z��\u00038ߝ��\u0016G�{�v�k�#G�����y�&�X\u0002h�\u0018x�b�:U�*�Z OT#�}��v��rي��L\u0010f�\t��\"(�S��ֶ\"\u0013`��\u0012\u0018�W\u0010\u001c\u0000xЀ\u001c.��i�V\u0013���ƞ�Q\u000e����P�\u00079�t���v?/ϛU��\u0006=݄�p\u001a\r\f\u001beR��\u0000w�T\u0012��E�\u000f�D\u0016\u0002�3p��!��n�����,�\u0013\f��Y\f�֙���q\u0018n\u001a�\u001d�\u0006��\u000f��+!�����\u0015��%+�\u001f\n�Fy��ݮ����R\u0016Y[\u000fIVz���Jp>g��qPo�����)��\u001b���\u0019/G���-h}�\u0014�g��W_��N�\u0019�D�ȵ�A��!���\"�����9b�i\u001b�A:�\u0011���L�\u001e��E�C\u0004_�\u001d�\u001d=������Yp\u001c�)�\u001c���?�@\u0006�b��(�\u0006A�\u000f�g�y��˯F\u0001�k�P\u0017��ƙqP��>8��,�R�\u0000�ԏ��8L�����(2\u0006B#�%�\u0006�v�9��J�._�����%�Ck\u0016\u0012d�RB�\r`(G����Y|�\u0001�}�\u00074\u0006�9\u001f�&Id����h�\b���ɱ�CE;P\u0015�aW\u000e)\u0006�d\u0012^���K�s\u0005��e\u001e�\u0010@��\u0001T������E�_����:0��\u0003�4B�D~\u0013oƅl��)h�[�/��A��4�\u001cz��C��c�\u001e�\nШn��*7�\u001aVI��*��L�4]���mig���Л�qp>6jiB+�\\�CuQ\u0017�e�AF�\u0011���L�����]��La4�\u0004<4\u000f{\u0012��\u001dM�l^�G���\u0019뀄D�\b/<&NMi �S�!��P�`�_��2��\u0011�����W��wWw@�D���\u0015Fs����h\u0003���}h\u000f�}\u0012\u0011j\u0010[ⶱ��:�&]S�z(\u001a\"\u0003*9!b�0ŎP|L,�P\u000b�򜟚\bT�\u000e�\u001f�g}l�]���J��x�a��4��z���\u0013^\u0007�g\u001d\u001c]�)G5��\u001f��U錨�R�gN�=�p𣒺�F\u001d�\u0003`\u000b�����\u0012\u001d���8+���`�-\u0018\u000f\n�^�fG�)\u0015�\u0010\u001e\u001aۘ4f4;�\u0019$�Ā�\u001d(L@�;p7��,)����e,\u000er�K@~C�w��qŬ��v��>�ҽ��NPuJ�\r,�\u0010zTpL��b?<�?~�\rv��%�]B����[�[\u001c܎V��Kȕmy��@�X����/$i�&U\u000e��;�\u001d��=\u0013}۷�M���Ե�\u0003���y\n���\u0003\u0000�\u001e�5�Y���8�_�8��B���ݾ_��\b �\"v\r�G�� ��)��4�0�\rѭa\u0017�I(Bthr(#��:WPL�Z8\u001b�҈UK��L�[\u0004���g�\u000b�^��s����5�<�SzM�ArLmF�\u0010h�g�n\u0001,��|\r�'�1��p<�\u001bi '�\u0019�j۠H<��Zʻ�����\u000b�~�peuʣ\u0011���A-�\u0011��/\u001e7<�K�3�\u000b=���X�h\u001b\u0011Ɛ7����1��I�\u00133@�숏`�Z�I�!\u0003����PG��J\t������\u00167\u001e������)\u001be\u0012\u001f�4\u0013���-|�K\u0019r4�?��l���l$;�;���L:��9t\u0005F�R��\u000f�<\u0017~}�\u0006�5v����Ȇ{DuZM��U��&��s�a=�.E�Z]ݬΨU�\u0005:a�\u001c����\u0013�+�\u001ew�˓�҇.�\u001dwdK�F���Ch�k&���\u000e�7G�Z�\u0014/)���\u0011Z\u001e�b\u001e\u0002�\r���s\t\u000f1/�(�Ws���ې�\r�\u001e;Q�����S��0o�3:\bR\u0010Z\u0012�D~��u\u0002�6/J9��A&�\u0011����f*\u0001_�\u0010du�7>mV�\u0019hu'�\u0011���\u0006�+R�?%I�ޭRB�h�P\f?\u001d�Rc%�u��r�K���#B��\\�3�:�No\u0011�_���I\u001e$��\u0013���|s\u000fy�v�\u0003��z��\u000fݱ��Z���sM�V_�\u001b\u0002�o�\u000bP\u001b�u\u0016E\u000f�\u0000����W\u0018z�c>�7�ضX�9F!4��\"J/����U�\u000e�3����Y\n��SW��-�!���Z��=`���E)f���̡\u0012�'9\r�Sp�o��^�\u0002��Gߪ\u001d�\u0007�_;�\u0011�ߊ�hF��s��w\u001e�FUsn����9��w�%\u0002^�JCʣ�\u001e\u0002\u0018��g�k��\u0016���N��J\u0012�AF�\u0012\f���dvxi��dy�3֫U�\n'=\n�}�z�-Ƅ\u0002\u0003-��Aӌ\u000b��|\u0000\u0002�c\u0013`\u0017`����\u001b�nƱ���A�y�;]�?�\u0019J��y��\u0000߃W���\u000f^��\u001f6\u000b���\u001a�ȯ�\u001e��ٸ���,��J0�I�_{x?�QZ���>\u0002����f�\u000b��@#�{螿�<��\r'7��=׶#�l�}0^�or:k.\t\u0017E�8�X6�)~��,�9�ꣅ��1P�nb��\t��qA5��\u0016�=\u0017�i�\u0002ۄ�������6$��p��\u001fռ��K>�\u001f]\u0011 ��\u001a�%�g\u0000\u000e�\u0012g K�\t\u0005�W#��\\dd:�dj�Q�0BE�m7\u0004��-\u0004j��g�_�0��K��a&��4�6W*���Z?ay�#�\u0011�AP�\u0012 ���s��(\u0007�['\u0017 (e�+TIV�f�OX���=��P�Xp�˜)�pō$\u0005�O0(\f2K���ޤ�q\u001fG\u0010|OΑ��W\u001cr�\t��7\u0013\\\u001a�S�\u0005y�M��*\u0017\u001b�\u0019�����jUa��*\u0005.�O<��_?7U���\u000b{�\u0015!�ù��y\u0006u\u0018�U\u0004�w�\r�I�}�\u001e&�w��)ȠC\u000eo����k��*a:Nr�!\u001c\r\n�7ɩ�(��\n��\u001f�i�}L��\bY.f2L6f�8D^�:pj,�7�h�)��'S�P�J�\u0013�1!��E�o1\u0000�e�\u0015u���\u0011�s���L2���k�[`g��\u0010�=\t�\u0007��{~��G�a\u0010;R\u0001\u0001q[-(u��`�Y�R��\u0018��h����B\u0017wu�\u0006+1QG��\u001c$�I��\u0001<\u0006�\u0004Am\u0011�A��\u00124��M/��\u001b������\u001e�U8Zq{\u00044����������C�\u0014̣�S�/��_�\u0011�\b�[�����1�\u001czY����c��b�\u0010L��:\u001e�G7��\u001b!�cC\nM_x�2��\u0005�|3rU�tɮ�|�Q\u001c������sem\b9F\fkn\u0007d`�b&�8�A`\u0003`߼�����\u0006\u000b�־g��*�ٜk��\u0000^s�\u0013ϱH\"��KP�D�\u0013��\u0012�d�.RT��}h;\u0005�_N�\u0002k\u0016�0d�T=w؞TCܒK\u0015?�b4~\b��\r�\u0010xrڐ�+X�(zF���v\u00062B}�\u0013{Q��5�:�;�pC�D�\u001e��D��ʶ0�\u0010�!_�\u0017�4�� ���[���=��|k@��r��> ����\u000f�0Ki��݄<��E\u0011�{�\u0002ó��c��268�e�\\�:�\u0019���z�\"�\u0006�/:�is�o��\u0006�5\u0018�Nc\u000f\u0016šb�d\u0010W�qs\u001b�-¼\u0002��\\�_�8\u0015`�����A7�\u0012H��L�H����c����S�\u001a0w�:2�+u�S�\u001b�k���Y`<-�&�oU����ו���((�\u0015Œ��Җ�c��\u0001a\u001f�����'@��O�D�S����K�?p�Ŷ\u0012\u0012vv���)e2��\u0018�\r��f\"X%%���;��0&���]�;-[���-9��@\u001b�\u001c��Mm\u0001#��v�+�_��%�~�\u0004�\u0018����5�ΕUD���b�{\u001dp.���iR� �*�\"T,%���$��|�����6�{�n��\u001b��b��oĒ\u000ex�I�G�o�Fr��W�qwʨ곊AQ�АC\"T�s��qL�Y��E\u001b6�R�\u000b{�an�\f`\u001dXQ\u0012���=��l\t\u0000JA\n�\u0003�4:405�A;�\u0012\\��L�\u0012�~\u001d��-D\u001f,��w'�\\��\u0000�HT�r��v�J�\u0011-s�W�\u0005Z���符(���NS�骜��\u001b�}Xp�=���:gM���݃�����+'�|\\��'J�ֆѤ�x\u0010��W\u0015_�\u0006ñ�5��n��Ǭ0�,<�D��g8�\u0016\u000b\f��'p\b\u0002�$���Y\r{/\u0016b3���\u0006ק\u000eU���)}��(�\u0005\u001e�j*�n��\u001a�����LU��\u0019+�A\u0017�j�ȜJ�Q��c0?h\u000e���\u0012\u0014A�P6j,��{R�73:Է�d�~,u�z\bS���\u0018�9�5\u000eŇ\u0001h\u0007�\u0002c����d���׌�\u0003\"G�\u0016�����c>�� ��\u0016Zɉ\u000b�k\u001c�c\u0005\u001d��@�\u0000\u001b��ku�b\n�COۣA@�\u0012p��L�!�l|\u0001sJ��Km,\u0010bK��͗�EB79�ԟ���Yw���?B<�\u0019Ǐ�퓅��\u000fS�Y�g�R�Q\u0006#\u001f+�Rq[16�&��Ϝ\u0018\u0013�\u00032������e\u0010#59�ck�e�\u0001<\u0013���=It��\u001a���!~�\f�}�'�O�\f~�,\u0012�i�5<�+;q\u001b0ُ�n/F\u0014\u0001��\u001a�v\r���\u0011䒞�\u001d|X��v\u0014[\u001e�sH����m=�Yb\u0000��\u0011�Dɠ��M\u001a��� *�T�K�\u000e4\u0005�h\n�lGR\u0010\t�4�\u0004\u0016`s\u001bY�xc\u0004%�dN���$'�Q)C\u001aGR��V#(9�\u0007��Lj\u0004\b�E�$�5.h��z�>�{.�<\u0001�Ї�:�\u0000�[In�\u0000�#l��\t\"�\u0007n\u000e\u0014:\u0018��Ϸ��AJ�\u0012���L���_�nW�E�6E+�|\u0010�:��x�� <�\u001c�9;_Z\u0017 �s\u0014�o4��X����&�Q%D\n�\u0013�\"9]\u0019\u000f��_�l:-Z-X\u0015���J\u0015\tFF��|�\u0014�Rc���=2��\u001f\u0018���h��K\u000bM��ŗ�1�]j\t�X�Fʸu��B_��x\u001d�$�\u0001˚�Ҷ*�=؁���E\u000b\u0017�p�+\u0015d�4~PP\u0012\u0002e5�\u0017�s��6\u0016�(eۍ�Oz�H�ݨr�:\u0013����*�}\u000e�=��ظ?���jh��\u0017�[�3\u001b���&'\u0016��>{\u001adJ[Μ�\f^���\u0011�$\u0013�`=�r\u0007��\u000e�\u0006\u0014��.\u001cg���0�*��\u0016\u0001��>��O\u001f{�Cbf�d8�J\u001d?Xy$׹�\u0010/j���G��w�-�)\u0013*�1��e�AF�\u0012���L�54��E��\u0003q@���AWE_\u0014���\u0001*\u0013R\bN\u0010e�\u0017�\u001a��}��G-\u0007�&V9\u001b�6;7��#o�\u001f�y\u0011��|��Kg`\r�������\u0011\u001dp?�u#�`�V\u0005ǡ�W�D\u001fq2I�\u0007}[�oFF\f.��v��\u001c\bH ]�;\u0018�W����(��)\\db�m�뾂lJ)4�X��Q\u0010h�h��T�\u000eJ���6�6e_)ª7܂��>\u001et\u001f��Ew��X\u0017�I:q��!x�A+�\u0012Ԁ�X��������-�g�Kl6�����\u0019;q���I4\u0016k�ڍ�.�Jbx��^�X\n�\u0011x�k1��d����B\t��F���t\r2��E\u0007/�ȉ�]�*`��eIt�]�%�/'\u0010��.�4?�VBmn����G��x�e��c��!�P�p�A\u0010�\u0012��X�ܖ��g�\u0004��y��s\u0019\u0019�O5\u001f1^\b���\u0015�c<4~�\u0001\u0006L&Sd}Gŝ0��Y\tV�a�!X������&d�cA�χW��C\u0012�\u0011�Zk6\"��sUm��\u001a\u0019\u00100y\u001a�A�aۈZ�番3y}2�$T>�8�\u001e�\rj��K}3\u0011�=\"���\u0004�R>ϱ��Q���s����ޝ��Ƥ�\u001f�\u0000�\u0013��\t\u0006ެ��P\u0017T�a%\u0002�\u0002�7��I���\u001aP.��{R�.�c��\u001dj�ʶ|\u0017�cYJgФ�l+�3�f�fm�\u001d�i\u0000�o�2\u0014f�&����\fʷW�@ȕ���\u0017\u0007��`�\u000f\u001b��ּ��$�A$�\u0012���L��À�\u0005�b�\u0002hd�]9�:5�`1\u0001=q��u\u001b\u0000P��\u0019���8\u0011P\u001c04{��A���H\u0017\u001e&��`B\u0016\u0004��~/`\u0018�t��βTe�ǀ���V��,�.��sh\r���O�\u0011�d��L'�aA�\u000f��{�τW�$=�_�Ψ\u0004\u0006\u0001�f\b��Y���\f�7�[G\u001a1�1����圉}y�a���z\u001c�9\u0001J+V\u001b� �uy\\�f�\n\t0�L�n�\u0018\u0007Q��I\u0000P⡗J�\u0002��<��{O�`\u001f O�xA\u0013,瑯�6g�����ko\u000f�S*�Ň\u0010fP�r\u0002���*�\u0019`[�)��Ce�PS�[\u0010nE�`1��\u001f�w�\u000f��q�C�m��A\u001e�\u0013\u0010���\r�9���\u0016�u�f/a(�Y�\u00167r�6f?؜e�E�\"\u001eo��\b\u0017\u001f���S�>21.\rl�5�m���\u0014z�\u0012�3h�a�?�w�@���s\u0013\u0003�U��o�\u0015P���ǹ.(��\u000f_\u0005v�A�E8�\b�\u0010�2��AB!��[1D��\"tl�\u0000\u0019�\"�\n�\u0000\u0001l9��@�y6aI3���I5��`�\u0007���̘�/���Ԙm\u0011�W1��\u0013\u001bs\u0019�diW�z��w��\u001e|�������L\u000f06qS�\u001d�\u0019*\u0014u�{�q؁`E^�\u0001�*��XS��y\u0016����\u0012���K3��Pi*��[m�k\u0014j@x�a\u0018F\r�%�#\u0017e�.s����A4�\u0013$��Lݍ�HT\u0000{�4J\u0002z�^lA\u001f�@�Cԅ[a�\t\u0013r�S�4�gF��S�nyF;\u0013�f\",;> ��\u0006y��-�ŠX\u001e�d}�*P�g)����g\u000f�$\u0005�\u0005�\u0006�vC6W�\u0004^�9T����\u001f�.���\u0004��wP�C�q�(Ҥ�3�1\u0013�H�;0\u0001\u000e���֛ħ�Ln\u0019�-J�6�e\u0015�m\u001d~���'a~#6\u0016� l�\t[)xز�D�\u0000}�I�\u0006\u0011��LN���m�\u000e��T�v\u0015��\n͠\u000f�ר����\u001b\u0006�n����\u0018�S�����B�DJ7�3f\u0002r���n&�:���\u0014��:X��/��Aq(����-�\u0015\u001cL�p���VS��)9��j\r�\u000e����c�M⇏�R1k�{���O�\u0004L\u0007q5�o�\u0017j�\u0011�7��M��INs)k=��X)=\"����B_\u0001���Qt�����X*.<8�~���Ȧ�sm*\u0000\u0012���H9x\u0001�+\u0014#QT��N\u0007�\u000b0[}�K��p��4m����9�^�Z\u0004~L�\u0006:�~�E�@Q��俛�?j%đ�NE�ȷ�EJ���ң�W@U̵om\u0017\u0001�\u0000\\=@5��c��w.�8�K�e\u0019?r����K��f�+\u001ad~l\u001b�x)\u0006��|��\u0005\t��x���~�cd��P��W�a�7�Z�.\n� \n��� ��Y\u0011�%�\u0013\u0014��o|\u000b7U������)l��Ѯ�W}�j��p�U2��w�A5�\u0013�����qB�\u0003\f�U�1��5\u001ac�Tw��HH��Y�\u000f�Z��Na\u0003��\u0016�d�Ș~�\u0007���7��yM5�Q�b5\u0000�Q�g��Z�\u0002W��U��ν��0^`�fw2ډ��Z�e��V\u0014\u0001�]q�)#�\u0014��s��YM��6Qϡ1\"\u0005�\u0005gy\u0018ޡ\u00191\"2[�\u001ec;\u0002w�uA.J<��$Ei�່e�ձ\u001e�KYWA��k\u0012P���hn\u0007�\u0015T9�\u0003Z\u0000��|{V����������?\u00077$U�L��eQ\u0011\u0017��+|��|����)4�JW�D4�\u0015\u0000�ND?n���*p\u0004�\t=5G�\rG�D�1k��Rx��!J�ˑ\u0001��\u001b~\u0011]\b���dU\u0012w\u0000)q\u0015\f������*\u0012w�AC�\u0013�����\bF�~���\u000b\u000e��\u0010����&5��m��<�1v�I��8�A]\nS�U�.Ť\u0015\u0014�\\\u0016�ї�\u000f�>�*�~|�v��+s\u0001�,t��6\u001cҐ6�cM�� ���\u0015`\u0014L<�$\u0003�9��\u0001D\u0018N1�L9Q�Xr��Ȳ,N��\u0014�X�\u0000M2��\r�_��\t�����e� �?��Yΐ�z`��n�\u0019���=\t���\u001c�\u0014��$T�S���_��,b�\u000e��q>_W�ڠ�]u�s3d\u0002���h�\u0003K�J���}mg��EiG�\u001d��;�'�t&����\u0007�����ے�㒭�sޱ�6ь�J ]�h�l�k.i�\u0015)�Wn)\f\u0019qO�VY�ن�F$��!̲� �����\u0006]�*�_=�$��\u0006Rw�AC�\u0013���1��E�L�E���2H�����]���k)e\u001f/p\u001e�z�\u0014�e�83\u001c\u0003>f*\u0015����}�Un�o�\u001b�__�'�pBҳ\u001c��(�.\u001d�i�М\u00049��J\u0018���x-?1.\b.�[����b�j�\u0019]��u���b��Q^\\��T����[t0�g��U�S�\u001cT�P\u0019�f\u0006���G4��(P�\u001a�����6�C��\u0016<|�����T�j\u0013�\u0012ئ)�J���@Rz.�r��\u0002x852f�q���T�l�3��0�zd<6q\u0003\u001f�L,\u0018s���'~��ėf�MY]\b\u000e�G4�`a���\u00031\u000bp��\u001e;�\u0000\u0002����3���\u0001+��v��l'6\u0019�4's�=@6����`�-a\u000f��\u0017�-Y��}O��\u0007L4 ?�A��\u0013Ā��\u001c\u001e��\u0017��Gw\u001d�\u0012y�^0a���U\u000e���Ƥ��E�\u0004��ӱ�\u0014gw�$\u001dV\u0004N|��q\u0016�\u001bʲ�/�Ln�����.h�`2�~�K�=W�aq\u0018���ȵ��,$�1G\u0015�\u0016�v˃&p��d�3\bI[�\u0017���ً\u001f������n\u0007\f\u0019SI�>{�Gdž�w`\f\u0002�HXߺ�\\6[�^~�ˢ�՘X�j\u0014�\u0012\u0002]��I�\u000bw\u0001��\u0007f��\u001b[\u0012�əFQ5�\t�N\u001e����\u000b>�G\b�\u000e��}j��%{\u001e\u0017R�)\u0000\u001bX�u��\u000eq\u0013��)i��\rS�`��\u0013.J�G�0\n=��q�\u001f_h�:��z%��D\t!��E\u001a=9\u0016�ދ`~��H.\u001a��B��u�AY#Z㕧@L�Cyn�\f�\u001e��w�\u001bu87��V\u0010����nf��0c��������@���r\u0005<���u����\tWm�}��l�q^�V�#�j����@����!�2KiA�6�i�m�A>�\u0013؀�JV#p,�POP1Ȑ-\f�k�d�\u000b.\u0001\u0007�@�\b����f�\r�&j+����aQNcL&e���\"���ʒ@nD�~ \u0006y��x�\u0006��[�n��o�\u000f\u0013ȍ�c�\u0016\u001e���J�&!�~\u0012��|�?�����b�l�5;%�`�}ݓ��\u0002e��\u001a^.�,�\u0001��������hP���L�\u0012f���\u0006+v������>\u001f�\u0011�&���\u0014�\u0013z�0v��R�i,%O!ϢgV��!8\t\u0003u�u��W:�a�Ef�\u001e�%�\u0018������!H\u000bG>\u0010�BF�V<0y�sI\u000fx��7���e�\r䴣w��DW-\b\u000b\u000eJ\u0011d�j�Mi֙\u0010��GyD�,�&�\u000e��%�1\u000b��꧵�\u000f*\f\u001dTD����|�AR�\u0013��MS��~�٘��3e�\nջ��Z��@5�DG?T\u0014�\u0015@F2\u001c\u00146���ө�~�\u0017_�Z���ߜ�CU�1\u0005\fa�E9�?��xw�m�%'@W�Q���\t���f>��,�D�t��H]k]�����e�����J��o~ �J�\u0002�\u001cz\u0012���D�\u000e�銤��͙��75٤5_9�\tK�NB��[�\u0006���\u0014K�I�\u0006�O|�\f�\u001f��w\u001fB�A�rp��B��\u0014�S��ܼƣ4�_�T\b���\u0016>�d��5\u0001��?�\u0006k\u000b����4\u0011xtw\u0015)2�e>�[{~���ַ�\u001e�=�5���O�P6����v譪I���\u000f��&��_n-0пF\u001b+����\u0003�(\u001aZB\"�\n�\u0019V%�eIk|�\u0005K\f��l.�\u001cu=\u0003%�\u001el�A\u001c�\u0014\u0000���\r0]\u0006�棈\u0014�G�E7�/f�\u001f~\b\fs=�W�`\tA�-�rۨ`\u0010��\u00071��\u001f\u001c.�o\u0004eX9�ޘ���6Z���Q>��\u0017�ܙ�9RS\u0013�1���E�|��\u000f�T2P�m挽�P\u0005�A��\u0003�U�� ٝ�Mּ?�A\t�%�Z���zz6\u000ft���`E�iD�}j}��7�`�~?^Z�O% ܆�o7��o\f�\u0012�I��B�໷ŭgY�\u00041�����>|\u0001���T�0\u001b\u001e]���\u0011��\u0010�7\u000b���=��K\u000f��b\u0010����=��?��\u0017�ՄS�r\n�՗����S�h�$\u0010�a\u000e��bŧK�*��&�S���2���?>o\u0013�/Sh\u0012���t\u0005�{\u001a|�\u0019 \u001dV�`��Ӎw�\u001c�ť���(B�T��b�d��Y�;Z\u0003c��9�d/�{�?�T�C�\u0014�•�!�i\u0002�E�%�!Xi���A\u0013�\u0014(��L�\u0007�\"����n\u0015�/\u001cz�p�\u0010P��:b(K&]0X~�N\u001d�m\u000e��\r6}�*r•+��0�y\u001f��輆��dbf�P��\u0001��\u000b߹\u0007\u0004\u0010�ł�N�E���Tkm�G�\u0014\ba\u0018����xg�����Ն��\tT�º��>\u001d��\u0016�Go�l[\u000fY�����\u0016\b�v6��(��PU�O�\u000fx�%ۃ���\b����R��V\u0002)�\u0006�\u001e%\u0016Eg\u0004\u0003K@��\u0003����۰\u001a��\u0002��@D�Yw�l\u001f.-u�\u0012���\u001ft\u0006��pGz\fӴ�\u0018�Q�]d��0��\u0002��������\u0000n��_\"f]��O�9�\u0016\bp1�ƒ�A%�\u0014<���\u001b��>\u0006�l�U���y^�=J\u0015�8�\u0016՜���\u0017xjhpC%��%\u0005\u000b���a�}�ؐ2m`��`���t\u0003H���\bmY��3�rC�q\nҙ�\u0012b�<6R�+�\u0006\u0002\u0006\u0018��~\u0007p��\u0019\u0017\u001b[��4!�t�\u0011�\u00159����]&��\u001a�(V����5*��[4�9�˝�����NIy�l�\u0005ѱ��3\u0003!�ݓ\u0006\u0011�mT\u000eDž���UV$\"�\t�6�����r̲�{lAX/\u000biTY��\u0015:S�7���\u0016��vUd�E�\b�Jȇ�=XQ\n\r�I:~��K����{�g�9�;\r��_>�\u0014��\\��.\u0004{)*ߴ��m��Y�\u0010a�Z�AZ�\u0014P���\u0016��ɫ-BW._�g�\n3�<���\u0010\u001b��\u001fN��\u0003�i����24���ê��P\u0019�5>��\fV�2��\u0018�JWқ��\f\u0000���HmKɓ;F287_\u0014\f�����40Y��H[\u0005�Pı�\u00161���hìNJq�\u001a��)��i�dAJ3\u0003�\u0003\u0005m!\u0004�x@���p\">\u0013|f\u0015'�z�ڰ@�I���S¸��ǯap��a68�Җ���\r5�\n6�+�d�-��I�{M���IY����A��wD�XD��{��E�웒�S繫zWWL��\u0004\u0011\u000f'@4�\u000f�M�T/Z=Fv?�aV��V�6��;L�:\u000e��./��s��\u0003+\bd�����(�~�\u0019��\"�Ow,W��lS��\u001a~S�F�7��t��\t��K�J�a�\u0005ݔT\u0010�\u0013��AG�\u0014d���\u0010��dzޜw;��\u000e��;(�2�SDl��L�\u0010��x�)G\u0019�)���J�\u0002+�\u0013�\u0006���5!����\u001b\u0007�s��;9e�p `P�\u0011\u001ca\u001b}�?���Sz3:=\u0002�\f�˿z�\u0019�x�|\n�#\u0013�s}�\u0017��9�*\u0007k��C\u0018�'\\���b\u0007_Xq\u0015�â�����T\u0018�m\u0001\b�qo/���p@��9�$uXʈ9��\u0001���F�jx�@�\fk�}r��H��\u0019\u001e̓\r���\"��<-�\u001d\u0018�^�\"P�'&�\u0013r�x�\u001c��\u001a���\u0002GE�T\u001e\u001b�\u0018iRYE�!�`S(�a1��X��\u000b�w#��.ϟ�)WA�\u001cq\u0016)�Vӕ��\u0012-\u0016��\u0011\u0016��^�S��[���@�`cvH�wF��\u0015\u00138&\"\u0004\u001b:� ���e\r*F��v�\u0003y�Oe_�1F�\u0000���~(��j�Β���_bg���Ty�Mf⅊�'�4�*���\"d=�3m���Dzp�\u0001��'�P�>!S�|�/qk1-�_�\u000b��By5<���O���%�BVdz\u001b�CN�f��L'cl'�Sh��k�c��떊�e�\u0011�\u0002\u001dy�8;Z+B��r�ɑ#�&p�{\u0013�\u001b��Ѹ�Af�\u0014����\u0017m��΂D\u0001�&\u0001b\u000f׌�t���O��_�<����'_`/�҄\u001e��E\u001f��т�\\���w\r\\�v�`�\u001b��\t���JK�;Fx�QG3E�\u0014,t�׳F\u0011�\nƈk\u0001D�󣛞����ա;R���\u0003��X��L˶�/�\u0017����N��ɜz\bB��Te�}���k{\u001b0~�C�$w���b��q,m\u0001�s\u001e�)هi����\nH\u00180PX�L\u001d\u0010�xLg`y˝��d\u0001�!��9&w�h�h��oW~�������^�\u001a���&�l�HrÞ\u0016`b�Ra�d����X�\u001a��Bnd�s_\u000f\n�݀�\\'x9\u0003�=\u0003��v�R�γk��/DO?��x`�p���� 4>�tk\u0019�����'��m>$2�\u0017n���\"_�\n&\u0005l���Jz\u0003��-�e�5�I/�Aa�\u0014����\r\u0017�4\\�K=\n���p�\u0015uf6\u001aL+sU����Qȕ4�԰~V��`$\u0005�\u000f1�\u00157�\u0012�FC\u0016U�An_U\rC����\u0002�\u001d\u0012�&�]�b�ܱ!M\u00023��p��w(/��u�\u0005\u001bS�9 ���\u0001=Wjή(������=#�*◮\u001b�'\u001a���hv>$� �e���ܷ1�v���\t��N|H4��a��PR��+t��ڳ?��X�6��1|4�\u0005\u0004����Yt��\u001bmZuۖ�V�R\u001fp8���=�\u001e�!M,ɂ�)\u0007!\u0010�@��dS�x�١�}�\u0007�ȴ@a��Nd\u0014,tg�wFZ��f�����|�J������DIo�퀔K2����\u0012���w��;B\u001b�i���j�\u001a(�;�U͹-��q\u001aD�%�+)�q��ȃ��\u000fՈ^�\u000e�\u0015��\u0013\"\u0013/�Aс\u0014Ȁ�X�j��\u0013�\\)n*ӻ�S��\u0015\u000e�M��\u001b7���0\u0004|�D���;-1w\u0007\u0010��s�0\n\u000b~����:�nY�\n���R\u001fY�ߚ�\u001a�]���\u0014�H�#<ȁ'L��5'WF�P\n\n���\u000f�g5��-[\u001db�\u0014\r�IY\u0013 �Ͼ��B�\u0019K��\b�\u0001�Ja\u000f���s,\u0011c�`W/\u0011\u0006�\u0005\u0016[\"V���^�����.H�kU��b���/��q\u000f\f�>i�Z����p0��O�C�}�x�O\"�|��L8�M��izŇq]'G\u001cS��\"\u0011䖓��H�4>d\u0019���}�V!\u0017o�\u001dU5ns�П\u001a�\\�\u0003��K-��i��@x^\u001e� �w��+q%#\b�c�Q�:a@����62����G%,��\u0007�\u0019�[���6�Ը���[���щ�i\b\u0016f`6)4{�@I)e�^\u000f�\u000e�*���\u0016w��<��ƾ�+�b��}\u001b/��l#\u0018���\u0002���/�-s�ɾ�!q��#(G�7�\u0015e��\u0018x��Yl�{�*4���\u000b����G�.B��+W��H��?�%�X\"/08\u001b��AD�\u0014܀�X����z�\u001e5G�\u0004��a�}㒸\rsu\u001d\u0004�=,kZ�\u001f� >��Ix�̩�Q��%P�Iz]`l�I�\u0012��qF%��^�\u0005&՚B62���\u0012�J\u0004C\u0010�\\��y�\"\u0004'\u0000\u0007j���\u00069zA/K����ᑰ�3T\u0003q�?\t\b�&�Oc��\u0003�,�\\l\b�a\u000fo�� ���`0����\u0014�� \u000e�w�m3�&+�K9��{gL~�\u000bV�[L�sl5G8�3�(�ʆ�${6�aL�I���!�a��Ɛ\u0016�*O�\u00181��W�\u001f�V2�A8�\u0015\u0004��X��x�W^l.�\u0006��ě1\u0001\u0015�@�)K�\u0019\u0013��L\u0011���&\u0014d��B#\u0013\u0019\u001d(�i\u001a��$�\u0019�M\u0018o=A0��hR�n%���\u001c�\u0000/ɳ�+�Հ5�1�\u00069�ߒVS�\u000b_A��W�8�;]&�P\b���s(\u001b\u0011�8�\u0018��\u0004�\u0019^�E�3Ȳ��\u001b�.r-\\U�� ����i7\u000b\u0006-�D���#�N\u000e\u0013�.\u0012��;�+��[9s�� ��Xu���Oq@9L����6H��\u001d�x\f�)��\u001el��xupF��\b�j\"�7=�rt\u0011 ��\u0019�8�?�^ZDT���m�\r\u0015&g�Ώ���Sѱ�\u000e,W�\u001b��\u0004\u001ap�/>\u001d`f\u0007\u0003t�\u0012��|�\r\u0001\u001a\u0018H�H�k�\u0000�1n�#ūe�AH�\u0015\u0018��M|�`�B\u001f���8��E%5�]��Z�P�R�Ra\u0018vr�h��W�\u0010\u0017�1�m�2`\u001e��>񏳜r�aҼ�\f4|�$ߦ����\u00017�\u0001\u0011\u0002vh�%\u001d�{�[ �\u0019�,F�z�x��;y\u0003�Ӄ\u001a���AFgR�����\u001a�#�\u0007�0US9\u0019�C�Y���Y�\u000e�\f�`��F&��\"�x��\u001c\"���Ȗ6l�\fLh�V\u00177O\"�\u0014��=�!,�\u0011�MxLJdd�D��&�nD6�\u0006��!�pZ�O�Ni����������F�\u0003%7/]�\u0004���k1B�9#mY����\u0003[�`�\u001e�|7ϛ)�S�k\u00192�4>�W~�=+@�9\u0015\brڒ�^��\u0004��(�0��k�eY{\n\u0003\u000bWѺ���;�\u001a�s �\u0018(n\u0016�$��\u001f~\u0015uy\t����:є{�;�\n�J�������.��PI}�\u0019�08�A3�\u0015h����:+��_���\u0010���|T�}UVp�lCA�&���Y���bq\u0014ߙM�\u0017+��\u0015��\u0000&\u0006\u000e4��{�V��5���Jbi�Mkvw\u0004E��͑v�*���a\u001f4���1}���ʿ�\u001b�[\u000fq�R\n��!�НcMu|_RP\u0005\u0005�%\f��7�.��#\u001d�E�{}��\u001d���3�ܪ��3�%�&�&\u0014Ec����|yk����x\u0000/[��\u0004����I�Y>\u001c�\u0007\u0019\u0011Zʎu~�w��k\u0000�5\u0005��\b�s�\u0000��f\t\u0018n�X�\u0013�7��(\u0017_z)g�m\f\u0019x��\u0013�\u000fӕ�@�$�I\u001bݖ;y���$҄\u000f\u000b\u001e��$\u001f��x$���<\u001a�Ϳ���7sM�HT\u001a7�AG�\u0015|�����3X���e)\u001c�4�=O\u0015�.�\u001a\u0018��[5�+8ө�g{�t�-�\u001e藶h��!m!\t(��ŏ��Th��p��O\u0002K���b��\r%�\u0006�|=� ����p��$o\\��n��\u0018�[�V�D�0X2 \u0019�2��i\u0003�ǭ� �.�{��#��*�|ԘP��H�M�煍�\u0015��gF���\u001abUT��x�~%��xn��pG�n�����$\u00135q<\u0000���F��w1�)�?\n��fo��!!�o�\u000eo�LK\u001c}�f�\u0015m\bƨ\u001brv�z�$�3Oy�0G��B8��{���2��\u0017��\u0013�HZ�\u001d׉�hl��C�߄dm0�\u0019\u001d��u��\u0012j����g�\u0000&Ln���/Yv�]\u001f\t\u0003��!i��9�A9�\u0015���L���¾vE��L��:\u0015w�\\u����`f�`�goTIU�X)��\u001c\u001b,aWt��l���\rC\u001e��:�M\u0013M���l#?�i�rb4/���'��\\;D�s\u0011�ߞ���'\u001bI\t��� \u001b�\\��}��F`�A�E\\qi\u0011NI�\u0012wD\u0016�/\u0013�\u0001\u000f��'|�/��0t���%���\u001a�=Z8=}L�\u0005\u001f\"5��6��qVu+�,����|#�0I��\u0013�-O�\u0018S���9\u0001!\u000f���`\u000b�a�#-@�w@���\u001e����z\n��\bm��@�S����I0_��R޿\u0018�~\u000e7\u000bCA��\u000b%��\u001b\u001a�\t��z�͟� ��Lu�6�/\u000b�\n��֚�?�\\�7c�7� ��*渲��}ɣA)�\u0015���ća�\u0007\t\u0006Gc�\\kj���j��P�V� ;�{�5�Լ\u00166��EE\u001dwy�쪒�10�\u000bv\u000eؠ\bigԖ�v�!��F�N�F�h���\f\t诸����\u0019��ٷt�d\u0004\u000bR;�UP����{h\u0003�\\\u0007��\u000b���_���\r�h�wCpӎ���h��x,7N�\tG]}+\u001eB_D�\u0015�m\f����\u001chଆ��?�u���8���My�h�S�s~���rM��E��8\u0000�����2\u000e���\n�\u000b\t\u0015�\u0002Zq�ۍ\u0007:��P�`\u0013L���R��۴����J�\u001b��t��\u0016!�A?�\u0015����\u001e�|S\u000f��|\u0012]M\u0000W�\u0013��x�\u0012\n���'�V\f\n-^��\u0018\u0017`Lzl\u0003�ҵ�\u0019د\u0000��F����>W�\"Uh\u00180y\twQ\u0014\u0011�\u0019y)\u000eqZ\u0006���(���V�zd4�m�##\u0011�\u001e�.�Rq\u0002�h%J?\u0002�Í�\u0002��\u0015�\u001dK\u001a��gDd��$��a�V\u00014\u001e�Q���H\b'�������\u001b\u0006�@\u000eI�\u000f\u0015���~Θ\u0002�\"7�=��#ˤdbM��\u001b:(�h���X�؃\u0006\nW�1\u0005\f-zV��G^JC�j\n\u0010_\u0012��s\b�'�S\\3�3���5��\u0014\u000e3�L��\u000b�wP\\,'����`\u0015�X�x�/(�\u0016\u001d�\u001a)DM��\t\u001e�+Aq\u0000u��C�r[�c�6�=�\"^<+����Ԩ��A7�\u0015̀��\u001f���T~5�\u0006�F��!t����˜/�EtK��\u001d��V�� \u001e��ǡ���8�pj5\b���\u000b�&\tL:/\u0016H�8�W΃��u�A#<6~v��z~�����\u000bE4\u0001�\\��%�Tb�r�\u0011�t#E�\\J)t�?hV�&����b|�A\u001c\n\r|L��K��\nx�r�`E����^�\u0013�=�\u0003oq|��\n�qQ�}��\u0016�K(H�53�u4sT����P\u0018��&/S�\u0014�����'ߘ\u001e��H�L\u0018�lC\u000b��?-� �\u0007U�\u0016?v#Rۂ�)�M�zY�|�jۥ$�R�\f�Lm\u001b\f�V��\u001a#B\u0003�:�[\n��c\u0010e��1�Y���L�g�eI��=J�|��E���*퐞�A8�\u0015����]\t\u001b\u0013\u0013M����cI��\"&%\u0012��t�zn\u0005�C\u0001w4���i�-��x\r���_��S�\b������2>=.\u0019z�rR�\f\u001a�L�\u0018\u001bB1o2�P�UH*�&�Lt�ׂ�M˩�\u000e@��_Yno;�.���fOT,g��w˹\u0015��\u0006Z��\u0001|\u0002�Ź\u0012���\"�\u0001��\u001c�r�U��2\u0002���`����+\u001e�n\t���o�\u0016Rzɭ�R\f�/�(�,\u0002�I���3wh�x7@\rY�>f�\u00129�\u001a/����\u0013P�\u001ca~,�W\u0013\u0011�\u0012DW��*/^�g�;���jz\u0012M.T�I,�}\u0003{mW��\u0005o@䔧�����$�\u0014�B@�\r\u0001��L6�yV�h�_\u001d�7`@\b\u0018���\\\tJ�����A;�\u0015����_\u0018C}2Ύ�\t\u0010�>�]7ѝ�_��]�)�ֿ{�9��c�4t�jE�S�Y\u001b�>\u0004bcF�����ߣ�E)�Sk�km�%B�\f�\f\u0013@�Rp����\u0002�\u0000��D2\u001bs�O\u0012��3���P����\u000e�VS\u0000Ǩ�=�v���>X��\u0017�\u0013\u001a\u0011\u001fL�d�3W��O�4!��Q�9c\u0013�?l�\u0010=]�E�E�Eb�\r\u0018\u0006�\u0018��\u0004�@��\u0014L�0����x��`\r�����\"�\u0001�ʖ#\u001fR:�T��J�4\n��t�q\u0013j�;�x��zXy���4�aڀ�X��\u0002�JT����^��n\u0001t�-H��/��gh��f!?\u0004c���qڦ��1�et{\u001c�wM�Ϭ��']��p����\u0014�AI�\u0016\b���^���K�\b3U�L�<�\u0001y/Q{�\u001e�\u0006�c9{ޓ\u001c\u001b��\u001c�J_�U�B-�Hw�B�P���E\u001b�.�Tw\u0003�0��D2�gl|\u001ee��a@�^��\u001aj�,���ι.0\u0007����|\u0010Dn\u001e�W;��81�����\u001a�%4\t���j�$„56�VQ��Ǎ��T�\u0005n�\f�?.�2��\u001bZ�r����1�'�4Q��\u0002�\u0006�\u0011�1Hܫt��?~�)$aB:H\u0013�\u001f߈T��P����x�\bq\u0002�\u0010��J�\u001e�D`�\u001d\u001dB$#|f�أ��#\u0000F:((�\u0007��Ag��C\u0016\u001d�\rs�QD*�nC���Bʃ��֚��H\f6���w��^���h�\u0001{��\u001b P���\u001c^\u000fU.�rB��\u000e@�����Өr\u0013�A_�\u0016\u001c��ć���|\b�\u0018L��\u0000F*��\u001f�?xV�]�)M3,#&\u0001y�>8\u001b��\u0010����� ��6��\u001d����),�\b�g�I�\u0011� \u0012}�\u001f�A�!-\r�\u0005�.�Q<\t�%J�_W��������-��~�Y��F�Ȑ�O,Dvєh\u0018~�|(�w!�\u0000�i�:!�Ҋ��R?/��{:ۼ\u0007�o��\u0014��P�e����)��(��u�u\u001at���9�a�|�ע[hԯ\u0002oVm悙fQ�Wx�\u0007�Tѽ\u001c\u0002;�#+��\u0011�?�M\u0005=\b��k��R<�ŋa7x7���e_/v�\u001eygK\n˜�\u00038ѝ����O?9�*�&q�rtF,�\u0000(\u0006��K��3X�\u001f\u0010\u0006�\u0013\bʪ�`�`�a��v秱�#���V!\bo]\u0010\u001f\u000e~Y��o���\b���~B�\u001b���\u0013�AV�\u00160���`\u0014��Ρ_\"`v�\\Qw�v�!\u0015��1\u001e�a6w'7i��?a\u0002Iм��5�U\\t�\u0004I4x��6�(.:�'{�Z\f\u000bH\u0011�64�k��ū�\u0017c�\u000f=��\u0000&�g��C����B\u0019�`!G�%R2c�Y�\u0001]\u000fch\b)eg�0{�CA̻O8{o��\t\nu�17ϖ�\u001e\"�%\u001dڨd\u0003/`]5��[����\u0017��]�\u0019Ʉ�3�j\u0010\u001bդ�Wd��?v��o*Mo\u0010L�\u0012�Ac�\u0016D���j\u0012ݱQ��~N�}Q�\u000e�\f��T�P��D��S/j��@B�\u000f�����$�D\u0018JR^���o �d���o�;U�Rծ�\u000b�DR�\r��\u0004.;��n��s+�4;�j\u0019��l�6����s:�\u0013d�G\u0017�cZ\u0005\u001f7��a!��f�\u001b;~����\fo���~\u0005x�\u001c\nO�\u0001\u0016-�V�\u0006\u0019¿S����:L\u0004�N��x\u0014\r?��,8OK��v�rs{��2���\u0016�\u0016ޑ�r\r�;}�\u0002j�����\u001c1�p�[˔��;\u000b������rÇ�?�c[j&Gg\f�\u0000;�:�A�m{�_��Z,��\u0013\u000e:��U�;)�;Le�)]I�p`�3��t(\u0005�h�������T:��0\u0017!p�.`�~14�G�\f�y\u0003�cZ�A%���`�;gr��.�\u000b�=B��Sr��x���\u0016\u0012�AX�\u0016X���`\u0007�8��z�C\u0011�\u0017/�5��t��lݝ��Ge2Q�*�s��0E6\u0014��\u0003�;��� _��\u0006�\u0013U�V�ee4I۹f��Mt\u0007/O\u0018*\u0007<��ˆ\u0018q�B\u0018k�4y��P}�Ƙ\u0004�/���\u0000f/��\rW1iB�ˏ��5��jCecj�t\u001b��K23���ٌ\u001bФ���icCt^\u001a�]<2���\u0005�׆š���MJ�\u0000�\u0019$\u0004~Ǔ�h�\u0005�̛a\u0006��\u000b6�_-����&ZS\u0017��:\u0014\u000bi���g����=�&I�\u001cq���~�\u0010�#&�\u0004cnd_N޷���?̦R��]\u001fW@d0��(\u0014\u0000 \u000f�\u0013\u000fȓ��\u0017Jt�++�t��\t�Į��#\u0016�b� ,jZ8��!�Y�b3�xe��tפ\u0016x��q\u001c�;-�\b\u0014[I��E:�t(���}��b��ŋ��+��}\u000eKq6�p2C�4b�\t\u0000���x�ļ���\u0006{n�(\r^_�!��\u001c4ܿ��\fY�k�;\u000b�\u0001��j�{0'J���=�g��\u0007>\u0003C\u0003QU`#\r�#b�\\?�PZ-\u0010V��5\u0015<��\u0019��AT�\u0016���&�t��\u001ag5�ο\u001dču2�\u001d{h��\u0007\u001b[��[���\u0013�\u001b�F�i�\u0015J\u0015 \u001c�� ��\n����!����2�.������!\u001ch��w�!�\u0012�=�o[�ݏ\u0015G��w?��\u0000�\t�w��4\u0019:Q���t:���x΢�\u0003z\u001f=G7:�d��A��J���\u0002v\u0005\u000f���z��ڣAX�\u0016���\te�z��\u0005��H\u0010���n�髰�\u001dO���:0ݗ�k\u0004y�\u0001�iR)\u0018m�\u0018��\u0018V��\u0002Q'�H5@��0\t~<�����\u0000����\u0000�\r|x�\u0016�2�����[\u0015�A]-Dǹ�\\rd�� �ˢM�kr\u001d���\u0017��\u0011�\u001b&Q\u0017ʈ��N��L�HU�@b\u001e���0��\u0005�&���r�\u0019\b\u0012p�^�R��Bk/.O����p�WP���B�V��}a6|\u0011����]t�>\u0011���g6NP\u001eQ\u0000֍�?P�8˿\t����»��O�\n㶆\u000f��AD�\u0016���� T��\n���oC�l\u0013��\u000b�\u001f�����]\u0003?\u001a�������Y\u0011\u001dG@�jh�\u0003\u0015f\u0006k�D���\f\u0015{����{���k�h�\u0011\u001c�O���\u000b}�|��4_��;\fěy�n�~:wȇ��\u0013������;4\u001ct������\u001bHuE�gQ�'!{��t�*_b\u0001��@�?�\u0018�\u0012;�'��\t�@E��Rxr\tM:|3�;�\n�Q�����\u0015�Bں��F\u001c4Nk�\u0014����\u0005\bPu����Y<��T�ʲ�a1�������j��.\u0005��`\u001b����-���n����G�,���\u0000)�\u001bI��'�Ն�\b�K�\u0005T7�F�\u0001�}k\u0018��i��T�����!�az8pNjb���z�0\u0006�jg�Bƒ�Q��Y��A?�\u0016����cͥ��\u0012S��� x����)�ug�H?\u0003$,�N���\u000e�D�p�\u00041�Y�pq�盱�BS�)�R�\u0016s�v/�|\u0016�_�j�i\u001dWA�\f�޳\u001c���]�z\"��\u0004?��Ѱ_��W:N•���x�\u0005\bkS�L��4Eu�%O��=\u0011D!lz{`��R��\"�Q��b9U���L�4�a��\u0004�O�/�|���)��\u0007\u0010݋�H\u0014�\u0002n�\u0002fI�E^z9AH�_�Q{�\u0016���|*��\u0011P\u001b�v�C��\u0017�w�ĵ�k�`\u001c�cc\u0015k�1\u0005D�\u000b`�:& ˤ�\n��\u000ee;/���i�\u000e��;��ڎ��V\\�\r��~�폺�*�<���\r�0�\u0007{��\"���k[Hh��V����\u0004\u000b--��A-�\u0016Ѐ�]��0�\u0019;~0#C�%\"$9�4#�W\u000e�[�5{\u0007ĉ\"��5r����[��Q�<�c]>Gu���Sk�d�w�s��\u0007�����\u0015���a~�(�7Ù\u0017*��]T�&\u0001\u001a�\u0000\u001d��`�c�ᇱ!/��\u0013^��ĥ�\u0017�?�\"����~H��\b��w�Qp�D\u0018����\u0000�����@\u0010�_�+���=�����\nN�I�y.CΚ��~�@\\��9\u0003���g�&�)4\u0000��}�,^\f\u001fgm\u0002wP\u0014V�$����6�I\u000f\rظ�pH�^��\b� �@W��\u0015��8�8˴�r&Z,��\u001a0�qc?�֑V��G�Z�Y;��)�-$je;���{6� ¶��Ί��A#�\u0016��X��ᄍ�`ʇ9��\fK}\n�\u0019ѐ�H:J��\u0013��{ڎh9�}^��@1�,�eѳ���.[لbG\u001d3>��W��o�k�b��I��g\u0004N!\n3�Q�\\���Y�\u000f���l+��\u000fG�I#&�c^^B�L�{f]8b�\u0000�e��V����g�}\u000b�v�;-��u�F�c�\u001f\u0013Y�s\u0015�k�Ȕ�\u001cm�3�\u0006�8�����:��IB>����@8�����\u00119p_��ű\u0001�L\u000f\u001d�\u0019��䅥����!׉[��8��Ֆ�1\u0017a\u000f\t\u000e$-ż��%(�\b7\f`�� P>�\u0013�򝌓*�#����m\u0000��\u000b\u0007\\�tG���0*���A'�\u0016���X�g�굾��(��\u0004{\u0017����A�a4w��=�R�K�\u001fRKB���\u001b�/QI��ݫ�Tǁ���Ҩ\u001e\u001cY��\u0017U�\u0011vx\u001c�ev=n'��f�F5�X�x�|��\u0014��*�z��\u0015�b}z\u0016]��@|\u00112\u0000�\n��\u0004\n#sZ\u0019^̜�\u0012\u000f9;�b�h^��r���m�9\u0015�\u0019�\u001b���\u001f<�b84�W���\u0018i���|�,�䛣�[��[/paE��\u0013v��H\u0001Վ\n���6��\u0004������\u0013�\u00033����]'�\u0004,�g5^\u001a\u0018\u001a�x(���-\u0007\f֬'\u0003`��v���/tR\t>8��v�0\u0000\u0005\u0005�/gq\u0011r��.��x��t\u0018��\u0012@�A&�\u0017\f��M[,�;��\u0016a�3��&�l�%i��Φ��@�@�jg��\u0005.\u001eF�*���`�\u0004h�=`�t�F1}y�qհ��~-��/�R۫�&[��\r�m� �\"9�hfޛ\u0007���|֡?�~\u0019��jg���\u001b\u001c�����u\b*�_�a}���\u0002wg�����Ɵ��%0I�D\\|\t���\\3���\u0015�<�9��\u0018zb�𗉻_��\u001f�����LNP�_�\\)\u0010g\u0002���3M�\n֕;�=v�\u0014ˮ\u0014���\u0003�k��\u0015D\bǼ�Y��0�Ƌ�\u0017H�֑��\u000f}>�1L��ᬤ�u�\u0012y�����x���/�7�\u001c\u0000&6���\\�vkK<\u001a�A$�\u0017 ��X���n_!��\f\u0017�B�\u0003��@��\u0005�j�ο�u\u0004�\u001dX��Z�Y��w��r��r�\u001d�1\u0017Mr\u0018\u000f���G \u0012��i�h�U��e�a�\b\u0016���B��B�[�w�'\n�:\u0016��q�(\u0002�r�Q�27\u0018:�1.S�w�}�6\u001e+��ف��}��ǣ\u0003Qx�\u001b��+��iwrP�ѳ7\u0019(��3\u001dʷo���5t!#����\u0002�$�\u0018_\u001d\u0004N��L����37\tE�\u0013��߉�\u000e)�����e���.}Րo�)�ܭ&}�[O��O������d�\u001c\u0004, m�m�>\u0010)���QADٷ�m��$\nI�����\u0017����.o�=��f+�m��A\u0019�\u00174��Ms�[J�҃�i���q�?*e\n��Ⱦ�É�c�s;��A\u000bO3���y'2ԯl]�E\b\\\u0010Z:饨\u001d�\u001b%gU@ ȹi�\u0010\b�4��Q!\f��9b4�>�П?�����gʛ6\b��\"�����|\u001b�yY�n�\u0012B�\u0001��LH����J,�zэ�Y\u0004U\u0007W�R�#Xb�=:��/\u0010K����7���\u0005y\u0003W]k���Lv�\r+(\"4\u0002�A@\"��2b��D��O@\u001ez�mj�*��\u0014�Z~NK\bb\u001a�kM\u0001$/\\��Ҙ�� c��_z\u0016���4-\\����[\u0018S\u0010�\u0013���ێ�\"Ѐ\u0002so�\u000e�x��\u0007�I�-�A3�\u0017H��MT�i\u0007+sj����&�Q��\"\u0000\u0015�N�gâY&�aI��\u0006s��G ��*�4mt;?���f\u0011C��\by\u001b��8fNU\u0005�L_v�f=���\u000e�Lji�m`\u0018G*5��Ғ�Ά�G�NY`��\u001e���A�\u0006�\u000e�L�\u001c��\u0016���x�qaFd}�@\u0016W��\u0002>��?�%��y�i��4\u0012%v\u0003zFQ�\u000f8?\u0015M\u0007����]\u0005\u0007\u001c`\u0001\u0005+����.i�,�ٲ�N\u001dy��H+\u001d\r�է�y�(m^�\u0019/�\u0010�-]$Zc\u0005\\Fx�\u001d��\n��\u0011��S�����]~\u0012\u0017$��M\u001cޯ^��Z�2�\u000fTd\u0005\u0012!��$E�¬Y��yǴ\u0016w\u001dFҞ�f�{i�P�fQl�\u001b�A+�\u0017\\��M{\t�RR�9�.\u001a�\u0003��\u0000\u0017۔�\"��R\u0010��mq6��\u0000nm8\u0014�e��\u0007pd<$�\u000b����������\rH\u0014]�g��_&x��\u0013�x�-\u000f���%�\u0014\"��nR\\�!j\u0017QRP�ӳ̗ӷ���C�\"������;\u001c[�\u001c\"�W����\b�uf �}�vpK��GP|u(��_[�\u000f��\u0013��\u0013��\u001fm.ۆr��U�dm�/\u000b\f�\u0011���Fe\u0019\u001e̚�wa\u000e�r��\u001f�C\u00190��ew`Φ�\u0004\u0016���n0\u0010.��]�[�'�_�\u001b�e2��&7�Ð\u0012P��z�}�3F�8�W�6���}�h6\u001e�F.{��ˆ����/#\u0011�sRԢ�馏#�\u0018�x��A9�\u0017p��L���߲�8�N�\u001f�y\u0019��\u001eN[5\r����`.\b%\u001d�\u0001b�\b��c\nm0��*��{�C��.�\u0016�i��y\u000f�����#�Ѕ�+-\n+�ˑ\u0017B�;|�\u000b\\\f�k\u0019��n�\u0005�\u001f8[\u0006.O��}끾śE�J��\u0000������@.tNdi�����5�Y}�-�+��O���Μ\u001a}���@�-�˲�\u0012t��\u0019y�@q݄\u0013�\u000f\u000ba�7\u0010��7-�\b�,�`�\u0013���Wʑ\"j\u001a��\u0018�w� ��!姯�o�R&\u0013�<�b�|>UM��X]��\u0016�\\\u0014ۂXJi��J��\u001f\"\u0013�\u0004���Ҹu}�5�C\r\tn:�c�W�\u0004��w�P�;�Ǧ�^�\t\tq�����C���l���A@�\u0017���Mu��G�\\%\u001b�_E�\u000e'�,��Ii�q�����54\u001d\u0011�\u0017g��7LJ\\\u0006vޣ�Fj\u000f\u000e��0�.A3�D'LV\u0007T���y�\u0003�B�[���\u0011�x�D@�闣� p��c|!�M�\u001a��^e�r�\u001e�^�u�����:�WK��%�ф�t7�\u0007���.̅\u000f�]�٨(M\u0010\u001c�K��2Ş���Fq�Fh\"�ε��r�_]x�T��P��\u001c�a�z5>+�\u0003\nE�_$�~t�ZP����Ol7X0\u001f>��X�E�k���E�\u0000�D\n�\u001ej�\u0013D�)7�p�9L��u�r�\u001c��\"5\u0016��r\u0001M>ϟ�������U@��D�J��[K��P�\u001f*��V`�~u=Kl\u0012�7�oy\u0006�\u000b\u0019\u0014\u001b�AE�\u0017���Mz�)��9[�b%�t�s\u001c\u0013��,r0�`FL�+v\u001a�\u0004\u0012\u001b^�\u0007u\u000e�Ef\u0002db�\u000b\u0015\u0007\b�d��Jh\u0005d\u0018�M��\u0012�wŇ\u0019�\u001d�4^J�͟��|E�\u0019_\u001e\u0014��{0s��\u001f�M2�\u0000(�L`\u001e3�\u0016��Z*�d\u000b�ٲ'�?\u0015A\u0004\u0007P�*\u001d\u0007��g�{��X���I+\u0002�u\f����A�p\f��<����o\u0005�1H�oY~�RttHW��s���eU�\\�\u0013��\u0012�E-ei����2kdo����\u0017�lJ͍v�F�n��qT��Q#(�<\u0016\rF����w�SZ\u0001}�Ab\u0003a6\u0003��n\njB�\u0005++��x��:���+D\u0014�\n�]�(ӽ�\rL8wZ$����w(\u000f��\u0014\u0015'ؔ��ˤيm�{��,�A=�\u0017���L�\n����H�:\u001fP\u0015/�'��ƙhu㮗�1,�Vt?~ZKS\u0014j���\u0019�X��'�=-RU*.\u001b+R]Z�T_���_ \u001b\u0011i�ej6�n*\u0006o{\bsZC{N.\u0019j�IY\b�0�7���){�1��`e��\u001b���5�\t\u001d�Q\u0004p�����\"\t\u000e�~.�-�/���!}e?r/\u0012P�A�[��\u0014��K7ac�\u0014�\u001d\u0016��f�h%�\u0003/��sƋ�'8Bjq_d\u0013-.����}@�t\t�w�W�Я!����#���h�Iog�Un��֨�?T��\u000f\u0018��f�\u0016�Z�Į�\u001dq\u001e U�>MR.a�'�,\u0005&g��i��sB#ջ?��\u001d����U���a���K\f������B�č*�\f��AA�\u0017���M{\u000b�\u0005\u000b�]�Ti?nG�-1�X'\u0011���%�M���Jg0\u0019�of��9\u000f�}_@\u0002j��-��^ʦga�� pk���#o\fw\u0006E\u0018>\u0016�\u0017t����F��\u0003�B�I��G*\u0016�E\u000f��\u0000e�nֺ�)\u000b~pK�v��-�oS���ߙ|�\u0003���\u000b u�,\u0014���[\u0005Lk�!<,���T�\u0002���E���� .T�#��ɔ\u0019�\u0000øңA:�\u0017Ԁ�L��0\"G[���̰\u001a�zkL���w٫� �>��\u001b�d=kG)\u0000Հ����\u0002\u0013\u001f���\u001eͼWd\u0014���R�뺲�`���U�t?܅g�GAhtB���\u0016�Ɂ�>��\u0000�\u0003!T��a�&\u000e���\u001c�\u000b�Q�'��\u001d��\f�\u001cz�X!`#\u0016Q��?J\u00195m�cP�W��,Q�x7�\u000bߙ�WgG\u0006O@#�\u001aV���\u0013I���ruKc\u0006�I93:��� ��\u0017���g\u0019f<ۑ�bː���U�\u001a\u000e�� �qV/\u0016�/\u0006m��WqO�hQx\u000e\"�6���S���P�p\\7��B�۶u�V�@ �Ĵh��ʖ\u000e�J��Z�[?f�T\u000f��Z��?�O\u001a�҄z�x>��8���X-���A4�\u0017��L���j�\u0017C�y�\u0018�ꋋ�TƷ���\r8������N�0��R�G�5Y�ŀ\f��N�\u0006B�� �O��;%_�{w{dE��\u0007�S5��3�pặ\u0001��T]�]b\u00120��3��olv�z\u0012-\\���T'�*t\u0006�\u0001Q�4��\u0000���<�GH���C�])c�z�\u001eFd��I�$��\u000e��P�M�0�\u001f�t\u0010��+\u0015�kk>gP���\u001d��\u000bxEy,���en7C��1tS�GS���*�0<;h����9FD3Ux�\u0016��Z��\u0013��72tu\u001a\u0003}�\fM��)F���xB���(6��زN\"\u000b��\b~��,�\u0017F���\u0016�y����3G૜2�\u0010'���K��[���&�A<�\u0017���Mz�jK� ��:X� �����鳗%:\u0018#�\t�ò��\u001eӋ��\u000f����͠�!\"�\u0004 �\u001dr\u001f\u0012�>�h�t��=�\u0012��O�\tV\u00018X��s4�(�c�n׊\u0012ai\u0011�%�)\b�B.��\r�\u000b�\u0019�I1�:�x��.kȾ��\u0001o?�D�#˛������k�nO�6�\u0011�I�ą\u0002�+9:]����`��\u0014����\u0011R�7H\u001e�-�V�i3�s�������GƘ\u0015\u0015ƫ>\u0013\u0002�+/wi\u001d�{\r��,L�Ҡ�#�s\u001b\r�[\u0003�솑�-����Xk��CfuYg�0�nl��?�B�v�8�zw�8�L�?C\u000b��\f���\u0019�t���`Hn ��yw%\u0014��\u0006�r�տ�?,��A<�\u0018\u0010��L��\\��G\u0007�0���\u000b����s��rb\u000e�����F�w��~-[�܁H\u001a�>��ׁ7��ą+��\u0004���]}�?c� \u001a�1`)�Y\"�Ȉ\u0012�D���I\f�ar�\u0014�Cy\u0003Rwܔ[�\u0007<�Z�\u0002\u001c:�Y,�i�)�����u�틆���Ⱜ\u0013µ�c�����Y�6��m�`�w^�\u001b.zᐋ\u0013\u001e>��\u0017�\f�\u0005f�B��'֗��\t.O\u0012��b?S]�ך.\u0014�V�\u001a0r?ⴙ(��rjg���~\\���Ȅ\u001dң��\t&��rzzF\\\u000e��‚E2�㜷\u001f�u�K�P���c�k��p�\u0019��e��4\u001d]>��ejb\t�mp�wr�'W�]�\t�\u0017\u001di���;\u0002�A6�\u0018$��My�7\u0014~�5}�\u0019B�-�9\":TJB��\u0004��чSe�l�\t���r��as�oPA:�F\\ү�{!r�+NL�2i���Н�*���\u0015�T\u000e��+s\u000bh�\nYp���\n�k>�\u0019�&��`2\rgk�>#\\�\u0001\u000b+\u001cՈ�\u001dCa�8\b\u001bͼ\u0002Y\u0016KS�Վ\u0013\u0016Z��!�<�\n6�E���\u0019\u0012\u0019��9�\u000e�n\u0012�R���\u0011�\u0002��ۦ��F�N\u0002�\u0013�\u0003Ҽ�R�VFTP;}��S٥\f�~�Gp0pz�uO\f��y�܄�a\u0002\u0018،\u001a��\u0005hn�#n:\u001e�#/W���\\�\t��7��H^�\u0000��v\u0007QG�v\u0015!���,�%��\f\\�l\u000fu�A+��wo!�\u0018*W�Ὁ}g,�A2�\u00188��L�\u0001w\u0014c�ƌpl\u0006\f\u001f\u0019����\f��`�\u001d\u0017�e�3�e�\f\u0003�f_���5�S��\b���\u0012\t�\u0012G�4#���\u000eU�ۀk����\u000bj�=4��y�����\u0019f��Ҥ������\u0004�Z���H����H��5^��'yPs�Y$/kg��j���ex[D����A8����,�\b�<�_��K[k��a�=���\"��Tv�W،�>�A0�\u0018`��M1�뚽\fY\u0010Ď�H���O\u001b�ZLG~)���w/�A�ܬ�tB��R�'z2d\u001cA}�G��F�7�\\�1\u0015\u0018V��|���\u001a���\u0019���\u0014#\u001eq�\u0013�>F�\u000bI&�\u001a!\u0018`�����Mٖ�\n:?|ɹ��g\u0006\u0011���4�&�\u0016�e\u001b����'Kַ��z�9��\n\u00144̟l�\u0002�\u0015V*�<\u0016���C��͍�Ee�����D�ܯ���>����GR\u0012nX r\b�Jhp~el�&��r~@)�\u0007�ڼ�Q��q\u0017v^ӿc���\u001d�~i&��q�U(��\u0010.B\u0018��\u0005�\u000e��4�\u000ebx\u0018�J��\u0014�t�|\u000fHb-�\u0013�����9�\"�\u0011J�����A3�\u0018t��N�);���J���;≻�h�y*S\u001e\neuO�rw+;�\u001ap�v�J�\u0013��@�8��x�-\u0003og�,C�L�\u0013����6-���nF�O-�\u0019t\u0017S�&�d�\tY�z:�%)=B�\\�G5'���Æ\u0007)�r���,���x�\u001cp���\u001c�ZS�mf4J�ԛT�F (B�\u0012����Cp����М\u001f\u001c��7�k�ң��R�Z�u�;k\u000b�J�\u0003����c�0n��)v\u0007\u001d\u0004{$g�nE�u|�\u001b`dCx\u0000�_\r�\u0006\u000b�*�u\u000ba�}VsB�8K��\u0011�\u000eb�\u000b�\u0014Φ�o�|[%\u001aej~�<���Ƴr�)�\u001f͏�-VFMbH�\u001b4v�\u000b��6}8-)��P�BC\u0016���͇�A9�\u0018���L�;�F\u0016\u0005�\u000b�rX���@���Z\u00051Eu�?�\\���p^��7��v�\u001ai�\tv2������H�xq\u001f6\u0018\u0017��[蘒��_�ү-�\u001dN�yA\u0001k�c�\u0007�34J�0\u0003��P��\u0017�\u0002ŖC�cZ�M�\u0016\u0007\u0019{�\u000b��\u0001�\rl\b��B�晀�k�ܦy�`^�\t���\u000b\"\u0010l���/��9\u0010p\u0013�฾i���\u0004�0\u0006R�\bɹ_\u000e�\\ֲ�\u0000��\u0015���'IR�4\u0002��j�B�\f�{��b�X��#\u0003�Vx<��I�@z\t\f\u00035P�&\b��\u00142���\u0016����\u0011�w/\u0016`�E툍<_�o�2�\u0001�a'�X^\rC\"o<�\u0018U�%U��)ݨ���/v�g��j�\u0012�z�\u001c��qaq<��\t�AC�\u0018����a�\"��p�_\u0007���I\t�DϾ�������0Z'\u0014�p����-�Q�V�\r�\u0001�\n%+�\u0010C�Ȧ�?A+mK�BI~��Շ�H0��z�7�^�3�6�w\b2L�\u000b\u0014�,j$u�\"��>���I����9\u0000��J̜G>a4M�%�Q�\u0017�W\u000f�]����p����R�X\"\u0004,p}\u001443\u0016l\b�\u0018�k��R��Y�8l�U?�s�I6Z\u0013�$q��@����Y�A0�\u0018���My����\u0006zփ\u000b\u001f���1���r�\u0001�\u0001���\u000b�R\u000b�l=�\u0001W�`1�\u000bds\n\u000b\fD��q\n��`��ϰ��e��\"�A2�ܷ�\u000bC!��l��\"C|\u001d��\u0002���N}�83F�w�F�\u000e�o��=D�ԮIQ�zG\u0014cs�WS�Y#��}Z[��ޘ\u0012�&xչJ���K��\u0002zc�\u0005j���\bA�Iٺ?�'�\u001d�$�ѫ��\u0001���\u000f+�͛N�>�i�\u000e��e8��m�vk����\u0007X�~���\u001aq'\u001b\"�Н\u0018��w\u0017\u000f)Y1\u0002�F~�9hT\u001e\u0019X�Ļ��ef\u001cN,��\u000e\u0019��\u0001\u001a���(�ٓ�x���\u0018x��e���`ϵ\u0007�z��A\u0010\\�A+�\u0018Ā�X��(��<����\u0014h:YU�\u0019\u0004��dpU�\u000eH��`l�͋��}�u�v���&�}\u0013,��Cc�6��Eh�@;�)�C4Q_���̯R ]�wn�[,��۷�Ob\u0004�*?a�����ƹ�\\d��ޡF��JA\u0013[\"\u00184���V�\u001dQ'y�l�L\u0000�\u0001\u0011��,~�\u0019ҙ���W\u0016\u001f��ya�2n)W�e�J��\u001a5\t�\u000bK\r�}ʷ^�z\r=6��\u0002�����ؚۼ`M{o��a�\u0016{y�p\u001c6��\u0010*\u0003�0(\u001aCn\u0013P��En���k�X*Hy&w]����j�����9�{S(D=\u0003�Y�U�乸��\r#ψ�\u0004H��l\t\u0012j4�\u001cӐ\f�x���A*�\u0018؀�X�A���@�\u0011���<��[�\u0011KŴC�Ceo|�HS��\u0004�7�<�rC9� �����\u0006B\u0002��� ��T\u0007Egg\fM��1U\n�[�.�\u0002�]w\u001f�Fx�D��x\r�ں����U4\"v׃��$I����&�e�~��ݏ[<�\u001f���*�O������9z�P\f0-!�5Ѯ\"�V\u001b({��k�\u0016R\u0002��=��\u0010\u001b��\\^V/h�Լgj�%�\u0013�\u000bWK�L��uب����g�f\u000eT��\u0018\u0015KB���\u0002)P;���E���b�6��;�E\u001b�2�t�$��η�O\u001dO�F\f�\u000f�\n��eN\u0004\u0011�O��u����x���\u001f\u0012�)a��\"s�`g\u001a\u001dԑ����P�ȵ���C\u0003W�a�� d�\"t�d���gp��\f�rR���o�� �\u001d���A+�\u0019\u0000��LìJ�� 4\u0012����\u00008\u0013�Ҧ��X��͸�\u001b䰨���\u0005S|�\u001f�l�\u0013\t0�UT��\u000f����\u001f���XGX�ѵ7�#�\u000bb\u000f��\bWj�O\u0018�w\u001f#�\u001c7�1S6I����\u0014�u��A��\r�D��Ʒ=|Aڋ�L�h���c�����\u0005E�+,X��\\9�w\u0013Ƿn3O)\u0011Q�\"�I,���䆄��&���W��p�C�\u0015mUM��8�p7*8�\u001c�&E�S��?��M5�^����X���H�S\rwG\u0007\u000f��뿢u�� M&�x��x\u000b�o����\r��B�������\u0018ԋ��\u0001�ŷ7\bO(���� \u0018l4\"��D�F�\u0010Y�\n=���\u0016�A2�\u0019\u0014��Mz�\u0010q�\u0002:)�$a(�+G|˜(v\u0002몃\u001fx\u0007^r�㠪;`n#�Jޤw,#\u0001/�LM)���Oa�D��HAd�]\u00197I�*\bg�V�\u0014-t_B�]9�f~.��yI\u0003.�x�C\u0000+|>��p\u000b�?�\u0001��B})���\f/�����\u001a\u001f�\u0014�|eo|Nf��\tF\u000b�e\u001bK\u0013��-.!��i(|����Ka�l�\u001e���\u0011/k�\u0000F&F5\u001a��{5��1d�\u0001��?\u0012lڌo\u001d\u0019��^�Ln�<ƹ�YU;\u0001x:K`|\u0007\u0005\f��e��'�E^z\u000evl\u0018)�\u0002j����(F\u0000\u0001>�:#�k�4�_V��\u0016���\"&�;\u0010�\u0004�?v�]�o���SJ�N�#�J�_6���\f�����9:A13��J��8�X[C�������\u0000�u%\u0004��A���Lj�6��\u0003�⊷9�6�\u0000UWMp*\u0015>U\u0007�\nA�Vy9;�\u0001W~\rF���\u001a\u001e\u0017�Ƕ��|�\u0011۽����bN����p/��>V\u0005�-�P�pxނ&�edK$�k\u0016�K�/��1�\bh��Q���u���ۆN5�]�\u0003�~��\u0005~�>c�UBTC�r�\u0000���a\u0017\u0016nɪ�uV�Փ��'ȋژg/fv�\u0002�ɮ���:n�B\u0017�\\�\nr�R�A8�\u0019���Mw(&W���YvI]#\u0002����4q�ܘ�\u0001\u0012\u0011��\u000fF2ނ\u0003\t9����:�H*��b�����ٴc\u0007���qDk��z�B���H�\u000b��Q�d/\u0004�\u0001N�\u001aƵi�w�Iq4�k�`*%\u0000�,����\u0011M�p\u000b\u0019\u0011Zֳ�8i����:�6�-�J�#���=\u000by7\u0004+e\u001c(��Z+��֮E\f��Bվ��]Y�Y�'v;\u000b\u0011B\u0019��N��Q�r\u0016V\u000e�\u0017�I*;7}�Sh|�\u001b��V�F�Q�C��0�6�r(\"iv�?yn�\u000f���a\"�\"\u0003)\\�5\u0006e�8��?�2M\u0010����HN\u0000�����U�\u0010��~�U@\u0004s��\u001a%�\u001b��[t�\u001a�Ž�Qko\u0006\u0007\u0010�'BӼ�v�\u001b�\b��\u0005\\�\u0006W%�8�Y\u0011^?k�F\u001d&\u001a����\u0015���@� :㏏Z]2(�\"\u0014a��z\u000b`.V\"f8-��\u001f[\u0014�\fJ��1�9R&\u001e\u00118�\\�}-�xo[�\u0005��YX��fw3��N�R�\u0010\u0013��\u0002sQT��[�T/�@\u001a�V`��}ʨ�>b\\�@��z�\u0002�5<�ir��\u0001\u0012���Dt\\��\u000f\\�IZ��\u001e7\f,�8O%��ѷ�����6���A7�\u0019����\u001ed\tMp�zis�^6p+a��UW�t0b�R�\b�rF\u0003�d�V�CK�O��\u0002E\u0010����G��(j܁6m\"⦭�.�[mK����\u0006m+��Z�n����p\u000fD��������\"B�\u0005bG6�(����\u0018�Y+\u001b\u0018��,�9ȘR\u001ch\u001a�B�\u0002\u001a��gC�t���K����\bٴ�۟ �K1\\RkO\u001b�^g�*��j�!6G\u0011���3����Xm���j���9�\fMvr��\u0000o�����&\u0013�����y�Moc�K�6\u0018�{]6�\u001b����\u001f^��\u0005�P��}p�� /��~�\u0001��#��{�%��#�|����'\u001c0�Y�����\u0014q� �~ߙ\u0011#�����A3�\u0019Ȁ�X\u00011�\u0000g\u001c�+�\u0001\u0001\u0018SX+ZI\bO\u0014\u000f4�\u0016���r�,<@n̢�\r\u001a��aK�\u0003C9(>��ӓKf�e���\u0018Z�3j4�s\u0002x3�)�})��P\u0012�:�:�/_��E��rb՚H�'}e�:��G\u0002jd<\u0010�\u0002G;��)�GA�6���\"��\u0013�.����=�\u000b-�Z�>��*�y\u0005�*����\u000bc��\u001br\"(�.���8r�/\\t2�U\u000b�\u0016q\u0017}���DA�b�\bWYnb\u0017�H{�����\u0019\u0005m>Ed-�n��b�vS[ߏŽ^��xx@\u0016rT��4�l\u0013\u0013Fë\u001b�����/�\u0013����4\u001d\"��i�����\u001b�ѱ��E2L�񯑆m�\u0000(�6*/�圄FA���A8�\u0019܀��\r�4%\u000e�9�^��&\u000e�PgQ\t��:��R�G-DTX�֬rۂʆ\u001b\u0015��2lzM\bqF�\u0019��VOth\u0000\u000bR��\u0019�šQ��?�|��5'�ފ�4q�5�qvj\u001d��\u0012��\u0013)nKI$�5u�\u001d\u0014e�1�s\u001d�\u0016\r�e��\u0004�\"�1�J\u0016;{�)\u001b�O�?Nө3\u0003�8�N��ّ\u001c�\n.����\n���ˉ�WI@�\u0011�\u001aGߊz�g�Rz�˾+�\u0014:Қ���y+�\u0007U�V������*+�H��\u000b�B�\u0013Â1\u0006�r�\u0002�i���\u000e\t�\\����\u0017\u001c��ȐQ�\f,�a��G\u0018Z��)\u0003~M��_Ӡ\u000e{Ý��C�9�\u0010��:��毅�\u001b����\u0016�&���\u001aڬ��A�A:�\u0019���L����%0\b<Ն�7��\t{�/\u0011J}��|\u0018q��`bGĺtތg�\u0000�m�\u001f��W�\u0006�m\u0004`c����K�~\u001a�7�\u0017�A>��<\\�*\u00070��\u0018,|\u000fh��o8�3��Ŕa�T�?�\u0005�eg�e��\r>�\u0007:\u0019������,�te�NH��-Q\u001f\u0019\b'uPs�\u001d�\u0014�z�\u001cCp�_E�QU�T�����?[0\u0006�����c�{�R8W��8*�vY���ݵ\"o��\u001b�ďiwrXsK\u001d����\u0016:8�_�\u000fUAv\u0018�� ��5�\bj�����/���/T�ْ0�g\u001e�l�0r�\u0016V-dR��\\�-,n��3ԋ�\u0019P�Kmٱ�\u001f����\u0019���u�6DEZ�\u0004v�*{��~�CD9c�A2�\u001a\u0004��L�ܯ�9A$\u0010�\u0016�uS=\u0014��W1�\n�\u0011\u000b>��\"\u0016]EIG�n���|�69K�!<2bS;\u001c\u0007H�)��}\u001c�NT \n�\r�%�R����Uɝ�`�*1˓T��\u0012\\�t�\u0001|��3���\u0010Ƞ)\u0014v�\"�\u001a�\u0019�����X�\fyO�\u0017\n�\u0001���Z��\u001b:܈��w�Z��&�\u0007�Emc�<\u0019��$��\r�~�\nV�\u001b�\u001fQGW��4��-=p�@�\u000f�%S�$#��u�l���o\u0001H\t�\u0007\u001e�\u001e���;�Y\u000b����\u0015\u000b�\u0006A\u0005��j6B\u0006��3j�:�\u001d��T��{���\u00012�Bru�S\u0013�\u001dj8�\f#��xߦ-��\u001f:�\u0018FF%�%MlJ���2��g\u0000�xm��]Ve�A7�\u001a\u0018���\u0011y�\u0002�\u0005�|����\u0004W�\u001fK��cx�\u0003h7�_p�\u001c~�\u0007Q�,\u001a�q��U}�\u0019+�xz�t�H�*�r\"b`�򀐰%�q\u0001��\u0010\fy;W-\u000f*h��>���z���#�o�M���\u0000.\u0012�d@\u0018#!%�Y& �\r`���Z��Zh�_\u0019M~`s�\u0001�~hZ�,e\u000e\b�7��\u0002�T \u001f�_�9�@�\u0003��\u0010��\u0003[\u001f�DC����AdFt,!\u0000�b.�\u001ah�/���\u0004�C�N�[�\u001c�L�hQ\u0012A��δ$Y�GB�\u001fM`:eV��\u001b%�c+y�`T�`��7�l\r�<�qB�h|8\u000e��Gt�\u0001�\u0015�����\f�b\u001eE��\u0004,��8\u0019\u0001���e\u0014�\u0011?Ȍ�{��p�;�$�AD�\u001a,��L��+b\u0018B\n@�z\u0006\u0004�m-��,�w-LX�\u0005i�kcܴ�\u0003��\"q\u000fI���p�\u0013x\u000f;O�c|�5�9�ܨ�=���32�쁰��~fQ\u000f�1r=t�4\t�ܦ/WT��P�:/�A�㸁�8�\u000b����Ym]A!a\u001e�d\u001eT\u001a��I���������\u000f�fR�\u001c�\u001cw� !\u0019BFbw\bzf�:J�ǎ97zI.H��{��\u0006�5ԁ�ˌ/H�Oj�O}*]⏞:�:����N\u001e��j\u0019��\u0019�v���Q��]>���ۇ4$���a�F\"k���$�������\u0006�\u0016�G��;ڻ��UQB��ޢ���Ť�\t�^�}�U�\u0010������F�\u001f*�a}\u001bNc�#S\tJ�J\u001dQ�+KN�wW��A��\u001a@��L�\u0003�����Ț�\u0010Ä��8\u000f��u��\u0002��B��\u0002p�Ŷ��ln\u0007`U�*ޱ\u000b�\u000e�I#��\u0011�\u000b�6-�g����Q�d*\bԟ���;B�J�u��,GD�ơ\u0012@��ʦ�4�\f\u0017�\u0013�0c�%\u0003\u0002\u0010��@�#���g\u0004̈́\u000fo�ه�:�J(\u001c��\bm\u0014r���f�wݯ)/��MU��d0��\u0010x�.f�4�O��dW%l��W��\u0018\u0016$����u�6yiP��6S=���$��{-o|����\u000b���ڃ�`V-����J\u0005G�)�ʧ��\u000b�����T\u001b%Â�\u0014��z��t��\tՅ\u0012��a%Zˆ��fh���\u0017�\u0004���h.�>Ho�J� ͵�F��O��9�q\nB[��J*�\u0019���۽��\f\u000e*�\u001f���\u0002�P�&�ܜڠ#Z�peYe��K�ssV\u0005*ڃ=�9T�՝Hv)Bkf~�\u001c^\u0006�>>��`�+�\nZ)B�h�4�ѣ\u00034�j��?׮�AC��lG�Aa�\u001aT��L�\u001dΒ'$��VFO�\b���\"gF6�4C)23\"gF[\u0003\u00137��o(�z�\u001cq\u0017��M9�\u001f�'\u00001�\r�j\f �$��\"���}�yѼ��f�\b��~�j<�F�\u0012%t�\bA\u000f���E6�fK\u0019y\u0000���Z�\u0005%\r��/mYj��[��aN\u0012hP�3��\b���\nުA�җwS�f�\\ي+��V\u0016=\"|MS'.���`(\u0002\u0003�+�i\u0003��kp���\u001e�ט�l�/Qq�<^`�]Sh�P\n��\u0002�\u0001df=���|�.\n�&F0H���\u00118<#�\u000b\b���e�>!Դ\u0004(��;\u001c���w�(�?݇b�6D +=�vu�+0Z���A>�\u001a���Mv�\u000e�`����\u0014wd�Z��ى\u0017\u0013fѰl��A��\u0012A2S�NS\u001cS�}J�/�8�#��xL\u001e\n�ƚ��/.tCmN���E��9�_`^�\u000370�o�h��\u0001\u000f\u0012����C`�\u0002e�H��+*}�����.6���\u0000��P��Sz[\u000fU���ʵ]�����2�\u000f�vo�\u0007\u000fE\f�\u0000\u000e�I��\u000f��1\u001c�d^\u001b�����\u000b�\u0016>t�jVx����\u0015Ԯ�n/��ހ\u0019�\b��eX\u0000\f�j+Y�'�v��\fT�Ц����>ъ��%נA,T{�\u0014�֫B�S�g��P�do�`ED���\u0019�5�l3[*�*yw�'Y�U�!a&�P��}N��ә�sD����{l����A����jF�=�A0�\u001a���\u0002��fkm^�4p�N_�}2/9�K�F��\u001bv1\u0005I\u0015d\u0005\t'�Yj�C�uUS�[\u0019F�b��\u0010>|V,���F�}R�oo�ͥ�z\"\u001e��'�\u0018��V#?q�\\,eF.�\u0006��\u0011�-�^��v8��)`�s�I\u001b>ޮ��N�x���\u000f*g��\u0003���LWg�1y?�\u001c�������@��)��-���ص��2ߖ��\u0001\u000e���U��j�\u0016���ץ�>�G\u0012�C�\u0017Df�Δ�/�?pu^��1���\f-��4�\b�)]��=a1y��(Y�\u0007��2Ki\u0018��7�&qΆ�}�������ã��\u0005��B�8猵~�����\u001aRt�\u0003m}`��\u0016�F\u0000,7�A0�\u001a���1��[43\\\u0016`�{t��\u0011�����4C�6d�\b�\"J\u0013�}9&Y\u0019ϓ���=\u001a�:2�`n\rjR�\t\u001e��>�^���'u9B��f���^�}���e;��TȬ(�<��/\u0006H����a�6��$����#����ҧ�B�\u0002^\f^AA\u0004.z�\u0003\u00076���%�\u0013s��Q\u001dO������?�\u001czų5\u0007�3�φ�v~�:v\\Si~�\u0013��>\u0003���(i��>�\rH�n��t�\u0001_6��0��dD8\u0015��Y��\u0015\u0005�\r\tJMU6Q@)�k�Sыn!��T\u0010�t�/F��E��\u001dR-\u000f�ߟ.�p\u001e-7;Hs��mE�\u001e��n��M4\u0015\b<~�6 \u0004[��^G��$�v�A\u001f�\u001à�]�OP��M��\u001b�\u0003��\\�s��\u0006��wET7\u0001gI\u0011q\u0016�|�=���\nt\u0007\t��p7Ljl%\u000f\u001e�F�M�猪�1\u0018��>�>����*���rPQS�1\u000bR�wc�*;\u0003�\u0006@��٫��q�h6��6�\u0015��,��j�G��3��\u0000(�}�E\u0007����\u000f�n�\f�\u000f|�7�\u0001EO\u000eWE�\b�(�\b\u0004*�=�V��Ҝ\u000e6\u0018S�����,:�}O��`\u0003\u0016鉕��\u000e����hX\u0002�H\u0001E<�d�({��R�.�E�\u0004�II?\u001e�� I\u0011�σY\u0010u<_\u0018m\u0012����,��2_9�y����Ɂ�\u000e%`U\"]�%����4g\u0019��A\u0017�\u001a���L�L�|�2��)�D\u0004Q\b{\n$:�\r�J��y~�\u001f�<���%���l`�=\u0005\u0012ñ���m��\u000f�nF��\"qІx\u000f8�yF�5\u0018�\u0005�;q�\u001e�,�\u0011\u000e\u0006\u0014�5w�i�\\�\u0016�Oe\u001a#���\u0017�A\u0015׹%@,DΕʬ\b�XXOP\t.Azȫ�y��&;�P3^�%�iF\u000e\u001d�\n8�`��H`�2�J+�x[�\u001am0\u0006�]�V��McIG�\u0002i�L�k���)9`���\n�a��=ط;\u001a��H=���{\f$\u0005\u0002��)�~y�s�\u0016>M0#�7�u����\u001f1�4$�\u0007i\\�\u0019IR�y1�k�/�����\u0003�w�A\"�\u001a��N<�\u000e񎗶)\r2�q�x��4�9��5�Q��\u001948ڝ\u0013��N�Q���\u001b(�\b/��F�+{�N���ι\b�3\u0014�D�J�� �u\u0015�p\u0004�+V_�%\u0016ץ2I#�(��M�V\u000b%]P֠�|�WZp]��'-���>L0�\u0016v��ǜ@\u0018ѯ\u0000,B�G��\\a�\"�{�\u0017r��\u00140�0̲�%�#7��A0�.q�\u001e�W;ؒq\u0010c�0�t�\b��~u��\u001a�B\u0003\u000f��S\u001e�j����_�Hm%\u0014\u001e�3>��7x�hNg�ku��\u0013���\u0010�\"�z\u001b7Zv�Q,\u0016�-I�\u0000��)�ڶ\u000er=�w���C�E�/�� \u001aq�=�\f[�L�ǣA'�\u001b\b��L��55��-}�d���(��\u001b�ٲ�c�~��)|����u�\u0010��+r9�(��_�bLc�\u000e�IWT�*{D�>�#��?}D���I?=����\u0000��t\u0001\u001aks�\u0010y�] t\u0014�NtĔ�`��]��~\u0005\f$��%rK�^\u001d��;YMg���\u001bD���g(�\u0014#RSM��L\u0001�RY��d�yo\u000e��x��[�����~�2�\u0010�\u0011鹆�\u0002hr�T�q���F])���D5)��\n2!F\u0017u�K�=�Kq�\u001dFs�ɇA�5\u0002H��\u0000\u000b>}\t%�_O�㎤\u000fA��m\u000e�(BpO\u0000(l��?M�\u0007!��\u001fK�\t��d��M!\u000b�������fňh'�L��Z/4;�ݨ�͹�\u0017W\"\u000b[��4-�'1j��d=\t\u0016������!):\u0003�q�\r7����W\r\u0019�;�V<�O�Kᚤ�?\u0014#}�\r�T/��P\u0011\u0012\n\\w�\u0006K\u0012����\u001f���F�\u000f�AT�\u001bX���b\t��\u0014Qw�t��8��:�t\u0012��\u001f��,〣���r�j�\u0006\u0015�\tN+��мE��\nҦ��CCj5b`'�-�8\u0002���SK#��\u0003}YޮN-NW�N4\u00165p�n�\u0005>\u001a\t8\u0018��_������\u0000�SOǩ{�w�*�EQ.���idvf\u0010i�Ӫ�\u001c;�\u000e(zGx\u00190{���'�����[��XtwT�WI\u0019�y\u000e���\u0017\u001f\u0010��\u0003\t��h'\u0017�f+�4>�%\u001a�.l��\u0019�ע��\u001db]�\u0001k�M��x�aۏ����\u0016@�\u0018\u001b��\b�)�\u0005�\u001c\u0012|�����\u0015~��x����\u0004*`�L�~o��A�\b�U�;�\u0006$ߢ��\u0004��V{M�����!�6p8��\u0019#M�6RO��=]\u000e�O$궥.3�C\n�7����3t����AZ�\u001bl��L�m��&�_\u0003�CJ��b�-\u000b�Mj�[��m��ќ�p�Wk\u0001�f�*�?�nP�<\u0003\u000bVZ1�ŷO�`m\u0011�g`\t�.`��)E�lh�\u0001U)\u0010�\u000f�S�Al�.�\u000b�����3^�#��7iJW��.�_v\"���$v�_�\u0006\nlcHn/�\r��\u000bW��i�G�ā�K;V:;��O#]�F�Gb�_�2Z�2^Ց��d�w�c����+\u0000\u0004B\u0013\nSȍ\nքf��=\u0002�\".� ��ⴡ��;�.v�=\u0016�Z7���o�#\u0012���(F�\u0007Of�\u001e.����_a�/TW�,*\u000b�v��H���y\u000f�\u0019\n��Bc�TD�!ZSC6=�X��|�\u0014�\u0017�����\u001b�mf�T\u0000I�du\\�\u0012p\u0016�\u0018�*�W�\"\u0006I�}D0�룦o1��AU�\u001b���L���60fx\u000e΢��.�\u001a��oa���\u0017Wt8\u001f]^��s\u001cF�X*�f�S�Ro���\u0017ZP�8�Ds �Ź2)���4o�xt�\\�\u0003��P\u001b\u0010\u000b���Wë@\"�{��COP�e\n����o�\fm\u000f\u000e�DZ\u000e%V\u0007��5H��X���N���KB�G!F\u001a�u�uW\u0004SkZ����xذT����JӘ��d\u0013��Mval\u0006-�H�\b}�����o�����[�\\p��\u0004�'v\u0004O\u0000�u������r\u0004i&:D�\r���o�\u0002�Xs����W\u000eL'�\u0011��\u000b�|�N?��\u001d� ��ǜ��.�a�th����[\u0011l\u0013��e\u0007\t1 �\u000e�\u001b\u0006}��̥�\u0001ָ�,?3oR�\u0013߭�[0�W\"�Ww�%���Gh\u0016\\H�����h��ڣAO�\u001b���L�\u0015�����\b�\\\u0007�xvx\u0015A���a\u0004�}j\u0013%\u0002��,�\u001a�\u0018\u001cʅn<�\u0015�\u001aT\u000f��u6�\u0014���i\u0011�.)?�\bm5���D���[N0�z_���>!j\u0011�JDM�Rs�\u0014�C\\[.����*\"\u0015PB�ػ<�k\u001f�E~�\u0007<����\u0015���@��G\r���^��Ob/\u001c���pІ'\bz�x�dʤ䥍�C�(�\\�W�c��\nwF�@���QEG�ѝJ��D�UL�Ja\u001d�r%Ȇ�_\"N��\u0000��N�fؘ�l\u0016H\u0017�\u000f\f/\u001e�\u0010�r\u0019$�,��]H��~\u0013tN���Le\\��;||\u0014�Ä���K�\u0018\n\\�\u0000�B[\u0003A�k�\u0001�44$�>6.L_�1ؠ=�6�Y�H��\u0000\u001f!V\u0007V��$s��P\u001axɑ�R �I�AA�\u001b���1V[\t*����c\u0016�\u001fO\u000fE\u0015tt�c��x��Z��H�\fĹ��A�,�\u000b\"��\u000bLU\u0016�}$V�םs�SJ�B�G��1:�eɞD��?)��`qEטz|'?�\u00029�ݧ���\u001a�P\u0019\u0011#rng�P��f��,G��$��\u001bV�\r�\u0010���\t+u�\u0018��a����(2\u0005\u0004R��L�nx�\u0012a{��|��\fĶ\u0019e���VG{�+;�d�\u001c&\f��\"�\u001d\u0011\u0017��x�,EA�۟:9����\u0017\u0003t����ͻd>���J邾�\\<�O)\u0017;?��6wƐ\nWZ�ʬs��;[�\u001dү�j�~4�\u001c���\rU{T�4d'����j��*L��ߴ�\u0017�p���|���\u0014U�Ě�\u0002�\r� g\u0018(~�n�A>�\u001b���M|���=Z&3��\u0019�a-�\u0014���\u00018)�w\u0017\u0001�^sV\u000f\r���\f�\n��\t�9'����$�zH\rK!/D� \u000b��T�g\u001a/������rYl\u0016��3\u000f��\u000b�\t\u001cr�)\u001f�!�C\u000f�\u0002�])\u0015�zW8#l*���]wD�����\u000b�{2�G2`��������Ǯk\u0006'��UL�\b>��H�x�.N�����x�[�%�\b�E.8]�\u001e�\u0011\t�6\u0018�`�E-p\bx;��r\r��1�\rכ2�*UrH\u0007�\u001b��U��{��\"\u00117�(8�0D�:�)<\"���U�̾?�dx_�b�Ħc\u001cM\"��i�\u0001Rf���\u000e\u00163jJ�oC}t!^�B��\n\u0000��>�/�_/�~�e�S����[*M��=�A*�\u001bЀ�Ms}k�6[a�\u0016J�B�\u000fz+|���A�\u0007e�\u0017��_\u001e�\u00133�\u0011��Q(\u0005����\u000fP�ll��=�''�P;��z��U\u0016l�\u0012g@\u0011\u001d�\u000f�I��m��+�o㾹�+\u0015Չ���Q�<2�w�'�=A���V�a\u000b�\u0006d�`��k�\u0002C�cN-\u0019ۖNm͆ 4���4����u/�����k\u0007�CP���@,-M�\u0016�������ߪ����!s8n93��.�y\u000b-\r�;C�;�y����/��2�{�>��\u0014x��?`�-���/�\u000e\u0001��� n�A?�\u001b��M%v�\u00078���5\"H\u0010�\"~74\fo���~�K�\u0015�b���}�F\u0019��8���|�\u0015V\u0007͋Qr�\r7EI\u0000n�\n\u0007��\f�\u0016\u0007x.������Z\u0012/z���ښ\u0004\u0018�3���v�[�=��<\u000e�Ykx�\u0015UǢP\u000b\u0000�Ԓ��Ղ�s�)�C.i~+��h���&�r��\rM�N�\u0007��K�����;�Ņ]�3ZǮ�\u0014𧬉0PO;/c^�ӕ;��\t1M�i5�\u001c�rՙ:+�f\u0010˝L�\u000b&��\n\u0005�j���l\u0012\u0003L\u0005n�gM��f\u000b\t}\u001d�0A��\"h�U�a�C�c�\u001f�S� \n8#Oob�)B�=�F�%\u0007��TP�,��Gi\u001ek\u0002v\u0000�?n\u0019R#[mމ$�5/v�i�\u0000�\u001b�A>�\u001b���ƈ\u0003\u00077:|�a�x��iX�*/�\u001d\n�y�Gl�q\u00061^!�`���\u0003\t�\".�/��?��ÿ4�iV��3\n�c���d9��5\u0007bn��N�7��x��\u0012IL��v(��/��r�e0#�R\u0000�\u001c]��%\u001eM'���/��g���b�D��\u0018�C��\f�P-����1\u001f�&�ߗ=��A6�\u001c\f���pl��4V\u001d��&2{C������`/F(��O�ު�[\u0006�(6J%=\u000fcHU�b�\u00073z4�L��\u0018Y;-H�9\u000e���K�j0U��O\b�Q�=x�*^Pem}�`1��vק�Q1���\u001e�����޿$���#(\u001dħ\u0004f���~\u001e[&o\u0017�A�$;��ϧW\u0005p�v:?\u0015�MId\u0004�\u001dO\u0017#�'�b8qt���|���b�J=�&\u001d�rt3�=y��Ɇx\u0016\u0018\u0014��V�d���ҥ�\u0019�P�(e5\u000b�9P\u001d�������C���\u001b���B�/�B���Ӵʈ�ﮯJ��ܤ\u0018�(\u0004�*�UE���\tf\u001a\u0018�\u001f\f�f�{�\u0006 X(\u0005\u001a�h����LV��!�\u001d.�&�#\u000b�����A@�\u001c ���f�\f�,�\u0018j��.�vUu�\u0016]\u0001�\u0000��>P�de\u0019c���\u0014��:�K��\u0007�P�-C�ܼ1?c�e�8�>쎆�\u001d���싰\u0012T\u000e\b��\u0016�\u001f�\u0003�\u001fd�'aF�\tP�\u0007\n�M�0\u001d�}K\n��9��uc\u0003�\u000e�\t\u000e�Խ�I!NR_�p�,aB\u0007�M��?�'t�l5�|\u000fy��c��}.�����.�-R�\\h7[\r�\u0018F���\u001f���ʶ��w\u001d�a�#�5E���H�['d��POaʼnv4�\u001fO%�H�J{�߹�`Vb\u001c�;e�.��u\u0010��x��aI�6\u0017\u000f/_`2\u0004gF\f\u0014�Y��=E�ik\u0012�\u0003��\u000010@#��(�k��\"=LX���\u0001\u0015՟q�o�\u001akZ�@R+^�*���A6�\u001c4���d��\u0002�z�z�[_�V�>��I��\u000b�{$*�U\u0003\u001c\u0002co_d\u000f\n�w\u0004��W�@����%�\u0004�\u0010�E�ͩ\u000f\u000e�c��P\u0006�|�M*\b����V��E~Z��ް��ô��7\f\u001e�#�\u0014\u0002$�Smx\n\u0003��2!+�nq<�\f�Z�I�-{p\u0005 �v��;�K!\u001e�\u0003�����H�\u0010��ˍT�.��S�H%R�v���8|b���^\u0002όD�Q\u0007�\u0016�AD%�T��4f�QrQS'K\u0012s������w��{���TzlONŏ\n\u0002u�4�\u000e@`SO!쮢gR�\u0003�xj�v��re�}�\u001f/^�~�\u0007��6\n;:f�2��u\u0018�3L\u001bK�Ⱦ�A���K�4\u000f�\t=F�4�A}�\u001cH��MU\u0014�ڻ���࿇���0`\u0004\t�\u0014�rg�B#I`�qC$���ܔ$>�}���\u0012\u0001&a�\u0005�39��ʋ]ɣ_O��j��H�\u000eY���|�4.�\f\u0016�\u0015�����R\n�&�ԛ��fQ�\u0004v��y\u000e�sP��TV\u0019~\u001cy/�B�i� �^���~�sGI(T:L�1��l��_�_'S�T[�\u000b%H?�\n����;�ݙ\u0003��\u0005����t���\u001b����\u0011:g`�&�\u000b%�T����X��\u000f7\u0016m\u001c�ҟ��\u001b�{e�\u0006;��=��T�\n��\u000b�EWT���Cu�l���\u0017�L�P\u0018U�\u001b�\u001e|P'\u0018!Om\t������`\\B\r\u0004���&c��N�5)�Q����|�l}S_~�R#��f!w��\u0017kU��xLAT�\u001a��Ds\u0000\f��b��Z��h�1�D���\u00016\t��b&Z��0�\u0003����ܟ�Ԫ��|�|�\u001cH�A>�\u001c\\��MF�H���WM�ɘ@jY\u000erK\u000b�\u0007��HO�J����6y�\u000fI\u000e\b8�_�l�w9\u0012��\t�/�\u0017А�I��ʸ5��ܧ\u000f��s��]ؕ=o�0��\b=\u0001�����$�<�ѧ\u0013\u0001W\u000e|\txk�\u001c*|\u0012\u000eۛ\tɁ�$�\n@\u0015�s�_�+\n�ۈ��f>A�5��t�|Qf\f]��~�nh�.T\u0017\u0017��\u0005,{�P��\u000e\u0018~a�Ws�K���+O��u�7ݠ�\u0000��\u0010\u001c����\u0012Z\u0010YR$�/z0���KnNƅ\b�N9p�Lp�Cn4���0����I\n)�� ^�\u0016�\u0006_�\r�Ғ�\u001f�:֋��.�mIt�{�\u0016\u0001\\��&����@s�\u0001�#FG�v�\u0004ѣ�\u001cK23�\u0012=$�A:�\u001cp���brzQ:;��E��q�N�<�\u0011ɦ��/�\u000b�������nԭ�f;��?\u0000Ԫy�2�_}�/��1M����&E���m���\r�b\u0005B'ҋ\u001a\u0010��nf��\u00037p�c���b�l��\u0000�\u0010�r�/�\u001al���.oI�j���5�bۄ\u000e/H��9\"#ނI\\\u0007ٳ\u0005k2�'�xqx�\u0014P@���\"5֤\u000e�G\u00008ն`'\u001a�\u0018\u00065�䎿�=��F�A\u001b�=\u0016���m�\u0005ʅ�\u0001r�lm�T����5�\u000eN��Y@��\u001f�$�:3�4Q8Vƣ.�\u00130F�\u000e�h\u0017��+\u0000��\u0002m�\u001a}�\u0002�Փ��Cs��:_i�ӡ��T�% \u0017�܍��3�8k�Ġ���ɲ%<:�z\u0012��!�A@�\u001c����b�0H\u001aa�݈eI8\u0017�i��'�w8?@�]7�R�d\u001aX!��0z\u0012\u001d\t�Vk\u00134��\u0004���'X\u0010t�4lg�Q3�Ϙ�(/�I��º�%)��ɓP�`\u0013��a\t���/\rc���A@�\u0010�h\u0012!\u001f1\u0003O��\u0002\u000eꢳ>5\u00184\u0002��\u001bڐn��\u0002�~^\u00152��Qu��㮖�\u0004\f=�e&\u0014w�׶k4��X\u0005������\u0014�T\u0013,��4�Ί4%\u0003-\u000fn\u0006���QG)�<\u0014�\u0018#\u0019�4��\u0004\u001d)\u0013��͊ҫFN�\n\u0017�1A*�L�?�`��\u0004��ۤ\u001c��֙�\u001a��5\n���b\u0014,Ӷè�}P��.����\u0001�\u0014\u0016%���Gi\u000bp�\u0010O�O;��l\u0007���UE�.u��\bs\fU���A4�\u001c����#j��\r!F3�\u001a�\u0011�6��3��Z�����(�gap\tTS9,�C�N�@�Z����TX��#\u0019Ѡ�4�\t$/�l���c�\u0014\u0005����Q�|�Ҭ��N�\u0005�)�\u0004�E�'\u0003j�Ҙ(��-���|\u0003҅?��47\r]\u0019��ft��\u001b\u0003�.\u0005��W)�\n��\u001b?<:\u0012͢C\u0004�|\u001c�_�k�^�}\u000edk\u0015�߿�O�\u0001�\u001c=�T�i���B\"����\u001az74�i��9,�+%�%���i�\fȎ���g;l.\r��*��F�T?��r�M�\u0017\u000b�TLz�B�Al1\u001bQSݣ�(��L�(\u000e���c_��\u000b�#\u001aB\r6\u001f��:3ϱ|����C�0r\u0014�w�\u0000���A��\u001c����Cx ���$�N&�\"\r\u001ez�'�V8�}\u0017>tG�oGZ�s&D��.�\u0012���)��B4)���3P�y,\f�c=@ծ�^�qb�������M��tp!O��A` ��r3�Q\u0016bӉ\u000b�J�w���\u0003��R6��Xݦz\u0000̙�\r�\u001d~�\r#\u0018=$�gȭ����d�����>�D�_�\u001b��JD\b3���EDs�\u0002�l`jN\u0007�\u00061�\u0005���L��2f�k����1\u0019\u0002�f�\"*�\u0017\u0018�\u0019�'CWf�v9X�.N|�V��\b����~�\u001a09�h�>𻿅;v��9\u0000�!�1����œ˘�\u00129��8�\u001e7��(��`��\u001e�\u0001BA�\u001e�\u0002WI�v$M�A��V��^��bzxQ�l#��\u0007���d�ΉH��}�\u0014W��\u001b/���\r��\u0018i]�x���\u0003М�j�*�C;KC#-��I\u0019^�L�p`\u000f�?��\"5��\u0014�/\u0007Ku'p\"����ލ����C��q�����6�!^[�5��A\u001c�\u001c���X�/����y\u001d ��'���dU��ږ�O\u000e�\\Js�Xn��H���\u001b¥�o�P���$Rm'^�b8�}�q�l�?`�+\b�I�M,$E�W\u0011\f�hnWx�\u0018�趖�N:K'�'�\u001c������w{\tFT�75`����~4�\u0006�-�f����#��˭Mz�/�.�0o�9��g��c�,\u001c֝��h@\u0003mU\u001d�{XP@\u0000I]S�?�\u0003k�dT!֪�g�l�\u0004����������\u0007���-��>�iO�l�]��\u0015�}O��f|*\u001a<\u000f\u0014j�\u001d:�ˁݡ�҉�c�����R�\u0006�D\u001f\u0019p{7E\u0015��m��u\u0006t\u0010��a�A\u001e�\u001cԀ�X�m�y�\u001d���q�Qw|��\u0002>�\\\u0004\nT��6�X��m�>��r�۹R(ՀvU����~reճ�Vq��o\f>�M�\u000e/#��\b\"����\u001b�\u0007�\u0013��:�JдE��@�3���ܚf\b\u0014\u000e��a\u0003r��:ڶ+δE��&��g4m7���vǰ�\f���嫱�JE-� 2�;�P7\u0002�\u001e�7n�\u0001;�\u0018ᙀ�\u001f��\u0019(�\u001f�U6�9ec)�1G�\u0002���2���\u000b��{��!��\f\u0007��\u0011�m6{I�(K\u0005\f�g�䈬�Q)a\u0014\u0014������v,�\u0016�\u000b�Ϲ+9��x�I\u0014��>\f3��+��0/�I1����A#�\u001c��XА�\t�F�\u001e��\"�dʴ��=\t�*��&Zx���)�jX�X�\n���\u0006��$�S9&?\u0015�h�������]Fn��P�\t\t\f\u001a\b�����z��a�0���x\u0002y/\u001cdUi�8\u0012�����߽`�)��_�\r�0F�:>a��̗\u000f;9�Kz\u0000/u�\rC\u001dC.h$�t�pCy@RX\u0006��c���x�\u001d�\u0017%�T���;�o��_g���q���a��\u0005�����I\u001d�P�9�\u0006��V�s\f׷R�'��U���oI�햮'��<�2J���B\\7\u00002�\u0012�l��e�\tBG[w_�(íq\u0002�\u0017o�o2N5,�9u�{��[��g\u001d���\u0016�Ԣ�HHI���M��v\u0012������D�D\u001cީ�E{��HK\ny�3�}ފ�I=�#��s\u0002�5��4\u001b�}\u0004t���aꌭ�)\u0007�$f\u0003�\u001a����B��7_!\u000b�\u001c�0ccog<�e; ��\b�\"�\u000eT�$\u0010��ۻ\u0019��\u001a~�ךg4ԩ�⃓�!9����u�\u001b�\u001c�[t\u0017\n�:L�6,�A�\u001d$���j��6q�$�]j^\"S�\u001ab��\u00022�Z�\u001f\u0005uC*��滋V�Q��N{��\u0003K��\u0000TZY>�\u001a:��V�Ŕ�n��\u0013oJ�\b@i|��W�����\u0000t:\n�e\u00108Y�ĥ�2\u0016\u001f\u001f�\\%\u000b�D!�.�\u0006�\u0001Cz\u0006�����pW\u0019s��\u0006Oi%Pu�xN\u001f����A�O1@��m�-�+���iQP���l�L�6�\u0012��^� Ȋf���D�s��&~��\u0010V��̔�#�p��f�k\u0012�Vp�\f1��N�+��U8\u0012�\t��C��]\u000f(\t�/\u0011�\u0010��/ׁG}�[�?4%]\u0005\u0018j�ղ&mψ5w\u000eP�+�#�` �K��%8�t��\u001c\u0005-�����̐�=�\u0003Aeg\u001e�l]���#\u0012v��\u0013\"�߁��\u001c[��rG�g�t���\u001a�1�\u0015��~�z3�8\u001eD+l1/I;\u001f��ŗ���H�\n>��Q8\u0005���{�g�O\u0003{��4�)�u�`�6\u001f�4ͰF�-\u001d�Y�\u0017���\u001a\u0016�ɰ�\u0017溞��%\u0001TE,\u001f�hb�4\u000eς�%���\u0014mQv&���9�p���\u0000�>�3�*���!�Є\r��_�%�A��\u001d8���b[d\u0003 ��ms�uk�\u0007\u0007�$�i؝�%�E��i赱�����\fpi_�ڽ�+�\u000b-+�W{ZG�ie�Zepf\u001d\u0019C��ڇ�H]j�{\u0011@V}�)\b���|���\u0010��K�\u001f���%���H��z5�;�\u0011�b��-K���/@&�DO2R�3\u001c�5��\u0015�\u0016�����0i\u0014Ihʑb�;S���[��\u0017՝!��1 �Z���\u0006%��R\bBy���e�ds�\u0010\u0011�'\bZ�u�h���Y�\u0005b��\u0002;�f11�\f\t!y�\u000b��\u0003v1�\u0012�zU�1�at�hO�6�����\u0010>9��\u0012�+�M.��\\�T�y�Ώ\"bزz�r(G�t�ge�D-[ڋ\u0000�<Ĝ��u�D�\u001b�r֡\u0003�\u0003\u0001z�*z&\u0005\u000e�m\u001d�q�\u001ek*ɴs}Ӕ��|�\u0017M��w\u0007�k�Wuas������o� \u001fR�ۮ�Q@\u0005M\u0016�,���q���KF\r@K\u0015X�D=F��a��\b|\u0013;�k���D�4�eH�.\u0002-�<4��/�\ruz4���Ȓ\u0001��\r�0��\u001d�:��\b�>�m��58\u0001\u001e>\u001c+^]0\u001b\u001c�d78�Ȧ,�\u001bXA��4Ȓvkz��פ�γ�\u0016�\bd\u0006���P%�T�\u0002�<\u001cN8\f����F�\brB\u001cX��I\u001a\u0001��b\u001e����Dg�G]Sf88?ǔT�>!�9��!��^?W�\u000b>R�AqE��R�5!A\f��\"�$�Ԩ��%��\\�^&s�{Pd\b��\u0000�BJU6�mӟ=�K�NEY��hyl���\u0015�`�����4H���)�U�d=؞/c��-m���߼�H����\u0013��-8�p�\u000e�SD2�$Ev�\u000f ˲�TJ�H�ڕSrN��\u0005df�\u0001�I�\u0013ɯUΗĒ�A2�\u001dt��M��7�l\b�(��i2����?\u00074��M6BD�b�ψ\u0017 �6r\u001b��?�;�\u0005��ؐ2�\u0019�|]�T�-\u001d\"#\\���[;)�u`�$ɐ.���W�\u0017�\u0018��\n@M�e��Z\u0015y�I^'�q�#����:�*&L�6�g@ןj��#�+��\u001aE\u001f�ȴ�_�\f�}��!������\u0007b\\��o��v����\u001d̕l[������\f\\��z��\u0016���\u0016\f�W>d&�P�\u0005U�O~\\]m8\u0006�`*������\u0014\r.�ѯn�\u0010�Ru\u000e8QO�y#)�y��W�S[@��� ��K���$ڏ�����eD�+�\t9dWf9\u0016\u0011\u000e/�5e*\u001f>�\u0001uU)��mz�k�{��\u0006_V��AO�\u001d���Lє��oK��'¨�I1(Ǧ\u0000�e(\u0017l964�Ԁ��+���X\u0016��fK�v�?l�D�\u001b�\u0018��cYL\nU�\u0002�_�Y\u0006ip��Lֵ����Z��͝��&��wci�g���{H��#���f\r\n��B|�׶}�Y�\u0012��L��&f\"�-]a\u001d������v\\f��\u001au�'�\u0018J�o�#�'��ӯ�\u001bJ<�i��<ߒ��|;��\"\r`�.QJ\\����U&>���J�\u001cP����=�/AZ����^����x��1�M\b�AI�\u001d���I�G\u0013e6H�\tV���\u0004�>q|��\\�\u0005����+7r\u0019�\u0013����@<��j�\nK`���\u0011\u0018\u0002���� \u0010��\\*�d��z\u001e�֭�M��[vW�\u0019�ύW\u0003��\u0007Q�8k�38\bG4��C�����s�\\��P#:;�����\u001c`\u0015�RLTv�򙴏�F\n*(���\u0005g7��\u0016@A�ؿ��\"y��N�\u001c��\u001a�\u0016a��g���UY��p���{g�'si�ns��\u0010˪��\f22zO\u0014���pzS��W6�b�X��9�0�@\u0015�+'�c-�\u0004�s۰\u0014D\u00003�\u0019j^�Yߍ�G��\u0003'��)�i�Ls��E��{Ns�o�6T^\u0011ņI�\u0012�wJ�r���Dٕ\u000b\u001b�X���gkl�AK!M�\u0002�8RHsmG9���Xf0���\u0003W7���K'%\u0004n�\u001f�W��8�2|�>\u0000�׊@g\u0003���?3\"����\u0019A��oy�o�>(��#��C��\u000b�W�!\u0016)��.�4`e0���\u001b�\u0012��QҦ&�\u001f\u0010\u000e��\u0005�'\u0001\u0000)�r�)Q۽S�!�C��n\"¯���$U�9��A��\u001dĀ����\u001dh5T�L\tk\u000f/�73Y\u001fW3���)�Ы� �c�\u001e�&}H|�\f�.l\u0005X\rT�.Q�:�}Ɗ��\u0001�J�h�A���`\u0005�f4��BrH�\u0019ۥׇ��b$\\��'޿\u0015,�j�P\u000eo\u0007y�[�-\u0017\u001fܥ:��\u0017�~\u0000\u0002����\\�U�|Y\u0019��\u0007O�_dU�\u0001\u0005\u001f��\u0011�o��8\u0003l�%�,\u000e�Y�۹\t�8�%<f���\\[\u0000N9�Sh��x\u001b�;%.5�$��sTJGckx\u001feC�I|\u0001\u0013�!\u001b�hy\u0010���\u001dv��1�,\n�\fm\u0013H�\"�#�\u001a4��'#\u0005\"0�d\u0012\f\u0013�\u0015�\\\u0005)\r�z�\\��Y�O\u000b\u0005���@]O�!\u0007o���MMr���\u0014k�\u000f����v!�\u0004\u0000��l�l� s�Ƒ3��7j�,�����{��kO���Y�E�%����v:o�=�v�.1;\u0005~�C!�ԣA:�\u001d؀�\u0017Y;M\u0013�Ö��4���U���X�'��Y����\u0013�\u001e$���\nF��\u0012W��\u000e�x����Qx�Ӝ4c�P[\u0012\u0003>�V�,+7�\u0000�e�~��}x\u001f��\u0003��54�\t�\u0005�>`_\u0007�\u0011i����קe\u0003�3������\u0002�68�\r�F{\u0017t�����\u001aO)y�F|�%� �*�l�61lH���naՂ<)��]9�}\u0016n\u0014��E��Nq�E�š�ѴcDz=�UV[�k\u0018����V%�R㐾��+��k~_��p%x�� ��+_��s��\u0000�!X�\u001d\u0007�@���!��\u001e�l���-�x�Е�\u0006�*E��iz��kx�/\u0019��0*f᝱|oJ=���0\\�� �q��~(`S9��A3�\u001d��I�'�T_,�K�6U1�ү����[�\u000b�E�\feݲsM�j�\u0013��\bCbK�v9��Ĩ�����ӈ�^�\u001a㤰��<�h\u00045m��L'�J����q�*l#ʜ�Z��u�K\"'�gY[\u0014\u0003h����g\u0012�\ff|;˰}�-x����\bމ�^\tϽ��lKT\")v��_���d���ޚ�^��5Zn�r��g��n� \u0019�䭆\u0015*\u001b�����H\u0010�o/�֏'YY#�ث��ܧ�\u0016�\u001b5!\u001b\u001c�N��9�l~\b\u00031��\f\u0016#�؍�A\u000f��:�Lܓm\u0001\u001eIA\"�|B�Ae?Z�Q�o�r^M�9G��&��k��F�$�R]��B�\u0000\bNG%�u\t�m\r|�Y�A?�\u001e\u0000���\u001f��0\u0016���0;$TJ� �|J�&\u000f~�qd�Hџ�ap�ƑMgu�Ҽj�@a3\u0007T\u0000q\u001a\u0019$>\u0013��\u0010��I���.��`D�J��\u000b�=7��\u0003�ݞ\u0002g\u0017.�\u000b���T\u001dl�q�#,C@\u0002O�i8a\u0014�a��\u0010#*�P�R�/�y��t\u001c\u000e�ݦ���1i�@U�\u0018�c�u����Ҟ�\u0016'�\u0016D\u0002�\u0001�ec�\u0006j\u001c�z,:�0�m�S\u0014��8���������+�m�'�3�(�*MH\u0014&��HΪ\u0019��\r�屡�\u0006Ѳml��-�Jׁ\r�ݛ\u0003\u00026\u000f�\u0002\u0015\u001e�Q\u0004��\u001d�%{l\u000f�3T\nT��9�AJx�/��zI�\u001aL\u0013e=e}�7%��ș�O΄����$\r�\u0014�J�B���\u0001��C�A8�\u001e\u0014��1�tbm���$�\u00022s��\u0012*.���.Q,f�J�de�t_\u000fXQ�&\u0012m\u0002�@��3if���\u0015u��V\u0004\r�����t��\u0011�|\u0010c���\u0019�A��c�z\u001b�Qq��\u0011\u0011�\u0013\u0004�<]\\GOb\n�\u001bv����\u0012\u000ej�����\u0015\u0002�pߠceQS��F\u0004�|\u001c/��atn����*F��&�<)'�ݻ���\\\u0014�\f��s�\"����\u0007�}\u00047�\u001dګa{�\r\u0012/��7Q�\n����t��1�����>J��h8z�b�PQq�_\u000f\u0013\u0003d�\\�F�@\u000b�s\u0000�T�\u0002��\u001cyˁ\u0006p\\=^\b�\u0017s�5����9R�G=\u0018 `�\u0014�A:�\u001e(��1�O���r|as�\"���lR\u0004\u000f�U�\b�9\u001fO\n�N�P�\u000b��i�����\u001c\u0011�}�a���\u0017�w/./>��%\u00026%�\u0006!kg��\u001bn�Y\u0013Mʟ�W%��\u0015]m�ua�\u0010Q�\u0013�F,�A�\u0003�f\u0019s|�{\"i�dh1⼈Y�ې��a\u001c�\u0019�E��m�T\u0014��\u0013._\fQ:bqi}C-����]���$J)�\u0017ȅu\t~�a��v\u000eOS{-�����c�\u001a`�������xd\u0002)1$����M\u0018�ļ�h̃.�U�\u0002Pg׳`^�8�Tg\u0013���OH���\u001f���'*ⴏ�.��u��$go&\u0012�-�2€5�\u0004�,*�\u001f\u0003�w\n~�b����%��(Ϳ-pd���S�}p��f�\u0017�A8�\u001e<��1�ő�N?��$����=�2H�\u001f�||^Q����\u0015{¹�45�D-�R�.!者���qT�*�g��\u0005�,���b�`\u001a��\"|H�z��ې�\u000e�S��C�\u000b.�b�\u0005�Lc�ߥ��nB\u001b�r(�MR���^\\����u�})�<�R�\u0004,�\u0012_`��\u0003@F����Xd�G\u0001.�m�0�\u0000��(���P\u0017[r�\u0014�\u0014�.�I�T�A7�\u001eP��([?V���!,0�s���w�oҔ?��\b:?%'\u0005�4!�^l6@!?�W\u000b�ř\u0017x�#\u0002�����h�\u0015�f��>��Lo���ܡ�G*\u001d^�|J�_+\r�\u000bPW�ga\"�e\u0015�ܫFx��KՌ�\u0007f�K\u0017sz��2�̨\u0002Ų>�+ЇQ�\u0005w8h\u0000t�֮�P(\t7�r8����F�\u0005\u0015'��\u0013���>�\u0017Hb���|m\u0001�SU+�\u000f:\u0006��'��&kց0,\u000bw9� Y�\nRn+��\u0010Ͷ#\u0002\n\u0007}�q�C��=9\u0003\t\u0015�p�m��x�@�2\u001b\u001bʊA&Ǯ�����O6���r.��u��PBٝ\u0018\\[�.����oK\";q0��=�Q\u0019�:\u001a_{�(\"���~+hY\u000e\u001a�A6�\u001ed��(k�,�\"\u001f��f��7\u0014����\u001b�\"=�al�\u0001\u0018��Ҙ�ul�I!=�ތ14�3S&��=\u0011�J�W�2�}\n\\'��{��iJ�S\u0018e;HH~���\u0014]#�rbO4����$�s��h��2����*\u0015��6��9�s'W��d��<,�\n��6T�kQt\u000bO��B��\n&o��NG������,\u0003t٪��<�\u0001��ޗ����>U�-�2�\u0005�ߩ�\u000e���7�\u001f��\"ҡP;�kQ�\u0003�\u001b\u0004\u0002=��LJ\u001f�Q\u0002�Ng!�∪enT��Ůh�P����,/\\�oTLt1\\;�N���\u0001�B��{��fj�R�\u0001\u0019\u0011��\b\u0000x��o(0��Tgh���r9��\u001e��\n({���A9�\u001ex��ص2D�Q1�EE\u001cĝ\u0000��s�w� _�O���2ƒj]��/7+�ꮹ@��\u0007�\r��\u0017|���\t����OY\u001dƲ��A\u0018�]�j�[A�\u0014��\u0010\u0017\r��T��f\u00100���s\u001d��4A��!>��Z��\u000f�E�yiԌ�{�l�Bi��t�3�\u000f#�\t\u0006;v�։b��0`%]e�\u0001�A�\u001c�/Ȗ\u001d�ۘ�h\u0010�\"Xn�� \u0012�\\.`F����?�\u0018_�\u001e���������s����}�\u0015/�sǘ��,&�3c�:(o\u0004@.�\u001a��\u001d,O@ͼ��.�H���X��ޟ\u001f\u0019���6?�C���\u000f�\u0013*�\u001f\u0018�\u001bh�\u0007\u0001���T�)f��嬊�\u0003�h(\u0000����v�\u0004+�ʜ���AK�\u001e���ص\u001a� Mx��*9F`w�B�+c\u0019b�>D\u0001�ӌ����B��.�\u000bޕ�χC�u\"j�\u00035���ަ��P�Z��8�1c�*\u001e,����+{��H�a���̒�s.o\f���##���ן���ԑ�76�\u0013[+�=Y&�//�\u0011�\"h\u0000\u0007�Vl�PE���|s��(�M�1�C�ލ�0z�OR\r�c���c0���\u0007��O�T+�~�X\u001fb�{�\u001f�{�Ç�2)׷�@��ďz�ٚ\u0002‡)؜%�0ʲ[���B�g�X�i��;\f�Y&�S�a��/�CZ[��,��ݫ�t۫��}�SU�\u0019�޺�(ƾ���\u001fq���(�\u0004-�\u0015\u000e�E�JR��\u0000�\u0011\u001e��C��KQ��Ԕ�E�\r㚄F��6�?q4_�w3\u0015���ٔ��\u0006}�ёx�~\u0000�B�\u001dt�QC��j�1NQ$��w�}��- �Qq� �S��%:�]�Ys\u001a1��\n>L��\u0002�6�\u001d\u0010\u0012$�C\u0001��f�BJ�\u001e����/o���*���w+\u000f\\��;WdF�'<�\bV�\u0003t��+�\u0006\u001a&��]�{�Z������=Ne�\u0012�t�\u0004\u0014��\n*arC�\u001f��)'t��\u000bC��'����\u000faɵ�k\u0015\u0005TZ|O\u001b����&|t\b\u0013\u001f/��a�S�\u0011P8�\u0011#a\u0000.Ō\r��Q{�\u0015�~��ʕ\u0013O<�B�w:�\t��KA�#�M>\u0004#I�i]�բ�%��k��\u000f�9�jy�\u0019�N�`h����Wwٶ��1֠�\u0010�\t#\f��\u0004Tf�\u0004�C���Ĭ\u001f�^(\u000e���=�\r�,��μB�\u0000\u0000\u0000<�.��?\u0000z󳵺�>NzJie!z��z�\r�cT�`��1k��Z6rrx�\u0007aE��~\u001fٚc�\u001d�|\n�c�\u000fId���\b��D\u0000%\u001fL�M�̷�)\u0014T��4�C�S9���\u0005�� ��nG�m�����L\u0001��!�1D\bô��t�i:Qq���6FO���/g��xP6�~�\n3��\f�km�*�S\u0010�BRk�s��,����}Z\u001d5���b�~#W)ԟ�\u0014�Q�k]�ևu\u0016�\f\f�<%��A3��.�h\u0001�d0\u0012\u0017�;Wpɏ��\u001dsnp�\u0012�E�x�y�Qʺ\u0006�d\u0002~Bp��LZ`\u0014h�7X�\u001eM^�BU�>���P%OYy\u0000:��\"\n� \u0010��Arh�*\\�9̄hpQV$�x�p�8�復\u00109A\"P��\b{T�A\u001f�\u001eȀ�Y\u0004��?���y�MC��Qgx^L��XUN�\u00113�\r�\u0006\u001d�o�oD����L3�H\u001bI��ڸ9\u0011��\b�\u0014��X\u0010�\u0017�X�\u0002\u0019�|7FV`\u0018\r\u000b�\u0016���&�ֵw�����s�H˫�\u0002T�2�;�\n$�h�2��jՎ�WƓ\b�\u00174�\u0001rM\u0018��\u001eJ���dR�@\u001a�5���d���4��8b�\u0019��\f�)\br���;�f;\u000f\u001d�\u001d���TK��D0�N2�r�C1�T��(<������q<��a�2uV'u\u0018��]�a\u0006�\u000f\u001e�73�%���\u000b�\\��\u001c���!��b٫yV�t\"ڒ�\fӲ�A��\"�\u001d����y\u0011'�)\u0017k\u0007�A\u001a�\u001e܀�L�9���6�p�֒��O\u001e,y\u0004�Ϙ\u0001�\u0006\u0019�!\u0000F� \u000em�\u001d�B��p��>\u000fŨ�l���5G\\��g�z�-�4��\u001b�v�9][���%\u0013�o�Ćgw\u001c�!�4���,�<� �Y��x\u001fhVj\u0007e�4���@�'\u0005\u000b�\u001c�I\u0019�\u000f����+�\fX���@k��\u0011�\u0016��=��\b�\u0018y�bE\u00109��L `v�6��o��\u0000P˭\u001c3�o\u000b(�@�d\u0013��m\u0017���G��5y���xR�.\u0002V�r&B�-\u0000\u0007y���x�B\u001b�\u00171�r}�4���d��\u0002\r\u0014��[\u000e�|Y6\b�\u0011�S(�ތ#�n\"%\r\t�ۘ��A\u0007�\u001e���L�\\{���\r\u0014��e�\u0018\u0005���v��tb%\u0003[{2�`\u001b��x9\u0012�\u0002}\nr\"\u0003�%�م��\u0002�Uf\u000f*C\\��x\u0019��2�\u0007ƚQ�����[m\u0017���<=\rHED��\u001a�D!ȶ�z9W��S��X��\u0018/�z�g����;%���\u0000jS΃bwW�P��1M��%?\u0004h܁e��[\u0014S��,�y�w�$Pm�zK��5���L�K�\\�(�\u00027�`\u0013�7X�M��\reÃ,�{\\m~�$�\r#oH2�\u0000\u001dN��—�\u00063�ו'��P��\"���b�k����\u0000�A&�\u001f,��L�,�+\u0014W\u0011&\u0002\rO���y�W�i��\u0012\u001fk\u0013�#c�H�R򖵝[{����2�\u001f�\u0013=��\niG��\u0003e2�D3k:��\u0017�����H�t�6�M.����T��0�HThqi9�M\u000b�f�������\u0001ю'�V\u0003�\u0011�%g�\u0015�9�\u0017�N\u0019\u0006�O4�m�\u0012\\�\u000f�pv}�\u0015�\u0015'�J��\u000f�pǃ�D�R3�l\u001c[�#88�I&�Q�f�S\f���\u0003a��6^d��x�5)_�3���\u0007�\u0015a�8�%D�ȼ#\u0016��Z\u0000K*Q���\u0007��F��y\u001d�+0�r\u0001�\u001d�_�\u001fh��LÇVH\u001edJei��\u0000�3r+���|~�e~����\u0012/�E_\u0014�\u0006�`tI>aE!�;OE?��5���Ķ��V�iʘr�Y����\u0016������<%��\u001e$\u0010�ԅ���\u001a�\u0014�n�*G��\t�u�E�Rxd��10Xv�R\u001d�̦%�@�8�񴌂Y�.���eμ\u0012%�<�ZTE\u0010\u0000���-��ND�,����5o\u001c\\.�ʖ�+�\u0003���3�Bb.hLGk�꠶l(:l/\rX��g�wb��\u000b�M�Xq�9�[W���G��\u001b\u0000C?�\u0004��)���g��\u0013yE�p�\u001b�\"�\u0004a?’%9�*�3\u00009\u000e��\u0006(\\1�'1\u001cL��� ?\t'�Q�1�:C)+�;��e'�\u0018\u000b��KO��AB�\u001f|��L�K�0�\u000f��\u0011�\u0014JȜ�;B�ؒ{\n�̦Ýf+Y��Z����v�fA�x\u0012T%���j�\b_�\u0012��9h튨<ӊ��q��b�\r�\b �l�����\"��VZ�-�D��k���{>&T�\u0002\n��1�\u0000\u0011m�m��v\u0004�r�\n~L����P\u0002��\r�\u0015�fI��h��l�\u001d[�\tC���@�{���{Ʃ\u0017>�U\u0017I\u0012ziF�\"��5`O\u000b\u001bY�`�\u0004��5�I�kG\f�\u0010�]\u001b���EQl�i���/d*?���\u000b\u000fC��\\\"�m]�����\u0016����\u0002\u0002��������\u0019kTp\u0006\u0004*�/�їG�_6<��>���\u001e��\th�'�/\u0017\u0018��p\u001bZ̰�:��\\�q^N#�=[$�A;�\u001f���Mv��=\u0012\u0013\b��\u001e\bt�\nj]\u001bd�s�ˇ·��Mb\u0001$\u00194.Xwg��&�~�d�\u0018�t�\u0010�7�\u0015��ָx�z����ZF�'�n/�3o��c�#��o\u001c��\u0006�q!��&و�$\tyBj�'��ͥ�rƒv\u0019os>������/F�@\u001eV6\u0017\u0014%L�=X��\\j��.(�#�U�S<н��~�>\u0007A��&�f��\u000bc\u0000q�[Mud\u001c�jģN�D\u0014K\u0001\u0015\u0004��g��\u001f:���$T�w1�9Ǫ�D��ʡHK��Ӊ�\b$\u001dĚtN;����b�s�\u001f|�\r�!Gu[�T�9\u001c\u00059���\u0002\fˣa$(�'�eX\u000b��\u0001���U��\u0006\u00047v�����)�\u0010LN�\u0002I�A@�\u001f���L�8|`vw�x2�i,�[9c���\u001d�\u0002,�9�с%`m}\u0003��4\tp�D�Y��z/\u0019��4ށm\u001f��\u0003�\u0012�ADז��\u0015�$�l��D�.~����\n�{z\\�P_E��kE�R\\'��\u0017b\u0014�5\u000f@J����\u001b̋�GtP��J�1`IQ���\u001e�*݈_���Q\u0017,�ɳ\t�\n����&�4�#P\u001bT��F�!�h��BA�k/$8\u0006�Ӳ\u001e\u001e�m$�;-U\n/[k^\\�xC�x��s3ewP��5,xW}���-\"�p\u0007S��,�kb��N���'Sy��� \rbBE�\b�.��\u0010-�!E\f����Q{\u000bF�+�o��KJ�\u0018�\"+��%\u0018�\u0004K�X���ʡv�Kf��\u0004,�\u0010O�=�AڣA܁\u001f����\ru�i�Þ��caN��,��Ǟ\u001e.��\u0006�=��f�\u0010E\n?\u0006`��!�@�Ζ��d�����,s�P|a6��v�����Z \u001a��惇/�\tp�X�!)#N�\u0014�\u0004'`����Lp\u0002Ԅ��T@�\u0018uM\u0003ga�\u0001��&�\u001b<\u001f�flQ�R��#�\\��\u0014�\u0019u\to\u001c�-�xxb9\u0019�-x\u0004��\u001cA�Z\u0015�� ���6s�\u00024�0*��v��D�2��=�p����\u0019̤[l͓\n\u0014�T\u00066�6K�6�\u000bVο\\qwߊ�be�C�k\u0016�un�\t�@M�\\��\u0006\u00151D�\"�D)��~٢ě�e\u0001\u001e�\u001bL0�QILwi�R푚Co��\u001c��5Lh��h�������3Rq;u�_�\u0002\n'�%ޏ޷��P��e2:ܰ\u001a\u000f\u000b'�8!\u0000�=�\u0014[��A&�O8�ܵ�\u0013*��馲k\f���,GB\u001d\u0004�D^�\u0007Y\u0018��`fw\u0006��\u0019�;@i��Yp\u000b;�?\u000bO�P�>��\"�쏐�\u0007x�d&M*��f�OnM�u\u0010\n\u0017��7%��er���w*�#NF\u0002-�w�<�\u001a+�����ãA3�\u001f̀�/\n����\u0016�uN\"\t�����u����\b\u0013i�H�,��H}\u0003?u�,\u0004��\u000bIj�m\f\u0013\u0005c�\u001c$�ْ��\u0005��$������fh\u0016\u001c�+���)��(I�r�Q.��/78\u001dv�̄�Ii��\u000f�� B�d�jZ�O�����q���\u0003\u0000\u000f�H�{���v��\u0004�iS���\u001c���BPh��Vq\u0017��V�\u0002�Y\u0014�\r\u001e���K��gId���C��`���Cx�ژ�:K�u�M圕\u001a�CDK�\u0002��gv�JZ�W�\u001cɚ��rJ[���Y�\u0019B��DO�\"\u0012�^xN�)��7.\u0003�7\u0017��b��E|W&ҢD\u0013�j��ZzU�d�W����Z�rFOt�1�N\u0003\u0016\u0006q��A,�\u001f����\u0016\u0015\u0000G�*~\u001b���\u0018��'\u0012/�1�.���\u001cg�fnt�\u001f�\u0018՗i�9\u0012��-���&�4m�y\u000f�4ı:��\u0005\u0007�\u0010V;3�'TF\u001b��:��U\u0000.\u0007\u000f�n�o�'�5(�\f�\u000f��W�f\u00063\u001a��r�m8h���\u0004���fe��i`_�f�,jU��\u001b(\u000661��\n�X\u001c5�I!w��.뱏��i`b����$f�%Վ\u0017��T�Y\u001c�f\u0002��3�:Q%�v�$��s\u0005\u0013\u001e\"�e�̝�0�tݬe��b|g�i���ylz!q�\u0006,�\u00104h$z�\u0007=\u00121�nh?����\u0017\u0015#�t-\u0014\u0019\t`�nr�\u0003l�O�4�$��T�a����F�O��xU���e��A6�\u001f��L��N\u001a�=著�\b�j4����\u001a\t��ɥ�j\u0015ygFS�u�\u001b@��\u00024˯wm��P�\u0005�\u000e'\u0014�\u001e��&\n�\u001c�`Sj�\u0012�P�0�R�\u001fZ�4i?\u000e�\u0004�8?�\u0006�y��fp?}\u0001�\"W�}R\u0010m��\u0011�[x��6ߝq6|Q������>�[i�V�d2�\u0003�[�\u0000�s�꺒�\u001e~\u0011��Y���jd:� �#�-%��y�g\u0003��Pi��!G�o\u0012�G/h�G�K����������\b`\u001a�%\r���r�i�lO&�V���{;��G 4�Ԡĸ�!\u001d1\u0001_��^��\b��8TR(OH�\u0007�|�ؘ�[�Ed�����?zc$�6-挞�}I�\u001d��\u0014��W\u0013��ܣA)� \b���b\u001c�O\u001br�\u0012�f�\u0013S�p����;�[Cl�Y\u0006\u0010q�H-\u001fV�&B�6�A9z�`ˁ1��oe=�\u0014��뎏s���(�y�\u0019��j'wQ(p��֧��ک\u0015)�q�<\u0006*x���9>��)��/��wrH�R�\u0016��t\u0012’L\u001fb���\u0017*\u001eE��`�nC�}�^Q\u000fz ����KŚ:v�ctJ�~�w&y��Ӱ\t֙8�\u0019\r\u0015�\n\u001e�\u000fƿT\u0003Y�'�\u000f�{P\u0019�<�������n\"N\u0017\u001bpxn\u0019����\u001c�zn�=\t��V\"̔�����ʫQ�\u0016�3�׉r.��<��\u0014��~���\u0013ƅ%�QF7sӿ��[`\r\t�Q�`M�\u001dbq˻yH��\u0013U6�g\u001b�5h���mO.x�p*�\ty��A+� 0��Mz�d�q�1|�]��VZ\u0016��*������c,\u001f$\u001d�\tS\\�߻�Q\t���,��m�V,��D�s�C�\u0011\u001feϲt�!_\u000e�{�M��>~�V�:GA.�i�gM�{Nt89,�\u001a�7g�D|T���\t�Y\u000e�\u0006�\"�2�\u000e�\u0012�\u0013��\u0013\u0003\u001b\u0016�'�Ν�;Y\u0011\f\u001a\b��=/.mq��t�\u0011q�罁d\u0019�zʉ\u0007iB\u001d���(�c[�\n�\u00103B\u0017� �\u001e_p�69��\u000fE\u0003O�H+Yb�������E%\u0002�\\FH�\u001d`*� Y_�9\u0003V���`�J�#:\f�m*�\fɇ�n�e��t��uz_�[^\u001b�A+�S2��馠̒�I���}��CJk�\u000b�AC� D��L����\u0016G���8ͻ�1��.J\\�'+/��׷��\u0013�+I�R�����\u0000-�n,~�%\u0015\r`��n���\u0019�TSt\u0019�ٰ\u0018T:&������+�5�������1�A\u0006q\r�\u000f�y��;@�����F�\u0012�B��>e\r��ፕ6�\u001e�Og�&v\u0011š\u000bvl���qxy��\u0001\u0010�\u0018��`�R|O�\b�2\u0011@\bɄ\u0003��|�v�\u001db�f^��Hk�\u0005��'υ5>����������Y��9��\u0000\u000flI��74S�/�Q��<�B�z٫�`\u0005�U���\u0017�.��\u0007\u0007ؤ�B\u000e��ϕ.<\rw��i\u0006��02í��|*\u001a�<�N�Q~���wd?�k�\u0015�\u0012�[X��>)y�5[Iw\f8m�uH\u0010\\����\n�A>� X��L�y�\u001f��\u0017NW�-Ht���i�i^�\u0012\u0003|����kuJ�/�2m�$\u0014��^�\u0012�(g��:Z9P�E�\u001c\u001d\u0007�\u001a�f�6c�FI\u0005�\u001e�wcM�Zp�\u000b3�X�\u001e \u0011-���1�'�O>c�\u000b��6k�(̼$\f�\u0006o�$M\u0013�w\u0018ih�\u0015L���0�s\u00048|�Gou��l�\t�ĴoI�.~�\u0006��7��<�\u0003,v\u001f�\bn\u0005�\u0019�n\u0017�E=W?������p�w;��\\��$�D��m!\u0000f���o3�͍1@+�P\u0012\"I\u0011�^��&\u0005�\u001e��\\<1�\\�[\u0001g�^r餝��\u001f����ԍ-��rf�\u0006��\n�Ӥ�G��@^���H\btMb�JF\u0019�tr�\u0015�8jhݴ�7���&\u0007`2.�$�A;� l��My����*�Eݸ���D�v�(��_�b<\u0002L�3�!u���ɰ\u0012�|\u0019��?�‡�\tQtw��>�Q�zV�\u001b��\u0003�(��!G���m\u0015Q���ج\u0002@QC=�XY\u000f�M��G09�{V��堠��E˖�\u000f�5�|�����[$��p��>8��B۠�N�mu7X\u001fa\u000f����$�\bo%��\u000b��M����\r�X�*��v;\u0017����>���{\u001eh��0����\u0014��f���\u0001P��n�K�=(s\u0004��CH�\u0006CP�w���,l�\f��UA\u0010\u001aq{\u0014\u001f�\u000e�AN�r�\u001c\u0003Wv\f���\u0013\u000f,�;n|V\u0015����)\u000b;)\u001d�9�v#�xy�iUz.\u000e��I��DZ\u0015�0���$;�H�\u0013�A@� ���My�5��$�h$y���\u0010��r�<\u001f��\u0011�\u0012�'+=�\u0013��ҡ�Z-bՐ�\u0013*�YX����\f_\u0003��%�s�|G��I� \u0000��@�:��Q7-�P��\u0011� � \u001bb��r&u�US`\u0000��ҏ\\\u0011D���\u000e~6{£,A>�\u001b�D���i�9���0�\u001ah*L�\u0005GQ���?\u000e\u0007ɕ\u0014L�x?����ۙ��\u001d�3�z\u0000\f704zO�\tR��p�N�\u001d�b\u0016˼\u0003c&!��0��O\t�Y厁�\u0011\u000fy�Gj�n� \u001bg���n�?�\u0013B��I)\u0018���;�;\u00019��bC�{�|˔��b��}\u0002\u0001jԦ!�_\u0018\u0015�=@,�Q�9dw�:�wpnȹ�\u0010����\u001c}��ܔ�ģ{�\u000f&\u0011�A:� ���K\u0011��\u0010�\"�\u0000\u000b��@J�D\u0002�,�\u000b��S\u0004I�C��\u0014�K�\u0015h�\u00175�l�\u0012���ϥ��#\u0011�Q#mu��\u000fĿ��K��\u0011\u0015�\u0011/��\u000b�\\\b5V�3�I�%�<�-Qi�S'��\f\u0006W4��\u00176��\u001e�)I,�o�kDb[���.,\u0012yi\rUgL�㰯(�\\Y\u001761���%٧s\u0019���YU(�U ��\u001a-��\u0003\"�3�p�%P\u0005�I�]��g�f]`�\b�`�93\"2�\\U���P�-c�f���2��7�235N\u0001�/C��Y��E� �\u0012\u001b�\u001b��{w��B�\u0018T;ua+^iwx:\u001c�Wm�sH���3>�a��tT��dGW�-��@_��D*���m4��+\u0012\u0015��\u000f��d8�AC� ���(v�=e�e�\u0013%f����zC\u0013֛,H�����S%�4 �@\nl8���C\u0013ۉ�\u001c��%S4=v�%�|��=�,c�oC��!�x\u0003V\u0007��\u001e\u001e�\f�-VO3�)l!&\u000f���]\u000b�\u000bf\u0014�r�Y�\\��\u0001��\u001b��\f�ʪ��\u000eϸ\u000b�9�!�\u0014\u0012zB�T\f�Qn��\u0016��=X&\t\u0012􇸆\u0012�v��E��s�\u001dw2/(ۿ���\u001d��\u0016�\"3m-����b`������\u000bi�l�S���\\3�U\u001e�\u0013@0�+�\u001bz���U��>8mdJ-��ّ����\u001c���7�sܽT�e.P�R{d�A!� ��X�}Ъ���y\n���H/��\u0004\u0017\u0017�2z'\u0017\u0006��鉬p\u0015@��2\u00019BX���G��c���\u0003\u001b�ݒ���\f��k��<�\u0002!\u0002���8�41Y�]e*A��ܵ\u001a+��\u0012/��+\u001a\u0019��\u0003=5��\fƂrSt\u0000�S\u00050��K�^�\u0000���п�7��:r\u001a�|gM��'40\u0013ᑨ��ThAZ�[��EQh���R���\b\u0004h߽#��Zuq��Cc\rr���#�劇�n�\u000517lwR�L�p�⸐b���:���t��t=]\u000eU��~�E+��1e͢�\u0014�>VF��q��E(��5�V9+�p��{z�g���H\u0001��t���\u0006��!�A\u0015� ���M\u0012^fx@tFgR�k a\fpZ��\u0012����^9xP\u0019�\\=R�?\"�B�y2\n*pBW\u000bs))���q��nf�\u001cْ~��\t�\u0003�9:b���g\u000f��\u0019\u0013ss�\b�\b��T)�(\u0006����\r���>%ϔ\u000f�8��y��Ā:�e��땍\u000b�]E�j89�6~I��\u0004C\\z\u000f��˩Q]#\u0007�%\u0005�G�S�������\u0016$��g,\t���������qIS^;&-�\u0019K�\u000f��)<�\u000e����=;x�\u00108�3~�)\u0010hp�f�;�⿡�᪳7�_�+>�z����. \u000b���ʬ��\u000f�,��3Y6�Q��b��0�7��A'�!\f��M\u001f�$�;����9�����f�\u000fC�5�\u0004\u0000�ىD\u0014�A��僵���\u0011�W����o5�7�y��b�;\"\u001b��<᧫��\u0010 .k�3�n���Q�L����\u001d�%�>\u0006�Km�\u0001���r\r�uW\u001f�6\u001d�\nW\\\u0001�\u001b�\u000b})ܯ6�I7\rZQ�aDM�\u001e1����%�^cpKCx\u0000�LG����'N�x�Pw\u0004\u0000��`Ҵ�\u0019�l�Q��6/Y�\u0007�\u0015�{=\u0018\u000e��\u001e“�i\u0000��\r��5ԏI�˪�zJ�Ԍ��\u001f��oh�{\u001a�7\u0002�[Jg\u001b\u0004��\u001d]V�D\u001c`%��t<�;�\u0002�\u0001�P���,-����/\u0007��g_/�[�\u0007�������\u0007jm\u0016��Y��b���y‚��(А ����|:\f��B�\u000eF\u001cc�\u001d�\u001e��1��5����FJO\u000eY\u0001\u0005MȨ�\r��3L4�d�k\\E[<���Qxn���&��E�1�J�$��1�d�`\u0017�/Gu����\u0006�y:Ӊ�$��Y�&�\u0002��#vo$�r;�\u0002���Ez��z��<)���Q+��\u0001\u0010\\�e\u0002��W�\u0011A��o\u00073\u0011��\u0001�r4m�A)�!4��L�XS�<��%��yGR\t�<\u0006��\u001dL\u0005�b;�^�>��2�\u0007���\u0019S�\u0018\u001d���\u0002MHE@\u0001J���+�\u001b\u001c��\u0006�\u0007�Ҿ��a:Mc��#~\u0004�N[�������\bǍ�\u0000(+<\u0018�\u001dm3�;?{N���D\u001e��\u000b6�.\u0015\u000f��H&�\u001fӈ`\u00032��Az��h�\r�\u0012\fѕ�\u001b�����S�p\nIw�\u0010����<�`u�Y\u0017�W��d�\u0001p�z-�\r�uF�\u0002��\u0001w��\u00065��~�yw�Qń2�h\u0004\u0007�}�N.݂*c���񓀍`|Jc�j�^\u0015���ݜ�yפ��h��}���\u0014x4\r��\u0006b����Z\u0011c�PN\u0007w����/=;��A(�!H��L�\u0019���\u0006o��\"\"��\u0006�G�э�.�D20\u000e�ڭ\u001c��C`�͘�&\u0016�?�q�ӛ��\u001a{9xX;Н��kh\u00000{��\u001e\u0002L�k�o\n\u0013�$=���%`�\u0014��\u0019������l�����2\t#�2����ս��ot�e�,��vT\u0006�X�%;�Z��q��\r��Vz���� ��\u001aC�R�\u0018����n��0̪\u001c�����\u000bb\tB�ЫJϥ�q������\u000eWv9�B[�C�ۥ#��N�U�xC���\t�Zr�B��*\n��\\��W�>$7Aw� ��<�݈\u0012@f'\u0014\u0016U\u0002���\u0013��m] ���V�\f�;lMBBi���̥-�A#�!\\���b\u000b�b���F�\"�ؗ���\u0016�{\r_\u000e�Ul�f���D\u000b~\\��Ӓ�/�\\D�3�\fZd��|*\u0019el5�TFm���e0��\u0014\u0007��Y||(\t� ��ү6\u000b��W�Nd\u0002k�mp�\u000e�\u0000\u0014���9i}\fnp�\u0011\u0007\u001a�Bd~���z�fH�srE���C��A��|��+\u001bW�����A�C�2OKɣ,j\u0015NL=���C���\u0012NT\u0000Cf�,�&��j\rj:�\u0010��EϮ�T7㟋��I<���\u0003BS>�֛Pʘ�O�'OY��N��ߍ�N[���/!�\u001eS\u001aҜF8�IBT��\u0007\u001b1g��Rj�@����9]G�\u0014\u0014��\u0010v#�tz��u�A-�!p��L�|���[�sv�x��X�ܤ\u000eV�h�1���R+�tQGh�\u0019�X�H���g���,\u0012H�M7�n�}�T�S��v\u0006��y�\r\u0004q\u0004R�ѹ�,�\u0014]\u0000AU�:R���\rq%�X*�>\r��N��D����P�\u0004�[�$ ݑ\"\\\u001cb�\t[�N`A�[�\u001f\u001b�Ȟ�ZI�G\r���b�3i�������\\�9y��5�;Y��9\u0014j\u0016�3޺%'\f]��D}�)�v�B�\u001d�\u0004\u0018\u001d�4�\u0003gX�\f�P\u001e\u0013)�RMW\u0000�0\u0013:�c$$ۙ\u0018��l��Ҡ�����ׅCFd�Ga\u0003\u001b��m\f]S\u0015�H#0�L�=��\u0003~�'�t\u0019m7�� �&6\u0017\r��\u0016��[�A:�!���L���6�:\u0016�`�J�\u0018� 8�\u000b$�\u0017�)E����\u0014�h�V,9�~���3X�G\u0000�:zlm��z32\u00011��\"(\u001d��l�~f.�en�Е!��\u001b/��\u0006)��\u0018��\u001fX�Q�|��U鱀�XA\u0014�%Ѿsc�;�������3�ew��>�'�ãMr�\u000b\n�Md*�\u001e5�l��}~�0&[��5ȁ�E2�,�bڊ�\r,E���\u0013憾\u0015\u0015�\u0017Ŵ��^�M;�\u0018|�G^w��<�؜�i\u0017XS�@\r,�{\u0014���M�\u000e�\u001c; ��\"�����)��)��ק\u001a���}���ݞ�gO�\r8pH7���\u000e�ã,�:M\u001f{`9n�B��=��b�\u000fNFY�Oҩ��V[\u0001Ƨ����M�Q�l\u0018\u001fH%d�;�`k�\u0007ӛ�wJ�\u0014�y�0+}�\u001b\u0004�RL�ׁ􀡁Ґ\u0011A2�\u0018����M�7���a#6D�C'4�y߶eO�����k��al�@�Xi����Ϻ����\u0003��9)8<�W��\u001e5M�8�\u001a\u001b�\u00001,V�[\u001b�S�eYJ�^\u0017,\n�$��2�EwC(�5w 5�r3�v\n��\u001aE&��D\u001f�^�hR�Ai�!���/$�\u0013���A�v0�\u0002q�B=\u0014�\u0015�\u0001rM�L�(q��\u0013��s\u001f��6\u001c\u0003�S�h��o��f\u0001�U%�av*z�m\u0006�\u001e�C \u0006���CԂ��\u000b'����U�\tq�\\\u0005\u0011�\u0003\u0003�x����נ����m���N�ģ�-�\u001d�\u0006\u0017��Y��X\u0004�\"Ast�\u001e\u001eb,�j��g�\n#kr6�\u001do��3\u0004K��\u0014A\u0015�7�~b\\g��\u0005���ݖ�b��Q�\u0011���?�KVH�\u0019ʥ�E\u0010��W?����?�\u0011�k܌\\t�\u0004\b��.����ì�\u0004\u0014d,�n�BTMd�2B\u000f\u0007�\u001b��:\u0003ye[9Q�\u0010�'\u0010\u001f�K�Xp�GԲ�\u000eN�Ǧk�R@�__�\u0012o\u0019f����֘���{�-�$x`����aDc�\u001b\u0002�M\f�Է�1�$\u0002}3�\rB���F��)�D�ݦ\u000b\t�C���A8�!���W��\u001c�K?o�\u0010ԕJ/\"�(E(\u001e=����h����l#\u00158|�6�b�\u0007N��ޮ{.\u0005\u0019\u0010\t[�%\u0000��C�#���P�\u001a��H�#�I�G�b\u0018�\n�����(�T'pu�\u001e��\u0013�k�d�\u000bfA�n�i\\�\u0016�x;\u0000�?\u0013\t]>�69�~�S�}�f��Y�Χ�0�\u0002����\u0014\u000b�X]�`UC&Se�м��E\u001e��< +�\u00019��\u0015~���:��A:�!Ԁ�L���\\V�]XJ� \t�2�\u0000.��*\"v-{4�?�?.l���V\u0013w��\u0002�\f�� �H`<\u0019!y\u001b\u001a6p�x��|��!�]<\u0015]�\u0004Bc_\u001c��0l�� ȵ��'�=\u000eoh�B�\u001b\tM���r���qZ\b���\u0010��mf\u000fYD֪Q\u0003�;�r�\u0014~3�ā��5\u0003xuf�v��f\f��5tn7-��:�˒ٟe�t�>��|�\u0017\u001f�P��\u0017L$}��I\u000e�P^cfHHX=�HS>��\u001az��?w\u0005�\u001a�.�\u000b�&��ߏz�Ϗ'�<��A��K]�)�b�kU�\u00045@Z�����w�l����ݷ{u�\nֲ��Ψ��\t%\u000f7z\u0003ׯB�L�O�\u001b\u001c��:{��\u0007�2���-�!�\u001f\u0011�A?�!���\f��`3h\u001a�\u0005�c�����37{P(� \u001c�f�{�\u0015)~\n\u000bԁUN\u001f6�-n\u0005>��.�����$�\u0003\u0001D��3-e�3}�����&�9�:c9�N���ln���H��\u000b� g鲘4C'��\u001f\u0003_V\u001f�9\u0012�\u0019pa&Tvצ\u001a�\u0007\u0003��\u0018��ȼ��L���R��s\u0001`��h#\u0016�0�}�f�3����\u0007�[~+�d��\u0004V\\�o\u000eg\u0007�2%�r�R�Cx�\u001e��j�P��{E�\u001d乑��\u0012�����V[�1��7����=�3;�'�4)͞#��w�����fM���B��18��^\u00078��\u0004X�����khLeTN�\u001d�\t\bF���@E�~�6b2�\u001a��G�8�\u0005���\u0000y�A5�!���L�+I2\u000e;w\u0001��!��wE��-�B\u000e���uM\u001b(������K​�k���s~�M>UI\u000b\u0018�_6g>��\u0015���N�N�C��\r��]�j��.B\f�i��)�\f����w�W\u001cA\u000b��x�1n\t����\u000e�;\u0003ۇ���D\u0000>\u001cVb��j\u001bUf�]mz\u0014(H��\u0012\u001f�ꢓ\u0019���ڷ]�q��7�\u0016\u0019%w��fھ%I�aK��\\��[�7�\u0018u2��f4�☿+�1\r�Y�b\t�r��U[\t����v$.�$�!��r[��8\u00124�o�NK�F���pX'2_�Sh\r�AT��8\u0011�H�����R��1�Hyr\u001f����\f��]aMc�y'+��1G\u0005�G\u0003��\f\u001c�A>�\"\u0010��L�Z�3�V8ՈW͇Ѡ�oӞ�M� A���\\<�Hn\u0003\u0003Ny&�{_v�\\OpՐ\"�FPa����P��T�ĕ+:��;g2��'\u0006U�\r���9�\u0012.��\u0012WU\u001e��{��_��\u0018Rl�h6A\u000bz�/~&G\u001d\t����*\u0016�o-��\u001b�)IkڪQZ8���S�yt\u0003��\"o`G�s����ܗx�st벪�\u0016����M,s�\u0017\u0001�m>,�r1V�h����q�q�����ȟ��'TlO���x�\u0015\u0000�\u001c�����T��Q�\u000e#;�!m�i����(l���\u000fu\u0007�\u001aK����+�\u001b\u000e��KG��]��sN�g4��!;�B�FOpC����\u0017�\u0016[srR�\u0012��\u001c\u0011\n9�ql�A;�\"$���\u0012Y����g\u0018�\"3ͪef��\u0016*�\r&�^��4t��!\u0001Q]��Y�~\u0003!�En$�pn��B�h�\u001e\u0002�\u001d�\u0011tT��\u0006���mù�d\u0018����R\u0002\u0017\u001b�\u001c}\u001c�\u0010�&0�y�\u0012A�\u000f���o0.\u0004,�L�VS�\tf��\u0000q$_1\u0000�K�����ˠ{8S��Ξ��2\u001a���Z�5៓\u001c\u000b�Ԯ��\u0012\u0002KF�\u0013�O%��H�KǮ�E�\u001f�I����'��az\u000el(�OKBem\u001fa�s�v�\u0004W�B\u0004%>���p8����\u0001�i\u0014\u000f\u0011񨄢\u0002��\"\u001e��\u0005�o?��_�\u0017\u0004�w�5\u0007 �=�\u0006�\u0010{��^�a�`����p.�q=��\u0017X�ֻ�4��\u001d�&gX�f�\u000fW��Bڻ�AM�\"8��L������\"`��L�\u001f{��\u00142�'�a�EK}����\u001e\u001e�㗔�\u001f5\fM\u0010\u000fK�q����8&N\u001f�-! \u001e:���\u000fg\u0001��I���Q?�%+\u0001��\u001a�\u0012v\u0014F/K�\u0019U��D`d������޻D�)\u0014�\u001c����\u0011B1�yc.ɱ�o����RČ����]Ӳ'f�C6�\u0000�)\u001b\u0004�cp�'\u0002�0�\u0017\u0000�JW�\u0002�\u000b;\"�eJ���\u001bnt�\r�'�\u0012�\u0010�\u0012\u0011\t�aױo[#�֣f�\u0015�4\u0017�\u0007f�@\u001b�:(J׫$i\\$�\u001a�AB�\"t��M\u0013�g\u0016\r\u0005�n�\u0004�?��_���MM�\u000f̧?k;=�}��\u0012�����rzb7M�������ٍ7^���h\u0006��dfXa\\��d�\u0013/�Ws�{�\"Q2\u000br�(�\u0018\u0018T԰�GȄ��\t\u0012�E\u0000c\u0007f��z�����\u001bg�>in\ft\u001d��\u0018\u001d8�g|�j�\u0001�����)�V�!\u000e����#���\u0015�n<\u0007�.\u001e-H\r��i~�\u0002\u0002#׭�!�]iT�<��x�����\u0005F̬�%�兪w��{�s\u0011\u0000��6G\\p����l\u001c��(\u0015eͭa�T杺�2��pi\u0001\u000b$nu�\u0007��T-q��%�I{\u0005�H|UD\u0004��.m����\u0007\u0004Cd��\r���z�ɠن�\"~&�\u001b#:���P�X�D�9\u00128O�\u0019ee�AH�\"���MY$�WzG�\u0019>�~Ao�~�M\u001c;&&V;@�G'��[j\u0010��~Ad���y`@PF�]������}\fie�&\u0011J�|��d�b\u0007c�\u0012�|+�\u0002!R\u0011\u0015�Ժ\\��!��LkK�T\u000bd�\u001e��8���\u0007m?3��X�E�yc��5FW^\u0003�\u0015w�τ0<�x��ܟ��(�}�����iybp�r\r\u001a5\f׫;\r�b\u0018��\u000f��tp���p*\u001f��AN8\u001a���:��0~*\u000b�b�\u001e������J䝠�k�-���!��Q\u0013�2m�b\n-�@73��\\]L���w�����O�\bU��\u0010�\u0012����03�=�$.]a�4\u001e|\u0007T��\u0015�0*\u0007�mx@7\u0019\\��\u0000a����B���m:8O\tY\f\\�\u0016�\u0005|l��AG�\"���L�3l\u0010�t7��.q���9�#R�#��p�E�D2����G��o�**\u001b�(%™�!�,�\u0003W\u0004��Qu��q\u0012\u001a3�ڨ;\b\r\u0014�V_\u001b\f�+B�\u0017��1n!)Q�Kn`�=A�q?hPq\u001d�#��i?�\u001dp��$�9��D\u0007�φB��0\u0013\u0001hV!m\u000bf����D�0�e�\"�w6>z��*�0|�\r.d���\u0000��U��\u001cϧ-l�U�HX�NªQ�e�{(��g��A�x\t\u0004a�\u0012ɷ™碘\u0003��6���I��>������\u0016�`�\u0001\u0002��\u0012*M�\u0015��c�\u001820.e9<���i,��\u0011��''A��-Դ�qq(�'�]g*�v��%�A[:澕�4�@WSX��m��\u0010\u0017�P^��y_>\u0019$�A��\"���|��sT`���G�Q��/A�l�`\u0013�>p�\u000e���v�Ͻ3�CZ^����H��G!I\u0014��\u001a\u0018��A�jc���*�\u0019�b2�x��˻�K\u0012NT�T�A�r���\u0016�?��u���`�b��y��!�b\u0010�jY����mU�l\u0010Fs1�J����.\u001b\u0012\u0006ZL� V*xB�\u001f�\u0004$\u000f�zl��M�W͢��A�Ԏ�e���6\u001f��\u0012;�Lez�wr�B�i�8�r�,{�F^��x�_+���_l{\u0016U\u0016����-�=񤷎c��\u001a'S�\u0001���yki�lv8\u000b\u0013�@��A~�=�\u0014�/����u.$N�!I/\b\r�#L?�@ݰi�K�\u0004M0/\\hH\u0013k)�\u0018m��*ӳ7�+9�_ݒ]CR�/Z�\u0004DS�ϥ&3�����Z��f\u0000T��ߍak�J� ���`r\u001bz\u0012�X�x�� �\u0015�\u0014�V�cl�GI�t\u0001F;�ʚs%��rj��dR�\u001d�9\u000f�_��R,p�޷��J\rR��G?�U\\R�ç\b�)A�\u001f\\��U(\u0010�w��8~5X\u00154[PC瘸�B�S��\nF��9���Ww\u0003�x�f����������?`L�7ÄP�J\u0006z\u0011a\u001c��A,�\"Ā�X���a��hE|��LY1ɐѹTa����e������S\u000fX��ߏi]�\u001e�\ry�A%�L��[=�\u001dͻ\u001c{L�MS��v\u0016.#\nd},���F�\u001e\u001b��宻���N��#��=g\u0001�ۓ�\u0002�)U\u001dVuUz\u000bmK�f�NGs�Y��s��*�W\u0003�\\I��y\u0014KS%����i\u0001W%�\u0010��b��]K�����/��/\b�����k�m�\u000f��d\u001d�7��\u0013�R�A+�\"؀�L�3���ILhx�\u001d�k�����݅�\u000f�\u0013��-���ޢ�!ɹ$��\u0014��8g�\u0006�\u0004��N�w�N\u0015�<%!\f��[�\n\u0017#����\u0003��\u0019�mkZ\t\u0010v'\u0011��j�ꡣɮ\"�\u0001\\�\nn\u001d\u000f�Ĵ�ѯ�\u001f��\t�\u000ek`\u000e[��=\u001d�spt|��\u000e\u0006�^�\u0002�\f\t\u0007P\u0018\u0011�\u0010\u0000\u0019���A(�\"��X�\u0016\u000bF���L�Tʯ)\u000f�V\u0006�DZ�\u0012�\u000b�\u0012\u0003?�\n@6H�~ 0�Ѱ���Q8B6%�)�\b�8RE\u0000�;}�<���\u001a�3E��\u0010\u0000�Wn2�\tU�&\u0000N\r2�,|2m(�k�m|M����R��s:\u0015ޅV�d�\u001b�c9K�W\u0005E;��ܳf�H�v��* 3>�܈�}\\�\u0005�\u0016n^\u0016�%%2R�\u001b��}����l��\u001e��?\u001bl\u0015��}ҖM~0��\u0014\u0006�rn�@݊lն�ɂ>�#\u001055���v\u0002D:g\u0005�\u0003�\u001e�f�_�o�=u�����g1d�e�%����(A���=\u001f��a�.���J\u0018^��\u001a��'0k��YKA�-eDb��u��AB�#\u0000��My����[/�I\b\u0018���[�\nK<���\u00157�н̔{�઩��B8��\u001cM�a#���R�=��\u0000\u0005\u00180�\\�@+|\u0001�ߜV��\\\u000b,��q�\u0012ji�\u001c�M��\t��\b��п{�6\u000e��u0�\u0013:p#�:�\b�۶��ѭu��>�w�O��I�\u0016H\u001cBB\u0016�^\u001c�\u0011���0i�@v�(�jJ������MÆR�\u0015B|�\u0001� nA�I�F\u001e�\u0011��Õ�\u0002\u0013��lB�\u0000(��~zۥd�2� 4��\u0007l���\u001d����4i����;}�L�\u0013M\u001eB�_�'\u0007�%�s�.f�߲��*T~S�v����`�\\�S�����8\u001a��,��j�\u0002 �|���M��\nS\u0015#��\u0012\u001b���P-�t��&ңA?�#\u0014��X��-m��Ђ\u001f#~~;��HO\u001b=��#0���Jӄ�����mg��\u0014��ٍ���\u0014)�)�n�o[��\u0002m���\r�V�j��w����{�\u000b]\u001fT[�>i}籬���\fPE2���SRHJ��U\n\\x�]6��O�<-�xNL���\u0016���К�t���Z���#(����;4�\r歖q���\n��Y(�$�\u0013}E$O�Z\u0014�����cS��z~��x��0c��\u001aH�(Ͻ7�[NX\u001d�WWf&B�8���Q�\u000e�NU�a�\u001a���\u0005c�r/�\t���-�G��n7y\u0018�g�ǘWzw�;z�\u00048<\u0014�\u001fG�\u0000c�m�\u0014�8Z\u001d����ڝ�Ƭ\u000e�p�^\u0002��\u0019-Tm��\n\u0002/�\u0004n)�Q*\u0012\u0018L\"�^��\u0001�U�|�\u000e��\u0007��\u0003��&�R�]�o�y7�\u000b���`<�tp��0\u000f��a��a�����ww���c�ߐ�Q��O�ŠѽT�\u0002�]ўX����T+���\b-\u0018M?��4bn&^\u0014�A{c:��\u0015z~|\u000f\u001e\u0005�uJ�(\rl���=�\u0013j�o\u0011�^�A=�#<��L���-Q�騆�_\u0005�H��6�f%>�N�Ѣ\u0004\u0010�\u000b�\u001a�\u001d�@\u0003K�P/�)�N\u00016A���1g^L�нL\f�c\u001a��_\u0007fUDor�(Q�j�\rH��$n\u0007u@\u0000����G�\u0014gF��� ��d(\u000e��o�\f\u0007\u0016\u001d�����n��3��\u001c\u0019\u0011h^\u0017��B��\u0004�\u0003(d�?u����ePӂP�VeMz�{b���GjXA\u0018\u0010n\u0012��mz���낧\u0006���d��ٛ\f*���b��VI��\"l�:\u0011km��d�vB+�Td\n�\u001c�$�\u000fS8���G\u0012.\u0007MS@�uO�\u001e�1+\u0000'\u0017��a\u0015��4s\u000b�����Y>3���\b�\\ ��~�W���\u001d\u0005 \u0010��\u0003�uMFm4�frGNg�}O��AE�#P��L���\u001a9��r�0��O��KJ�.��~f��\u000b0�R\u000b������\tv�t}����\t8�\u000b\u000f)\u0006�ւQ%=n\u000b���yY\u001d�/����\u001d��L\u001fy�O�`���Rz\u001c�З��&R|�}\u0006�!\u000e%�.��C�y�`^��1�F�H�n�\u001b��\u0006�M�`F�\u0011���i�\u0003DDL�\u0017���(H����\u000e\u0000�8��\u0004��- \u000f2���T�g\u0004;V�z����\u001e��<\u0018X\u0003�\\a��K&gS�z�Bgix�K��`�c���t\u001e\u0017\u001d4\u0015@t�.N&>��\u001ar��W[|��F�8o��W�\u0003zV�q+���\u001e�\u001dywo\u0015\f�~@�\u0010��\u001dS1\u0011�2K�ЉiɊ6��,\u0007+\u000b�r6\u0016�\u0004�Au\r�\u0002�\u001fa&�\t?�A>�#d���\u0018L�>�\u0004/Q˗w���\u0013���(>��kX6#Ce���<����z����LQѮzݾ�P���m1�\u001bJ��E���+��\u0018��t\r\u0012�!C\rl\\�Uq��SZ�\u0017r2�\\�\u0004牡Ǐ�\u0010$�6�\t�Wk�M�n�h��‚d���\r\u0016\\F�W�P6O��\u0011���)�=�l4e��\u0011\u0016�Iҗ:\u001c�\r�\u0015;>xKȠ\u000fG��=����\u0017-S�O'\"�е�\u0018�{iQ���\u0016U=�\u0001\u001e��5�}X��\nY�ĕ�yVHۥ\n\u001b���,�\u000e'�R�ގ��&��\u000b�\u0013gLh�P��x�V�����xc\u001f������|ͫ�K�F7�\u0014\u0007ɬ=��\u0006���\f-�3)\u0011�4�\u0011ϽN\u000b�״x�AA�#x����YB�ZT�����\u0000;d\u001aG������e�\u00186\b&��.h~�\u00170U\u0018�t�\u000f�\u001a��л��i�虜\u0018��HR�~M4H�ϱ�����n�⻔bϴ�\u0012R�~�[�a\u000e��<�/nG���|\u0003��\u0014�drĒ\u0005f9:�]QZ\u000f�4��/���uQ\u000fb����/\u0017��T�|�ߩ�\u0013�z���@��\u0014�hfG\u0005�$^H#>0�d3\u0013h��j\f7Z�(���Q�8Nv���BB�\u000e�=an�\u0014\"����\u000479�_@�\u0001��LB�zO�:\rj\u0018s]\u00061l�2\u0004A6\u001f���6��It��C�Z��‡V�5'H�����:\ny9�/w�\u001dLM�O��3�/�i\u00124�4\t�²��\u0019[^㬓`��\u000fx~~��A\\�#�����A\u0019ɿZ�5b�\"T�5K!\u001aIk���h�>$U_�� �\u001b�\u0017e���� \u001c?����\t���\u001e�9�\u0018�s�v%\u001a\\Ԩ����\u0016\rN<�\u0001oUH�~�\u0001;�fy��`�7]��p�K�]^�25\u0004�A0\u0002�\\1`\u000e��q�?,�,�\tR�`{��\u0013�%�Q�#*V�_��r�\n�䉹_(��\n��\u0002}xJ��1�`�P�c�\u0014������g\u001f��\tB�\u0015E�#V]���6M�z�\u0017Y��E��fǥ��* %�\r�GmM\nn}l�\u0015�\"��H*���ݒ�����[u2�2�\u0014uj�_�O\b�yo\u0019&�~�Qm������U���l�\u001bA�IK���9!hۣ^l���\u001d�\u0002��v��t\u0003v��\u0011Q:\u0001��ɦ\u000b/M�|�-!k���A��p��A[�#����\u0013\r���W���K%�͑[\u001d����6�T�n8Ҙ�W��ߣ-�\u001b�\u001e��\r��\u0019�E�NQ6V�]'@\u000fb\u00075�aHD���[�~b/\u0005�����\u0004�GD�w/!���K�\tTY\u0014��W���H���1[��_]u\u0013/��&u��z�;B\u001e\r�\u0005���\r&\u0017I�-1�9l�e�i?\u001e�\u001fy�x��[\u0005&a���\u0012Lɩ:0m\n����٨�Hz�4'���\u0000t�����0�lkץ\u0010�\u0006�R#pg]�&��H@�o[3\u0000T[\u001e^)��4���\u0018���\u0010י}30s�%\u0018u<\u0015����\u0001�l��7!�y��P�Hb�\u0011���K�Ȃx�H{\u0001-o��\u000b\u0016�RwH�n�x!4Q'��\u001b�\"�Z�U,�\u0004�y}֓��\u000f��wυ �a+.���\u0002�L�\u0010��A��#����\r�k���C\u0000^���\u001dj����$_'4�GuB�����L��X��˛�h\u00071��U��Ŝ������:\u0003s ��`t�)��@b'�!��4�\u000f\t`�+Ljm\u001a�^��\"\u0018W���]��\u0014���b���B�T�:\u0002��ΥҲ\u0004�\nn��1�ȤFK�\u0012�n\u0000�_?^�$�T\u0018�.\u0000\"�\u001a\u0012{_B�\u0010�V�\u0002�n\u0000��ح\u001e��/Y��~l*P��9�#DŸ?k��I��u\u0016Z�7iϯ�[��\u0011-E?��3�\u001d��p�E9/�}�s\u0011P\t#}\u0005,�\u0011\u000e�MF�M�H���.?AG�4���p��J�mY\u0000I�ģM�{��ڴI\u000e�w��\\t\b����ן�I�ʓP<��yA��o�ƅ�5v�6��v�Aޒ�|k0h�,%�_8��mo�EF��\u000f�\u001f+]�ܻ\u001b����'�[�|\u0018���\u0016��\u0013>f氟�]^�\u000fE�\u0001Ϛ�����A6�#Ȁ��\f�s��/J\u000b�T@ڗ�A�-b{�\u0010Du�*��tfF\u0010��\rZ��5=��Z(K�\u0003�T���SH\\�i?4�@SHME�\u0012�A9����w[�(����\tl�\u0017���'�,�1\u0014ǧ�|9{�\u0002&�h��\\�Z���\u0005[?B�*�\u0010'��\u0011ltK\\\u00130��H�t\u0013+=��b�j�����\u001e]�Z�\u001eJ_�M��$r�+\u0004Fg}\u0019qu\u0002�^e��w�c�ܨW�*�o�y�Ax\u001d�Cǹq\u0016���M\u00064�2uLqhlhχʭITS(遈��\u001e\u0000�\u0015y�z�-l�i�]o��\u0016�G>\u0002t��C#FKU�\u0017i���ܻD|����\u0019�Ϣn��͋�J�����\u0012��=�/�\u0006H��A9�#܀��\u001b�M\u001e5�pL&�\nP����.]~>\u001ac&FE\u0019no��l!��:;\fv\u0019[�\u0002\"l���G��}L3 5�\u001f݂@\u0018����A\u0004.۰1\u0017�\u0003�\u0005����\u0019\u000e�Y\u0015\u000b\nƋV�\u000b\r\\r��6X8cC�'AV?y˪�Q�/Հ~<�$p�T >K큼Ϧ]\u0011���\u001b\u000e����\u0001�\t�\u0003\u0003�Z�J�\u0010t\u000eu\u0005J»+c�-����\u0014�L���>�e)�ѻ�-/�\\�b�e\u0015\u0018B1��\u000e\u001d^�Z���\tg���Ի��Œ\u001e�զf\"�n�\u0000�F���\\\u0010kZ Hm\u0011~�:\u0010\tH��/\u000b\u000b׵�Y=��\u0013�K����<��./�����|g��NxZ\u0004ŗ�%5���S79�Sf�l\\��A6�#���L±�\n���\u0011���r�h��Q�fM��i����踠��ny�\u00028G�v�v�}\u0018f`���?�=+!4��ϥ��߬y�\u0016\"nk\"�_k��f�Z$���\u0019:���;��\u0005�v�\u0017%\r�T�o�\u000e�c���+��\u0003���\b�h���tA�q\u0004쫟\u0000a����L\b�2�\u001aT�\u0003N~�Č�T\u000bJH\u000b\u001a;�xE�^�hV�o�K��>\u000f�B\u0011X����K�HG��#�;�V#<�\bt%,B����K��%���\u0007���\t[��\\w\u0001n�6\u0010B�[T$�j���\u0000\u001e����\u0017\u0002�>�,P]N�0�1Ep�P\f3�R|k��ܱ1e�퐧��֋^�#\u0002[ٴu%)�G\u0019\u001b��!��A:�$\u0004��L�_�\u0005K���xG)�Ջ\u0018�\u0017Z��{����\u001c�m�\u0017m�o/fӕao\"(P�ܭAZ\u0010G��G���\u001c��\u0013����\u0017z�����\u0014\u0003.b�wM�=?],�A�f�zGg1Y\u0000\u0006�\u0017QӦ�@��ҿ�y\u000f_V�X\u001f���\u000e �b\u001e�vL[����t6\u001aɃ<��\u0012\u0007\u0019��yӬ\u0016�jEj������oD�0�F�q\u0005:�\u0015\f\u0010�T�|�@\u0017��Q�\n\f��1\u0012�\u0010\u001c�_h^\u000b�k����N4�USԚ������%Y+���v?z\\]����`풽�\u0010�(0����7_�X�Bv\b9�=f�BY�Jł,���-�\u0019έ�u(��n�� C�-�x�;n焊8\u0013�\u0005\u001f�%\u0005���A8�$\u0018��L�\u0005X3i\u000b\f��H��Ƒ�s\u0019\n/�T�2�g��kk\u0004\n�S�\u0002�\u0002\u0015�I�!G�p��3@1:\u001b�v�����9����q-ɩ���]�A{�\\ː*�M��d���يcᲫ���\u001f��P8��\u0006��;�_蟻n:&���'N�k\u000f���\u0015�'\u0003�@G�u�P�\u001bBI\u001bO��/�\b5[?\u001b��Д$o(\u000e�\u001d�\u0017��y��D�(qK�ٌ_؁�\u0015���F �a��F*\b� ��d��K��P�?c�\f�Q\u0016�$|�\u001c�(./\u001b|7����߻9�ok�T��\u000eH��܇��-�΀5t\u0013!�\u001b�E�\u000b�w���\u00009K\u001b��\u0003��_\"�َ�e�/��W\u001dǐof���Mƽ����b�N��Ku��O+�d\u001a{ K!�\u0003+4��\u0016��)&\n^�\u0011��D�'�+���;H�=0s�x\t�ԣ�ZQ\u0013\u0005|ڣ�&ͦ\u001cvy��\u001dܳ��D�@\u0001�׉!�\u001a�۵��g�Z��ܑ��]�AA�$@��L�#F_ϼ\r�W�^\u000f��\\�R׫����6��:!U�Bے�4�&����\r np��\u0007�s*\u0006��h~��b�+��[?\u0013M{�X�1\u0000�y�\u001a\\F�����=X\u000f:�{�ftZ�1\tx\t�,\u0003�E>��i�\u001fƄt�r�m&\u0004�k�}or�\u0019„O���R�~��\u001a\u0012,D2�@����0Y+��\u001d��9\u0003��g����dSr ���\u0004D\t\u0013�Өn}\u001e�W\r�H\n�+@�!)��>=G��w\u0016�42��e\u0013F.�ŭ������b���M*��G�\u0002��@�D��\u0019�\u0014-@��Ʃ���[�\u001cu-c\u001c��8�Hk]y�D\u0000\t�\tj�×�x�\u0013D���B+#\u001a��_����!;a\u001cST�y�؍��A@�$T���\u000e�����m5\u0014��\u000e�\u0005��ef�����(�a%��+\u000b7Z\u001168��D�X\u0019��\u0014�\u0002U��^7eld\u00044hn����J+\u0017f��<Ǣ�B��\\�[\u000f�\t�)����@�\u0011���sZD:s\n��s�sM���\u0004FVGGb���V�6�z+S,\nŋ닶�m�S��\u0013�\u0005Y\r@8�\u0010/pq��\u0010\u001aֿr�_R\u00107��iR��/Ӌ���\"\u001cH\u0014N\t,4����z\"T�\u0011�A�D\b��\u0003/\bM�V�z@�z�F\n�>h�ݻ���_�⏏�M�ܟZ��5!y\u0019�W0&)6������ \u000f�:\\y�\u0000SfҬ�3๪^�>�G�\u0018v��U/0�\b5�\u001duQ������n��a�\u0003�_��W��p�A>�$h��L°m�hO\u0011�\u0001������|��@�b�b{̖K[�o�K�[!�\u001c�)�b��#�@\u000e�&\u0005���\u000b��I\u001e����9k\f�5\u00113��`B݇\u001b\u0011�w\u0004.P��\u0000:yݵ`���p��\u0011>�)\u0004\u0001u��8��T���Q�����r�b^��=����9����Nd+u�������N�\u0011�x{�d�\u0016��j��q�ޮ�\u0012�`F\u0016\u0019r\rox�\u0018�\u001d~�bI-�ڏ�s6�\u001a��\u001a3X\u001d,(�ݫe�\"��\u001b�&��\u0001\u001d\\��r��J��l)P\u0001�*\u0005�L���6���E]�9\u0015Q�����ynB\u0015���\u0003�C���X�t�C4\b������\u0013\n�8��S��AC2�աcI0�T\u0003]���lkx],�ߔܣA=�$|��1��ǐ��BfŇ���.e�YE�=\u001c����K\u0000�{�@\u0001�t\u0003�\u001b��*\f\u0015m���W�\u001dV����)4�@Η��\u0010�%t��d�y����wh�N1U4�A�\u001f������_b��6�c��\u0004M\u000b��J\u0016��62\u0010v\t��Z��)J���\u0018\u0006�pߝ\u000f��R��\u0010��\\�\u0013q\u000bj[=��\u001e��\u001f�!�݀�r��H��\u0013k���L�:a��\u0019EY���D�v�\u0012�؄��b�O�\t?��2��h�Z\u00197�.��<��+�\n9I}���!\u0006K�\u0000��ơ�ԲZ2\u000fw\u000fX��(Dtd�%��b��\u0012'����۔K�{�=�̡hο59N���Fd7���\u0013�����߷��3�gj����A��$���(�I��S\u0000��1q�>s`X���]�a�G�\u00010\u0003�H]�'����edo����\n\u0010���B\r�O\u0013!ڗvx�\u000f�g����-�=�������5\u0017s��c\u0007\u0005�\u00003/0q\\��\u001etm��&fM\u001a'ֶ�\u0001��\u0004\u0018vn`�ߜP_��4�!��n��\u0000��?�]���ڲZ�������w��]�p\r�g��n�����O��K�F�G�\u000f�he����/s��vz�F��\u001e~d9|�\u001a�h���K��\u0005\r���Y\u0010�\u0016ִB��D��~�\u0016��p�Q심�'�����H{�Bsw��+)���n:�\b�\u0015� \r5/���\u0011�\u001d\u0018?\u0002h���^S�%V�젽>~��5�p���Gߔ.s%5�\u0014n��̆N ������Ҫ�\u0019�T�UK\u0005/���-΋�$��W�ď�}[!\r9�?$�����\u001c�\u001f�԰|�A8�$���X�℡���ۼ\tJQ�h\u0004\u001d܎8���9��3vJt���N�w<�Ж����_0n�����[��Fh|+��!�:�,S�5�K\u0000(�\u001a�^�Q��\t���\u0005�o��(bW�;��~i\u0012�!>-�O�\u0018\u0002���=>�ی��^�+�E��\u0004us;<1I�Z��\u0018^�\u0007G\u0016nm#\t��1Ƌ\u0013+gr\u001f�\u0011�V\u000b�\r�{���\u0005�[���U��,��\u0019��\u0016�P�m�1���H�Iw� (�-\\+�\u000e���~\u000bŧ\u001c�|��]sIy�N�Ҫ�,Jߌ��dc�r\u00047~�-\u001eb\u0000�\u0000\u0010��\u000b�թ�(�q���ow�Ů.\u001a�1jb$p�]�D\u000fK��\u000f�\u0002F�j�5*�uEX\u0003Y��A1�$���X�[��E��\u001e?�SM텺���%�:^<\u0019\u001e}��ׄ���T`�X�l\nq-V_��|�A�c�|�MQ0�\u0001�\u0007�\u0012�sN};�T�L��U\u0019�\u0012\"�\u0005��]\u001a���\u0004��6`� MRPy�c:E���\u001a;dn��5��f�:����\u0000yD\\��ѭF�آ�\u0010aN���\u0010G���\u000f�{9�#\u001c�>Z��\\�\u000e�M\u0006\rU\f|P6��`\u001d�{\u0014�\u0014����H�6�\u0014��O�̍$>�,��x��Ó��VQغ\t�����U\u001c�1-7����� Lw\u000e6�.\u0016yu)���!8�\u000b\t!UN��d��>�S�����~�v�c/����<��ܡ\u001e-9�*D�H\u0018�o���$�s��A*�$̀�X��y\u001e�,F�q�Ƿ��V��\u001f\u0002�\u0015�p��0\u001e\"Ə2���*�'!��\fN@Pu\u001d0-��Y��7���S�>^�nD\u0006)\u001f�����n\u001b0ry��:%1\u0005��d\u0017�_c�\u000bѱ\u0013,�c����\u0007��\u0000�4��j}.�K���<���#�D�M��8���Q��!�M�â\u001d7\u0018�(�s�Tw�\u001b\u0002�\r\u0002���l��m�\u0014���@\u0002�t.�\u0000����\u000b�GC���?�4�\u0018�v$�Y\u0016�$�(� �@���\u0013\u0018�\u0004�$\u0012I\u001a�\u000f�\rE$!�B��G\u0015��\u001fl~'�l�\u0014���<���-W��Fr(���c\u0015�9\u0014�L�\b.�\u0014�+\u0001-���l\u0011��l$�A\"�$���X���+\u0014{\u0000�)�+�jF�#2zM\u001c�ۯ@����*/}*��r\u0013W�[lV�\nOU?ǟ�\u001e\u0002�W��f�\r\u001f�rT���\u000bO��\u000f�@\\�Z��;�\u001f\u0003�/ub�U�f��\u0017�ά`\u0005X�v��S\u0011�\u0017c�o���0;����ȼ\u000f�C�v�w\u0000�N\fX|ꚥ\u0015�s�\u000f�\u0015�9E*\u0005g\u000f\u000e�`\u000b����3v\u0010�I;'XK�Z�7<\u0017�Ut\u000b\u0019���\ts$�:\u0011w\u0001)��v�vL������\u0007�O]r^�\u0014��Y\u0006���\u0005�Np��Qd'W��9\u001e'*5���R�4��p�6c�K\u00041{g$,/L$�Z��\u000fZ;�\u0016Q���6���>�͒�A\u001c�$��L�>��N�g\\�����\u0013�X\u0019���À\u0006$�[�iM�e�\\��x��\u001e��l� �����46�ӵ�\u00146�F\u0015[�\u000bd�(��3}��\u0015�!oe�(\u0016�\u0003�ĺ��$�\\�DH!g�yq��_\u0016i�V�Q-���f�\"�;o�\"\u0007N\u0002�T{\u0019��^�S�\u001f����P��G�Z���Q�J���\u0006�M9��=���v\u0011\u0014��IG\u000fK1'T�\u0010/R^��#Wu�����Q9�\"���>A�x�!�q��/���X�9Cp\u0011S�&�>J�z{�\u0018l�G*��K��\n���D���hG���\u0019 \u001d�ENq㇑�_�\r��C\u0013ʽ�A\t�%\b��Mz�\u0001\u000b����.�$\u0018��8� �~^c$&�|�$����\u0005,z[: �%ly~�9q�a�X1c�\b�Ծ\u001f�'�\u0001�7�.�\f�8�Q\u0019l�2�\u001bU���s�mhV�\tP�fb�g\t��j\u0019�fbhyJb��/��\f\u0006��\u001e�N\u0010�F�5I���[x���\u001d6�,�׀gtV*X :��\n�~}&�h�N��#s\u0019\u001dJc L��a�h��}��%�����L�K�س\u0011\f�t�,ֿfk\u001d����ӗTC��V����20\u0001���\u000b\u0002�g��9��ax���#-v\u0011���L�G�i4�?��a\u000e\u00032\u0001d�A1�%\u001c���d���\u000f(ۥB���$c]i�\u0000�\u0003�s\u000f��|�U7��+�~Ν/\u0019��+�\u0004T[S�\n�\u001cȸm�MM�\t�>me\u001a){\u0017\u0019��������<�\t�@H��<2i�\u000b�V���WÜ�Ou��E-��R�G��\u0002dQ�<�\u0007�\u0019/aJc}\u001b�\u0015qj�a���B��^/�'�X\u0011�\f\\��ޞ�\u000e��\u001e�Cs3�\u0010��\u0019o��Iy!{��~v�j�/xb�A�դY����x��_�B\"�@*��F\u0010x��\u0000��K���ƚJ&\u001bk{�JP\u0004�\u0012pڌe������̸j ���I�VX�i��\b\u000b�s\u0001΍���5�K�Ө��\u001d�cP�\u00159B�S؋��y\rm��-�\u0011�AF�%0���c�(\u0017�}b�8\rI=���H��\u0019�\u001d\"qr)\t��\u0006�@*i�E�V�����\u0016\u0003[+@��\u0016��٫s�Ŀ�$n������PN���&@r�g���hgμ'e�1\u0006\n\u001b9�&��|��4%�DL��'�Q\u0014U��,8�\u001b\b�-\u0003�T|����C\u00142S\u0019F\t�\u0013�U.��%�KQ�B��\u000fZ'd64��\u0000K��\u001d�\u001b��g�.\u0013��6��d9(�\u0016!4�\rS@��r\n*�\u000bL�\u001a\u001c:j�D�hF\b\u0007�_/W˧n\u0000N�SyY��G�RB�\t��̈́��\u0017����) Cx\u00000]\u001b�v\u0016R�G�)3@��͉�jS\"�&�=\u0017\u0017>\u000b\"�)d�lW�,p���\u0000�^�\u0002�\u0002�\u0016�\u001d�.\u0000����5�;p\u0017�\u0001�\u0011�A?�%D���bn�\u0017ZCV��=\u000e�\rY��)�'\u001fq$�\u0006�&�\u0005�u\u000e=�S���Z��Q�$�܈�]nO\u0014�\u0012��Yӵ�ɀ�\u001cX�d�\f؉\u0000�w\u0012�����,}��\u0011�AL�%X���g�2[���cW��q�\u001b�\u001e��!\r\u0017A'\u0019y�:�)�8���=�\u0015�H�7\u001f�\u0005+5�\fO����B]\u0015�ΓG�MС�\u0016\u001d\u0014�\u0002Xt�9��c�0̷\t\u001b{�\n�<���Q\u0011\u0011\u0002�\u001f��\b��U��Rx��G\r=b�+K�L�����#\u0007xil�Гݱ]���\u000bݗ'\u0001�Ց�\u0000JQ{튂)g��\u001b�ĕ�[\u0013����Hɘb��`�]�\u0013��fD�΀�N���+*�\r\u0003���}m\u0003�\u0018���$i��'l�.;�1 e:x}\"\u0010�+�vᴕ~��ÿL�����\u0011�`ui�\"pќF+U��e\b���sU�\u0010��\u001eO^�@\rE�\u0016p\u001dk�\u001cϧ��GS�\u0017+\\0�b\"qO)�-\t\u0004��왣��X�a\u0002��\u0011�A;�%l���h�4\u001d�Ú����\u0017��\u0013�\u001d�����`$T�/Q�B�V8ˏK�uv�^h�\u0003j��Z�\u0014��*W\u0002�m<�jU}9�����9b��NDk;\"K���2�\u001e\f\u0014��r�\u001bs?����Y�rG�� �\u0016=�_\u00028�,]˕A�̓m�!�^�Ry�rc\u001b^]rw2K^��\u000e(mA?�����q,��C����\u0016��\u0012��\u0002B\u0014�|�\u00131�>�\u001b���\u0004�b�ʊ�i\u0019\u001c [�Yi�D\\�?�\u0011��m��\u0005�V�\u000f��1hUh$,�\u0017�u#�Z��Ixnw��\u0019�_��8;Qc�����\u0003���щtǽJ�7�}/�?��\u000e\n��!�s� �\u0015�{�v��=����t)�*w�\u001e�[�k����'�(WSHmQ�O\u0005\t1��B��\tJ��IvKJI��\t:��K`����,@��?ѕp��jz=����m\u0001oy��!󜣰r\u0018��o�02@C�7��le��p{�7��Q�b�_�J�E�����:\u00121\u0002\u0018lq\u0012����\u0002\u0016�/YI2\r0�[�\u0006�Lf�9�#�>б��AL�%����a��\u0011]S\t�\u0003d�Ӆ;mں��T��I�\\8�d\u0007��;7�g����\u0004��3z^��\u000b):����\u0003��m.X�0�B�$�\u000e\\X�|�!�4�k/\u001c\u0004���\u0010b�%�Lv��m\t�\u0012Ҍj�v�%��]b�\u0019��\u001du\u001c��*Ϡ\u001c'tu\r�/��O�9�F��\u001f�Е1�\bd,۔$e\u00134��m\u0014\f�K�qW7*T}�\u0018$��I\u0003@F$�P}!\f�7�+l�i�~Z\u000f!E1\u0007��S�@a)��G\u001aӛ�ڤ������_�%�N\u0018�gTOp�b�D|�9p�#�q\u0003���\t�$��Ayv�G��R䀴PA�1�{\u0005\u0017�\u0006�ڎ�j,�\t��\u0006�]�}��yNo�\r�ֶ���1��1�]�\u0019�ܩ$_�;4ׂ��w����AF�%����bx\u000f�]�� \u00057X�h3���kD�~\u00065E�S�t\u0005h�ֳB�\u0013�c��E/��\u000f\b��r\"c\u001f����j}�\u0005�̈́\u001fp�����`v\u000f0�v�\u0004M}#=Tl˳Y���W�\r\u0006�x�\u0017b�\u0004A�T\u000e��~c�]؄x\"�\u0000p�N\u001e\u0012M7f� ̬l��2\u001b+�/I���iũ�C�k�5\u0017�\u0016\u0004\u0011��\r5ɉ�]҈����\t���\u0001��D74�`!W\u0015~%�c��a�a��=\u000f:�\u0015\u0010k\u001d=\u0011�\u001f\f�k%):�\u001ai\b\n�4V�ek\r1~�-\rZk�K\\\u001d���@����|���Uҳ��)��~KOW\u0000W�Ko�5��\f�E�q�^�Г���qV��{e�\n�\u000fa��*�m��m���\u0011\u0005�p-�\u0010�AO�%Ѐ��be\u001aձX{�\u00163\b��a�\u0017\u0002ٸ0!1\u000b[g��%��\u0001� �\u0012��bK\u0016��A�\u0007�n�ȇ��oۨ���~Z���ȍ�[\t6/�۽Y\u0019�6�3\u001a��m�92�5���[:!�Q\u0014��?�\u0013���\u001f\u0006\n�͸ۮ�J\u0004\u0005�V����\"83q\u0014�\u0010.C�<\u000bmRb\u0013����\u0015��R��5N4��`錈����#{��Z�\\k�O\rm�\"\u0013SnBKQ�=\u0012��\u0013�g'\b\u001d9�\u001d�d\u0000)6T}�\u000b�i\n����)L�ω�͵�5dWCתA(�?\u0015Ӓ�O\rՠ���\t�i����l��E�'��e��\u001dW�����4���Y\u000f�\u0011S��#�\u0017�p]���c��a��3�\u0012\u000e{�\u000f3�\rf�IW���U��p%ɂ8� �6�\u0010�A@�%��6����x�آȜZ�\u0010j�O\u0012&?ljP�\u001e\u00134�\u0002&zFhOWS�墨j92_j�T�\ftTȈgO��NR-GS\u0018�\u001a�r�;-�x�?A4П�\u0018gUBj��K��uy\u0018���\u0019��U ��=��\"e�xc�\u0018h�Ǻ��Us2p�vi�E���\u0004�&q�kEݢ}#����/��Y�\u0004�\u000f,~��uz?�r\u00010�\u0000��C;M\u0001\u0003R���6+h��N�I\u001d�g�\u001bE�\u0010��\u001c��P�nj\u0002\u0002�^�֖�͈?ء�=Aa�(�v�Ѿ\u0012J�l��8�{�\u0012ްjK1k���K2��\u001c\u0015�V�U\u001e�1eJ$9�2��\u0016}��\u001dH�ݹz�@\u000b50O��N�N\f�\"�J�N� o�N2�ɋQ̆.n^\u0007�A+�%���L�r�.\u0007-V�Coؠ��~?\u0002Ϡ�zn��x���뚒�`1-ϧ��uf�r��0$�+j��'�\u0015N���j7\u001d\u000fF���t5B/���4\u0019\u0019Tލ��\u0004���* 㾝[����z��{�N�`ƚ���Kk�U\"�f�T�﹞Y-b\u0019\u0018\u001d�O�\"��\f�^�^h5�V�n�t#/;���C��\u0018\u00066Ix\u0018�:L���\u0011H�Y+�r\"\u0003´q��58PSd7�1��Yg�\u001d�I�D�\u00192\u000f��UC|��Գ\u0007�Tb\u0017t�„M�>�\f\u0016��\u000e5:��|v������i��**�{GM�Y���Ū�K�C�\u0010������.���d��0ÄUNF�-\u0013���AH�&\f��L�#f\u0018\u0010F��T�\u00155�\u0001H\u001ba\u0012��\u0017H�Q\u0014���\u0007�\u001f��F�\u0005��zr��A;jz�f��\u0000\u0001�w�e|\f������\u0004G6�ם\r�(�3����*��㞖��\u001av�\u0004�\u0011�BH\u0007��u�������\"i9>V|�K�q��\u0001P�b\u001fX>�ӎ�\u0016A��ٮ!ȡg׵Q�RO��6�9��k�������\\ �ٗ Z\u001eY�\u0018\u0016�Rn�\u0005�m���\f��\"3'!9��׫�/�\u0010������x�����\u001d�Jz�(�K�w\u001d\u000b�\u001cȉ�|^�ޏTz8�R\u0013\u00111w\u0005lm\u0005��0�q�(�.�\u0010��OW��ޕ\u0003��\u001crz���ү߈�J^\u001a\u0004�E^R\u00044�;\t���mAcv�W�e@�\u000bǼ��Wf*����5�A>�& ��6V\u0005�\f�2\u000eގ��֐o/���eU�\u001df:�ͪ�\u001c��h��\\n[c��]��y��K�ɰ�V��>o�r�7G�~��\u0000�u�?�V�.�Z�|\"���\u001dU�5�mՅ�z[{l\"%�\u001aT0�{����\u0011~+�H,\u0018Ɩ4�xʺ\u0012�\u001f�Šs�f\f\u000b��s�����\u0002/�{��Y\\�%u)�+6��V\u0013V�\u001e}3�\u0006C}�k.\u0005�.Hp���m�8jJ�v�ͻg�zQjQ\u001dY����rv�H�)r��q�Pm�\u0007�*�T��\u0002\u0013'Vv�\u000b��\u0019�*ūu���旕\u001c��\u0007)ȩS��P�j\\�`���\u0014�J�W4\u0004K\rL����dq=�i��|&~��#��@4�\u0013�,g�A�j+T�O�\u000f�AB�&4��M6�<\\�Rf�:p��\u0019��\\�Zj���I ��1.W�\u0002��e�ط\u0005�9\u000b�\u001b��W\u0016\u0010\u0017�������\t\u0002}�)Da�}fP�H�u%���%���Ū񦬈�V�S�Ǣe�ַ�Q��l]B3! ��\u0016�\u0019�\u000e�\u0003�D\u001c�6�gSD�\u001a�\u001f˷$�n�2̖\u0006�Ж\u0006�F�S�V�S�h?��#�@/�i�\u0014��9�?d9��\u0003\u0006�#��K��A�Y�L��ܣ2���1\rn�0��;)�\u0006\u001c���xi:�M�M\u0001teD��\u0019˂N7��\u0003�^�\\�Є�S���\u0013i�1�1�y�4D5�\u0006�\u0010�\th!�:)�\rF39�.��n6�*a8��\u0010\u0014�G\u001aR�\u0013%k��s�(����P��\u0000�,��`�A7�&H��MY\u000b�c�S\u0018PA����?��Sz��2�3���zn���\u0012�OD�\n\t\u000bwЎ�4+oTE��]\u001c]L�K\u000b��71�'��(0�g\u0001������\u0019�o\r��xY�:\u0002��N٭�s\u0001\u0016ڃp\b\u0003\u0018�\"�m\u0002ғ��%㶎��,�=2�#^&��*Pj\u001eb{�S��ޞ>w��IhB׎\u0018p�d����\n�\u0011Tm}\u001fz�\u000e9CS\u001aR�$\u0005�\u001a��=\u0019kY�\u001clj����e��MI�/�\u0006�g�P\u0007Wċ�ˡ���\u001d\u00128W�\f�e@u��\f�����\u000e�V\u0017���ڮ*�{?v8z|�m\t?��%<�\u0018K1=G�!��)�֘�8\u0011�\u001f�kk��x\u0003-B$'�����m�`8�X�u4�,�AK�&\\��M{�\u001cI\u001f��\u0007/���\"\u00066(r\u0012��\u001c�����{ԭ�;Ӗ��\u0004�GwH��bQ�Or)����$��5��.��%\u0003�_�٘�\u0013��\u0012�ʼw������-��\u001e\u0006h�pPP)\t>�t��ͤ�AO�k�)\r�f�\u0001l�2,\\\u0012B��[���ڰ8��I\u00172y�\u0012\u0011��5�Ԗ\u0006\r�_U�^A\u0018��CȷU\"d\u000040z\u0000e��{�Fˎ��XIP\u0000��\u001cy�#\u0006ߟN�\u0004��U\u0018�W�\u0007q�%)R\u00192F�����\u0012Z�l+����\u0015J��q�^��F�Mm5�\rI\r?��-�\u001e�Yf��m�_6�n{�;�jt��@�T�\u0011!1�\u001d���\u0018e>\u0004�c�;nq�{��y�U@�[%\u001e?�5\u0014�\u000ePE�3\u0000�\u0010�AH�&p��L�ΰ\u00135�å\u000f>�Pr�\u0016 3Q� ���T�e���Q�rL�6��\u001c��߈��/:x�N[�T����.�Ѡf]�|\u0013�l�i5B)_NC�tEY�\fb�CDR�P���@����L������~�m2�i��s��Ü��I\u0017�\u0013\te˪�r�\tl�l��hG�}�h�\u0005+L\u001d6j\tm�� cL���\u0011�h�7tAlZ=!��4�!���Q�f�h3�e\u001c\u0004�\u000egq�\u001a\u001f�N���π_��>R���$��Ŧ\u0005�!�ū�y��k��\f�\r����T/�>+N�(4��P^W�����\f\u0018��&��#n�ޣ֎n\u001cBh\u0019z�4��=ޕ78w��\u000bU���Yh\u0000�0#^\"k2W#��\u0000��t�\u000e�@\u0012٢�AI�&���MR\u0018s���\u00123*\u0007�\u0004(Gk\u0003��ƞ8\u000e��wzH:\u001d���\u0017I%�\u0000\u000e�.-������{�r���cJ�?lj1$r�tç�Z�,E��w\u001a�W\u0003M\u000b�FW\u0017�\u0015�\u001a��_\u0004�_���\u001b8�ޥ$\u0015���S[s̬?/z��^�-�\\��u\u0012�8\u0012w�\b�a1\u0012Ζ\u0000�8z��D�y\n�s�ep�4���a\u001f�\u0016�E\u0011���w\t8�����C&�a��~\u0005�N��T��[�\u001e\u0004���f����2?�)�0<��B&��(�Iŏc8����ƚ\u001d\t\u001d\"�\fҼ4\u000bɉ�\\>A��\\\u0005:\fY*\u001f�\u000e\b��،��\u001e��G��v!T7K��\"(\u0019xu5��\u0004��\u0018��\u000b�\u001f:��Q8\b*B\u0005\u0014�\u0004\u000e�lz9�X:e\u000e�R�AU�&����cȇ��tMt��-Z\u0005�2��)]J�\u0000\u000f8o\u001b�\u001ad�\u001et's��n\u0006�8�$\u0015}�\u001dH�҉�F\u0013�RD܏v.i\u001a��y��\rN��Al�\u0018F`�m��s}�n�!�����X��?_��+(�V��\u000b+8��K>׹�-kg�#pULd�m���+�\u0011�CAQ��*D����\u0001�0�\u0003C��(��{���z&\u0013\u0018�,z�V���>s��\u0000Jʉεh���J\u0011���82\u0005����X�\u0006V]\u0004\t\u0001�vgc{�7)\u000fp$\u0011��\u000fG�P�œ�}\u001ee�_�n&;\u000b����\u0011/6\u001cS��3�}\\\\�(Fy\u0012�+��\u000eg\\��9ԃ?��j�\"�rQ\u0019��q{&�F,�p�oڼ��\"g��b���(�\b%�, 2�ɿ�I:�w�c��1]��\u0013�Bf�&���}a�R Mu��\u0011��^�F\u0002�\u0011Hf<��HL�_�C��\u0019J�![���.<׍\t��!�^Q0J�+���\u0001�՛.y�\u001a��2u�t�Y�8�.2]\u001at�\u001e�e�4�r��YB����T;t��(�)��C۴r��}�c�\b\u000bOn\u000fC\u001apj�=���L�8�*\u0018R�}�vj�J�c9Z��s�Y5(&e�D��ڮ��oK�#��\u0014��\u0014\f8�\u0018����/Lj���9���d�����\u0010ؘ�\u0003\u0014���h\u0014��\u0017%�Ì3ǃ���%�V\u0013k�g�>���MM�qQ\u0006\b�9���-l4\u0000\u0000\u0000\u0000\u0000\u0000DN��<�\"\u0002�=��-،4���C�*�be�\u0003�^�J����#%\u0013�T{�&U�KzQ��E'g�����udhʣIs+F�\u0012��G�H�Ad{��8���f���\n�?��RdH��\u0002��d)\u0015�\u001d�������Fl��\u0015\u0002R�`a�}\u000fp�Oa�@Ro�\u0002nH\u0006�7�'�'�D�n,�Tȟ �Za�B�h�\t��h�z�jDhf�Am\u000e�Q�hx7�V�@�%YF]�mY9mu�1T6\u000eO���c<ږ�\u0006\u0016\u00124�p�+������2�{��D��r���b�\u0012蓥\u0019?\u0004_>�3��/�`ȃ�����\u0013K�n\u001d��cm���\u001c_Q\u001b�9;r��/������3�D�pap���\b\fX�\u000e��\u0015w� e�:�@�{܊8�ř>SӔ�A?�&���M&ۉP֌��%R�aݕ���z�qL\u000b���[�\u000f�A���hD��b\u0010\u001f�=�\u0010\u001b\u00059\u001cۢ��a\u000f*9E̍��QX\u0012��\u001d������{ʄ��4�*4�$���k[\"$R��wu��Q:m�@4/���fJ2�x�K�c8��7ZcT�{�G6\u001e�u�[��\u00020�I�\u0004<\f�\b\b:F�\u0001�K��]5�X�?<9��S��4/i[�٥�\"f �Z�s��6K�ʬ�d�\u001b.9\u0004�7}�']B\u00154O#�؝�x<@����sR��Nt�SI!�e��<$Ƚ\u000fi}_�A�\f+�)��ɞ�P\u001f\u000f�];_$P�4uxʑt2iy��\"ă��U��r/wI��T�\tw�f/�}S��A4�&Ԁ�L��\u0014�b�c��\t�k!go�YH���L\u0015��\u0004�\u0018�\u0011\u0012\u0015���w�+�\u001b�rY��\u000f��8%F�oI]�m����\u001c�K���FV��>��)l�ųӒ��I\u001d����O�����5�b��WG$k<\u001b+���\u0012M_K���'��x��Uv<�\u0010q\u0016��6ॵ�\\��o��){\u0011>\f\u000ẹn�^�\u0006瑗v�`��\u001f\\yeV�\u001f����Z�[]��z2��j�R�\u0006�\u0018f(�k�Ù�5�]a�\u0017�\"�)�G�5m\u001b��h1�3�5\u0019w1B,��#%\u0001��)*bd*�>���ӫMty޷�E\\\u0018\u0014l\u0007\u001b�GtA�\u0004�Y�\u0007�\u0011���8݌\u0019Ӻ&�������\u001aق�1/�\u0004��A<�&��L�\u001c\u0010�\u0012�\u0001ML��\u0000y�S|\u0015��\u001f���3۩B�C*\u00036�����\u0013�FA�Jڏ熯a\t�5T0ӚYt�x��}��w��^J*�bz�,bR�L�!��\u0007���ؘ�P+\u0002�ח�\u0013CQ�\u0015v\fG:#΄^x^�l���\fiL�z)�=\r�L�\u0001V�\"F1J��e\bba�h �;ó+�d\u0014.lQ����S\rҊ�\u0019\u0013��F4|P�@�#5��g1��o�F�\u000f|E�G���8W]������\u0018\u000e�\u001dO�C�U��X��.�������P\u0013E�Q��j�S�\u0005�\u0007�X2��'u�|\"\u0001�_1�\b�a���\u001d}�\b�K;L9��G�ق�\u0006Ӳ7ek\u0018pGS$\u0000*-m\"aJXR��k��\b\"��A<�&���L�,c(����s�Ǜj�Y��x�ͤ��\r��\u001e���x\u001f�!�R\t�\u001f�ȔW�u�s��\u000fFr�\u001ak\u0011�\rC�[d;��;֤�\u0019�ރ\u0014�\u0013˪�\n\f�\u0007M|΄�\u0014Cu?����ˌ��M.�a���Dn\u001b3\u0013\u0014�y\r�_�k���v��q�����,X���IZR@�I\u0002���\u0015��>6w���\u0005��Y�.j\u0010��\u0004\u0001IВ��9\"⪉7�i�oʫ%3|���q�;�\b�oE�-�͐<�����\u0016�˝�h��e'�3�JA\b��\u0018���Уn�(�����-�\t��_�\u0011!6�y\u0015��k]..A\u000eزE����\u001f0��\u0014qQs�Tl\u0018a�qCq�����źe\u001fC�u\"�\u0000�\u0002�\u0011�A?�\u0000\u0000���c��n�\u0015�\u0007��0ԃrգ�=�5d��\u0010I�(\u001e-U\u0012='�\u0017�4xI\u0016W\rǹ\"\u001f�*)ц\u0007≝��뤓~xO�/�U�~���S�\"���\fuu\"\u0012��U0�+�a���V�#���‰�El\nd5� 铏P\u0002\"h����B����6\u0012�\u0016��.i(��\u001b�\u001f\u0018�M�\u001d\t\u0018\u0004�bto�g���a��\u0016r�շ�U��C�CŸ�+V\u000b�ن�\u0010�\u0016��\u001b�\u0007q~\u0007*��a�\u0006բ�f5�\u000f]���t�f�W\u0001A%ӗ��qf����\u001aFC�\u0013iYP)\u00195�v)��re\u0015�<`�tK\u000b�E\"�r�o�����\u001aNX�t\f����A7�\u0000\u0014���b*S��\u0013CS\u000e[��c�\u0002'c�D�w\u0015�^W�\u0003\u0016�u���b0_\u000b�\u0019�C-�5N.��j�-�~�\u0011�GrĠ3\n��C^��W?(�I���\u0018<���i�\r9;��\u0001A¤�tX��\u001b��J;���D\u0003���re\b�$[�\"�\u0000W��a\u0006g�/�h4�����4�T^\b�����б\u001d��+����\"z�E�E\u001acI#Y�\u001e<|\u0014~Km�c�c�+�#��fa\n�q!�\u0011K\u001f��\u0016�\u0007�I\"O#��\u001d��M\u0011\u0016�W���8wM�C\u001a�V��\",=�P\u001fo�\u0010+|\r��\u0014A��y`jG\n\u0010�UiA7�\u001f���L\u001b�\u0002�� Md��[Y)�q9ơ\u001e���\t+��\u0002�6o;�\u0004��Փ�AB�\u0000(��L�\\YX�\u001a4�L\u0003�}\f__�\u0016H��mP\u001b/酣��Q�+�o��Ѣ@��Ą#�u6N�ކsRH�oTW_~5�� �KР쿖\u001c�V��:��X��\\~�kN�\u0003�9\u0001�\\�\u001d�|q�\u0005��k�Ɏ�Z�g�l��=oA����n�`57���O\u000f����\u0012Ӯ����\u0015�\u0006*�FF���h�@���gz�2�\u001a8��mΘ:\u0000���\u000eh$S�>\u0018;��ZlP�+������|So�GW���;VY��\u001b�q��\u000f~�����`�\u0016}�H�Z{�=��y�p\\h�lʀa����Hd���\\�H�+1���+\\8\u000f\u0006��*_�K��\u0011\f���� �\u000e \u0000�\f_������Uaԝ�ֳ�s9����\n�AK�\u0000<���b\fi�IH��4�Ʈ���mnB��:��a�|�=)�^J��\u0018]��Nτ����۠�hp\fk\u000ef�O���!h\u0005��W̠��\u0010��F/䯮c1n� �I�����Pu�4�>-�h� �Ba!ń�d�M�)\u000f&��7m\u001b��f\u001a\n��A�pq��6\u0013\u0014�ę�~��6t���@�/���!jU>��Cܐ�o�xc⟼�v�V���t��*�OT\u0019\u0018D.)!�B�W��\u001e!e�/�&\u0013R�Ht���U��\u0010\u0015%�\u0006\u0013K7�\u0001l��p�-6�j�m��\t�;o�\u0000\u0003,��Jj�,\u001a\u0012/5Y^�@A�\u0013\u0014]C��\u0015���0�����!�R�\u0001�Z-\u001c8�\u001b1o�b���\u001e3�\u001b�Gf[@v��\u0019\"/\"c�=\u000bq��AN�\u0000P���c��\\\u0003\u0014\fS%�\u0003J;~I� h��6ðn\u0018Q�A\u0017���.�侬\u0018\t��O\u0000�=�+�7��`^�d�\u0019/E�\u0001\rb�\u001cn�E\u0019X�*Vu\u001f2����%\rl��a|4�v|g�5\u0001��;�-դ���ԠoԒ�\u0011�AX�\u0000x���\u001e�g�}kY�{�^I����\t�3\u0012����r\u0006S6�%1�\u000f�*IT�G|)Zv*�LPK\nTC����\\�W�\u0003Xn]�4aT�rp�\\0�A\b�;��1\u0014�fL\tOE�\"۽Y��M����%?�H-�\nҊ�J\r~DW�`\u0011��H\u000b�\u000e�Y��Q(��\u000e�t\"\t���s �^�Ǐuu�Ũ[��.0\u0000d -��\u00059.����w�f��p3�BՔ�嚳; \r.}��*W�m4�&���ⱻ�AA\u0015,5k\\�;-�X\"�6ǥ\u0019�L'\u000b��T�\u0010�yw\u0005�\"/�Ik��\u001f�\u000f�� AY�4\fᇠ\b�t�7�9UO�W?\"��D3�s�\u0012�#po�\u0004\u0003�h>���vg\u0001IU�h�8N���c�=\u001d\n�\u001f�j�\u0004��\u0001��^�X\rqKAj4�\u0011�Ab�\u0000����`ʲ{�w��3�B�����B(�-H6\u0018 �hA=�mb�_N'�F\u0001��?�����\u0002�%\u0015n���<���{&��D1/�t������~'9����\"��'�$>mk7�b�w��_k\u0017��|�v;��\u001d�Hp��K���\\6Y6�AK�\u0000���Mv<��!�:).�\u0016�0�\u0002��_�wJ\b��*�\u0010/��76���\u000f&�bZ\f�,e��\u0006|=�\u0016�'�aj���>#�62q)�\u001eO�E���͹�{���0(�\n�\nJ��\u000bLUJ���Ў=��,��R<�Y,��\u00183����\"��ةԨ^�)\u0000gp�\u0011�|�\rͺ\u0015\u001bOWL{��E��\u0010��a�\u001bv�_{�68�|T̤�6M��N�XP�i\u000e\u0007�v3\u0004qL���\u0018���0����C����\"�\u000b�\f�ٜ�+I�\f\u0006-z~̍�v��;�\u001d�\"zsV����du���\u0019ێj\u0014I�N%@\u0014\u001f�1�(�t%\\V���Z!&��X��\t��u(�\u0002\u0013��2����\u0017%j;�\u0004����ɰک\rh���fG�o}���l�AA�\u0000Ȁ�Lɫer��/�-\b�'�\u0017���K#�\u0002<�,rU=�O�5�%���[v�CO\u0000\u0004�x�zP�)<\u0001Vx��{\u0006\u0007�*�\u0006�\u0011��ſ���n2��\u0006>FC3/\u001c�C\b\u0003I痢�-��\u0017*[r�J�0��;�V4�\u0019_\u0001�yT�o\u0014�\u0005���\u0011���@�8鑐\b9�˲\u0011�\u0005��>��N��u\u0017����M��[��-�� ;\u001b\bH�\r\u0016p�\u0010��.��\rۑ��\u000b���E國��u�W�J��0��#����ޟ��*�a����:�E4�_N���c��!m�\u000foi��B�-�\"f0=�\u0003��^��Ly/����7\b��-Ktp\u0002��}&�v�!K��\u0010K��\u0000���k���\u000b'�܉�A@�\u0000܀��a�B̆2�\u0013�C��\r��\u000b��Y-�\u0019�I@ӴƐ����-���>�\u0004ir$W�a��q\t�!���\u0015\u00152�occ��Tx��^\u001f�9�G�0\u000b\f��۲�a\u0011��\nS�+�\u001e(\u0016y�q\u000e��:,��\u0002f\\(�B>���\u001f��2�T��Z�SϣL\\A63�m�G��'�(`�,r\u0000y�Ҳ�\f�\u0016��B��v�i\u0010v@�Ź8oW�N�,�X<\u0001\u0003\"����L6}�\u0001�\u0015��\u0007N�L�(c�2�?+J���\u0006\u00061\u001ar>��Y�\u000f�\u0019�峷[���\u0012e6l�ر�N�fؠNK1-���I�\u001a��c���|��%u�\u0001���\u0019s\u0002��Y|�\u0017\u000bDD`��,,����N)K��z���\u0001\u0012�A;�\u0000����d��\u001e3y趒\u0004*b!保\u0012\u0002�Z%�u\u0013��{\u0018 �\b7'*�\u001a�\u0010��m��\f��\u0013�%\u0014�n�t�_��f1���,���|\u0019o!�~���Z�R�&�\u0000�����\u0010`\u0004[��Uߦ�\u000f&GRI�/+�E��`�t\u0006�2�\"�(�\fd��3j�l\u001d5�ц0��v�b\u0014�+���\u0017_����B�{z����f\b*��f[�\u0003�ˍr�r1;��\u0004��k\u001eE\u001cU��l�F��m�WP��eҁP!��\u0010\u0001n�Ǥ�\u001a\"\b��5�*\r.Y��Dv��r�3^\nq�%dgspR@t�?h��$���\u0011�AB�\u0001\u0004��L�&\u0002{j�\u001c%E��ߎ\n���\u000b�O}���ӵ0\u0019l �yN�\u001a��6QT��l4�\u0001+�Uj�EW;��\u000b��(D}]�s�7�\u0001�:\u0000r�zB��a����\u0013�\u0002ӓ�K��0C�_�t#�4�2k'h�J�x\u0016�]+tJ^xJt���_�\u0010ȡ�\u0004�*׋���\r�\u001b\\,~AݐS�l��㑼LBs�&\b�� U:}L���o�@��#Sw��Cf���\u001d���t\u0002���\u0018C-����T��UWP�?��Kp�@���k����3Zɷ��\u00023:\n�T>k�Z\u0012r���C_��\u001d\u001d��!���.��\u0006;f~��\u0006\u0013��B݇ȴ�F� ��@Z߿�����N��:��oDO=\u0002!�\u0019NO\u0000K�ڣAV�\u0001\u0018��Mz�F<��v���\u0004��%�a��:W\u0014\"A\u001d\t\u0011S�\u001d1D�h\"$�2Ϋ@�J��[\u000e�ЫN�5\u0019\u0005B:\u001eOfj����\u0013�x���}�\u00010\u0015a��M�S��7�!Q�\u0001�N�k\u001d�Q��_vy�#뜍K7�t���yߑD�\b\u0006c��\u001fT9F1����z+d<�K�+������>�;���\f\u001aI{V�`��×�\u0002�<Ѩs��nY��ы��\u0018}en\fH\u0012�G�Hu`�\u0019ɗ��O4�\f�<-\u0006�p\t\u001e*;�qpҡ��\u0014#�\b�J��f�o���W;ၘɰQ}�u�Kh-P��\u0013D�;('~�\u00118�\u0015v�(��q��\u000e�;\b��*��v$e\u001c\\znu�\r�������5=2\u0012By\u0002w_�%���P�F�/7�\u0014�^�(d�M<\t\r�..���|�n��%���֙�,.G��k��\u000f���O3���\\�ʄ�t��8\u0001\u001dgw\u0010���\u001c�5�\u0015�^�]�lK��|�k+�5�O�S\u001b�\u0005짊Á\u000e�8s���\u0007b9pU����oH�-(iS�^Uq��@Fo�/�q��~\n����p\u001f�\u0018\u0011��h�ү�N\bn���L��^'�2_�1�2\u0019^I�\u000b���b7��/ǃkԈ\u0000�\u0000�tB*r�\u0002\bǕxx�cN�r\u001cbT%\u001bLL�H��l�x\u0017.9�s��.b\u001a\b\u001f\u0019Ե�J\u000f,W���$%�����~�k\u0012iϔ����\u0001Z�Տ0��z�D�{�n��{\u000b����5nK�\f��AM�\u0001@��MX�\\�R\u0000�k\u0002DzU�:j\u0007�B��]��\u000f\u000e��\b\t7D˾T��T\u0016+�{��\u001fL≸�\u0004���\u001e8��G\"g4�V;i����\u0018�����\u0004DK�*�V��5��]�(�\u000b4�*��Va\u0013\u0005_-\u0002�\u0005l�G:��7�!\f\u001d�\u001a���{���\u001bVݕ�^��\f�ZP�\u0000Q��t\b�<��\u0018\fuWvh¯�ϗ�(y�G��+թ_�y�N\u0000�ǻT��z� \u0019B��*�I+�\u0012�e�&�kH#\u00037C\u000bظyOxk��*���\"�%�r�_L3*�4&)�DU\f\u000e��RNՆT�\u0015Щ�J=\u0006M��>\u000bsj9A��\u0010\u0014<���E�2�8��H\u0019�Q6R\u0004H��6�v��^ \\�I���|\u000b�_tnl�Tn�P�s�g�SN\u0002��[�AG�\u0001T���\r%�ޮ/>\u0011!���x����\u001e\bre\u0012������0i��L&K�\"�ؔRx�7���\t�\u0016��1C��Tr\u0014חhx���he�\u0006��H���\u0012s�������B�p�����F��� �g��\u001c<�a��\b(��7��\u001aN��/�\u001e\r�\u001f鶤>�KXܾm^���y¸Z�\u000b�A5�#�\u0014\b\u000f�bנ0<�;zO�b��|��R-�ܬ\t{\u0005v1�,��3�A�7}�\u0005Wq\u0012��֫m�\u0014��i��\u000e\u0002�v��:�`�M��ٱ�8��D������|\u0002S\u0012\u0015y�zb�KP[��\u0015\u0004��W�Z�Zj���\b�b�\u001dn?�[m�*\u0000�uQG�5?�e��#s�x��\u000e~M�D\u001d\u0007���\u0007|�2���ӣAF�\u0001h���\u0018,\tUy�m\u0015\u00031BJ�'�Z\u00190\u0019�v�K^�t��λqt�������V���\u0006��?\\{��J2�\\4��\n\u001a�=7\u0012\u0013/EMª��j?�j�@�\u001d����$|�GO�\t�r\u0000�xٌ��\u0006턄�+\u0015�m\u001f���^�p�BW)�]�\r�\u0018X��Ê�-7[?�僅̊?ݘ�\u0019~��\u001a������#J�G�\u0017���\u0017��\n<�mW]�%�\u001chݡ\u0015�Z��Rޙ�q�Q4\u00036��u�%�\u001d���\u0011�;\u001cF\u0003[��L\u0010\u0004� �\u001f���\u001e�:�9��V�1\u0002!F��\u0010aU�\u0001�9ౖ��\u0017R91\u0000�\u000e\u0007�M�-�H˱U���<\u0003���T[�'\u0004\u0005���\u0005Qn9U�$\u0013%+p\u0002����F��1�\u000f7��A�\u0001|��MW�?u\u0002p~O���C��Ϛ;Н\u000b�7�8���\u0018\u0017��q��|i.a&�[�5��\u0017b�B�\u0006m��SL��S�ˍ\f����M�����\u0011��M��.\u0001hg}����PY�\u000f�r�0�#\u0002�\u0005%�\u0018��>Ov��O!���k�NXCK������\u001d�H�\f�̬\u0013�A@�\u0001���L�̕t~{�x��L��\u0016\u0000\u0003�w�\u0002\u001an+)�\u001e�[h\u0005���\t\\�z�(�赂��q\"9�Ÿ�'̮���r[G�4���[\u0012�3\u0005f.`�bF\u0018Xj�r3�\n�D���{�A\u0006�\u0015\u0016ƶm\u001f���mO���\u001eveT�Ɂ��T\u0014���'?p���\u0016=!����1����U�9\u0006i��@�,BaR{\u0018N&\u0011g\u0013�\u0014��Z��Cvr\u0013�-h��Kx��F�E��D\u0005�-n\u001c�o�A$�\u0001���X�q\u0017N>��D[\u001d\u0018\"uQb�x�S/�G�\u0004A�*�N\f\u001d�__��@A:9,q\u001a�@����<_ݙ�\u0005�߇_G�\u0000`���Y��\u0012�\rf�%g�q�B��n1��=J\u0015���\u0004\u0006:X�\u000e��pO�#\"߀��8›�\u000e\u000f��'͟!\u0007nĻI\u0006�Xȏ�H���C�\u0014�U��\u001a!yn4�s�/}0\u0017\u001a�u\u001c\u0001Q�OYwښp�{%\u001a>:��\u001at\u0015�.d�\u000e�dX�\u0016�W��\u0000��A��htY�\u0015�\u0001��\u000b |6�\u00145G�{��\u001eFaa^��\u0014`��I\u0015'�T/S_�\u0010��\u000bR�E}�r9���\u001e=�7�ȹ�޸�\u0012oe:Ib\u0011~��{o�A3�\u0001���X��\r\u0012����C(�'B��|��\u0002�h`?\u0006p~a!������\u0015�\u0006�<\r��\u0007�\f��/z\tO�4ū��+bMڤ\u001f\u0000ո<�Gh{6�O�R\u0007����� }��\u0001����\u001f��ts:���t��-�\b\u001b�m]�݁��>�\u0004��.�D���M��g�J}����S�c,J@Dg>3�\u0011\u0004\\q���u2��y�O�D[\u0004��\f+��e\u0018+�=��?\u001e'hmԒ\u0001)�\u0019;\u0003\u001e\u001fΑ�\u0010t(� �����\u0006|���j!ί$&�AwB!G\u001dHy!�����\u0013.\u001d\u0006|�\\0񢝪���?�ny���\u0006�!�F,���sV\u000fQ�@\u0013��:�\u0005�_{,i\u0013�G����R�m&�B����\u0014ۣA4�\u0001̀�X�͘\b\u0007��aQ`��^\u001c��j\u0004L�\u000f����f�>\u0006��l������Ű��^$\u000b\\�˪\u0019��\u0019&EA�\u000b�b\bP�]5.�{�\u0011\fP���^W��9�Q�<\u001d0�\u0001=WA\t\t����@�B�%=i��I\u000e\\�\u001eZۭ�\u001c;.��~.\u0004֬�)}�3B\u0004]9l����F�/Ų�7}���x��~�1S������A��¤���\u001e�de��T;����B��'\u00037\rGvn\u0016��I\u000e�U�{���e\t�\u001a*�\tN��8t�!>��\"�����z\u001a\u001f�\u0018�iu�?��\u0010�_}F��\u001d��t�rmt�fea�|\u0006��((AJ�\fK>\u0002�O�\u001bm��+��\u0000!�$&����A+�\u0001���M \fit��\u000f\u001d��b����\u001fПF�T#��\u001b�I�1\u00152�P\u001c\u0011\b��\u0001�����ݛ�R?D��g\u0014ѩ=��zE��\u0014�M��^�^�\u0014W�\u0007t�ߝ�\u0017�q��.�NY��l���v:\u001etW�\u0006�\u0010�5'K\u0014!���+��\u0006�\u001b�k�t�\u001b��\u0001�q�\u0019�c��=C\u0001��#�/�c\u0019�놝�A���y#���\b�a\u0018��[䝵w�qҫZ\r�|5k�T}�[���ձ7��9\u0012�*`�\u0004}�\r\u0003��G��d]ǫ�2�����N9�!�Ql7wIH��\b�\u0002d�Uy\u0010l��\u0001�f�:\u0018\u0016ٟ�����O\u0013Z\u0014ʞ���63\u000fI+}�P�\u0015E���\u0001[�A+�\u0001�����S�?ب�\u0006'�j��\u0012�$�\u001es��e\u001d��\tn�c�@�\u00193̕�%s��5i��6\u00192q&v������᚜P��Űϕ�R&*��\u001c$P\t�Bf\u0017\u001bޏI��\u001b�s63�d��c�-��W�8tU��m���2td���H���\u001b*�\u0013t��I8������\u000e���!><�\u001f�\f9�3\b�;Տ��M��\u001f��\u001e\t�\u0000������\u0000�\r�����\u0011\\�\u001aS���_T��\u0016<\u0014�*+���\u000e?AqVC�j�p��[�A*�\u0002\b��X�}��\u000e>H�4ZJ~U�U\n\n��´�Y'Li?\u0007��l\u00142g�=*o��A�2��c\u0018q�:s,�kt& Zw�Գc�#7�\t�~mϋ�,��1�\"�\u00064o�O\u0016\u0018†z�>{�s\u000f*�Ƭ@�RF��\u0019�߱\\��2���\u0003��ĽK��\u0017��,�R��G�-��bMG�\u000b\u0006�\u0001L���N�}\f%�H�tU�է!�t@Σ/\u000f��\u0015��G���i�љĔOJG���T���|x�}@����Q�9X\u0002�S��@�A1�\u0002\u001c��L��.]�O�mٗ��lں�\nS|�G\u0014*߷��\u0011��x�1��C\r��f�q�`p��dz��\\�Іpyee_�L�I\u0011��pD.i���b�Ya�\u001cT�~�0N�K\u0011\u001f�u\"6㺭$!e>:\u0018(N����Cj:��׭�+\u0006��}Q\u0006�c�($2\u000e�\"��\u0019�ƍ4�m���ыQ���m��S�\u0011���f�5Q,\u0007\u00046���L�ka\u0001\u0010�e&�\u0019���w�\u0003[ƳZn�4�IM�\u0007_�\rtbVZ��\t�Ф\u0006}�Ɛ�q/\"����\u000e����\u0018��\f��ה�i\u0015E\u000f+h&���<��G.��\n��\u001e.\n�tߦ�����!q\u0014Ӊ�\u0002�Ot\u000fv�\u0012�w\u001c$\f;d�A5�\u00020��L��@\u0012*��0-�T�e5�J��/50\u0017�?�&�E3�G`n�\u0002�\bE�\u000e�Z����U\r���ՖМ#�E�\n�z\u000e�\u0015@^��,���+Bո��|@`�\u001d�ؕg��\u000b�gǭ����8]C\u0010VvgF�����3\u0014��\u001aY�M\u0019HT�3Q\\xl\u0011/��spB�Sa�=�\u0006��\u0013}\u0003b17�7[�<�|�h��\n-�A�-\u000f-M�ήG�K\u0007\u0002\u000b�F���臘V\fМ�(\\�s^��\b���֘Fm\u0007ͳ���h��Cr�\u0019N7b�\u0014i\u0001E\u001d�v�\u000b>���,�q\u0010�\u0003\u0007V0���Vi�\f�]D\tZ*�h�\u0018��#:\f|�\t\u0002z�d\u001b�\u001et\u0018��1?-�\u0019Z0���z�\u001f�lPw�A?�\u0002D��L�u��U{:Z=��Կ�\"��h2<�\u0004ӗ9b�\bUL\u0000�It{5�iC�|�0,jGz�����\u0018�K�X\u0011� 1��uW��L\u001bܜ�ݥa�����\\�\u0012�h�k!G�b�+� ��_�ե���V�oE�\u00026L��h�&G$���\u0016\u0012�mwTw��o�O��ֲ��NWyϱ\u0017�}V\u0012)N�։�;�\\�2H\nSDA-\u0001]R�%y<�(���\u001e�}��P%\u001c�n�CCۛ\u0002\u0014D�>��q!��<��58\u0006\u0006t/��Ɉ��\u0004�갂��Y��!v\"��s�>R�<[�Z�\u0012�\u0014F�\tHf��\u0016s\u0001�{�<�\u0017��k\u0014{�ʎ\u001c�JC\"z�4�w\u001e��#T�'T\u000f��ķ\u0007�0:^�,\u0011\u0014��\t�AA�\u0002X���\u000e��\tWV��1�A\u0017T]��\u000f���t\u0013l]f��/�=��KQ�\u0000Τ�\u0005\u001d\"m.�o��s�ia��\u0007\u0010\u001c>\u0017��j&�b���\u000e�< \t�|\u000b$�:h|��g���>`dr�\u0012��T$���P��v\u0014\u0015k`/�5���.��6�����\u0016���ֽ��24�ӓ�C���\"��!r�\u0016�i&��>B�t�b\u0016���g��\u001a��$&6\u0017���$:\u0015��&Fm��F'a(�$�\u0004^\\R`x�\u001cfF\u0013�?�EZ2S\u001e��\\�ۙ��\u0001_��6���������\u0007�\b�\"X�\u0007�\u0007��z�A8�\u0002l��MNc(u�\u0000q��\u001c����:X+��\u001dq��?d��鎒E��(�\u001d[IJ9�徑�\t:��Nj8~��\u001fH\u0014\u0017[|#����4\u0013�e���\u000be\u0001\u0002@\n�\u0014\\�\u001bϥ���Ѥ\u0019���D��_6�r���\u0015X��4�\\\u0002�@�BI�S¶)��s���?\u0004��W��G\u000fb��g핳nu�S+;VM�\u001f\u0007�\u001c�{�\u000f[�h��\u0017>t���\tR\r|m\u001e�j=�\u001e��T�Ȍ\b|�\u0007;_rK78\u0001D�\u001d���0Տ�G8�\u0005�5�ag-1CEk�Yu��J���#\u0006j(b�\u0012��Q���E+9�$��Ϊ����?\u0017\u0011mJ\u0003\u001b��mE�*���7��+-u̿lڶ&�g� �'^F��_\u000e��A:�\u0002���MOO\u0014��w��\u001d1���qE�\u000bO��\u001d_E�7�C�\"~�>d�΁�@|y\b\u000b[������*�gV�\u001d��\u001bD\u0006l��kQf4\u0002�K��J$�Ws\u0016�\u000b_��p��q��\u0011��\u000fȃ7{�+\u0019 Έ�R5:k�y�>\u000f�\f5G�p:|\u001c禍f�oJ:P&��\u0016>J��\u0012�4G�0/\u0015\u0001�h@����&�F�\u0001Yg֝y�F��n����i��A��ت���3�A{��;�0��Ϯf'�D�&���\u001bç�kN+=��H�\u001b��d�Aׁ\u0002���}[\u001aKf���\u001b�U*~ \u000b�9�\u0019��\u0019ۺ\u0018X�,�G�C������R�)ZL,�^�_p����\u0017�Ɉ9�^�\r�#�\u0000�߮\u000e=��0�\u0002�S��\u0006�\u001a�h �\u001e�:ݞ]?e\u0005���,���9�GMH�l��\u0018�cd�%��8�ku�៪�;\u00018��#2�f�w\u0003��\u0012\u001fL\u0007�˜f���\u0014<�O\n�{\u0001�n�\u0004��*NY��\u001f�97�LT5�#\u0001�+��6���_�/|�S��Z�L\u0011�*gA]|��\u0004�����}ۑ}�0Kx�uf}`�\u0013�\u001důP<$�Ϧ\u0019i��No���\u0003�� s\u000f�\n�5n��\u0018�S�lwM\u0005�8�����>ؙ����\u0011�\u000e�:l�\u0007��\u0005\u001d�\u0006�y��|��\u0004h\f�\u001aGL�\u0000�Y\u0018�\r\u000b��9^���/jNE\u0018Ӊb �eɗ8��\u001b�x>\u001a�Р\u0016ϋ\u0018����z5 7��\\�\u0019Od\u0013r󭻰���l�Z�hkI�۲�CѢ�\rbP��wg\u0015oX\u0007�jX:|Pױ`����\u0000RN9���=\u001e�D�0P\n\u0013\u0004��-�N\u0013��N\r�ԏ�u�H�/�8��A.�\u0002���1��0�n.��#[���̇Mo�B��d���l-$KC�\u0013�g��$)֞�����PG4�us|���\u00001�J�5\b��V�\u0011�����\b\u0004���Ĝ9\r\u00047\u0004���q$n�oԫ�L�C��W�y5B�e7�\u001b\u0004��|�N��i�x;!8��G�Ѱ\u001d�������y\u0013s��\u001c�v4&s\u001c�\u0006\u001bZ6�?�΍��\u0003k��+\"V�\u001d\b���8zd3�g��մ����K1�\u0017��Wȕ<:Vt���6�A\u0004�ʉ��I�\u0017\u0005�A\u001c\\�����XX%ٓ��Jw\bFL�=��\u0014�>��\"�=�.��_,�;�\u000f�zu�Tr ]w\u001b9�\u0018ܺ:��-L��+���X���7�\u0013'L1ݺ�Qt\u001d�\u000b�\u0017`n�\u0012��7E�P脍nN�xL�\u001eElaLKqZ��T��އ\"I�Š�wJ\u0001��L\u0012��Q�\u0010l\u0002�Xm&G�aኵ饌�+5R��@�ٵ��K@rЧ�V\tV���\u0019F�\"����,\u0011�›�б���A+�\u0002Ѐ��eۗ��Xq]��9ބ��\u0006�pyT\r�%U�����<�%�>8\u001aٖq\u001e7�*f���\u0010&^\t�bP3��/!��{R[\u001fl��daGg�JB�4e���$�)���m�‘��ĺg\u001cSB���=[�\u0012�_aD64!\u001dPz�m�\u000e��V�*�k9���)/�B����:;Q�^a�z��Ki�Y���Y�v���J*\u0003��_\u0017���\u001bc�l��\u0019\u0004�G\u0018�� P �w_�9���L�9�]\u0003RC��n�z�]颭�l3vT�Q�wl���|�SbO!\u0004�Y#���\u0002{�=d�\u000ev;�g�+4h�������X޼�d\u000b�^��H�\b��*F�c)U����A\u001f�\u0002��1�@�u�ԜWy\r(@ņ\rB�\u000b\u0006^�A]��CY�N3�����\n��&\u000b�c�\u0015*,rZ��`�\\\u00014�^�٦~�ReΧ��W�\u00156Q��\u0002?t��QD�ӻ���'����̾Ր��Tu\u001b��/\u001bo��\r���=�b�\bR���!�;|$/6I�|ߑ0��\"�\\�2s�\u000e4�_��\u000bkZr\fqL��|�B�\u0000\u0017I`�]�Tp�7ܟ+ؽZ�v�=F� \\�zJ�Z-W\\(��ϡ��w8z!\u0003yD\u0015i/E\u001e�0o1ѐ��\u0001�6m�)\u0003kF�]6��d�K<\u0013\u001aH�� �\b@�,pٕ�t��.\u0010�\u000bn鶡㝓�037�A-�\u0002����c�A�>�-�ŵe�}��?u\bӓsi���\u000b\u0018S�p\u0015��u�#��L��W�;��D�ڶ\u000f&\u0004�gƞL��q\u0017E�\u0012�Qsc��?�\u0014Jo�\u0018�z)�*\u001e\"`�?��9c1���;��/��4SA��b�@���[�Ks��\r��2ͤ~z�A����>��\u001d\u0006h�3|S�ub��\u0017�U �Gg$\u001b\u0015.\u0015�/Yg�yW�=��(\u0002��%������\u0000T\u000e���丬6\f.��\u0018P�t�\u0000>�V�\u001a7�\u0019MIح\f��\u0000բ�4��2r�E*\u0015�\u0000��\u0002�����,#I��\u001b�A)�\u0003\f���gg�\f��DD�VS\u001a�ɻ�5U0�\u0007�_�߱M�!OM�?���Q�s3�Ae�i\u0004\u001e\u0010$\f�������`��� ��t)χ�I�14׊��'�+�\b��\u0007���)��ُ�����\u001e�42���/�:\u0012�'�\u0015fwm\u0002\bF4J\u0010\u0007�N99,$ʈ�\u0013Z\u0012�gN\u000f\u000f5v̈́\u000e��a9��z�b����k��4�� ��\u0006�\"�e�\u001a\f�ڗ\u0017���\u0004�+\u001d�����O��4�\u0011d�0l��I�M}�� �\u0015�N�i�b=$f�ጰ�\u0011^�f�.�S�\u0019\f�\u001fE\u0001��R<�N6L���\"�㲽�a-\u0005sQX��U�P\u0004%\u0010�����.j>���\u0004�=IFlD;���\nL���ߌKAX�D\u0003��g��0̰ˇ\u0016d\u001aW@�O@Z\u0007\u0000ɢQ��f�H��ϹT\u0001\u0016/����G��H�\u001abǹub�zǘS�=\u001eF�\u001eE�_^�v�J�\t�\u0007����;�F�\u0007��\u001c�wG����^d_�C��/�\u0013�A0�\u00034��MY\u001d�\u0000v�\u0006͇���ܠ�R\u0011��\u0004m�ˡ��g�y\u001eq.�u���'�r_��2�iP�7�d�2?���\u000e�.�A�\u0018.��fbX�3\u001c�#�Z�z�\u0012���\u0002l\u0012�y���`��Hr�\u001d���\u0014+ݑ��=�\u0017\f\\X�T?3$j��bD��_�K�c\u001a�\t��Q��P���+jj��V�db@H�\u0006��!x�(��\u0018\u0004\u001a�eK�/��.U�KKc;���h\u001c��F\u0015S\\��V�Q�쨱;'�k��h\u0001�D8�\u001fE�zV�\u0017�k\u0017�,#}��|�a9�n��{�\u0010��~m�\u0006��\t�]#Pɋ�̴~�R�\u0007�\n\\wQ��\u001cO\b�i\u0003\u000b]���� �*(\\^w'�K�\u001e$�AL�\u0003H���d)F<�F�C�i�$�\u001dڨP-rqJE�|�\u00009*�7����\u001e���ơ�\u0000x�Z\u0014��#�xjH�b\u0005�\u000b�Z��\u0017�g�� ���+*\"\u0001�$r=���S���sT���$�t�\u0005G�\u0014�@�\u0019�\t�4w�\u0017���X*��w\u0002�\u0002Ǐ��j��j�E�@%s����\nG��)\\��62��\u0001g�[�sk�&3X��\u0018��0��bɌʶ�0`��]<�~��|s�\u0004�7ea�9�@�?�f��)q�#u�%\u001e�2�(�&��5�YP{(�g\u001c�X��\u001co�\u0000�i=|1��\u001e�r�\u0011rU�\u0012j�2f��\u0018�0V�1�)�܄�\u000bR-�����\"��6c�선O&�vٚY��\u001e���\u001a����\u0006C����\u0017JPE\n����AJ�\u0003\\���t\u0001p̋Q�UWɕS4dL�C>L�\u0005���*��\u0000@\\*T\\�M��P0�?�l��7q\u0001�&Z��Z�#�FI<˒\u0011��&�t�kl���'�ϱȱBI\u000e�Q\u0011����>9S?���Bd�\u000bc3[9�@�\u0010l�,~\u001a\u001a��\u0018@\u000fH�\b�\f8\u0018^��?#�����%�`Ey��ζ�#��l�O\u001e\u001e*���?��\u0014y���2��\u0012�r�\u0005#��\b��pV\r�\u001fG�4��\u0007���qW��\u001f��\u0004*<\u0006k/׈����n����^�@�u\"�n\u001c\u001b�%�ʥ\nͺ�>xPw�[�X�\u0011�0�Y�8�\r��eeΕ�\u0006�9\u000b�8�z��BgRm�?��ߊO�n��+�\u0016�!Bz\u0012����d����@A\b([��(�2\u0010\u0018�i��A>�\u0003p���bt���v\f}���0N~\u0011\u0010\u001d�G�k����8��\u0017_�y��r�g�'R���\u0013�!Å_��+Q\u0001\u0016�\u0019���U�(�C\u001d����\u001dR�m��o\n��)?��\ffO��(z��|B�\u0001|��ў\u0001�������|���XDp�w�_��LR��g�LQm<�F���������\f�ے�\b����M�.)\bУ6.�7�ؿ����_x=>�!\u000f+�B���G�+\u0012\u00149��\u0000�ˢ�M�W�T���\u0006qGd��PU\u0012�\u0011{M���&��vX�C�\"�;+1��\r7��� 5���\u001a\u0011\"\f1��Κ\"����k��\u001d:���bڂ����v\u0004>�%\u0012�EF��/A�H�\u0003����dQ�X���A4�\u0003���J\u001dJ˘�\u000e��gT�{�l�l�ؾ/4�q����|#\u001e\u001b�hg�d�����H�:ORU����b�Dp֞��A�=�WG��|�\u001b�B���V\u0010(\n2���\u0010Ѩ\u0002��Ძ\u001cW���x\u0014\r�\u0015\fHm��?���\u001e��ý�)���0\u0003\u0000�f�#\b�ҥcGg��CZw\u0005!9��ڛ�\u0002��\u0018�� z��y�^h�(����:���\\�\u0005�'�Q�Z�ƕ�pu\\8\"�Z7�,(s\u0006] ���Q�XS1�\u000f9�\u0012\u0007\\�#\u0012�z�\u0002#myY�\u0013��\u001e\u0003Q֋��\u0016�j�jA#\r,\u000e\"\u0001���*�\b�v��9�Tn�\u0004�&�w{��\u000b\u0011�Qq�\u001e�ii=���a�.!!��A%�\u0003���X���#\n��_Bε�4w��!�,\u0003V��\u001a\u0002�H�}*�Nj��j�&�+Ihk�\u0006_s��N��~�IZ�c ����'\u0001�s7�)C�5���F�&,�\u001e�Z�3��k��\u0000�ҡ���\f�w\u001c���ڔv��\u0007\u000e8�\u0013���Y\b\u0000\\\u0004`\u0006�8�X�Q��d\u000e�n\rGXn\f��{�ݐb�V���\u0018��!��\u000b\n9G���&\u0015����$�\u00143+\u001c��Ý\n�\u0007���nm�u\u001a��P1� �\u0007\u0000��2���H�U3\"Փ�\f^^��]ό���F�YN�Z���)G�<+s�b��t�Bv4�i�i/Ŗ\u0011냕�T�q�u��\u001d�Yp+\u0004��v|�d�A\u0014�\u0003��������q�={�J��\u001bx�v\u000f�87��H}-�E\t�Ԩ�\\�_\u001c<��\u0003��3Ӭ��r�t�{�EB�c�:O�\t�2�\u001c\bib1a��3�A?N@\u0015\u0003U1\u001a�\u000b��� ј�IX\u0007�.�8�Sw\\�\u001e#l�R\u001a_U\u001a,��\u001b��p�.�QzN�\u001e�u��\r�m��K\u000b.EzD�_�X��VNO\u0000���������v�J[#��jz)�\u000b#jI\n�lEa�+6h\u000f,��<&�[�%��\b� �?燋�ȓ~�+�:\u0000�\u0000�tz��x���\u0002���P�G\u0000���\u0005�\u001c_k�zb�j)�-�?��\u001f\u0010j��[S�A7�\u0003���M ��*�\t\u0019\u0016O���\u0000\n�\u0006��\u0014�fB�G�90�'D\u000f�\u0012x�<�C���\u0000��\u0002�w�\u0016L��\"���1\u0012C��w��3���Dc�� \f�fe���\u0002|Ժ�Ÿ���ȥG\u000f�6?+L��f\u0015�\f\u0005��\u0018�Q�ND)H#8?B�Yk��b\u0011��и�\u0018�\u0003r�\u0015�\u0013�ȉ���\u0001}X����\t(����s�a:D�F\u0014�f\u0001\u001b�u�O��3��u���1f`�\tY\u000b����If��P\u0014�g�\\엾��5���X�:H��İ�Q��5�\u0007u��@�\u0010\u0018Fg2q](ˮ��n�\u0007�Se����+�e�>��Q�\u000e�b�!Qcp,(��\u000f�O�{TE�S+�����\u0017���A+�\u0003Ԁ��j���SN\u001b�\u000e����px2.oF\rZ2<3�b\u001f�_�7c>h�����]�R\u0012l\u001b�>�שg\\|y�\u0002�\u001e�`UQ��f�o\u001f��В�\u000b�54A�?��1�\u0002�<�!p�\u0019�`��gS\u001cvA����Z���D�l>a7g����\u0013v��E��Θg���4���*Hx\u0014eqA\u0011Eݦ\u000b�\\\u0007\u0011���S���gi�}�#�>&\u0002{�\u000b7�.����l~�DS�o$�#Ed�\u0012\u000f(SX\u0011�Ŭ��\u001ffr��xK\u0015X�����p������ǭ���3!f\u0006.$��u��G[�t/�\n�)o\u0013\u0010\u001e\u0013l�Y}�\u0010��\u001f?��\u001eކl��[��@\u001aH4�\u00130��F/u��A$�\u0003���b�����\"w\u00119���T^\u0000�H��Q=\u0016<ʮj\u0004����\u0016M2@x��c�r#�M\u0017k�\u0000\u0015\u001d��\u0017����\n�����\u0013 hp]�\n(���Q*�{�j�\u001f���\u0019|��:/��QJk�<�\u000efL5Ɍ�����\u0012%�{@EO�GS\u001b���_C���TXr\u0019i\u0003�����w�#e��n�}-+I��Q~�\u0005��i�R�rRpM��#\u0015v%�N\b�w�\n:��m��A\"�\u0003����a��;�7��\bk*�W����9�\n��\u000b%�a�����h\u0014�C\u0016\u0014��3O�\u001c�5jv��nU9C���\u001d�Q�>\u001c�\u0010%�\t\u0012\u000e\fi��.\u0010�J�h�Fs[䅓O\u0015�\u0010{�Ӌ�]('�6�ٻ\u000eۅ4�\"�/0�\u000bDl���\u0019:����Ў\u000f)�%�빗ܭJ9\\0\u0004\txy� \u001b�\u0000�=f\b�W�\u0019y̏%�\u0001Fv�m��A&�\u0004\u0010���bQIج\u0005>w�'���-\u0014\u0001�3��C��µ{%\u0002s!\u001esFg�{�BMH12����\u001aPPnK\u0005�<�q�\u0001S�\u001e8�{�3�|%)���t9�V�\u0004Z\u0001\u001dT\u0013���2\u0016ڝoQi�S�\u0019�ܵ\u0013�����ez>W��s\u0011\u0014|�s�`�Y�5�䘓wy8o�\u001ar#�g_���\u0005Q\u001f��҉̺�<\u0007HR�NM`\u0011�Tx\u0002�g5pI�<,v�''���g\u0006\t���7\rӫ\u001e\u0010\u0017B�l=�X�G�\u0013�vf�\u0007�J-\u000f�~,S�\u0006'\u001ad\u0017�:�&#�6�j@mt��\u0010�Xظb4VT�MC/���μ<�T�Z0����<%\u0002j� qs\u001bP�\u0005wdM��A(�\u0004$���b[���\u0016\u0002[�j;Ӭ�c\u0000��<\u0002n���GQYD;\u0001@\u0015\u000b���\u0015����Ong�!T�\u000b�7JD��r�8g��\u001c\u0016\u001ac�������x���A���\u0018s�jn\u0007(�\u0002W�a!0ś\r\u001a3��)�\u0000ӧ+n�%���� �\fK��&��‡����R\u001d�\u0015�y�]��Ɛ\u0006�迭u+E�3l�dɊ�\u000f��S.�VkB�#_�����\u0015o\u0017�����2�?�!0�2.\u0003��\u0002'\",#\u0007II�'��\\E���\u0010!6O&0�x�~\u0013��hv�~��!h8Ժ��)|qe����\u001f�s��Y׭���O`���\u001b�S�d�}�[�q�d�G\u000e;�Q��m��A-�\u00048��L���}\rW2�R�W�\u0006�.ΰ�BT)�[ӺF��T�\u0004���5y�\u0004����_�_\u001dR���N~7�u)\u0011��k�9�S3Ol_���csn�/�k\u0002�ZYoBiCF/\nԍ���'P�cI�٣r5>⭶h��R\u0016�7k��XCG\n��=>\u001b��v��v\u0010���\n�f�\u001d�^�l�]\u0019(�}�\u0019\u001b�q\u0000�ӌV��\u0013O@�\u0014���w\b!��Q�\u0016A��Z\u0014eH\u0012�.b�r�˧5���K*��vӫ+!\u0012��+x�\u001d�x�xs1�|7O �\u001c��9[P���|�HxbB@g̴�E��Nu,u\u0002CH��\bݗg)Jb�K@ҙ\u0010\u000e�<:\\c��\\�\nWj�;��8�w:��IS�'x.ѫ���*�z�\u0010Tà:ӏ�I�A��G\u0005\r�(\u0019Ȳ٪\u0001+\u0005��\u00062ղ\\-ϼ�c\u0002S_��t61z\u001ad\u0007\u0016�􋩥}KQ7MvL\f�6N�A:�\u0004`���uqe.�&�\u0017�I�\"Fn\u0016��N�\u0013L�}A�V@t=-{\u0006,1\u001b0�\u000b��\u001f'�onmdzw�.d�,�{_*��\u0017t=a���Sů�S���\u0013�Ƕ�̂�\u0014`��i4��7`\u0017�(�\u0005��9�\u0014�4��-\u0012�QY�yT�Q.2[�b�\u0017b̻)�\u0011a׸:)��c�9���pSg�k*xO\u0013��\r\u0011\u0007P�\u001dC\u0011K\u001d�#�Wd�g\u0006\"Q5\\Gˑ}R6��\u0016�\u0005�Mb\u0015w盛;�ⴷ?2�\"�\u0018����o7<\u001b��\u001cuA\\\u0001d���`\u0010\u0004��t�)\u0006��q�����\u000b�lH�㫑����ĂDȭ\u0019�V\"��B؄��5�0Ʋ���\u001aTvl:�ɽ�_\u0001�~\r�F-��i&�w�wN�AF�\u0004t���v\u0004�>��O��M��\u001d��\u000f����K~mѻ�[}3\u001e\u0007�T�\u0002UֵREz��Y���\u0002q�H�m�)X���D���������3�Cy�?�&<�ʆ��m\u0014s5\u001e��-\u000b[)R�\u001c\u000e*��dG�-\u0005M\u0014э�l'#r\u0004��8��\u0007\u0017\u0001Gb���l�\u001a\u0018�Q�{�d��ha)̌�\u0007e\u0018Y*�#�\u0015?uӄU��|~5l����\u001c��\u001eo���>�s���L�d둼ݭ�\u001e-�1�\\2�R6r7���\u0017OޣM\b\\p�\u000b���\u0002�{����&>˫&b\u000e;����s�\u0010�r�9&��#ƺ�\u001a$%\u000f��Rz\u0016Ө�q\r�r����FgLY�{�\u0013�;ҹ�C�w/Պ?>��\u0010��X\n\u001a�0�i\b�ӎ�A΁\u0004���}b_���\u0004��7�\u00191/LT�W���&���*�\u0012�>н�ٺ��`\\�6<%\u0014\u001e�Oe�\u0003�>���?�\n�RY\u0019j4�<�L�\u0002\n�v�ʐq�Ė�LC�\f�<�CO�VeNvvz񲪎��Àc`���\u0004�=��V ��\u0010bH3�����[���c���'1�8vlw�����0\f\u000e�\u001c'M=س�⧇6V��0a��X�\u0015�P\"�C����ͅ�f�R�@ \u0016�/\u0002��%�l-������lݬ%�:\u000egX�h�;^\u0002�2Wl�Z\u0003�d�Vt4(8/��0g���}\u0010�٥�t~���)���\u0013h� ���\f��P���\u0019`�\t�%\u0013t��U����)��6ם3.\u001e�ɀ\u0013�%ܔ�t��B\u0002��קۈU�����|\r�-� 39�MX\u000b�ԚK-���S��v O��2Y�؅ڧ�=Ez�\u0002.�1\u0000�֨mZ�\u0005\f��A\u0015���s\"\u001c��Vh�\u0010�笢#�AX�\b$��QeK�菎�{bd�����Fy�E7P���d��L\u0018�\u000f\u001e)Q%:�>�A#�\u0004���JC2լ�x\u0017>�0���B�\u001bͱ��O\r|\u0003)ז���t�\u000e�1��.��{�({�\u0014�C�[���!gjt\u000e��΁ѽ\bo���&Z�sle�2B��j[Ĩ<����?;���_�Ƶ�e!�����o`�&-vp�\u0005�\n��܊�\u0003��o|fk\u001eD�1�$\u0017y�=�.�q���\u0001SM�W�7\u0007FB�,\u0017�R/m��)j��\" �\n\u00007A熙:�o[P-�e�Ѳ�@t]\u0011�#\u0002�fo��F�\u0004i��of@p!Pu�*7��\u001fՊ��\u0000���i�al��Q`�\nK�������1>;��A%�\u0004���L�\",V��E�7Σ��#�{�y���\u001b�8\u0017C:����\u0005\"�_�\u0018��ʨ�m�\u0000��bٽ�޳D�1\u0014X�J�-�!^ט\u0005h\bv�=��HZ\u0007w���\t��\u0006`�pN�.q��!��&\u001e�py9hAV��_+fs-�����x�Q�\np^�Hu���\u000e\u001fA&�\\����E���T\u0015�i\u0000�m^Ϥ�-ɨ\r\u0000���0�F\u0006)�\\Ͳ?S��󚣃�s[4ކ�\u000b���(Jo�5�F=�\u0010�\u000e>}j��Gʯ\b�Xh&Vq$�\u0007)�7X�O�2�ճn���E��99�u]1Q\u0006�C�\u00025�}�?i�r\u001c8��*��T�z�\u0011�m\fot���A$�\u0004Ā�L�ƜW�\u0018\u001a0O�1?w��\u001a΋|c�\f�h��m��\u0016%��\\��׭H�����[��Q�&��~\u001eO�\u001f�i�w��У&��z�He�׋�T�Z�Ł��#�tp�k�~�\u0017�\u000f�-�\u001e���BC�\u0016D]���\u0000���E�\u001cY��DX,B;��� ��_��A�J\u0018T$��(�\u0001o���\u001b\u001e�i\u0004�ܧ�r�h�n��ŜK�\u0015�oG]�>0��5���l0�\u001a\u000bj\b���\u000f'�;bHFv��A\\�����ͭRE�\u0013�u�b/L]\u0010��*��\u0003/�=D�џ�\r��C#]@�H����\u001bX�Y\u0006����T�bS\u0014\u0015�\"\u0012M��\"�h���\f��A��\u0004؀�}bZ��d��\u0017���\u0007���v5�\u000fK����#�\u0016;\u001f��3o�\u001e\u0001ɫ<�X6�4\u0005��U�Hʿ\u0013\u001a��/a��ޚ|y�E�x�\u001ftQ�\r@������\u000bdvkF�t��O�X�\u000f�\u0012�^�3����\u0010\u001f!4\u0014�E��a�a\u001c~�]PK��\u001d\u001b��(`�,\t��6�,-���\t�z%��\n�\u0017͊*\u0010\u001f�\b�������\u0003Rt�]zLdB\u0004+�\u0001\u0013Mm\u0012�\n���n���!\n�\u0017��\n�z���\u0001��>\u0003������\u0002��B�t\u000bR�\u0003��gZ1,�\u0010�e\t�\u000f\u0013\u001a�[�\u001c�򌉥��\u0003�'?�\u0004���4�v���e\u001c�\u001dj��T1\u0010\bym*�C�\u000f\t��Ι���2��A�^�-�ee�G��{X%\u0010*���g�pG~���@�u\"\n����d���SEA�M㶡`/�}TC+|��\u0014:BT�B�hMP���\u0006�\u000f��\u0018�\u0017=h�G�z,\\\u0006Vm�5/:I^��\n�A#�\u0004��.\b�#��\n4w&%zƗ\u001e�ƅ9��\u0003�O��'���Mń���?��X\u0019����\u000b���NJ���=�%ź`-S�SŬ�eK�E��7q-k۰{��sT��8D'�\u000e\b��1b�ύ\u000e+=R\u001a�1������\u0019�����s�\u0018�\u0014\u0014\u0000CjZ��nϰ�����#�{ >lh�� �\u001e\u000b\u0002pL�˓y�maw�b|���&\n�C(\"�q��T�\u0006d�\u001bP=���<%:ls���r��\u0000%�A6���<\u0013��9(<��b��\u0011���\\-��\u0013c0�*��N����\u001e�c!\u0012\u0010�U���(��)vU^�Z�YN��V�h-��?(�-rOȣA)�\u0005\u0000��W�4��\u001b]I�>�`Z�z�λ]�1˱��\n�'�����YB�W�S��/2��H�ꍝur\"�Ɉx\u0002<�T\u001b\u000e�?�Z�j\u0012��,k��0�`sR�7|\u0011�c��hCI��9�t�R�!u�\f�\tS�^��g�i��\u0010\u0017�D��F`\u0004�A�)._\u00024MGM�M��0��ƥ�S5���F~�\u0016�iѽ���{Y�:�(�\u001c�PuaTŰ�(�\b��Jg�[�ҫ\u0000�ɤnQg�P;2E���ɩ\u001a�+2Wly�\u000f���h}�p%\u001c�\u0015+�Am>�\u0018�A�\u0010K��\u0010\u0014}���me\u0014\u0006n����*�\u0007�V���\u0002_Sω���[Np�ue�����u����AɁ\u0005\u0014��}a\u001c\u0017��e,���l��N�Hз�\u0001�P�W,7y���S������yj}��\u0015X\u0011����t2��I\u0014+��� \u0002v\n\u001el�:�\u000f�N\b�IQ���T\u000e\u000f�pt'�'_�\u001aN��\u0001����n��H>\u001eO��ݭN���ՍG�\u0012-Zx!��UBp\u0014��C\u0001�%|����4(�\n��p�8��w\u000b��ݐ��@��>2\u001c��z��\u0007x�x��MR� �\u0011�3�{�]��W�&���K3�{^U�m*ֿ5�`<��ꥲ鍂*1O�\u000f켶��\u0005\u0010#\u001d\u001e�n�Ж�����5m>���S�~(�S\u001d\u0015��>\u0016͋�\u0004�|<\u00167s�f~�&ř8$@3\"��\u0013������x$\u0016�\b\u0005��\u000eX��Ɗ,A��\u0007Ԗ;�u�/�Mu\u0016�4�J9�8�O�\\�a\u0002�kb\u0012\t�#˯\u0015Y:��ʟ5�iP�Y��?��81j��ȥ\u0007�\b6\u0003��)�\\��[��\u0006����n�i�k�\n.��v_\u000e�_\u0003x�\u000fd\u0017���\u0014}ɂ\"$��\"��|Wo�\bJ�-�T�u����AU�\u0005(��.����({\u0018\b�$�3���?\u0000�?��j��s�%(fK��۠�\u00079~\u0017=��a\u0017\u0003rR\u0010�˸�\u0006\u0001�\u0005�J��\u0017C����GC�^�E\u0016�<��M��ò\u000b\\�>\u001b\f\u0013d~���#hh��\r$5�\u0014��)\u001c�4G0�\u0015�\u001fI�`A\u000b���>�\u0018�X��\u0018W�hL��=�dj*Y4����b�\u001c)�L��N��A���m���\u0017�W7�\u0006�+�O{\u0000=�$:��ߵu\u000f�E�\u000b4����c]�8\u0007��WF�\u000f\u0019�\u000f�KKtP�\u0005�(\u0013�\u0003�\u0018�\f\u001b�m��\u0011�\u00050�n�\r\u000b��p\u001e\u0007���\\_U�as�\u0005G��o\u0019\u0014\u00148�$V~92����\u001b�B\u0016��6�Έ�� U�\u001c\u0003�\"��I��l�KQ�ڡ�\u0007lP�^V�}?��;!��\u0010Q�X\u00123\u001b�A,�\u0005<��L���‡�\u0017��Y��\u0003�?q\f(�2��z\u0004%\u0007˳_n+ӧ\u000b%�!�����\u0003����(\u0018�(k�Y�̟�H6�A\u000e�Ȫ#R��\u0003�k�殰\u0011��/���\u000b\u0014\u0010J�:\f��p=�\u001cv0گ�\u0013�i���,�\n�C-���\"Ï�\nAQ��0����2��\u00029{ڼ�؇�{�\u0019�~1\u0017(\t�&�6�w��?M>\f\u000e��!\u0001����6\u0010��c�R�{(,8aP��PL\bks�̥����zx�[8�JUc�M��JD��*\u001c����\t�b\u0012`�����F8�\u0006P \b\u0016,���<�\u0002�D��T8�T�$ȴ���I\u0006�\u0000B\u0006}�����%��#���/��+��A*�\u0005P��L���aK��?��W��n�S� H\u0016(��!�ò!\b��/~�2�Ȗ���Lp�`�YK\u0013�m� �6n��?S��\u00152��ؗp\b�;P\u000b��m��V�\u0012n��(/�\u001f~ˀ^c)��<�e�x<$�}�\u0017%\n���%M6�ժ\u0005\u000f�l\u0019��\u0017��\u0007��f\u0004�Lt��p�'�M�6_��/�����:\u000b\u0011��������\u0015CΊ\u0003\u0003\\�U��!�\u0003B��E\u001eGƌ�\u001bHC<\u0002��F?�x|�mwh\u0004'����>x���\u0006�Ҡސ�T�B�Ͻ��s��b_���u;\t�s�I_6سt`�l�\n��q\u0006�<�;�E\b4���\u000b\u0017Q��.\u0010\u0001���A=�\u0005d��L���Y��M�\u0002�Ҥ���Л��d&#��\u001c\ri�D�F#\n�s=�웭\t\u0006Փ�u{�Ttw�\u0006��\u0007��J�\u00115�}\u0019��G��̎�@��71�����^f\u0013��3͞���c�\u001b~���c��6��\u0017�Ӡax\u000f�y�ׂ��%\b�\u0017��sm�\u0001#+Qܿ�\tuk����gל:\u0015!�E�\tR�\u0013�kMp��uV���\u0005�B��6�Ĭ0�\u001a$����J���\u000f\u001c\u0006*5���}Z3�G��6\n�p�\fm\u000eAOG7�\u001f��\u000b�:\u0003Cԗ���\u0007\u001d-G\u00155�U�*�C�9�8L�>�$\u000b_����9��\u001c.\t�@� $�{׽��W>����f\u0017�H#����\\\u000b\u0007Rm��+4����AC�\u0005x���s�~;�\u000e������*��4?*bT�5\u001eX�^(����n��W>�fSԔ\u0017�\t0,�\u001eK�u\u0017�0I�˅PD\u0006l2�^��ʩ���D.��o<�ժGF0�\u0015^����\u000ea�ĝ�\f�8�S�1n��\u0015����\r`�����E���7�v\n\u000e�;��)\u0016k�%AK�}dL�/gΟ�\n�~�\u0007�ӵ%T\fQ�z�$\u0003�c���\n�\\w�����*\u001bEo�qp=5_\u001c\u0000�]�X*��&��\"#�>��Ơ�\u0011v\u000f�6%\\^��\u0018��i�:�ϔ&��=\u001d�\u0017��N�R\u0007\u001d���;�V\u001a����R�#\u0018��[���aҕ�4b[�ыm��gŒ\u001c`v�凗�U��>�mH(_�PE w������R�ЍۣAʁ\u0005����$,�����X\u0019�\u001f�L�7��Z����h��\u0011�\u0007�2ͤX;�t���\u0013B\u0003ތ�\tĀ��\u001fN\u0000�݌1�\u001aBc�Np����&o\u0012s�T�e\u0002��vi�,$�\\\u0005\u0019�����Z9G�)�\f�3��\f��8#�4\u000fyI\u0012�a�Η��'�\n\u0012ƪ�����f�o?\u0003�>���s�\u00175�yV���-�\u001a\u0007��j���߹��*az�\u0019(E<�\\��b\u000b�j-��\f�z�GB���E�b0��5n���}����pIÏ;�=%�@\u001b��\u001e��ԋ�l�4��\n0�\u0018�\u001e\u0007o#�Gp�2�˽��J)��=^j\f�h8'��f:���P\u000e-��M�>+��P�f��ļz��k���\u0000�\u001a�tKZ5N�9\u0007�b��7% �\u0015\u000eM7=�]R�u\u001f@j\u0005\"���\u001c&�B>�\u0011�I�~�q��떀m��L����\u0003h����\u0005\"ق\u000b\u001d\u0015�oC��Ci\r��߇uT 9����?L�\u0012�����BG)֯8�=\n1=[��\u0007\u0014�UI��;m�rl��\u001a��G���A0�\u0005���X�y�7zr}���0ѵs����2cim�\u0015L�(\fxj�5i����\u0017|�&\u0005\u0013��,�h,]����k\u0002`��\t�Y\u0005��\u0006zE��wHR\u0010�\u0014�}��\u001c�`Ӣ��\u0001�\u0000w_�c+���%�t��0\r.�6�C�%�F�\u001b\"uI��J}}�?L�<�o�r]PxF}��\u0011�a�Q�\u000eL��^�}\u0002)��Ͳ��/N^Y\rtZ\u0004aϋx�\u0012\u0004�p��q.`�\u000b�}yrS��B�\\\u001ew��\u0005\u0012���y���l�h\u0007Y�\u0012|�OB\u0017�\u0011֞�\u001d�\u0001��\u0012\u0006����\u0006�E��d��2T��2�}�\\T$\u0017LB�n\u0017���2J��;\u000e\u0005�\n\u001e�򺔜���nm�Hh\u00175q23���A\u001c�\u0005���Xо\u0007�)6���^\f�6����r�\u0011�E�_�ՕtN�}ˍ��Z\u001c�'\u001bvu*��|\f\u0013f�8��̯�o��\\Z�C�\u00019G��%w�-�e���7��\rů��\u0004\u0001�,i ���:�4�~�b���ڰ��|\u0007Na\r\u0018\u0004\u0007�\u0010�\u0012n\\�#6̈%�\u0013uwt�Y%���QP\n�\u0005Qu.�K��Ho�UA�ܫ�y��y�\u001e`c\u000fZ4\u0017\u0016�\u001bq���|6E\u0002����\r3\u0002����n��y���ǭ�t�I\u0010�O��=+dy�;}\u0001/o\u0001Eሠ\u0019Z*�s�o��!\u0011�y�I��v�t�/K̝I�^\u0018�\u0017����`n7\u0004��<�v�A\u001f�\u0005Ȁ�X��qj�\r�\n��k�+���6��Dq�\u000bh��\u000euv7��H�B+ܪ,~���L��� j�x�\u0007\u0004�8i7347�a�\u0001\u000b��[�Z\u001e�]�~\u0005��.�s�m�����\u001a�+�LG\u0012jP�W�]��\\�dz\u0014�\n�\u0018\u0016��\f\u0000�E�Dw�\u0006������\u0011�ҙ�taL��:\\�7L\u0005���9�\u0013�d�О��\u0011�2L�/?�yA;��nW�\u000fk���:�ڏ}R�ڝjN�=�\u001a)\u0007��\u0016�w�5��3����ʗ����*O�a��Pn�_J*�\u0019,�\u0002�;gn=߾�\u000f�����Z�Pѩ�~F;MwI\u001aâgZ5ƣ�\u0002kңA&�\u0005܀��bo��09�B�\r�.s39پhF�ԝJY\"\u0007s�d\\99\u0000�]���3^�@�\u0012�\u0010\u0006\u0004�l��d�\b\"<�q�P���fQI�!\u000e�a*\u0006;\u0019\t6�H\u0017i����\u0016D\u0005,\u000f4f�[����}�$�j�!��\u0002=���k\u001a�F-��\u0003�\u0013�\u001a���5rkY����(�UT��K�`R���$Y(sڜ�D�c��\u0003�\u00152��5�\u0018ͼ\r���e.^]ש'�����4y�.˷�{�����\u0011�{\u0010\u0013���}UQ��HAW=\u000e���\u000fM��6��\u0017�\u001aEt�+y�\u001fA\b�?>d��<\u0013S\u0015�s�;4��‡���\r\u0005/�\u0010s͍�ٻ&/\n\u001c�m�wdD�\u0002[�AL�\u0005����c;D�Rr-�od��lhC���4㪜��J�W�).�8�sK�p4��т;��}��}\u001cp��j�J��R��\b�\u001d�D'$�;b�]�\u0011�\u001d��+�u��W\u0004\t��n6��\u001b\u001eȾ��v\u000e5][`�\u0016�YA\r,8\u0012\u001b��4P2���\u001f�7Xz��T\u0018`-˅�W����TE$����m($C37����$���Y|h':���-�� �ŕ��:\\��4�R��땹c�����[�\bd�\n\u0003�J��\u001f�x�\u000ed\f���\u0007p��1�Z{������b\u000eop[\u0017�r\u0005��%Buax^�kg�QɆ�\u001c�ZoO�|E?t�vas�?�ѯW�\u0006뺤�U`��Dk����Ʈ�X .��4� \u0001ۈ�L�q�\u0006[�Ad�\u0006\u0004���s�PZ>��\"�7�0���\"`�v�\u001f߄\u0016*�)@�M��C\u0003_����P/\u000e��s�,��o]�P���\u0014٫�իz\u0007:a���{�*0)�ʯ�\\�\f3\u001c����\n��3;�RB����\u0016)�=N+����PT�j�\u0011-0p��H��}��(aބ\u0005\u0010,��u�S �*�i\u001b~�\u0004\u0004��l\u0015\u0017��\u000b�\u001dU��W��\u001b#c9\u0014`\u001fP�6��c�\u001d'�\nHf,g(�{m�DԻ\u001d�\u0007���%*3�G�\u000eW\n \u0018�zO^\u000e�\u001eƛ���S1�f0�_��°M&\u001ffx\u001ab~�S\u001b�tOL��!��\u0019aB�vR��\u001c�Fy\f$6�ҝ;\u001an�\u0015rusU\\K�>�\u0003@�͂-�1�)%���p\u000f���t�\u000b�I\u0000��\u0003��v�������{�\u0019\n�\u0015��u{\u0003>0�J�=:���[�AJ�\u0006\u0018���p���\b��\u000e\u0012\u0006H�B`&o���վ�b�T�\u001c��.s���`+ֲ��&�4\f���)\u0012dX\u001bќp�a�8)����E\f\\JNݳ��>%�V�\u001e�aM�Pz�e\"�\u0019\t�b��\f�x,��S�=�\u0012\b��C���a��\u0012z?�\"'0f\u0010���u�,��.1�m�5�R�d\u000fؙa�A��7�� \u0005�q���\u0001�\u0001/\t�4�)\u000f^\u0013\u000f\u0003��$�{>��+tT!q\u001d��ȱ\u001bj4�ih�\u0001S��NI��(h0�q9(�\u001b�m\u0005-WDq�z7\n���]Q�\u0007\u001a�a�m�H\u001b�H^�Ga\b+���Wd��e�PDP�Y�\u001a�\u000e͊(Mz�+F��\u001e\t��[.3\u0001��QQ�P��ny����7R�3\u000e%�\u001f4��#�\u0019'8�Z�AH�\u0006,���b\u001f�V��|R�b�V��+�ҕ����;\u0013�9\u0006���@w\u0015/�\\Du�`�җ�xdz������ڐ3\u0016,\u0001v2+d�\u000b��yN�l\u0000���u�P\u000f�߈y�r!.r�TU��D��\u0013���0?+���S�\u0005\u0018\u001a�u�9z\u0018��B�p��\u0018�\u001a�<\u0015��\u001e��O������J�z?T�p\u0002��;�>���q\u0001�g\u00028��#��\nr��,���^���,�]��*�b�^����y��M\u0019\u001d8�11�ɤ�7Ft��'8zno� >��HY¡�+���\u0002\r\u000b���:��*1�+a\u000b#��t�\n���]�c�s�(l#���\u001f���XO�E}Z!�k��\b�\u0007�{�ͫmE݊�ƃ���*2�\u001aюk�Z�AT�\u0006@���a�M�\u0001\u0001�X��e�$���ĺA\u0012��O\u0000�\u001b��b#\u0013\u0015�5���\u0011��\u0012{�\t\u0010�n���+e�B\u001b������E+\u001b�\u0016fV��\u0013.x��j�\u0019���Îȓ:hh����pE��\b\u001e[V�2\u000e�7\u0000\u000f��\u001f�ua���Y�Q���獋�?���(%�\u0004\u0005�h�\u000b���~?�n\u000f��R3]���|\"�.fv\u000b� �� ���1'��U�����c�\u0001�a)�7��\u0010��3.\bE}�Hr�EwJ�\u000b\u0010��iSWx�ӝ����O�(0;��\u001et�)���[d��1�YD��\u000b�,�du/\u0014�.i\n�o�\u001a%\u0006�K>������d�ʘ���A�2��ꝺG�KT\"�eCA��8b�=Ui\u001a�巻B�4�\f����<*���Z�AS�\u0006T���a��B<�\u001c6]`4����I \r��\u0010.�S��'��5b��~[_��F����n���/\u0017��>=��?����\u0019�H����WR�=�\n�\u0002�v�_\u001a\u0015q�xI�OJ�\r\u0000&�Oϫ�n޿��i\u000e�w�\u0016\u0010k�n�5\n���\u0001�\u0013d7B�4���8I��\u0018\u0003�y�A\u0010>�N�\u0005��Pk��I��V����ݍ��\u001d��X|R�v�\u0018�7��Rk�F�\"-!ᡵp�*őK���\u0000{\n�n��r�o}��[�N��\u0016ƀ\u0012�9��\u0005��\t�8=�t\u0015�����$+�jN=\u0005��q\u000fZ^2�`\u0017B��y��,P\u001e�V`�;m\u0002ٚ�P�j\u0016�\u0019�ߒZ�A[�\u0006h���eܕ\u0011f%d��\u0006Z��c�dV�Ŋ_���3��\u001f�����\bF��ь�<��\f\u001cMf��^�\u001e\u0012d[p�}\u000b�9�\u000el�\f�#\u0016\u000b�sR���fz�]�N/�5�z���,2�\u001d\n$�5Ϛڿ����\u001f\u00144V\t�pAW\u0003TV����~����\u0012H���[�P*S6\u0005\u0004��ZŲ����p�L�Y�;�\b\\�/Ɗ\u000b����D}\u001c�Q �.LN��qt\u0000��#����\u001a\u001a��I�J?oH��:\u0019\u001d��\u0018��o�@��\u001a����[�Js�_�2�\u0015{��\u0002B�x^X�.��ީ� ]����1�\u0011'ֵ�:Ka�\u0017��\"�G��[\u000f�[oB-�q�\u0003e\t-D�_��)���9\u0003��\u0003��C\r9n�\u0019.���ea��=\u0017c�T��~\u0015�\u0014\u0005\u0011\u0018��[�Aہ\u0006|��L�\u0003+{̕�C9\u0019����#���T\u0019\f#�jn����]\u0011�Ti�ȧ�.\u001e�+\\C�KI\u0019a��c\u0007���?r��\u0013{��ԕD��\u00189��������7>�\u0012*�\b͟\u0014Z\u001d�,�4X�*j�\tV\u0007�p�\u0003� ��\u0002�2:J��\u001e�o�.�\tD=�@�vi�v\u001e\u0016��$��\b��3]M���/kK7���\u0002\u0011��31�\n����{39��΁��N�9άܻLf\u0007EC�֭Ӟ��n�!�~�w�h�z��z�V�\u000e�Cqr��\u001e�Ӄn�3\u001f��Wo�����\u001f�\n��M\u0012�}�Uv��\u001c+�0���C�\u000b�\r���ng�\u000f��3\u000f��\f����7�T�[���?S�\n\u0000�41����A��\u0006���|��M���J\\�\t��\n�c\u0015Ġ�.\u0019\u0011\u0017�A�4�B�_���G�\tM]�Q�\u001c���\u0003\u0001�8�+Bib\u001c�Խ�K�m��\u0011���Q��\"\u0007AS���\\%\fhBd_B^\\*�^����2�w�.^��!\"�%\u0005�v�\u0013�(�382Z\u0015(O\u0017\u0013(N\u0011���kv�_3�d��\u0003��b����k�\u0017��N�\b� ���\u00110Υ�!z\u0013i�~\u000e�1c\u0013\u001d�'Q��\r\u0014\u0006�귋�ː�\u000eFm{�̬D�\u001ab�/٤��\u0010�X�;e��Hִ{.�2�O�\u0011`�Z\u00049�`�}\u001d�y�Ӑ��x\u0006%fk��8=�؍\r���P��<��w\r,�%�*8\u000f:��W�_�n�+\u0016�j�\\@���-`�y��xP�������^ڷ\u0005�Y���8�c�\u000eOAe?]m)P{���M\u0017�kh�b�S�3>��\u0002c==�0�8��.\u000e��a\u0007ns�cU�#vI���Fr\u0012m.�<�ĘT��x\u0005�^oD�\u0012Uq��\nn~��n�P\u0004O$�HW\u0002ʺ��:�1���yK�A:�\u0006���L��\u00156{��9��\u0015\u001e\u0018N�ח�\u000f����\u00117\u001a�FU��\u0014�������5�~�S�u˚�?���3Xt4�\u001fٜ9�\u0019*��/� ��^{i��g�\u0006�\"\u0000\u001b�f�&�Ȅ�J~U��\u001bD\f���WO�S����#o>@p4��$?$�\u0015:W��$Fr�h#D#T����l��\u001c6\u000e�񨒢����\u0014V�LS\"4◑2\n��=\"{�[%�@D$(e���ɳqnS��y�v��ӓ�Gjz�(������l�\u0001E\u0004\t%�\u0010�α[��Oh�\u001d��{*\u0012E�+i�s�\u001dͨ�\u0013�k������'�f���'��\u0004�=\n��\u0003\"\u001dBw��\u000b|�K��*0h����!Ts\u00003n\u0000�A5�\u0006���L��'[5`�\n�R&�&��xȶ�E��}�R��\u0012�fp嶺ˤ\u0006�,B\u0011�)��\u0017\u0018Q��K�\u001c(\u001f\fw.�#�[��ʞ�I�� T7e��8a>��\u001e>���$\u001c��ޭ��6��Ҋ�4�\u000eM����~K�\u000f�-X\u0006Œ\u001aW\u0003D��\f�8�4�Nf\u001c�\u001ev��{�֩wD\u0004y�fJ\u0002��\u0010����\u0017�/�����\\^��et�B]�$�Ϻ��5�\u0016MR*��p�e+\t!�h�,aŷ澍���\u001c`7(��@e\u0012�]��a��]� �ss�\b��k\u000b5�S$Ӄ�\u000b�tF\u000b�}t��t��?�V�Z���� ���y�&*�Z��\u001c9e����v����\"�\u0017E0'r�T�AC�\u0006̀�ۿ� ��Y��\n's��w\u0007_IԺ�#L_\u000e�35�\u000b�\u0019/�\u0011�\u0015+\u0011ҟ��S}�1�G\u00189���\u0017P�F'�p��\u0007�n���@QE(�\u0011ٴ�����j,����u(2�7v�k\u000b�'�\u001a\u001aF\u001d�[� \u0002/���\b'6�y��V�f\u0017l�\u0007b\u0007�\u0006�\b��[� \u001cx?�2�#a���\u0000Gh�}%�EK��\u0019T�sr�\bg���\u0017�:�������ʹ\u0000��\u001b�x�u\u001a��Պ�\u0013QI34w��<��/�\u0015\u0019��=��\tZ��W���җ���p�2{f�3y�tv�bu\u000b\t�Kn\u0006�8���V9k�\u0001U\u0011�۲�����#\u0015�'�\t���${}��X\u0015���\u0011\u0003O�\u001f�:�\u001e�6�\u0000\n�C\u0002�S`\u0018�\rn�\u0013�A9�\u0006���ۿ�\u0011\r5r6r�\u0007\u0017\u0011\n��a����@'�^'\u001c�K�J��\\\r���x\u0004�*i�\u0019�\u0004��fk�\u001a�ޝ�\tfly�A4\u0017y=J׬!m�'\u001d�Z\rYN\u0015��,G�ͱ������:��(!�\u0016@�{J-O�\u0010\\���\u001a�����'�,?S*d\u0016\u0000oy\u0003��앲r\u0014�ȵ��섥g��X�V!޽R�0��]�\u001f?�~?L��\u0007����g��cZ;��PaM�/\ns\u0005�G�kR\u0004X��@`H��\u000f/:>�ƍ0�\u001b��A\u001c��2An��-�L\u0006�~!�:J����FdYN�����:\tz߉96R�=Ɏx}|\"�T\u0003\u0010\u001d،�M�\u0010�\u001b*\n\u001eR\u001b�6�\u001ctٟ\u0013�g\u0006�\ni��\u0013�A;�\u0006���ű-\u0014ʒ�\u001dj5����\u001f\u0014�4:m7�N�8$W\f���@8\u0019�j��u2��wlD����g�����\u0010f��S�*8�6�}8C�G�b\tU\u0006��Y5�S^�k\f0�Z\u0015��gq͢�Y\u0006�F/?[�j4�?��.J44(���\f���s�M738�k��m�\u0000Xlz��\u0000�\rΧ�E�\u001ac�\u001a�ޯ8aJ|�x\u0015\u0010���7�z�>�-s\u0010ۈ�<\u000b��7f��\u0010X�\u000e]�\u0018� \u0006�˳^\u0013z��\t�����\n�\u0016*|n�!`�������XɆ3Tf\f��\n�����\u0005S�T\u001b�$\u0007����O�D��>��{\b��M}��\u0019$�=�ɫ�p14���[�\u0005�}�\u000bĪ\u0004��\u000fi�<@�D5\"\u0012�A@�\u0007\b��M||�O�\u0017�s�6b*r+P��wSm�\u001d쉝���\u0014j��\\\u0017!�=�ް\n\u001c�qӡ�w��t��#�;��\u0004.\b���c�\u000b��c�ܮ���\u001f\u0013u�\u001c~�C0��U\b~hp1P���\u001a0*��\u0014��u&\u0003��^TF��7�r�ay�'�7\u0019��^7~\u00162�6\u0010ٌS=r<���\u0003)��d�[��D\u0013�P%0���,b\u001c��zD\u0019�y�x��\\\u0018�DF�Z�(������)˧N���Qsv�ԡ�#�\bT�\tm��)����\u0007���k�u�+X�g,O�\u00102K��~��D��T7u,\u0011��!�{�\tCa�n}\u0013�3��ɫ$8y#��0�\u0014vFܔt�4�$���\b|�$��%��\u001a5$�ҷ]��v�A��\u0007\u001c��}a0h�r����ݫ����N\u0015��\u0010\u0000���]�O�m�>_\u0005�VvY��\r�\u0005��\u0012����|�/\\��nS)�E\u001a���\u000e]�r�\u000f=5��\u0007\f[ӌ�!�X���\"z�]Ÿ\u0015����#�§��+��b��\u000e�>��l�a��n�ӣdD�Q��ڿW�E�\u0002���\u0007�N⹧��e�#rщ�\u0014��j��4\u0015\u0010? �ZXM��0^�y��ʡ�\f�*\u0007�V!�\u0017SG?�7|��\u0004��KV\u0001\u0004K}��eK&���!��V^!/��a�\fVS}��\n��$\u001d7ӂY�8eR�d8�Z��l{��|�+\u0013�M#���\u0006�C�;\u0019��\u0002tc�5�Xan\u0002u�NnS뽠��{vw�a#�\t;/h\u0017h�5�iN\u0016��{�昣�ލllF��K\u001f���e\u0002@�؛\r��M���<\u001c\u001a����\u001d�0���,�v�)\rC\u0014�`\r\u0001\b��T�n[�.S'��{�g\u00071�n�y�%\u000b\n\u001a�-���A(�\u00070��J\u000bեdS%ךә��H��2�Z�Rf�EhC\u0019�\u0012��\u0003\u0015[oւ�⏴#��xh�\u0016}�r�E��\u0000&�\u00170\u0001�R�u\u0012љ\u0018\u0007�7E�Ş\u0011\\���af7\u000f\bx��r0KY�/R\u0000,�Adڗ�̄��ɻxN�\r�\u0006\u0000l]]�#� �\"N_G�(�*��\r4���U�0�\u000e$���פ���um�`���\u001bh�Yg�0չ�m�N�3��#�Ĝ=K��.�.��K�\nm\u00119����Ռ��� [gx!\t�\u0014v�(��m��\u000f�^�8�I�6��E�0�A&�\u0007D���b�6��N\b1��9�\u000e�̍D�\u0002 ��h\r����\u0001L�:.z\t�U�ƛ\\p\n&��Mf����\u0001n�0�\u0017\u001b�0s+��ht�[�\tE�&�ꌹ\u000bd�e�io�C�r����^�ɧ\u0006�M����Q�u|�����(o]\u0018�\u000f\n-$���z�8g\r��S\u0019X�N�(&$���B���a��Vۣ���T\u0007�A��Thj\u001c\u001d�Q*���88�J>��q-P���F��t\u0004\u0013+]�>Un�?��n��g;��(���k��I�k\u0010i�d\t\u0013!�U9�\u0001Z�F\u0013\\D\u0013p���wV��P��D��RW\u0012�R0���0i�5C�u+�)��~\u000b���A,�\u0007X���b�w�2��ғ�_���.\u000e\u0004����P0\u001c�ףi͉��nh�����)[3�ݻ2u+�F\u0002-�SIh����<���m��M��9ؕ=���`]U~=�5zf��d\u001b>�\u001a�\u0001$O�N�b\u000e��3/F\u0010�\u0017���Hٽm�TX�m��o��9&�S;��̲\u001bTu]��o��jO���m)i8����\u0001�߶D��ظhA���#;��_�w\u0000�Fqt ,��I�K\u0010\u000b\u001a��'�q�g-a�����2�j!\u001f�\u00021_��{�����\u0012�ʯ�pz\u001c6�>�x6 <��<`�\u0003A��N�\u0004Y�ᘧ˳��ƽ�`zc��8��\u001a0Z���S���ݞ�A2�\u0007l��M|�\u000eaW\u0013��]xػ�,�[5��)D�a@z�_�\u0010���������Խ���z\u0010��2��.\n,xA\u0013��9�d��\u000f��o�\u0013�:�pB\"�NL�\u0018�4��ɽ�3h��\r/g��\u0010���]�����N%�5=!���\npiH�\u00006���\u0012��FR���\u0013Z�8\u0015���\u00146-�A��fO\u0007��Gs&w!\u0006|�˽\u001e?�B��\u001eq\rm��㭙\u0018�\\4\u0004\u001aV9�n~��?��� ��D9\f�\\�jo�s��h�\u000f\n;r-��\"X�����gM܇� d\u0014�O��́H�����5E�\"�5\u000eB�x�RdY�b�K&�����\u001b�NX`O��k�%.�\u00147��!|��\u0010e�A)�\u0007���M{���\u0001�﷈>\u001d��#\u0004D��t���|� �Yq65;o���\u0016\u0013�Lk�[b��l���Մ�,�br��4�\u0005���A\u0017\u0019O��\u0010�ӿȘu��R�\u0004@p�!�\u000e\u001b\u0019�\u0018�|������K\u0015?�Ā6�\ni\u0000�����#\u0012�7��˪����\u0015*xT0\u0018˭��\u0006���\u0016�\\����\\�T\u0015!G��y`d�o�\u0018���\u0000\u001e٦�q�3bkf_�����PdEe\b\t!1�Ww����3����-\u0019\u001bB��g�@�\u001e��o�}F����\u0003���Äg7��R\u0011w��Qt���\u000e$X�СUV\u0011�����e�8��n$�p\nQ@I59GC\u0018�u&�f�6�A��\u0007����z5\"�\u001b�̈�{���@2�T�S\b��A&�����Ǜ�\u0000�dzu���|��C�a�B�y}t�^f�d�|aS�X<�U�\t��!��-�'C�4J>�@��6�z��q�\u000bѿ\"9l��\t�����4[tK\r�s�?~V��4�\r�}\u001d4x\u0011\u0002�3Q|-u�\bM�s\u0002����6Ĕ}A&�М�h�xR��Y�z��\u0019��\n['����Ng_�\u0012�M\u0000\u0003\r'Z��\"��E$fr�\u0005o\u001a~��vK��[�=�&�R˄�\u0013d�\u001d�_��q�xqG'�\u0015�[�k���B�+��#{T�\u0011�\u0017��\u0011dW�\u001c�nm�ԫ�\u001d1�]d\u0003���=��^#v?0�V\u0010�5\u0016t�-x9�佥\\�9p*�-}��&��{����\\���EM2u\u0011Í^`\u001fZn�^����\t�&�F�\u0012\u0013\u001fJ�K�h�W$@�Y\t__�qs�\u0001�\u001f�JС%/�8�I�\u000e\u001e��ws��6U�!Z)\u0016h�\u0000%�����y\\}/�A(�\u0007���L�\b�eb��5\u0015�\"j�=6�R�E/t9��t�92^c�\tB^��դ��e\u0011��c\\v�άn�\u000b.\u0006u\u0006V�?r��3�%Ld��7�.���C��\r�� ��B�{PT3r5�g8n�o���k\u00192�h\u0003�X,�^~��Z���f޼�Z����E{�\u001d(��d�%\u0012ω��X�-\f�}���?E�>,s�i\u0006�\u0015\r�N�V'��̋�p\u001b�v{���\u0001\u001bi��Pt��\u001a�\u0012�\u0015�\u0003\u0003�D�I�B.'bG\u00077t+e��g\u0011��^x��üa\\���\\QK�,�*\u000b\u0015��uM<�F\u0005\u001e�*��L!�%!,��s�x�܀� \u0001��F��S�=5�A\u001f�\u0007���L�\u001e1\u0007,j*��iJ\u0019�.�\u0003I��Z�w\u001e2�%ݗ\u0019�\u000b!h�\u000e\rW��c�%�y␂\u0006�Wo\u000b5\u001e�G<����w��\u0005�{�MHu�9�\n�A\u001aJ�\u0000����jD\u0013�=���t�\\\u001fs�U!g`\u001e\r�A-�B��2�߹\u0012�/��%�֠��o���\n�\u000b\u001a��/\u000e\u0018A\fb�$b\u0019��M�&�\u0014���C������q�3{d\u0017r�����\u0015\u0006`,�\u0015��>RGj7E\u0016���n��/�l�X�}E!dQ\u0012#�\u0013O\u0011�l�W��w*\"s�;��vv�\u0013�5�_'\u0002��zuM���g�#R���[�m����>L��\u001f��#�9i�\n_X�\u000b6�A0�\u0007Ѐ��c�\u0011TY�c\u0019�ҷ�b�%s\u0012\u0011�%�z�K\u0003�u#�b�\u000b��Mz�C�\u0015&��**}�^ܥ2r�Cc�\u0006�>���?�Q�b/7g�\\�Cl�U���i�\u0005��Eu;�UC�L���)J�-\u001f���`�\buOr�\u0018�5�{z�\u001d�h�^OE`Es�\u0012�=�����3�K�7.�R�\u000e�E�\u000bv\n���$�T�:�[ f�\t�K!N�\u000e���\u0017OirA�OjJ�!?~=� 0�\n��\u0006��\no�7rͽ\u001a�\nF�Y�\u0004U���\u0011b�/\u0001��Ҵ\u0016K���\u0016/�\u000bNZ|\n5���]ֺ��n�\"���A�\f&���\u0002h+�PI\u0004���wX�%\u0016�I��:v�G�@ڵ��A@�\u0007���c�4��E}+\u0001������k�g�\u0017�4���]�=E��)�d)�Z�\u0010*rSS�ڧB5vx�\"X��\b�VQ3\t�Xܑh��D��\u001d��I�Hڌ��\"]����v�y.�XڶK*.n\u000b6{���V\u0000\u001f�3[�rgw�ޘ�N\"\u0010�E�ݽw�-\u001b�m��:E\u0016��S��\b���4\u0003k-��6a��\\�`�\f:�y\u0002��{\u0011]�\r؂I�=�9�jEE\u0016��n,\u001e\u0005\u0005I\\���\"��}\\;�Ɖľ\u0013��=�4@�'\u0003+��̠p�&�Bg�K�\u0017�e���D2\"\"�W�{\u001f��j��\u000f<�\n|��vK�\u0012�*\u0004\u001cv\u000e�s��k���x��t�RL�\u0001т�\\+�]ok��\u0000\"&ok\u0016ܓ2��\u0013�AF�\u0007����f$έJ\u0018heU[\n�i�����Ӈ–�ɫ;�M�W�B��f*CH�#\b\t\u0002*\u000eo��\u0018[��\rZ=��9E�1�J�\r��:\u000e\r���\u0018�x�\u0019��\u001e���)-��hp\b�ٵ�(���\u000fR-\u0000�a��\"sP�\u000f�i�n�\u0005��\u0016���|�\u0005vV੃�}\u000e��j\t�V\u0019G!-P��$�\u0012�\u000bdH��Dc�Js�ߍ\u0014�\u0013�\u000e��rGi�\u001fK�B\u0014|h��Ld��b�g\u0002&0\u0015ꪠ�� z�{�n*=y�zDa�\u0005�s\f\u0013\u0016\f���I\u0014�-d�4\\@R��\u0012ua\u0002�25�\u0005�teK,����M\u0018�ö��\u000b����\u001e�{\u0019�]W�\n\u001e8���-�\u001f�p�\u001e}�\u0017R��\u001dB�r=���\b\u00197�$qϻ�\u0013�A\\�\b\f���b\fi\u001d&Y\"\u001f���\u001cW?�1!�8\u0017�ml�=�\bGO��?�j����\u0002l�#e=�_�)�yd�o��\u0001\fΖ��\u0000�\\\u001a���9\t/\u0011�\u000f\u0016a\"�F��H�_�[C�>x���9R/�_*\f ������h�n\u001fg\\���Eʂ��ʻs�\u0000�۶`j�XX8��O҅�)%HĚ~,쏆��%��(s­�5ϵ;J6�K.!א�H�Q�U6-����dջ�e�����D|\u0006�NP�-��&��o9�2.�ؙ������:�\u001e�\u0013�1�B%��̝\u0002\u000e���\u0010.�k�\u0014u�Β����{>R�\u001e����\u0002��쑞;�/\u0018�\r/Z��t�:�\r~&���\u000f�z?\n\u0012-�zi(���\u0010��`��\u0015��u�[�\u0012�\u0007������\u0013rnF\u0013�AQ�\b ���b\fƀ{�m\fT\rl�I�\f9^P�,\u001dz?�X�\rP���,rm�W�7^1�O\u0015���\u0002`\n�L��s��t�o��\n�!dSc��K�4���2��\\��\\�:\u0015���e\u000eZv\u0000�jG�����h\u0002L\u0006\u0000�����(�\u0003���D\u001b�a~\u0017E�ެU�/Ӫ4G��729\\,����W�]Gv߂c�\u000bX���V1>�E��p!��\u0012\b�h�.��ND��(\u0011����H7�\u0004�c!����UE'�[AX.±�>W��z��2w\u0018]�g\"��#,\u0000���i�/��coCĠ�j ��4v�޸�\u0012��h�[[0�\u0003�|2�\u0015��[A#�D'�\t���c\fj^�@-Z��d��nn���+�!��Ŏ��[��b\rD�y=�s�\t���\u0013�Aс\b4���\u000e�6\"�\u0012Ө/���ģz0�+�a\u0010k����`:��\u0014|�\n)KU#�A��\u0016\u000b�˺�\u0015�2�]8Y�#f\u001f�\u0010\u001br�U���*\u0003��((Dk\u0011Q\u0015<(Vˏ\u0006�6\u0000j�Qɳ@\u0006��\\�ʆNn�\u000fps�u�C\u001b=�����Т\f�\u0002\r\u001e\u0000p�?>\b�\u000f���\u001a�˶��jp)�y\u001cwD�1$�.H\u0014tr�Mv0���W����}}4���\u001ci\u001f\u0004~�C\u0018�Ak�ƌ�\u0012���Wy�\u000f�[ߔ7Y�فd)c\u000f\\�k�^�Ho�\u0011�4<3�7�\u000b��K�I]\\\u0013\u0013�c�8���F�\u0011xm��*���7�\r�,����\u000f5~��k�C�Y�&��d�\u001cI��Xq��peP�>Ģ��\f�ï\u001a�\u001fDd\u0015Yϥ�'��ns=���dG�\u0012@�\u0005\u0006����%�Kb�8��ug����9�\u001e�OD\f��p��\"���c<\t�\u0010~|[\u001a���6����\u001b���H�5ϒ�I�O�/��?��\n}�*\u0011Lk�\u001bE��mo�P8t�J�Ot}��~���S2}\u0000\u001a�Δ4\u0002�ꢁ�AA�\bH��M\u0013nĭ�Z�݄��y�~*MI��d�ySI�\u0017Uz�\\�Ԟ���0l��)e�L��F��>%�\u000e\u0003�\u0011$E,8\r`%��\u0004�da��a�/�l(�[]ek`\u0003k�{1��\u0013QVه}��\u0012�zpé�}{���7q�A�ɠ9��\u0002�w\u0000���\u00034R�P��\\b����/\n�/n�\t�3k�\\C��\u001f\u001e\u00133)\u00103\u0003��m��E)xd\u0006�Ÿ\u0018\"���\u0002\u000ey��`�*}\u0002ծf�#K������+�\u0007P_e���xw�\u0007k�0-�#�\u0003��\u001c\u000b\u000eܓ\u0006�n�6!*���qi����g�\u0013R����������T�ʜ~\fz\u00104�J5��[�jX�l�|���t�ⷢ��\u0012O����_�\u001aY'e��AY�\b\\���~Bĩ���� +���\u001f̫����\u0019CH�~\f�SMf*z\u001c\u000fy+>R�~��w()o\u0000���>n���\u0006K���Z���j�#��Jy����_\u001f4-tL\u001d\u000b)H�M�\u0016���;Hw��|N��F����Zi�e�9\u0005 ��+H\u0001tGDG_��\u0016�h��-\\K\u0016���1�2m*���N���m�ff�H>��2�%\\}1E;��\u001d;�XM\u0002=F�M�F��gl����\u001ar\u0001��\rg���'��t�\u0005�O�wB\u0019��\u0011�h1=�SI�B�ɈX��}m\u001d��\u00029�ݛ�A-�\bԀ��d�)H/BB�\\���y�}�OK5��\u001ex���q�ݾ)���MR�\u0005�mV�{T�Y�����Lz��\u0018E&\u00016rq�(����#9`��:\u0010�q�\u0007�\nj�^p\"�{\u0007:����\u001dy.�B�J\u0014�\u001f8��y\u00117�h�2\u000f�<\u0013�\u000b\u000bVe��\\�%\u0018L�5�\u000b_��EK�{\n���%����$\u0019��3_��<\u000ey,�4\u000b �\u001d��?�21�\n\u0010s����X��:��\u0011gF\u0010˶_iK��J\u0005(��O���ѡ����S48<'\u001eo��+�\u000f\u0016�\u0001�\u001a�mar�ɲ�^4`\u0019&��,(�ue���i� ��E.^��G�e���v�e��p��Je�\u001a��^\u0004�ѵ �A9�\b���c\u000e_~S\u0010bK)�X\u0017\u0005�Y���l�qD)���R/����\u0001�+��\"q\u0014�\u0000>\u0015\u0012@\u0016\u001e�\u0005]i���4&Ypmքe3�\b�(��0*4iq�@Ǩ�3@�\u0011�G�\u0003}�YESC��\u0014\u0015m�gN��;�!6|ȩ�\u0002�<�\u001eƼ��X/�R�ҰRr�l\u0000�qË0��Z�\u0006h\r4%���x�~���p�\r�\\�\u001c�P�&>\u0012\"聸#\u00019���\u001a2�$�A��\\7�7�\u001fV�1��]\t�ys�\u0018o�\u0011ɵ\u000et��$U1�Ռ\u0004C?�\u0016���\u001c\fsS�3\u0002<\u0014�<�Q����\u001f�����赞ChO^S�2#f�2�DŽ��m֝��0�%����\u0015ó�&��8��\u000e+��\b�=���#�A9�\b����r�I�!25!,5��5�@����\f0O���Dy�y��T��)\u000fT���QmT�2��N�9.�J钬Otk�w�6u\u0018U��Dj�U�2�q�\u0005�e��b��o���22#\u000e�l�\u0005 �l���E}��x�|S�Ҍ��X\tB�\u000b\u0017*��s\u0000��L�vƇ\u00055��HoR$��A\u0014}J�X�g�]��X��\u0018%��|�a�z�\u0016E�%\u0007v���D��c�2\u000b4�z��D��ܚmNj�M�F�\b\u0013Z\u001eO��+ڢ�Q�\u000e�G�,��\u0017�4�)�bhO�$��[�+�\u0006���K'�n\u0014����{�Y�\u000fck]�\\V�}��Ҵ�����=n\u000bE*ϫ�)�Ǟ>����\t�T�r#�Ai�\t\u0010���d�e\u000e�gȐ=*xSC�u�냚�`�,p���Q��\u0010Y9\u001fĮF8��c;���Gq7�gh�\f���Y`b'RX\u0013F�\r�\u0011��5�\u0014*i\u001d���6Β7�����aǫI(�ƅ-\u001e\\\u000172�\u0002�\u0016�߿�1\u001ee��m�n�e&�Ĝ�Z�L\u000b�w�W\u0013I�=\u0002�me�W�y �)��\b�PU/\u000e�\u001e\u0006_\u0010\u0014�yMi����cH\u0006���LBK�u�G�a���\u0000II�N���@��4)\u0010�\u0006\u000bg�[P\u0006�&����p���u�?E~����hzb�ʀ�IG�uȜ����\\e9�m���:\u0000�]ͮl1R�\u0015p��\u0004�Bzq�7,���1KG�\u0010�FQ\u0011@#8m��d\u001c�z�\u001c@n\n&��ǭ�'hJ�u^M�\u000b4\nJ�{��\u0019\tv@ڝ��r��\u000b�O���Ar�f�q#�Aa�\t$���l\\��\r�\u0012��1N\\\u0011e\u0015\u0011\u0011\u0018\u0011���`iw�\u0013\u0002*-\u0013(V� :��+\u0011(�=��S\u0017\u0004C�]j��ܮ^!�~k�0ا�I@���Z �� �_]X����/Ys�#Vy�\u0019QP\t\u000e�lo�/���\u0004��tb5��<\u0017@s̏\u001cbe�4��oK�|+an`���k�ʯ)�d�ע�Ê4�\u0014�\u0007��(xB��\u0002R��#Z�����\u001c�hʿ�_���\u00179!���Ʈ\u0019D�z��G1����C�\\\u0019�\u0001J9i�G�izwA�\u001e�#�AX�\t8���b��\u0015ᅹ���A�۠\u001b`;��\u000fhI\u0006⚳1@w]�o{Qe���ԋO�ֿ�ՙ�\b�#F,\n�߇�#.\rֺ��\u001a��{\u0004o�[ԟݹ\r�k�\u001al�1lTC�J�Rdž-��\u0019��\u000f��!ڥ_L\u00065��y\rQ\u00063νB/\u001fxXö6�5^V�r=\u0002I�\u0001\\ڷ�^k;�N\u001c\u0003\u001d~�S�\t�\u0013N����\f�\u000b��V�9��Ȳ���B:�R�^D��L���Z�s��#\u00036q�v��1���+�R\u001bXv��E{3W��X6���\u000b0��*\u001f��ݰ\u0004��J����M\u0007*��&�#��&xJ�r\u0013�pv��áV�K0\nU��\u0000բmKw��z\u000f�\u0002}�Tq�\u000eO�f�GO\u001ax>���4����6އB���=@J%Rn@@�c�]�,��\u001b��\"�AS�\tL���i��[s�DA@�Ros�Z�|�^ۨ{oL�'R��_\u001a��\u001c�\u001e�{z\u0000٣�d\u0018\u0017~��;�l9�v���=l����\u0018���T�\u0010�$v�4�La}���F��\u0011\u0001.e5��kU�AN$#I �7�\u0014Dl�\u000e�M���S,mC��.&���\"�S\u0004�gZ{�����u܀s\u0002AH�,��\u001d�)����H.VO\u001a\u0007I���K�}+��K������~�8n����M�ż�H��rrO��\u0011�\f�%���\u0011}(�=��A����ޝ{\u0017\u0018�,�3+�:�.�=<8ڰ���D�6�e\u0015ښT�慳�\u001b��w_\u001d�\u0006_���R�\r��\u000f/ݩ��r^\u001d��y'ΔW+\t #�&\u0003��D�M�|s��Z\u0001nI%�?�@Blm��d�$�Ab�\t`���bs&��nҚ��\f0v65�l���.H�/G,�\u0013)1\u0007\u0006e2�\"��\u0000�\u0007b�V�#��\u0010��K��x��Id�\n�\\ư���c�F�L\u0005�d����f���T�\u00017(0�J�iƊ�Л�\u0015A$|��ԝA�o7��\"�z��ェ�C�)��\u0002#�c˖�f[C+*\u001b\u001a��t\f��5s\u001f�\u0000~��\r<�p�27,�v!�U�U\")�����Ƞ\b-\u0006�y�U\b/�P�'\"\f��#��1\t�S��!Mpd�5P瞱Ddrߢ�Lo)�\bt\u0004^(`�х�g:\u0015\u001a���\u0013��&\u001d�0n��{�`jf_��~)�\u0006\u0012\b{{K�2dfm��!��ݠ��\u00001M�퉴�V�'��Y��ߒ<'��\n��z��Q�㢫]:��\",��\u0019\u001c�y��\u000b\u0002K�%�G$�%�Aځ\tt��L��PG[s��\u000b���H-+E\\\u000ey�`P#\u0001�\u0010��\n����\u000f�3\u0011�|�L�\u0007�H�!'��X۰^�\r��\u0003pU{_\u0012�G�j��\nEX��n>�\u000b\u0004>/�HҌ�\u0016\ru��b���\\�bzHrM`S��W���8\u0000B?� \u0001K�_�\u0015E�O\f���&����u�i��\u001d�I�\u0003��q�ܮ\u001aɪ��$�ؚ1�r\u0013�6�\u001dG=�\u0017&��t#��[���*2p(����z,�J\u0001�&�d\u0010�j�*\u000ev�VrMd}.%��[d�\u001a\u0005�3��v�'�J�׎\f\tQ�\u0013ѻu���Q���j���\u00061I��?A#��r:\u0016r�\u001d�tWkԉq\u0007t�:�1$^(›� ��\u0007-�J|,G�\u000f��<���>��J�S�&I������/✱7��xm�X\u0007�\u001aȣ�\u000ej�i��y���0�\u0015o*�\u001e��\u000f�'i\u0006�\t!\u0017�\ro�\u0013ж�\u001a�G5��*6mrx����\u001dk\u0016k��)�\u001d\u001bU\\ӣ���ة�5\u0005�(3�\u0011LM\u0007\u001d�W䷓�R\u0004\u001f�֝:3���$��m}�%��\u0012H��v�|��Dj��[�A:�\t���X�Ցg�M�|t�\u0019~++!׬,GHpd��\u0011\u0002*X�.�1�\u001d\u001c��^�Fc\u001aE\u0019�*,��>B�UЇ��}m�%Fx���jY�*!�y�\u0013��\u001e���6��T\u0005Q\u0017׾��~4j��Q�ik(0\u000f�\u000eR`R���J����-#�]�tݞ\u0005\u00063��\u001fƕ��\u000e�\u001c��d��c/т�:ʱ�߰\u0002��U:��E�_q\u0015�3at^��\u0018@����n�\u0018\t�z\u0018\u001aU�p�\u0000m$�\u0000,\"�s��\fs@�AK�\t���X��hd���\u0018M��Ag�����Hp\u001až�QM'kM��w�z')�CQw��h�65�y\u0011\u0004\u0005\u0018��p=\u0014S�]��\u0006��g�-C�.Ra����s�\u0015x��\u001es{ՒvS�Q��\u0000��\u0011��������g�(��$��ؓT/����\t��\u0016\u0011g���\u0003��_�y8H����J\u000b\"�\f��R�˳(~݋<7�\t�(y���]gߤ\u0004*t�60_b�^���W43�\t���D���\u0001$�9}�0�\u001d�?�r���\u0007\u0003�A��B\u0001@)�a\u001f�,�e�N�\u0019!�\u00077[��`!�yJ�\"\u00147�}�9�5���G0u\u001b\u0003�w�V,2Q�B:�-A~�%�ϑ��mf����Ȧ���L\u001d\u0005mɓ����\u0016�\nz\u0004�\"���+��A7�\t���Xм����B��\u001c+?�#����$�\t\u0013�ke���Z]��\u0011�\u00060��@uP�C\u0006�w\u001eO\u0014͡i�ַPL|q�k�C\u0000&\u0019Z��\u0011l�����e�d�=�n\tU\tN|Ե\u00043���>\u0011\u0016v\u001ax[�>/����]�\u001dT���f�\u0013��rҡܓMȷ\u000f�$\\\u0016F*�\u001e�Q\u0007Oʍ��\u0015�\u0015�\bc.\u0001!�a.�/������C+�M:\u001e\u0016�@��O��J�\u001a` �Hc^�)[\u0018����T��#��^<���̓\u0007ۇ3�H/K\u0004\u0007�ClJ+���_c�����xiI�P�\u001f�9\u0014F��=[���l>}�>=g�A��\u000e|\"�anՉw�}eE�����T���\u001e[T\u000e��ǭ���\u0017�2�A;�\tĀ��\r��\u001d\u0016��0����\u0006b��h���ku�z\u0004^�-��_\u0014m�ln\u0014Lh�N\u0018��ڮ���\f���\u001ak\u000e�0�\u001b\\�������h�[���$>�\u0007���-�Dդ�lCW�\r����\f=�\u0004�\u001dJ��j0�]9�����\u0006�3�'��.�/\u0007���a����\u0002^8�:\u001b\u0007w�v���ki^h�*���K\u0019=\u000bn`��<�\u000elo�\u0004³8y�P���\u0010�\n��j���\b�-�0Gn����=\u001e��h3/讀��3؁�\u001d\u0013��\u0018�[ECL+@�4R�\u0004�/�!\u0011_\u0018�o+��\u0011��\\�r\u0011\b���@i���\t���\u0011� 1J�u�Ŗ�\n�k�9�å\"Zj5:X-?��9�{�hߣA܁\t؀�M4*-/ߦ�+���d��)���\u0007\b\u001e)\bK���� ��\"���1�2s\u0006�Pk\u0007������\u001c�'h�,b��73׏��\u0012�3�8\r�ѐ�\u0007�6�\fZ�X\u0014�hR�\bT\u000b{_~��P1�.&�'�T��\u000f����;g��C���\u0011�4\u0015\u001e4XɵY�\u000b�I _>�����H�\b�d��&\f���|�4�S���\u0018�\u0015�\u0018�;�?Z\u00185�*#L9k�m���H��v\u001b;bJ���]Cc�r�LC%1��-�ǟɦa��o�\u0005����e���A��\u0006hFZ��\u0014\u0001k���9��3���\u001a\u0019\u0016\u0007��b\u0006\u0003�&���.\u0019�ja\u000f��s�D�إȶzh�ŷ5\u0012�B��G\u0011dp�D_�t=\f�qE}'�T`%\u000e\u001d\u0003\u0017��0��ħ[��A��ș,�yᇭ��G�%4\u0007���4|B]t\u0003\u0015d�~\u0006��Pm�Xq0b�gaI�p��P��Z|��������\u0018=�\"��f6�L\b�\u0018=5\u0014��\t��:�†��VD[� N߲��\n��B�\u001b���6w�b�Y�娇Q �u+v�j;�9¢�y���AP�\t��M2�\u001f��\u00121\u0017���7-�v\u0017�ޥ\u0017���Ԅ���hɄ�s}\u001d\u0002A�?/���C�\u001a�\u0002\u0005L\u0000�\u0013\u0018\u0010rS\"�F#ԓWmIF�.� \u0007\u001c�z��n���i7�hU��mh�t�\u0014���Fa�dq\u0007�ة\\V�S\u0014�g��~�k\u001e\u0017%\u0017�\u000f\u001c��\u0001v6��&�?\u0005�����q�z[�< \u0012�i�[�!Sf|�z��R�\u0019��F�q\rl����O$gL�4a3d�����\u0000~��R���\u0016�2\t�h\"�'\u0007$�\u001ej�]U�\u0016J\u001b\u0018:\u0006h*��<�& R˛-�\fN��~���s�mj��NV�e9�AkQ+z�l}!�>㹩h�%��_X\u0011d��љ�Gx~\bb�f�0�U�,؂;�!\u0018\t;O�\u0019`��E!l<��w�\u0015\u001d\b�{�w�����\u00061�,���8;�v�*R\u0005�\u0003tL�\u0014�=V�ӣ-�;�\u001d��8�_\u0005D�\u0015�i*��p+\u0016@�o�he\u0017CX����V\u0000|�JRȞA�5�%���[]\u0016B���5\u0011��-tK���Ķ\u0002i�\u0007&-P���X�ǽ֔�|\r,>�*�'�\u001e���2!�9���9rSg�� c��q\u0015\u0018-��1\u000eD���AF�\n(��L�t\u0006۩�$[�b�\t�\u0010ˏO���\u0014�˔���;F�}����2�\u00138�{{����p\t��Wf�����[�5�Y�\u00016\u0006k]�z&��?@7\u0007\b�7ˤW��t�[\u0018Z���|f窒�<���e\"�Q.�\u001e�^.��C\u0003G|��\u0018_�Ys��c\u0018\u0011������|��I\u000e���Ҥ�ã�@�)j%�Cj�3b}��\n~A�\n�!-��W�Gw&�>�\u000e��� �V��ݤ����l��\u0013�\u0005��>\u000eC8�\u0019=�\u0011�\u0017ӛ��\u0018J\u0012�K9�\u001b\u0016�M�{V��\u0018^N\u0017��������I'�࿻����9X���_��\u0011\u0015\u001d�|��ZBM\u0006u��\n��\u0005�0��y�di�y�\u000e�\u001a\u0000�TX��ފ>R��ۣA=�\n<���u����G�à�����Vő�ؠ�z�\u001a��\u001a\r���Y慘e���\rg\u0011a(\u0010��Ṝ�|�\u0000|��;���/O��Ⱦp+�:P����2�1���\u001a|�n�f�/�p��三�@c�ٜXk�+�\nVtKT�4����uE+3����S�f�k���o�\u0015�Ʌ\n��\tp���\u000b43�\u0003PQ1�[7�M���Ϯj�B)��ē�\u0007���yD����ţ�7\u001a�\u000f�b�6���|}��J\t\u0005���v��W�AP�\nP����[�\u0005�˚\u001f��\u0014�{���i�@�j�c!E�\u001c\u0012ڜ�����]$��[\u00056�M_r�\u0011�\u0011\u001c�«�\u0017���08$�J�\u000e�|k�Օ��C�\u0018M۔%vW��T\u001f�\u0013~X��\u0003L�#����I\u0007���\u001f��!^�h���x�\u0018�Y�g\u0018\"a4\u0017���ͦ\u001e��q�{ӿ��4�����g�C\u0007U��e�T�ig\u001e\u0005J��͋]\u000bS8� fW�,��\u00032�tʧ����q\u0012�SL�#[k/\u0006�H�]�h\u0019Zٗ�N\nY����hH�\u000f�՞�@�Y������kL\bM\\��{ɒ���\u001f(Q\u000f�:����*��xw�U�&�\u0013=u�pTk\t\"��\u0017�$�\u0013�#�kaXɗ�\t �\u000f⛾�{\b����\u000f\u001c)yY�[y;����W�B\u0004�\nd�����hʭ����_l2�\nԟ���{3�&��V\u0018�+\u00167���R��/b\u0011�g\u001dnͿ(&)\u0000���u\f>���:�\u0006� �po_�\u000eG�Z�o���\u001a�\u0010zw��\\��\u0005y1C�q�-}t\"\"x\u0015;(�߉�9�Y�BNC�$I�k��\u000f�z+�z���\u000e�\u000b�\u0006�c\\i�\n\u0019\u0004bKI�d<�5�\\�A��\u0013]�b?N����\"$�#+a@ABB��\u000b��R˦����}l��g\u0012LP���\u001b\u000b\\>��4o�\"�P˵����\u000f��\\aP�\u0019�[�\u001aeA��ZB����u��D�^�Q�A�ߡ�\u0003F�x�r{�!,����\r\u0019&�@7΄IYH��w\u0000q�7���5'\u0001�����\u001a�?_[\u0015�U���\t�K\u0003�J\u001c�o���C:�\u0011[$W*B��JOk�\u0002JqI\u0015���\\�ղ\u001a\u0016�\u001e&��R^�7\u001f��'��:�fP����Eǣ\u000bu_\u0017ǩ�^c�3�z9C%MP�n8�\u0015��\b�1��:>�v�\rM���\u001d\u000f�)��Z����]?����\u0013.N�[�\u0005�\u000f���\u0012Z\t����GHw\u0005\"���]�<����N����Z\u001bb\u001d�fm`�\u0011������{�T�atn�5�l�W�Ad�\nx��%�d���ot�.Lnd���|�\u001f\u0012\u0011�K!��q̸LJ\u0006\u0018�oh���b�K;�Dp;�k����<\u0016l�$�P\u0006�\u0006޹\\,�r\u000b\u001dqy�\u001d\u000e@_wT�\u001fٱ�\u0013E��\u0012�3\t�C\u001e�QI��\u0005\u001cr��a J^\u000b�Nl�猰���vtL3P�\u0011>���\u0000@G8+�\u00007部\u000e�m�\u001bm��,��\u0006M���}������\u0001���^&�D��ӆGD�l[:��q��u7�)M\u0018�e�*iH\"\u0006\u001dZ�������zY�\r�!�->?���^>+��f�L�*\u000e;�5�\u0000�N\u001ev�\u0001�̡\u001aT*�\\(�Hsq`\u0019���!\"\u0014 ��Ż��\u0012�����P�s�5\f\u0004�S+��+�Dr\bG��|�A��b�`�0d\u0018>��Q�X��#���]�t\u0017�4hI\u0001\u001f_�\fh������3�A^�\n���X�61��QWyٻɋ����\u001a\u0001�k�\u0011\u000e\u0004�\u001c� �2D�S\u001f��=� =j��й�T��ˎ$2���5���֖�c0.�q��r\u001b\u001cV3���\u0002�\u000epE���Rj��L\u001c|j\r��jS�t<=��Z��|��`Ґ\u0000�$\n�\u001d>���K��\u001c\u0006\u0003y����\u0003���#\u0007�\u00049��\u0004�/�R\u001de��u)����Rydȝjw�~_s5\r9�#�\u000b���S\u0018�@\u001fc`&�c\u001b]��o��j��\r$o�3W\u000eb�hmc�\u0000\u0003��L�\u0017�\u0013\u001bSP\u0002�'��0\t�Ԡ�C_�����\u0016\u0004�\u0014c�=z�U\u0015_������-���4)���t�8�b\u0007H��f\u0007�\r̫���\\��*֪\u001f���R`W��A_T��Lkց��ViW��b �l=���]\u001a*ת1�X2ȣAR�\n�����ĥ�xD\u0004@��\u001dd�\b��O'�_\"!�p\f=�r�s=Ӷ�\u001cy���*H*\u0017\u0006&n\"�\u000fR4*.�:�<��B�f7_Q�M�HPd�\u001d\u0012��V�!Uy\u000b�%Qd�!�CEj�\u001egO�V��3�#\u001a����/z���x��p��\u0019Z;9CE\"T��\u0014[������\"�k���e\u000f��\u0006�\r�7\u0018�Q�\r\u0014�$稙�>��X\u001f��$�`\u001f\u001a\u0012H%���\u0019\"�QA϶�(�6��1/�nj��~���\u0012�s;�גj��\u001fK��a�+P24=\n��̏\u001a��.?)7\u0010\u0015���})�O�4Q�s?�D��W_nqP�M�+\u001f�X\u0005\u001f\t\u000eOh\u0001aM�x\u0014��k�׿A�9X\u0004\u001bnH8\u001a\u001e]�ti�R�#�!H\u0006���^\u0007V@�����q�\u0010�AC�\n���Mb?���q����U`�e�p�8X�Xy\t�j���\u0015)@�V\u000bр�c�&��ꙓ;@��\u001a\u0003\u001e�G����A�\f��\u0014\u0017X��\u0005�\u0000�<�L~\u001eR+�\u001e{\u0014J'*�?\u0000�Y�\t��f�8Tkq7��|'\u0002���ߘ�|��'�. ��6@*y[�m��\u0018�x`\b.�\u000e�P:��\u0002�\u0010c�,�>2��b�R,�\u0006�䫎C����r\u0001%?2��4��\fu��f4\n&U�\u0002�=g{\u0005[�{�?�������ʹ\u0005��|\u001ba4�Y���ytN����S�A�,4�؛D�7�\u0000l�i\tT�\u0000۝\u0001���\u0018̴�\u001b���(�M�\u00002M�\u0013Y��\u0012M��]!��,4�Ը�~C�91�xh�\rv��X���\u0005�\fd�AR�\nȀ�L��&-�\u0010��]�:�S=�\"x�\u001dM�\u000f�+�[�o\u0005_����7D\u0019��M�}Ud\"\u0015Ɨ���>��v\u0007�N��4�\r�3�N�\u0006Fu>_��\u0004�@���7�\u0003���AK�\u000f���Z\u001a�\u0001�*�ZF9\t��#\u0019\u001c�2K�\u001f�!<�\u0000���\t�\u0018\r����ǷBê�/)L\u0019�5�\u0017\u000e�~� �H>�]�3M#Ƚ���j�\u001e)l���AzlG�\u0014=�\r?j>�k�<4���$�\fT\r\u0007�vU��^0�\u001a\u0001\f��s;.\t�z�)ε��]�du�H\u001f=i��\u0003'�\u0014\u0007��i�xG�j\b�\b�4�\u0005�\u0007\\\t��*Ș<�47�&}η\r��;;\u0017W���&!\u0011�y>F���W� V>9)!��E�)C�\u0000>\u001d�ͥ��\u0003��.8�-�AW�\n܀��V\u001f\u001dVCI��\\�3��R^}�\u0002�y\"\u000e��/�\u001ev\u00151�1�LR\u0014�\u0015�\u0006�\u0013�\u0010���=�G��\u0011N��U�.V���0��ۡ��Xx��$�B��71�ď�\u0012ZAb\u0001�i\n/�*d��/��*P!��[\u0000iW��l����)�\u0007_H�x]\tz�\"��|�;\u001ei(�\u0016���y��\u0011c�^'\u0015aZ�\u001cz�f�w1ш���Ț�ש��޵��A`�\u000b\u0018���d���\u000f��\u0000���%@q9P6�\u001da^(%����7����@\u0004���T��\u001a�\t7UG��-jd��\u0002��K\u0001j������\u0003���?|b*4=\u000b��IN���� ��z��N��j|'��j�K#�\u0016���X��/�h\u0018�'�F*�e\r�w\u0007��\u0015\\|�\tJ\u0016�n�C��k�r�$��\u0006i\"�Xw'1�&�N�%�;FJ��t�ʠ\u0007P�\u000e���M7��1\u001f��*�!���\ni�H\u0017E���\u0007\u0005\t�6K\u001f�\u0006�����,fR�)��١��2e�ʉn�:I�U�m�����[w�=\u0015��\u0004��\u001d\u001e�\u0006��\n�yRkY��/\u001f9K�ޘc�QaK�\u0014`.�+%C,���4(\u0002�I��\u0007��\u001d8e�?\u0015i����s �Y���Y�Ϊ�*��\r����cvKR7���Ab�\u000b,���b\b˭��HDY��I�Ռl�h\u0011U^H\u0016\"z��]�^W��\u0004�I�i��\u001f�5����8�����\"LV+`�\u0014.�\u0006\u0005̅�҄\r�X�V�fT�I�$\u001cs��\u001c�\u001cw���B'H+�\u0005��\u001e�\bqu��\r\u00112A\u0005�\r{%=V��?ȶ.��\"�\u0000\u001d�X�Y�d$'�aA��t!�I\u001e���\u0018tp!�\r/0+_����\nx\u0001K��\u000e�<�c���P�þ���W'�qp\u0014vӌ1�,�eޔ�T\u000f�&�F\\�U��7\u0002]ӱ��pkx�q�ʔ�5y\u000f����G �EF�ٶ^�O�k�0\u000b�VF����'�[���vڰ�s��w\r�b�y^>\u001d���ٗ;ST��\u0013�I��*�`�-\t���q���:\u0005N�Ƽ\u0002\u001a��mV$\u0019\u001d��6�IQ����ҵ��Ap�\u000b@���p���\u001e\u001a�\u0006~�\u0004�łN���1Ԑ��\u0011^�D\u0017�0�\u0013Z\u0019�͎� Q�\b�W��;\u0019�'�\u0007V\u0005�i?d��\u001c\u001as~;\u0015�7\u0017�D%JKTި ��9\u0006�F�)�u.\"Jщv�\u0012ҩ;\u0003���Φ�XB�!H�kIG$[]۪�R�\u000f\u0016��l�zxN\u001c%cJ�\bW��^��d��p\u0005+:e�¥l_�Ϊ�#���rZ�=j�>��Pݸ��&�j�\u0012q�,���#J�>�ʩ\u0005�-��\t�\r�ߡ���J֜���uf�C)K�\u0012�\u000e�\u0002=٩%\u0016\u0014�+׷0\f7n����\u0016\u001c��xU\u0000��\u001e3\u0001����\f�+�B65D_ea\u0018Z�\r���Ź\u0006�K��y���WHF\u00159j� ��rK�����'VRC_�ϒ��\u0007үRM��\u001d�\u0002�0y\u0007�[�d�7L����:��6v\u0003�M�ն�Ai�\u000bT���bW���zp�,$�A�7\u001bB�\u0018G\u0005![�����4\u0007��\u001d���H�\u0004\u0007u�����7�Iv�X��|*�\u0005ڧ�\u0019���a\u0005jg\u0015/F��` �hا�.s���P�\u0001���\u0005Jw\u001c�ny�{\u0016z��V�;G��ڮ��ZU�\u000f,���\b�I\u001f�JG��qd��8����\u0017��l��8��r&#��\"\u001d�̚КT�Zc��\u0015s}����2X#��0�Ŭ�\u0011��\t����W��yg�i�μ�;9'�A��\u00111]�vK��J�p1s�\u0016A���T���b���!^Ȯ�ZB���\r\f1{���bA����Gc����0\u000f\u0006��\u0001U�.@��=+�\u00148=c\f_o<~\u0004&M\u001e\u0006x��E�n��/�z��\\\u000bA|�x�\u000f�KR]IM���4��Tk���5�Fu���Π������Ag�\u000bh���f�����+�Ld���\u0004�|*N��6Z�\u001d\u001cq\u0003�K=+J\u0003\u0007�\u001f�gr\u0000�tǰ\fl�\n\u000bO��B\u0004E�[����g?>1�\u0001�^G���g�#���H��UQ^�\u0002h-��y���c�|C�����\b��nڞ>��\u001c�'7�T0��7řnv��\u001b_�@]%��\u0019����N\u0012��\u0012��u��V{,\fc̳*�\u000e�l�)!c�aU~A��\b���Jه��\\\"1Ou(�ދ���\u0010�O�c�U��)�\u001d�ćL�o�3\u001d,�:��No*���\u0006�s�1\u000e7b��%�����ПW\u0013�\u001b��xO\u000e�\u0002�Q+q��^S���,%6>b�\u000e�iF\u001d�.�D�Ã���߰:`k���N#չ,\u001e>���*�Ng!8&9�\f\u000b\u0002x���\u001ej\\�ɬG\u0013^\u0012�njH�\u001ee����\ru�lI8�A\\�\u000b|����xm�)j�)B�C��\u0012�kY��\u000e(G�M\u0012;\u0017{_��~H$R��@���\u0011\u000f���\u0014��H��$�\u0014\u001f�\u000b��\r\u0003\u001d-q>M���\u0014�Y��FS�e�֧]��y�ֈQY��/{\u0015�\u000b�R\u0012���W�\u001d�|��\u00015l�dm;\\��߶0��,_o���R(\\ ��V�M$9��3����7��B]~��׬FJq�,&H�ۑ��m��'e]@0%��Wj�;\u000e\f��|tp�9\u001a8�|�\u0019ֿ2�Gr�\rnOԍxs𖏏�\u000b��9@����d\n1B��\b��F���o�%��\u0013\u001c\u0017ti6�\u0017�\u0018Mw\u001a���~��\b�4��ȿ'\\�4�G��<�:75��,\u001e\u001f{��C���\u000f��\u0000\t�\u0007�\u001d�:��zӒ��Y�_��\u001e�c|\f�!\u001cZ]N\f�9�AG�\u000b���X�6i���φ0�cl]�\u001f�}槶���+ܝ����1#�d�\u0001\u0006%P�6�+�S��#h�'`�l9?~��V}b��\u001b��\u0014i!��x9Ay�4�w\u001f��\u0012�v���X\u0015��\u000e�'��5�����\n\n!�H5\u0017S2L�Q�9�\u001f�\u0002\u000e��K>��u��;�43�tΕe�\u001e�f��*0�zlM}勞���ۛ�,\\B\u0014�\u0004F~�7\u001b�����Uc\u001b_\u0018��ߔc��C\u0004��n�\u0019\u001c:2���\u0011���O rr���\u001ag�7���\n�Q�\"����d���'\"j������⤢B�~����۝\u0018�7�C��D��d7���Ӽ^]\u0011��^�\u001a\u001c��=�)��\u0007f�\u0004�B�\u001bÎ@̅���$\no�\u001c�\u0012\u001d�G�A5�\u000b���X�\u0004�\u000e\r^�Yӛ��dz�&�� \u0019a���\u001a�oF�f��I�1?��0\\l��9�[\u001e#�_y��J��N��*\u001e룭�K��CL\n\u0003m�>z�o��'|Aj`����;�K�Ӗ�Mq׸_��\u001f!\u0006,Cf\u0010/\\�l$���;?�\u0016:\u001c �d\u0014�!J6H��7؛۽�\u0004�\u0005�B���%P.\u0019��\u001dD�b\u001a�I'��S\u001d�������A���O����7�&����&�\u0000 _�;p���\u0010��Շ�M\u0002\u0011��\"ENvꤩwI:<�x�>k\u0015Cv�f*��#\u0010��3���H^�\u0004#�b�~�d�\r*�pƸ�\u0013\u0010@)x{f���t�?�0\u001d��ao{I��[�\u0004c\"S=���\u0012�A1�\u000b���Xм�\u0013�\u001e�%&�\u001c\u0004\u0013���L���g\bw�\u001e�h�B\u0016t8�\u0018�BB\u0000��j[\u0016\u0002k\u001c\u001f�^�x���\u0002���o0�\u001df�\u0016D��\u000b6s�\\�&\reַ6�ͻ��Uڽ\u0012N ��7�5��\u001c\u0013\r\u0000c�cxE\u0005�\u000f\u0018H#*��qȌh\u00100��^�\"�E~D�[��=�í�G���5�D�c{�ƾ?��ceD\"7\u0007I��̧\u0016^��V`�V���\u001a\u0000�[�'Fm΂Ǒ�ä-�t/�fu\r��� �?�,Hx\u0006Vb\u0018\u001bJ������E\u0014���'B�Ъ8�x�t۹t�菗\u001a�\u001d6(l���:\t��%\u000b���n\u0007\u001aO}\u001a\u001d�z\u0013\u0003\f\u00072�Z9,m\u0006P;��b<�&x�AF�\u000b̀�M$��F�� %\u000f��\u001e&i�\u0013����RO�Ҿ�TW4َ\u001d�\u0019i\u001b�P6�{\u0017խi\u0010}|`f�\t�퇿��\u0016�/cR�\u0018�f\u0002��\fl\r���Ҡsj������\t���,$��\u0005\r���\u0002�\u0003\u0018��P@\u0006���\u0006\u0014�\u0015,�\u001d�ɳoj�4G��\u001c��-�}�\n����]j/QY��ձ\u001f�#\u0015h�\u0019��>�gW�UzW���x\ni9(�\u001f8�IJM�\r\u000b\u001b�\u0012���g���+�5�9ְ�����*\u0016u�U��ߍ�X*\u0019|aU���a��\u001cGyG\u0016�����\u00003�\u0010\u001b�s�)��A@�\u000b���L⩣�(V-ͷc�\u000e�\u0005�\u0019\u000f���sz�8�+1��c�=z�\u001d\u0011���*Q��0C��(��W-F�[\u00108\u0000\u0006UN�N��(��;�o��oxM\u0012��\u0013��ħ�:�qTÝ�]'�8\u000f\u0003\r\t��\u001f믟�rY�a\u001a�H)��U��|s�\u001c�,�r�1���Z�J�%�i�8�O�S�A\u001fZ:���5���\u0001���‰K�D�T8p�\u001b�\u0011�o��]/%J�j\u0007�om`����]��P�\u0005�}+s�62ï�\u0016U1�X�r?�$�:w%Ȑ�\u0017�n�>Q1P��\u0015�2Dܣ0J��\u0015�}��t�Hp5� R�\rǷ@���V\u001c�/�U�\fB�v\u001d\t_\u001f�2o[�\u0016a��f����M��v\n�\u0018�xcϫ�AK�\u000b��L�[�c)\bk�ެJ�pZ&\u0013\u000eћ�G-bzÊ�h\u0017��JO&m��E\u001f\u0007���?I\u0013\u001dbo�&d؀S�wKM�\u001ecׇR�\u0004\u0005��`d�����7/bJ���\u001a\b>0\u001aSv��0.o��\u0018�\u001d�@���\r\u0019\u0017m�ż7\u0014��ab�Z\u001f��v��\rm`\u001a0��]I]\u00159��pd}�¤�\u00177��ñBJV�li\b[�]��\u0016\u0000N�5�*{T\u001a\u0012}\t���U��\u000e\u001b9�����a�fw\u0005leMb�٤��6�\u0002/�G�����g9����\b�#��W��\u001c��r��\u0004Yy\u0012�x\u001b6�\u0013\u0016��G��\"�i\"5\u000e��X\u0000\u0012*T��\t`��@��L=K�&&�UKE��\u0014\u0004�!iS�?h��.2�s@��+T�ς\u0012`18G�am�AN�\f\b���a�u�����x�,�$Mx�{ñq��\u0011U������$oe�mi�S��8�\u001d��_\t����\u000bޱilb���\u0001���B�\u0013\u000f<�#L�����6�u&g&&=gGI��MD��9i\u001e�\u0011�҅\u0004\u0010�Ľ�\u0015\u0002��s� >��\u0012��/==Y�h� |j)~�<~����\u0013\u0002�����WΔ�.\u001d�t�ãAO�\f\u001c���mhv�#\u001c?\u001f\u000b1�=8��0�������D�s\u0010�I�'cvp�:�i_�E�&B\n�\u001b��\u0018h�'\u0017W�fܫ^\tmI��w(���\u001d5�La\u001a�UO����Ŀ\u0010\r3ꍾ���9V�\u000b���9w}\u0018��báp�fCMv�DQ��E\u0016�s&�\u0016\u001c|�Ĭ�\u0005P\u0014��0(�6����\u0018W\u001fE��}8d���ޗ�\r�Ns\n��yˏ�l?B��Ӟ���\u001c�<1�*�B\u0014��:9��{\u0015����U�Y��~]b\u0019)\u001c��p�m�CO\u0012F�\u0007&�F�3ƒ�����+��^��݈v\u001b˯Z�.�i�\u0000�\bjS��\u0018\u0007e+��Q�\"����0�}�oS���:\u0015Iإ�5�9)ãA_�\f0���b\u000b��/�r��W�vM�\tci�nV\u0019���d\b�L�P$�f7��X�N��\u0001�\\6��]���G\u0012_�2��\u0001�6��4qjOA�\u0000\u0014P�r�y\u001f�vv��2g��}��F:���1��7l��6��\u0001M\u0018���[\u000f~b��l5�ֻ,�d��\r���8�p��d��ß�~���\f�&\\���rC��\r��iԬ�%����Z�̝��h �poH�\u0011��\u0015�\u0012��\u0000\u0018,�\u0016dh�\u001b��ddSiV\u0018j���|�X\u0019X4R��V�'9b1`.�db��,��om���b2!����7I\u0006@�o���\\\u0003�\u001f�uFrj��Z�L��2�gOD�-\u001aY��kO��U�Q�\u0002\"sĶ2���\u0012!f�;�8��Y�3�ؘP\u000f��\\��:��5�J�ٌ%o���\b�g\u000e�ģAZ�\fD��M\"����\f��3��&��B@��B�\u00120ROU�*q�\u001fǀ�˚$f\u0018,��b>+��C��\b�F��T����v�܉����p�C�݋\u0010���\u001cY�\u001e\u0011?�s��+h0?���H8�2\u0001�U�o\u001c��m��2�'#gs�\t���!�\u001e�2���4QУ� 6���4��`\u0018��k%���������\u0004��>�\u0018E\u000fn���5�À�\u001a\u0011����\u001dZ�s�N\u0019x:�Ïm�V�()W}H�Ǿ8�w9\u0014��-���5�ߊ��\u001d�(�?Y7��)��P���>Q��Mo\u0004F'�Y�B��75������\u0002\f�<�\u0018E&�\u000f\u0011H[����.���\b�$�p\u0005D�8��\u000b�w\\$T��D@��g1�ڽ) \u0017\u0011S\"Z��P�\u0005^q�\n\u0006�5.�2Eo��A��\fX���b\t\u000fa���G���)k\u0019�匼�\u0012\u0016\u001f�Bd�'C\u0006)\u001e�NPn��\b̫\u0012�Ѡ��4R7���\u001f$꾌��uRVp���]��L�f�5t��̖�0:��LU�s����to��9�Q���=�Gf\u001f�H}�\u0012a�\u0015F������n��t�\u0001R�Ր\r#R�f��#�$��I�\u0010�K!��]��y\u0019���qZȈ���\b�+�$�E�Ӯ�\u001e2v�'\u0000/\u001c���j|�6b\u0005��\u001b���}��\b&ByQKZ�L?�$>s��w��Ž�\u001e�vQs�\u000b�DΌOp�,[G2\u001e,�\\4\u0006���\u0006W��!�`bQ�kiŮ����W�E'��uE��ez\u000e�k�A�\u0013�Ui6�P��\\J��\n\u001dG�ͬk�V���\u00025r��ϔk���kk��X�dԑv��\u0003!���6\u0019�rV9��b\u0015\u0006\u0007�r\"����\u0016�_���x�q���2���3��\u0000ܵZ��\u001e\u001c���V�򸡪\bt}=nBOɈx�nmO\u0018\u0007~��\u0007���ݰũ�O�r���\r��\b\u0016y�h�B�v)�Y�ݞ'q�\u001f�s����J\u0019X\u0004h�\u000e\u001f�x�̮��Ϲɠ�BḮ\u0000Z,\r�����E�Ax�\fl���b>�.^#\\���^(E��q��Ԛ*��k66|�n,��\u0019y��\u0007\u001e׿D2�/U�\r\r��׋����|���SOb��6\u0013\u0003�\u0002�@��8�yb\u0019�\f7�K\r\bI�\u0014��ۤ�~柴�\u001f^s[0Keisde(=)�&�o\u0004�<]WQ:5i�6�r��q/��6�[��<�����\u001a[l��\rɊ&E�A��\f����d���@�������H\u0003�\u0016dd�\u0017���[�\u0002\u0012����\u000b���SN�������s-6A᪋/����\u0015�\u000b\u0010���o�)b���?�E�l�\u0018�Ef���I��P,n�j�\b��h�<3T\u000bPBq;�_z�9a�너�ci��@�VLƻ�R�\\�\u0006���t����e��c�\u001d\u000bgw�SSUi����<`\bpq�3Y�G���\u000e_\\8\u0007_e��4�p]2�\u000e�eD\u0014�z4,�╮\u001d���'\u0005�-;�=o<��5�,\u0006,��;ʖACM\\5x�ЁԵk1F�\u0015�I'\u0005�D�f�Ӕ\u001e�\u0013���m��ċRD��:\u0010jws��jH��7�>�Η\u0015��\u0006\u000b3�4�j\u001ẹ\u0012�N\u000eE\n\u0012\r����0&\u0019FSc�L�4;�%D�qW�\u0018`H����V\u0003N����8]�Vc��z�i'�\u0000��=�u��\\��\b\u0007���)�/\u0016考\n�Xvc\"�~�\u0016d\u001a�\f�Q\u0013�\u0007���|��)�\u0014.1\u001dJ5��m@�,�r�\u0019T�5�\u0010͐5��Pb�E�Am�\f���M{��\fvΑ\u0007\u0007�\t�&�Tc/\u001c����_D\u0018A`�lK�\f�H@���C�z���\u0019`J�����\u0019����k\u0016��WN�Aa;��\u001a^bQj�G\u001c�I�q:�UdTq�I��p\"6\u001b���;�\u001a�`�v\u001dZ����z��Sn�\u0003J&�f�~�7XU\u0005]T�e�[q~wSh�_K~\u000fފ\f�qG�@�C�5��i��NsV���q���f��a<\n�=�_`\u0007\u0019����<���p��̡��K�ã*\n��X\u001b�ҿ\u0001���;MH�M�\u0017�\u0001*R\\�v�T\u001b}T[�\u000b;||\u0016�\u0002�Gґ\u000f�d�#zl��\u0004���f[�\r=��\u0006�t'?����G\nք<�i6K/A��\bFX'v,[t�\u0010F��\n�Z\n\u0000q�Y*�l��eP�\u0002�U���;Շ�\u0004�\ttӽl��9g���\u0019��8BRӣAU�\f���L���\u0002\u000e\u0010>4�֘��4\u0005[�&ݸ�_\r�W\u001bG�S�c�\u0006M�\tU�D-tǡ�[<\u0007���eX�\u0003�OY[s�K��UjJ�M��2H�|J�\u0003u\u000eôϖ�t�\u0013P>zc\u0007\u001e\f\u0010�z\u001c�Ь2\t�\u001f\u0002,�{F�d>\u001b�\b\u000eLt|\u0005X�_���\u0004��\u0012d\u0015\u001d���m8\u001f�o�N�6�?lBs�Xz��iY\u000ftm�4h��\u000eSџ��P�u���^�E!*%���}K\u001dͶ��\u0000�i\u0018\"�N\u001b��r�ɏ\n}\bR\u0006�\u0012�z��\nR\u0017�f6�\u0012o�R�c�\u0000�7���\u001b��G��`�\u0016�%-��+��\u001a|޼\u0007\u001f\u000e�\nIn��\u0012�\u0012`G�I������\t�ׅz\u0000����\"\u0007~��\u000b�PQ��;�\u000f�\u0014eu\u0018�\u00176\u0005\u0001�\\\u0014�g��Dd���AX�\f����mwr�\u0000�?\\��_2\u000f�\u0004:���wa�\u0005��d^olw��N���vc���FH(\u0012���3�\u00188����\bi\"J\u0018�F?E�(�/���B8\"�\u0015F�\u0003�e\u001a���h�\u0003w��\b�lɽ\u0017��f�~�u�eI�a�=\u0011���c��\u000e���\u0007\n�S(L�&��\u000f��f�ཧ~�\u0012��!g�Q�&AoD����А$K�L7�x�#��ƱjW�m���w4sc\t�ٓ.�S�\\���\u000b\u001eońLZ\u0006-R\"�\u0011u \u0001���]'�f��i\\��ycc`;��esK2O�~d}�\u0017-�){`Ǡ�Pn\u0000t�[��\tvm0��N?�\u000f\u0000\u001c=�g�+ѡ���dhK�n\u001cK���G��\t\t��k4y0���m��@$�\u0016E��\u001a��\u0012�v`c>�촖���AT�\fЀ��bn�����\u0012�\u001e�~\u0019�9����?o\u001f�����/��\u0007@��H���GϦ\u001bS��p�\u0018@��'gT��,\u001b\u001d��%c��P�9ϥ%ݰ\"-��8\u0018Wb\u0016�Za\fQ=\u001eu��_��+B�\u000eݨ�y\r�&y|H��L7�vFFaj��\u0012��\u000e���\u000e��3�$�����qgg�p�&�2�\u001f��\u0003bh\u0015���ja�eV��\u0002\u000f\u000e\u0015J��Z+:`\u0010�S��mi����H�MVr\u0002\u0010��\u0010\b��\u0018�\b�bċ�\u0011\u0001i��\f\u0015�{��H��\u001e����\u0019Zk��5�\u0002�un�����\u0005�՗�cb}��X���.�\t�\u0015H`�-�\u001b����\u0004V��&�6)���Y%{�@��\u0003�V�t\u0015\u0006��h�]�����\u0017�\u000fE\"N\u0013�lM\u0016�;\u0011�m���AW�\f���b\b� ��\u0012�;�\f��Dh]���\u0017\u0018\u000e>*�n�,�ۮnFC\u0011��\u0015Mh0s�D�]���M�\u001e�R��p\u0003cEq��yBi}���P\u0014�I�w�\b⦥\ni�\u000b3��g�\n{Jf2���I�A^��=p���!�O\u0004�\"mH�Yn�W\u0000�@0\u0014}��b“<З.ն�~����\u000e�Z�W\u001d\u001ab�lm�ӹe\u000b���Q��n\u0017\"�m\n�j�G=\u00020�\u001f�+{e�\\�!@+�Y\u000e�\u000b���C�������_!\u000b^m�a�@f����9\u001f��z�̕ݪE뮉������m��ܷ��ץL>�)q��}�2ħ\u001a�٬�\u0005\u0006\u0017�sș_<�|����|�w.;� �R/�\u001b�mi�\n�������@W�2ր�t���\u000b�/!�����\u000b\n�£Ab�\f����a�p�\t��\u001a�6�\u0016�\u0003�P=O;\t\u0014�#}�P:�e\u000b�\u001d��=�g�5{�pn��1�4�@��\u001b\t\u0015%uC��<ɳ>���\u0004�4!d�\u0019\u001d;`b-�Z�C���\u000fp]����O\u0016�\u001d'\u0010���z\u0015\u0003\u0011\u0012\r���v�\u000b~qhϲB�r\u0005\u001c��,��+\"�TI�%�]�\u000f���k��\u0017\u0005��3rx�\u0014�ل\u0005��\u0002���Ư��Y�WmP�^\u000e�\"�?JD�%<\u0006�\u0010��1q��3�(\u0004���\u0013w�Ɠѽ(�\u0000b��OUjKg7ד}ݟ��Z�\t1x\u001e�m�ϯ����+&�i]6���/��3�L��V�\u0010�=�N�kQ��i\u001f���������*\u0011\u001f���ᚍ�ѤT����\u0002�s�\u0013����]n&T҂�[\u0007�`&A��Z\u0016~)L8�S���Z\u00146��ãA��\r\f��L�o,\\�{֤\u001c�K~���D�\f\u000f͆�k\u0011�y;@���=g�d\u0001�T\u0017uٖ\u0000F���ѻF9�\np��d�������E�\u0002��B�/ϱtP��\u0006�'�Ю\u0013�-��\f�}�\u000b=\u0019Fx�������LdgW�W�BV�58p�bw\u000beK����\u0016�e&���%;xv\\��8\f��,{4�ߠNJ�Zn\u000e\u001a\u001af�]an��\u001a\u0007���\u0017G�8\u0002�\\�\u0017U���\u00144�a\t�\u0017�,e�llo�j�M^�\b�`\u000b1\"\u0006��\u001f��$W�F�k6�؃k8j�\u000b�5'�8�\u001c\u001b��p������rE����\u0003\u0018��\u0012�*X�\t\u0013H�O���v?�J۪\u000b��|\u0000�_������k��J�LA�\u0013m��S��\u0010\u001b����mZ͉\u001bB!x���ߴ�69=U�\u0012�[\u0003a��=�v�QWD���r��z�\t9�_��\u00182\u0012,�W\u001e7d:�+�a.�Q�\u001d��q�\n\u0003d@�A\u0006�����vۣAe�\r ��L��b�~�Mo0����mԶ�X�:���5\u000bd\u0004!��\ru�\u0002�\u000f�?�\u0010^R����<�4��w�-��¤0���k���EH�\u0011��pw�\u0000\"�\u0019�cFq��1\u0004�$)�=�][��G[I%��>\u0010��'��\u0019i~�6f�\u0001\u00056�o�8�C��2���z:�T_%<�u��-p��p\n�\u001c+k��jE�\u001f/'�Gʃ�\u000b_/�^Y�t��?��p�\u0013�\u0016x\u0010\tl>\u0011\u0011\u0017�^N�y�]�����ӳ���e�H\u0011j�e��ejt���Q��gW���'�c�p�b�\u0011�2�i\u0018 z�R+��:'\u0015�\u0011\u0013��T_�0Ch���\u0012��0\u000bDtuxU�Y��\u001b�\u001b�mES�\u001fd�\u0001�򼎜�\u0013ؕ�O�\u0018x�]�Jz��[\u0012289�X�+J���\n\u001e2`�\\\u000e{#�B\u0000�\r4����?\n@\u000f�_��]!ܜ��\t\u000e���\u0018��\bƯ��|��[�W�.��Ў|����:[4��F~}�\u0014\"C\u0010t?OPT�\u000b�bԎ5f\u0002\u00154dQ\u000f�W\bK�\n���1�e?�hH���(�W\u0017\u0013\u001c\u000b�+�\u0016%ع\u001c��S�\u0012J�3]�YR�\u001c���F���*\u0016�\u0000���\u0013��Ӱ�my�(��\u000e���7�\u0000�H���\u0004A2<)�b�\u000f���\u0019\u0003�7'$�}�\u0006�kB[\u0014��X\"���a�y\u0002���U�A�[5�S��EӐ�\u0003\u001d��K\u0014�\u0016~�z,!��\u0015�\u001c\u001b�\u0016an��_\u0000��)wߙ�Z�,����\u0011�Q�s��\u0004\u0019��hT�v���\u001e\u0019\bpiuN�\u001fKA�\u0018��\b5/d2�=���Cn��\u001eA��&#)*̷خS��\u0001��eE)\u001d\f~�ڸ*4���^�������m����,<��M���c\u0007\u001d�\n\u0019H\u00032*^A͋W�\u0000w1�CO&�q5?S�aDX���n\u0018�Z�\u001b�n�Q�-���\u0018���ֲ~nWS��o��w�|1�~y\u001a�\u001ew�2b\u0010ۅJ\u0014��\u0016R63e_\u001d-��\u0000UO\u0011\"�\u0018\u0001�P\\����\u0005�BYi�v3���\"��Uf\u0011r�\n���M�A��\rH���b+�xÙD�v�?TjS�aң��ea\u001f\f\r\u0017\u0011�H$B�d\u000bW�),��R�\u0002���xw�I�P>{\u0014W�U=*F�\u0004��v3ҥ)�#^,4<�\u001fH7Յ�!9b\u001e�\u0013\u001f�$�ľ3�B��\f&�4����Ԉs�rMR�\\�WY��К\u0007x�9�Ǫ3y�\u0003��%q��+���\u001dpT��k�j��)d=E�(�\u001fn'+�/�\bA��W6�(\u001e\u0016l�\\Z��7�-\u0007\u0016y\u0011a��\u0014pE�ߑ�w!I�J��}J\u0010��\u0001�\\|�[�`��k�s��\u001d�����9��pN���s݃\u001b�Rv���_�,��\u0014�N1\u0012�`6M�4�1r��D��l�\u0010M\u0015���\n\u0016�1��\u0006�(S\u0005�r�:\"|A<�q�A��8��J�6�s6�\u001dO�`��\u001f�\u000b;�T�V�(6�\u0010�{�\t\u0002k�wD�:�ʑ�z ǎZ\u000eP�����TT�*\u0014o��\f\t͟�i�T�5]�H\u0003Y�6������nt\u0011Z��\u0016#��2K��D�|�nF������zG�� ��\u000b[`��Ů2*�V���\u0000a��\rgV}�\u0012|-�T�ja:��@�V�\u0001\u0002\u000f�!+���\u001a+-�ȴ88���\u0011�\u0007��{��C�A`�\r\\���k�)�Ao4\u001dh/����a\u001e�1C\u0019�ӱ�TZ\t\u0013\u001fx{��2�z�չ���m1D%��k�7C�`�@\u0014��Ŕy�˳��\u001a�e=\u0001��b3,)@�\u0010�J\u001d;\b���DM^p��{E�nO�a\u0017.ͩ�ߖ=3o\u0003��������\u000b��uP�-d�]c=��\u001b}\\X��nGg��\\ �8�5%��\u000e#�(Q/\"�0\\��f��f�\u0011�.�*i\"4�,��[���*\u0013J�[}�����F\u0018:�K[�7��;\u0012�\u00019\u001c\\\u0006��=\\�\u001d-t��h�����9\u0011�\f\t�:�gƭ��R|0)�\fi�\u0000utS�q�i��5\u0012}_\u001d�\u000f�0���\f��)�BmA�A\\�\rp���e�\u0015<��\b6^���驨_B�56B���m:jn�^��0�\u0016(���\u0013o�C��O\u001b���gQ����\u0013�盛z�\u0013���ѯ����~ZPk�ܩO�\u0003\u001e���*Σ\u000fֵ���v\u0011��.��m�\u0000�0��Xv>�{�µQ]X<\u000f��\fW�#B�\b\u0011������\f\u0019ϵ}@sF5]ԙ\b�L,Rʻ6{��ݧ!��\u0004��\u000b�$���a�h6\u0001F���p�*�\u0015��3�\u0018\f���g(\u0002fB��\u001b@�s\u001a7(h�\u001a�Q/!ȣ��g�K��m����Ӿ|v�v9�\u0005���B�[�\u0002OP�\u0017s�ؑ�$\u0005\u0004\f\n�~CF6)�\u0013X/\u0019��gh�W\u000f[-Q\u0017C*l�\u0002�\u001b5'���������Ut�,T)�d\u0015On5\t\u001e/&��nn��ȭ����/`�?�A@�\r���l�U����\u0007����=\b���t\u0017\b�LnNg\u0016�Z�~\u0018��\u0017*;Q!�OPa�m�g�9T�͞�[i��\u0004�:v}>&\u0003\u0019ĩ�S��f�p�~���\u0016��@�@�W)q%�+�R�\u0015�����m�\u001b�I������w|�\b\"c6�����O��\\���\u0017�A\b�P��\ry{\u001a\u00197\u001en�&�\u001cM�Y��|�(��=P��⠷q�\u0018���X��\tYyz�z@�\u0006���3�\u0003�@\u0006���c?x:�J\t���B,%�o�.Cr�\u0002%E�A2�\r���M�z�?�P��A��h�Fa�nZ\u0015�\u001d#)��b�~\\\u0010m;��a\u0016Y��qg3e�\u000b��n��,�U��BC:������՜nc���,�1�;\u001dUW&_��\u0003\u0006�\u001a\\~�����=;Z媤S�Tpz�<\u001f()uɳ�\u0017���.\f�4#\u001b��\rа��lw\n�V��}�Ou�\u0002$��\u0015�\u001d \u0007�����3�8�'��4����eM\u00156�\n1�:0�IUf��N����\u0017\u0004�0�\u0002�\rx�\u0016qΛ��0\u001e�|� ��\u0006���ʋa3,\u001d���\u0014w|�\\\u0001��#\u0001�\u001e]b��\u0016�>��k�\r�FJ�5���\u001dD\f{r\u001c\t\u0017�����#v�oF�:�ː�n�K��\\�?�A%�\rԀ�M4\u0000\u000b��~\u0012��:渊@�Ε,���A&�[�.׀v�M���\t׭�����K\u0004�\"Of���\u0018gt���l��h���T]IR��\u000f�/�\u0010f�o�\u000f~�\u001f(1����H0-�\u001a��WO�I.��\u0016��=\u0013\tj�eY\u0018�:Cz5�s�������Q���k�e\u001dfc$1W��0��<�\u000eا\u001dn��\u00192\u0005�KF�[r\u0003��{�;No�����x����0�\u0017�\"�r�;���\u0016\u0013�\"��'�l\u0019�3�\u0014\u000f���Ґc,Ph� ��mcZ��>����U�$G��Y��'+Iع+\u0010��;\u0010��@���K���.\u000b��/�?�'�_�\u000ee�AJ�\r���p��g\u00068�\u0000@���\u0018����#\fo\u001b�s��CkY%!��0#U�F��v\u0003��\"Jӽ~\tK<(&v\f-\u0005�6�ʹ�\u0015���۠�:�\u00198���ۚ���{g�\bl�`�%�U�;��Q-1�Cj@�\u001dp��~�'楔M��'��L�\u0004���0:9t�0061`�\r�v\\;���/b0���_�ۚ�z��.װ��\b8�bH���g�t4U%�\u0012w\u0001z;��9ma0X��EϮ��+�\u000e�켐�;��\u001a�G�\u000f\u0000��\u00197�n��|O}����������Xv�-ؕãAP�\r����e-6��Zn�*�E���/�x��\u00179\n$��N��7������0r\u000bl&\u0003���N��(CZs���\u001c�\u001b�'ɬ�^�q�ó�\u0016�\u0017�$�.\u000b���5�G\f�Sky\u001bYZk�\u000e��#���W��!�5|����\u00160!���\u0005�D�v\u0005\bNyl�{��H/�%f�h\u0017͈� � 1ei����\\\u00155FfQ�y=�\u001c\u0006��}<�D$��w\u000b�$�\u00133�\u0011��Z\u001b+�\u0018�g��|n\u000f+\"�X\"\u000e\u0005#4TX\u0006w�\u0019\u0006B\u001d�;�\\f��0�\u0007A��A0�\u000e\u0010���a�@�皍C#@|�\u0012�ݴ����L\b�̡K\u0000\"2d��p�,c�H\u0018�\u0019�Q���OߖW��'}�\rVz�\u0018�\u0001i ��5EU$uAm!{ا�m�\u0014�rC�*)���2�\u0012���T�\u001e֞-hX�'���@\u0014\u00163�K_�x!�PH*��\u0017s�5`,��:>rt\u001d�\u0002����(���R\u001b2��\u001e_�)E���Z,�f��1s�.f\u001d���Af^��}32Lޣ�\u0006�\u001d\u0015\"\u0010��fz�3S3.�|b\u0013��j�xs��\n��ב\u000bϝ���jOS\\V\u001c�\u0019�\n\f\u001e\t%T�\u0017*[���ծ�\b\u0018�x�R\u0012̩�=�H���\n���#\u0004�/�b�/����eV�\b�:�����AG�\u000e$��ƊG��R�t�\u001d�,`B���|'=l׀��\u000b\u001a��n�&��\u001at{<\f���a�:`p��q\u0007�\u0003��t�>����95Mg(�Y\u0019me�q���>f�g.�]�\u0014��\u0018�V\\\u0017\u001dY8'\tG�L\u0006����f\u001c�u�3��,�9L�����7��7/\u0002-s̟ C��H>�W�\u0019����6�����\bY+9e�L��^\u001bU-��$b\u0000�0�\u0011@�\u001eR\u0014�\u001d�Ĉbp\b\u000b�c���U�G��\u0004�l�!�\u000f��~��^F£����%)}m\u0007N<�(r\t\\\u0013\f�2s2�i�Lj;�č�����d\"�Ȝ�\u0004�y<^\u0001*�\u001e��,��\u0018��&;�(�YZ�=��N���&?09(=\u0006�2zom�d�èR��1}+J�}�\u001d��A5�\u000e8���b^\u0014��������E��q�4I�]�WnY\bex�\\�5��@�'��0��%\u001e��\u0016�1�\u0001Zt48\"����\u001e_���/��K]�vx�l�r-p�݋�m@��%�k\u0011=y�ʹ�\u00012:\u0016�\u001d��\u0016&��\u0013Sg��UH�4\u000f�r\u0000aOR�\u0005�\u001a'�kߵ!�R%�@����\u0003�AΠ�\u001d���P\u001a��\u0003z����\u0006Gs�\u001a\\���?�\u0005�/��|!{f��\u0007\u0005\u001e��\f=���}l�P\u00165\u001c��g��K���~P���Ô�ϏΕ��Z\u001c���|N�\u0017\u0001�Y2z�w�`l/��S��C'��a7��\u0001ד�7Ct\u00136\u001f�/�\u0011'\u0003\u001d��.�S\u0006��H\u0002��\u001cn�x\u001b)ǚ�e�ãA��\u000eL���a�t� ���X�uo�|]��v\u0010\u0006\u001cB(Ρ,�#�\u0002f�7�I����r���\n����9;�9Dk�,�\u001cB��\u001d�������`��Gg�8H�L\"��Ά6��rfp�V��hW��U��%.f�\b&x2�F\u0017FJ����\u001a�yP�l�#N�_I\b��\u0018\\-�I�=�sK�ca2�cY��\u0007^Mt0c҂�3”��F�J>�+�_V^��f���Lɒ�!0\u0012\ta�cy����|s�F*��k����ޤ\u0011��yΟ**�\u0015��\u0003�E\u0010�\u0019-��~�<��n�\u0012W��5�\"���,�-J\u000f{C�\u001a�]�ʵǣAJ�\u000e`���b#�y�����N�QJ\u000f|�V�5���%].�/1v'p�c䬢Qm\u0017�\n���>�\u0018T�EQ�cAݼ�\r\r\u001b������e=���`����[\u0005D,���\u0007�v\u0010�T�;��\u001d��0U\t\u0019���r\u000e5noEM�����:��9��_��\n\u001d)��^�x��>�\u0002m�̶\u001e�\u0013��3\u0003\u0016\u0017�\bh'.\u000e�\u000b�k)-WN\u001al���.�G}�ޙ�c�L\b�\u0007��1\f�[xW8�\u0000��\u0007*�����\u0005���\u0013G$��2:l\u0001\u001eT�\u0007+ؑ���3\u0016X�2+*\u001c�_\u0007�\f�If\u000f���]]�ALv՟F\r�o )#�n\u001e*?<�/��/u@�7�qŕp=qٚ���\u0003!_+\u0010ݖ�]sN���X�T\\�K��\n�*���Sb�ǣAM�\u000et���s�\n����������E��\u0011�,�`\"�biQ�E\f\u0004I�6\\N\u0004U�\r'�y\t؞��]\n<=��k>�\u001f}\u0004e 5F��$2\fqk�:�A����4\u0004\u0004�\u0007/Ү%M�6�\u001c~w����*�.��\u0000������r�[�\u0003,\u0000Ҹ,A�������reiޛ\t�\u0018`�xi_�\u0000���PU����\t������yB�\u0012}d��������n�\u000bLy|����4��%,�z��Q2f��g�z�i�\u0013����\t-H�*��e�3��`��o�\u000fU1�*\u0003܉�x�|,��:�α��nA��M�\u0019��{������0�\u0001�Z,p8\u0003�\u0013\u000e�\rx�����V�����q���Gr>�\u001d;�5\u0000t�~���\u0004̸\n\u0017��k\u0000\u0000k�mţAM�\u000e����p�\u000b�@�M���\u000e\u0017������x�/��\u0017\b;���:\n\u0013�\u001aݚ-2Z��N8Xwҩ�\u001aa��^�2/IA�,�b��6�\u001a߰(���tP�:���gp|]w�[����Ѿ8¸\n��\",d�Oh�\u0018}�\u000f/]�\ry\u0005�\u0003S�\u0007ݜ�����\u0004�,�g$��6<\u0001��]n��e�ka�o�P������aq�H\u0004pΕΎ\u0017����-o\u0000ӞT\u0018w\u000e-p��73����l\n{\td��\r'��`N��kmy��aD�����NGc;G\u0000�A�r��eG��M�\u001d�\t����3�!߄B��rM\u000b�P!��6�7xg.1R�r�\u0010=JU�\u0010�\b���%����\u001c�@b�5�w̧�*F\u0007e����\u0006�?R/�-�u7/�����A;�\u000e����d���|Ds0�\u0005O[��ӭ�-\\\u001d_��Fx�2�4���\u001e�_��tx�M,�\u0018\u0012|.�!(�\u0016�%rZ\u0019Z\t���{�\u0019�\t:�\u000b\u0007��c�de�\u0013����$�1q���\u0001��=\t�M�`Q?\u001cœ\r��P��ݲ�Y�\u0002O\u0004Jf�W\u001a\rش��v\u0007\u001b}\u0014�0¶�\rV\u0014\\HA�3^�\u00058�Ɔ�yYK�l6-hǎB�\u0014�}���ׅ\u000b�eC\u0002�]q\u0003\u0017D�V�#���٧\u0005\u0019]�~\fZ��\u0016����y�\u0012�\u0005<\u001f�u�@�1`\u001b}�AgY/�����cd�?�ppj^��\u0013xI��)ۨ8��?o}������d-|���\r���|�ףrV��\u001c�FO���g\u00010>{1��Xpbտ�AO�\u000e����b\t��y���g���\tF�\n���70Pz|Ҋ�\u001c)z�]\u001a�)�}��(��\\�DiTWg�JL�&��K�>�u��p�T��\u0005p7\u0006ʒ����Y�\\�,Q},p�՗C��\u0000���;��U\u0019$/����'N�l��6䋵g��\u0013���\u0010\u0019\u0012��17\u0007ڄY\u0017W�h\u0011i!�[\b\u0006���z=L��O��V+�\u0007[T��eGOBj�'�W�e����q�r��.QF>f\u0011}��[�p\u0006Mf�\r�\u0006��\u0000k@�� �8��Κ��&�)�-Tk���T)�ԟ,������L�G��-�>\b�2:\u0003Y�o��d-2p\u0012�\u0011mk��6�\"��\u001b�v�\f��Z��Wf[�S\u0019�It\u0018 \u0017*L\u0003��c�\r���\"��\u000bI'�`op�����A}�\u000eĀ��eʍG?��($Jm5����\u0016��f\u0001��\\!���}�XD�ܹ�鿬JJ\u000fAH�\u0006�>\u001bN���l\u00109a�.&\u000f�)�\u000f!��\u0010��\u0001\u000f\u0003\u0011��\u0013s�U;2�N�Ls�w�����%XOs�0!��MƮ�Y�1���\u001b��}�~Af�a,���\r=F��3/\u0000�\n��S��^M��vR>�Ɖh-:Cu\b�Ǯ\bԥtV�k\u0005\t<���\u0007'�9�.���\u0015\u0016\u001c�ߋ=�H��\u0007\"�T�FDyi��\n\u0016��Q�D��%�6\u001a+\r��4v�f�d�Fw�\u001bՠH���\u0005�+\u0013 ;��\u0012��)F���,i��vG\u0004½<�\u0000:�DʝĠHw~�{���l���n�1�93f���\u0018�:pǖ\u001d\u000b�����P-�?��\f\u001eb�$W��v�E!��i\\�ª��y�5\u000eM\u0012��s\u001d�\u001cH���$rۺE�k�H�ãA��\u000e؀��a�O\u0003D\u00059l�G��\u0002\u000f��\u000e��-\u0007��WGCZ�\u001b�$QU��Fs\u0001\t5\u001c�r\u0014a�4n˘�{qJ\u0013R�@'��6��Ab�}��\u0011��\u0007՞\u001ey��/\u0018�\u0015�7��^�\t�G\u0014ʎw8$���o'�s5���_SI�\u0011�\u0010Ŧ�\b�H\u000f\t�8�8�\r�3�쩐A����\u0011\t�v�ꮿD\u000bY\u0014�@z��\tJd�{\u0017���Ʀ��\u001eY`�-@^t�i��j\u0019��^�\u000e�O��\t�0�B��h(��A(<\u0016\\\u000b��;�AP�)t�\u0006.�;��\u0010N��d��\u001e)�ÿ�\u0010\r�Fu����\u001cd�x�_��b)��3\u0011��#�p^��s�\u0000�:\u001b_ݵ������t߳\u0006��͜�zJ\"��+ ��+\u0012�0N\u0001\u0012�_��@U@���/��1\nw;w��\u000f-W��\f`�\u0003\u0004\u0017̓b�\b�K\u001aS�H\u0019\u0003\u0013S��%��}��\u0001a��@)\u0011\u0006Y_�iţAq�\u000e���b�K5\u0017=���<��� -�3\u001e?�i��1�g;���\u0006�`���<]�ϟa�ҡ�ݽ\u0018\u000eRLʬi��i�!�7~��M\"|cw����9\u001b�s\n4\u000ezj�\u001a�a<�\u0002ȹ񈡲޴3�k���!F���/�G\ro�+qJ\u0018�a��:\u0017\u0004x�����P鲻��l��q�X\u0004ic��5x\u000e�X�d�\u0013��gh�\u001dW\n�_B�����3.-���8\u0016?����$�\"����CR���w��ˡ��\u0012n\f�G\u000e9�\u001c\u0011@)v�=�\u0016mŪ��k��G�W#���@\u0002\u0015��\u0016�3�����?��\u000e�U��f�� Wp6�_厹;\f�T?,\u0018Z�ݖ�%S��z,YG�|?Չ&��\u0015\u001b\u0006}\u0016i��F<+�;��\u001d\r����ʫ�Ѭ�5�\u001fl�iUC�t\n��\u0013�\u0014m�3��y@�m�_o�ȣAI�\u000f\u0000���d:J\u001a9\u0005��\u001a�_�W!��\u001b�՟�\u001b�� �����\u0007��\u0013%�+E�Ed\u0006�ܗ�,��\b=U��q�!il���:�\n��8���rI_��F�bB��\u0003�)�\u0014\u0016�����\u0017���uj\u0019���\u0005��I��<�w\u0013ٯ��o\u0014h��ǯh��o*���vY�Q+���\u0012�w�t�{d$��W��\u0005ҥ�řK��LP����3D�T��\u0014�ī\u000b\u0004f#�\u0010.�Dއ�~�G�'M��l\u001a�\u001a\r��\u0010��\nJ��n@�\u000e�]T,��w�\u001c��j$ƞU\u0016\u0010��^g��'��'R�$�oA ��i�if^V�|J\u0007`o\u0003�\u0015�G��ћ�%�M��,���'\u0010��~���<����\u001c���p��ݧ���B!�\f�ȣAC�\u000f\u0014���a�Hk�aȅ��]f[C�a-�\u0005I��\u0015��Y8��-̀�\u000f��/�t��\u000fv��\n`\u000bnɨO��$�\u0014�*��1����$���\u001c�DK���\u000fT~�K���m `��?*<�%\u0016'��ʍ7\u000f\b�~\u0015����K+�\u0003\u000f��r��7Nj�\u001d�ۇp��\u0019>IM��\u0001B&�%\u0015ۮ\u0018\u001e\"�|�F�A2k�|!8W̿�ef�<~��9���\u0013>�4��Y��߄P\n�'��t���^�2[͂����4�\"&��X[���Q)#��S\r�b@�Q?�\ff.eS�`Ey״j\u000bG�?v�R/��;�9����\u0007I1`/\u001f\u0007Ba-:Ƞ\u000bh�\u0000c\u001f�6ǗE�\ta\u0000V�\u0015ǻ;�@!\u0015��\u0013����&�_\t�'�c�C\t\u0002����*맳\u001d݉�\u001d��,0�P���g5�F�J�I��/,L�M44f\r\u001a8�\u001c��e����\u0003�I\u0016�A��ҷUe\u0018\nEP\u000bw�F��T�\\\r��Hm��ie\u0000K���,E£A=�\u000f<����Ep<�\u0019����\u000e\u001c���뮊�o\f��S3b`c\u0011���H��\u0011\n\u001d����l�a�B�L\u0004�����6�g�ǘ��r\u001c\u001a�\u00066��\u0011�>���P���F��Z1pSp\t?5fѶ�U^\b�R��U��hnj�-\u0015O�`����\u0005z����qu4���#�\u000e˝ҺU\u000b�\u0003\u0013���9�1��ؘ�\u000f����P�ڮ��-\u001c�\u001b�<9E��}���#�T���������=g���$���n���~o�$����l�ΰ�K\u0007��r&q\u0013��\t\u001d[��\u00106�\u0005�F�\u0015G�\u001ce\u0018\u0012�P \u001b!\u00067k�FX�Sc��|�\u001b\u001aA\u0003A\u001f\u001a���(6m7\u0016��dz�SÒ�`����'�\u000f�j�3�\u001bd����AM�\u000fP���bW�qv\"~\u000e$�ޮw��l�\u0018�\u000f�Di�U��)ҢUG�\u0018\t\u0014�Q \u0016\t)\r]���Z;u��ڕ\u0001!�[\u0018�,�p�d����\u001fI�(\"��W6A��8��֬I�2[d�mK�\u0014��\u0012�Kf��@����\u0012�9�\u0001\u001a�t{7�|�v�l���\u0001ucs�a)L��`*f��5\u0003\u0005Ɨ��7?�g\u0000�\u0013p\u0000�����\u0018���Q\u0007`o^\u0011\bC?�N�ݙ�Dה�ˡ$�3�׷p�\r�ZH���x@t�\u001aP\u001f�(0c\u0015a�!\n�vt\r��\u0012o+|����X\r�r�\u0003|�l\r�sl;��?RǪ\u001d[�R�5����K�\u000fd\u0002._\f:r��\u0018��,\u0002�U��\u001c'���*���&\u0004SR؜���\"�\u0014��\u0014G\u0001\u001f�\u001a��;�\u0013���A}�\u000fd���mh���\u000fb\u000f�ő�/=\u00170FQ0,�a\u001e\u0002�V\u0018\u001e���~���ol{�V�02�}+��\u0019\u001f�\u0015�-�] �d\u0007;\u0017ӎ˲\u000fZ�񖭍{a~\f�\u001aN��5���0'�Ap]�j\u0019��A�n�#��\u001b��QDq�=�ÿ=\u0005\u0002S\r�Μ<��<�#����\u000e��y�'w�6��]G��'LF�\u0005��<\u0007ܺ[\u001a:�c>[`\u0004g�>;��n���O%��\u0003��\u0015a�`�/�\b���C�8R�\u0011�O����3�1��OR���3ǰ����\u0012:�٩@,�oC����.�2��U�\u0012 �L��\u0018\u000e���,�l\u0015�d�?�\u0010�\u0014\u0011��a9�-\u00175�e�y\u0011�֪ux�\t�Fd���|\u0001���ҳ�\u0002��\t\bsb3#�����P����\u001a�o-/E���r\u0016\u001b8\u00041�9͎-tVT9 J\u001a�v\u0011@\u0004�^8؃��\u0015�au��e�£B(�\u000fx�����x\u001a��\u001bSH\u0015���\ṋ{ �(iM0\u0006�.�E�\u000fuG\u000e��r0�U�K����8��{݁L8-�\u0005���m\u0007��\u001cU��L��y��ǗA\r���&YG��I�\u0013IJ,׋�\u0013��4�qt���mF|�Trz\u0013C�a��_m;�1P�ޖ�\u001f?w�W����\u0010\u0017z\u000b�\t��aɽO�9q�m�~�X��\u0011F�$��q/�m���9�Q\u0000�gD9��������@/\f�?D܂B��ь���΀t*^r/A~�\u0016�\u0019���\"�\u001b-|\u001d�g\u001e��C�Q�H��?�\n�\b\\w\tbEH]�f��~�jI�O\u0010�6�c< a�2\u0015|��`���\u0000�\u0002!�eS\u0013�\u0002��A幁\u000b�xQ{�7�1�i\u0005�F��p��\u0004��|��\u0017�8��^�o k�;���4�n�I�e��~�><���BQ�&$\u001f\u0003�F�O\u000e\u00142�8�$3G�\t�j�AD�\u000f���X��\u0000�7�J�Q�\u000bh9�j\u0004\u0011�W�Ԇ{njx�m\"��K͠�\u00123WSDzx<\u000b�\u0019\n3�1\u0001�,^\u001eǁ4��;r���L�0�.�����=��rԲ�\\-;��&���8�\u0017�s�\u001e֜R\u001f}����~ZtmM:�q��\u001f�ތp���Y%�\n,�K��\f�\r�q�[#6/����\u0011��3}O��>\u001d3\u0014��Ix1wp4�/��\u0007W�Ͻ'+\"`Ϗ<,��\u0016`5�QD6K{'\r��(hj����V\u0004��\u0005\b����g�mO]���,E\\fu�����(�\u0010}��p�\u000b(#U�+\u0010���]\u0016\\�0--C3!*�4�̪�\u0018V^@\u0002/ZÛ����n���S�$���a9\\;@M\"w�i\u0011�1�\u0015�S�A4�\u000f���L�\u0006`�\u0018ӤQ\u000f\u000fJҜKBw4\u001e7��\u000fɰ�}#�H-?U򸬢鍈}B�b�����S\u0014��[z�\u0017��F���C0�x\u0014|wV �\u0003�aH3���\u0005$��\u0013�i91�\f����\t�5@Z�\\i��cb��^F�\u001d\u0018�\u000bٳ�\f\\\u0000����)/D\u001bB/yfP�\u0004z��\r=��\u001eB}\n/�U��\u0007\\-�텂hяx��U߸#\u0011�Ɣ�mi��dN��1�!\u0004%�@HU�2D�0WsrY�J#©��&)��P��7_\u0007�e��y̍R\u0007E\u0002\u0018�zF�+U�x�\u001a�3��!W�\u0007��/�}���6��@G�İaǔ�H~�̦\u0004�-UC�4H����醴vF\u0018���0,���A0�\u000f���L��\u0000�}\\xлŇCm���Sܼ:�4b3\n�:q�\n\u0012\u000f���\u001bK8��\b�G.���\u0017m���#���\u001e\u0006��\u0004D���X���w��E�x���^�iL���\u0000�\u0001�2j\u0014��\u0015_S}y��d��67���4��{�w�@W �\u0000��\u0006;�=dz'Q�x�!�\u0015 \u0013�4-�0/;�\b��\u001eW�^(�\u0003�e�\u001b\u0011A\u0012���9\u001e��\b��?/\u0002v\u001ffg���f�]\u001f]ś�\u0001��\t��C\f�ݨjn34���p\u001a�c�\u0017K���f}�$�n^\u0013�\u001a�\\\u0001\u0003r�8\u001c��D5�\tr\u0019�E�Φ4�'�P\u001d.\u0001�/\u0012�@�jmb5���\r�M�I��u A���|�{~�A%�\u000fȀ�L��d�8k���)�\u0012��u���'\u0018\n����鿼��\u001b�\u0011U�\u0000\u0003�\t\f\u001a���jZ|�Hkdž��-H/E��`�\u0000_����\u00197�;b�f5\u0003�\r\u000bJ�� *�e\u0016S����:L�1�(\n�MK��J8e0Ĩ�o��\u0013��nDM��@�v���l�`�p�]X0[�6XW�%���\u001bOW\u0016b3%9\u0012⻨��(�Ϡ��;��֣\u001c�j\u001e��<�}FXH�\u000b�ad\tW�[?�UecP�9���[\u0001�\f�:6M�@�F�:\u0005��##\u0004�h��d\\�E\u001d\u0002$P���oJq�z���ңA.�\u000f܀�X�X��g\u001f��\u000e!��O�K<\u001c6>�?���H'VMQV;#xp�2�����\u0007�6��\r\u0014.\u0014<\u0010g�_��Y�\u0005$=\u0007QV���Q2����A6.G\u0015\fݑZ-�E�\u0011\u0007�\"��6,\u001e\u0014~�]Iu��lKzo�.e��HM\\m@Ǝ%/���]�1�\u0013>S�tM�E` \n�'���Pl�W\u000f�Շs�Nj�/sz'\u00118��E��\u001cD�/�ast�v�s�8T��*A�\u001fŝ���\\)�Շb������[˿�t�3̉�%�h�TF\u00046�w��H��hl�ꎫixze��\u000bɼA>9Ŏ$\u0004Rl�j�)\t�A;��\u001c%��u\u000b�Fӹ�e��h�\u001c\u0001�)�I�A*�\u000f�����;٬�����*\u000b��|��k��\u0015�I^;��+�\b�¤\f�J\u0001'b�v�A\u0019˜@P�q�3�99^v\u0019�7M���$�\u0016\u0019��`:�.�VĐXd̵�\b:��\n��T��\u0007��������|�/�lO\u000bl�I�j�z:�\u0017[ 6��k:#q׍ѥ�C��yl����� H�o�\u0001�vk_��\u001d�{�M\u0004]�A�6\u0012�\u001b�|�\u0014��7�t��\u0001�\u0010��L \u001eE��[5\u001ds\u0019��\u0015q�\u0013/�\u0002F\u001fw�\u001fZ\u0013�SOL\u001e���|.\u001ez��=)����7qy��@�*\u001a�\u0010��\u0012[�fZ#��gٺ\u0000T1�>[�1�E�\u000e���*Z�׍N\u001a��=�I2�A8�\u0010\u0004��L��\u0004\t��0�ǫR?['j��{��٧�\u001b}�\u0017wN�R�\n����ӥ���I��$Ȧ]�pT4:\u0014�z\u001e\u0007G�\"�a�\u00189i���Zv`\u001c��S��U%�������퉕�!z\u001aeH1?����i���~hʴB\u0017�ex��E�u\u000fxE҂�J{\u0001\b2\b�]�\rPf&�\fI���\f\u000e,\u0019�\u0015+�\u0015�C��\u001f���!���c�@�`��w����\n��5;\"\u0000���c�\u0002V�y ����\u001a�6\u0016�\u0006ĹЫ\u0017k\u0016��\t,ʜT�\u001b��\f���w���=�a\u0012\n�IU$ ���o�d��Ȭ3#D���>5\u0002��p�\u001f�\u0005\\�b\u001e �X�E\u001d\u00179TI�M0#�jc��r\u0001�6���A4�\u0010\u0018��Mz�\n�\u0015d@*\u001c彶�r�\t�[I�\bb�{ދ�-��TӺF�kC�(��t��j\u001f�\u0000S��k�zyw\u001e���i,�<��[Ŷ]�J������u\u0015\t\u000f롂a6�`�Ї�f\u0017�#���ǝs��}�����`��K�D�;��\u001a\u001c�J\u0001R1��}>����]x��<�]�`Z��!��M���]y�\u0000�,��s@\u0017�'Z�[}pg?3\u0017չ\u0015��0���i��'�ST��T\u0005�\u0018+�s$T،FL�ϲ)�r\b�6�[�.Ԟ\f�������Ev�|eTP\u0005\u0004�O����zh�]\b�/�JL����ww�\u000f\u0019����@��Is)�w�0�z���]\u0005Ⴖ܂[�AD�\u0010,��L�X�O���a\bخ�9z\u0019���\u0016���\u001b�1�;R��\u001dν׸\u001d���\u0019A-G�36���O_\u0004hM�\u001e�\u0000��]�-������\u0013�\u000f�n�C=���&k��d\u000be$V[\u0005���/��\u0004_I�>�C\u0013\u000f��h�N�i�쑧�*\u0018Ӯ4�y�\u00140�+G�V\u0001�|u�\u001d��d�\nzE�\u001a��@x�\"+*6\u0011���ei�{\r�Hh{\u0004\u0005���\u0015`smp&��Ƭ� �84\"�޸6��u\u0005�)\u0002Eco���\u00178�V�3\u0000\\�7�*7`��ɂ\u0011�h�]<��\t��~]PQ�r5\u0004?�z<����tҡ�$��`�\u0013��4G|]�}�\u0007����:��tj�̲H6z���~���d,P \u0000j�vŇ��\n��Iw\t%�AI�\u0010@��L�la�T��Åǹ}\u0018���~��\u0016�\u001b�]�b=�^�id\u0011d��Xn�+p���ҵ�\u0006j�r]�~�6la�D�����ߎ4�6N�\nst\u000b�|�\u0014�H)������a?2z�v����KCz(\u000b2��ib�rO�\f�,0t\u0005C�\u000b�H\u000b�Q��7 �ba\u0015\r�\u0010��\u001a���1H���2\u0004!]����n>���);\u0006OO�ۛxK$�\u0019?�\u0013N�Y54�\u0001�~Q\u000f�R�eu��P\u001f��/�ۀ�϶\u0006�(;LWw�\u001b����|�?�;������AZ���n\n�[1(\u00059���<�&�֔�f�R2\u001c��\u000e�!\u0002G]{ӫxC+`���a\u0000����\t0 �h\u0003�.�w��\u0018:�1�(,`PB�{[\u0002��A=�\u0010T��L�\u001b���DO�g��\u0013\u0007�B\u0004t�6�\u00029%g�\t�*�6��̐L�qU\u001d$\f�^\u0012S&��{�8��@�v���\u000b�\f�5\u000f���4���7؎�O\u0012����L�X\u001f\u0019UH�#��p���\u0018�{���`N~,�G�u\u000b���7\u0007[g5&�:D�g�{�\u001f��M��Xø-pU��\u0003\b��v���\u0004���7�ǰ_O�PVC����W�X���2���j��^\u000b����\u0011�~�vW\b�#晃�)iM��$M���H�XGP�G�\u001aY�-W�]z!�DQ\u0007��&v�Q�e���Vr�\n�M���Lʊ����7��\u001f���唻�1�G�\"���nh3�e�?��\u001e� [�Wn����\u0014\u000b�]+š�A2�\u0010h��Mb�\u0015�\u001d�E����(�\u0010�D�j\u0006$o\u0000\u0013�ɋ���o�\u001b�x��H\u00054�c\u0011H�w�0��LV��&.���M�\u0004@�\b�U.�\u001f\u0002�S�r\t�o���sW!\u0007냟\t����m�\u001c lk+�\u0003ήqi�\u0013�\u000f3�\u0019���\u0013@8�}��2\u001c��\u0006��-���J�-�\u0014��›��\u0014\u000f��D���%Ŝ��\r��\\����\u001c2���?SA�n\u001bQ�\u0007��CyC\u0017c�\u00014�(�\f%2b\b:�g�q�:b���=�B�R'��٪�6���M�V�cL�a,\\;�l\u0005\u0002-|4����v4�\u0006��WPՙ���yF����w�,�1i�g�`y�`�\u0011���`n�'\u0007J�[1�\u000f~R�AӁ\u0010|��}�\u0014ˎ��\u000b�7\u0019E�y=\"��M\u001ay J�2�g��\u0005��k\u0006~\\�F�\u001a��\u0018\u001c QY�\t�*R�P�\u001a����\u0010.z�M\u0019h�+[��\u0004�.\u001bCI�G��f�)�G�R;7z+v2e�`�\u0003�Wb���\u001b\u0003�\u000f���t��͢\\�\u0014\u0018�>NO�<�\u0019�u~���ʧ���ke\u0017��3��Qg�\u0004z\u000bR~�k�3&�ʨ��\u001e��\u000fy�G�5_u���g#;�LyS~(O�1�#�}QT\u000bl���\\*N�i�s��\u0018��C�T���Y\u0018(���,�t\u0003�\r�=�y��\u0015�\u0014)�|v�\u0003x��\u0013\u0013D_�\nM��\"J'ҏ\u001b ��Cd��]�7�\u001djѰNi\u0002w�r:���\u001e��5N�d�\u0002(�K�v\u0019bNʬ!��KA�j\u0018ǙĂro���\u000fx��V�^[\u0010�!o�Q�@�LJ�b�$_�f\f\u001f\u0017,�&%.d��\u001c\u001b��Vy���B`\u0019�\fCh��B] R�U�%c�S\u0011?tD���$��x\u00066�)\u001bWǐ������P@ Y�\u0013��$d�:�b2�\u0000��Hy���ظ��A,�\u0010����(�l6�V$3�U\u0003�޼\u001d�\b%\u00071�;ԫ~�\u000b~\u0006��6�l�[~\u001e�\b�(R���?Ӝpi�팴\fx\u0011��%\u0013�\rj�Y\u001eR\u0015_V>\u001fG�z�I\b�\u0016+�*��N\u0019+N���\u0005ƥ\u000e�è�����i���'���mؖ7���2b,+�\b\b^\u001d ۵a������$�k���$�j�!6ߐMRk�8�H&�5��|\u000b��3�ˍ��h@��\u0006b����l�-d2�K�J�\u0000�tC:���\u0013v\u0016�\f�Y�&,\u001d��Q�d�29�M9�\fuӏ�#䭪��|��\u0019�T�%���F�xdVe�kh'��5��\u0012�+��\u0007\u001d��@�\u0015��_��V�A>�\u0010���L�nW�\\}���s/g\u001f\u0016���\\5ڇO%\u0019\u0012�C\u0015�\n�p\u0001M$ƀ�TR\t�㷓r���8�L�=d����\u001d�\u0010J�\u0010��\u0013\r�8\u0013~���>�\u001f���ÌĔ\u0014\u0019\u0014I��\u0011��\u000b�C���V��_�'\u0015j\u0007\u0015���]\u0002�C�F�%\\t\u001a��dm����Fȅ*\u000e����\u00017�}�yWt\u0007v�&\u001b��ʼ��\u0004��/������\u0013'$J���{�芓�\u0016P\u000b�+Z�{6Y�>@�t\u0001�'�o]�~�\u0019�n\u0012��d,�Sz�vUx��m\u0019\n*�2~�\u000f�\u0003/�2.|�؇���\u0019]�z���\tp����[��5j��\u0015���g���(L��/j����)�I>�-�\f����I\n\u001f��q����?�A>�\u0010����ȯ$׏zA��3y�5��ټ\u0014\u00183�,ƌ0X�y�\u001e��k�R��\u0017���\u000ft?ŵ\u0001\u0006}6�]�L��\u0000��1��(8�4��K�Y���ΦL�ع����~��GKb���;�.\u001b4�rU��U-E���'�\u0005\u0014���v\fo!\u0013d�U��B2\u0017͏�Q9����:i�r0{�!l�\"{\u0011�Kv�o�Pk�3.qB�n@#�\u001f\u0010?�y�;\bʎ\u0013L�\u0006\u001bM\u0006��(�8^�J\u001a]�\u001a\b������\t�\u0002O\u001d�'�A]�\n���L�0��SEI��a��\b\u0007�<��`��˞�g�\r��!��I*\f8�G�\u0011fH~���\u0007V�9��\b��͆�N�_ǩ�\u0004��7/!~�5I�\r�'���'T�\u001a!�AE�\u0010̀�X�K�\u0001o�Y\b�\ny��Aړo\u001a��Z��خ ���O��C��$��j���\u0006@[�����h\t�Z.?��ьS���h�\\�ǜ%��\u0004\u0013<���C\u000f��]\u0017`���8j����Sj��\u001e�:��\u0016%����2�d�7$�6I�\u001e���*��}��e'�l��X���}5�R\u000b���\u00067E8/뫣}�\u001b��#\u0006�!!�\u001c>�\u0005�N�`[d6��D����\"b3�ߑ[��YK�tC�\u0012\u0018MMf�Y��e�<�#�!$�\u0007�#���/u]7�<ܥ�E�6j��a��!\rvL�dW._w�3��c)l[�\u000f׭\n�&�\u0016��\fZh�J���1.�\u0019-�p�;�\u0013_`Un�L�nz\u001a�tvl\\�\u001as��A?�\u0010���L���x\u000e\u001bmn�B�D�\u001c\u0000�yέ\\�3\u0016\u001ap\u000b/N�P�\\�F��n�z4���E\u0006ċڣ�vF&�\u0016��\u001au�#\ft\"ݔ*���p�\"}\u0002S�f��/oK\u0012����0�\u0019��E�U\tu���ϒS�\u0010S\u0010����w7����\u001a�3)71���+�\u0013J^U�)Mj��a��'�H���i^�\u001a��\u0017���\u001e�1ѶE\u0010\u000fw5盙��\"t�\u0007�\"8�P#F#Բ�e��0�r����\u0014㱥���b80#T�8\u0014t��\u000e\by�u\n�)�ɥ��\u001f�c�\u0013(�;�\u0005vlKH-����U�@\u000e\u001e�\u001fq���㽹$rp��\u0005�9D�\\�zO\u0000O�6wO�(�\r�\u0018�?����zE\u0018}��\bo�E��\u001bu�AB�\u0010��NO�\u0012\f~�\\�\u0011Y\u0012�x�Bv\u0014�-)��G�H���L0a�8�<\bԀM�g�}��Ү�Z`E�^[�3]���(k�\u0019���,1���c(��\u0015\u00026��PD8�>Wz\u0004�~EK�F�f�o7yp�\u001d�N�r�\u0018\u0000���\u001b�Z�Ȅ&Ah�\t\fGK�\u0007gڂ���؈��$���<\u001b%���YȒTNJ;\u0000)��\u0012\u0018>q���\u0002U�G�R�\u0010���\u001f��g\u0013���}2:-�\u001c8�RV\u001c\u0011�?���\u0010US�õ�����\u001e��G�>�;Q�4���%[\u0015\\\u0011S\u0019Tt��Q4c���[V;�3@�-�\r0j�\u000e\b�ã\u001fϓ\t\u0002\u0003�����L��;\u00189�nݤ�l�}���j�\u000b�\u000b��|/qF\u0005g���\u001b�i\u0007�Aҁ\u0011\b��|�u@�\u001bN7��\u0018���`����'�~�c��-�\u0002���{��0�ҋ��u�{�1��,���w�{d�)z���;k'P��˩�W�\"ӅT\u0006\u0000H*�ob�赱���a?D\u0013^7i�D\u000e��6�\n\u001ch��֮@\u0002�_\r��b)��EX&�\u0005����\b�W���_j\u0013\u0012��2�I\u001f�>�\u0015f�#M\u000b\u000f��2�9�~���W@�m4��V�\b�����\u0012)�% K��6e\u0005i��\u0003�93��\u001f<�\u0007���L��$a\u0001,c�U\t\u0000�E���\"?\u0012s&_\u0007PwBԧ5�\u001d}\u0006���VNC\f������K\u000eS.=i-\u0013�3���k�}\\��\u0002�!e_K��ˌ���.�\u0003��\u0012�xO�����}�;1�%���s\u0006�O41c�����-!u:F�t�I���n�N{>���y�#J��X��_J>��\u001ewE]\u0014��Acm���g��'L)!��~�͐E-��\b홀[�\u0000R\u0000?���ꋛ喸 ��\u0010t׾�V�W�\u000e\b\u0003��󢛚�z\u000e�\\��3_�f?ں\f{?��\u0001��HG\u000f�AD�\u0011\u001c��-� En�֣j��MF�J��&:�cs,l��|�ɵ\n�\u001d��͝Su�7�^\u0012��C�j}u�|���\u000f6}��9k�- ;�\u0005Gg-�վ)��m�\\�Cf��/\b�Y�3&o�B�q�\u0003�d�1P\u0005\u0007Y�i\f��\u0007\f�\u0001�ǗG��\t\u0017#\n�\u0014H�y}�\u0001/�\u0011vhJ<<�\u0000��̾H�\u001fW��\b\u0006#���8�7\b[�q���f�Iì�t\u0014�ŨNjG��fE5�֒\u00014+�\u0006w��S\fl\u0013g���o<�\u001a���,\fW��=j�담a��Gg\b�\u000b�A\t��\u0003�.=�ao\u0014��T�5\u0011�#�m\u001f�=�5=ӽ��\u00117��zs���Q��\u0005o�1��x��U�[�\be�7�*�D�\u001bm�V�.Io\u0002&�c\u0014$�A9�\u00110��L�\u000bn\"��TJ҂��{�����pm\u0015�\"\u001b�����'�{d�/�\u001fU+��g��77\u0019��\u001c9�P�{�\u001f�����Ƙcn_S/�\u001bG�\u001a�*��\"0�\u0017��R\u00117k������n��\u0014r\u0002��7(�@���ö#aG��Q���B5\\�\r�\u0001�\u0003W��2��A�4*\u0013L\u0012і;��d�N�C�\u0013yR�\u0019�N��15���/�l\"k�^ے����5�}K�\u0012��+R\u0004� D�\u0007��x��͔\u0012x_�ۇt�#9Taµ\u0006 $u�=h�M;ئz@QK�cF\u0016���,MIZs�Ek}2:��ۊ��F%�(�4W��\u0012\"�@\u000b9�/��@��V��\u0007�\rZ�7]�\u001b\u0016�l�&Sj\u00028\u0010�V��\u001e�@q\\�\u0004�\u000e�3���*� \u0011�o�E�s��61޷�����6����ɒ6�g/.N�l��\u0019�3:�]2�\u0017�S\u0002�&��A��⋓\u000f�yd8>����D�Η^�\n��H���&�5/6\b?vA�s�5I�\u000ep\u0004�\u0005\f\u0016��tw\t�01^\u0007`����\u001a����\u001f\u001d�R\u0017���2�8\u000f�\u0017�Kg�q\u0018�!�H��,�\u0001�\u001e����\u0010�l\u001d?P~�\u001b:Az\u000fC1y��\u0007`VX�:���ǟI����\u001f�\u001fM|>��\u001c/�\u0002s\u0011�S��Pp\u0013���|�=�>\u0011��\u000f��b�&za\u0014F���Ɯ�\u001b��y�Y,��=��S��Hx\u0011|�\u0007VN�jA0v�sE�\u0018`\\\r��k����=�U��Ý\u001e�]u��@Cu?\b\u001a�E����kM�i=FaŤE@���B�A%�\u0011l��.\r�^9D,��t��r�46���\f�\u0013\u0017�E��L�sIqX��=\u0003|d����r\u00178pN�\u0015�7��;\u0003\u00119\u0015��\u000f������ȅ\u0007mr]��A�\t�2#�չ��G��\t\u0001\u000bU�%���E>[�2��2+�,�n����\u001fjrj\u0013\u001b�ª>\"�{\u000e��V��d��\u0017v\u001b��m\u0011N�\t+׽c]���<�]���C�6�\u0010v#+�\u0000�\u0000�I:�1�dt\u000f\nZ1�F��\u0013\b��a-ԸJ�\u0018�^��8\u001dAh{Ϫ\u001f��T$A�(y�\u0011ӳB�KZ��Tmd%��ypncR35\u0006E?\u0007\u0006��\u0014틶�ǂp2<�ݝ9\u0002�\u0011Ѿ%�o#��B�p�j2\n�f\n��A#�\u0011���X����(12OtGJ�ٴ*B1^j�Y���E\u0010d��O�S���S���F´���*����{�|� \u00107'\u001c�ͦ�X�\u00180\u0006��I?���>�O��i�%\u001aY�ٞ]�f�0�\r�L\u001f\u001c�\b�}~�;���pd� N\u0019\r��<{�\u000b�y1L��\b�\u000f�N�\u0016jo�d�.\u00127B�/U�q\\�[D�b�<\rk\u0011\u0014i\u0006����J\u0015݈C\u001cr�%O�K��\u000b�D�B��W�\t\u0005�jbm�\u0016�x\u0013�\u000e�<�F�Ek�����0L&g�ʬ�\u0006jJ_4~a��\u0005�`���0�\u0013=2\u0012Ed���V{��p��nha�]67�\u001f`\u001bմJG_�\u0013WөR�A_�\u0011����c�gE�M���\u0006\u0011I�`\u0006J��-���\u000f���\\f�{u1f�j��\u0001\u0016A�2\u001a�p�*2�M4ajrF|S\u0007�久�h�nr�#j)���`\u0019���\u0013hӁ u������W�]\u0004��;�c���1���\f�P\u0014ع\u0017R]7^n��Nt鏏�|�\"\u0011��1ޜ�?(^��S�\u0001��D�+��V�e�Q�RX\u0015|@�S�r�E����#~�\u0012�\\ ��An��\b\u000e��7i����V��\u0000�b�.+�3+��s�\u0003H��� �\u0018,���l(����Q���bf�i\u001c[)fY�\u000fyd�6W�\u0014\"�i�G�\u000f2@�A\u001f�\u0011���X�C_Jג*\u001bٓ͠�^��2����\u001bt��\u001a�8��b�h�Ic�|�ڐ\u001e��g�@��e*�\ti�\u000e��\u0005��B�X�\f�`\u0014B%{��}���\t[�������>�\u0000+�]9\\'\u001eV�� �I�RP�5n�'��\u0015[��}�Up��B����\u0000F�@\u0015\u001c�p0ć�r��2>r�1&�<\u0004�RNF��۰�\u001f\t6�\u0002T�d�4#��W�Lb/������\u001b�f��\u0012$X��,3��E��{��*\u0014\u0001�\u001bK�T�\"��^���#�Rծ@��\u0007�\"�J\u001c��Ŏ\"��\u001dnBC\u0002�\u0001���:�W\u00002��\f��Ԛm��\u001aAK�|76ɣA!�\u0011Ѐ�L�D�.G���8�a������[�+n:�ؔ�[,���\f�\u000e\"���t\u0015��Nb��]\u000bH��e�3�6\u000fZ�`|oZQ�ڕ�0��š왽v�\u00144�M�wx�\b�J�D��QT�IldIZ\u0005��x\u001b��\u0000�B����ƭ-�\u001b�^\f@\u0000�(}\u0016�p7\u0018��z\t�[���\u001b�\b�l$7.�r柅<5S\u0006�A���Q����n\u0001��[S�%����\u0018Vg8($m�o�i\u001d{y��װ=���l�\n:dImz�G�Q}���\"t���X�%�� V<#0 �e�\u0012Q��\u0012:uHy\u001av\\\u001d�}�N����ۍ���\"��/�s\u0014E����A0�\u0011��L�\u001c`��k�Rk�r\u001eJ&��:���C�\u0019�8P���\u0000�1I�Yq\u0015���c\u0003��?;i�\u000b�໯��\u0011\u000b��d\u0010��ꕤ��K\f\u0006ł���\u0006��G\u0004�=�V�D\u0000Zꏕ��\u0019\u0017�/j�~�V�X���\u0014����\u0018E+i�]��%S4.�i�\u0018K4����A��A����\u00039d��a\u0002�q�Z˜�pj#U�?A(��\u001a~��|\u0011�����?�d#O`ox�n\u0017����1�:�:��\u0016�)Hʲ����ݡ�I\u0018\u000b���\u001f\u00050'\u0011R�F\u0017��ag\u0019\u001c\u0010���/s\u0003�>�U\u001d�aJ�M'�\u00059\u0014`��@y�\u001arym#3�Pl���r�,0��%��i�\u0010\u0017d�:\u00184��\u0002M�o�lШ�|�~��I��@����P鮭���]}��v�1^&\u001f�\u000b\u0007�ZB/��̵��҆Mj�Yn\u0013�d�\u0011;�\u0000\u0001��\u0002ː\u000f�\u0000�>�i$�=�\u000e�A ���S�w��\u0012W\u000f��\u000by@�X7\u0011�謸\u0012�\u0003��į߶\u0010�A?�\u0012\f��M|�k��a̋\u0004\u0004����-����x�*����\u001aP:U�v�Zf���ckƘ�����\u0016TW*\u0015\u0003ӗ']�\u0004�\u0016Z�\u001a`�\t��ltPl�c\u00138\u0005\bxF\u001cQ\u000f��\r�hfg���8+��$���3�E-\u001cf�`,o+��_f&nH��DB۞qͪB��'[>\u001cGv�#A�~�_�\u0016�\u0014N:t\r�f\n\u0015���\u0005�w\u0005+q^���ɣ�!���ܨc�݁\u0016�}�ڦ�[��88&�?�8�w�\u0007\\`i��X!����)Iv�\u0015$��''˕N\u000e瑣\u0001L=g��Z/�+^?*�T�.u�\u0011���5~]��I\f.&�$�V�����\u001c$�\r��=�~�⟤\u0019�m����=ePt*C\u0013�SDT�����H\r�:�\b\\c,�\f��\u0014�I�P�c���1\u0006\u00127��\u0014�\u0019�/\u0001�˅>YG]�<�N����\u0002_�m�'$\u001a0\u0001�b��\n��(R!� !�v���.l�Re\u0007\u001fw%�\u000fv�\u0005#Gy�\",{�8������V!ب`�\u0002ўOp�\fN���v\n\u000f�մ�8��'\u0014?�o�d�,���_��v���A\u001b�AA�\u00124��Lˤ�ER�\u0001eC�3�q\u000f�^\u0005\u001d�]��E\u0019z�%7�D����~�/4#\u0017E���<;���\r�\t�@1k}u�KO��,�\f��v�Z���k�\t\u0011�޽ޟ��}�\u0011.�H:�.X�x|S\u0012|\u0004W���\u0004O'�\u0003����í�@�p\u000bM[�\u0017ﰧ��t����$�������\b�\u0014�L�\u0005\fI\u001b\u0006�3�\u0013�e\u0012�B�+�}yn[��\u000f\u000f:s�(�[�\"S��o�&\u00027\u0010�;���d��AH�\u0012H��L�5���ݪU�ge�ZJS\u0004�ƾ-DV\\��/4����q@<\u00005p�\r\n�Y\n��|h?_�Pj%Y�GAz�X0__{�!���Q�q�\bu~t�:D˳O\u000f\u001bև�-p�*1�,Q�\u0006_<�ԾĐ�3m_�Ъi�~�ot�+Ձ�B�\u0001\u0010�>n9�P+\u0015#�w���*\u000f�\u0007еۋA ,%/.cB�\u0018&\u001dH\u000b\tK�;\u0003�\b\u0013\u001f\u0012]�{/5֊��T1=\u000f@\u000bE9�Cĥ,ј�cE�_4�8\u0003 ��\u001a�e��f|c\u001ch\u001e-5�l�\u0010�z\f��6u2���U\u0002�ٱ�;�\u0011�\fr:�\u001d@�\"�ٷ~�'��7�\"\u0001|g�K�����p��\u0013��\u001feZ9����?\u000e�cM�q��{��\t g��)ݛV��-�ʣAD�\u0012\\��L؛��\u000b\u001c��sa\u0010�kR�*8\u001cS8�\u0019�쬁�~LbJA\u001cJ��G\u0000;v�b-� #�\u001c\t�\u001dF�uU\u0002Rɔd�\u0006HO\u001a���N�\r�#�qv�revar��(\u0014�yT�,\t'\u001f�j\u0012���w��j\u0002\u001brҝy�Oq/\u0015�N��\u0012]~�ʂ40/W\"F�\u001d*�&\u0004$�y.\u0010��+��C\u0016�N\u0006�l\u0012P\\\u001d�b�����J��ۚ\u0004�\t�\u0014��\\Px>.{C���+��zjQ��Ə~\u0017\nS��H/F�������\u0002yzu1\u0003��9�\u0013[��\u001c/\u001f��\u001c\u001cD�%���\f\u0013�ZE�\u0006���\t�YPC0���q:q�t���!:���s��u*b/+\u0001���rk��ٰ�\u0017�\u0005w)P5�n�RE?\u000f.R�t����.�AK�\u0012p��L���\u00012���ņ,\\+��ն;��َ�\u0000��\u001c&���\"���Hs�um�1�B3%�\u0001k�b�Q\u000b��5/\u0010����[�,��'\u0017�\f�&�� VZ\u001b ����\u001a�j�h\u0003�W�\u0019�sS��$c�WQ\r��7�w{���+ I��\u0003mp�ĎlӶՖh�L9�1��(;�\f�n0��O\u0012\u0003�h\"�S,~������9:L���� ��ٻ\t��f�b�L;��k}�ɨ@[R�)V������~�s˚�d�\u000e)��û��*–3\n���\u0014sS�Z��b�ȿq\u0004J\u0016'�0|�Cv\u0013��0�\bG\u0015\nZ��\u0014�TX��ɖϮ�]��J@��x�L�\u0019�꿉��-[�\u001eX*l\u0005��l\u0003�\u0017m>{y�h��8�\u001c�A<�\u0012���M�)�אJ�r��0��\\,�&�<�V\u001ax\u0018�}��:J��\u001f����\u001aX5�M������^�\\y_�5��炥�}>ޞK\u0016=��A�1c��\u001an�Z�v\u000e��G��j?�9VT@\u0001��)u\u000f�\u0015�J5\u0003[����ۮ�>\u0004�����5Rޚ���)l!\n��[ Rɖ�xݨ��;{D��:�SUmj�\u0002_���ҙ�Տ�\n͛j\u0017X'\u0003l���^\u001c0o\b\u001d��x�����]R<�\u000e5�i�+�mg�.�\u0015�6��\u0004�k�[��SAw���s�\u001a ��R8��\u0004��\t@��ߵ\t\u0017X��&\u001aM\u0011D����\u0018�\u0007�\u0015r\u001f\u00119�w�!\u0015�C���U�\u000b9],��t�t�Rߧ�����i<���A!�\u0012���LȜ��\u001b�(\u001a�V�����A�RĀ\u0004;Wp�L�\u0011NT����\u001fdJ�<�+���\u0001F�>#t!�\u0016V�(sT�!`g�M�QPZʶT,���b�6\u0018`�\n\u0002�����L:��\"����\nd�Z\u001c�N)�\u001cv^��~�Df�K���*\u0013���5\u0003f\u0010g������Ӡ�\u0005�H�\u000b�\u0003��E\u001b���v��N|�a\u00158�4zӹVQ��1)q��@�\u0017�G\u0011c�ho�\u001f6[Bw�n���y�>�>B�e��\u0003a��\\���ӄ�M%ݽS�D�\b��ͳ���PF�F\u0013\f��m۟��f%ʣ�)k��\u0007\u0003(*H�w�7 �-�je������A'�\u0012���M%^��\u0001�𑓚]\"VDY�tW���3�L�W}L�\u0001zK\t߃�:J]���W�2���[��U��e�E�\u001a��e��nY@jJ8\u0016�!ս\u0004���\u000b����kz0�r�\u001b!�~O���N\u0004I��n�\rڣO\u0012�^5WM$�w�b\u0019�\u000e�\\H$\u00122h黽\u000f)B�\rb�f|�P���sGA'\u001c�\u0005��z0��&�?��1�\u0010�c����l—�g�a�L\u00189���\u001d7�\u001e'ܒ\u0015]��?9�5R�9Т]�F��'+`�\bu��\u001b�\u0019��H�!�e���\u0006N�DcE�O��^>xp�M\u0019p��\r�\u0003�:ȧf��cM\u000b\u0010��f��bo�A+�\u000b�A'�\u0012���Ƅ�}�\u0004'd��*��,@�\u0001l����.\t�c�\u0014\u0012욭�^/�\u0000+ϧ\u001eœ��\u0017��ę��\u0012�h��5.��=^8w��/��l�Ë\u0003�6�ܸ;#�\u0002\\�j\u0002~�KA�e�\b��m\u001c�}�@��Z�\u001a�\u0014~z�\u001bo�Ւ�\"K�\u000e���/��;#���we\r�d4��`k��o�ۚ��D#�ث�����ǚ�m\u0015�rS�[��\u0001�e�[e�d�\u0003�x�.�\u0015�|?\u0007V�'��~�\u001a�f�_=̲\u0018\u0014q�4+�-S31�\u000fegM���&X��\u0002\u0014]�8�zqdz\u0005��bj�g�w�\u0007����:lba4�\u001cj9{㡡\"��\u001f\u000bN�d�>�_�9#�A#�\u0012Ԁ��b��A+��/�\u001eЍ�?�>gaޛM���?_T�f�\u0018���\u0016o�\u0019n\u0019_|E����t���\u000fr��\u0015%\u001d�\u0015�C�a�漑�\u001a\u001f�^3�\u001fX�>\u0002\u0017\t\u0005�\u000b%�v�̩�n;�t.\n[��{�������\u0012�j\u0015\u0006C\u0015R����-s���\u0013\u0001�`�Ǔ�J�\u000e�m����_���@���l\u0004\u001c����\u0005άLRa�;�=��׃J\u0015�\u0010)��c\u0003䥌��R�y�%���S��Y,ד,�w��9lM�\b�\u0007���n\u0010\u0003$Ag��?�\n��q����޸�s �73߾��ж�;�\u0018�ͽ\u0016�a�����\u001e��\u0011*��\u001e�A\t9܎�\u0005��\u001d�A(�\u0012���o\u0019�)\u0016�|�,I�|�nzA�{�\u0001�:\u0013G�o�RNI\r�����Z�[\u000f�(\u0019�[���Q��j\u0013�\u001b^:�C\u0010�/\u0002�\u0011C�\u0005k���\f�4�%\u000f��+���\u00178��\u001dXe߿��s^��\u0001Td�\u0012#߿-\u001d�+�L�� �ۭ4r��\u0006�<�/�x��v�z3��<\u0016VL\u000fMS5\u0018����i�Ȏ\\�\u00101�S�����]Q�\"�\by{��\u0005��\u0004��H\u0013�+��̛������c��V+�\u0017o\u0007�\u0006�F?���ESj\u0002��t�\u0017G�2�\u001d\u0012\b�呥�\u001c��\u001f�h�1�+�Ђ��\u0013\b�s��W\u001a�t�ŵ�\u0003d�����\t���(���������A��\u0012����cCU�\u0016\u000bm��FTtC��\u001f����b�.0oӁ� �n{�,57�)\u00024O\u0007ID�m�kvc�xp�\u001d��A$�\u0013\u0010���m\u001d����n��X\u000b-\u0013a۹�cP��D�\u0007��\u0017i����S��X���?��d<�����Ϗ��Q���)'D;.\bUl�}ubi���Y�u��D��}\u0013�)����<�3�Z�42nv�f�Oc\u001c�Y/o��PhӰ\u0013��\u0005A��\n�H��&�6��p� �d_5����Y\u0005\u0018/��H��Hٯ�z6.�y�S�V��%��5U�\u0006�t \u0016�d\"�\u0013k�a���|��U�\t�\u0013f���\u001f��\u0019(�ݢ�@\f���%�1�\u0004�07��%Em6�v��4)�B��!˂nLc��O��҉�{ܷ\u0012]��H1Fr�\t��q�k��[��q��A1�\u0013$���mC\nR��R�I���mP�����\u001a������;�\bcO��\u0006������y��~y�Y :(�\"`W��1\u001b��\u0018��͗Hl+5�]�P:2�E�a�\u000bS�Ync��~<�\u0006�\u001c��N�{8�4T�\u001csP�^�\t�\u00072zKV\u0019z�\u001d\f\u0007\u0018x|�#\bӌ�0w���\u0010�9j�p�E�&&�������\u0018<�#�[�N#ہ��>�����\u00164j�MUX�|-���X\u0015�F&Ť\u001e�>��w\u0013���~Y����UE^\nlF��\bE�m`�{E��Nl+�j�\u0001�WpA\\,:ڔ�fPt\u000f\u001d'\u0010=�%�D\u000f�вO�\u001d�;i#��Z�\"�]�.Nd�m��N8C\u001b��f�Α��AW�\u00138���l��`ˬ\u0005��\u0011�:^�s��_31���tΨ擐cҬ�I�B\u0016H풻�\u0003\u0012V�\u0016����;��\u0019��2�;��;�\u0007�,H/�!*\b@$�C��/\u0010s\u001ep\n�^�-\t����G�\"\u0016\u0016��d��w\"r.�7�qcP��ּOU��F\u0005�j�\u000f�ζ0>^�'�h)<��߼����\u0018����IBE�d�特\u001c�f�\u0006uS�N���'�S��?��''�\n�>\u0003g%1�k�v��@I�Y�Ј�E��9���$\u0013�͈\"/���f���;��)�\u0015]�\u001e���E\u000f��j�f��\u0004 N)����c�vQ��\u0007�>�?S\u0004k!v4~7�L��ơ��QW\u0016����s\u0003\u0007�\u001c\u0012\u000f��\u001e�\tD;b�S�\u0015i#:�`�7J�@%ٶI7�g�[�4R铣AI�\u0013L���h�9c�`[:�\u0005�� �\u0010�s\u0019�̀�`К�B�q�gt\u00072��\u0007M�!}oHK�a�бm��\"�U�^2\f�\u0015\u001a)\u0002�^\u001c��P�J\u001d˨�\u001bN\u0015\r�\u0004W�\b0�0j\u0006���A�1\u0007�[7��N�#\nv\u0006���`|y\u000b,��c�>�'�`��a:K�\u0000�}�2��c\u0004�/��/��h��]h0����V��oM��\\�n�\u0019t��QУB\u0006`��_��&�9�ɦ���Nr����\u001d�\u0018�w�Mb�)#�g��W\u001d�N�\u0014�>�\u0001�%�F#{��s���i�LT��g�_��u��\u0010��s��0��V:j�X���˲u�\u0002.YC�-\u0015�\f�]�\"��_�H��f\u0018�\u0004\u0002�\u0012b�>�p\u0000��\b\u0013@u\u0019+^��j\u000eٔ�A8�\u0013`���l\u0005�\u001f�_�v�Ŋ>�\u001d�H�ҩD@=�T��j�\u0007�\u001b<\u0018!����u2dA��j�1�\u0015�b��C\u0018W�l����\fx����h\u0001�@�\u0010\u0012\u0012��Obl/ǘ�J�NԔ?���\u001b�\u0006�A�\u000e�����?�j9L��K�V~x�$t�;m���a�\u0006+\u0005]���:�Æa��4�h��s�\u0019��Yz3�8a�#\u0017\u001f�D&j\b�<�)|!���\u001f1�\t.��r�\\_!���\u000e�\\\"��\u0017��\n��=����ZX�܂X5b�J\u001bIb��j2�\u0005a��g\u0014�R�R�~ÌK�<\u001f�\u001b�Ɍ&�\f#����/~}'�\u0010K_1ϖ\u001c\nD �#2\n���-����q�2���[���\u0019�AW�\u0013t��LǞ����8;d6\u0016 z�T\\[���\r�C\"�\u001cV�҇�!H)<���'��h�ʠ����S�>�\u0010�� ��Y���o��\")v4���N\u0007C��$\u0019)�\u000e#b'\u0011\u0010\u0017�\u0000�0&\u000bߪ\u0015�hj�\u001f���\u0003���N\u001a�k-�B-����_!_�6�ĺ\u0011�;C\bX�\u0004{�! \u0002�\u0007�ioҖ��ǩ��;#CM�m=�Õ�4��\b6J\u000f@i�+�oE8��ks��\u0003Gb!�*���b}�\u0005'3��e:��Hږ\u0002Q��,y�q�\"T�\u0017��A$�\u0013���]�P�ұ\u0001$�e���M;`��׍P\u0002�C\u0015�0�j��1�RU�I��*.�\u0006�]�\u0001�F_����\u0006\u0006�ϐi0-�j^wD�ο�po�\t�46Aq��>T��Ѥ�@�A\u0013�\u0013���L�\u0007���ry\u000bL9��:���k�3�Ndf�Nrt\u001cB�s5-:�]ͱ\u0013-\u001ee\u0015��CAd��м��\u000e{\u000f\u0005[\u0010�\n/�����\r�B�k.1�\u0002�T\u0004~����\u0000\b��M@h�\u0007c\u0010U��Ěό����Pt �lJ�N91)_�\u001b]C�mk���ʊG�s�\u0001�K��O',|>���?(���7\u0002�lg\u0010\u0005�=�1�R\u0010S#�r^p��J�T�\u0010h�\u001d\u001eH�)��.��c\u001c��[���V�K�cyp�P��\\��`�\u001b\t\u001d��GQq�������4Tf&�>�*���r���]�\u001fimI�PdU��7�?�A\u0013�\u0013���XЖ�[%U��\tW�w���\u000bO�\u0019��8�r�`�g�͜R�\u0010t�!ag��Ζ|f\u001f�=أ���\u001eJ�W�\n����;��H�N�\"\u0012m?&^|ݼ��\u0000�P\u001fmx~�\u0014�\n dbl\f��\u0004 {\u0006��-�\\�W�\\�ؕ�\u0002��\u0017�)�0v�\u00007/���E\u0016VkYg�:�\u001f!\u001d+��\u0003k���EB�t�!ˁ!>\u001a)l\u000bwZ��\u0015s�Lq\f�w�\u001c�\u0015�\u000b�k�A\tA\u000e�\b��r\u00076��469%땙�LΔ�ɸiK���>��\b��'��\u001fo`��\u0015\n\u0018�5��������\n�e�!\u000eq�\u001d \u001bB\b�>`��\"�A\u001e�\u0013Ā�1�_3�G�����'��&\u000f���8�������!\t����*\u0019g�9p*��p�v�|�_\t�\u0017b��\u0013i�i��Z��j�hh8�bt�/|0'%�%�)�f3;�>drYqS���F+�\u0018\u0006oW�ZcK\u001ce\u0007��5�VJ��/��`o�;�l��A+�\u0013؀��u�\u0006�&.�6X���l�\u001bM����\fn(o֭�\u001aC��oHʳ\u000f$\u0005[���I ��$�d�d�+�\u0015��\u001f\u0015��Ǵ{Rݠh&\b+\u0010\u0000.^�G�l5>;l�!\u000f���ژ²\\�J��2����L\u0006|�%j��\u001d���E �\u0001Z<�H+d@6�\u0016�eQ��e�\u001a��\u001an�8�\r��x2O\u0001�yn{�W�uO|�=�xv���\u0014vj\u0010\u0011�qD}�`\u0014�o,撴���Y=6/�aE�\u00032K\u00197-G�Q.\u00198\u001b_/����\ryƴ���,\f�F�Z\u0002##�>�ǵ������\u000f;\u0017��2��<��\n6z��\u000eR3�Q�͚Xr��ѽ���\u001d �\u001c~4�9����A\u001a�\u0013���e*�ؕot�܏\b��i\u001b��+�c8nV_︽3')S�9v6�\u0015�_�@᪄Կ����|0n��Q#��T� 7�ʝn�yzM\u000eN���\u0006F}hC�\u0013���וø!a\\rU\u0004��2\u0014-޴[̓��(�\u001f�\u000f<��\u0000��\r\u001b�/�\r�\u0014��\u0002ɭ\u0000Kڙ�����^\u000f\u000f\u0010�V\t\rT�[�j��']�#�\u0011g��R��R��\u001c\u0001�z!V�o�d����4u�\"�\u001cL2*�\u001e]\u0006������Ǐ��\u0019!z�m��U)Y~�S~\u0017\tᗊ���;��\"�\u0003p\u001c*\u001bE�\u00047g\\{�\"�(\u0012r���t�p�wi<ߑ]���A`�\u0014\u0000���kLJ\f7\u001d��[3[\u001eR��>��ܱ\u001a�\u0018M\u0012�]�� � )��+\u0013uR+ -{�li�fIA�[翣?j�\u000b�x�\u0016\\\u0012�3Y�'��ҏ�x_\u0018Lq[V���\u0006&H�\t\b\u001aQ!7\u0019��p\u0017�\u001d��D�\u0014bt%�\u0007��)G]��7`\u0001e�\u001f�1�^�G�6\rr�H~��.�9w�%\u001a�Z�\"�\u0003ҽ���^�\u001d�mE#�?ҽo=���@��\u0003�\nx)���n�\b��{w�\n\f��\u0006o�;l�\u0019��\u000e\u000fP�d�4�;��&\u0000�v��4�>��:ِq\u0002��ȷ���{�G�\u000e��˃;����\n]r��\n!��\u001b%8���.��w�ɕ��w\u0013�IM\u0012u�*��I��KAy�0+\u001b�\u0012R�E��%���w�����Ӯ�c\u0000o\\�V\u0011A�L٢�AW�\u0014\u0014��L�C�_�q%��ژƽ�u\u0019��u\u001c\u0007������\u0017\u0007��a Qe�ݞI&���~�h~��\u000f\u001e;9w�&e�V4j�e�jʾzc�O=�QЯծ#;��6м���v����\"z����3�l�������AN/��4\u0004am�#�#`�co�|�\u001c*z�n�P�\r�\u0007\u001d-�\u0013./O�̶�����\t*�?ƌ(K����5h����\r���\b�%�B\u0014��E�c�E7a\r��\u0001C�\u0005@;7��\u001d,\u0015���\u0002�ǜN�BA\u0000$�*b�4\u0018\u0016\u0015���\u0011_���,;�=�*�ʻ�׍�wĘ�$\u0003�\u0018\u0004Όw��Ov�ڢG:]��i1����\u0015�,ϔ��`��3�\u001b>��\u0010Ɯ�%\nV�oR��-�=%V݈{��GI\u0007�!�*\u0015J\\�\t�谊<\u0014�0\bA5To}{)\" U�@4?%�Q\u0017[]�\u001b��a\n}���]3!32��8Ev3��H�\u0004ձ\u0010���\u0004����\t�ɍ\"�_�?E#��N.���1Ӓ\n�I\u000b\\�9\u000f�ϳ\u0011w���Y�V�\u0011�\u0010`�w\u0003ҍ�����\u0018I\b��Q\r\u000b�ǣA:�\u0014<���\u001d\u000f�x�a�\u0014��ߗ[Q�F\u000fh\u0019�Cdm]�!�:��Q\u001dW7��AξÉ\u0012�`n\\��x�7��/�j5XIF/v9\u000b�N�`���\u0018fng����&�\"��yO߹S�k��\u0014\u0014�\n\u0013uߒ�&\u0007\u001f\u0010\u0010��b�A\u0019#�\u0003=���2\u0018��\u001a\u001eɈ�>�X%h�7Ԟ ��Z@͑�{�ܼ\u0006eA')\"�\t1��$���(R�H�� \t�3;\u001c1y;/�\n뽇����μO����!\u0004zL�i�&�v��\u000f�\u000f\\�BXx���\u000e\\!W�ѭ���1�o�E�W �S��J��\u000f��UXc~gl-��\u0000\rF\u000e��\t�p=>^d�~�=x�4� ��)\u001c��kݳ�s9m.�ɸW�\u0012�t�$��A<�\u0014P��/]TN\u0004AJ���4k\u00175V�9Y��\u00019��\u0004.�\u0012�PZ�ܔ�\u0003p��D.\\*�\"%�\u0012�Ř���\u0010w�LX\u001b��G�\u000b���P�\u001a*\u0014�'�r�\r�x\u0007\u0015��\u001b�Պ��\u0010=\t3Z���i\u0010}��\u0016���2\u0007����\u001e\u000f�\u0015������5_�C�R㔀~)�\u000e��6�`\u0007�-�\u001f\u000bw\u0001�\u0002y����X�[���� \r\u0014��ʁ\u001e_\u0016�6��\u0007�\u0003V�[�\r@h�s���\u001ch�[��6Ħ�\r����S56љ��\u001fFM�\t��k�o\u0016$�In�(86\u001a�k݀��M\u0001���H�\u000f�>��>��&IgNw)]��٭y�L��\u0011�\u0018/\u0000��\u00133�iXY�y��\"�[q���[�ߑ\u0004^�c���AB�\u0014d��X�l��� 똃\u0002�R\u0000ឫh��d�g�����M<�{�f�YрV�@{�\u0011��2ru(�\u0004~��\u001cC��\b\u0017��H�;�=�\u001c�z�\u0003ON�'>\u001c�\u001e���C�i�2Y���N�8�?Hz�,�F��&�\u0001�c\u001fs^\u001c\u0014m�\u0012$º\u001dr�\u0012��e22'E�������7|�w��t�_wV?5|�Q^\r\r(���\u0017p��4G�\u0004\u0005|�\u000b\u001f��K\u001du�I���\nqM��!%\u001fmI~a�]�\u0003��\b����X���K}Mm���)��;�A\u0013�\"��4E\u0005\u000e��\u0015��\u0004\u0005� ���N��}�y.�\u0002k�D�،�\u0018�!�$\b\u0017>[��d��\u001d\u0000'���d�1�\ri��ĘN:3ܯ\u0006#�Y!j��e�1�C�A��\u0014x���U��'C�����@)�aZ�3(�@�5T�*�YY�N�yvHwG�ھ��_\u0010�\n��/�Ͽ\u0006�k��\u0000]y�)\b\u0014�-\f�f�=Z�?����\u0006ᝰ\u0018���-9R��h�j��\u0005̧;8h\u0015�%��{\u001b��2�S��\u0011\u0013��nO��Ymz���.�1��##�Z&SL\u0003t����̦���E'��-���\u001d����y-�Q+�\u0019\b�y\u001d&�q�����)?��\u0000Ol�L����b�_4\"�\u0012\u0002�q���.\u0016_A\"=\u0003L)��\u0012�;��y��h#}�϶���\b�Go�\u0014�V?�(�7y]�\u0000�\u0016�����K���Q\u000b���g;o��Z\u0018q|\u0007����a9;\"�v��\u0003f�>�W\u0005�k��̅�SS��l �3�9:\u0015�N�D�\u0017h�@}��<�1��5F��\u0018��\u0004~F�S�?\u000b\r�CA\u0018\u0010�\n��}�6\u001e�H�Ⱥ�k\t�T\u0011�DFO�V��]\u0016[��Wb�i\"���9@u��QΪ\\\u000f`-ʣA3�\u0014���M����\u001c\u00110�\u0005\b�\\��/[o�<���'�H��$���4�d\u0017\u0001\b����\u00182(���?�73��i�!�\u0004��e�l�n�\t�D�\u0018�\u001b�\u0016�� \fm��/f��H�R\u0017���̢���\u001e\u0011k^\u000fPU�[�����`(\u0000.[T�\u0013� a�c��s�<<�>r����8<�&�@�>�c�H��u��*3{IX�\u0006:\u0007\u001e�?\u001d0M�����9��?�\u0007��|ct\u0003� �:\u0019��ι�.r��\u0002T���A��hB�X\u001f��n�y�G9\u0018��<9X{���k��\u0019��1u\f��a���9\f�$\u001d�%B��L<�������\u00127!�@� \u0010�\u0001/�l��f�o��E����PѣA(�\u0014���M�\u0006���\u0005\u001e�\u0005��q�K\u0013�\u0005伿c;6\u001f;�\\��c\u0011����1J�\u0011\u0005P]�1�SP\u0002���\u0014+��'\u0005`����:�>��I�Ltȿ�\u0000\u0017��e��vz�{�bMX���\\$\u0014�y8�=\u000b���=6��o7��\u001c\u0015|\n��f��:E���ܤ�\u0005c�{�?\u0005<\u0007\u0001��\n���\u0002�ޞ�\u0004�\u0012o��\u0000ҝF�dvL����~B\u0011�\u0000�w����k\u0011�Y\u001b��?G;b\u0018�&C�YP\u0013��¼��֏\u0013E������N\n7S\u0016\u0015�Hp��Y��`�R���r�����E�\u000e\u0005G����+Bn\u0002�-�-��|�\u0005��Z\u0002��\u001aG߉,��\u0007Q�X\u001e�Xj��A3�\u0014���L��(ΡS\u0004�b٬R�w�Q��\u0000(\b�\u0005�����\u0006��v-藊�Jv�\r,�)p\u001eD����?�\u0003�\b�;�\u0012L���^�u����w��K�̧\u0016��\r\u0005\u001f�Uo&��s����\u0012��<�M6��%�W�\u0002�lNEW\u0007K�\u001c�!����T�$pK�C\u001c�\u0012�0�$���\u0010�c��u���j�7+�'�����Vx�^��ɋt�+��q�1�\u000f\u0019#8���AAH\f����(AƱ��Q#SⓉ}�?�+x�\u0002E��A\u0015\u0003�\u0017\b%��J��|''��YJ���72��\u0003i/�|_sz;�\u001c4�y��\u000b96�\u0007��G�\u0016�4\u0011�^o�i���9���M�\r�\u0007�BRs7il��A%�\u0014Ȁ�L�+��g��Kis�ݝ�\u001f�\u0013@6J~�Ik��k%��s_�\u0001\b���+PDq���\u0018\r�V�1�X����7>g7�\f�\u0018�^��Gr�W����X�\u0012�q\u0002<�t�T�\u0000�%$�T��\u000e�p\\\u001dq�����Q\u0011�$������\u001f�%��\u0000\n�&s�9}\u0004\u000e���\u001fD�ؠ�\u0011��\u0004�?�JD��A&�\u0016OϾ�d��/\u001dR��g�\u0007�>F��[���-`v�!Xm\u001f�\b�p����H#�\u0017����??�n��b�GS�c����\n�Ў5\u001d�� [l�\\y2[\u0012It֯�^z!A�T���~�������ߺ�%_�qs�@}�MD�Ե&��g\u001b�A=�\u0014܀�MT�q�\u0013&�������G�O\u0014\u0017�\r{?ۣ�$?�\u0007�\u001a��̯�O�\u0012\u0006�n�\u0014\u001b�'˱\u0002�|�\f�t���-r-����\u0007LU��fY�w�ro�:öM\u00114%\u0013��'^^�%/�����\u001f\u0015�q�D$�Չwy�\u0016-��Ɇ�Va\u001a���7l\u0017�0��C|�\u000e�_m� ������\"}�&�7�pB�l\u001a�D*Tw\u001d֞\u001c�M�$��\u001c�\u0004�\rj�\n�\u0003�k3Hec�X��\u001a1rS+�\n\u0012�\u0018bX�\bo$J\u0006U\u001c�����\u0005�\u0005���_�\u0012���-L��_��A�J��&��fެA ICiއ[�q��P�Wlz47��s?\r��,������\\\u0016�~�G��M\u0007Ԓe�u@\u001e�\u00147\u0015<��A��\u0014���l��q�s!��IDž3��P8\u0002q����-�ʆ�/6��2�g+��y��kj(��~B,\u0017-��0��\u0005�~\u0004��6�/�\u0018��L�&\u0010bd��\u0015��v��_�\u0015�̋�ie�2�Q/�n˚\u0012���Y\u00052I*�6�3x\u0006��\u001b�J\u0007���\t��\u0014lA�\f|�o_sU\u0015r�;@\u000e�.��d��:���\u0001���T��n���<\u000f44��w��P�bLָU�̦\u001a��:�\u0017K3\bə����\u0016~c�y \u0004�E����m�f�RY@�Y'8���V+��9(\u001c�}�Y�\u0015\u000fOh7ֶsqZ\tm��u�ԡ\f��;�\u0001O��Ɔ���x����+�W���X��1��AҴw�6�8��Xp\tV��ݜ��<@\u0001\u001c�'{�(������{_�pzm\r��bg]\f4ز\\��\u0002b9?⺄K����\u001e\u001e�\\f\u0006�\u0014�\u000e�R�\\%%�Q��$wr��5�A��\u0015\u0004��߷��\t�#ȯp�@�)�^q\u001e�!�(�*5A��!\u0001,\u0016i�\u0006\u0002��ʡ\u0007��=���\t\u0017����}x�`�k˱�:P�.~<�($�b�\u0011�X=����H+���~7\u0001Mi\u0002Sӓ\u0018\b��Wp�.~M�H�\u0000���D�S\u0016O\u0007�\u000fņ�^K\u0016\u0013��ֽ�۹�Փ@3E\u0011\u001csy\u000fM:�\u00189��#�\u00161���\u0014\u0003�Ș\u001e 3V\\�x?Y\u000e�?ƒ��0|?�ߤ��ΘZJ\n&Ẉ�r|\u0000+(�~�\u000f�h�M�N\u00111��5J\u000b�`��\u0010��nCZ��\u0001[�^����\u0018���\u0014kr�Vc5\u001c1v;\u0015;3���$:'��\u0018˸o�8_��A�\u0015\u0011˼\u0003��d��*�P�ۺ��~\u0019uˆ���E�w#{9a�'���Wʨf;Hn?e\u0017\u001b��\u001a0Ћ3M��\u0017���h1M{�\u0012g�\u0003�h���F�`\u0011^��\u000b�*{n�痽���Oс�]-8%��W\u001dX���)��r\u0005c�K�\u000eDz���?���0\u0015ѵ\u001f�\u0007\u001b?��AG3c�jʔ�AO�\u0015\u0018��M2\u0007Į\u0001?^� :A�\u0000e\t,\u0011r��Q�\u0004e�\u0005q�W\u0015��_Ru?�~\"�&����/QN\u0000\u0002'!�w\u0005'�\u0001�r�A!��>\"� ����\u0015���D���\"ɫ�C�O,��|��7 ��8�J��.�Y�\u0001�\u0004a�,K�i1(���\u0001h\r%{f���\u000f�\t\n����+\u0014��tt��ҎJ���2mxA�'�~��D0Nǀ\u0000P\f�\u0013jz��mS�����\u0007�n�\u001e\u000et��\u000e��\u000b��(\u0014s�\u001d\u000f\u0012��xK\u0019�5��:��$ L�X�J�,�;M%��Y#�a\u0002y��.�����#>�����:��2Ki���Z�·�\u001ah�ud��mm��u�.\u0002-A�PSX�\u000b�P�$⫹��U_�m��Ȟ���'�\u001b.�\"ngփ\u0018݀^T�A4�\u0015,��L�1}�f��)��P�8�Zвzn#Eg�ʯLeZ�c�\"\u000e�U�D\u001f�~���\u0016��y@�GٓY���#���y��}in\u0015�\t@\u001f\u001f\u000bz���+\t��\t\u0011\u001fш�[9�<�M�tW�`;\u0010����\u001a�\t\rK�\u0018��|�Z�ʂ\u0019Q&\b+�Y�Q��r��\u0000]�^�JhR\u00131I�?�n��!.��\b�\u0018�j���LY.��=�\"��TL�F2�\u000b^k��ȸkB�-��c쯮�1^��VFǺK���\u0016�T��s��8a\";����+vl\u0019�f\u0018�U`����e'U\u000bmd��\tQix`����NFT\b\u0004�I�R��\u000f��CY&� �}\u0000�a��y?�4���ݥE\u0005�\u001bڣAA�\u0015@��M%7�\u000e����c��C|*��*���]����U��j\u0002�A�� \u001e�]���w\u0012]�(�z\u0010��]A���_8�S.DXi$���Em5�q!�u7\b��'��ds��珆�%��el�w\u000b>�V��y\u0007\u0004�=\u001a�O��k����D��;�\u0001��\\~�<��g��hl����$��I����&`|x��#�\u00040݋\u0014���ӹ�h2�q�9�ث��\u001b5�*�՟���K\u0001�SR\u0007j�1�W\f�l��t�V�Ѝ��\u0005s0\u00069�2���\u0014�Î�>�)n�[��eh_!\u000f\u0001>���_�+/QyW�o�\u0014%\u000boV1�f���\u000fb�\u001b\u0000����ɔi�\u0017\u0012?�I{x1���`���S�EfHa\u000f�\b�'\t�AT�\u0015T���b\u0015�;Q7NgR��S�4�q˿���ZK���Z�š�<\u001f0\t�/3���+�(\u0004�\\��YM5\u0016]���k;�DG��u\u0011N\\�<��\f\u0015fQ��j_\u0017����\u0013N\u0002�3J�����-_#�\u0007\t:��>3 ��K�\u001f{�1Z��sxg𴽪ʫ�\u0014�t�\u000f6\n׳:�\u001d+����z\u0007\u0017\r\u0019}~��\u0013��\u001e\b�\u0005�mO�\u0016���\u0016�\u0001{�0��cم��3�1�\\�v`\n���~���&K��qc�X�D�\u0004*�f��,��[_�'�\u001d\u0016�����=(����6�\u001a\u0013�cO��tBI��b�wr�ݫm�~9�z.��x4���$f�6�\u0005�\u0001��^(�{���'�L؈�\u0013\\M�k͛���\u000f.\n7¸\u001bn���G\u0004\u0013B�\u0011����[�\u001b�6�0\u00000�iTw\u001f�j�\u0007\u0001`�u\u0010��b+(AwL��=��\u0001���-s`��\u0011�ۈ2\u0005��0=\u001eL}��(\u0002\u0017�E'�SJE�\b���(�ÿ�\u0000u\b�H�ݎ\u0017\u0004 ����\u0007�rq/n�����{\u0006&�\u001a�ַ�4\"�K��HN�'�I�i)���@�W\u000e'Xd�\u0006G���?\u0001����\u0016��V�Vyc�|K��S��v&vC2A��\u0005\b�\u0000\u001e*P��\u0011�m�X�\u0005�\r�β�\r��\u0014��蕯��!ػ�b����?$]��]�V�(\"�@�\u001f��|�����q)m��m�3�J[\u000f��\u0006�\u000e�\u0017k=\u0006��8.\u0006w�\tD\nj\u001a���\u0015�\"]�9Ӏ�.��\"!�},C6\u0015\u000biӛs�M�S��,���I�N\u0001���\u001b$xH�j��j`5��\u0002m�!t��)\u0003�Z�A؁\u0015|��X�]Hב��GX��\u0017�K��D�*�����W�\u0017\b��\u0019\u001c{E�+�w�yفdp�\u001bN2e6׆���!�\u0003�\"\nsnFI��s����-'�<̰���+\u0015\u00060!�Ԝ�I\u0013�H鄶A�\u0012��Q;�\t\t���|S)�?A���\u0016Ve�o<ޞ��\u001c��\u00002\f��i�\u0002���\r\n\b�g��Ѹ�^k\u001c\bV��CqҞ\u0019>=Z!e��k�\u0001�Hb�nN8���0\u0002�M7\u0014�7���U�$\u0001Y{9\u0002�\u0012\u0010����z����ȵ��.�\u0002�2���ڝ��@ B���\u0001�M�nq0~[��u\u0000\u000b\b����}w�<9����5�A!6�#�\t��M5�ʠ�Ǟ&:'\u0004G�\u0017��tn�.��\u0003�莰���\u0006\u0019�~d}7jd���W\u001f��&\\&����~�q�6�f�~��H��=\u0016cno1����\u000f\r��˲\t�H���ɡ�g!I\u0019n�h'q\u001e�[k�Imc��j��\u0017�\u0017 ���\u0001?^\u0001�\u000fo�0(\u000e>7�\u001dJ��%7�\f��$���\n\u0011��9���y�lO!���x� \u001f\u000e��w�\u000b��b��\u001a��A=�\u0015���Xжς���{S��PZ�@`\r`E��%ҍ\u001c�[�|\u0004�\b\u001e��ϷG��\u0014�h��\u0018^��#ϯ��^B9\u0000��0��\f��!a�\u0003�Nh�y��8�0�+=\\:�\u0011�͛j\n�\u0004 Ϥ�?'�G\u000f�ʂ:dN\u0016Pkɳ\u000e,�b�U�2�pST~��F�.�������\u0006��l̠佁�g���.\td��0ծ\u0010�\u000f]Ug\u001a-�e#\u001f����h�.x��9�dt'@�<\u0007׫9�;&+\u0019�����|B7#�\u0004A&V?ZQ\bHj��}�\u0001PT\u000f�\u0002\u0004�\u0007�_��n���_G\u0004�����\u0006#o�\u0011)%��ɷ�s�\u0000)s巐!!�E�V\u0000P|�A�d�t�����y�R�@I��\u001a8�\u001e&>��/��A1�\u0015���X���b��{��b�g��\u0004�Ф\u0007\u000f�z��$n5��ʧ�Bj�u'O��\n�A\u0017t5���ed�@;�C7r ��o�Y��o�\u000b�]��;t�R\u0004W�.@\u0000��v�9����Lb�-\u0010Uy\u0000�|�~�*\\��r��&�όW�\r� \u0018�bQ��!����O\u0012R���gc�Z�(\u0000>��\u0006�\u0007�\u0001�\u0010�\u0012\u0003�+&�Gԥ�\u000b#<�\u0018\u0012�GC\u0018.+�\u0019p`\u0004~��3jm���O&�����\u0003Y���\u0012|�\u0003I�-QW\np:�7_oaqʖL�%\b\u001c��>��-�8�S\u000bo�fu�r5FQ�-�_��#�L\u0006���&��pҬ6���J`|\u0013�q����vnݔ�.uķj�%���A1�\u0015���L�K�;����5\u0015�\u0014�\u0016lp�\u0015�\u0015\u0011��'P���h��9Z���ץq\u0017X��7F����U��Xl�>\\��[+GG2� ��PG\\��cܔ���\u0005\f[�@b\u0016d�T\\�w6w��0�}�\u001c�e���bb�'t��d���ǿ��1��A��0\"\u0003�{\u0010�f!Z~\u0018\u001c��2Mn^~\u0019<�W�n��)��\u0002��5n�:��]���!b\u000b4�W�\u0013oQ���\u0011ySE]�ܮ�k�+��1�\t�Y*0�}��S�OxI�\u0000\u0019�\u0001©`�A��TӀ�r��*�\u0000J��S�?w��n�)zYJ�/�r\u0001�P�����v~dL��⵶N޲\u0000P�G�t�F��0������\u001fj6�A��\u0015̀�L�&\u001cvqϴ\u0002�>�zkޮ_\u0015���P�s�q� �r�+�́��ʳ\u001a�x��f�u�/��'�b*\u0006�a`�,�O�\u0011\u0013��RQ6��نnO�l@Qg�,P�?e�\u0003�\u001b�H&�P{M�P\u000b�I��\u000f#��U\u0006@J�\u0018�mb����`9˩o\u0014jQ Ԋ]\u001f���8����Ғg��Ñ*�>WQ\u0007�\u0018sXNԊ�z�\u0019n������\u0011�c\u001cJ>���\u0013�\u001c��+bx\u001d�̡�����~�c\u000e?���A1(-M�\u0015&�\f���\u0015�d*X\u0002\u0007\f�H� ��0���/\u001e7\u0001#���SS�lW]��ӥ�F�x\u0006\u0000�����r�\u0019\u0016��wE����0|�y�9����׾>�\t��cq'����Ԉ�~N\u0007\u001e\u0016�<\u001fDj^�4d��~\u0011������\u0003I\u0004���\u0017yDgo�5\"8�޾��i�WQ\u001e�\u000e���,hS�P����yl\u0014�m\"�\u0011\u001e\u0002���цN���A��\u0015����bd��5t��\u0011'\u00107�U\u000bVKr��[M\u0012m,���cV�\u0000釄&Nn�\u000e'��'`a���`g\\\u0003\u000f\u0001nm�\u0018���+\u0018�lKax��N����L( \u0005��[��,��\u0018\u0019�]����.�����T,�tm���B�\b��f�,\u001b�����a�ς���T\u000e��\n�ߞ���ğQ���#�W���\u0003�e���\u0013]����~���B�NC�1�G�+�a��⥒���θ�f(+ҟ\u0000�Q��Z�v1Lq�E�&��Aަ���ȃ���^�\tf�*��~��I�E�$�Je@���P5l��r\u001b\u0016e�2�\\�Aہ\u0015��M(\u0012�v9���\b�q��\u0006\u0010��b��)ea�^��|^_݄\u0017.���p�>՜��8�-IMZWHq\r�0��%�J�gu$W�{��&\u0010���\u0006���ڦN�\\\f�XW2���G�U\f$��_�iߪ�#�e���!��\u001d\u0002Ȋ�.�&��\t����N{.ᇁ[�rN$J��g�]��\u0019V��[t)\u0016њ/�ڸ��ԑ\f��;V�\u0019\u001f_L�S�Bq{�\t\u001c0��G��b\u0012�7�w��.�K0\u0007B6y\b�j�\u0001s�o7Y���<�\"�H\u0017G����ZE�-O\u0011Ro����F*\u0017�\u0015\u0019�\"CH�鵐��\u0016�b���\u0004��\u0015�x��Bv�\u0018���🎾*:C?�9g\u001e\u0004��\"s\u000ee~Ɠڏ30�<�]\u000f7����PV�W\u0007�6���d\u0010R{44t�[¿��6Z*��\u001a�(l0HE\r~\u0010�7\u001c#��0A�\u0013��%(��F\r����\u0000�0��*�=\u0006�\u0013��Q�H\u001f&3�P\u001a\u001e]�ж��Q[\rA4w\fj�11O(\u001a\u0018Yՙ���\u000b�,!�n�J���m)مn�\u0019e�/\u000b�+\u000f���j�3�N��AQ�\u0016\b������ /�{�H#uc\ri��\u0012E��8�)��\u001b�\u0015�S�x�e�7@��mlۡ�\r�v<8\n������fV5�SB�F��eB�\u001dY�1)�����Z�\u0005e��#k��Q��5�f넛�H��}\u0014�\u000b�U�1������:A��w�X��\u0003h�\u0003\u0003\u001a�c �ҡ�/�I|�\u0014C\u0005(A$�\u0011��c1H\u0012z0\u0005l6Q��C\u0001�-���L\u0012���F�ln�9�[�źᛴ��ÅY�.�,��\t\u00001��)έ\u001c����'�j�\u000f��\u0004�Wv\u001f�w�\u0015�D\u0002�[�]U�2�E\n�Y�a��\u0001��\u0016\u001e�� H�.�k��K�Wx4�>2b�\u001cg����UZ��I{��cQDʪ�zF���\u0012L��$z\u001b6=6K��ۉ\u0016I)tQdD\u001e_JW�AS�\u0016\u001c����\u0015<��#F8���4#�[�H��Lnh\u0002'�;�������[���*�E�)�b��c.�6r����+�wKND�=\b�U[\u0018�13� \u001a�a\rƣT7��\u0015��q�g\nf���>��\u0015��n\u0014��\u0014ȩ(\u001b�gA��\u001b\u001b��LSͽ2��#\u000fR\u0002\u0015>�SQ>R쐖v�'�����\u0001�_JF���p\u0000�B̢�+=�q� :<�\bO�\u0003-p\u001b��m\u0010���0�\u0013\u000f\u001d���8\u0000��6m��H�3��cu�N�)�S�87����Jq\u0013.�y�\"���_˾�\no�\f�DW�:�<\u0017���_�b\u0007I�������\u001c0��1:�\t-�'��j\f3&�T*�I�kƙ�#�U�]\u0013�K�P��\u0018�Kf \u0006e��\rN/��A�\u0014K\u0006\u0018��ܠ�\u0013W�A��\u00160���|��ds��*�\u0016����\u0000\b\b�M�rí-VC�؁�᪤��\u0012��\f��\".hǾ\u0002�c^l���ʂ841���N��\u000f\u0007�0dž���\u001b�\u0018z�`JT\u001c\u000e��\u000b�{�|��v�>_���b\u000ft��}\u00140�E�xW�B\u001e�\u0016D���cD�\u0018w�(�C��r�x�=�S8�n<>�\u001c$r\u001b�$��e0D���8��D���Z��ɾ�H�(Q��0j��\u0001/7�\bC��rO�r\u001f\u001d\u000eCz�\u0003[�T�2$�!���\u001483[3H�c&\f/\"FP���\u0015jS\u0019V\u001f�bL0]=\u0013D?���\u0004WV7g�գ�º�{�9\u0000����#��g<��9oT�>�\u0012��\u001c�.-4�\u0014J�U�.��]�\u000fe�g��%۳��~�A�\u0004�$�O����ұD����m��8�f��Í�WNPn~�\n�����;�s�p��\u0007>�\u0004F$\u0003uz�:��Q������CM�\u001e��6�4�KJ��1n�Ǣ�E�=p\r�+\n��\u001e��݂z�qT���ˋ��{��\"I���j�SjÚ�y�~`T&��k\u000bN���(�Vz��5Κ\u000e����\\7�j�v�����\u0005�2��Af��� ��Q\u0003l��$�]r�{Z\n\u000b[\u0015�JVB�_�h�T\u000bO\u001e\u0011Ŝ\u0001<���\u0014I�\u0006�k�Ť �z���P�ڮh\u0012c�aε�|\u001f�\r=�7\"v!kf�U{6�@;�\u0019\u0017pt�A�o��\u0000�\u000e\b,-�qC��sH�\u0006,\u0013!��\\(q��)����\t�;�c#�\u001f6�\u0019%.�i$RWf9b�\u0016�$FZ�Ap�\u0016X���k�PB�l�\u0018\u0011\n\u000bL�8U����C�\u0014\u001e�V���[�8�T\u0002�}\u000f\u001d‡هu�B�\"\u0012d�\u0011*i�W��\t\tNa�\u0011�5�ZA\u001a��,�M�����t��z�3��\u0005���y�w�8���n�\u0015��0ҟES�S퐄��P��K!�}09Ф��\fSf��/�o\u000f $B�hy\u000f$U\u000e\u001a\u001a�\u001f1y���\u0016%Il9���ߧ=�7�7�h\b�{\u0014щ�4\"\u0014�r7�\u0014i�vE4l_:mFL�6zNE�\u00188,�f�\u0019����U��\u0014�\u001b܇$M��Y\u0017�њ �5Zx�� ?�.`�#%A���I~ά�Q~��(nE�+�w\u0015��9��lr��SFx\u001a4�ay�h���[��q.�c\u000128�Ćw��0|��ȵK�oN\u0010�\u0006�GK\u00140�l\u0015t\u001a\u0016(\u0005�W�-�\u000ey��[G�\b�\f�ۣA_�\u0016l��Mw �e���e��\u001eHF�2����5��տ�-�F9�\u0001o��j�P�o\n\u0017�S�\u0010Z\u0019�n1�cC]\u001aM�w�e_��r��`1��`\u0018�\u0005`%D�X��^���\u0016�\u0012H��J\u0015��>]hl|�@�y\"ױי�K+qQ��/�\u0007\u0014�p�6�\u0014VV�}3*\u0011��B���0dl���(\u0016�\bQp��y{]��&�݃'Ab?��\u00147C��v�{�Ir;f��w߬�\r\u001cz\r�!�\u001f�ʣ��Ч��� ��c�_}��CZ���\u0016��\u001f�yn�VůN�� �\u0004�Ƿ\u0001�!\u0001\u0001��F���\u00033����\u0007U��OX5�3L��G�M�u��ܫ����r�3I�\u001b��\t�����2T�%@G/�n�\u001f�N�h%�g��0^�\u0011;:��\u0000� �H[\u001eܮ�;\u0019r\u001d\u0011ݣAP�\u0016���MW%H��\u000bև�\u0016/9M�%���\"���ݘ\u0002@H��4�\u0012v$m4lP\u0015m'�\u0019U�$����S\u0014�l��y��=W�&���Z��o�G1b��ni�H_r����'E�@�\u0005���K\u0003��\b8�-1\u0015kzu'��۬\u0019������S��}��,�\u001d�\u001b��ư���3V�\u0001��}U�C\u0011��)s��ϐ �6~Xe�\u000f��+���L�3�'8CV�ʮz3}�\u0003�t�g7dzZDf��G \n�m�Ą�R���L��\u001b\u0012UQ\\6\u0001ӧ�b�\u0015�Gdk�\u000e\u000eľM�o�nI\u001cBȗIN\u001e���G]��_��Z<������4�<�(�@��1\u0017���n���*\u0007�\u000f\u0019����4��D\u001f��P�j\b\u001e�-�\\\b\u001a�~1&��dN-�AM�\u0016���M\u001el)�7F������Q��\bMl���}܅zp�\u0006�&��~�g�.4=��\u001e؇\nx�������el�_\\�\t \u0018�V�.i�)ÓZ��j���n�C�=\u000e-�Mgi\r�\"�9Q�:fB�t�_��=�H�/_SM\u0003!)��p\u0007���/M�#3,���\n�8Ev_��d�{ciV.��\u0006�y����iۼ���_8�n���\u0001�\u0013<�\u0014�ށ����-���ұb�=�Z��T�m�8)�UwT6��9\u001b��g��{W1>�C� �|�,Q�\u001f�\u0019UŘF����лc(\u0018\u0006Z ��\u0011*>L)�\f=���3d\u0004y�S������WQ̬\u0003\\���\u0002\tvdC#/\u0007��t�`�8\\�\tt\u001e(����U�n�=\u0001\u0001�n!\u0004��AA�\u0016���L�\"t�5�g���\"�\u0014�\u0018������1�c���0Ξ�%�h��i4��d>`�~U�X�?A���#��\u000e�&��0GgENЊv��\b_�G\u0019�RP\u001fц�\u0001�6�\u0010�@_��\u0003�|�P�[6�-1D�8��M\b$�0@{y2�؉=\f>\u0016����\u0016z8�\tq��Ae�R��V\u0002�\u0013-a��J�Z��\u001a���\u0001�\u0003�J��#��\u000e�@qMʎ�\u000e�ҡ���z�S\u0014>��?S���f\u0012\u0003ĸ R+�+�S�T�^T�l-G\u000f���M\u001bvצ�����^��\"����d��UkIj�dP\f>��_�oh\u0015y�_p\u0000)�@�\u001a\u0002:��\f;\u0011@\u0018+�5�\u000eد]�(���(��ए,����a��e�\u0005�-�A?�\u0016���M �6)fuˡ��f.�H?!�F�6�\u0017��Nwm(^Y\u000f��0\u0015��?_f=��(\u001aw|��\u001b���4�aW�gH�WgHl�/j\u0014�(�\u0019�p�\u0012���k�f�?w\u0000l��pT?/\u001d�2�#^_�\u0003\u000bT��4�e�~�yT��\u001cC� �\u0018??�IS\n���]\u001d���\u000fG�b\u001d!��iA6XL\f�I����>�\u0018e�݉sU�}:~��F'��sچ����8�3���G�l(Ј�\u0014(7o�s�}�/�\u0018t�L1pPI�APE�\u0016usÞ��\u001al:3���ɹl�\u0016e\r���\u0014�6\"������\u001c\u000f�BG�6Z��+}Ǔ�P�����1aY�I�f(�\u0019G-wwn���oT?}\u001a݄JW��AH�\u0016Ѐ��ј���7>K��UF\u0017��X�$|3�]�QSU��-9\fTO��d�ʣtU��L�Ko>�����!�\u0015�i\u001bB\u001c\u0003��j{\nJ4~Җ�&E8\u0007^?R\t�\bI���0�:cV\u0010�Y�\u0017�\u0002\f�ߤ����q�1��\u0005\u0015|���\u0017�X��[�u�A���j@C�ѝ\u001b\u0019\n�!��\u0015��o�UvέG9\u0005�\u00165��;���\u0000|�\u0007�n4D�\u001d��Ч�͝��x�`���\u0005�\"\r�$)&�_�\\�\u0013�q�����\u001a\r�\nw�9{M�\f�7�P�e\u0016\u0007��\u0002u��L�)&xb�\u0002UO,8\u0005q�-�P���@\u0006�{�\n<�$���Q\u0017:���E\u0011,�=���/\f\u0002����W�\u0019\u001dM\u0013h�z�-\u0002��3�N\b��RrţAL�\u0016��MX!*�\u0018~֯qA\u0006���Ą���w\u001a�L\u0011��si��t�s�����%\u0015�\\��(�m��Z�d8�5��\u001f�\u0012{�b�\u0012��\u0006~�nr�i۝<�آ�\u0019��\u0004�P{̴\u001b�\u001f�-\u0010�\b}d\r�ׁ\u00146w���5V\n|�m��0�9���(\u0016$\u0006H/T�a\u0018.���\u0003�`�\r�\f�HO�#��\u0003�a�r��ػ��RN�\u001e��\u0012�R�\u0016\u0010F\u0006���#�Y��8AVz���Ah����C�1K\u001f)\u000e�-����'��\t�<����*��ٔ�J\u0016jZ���}���4\u0011\u0002\u0017�2��\u0019\u0006\\8�!�Y;\f����6��+�,�9yQ_�\\�����E\u0019���������C.$GT�Iҡ�Nn��L\u000b�ბ�2'�\u001e�Z�ɚ��JB]�'b\r�����}[��r���zӋm��\u0004~�lQ���\u0002�с�A7�\u0017\f��1�-\fTN��J \u0005��i�&݋\u0017���u�\u0016}N�\u0001��Mv��w\u001c�d�t7ʒ�_\u0015薾vw\n��\u0001�U|��\r�i��\u0005��[��\u0003�#��#'��LOr���#���YbKpn�lY��ר���\b\u0015�jVm\u0014�>/<�(��XZ��@.5\u001a� ��tg\u0000W��ػ*t_n���u�cC�e\bK8���ה�Vt����cFS5�I\u0010�����L��%\u0016;�\u0018�3\u001dUɹK_\u0018^L\u0007�U4ޘ���;b��\u0011ˎŝ2\b���}f\u0004�_hc����/�X`\b\u000e?$2���P�*\u0010�F��s8��\u0016k&��>\u000e\u001fe͓�m�N\"��ޅ�ӵ�\u0010�(������s\u0018]��\u0006r�m�AK�\u0017 ���b��YZ���v\\��R^���lK��n�UR\rOO_�y���\u0010�^%\u00181\u001cf��r\u001f-��p��\u00117a�SF~n\u0000:�:\f�l�\"����\u001f-e��\n�kl�ɺI���v��\\Yߤ\u0016�S'4�-�!���\r �rw�AށQ�HF���\fK��A�z����C��66���\u0013�Sv�~zZ \u000e\u0003a���\u000b�>�^҉��ک\u0016�FNy\n�o\u001d��P�O4�0��\u000b+�`���\u000e\u000e�!_�\t$w\"Q\u000b��f��)^QV�#����Y�`��\u0017T\rʾ\u000bC[y_�1F\u0000�����r�M�+w�\u0011o[\u0015\u0000�\u0003�\u0006��\nE^\u0018X�tE{n��\b\u0017#�B�(\n%�I\u0019���\\!�Eq\u000el=>�m\u001c\u0019*F���\n�}\u0015҂��\u001f�AE�\u00174���a�Og�ٮ㭼��\n\u0014\\��9�6A\u0016߽��gi�3+�)������C��k0��d�\u0014���Ci\u0011f_�h�w\u001a�D;�\u0001w_�w�ͻn\u000f\u0000�HI�6�\u00122��1l\u0017,\u0016�|@!\u000e\f䓈5���9|�\u0013{\b��b��\u000e�I7�q\"��\u000e����Wx�\u0016\u0013��<�^m��G�+��\u0002!\u00018�\u001a=���sA��0�\n�|�:�W\nk�\u000f!33\nDhw5�N3���5\u0010D*ƽ�щ�XZ�eA\b1�G:�-�\u001e$�d4b�&�Qvs��n�\u0002�[?��\u001d<5�\u001f����-�'����&�\u0007Q��z�n�m�q�\u000f˼��N\u0002�vg��[�\u0019\u001a�\u0018�L\"�\\��M���uh��Z�@\u0002�ؑnj\\c,,�\u001a\t\u00141�>CG?��\u0011��$�R�1�r�j�\u001c{~�uu\r\"\"��S���i\\�I�\u0007��u���l<�/��6��\f\u001f\n�Mߋ# ���:h4̈́\fYt�\t'\f�@���&�SqO�’&�\u0019S\u000e��8U�t¡��A�A�9�*c\u0014\u00176J���a����.���A`˨,�\"̔>8I�/���#?\u001d���e��\n�\r�\u0013�&�\u001a�Á\u0017p��}b��\u0000�j'\u000e��d�1.F�K�8_*8a� FS��\u0014 �\u001ck�].�A�p��\\o��\f-�2�)��<Ӻ 衺�\u0004Ϋ\u0017\u0000w\u0005C)i���rb��X%\u001a\u0018���q���\u000b\u0007<{���q\u001e���n�`%\nt�}�g\u0016W�NʆY��\u000f%�\b\r����Q���o�sr�\u001c�`J�\u0016��C�\\\u0014��h�M�� \u0016�#�A6���\u001e%���q�^æ�\u001b%��[�ZA��ɮ\"��{�\u001a��A%?[j-t�\u0000\u0004\u000b�l�wa�\u001a\u0018��A$�\u0017���X�\u0006'ƚ���IY\u0013t�\\�1G=���8j���v�\u0012\u0010��aL�AI�\u0012�4tU.�L�ioԘv�Y����I�M��\u0014�\u0016�c�\u0002�jHS�4q�(��\u0018^[\u0015�����@�\\��`���c��\u0018�Q����\u000f�Q���m���\u001cӽ\u0002�9\u0013�\u0011�\u0013\u0005HU���B\u0006�� `:\u0000up\u000b���\u0018�?�a+�]��\u0007f��S{|�n�\u0017�\n\u001cI\u0005v���I�Ԟ��\u0004�1�yڸt�R\u0007�/�'i�\u0004�y\u0013(k���\u001fҘ�\u0010�2Ѧ.�F�=\u0017G����)�g��A(�\u0017����j�Ƽ����=\bN��%\t�|-,#8�r������InljX�d�\u0006�h��з�\u001d)@��\tD=���o.D�m�+\bgy�Lh��\u0002@S�\r��Ra��ν�vB����F��\u0000��I�z�v�q{;杧�hY���L�������� j��M��\u0005�׻wۣ�\u001b\u001c7�R�Sስ��\u0012!\u0019\u0018\u001c��d��;���\u000e�;s)\u001a��8T���O�\u0003�Ռ���-�J\u001d�}!�+ ��\"����n��_Kh�=�ݜ]c�-\u0011)���X\u001c��үu�E�~�\u0011�\u0002\u0014$1~Q1sɖ��j�}�I�OD\u0006%\u0002������\u0000��FI\u001cH�&�)�J\u0014�AG�\u0017Ԁ��c��`\u001e鶐L��W*a_I�Iԇ�Nڕ͙d�i� ��Ͷ����v���\u0011�r\u0019�Riy\b�\u0006Ԅ\u0004\"r��\n�h\u0010o\t��tP�S��c\u000f�\u0015\u0002���\u0003��[h�\u0019��6\u001c\u0012�\u0003��\f�n�c�c��1�k\u0017I�����U���g�\u0005I�eZ�)�=\u0002�{G����˄\u0000a��AD͔\u0001\u001f)Ŧ?�$qR\"_\u0014\u0017.�\\0�&�\u001b/�|d*tlRu�n5��,������\u0010����1M�o��K��\u000e�q����\f�ǩF�WB7vB�\\$p�g\u001cV\u0018woyb�\u0000})����'\u0019\u001f�B\u000472#\u000b^l�r\u0012\u001c\u0011��۔d�'�'����c��{�ƾ���+\u000f1ѫ0�h�SɛTe�\u0005\u0011Gq\u000e2����n\u0014�AO�\u0017���a����µ.v\u000et\u001fߥ�U�k���\u0018\u001f��M�ZF\r�n�!3�2)W\u0003\u001f:b\\B\u0004!C���aR��Q\u0013��\u00186\u0019ڵ\u0017�3�Wn�|�@@��]H��h�\u001ex\u0002n�PÔ�*4HK�du�X�8�f�P�\u0002ꩬq\u0015B��:�[C@��ʦQ1\r>FG\u0004��ˮ\u0000\n�Q\u001dd�d�H�+\n�����\r8L�QTE��N\u001er�q�)T.�N�s�(a�?p/sd\"78�-�eg�6��%5b���\u0001�\u001caZ@]��c��i�����V�Ω�ug�U:�Z���S}EA��~�_��emc��_��q;C\u0015q�E{t?�Dʡ\r��\u0002\u0000\u001c&8e�%���A�+ʤ���\\�2�r\u000e�b���*\u0013�AI�\u0018\u0010���cƤ\u001c\"��K�q\b!\\F���E,���r��\u0001\u0014v��=\"˥^�R=a5)������ \u0017�w9����b�\u0016�>�/�\u0003\u0001��t\u001c�\u0014�U���\u0004<~�z�=+Wd\u0005�X\"\f8p��~9\u0007��\u0005Vod�\u0007\u0003��L�f)q�@�׼V'A8�*Y����ÍW��\u0013�\u0003q(�\n@%��l�\u000f�\u0011O�\"�\u0013E\"�ēH�3)�M�Ҕ�cI��'K��ZR�X\u0006>�\u001b��\u001f+�\u0013q�8[F������w��{�$IT����\u0017(x�pr�\u0019��\rJ�C��\u0001���V\u0000\u0011tv�`��0�&���\u000f���k��6��Y��#�y\u0010��1{?�:�=��O|eT}�Q7-�U�#�\n�g�6���\u0004\u0014Ë�����|\u0007�R\u0013�Aց\u0018$��L�L��LJ|��A��`�~(��Q\u0005��t/h��>>�-Z#�&6�1�b�#&\u0012�u��e;�v�,Q�bQ��n*��I�`0\u0018�#�H\b��;2*�%�k���z\u0017�\u0019�OZ\bg��5��>d)gY϶Æ�&\u001b\u000f$�N�^iR���bTfZΎ$���G�!�V9Q[�l����Km]s�\u000bU�^\u001f���\u0011�|1���;�@|��\u0014\bj�A�\u0005��\u000b������\u0007Ԁ�\u0000\u0000\u0000\u0000\u0000\u0004�H\f\u0004C't9KOn�z\u0019�F���=@A��\u0015~ʷ5���n\u001f(|�ᄮ�|)�a�n�.\u0006�'*�ֆu\\��*P�l�\u001a\u00103\u0005n$�cԜ��X��0���g�I:s�LJ�h�e?\"cU�,�B�g\u0002�!!NFҕ��\u0001� �\u0003'���\u0013��`g��-RƟ\"�xO\b�R�}�뀅��\u0000��2��(�,���1BV\u0015\u001a�\u0007��;ȿƕt\r\t`z�Ӓ�\u001b]Lp(zm��N\f|��*\u001f-\u0013�\u0014p3��%��җА�\t��8�2F:J�ґ���Z�F=�\u0000�\u001f�ֶ���S�}LqF��AE�\u00188���\r]$n�\u0006Yw(�|�M�~����.!\b\u0004^�%2��8�v3U���\u000f����\u0004\u0004\b�(C�L\u0017��\u0012.Y�o}�۔��\u0003W�\u000fk7�T��A�⯮�ٷ\t\u0019�Bl�=��\u0007i��!{\u0001�\u001eP\u0007\u000b�}C�\u0010Q\f���[\u0012�\b��}�^�'>n�^�j��(fs�^\u0013�\u000e\u0001]���\u001b��:\u0006���/�M�M���Y���އ@Av��^�Cm�F�Y\u001f�N\u001c�4* \u001b�H��ʬ̏�\u0002\u0011�\r!�G�a��e�a�#n-\f�\u001d�����\u0000�wY֮��C�\n[�\t��?O�3�DV��ȉ\t�\r���3+:���\u0015xzF��9�����7�\nk�\u0005\u001b4�K���>�RCb\u0012�u3R�\b�\u0014��\u000b#o�\u0016w�\u0001���A<�\u0018L���ʯ�����.BZ�[\u0018����4�ð\t�F�N\u0006��r�M�\u0005vH1��'�߼�n�۬�R1�\bj�k-�G�kg��v��`?�vDZ�n�/�_a�)�\u000f4q�EX\u001b*��\u000f_�I���wθ��Bw-�\\p_�w���q~��l��w���q\u0011#\u001f��_ýО\u000f���\u000b�*\u000e�.��Aǁ\u0018t��}bL��/|��\u001dSx�m\u0001\b\u0013;�É\u0001-�\u000f�\u0011�9�*X̂�|���1\u001b� ����d\u0005�+��K��e�\\����%���$Ȏ����`����D\u0006Wd#8�YZ]}r\n����)\u0014O�\t��v�\u0012���E��=0Ak����u�\u0001v���g�\\L�\u000e�6����WЬ\"w,,]��\u0004Hrh�\u001b���d�q>d�\u0018\u0018���.I�F�(��k��\u0012\u0000G\u0018�G���\u0019\u000b��췖\u0014wo��,�\u001cf\u0003�%\u001dr��\u000e1\u001d5P!&�m\u0016#}#\f�P.�O�B�p{\u0017���\u0010\u0000q\u001e�AȚ��|X��\u0019�(��\u00041��,����\u0010��w\u001b\u001a\fW�k\n���,ý��\\\u000b��j��ί���l\u001d~��g_�I�&��ѥ:\u0018�A\u001b�\u0018���.��$Rz��\u001ba��ջ\u000b�#}.���>���yN��\t �\u001f��dg����3lkm��\u001dy�a�P��T�hj��\u0017I�\t3\u0003Z[\u0017������mI��j\u000eO\t\u0013X��I�aK�:I\u0000q�:aP� �\u001d�#�\u0018���d�H���\\�\u0011��\u0001\u001c��H��c��\f�����\u0011��Υ2ݢJ?���a�g�~6c/,b�h����\u0011�3��r��\bC�\n9KU劅��Խ\r�ϗZ��E�g�D��\u001a8}�}[#x���V�9�\u0015<̍\u0018�z�p&,\u0015�9��\u00038��tْ\u00019�~��LK�\u000fXJm)Z���,���!\\ݣA\u001e�\u0018���L�\u0006U\r�(��с9�[-\tʰ�\u0018\r҂!C�I��\\�:�5�bi��/����4+� ���v`Ll̸2!�Y\u0005z@�\u000e[\u0005s�?\u0014l\u0000�\u0014����\u0013(�NغH�Qu���G+5�bE��窏�����o���K��hG�cnw��6s\u0002�a$2I=��\u0010~]i���\t\"�U5sX\nDf,D5�ص��5f�Q���d�\fE�R�\u0011�s֗\u000b�<|g�f�o\u000eR��m�s��?\u0017�`$�ȁk\u0011�K�\u001ePe�\u0006\u000f�`���M��b���./�ڥd��/v�QQ�v�[Z(�ä��k�\f�\u0007�2�ME]0�)����A,�\u0018���M%`\u0014�\u0005�\t�4W\u0005�Y\u001e\u0013Z��n�\n\\i�\u0016�tR,\f\u0002�ۨ�Kw��AJF\u0019�a��nORR^��y�����W(��}�\u0019\u0018�$\u001b�3\u0012�!�ӵ�\u000ba6�\u0005�8&�|�/(9�q�xc�?���gp5��B/6�dٱ\u000f��ppP\u00106��\u0013�]\\\b\u0007\u0018#B\u0007��x�1�ur\u0018I@ab\f��1L�*\u0002�n��F\u001d�:4ӎϗ�g4�1\u001f��vUI�~��JWȀ\\:2�W\u0013-4\u001bz���\u00176\u001dq�\r{�B \u0014u\r\n����-�C�մrr\u001d=��}s�̰BR\u0015���\u0003h �l\u0006\u0000�!�y�\u0018\u0012Q}�R��\u0016m��'Z\u001f4J�l\u0006�Sp�-�O?A�\u0013��A)�\u0018Ā�ƈ���_����wv�C#�}��~A���{�\u001c�pd�#�1\u0005�JE\u0011[�\u0017%\u0005�w9od��z�M(?\u0013\u0000E\u001f�k�f�\u0013�R�\\Ѷ��:��\u001aSr�\u0000\u0012���� &Y�ޱf�����{�G����h\u000e�]��J�z5�/1f9^��\u001f\u001f��\u0002�j\u000e\u0000\f�?��rw�Ä�w�M����qW��9'��%O��î�|��Xx�\\*��\u0007f�j�8(�\u001f�x�O�-y\u0000[�\fTp\\\t�1\u0003�B /X\u0002{ԁ&Ϗ��@�=\u0014;U\u001cB8l��K�b��t�\u0007ʮ˼3c���k��\u0012�-uK\f.�U\u0003\u0018�g^p��M�H�L�_8�\u0011\u0005\u0000�\u0001�������\u001e �A=�\u0018؀��f�ot�g�?��a�{�!!,�\u000eC1�&(\u001b)O���\u001c��*�Ά�5i$��U���F��\u0005K�\u0013��\bZ�ј6*3\n��Jv���ݭ��sk\u0019\u001e%I^�໏\u00051�0�$\r�d�\u0011�M%\n͒�\u000eUg'W�W&ƫ1rii8��}\u0019/!\u001b�\u000bEz%�����^qebl\u001f\u001b\u001f�.�Lë\b��v��>��s�\n�N\u0013=L��l\ti�Ïw�#\t0m���\u0006Zz\u0001������S��� \rV1�\rm�ۉ�[�9\u0012\u001a�G��D#q@�$���՗k\u0011u=E՚��I\u0016ſ`ʧ\u0012�^���\u0012\u000f����$��\b�\u0012\u0015U�'i�\t�\u001c͉W�\u0002s��=GQ:\\�;Z\u0000��˶a�E���1*x�\"�A@�\u0018���bW�虢���j֬��\"2!��+2���;\u0000���-I<�\u0017�o�\u000fZe\b���a\u0010�Fu̅�E�\u0017B\u0004��4Rw\u0015*��I�\u001eCS��Y7�Q5��)\u0018t����ʡ0�.�Nl�\u0017�\u0010\u0001^\u0004d�\u0019oA9�l��P�Rn\u0004��*��\u0017��K�X\u0010=lr��S�A�ٶR\\��\u0012L\f$��\u001f�m���P�L�miK�c\u001aV7\u0006,�Oyd&�0��W��k�yo�RD\u000f�w�D����(x=a)���d�\u0010뗸��[\u0019\u0012��&�=�<{K_��zd�\u0011�n��S�7�����}\u001e�z6*��H(�x����̄v;�P\u0017N����p�17��))��'{�Z\u000b�\u001b�z�`3\u0000\fěR��\u0010�#�AP�\u0019\u0000���d�\f�ҕ5�%?;Ն\b\u0016�y��\u0003�\u001f\u0006����&]c.,\u0003�Z\u0000g��H�N~\"=���\"z��\u001e<��t���\u0018x����^�\u0003��]\n�WO_�w���\u0007o����Y�\u000bo��-�HJ��p�\u0019�#�AQ�\u0019\u0014���d=C~ �\u0005�q�O?�����YM%\u0017�9p�������&gfC�JH�m�5�v�ar*(>���\u00181V���y�8�8\u0006j�\u0011�`����\u0014a���\\�b�\u0012�|E�$f0�9c˳]�b~��\u000eH��ZT�\u001d}\u0012:�|�R��z,\n�ޡM\r2�?�\u0006}`�^-��\u0014��㽛%��GǤ�\u0012�#\r^�j(��%�g\u000e^K\u000f\u0013��\t�Dn�;�P���|y\u0018f��5\u0000p\u0002���)���@��wX�\u0019���\u000f\u001f0��\u0001�\u001b@g�@�p�I��S���v\t�#��4j'kz�JJ�\t�l^@\u000b��+8\u0016= �|h}W\u001a�e\u0006{\u0015�3��5D��[�0p�'�BH\u0003&��\u0004�A���\u001f\u000fg�=H��IRME\tD(8J�hrxl�v�\n���AG�\u0019(���bul�*��\f\u0007�|}�8�\u0000\u0002%�!�|�Q�,�(|H��J�\fD����J�h���3�&\u0013�EC`��>D�}�\u000e`�_���C�Sw�}��{�\u001eeP(\u0016o\u0017��R�7�VY\u001c}���f8zo��\u001bi�%\u0006\bRC���?�p��\u0015��@I\u000b!�\u00062�C\u001f���%�\u001a5w\u000e_���uO�y4\u001fn��(\u0005�sޠ_DN�\u0002�V6��,ʌ���5��s�g�%|��B��`H�1ե�&\u0003��Ui�V�IC\u0012\u0014C+��_ʹy\u0015ס%6ܒ�fܩ��\\3�\u0014쐌t�<24c��qߟ/��_\u0011��\u001c�UE���w\u0010�\u0015�W!��8\u001fK�\u0014\u0002�j\u0004\u000e�`컳M��8��R�\"\tw��g��8cW����$�AN�\u0019<���e\u0012\u001b�\u001eH�[�[��%\tj\u0013��\u0005��#B�b�#k��\u0014JcbCd�p�]]��������S�\"\u001eʍ\u0010\b�W�چ��6n�\tSO7걏�BXȾ!H�s ��+K�\u0018�\u001a��o�\u0001�-�\u0018�\b�Dm�E]/����G�S@E\u0004*��\\��\u0014eʲ3�A���i/m\u0002\u001cR`+��|�S�Q��\u00177�⿅#�����Y)�L\u0014�aN\u0017\\�\b��|Y\u000b��W�{\u0011t�1\u0012��ww�?�6P)�QUTr^��Vc\u0011�wC��\u000eP�SM@/\u001b�D�ު\u001f[{�V�ȝ��d\u000bT�\u001d��~S��Z3҇Cxir��'\u001f��Ձ$_n,�b�\u001d�~�9=%�A8�\u0019x��X�P�.?y���R�\u0001'\u0011�\u001cz�Ӭn*�ը���9�yR�QTATJC\u00105�d�T\f�\u001eȼ\u0002X\u0013:�\u0007r���,\u0001�s��\fZ�O~}[\u001c���Hw����2\u0010|�1=�<��A1\\݌HC1��/رK�i��Sd�\u001f�\r�s����7��ۙ���/B�u�\u001fk\u000eq�����䇖\u0000\u0004��G���?�6�)�\u001e\u001b����m��Ź��J���fz,�yL�\u0016Fi\u0012K)c\\$�;\u0011�-.�|~,��U�\fi��*b�r\u0016����\u00168\u0013ևVg�\u0018_I��\u0016`&�����~�m\u001a��\u001dHD\\\u0004�\u0014h��Ƹ�\u00156�8Wj�;���\u000e�6\u0002�/�\u001a\u0006�ɀ�7�F!�&W(0\u0001�\u0018�6�A0�\u0019���Xо,;���\u001f������\u001aK\u0007x��5\u001c�$\u001c7�bȚ��s\u0003\u0006\u0011\u000f���ڕ'\u0016Eh'�\u0015�gO�?ޯi��5\u0018NmM��\u001f�\u0001�Io��ݛ\\?�8^rꚹ�-�\u0016.�k�qm�x��t($@�@Z�\u0007o��\u0011\u0010�����g�|V�2��$k�~=\u0000\u000e�������S�w��R9^\u0015+���WfW����7փ��#��#k2�\u0005v\u0006\"\u000f�f™Y�cq��L�&Lv�5��P��O\u000b�_\u001c�\\=Z\u0003�<���{\u001fB`zc�M�\u0014�����ڳ�ҿ��O�d��.��&_�\u0001�mA�[�\u0000*�f�A6�\u0019����f1-��Z�#p\u001e,oȳ\u0006�\u001f,�\t�u��л�A��H/��)�\u0002D���Q�\u0018�R�\u001e�$\u0002�o8��}��H\u0002A��5�VZ�C�\u000e8�Ě?�ov\u00180�V��\u0003�s��t\u0001.��ZX]B��F��1���2��?��7�@�^�\u0003�\t��_�-��T����l���B��&�]���[������VNz%�*�.n7�\u001d\u0014�;m�v�[��\u0017�,�:\u0011��\n\u001b\u0013�S�ym�c\u0010Y��-�\u0007HC\u0006@��.\u001984D�l�$\"GI[N�:L����;�\u001cO1Z\u0018�\u0012\u001d\u000b3n�\u0014\u000f\u0014�E\u001aW����\u0017^D.�3*��e�y�u�\u001b��t\u000b��\u001clr��\u0011��ms�\u0010��=�)|A9�\u0019����b\u0011BP 1]�z��o��@�\u000b�P�n��Q�F\u001bh��Wr��f�(N�x\u0003�\"\"\u0002ϸ\u000b�=\u001f��,��\"���Q|�\u0014�_�l8Y�^��\u0003��\u0016\u0005ߩ\u0014�\u0014�\u0016��u\u0013\u0000j\u0005G�GP�\u0006���Y��;��\"VF��[�\u0002\n�I\t+:\u001eA\u0002��-�iR$��k���\u000e�5�����5�\u0014B�\u0016���\u0000�PdL�\u000f�:�i�e^��/`\u001aF��\nV\u0018Kxu��\u0010ސ0>\u0019)��x��c2߽�\u00117�c�=G(�׬���I���鏥��gϸ�?N�_;\\x��Q��\rJ�� .\u0018+�2��߭�\u000e�\r�,���\u0016H��\"$z\u0012w�[~�RE٤b�$�-���O\u000fX\u00020å����AX�\u0019Ȁ�M!��Q!�A<\fr���-�c0\u0002��ZC\f'��_\u0000\u0016�\u001a#��#^<\f����\u000e\ta�\n�0m�\u0001\u001e�ǵ�\t�IwB�\u0006���\u001b�4�s��\u0017\u0003����\u0018\u001b��4n�VV\u001d�����;=�\fk,C��\u0005��N]P\u0014�\t��C�ir���\u0001��Y��m�\u0018%��\t����1q�mn{��v�dx묓*7�a��q�4�\r?^�\b�|\u0019����w��9\u0001q���3\u0007���C���b\tP\u001b3�8���HLD�DB�R��.|\u001a\u001bo*򼻉\u0012*� &�o�\u0019\u001e��ik�N\\pn�\u0013�\u000e�ͥQ�\t\u0015\u0005Y���eDq�y�*yȧ�)�{D`ZnW&\u0005\f5���xw��A�\u0019܀��a��㮖�J���]x�ϧc6�\u0003�y�>4�\u0016��\u001c��ޅ\u0015C�lx%�TP��%k(�\u00167�\fx\n�w�ŋ\u0014�wVv��g�8��n�����!f�q=\u000e5�\u0002一]�(ˊJ[��τ���{�I9,�\u0010\u0001�Gh�-IᦜX\u0005�Fui�~y:\f\u0004o\n\u0018�>����-[m��\u0019�\br\u0014'ᛥv�Ϛ��ߠ�_��\u0004�c��,T��\u0012�s���vJ�?���\u001c\u0004�B?\u0002��ݦ{\u0019�|%[�-\u000f��)>֒\u0006���<��d\u001e_\u0014�Q\u000eRK����\u001di�՗#\u001b\u001f��ld9'1]���f�~��b5\u0015I�%@3\u0001\nO�B\u0007�r\u0005r,���g]]\u0002K\\\u0011�O�\u001fx��В�B��Y��?IุcS�ǎ�0����b^\r\t&CTr�-��3�B�k�\u0002�q\u000e�����}��0�Պ�+�Ĕ���-�k�&�=c�\u0019�h?l����~�<\f��/:ʄC����75�!��}�'h�g�E���_\u001c��nI|zI\u0015�N��J�\u0004���c��֩�E�UUa�eђ��J\u001f�#�\u0002%\u0017��\u0006�n�\u0003X�@�3\u001e���AS�\u0019����d����W/\u0006�w��_۲��3\u001a\u0000\u001d�\\�3/�]#�NJU��K�6\u0004`;\u0012�\tV9��pua\u001a�*kñ�P�4F��'���\u0006֩1\\��#k�&$��}�lP�P\u0001�\t\t1�\u001e�+�+�WQ]����9\u0014�`���A\u0006A\u001f�A�\n������\u0015�b�ƺ\u001f��\u001d�\u001b\u0003��7OZ������/�)̋ĝ9-Q'���v\u001d@P%O����Ր\u0007����\u000bd�r�g���fW;w�ʤ0L�פ#��\u0002+����\u0014A�\u0015��`�\u0019t�u���ila�)��#ݞ*\"�i<\u0018|\t>U\u0007\n\"�ҍl���֨�%\u0005?p\\~ߺ��~�\u0001\f7\r�7�+��?\u0011cŞ�\bť\f�]E�&\u001a�\u001d\u0006u\u001f��_$�Pq��<\u000b�R��\bT\"���Ah�\u001a\u0004���mj\\��+���g�\u0018�\u0014\u0006c����\u001c�@\u0000ou��1fTtK=N�o���B����@͚����]�\">��\fЬ \u00106\u0011\u0012Ӵ�[�g�RG�$\u000f�+�\f�ST�\u001d��\u001c˙�F�9����#X\u000f8��>\u0002�na�{��p\t���[F\u0003oR\u0003�\u0012�i��\u0015\b\u0003-'t����™�ֿ\u0015\u001dc(�e��j�R\u0016\u0007�7����#7����j��#�l\u0017a��o=`X:��i\u0016�\u0007\"Cw�v\u0001\u000e�\\2��f��V�w\u001f3�O�I8\u000e�G��/��n����FvA\n\u000eX��*�S���q�ş������u�\u0003\b�Qhd��\u000fw�l����}ҀjT1]EW>FLkl������\u0016>���\rg?��Jۉ2�'t\u0002�!\u00134����ҵ\u000f�\b��z�i\u0015��\u00164K�Sn�}\u001cj��\u0000�M�ٷ�AV�\u001a\u0018��Lɰ��KS�y�d�o\u0002�}�\u001b \u000b��&��֒��2�m\u0011�p�\fG��\u0007C7d�h�L$���?�r�T.�hǤ�>�xw��Mי˔��q���D�\u001fD�N\u000e,�La6\u0014%�J�e\u0017���>�iĘ{���\u0018s,\u001a\u0018y\u0013`\u0001��5c�__�\u001fBEKeN�o��:�=��Vn�E+n�F�\u001f2�?��$�[Z\u0019�\u001e�\u000e\r�Q�\\e�\u0004X˩>\u0006��O��ֶ���$`\u0001c8\u0017�Ei�O(`�X\u0005�zF�b�\u0011�u��v�����l�\u00183/7wf��@Puo6��+Š�ydh�d�\u0010vY@[\rrf��\u0013��W���!eQ�:+\u0004ҵ�����`�-�.*��\u000bh�1\r��`w\u001buГ9p��k\u001cOʔ\u001e�ߢ��\u001a\u001c�KЊ����V��z��AO�\u001a,��M(�eW�J���_1�\u0010�&/��=�BP0\u001d�Eѹ\u0013$G>L�\u0017�Fb]���/�.��u؝j<��`�Zw �{�M�ܬ�+BOY'V���H�nͰ�h��B'��L��C��j䲠-�c�~\\]`\u0010��_!�w�Ŗ�Pzŷ[iK�5�\u0018��E\u000f\u0000,w,o\u000e��~�W�\u0013�,wi�\u0007�s\n��:X���\u0006/s��\u0001�'EقoX6}�[VS���\u001a���y��e6|�$|��\u0006+�ӒS\u0001�Ay�6\\�O�������\u0016\fq�w��\n\u0004�<\u001fz5\f\u001c١AJ\u000e{�m3,}�\u001a�I��~I8��ʲ\u001c�l\f���!�ų/���ka)�\nq�7ޙ\b�c�Ǡo�f��\u00000\u0003�\u0016���c\u001f�y�*a�����\u001a�����S��\u00129\u001b�#�!)aə��h���7�\u0010=7?�l��\t�p`�\u0019�qd��U�B�1\u0002�x!��\b1��\u0001�T�G��v\u0000���ţXɓ�VS7y!��\"�1�Ě6\u0013��]���n`6\nZw��\u0003\u00197\u0002�����+H�\u000b1�&MEM\u000f\u0007\"�g_o{(�\u0003�-\u000f\u0007D^e$g\u0005�D�@i�S�Z���5������#�����]V�\u000bɣA��\u001aT��|��X�\"���2\u00199\u001d���\\]�i\\�]�\u000b�S\\�5��.�A!���\u0007�|����c��\u0011\u001a;�fDM����+h7�v����m�]x\t�c+���\u0015�?\u000eG�A]A��CF{\u000fza�\u0015pB0�.�|���d��\u0015�\u001b�\u0013\u000e'�$m�$�>�L��\u0007�|\u001d�\u0010U0]�]z��W�c\u0006��+�\u0002�be�#a\u0015��\u00153���S�����B�Y\u0016\u0010ʟK�����G�U�|�a$\u0010�]�k^ߒ\u0001��\n!y��|��,���\u0000�MlS��d�MC�.�\u0017�,�����.\fdH�E�|��A���o������b#5E�4Q��\u0007X\u0015��l���{�Y1�b�\u0019�,\u0004X�S\r)R����\u0018m��\\W�W~�J\b�\u001e����|V\u0010�/��:�\u0015�\u000eY\r\n?\r7�C��lh3}D\u0010ڙ:S\n�����\u0018�9�K�\u0018lW�\u0000[\u0002�\u0016 �(?��&\u0015 \u0015���Ƃl�qُuW��4\u0006�\t�\\��\u0012\u0012q�K\u001d[Z!�%.\u001dn��n�Z0��q�?�)ENJ�\u0018�黍\\��\u0017��?�M�̘\u0007�\u0006*K��*��>�4���\t�G���\u0000Ka\u001d�z��c�\u0016�\u000b'��A-�\u001ah��M|�z\u0013j2\u001a\u001e��\u000b\f,%,x�z�k�\n�z�\r쳔��Ȧv�\u001eh���\r�]��\t���\u0012X#O �,>.�Ș\tR4\u0006Uٝ�Q�U�kk\u001f��o���8�����{\u0011�D��5��4ȇͯiC�H��\u000ei����J��&W�2��hF�̅������\u0005\u0016���\u001a\u0017\u001e߉\u001c���\r��7\u0002\u000b�\u0010T���vD��n{���8[���LF��\u0011�}19�n\u0015kQ�q�9�^+8��?�\u001b%Ijx�z�4��\u001d㷜�h\u0006!?�QG\u000f�ht\u000b�̬nm7�_�;�|�\"\"�Z�S���\u001e��0��KB�B\u0011lZ�K�u�� h�R��s#�V��K�\r���\u0003���X�A(�\u001a|��M2\u001b@H�y\u000e���I\u0018� TK�]��\u000b��4��\b����R�(+3��b��U\u0014f���\t�Үg�6�\u0017\u0003�\u000b��.�X��0G�\n��!����ʡ8Po\n���ڒM�I��\u001b�E�=�`\u00015tZ�8���\u001d�\u0007�ʹ��V�)�S�?���3Ё)�\r�\u0000ܾ��I=���Ta0�;�\u0015�k4�\u0011M\u000e��\u001e�\u000fd��\u0007\u0000�\\$Q\fI�\u0001Op�L�k|(j������:\u0001�Z\u001c��\u0011d�.�ʈ��b��1/�\u0011=���,�����Ϫ�\u0000��\u0011��;h�\f����\u000f�0�@�\u0004o��t}�O\u0013�u-�\"9��[\f(=e�?�x�\u000f\u001e��qe֞�A\"�\u001a���Ma�>$�9��\u0011��\u0004TܙZ\u0011�p\u00193P�v��=vMw�_m����:�C2�,��g�m~�m�����^\u0004\"����H\u0002R�!��1�\u000b���ѿp�;H2V��3S\u001b�o^�r\b�V}�����Nd�<�F+Xib)����댬��P�\u0006.��#�]f\u0017�\u001a�ψ�\u0013B��G�ۯ�\u0019a_M���wUi�����nEu�X���,�\u0013\u0001&���\u0018*a0��ͽ�\u0017�\u0014^:�C����]d�\u0006\u000f�ѣ�P�W9\u0005]�;��\u0007�\t��\u0005B��\u0019\u0006\u0003\u001cqXC��\u0019\u0001�\t���\u001cK�V-\n\u001b��8�j�t�#Mֆ�ٶ�f���㊥\n��A&�\u001a���L�\u0017xo\u000f���\u00033�i��Z�t\u0007����5=��slN�1���K]B�M*7\u001a�d9���e<Έ;�\u0001��%_���ӻ��s�'\u0006.1�8\u0010\u0011�)jFɣ*�Q��/\u001e\u000b�\u0010��}V�.&x�>hm�& ��\u0007\f\u0014@\n\u000b�_\u0003���\u000e������ ���@\tg�\u0019*u�N?/M�2U[\u0010�}_\u0002Lr�����<��DV(\u00010ɸ:�s�O�\u0019\u0015\u000eQ=-\u00173�Iګ��r��.�a���={Z�@O� Y����ؖ��5�\u0004��@#��*d���\u0004�\u001d+K�;�`T�t��Vµ�J�̺�&>X�\u000b�T\u001bf��TrK����I\u0012j��Opo�NޣA\"�\u001a����a�Tad@�V�$A\u0019<�\u0016\u0018E�=�N�=T�\u00178�\u0016\u0000�2�\u0003�\u0001!i�7\u0013-s�\fpU���0^f�^P���y��\u001eh�{�A+���C'T������\\\t���gy\u0005ݧ��j�15\u0016)�N�N���zeX��d0a��~�ؐAH�ɚK�yUw͸�AQ�\u001à��c\u001d�^۱y�~>0�A�8B��5��N�h�ZA\u0007�s�Q�`O��\u0012)��q�\u001e���߆@M��ԣ �/�`�$\\�)e�+kԉi��c\u0004��\u0011|�\r�ٓ{�9�]��ɥ��R\u001a��ì7\u0012��\u001bX�qU��d�|�/���r�0����\u0004$+��U<�?\u0017�X�P���\\p\rȯn�$�_\u0010�è_a\u0015�\u001cHnd�d���y�;#�4\u0012MY:5����O�`ſ�$�¶I��LnI�\u0005�Ԓ����Y��������P\b�uV\u0006\u001d,=,2��E�m\u001f�\u0017��X��GL��u�(\n�U|#Y�\u0014�P޵\u0000A�i%�\u0011Pd=���ޔ[m\f�y{\u0000�_\u001b{�������R�?�~L>q\u000b��BK\t�?�\u0015t!�iX)�΋��:��Km�\\4�34\u001cH�wG��̓��Ɍ\u0015;C��+\u0015�!l�N��WWR�3����8R����rSI\u0004Z!!Yׅ���v޶+�w�<{�\t�pR��_;�ü��\nAڟ�s�\\є{6��Ӡ�{\u0012T��\u0016�d�Ft\u0001I�V��Ö�!J\u001a$�\t��P�s)����/�L`f�|�Ό^h�6\u0015~\u001a�(/�X\u0011���Χ�j\u0015�.�Ό�\u0004:O6ed��F���\u0007?*\u0007\u0016���7�AӁ\u001a���p�A�\u001ec.k��\u0002�:RN��t+yc��u���I��M�un�6,ġ��\u0003S��r�%�̇\u0006�s:�{p�:\u001f�m\u000b;���_�L��U�S�<\u001c�LُB�B����i5<�\u0002���՗n�f��<\u0006�K��l\u0012+\n?\u0003��C�s.T�yUG��\u001a��O����6\b����GA=��L��?E\b�6\u0019r\n�:�w8)^�\u0002�vG~~�0_\u0019^��\u0005���=%3��yn��h���b:|י��)��i���\u0007�o��_Y�~�t۟F�_\u0017A���)��H\u000b+\u001dR�=�&?QGP�f��yu��q�S\bxKA���GR����}g�>�TV��8X�\u0003�W\u001f�ʈ��������5�\n\u0015�eXN\u0001ә�k\u0017`Ez���\u0003\u0012�e@r��#�V��|N�o��R~4b�P{fe%d\u000b� ��C\u0005aC�T��]\u0005)\u001dJ���niNy\u0015E�K����.���zVSA\"�Kq�\u0000[!\u001c��77���^r\u0019\u0004\u001eEe�%}\u001f��-8�\u0017<�y\u0001�\u000b�I\u000e��rnJ\u00063\u0004�0������8�A_�\u001b\b���pU��n`\u001d�R\u0019�-�2�#P�`@S\b\u0015\u001b\u0002�\u001f��zH8\u0006��D��h\"gw֯r\u000e\u0013a2d%����_���+��\f4��?���M��y(�;�T���V\u001c~�#r?+ ZqF�\u00198~dm\u0013\u0007p��f�2���\u0006\u000f�4(��=K�™yKnڵ˳�\u0016���a�\u001a���\u0018!\t��\u001f3\nI��^�\u000e�Z�~\u001cb�d�*���O\f�\u0015�R�����n\u0015��=���u�\t�\u001cu6�cX��\u0002��\u0005\u0011�\b��#�\u000b'�\u000b�~su��F��ߏi��O\u0017�,7�X�M�\u0019/}���X\u0017(Ĩ\u0019��\"\u0002�\u001b���,�\u0016�Dm�i?\u0018��2�6��P\b�g��h.\nex��\u00049C�\u0002�\u0015i��Bx�\u0015��\u0003���F'驓Ǿ��d1^���\u001fA��G\r�Dܮ��\u001a9�AW�\u001b\u001c���c\u001d%���W��|�UU]��#Lw��y\u0006�\u0003�bUWb\u0003���\u0000�\u0018�̯�\u0005�7�Uu�bQ6ok�\u00169ɔ31��N]Da\u000ek\u0001Q\\�)ᎂ������<\u0010�\u0019�H�^�o�#O��V\u000boZ�\u001cJ��\u001a+��WK-p\b\u0018��u����r*�*b�����uk�/ƘQ�1gʺ�X�����1���nH��\u001b\u0017�\u0006���n�\u000b>�\u000f����+�h9�\u000bk��&�c73�N��[=�� ���\b-���I�`5F\u0015��E)�%B��\u0000�H�_�\u00069�Af�\u001b0���b��U�R\u0011۬v-�}������x�\u0015���׹J�[��\u0007���N\u000f<<�Ā\u001bg�\u0017\u000b�-���\u0001�x/�o�\u0015v�a�=cx˘;9\u001e�k@G���䙑�Vbo:��~� \u0012����v\r��\u0016\u000e\u0017�!\u001d$���\u001b�n\u0013��\u0015�עt#<�\u001a5o\u0010��~��m9��sp���-}�/?��\u001d^7�� 4��}�b��B\u001aQ��\u0007�s�إ\u0001!˶�s�;\u000e�aU\r�%�6���=f��}|r��\u0016=�\u0018��UG��w��u�0*�\u0003%�7�N8G�-�7�\u0018�ܸa\"\"\b\u0007�B�ۻS�P'9�kX���r.v\u0006&둮&u/�\u0015s�F\"x�(�\f$-�\u0011\u0004\u000e�ˬ��\u0019�\u0000 m��k�Ո\n�\u0017y7Z�%N�i4�M��K�nz\u000b�=���k�\b�$^D��\u0018}��F�f\u0017]}�jZ����)P\u0003�����o4�]{eM�:�G$֐~7��]I0�u\\q\u000b\u0013\u0003#�c�>�a��ԭ�n�c�Bj�X`��s�m�7��C^\r﨧g�|�4�=��<��H�r��ʫF��l�C�\u001e\u0013�\u001b���\u001e�\u0004!�Q6J�\u0013��_4����h�\b�8�,����H��\u0005�Єl\n��\u000f\u0016\u0001��\u0019�[.�|P�`'�_Kؖ9�Ad�\u001bX���)��|)vt�B՘�\u0006�<���k�X�T}�s�#~���{�o�\u0002-h�V&�3E\u0001>\u0004񰚦Em�X��c9\u00010�\tW:���<�+�\u0011�\u000f�!�\u0005��;\u0017��t����\u000fV���b���&�^�TS���\u0017.��,jy�\u0013�PJ~\u0015v��M�\u0007K)t�/\u0007\u000e±��~y\u0004\u0011[�;�X:�D2\u0004��\u0006\\�Ʃ��/\f�\u001a\u0001{\u0000(\u001a:dȱ\u0005\u000erz0�\u0003�G�\u0004�O�9�\u001b�V!0H���\u000e�\u0018Z1�\u001d�E�\u0000W�����3ጧ�\u0001ٖ�m?�o5M\u001a�f~�4�o�IKB\u0002�c�Ӄg�Sn���*�����M\u0007nӡ;�y�\u001c\u0012�\u0007\u0010������7�imb>\u0012�:���>\u001f\u0011\u0015�ح�8\"Ý\bK\u0012��\u001f�����\\�i\\�d#^AhV��p\t��]���\u0015�04ảA|�\u001bl��X��Mnk�%�$L7�p\u0019v%W4��\u000b���[�YK��\u0007I�)1ɹ�D�/NR1`N]�nY�e�$��p`W\u0002|�mYL\"R���\u0011@��Ds�\u001c1��\u0001��\r\u0016�:s� \f���\u000e�Ln��,d�6]��J�J!;�1�?�y\u0015n��WB8 \u000f���D�A���Co��!�mW��D��}\u0006/\t��F�l%�σ[�z��\u0001�� L��\u001eȶ���\"Z���*��g\"-�t\u000b�\\�찀��\u00174%R�\u0018ի�$V��ʲ&�pF�|�W��Z�f�&\u0016�c��7��\u0004!���/ ��\u001e�]��\b��\u000f��P�S�+;e~�v���9Rt���\u001eZ�(��q*�v�}!\t����-\u0018S��&���/��ow��s�\r���|�\u0017f������Ttư�\u0019�}\u001aؖ�b��\u001bQ2\u001c1d�]%�;�Z*\u0005�f�ɣA<�\u001b���X���ݣ�|SQb�\bc��\u0005�.n�\"�I#M�\n\b���3R���\u0012Y�\u0016\u001d%E��v�Pb\b\u0018-\u0010�\u0001G�ߎp�����h�O\u0010�\u001a�\u001c4�Z��y���\u0005��=��@;D�N}�nZ�><�i���\u000e�\u001cխ�����#i\u000bA�7\fQM\fF��(��U\u001c7�*�fN�w�\b�\u001f�ȵ��\u0000�\u000e[�S�U\u000ehΰi%2��\r�\u0003�@�A�=�\u0001��_\u0000t*m����`�fS;`�j��J�)��y�R\u0001�G�_��zD��T\u001c\u0004\u001d/�x�_W\u0006m=L\u0002�y��I\"^�ӂ��������\u0000��\"]��+�\u000fS�w*�WPp��ΡT��\u0003��G{{�1D-�EĎ��\u0002\\�YF\t��\u001b���<\u0012\u001aR�&\u0015\u001aBN����q����^JT�B\u0003��\u001ec\u0011�L{e����\u0014HM�\u001dF��\u0018%��|\u0014�I�\u0004(呈p���nYjm��/\u0000�L�oBO��\u0007�����1\u0006\u001d��qǢs�h�\u0003�a\u0006���jȷ!�kߞ��@-�y\u001b���P�\u000f�\u000e�\u001fQ��*�7\u0001��e\u0001,‰�'\\�\u001c���݇��j�S�\rY��8�3(\u001c��ƥ\u001e��{.�\u0002$���l�\u0012�f�\u0013Z,�7�A?�\u001b����e��Ǝ}ON~\u0015�'b\u0007\u000f_��~m9��l�dQP�ϑ�\u001f�'\u0003�DTtǕ�<�\u0007�R8�� ϐ)�T^\u00047\u0000�4,/̫�\n�T=\b0\u000brL�O��@\u0000c�߾�߬�\u001b\u0010\u000e皾�7�G�\u0001�\u0007yt��;������^��\u0018��\u0017���\u0017V����c��۾L�{\u0007�m���\u0007��o̘sX��\u0017\\�A�������\u000b8�:X\u0016\u0006�\u001f�\u001f\u001e��®]v+�\u000b�`(\u0018-���ow�_/\u0013XC�ӹ�95��\u0017�\f��F�\u0017�'��P�U�N\u0005�#Y�ܟoV�\u0016�`�H!���\bj���\u001f>�5�d\u0019�'~͉�E���(��m]O,GI|\u001c�և\u001a\u0001��\u000b\u000ek��� S�T�h���\u0017��p�9�AQ�\u001bЀ��a�de��\u0014H�\u0017j�b�6�Ϛ0�Pn�\n�L,\u001c��o��\r\u0015�09K�:��ɮ?DŽd�G��n+�t-��\t��<�3�Õ�\u001ep�����W�)i�\u0012��9�\fY���\u001b�\u0018{f#�����\u000bM\t��xE�KDs�\u0017�\u0014�M$�kz�l[�\u001a��E��7���2w\f��d�m�X�h̹faJ�����\u0012`\u0010�kXb� \u0018*<����|fa�\u000f\u00049&N����T�\u001e�7Ċ;EO�\n��~�\u001f�ۿo�ʒ�\u00008�\u001bK��ֱ\u001d�\u0010Cc�E�h�~�������\u001b�6K\u0010�[�[($+\u001b�d�\n\u0011�$,��\u000bu�\u0019h�/WN��~��5�J(÷0�v\u0017r�������#�����Ⱥ��h��Ճ�5F]����9�AF�\u001b���g+�hw5-�Q��m�VӢu�T��vO�\u0016�D��͟;����?�\u001c`�Ma�IN5�k�\u0004Q���B�so�d̕EWL�d�_�0\u000e3�Dds4�l\u0000�\u000bx�2��8�J���ߧkX㫄7�s����\u001b�o����ҷ+������X3�J�b��)O#��\u0012_�L\u000foS\fҵe\u0019��#x+}`�8O\u001e,ft�_c�¯y�&\u0003pK\f�\u0007�E�E�<)���� RJ�e\"NO�Y�q\u0017���{T{y\u000b@(S�\u001b�^H��UjEO�LL��3�\u001c\u0001ñ�쁉~A�\n��IͅI\u00199�Gg��j/%\u0016%��Eh�)��/f>��E\r�<�D{�*\u0011\u000fMMF�`2;\u0004����E��\u0011l\u0006̇l�(�����\u0006�8�AL�\u001b����o\u0019�%ܡ�ےq�FI��:ʧ�s\u0001o�\u001a�,��� �ʓ\u000b\u0014�u�.ע��z'�i� ����׷ya�\b�\u001c��\u0005(z��V\"�\u0002\u0012#�:nn&�5�.\n4-YD�7d���ad�jݨt�\f�te%�\u001a�Ӌ��\u00191)z����\u000b\u0015z�6�pp\n\n\u000f��҃�\b6^$Go����.����\u0019���@Gg�\u0002\u001e�0�\b�a�2��z6l�ӭ�2�z\rV��o�ӥ�O\u0013�\u0003*a���\u0010\u000b�(^�w��\u0018�ъ�ڢH\u0000�\f��\u000eV���g�>ZLd3!7CObX�%hH'm�\u0002k\u001f�L�f�g�_blP�y�0gB�Z#]\u0018yG\u001b\u0006���0֮(��\u0007���~�E�I�\u000e��kI�\f�W��~\u001c����d^e\u000e2�8�AU�\u001c\f���k�~\u0015��nn'f\u0012\b�?U\u0011��\u0010:�A2�\n$�E\u0012to�\u001b4�a.���5\u0012��\u000e���3�b*$C�@EM��\u0015���%��>3��\u0001����\u0015B�\u0003�vQ�O��I\"<���\u0013���>�`�'�\u0015�\b\u0018��O�Ê\u0012�ϼ�F�!����:G\u0002.��\fũ�\bd~�&�j���M��z�i�^Mh\u001b�<3������ C>�M\u0006�\r\n\\]\u0015Z�T�˛�o�'�3B�t��O�}�\u0018'\n�-��&���ϙ�0��\u0017{n��t55�xA��bl�V�ٔ/�B\u0005f��~V����_���mj��j�Ɂi�a�W��Q�\u000fG\u0011\u0014�z)_ˡ\u001c�0�ߘ���J��\u0001QL-#��r�TL��[������m�I0-31�ݢM(#\u0002K�6�A_�\u001c ��2hB_v��)W�\u0018�@m�#O���\u0013YQMa\u0001f4�ĩ�\u0007\u001b�23[O,\u0001�\u0013q�'M�=䜜LA�\u0014�Δ�\u0002�׫����i�@ι\u0011���͈\"�t=���%\u000e\u0006i�\u0011g4�˺��\u0017zfK�nb�g�&-�N�UVS���\f\n�\\�t���FĬ���o�@�\u00063��V��Y��H+$\u0012\u001d\b��\u0014�f*�\u000eڝ�[�����\u0006��H� ]�;q^)\u0019jf(�\u0016DI k�J%*�\u001d����N\u0006浣�\u00167\u001d�\\�+\u0003�\u001fB[{9K\u000f�-����ְӈ�\u001ad�����W�l�\u0001t;\nXm�Ы6\u0019����>2E�!\u0005����El21�o��ѝ���K��ST���z\u0010-�o���\u000e�Y\u000e�B��ˊp�8��m?�8rl�aܼ�\f��)���\u001a�\u0013�~\u0012�W�[��$5����˚Q/fn��x\u0015�?�i7ԱF\u000f\u0001�.�ip�qK/8\u0005\u00172����V��\u00143F�\u001b\u001e�~3�s��Fw\\�0k>�7_��Sgs1��?\u001f�\u000e,H\u000e\u0004\u0004��Iͭ�w�Iܒ�;/Y\f���o#L\u00079P����:s��\n[���O{��|ȆH�s�\u0002�\u0011#��E\\��\u001b\u0003]�%��\u0004daYL�\u0000�[��#��W2�|\u0005�\u0017ݞ��N�\u0000n�w�\u0011���'2^(��\u001b,\u001c$lU��\b��„\u0003��Â�R��T��w�\u0001?[ >��@�\u0005�Wu�6/��9\f\u0013\u0012sх\u0001�?�x�\u0014[��ˎ��\u0013˖3��6\t\u001dCQ3SV*F�䢌e�P\t\u0016\t�&����T\u0002�eH�L�'\u0017���c7\n�T��+��gW\u0013�T���NL\u0005ӕ��t��]��\u0018\u0019'P���9�1\u0005f��v)\u0001W�+��PYЛ�a�\u0000F�D=�Rp��؂�Ѐi�\u0019��\"��\u001d-/\u001br�f+��@��I�=\f�av@H7*��9VB��\u0000�;�\u0016����9�K�|q�\u001f�\u001c��Ж��,2��o\u0007M\u001f�\u0007\u0006��Aԁ\u001c\\��}^iU��U6�vn���A����Zx\u0012k>�\\���Z;\u001dO�\u0019���@g\u0000��u\u0016C\u000e�\u0010�@^Ž�G��\u0001\u0014�\u0005�\n�\u000e�Ú��f��\np%����}��)�8�b�\u0005CX۶9HI\u0011@��\rJ�{\b\u0015��#�0'S��܉m��C�O�1\u001e�~�\\�����p\\���n�^y��\n�\u0019LFƺYEÜ(n�g�N�6m�/�9& �g\u0010�\f��3�̦\u001aH�`r\u0001\u001a�L\fs̈́�4\u000b\u0012|�ߚ�f!*\\c�IK�q\u0001�\u0007��$ñ{\"\u0000\u0006?\bBԯ\u0010�; �E�N\u000b\u0013(S=p5����>�\u0004��^z\u0013�p�8F@��_���\u0006a����\u0005���\\C�$.����[�ډ\u0006S��+/\u000e�r�\\lq��{\u0016\"z\u000b�1�'K+��ң\u0006���,�R]J3\u0004v���ġ\u001e֎��\u0017,��\u000b\u0017J\u0011����~�$Ul�Z�����lZ�a�B�–\"���i\b�CJ�\u001c��\u0005^3qn��ŏ�F�M��271�M\fOOL\u001d&Ê\u0010�h�Hg�hdP<�^\b�TY$N�9\u0001�(d��dU��A��\u001cp���l�\u0010���8��\b�f\r���v�ֵx�R�\t�r\u0011��\u0019\u001dZgn�.\u0012\u0017��6D\u001d��\\W\u0015ܞ-�\f�\u001f\rvj�\u0007��α�ʟ�\u001cU�)��w�\u0015\ng�\u0004��W�h�3��Kr���z�d\u0006n\u0012+N��}�����\u0010�j�\u0014\u001et�ϳ\u000b=D\u000b\u0010xY�b���ч:�E�,���\u001a���������$�aM4<��j\u0018w\u00159O��g0-�5]��xc2�\u000e��'�\"3/i��\u001a���m/S�o��\u0015`��\u0006\u0005� �%L�g���1<�\u000b�MU;��1є�X�\u000b©���\u0013ا�|�K�l��ݽ5��\u0004\u001a\u000b����\u0010=/�ne�\u001a��=�v�\u0019��ճ\u0012�u��\u001f⎮�\u0013����yOn\\���٧����\u0004�:O\u0003������\t��@Z�)\n'\u0016�m\u001e����W��y\"\u000ffvT�S+\u0005�\u0013�Q�C�2o�BR�ᑁ\u0014i�\t�q��A^�\u001c���L���\u001c���A�R�\u001a�!�\u001d�U�E���\u0003*��žV\u0011����$}몙��\b�4�ސ:\u0010��3h���(*��d\u0010�\u0013\u0007}�\u0017�\"��S�A�PoP�`&�n�r&�S�\u0013_J:��8�*f�Ⱦ\u0015��\"���\u0004\u0017�g�b�T�b�dǯ��gq\b�Y�\\\u00000�ڹ��-��\u0013p��\f\u0014\t�qܜ�$\u0000�\u001e���NB9�EW�U�\u001b1��~d~\u001c�]�=� ��G�8\u000e����\b^I��\u001b\".��ɞ7Q&�<�\u001cf���~jY4\u0012����\u001b\u0012h#\u0010\fK�����\u0012a\fe��V�u���>Ey��g��c����\u00045�<��fo|�i�&m+Ώ�Y��|�\u000b�\u001d)Q�#\u0016*��4a\u0015������\u0006��nQ:q\u0006,q5��8\u0000\"%�\u000fD�/��`w\u001a�A��\u001c����b�q�\u0014˖��&�H�5�c\u0001VUB�~\u0019\ny���A��p�J\u0006kV�\u000b-��\n����\r��\u0013�Z�Y�<�%�n�?�ந�:\u0000#\t)�\u0004N\u0004S��\b\r2�\u001e�1xl\u001c\\\u001a\t��\u00123���Q��v����%\u0018\u0013\u00185}{��#\u0019\\\n��D�D<\u0013ݰN$D�K�L^!�'\nP�ۍ�s�#��*[�;�>C�u����yd�\u0011\r\u000e�I>!d�\u0015�/ &7�-�\u000e�{��9�y��{����KS/�\u0018\u000b3\u001e:��\u0017d\u001ao�\u001b\bP;~\u001c\u0001�\u001a�ލ�ͽ�6�0k|�����F�`�WV���� -�����,�=\u001f�b�˺Yuaš<���\u0002ٺy���n�%D)�\u0017���bt�M�kv�O:���M�;x3�{\u0003k�\u0019؏���f���m\u0010��z��Ȱ�c��j]K\"����\r\u0019\u0003�O�����\u0004�w`���D��4JR[\u000b[�(�\t^��9�Aށ\u001c����c\u001f��,�\u0013Zcܿ\u0019DP�����[\u00125߇�\t�f\u0007�Y���\u001c�wƬXc�����,�L%�NOm޿��}^x�\u0002��ŝ���\u0015�\u0005q�~��g[JZ�\u0019�3���.�e(Ė���a~3\u0010�.����\u001d<�Kh-�=I�\u0018�,�\u000e��\u0010e�\u0005��p\\\niϛ��\u0010�+�7H��N\u0018%\n\u0006�<�F�#�3٠μ�H���1�m�S�S����a\u000e�y��&\u0019t�*��b���e�\u001foЍ�\u00044����V³j�r��ZS|%Cj�X���עT�q�\u0010�ۛB�)\u001c�\\H7\u001eA\t�,n>\u000e�\u0006{\u0012����V���u\u001dSR/pŞ�Z\u000e���x�+3������V�\u001d\u0002�Z��7��؄\u0012�3�Q\u0007�9:�\u001dw�\u001e��I�<`tl��~kQ!!���xq\u001b/�Hȣ;\u0014&�k�\u001e�^��_Q��-��0;Y\"\u001d9�A��\u001c�������z�r�\u0012g}��f���n�\u0015Ύ��U��RO_V�9��[\u000br��4.�_\u000b�|\u001e:�\u000f������~\u001b��3�M�wD-W�\u0003\\��9�̽ػ�D\u0015m�����\u001f�\u0011���\u0013B��U؟�Z;�g;Z\u0000�/k�\u0005�D�8i�������IST��\u0013�4 464�b��\u0016\"?'g�n��M����\u0010N��!���wKkG\u001dx����G�<-�L&d��\n�U�4ש�S�+Ji\u000f���o���\u00103\u0007\u001e�\u001b���s^9\u0000�{�\u0005R\u0017n\n�~�)A���U�\u0016\u001fl&���Ď.F\u000f��o��\u0010���*�E�𔸥��{���� ��]T������]�:�ג-\u0005\u001a��H�^=Zt%\u001dӅ\\\u0004��\u001fy�\u0003�\u000e\u0013�݆t0R�j5Tf�]����-/΢���\u001a�5�c\u0016�&��A\u000fKڒ_��\bݟ\r^�\u0010�+k�&����A|�\u001cԀ�L©�\u0002��\f�ͯ�lS�\u001a�o��(Ԣ׈�\n�!��\u001e_�2���Q3�#\u0014E���x_�8��\u0007<\n����z�1����\u0000��\u0018���DX\u0010�0�\u001c���D�f=�sY\n\u0018$�s�i\u000fuT@�fy'h\u0018��m\u0003����D��kc'G�yJ;�������A\u000b���e�\u0007:n\u000e6�í��\u0011�\u001c����1[��'�\f�~�ND_��NL5zE\u001a\u0017@��;�\u0011DtDܫ9\u0003\u001d���Ք�����4T|�>yK�T�VY������ծ޿�Ã�f`��`θ�\"��:�\u001c�f\u000f\u0015|U��T�\u0015z% Pd���v\u000e�o\u000ef�\\�\u0007a&��]�=\u0012�M�\u0014�q^$�=,�A!���;�*q?�.ؐ)��8\r��j���*&>}�!��\\\u001dB�QC�'�Ebt\r�y,�/d���Y���;�+\u0006\t��l!{����+�\u0012�AF�\u001c��L�a�}�Y���1�\u001c�+\u0000g\u0005\n:\u000f*|\u0002�!�%��TP��T���\rhUP�vȖNpM�\u0002�\u0015��u��\u000fz�n����)�\u0000�3�H��7��Uer�F���)z\u0010��\n�EdU�\u0012@��\r�N3\u0019\\\f�Uߔ�j��(��\u0011\u0006j��?�F\u0011�\"\u0004�k�\n^�P[�g�\u000b�,6�+O,\u000b6�ʥ`���)7�t0��]�/j��\u0015\"�`ѽ�f��D�q�ć��!\u000f.��jU��4�ՙ�ݨ)��e%W\u0002ʝ:�C���}\u001acϲ�):G1�5}�l��ʱ*��1-\u0006CP��\u0006}w3\u0013R�\u0017}���Ֆ����9�a ��7��^=j\u0018\u001bBg��\u0005�\u0011��:�|�$������M�\b\r��I���vңA;�\u001c���L�\u000bX\u000e�O��m�?`�.T�\u0003�U<��~�ʥ\u000e���VG5qK��\u0019�<�\u001e�epLۀWi�Ƽ�����\u000bt-u%[�|B\r1\u0012\n�<\r�C���6��������چ�\t�ɶW�Y��\u0018*>���L�\\��\"�����ǜD�\u001dA�jS�].�q�^��;�\r�@8znԌ\u001c-Dp\u0012d�P�H\r{+�z]�\u0019�����ru#�J\u0010\\9?�\u0003����D�X�/�|�\u000e�\b�l\u001e+�_�w�4�O�R���p\\���]6i\u0016�\u0007#!�ATw�\u001a���%L�mg\t�c�}��\u0012�\u0018X�TܺS��D7ق\u000e��ukm\\J�f�s�\u0004�\u0010~\u001d\u0012d�2/Q�\u000f\u0004�v���o�$h�3Bٰ��A7�\u001d\u0010���b�?�4/\u0016/�n��J.�D\u0000R��ݧ�\\�\u0013�r��)�\u0001�\u0014�`/�P��3��r<��g^_�薥���L+�᝷0jb��53n\u001c�[��\u0018V��}�h�\u0010����]\"^��\r�T}�5*u��Xd�yQ\u0016�t��&ݰ���҄�e�\u000b\\� �����e*�SzȲ\u000b;u\u0014U��CC�j��ߕ�\u0016d�o����qؼ\u0015uѾ�Ҽ0�����%\u000b�c\u0017C���adn��Q&RS�\u0000.�L����R)6��e����]d\u0018./����*�}�؈a��i\u0018\u001aӻ{�N��7`KƇ�lT�\u000ec�\u001bR�._=E/ĸ_Z�\u0006U\u0003���?;>?l\u000f�\u0007p-�S��\u0003x�#�AP�\u001d$���f`���\u0011�>吸Nq���I�0�S_�5��6oL�\u0011NV=��j^�F�\u001d\t\u0003r�\u001f�w�ǰ\u0002�8���uT&1\r&�\u0002�\u000e풟�\u0019����]��z�&�-?vk�ck�Rbe>wF�t�\u0013or����;5Z\u0003\"5��\u0012����\r\u0011��;\u000em&�w���d1��FS�\u000b5!?���ve�\b�FVn,|t�vN6kX��ߠN_�_x\u001d����N��E�i��6�� �,s�}4Y�\u0013��c^\u000b����͐/�\f\u0003:�=\u000e �t���'ټ�х�\u0003\n/\u0013�\u000f�������xC�֝Iо�8\u0002�\u0006�d��-=��4��\u0006Ⱦ\u001f�!�~�\u0018�\r\r�J�\u001b��Ւ>7�\u001f�z��W҅�H�\u0018�l~\u0004�%���Zۗ�=�Ls�\"�AG�\u001d8���d7�xδ��\u0016�ށ\u0010�;T�\u001e�5�\u0015��dO^\u001f�\u0001*���J����n‘�R���Uݕ|�].��h\u0010�j�_�nm~�3�`�\u0002'cG\u0012���čy�\u0016Ʒ���c��)ࢂ�\u001e{��-�@��\u0017�Vƃ(P�\u0006_\u0004\u0016\f����t�\u0002p���g\u001b1�u\u000f�jZ�\u0001�W�$��&\u001e`Ǭ��1,�TX�����D�R���\u0004�qE�w̬�K���N\u0007\u0002\ng��%NA\u001e����G;%�(\n\u0000�X�:8\u0012���/\u001f�>�r��^*#�\u0005�W�?�N�!�JVZ\u001b�\u0017ȻL���q��DŽ��Ԡg�Ν\u001b��x\u001f��\f(��B �p=�6^��b-N����_\u001cO�\u0019_j��\u0000\u0006�����1\u0014Bs\u001dhk�%�AD�\u001dL���\u001f�N��\u0017��g�?J\u001a6�t\\��5{D\u0013wn������(\u000fOHğFg�Ģ���ڻ�i�.��bƨ\u0016쿞\u0015�A�6\u000fn�\u0018\u0015h����R�s��\u0000�7�}��#��@}Ry���\u0001�����q)�6vg�\u0006�[���b\b��s^I��+\u0011���{:q\u000bU\u00017�T\tql�\u0007��B��j1f�\u000b\u0015:\u0004b�Q�dd�+��1�\u0002�\u001eս�\u0019��o�\u001a��{[F\\�����1l�Jᗙ�_0�\u0006u׈=�͗��g\u0013�e�ِ`��G\u0010�\u0018\f�\u0002�0Yy�\r��\u0002V�烋8�+}\u000e�d\f�S��;���3z���;O\u0017\u0002��*\u000f�\u0018zZ0]w�\u0001�G�\u0004�%3�\u0000}//٤ܰ~�\u0005ݒ[\u0007��A�)�AP�\u001d`����\u001bp7�5�Rg�/����|�'�]�\n\u0007�y<2�ɸ�.��w�W�y�ORŪA�6��T�L�n����\u0011�|�r��\u001a�9���\u0015��h�\u0007�%CNa=K*5\u0000����Z\u0013H\u0014��y+��ܸh�\u0003ի\u0004�%��u\u0016\u001e�w��\u0011���=[��3dF\u0001�'/�n�\u0011��\"#�-�3\u001d�l'��ÄV���gK�ʠ��\t�R�$�$S2��n\u001c�$�,�.�&ILy�,B�����\u0002��dD��1\u001c��~��!\u0010\u0010`Q8U>��^�c\\���HlЍ�\u0013[%\u001c\u0001�\bH�%\u000fp���\u0012\u0005\"����\u000b�1Cj'�\fs�䶝\n�\u001f|�m\u001d��w��f7����EYP\u0000�\u000f\u001c��r��u�C.#o�DI\u0000���\u00066�=�)#M*)�A;�\u001dt���`�O\u0011)r1���3��W8~j������ן�M$��2յ�\"�R\u0006:\u0001#�.]�P�[�>�h����\u0007I��w�p�r/k\u0002`gdS0C�\u0011K����\u0001�/�vђ�\n�Zj�x-\u0011��N�D�h��x;ӣ�Z3F�D�u�Z\u00037)SM�c4����%�Q�r͈3\u0013�\u0002]��\n���B���\u001a$Y�\u0000efz����{��NۉpP�*��77\u0019�\"�2��CG?��G-@D\u0001�K\u0004df�Ɍ�L*�>�9�(C\u0013�!��\u0010�\f���f���*��\u0004�篩��Ĕ��� �Z6�!��}�'�6(���\u0002��H\u001a�UH����_\u0002\u0001��ft7��p��K�ϗ��:C��A%�A=�\u001d����c\u001f%>����vЧ\u001c�<\u0011���5Tۥ�ĹG�u�Y;u�X�\\t����V*��\u000e\u0012p#��\u0010�V)����^릠]�k�72����CT���\u001e�\u0016\u001f��On��\u001c\u0012\u000e#Uב��8\b�N�'�gΫr��^�q�0~���c�&^��\r0i�:\f`��8��\u0018��\rۏ�p�zC\u0012��vN���[:�%�q�Rz��B\u0012\u0019�I�M���\u001f�\u001d�!Y�՞3AV\u001c{M\u0005�%_]�D�_���\u000e*��y*l��\u0017\u0013\\���Ua�$\u0011\u0018R��S���d&hs�I7;�����}d\f|;z���|�\u0003�)�h�yJ\u0011�/I4\u001b\fz\u00152͞�v\u001fͺ�O-:\u0017�p\u0005�\u00016���,=�.����G�Q\u0001!�A?�\u001d����pH\u0006�ן�-��~(�u\u000f�mšE��V��{E��p��U\u0011���-o\u001e�\u001b�\u001aӜ\u0014Å�b��4Bu��H\b\u001e�i=��:Hn=�\u0007�����B���\\\u0002‘a��\"O�q�rD�;\u0014A��l0�\u0007�T\u001d\n��S:\u00079*n\u001c�BG(0E�N\u0013�\u0019����#=\n�\f�\u0013�/��U�a��\r:���Q8�*9���\"�g\u001e�~�m��0\u0004�\u0012Gw\u0005\rr\u0006\u001f~�S����1\t�PO�!�,M����0�xK]TQOT��%�v���\b$&\tЙBPV1UM��\u0004|\u000e��c-�����\r2�ثR�t�oC��gnU\r�l\u0017�\u0002\fTQ��7�\u0003���\u0003�E��1A\u001dhhE\u0013�-�p��ȿ���3���\u001aY�U묎�$\u001a<\u000f3�)���'���k�)�a\u0019�B`��z�6��b�'Q�'����\u001b\u001cT(K�Yys�R�\u0011<�����뤳��ɟ�����g�\u0011^\u0013���\"�|-�ľ7��x��uHm��;\u000fC�\u0002#�1:��� \n\u0002�ߦh�f�\u00019m%�AS�\u001d؀��e�\u0007�W0:RM\u001c㚲nʔ�Y\u000b�}˿.}�Q:���O9�.�Y\u0010�;�c<�(`r���\u0006<�>���\u0012�\u001d�\u001dg-�3��\b+ �r.o�tj�\u0019O�\u000f?�Ä��ިXٷ�Iw����n\u001c9�\u0012\u0004���\u0002]��bqG�h_\n�?4�\u0006��<�p>��:!jk�BB����OhR7�-͸\n��l\u0015�\r�-G?�j�g]\u0011�vx�u���Pd�2`�γ'�/-O&��o�7\"|��\t[�q�t|\u0013���u_A��P�p�#��C\u0005�\n%�7G���qh��g�T\u000f��\u0011�ᩞ�9M\u0001]Z���-U���\u0012��(9\u0012�wl�c�\u0011�|~\u0001L�d��p�Q� ���5\u0019�\u001eB\u0002\r3e|\u0006\u001b\u0011����V\u0006\u001eD�\"�Z���C����'�AJ�\u001d���d;�\r�j��0�\f�J\u0002�Ԥ�y�PW���\u00111hX\u0006�����k�_�Lo�ߥ\"��Ao�1\u000e��[�\u0000�����f\u0002ֲ���{\u0004-��!�e3��q����yA\u0001�\u001cL7�y��{���!�o���\b�k\u0002��K\bi��O�\u0016\u0014x;z�\u000bG��.��,;\u0018EX�H�;�\u0013��4�A\u0018�\u0013Kݯ�<��n'��Ll8�^\u0007���(�{`\u00022�Ґ�L5|�ѵ�0�\u0002���\rA@\u0001\u0004�U\u0019\u000eer������\u0000�0��\u0007�Y ��\fd.�TjD���\"�\u0004�^(�u�=$�\u000bdx�Z�SN��\u001a�\u000e�0C���G=�y�}��g^\u0018\u0011\nq\u0007��~��\u0002�� \u001a�\u0007���)�\u001bQ6/���\u0002V�\u0017��ҙ�\u0001�&�AM�\u001e\u0000���eD�=�\t��X�ri���*��N�ʟ�u\u0016ُ�1Oa�K��>�,�\u0006x|*��E��N���T�>�\u0000�\r|9^�-�\u001a\u001f5*�\bW�w�\u001a��k�3�A/��+^�y�}�\u0016���\n��\u0012�\u0005��T����͊S�\u0007\u001ff#�$P�=e:֔����\t������M�\u0002���\nE�F�2n�)���o���w�^\\j4����\u0017?�Z�����\f\u0019��BO���\n\u000e@U\u0014�W\u0010QVnICP��\fը>7'*wa�d�F�0 h3��\u001f�=��Yc�0�\u0004�@�'Xt\u0019�'�烯7q�f!��y\u000en���}����C\u0012d�kf�~\u001f��jh�N��N,�5X9\u0016+j�E\\�'\u001a1�+\u0003�m�\u0010���7���6���3T�#�Ac�\u001e\u0014���b]u�x�(�5�y\u0001ҷ\u0002UPg\u001e]�-ޏR�K��\n^\u0005��a�z<\u0013B�h�vI��`�a�zs�\u000eIN6@\"\"��ߜb�<�⮎���ν�0�'���D�v\u0013��Pb���\u0003�.ѥ23��S\u0003�q—\u0019d�+�+��#�;}`���D��v����\u000e����L�_f}�1\u001b��\u0016�\u0016g\u001b�9�\u001a?V(\u001a}S��\u0017��A&�C\u0015Zy\u0002v�k�0z\n���P�[y�c�].\u0006�r�{��0F*j�\u0006��yN,�g//�\u0003\u0017��\u000f>�6MQn�\u0000K�����\u0001ѧD2�X2$�\u0000�}�\"�R`\u0002�� J\f,!ή)��{Y��5���8(%Ս�e��+„N��h�����^�\b���\bL\u001f���VI~Y�w7�>Ǒ�S�d|\u0000������9�P�\u0018����!�AL�\u001e(���g'���5�1��8�kiŊb�(�Vv\u001d\u001f]̱�(\u000e��;w\u0015�\n��^L�Yr\u000bZ\u0014\r���U\u001e\u001a�J3yCS[>��8��'T.+�*\u001d���kn�\u0001ag\f\u001a��F��+>K��R�\fq\u000b^�v��B]~N��\u0012\u000e���PJۧxV\u000f��o�3/+��e�\n��P�x\u0017Ό��1��\u0007\u00068��1�0� Ba��N��f1\u001e\u001f\u0016\fS3}ޥ�o٧A�\u0001�\u000bsD\u0014��F�v���i\u0000�T�\u0019[a%�ٸW�r���]%�l\u0004Z�8�.��\t]�\u0017�3���\u0011�Mg k�j2��̚퀃�\u0017�������\u001eV\u0000\t��f��\u001e\u0002}\u001f�\u0017�K�����\u000e$�:�\f�b=���h㰢�+�!\u0007\u0001}�\u0003�\t\"^�\u001bo�\u0014DC\rQ\"�AU�\u001e<���m�\u000f�49���+��\u0018{^��Eξ�>�\u0017�\u0001�\u0004����z\u0005s4Zh�.\u0018�\u0002��n\u0007\\7i�q��\u0000\u0015���}\u0000���D��Ռ�;�Y�\fRt\u0006<�Ӽ1\u0002\u001d����/+mw6\u0005����d\u001a�*�\u0017��n0`D���`\u0007y�\u0017�5��P���%c4�O�Xus������1����/�\u0017Y�l�z�S/�)/t\u0007<��e�d��\bG�?\u0019�Hb8u���Z7\u0010�D.��\u0003z��a�&�,���^��b!*\u0012�*�2e��*lY|�e�%��՛>L\u0006��%�l'ii�6\\�OϠ���� �#|ɽQ@�E(��/����ڹ����^3\u0011��)<��k�\u0001\\8D\u0016�9������AX�\u001ed��M\u001f8z�U�\f��t�P�]�(�K��֡�ż���\u001bك\u000f\u00021='vy����\u0002g�˫�?Iw���AG�\u001ex��L��?�B��h�a\u001fG\u0007zՈ�է��Q3�'��%���<��z��\u0003݅���Y\u000bS���q��G��)�iNݠF؆\u0017��\u001e2V^R0�&�{vu\u001bS�\u0017bמ�\u0010P���^ �3�o�Yt�l\u000eݓ=�뤾�{��\"�\u0004�\u0010��tay��Iv�\u0015d����l��(ݕ�A��j\r�=\u0004�\u0001TK�\u0006(\u0010η��Q�e�\u001eWʯ�;\u0007a��..��\u0016�+��\u0017�z9�\u0017_5�uV[\u0013�={����\u0004\u000e� \u00036\f[�\u0012z���`;��8�\n*�*���M|\b�z|2��\u00100��B�`\u0016�bי;�l�����I\u000f��\u001f��\u0012�d\u001b�\u0010��Q���.�o�\bN���>�t\u001a�;ʔ��؝��$��o-!�u��AF�\u001e�����\u0003��j/L3��l�#X�\u0002k\u0018��9Z�d4x^sb�q\u0006HL�|�i~l�lx^��6\u0007�\u0002�����\t6�\u001a�z@Z�\nLG'{\u0000�y�I���\t\u0006'Ƨ\u001f�f���s6�`�N\u001f}7�r��)��\u001dN����%\u0010��tߣ���s1H�l[�dH�{\u0015��Y珶����\u0012f�\u00165�L)�`��zUz�&�$p@K�G[\n�9�\u0017\u000f\u001f5~\u0016ܶe܋��}1F�r��\u001e��9��P�>\u0005�.� [�5��X��6;�@\u0007z\u0002��\u0011\u000b\u001f�-#M{R_:!m\u0005�Y\u001a`��:!\"inynm���A��h�O�m\u001a!\u00182�a�\r�K�OS��S%\"�'���\"�O\u0017�W��\r�nd\u000f�\r�n��\u0000HԾ��T��+G�A[�\u001e���L��\r���$�?\u00180%k�A\"\u0015\u001c\u0013�����{ha\u0014i'q��3�b�/�\u0018Gl�_��Ӑ��U\u0011�h\fҧ��ސ���!�\u0000n����t~U$�:>\u001a��\u0010e�\u000f�x�\u0011�\u001bJr������N�\u000bݒS,@3��;��Э\u0012�\u0013[�LF�\u001d\\�\u0003\fpf��Z�P0��G�'��\u000e��\u001d�V\u0012�[�2g�\u001d�\u0016��ײs���.�E\u0015\u000f�\u001bl/ɝ\u001f��/֭��')JF�\u0015���\u0006�nW�OJl��'��|��>\u0001n9�#�&\u0007\u0013m��i�\u0011��M�;��܅C\u0015A-��Y�y\n1�\u001aM���F���Z��E�@t�e����$�\u0005�di(\u0019aN\u001f�\u0006.��u�9�F]HÌ^��/\u000134�\u0006��~ohv+���ɧ\t�3_k\u001a|K����ʸh[3�:�9\u0013\u001c��5�3��fOk�.ob�\u0012 �ȱ\u0012\r0�$uTg�u�+�\u0013\u0014�\u000f:��~\u0007��?gsW�Sfs�\u0007���Y*�<�3?q�\t�\t\f#�-*�]���ߒ��uU�J��DZ�D��Hn�y�Ǔ�\u0013��\u0012�\u000b\u000e\u0007�\u0016o�O��O��� ��8��^�O��t\\�xa\u0006.����V7�\u0002�����O�\u0007��\"����\u000eF\u0011\u0003'cyWR��^���\r��2;�#�I\u0016����~R��afR��_R����\t��\u0007���̕�E\u001b\u0011D\u0005w�%�� r�-�\u0001\u0001\u0005�\u000b��K\u000fZy\u0011�R�3x�:���o�o�1\u000b\u0018;%ֆ�,�s��E�^1�V���g��\u001f��\u001a�\u0014�5�$�AT�\u001eȀ��c\u001f/�Hap2�ZQ�}/\u0010E�e��\u0004_��=�=T�}\u00111\u001a��b\u0006�Y���\u001f�e�J��\u001f�9dS�\u0018c��%��\u0006�Q�\u0014.\u001fK��\u0005F�c�{\f�\u0019���8\u000e�wh�\u000b$\u0000��ԧrZ�T\u0006\u0004.I�'���/�c�n�/G��f\u001d?�nj\u0001*�#��퐷 �y+�\u0000�\u0002\n\b�ÿ��+���\u0018�X|4�\u0018�FVO�z�H9��D]G\u001eɩH���N�����C�Ф���<\u0012\u0000���k�\u001c�L)��@'�5��*{�(���܋\u001e\u0007.��a�ˍ�fO�V9\u0005f*����r�XD\u0014�>�P�\u0012t�\u001c+�a㬺��N�qxU�)!ٍ��\u0010T\u000fJ�\u0006�\u001bb+���8����dҰ\t��\u0011�DV�ݒH�\u0002\u0006țw�!�;�\u0001'�Ah�\u001e܀��k��\u0003�so�b}dEϛ����3D�b\u0004�ЊAͩ��]M�\u0013\n�ƾE}\\����\u0002j�?�b~$jp�ic�BdS��1��~\u001b�E��?�]��ڶ����tYF\u0013\bX��#h�?m��EZ�3���i�\u0001<}\u0005�]3��4�Kٶ���Wb�<\r�p\u0007���R��Иa�A)_�J��D�\u001a�Se�\u001b+\u001f�\u0007��Br���^x�`�����B6tx'�P�t�\u001c8�8�/���s.i����^s��e1�O�?\u0006ŏ�d���쾿��8��\u0016{h\u000b+�2H3+�\u001f\u0012��ʃ����\u000fK����|�T�V�(ae��)i�e[�\u0006dz@-���]��{��B�y?Rݽ����L��P�e�AJ�\u001f@��L�R��\u001egm?ޗ��Ԉ�\bށc��/�D�'���`0W��\f�\u0016G@�y��\u0002�$��A%\r\u0018@\u0001o�C�Z�pGōX�\u0007�!��J+�\u0005�4���\b1\u0011lWeY��1\u001f�:��1�,�+Zt�kϮ��\b\u0007�\u0018i^�g��Q W\u0015�p�;�D�:��\nA����\u000fi�d��$\tf�Z�\u000buV���V�\\�\fK�jˑw�wу9��l\u0005;?�z\u001d3\f�mk�%sćVv����M�?u�t\u0015p(C$Y/\t��\u001f��E�f�½��EL�p{\u0004\u0019g�fMn��3�\u0017���A41�\u001c�wC�\u001d����\u001f��cu�F�ͅF�'�\u0000�T+�)%��؄\u00035����t�1I�e��a\u0019�\u0016ꄀ�5O\u001e�{��%������{4X�>b΋��-\u0014*\u0005#\b�\u0011���'��\u000bU�|m4�fZt��Q�Lej�7,\u00127��N{\u000f���B��\n�����\u0001=\n\n�W�1E�ش\t���\u0017x\u001b���>:�Sx�X�K\u000b�@\u0005}A��\u0007@$X[r�3E\u0000B�>�n\u001f��:Ʋ�\u001c4\u001aY=���\u001c�\u001d��v�\t��n��e��\u0010�����\u0001���u/�\t���W�PVz�V�Hfm�Mv���\u0004���\u001b�wm%�Z����AH�\u001fh��۷\u001fX@n�dÕ\u001f/Q�[���\u0019\u001b�r=w�\u000bL|��;�e\u0012$\u0005���\u0012\u0003\\�\u001f�ȣ��$s�o����A�}Q�\f+�J8������g�\f�����\u001fR�d�6G��\u0002ޥ��CgQ߃E�\u0017C�4�\f'ͭ�'�7��y��\u0000=\u0015\u001cDk.5F��4�\nl�A�Z���Υ�l���$�\t?1��d(�2��i\u0004�\u001d|�W&\u0000\u0015|\\p\u0010D>\u0018 ��f\u0005�_�����l�厰2�����J��+�^Tf/��\u0012|�e�V��`s\u0006�R��������R�k\u001e��`�\u001c}d-\u0001Є\u001b�ֻ0)�\u001d�\u001b�y#�\u001cI�I��\"$8�_b����{[l�Iٕr�DΗ�8\u00054D���\u0002@9\u0018�\"z\u0007�i�r�jS�A?�\u001f|��L��\u001b��\u00101I�\u001a�\u0002�lk�aȇ�Tn\u0002���rb��\u001f^.ӕ��\u0005��\u0011\b6%Q1�}�py\u001di�����?\u0016\u0012}*���\u000b�N�E4\u0001ru| ne\\�\u0010�)u63��S�IJ\u0007\u0016\u0011M>��k\u0014=�o�\"\u0011l\u001d:u-�a�Q{��\u00021ɶ�x��4��n�5\"��Qb0�\u00178�bi��u\u000e���5�1�Zܷ�\fl\n@:�\u001f�O>6o����ks�<6�/Ƿ��*�hZZ00�H\u00198��z��x74�^7�7\r�;Y\u0011#��mN\u001b�;\u0003/���:#{�2�N=?N���'�����7�x�_� v�kٙ�\u0013\u001e�:��j�p\u001a���\u0006&d�\fm�W7Ǽ��ZG\u0011�)4�\u0012�m6�n�C������AH�\u001f���L���`uʊ\u0013#�m������-��f\u0011\u0000L\u0019G��?��š��<],�\u0018�\u001a�;\u001c�z�;x�ͨ o\u0003�\u001a�\u0012�C\u0017wᠲ���`��3�úG��a9Z�X���H�q\u0016�\\�?���֭h��\u0013hyRJy�G�//.��f]�Ż�C|v�wg��&1[��n\u0017��u�Ƌ�\u0011&�c\f\u0006H+�*�C2�y��^F'���\u000f8�J����7+\tн\na\u0002gyMPX�n��x\u0002痫��`zh�\u0006\b\u0019l���I\u001d4�\u0005\u001a�W\u0015\u0016�.�\u0002�U6O\u0000Gn<�.Q�q��_�h���0l ��yg\u0019\u001c>� ?=���p�\b^��͓�%|\u0006\u001f\u000f m�M]?���gԜ=�\u0014�g���=P\u001d��\u001b�_�QN6\u0010@�\u0019[�AN�\u001f���L�ܝ��k���\u001e��w�9.��\f´����~�*�\f��w=����ZLq8\u000b��O��\u0010m�R'J����K��d;\u0018�\r��q�QTG����/�qQNfn\u000e�SG���>@�ȩ�a4\u001b�'�\u000b&̋�\u0010�8�\u0000\u001eW�\u0006��b%�-:?=�\u000f4��$Ȑ�\u001e��K�\u001e/v�w�O�A���\u0000%G9>��k����M�K\b\u0007���;R��}{P~�fr�\u0016[��P\u001cwIS\u001fJ@���\f\u0003\b�V�\u000b.B��?�.n��gؤ�7�|z�^ɛ�AN�\u001f���L�\u001e���U��Pp��\r.�\u0000���)��BzI�\u0018Q��A��3\t\u0017J�\u0003�\u001b�.�^����\u0014�0\u0002KG�Cr��-���U\u000e���C��ȶ\"y^�A�;\u0015$���2�\"\u0001\u0004��K�G�9�$�P.���\u001c} �[�l�/\u0006|�;E-�Y�\u0004R�� s�\"�V��\u0014��Uf��=����)M<�����\b-fU�x�����9E�2Y.�6�*,��M^$��;��s��a\u001e�2uO\n�2�\u001c\u0019W�K�z�+4��K�f\t�%p\"�%�\u0001~pp�9�+\u0014׽\u0014\u0002\u0006B�V�ϣQ���X\n\u0019�|����y��Z7����R�A��#B�\u0007F-\u001e�F\u0010�5�D�B�\f_�:�\u0001����+��Q�)�lI�S-D\u00181N�_�*97�AJ�\u001f̀�L�\"�o�ݏ��HpZ�\u000e\u0006[b�i4�;�}\u0018\u0015�z�k\u0018\r���nO�\t\u0017Bc��`\u0004x�|=p\u0015�;��o\b�|\u0000��(\"͚R���\u000b;g)\u0003�vn\u001e�]�NhbЭ\u0019M�\u0019ɺTtֺ�U����j:b}���2*K���\u0006�Ů�3\u000f���:L�s�,�������1\r'�q�Z=��C���\u0012+o�k�\u0006�����sc?\u000f'C\t]�\u001a���3Kڝ�6Dy(q\u001e�C�\u001e���Mi���a��;}0�Ykt��<�;4�c��Йn\u000b\u0013�=Q\u000e0��TA\t��J\u001e���\"\u0003S~\u0011�Hc\u000e?$�sN\u0018%\u0016��}�<��\u0019�q ٹغ�\u001c�c6�\u0010'h�����Y��a��UT.�@\u0007�\u0000#��\b\u001e|:�k\\�AZ�\u001f���L�\u001fAP�\u001e��\u0014~_Uv�r���\u0003��\b�\u0016���\u000fY\u0016;�-z���Q;\u000f�;�.\u0006����\u000f\u0007�\u0004\u0012\t�I��h�5'�\u0006��0d.�\u0014tQxl{�\u001c�S\u000fC8(j\u0006��\u0000�\u0000����5�c9�R�(tr\fO�$��v�A�e\u0000E$!N��Y��v��L\u0006�t\u0001���\u0006�dF���H����籥��׭Sl���c�#���J�;�x\u0004[��L��h�\t�{�Ӭ�$�\u0017u\u0016��6JF�VY��iun�*�464\u0016:u�\u0004���b�^�Lu~L�:�\u0003���蜥N�)���0|O�x� �!�B��9��V�#\u0005��X1(\u0006�\u0019țaI��g4*�=\u001c�\u0012�S��Y�Z�#��3�%\u001c�\u0017R\u0007[��hS^\u0014۪f\u001aȇ�JH���\"N�qz㑋��AE�\u001f��L�w6�\bsf��M�M�\u0007��3�:���A?~nO/\b�ßL�ʾ�Ci7J�T��D�\u0003;\u0007A\u000e�\u0017�6C��\u001d���\\�q��<�\u0000�K��S�\u0016�|��gِ�7�5\u001aR�A$���φ�9��\u000b�ނ2��\fe���guq���S\u0000m�ޕ�\u001e��+�ps�hM\u0004�\u0007�h%�^�Y@�3\u0018�Ɇ�[t��:KU��^�4I\u0019�� ȀU\u0007�\u0019<�\u0012\u0005\u00104�-�\u0010\b6I�)�Gv~ȅk3k4]14��\u0018��)��`W_K�gxu@\u001d��@�ƤTmʊ�~�k�����.=��Lߊn��A6� \b��L�ϴ��i��^��\r�\u000b�Jo�/�3i$=�Ӿ\u001cө\u0010�v�n\u0019�e\u0011\bNf\u001c\fYg��D��\u001cE%w3\u001c�\u0006���0\u0005��\u0015$<�7�\u001d5���fx�\u0010����>\u001a�\"�Z\u0018\u0010\"5\u0015�� �ٽ�Plף�X�1G^��f���O�T�Xk�,���Cԓ\u001f�U\n��&r��$u�'���˅c!%;�N��[�g*\u001c�0g��\u0004p2��Kd�A��7c\u0018\r�S��U�\u001b�\b\u000bD\u0001\u0016|:g\u0001\b��\u0005<�UJ\\����)���\u0012\"\"z \u001b�vT�.�q\u000e\u0016fI,?�A\u0000���~��W�\u0011\u0013y\u0004\u0011b�LZ\r�\u0002�?�^a�\u001f��?��K����\u001c�;Ɖ/��2�?��:��tɣAI� \u001c���\u000e��F9��@+����kc�\u0012Ĵ�j���\\�IѦ��4dq\u0010�sw\u001b�\\���架�\u0007�'���*�8퇑����V�\u0014�YuN���n�\u0000��H�\u0012h��\r\u001d��E�3\u0006B�\u0017‘n�\u001e��EL��)��h\u0018ԆK\b\u0000�q�\u0012\\^��$\b_���D��Uˬ��\u0005�\u001e�Ǭvk7��|Q�$�O�\u001a\fK��\u0016\b�����#��G�kH�\u001e`_��\u001e\u000b�\f�$�<_��- ��\r>?�4g bv�n���W,$�q;b7�������w����a\u0018?]�\u000e��l�L�:f���Ⱥ]�A�;\u000e>��*Xu}\u0004���1\u001b�̩�^7ޝ�S,�I�7�t\u000b�P�:r.\u0011E�TM\u0016'h�\u001a¾��|\u0019���(��H�AG� 0���\f�j �:A\"\u0019� G�V�l�_�֡���\u0019�\"t��De��:/�ւk�?��=`\\��0TM{\\\u000e\r�͖\u000e7iw�V#\u0010&\u0005�WV�\u0010$w����\u0007��3��\u001b���૒�\u0017T��u�/�X\u0010\u00165Ƭ��6�Q|�\u001ep�<\u0014k���C26r\u0015�V�!v\"��#\u0013��\u000f>��0�\u001dռE�cٖ)\n%[5zZ�?\u0014���\u0005t n�(\u00031\u000b�dg;�c�u\u0003���\u00159m�͋������\n\u001eR\r\"zy0��?$M\u0018:�\u0019^���T\u00109��� �\u0019\u0011&��\u0004�\"�Q8\u000bz�>�׃P�'�\u001f̜�\\X3e\u001bx��\u0004�U��d���\"�w���ֺop�K!�m���p��/L\u0016�kd\u000b�~\u0002�|U���ҙ�\"I�AM� D��L���p�tG\u0010�@L�\\՚\u0002����b��;H�΀(b]�3\u00183+\u0004\u0001\u0001\u0011ſ�\u001a4\u0004�\u0002y�V��\u000e��\u0006���Tp%��ԑ�������Y��d\u001d�٫��^�eB��\u0014\u001a��o���t��w��X`r��{\u0006;��8�+\t��W?\t���un5K���\f\u0007��\f�%�+_�6�1���-����X�\"\u001e���6^\u0014�\u00108�r?^K֟�Y�BN�n�\u0014�FyLeҸ$�|�I1\u0014\u0013�CpLF\u0017�\u0018�溚�贑�Ȩ�\u000b��o��)���\u0000����Ӽ\u0017t:~L��7�=\u0016\u001bĖ����$\foS��x\u0006\u000f\u0017/\u0001y��tҴ����\u001f��\b�\u0018\u001f@�O�O���9�4��\u0010�\u0016���\u0011��5�<�\u001eǔ��[���AO� X��L��l�2�S��r�6]�A՚\u0001�/CӮ>��#�\f���6�R�\u000eo\u0016��\u0014�\u0000�j��\u001d��2�۸�To\u0019����I\u0011a���u\u0005*�=\u000b�e)��\u0004D'�n��ܗ�T\u0003�=�t�ǚ�`\\����zY��\u0017�4\u0006�<|�O������uΣ�P\u0017��\b(o�\u0013b;EC��P�2,�u�EB���:؟� �`\u0014�\u001d�q�I\u001a��\u001aa�\u0001��㵦���+U���ϋLU{<΢�J�;�<\b��LCލ�LO�(��\u000f˳u�)���\u0006�J\"^��D�`�nF�'���\u0017l�]�],Z�\u0007����m#K��q�9�q\u0003�ti���z���\tW��G�Ч�#=Z!���~-s��\u0005��ݶo��\u0000v\u000fp\u001fn�yKHˣAM� l��l�\u0004�J\u000b\u0012I�+\u0002�9/��\nr\u001e��X��Q1�7}�\\1�$��.b��l'��.IL�i��D|;[q�Q\u0004��Z��E��\\\u001fui?$E߭�ܣy*���\u000b\f\b���E(�(\bO5�0ڬ>\u0011g1�C\u0004\u0013u\u0016\u001dI�0�3��z�@�\u0018@�~�Ă7�T~�\u0006ٚ�k;�\u001c\u0012\u0014��DH�0d��#�/W�\r�_����\u0011�,n��m\b��x\u00185'\u001f��|g�\u0016�\f��,��\u001c��B\u001770\u000112=\u001b+��\\\u000by�C\u0017Ucf�U���P0+�;�\u000e>��bޙ[��\u001a� !Y\f��H\u0004�OD��\u0005\u0012~zPC�@4���ª�\u0015�sZ��u)T�a-u��\u001fev���P�!�\u0019Fe��=F�\u0011~�\u0006�Y\u001aq�\u0012�p\u0019�/���AH� ���X�.k\t\u0015�{�mB\t6�\u0010�i�y\u0007VÚ6�q��D/�\u0000�W�8\u0004A�`��:�\r=�\u001b\r��R�zg��\tz>(�rW�7!_NQ\u0019\u001c�[��V�5`j�g��<��6�P�P��\u0001XM��Kr\n@���\u0013�\u001d�\u0019�4//�\rӛ��b�9!F��X�E{i�w\u000e����oO;�]Vwb�����ݡ\u0019\u0014Տ�����\u0012��ώ\u00047�\u001b��Ȟ�S�s\u0011����*���설\\�H0\u0006�����M_yѤVZ`IJ�|�D�\f\r�ԯ\u0015|\t�ʗ/=T��3\u0016�\"JB-�,\u000b\u000f��k$k\n.!�6�����W<*q�춾�Ի{���\b�b�Pܞ��\u0002��9?�����N�Yb�+۬z-?��5�p?U.����퀣AD� ���L�Rڢ�\u001f��Y�\u001c����g��cX̳��S��8�\fN��\u0015����q>7]I��\u001d���i;W�K�D��\u00168(4�\u000fb��C�H�G��S_2Љ�\u0003o\t��\u0002��1R1qn�\u0015��\u000bx�A����xH\u0005��7C�3�֍�u�\u000f��\u0007Qi��ҩj�o6Ț6��q\f7�>��*<6�\u0007��\\:k�$\u0015Ii=�\u0006�ae��5\u0018܃\u001b9y8& :'�O��ѩ���\u0017��\u001b�\u001f��\u0005g��>N�$���iX\nt\u000f�2C\tC2�D��\u001f��\r@\u0019G稒��A��{4p{(\u0016����\u0004E�H%\u0002�\u0015�\u0001�\u001e\u001c�9ր9%�\u0018�}����-�+ֹ��(o��s������F���\u001d�<\r����\u001c�re�A7� ���L�W�(g�\u0003*w�\u000f���{Z\f�{&a���Z�ꈟ\u0006\u0006ڂ?3|��W�0iz�\u00114\u001b\u0003뼡�\u001a\b��x�+\u001f@�\u0013�i����MKU�wXk��)�i�M\u001d=�F\u0010\u0003Rv�\u0005d���\u0011&�\u0000�=6�E��Ot�\n���\u0014��h��\u00067\u0013��\u0004�Xf�\u0004���厤��IuCy�f�r��^��w��C�\u0019{��b���r��\u000e��\u0002�/�����)�F=௸�1T&�?:6>�b\u000e-���=�#{5��82��p%�6j1y\bi\u001f�X���|a\u0005p���\u0012��]�'&���\u0014�\u000f@��U�\u0005��x\u0011\u0004\u0019��\u0014\u0015�<Ϭ?\u0005!���Z��kdf�'n?�9�����>�\u0010\u0012�A?� ���L�\u0016���–�4D�\u001b\u0016�4R�C\u000f�xQ\rd��61�/��H�>]�[���\u0010\u000b8�n*�?�g'y4\u0016��@\u0005#��?��f~s\f��u��!�\fQl\u001d��\u0001>;㺁\u001czŊ�4�\u001c\u0003\\�(N\u0002�mH�~\u0012�\u001b��Gx��c��{kQ\u0006Q��\u0004_�s�O-8�f���3\u0010sԸ\u000e��G\u0007�x�-)�)�+0��KH\r���XOJE��\tP&��.\u0004%�l/,��Q��\u001c��(|'p2��E�\u0014\\�0��i�\u0002\u0014�\u000b\u0004��-�#&�:d�\u000f\u00143$��\u0001���\rV\u0002',�\u001d.���Oy�Q�\u0003�Hj���[�9S�W[\u0000�\u0010\u001f��hp~%A��i��А�\u001e�(\u0004 (�ޑ�:\u0017�\u001fG\u0000�o�\u0006\u0015�\u0000���(yۣAA� Ѐ��\u0017���\u0017\t\u0017='LDUw�\"�%ڰI�G��e\u0018\u0018b�\\\u0001'S_1��d��u��ӕ\u0003\\#���\u001f��:A�\u0017�[�\u0011�\u001e�ᙛ��\u0004�\nmPaH1��k\u000e�I��i��s���MUU�\u0007 ՝v�%!'�M\u000f�\u000bFl��v����\u00055r��8�Ψ]� ��I�'DH�Q��\u000f�s��y��\u0019^�w��V��f\u001ce�K_�?��2�K�h\u001f%e���w\"�8\u0007\u0013�u��z�\u0004�*i��\u001aQr�t,z�v\u001e�j<�!,-��\u0019��M��q�\u0003�{nS�Sk��\b�XH��\u0016R^{&��\u0006)<�ěU\u0018@\u0012޺==��k��<ۤ�J\u0011�;)��$\u0010�9.�%W�6^\u001aE��I \u0002�\u0019��\u001a瘮��Tg�AF� ��M&`o(3�\u0001�\b|#\nL��\u000f\u0001�wB�ү��ZѲS[i� ��\r�Q�Н�\b{�'\u0007\u0011���q�/�T��x��}\u0014\u0004]{��)����\u0001\u0001�E\u0007�F3�8/�'BM\u0010I\u0003k��:8>Ȭ��VM��\u0003%p��N\u000f���3ul�I�3\u0005��ƃ\"٥g\u000b�\u0001S�\\\u0005\u0015�\u0015~05L;W�\u0006gM)\u0013a�%��c���\u0019_\u0006.��)�\u0001�<\u001a\u0018?@��j� N�Z1Ý�`l$� �\u0016r�5zJ]5�+�\u000f�`��Gb\u001a\u000e�q&\u0004(�d��\u0000�$05�Ux��R\u0010l�4�$!ڊS�C\u0016��\\ڸ�hd:���Z�fHS���.@\u000f��Qr,<�1��������D�&�\\��½[!$QT�T��\b\u0005�\u0013���AD� ���M&Bι\u001a�\u0003��\"B�\b?�J��n_�4�\u0013�ٻ�|J�\u0000�\u001e�H`\u0007���Ci�8݋�Ȑ^K�WU�\n���-�\u0017RW\u0018LC�\u0019\u001aԅ\\\u0013־��X7��L��Ǖ��@�*�\t\u0016V����C'�\u0012Pg_Sx�Tt��\u0013\u001cm\u001a|~��\r(�\u0014',�0v&I��K)��7q[@-&�Ղ�j���=%)d��\u001ea.a)�}���F\u0014�_<�C�C���g�/\u0017�����\n����g���_�'�s\fW�-w�SafA?0��H��t\r�\u0011�\u001c�x\u0017��M�t�\u001b�\ti�����QΧ6\u0018;9{-!bP\u001b��\tYZ.h�Р���.�`k�\u0004�^�\\\u0002U�\u0006��ź�AA�!\f���\r��\b�6QKn~\u0015m[lFI+|�֭\u0003��\u0014-��C�e\t����>G\u000fl\u0013��\u0017�X��\u0010�o���R\u000fs..YS�(\u00137�'4��f��q�<1jSFLбфU)R��\\���\u00136���\u0010�&\r�mW\u0015N�\u0017W=�_���y�<�����G�x\"��\u0003䣑������g\u0014����HeHM�\u001d�b\u0005��q7#*v��R�xU\\;!�\u0017s†\r�-�_\u0002�J_�\u0013契��_=��(\u0014L\f��yz��x��O@�\u000f֯��?ؑ\"��\u001a\u0006V�\u0005�W�\u001d����\u001d�\n�M<>�\u0002���C��D$��Kl�\u001bM��\u0019�K\u0015\u0013�%\u0012Hž^\u0011B>�%D�W�Dn�\n9�!��LQȿ\n����y�dDS�\u0006I�AO�! ��L�\u001f鿻a\u0016��\u0012;s\u0011XcG��\u001d\u000b燞����\u0000ƌ\u001a4ʍ�\rfh�c��Ǩ�i�8A�G\u001a�*�\rnkr`��䶀X?���)�S\u0001�\u0017�\u0004�C�k~ˁ���=}6�\u000e�J~\n���+\u001a��Pn�\u001d1:2\u0011�wԸ\u001c�E��\u0019\u00138�?���̾���Ή�����iޥ�A-{\u0010���K�\u001f�-3\u0014\u0001o��m�聏�í�R\u001dq&o�E��]�\u0000�BoA]�\u0004\u0003�X��_%6\u0004���ܾ��=�vnO��~�Y\u001d�_�$ުg(\u0010�\u001f\u001d�LKÒ�a\u0011錙R^-*/Y����\\̱�1���]�gA�j�(��w7�nS�u;�f\u001e��}\u0001��<�Ş��)��\u0013Q�}Z\\�hi�?\u0003���h>���d���ۣAD�!4��M2R\u001c�q���%���\u0003\u0003A8��=��THF�WkC0x��O1�\u0017��U�Cѫ��\u000f2�Y+�0OZ\u0012e[)/�\u001e���R\tb��8�u\u000f����\u0005fG\\�z��9�X�=f�1��lO�Ϣ\u0016L=ױ�#�\fY|n=\u001a��&��\u001d\f\u0018sL\u0005��\u0007�m\u0011�\u0015�\u0006�5�\u0004{\u0007d�x\f\n\u0000D#\u000f\u0011O�ɇ\u0012\u000e�\u0012s���z�\u000e$\b�$� ��{���9���Fo�98\b��\u0004-�.\u001a���\u00075���\n\b�\u0018�\u000f\f��y֙�;dE��5�K���\n�\t\u0002s���@\u0017Y\u000f�g���\u000f7\u0004����\u0014𮦯/�X)\u0011`�(��XDpT�r̿~b�T��#�Թ���2F���Z�E�X���c���\u001a�\u001c�r\f\u0010\u001a�A?�!H����\u0004?sT���\u0015��\nS��x�k�\u0017A����\be���\u000b瑿�E\u0015\u0014�^�P�\u0012�X��&6�Yc�1m�;�s@��85���e����\u0013�1q��ˌ�y�\n�F\u001e\u001f�o�+��@���o8~�\u001cv\u00152�Wۊ�P�PY\u001a�~\u0013\u0014\"�\tY��\u001aɑ@\u0001gzK�\u0000�\\\u0018\r0���6.�r�R��l02#Y�!�\u0013c:t���whC\u0018!֠��\"�.^�P|\u001c���n\b��0ц�\u0001S����m6�M�\u0018:ܣ����F��Cm=\u001c\u0018������)�7Bx�I:����&=p�C�=;�7�\u0001�t�߱���a�8���ں��XM3g��vN6?�ҽK��I�I�\u001d���\u0007n\u0017c�jdD�A@�!\\��X�yC�3�\"�KNzF��_�[�`�ٸ��t{���?�c@:��\"D�\u0018\u0000YB>.39�!��}���Mƫ�\u001a+\f����\u0018�ԩ�J�4�ļ��\u0005�Y\u0018P�n��\u001dyb9�w\u0005\u000ey�\u0015҈\u0013q\u001b�\u0001��ĕ�\u001d�ַ����\t�Ak\u0004��(0\u0005��W%|�\u0002,Z\f\u0013�E��<��S��\u0010'}�U>���\u0005�\u001af�z��?�8N��v�Z��B�n\u0010��`�D8�f�7\n�\u0019�D\u0016�9��F�\\(Kg�y�w� \u00045\np��k�p6�\u0011�?2��\u0011ЮC�XbG���\u0019N����\f�\u0018�S��\u0013�z(}�-F|PN\u0010��)��e$�\b3\t=�\u000e�\u0007��\u000e�\u0014�T�S�B~$�����\u0002�/~>�Ax�!p����q�\u0016�@S���[\u0005r~T�\u0005*\u000e\u0011�u���X *{k�m9��o�F�~�\u001f�o`�'���uW:K#����P�?���D[�\u0001�����C�0Z\u000bpίN�l\u001c����eEC�;X�pA�;���CjUI�����(�q����[�A5�!���XБ����9�\u0000�׆��\u0013�6��M���\u0002�\u0015\\��`�\u001f��\u0017�t}��)��\u0006m���\ro���U\u001a�G_�H�TP\u0004h\u001d\u0018�q�l�\u001eh끤PO��%�Q1!\u0010�����o\u001a��f��/�\u001f�\u000e�jG�\u001aR�t�`��#x\u0014�Ut\u0010!1�Pй��(*6,�s&ʡ��\\&\u0011<7�\u0002���\u0019,*2\u0002\u0017\"�D8��[_����s�v����g�)\\���\u0011f�Bu.��\u0014b�\u001fg\u0013�~3cJ\u0005E���\u000e{\u000b4���\u001e��g��=�,A�+�<\u0012�˔��\u0012�Xث�V�*^��\r�l�W��\u0017��-r\f��w\u001a�ը��\fs�Z�t`�\u001a!j\"�V\t,m$�\u0005�5��wHEuf�A(�!���L�M��ŨN}\"|�2\u000brY��sD)`�/��͍�:niR\u0005��\u0015�\u001dOH\t��\u000fa(�O\ry�BMvB\t�\u0006k~�[~F=ǎ\u0006�\t�D�_\f���� �`��\u000f�\u0002�\u00196,�\u0000�C<���3\u0016�$�%\u0015��\u0018�|g��Dq7\u0017��u1\u001f��Ω[\r8��s7S�\u001b\u0016s$�0�dĪ�\u000b�[̉��r@X\u000015��OL\u0004��:\bp�\u0004�Ð�\u000f���\\\u0011�a�A?B�Ő6��Y\u0011%\u0010�Et]�Pf�\u0005��E��}\b�(;��T�gP�`�v�b�\r�*{\u001ad��m�t�V��/��4�b�\u001c\u000b\u0003%��Ёz[�IJT��\nI[FD��:n�)�٘l�[�A0�!���M(\u0017��`5/u\u0000�s���/cqA���[\u0011��u}K���S\u0015\u00064\u0005���~�D��향D\u0018N��e����r�>�q�e�\u0003*�\u0003��t�\u0000�+)��|���v7j\u0016\u0004�HY�pp�@\u0001�\"��\u0005k^d�\u0001\u0017�r����8\u0000���*w@�I�L�\u001f\u0004p���\u0000$�*\"cMf�\u001ac\u0018c��y��^\fB${��˭@�_:�Ek�g#\u0003��\u001837\u001f����Yx�2��T�\u0011L\n �w\u0019\u001b{p��KQob�Sf{�D\u000f$�G1(x�bsx{�Y=�ǎ��-O�F���k�{�\t8��F`�\u0018\u0003:�q\u0012U<�p�C\u0007B;w˕\u0010\u0004=����n�����rF�\f��P��VAڣA6�!���1���#���h\fj���ͧ:�z3p���g���\f�\u0012��m z��\u0004-�̈́����s���J��tz,4g�Z\u0003���)P\u001f�)��\b���6�\f��ڙ�K�kZ\u0016���z{�6'H(��\u0019�NKcy\u0001����ΡW�pI�Q�\u001e�֯�t\u000e�\u0002��r��&9� \u0006�%�U��2s�e�S�L�E\u001b��zP\u001fV��+P�Α�\u001c���/�\u0004:���,��\u0012m�J\u000b׻\u0002\n�Q�\u001e\u0000F!�$.�Q\u000b��\u000b���uB�X�?\u000f9J-d%h\u0011��\u0003��D!\u0010q:�\u0003�.֬M.\u0012+7k\u0018\u001f�R!�L����\u001d�Å/�B�\u0012��v�\u000b+��mA�Þ\u0016�\u001a���G�\t�Q�Ȍ�m��A-�!Ԁ�M/�������\u0014�F��|���\u000e�&�oZ�\u000e��%f�\\A\u0010�\u0006c\tva\t��|�>�\u001bH��jF���ڛEu���\u001c�iy8j���a�G2RiV-\n\b)�\u001cc�v�6\u0015\u0003��\u0011���|�\u0003\u0018*:���f�M\u0004\u0017��\u000b�L�|+��;�����S�OX�D\u001b@��#\\$�:�Y�����1��]���LD�X��\\o1\b\u0018]�OG���]$���D�t;�uhR�C\u0010\u001e�Hc��~�D\u0018%\u0011E,}\f˛\r\u001c\u001f\u001af�\u0002�oׂ�S�\u001b�~0��-�&Et���p\u000f�/\u0002z\n�\u0007��U\u0007���L�06�M�I�h4\u0012\u0003�h��A\u001b�!��1��\t�g��ѓMȵ�;\u000b\u00026���Ώ5s\\1���zk�Ⳣ�UN�\u001e@��+!#��$�MΊ���\u0013\u001d�����fb�\u0004�\u0002����r�Bj|��P��\r�\u0002v��M�1�y��\u000e�?Nk���q\u0006(�c��P��\f�\u000eU����T�$��w��\u0012j\u00017v\u0012~)�X\u0015�J��<�\bQ\u0004�8�\u001e��\u0000oB����\u000f>�)R�^�5�a\u001a��\f��1��\u0017�m�b 8iq\u0000ݪFo�\u0018*��y�7a��Y�3\u0019��\u0017�Cűխ\u001d\u000e;�oRї\u0004���,2�DB^�i*y��\u0015Z�f\bF��$ƴ�w`I\u0006�\u001d��\\<\u001e�~�A\"�!���M�\u0010�\u000b.� ֻc-\u0002\u0001��X�U�\bj�\u0000\u0019CA�ʄyP$t��3I����!�&�0�jZ+�\u001f��_�\u001es��Xz��O��\u001fS��B\u0003,�\u001aAۑv�(\u0000���xG�;�l�n��oVJ�\u0001F��r�\u0003Cj�X\u0004���hE�؎Na�#�%�6l\u0005m�O\n\n)\u0014}��t��O\u0017j\u0017O�ؘ�7�\u0007�/�c�\t��0-�$�Q��Q���g+6Woi!\u0001\u001c��B0ɕ`\"��,�-��z���\u0012w0�x�\u000bG\u0003�\u0002����7EY�)i��z�sx=�����e�\u0010�\u000b�įoЧS>�W��˧\\,�\u000b�jB�XFs�be\u0018\u0003i�\nc�t\\�k~c�0�\u0018|.ڂmݴԻH>�\u000f�R�j��AH�\"8��M'o?e�OW�h��������K���;\n���b殚����S�0�j�.K�*���\u0012\u0019+%�O\b�����}�p�{R$hVno�j`,�б���\u0002��8�\u0014A\u0001�b�d��\u0006�V2\u001c�E(ٶ%��\u001d�r��\u0016\u000b�%�-\u0018|Ox�\u0012��rO�\"W�+\u0017\u0007:�<�\u001ex��I\u001eV6BD��\u0007��~f�\u0018����y�cVGmG\u0006Cu�/N9\u0007�E�i�V$~%\u0018�\rPȌ�a\u0013/\u0012�����zڃ_��\u0002,.�\u0017yZJO,-v��G��X�\u0000�\u00125Q�-����1���\\�$�'_��\u0007e�H]���\u001d�\u00042��}�T�S� �V���*g&Zt����\u00172\b��N��G�v�\u001cB�\u0015\u0005�-r�g��b�����>)��\u0012\u0013�n�\\\u0013����fq�<��\u0018>5Ps�\u0010�!�X�*8�a��6RXSf�\u0013GC\u0016�O����=!��\u0007�/\u0019��Fo��c'�x\u0002\u0006'i���\\3��&�3�7\u0003\u0010N �$MZ\u000b�\u0019�`bc\"�A\u0016K�j\u0012�\u0005HM�u\u000b\u0004|�2�\u001a�pB���%���D�6-�n�\u000f-��\u001b�$�v����$`�-��s8T!���g�%1\u0005�X��<�����Ă�\u0013�\u0013�\u0010�sV�\u0015�\u0007ck�\u000b�ut\u001d�[j�w\u0016\"iV@�>�����&\u0000����[Y��q3%Ϝ��]4��jc.\u000f�s���!��\t\u001d�O�\u001d\t3+������vB�ʊP���J\t��.H�D��S@� \u0006�\u0006l\u0019�g��r������\u001e�6ýj��DВ$��T�)���;��\u0019#p>�Ax�\"`��L��2���u�\u0018�\u0018F�eγ��ᰬ'�\u0018�\u000e%f\u0001W�\r�w�\\�\u0013��\u001b\"�ɀ�\u001ek�\u0019�j\u0001���3dD^-x�4\r�hÜ�\u0011\tk:`�k�\u0005G�Y����UR�j��)4L4O���\u001ar���(X\u001d�;��>^��y�O\u0001*�ԃB D?Vi\u001b}\u000ez�\u0007�/W\t,o�\nw}ZƆ��N\u0015���[�\u001b�@\u0000����\u000fTJ�%�/��g\u0002�f��dp��z:\u001d\u0013���=�8B�����ۗ�\u0016[:?�k�bD�|~{EN��}\u0019ē�����1�ͯ\n\u0011df\u00057��\u0007'��=�1��\u0010ԍ�:>���\u001c#f\u001c5 \u001e�\u001b��.�w4�0\u001e���+0�A�n%4d\u001d2ϒ\u0017��2A&D��\f\u001cW\u0013�NvD\n`&���\f��2r�\u001bՎ.\u0003o�޷�b�L��\u0000\u0012�'G�\fS\u0013*\"N�mɦ�;\b�BMM�\u0006���$�\u001e��o�x[̦����u�S����eA\u001f)�vh-��~�(�V�[�oE���-(\u0003J�ָ�\u0007�{\u000f����թYe��P�¦�\u0000�\u001d���\u001a��o�Oz�A_U>��\u001c�ͥ�'p����|r�x���� \u0012�>\u0004ёv#�A4�\"���LɱQ�\u0001�\u000b\"|�)�\u0012c\u0010tJF���(5�\u0018�Gm\b\u0010�_���BK���\u0006\b*�/�I+_�q'7�ֻ�\u0011���A2�\"��L��\u0017�v��\b�\\�+��e �\u0012]����f\u0005�s�j�\u0011p�CaM@��U�Q��\f\u001b�e��o�,�\rc�\u0014��L9�G��jn���L\r�S�\u0005ڔani�9��e\r5/��|G/\tL!ǰ>\u001f&\u001b�T���\u000bJ��Q�>�(���\u0016��\u0012��5����V�$�\u000fZ�\u001d\n\rR�\fJ��\t4ج�n�\r\u0004ct}\u00071�4>�X�N\nٟD���\u0012���u�\u0014��\u0001(+�C�qq�\u0016�&2�:��߽��C��yM�\u0006}9���P\u0000XA2\u0010E�������\f���j\u0001*�)d��v�7�=��\u001a�\u0001�bJ�ӌ\u001dgZŃ�q�N^��U�֓6�ěFF�E\u0012�h@���A0�#\u0000��Lȸo��ͼܢ����U��'(�*��\u0014��B�$���S3���&\u0019cšKx\u001a\u0006�O^�\u001cs\u001c���\u0018�8!�\u0011��d�c{��\bO��\"�\"w�V֢X����j�Jփ\f��5 ��\rb�\u0006\t\u0007���\u0000B\u0002���f\u0007\u0019���\u001d.v黵\f/�ǷJ<�2�`\u001e�6?$�\t�M_@�+����\u0005�\u0007�C��o~��o�N�n^ხ����1�p�4��BN�$M\u001cb\u0010�%.���Sn9'�W�X��7���\u0013�{��?�u�\u0004�\u0010��\u00045l�\u0001\b\u001eM�/\u000b����~\u0001��oX\u001c�\u0016J�(1���Ɛ�x��_[�s�\u000fd�Lm���[��Y\u001at�\b����u�O`�AK�#\u0014���\fD\\�{f���t���B�i1��h�e\u000f?w�{|�[6\u001e_�|�ԭK���((Q��K�[�wM�S�O�q\u00126'\\\u0019����\u0010ә�֕�/ld�׉]�}U\"Uk��(\\���C����Z2\u0011�[�]#����Y�Chyo];\u000b�C�y�|���,R�y=���K��eԿ��%Z#',\u0012����6~i{�?�e�]\u0018�h\u0002\"G�V�H>�a\u000e=�\u0018\u0003jG�_x�V6��w_\u000bm0\u000b\u00191�$�ٱ�0}0�\u0005�o�?�����Ǘm���\u001e'm�-U\u0007l@E��!�\u0019��t3My��X�~l\u0001@\u0013s�΀�s\u0002\u0003�ޤ�w�\u001c���\u000e\u0013\u0007$k X\u0017�=5\"���)\u0011�T+�0%\u001c|�\u001cw\u0013\u001d��\u0005��֒\u001c��0\u0012��AT�#(���\u001d�\u0011�\u000b��]��%b��%\u0016JC�6�r�\u001a\u000f�\u00019�I�H��p|\u0005�?z@����>�,\u0004g3��A���]x�\u0014����1O]�v\u001a��4��t����:Dc\u001e\u0005,�>�2ý�߶�����\t'�Z���%Bl����k\\Mc���\t�͕L�P�\u0015V`�>��eI\u0014q+�\r)ՈW����0pI�RL��\u0001\u0016�\u0013\u0016���l�5�)0E�\u001cRL@>\u0012���k!���Y_3�N���\u0017�|\u000e\\m�DO9,`99Pp؜V\u0000���d�ژ~T��\u0018�d�i�{�r\f����\n�a�TX'�'���y��䷛�M�BP&�AI����\u001c_��h%�\u0017�ƋcV/g`l*�pH���uA�:m\u0014~\\�E�#Z�`~\u0005�K��&����Ȼ�Ab�#<���\u001d�aY_\u001c@�\u0004]���G�ߐ�Ȥ�&\u0011\u0015�\u0016�v�\u000b��C,�Ħ6�4_N��Y�j�%\u0018{\f��\u0004���2��\u0013�F �j�&��i_���J�9\u0000/`��\u0011�E�^x��2�'�T7JO�ʩ.�\u0018l�C�\u0016��beՅ���\u0019\u0011���X����(�P\u0014�j\u0006�d\u001e�e\"`dN��&b�j�<7���� \u001f�nc���I��S ƽ󨦛 ��\r�wm\\\u0013W�s���\u0003���n#�\u0006��\u0003T�B0\u001edTq~��\u001fp�Z�\u000bI����\u0011�\u0005\u001aR\u001a�s�����9�\u0017�\u00063p���@&\u0010��1\u0001�W�\u000e�@�����X\u0007��\u001d��+��&N���.�p�>��\u0017\u0017r:҈�\u000f>�'�,0D��e\u001d]��m<�j\u0006q�\u001d�\u000b���r��\u0002�].>���$��Aj�#P����C\u0005�������\u000b\bs\u0018&�p�vzV;��b\r�ȾOs���W��h�t�`URN��`�|\u0013\u0003-Ζ�\u001a�\bS\u001d�\u0018)<��:�v�6�-=7��\u0006fv��\n�\r\n�za\f�_,0j��k�5f|�\u0015�k�\f4�տ{p��,��\u001aڌ\u001b������:1װ�N������٩�L�f6bAy\u0013b@ƽO�\bx>\n�j�)Ȕ�\rU�����x��%��'���\u000e\u0016O�2\u0004�5p��۹-�q4���6x�\u0006��OC \u0005�,1���u�f9\u000f�%%�垑I�`e/k���\u001d{#�,;Y�ع�~ B�\u0019�&��=2i1K>��\r�\u0014(!��<�,�{�&�5LtN��\u0019��2�����\u0010|o�Q\u0010�.�X-k�S����P����-���\u0014Mc��{�\"sVg�\u0007���AO�#d��N�fj��\u001c��U3��!S��$��J�>�\u0012��M�#�t��r-�y���y��v!W짢#\u0015y\u001c\u0017�ᆔR�� �/!��\u0005�U{\\�8l`p��W���z�\fѡ��'dg����p�>\u001c\u001cۍ,)��x\u0010������J�WL:\u0000h\u001f�kg9��R��\u0006<�l��j\u000f�\r��q\u001de{ \t�H��!\u0015S��<�N����}��`�.p(\u001c+Gw4�ҢP�7T��\b�oʘ]�\u0007��j赻��\u001e\u0019|M��Fr�U�I��?\u0013O�6�J\u0001��\n����ۖ�Y�W >^:c��7n\rqO���|Fg*�4\u0013�S;��5���\u0018��-y�]\f\u000b����]P�4�8��l\"�]�a��E\u0005v�ԝ݁ \n$\u001e\\�ʔ����\u0002�\u0004��f��5\u0015Vw��=��`\u0002�b�Km�Ǘ\b<\nҀq$���\u001f��\u000f�\\��2�8E\u0003*%HH���\u0014Jn.Y8}W� y��KV�PhX��ޔ��\ba\fK��\\����PM\b\u00186\u0004�sj-8\u0005%\u0014\u0004�\u0017��\u0019b\u001f���T7��C\u001e4؀��w�p{ͅ>d�ܕ-�-��lTE�ύ�AR�#���W�4\t�\u0015r\u00037��Fy���C\"\u001e���x��\u0012d��Ν\u0004�zl�7�\u0007���4�)6�`�3��'��b�\b\t��<ɽ��9�{�f�\u001dT�D\"��vB+��\u001aE�\"S�|B�w��\u001e�~#��2�\u001d� �\u001c���\u000e�T�<�Á�\u001bp�3ϩ\u0000�d��DbI`��`�\u0004�\b뚠�l���n��L�F{�)P��zq[\u001b�e \u001d�A�S��mĩ�g�\u0002\u0005\u0002\r0�N�\u0017��1��&nAd��{\u0005XVeH�\\V\u0013�wL\u001c�2�bdɘ���/x�b��\u001du\u0004�\rڥxU���`�\t8H��\u001c�o���t䎔\nh�+�ض�,����f �(\u0014��������dkO�\t��!�\r���\u000f�\u0013Zl�Vs�zī�\u0016���FF�d�� +�AK�#����ȓd�\\\u0006�e�pi,��K�_a�q�)T�#�kd�\u0018¼�\u001f\\3u��F1\u0002n3 ��#\u0017٣�w\u001e��[�Yj�QP�l��n���|a�I��(�e�Z���s�}\\\u0002���\u000f�@*��y���+�u�B]��\u000e\r�h\u0013�]�b\u0013\u001dP�R؛,'\u0012\r[�0d��@�J��\"�N1\u001csw{Z�t?!{�h\b�Kz��\u001d��\\w^mr�*�\nF\u001fZ��A�a��P\u000f/\r�U���lOHbj[��i�I�ŋ��N,R\u001a�\u00153Ur�XBªe�����sH\"���@���\u001aR\u0011\u000fM\u0019ˁQ��\u00028\f�\u0017{YU�2�5\t��Lε��ނ�j�S�?��jd����\u0001g�zuf\t��sS�]+R\u001d=/��a\u001a��\u0017��\u001a\ti��\u001f�AE�#���L���tA�]\b��\u001e\\#��;�k�>�'��\u0011���O�B\u000b���-���\u0015��������3�(\u0002���%w������O�\u0002b\u0001}���D؎���\u0012�[&�;\b��ب��\u001d��JID\u001d�4�2;)�u\u001a�H\u0003>�rL��\u0010|����\u001a�\u001b��W\u0001��I\u001d=\u0001�:�&���\"nr\u000bMr 4�o� U�>I9�w2��\u001f�\u0017$��9�M�\u000e�f�?��\"�\u001c��hG��L�Z�4\u0011����\u0016[�\u0013&�[���\u0016�ڈ�������o\u001e��mFH�\u0019���u��F�;�\b�zz\u00136�_�\u0015��\b8|J3����aD\u000fRk�@q�1\u0006����s�t���hI�\u0005`�CE$�Z�v��)$�\u0011�c�'St?�A\\�#Ȁ��ao\u000e�0<��i\u0007����K���v�x\t��!*6\u0004�y�O��v��=���\u0015\u00056\u0018�^���/\u000e��,�,�j�1�p3�~�,\u0017�M���\u0018y{,���y?:�^�C��'���\u001f,>��/�������\f3\\\u000f�\n\u00077���\u0016�G��p�;�����.�q������ʳ��2Z�j� ��y�\u0012�Ģl_uٱP[}\u000fr�ܥH\u0017��HQI<�7�L�qv`{/n�ܳ\u0012\u000b�N|zu�;��-�\u0010���0�{\u0018\f�\u000b�s\u0013^1\u0004�����5\u0003y��I����>\u0005� ~�����\u001a�<\u0013f�\u0015qZ�/^+\b�,��3X�z_ɼ\u0013\u0006�r����F�,�Wfі��4fٜl���N5\u000fX�Al6�d��G��^{\u000b�6�d���~����\u00191��A��#܀�|��\u000bD�J�Vg�e\u0012�!��B�\u00180Ð\\�\f}|\u0018���v�P�\u001a��\u0011�5�re\u000e�\nM�\r\u001a��:�5I�a��\u00156\u0010��H�&��E�C\u0006\u0005�\u0000\u001f݅q\u0010Q���/֒c\u0003ȯua��n%\u0019�7��\u0013�\u0014ه�q\u0015�\t\u0005F��e�\u0006�W\u000e\r‹���_8����l/��7��;cF�(�J���'��~\u0013��yQ����\u0012\u00171�|�\u0015�C\u0012J��p�>�\u000b��]`��!��B�ۙ�\u0005�c/�V(�^��I��w֏a�s3\u000e���\u000f�\nU���\"�\u001e\u0012:Z�w���.\u0005\u0019�%Z�J��90\u0000��\u0002\u0013˫o��\u0011^���*�7�`s��rfM,##��\u0004\u000e\t$_{^d���\u0019�v��Fd\t�U\bD\u0007�m엑ko��í��T���\u0004|?��\u001c<�\u0010\u0018\u0001F�A�f�\u000e�|��DzMih��3\u000f{p��\u0004��\u0013`�q��\u0010�z�;4cL\"\u000b�\u0017�s�j\u0014�U3���?�,��C��rh�^r�\u0004�e��J�\u0007������\t����J�G�b£AE�#���X\u0013��\u001aˍ�\u001e�S� ��\u0007[K��]\u0000�!:�<�\u0019IS��T��eW��\u0007[\\$�\bZ[��8�v��%����^\\@\\�\u0003�uu�w�O{\u0019\u001a5G���������#s\u0002�����\\m�#��ZqZ\u0000�r�\u0000�\t����W��h��Z\u0010����\u0001�\u0003��k��!㒶�C��]-���\r#�g쐜\u000bj\u0012�?��\u0000��\u000bz�o�-9\u001ep�\u0014o�_��W�r�b�*�e���ܛPIĕ\u0006����\u000f*�'�j<�<{��*�Mn�ݑ��0�,��bzKWo�É��\u0005c����\\\u001e!\u001c]��c�����z\u001f8��7K\u000b�lEg\u0001�Cq\u0000\u001e\u0012견9��w�W�z�BT�~\u0019��ܶC�IK�\u0001�\u000b��#�{\u0000��A6�$\u0004��M\u000f;���U�\r@#������da(\u0015���\u001fe�q�0X��^M\u0015s�kU���\u000ejH+CD��V����,��:��U���\u0015\u0001�e3=���1\u0003�\n������N\"F\u0006;�\b��+����eZ-��\u0007\u0019����f�5��h��z2PA��Ռ�#\u000f|��wʿ���o\u001e���fǰ\u0006�%�T�a�Q\u001f�\u0007��jɾ��\u001b\r�V1�G���$�}#��QID�\u000f\u0016U|�iΦ�8 �\n,Ė\tW;%.\u0000��\u0012�\u000e���^,��9bb�҇�5�3K����bl�;\u0012�]�<ҷ����q\u0015�p�,\t������\u0017���\u000bu!���K�P��\u0013�Z� +�K\u001a�آSR�yT\u0006$ �u�P���A0�$\u0018���\r\u0006[����\u001c\"Sj\u0019���\u000b�W�ћ�I.�{\u000e\u0000̫Nf�ʴ\tJ��\bM��*�����\u0019�b��4qfDg?\u00023�4���(\\\u0013��&�,9�_�4^�h���\u0007/z/\u0011&�hn��*�ҠF@�d ���B��7�CА:��\u0007�҃UE�\u0001\u001aۿ��\u0003�\u0005N�\u0006��W�\u0017H\u001b\u0001���\u0017����\u000b�����46ei���\u0015��Wo\u001b����D\u0007\u001eF)l\u0002?�k.�J\u0004\u000b��6˓���U��$\u001bJ\u0010t����n��+ݩ\u0013U �m����&cI2:�*�g\r��V����\u0007�.\u0005{dء����\t���J�yi���-��\u0003�`��=;XLmS\r�H\u0004��A7�$,��X\u0019a�F\u001c��\u0018V����9n�s�\u001b��g��Y\r�\u0015؆{B�/�>�[��M\u0004S��\u0007kŧ��&X\u001b9mY�X �\u0005bp����5��٢��ib�!h˗_�cKǐ��0%ڟR�F\u0017�F�B괹\u0014�6\u0014#s�\n�ǵ6�\u001b�O���}�\f�ڨ\u001c\u0014$v�\u0013�^�@�(;�\u0012�*\u0007���j\u0014Y�5�\u00054�m�4�`�]�u2���\u0015fL+\u000b��O3D���Y��z\"�\u000b~.\u0007:�҇\u001di\b{��\u001b�K�\\\u0014�h��\u0014�SN5#A3Y\u0007�?��\u0003��\u0002{ع�A\u0015�$T��0\"\u0012ʢk�N��5\u0014��\u001d\u0011v�y\r�Xh땵\u000e�gL\u0013�0f�]�v�T�ȝ,c����U���\u001d�D�7<ǣDP�.�Xc���DϏ2�\bv��\u0012�\u0006N��\u0014_��8)Xͽ�`K�$r]'/9u�\u0003�+\u001e���\u0018��8�}}]\u000eW�>�Y6hI�,$���{FT\u0011�3R���CȂ�&<���܈''�~�����\u0003h��u0�B\b ��+����T�ˬ��c7��\u0007�p���y\u0003�\u0013�\u001c�\u000b��6A�4�JH\u000f\u0018Wp�L�r�O\u0014\u001b��`��\u0014;��\u0019�T\u001c�۷��\u001eS�6M{��n2[��\u00042�˦�ӣA\b�$h��M�_�Z���]WU�Y\u0005޾Ѷ��q\u0002Xg´��\u0014�|�yV�\tø@\u0017�\t��6W�Rد��vc|�1��!��q�ا&\u0019FH\u0014�W���m�՘�mH:�\u0002�:9���\u0004�S#��m@\u001anH�0�\u0012篡�\u0016���\u0016��\u0000�r�`\b���\f��Qz\\�\u001f>�5�3y'���u�?�;e��g�z@��9)M�,�\u000e��_d�߇�\u0004n��.wC\u0005\u001e[�_�O�U����nE�\u0015��g�\u0000��*~I5�-\u00054q�p��6n�����ЭI���6�R��K�\u001f\u0014,�\u000b�$\u0006��xF�>�\u00199�A\u0013�$|��I�\u001b��LK&\u0007�o�F�>\u0019�X���s�I��Y�\u000b�t\u0018�s5�S1�7n�\u001a˚J�\u0002�sn�V�F,�\u0006\b�q\u0011�{�\u0012\u0013\u0010'qk0\u001064ܩ\u0010<\u001d��l�\u0007I�����\tG\\�|���T�RR0�\u000b��\tw@F�}��e\u0019۟\u0006@�)I�҅��r�\u000e�jI��\u0013G�tߴ\u0001�\r��Ο��\u0004s�׶�\u0006\u0017I�p-��\u001d��8��\rDy^\b�TD]YPK\\4 R��\b��\u0012�;��G&b\u001cY�m\u0001�\"��\fv�j��۹�E\u000b_t,\u0019��\f/��qs\r��Eb�{�B5�\u0013�\u0019�-%+J+@�F\u001f���b�A\u001a�$���X\u0013�?�\u0004��4��hX�A4IE�\u001b{�\u0016��:��\u000e,x�׼��ș��\u0017�|��)O9�[�7�A\r�\u0016�<��ZV�7�7x�Z����\u001d�)��\u0003��<&�>��\u001evﷺvAq<�iV\"x�@���V\u001eCM\u0012�[��_?m�)�=��}n�'��`Q�Z_���|\u0001d��e}���uR{������\f����\u0010)�=Z] \u001c� �\u0006q!�h5\u0001\b3�\u001a\u0005����OuOm�����\"!&�{\u001c\u0015B�!�\u0012\u0012��>>|Ks5��IJ�C���\u001eވk\n\bv\f�6�`�Ax����\u0019dmrBSd��\u0007S��� \"2\u0006D�����\u0004l\u001e��A1�$���NP\u0002��?޷�K\r�<1.��\\+�K\u0010\t�54��A��j�\u000b9���\u0015�\u001ee��L-\u0015��\u0017���_�\u0015d���T�C��F\"+���6�s�'��n\u0010˷5�s\u0007�����:I�\u0006���$wyi�wa�>\u0014�,r���p*�,1�H�߯T|�@��y�1����:�\f^\u001b{�j\u0010[�׀R�_�j}\u0019RQ�h=}P�XJ�\u0013������\u0016OX�>�\u0006��vg���S���bU�gG���$ҍw6K��\u0016a242�Ti\"�U\u000f��\u001f�r�Ckޘ'�4zC�\\\u0002VcP�J����Ɖ�\u001b�:�)\u0017�[���W�\u0014G{����[�(\u0015\u000b��H�1\"[�'$\u001cNRCk��'_�A\u001f�$���5m=b\u000fX�ʈ9��h���\\�_�,��e.�E��\u001fm��\f]�C�M��J��!�'i�%�)�(�\u001c5�`\u0004z��\u001a\u001d�t\u0006�R�h\u0016��\u0017��T�T����Q��^�3/a\u00151�W3\u000b�uU�_��:�;<����”�`�\u0012\u0011�*uy���+��z�\u0011V�75\u000fMFCdc\u0018|��Y)\u0017+E��S��g�A�.��4�T�����Mz�t�Q��\u0015\u0011P6�\u0004:��I���J̟P\u000f�+7PJg\u0019�V/H)���*O@��%�#�\u0018\u0006�\u0007\u0016��{��OBX#+�)���7�\u0014v�/%T���!i\u0019 ��\u0002�\u001c\u0001\u0003m\u00188Kx{�\tjV�A!�$̀�MX�ԦCt����\u0012i�ި>M�)�\u000bC�{�\"�\"2�tJUw`D!�Q]�\b�\u001dp\u000e�\u0014[ \t\u0005׏\u0010uѯY�&4\u00036F!>'r�y`��~W�\u0014���%�i\u0000���$��3����P\\+���\u0005�K6|��]��g���~�V�\u0010\\��\f(V\u001d��~56��\u000bE\u000e\u0018\u0017=��;�ĕ� ��Ј�OH�JSs[�\u0018n���}y\u001d۱�~��UC\"�0kcs���%\u0019������a;\u0018�f�ϣ�O��i�\u0016y{|\u0013��\b��n�����\u0012?�B�;\u0000Yi\u001b6�W�{�0��\u0005�S\u0001�n\u0010\u0011o�����,H�^\tu��%�&\u0000h�i�%�A\u0015�$���MN~�\u0000\u0014ʟ\u0013��HĦ˔�_-�\u001b�}��\u0014%��˲��A����c�\u000e\u0003��\\Q�\u0007�a큅��;\u001c�9\u001c�\u0015!F�;�t�j���\u000e#`\u0011�������)6O9�s��Ґ���������߭���BS\u0002]\u001d|<@�\u00002�\ri��@���jʹ]䴽��W�E+C?��\u0006�ʊ����o�\u00027��4|�hQc���o\u001f�5{�\u0006X\u0006k2\u0003���O��\u0007����a�\u0005C�3\u00031��j�|��\\\u0017t�\u0019\u0014iX���1\rMA2���&�μ�'�����,'u΍s�V�\u0017�\tʧ�#\u000f�7�h\u0017��\r��dt�{�A\u0015�$��XM�������㹫�a85[���̎��\u000b%r�6^��N���_DAu���,+�A\u0010a����G7\u0016��T�R8A�\u0010\u0007þ�x\u0007��?d�~�$\u0019O.d��L�X\t\u0007�.���ze�Oc�S�\u0019{4K�\u0000ݟV��\u0004\u000e�������\u0012,\u0014\u0002��PU�v�\u001c\"\u0017�\u0019�����s7٤��\u0016I�\u0005�L!��1]�'\u000b҅��\u0018�‚�m㨝�Dj��JD�+BC$/��~m�8i��Z�XMMnOq\u0005�\u001b?#\u0004[3%�5��\u0007����s �X+���GJ\u000b!dB\u000eU�/���o2@xQmP}\u001f�C��cov�\u0014\u0010\u001cEq�A,�%\b��6n�W�{rY%�:�4�[\u0000\u0005�ܴ������5f!\t�GOM�\u0006\u001f�G��E`��\u0016'$z\n��>/V\u0017QnS�\u0016\u001d��}(\u0015��:c�btp�֍�J4>�\u0017��f\u0012��B����\u0006=��Ab��&�k�~Ա'���\nR���g�g-\u0005�B���\u0017n!\u0019j\b}�X>.�\f�ߩ��R��\u0019\t\u0006\u0002\u0011���r�\u0019�O�^\u0016k��X�Í��w\n��%����@����7;�L�9! K�?����B\u0010�IW� <\r�6��R��ݼ��\u0013��%|c��\u000b`����\u0007�����+�P�[�2�\u00078\u0007��AZ�v,�4�:n�H>�N%��i6\u0004n\n��G\u0014��\u0002�ţA,�%\u001c��M0\u0019눼�L��ç\u001d�\b\u0012�Qg6;��`\u000f7�\"��n\u0007�ţ\u0015��\r��\"HECL\u0001�_B�\u000e\fϜv����T�\u0015\u0002���^�BI\u00172r��*�S���x�A�+�\u000fT�Ј\u000fC�*�\u00187~\u0018\u0006�,D����\r��hV\u0017��F}7\u0005��{ㅕ�\u001a��I�Ö��q���#�y�V>#��6��+��G�\u000b\u0010M���i�\u001dR*�\u0012\u000f�����:T}�邫�_*�F�U��f�9��X�Gg��0~�m\f\t�e�aH�+\u001as�\u000e>b���Ki���(��K\u0012|\u0012DtJ�R�}h\u000er�XJup�P��)�5y�Z�+z��Bo���=\u000f:����\u0019Uݦ�A6�%0��۷��D\u0011�as�t\u001a},|�\u0007P���[!\u001b\u001c�܎�zͥ�͐m��R\b*�\\\u0006�\u000b�\u0000��\u000f�A}\u0003�[)��ٚ��(����!\u0005��z&\u0018��\u000b�\n�<�tW\u001cS�\u0005\u000e�\u000f\u0016.��\u0017R\u001co=Y፧}�\u001c�7t�^���}*S�����,�k��¸\u001b��ݗ[�Y�j\u001a»)��Na�g�\u0019\u001c�y\u0011j���\fp��\u001a�=V=���l\u000f-��\u0011\u0005,�Xٲ�F\u0017]�b���&�<#ǜ��:\u0010����KU�7�n쯮?<�t3`#�O�Vr�V��o����\u001e���<���62��r�Aǜ.��O�\u0006�j��գA*�%X��X�B���l����b\u001c�\u0006�W�b��bظ�L��~��/\u0006�����l_�\\����85г���[t�\u001b�����e�\\�I\r�CZZ�B ��t��y\br�\u0013h�A;���\u000b+��\bTq��\u0005t���FI�\u0007�0�h�����D}�Eja\u00106b���װ0c�[���o\u001f�8�Z�\u001a�4�z�씾D�P\u001e�\u0012E�S��A-�%l��X�\u000b[��U��r�*\u001b� Vn���<���ľ��^����h���`\r\u001eaޒ1I�ŷݗ^9�D�\tNˬ�Cs�p�M�5M�i����'�]\u0000�\u0004ud�\u0017��H�&�6�HÞ�1p�<\u0011�\u001cөS�7\u0000/\u0015�jz%^Q�E��\u0015�+�\\V|ӛ�i��\u0004�Ş�t��mb�����\u0018��\u0004�rƸ�L�=\u0006/S9�!�M\b턇_�ovh=�)��N�\r!��x9`*�4{BP��8�՜$]���/c�C���-q\u0019�\u0014OFk�\u0014\f�\u0005|�~)�[��Ľ���`\\\tf0��1�J�\u0001�’\u001f�\b�tæ\u001e��π�M����j����i���|YQ�A/�%���X��J�@L}�0�ϓ�G-��\u0006\u001b�������#\b�����3*=��mj\t$��q��JPP)Y]^h�\u000f��Q=y]�`���l�s�\u0012���x/\u000f��\u0002�\u0002�3��,slN0��\f���эWy�\u0006�\u0002�3zkI�?2Y�糔6\u0010�)d4�f��3�>g6(\u00069Gz\u0015�\u001c�2�\r�\u0018�-\bgtC�ά�^Q���\u0015\u0019R�rϟ\u001cN�\u0001�\u0000�{Ǫ+��ԣZ�o)�Z3��-v���+B�L���\u0007\u0001��6�H\u0015<�}��\u0012\b`a�l��M9�]/[���o��\u0017�<'���L��H�1�\u0019[�q7_������G�A8,��w�Y�&۟�M����cf)(֥o�T�A\u000e�%����\r�\u0001���.�0�yi�6�`\u001c\u0005L8~�2�=2\u000e�j�s1���hX��9\u000f���KHם�ݼ�e�3����\u001a�ru٭������\fUl�^\u000bJt�L+k\u0015R|���F��B��z:\u000e(�% \\W�\u001f@Y�\b\tՅ�\b=s�\u001a�p�\u0007�ŻṸ����^@�k)�h3\u0010���H��J\u0002�Z3p��V\u001e�^�\u001f\u000b�ߨ��B\u0013����\u0018d�=n��6��}�r���O��CokUAL���o\u0015�\u001c���c�/��Mer��}F�v��̮\u001aŖ�^�\u0018=�H\u0018HM:r5�����iMn�\\J�PAN��A\b�%���L�&d�s�\u001d-@�fLk\u001a��dC\u0011\f3�tu#�YR2�_�D�}1��ks�@\u0014���\u0018���2���a��\u0007\u0018&?��́ú�\u0001�lj��\u001e��k�0�خF\u001c#\r����tx��{3�K�Cv�1\u0019�\f���Pux|��P\u0018n�;�L6�n�ԩ�8�5�cg���T��%�\u0015m��[o��h{����\u000bs�̉�i|\u001f3���t�\u001f!�\u0007������z�W\u001e����\u0001��ܫ^�\u0013�5�$L�Ca�*�4�\u0005�\\�5�أ�AcS3��s3��-/FZ�\t&1�\u0007\"f�\u0016��0v�\u0012�\u0014�\u0012�A\u0006�%�����\u0018q)����8[\u0013����Q\u001e�q\u001a^Eq,��P��v��p\u00182��\u0000H��ʱH�7�E��*)�3N�\u001f����\u001f\b��[I��/n�㟄�,ve��l��X=�i��Nu\u0005���\u0006di:\u0010=+I�Wп�+�\u0010���\u0003t�k\u0019D\u0016�\u001c���Y�LW���š����e��-V���Y���N�\u0013�>\u0018�[M|�Mѱzn5&\u0017�\u0005|\u0004\"6��>�A��\u0017a��ސ�f�\"\u001c<��E�9I?�v]� \u0002\\��a��0OI�\u0004�5\u0002�4�'F�cp6a��J�2�4�����J閣\u0005E]�A\u0012�%Ѐ����'\u0012.\u0002��v�U-�K���\u001d\u001a�\u0015��a����n�m���1<��\u00027�����_}td��hw۸g\"�ε�\u00053��ީd���me�@$�;^[�z�g��r�q\u0005�yl��k��\u0007^]u�mCQ�RHS\tU��(\u0010\tv�A�\\\u0017\u000e\tŻ3�\u0010N�W�hx{\u0010�})ӧs\u001fu�*V�ݤ��\u0010��Q\u0000����0ٱ����j!w9:�f��ՆO� \u0003\u0000�@\u0011<�A͗6p\u0012s\u0002)�St��t/�̱0�=�f\u001e�g�||�HU��V�L�=a~�\u001ev,�F�l��S��{�\u001a���4D�x��]�A\u0016�%����\u0018�b�CaE��\u0015$2����EDQ7��D�6����8��\u0004�\u001e��\u0010��f\u0015�Moŏ\u0004\u0017.�\u0006�q��\u0016�s�t�\u0014P�CEy\u0014b!��8��lEB���}$10����\u001e��Sʞ��p\u001e��\u0004\u001d��\n3��;��H��2q\u0018\u0005���.[-r��w$҃\f�H>^⮢\u0018���g�/�|����g����zB\u000b\u0011\u0015\u0005�\u001a�`��\u0012X�\u0006�?\u0004�Z���~�gA��ڠ\u0013Y\u001e�\f�O������:�\fg)$,D!�>�\u001e�[U�h�̭�}*K\\\u0010� dK���(m��9�KR��UW(�v�\u001c.�նd\u0015�\\�A0�%������\u001c}�\u0015чN�\f\rP!��8�5�\u0015\u0005��e�\u0016hU1�R��\u0016�`i \u0000w�C����Z�,���\u000f���`(��+\u0004�.'~*��o\u0003gstʣ\u0014y���*QMƲ��O�s�\u0001!��\"h�6s\u0000��q�]�'��\u0019�|�]�W\u001eq�m�9�~\u000e���\u001a�ʛ�[[\u001c���E4hO?n��I��\u0006��\u0014=2h���0f���\u0013��R�_�\u0000v�ۋ p� �ԓT;��&��T-ƨdr\u0014�i|��$Q<,?]:]\u001cPe\u000f����=-�\u0004\u001a�h\u0007\u0006�\u0019�ܧiI��<\bq��[+�&3#���\u0013�\u000f�\u0002�\u0011Ha\u0005���E��\u0017\u0005w\u0011*�6��u<\u001e8�\u001a�H~�\"(ͱ�d[�A �&\f�����_b�y�fC�&�1�*}�v\u0005�!7aӥ����\u0007����VH�JN[�A���\u000bw4��N~Bc���?sD�eȡ+-���N��\u0013�?�V$��\u0016o?U��\u0018�{6�7x�\u0014'\u0003\u0005)��jt��رc�RM;~nr�xB�j�m�!�VEV5 b&���(ȩ�{w�\u0013��\"�nN\n5\u000e0��N\u0018�L\u0010vF\u0019�_c�\u0017\u001e�Ԇ��\u001fd���8q5�4�\u0003c8�\u0015�t�$;ќ�|��k{��`�\u001cH�\u001a�w;ʧ\u0004\n�\u0002g8�g,�Dڠ�<�\u000b~�Wk�q3z�ݤȆ�ɼYz=A����\u0011\u0003?�1��\u0010�\u0010\u0001��=\u001d\u001a��Ȭ�[�A\u001a�& ��M&c\u0006\u0014�b�WVV�\u0004DaA��l/z���ES��na\f'�>�\f��\n�\u001a\u0010f5\u001b@��W|�\u001a��3�>��6,�]����K�UJ}�{�U,V�\u0010�H���=��\u001b�������\u0014�YF1`��\u001frr�uAE��@\u0005�pb�k>���V&q��4�Ȍ��iگ��M�\f�\u0004d�ɸ�ݠ�\u0015�\u001d_m�Ao�&4���\u0010I�o\u0016&��\u001b��8k�H�\tM��\u0002D������[hij�r�U��'�R�\u0013�\u0007��g�\t�flB+]\f�\u00014b����!\u0012�\u0007k`���{\b����qm��K��t�r*ن\u001d��̇1�\u0012z��Y���lð��R_BK7� ř���|���3�b\u001b��0\"�g�߳\u0012���咞pB�{\u0014�\u0012Cܫsw���\u0015��i����r\f��=Y[���\u0018.�\u0011�t\u0011��&,T\u0016�e��i\u000b��L�r����\u0010,I\t�`3�NZ�c\u0005r�AD0�\u0005ٞS�\u0011\u0019y\u0001��\u000b�7����\u001b�\u0004�֜),&�.�\u0019��a/�`@�S�]�\u00126c�L�\u0007~�\u0018\u000e*�؋����pq��8װȟS)t縏8|-f�������\tM�J���v=q�$;5ǁ;�'ƕ�\u0012-���w��\u0006�H�A5�&H��M1�{\fC�?ʱ�#�x�by\u000b�e��m��N�~�sW�K`JD�M\"\u000f��`�$\u0018v���%�-\u0005B��\u0014�\t�����\u0019���\"\t�D�gՅ\u0006\u0012���V�\nMî^vpՑ��8�s\u0003x+���z��ܼ4(E�%\u0004'�y3\u001d\u0012쌊�*��~c�������\u000eCI�<0�a�\u0018��f�T��ͪ�RK\u001a�r�)��&�R�8ި\u0015{Oe\t�2�>P��~�ܗϙo\u0007�\u0017?\u001e\u0005�Kn4\u0019����\u0016�w\u0002a��X���� SM�oq�����\b�I���?���j��\u001auas\u0014:=�Л�ϟ�KM�\u0017����zV�q=�/e.�D�?�G=}0hO�@�\u000f��w9(3\t~�֣�A*�&\\���̴\u001f=���5�~\u0005��� w���yݰ�,��-�{n,{��u\rI\u001be�\u000f:\u001b�Ƃ��Y�\u0002���\f`*b�E���'�����;ݍ\u0013$}�M�\u0013P%�JZ�<��XN����\u000e�j\u000b��\u0012ή����מ\u001f�zS~��[�\u0003(��\u0000���� \r\u001e\tt0^\"���4j=\bo\u0001���j��I��\f߬�{\u0003\u0013*�F\u000bDׯK�a����\u000e8f1�]�)�s�m�[\u0007F]\u0011�V�Y�\t!U�Ƨ�@\u001da�e�w�\u0013��o���\u001bT\u0002��h�\u001f4�$5�r�{C�\u0001hZ�)p���\u0007�\u000bm�ON��@�\u0003��\u0007I�Af���\u000e���֩���n��5�?���������A'�&p��L��m,Q��r9�n\u001eq��w��\u0012�-ގ�AXP�\fێQpdh���\u0010#�c�� ��m�6}\t��\u0014&pΔ�}W)<-)\\.�B5�Q�6\u0001��{&�m͢�Oܺ�\u001d�,Ӊ�\u001f$�a��\u00053��k�k\u0019d��NIAy2o��$�b����!���\u0000X2\u001ep8B2E�\u000ea9�g\u0007ȏ� %;�}�\u000bg���o���\u0005k\u000e~��@���e��BH\u0017�+�\u0013��L#�\u0019\u000eϓ\t6�cr�\u0005p\f��I\b���g�$�R��m\u0010t+\u0005&�-<��?�\u0019||L�\u0001\u0005wuP3���k�W��wh>0\u001f��ݫ�`�|mU��y�Ȣ\u0001R�\u0001�&�F�m\r*�3��zp\u0011]�S�\f���W���L�\fB\u0013˟ZY'C\u000e�E�\f�խ\u001aJ6\u001b̺�>@�\u0007�.9�\f�,�T�0zA�\t��H��[*�`�\u0016y��Z�\u0016ז\u0013�7+^.�=�\b\u0004\u0007:�g�ɮt���H�\u0007�s)�M�%\u0012p�+����<\u0007�\u000e{\u0005�-��%�\u0002��|�,\u0010\u001c� ������8�T�\u0007�滅\u0005�19�*��\b\u0000U�*c�2�\u0015�9\u0011ʼn\f1�?!F��g6\u0002� n�ƶ\u0006+\u001d\u0012�#�&X*�\u0016�\f�8���Ͳ��ގ0�\u0001(\u001fD�|�P6l�~��&�ݏ�~�|�G����:�A3�&���L�'U·;i�nX \u0007u:H`��} ύ9�Ť9'/<+9���y�1�\\J��p\u0019!\t1��6n���2�\u0013Q��\u0006�\u001c*~��j=\u0005y�ށ_¢Ӧ1q��\u0001*ŷƖ+��-�)P�4�������h�_���\u000e\u0014͘\u0018̤��\nŏ5�x��՞�\u0005��j�|h�W��RӾ�c�(�=i\u0018\u0004�����C�@ֽ� \u0019O>�{\u0001�I�d\u001e�Q$m\u0018����\u0005��U�\u0004����*��{\u0015�L����~�r�\u001e\u0019\"�~�^\u0003�#G�~�M�A\u001c\u0002(�뵝����6����o���С~ԙ���\"�7/�2e�a��ch���k\u0015A8�yT����\u001e��N\u0016ܠ�\u0012����A/�&���L��]7'�\u0000疌\u0001\"�����\u001bW�8fh쭥����՚j�b����M�)\nC\u001b;\"\u0000!�\u0012��\"�ˀ\t����uG����7X���@\u0011�=�A[\n�VՃw\f_�k�C���nZ��!�ò�')(Y�A��[�R�Xr�ܾº\u0013<�{ݯ�/���υ̧����\f��c�h6|cM�\u0015h�q�n��,0F� \u0000�;�]\\\u001c\u0011��p�ň�K�+��{*]an�KI\u001e^N���닮Z&�V�A�����~��d̛�㧢�|a�tI��q>���t7�7���/�#?��W/õ�81��{�BM��\f<�Խ���~\n^�\u001f\u0000nz����@M#\u000f\u001e���A%�&���L���a\u001cr�JqE�3�\r�K=�¤O�P�Kf����\u001b�\n�Gz���\u001a\u000b�\u0000�\u0015��ЛV��\u001e��h���p�\\��*H�8or�5��\u0004�x�C�7T)W@\r�`��ҫ�\f��C�Y���a��T;�l����s��\u0005j�\u001b\u000f����xpN\u0006�{��k\u001ea\u0002\u000b���-i#�\u001d�C\u0003��Z.�J\\� \u001c�wr�XM\nͣ�S���l�w�J�є5��y�\u000e��~\nW��\u0007\u0007�z�r�$��*{1�đ�:���!=���Y\u0010\u0011����\u0001�t�\u0014<\u0006Ҿ���I!�Edat\u0006�E7�\u0016�8o[�D##\\%h\u0017t�uh�ØdJ��JB�\u0015�@�z�\"\u001b�6���m\u0004�a3 2�EY���Ց����R3q���67�s��F�����Q��\\�犻�̩�\u0013�2$`�\u0001�*R���\u0012^��\u0007�4�\u0011Eퟪ��\u001d�Κ�+���\u0016GZ\\\\�\u00149$h��q�\u0011=�\u0016��+��\u0018�\u0007���j-C�\u0000CBc���8��>N\u00019X���_ocl/�\u001d撟��'�\u000b\u000b[��A9�\u0000\u0014���\u0012�\u001dy�VYS\u0010ּ�0ï*�*\u0005�z\u0000y~1�Y\u00112\u000e��aC����\u0002�\"\u0018T����koS~\u0019�v\u0018A�/,\u0004�fa�jV�W����m�h�\u0007q�2��cLV�\n���͈�u���g�\u0005O�)�v娀��n2!+\u0002\u0019\u0015�Go�\u001f\ta\u0007\u0002�{�\u001a\u0007������\u0018\nǂЄ6�g~v�7���u��3I\u0004~:\u0005��\u001b��O\u001a\u001d��\u000e��\u0000�|4\\��5�.\u0002\u0007T\\]O\u0019\u0005(�\u0002��N�@��E7hK�\f���\naL�̡\u0013��Ut����\u0018t�����eo� 4Q�`$Z`��e�}\u001b��\u0010'\u0014W�����w��*o���[�2+�dU\u0004� >X��\rC��0��@:�c�^!�n�A>�\u0000(���!��\u0017׽�ς)�kԴ-�M���\u001a[\r/5xz$�\u000fHU���\u0010�ݪ\u0011�\bw�\u0000�\u001a�d\n�\u001b��-N��s����\u001dz9���Y��:�9��\b\u0011��\u0014�h��%�π(���fpZ\u0010�\u0010_=d#um��\u0006\u0006�'c��DZCz9�>sw�R�����L1�z�.�c�b}�[4��,�8%I�\u0019%|L��,6��S��e}a=�̼�*�?�\u0011]��e�N\u0012�\u001eDX>?��9 �7㵅��Ʋ\u0007�ªV�}�4iTk8�\u0018\u0016��\\4\u001a�O��;:ޤ�����k�䓝w|�u3gn� N��H6��:\t\u000b�[�)\b�xI����7G�.��/��f�t���\u001bY�(�����)Wo\u0012J�2n�A?�\u0000<��L�y-����s?e�q\u001a.�}��5J��m���g��}�?'\u000e&\u0007$�A7No��爗HnSgM�I]���\u0003��8\\_/�\u001d+R���ר�Հ��(-������j���N؟ˡ�\u0016\u0004�\u0019]\u0002Ly[\u0007�E㢨4h�j�{r\u0013z\u0010\u0000*9�1z���vю�\r���'�pr��nE��>z\f��\u0004~/���V!�Q�3D��[h�\u0019'�f|\u0000�.N�N6�q��K^��\u0019�_2��T\u00120(拏�\u0016\u0000�U�� ;D���!oV|\u001d\u001e&\nK2�AI5^F�K�L��v^$���/\u0019�H 9U�\u0010�Û��\u0018���Z\u0014A�����_:!��\u001e��rњT�\u001fl��h�J�;�<�\u0014uS;�d��\u0013�A0�\u0000P��X�h-\u0001�!G|��d�րm0\u0000��E��ߛ��8��tt�#�륂��\u0011�D�|\b�\u0002����I��X�OԻA촶���)~yp\u0005%O�Ը�.����HT>=�t�*/�\\�z{EC\u0004�ӍN�F|?p����b@�q�4Y>�)3Kg\u0016�\u0012�}��6��T��cUN�\u000fYG\u0007\u000f��)E\u001c��F<\u001d'�\u000221�\u001ex2$a\u0016sK�x\t�Ɛ�\u001f{\u0004M�Z�+�\u001d)F���^\u0004���{��\bo�#��4j���\u0019\"�}&�A�zUuI�\u0002Z���)~qc�3�\u001f��\u000e{/>�D�����?���*�E\u0018t���N�c�-��Zĸ:i1�\b��\u0006F�I\u0014���\u0017z\u001c���A#�\u0000d��X�\u0016X�X�ܲN\u001c��x\u0012Y\u0015��05Q&�У3�\"D�(�fx~�|���y~(\u0016&��i-n-B\u001ddH-�\f�\u0001�A)�\u0000���L��\b�EI\u000f˖i��{xT�9�\u000bhV�=F�~Rn;ߐ��Y_�\u000f\u0012p�!��V�\u0016`�/�=�w!����\u0017�S1�T%��4V�\f?�g����\u0016��\u0013��6G}�\u001b�2\u0002쫮��\u0006�\u0007mvo��*v�F>\u0012�q��Åy�v�b-�w4�$�\u0003�L�S���N���T$�Ѷ�\n��ĞY��D\u001a�K�H\u0014�\u001f˼�h��2��B\u001d�p�[IRY\u000e5l��\u0014?\u0005A�\u001e��\u000f0�vͣb��.Y��9\u0007�3{~�\u0002H�g���\u0002��b��\n��c\u001b�]P�ŌT\u000f,%� -x���m}�D)��Id�\u0017j� M�3P%)\u001b��\r�W��r+�ɣA#�\u0000���L��P�S��I�J�\u001e��l`_2Ĭ��\u0016�)�\u0019��[rS��\u0014r�@��'0֣��>�\u0019�B5�v�;�KK��3ʶ\fbA�!i��X���c�ќ��5V���p�����Q\u0000\u001a�x-�\u0016��tkx��\u0002�\u00030\u0005�\u0006\u001b8�����B|��\u0017oLX!�+�W��GǭZ����N�Xs�\u0007g��X�h\u0006�\u0014ws�\u001cݏ�-��\u001ew�$�O\u000e�����9���B/\u0012G\u001d��\u0010Aֳ\u0016;�,�SB-�K!A����Y˓��X�'�;,�@\u0012Ip��v\u001bN�����\u000e��FO\u0012\u0007=�[�3K�\n\u0012\u0003r�\u0012\u001c{\u00142b�\u000e6#Kk)ӊ�u���5�A2�\u0000���MOש\u0000\\�\u0001hkB�a΀���̚\"1��\u0005/�\u0014%�P�W\t\"\n��\u0013�oIj�$�&\u0006.� �%�7�ޕ,\u0012Yݲ�@\n��ܮ�$ԡ���N]z�_��\tr\u0001�<5�\u0016��#x\u0000y\u00017�J\u0012$\f��Ew��L?��\rX\r\u0003\u001fω~J\u001f�`�[\u0019�z�U���S>���\u00108��l�� �VP/���Q0���ʢ�vV\u001e���\u0011�H�\u0006y��.�\t7v&�\u0005\u000e�����rX�ΰ�]��2b�4��螺�\\ǽ\u001bA\u0002��E\u0001aU��v���8\u001a*C\u0015К\u0005��%\fo-!��y�f55�U�\nS�o,��\u001f�K^�\u0013�^n<ß���D�K>]9BY�\u0017�0�V`�$\n�A,�\u0000Ȁ�M\u001f�O\u0005���9�\u0011�`Rc~��\\K�18�)0\u000b\u0019ߤ(\u0006vǣ��G���k�D`k:L\u000b��Uy������l�\u0018��\u0012�nUg�)�_R�zr\u00103!\n?\u0003\u0016\u0017\u0017�y��%�h�DrV^�A\\�0c��\u0004��2cs�\u0011`��X^�L���,\u000b�7�\u0012�\u0012��-U���\u0005��咝\u000e�bӇ�B�=O�΂a�w����e�j�Ю�\u0017\\��)��t�i\u0000����rV��Wf���\u0012s�\f�d�yC\u0002U�\u000f@Z3�_7\u001dL��ޏ�\u001eq��\u0011\u000eu/\u000e\u000b6s���\u0012B��4���I�1HN����&���鐅�)� ,ʃQG��σ\u0007l|�\u0014\u0013�bp\u0019M�\u0011��A1�\u0000܀�L�\u0001���Y�4f\u0000T��@H}ԍI:�+A\\\r;J=��P|���s9?�*:\u0013���\u000b�k�D�M��\n`��b���Lrǵ���P���m첖�y���6h���8+��:U��V��\u0013����\u001b�ٓB��qN鈶*x;\u001c:\u0003w2d���\u001f\u0012�n�\u0019o49���%O��\u0006��C�y��X6�3�<\u0006]����d\u001e+z�\u0001-@p���׌���\u000e�����5�-\"?\u0017?�|�c��ΒBR�Cz\u000b8\f*g'�kFo\n�KS�o��4;\u001b�c�S�cG�Vѿ�#��9y�\u001b����\u0012��S1%W��\u0019�����_\u00007�gi�\u001b��\u000f!�\u0019?˹$�O\u0005Ű�\u0013\r�\u0000R�A2�\u0000���L��b�[��\u0019u\u001a��\u0013��v�f�~��GA��\f���}\u001bn!.�\u0006���4����Fۦ�uX\u0018���%��\u001d�\"�wٕ@b��֐\u0005%�\u0019�\u0006G\u0000\u0001m�\u0000�;��)��B��,�X\f��\u0011\t��1�d��b\u0015O@\u0003�bȐ~$z\u001eY\u00035n���:ϯӂ�\u0001��Ց�e�Y��0+\u001d�\u001c�&;\u000b\u0019�P\u0007=w��M�^�nOy��ad�≅_����\u001f0h���c,�13\u001bR���]/\"�\u0007SJs�U�\u0006ϋ�/\u0006���9\u0011+\u001bP\u0016��j�D\\p��\u001byÝ���9k��[���LY[\u0005�û-��\u001b�\u000bT\"J�#g^x%��r��`\n:j\u001a_%�C\u001fUă\r�����a�\tOnkN�c��L��\u000fU\u0014�\u0019\u0017���թ�\u0018�4�4*\u0006�\u001f#74?�\u0004# �w\u000b��Ab)��H\u0019�;�0<����.5C;J��N\u001f\r\bq�Th�<5G����B�Z��P\u0015�\u001c�\u0016�\u001a\u0007�\u0002�vgꆬ)7E�4��\u0005�;�g=�P�p#�U��ØT(�U�]\u0015D\u001b��|M��2?\u0016\u0007{q�٘�?��gΫ.�A9�\u0001,��1\u0016ʢ�v\u0016�\u0015�S\r1���\u0012�U7T����8�5����l��\u0014\u0016s��[S���A�8i�\u0016�W��t���N�\t\br��ӿug`.k��j�\u000en�C\u000b�\u0010�_\u0000.\t��Y\u000e]��cq�:T��\u0017kNV�'\u000fI8���\u0004dm\u00003��t��������c��\u001cO��2�\u000b�#�\u000f����T���1n�t��p�d��\u001e�m�!���'�)\n\u0011�\u0017�G߹�\u0006��|�N��\u0006'�S�\u0018H˿�j,��;\u0006�|�I�7T�\u0005�a�z�A���\u001d����EY\u0007����Q�\u001bi]�C]`\u0002��Zg��:������bD!�6�j|��b߶z�lr��\u0005%��k�r�J?U$��AdZ]�vT�-�A{�\u0001@��X��t��G\n8�B��c\u0011�X�vIMzF14K�R����~W�qw��zjS�\u0016\u0005�\u000bog�j�\u0010h��VK�⥴\u0003@���� \u0007擴�\u0011��\u000f\u000f���*4�T�\tpj�t\u0019�/���r\u001b�~\u001b$K�mŠ-�D�I������z�\u0017T\u001f\u001f\\�h��s�UM\u0010B\u0018B��\u0001-�\u0018v\u0010�6b�>�VS��F�jɒm͔������H�0T����O'���(�T�����M\nP��iݮ��g��a�]�Τx\f�\u0013\u0007�\u0004\u001f|LS\u000e0�w԰�?/�\u001e���\u001e\b�\u001cuD�tO��b��\u0019�#jp>e���-6��C�Ź���@��&��C\u0005IɣA8�\u0001T��L�_80�\u000f��E���1(O�ZR&������$\t�tp\u0006\u000b�z�B�;�eS����]˜�G�K�=PY�KQ�S̀����<ܤ�d\u0013#H�*“^qʟ��_<�W\u0018\u0011��n�a`����MVV{Zi��\u0012\n��g2���k�4¯�+\u0017���(��\u0002�����\u001f�Yc�h�1��Z��G���\u001cp�z���P����\n���Ll\u0011�����|�����̋\f�\u00067��_M��I��t��m'��O�u<�¹Ya�����\u0003GO;�~\u001f�f�G�W\u001fg\u0014)\u0004'�*xXV3��\u0010�.��|��d�ؼ�\\K7\u001e�K@ɘw*H�\u0011\u001f�\u0011\u0002r\nP4�K\u0000�\u001eޢ:��A>�\u0001h��L�F�d��@K\u0015\u0007�Y�tq�v*�\u000b�s\u0019L:\t�Ń����5�L�Ad�Lv!��,\u0000q��ܚ���B]���\u0003m�S�x�h7��z���]�\u0011ߧ�\u0018\u0014~�\u001f7�\u0018�\u001aF\u0014���k���*R,�?�Q�v8�\u001d�b�g�5\u0013a%���\u000e\u0005N�\u0014�k�o;�9��\u0002O���G�]�@��\u0001�Z<ۡ������l5$�z>�<ǎO�4��DU�s�ΔG������\u0019�.n]�.�{`��z��#��\u001b� \u0012���A%���L�\"{�{W�_�'�#�3���o�s��\u0003z|NRmA�&NIo�\u000ey�6��\r\u0003�y�A4�\u0001|���\u001eb��G>�6�\u0007�\u0016x�x�����\u0005\u000bM��#�\u0007\u0014JS$OV�(���\u0005Xˀ�c��do*��Uc\f�\u0000+�1;�gQ\u0003�ȱh�$\u0005\fx���p\\�pw,{E�*�l\u0014)�\u000b6��� �:4\u0010ph\u0016�\u0002����W\u0013�\u001ck��;��Y��K>s,�:\u0016��\u000e�p��� G\u0007p���ͨT��B/�.�y��^��j��\u00020�K�2?�\u000f-\b&{I�z��D�PH�刞�=�\u0010+q\u001f\u000fǓ��\u0016/_��/IM�%��X�o\u0003<�w\u001f��2�\u0012�\u000e�n��m3����P=\u0004\\������{�\u000f���\u0013��9\u001e%\u0006N�\u000b:���q�տJڋ%����'�5�Hƒ\b�\u001b��\u0014\u0016��AC�\u0001����\f������e���j@�]V�^q�k]I\u0005�K!��4��m8S��eU�|��\u0010\u00049n\u0011�������*!\u0003\\�\u0002���;\u0017�Zߐ-|a����l���QS_B_�}��|\u0002�y�8�\u0000]�*/\\�G��|�u��3�`ͽ8���T.~9��|��P \u0019��\u001c)\u001fsmϡ�qa�<�aCOoJ��!OĶl���\u0010��0Tz!W��?нj�S\u0007��\b.���jt�\rbh\u0012!�\u0002�}�\fS�aIY�uZZ�!�����\u0007j�Ĭ�&�����\u000e2�\u0007�o(�\u001f1\u000f��\u001a��m���/\nB\u001c�u{129�!�\u0005�4��J\u0000���\u0014\u000bs4�I�\n�\u0015q#�N�γ�Zlt>Z\\\u0004��\u0015%�j\u0011������n��AE�\u0001����\u0018')b8�t\u001fED�ނ{���j��\b\u001d\u001a��\u0017���\\�y\toff��\u00178,\u000e&J�a�Ds�z\n�E�\u0017����K\t��`ٓ�rX�M2�\t������X�0\u0013�L�T��yy����K��[i�b\u001dJ\u001d�i\u0019�*%f�\u0002���/n\r�d�\f��\u001b�z�k\u0017k0�f\b��'�c�\u001eO��\u0006\u001e*�\b�\u0000�k �_YB��\u0004�՘հ2#\\�\"\u0019t��\u0001N�?\u001f�M��yD����߷�^ڟr�3��i�y\t2I��*\u0018�Y<�V�D-U�džJ��,D�\n�.\r{�\u000bjR���S���į�G\u0003u�\u0013�bɠ\f[���lˑ�Y��;�=@�-凃sg��\u001f�z\u001f˳���Q�\u0016�e����/�G�OO\u001b��AL�\u0001����\r>Y+�\u001fw-�.��\".�\u0015�l^(���xp[���s�\b�\u001e#FP\u000e��f�\u000b>��}��\u001f�r\u0002��6����(\u0006{%\u0014�/\u0013D�Y��y׬�1mO��7�b3o��\u0012\r,�-\b�2>w\t\\�����Pt��D7�p��D�D��B�Ju�Y�wq���ߠ!/���fCY\u0017C�O7�{��i�]�����B�<�\r\u001a k\u001f5�z'1�[l��1�\u000bw�<\f�-!�+^��2\u001e\"���!�`��e�x�w����Юy�pJ��~���n�Y�1(\u0001vY�VD\u0002R����q峋�\r\u001dAy�\u0005+:\fƫ��t�(5��~�v�\u0018�$��ΡS� G��LȆ4�\u0017>������=Ɛ,\u0004N��M?a�-��\nL\u0003�`I\u0015�N�r�Nm\u000f`�]��\r\u000f�o�H�B\" \u0002�?\u0016��A�\u000f��\u000b�F�ƃ�ۮ�_1_G�D1}��0���0�\u0011ήgcu�u���aU�,��U���ƯĶͼ�\bC@1�nY�ߌʢ��\u0006�����_�K�rÁ��@�/34z�\n�Ǭ>Od\r\u0005��+\u0006�)�Dt�\"����|]��\r�kZz�y��ѽ}�R�΂��/Kz�4�V��K��U8�!\u0012\\x\u0017�\u0017\t���\u0012c\u0007x�Qȗ�T��JM�)Kk��d�]v��dw>������{�i.B*��>>����8�AU�\u0001���\u000f\u0012\u0006�\u0004 �b\u0018O�z�5�r�\u001dɨ�\u0018S4�^\u001e�j�[�2�\u0017(A�3w�讪zP�������޸\u0007�2\u001c����'A��S�\"�ژ�\u0016��y� \u0015�j\n\u001c\u0007+A��qi1�9m�JH'Z�\u000bq'�#�Nh��ݶ�\u0003\f9~��ť+����G�/�h��\b\u000b�u9T���\u0017y\u0010��\u001c׫hzaHw���\u0003-�\u001c��$;.\u001e��e�c���\u000b!9\u0014u����\u0013�@��O���A��:���qd�^\u0017���5drd� �ű%y3k'G��#���\u000e���oݵV��E \u0007Îa�?\u0007��s��{�)������;����}�\u0016������qyW��vR{\u001a���_u\fX�2�\u0001S��Ŭ�B�RV��~���0\u0002}��CH�AY�\u0002\b��M2\u0013I�\u0003\u0005P�G�WX팺��Ud\u0002���S�ٔ��g\u0011�����@�3\u0001�g��f�(0��e��-�:���h�\n�f�l��*ּ\" >��\u0007�ɀ<+�\u0010�0�m� U��}\u001d�T\"$:MĮ�{x�W+@Q\u001e\tb\u000f+\u0007�q���\u0015�9��\u0003\u0016�\u001cb^���\u0015\u001b�Ol��z��#\u0004\u0005se�\u0003d���5�A�gq�\u0016��a�P�\u000bd*��L>���\u001a�oy\u0000��lPj�W��4yt\u0004\u0018w��\u0007�\u0012M�i����1���ե�G�u�\u0001F�E�\u001b�������W��|#���م��\u0004u��L\u000e��,\u000e\u001b\u001b��%�2��}H�\u001f�um|��Ⓐ6c}�h@��\u001a���\u0004��\\\u0011q<\u0014D1m��\b��\u0003��;V�<���V��V<\u0014`#D�0��隣Aށ\u0002\u001c���\u0012\\p�zX�siA\u0003�ڤ��Y��?�\n꤆�>�E��TE\u000eƅ\u000f�u�U���\u0016�|�|\u001f��O�w\u0011�~���Rt�z��Ĺ�R���fr��\u0016UC�/b\u001f��\u0019\u0010\u0013�B�x�\u000f{�\u0005��\u001b�\"�m�\u0000/�湣��_��hXL��\u0011x#́�w�$9ӜD�ux�n\f���x���oÀ��\u0004I#\u000eW�\u0003���\u0017l8�z�w�\f\u0017�w���6I�\\cߑ[l1�\u0007\u001e��\f�:\u0018\u0007Z\f�\u0013,ɭ5\u0015�N���\u0007���\r\u0013!\"f�_s.\r����l\u0014��\u0000n�w\u000b8��+W����\u000f\nn&J�-\u000e\u001d߃�0\u0013��<��M�X��M[=�-\u0013�Ǯ�6�Z��a�\u0001|!3��̞7�������Ax\u0010%\u001bIk��-��\u0002��!Rˑ!�S\u0013�Qcl��\r���,�r]�ÖT{=R�k�\u0013WB[רP��.�\u0003m|\u001ei�2e\u001fD�ٞU�\u0003�i�(v4\\�i\b��S\r\u0002u\f��9�FrS�V�vl��T�|x��!�@s�N���,:�8�_�X�؂�J6ɮ�8\u001a,;\u0012�*�x�\u0014-�\u0018��k�Py��-�B �\u00020���\r:��n\u0012�jzX�0\u001e��P�1Nr�V�\u000f���UYo�I�5�\u0019\u0010#�r\u0004����\f�B�7_�=x���@��K\u0017��\u001e\u00142\u000b9�T0�#��i���\"h\u0015yl3�FD�h��\u0018��d\u0000\u0000�_dG�OR�X�\t�DD�<�V>=C�kDZ:W\u001b�e}����3r�\n�y䊙6��W\u000e�t^�ڷ%�N�e‘�H9\u0001_Y\u0012S�f�\r*%�\u0002���~\u0003G�#I �\u00054E\b�h���\u001bl�Dž�\u0016�\u0011�\u0019�\u0017y�>Zl}��՟~7ws�\t�\u0004�V�2�a#�\nq|9@g��F�\u0019�:�#\u0011\\�O\u0006�5�\u0015p�y�\f�\u0016�0y�O�DA�\t���=���%��K�d�\u001a�7��A���Y�g6�ͯ\u0006�Z�r�d=�Q`o;G�^\u0017��0�O'3~��d��N+KN��^�g�e�QA\u0010\u0004��\"�\u0000jD���`�t\\Z\u000er6cE����T�\u0007s�Z+7\"y>ܶ_e���7\u001d�Oq��1I���\r\u0016��Q�W�\u000b�r�%~�-�\u001e�\u0014+joaU��kc%���2�\u0015}���\n)ܠ\b���\u0011�\f^�v�J��X���\u0011n3 \u00053��f�[j��y;\u001c��{�t\u001e\u0004�\u0000�d�$ɮAU� ���؆O6Zǵ�?`׭\u0011�\u0017\u0012�h\"y�%l��A��\u0002D��X��8�A�v\u0014��O�Ƶ=�\u0014��\\ۢJ摬��\u0002Nj��a�Z\u001f\u0013���|O�ȁF�����Չ\u0004��3��\u0015iS�˷ᑕ��3�#\u0000mf��/\u0012�/�\"50\u00075rVt*�h)�!Z�X\u0003F���\u0015��e+�1���\u0011�{��-��{;�\r���\u001c�(TF\u001e�IpF�V{��Q(�8���\u0005\u001a��\u0002��\u0001��\u0005Ϧ�͆4�f�4:(��t;!���OJY�\u001b 0;R��RA��U/\u001bxov)\fL�~��\n�'vV��F���\u001d���d��5�v\u00153�N�\u000b\u0007ۚ�Iܩ�T��Ó��A7\u0010c߼�\u0017S�#��ެ{�tDy�NG7���\u0000\u0006A�KQ�\u0014Qv�7�u,��\u000f�W�ʈ�j6�(��j�ƛ�N�\u0011�@���7�\u0002P�'u0a\u000e�M�5��b���W@���\u0005\u001ePޜ�����^��J�ҹǥ�H�����A?�\u0002X��NP�����֫�����\u001d.a\r�L�\t\u0005�w�\t^1\u001eI�5\u0005�\u0004�����\u0015q�;#\u0005�\u0014�c\"����-����@VZ���͡\u0018��FF�9�zQn\b,�\u0016g@�EC3{�����zg]��E\";���f�e�\r�g_)j� �\u0017���1�_�`#L\u0004��.�{�ƚ��c��f-\u0011\u001e'�ׂa���:mʣ���)\u001a�'*��\u001b�{\u0004\"��\u001c�;}'�qv��\ră\u0017i+=V��E ��}qD�Z�c��PԑU��,���\\\"Jm���y��\u001e�#�Ø\u0012\u0005ys�o�\u001b��%��Y���c\u0004p\n\u0014\n/�'a��n�\u0000����[����\\<�\u001c�i�\b='�\b\u0006�� �\u0018\u0010,\u00155���:��[h\u0007�A8�\u0002l��X�s�\u0003\"��o`Wwf���[��\u0007�)���kk��P�c�X^���\u000e�o[!���\u0013\noLYX�\u0012���Pc����\u001b�`\u0003�(�t��g�J�)W�-�k�Od\u0015�\u0011vw?�J{A�TÿE\u001a���\u0005,\u001a\u0000���_�o)��\u001e\u0010\u000b�Ï�ө\u001f9�y\u0016���о\u001aa�n��@��vS۰�\u0002J��\u001c����QgĬ�l��L\u0002$a�fI`v������\u001d;�\u0003���V��\b<��7\u00106�Ux��@Dž�'���'\u0014��4>刄3�ۡ�Ĺ�K2�\u0010�T\u001dւ�a3�ᷬ\u001b��[��0�0�1\t�'�3�\u000f�����&�z\u0005ULt�+y#�;���\u000f�\nd\u0018\u0002 g�\\����Il�A1�\u0002�����:����X{\u0002���O2_ߏ\u00116jNG&�\f���$�m�ĭ�\u0014\u0001�'\u0010�\u0014E�Op�+�煫3\u001c P�.�+�������Z�,\u0005*دaq�g*�@DmX-��%)���\u0007H7���4\r�cY\b�FK\u00136ZbBj�o8|r\r�\u0004�\u001b�1!\r� �+lX��\bU�ӉH�dk�s�D\u0007�w\u0002h��\u0007\u0013$;�%��I\u0014l��z��9\u0010�\u00162�~���*-K[�[‰\n���_\u0007�*͟�Xgc��\u0010q���9�hU\u0017�8)\u0016����2\u0006\u0010x[�{�\u0019�\t�׍��\u0001a�e��3�M\u000f)�\u000f���?�r\u0002��4v�\u000f��jߧ6�9���R�\u000eJ>�\u0002\u001a�b��t����L\u001e�\t\u0011������|A�\r{�\\���OL(E��r��cW�TD0��]�B�������Xy)���\u0000U�R\u000e�a�}�\"�;o(�������\u001c\u0015\u0010��$�F�\u0005��f��(R�A=�\u0002���bp����z�mVտ���\u001f0�Q< s\u0000ǎH\u0000�i��~��q\r>�\u0012G�ޠ��]�\u001fPu6U�&-��)&3*\u001et1�\u001d�\u0005]\b���\u0018��lA����l�J=d�xx�^��װ>�\u0004.���\u0019��\u000b�Y̘��mJ\u0006\u0019K����r~��\tڥ$q��o�\u0000�i��b �9<��\u0005�`�d�1�^��U�ֺ�C�מ\u0006,_Atf�V��t\u000b�\u0012�O�%�Ԩ�ʤt��\\-}4�\\m����\u000f�0\n�m��&�s�\\`���h���3P���0a%m��d���\nB^���\r S�9��;\t��\r��5�*��\u001f�0s�\u001f��i���В\u0014�o@�JF�NXɼv�\u001b�!B\u000b)[�A8�\u0002����ep7����t�SB�\u001e��v\u0010�b�#�IxA\u000e\u001fSʬJ���\u000bW�'�ft\t�m�\u0011.�/�z��p\n��޶\"�1'\r\\Ip�Q�;���ij`�2X���&B �&\"����B�2\u0006�\u0002x�$���L|�\u0002��Wً���ؤ\u0015@o��7��tS�zq�/�\"O�A&9��X\u000bS�L�\u0013�'V�ً�\u001cxc�M/��\u0011\u0002\u0010��\\)�\u0013��a��ӵ�79�H�0�\\\u0011�2q�L��׺g��\u0018oȅ^���\u0019��0�\u0010E|5ޅ�\nh�\u001b�þf�FeDT7��ʋ\u001b�.��y�\u0000Z=͐�+W�u}pYe��񥮽D&�R��Egy,[\u0006\u0005����Iφ��\\c��/�\ti�\\�AA�\u0003\f��L�pE8�\u000f��}c$�=\u001f�x76�Emu\u0003S�;{\r��C��^pM��vXѥ��J\u0005��\"7P�Vu���=M����@�b��M�,��1���\u0003�<\u001d�\u001a\u0019iGsHJK�%�U�&D�s|�PN��|��̬����\u001f8j\u0012����Thhf����=\u001fPA���2�h[��W�صD\u0011pз�(���;(\\8ҟ��m\u0016t&\u0018�\u0002O~��1`~f���)�11�G��~]��\u0019\u000b;��\u0004�c\u001c5q��I��'��T�0��=�#�َ\n�#\u0004\u001cʎ\u001fB���y*�^�+�\u001f���E\u001du*&C�ԗ����y-��?�W�~�xBz�����b�4��;�D�-je=�+>\u001ea�w�%\u001bv�؉��U�GLNR��AQ�\u0003 ��5��㾕\b�[�5�,Fj\u001d\u001a�&%ߜo\u0000�.�\u0004f�պ���ŭ���WV�ɒ�Y��B;\u0011ڗ�g����zb����=32�7�t��j�\u001dQS\ff�A��\u0018\f\u0012��v�ٿ�\u0010†Kw��\n4\b��M\u001c�i�\u001c�;4�\u0015c���A���dJ@Pˤ��iA�Y\u000f�I�L\u001f�ϧV��1\u0016x�����2�W�,5�n\u001bR\u001a\u0001���\u0019p���$&����\r�T�.w��K2\u0016��/�Y��T\u00008�l\u0017\u000e|�\\\u001f���p�Y\u0012�|G!\n\u000b6��6Q�5g\u001c�Y�#�&Ql�a�\nVT=�I+��YM��\u001a��.r2���\t�\u000f`D~��E�(����\u000fA<��X�\u001bƷ\u000f��a��s��\u001a��o������J�\u001a����\u0016���ƣAC�\u00034���b�g���:��C��ݩ0S�u ݢ#-U�|5���\u0007f\u001em?�M���N1+�\u0017V�\"�\u0019��Z�\"�ƭT�*�;\u0006\u00175��ȫX'a�ɱ\f�6���I:�%��&`�\n*Gv\u0013�O\u0005�\u0019?��NSS\u0017�����\u00112]zJaa{�&)�ِ�g�`�ZJH4�/t������RA,�s�?�\u0016��^)�+�\u0019���w�/\u001c��O��Kj���|�T�E>����[�\u000fU�z�\u0006�D�\u0014B\u0014�bW�\u0010!���\u0011�2\u0015~�<�i4���%!\tUf�BQ~H��H���#�Ű\u0012YA�\u0005c�C�ڻj��&��n�V����#\u001c���\u0017GO�ټP\u0016>32�zN>\no)\"�}�>��W�r�W�(ڣAC�\u0003H���b,\u0007T�\u0001���~BN\u0015�4r�\t�\u000b�T���I�\u0019�,9�A@~��qs�/�0����l0�����+.��������2�\u000e���\u0015����\u0016�\u0011́�0��o\u0016\u0019��\u001d�C�0\"�,͐��;��L��Nm�^�\"�P��\u0000����\u0018�\u001c\\s��r�\u0011��0W����u�\u001d�n��ޒ�;]\u0015k0R<..�v]%Q��[�\u0011F\u0016�aH�\b�3�2��ݴ�\u001e�0��p�}��hP�M\u000e���a\u0002�-�\u0012�O\u00184�޷%��,\u001a\u0010��t�~{��e\b.\u001bv<\\�\u001c���\\w�K\u0018yʅ\u0012e'��S۵\u0018O\u001b�Bt��_���~�bz,xx�U��1ʋ�W��Ÿ�*���\u0006Y9�i\u000e�\u0011\u00116@4�\u001bIۣAC�\u0003\\���e�\u0013YY\r2O�\u000b�/�FEb�\u0013���k\u0014Ok\u0019�{B$\u0004�Q�Ý��~P\u0018>���V\u0016�\u0019�O��h���c�I�Ş�\u001b���}L���>�Y�\u0019��)>��3�&�C\u0010\u0012��c��W�N��\u001a�4\t(֦\u001dH��~t\u00132(�\u0017�\u0010\u0012-�բc������\u0011���\f�\u001c<зԄ�\u0006+0\u001a�:�����BJ��\u001b�\u0017�I��8�u Sb�C\u0006��gl\\#�%s\b�ۚ_+G3\u001a�\u001e�\u000e�\u0019.�ɾĢr;�馊V\u0006�C@�i'G\u0011/~���r\u0000b�J�d*N\u0016\u001b����\u0002�+\\+�,\f�J�9���G�\u000b���\u0011��k��iq��\r\u0011γ�j\u0005�\t2L��>(���?08�\u0015�\u0003B�+?P\u0019�^f-\u001a�r��ڣA@�\u0003p��L�u\u0002=x�\u0015\u001e\r\u0015�հ;\u001a��r�}\u0015��\u000e�m��.;6�R���UV���b���t\b� u\u0012%������\u0007�\u001f�\u0015�\u0014���v�[��G�QTu�b�G/߾��\u0012@A�Q!bv��U��\u001b�i4����v<4)]�2��ud\"B���k!E\u0019X��\u0017\u0011r\u0016����ld۷�ݥ��L�*�\u0012�gD�w߈��\u00020�16,�\u001a\u0010?�d�hHz�eX�\u000f�\u000f�]\u00008\u001f' x���j���86r?\u0014\u0014�\u0001\b����e�!A�X�܄\u0017��\u0019w��E}�x?G%\u0002\u0006a�4��\"�\u0010���\u001c�=\\�b��\u001d\u00032THw[�P\"�D2Q'�iQβ����5,��\"j�\u001cM��-u�\u0003���&C�A9�\u0003���L�a��g_ޱ�z\u001d�\u001d��\u0018A��\u000fLy�#>��\u0012:���EӤ�l&�4��KS�?���a�i��u�\u0014��^\r=b~xh�h��Ͽ�z���*�P�pB\f\u0003���M��L+���qi\u0003�ߵ\u0003j���c<\f��}�h\u0006�\r��+\u0011�/�%�v�u\u0004�\"�s�v�p\u0019�:�j�\u000e�c\u001e1�'�q�-K…u\u000f�@u�T���\u001fsF o����\u000b5\\:\u0004l1\u001d7g1�\u0003�=wc�]o'�̢�/��a{W\u001f��\u0002\u0012�\u0003��\u0014\u0016v\u0018\u0003gC�\u001c�\u0002|�\u0017D�\u000f›zf\u0006\u00184yȂ\u0019�����^\u0013\u0004\u001d\u001c������'F�!�J�$B��@�L7�\u0004\u0004s�Bĭ��X|����Aax \u0014�v���\u0000\u0012�A6�\u0003����\u0016����=v,�A7�3н�b\u0019�j��\u0013�4A_PG2S\u000f�x�UJb��ؖ�䐃\"�G\u001c�W����\u001d,\\�K�a1�&�ݐ��v\u0015q,�:���݈�<֝�s�g�p�6�^kC\u0003�%T����\u0002LkR�d�����!�)\u0000E�l��m�c�-���/��\u001b�����c\u0014pd��*�:%\u001c�b��T��7\u0011�0\u001d����wȖ_�\\�׈Q/��,w�\n�b�s`�l@+〜\\�����9b��\u0017S��Y(Ko\u0013�(X'�ĸ̕@��D���\u001aìљ\u0015�{b����O\u0015'4z���\u000f�e�-�΂��d\u001c�\u0001\u000f\"�(,9H���;̌G_��f\u0016�Rp�+\r\n�Kʯ�A1�\u0003����\u001e\\O\u0015st�.�h\u001f�׀��d�=8(����8��Z�{޲�\u0016%`�7\u0005WUz��[\\�r��\u001d\u000e�]p���,\r�j]�l��\u0016���68˟��\u001b]o��.��Y\r:'�\u000eT�I����&;\tTZb\"o �|\u000e��'�I\b�(�w�M\u001e\u0004܄6�T�����XT/\u001aְ�\u0016�\u0019�\u0016���D؝t���ӁQ�\u000f\\����b3$h�\u0003\u001e�Z̜�4\u0015�tt\u0015\u0019:�߅{\u0005���I\u0015~��\u001f\u0017rؔp�����\tKJ\f���\u000e�\u0007W����ͽt$�@0�؉��E�+\u001a���9��޵�\u000e�\u00167�!�\u001c�Ӯ�m�\f�6A\f\u0000��\u0007~����\u0018�*[n�|\u001b\f\u0018�\u0001�x\r�l��Az�\u0003����\u0018G;*����N�l�s�Ή\u000f�R̨�?K-oA���q����Cn\u001f�RF\\��V��<ďxin���(iсn$_n���\u0019M��E׽�\u0012�5b\t��\u0007OAe�h��[Y:�s�\f����\u0001\u0014�!��\u0007�j��̇������R(�B�N���\u0017@l^\u0002���>�R��8�=6CW�\u001e\\\u0002�Q\u0004\u000e�V\u001f�:�-��eu�^t\u001f!��\u000b��3�r�����r\u001a�n� ����f�T�E�n�\u0016�j\u0005�{\u001aT�;+�m\u0004���\b^4M�E\u000eTa\u0017�n��%'�&�oe\tW���\u001f�,�TRZC�:���(�6\u0010�e�~�\n�;*�jJ=�y��zgR\u000fk�k�\n�۽q����+�\u0013�?h^���T��>C�\u0007̴K����\u0007U�ۓH6}�B��Z��5\n�\u0000\u000bw�\u0011\u0016�}-\u000e��ŧ���^����!\u0010fO&�A6�\u0003Ԁ��\u001ecor��U�-U���q�k�s�\u000f!h�tͧ���(���Z��Q�B�L�C�?ϷV\u001dM�\u000e�\u0006�6HT�\u0016�\u0007\u000eO+�OӍ�B�;*�-7��3�zS�?!�MC�R����E�,��\u0019~\u001f��\u0017>�\n�c(Jq����j���k��%'._63[ݰ�!�ʌ*��0�\u0005�\u0011��Ia\u0011�9Hn|��OF���N<���\u0002ɼ\u0018\f�5l��\u0003\"\u0014���\u0010\u001ed�K�\u00171�p�8#\u000equͽ�Z�by�\"�׌�]�aZNd\u0011�\f����`m�lD(\u0001��\u0018���fZ\u001e\u0005��������\r[\nB��,i�%�E��\u001e\u0001^S�l��&��<��º�R������7��a�DH��A<�\u0003���\f��\b�C�|��[n��&�i\u001b�F \u0002.\u0018������\u0013���\u0017?�d\u00193��Z\bB|\n?\u0006.o\\J0�ZQ�}\u0013��r���HfK}��Z�h\\���.\u001e7���\u0016�Ώ&jh�\b�����_�;x�C9�a��\u0017�:�Ŧ\"���+b��ʠ5�m��\u001a����\u000f�\u0005��7�͝ ����\u001b\u001d�\u001ajx�y�\\�t��xN�olK\u0003l\u0012j��,b\t@�qA:����q�o\u00045�p\u0013ta\u0007n?\u0006Ǜ0\b\rD�\u0010;R�:�zm7������hr����z��\u0013Ws\u0007�\u0006s\"X�\u001c�ޓ!\u000f^[�Q}\\�r'����k֕�!�dqOzz�bρ�~,�\u0011\u0007�9/\u0002\u0001��B���e�8xb�|%���AC�\u0003����\u0017o{ZP\u000bJ\t\u0003��<\\��\u0006\u0007|F�OW��ը\tJ���`.����ݫH��n�=���L�^�\u000fY�n�\u0001���{���\u0001LQᷝ;�~\u0015yt�\u0018E\u0015m\u0013���4\r\t?�\u0007\nТ�\\`Qx��~\u0014��Ϲ\u0012�H'^����=�dwJ�\u0001����6�K����j�\u000b\u0010�>[�-�\u0001��3�}�S�z)�/���#���ѽ\u0005��$�\u000f�\u0011}���s�V�)e\u0014��ҊҞ[��I\u0013\u0001gDU<\u0018�ȍ��77�L=T�����X\u0015ٍr�ru�\u0004\"2sSq�m\u0002�.�T�Y��+�$'ʉO�\u0017��U��Y�\u0007tO�\u0007��\n>�\u0012Ju�\u0014\u0002]��o�#n�NE㚄\u0011\u0001�Y`�h��5Ir�!pʷG`&��-�AI�\u0004\u0010���\u0012j�\u000b�g[\u001d\u001f*_���b��xk3�T\u0002��{�s$<���\u001b���R\u0014\u000b�d���\u0016$��d�`\u0001���h���J��\u0003��n�������<�IΑ�T��aI�C�\u0011�c�t��ܘ/Q��5�*��n-L�#W:��q4�(s1zJ�|A��\u0010o]Q\u0004���`�\u001e4\u0011\u0012P�}��Ƴ�š?\u0002����\nZn��V���GS�%+���*A~4\b_��H>&�рY?�ek�Y��`������Ƙ��g'�zG6�AA�\u0004$�������I��B\u0005��\u0007�J��5��˕�_a\u0018i\u0010�,��s���e����z��\u001e�\u0014��R� �en��z��1\u0005_�\u001dC��e�\u001e�Z����`\u0000�x\u0002b�W\b���\r\u0019����&�P\u0014M��k}76E31���\u0012���}OBÍD�#m�\f�/�𦁞�\"ى��oC��}^iB�y��<\t��\u0018̐��\u001e�gU�gv������o\"�e�{n;Xf�\u001dܲN�$G�\u001a����a����\u0019�k�\u0018S{U��6�m��W荎y5�x��[tP\u0019�JN� �kDh�n_!�S�����xZ�&��<��F��\u001fn�{lu�e;\t�0��\n�ɂύ,ģ<�N\u00073M��ɿ������v�\u0010�\u0018�~�A؁\u00048���\u000b�8vu2S�.پi�չ�|����va�J�\f\u001f��Rwi|K���w�,>�7[�+^�\u0014U�ޝ�>2�34�|0\n�wcZG���\u0012�\u0014U����)\u001c\u0003٭.ǩm���\u001ef��WӰ��\u001f \u001d�E������t��#��33�\u0003���{�8+K��u\u0005�b�?\\�R����I\u0007v2��O^;\u001d�J�\u001f��>\u0004�\u0012������\u0001�����\u001e+Cƚ�IUJH7\u0007�\u0016�8�bN��\fs֋�R��ʹ��U\n\u0015��h�j��oa\u0010j ��'�jZ\u0003}g�C��J2�\u0000��\u0001���vH�6��Q=͑��ؤ�A\u0012\u0014S\f�\u0004�m�E\u0019���8Y&=\u00100Nx���[e)8� r�I���j��Fb48Ӥ�Vs�_����w��,�k��\u0001�#\\BS�\u0011�B\u001d\u001b��?���x\u000b�y\fm��eL��m��Ml��@�����J\u0017\u0016��M��9X�\u0016\f�\u0000G�����m뫥\u0014T�&\u001e`\u0002\u001c�o�A+�\u0004L��XА����\\\u0006a9x\u0012,��:CJ=�O\f쮇�I>%�R{0 uY�;ی�^&2&���R�ܗ�G�\f͌7�\n�\u0004����\f5A�\u001e�\u0011uX��%v�t�ʜ*\u0019���BL�\u0018oS�赊=�����1_�Q�̟\u0011~�X8xG�;\u001f�ѷ��\u0015�J#���*���མx.\u0016\fY���xImm�S\u0011�\u00047�߱\u0007�3g�4\u0004\u0013J�����>׳�#)Q��H�wG#�Z�P\u001d�\\���\bE�WI'\u001f%�ɬ\u001c�E�G�v�A�67��J.\u0001K|4�7\u0003l{���1׵3�J���)�ꕴz��,0��5e��\b��\u001bR��*I��)��p��\\��\u0013�֭�A(�\u0004`��X�a~��e��۱�/Va����MZ�G�\u000e�\u0003��\t�ao\u0001D;���U:- �6k)�E�&$�$�;���y���\fz\u001e2jI��ƒ��h\u0000����瓋������\u0019-\u001ap3��ǵa�ʶ�_Tq�-��I��l} �d�@Of�2Dw�B){0Gb�0��� \f*,�$\r):��~����-\u0013��|���N��[l\u0016(�p�\u001e4\t�\u0004z\u0003q:\r�&�lz�g\u0011+?�l��N\u001dil���r8��|���K�]s)���.�\u001f�Z,/�\"�����|E�ZH�@\r\u00131\u000bSH\u0002�x`�\u0005�]\u0010/�f�w�:M�l���l�\u0003x;�\u0007I\u0004�\u000f��K\u0004�ۣA,�\u0004t��X�����~a�h��wHX[\u001d\u0007,\u000eWWd���9b\u0006�u/;Ŗ��W����^����\u00150�C\u0017�\u0014$e�\u001dU�K<\t�ITee�m�uń}������&��\u001bj�TS�,\u0002]�N6t~Y��\u0016��B����(�\u0005x�\u001a\u000eQ�c����M��\t _�$�f�Z\u001e�+P�0�\u0019\u001f@��\u0006@\")�ޝ��`���:�J\u0017˜\u001f�ln����+��4Nb𓿫����E���>c\u000fh���K�`�̺�ڕ�\u0018�v\u001c�!�@�Io\u0003tMDEW�I\u0001�+n�JI�N�\u001f30��貛�i��ɛ5�9�0,�6�n�gB�Y\u000f`�V�>s�u�\u0004@�؃c@�ob�\u0000�A.�\u0004���L�#e�9Q�\u0010�\f˚Lv�\u000b�F�\u0005�a�\u0005niK��c\u0015iw�e�B��\u0019F�h�N�r*�\u0013$��\u000e��Q6%�E�E����h���Щ�/Vʣ`.`\u0006��R�O�\u0002\u0002,@��\u0019�\"\u000f\u000e�5�\u0004\u0001H\u0018k��?G�������&��\u0017_��Q\u000f�S���A\u001es\u0015�<�7v2\u0001[�!H�r��ԛ��\u0003-��gu��-��3�^1\u0000�n!�X�nb�g}��o\u0018�%����?�`�Q��_�K\u001fAӝ\u0003\rp\u0017\u001e(��W�e�L$�\u0007�v\ndM\u0019Y��JF�M��\u0002F��\u0016�\u0005��+�Ƨs\u0015�̓���\u0000\u000b�f�\u001f�S��u��pS����K�\r��}hWHۣA1�\u0004����\u000ep�w�%E;\u0007�^}\tj�@�\u001c]�nRܤ��H׸�`u\u001dhQ�7���4?�\u0004�\u000f��\u001e�܍]�U\"�j�凉\r}����\u000e�i�޿��\u0010�G��ʨLm���p2ܑQ���,�%I�Ǘ\u0017�\u000fI�\u0004,�|��9�\b�#�\u001f��]��W�\u0007���!�PL\f-���!�@ı\u0006X�_��wTd߅�}\u000f2ɫ\u0004�l\b���S\u0000����}\u0005\u001c`\u0006�\u001f�}Č7�xq~��rd�޴�k��kl?\f��\f�P�q�A\u001b�E\r\u0001v�A5�\u001b�\u001d6���s�_�kWR�\b�\u0017[�\u001dzaF�O\u0002!\u0002���J��{'�\u0010\u0018H��c������g/8\u0005�U�GmL����-�A'�\u0004����\rD\b�k��\u0006��Si�\n\u0010\u001e��Q��C@\u001e:��2���|\u0012z#�u\u0010�#�e�\u0019�g\u0013\u000e\u001a�i\u0003��Ō\t���_��G\u0013&<�=O�\u0000���R5־3�\n��c��Z!��L�\u0015zW���w��Dro]��BP\u001c�~�_A���\u0007�\u0018� Cw������ȋK(�:\u000eq�՞�Nq;z\u001b��P#\u0000��y�P2S�[ZOчv�ʺ��tS=\"ŐB�3�<���\u0001�\u0003�6wLV-4�9��xq{\n�Z��տD(���3甔�%eM�p\u0006R��_�A��‡�c��Lj:��nr���bb)��\u001a*\u0017@w\u001d*��`[n��˄\u001ekQ[�\u0016i[.�A3�\u0004Ā��\u0017�$񦸟t\u0011,�\u0004$�\u0006\"����gS\u001fⅣ�B�\u0012#�\u0018w\u001b��\r�Kņ��)z\tk�x���\u0004����@9�ev$n�2��Q�1�\u0006\u0019*ߚ�\u0012�0�n\u001dYUa�A��Ǩ\u0019��'��f\u0000J�jt\u001e\"�\t,��\u0001O\u000f݈�M���ڶ֧��(��~\n!���k�%!f����T֕z\u001d\u001e�s��\\���\u0001Z�����#z�5��K|A�n��\u001c���\u001c�W�Eӧ\u0003�D�x��1�\u0006�k�rf����U*����&4iܲ�\u000b�Ee��ծѷ~�%�~��?���U.I�D�\t4������-X5�# ��(\u000f�_��n^�@\u001fK�R\n.sd��'�#�\u0013��yZ$�A?�\u0004؀��\u0017p�y:G�H���'�|���+ܑ̓J$\u0000T��\n��\u0015���=E?�]�1bcyJ���Z5�A�}�<��Fa�,�_O���0��i\f&@W���\u0019l�����=�\u000b�w�{�-\u0010\fZ��)sOY�V�\u000e� �=�zC���\u0001��>��%4�\u001dN\n\u000b}\u0010\u0016 �>6ǃ\u0011+�e�h���*h�\"\\W\u0005m�.����E���j�\">��@��`hdRm�g�|\u000fĮNy$�>Q����Ɵ��@}炭�\u0004U&�JZ{K��58J�Ú�\u001f��\f4\f�\u0016��\n5�JmQ\u0001j�B)�\u0005M\u000e!�'9\n�\u000e�|DD���s%go2Hdj!\u001e�����\u001a;e�sU�\n?p/Hߝ,7\u0013q�s���\u0000�AM�\u0004���\u0016Ҵ6H��tG\u000b��ߧ�����7\\��u\\��\u0015EW�[8�(�H\u001b/��#�_����z\u0007ͺ�s�w\u001a\u0007l}�n��m6���\u001dc�J%�mY�Q���\\#�r�V\u00154�?���jzM�v�BU��<\u0006�o=\u0011\fG��D\u000fH\u0001Ct`�<�DJ��ČNC�_�ؘz\f����O��:\u001f��\b\"\u0007\b\n)���?�w@�|\t� ������l�CU�,��9��f�����y�\u0015�gM�n2-��8ӗ�\u0000J\u000e9J@�M\u0012��A'��r0\u000f�!��&S���lUE��]��Bg��a�h��B\\�����%\u0001��\u0000�D���\u0003��X/�9֝�s�d����i��䅕�]J/۽���TE�Q%% HD\u0014\\��d�IV��K�|k/�\u001f�*9\\I\u0003|~��\u0014��\u000b9\u001fo���S��V\u0018!o!�k9���tܴ/�b�.��j��\u00025����\u0004��\u0007j���M`9�\r�d���~Yh�VH\t��\n7鿰��$��Q�4\u0002�ι�\u001d�`G-�A��\u0005<���\r`1�&���K�_\n�t��VQ5�\u0010,�\u001a׿\f�x\u0004\u00148%;�@�g\u0005a��\u001e�Eb�`��v�k�,!�Ӆ�x\u000bR��2Q\b�Qe�$\u000b�t����l����Ζs�V\u0017jk8��|G��#2���Ev\"������siŀ?\u0015�\u0011�\"����&C\u0012�u�\u000b\u0012�=�<�13�cSy�K\u0019�:w�g�\tȦoʑ��\u0019��e\u0014��\u0016\u0002\u0013!���ɢu��\u0015���\n�wp#)�ӱN6�j��>������6sb\u001bJ�\b]*MT�t���K����{��\u0007�\u00175A(��u��\fA\n^��$;\u0003�|tc��o�;,�n��e]W�fj���h4�rч�m�Mct�\u001a�<\u000e��r��\u0010yL���\n�!��Ps��wᳬJ\f滜���(]M����Z�\u0018\u0012�\u0016P���\u0016�gB+?|Zy������_2C����\u0014�i�QjR?[�&�#��ܸ�\u0001\f��4�]E!a\u0004%/��\u000b�VhV�a���\\�uAO�OM�P�n�A/�\u0005P��0\u0003\u0006��f\u0016J꽢\u000eЬ�\u001c���ba�\t�Dz7@VI��*�%v�D��7\u0019�n��X��WoM�ua�\rT�XW�X>�fl�\n��V7�˾��_>�_�R�!0휮��ȁ7Ǎ�ܪ<-\u0016�L\u000e�A��\u0001U�[DF\u000b\\᥄�\f��\u0006`���e�\u001b;\u0016H�����\u0006�N�:����\u0014�>]~�B�\t�E�P\\��������\u001d4\u0001\u0016�ꂓ�S�\u0018��������/�����茏\b\u0013���{\b�A�ĠF��V�Q�Z?�.�ƺ�r'�ZTN\b=B�H�\u0003\u000b7S�\fto���琜sű\t%9�\u0019}�x��S\t�\u0015,���V{u\u000b\u000e6���\u001b�l�bn�A,�\u0005d��L�a�z�\b�\u001d�y\u000e����\u0002\u0017\b\nD\u0013�6nً̦X�*\u001f�eW�\n�)MM�'��W����?�e��\u001e��;XJ\u0002y�d9m�����\f��E0\\�����\t�\u0012�����g�.�N_��HͧwY��i*E\u0011ے�\"���\u001f\u0007)e^� �P&\u0010\u001c���i��6�;\u0003o\u000f�7N\"�ͥ\ro����ܘV�Z�>�\u0007`��\u0001�\u0011\u0000@\u0005���, E1*��z��WW�\u0001�uC�\u0013�.?D��\u0013fY�\u001fS�J#�Vݯ\f�@*]v\u0019�i�O\u0000dT\r?\u0001��䯈�{�^��\u0014��~��\n�B%��\u0010�^x�񾵫\u0016�GO�@կ���7/�\u0000��IEFL���ۣA-�\u0005x����m��1�m|\u001e�3�.@����{�%��<��!բ���4\u0013�Y\u0004P�\u0004��>����z�K�p�\u0018\"��e�h���ym�2uP�\u0011^4��~�l\u0000\u001e�*U���Uv�RA�\u000e8�w�%#\u0016�c\u001e��\u0019���ff�8��\u0007^\u0000$�E�A����[��:�X�!0�E�Z*���N��\u0000��A+�G)����\u0019T`WϜ\u001f�Ұ\u0011�o��Ȱ���d��G��Uy}ʱҎ�6mN�n�\u001bP���hDJ-�A\u000b\u0017\n@��X�\u0002sB�CV�))a;���a�\u0003\u0003�\u0004 UO\u001a\u0003��\u0002��4�=�h���\u0004�����~%�}?��]\t}�\u0013\u0002Sf�1\bV\u001a��Mi\u0015�A.�\u0005���۽h��;`�/���s6�k�x�Ej�\u0010��\f\"�7\u0017���l��e``�����J��l���j3X`�JbYC\u0016�\u0002�c��\u0019\f ĝ�'um|;�����Ax�Z/\u000f��P2�p:A\u0002���>c�$���qkkDJ̍�^��PL��.f4\u0000�:�~\u0015�7\u001bm�B5�c�\u0011�;Y�dW�b6J�����[�O%�)8)!߶�����߈HT� χ�5�\u000b#��2h�S�!98�\rY`7�xd����W����l��A�Ѧ��\u000e����\u0015\u0019��U8b��\u0005t��py�eN>\u000f��H������x�l\bgI�שB9U�~��#��ƀ�eq�][{\tb#�ń�\u0013�A6�\u0005���۷�,B\"~�M��xA\u0006�����E%Ǘt�\u0002%#\u0017AZ���|Gm@\u0000ڿ ��q���}:����9\u0011�\fЭn\"h�N\fr�b�q��V�ȽF�\u001b�\u001a\u001e$^\u0013b��y�Ň\u001d�a�FGc��\f}QԔ\u0000��2���V�JI:&�\u0018���o�lO�.у��<��iŖ�t�ⓢ����b��K�3�r*U����K\"�7ǝ{������G�,\u0012��\u0005%N�$|�KC���M)R�*v�0W\u001e,\u0006��]�^�t�\"}Z1�Ҷ�2����0�ꬭ���ԏz��\u0013F��\u0014��\u0014�,��:w�[\r�\u0014��]�#�\b�yB\r�K��r��M\u0018\b��v�-����)K�1�ni2��\u0013�A5�\u0005���L�ZJ\u0004\u001b��\u000f��m\u0003\u001f��:#\r���'���\u0016�W��h,-�\u0010�-�\u0006�1g��E\u000e\u0019&O�\u0005PG���!B���#���Q+%��1\u001d�\u0000bu7��\u0002\u00157%؏\u0004�Ԁ����پf��G�\u000e�K�~d+@������\u0013s��ήk����\u0011��d�ui���\u0017�\u001av,]�\u001a Y̹̏�u>S�\u0003�\u0004u>S��NzT0ŧ�R, \u0010����^oh�\u001d\u0003�\u001d�B}�jQr��up\b�\u0003����f�\u0011\t\u0006ض��D�(\u0017�E�l�)�f �\u001eKX\u0004�rjg[�d�#�(2�t�V˫;\u00169�۝�\"�\u0015l�/7Ľ`��SO��=��y{P\u001dv21�kn�\b>K��45A=A+&��A5�\u0005Ȁ�L�b\t��c��_$��s��TS����dk\u001b��Yl�\u0001��L/��#e�N�M���g��b��r���A�$Qm:��Bg��du���:\b��d�\u0016�7��cg�\u000b\u001b���Ze��u���z\u001b ��c�\u0010�\u0001��\"\u001f(�mS.4�?P�\u0007k6�ֵu\u00180���F�\u0019\f��+!��\u0016�7������\u001bl\u0018޼1�en�\u0006�W]�u��\u0012�39=޼�ˋ|�b�����f��\u001f6�\u0018 ��C���i:6�Q\u000f���Z\u0012A�>ͅe'8=�\u000b��M�\u0001���\u001dJu�\u0011\u0004\u0018h\u0000\u0011e�\n�?E�\u001d�XPÍ\u0014_���D\fa+1�QP�4\b�p�|�,\u0019Q�<��ɸ�j�id���G�}\u0018T�A-�\u0005܀�1��\n�\u0019g�\u00164X+�\\L\u000f�fp����v\u0012�\u0017\u001cd\u001au�PU}N5\u0005��\u0006,��1�ɟ��\u001dk}\u0014=O;����\u001cQG�!�z zcH\u0018qݾ�_�\f0�I\u0011E��XN\u0007��َU߮Ϻ�\u0013�(2����\u00014wzV��F�'���\\Ƙ����CXIi�\u0002\u0015,��+j�h\u0016�P�\u0005\u0007�R&��b8��uX1@�?\u0014c��L��8Yy\u0012��\u0001�p���:�\u000fL��\u0019�t�����\u0004�Z�i\\w~�jf�6��`!�Z\u001d�pD݇t��n>p\u0017��\u0006�*�ИL�J��D\u0018�{r@�\u000f\u0000$�瘱I�V`��ޤŲl!��X��V�䖒w\u0016&z���΅���ϩ\nђ�\u0013e\t?aK)�M_���&�ϻ\f��[\u0018��s�O��;T\u001d�<�!��9\u000eSP�ڈ7�B'k��¥��\bH\u0016X\t��A.�\u0006@��]�\u001eN�\u001f\u001b�~��sX�pC�D�1܆&r��1{�T�'\"\"\u000e���z��k��\u001cR�݄L�\n��\f�\u000e[Os�7|���\u0016��c�H�N\u0014;v竐\b�\tݶ�d�:-ؒ\u0010�Rʳ�\t�Z;.™9\n��䙚x;\u0005������ܕ����\u001frC��\r�>x��t!\u0001�!Rlo\fo�N�\u0000���\b�\u0004�q�4d�\u00101��x\u000b�K$�\u0010�<8\f��r>L��k�?l\fhb&���L\u001b�\u001f�\u000e�6��Y���\u0005H�\u0000�5ǀ��|0e���Zw�QE�\u0017�f\r@����Dڙ\u001cu�\u0006\u000f\u000f���\"M8D����#_Y�������Bb� ��?\u0017\u0014���5�f��A(�\u0006T��X�n֘!C\u0001��C>[k�`��\u001a\u0014f���P����aKW�m7��\u000f����\u0003�}CR�(��G͵�yÌ��j��\n�\u0017�-\u00032`\u001cUX���\u001e�\u0001��/��U�C���Z��|Gz\\\tY��\b�\u000e�Z�a-�n��[K�\u0012h$]C�\u001a`��$�$\u001bv��]�bK|*��T\u0002�`]l<�\u001e�聥�t����+��L�h�9w��A]�]�j��S=S�\u00112W��W5��4�6Ā�*uo\u0010�j��\u0015��&ʺ\u0010u��\u001f�_g?����ool4���������\u0000�.�\u0019t�6NW�\u001a_���Bˋ�i\"Q��xL��|$�-����•���d�A!�\u0006h��X��D ��P}C|�)Q�]�\u0012\rƒ�!Ȱ4�B�'��^9�]R$\u0000Е�\r\u0003��\u0017r�c��\u001b\r��\u0013��QOV�o��d�v\u0013�~ތ\u0010�mו\t'pD\b�*�c�\u0004�\u0002v,de�gI�JrY\\�-��ds\u001btk]��Ȥ]��-�s\u001f\bU�Mf�Sm��)Ng�\u001a��\t�}��w(`\u001d��\u0018���;�\u0017B��G=3�Y׷�Ynt�!_��j��a�\u0010\u0010�Z��H�ƻ�[P���\r\u0010�L�\t�M��&�#z�\t\u001b{\f��m#�\u001a���e\u0015Y곓�Co�d\n��m��\u0002���MI��3���tbN��|\u0002$�&���TD��q�ȷL�f7i��}��k�N�R��\u0002\u000f|MN�7��\\*mJH�\u0011k�\u0005�\u000f�$�z��\\\u0017\u0002���\u0004r��sì7���Js�\u0001z�e���P��H/��v\u00153���t�T\u001e�F�v�X�=��{�� �~/��8\\� ���A�;k�b7�\u0000����Ľ0fr�\u0016\r�L�Ĵ���Bmh�O�Ķӄ�[.\u001f=��\u000bf�I.�A;�\u0006����\u000e�:�\u0003�bBk)3E\u00059��B�E��\u0011��\b7h\u0000�.,k{$�7��\u000b�4�ی~�\\�.�\"�U�*Z��vϫ qڵ�uޮ�}\n5�\u0017N�\u000f��M��\u000b�[e�\u0003��\u00047]���\u000eS�o\u000e�v\u001c\u0017c��\u000eH��v�LG\u001aZ\u0004�wm�IX�DmT�\u0000H��\u0019���wu`jF[\u001e4�����X��h�t�a\\B��)K\"ۭfd�a�\u001b�\u000b1��رw��4\n�c8֙�p��9��\u0019w��_��R#/�A>�\u0006����\r1\u001b�&'�=d\n���^\u0010<�\u000e��;�5�qu��N��0���5��3��,�S��ӫLs�Y\u001fĊQh���=m�=A�\u0012���,�\u0000>��!C����4��RDJT-�jڕ�la\n�ִ�\u0014�\u0015_ē���P�JݮJ�����G���9�%D\u0015��\u0006���~��UF��3g�ڎ&�q��\u0012���\u0012!Y�\u001b=�i)\u001c=#>�kss��ߌ8d\r��z4%H�@�xJ?Wd\u0002-\u000b\u0019�́�+G5�B�߫���,�����e���\u0006�s�}8sH�Xߟ\u0016��\u0013j��\u001a���z�\u0015`39����7\u0005\u001b`������\t�p�\u0014U�Y�n�}\u0014\u0016�5\r�wo;(\u0003m�i#�s�uL�\u001f�D�/�A>�\u0006���L��\u0017�����lx孶�g�V,TĤ�=�\u0011\u0012�\u001f-<��\u001f�\u001c�;%�;���<\u0005\u0018\u0015���\u001f�����W5P\u0014\u001b\u001bY�%ѷtI�훯[\u0017�\u001aS�n(\u001cR� �{�@A�\u001e\u000es\u001e\u0018ڐ\u0007Em���n�\u0016�\bo�HTH��>��i���{�yX�\t�Ɉ��L�7\t�-��9�d.\u0016/u���#\u001dV\u001b5�1X\u0014d��H@uhS\u0001��\"���\u0002���\b���GP�3\u0006<�\u0004���ܡ2�p2)���a\\0�K�\u0001\u000b#,\b녡 H?\u000f�\u0016���V\bS\u000fSk�\u000b\u0006s9\t9T}�:>/\u0006�ͭ�Tf�,l��X;�\u0004/\u000bxlFg\u001bi��f��u\u001c��@\n2(�p5�b#�\u0007z�J@Փf�M�-�A6�\u0006̀�L�H���ܹ\n)�c�\u0017ښa����1�>~���C\u0005�\b�u�E\u00073�?��`:*��m~Oz��y\"w�p��m>�\u0007�\u001b��5#>�Pu{D�&\u0012�\u0007��IX\u0000�\r��\u000f�%��i\u001d���^\\_.M\u001fr��\t�\u0019تq���<���mx���\u0014����i~q\"��)8\u000b:��&DѾ�\"]�E�P,\"z>ʴ;�\u0005�\rj�Q\u000e�b���6xRxU:\u0014�\u00120ӏ�K��r8�\r�4��y���~\u0001\u000f�s�@\u0014޳����\u001e%k�)���h�W�o��\u001b\u0013\u0001�81,�Ù(��*����RAۏg\u0016\u000f,A\r\t��U\t�#p�\n\u000f���\u0015��1v\"z��e/\f\u001a�������N�4m�A@�\u0006����\u001eX�7Q�\u0004�wE\u0006\u0007*H�)�g�g�HȮ�$���z(�Sj \u0011\u0015i�\t\u0011\u001f�%\r�o\u001c�b$D��lih�uL�\u0019s���\n�\n��;8<\u001a�]T�p����ج\u0015\n���+ld��cA;$��Pk�{������fU\u0005\u0018gF<\u0018�o�\u0014\u001a�\u0011��g��ErT�B�a��R�\u001b����\tg&C\u000b_��+\u000e��Z��\u0016����\u0004���tV�5|\u0010A[��\f���}\u0017�I�v/HI�X���{@�\u0018HY�\r���@��ʎOR��\u000b��&}���Q�/f�┏�\u0012�=˟��Z����qٕ$�r�w�hخ��h�-�AQ�\u0006���\u000e�\u001d�\"�X\u0016�\u0012+�\u001aڴ&���\tg\u0006�nx��gX\u000f]��$\u001e9�\u000bZ\\�*:ru\u0004̵���'���\u0002R�~\u001d������9\u0006�xts��Б6�\u0002\u0018\u0002sp}RJLKS{\u0007X92+\u001b�B0�E}j\u0010�L��\u0002\u0016QH��\\� \u0001��ةz��v=\u0019nK?�\u0013���x��\r�\u0006Ќ靾\t��\u000bw\u001dH\"��\u001a�\u0007٨\u0013M�����ۛ\u0018��n�6�S�~\b\u001b�j\u001f�\u0011�\u0019�z���7�;%sf�.����T��\u000f�\u0002��A���\u001e�Yat0\u0011m\u000e\\��<�>z�$r�r���sY �E��\u0005h/��դ:\fWƀ�9��E6���\"nߊ\u0006���)�.��\u000bX�Ϊ\u000f�-�Z\u0012��Ɵ���.�I\u0007�t��—��bm��-�AP�\u0007\b���\u001ed֨����(�t�[gI�\u001bMF�\u0003|t�eF-��*��Co-�Mӕ�!Bn;�BA���}����շH�QuW7����q��!��k\u001f��{�2��w�P���\u001fR5l��\u0013\u001c��3N3�n��M�:��\u0018�P��S���C\u000e�87��.��\u001d�\u0013\u0018�=ռU9����\r��b�/�_�qm\u0015�mP\u0012;���w�\u0012�b�\u0000\u001a�����/�JT��\u0003蔸6_UeID��9꾼�\u001b�0\u0013\u0016\f��4�F�p:�FS�?G\u001f\u000e�~����8��1�A\u0019ӹ>f2\u0000�Ɏ��84]�?ml\b��2M\u001d\u001d�Uy�\u0001)A��GE��1g\u001e(�\u001cu�D�;8\u001b.\u0000���{]�u��tɨ�J�8e\u0019d-.�o�J�r�l�Y��\n�I-�AI�\u0007\u001c���\u000e`�m�\u0005\u0018v@\b��\u001d\u0002�D�W\u0016�HۤD�\u0000��L�o��L�$��=\u0011\u0001�9ћ�\u001d\f�\b}��Ã7i\u001c\u0005:�-�5�&������\b�����ʧ\u0012�\u001e��\u0004���\u001f�i{���\\\u001d\u0001'LPl\u001c\u0003m6O6�8�(N\u001b��1\u0017�m�8��lep4��\u001c��![3�x�M\r\u0004L\u001d����kN��5�\f�`\u001bҞ\\����Q�(\t�b�3O\"�ʄC\u0003UvԌ㳍J�_��=g\u0010�%5�\u0013Q'l���X�%��s��\u0018\u001a��k䯉^$թ�<�\u0003��W��݆e�_��Չ;���p-�Ό��@٦9�\u0006\u001d)\u0015�@\u0003�\u000e0ՔǶ�[?\u000f�K�h����.��td�D�g��L\u0011c�֣\u0011D�n[��S�O)��.�AH�\u00070���\r{�=�b^QNʈ\u0000�_\r���sD�x�I\u0015\u0010��Jۿ.�<��\u001c0�I\u001e\bE������\u0010\u0001i)���\u0002L➾�9��\u0015\u001a\u001a\u0003�(l���ٹ8�Q\u0011\fd햲��C=�a,���������o2G\u0011�p���+Bw��\u0012B��\b�)\u0013]�G�^;8K�ڥ@`\u0015�w|A#���<_\u001a�����u�#5���\u0014@����3�tժ\\`�Yr��\b���gV���Czh���O��\u0018�ث�\"\u0003.�M�B[��\u000b5N�ެ�\u001eN\f���m!#A��|�*�\\�3j1X'��?�\u0019c�!N\u0004\u0007k���8��l`A�\u0015�<�;>�oAV\u0001�\u0019e�8\"f\u0016Z��;\"�2��1��M��E�v)㜖8�B\u0017-\u0001!&\"��A;�\u0007D��6���AT@�\u0013��C�Bi\\����A��m�g�e'��0\u0007��ӞS�`�3����yO�\u0015\nqt���d_�\r�Гv\u0001f夊�-�@���h�}�H�5=\u0003��W0�{s�<ܯ���1)��f{\u000b�ٙػ�Ȋ�4��\u0014JI��1�����\u0001\u001e[�9�j�J����K%���J�\u000b���JE\u0015���>x\u0019W؄و�>\bs݈�.ۥ�e\u0018�\u0011#O&S�o6jb\u0002T��:\u0001��,����um\\\u0000r�\r\u0000�F\u0013��z���\u0004��3~��1r\r��\u0002��|��:]�ڗ�l\u0017rl\u0018�a�n�u\u0012��\u001b����^\u001e�\u001a�{�M\u001cI��\u000e}�ΜKQ#�6\u001f\u001dD�0\u001a��\u0018��@\u0007�ˠ��֣A4�\u0007X���\u0012,��@�.?�i�#���\u0016�\u001d!\u0017\r\u0012�nN�c\u001d��K�P�NǾ�/���FP7�|�׿_���\u0019�r\u0011N�I�I�ڱ/��C�!�_%���1׋�\u001dU�P�\u0014vD݇Lt��\u001d3�\u0010o�n�\u0016���壧�YĊ}0��\u001c@�\u000b�\u0018bt���\u0018���6�\fJ��E�,��sTM�+�d臇S�����N�5_�U򩎾� ���n1W�k\u001en9x.��\u0012a7I�'�\u0011\u0011���L&��\u0013��p^MA�Y�fY�\u0016\u0014l(T\u0017��l���\u0018��\u0012�]K����H'�\u0012O?3�\nѰ��U�K:o�A1�\u0007l��M{����S=��5�0`X\u0005�v�m�ڣ''\u0005���\u0002w�s9�.N�\u0001����p.ֶ\f��j���1\u0000e�WV\u0017���#��\u000bN#\u0003��׃d\u0017��\u001b(Q�-\u001c]�,;�݉zJMqe�]6���\u0004y'���!94��0Ef\u0011Ihu\u001fNe�==�\u000bf��,\u0007-\u001e�Xǣ���w���V/>�wuNgS\u001c\u0000\u0000Xd�Ј�g��FV�\u001e\t���\u0011���\u0006\bCM��q�\u001bN�ɍ��)ApQyc�D�̈́\u0013=�\u0000Ȏ?��aSa7�pJ��?�%�\b��a\u001e崽N��b��J�&�\u0019��@�R�&T&9i3-D?Tt\b�VL�����\u000f����\u0006��{���l��`\r��0i�=\u001d��&>�����r�&\u0011�m��r�\u001eˈ�8��o�\u0000 �7���K�a�M\u0011�f��>I*}.��\u0018�����v��\b�\u001beꚴ\r\u0018�Et\u0012'�3\u001f\\Bi��kǙ��2ě\u0010���U��iG%\u001aHQ�f�L�`�&8w9�x�8�\\���z�*V�\\Z\u001c�,;3H��>�uJ�\"@`\\\u0007!\u0000��AL�\u0007����\u001eX�\t�8\rK0Z���n�cr4�¯���NѾ4�Q\u001f�q����f�ڊG*�����r\u0005��F~0Ga\u0016#a*R��Х���?�.�\t\"���\u0015�;n�8w��¿�\u0017pE/�\u001c\u001b��\u001ecdRyr����s� �W�z�+/,����\u0007���_}��2��.Y\u000f�MF�U~s�W&��\u0005��25��.���ܱ\u0014hjm�p@�æ/y\r�\t_�l�\\\u0018�-\u001dRܾ'�{�hIs��l��w�v�?��T<~{!�G^)A�R\u000b��R\u001b�e�>P��z�onJ ��[f�b���\u001d��9�iH^%!��\u0004#�%\u0016By6�]\u000fo�v1�3�d��9��,oW�\u0005���q\bt�\u001b�A����J拧p4����d���AF�\u0007Ѐ��2�\u0017�s��!�\u0010\u00168\u0007U�s^����m�\u0003\r}y�q�y\u001d�6�2��C����{�)�J��&�\ri�|\u0000:%[��D*�Hxvi�Z�2�F�?���\"x\">��~\u0004jAC\u0013\fIu��D�S/�2>��\u0007��L�c����\u000b�q]���\u000ea�(�wڮ\u000b�ۡ�>�,ʺf\u0017�W�\u0003\u001a.���C6[�~��$\u0016v��ghZ\u0019tV�\u0003|��]2�ć?��\r���Q�;\u0004@jr\u0003����mZ��e���af��n�a��}iCd8�l�1�*\"\u0017���Cc\u000e9�\u0018a\u0019���g�`�h!�q|M�{�kt���{\u0001�\u0007\u001d\t���ѳ��\u000fϚ[ڍ��#\u001cנ��}EfQ�(Y�D^\u0012\\��%Lf�:�\u0011��\u0002�RR2�w��9�\u0016���so��W�\u0017�9��\u0010���|��Q\u000e٫\u0019�ΐ�B~�…�#{�$�\u001cY�\t�ҭ\r��Gʱ?�qܖ�Va\u001f\u0014E0w�����r ��:��u���j���j\u001bJ�\u0011\u0005fa>�AN�\b\f���\u001b�����#k�x�詍\u0007��~��\bڅ��\u0010\u0001�-!W-� Z�:�tUqAX�)�/&��}>�\u0004�G�\u001a�����\u0012�c�lw��k�\n���\u0002�-M\u001e8��5���ƭh�ץ\u0002!��\u0013Y���E2Ts��[��� \r�Lˌ��\u0015+k!Ɨ\u001a�K�dPu�v \u0000<\u001f@\u001b��{<\u001da̾@���\u001c��N��V�\u0003���[3�X0�\u0003\u0002\u0010�i.�r�\u0000���1�?\u001f\u001e!Tq�IU�cU9t]�D;O�4\u0015����U�\u001fm~j0\u000f�\u0014�F��\u001d\u000bf:-�\u001e�)���\u001a�z:�݂=z\u001db�Ov���=\u000e�_\ra�n\u00132\u001e\bN����Rn��w�/�\\�\u0000i\u001f聾\\N%pH��M�?R�\u0001�_w�zO�X앥\u0012�>@{C�:n�AW�\b ����D��,��%y��\r'\u0013<����\f5#O�\u0007��˛?25�~��t;�0ٍM�޸e���k\n��=u�;ɦ@�\u001d���I'\u001d�v|a1A�ߠQ-1y�u��\u0001�z/5�c\u001c\u001aA`�k\u0011��\u0014��\u0003����\u0010A�m��b�E�[�N�\u0000C�{�~1\u00056٥�R��\u001d�\u000f��bm� ��\f�\b�&��\u001c\bBv�B)\u0001\u001c������i���\f�K�괈�\n�Z�J�����_÷A���\u0012j��#7�\u001d(�ԍa\"�\r8-���\u0017\u000fR��WV��\u0006�+!L�zg��gX�ʔ�7\u0015�qI�\u0010����\u0001K�y����i��RRS)��1��&��Cn�j!G)��<��:=]sy�ON��.Y�<�\u0017��-_)���y��i_ˮ.PbA�N[ʱJGq�|D<����)7}Ƞ�9���`�\n��~���F�\u0017L[�/F�G�Ը�͔�i�Ώ�<�ӫ\u0018\u001d�:2G^R\u001a�Bf�����f��\u0016�W�O\u0007\r(\u0000�\re\u001b��8�\u001e'6+�k\u0003o,�8�\u0002�\u0011.��\u0005o�>\u001e¼��\t5�5\u001e�\u0001o\u000f�[\"��G����/D�ߍ��[���=��A���i���x��t�6\u0005E���(�nęN�[��]}̴\u0012\u0010�A=�\bH��]���8u��u\u0013\u0003R�\u0018�ؗ�:\u0002q�d�]3\"\u0014S3��h�\u0005zU�\u0000\u0014^�ke2��mC�߲\u0005pF�?�;\u000fs>0v�\r�:�y\u001e���\f�\u0005C���'���f�\u0007�`\u0012\u0005�Wg#\u0002�5�ɭ7����\u0005\u000f�O��\u0014\u0005U� \u0017��W�\u001e\u001b\u000f0W�ů����֝^��\u0005}����bn�y\u001e-C`���P-��p��\u0003|D���N�&��\r�ݟU���[�\u001b�o��u�\u0013m\u0003���Ow�-�)�\b\u001fV!3-�h?�8��*m��P@\"���N�\u000f��L��@�����$�xY.�&E����u�|�O���|��0m��NQ��,CE(��|��y/�uG'[��:�ښ��I��6�A3�\bp��X\u000e\u0001��\u000e��\u000fn�S��sB��\u0006�\u0001���-\u0014\u0000Q\u0015������\nr.��G)O'\u0000\u0000��\u0016�޳\u0002{2��\u0002�KQ��C-1�$W�\r7�?:�-�/�1�H\u000f�K����n�X���\u000bN\u000bY^w*s��ަ���\u0001\u0007\r�Z���\u0007\u0019uC\bG�q+_̍r�)�Q�5�=��Z\u0017\u0007�I&��G�\u0016�7�.�(�(���H�Ӣ�\u001f?��\r�I���͆L�[T\u0003U6�oc\u0016�Ay�7y�{�'�\u0017��r\u0005K��Irm\u000fGT�\u0013؍��@�xh�A��d$B'�Vs��C�4\u0017�A�\u0007\u001e�5ei�3sb\u0019Z��ɏ �ۑEg�\u0007�嬥�nS-xF�i��p����#�Y��A,�\b����\rC[\u0016e���Ö�\u001a0�s��@��\u0003W0�\u0007���返�-�aV�\u0003�����=�y~}���)�25�JLQq\u001a�<9��IĤ�.�f��B�\u0005���q�%{=~�R��T�n \u0019�u\u000ex�����8t�\u000ft����O*!�5j�=��-[g�\fÄ�\u001eia+�,�v \u0002�⬉\u0006[�մM�Rҝf�9d�����A���U�Y˚�\u0018�Ufh�=\u0003M\u0007a\ty��6�u���.\"��7o�\n�\u0004�$r\u0004/u=�C�-�'b:��>��9\u0002\u0002��6g�u-�\u0001�O|/4���0I@�C��A�s��Wq�p���O\u001e\u0006ܙ�+�e�[�{F�\u0006*�Т{��m�-�Fk(lY�U��O��\u001f��wy\u0011�ƺ\u001e\u0007^\f\t�q�f[H���__��5'��ծ��\u0001*hZ�8�u�M�\u0012���A1�\b���L�S!\u000bl �\u0014w*������\u0010�/��0*��\na\u0010��\\:\u0012xǠ\u001bS\u001b\u001b�2u\u0018S��#�Z@\t+���\f�x�?_�@H�(m����M�)\u001b��p�н�8�3w\u001d)=��R���\u001c�\u001d�7\n�0�'=>*�_\u0013�F[��\u001cI\u0017���Zk(��F�~��~�\u0014o���V��*���F�_�8�\u0019�\u0002S�\u0017W�\u001e��\"\"�(�~��\u00079zc.ׅ,_H�X\u0011C\u001at�\u0005\u0016��\u0018����*�\u0004}]�xo��9���3tQ���2�7#��`�I�|���ѥ\u000b��U�\u001a\u0005b�U^J��Gu�=pO��:��С{���Ia����o3�uQk\u0003\t@B��-�\u001d�)�H����A0�\b���L�D�����RQ��ZL%;sO�F��\u001e�U!?@�)�$�0\u0014\u001b\u0002��<�\u0003A�G�)\u0006�?>�{�/�\u0002I��\t�\"�;�=\u001c�?�Xy����S�Ѽh���H�iK!��\u000fM��y���\u001fWT�\u001eGp\b+�Q��c\u0005��#O FI�Ĥb\u0018�H���'0\u0004M\u0017��q�rP\u0012�(�\u001b�L/�fP���UI\u0018�*.\u001b�\f�K�#���V�\u001e��\\\u000efL?&��ڔ�\u000f:}�>\u001a��¸�vt�\u001a\u001f\u001f�{��0\u001f�\u0016�\u000f���K�\u001f��\u000b\u0007:9���jf��\u0018[���c\\���0S=p��\u0019?����A\u0002\u0017�p�*����>���:m˷��\r�]Ar�\\g����E�0�\\�A2�\bԀ�L���(\u001f\u0010�24k �G�-H\u000b�ץ�5��n�R\"��?��\u0007�RW�_I��\u0005�\u0007��P��3�\u00062�]��\\َ\u0001PA��[� ��ȕ��\u001a�\u0002\u000e\u001dn(�G`��o�����rZ+X\"m]���$�\f�\t��n\t�v��rB\u001e��V*��k\u001e��h�\u000bݟӟ'\u001d�\u0005��N@\u0005>�\u0003jVT\u0012!��m�}<=3�g��B�#�[�\u001a0\u001e�.�%���\u001a\b%g���l+^\u0011#�B낄���\u0004\u000b\no�B4f�7�\u000b�L�m�q>B�U\r\u0001^\u0002\u0000�<�]��ր�\u001dyH=��E,�-N\u001a��0�1�\u0018�x�\u0002o�69̾�n�5!�\u001b�\u0011k�6uJ�Y��� \b�E\u0001�\u0012�A2�\b���x\u0017\u000b���\u0005N\u001d;_\u0005�\t\r���$m@^R�� \u0014G\b�����.GZ���\u0015�qK��J��ZE�J\u001c� \u0000���>|\"q��`K�E5�#\u000b\u001dʭ\bQq�\b�r��VQ<�\tv��CZ\u001cY�\u001a��c�x��M�)\"�z\u0018\u000b\u0019qb�5��V&_ĩ�u ���h��\u0003t�&�c��{}��}'lt~'�����R�\u0014��\b�R �J\u0011�\u001c�\u0019[\u0006#W��o�ݿP�gq��PQ�\r\u0019�%��n�iļ>����T\u001es;����-�0�Y@�vf��\u0007�\u0012M�\t1�q1��W�\u0012X�A<�\b����|D*\u000f���? ^�\n��d��z{��\u0003���dy���C��\u0012�s|�+�\u0019��M�`�ة�Ϭ�H\u0015s�L]rO�+�&:��\u0017�\u0016�⻬�9��\u000f�)\u0000\rg\u0000�\u0018��J,��}a��HoQ�<��Z������E3�a,,�DИ(U��u ���۬�ډm\"�MX>��\u001c�Ǫ#\u0011w2�\u0005M��dZdz'\u001f|w�T�\u001d\u0003��\u000bc\u00177ӊ�=*\u001dqq��f\\|�iě�V}Lv\"\u0002K�RB�\u0011�pR]\u001eݲq�3�[��CbA�~Yw\u0013E;�\u001bY] ���c��K��e��5K頶�yEI�\u00036\u0000��&�Bn؇\u0013��?���u1r//����)_�\u0016E}�$�zꎁ\u001a3+�)��Y�A;�\t\u0010���uHj��L\u0007�ڨ�'\u000b8\u001d6^�tB��On���ƑI�pu�k�1�\u0012��[�y�+\u0007I��\u0004��a4YsZo4\u001e���\u0004�\u001d>��o�ݼ�l�W�\u0006\u0019E\u0002�Ϻeᮉ\u0007u�q�LD���A��\u0007����IE\u0007>\u0015&\u0014��J_xC𙘜�o���H��kl[�.���K)������D��\u001bL��?%\u0013ej�k\r�cEM�f}ž\u000f�\u000f\u0003\u001b\u0001:� �l'��^b�����hL�\u0019���)��g\u001aڢ���'“���H/���H�\u0013�`\u0017�qQ��q���\u0005\u0003\u0002Ts;+�͇Y�w�,،$\u0017T\u0013��]fPp��A|s�=��UF���(�k�\u0005}b\u001c\u001d��,�Ք#�&`��X�AA�\t$��7\u000e�nj�\u0014��9�\u001d,T{���+\u0003�G��m�\u0014��Tp\f���u?����j�fp^;\u0010�.�u\\\u0011p����\f#�\u0003,j<�=��\u0013K8tk�\u001f��s���o�\u0011\u0007�2�G���\u001b\u000e2\th��}o��H)x�\f����X\u0002t�B;:�;�Q`��[\u0016#\u001c\u0011\u001b�\u0004\u0002ЦbKRvc[g~\u00115�%���(�c,w��7I�k��\u001b(o���,�\u0019�;\u0010\u0005\\\u0010x�aY��\u001b��e��t��C�r���VF!\u0003(�{9\u0005�<�(X*��4��Ol\u0013뒹2/��Ȉ!eP\u000f.�z�s�\u000f��\u0018<՜\u0007�\u0000hmz��ٻ\u0006��J�N;��/\u0010s��\u000e�r\u001b��eqx\u000e0\u001e���U��\"�\u0004\\m$\u0000�\u0000��\u0017�Aq�\t8��X�{\u0003O�����h��%��;�t���ً��y��E��\u001a\u001e�{\u001f��I\u001d�yS��Mmŷu�$Sm�\u0012���_~]BHL��*��d��Q™knw:\u000bc9\u0005���R��][ʄq����Mp�٩��7������-��\u0002��=�*�+��8\b� �m#\u001fm�ċh�پw�-\u0013�I��\u0016\u0013���ee��+Jf�\"�#[!QI�m�x��\u000f7�\f���Ө\u001a\u0017�%��X[C��Z/Ua���d��\u001e'=��V�V�\u0017^���z|a䰴\u0006��Y�\u0005\u0012AG���\u0015��.-��&��s\u0019+�nQd����K\f��t`\u001bҹ!�\f�ks\nņ\"Ϋ��B�=�:��U\u0015>b\r,%uuVro�X�hɳ�h\tgfތFi�\u000f�m��O�|�@\u0018�W_ \f\u0012\u0001iI�r�;T��(*�8��jT@�\u0002p�@\u000b�A<�\tL��MO҂�P�3�\u001d��'TV�Uu�A�.V��a\u0000�,��B�\u0017\u000f4U\u0001\u001cf�n\\8�\u001059�Ij�|�p\u0002c\u0002[R�\u0018h?){\n��\u000b�MLg���kf�J*tY��**��j�ğ�TӉ\u0010V4\u0018G\u0016u\u0019\u0015w\u0012�kz�L_�l\u0010|ԅ�$�[\f\u0010/\u0003��Z,��9�v��f�Džu���Ĩ�R�A�/.�\u0016td�3\u001ciS�c\u0018^�_9\u0010T��>�z�w2�݅x=:EyF @\u000f_�)`l�H�?@Z\u0007�3mC�\u0014\u0003p7\r|�v\u001b���=z�=^��L�N.?��\u001f���h߿���\u0012��=���hȤ\u0015\t\u0004\u0019�>8�\u001c\u0005h�X�\u0010��[�s\\\u000e�:���搜��\u000f�N����,&�\"�G��\u001a�b�A@�\t`��L�K�63t���Q!�\u0013&�f\u001e��<��r�\u001b�\u000b\u001b��.\"5�w���~�^p\u0001>@�ӧ�q�A�^6��-��\n���j\u0015\u001e��-���v���b��/��9X�g?��@�2���\u0012oGv�߻���ٜ��T\u001f?��2���b�p}q��\u000f��j��=��\u0003+\u001a�ؗ)ϥ\u0013%j��N�'Mh�U������Խ\u0015J�F�\u000e=~W\"��,��Z�����IZ=[Z�W\"WU�7\u001drK���\u0017OL��i�\u000fe�/�w\n�q_�_}I�\u0006\u0000�\u0010e^`\n�@�5�K?\u0011\\���Ç���\u0000����\u001e�T,�ak��h\u001f��\u0018w��L�S4�(�|���b\u0004V?��-�\\#�#��,��ɘ\u001c# \u0018�£AB�\tt��NR�pQ\u000bk\u0012\u001fO;�:�Su\u001e��3q�����\u0002:�TV_\u001f�I=������P��-��I��@ߖ{{��\u0012�\u0010j醿Ni\u001f\u0010Q�u�1F����%��(�\u000bی+,�|g�\u001b����UL�\u000f���L��fO\b�����ME�r6U\u0011�C���J�z�\u001a\u0010��\u0006���Pmd��ʫ%�B�a��hKF���~o�\"W3\u0002\r>\u0006\u0019��Z�T;h2~�TC�Q\u0005�@�\t�����;�RP{4�?*�7�W\u000e�\u001eJ%ۯLF�\u0003�\u0016�\u0002��}-f&kŨ�\u0017�8z����;8�488�I'Í6��o�\u001d1\u001ez����\u001de\u0015��^N\u0004����x&�\u000e$v���\u001a�\u001e\u0003��[��,A��*�\u001cPh\u000f\u000f\u0006�AF�\t���L�-E\"��1�O����\u000f�4�\u0010�^J�\u0019�\u0016�r\u0004��؀a�2H���^c\u0002j7��\u001cN�\f\u0004d`��\u0000�,�E�h\u0007\u0018b�\u0005�\u0013z�\n�W�vp&Tav�tt�Z�u@6\"亽�l��BUm��'�i};�\u0011��\u001a\u001dY�$ �y.�Bs�\u0017s��:��I�n…��m�'Պ�x���̑��e:5�)I�\u001e\n�6�}C\t�lX=3����AA�\t����\u001a�\u0013�2\u000f\f\u000e}\u0012)}��\u0012��2�6�\u0019j`�:[����\u000b��k�m�L5��>p�,%�)��Q5��n��ݸ��\\!W�r!��\u000f��=z*���{�����,J\n\u0001@�\r��s��ϛA�_�وS��`�\u0003n�����⡛\u001f���p��_\rEg�z�$ӭ�za��a�\u0011�D\u001d\u001e[�z{>�\u000bC\u0015X�a]�5Z�[��^��t�B\"���.ɚ\u0011�{�\u0011$�,{\u0003\u0007���d�fK�\u000es\u001f���d��\u0012�\u0015��\u000b\u0014��h<\u0007��k�\u001b9d�|\n�O�z\"W(���I��Su��\u0016B\u0007��FA\u001cp���p�JN)0ˢ�ʣRvϓ&ѐ�eq\u0005w��\u0004�U$w����\u0013�s\u001d��\u000b�\"X��AH�\t����\r8���\u0016�Z�E�p\u0016\u0011��\u00037\u0019\n\u001a�\u001dó��[��P�\u0003�.�UO\u0012��\u0004=�+�\u0003\u000f�؟����d�2��X�7��L�X/\b�\tx2U7�A\u000b5p\u0002\t�(ƻ�8�e���Ƭ\u0015j���g��\u0012\u001ajÊ�����$Wqع&\f�`��PX�/�`��m� ~�*�d\u001c�U\u0018f)w��t��75I�22\b\u001b\u000f�;�w\u001c�W%4��<\\\u0013x��b�@��\u000e�<^E=��s�\u0001Q&\u0016'��\u0012\u0006Mz����L��\rh6[��(�*��٥,�*����cη�]l\u0007�k���\u0016�9\u0015�U\u001a�Y\u001c�C�ݦ�\u000bo���\u0003�b��:���_g�\u001d�TS�o��F�˶xS\u001bkW�H?���cm���\u0001��RH�AE�\tĀ��\u000f\u0011\u0011!u���x\u0019��\u001fiff��1���B\u0010<���՜���h���������a\u0018�\u0013��8(\u0014f�{�(n\u0012\t�\u0000�\u0001���L���Z����\u000f��λ�e�Dž0�?�m���><�å�\u001aS���\u0006�2\u001b\tp!9��\u001fM�E��\u000eC�/\r\u0019L��]͸\u0005��z!4�•]��\u000b���}���l��vU^��A7z�}�ݺ�\u0016��\u0015�=\u0001(�jR�_�h�)�\u000f ��x��[�r)��f�Q�v\\c��\u0001��)��)ܢ���3�?fI�\u0000\u001d<��bc�>�nD����\f;M����x�����R�e\u0006\u001b�F��P�kyP�)��\u0003�\u0001�EZJ���\nV\u0011�\f[�D�\u0001�8�F;ˡ�P\\7%��^�-6�A?�\t؀��\u001eX��8�Xf\u0006��}��ߦ-Vy��U�\u001bb\n��!\u00057J\"���B\u0010'|�0U�GX��Z��7w����E��\u0018�z�\t(�z�)\u0002qX�K�\u0006�ںNS\u0006f�J�\u001a���\u001ajK\u001b\u0016�J�\u0019g�2(i4�/��\r;-\u0018�>x���O=�ނ\u0007f\u001e�ql'~Bΐ�bvO\u001d+���_�ĐtT9�\n�<^����\u0001~��D\b\u001f�~kkk�\"�Q�}\u0012QoP<\u0004�i��\"eu�H�����[\u0012\u0014\u0002��ǹ��Xt:gK\"T&\b]��;.\\�5�3X搟t��=\u001c%=ac�\u0013�D�\\ѭak@��S\u0005��ޒ~�Tק�j�_;��R8\u000e��G��\"Qv�6gr�'�­�Hԭ\"��^[{�W]�X��A<�\t���\r{��Z.�\u0006gfzK `=%^���mݖ\u000b5\r]\u0014^��]�1�q\\5Q��i�@�q*Qޚ�\u00003g+�i�\u0000���0\u0013d(��u\u000f�=yX�\u0000\u0013G��-�\"�+�-_�c���F�\u0018�\u0018��Z��N\u000e_�c�\u001a�b\u0010��:褛s\u0012�� R\u000b2���>�\u0004�|�<��&\u0011�b~\u000f�N�l��|.�\u001d�5T��LkvvH�\u0015� �\t�'��\u0011\u001d_ū3�B&\u001b�CV�\u0011,�\u000f���X�%�'�+Ag��0\u00025R�f��!��n�\nT\u0002t|F\u001e\u0001�\u0016�^:@�\u001f鎺?��J\u0014�5o�t)8g����/\b��F�Vb���\u0003�D\u0002m^K\u00012\u0019E���fj��\u000e�|\t7�U���7\u0018��m8��AM�\n\u0000���\u0012]A�\u001a\u0014#E���,I��'��\n��Ѽ��Q�^��8\u001b��\u0018�Ù�\u0010D�%��\u0012�\u001dw10ԭ27ߐ\t��3ڜ��3(��\t\u000e&�y��߾:��^� ?\u001e�\u001fH\u0005�[m�5\f�k���fH\u001f�\u0013�餼X\u0003>���1�~��R(���\u0004jE����u�\u000fոL\u0014 \u0004�/4\u0015A��3jն�g�7���_�\"���H�~d\u0000��\b�C�t�U:n�w!�WR�\u0010K\u0006\t)m@��g�'}�U��[\u0013���p�\u0002��E\u0014\t/.)��woX\u0015�Z�����n�ئ \u00000Ԍ���736?A���\u0004�O\u001a����\t�\u001c����X��-9J�\b�\u0017NUp��O񵫿�A��6PG�3��'&ցlCN�rJ\u0015�;#��AF�\n\u0014��M1��[���úIy�Y��\u0016\u0000\u0004o�j�u���\u0011��a ��\u0012,\u001f\u001at����\u0000B�'2$\t�ϭ��^\u0015�#t�\u0018,@8P�+�\u0001O5��\u001f\b\u0015�E\u0017_��0��y\u000ej2��\u0007+GZ��j<�b=����\u0004��B^}8���ע���h(:P�\u000eNJ�`���+��I5b\u001b�F)�\u0015Z����\u000e����,�a�*��\u0015\u0017@V����1^9E�\u000fj\"�Bu�O4��D�LE7Q2�6�Y�\u0002:tx:u�q�4�f�=��\u000fZ�u�-fd�%^�CY���T��\u001e��H��\u0010�3\u001d�\u0019�5�x��<��Q\u001f\b@\u0017d�.r\u0002��)_�����3�\"�D�H�&\u0003��\u000e��,\u0013�F_���\u0011��\t�٢K\nZe�3�)��\r��A<�\n(��L�a�l��\\��Q,8\u0015�e��u�积�\u0018]\u0002Yj\u0015}q\u0014��D}f��\u001b\u000b:=�\u0019��&\f�c��,o�����d�ٻ�'\u0017`*\r \t�\u000b���Rg�e��ɭ�Gҽ���Or'�ސ�8/�w��\u0015�h��&\r��10�9�ոa%��y%�\u000f_\b��\nx�k�\\)\u000ew0b��P\u0018\u0000�F����6A�\u001a㗸\u001d����U\u0000�&�6���m�L�\u000e�ޗ��θc�\u0001w����\u0011d\u000b��Y*2��Y��1���0��,.Q�Q������5{\u001b�\u001c<�\u001aO������2\u0014~?�̕��\u001d\u0011��~,Go��}����\u001aP�iKg@������\u000e��n��6]\u0018\u0011�\u0014�i\u0012��A�z6��AJ�\n<��X��\u0005�\t�Q\u000ej��x���¡C5\r?\b�E��B��R/��Mk\u000b*�^�K��b��VE5kɰ��Z�);_�0!\u0004��{0@�$\b\u001emP�c�O�y\r\u0013~uY-�\u0012�O5�\u0004�/\u0012��\u0007c��۾%�[�sF;FE�0r�4\u0002�t�6�K3$��6\u00014�&��,�R0vU����S\u0001\u000b\u0010-hn���d�v\u0016�~^\u0012=�ʼ\u0002:��U�h�sb�@��AkL�C5~K���r���^H�I\u001ew�u�Y:�3�L֮�K\u000fW�R�����@\u001b�\u000b^�'�b�fZ�mH+��N�Q��\u0004Ge��\u001b_��'R\u0016\u001c\b�\u00104H���%\u0006g傘\"��~�D�\u0010\u001dj~�c|-��\u000f�&\u0005ҏe�'�g\u001f���\u0011\u001c6����\u001b�A*�\nP��X���sR!C\n���9���][\u00112�$�`%��\r�+&�_�dm�\u001a9�\u0004�*0BG\u0012A{�<��^2x^�IR���E��=��h�A�M-���y��\u0001�\u0018m+c>3\b&9QPozjʛt\u0016\u0014\u0005�uT=��2�.�\u0001^i(�+����5��Gד(���\b�\u001b\b\u000eExl=R�…��t!��[��h����O��۩-���x\u00071�\txݑI.��e�\u001e�\nm\u0015\u0001�\nM|v��vS�\u0014KC��=ff\u000b��u��\u000e\u0005\u001c�f�~��aw�-�ŴY0=0\u0005���oα��R��s\u0004�r�:\u0005D���iG���ʜ0\u000b%2��.Y8���M\u001ex�3�yv�����A'�\nd��X�:��~\"$&Y\u0019�\u0000S^\u0018��p��\u0004�\u0006���*\\\u001b�pݝ�h�0`��\u0000)όng�\u0006�\u001eJY�d��5ۛ\u0005�c\u0015H\u001f��_}�/l��\"A4��cT��>?�=}�o_��L�T�~�@U�\u0012)���\u001a��DRX��!Q�T$\u000f�S �!lj\u001a���J \u000bv\u001c�\bC)oY�\u000f��\\\u000b�\u0001�Q^��\\�.}i�8-\u0004f��B\rjAz\n����9�\u0007�7�㍗R����\"X;�\t2\r��\u0007���?��\\����7)n�\f��q\u0001\u0005��|�|����ڒ.Cuwa�d�)�>�+\u000f��T=X_凧�a2\u001f���/N]&���+\u001ek%�8j\u0005WQ�Z-\u0013�s��m�.\b�g\\Aѻ�4s��8|����<�G+�\u001fb=�̿su��\u000f>�sn�v�]^Vr�Kn�n&��q�#����:���?%$چe\u0001�v4v�U�ۣA2�\n���L�\u0006^��wG�\u0001ԟ6�v�\u001d\u0006Z\u0005��\u0018���#�\u001a\u0010�.�\u0017��\u001f��O���\u001a�5���|��Z���;�r�OM�FA\u0006�j��\u0019;\u00138\\$�\"�QQ��ދ|����� E����p�#T�\"\u0007�F�S\u0010@\u001d��r\u001fU�0�u�\u00032c���W��\u0000e'\u000bl�!;�\u001f]��T��\f�Tn��{q\u0005��S:�BX`��uW(?\u001b\u0005��%�\u001e�8��O�e�Eډ=rQ~�x\u0005���y&\"��GE�*�E��x�\u001b����d\u0018KFrA\u001c���;J�jO��Ax\t\u0002�l��r�ũ\u0012\u0016�]�[\u0010{\u000f!c�\\��X��>r�,K�b82�\u0019��,�\u0018��F�P\u0010�3���ǎ�$�A0�\n���L�\u001d\u0006�\u001f�h8�\r�\u0001�0%/��\r�^\u0003\f5\u0011��94��HwԖ}�l�b\u0012�7\u0001h���\u0013�0QVv��Dý\u0007��\u001f�Q!6$�b~�L<;��\u0011�=m���H��Sw�xŦ�%��(\n\u0016\u001f\u001d\b�7��n$d���\u0019\b'A�\u0011{�\u001a�ۏ�D\u001a�p8��@�ܝ9 �\u0002��\u0017��%Ղ�ؼ-M����Y�[�\u0005�>7Y�^g\u0018�*b�F\u000fԗ�hڧZ�\u0016/�\n��\u0000�8MP�\u0007g�E#t��ʄũJ\u0012QQ�\u001aˆ��~l�\f�Y��i��I�?�qi`x;ZΞ�xn׏(�E�����\u0004\u0015f{�7\u001c\"-�tiw��6�d�&e�0�\u0012Ot�~4͇���\rOc�A/�\n���L�%�~\u00078�jC\u0002\u000f�x\u0015\u0016Tw��@�)��Wޒ�$���\u001d��N���n��\u001evZ:�]^P쉀\b}#z\u0005�q�o�娡��@?]����\u0014u\u0015\u001fL@��o\u0006+�����R\u0011��/@Ar��U�o��\\M�����?�\u001e%>fL\n��\u0011\f�@�E\u0019S�-]��\"\u001b\u001d�\u0004�5}��\u000biH��-(�\u0013�`\\�����KG�d\u001eӉ$�����\u0003��Lb+�\u0007\u0017��)�z`�r���Ȱ�v��A�a��r[J\r���_�|??/C�:�1\u001e���9�tͥgQ��L\r�\u0016\u0011��v�B�\u0018��\u0007�����9\\�|\u000e�q\u0011���v�\tN%��$Q���pQ*��\\T+�QAS\u001eg�\u001f�4OV�\u000f��\"2J\u0019�^��\u0005�O���\u0014�R�D3yK��?7�g�\bʛ��w���M\"5>\f9��n\u000eQ'UA�\b�\u00170R0����Ň;�Qe�g�\"3��0�\u000b�?�b��\u000e�p�ʹ�/��w2=�>=Z�H\u0004�ݫ �N�E%�b��L}��ͫ\u001d�S\u00122LE�E�5t0\u000e��X�\u001b�K�7�-\u0000�Z��(�y\n��1W䑺/��\u0010������1\u0011+�j\u0005\u0010\f�\u001f.H�VI\nx�ӈY�L\u001c\t�e\u0017>/�\u001dW�!�SKW�\u0017�&���=Li\n�A@�\u000b\u0018���흺�`�\u0004\u001b��!J��b�=\u0013�����?X���H\u001c�H\u001e��c��^�鵇Q��w(`�\u0015sw�5\u0003���\u0015,q3���lbo?F\u001b<�Vo����\u001bDm��\u001a���\u0015K\u0012G�t��\u0017:8l�=��Fji9�a3�*k��\u0012��7�HC�\u0005ʎ����\u0007\u001a��X\b7\u0006O4C\u000fI�h��\u0007ܙuU���o\u0004��\u0018U�<=��}�bJ�7�\n�S�3�\u001e\u0003i��a`��\\�\u001a��\t�E��\u0004\u001f�\n\u0019Z�h���m������\\u��l��?\u001c���\r��C��\u0006J���<������\\�\u0019\u0012��I��\u0017\u0001)��޸�k�Ҡ��.����\u000b\n��Q@C&´�[O3W�\u0003U��JM?����6'�AB�\u000b,��L鄛��=_��:�O&���}����\u0014B]�r�?��\u0014Db�ňOξ�b�3�l�S���\u0018�X�dz}�B�Ɉ\u0015�\b;0�2�8!7d�^i�$O�3�6�ጡEB��;\u001a�\u0002m�7[3\u000fJI�E`��C��\u0014��\u001d�Q!�C��\u0019�p\u000f�|0\u0013v��;�ا�.t\u0015~�1V�R���h͋+&Ά)n�Eh��8�\u0011y*��\u0012�\u0012�S\u0002\u0017\tSHH2��\bB��%;a,�T���W�V&$hm��Ȟ�W��_&54��,G3��Dь���\u0019\u00032��\u0007�)�h,��[v������|K�Zt����I��6v\u0004�'@�\u0006!�X��J��N*��\u0007�\u0000�)!v�-Զ�6M�t\t^N��ۣA<�\u000b@���\u00123l\n��h�p�|�t���\\`�\u0010\u001a��b8n\u001a�6��Ga�\u0017ʜ�\b�\tj!��d�}�\r��u_ص\u001bhUw6�w�\u0002�Q����\u001f�c���;�\u0017w�I4M\u0010\u0007��*�4d�,\u0012c��<�\u0005\u0015x\u00038��Y�\b�{%�_\u0017`�\u000f\u0006=\f�f�5�g�Jr��ochsv\u0013�����\fdñO KP�\u0013\u001a���i�\fֈ�ݻ�\u001f�t�v�Ϧ�q:\u0007�������=�\u0012�(\u000e7�\u0005�����uE�b�����,�����{�D|L\u000b���x�%-V+�\u0014_�:�Y\u0007\u0016�H@�Di�p�h\u0010��*!�lt���@��\u001c������6x�8z&�\\\u0001�7\u0003qU�Z08��b\u0000�����B�'zn�AC�\u000bT���\rW�\u0011�}]\u0000����\b��;�>���}���\nOB������j�O\u0004�X�D����;��rU�6��A�&:È�g��}V$-g��\u001b�RV\u001a��y��� ��]�K����Y\u0013Y '�\f\u0002���A��Vy�Ĺ��������tn\r&�\u001c�_V+p�h�\u0000�\f�ٿ#\u001f��\"�Jʐ�\u001cP���\"ǡ[�AG\u0014�e\\��k`��\b%E\u0003숤$ڄ�+�I+\u0013N�\u000f��Go���\u0014zm��?k�\u0013v)�҇sL�+�dX��$�\u0010��B�̺�`^0G�-Yӱh\u0014\r��\u000f���3\u0003�/��}��\u0015��LJ�\n/��u��\\�\u0013!��/�\rFX��o��\u0000�\u0000Ln��\u0018˨��^?D�\u000eMS\u0006�׸p�A:�\u000bh���0����b\u0006\u0006Mg\u0003\u0019�\b�C#5\u0001D��!�=\"���\u0004��\u001c�<����|I�)Z�KcU;�~E\t�B`y��6&���S�\u0014�9\u001c�\u001b��uS\u001a�~�k�}ae�ߩs�7|>!-64k�DC�+�G������\u000b���-�,{\u001c��`6!߶�NLg�\n<�U\u0012$\u0002y\u0010Flex��\"۟������8�i5\n{Q(�J�\u0010Ǐ�d]\u0013� ��K*d��Yځ���9�\u0015�)\t���\\X�o\u0001�O��\u0019���`�i���a�\u00045�'���~\n}�Նn~�b0n\u0014A��I��\"��e��\u0017��d�\u0019�\b�}1�h����:\u0015�~A�CuN��\u0019VE���\u0016\u0013�\u0004��O�\u001b뮬!K����A<�\u000b|��1��o\b\u0002F��\u0012�\u001d�a+\u001e��\u0006̦�w9��\u0000.q*nv\u0006hu�4}%\u0003�h\u0000\u0001~�\u001dK��\\A�B�!�R�\\�\u0012�u��xPN�\u0000la:@�Nr\n��Ϲou�ۜ��T\rG��JZ���V�\u001b�I�}�\u0000>N�p�z�\u0013\u000ep\u001e�\t?:r(�\u0006U�\u0006�N\u00198v\u0016��[+V���R\u0017i��o�G}��R�MӰe��@�\u0002�\u0014\u001d�z\u0012k��F\u001bf�,p84؞��E����&�E�\u001c\u0019�ߟ��\u0019q�ѫ\f��?�2���񜓺�[\u001d�Gk�=uT��\u000b7���3UEc�]�\u0012�|�DXb�\u000b�Tz\nꤊY�P�/\u0003�-+�\u0013E`\u0019�=��������\u000f���V��3�e��6�A=�\u000b���X\u0013_�+C�bHm�\u0015\u0012hڤY��H�\n�r����\u0007��Z�Y�d�AMK�\f)��\u001f���$�fVq\u0002\u001e\t�)g�I��B}���%�v�j\u0016��-M�O�\u000e\u0012�&��\nL�\b6OWV���y�>�hn��`{�z\u000f�P{wg�\u0016����U�2Gz7�H�����W�=�c\u0011�{xL�G58i)k�R4v��+���\u001d:\u001eE��j_K9����\u0017���s&qH��YR3y�#�\u001e�ഈ��J\u0006�UF\u0017Q�\u0007�ܭ��\u001d����u��\u000f��^\u001c�7�h𤖚.zz�&�X��UY��b�@ʑ��p�\u0010;�m�A�t�a}�T�?�y�EkW�Q�f�SpK5@n�L���ɻ\ntٸ\u0013��\r<{�AC�\u000b���L�x�f�%�ھ��\u0013��A��k\u0018�,�\u000b�\u0011�(#\u0016W=�\"���FL\r�\u0002��Ja�u�Ͽ��]UK��\u000f�b\n�-�^��c�J ��\f劸�㸫���\\tt��\u001dp���h�j(T6Ӂ��S\"\r�\t��u\u0005��p�)�4�\u0014:\u001b���\u0000\u000b�D\u0018;;f���\u0000\u0010\u0004ٮ����\u0003�vo\u000e'*\nG\u000e�;����D�1�`��w��|y%�\u0018�+��\u0014�\fM'��\u0018.�~�\u0018\u0005��G7�w���\u000eS�SW��R���>�Bqڦ�&Uݩb4p�=����)a��e�\u000b����HK1�����k\u0000]��E��[<�$JS���{�ց%h�C\u0013-__�n�Ƀ�3�\u0001�'\u001fKE���܊4��ʊD�3�v�AT�\u000b������5\\�lw��k�\u000b�5����5�p�\tr� ]W\u0017�u\u0010��1��?=hE\u0002��=\u000elP\u001b��Q��ړ�\u0015��>>Sve�\u0011��oܔ\u001d>I�ۅ@x͉����\u0019��\u000b9C(\\�\u0007'��N\u000fSePWj\u001e�$�\u0018k}�\u001b\f�~\u000e7�8�,��m\u000b�\u00129\u00174�{Ե�1jK�\u0004�X��%����\u0002�4�Q�\u0006�\u000b1\t\u0004C|d\u0015[P�s\n1ʰ~ʁ�]|�G%�j�\b�S^\u0017ڬⷤ;\u001fx���\rW�g�IŽi�=�m�\u0003i���\u0016��\u0007\u0011���ڷ�[xl���n�#\u001c\u0012�7�CRp��~�O5F�\\�\u001aY7X\u0011�[��x7pc��z��g��kaK�a9�\u000f��HK_ߜ[o�2R�@t�[\t\r\u001e�2�ݥ���\u0019\u000b��M�P�[^�A4�\u000b̀���ӹ\u000b_�sy��~*\t�Y멓U^>sN/N��\u0016O����\u001f��\u0002�C\u0005֭]���^��\\�C���!&��\u0006����8U�\u0003�&�v���Mq<�w@�\u0012�KF9�UU'��\u0014\u001fh\"�U���{\b��Q\u000b��\u001b9y�ܣG��N�׹�)K���\u0014��t�����o�@�%�.q�8��h���}\u000b��x�j���%\")\u0014\"'\u0015�b%��ʒ!\u0002)YSN���_�lmŗ�D��:�*��i^��Ig>�w\u0011d�$\u0006c��\u0004\u001d�@��P��=r\b��C��q��\u0017+���U�\u0001@�h�Љ}\u001f����kZ�W :\u0014��������Dƃ��\u0016\u0014��\u0012�\u001f97�~8�\u0001i��Qz\u000f�_�A7�\u000b����0�\u000b�\u0007&WD\u000b$]\r�\u0003���Z%\u001a��\u0005n�K�\u001fb~��\u0001�\u001dނ��Ѓ�=�\u0001@�\u0006:�\u001c��H|��$�(0��.�!f�bu\n�e�\u0000�����R��t�\"�V� \u0016�����>�\n�Z�\u0005\u0014�eB.\"_ }\u0010�TBj��?�ֺ�\u001e<�\u0002n��v�\u001c\u0005IDN\n�^\\zklT��4��\u001e�����G)�>ٸ3@�|Y-썢��n9��w(F��W��\f�C��bRꚯ3v�\twH\n�����=\u000e��K#ᖾ<�\u0019�_t�!�5�����B\u0001�\u0013n��a�r2�k�l�K#\u0001\u000f�|Lq�0H���AE�\u000b��L�v�:a�B\u001d\u000b����,����/�9A\u0016��\u0010Q\u000bm\u0002U-\t\u0016\u0006�y+���\\P+�q\f'3�V\u0000��rB\u0001�;��8q�]�>rK����W�z[by\u0001:\u0005�\u001f;�YԶ�\n3�\u0015FʉX�i0�\u001fݸE�<�gevV�zw\\&��(*K�(�1�6\f\u0017{�4\"۽�܎agB�>|\b�s�\u0005��5\u0005�lՌ����\\2�W�\u000by���)\u0006`ү��zE��Y�r|���d\u0011%\b���T�K�\u00187�\n!�`\tL�k�m���Uw5��\u000b^oԧ���\u0002\u001c\u0018�\u001b�?U $sՖ�s�\u0017��#�\u0006�\u0013N��Un����K�\u0016���[���\b3�\u0013%�(��]+S\u0010:h�\u000ey�B��\t�|\t\rMʝd\u0019��S�A4�\f\b��L�܋M�B}�f�o手o���Jy��뮽�i�^����]u��Ù7�p��Z\u0015��\u0017|]p.�q�hD0\u001c�<�\u000f����W���\r�'�\u0007�B��R�:\u0003ي\r����C�7.�G�m���e� ��1ړ�p��f]\u0007|U��\u001b�\u00178�\u0003#��T�K9շ�4&N�^U\u001e��e�I�3�\u001a\u0007�\u001c\u0010�\u0011c�a&��5�\u0016Ֆ;A�g�\u0000��r%��65cN��}k�м�'�[�vզt\u0003\u001fd\",���e\u001f}m��=B�h�\nr���3o|\u000f,u6E�h��/��3B�R�\u0002���A��G?\u0002Dt�n�\u0014�0����BO�7���ȭy*3��\u001e9|��/����x�t��A#�\f\u001c��.r�RC=+�zb�O�v\u0019�J\u0004yӵ\u0002���Pnk�,��[jK��ҽ�̹���v8l�c}\u0005*�\r�/�p*Q�E���\u001d��Y�\u00044����ሏʾҩ�K+�L�\u0018賾r+�hQ�f����\u00145\u001a\"V͎9��ڜ���\u0004*�/\u0013l,��G��\u0015�/�\t�(�g�z;��*�y\u000bO�)̎|��\u001a��@-�\u0013rO\u0002vf�3����K33w-W\u0011z(2t�o�l,i\u0018U!\u0004\u0016RV�^y�Af|��\u0015Ý\u001b��\u001a�\b����ad�d�,[W&\u001fӓ\u0007�wt�/\tY(���[)����$\n���z��\u0015\nٶ!\u001a�\u001cr=\u0016;�~T����A��\f0��}b���:I��d��\be\u0018īn��E�I�\u000e\u0003��& \r�J�H���\u0002#\u0012\u000eTۇ�?�^F<�R�5,\u0007_�\u0010�� �[s�N㧻�#�P��v���}%\u001c5I7����\u0019��Z�*Ꮗ�LoP���ʇ(�\u0006�E_б\u0016v\u001b\u0005�\u001dV/We�ʸ�]�T��c���l&֤z� ��A\u0017�\fD��X՗�C���+\n[�(�xo]S6�j�F��X��LeZ��\u0010\u0007�\u0019z�HR�\u001c��nF�;�9ܝ��ߧ�C@K�i��;e�e<Įh+>\r�V���s\r\u001d+;JI.$�̖\u0011NJ��-l$���e��c\b��?L�F�}M�ȡ5@��sS^\\g/�si���\u0003�\u0002�\u001eg�̱\u0013��'���\nc\u0005��t���[\n.\u0002\u0005\u0011�i�b��$�8i!\u0018Ag0\u0014��~e�w�g��4B�N\u0003�vr\u0012lޟQS�Uw���l'\u0013h�Yz\u00183��%�\b���/��\u001c/��6\b�\u0015<͝XQ��\u0017�8)a[�l�q�څ\\��\u0011�A\u001b�\fX��L�ӷI�3����}�\u001f㣓�&W\u000ft��ܻ��q�[��^D����_���P�l\u0000����k�\u001ca?ߍ�V\u000e��P��R�e~\u0001O�>�Hr��Wk����\u0017\f�o�)���k'ڦ�z�\u0001͑���\u0000����\u000f\u000f�5�b�+�:R\fy�/�8�\u0017`���\u001b���\u0005�#;��Q�|R�%�җ��Bȡ�A\f��J\n����]]p\u000b��\u0003~뱣R�߉!ks���Ҹ7\u0010D�\u001d\"��w$�\u000bx�@.���\u0003��ps�$\u001f�>�\u000e�O�4T=Wm�U9$�`c���h�:\tL\\�������b9ތ�]{�}���Hk�Fu\u00161;��A!�\fl��L�Ɏ��\u0006Q�a�\u001f|\"�f��eH~���Y7\u0015u%\u0017��C�()�x�g,B��QzPq����\u0000\u0017��\u0016ܺ�\u001a��@w����S�c\\�\u0017��(\u000f]\nȒ��,\u00078إ��UJJ8�3u\n�%��\fp��#���$=\u0015%=>��=�\\�l����dt��\u0014L���oPd��AR�<�|�jc�G+\u0010w\u0012���4p�$\u001f'I\u0019E�Ғ\u0004\r�\u000f]��1�\u0003-�w�o͏\u000bҞ\\\u001e\u0010\u000b\u001d�\\�@��*�-ɡ��h\\\u001ey_\u001ewC0���\u0001�i7�\u0001��f�h|E�w~ށ�\u00171s�\u0002h:�PO���ڤ{\u001aVۣ��#m\u0018�DV��ؿA\u0012v�A\"�\f���L�\u0014�3��{\u0011_�ێ�U\u0006%诊2\f��qա�r\u0011�\n��6V;X���.VT�7\u0006%�u�v�Ӂ�廙\u0004C+�od�����AN�\u0018�l%�\u0006n�\u0019wXe�3\u0015�(~�bs�;�A\u0007\u0016�X�l4\u0005?u/�uh\bV\u0013\u0016NT�GZ�ꍔ�P�C[4q���Ӷ�\u000bA�שe�a;[\u001e���w�%�q\u0016�s�.Z�Xy�W��[TNn��^�\fi���\u0011����Nq�>��§�\u0010�5z(\u0003�\u0001����̕�p��iv�SR����7���\u0010�EC�P�\u001d�#��\u0013����S��w8�\u0015����2\u0015Yt\u0012�U���UIe��^�\u0013�)<�_��A&�\f���L�~��)_{uv�!��5T��$G\u0005y�XDO|�\u0007>�\u001fgj��R\u0006�$����Ku����M\"��>:Lm��\u0016Em��\u0010�r\\�y�k�[ړ�t���­�����ЇuW=D��9z\u001c\u0015կ\t�=:��\u0014gs�\u0002��\u0017��\u001a�\b�fL�����>�%H&��\u0018��U`h��a\u0004���Lk\u001b�,\u0018�\u0018Q\u0002�,�\n\u0001\n[W\rxc�\u0014{���탂���-\u0005qEg\u001bn�v�ܺ��\u000f�o���\u0019E�ǐ�U�5�ڦ�d���ځ\u0019��q7��]�2�_7�Fy�Z>\u000e�*�\u001b������1�X��\u000e���R\u000e�|�P懃��adt��{xo��6�A'�\f���L��0da�\u0007nͳ�\u0010����{&8\u0004��+X��D�Jq6�\u0006sȠ�i�A�9��\u0007�DJ%�\u0016:\u0012��\\5\u0012�e�}��a�Wj�\n���c�h��0��G.UQ<�5�)\u001ay��+\"���);��Dz�L\u001e�D/7��\u000e*�\rz��q��=U�w�-�\u001c����\fDmI���b���{\u0014�߾Np�\u0013D�\u0017H���J��DU�&h8Xp3���_\b+a�'�HH*��1:3e2O�K�\t��]\u001e֪��\u0017\"�\u0015��3�=\u000b�\u0017.'E*�K\u0001�;\"$�O�5B,�I>\u001e�Ք�2�=�s�\u001c3�1]�\u0011v\u0012�#.-\u00111����o��ˮ�R�7�\u0001��A%�\f���L�Ո\u001e\fV��\u001d�幪™�\f�\u000fd4����h\u0014�ĉ�}\u000e��G-3�2h�z��2IC\u0010�b�9%b\b/�!�E �ѽ\u0013}��QU\u0012f�x!�s$_�l�Z�!��\nC!�/��'\u00148����`��tU�Dp�\u0017Ѿu�I��\\����W��h�l�G D�ᮂ�&'v\u0002\u0006��U��tZ��\"C�+S6�\u0005P?�\"\u0004\u0011����Ys\\�h��ˈU�y\u001a�����4��M9GB�G)�����֐\u000e�M\u000f�9.�\n���:\u0019��'�\bu\u001c\u0019\u0012a��ʏF�N��\u0011�*k`ug�\u0004��̏�{g5N\b%��� \u001axN5=ۺ�{K�\u0004B�\u001c�A(�\fЀ�Mv�25\u0000?��2|^\u001a\u001e�t�{W\u0007b�^\u0001�9�dDW��k�4�v;��;�\u0019X��[��f�\u001b\u0007u\u001eX��}L\fW��\u0015Y�%�Ĩ}7��x��b�\u0004���\fe�\u000b\f�+ʶy\u001b��b����[\u001ccO�!�zf+���\\��>V=p�K2�\u001a�@�����[Ȃ�mz$I\u0005�*u�fھ̾�/\u0013��\u000b�\u0003IJ��a+�x�\u0002U�]�a�Cj\u001dv\u001e@j36�\u0015+����٪?�o�Ui\\�hXa{\u000f%�k�\u0011#�rvNϦo��\u0012\u0002�K'�ό��J.\n���\u0004\fʊ\r\u001a\u001ak�[�*1Ƞ�j,��Ÿ��~���B���r�7í݈�sJ��A$�\f��Mt���Z�\u0016�\u001b��LuT�\u001e\u0019`�z\u001f�\u0006+�d�d-d�Dx�\u0005�5_\t�4B��7�S��i\u0004d�Ҷ\u001eb��#(��Z*�\u0016��^\u001c\n¨�.\u001b�\u0018Қ�\t�\u000b��סK2\u0017\u001e���imo\u001c�ȼh�y�.K�s#C\u0017��q��ľ�,��ӳ�l�x�,��\u001bN\u0007=t^\u000fN? ����\u000eB�;��}�bxi$]`�W�S/\u0010\u0005�8�O\u0001&��뚆�V���\u0001�\u0017�2Ċ#]I���\u001dA�v�N$���g^s'�\\�$7����ߋDI'H\u0019JuZ�j�r�Ѿ�5������= �\u001d��f1r[��\u0010���z�$�\u0000^��vb�ʿ�S�A&�\f����'�hĞ�m��\u000b.���k?톾q�{����)���9�\u0005��>��̸��\u000e��\u0011�J4�R����g�[��_.Y~�\u0014�]`�S|`bU�\bF,�v�#�D\u0014�-��I����8�L���=\"\u0006�.��:4Hh��\f�9���_}����\u001ck�'누n��oԵ���\r�Y&\b0����\u001c�M���y\u001fC�N'J�����0!B��`��\u0003o��^+�����E��m3��\u001c#n\u0018����h���V�<.�O��?\t��\u0005@���\nO�r\tDb\b\b�|��[��^?��~ޗ�B���B�c���y/;R��s��;?n�I��\r0�ࣣA&�\r\f��I�`*��o��m6H\u001c�͍\t\u0013�(rU-\r\u0001�F�%�\u0005�W\u001aA��0c:��Rw @)�Yx�ïx.��]s�t\u001b_t��\u001c�4Z�q\u001b\u0013��rόnƨ�\u0019��l�\u0002C�,�Y-n�l�#?Pv�;�J�ⵓ�Ʊ����Z����\u000e}cRj\u0007�\u001c�\u001b���\u001f����kߎ\u0002�\u001c*sL\nK5��x!=�����ғ=s�At\u000e�[w\u0005��xi.�6�$QG\u0016F��-�\u001b�Y�n_d���:딑�\u0006+p��5p\f�\u0007�ީC��X�\u001e_\u00130�79\t��X���!\u0016����3;\u0003V�\u0004\u001e�̘\u0000e�\u001eIM#d�x�\u001d�Y�wS{\u0001s�}����K9�A!�\r ��5��\u00179hq��?\u0015\u001a����o[�\u000e=Y�$^/4%�o�U.��\u0004V�k�\f%��T�lG~�z�[����'�!��[G�͙텨\r�R�\\\u0003T�K��W��\f��h�\u001e7E(?4��ң�#dz0�0����\u001f�e��A4Y�|W[�}K\u000f��4��p�۝\u0014/�,\n`\u0007���\r_B00��\u000fZ�{Hgm�H\u001a\u0018�\u001bX��\u0016\u0013ў���\u0003e�bޢ�\u0001u0��\u0011s^���\n۟ҥ�dGΥ�\tʥ�%z��LY���1����&S�vh��&E-�AEPy\u001dS\u0007u��he��\b���Ԝ�)Ä()f%8��=\u0002��Rӈ�d+\u001f���W�A8�\r4���\u001d�w��%����\t�mrZ\u0005����\t��6f�Ă�Lw�rW��\u0006VyL�\u0017�\u001c,Z�B/�̪\u0006Z��4�i����0+צת\u001a�\ng�c̞��09�֯q�M�\u0016�i���\u0003�Y\"#��\u001b�!��\u0016^���J`�X�.�,x�ʋ�턇s�侰~�j\u000fP|{=�@n���8��j��\u001b|�\u001eo�W��򣍻\\Z�Z�CĦ�\\�\u0000\u001d~;�^�\u000e\u0012?%�-fҼ'�A���\u001b�\bL����8������\f�5\u001f�b6[��o;\u0015��\u0019���ʶ�\u0004�=�[��\u0003��o��,�r\u0004�2\u0005�k\u001fQ\u001f����|�x�mW�����\u001e��Uv���\u0005�DO���I\u0001U�udT\t�x�A/�\rH��MRn�\b�,~���2oR\"�j��\u000308�j\u001d���\u0004J��#�>�B`���P�?��G\u0006:�D\u000b�\t��\u0011&폆�1�դ�GG)\u0007xʸ�0F������9\r�[��J�[6X�kt���G���ב;~�Άk\u0019��PD���vD̽\u0004�R��*�y������ǖ�t~\u0007�\u0001+Ӆ\u0013�\bk\u0015%��3\t`��^\u0014h�w���+\u0012t\nr�����\u001dq,5��U�vg\u0015��,�Ew�/:\u0003�?��;%ԭ� ȋe_E3��m��\t�m����\b���\u001b�a��\u0007\u001c��J��DZه�z\u0010r�\u001c0Dq�-��hG�T�����cR'v\u001a�\u0012H\u0006��\u000f#4]���\u001b�/�A$�\r\\��J\u0006�d�\u0002OS���z\u0010*��\u0002����t�^�]\u0013\u001c��[��\u001e\u0018y~�\u0002v�\u0005�w\u001b-Oi�4ec߼\t�\u001e�ʖH�${�\u0011���,gn7�V@.\t���\u0019>\n|�o=t#+ܬV\u0016FER\u0014kQQM�\n�x��\bE\u001bL`��Oc\u0005���\u001a@�)5�������^�3#�,j��Og\u0007�.�l\u0012��\u0007�\\�I�`4}��$�\u001e>�\u0018a1�|��]�j@rB\u001e��\u0000�\u00030��UyH�\u0019��\u0007[N>:$�c\u001f���ނ�����j���v�S����=��SbP?j��f\u0000�\f\u0004+J���Q�l�����@™��:a�ۇ�b���ꪾԒ�l���]���ga2�ڔ\u0003�#��o�\u001eţA)�\r���L�\u000b�\u0003�_~��\u0014o\u0007��\u001a��\"R���\u001e�řЗ\u000bNzYU��F{k���1�\u0004�����礠�5�C�Փ�5\u0004�IQ�9��x��gω��Y!\t\u0000\u0012�\r�H�*�It��,�U:V\u001ffp�K�,��q��s�|-[�xD\u0011�l�\u0005ؗ6\u0019��\u0007�\u001a\\\u0004�\u000b9���=ۚ\u001b�\u0014�\u0001y)��[;(Xo�@�\u0000Ùfal�LB$�,\"\n�X��\u001e���m5�x��\u0014h�~oɱ���\u0005��š�c�j�e��&��-\u000e*��\u0010���e�\"x0\tP��^��0�\u0010�S[�N3�nA�@T�\u0006O�\r��\b�ѷ-\u0012\u0014\u0000t��*������R\u0000�$nD��D��d|h[�A6�\r���L�j�ک�~���t�����\u0002+���bky\u0018I2�J�w\u000e�\\g7����N���@#\u0019����*��J,�ʥˉm�h�a�?$\u0002\"�\u0001\u001c�f�8P�$�Q��\u001c�Κd\u0011�i_�\u0018�P���ȺNΏ��q�x������ǭ�G�����Һ\u0003�&m�%\u001a�]��&>\u0017�$8;���$\u000e��? )\u0002�ϑ$���#X�\u001d����҅���\f|��8O�}PҎ�>Aq�\u001b-T�\u001aȁ�\u000f.�1m�\u0016w�u��Μ�.�8.ك�!��\u001c:�U5-L��4��b�%\u0018�%;΃��o�z*\u0007l\u001eѾ�˯��%>\u001d\u001e7zÛog��\\~�6x\nλrAICIv�!т��;��B{�\r���߷��[\n\u001d\u000e�7���>=�[�\u0017�i\u0019\u0012$\u001a\u0007ak�c8�J�U�k3�.���Ph�{2\b�ۡH �b4���;N�3��~^ب�&1�B���&(<\tY\r\u0006�\n��\u0016�q�z�����pxo�\f�t.V�\u0014\u0003�����/��G�ьä�\u0002�\u0002�bk>�h�M ����h����+\u0015\u001cE�n��΀�Ҟr8��\u001e�\u000e�J��7\u000f;/ߔӔ�\u0019�9�I�]\u0015�T/h�\u000b�uWu�J�f�>�U�l���\u001a(�ܧR�\u0007(j��_cV�%zo���z��oMvZB���]�/oe�޾6��\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006���\u0004�遦�?��SHX�\u001aU\t��.�p+�m��t�bg4�|�I\u0019C�'(,�\f�x��M���\u000f�������\u0015藴\u001bT�qL�H6Zf�\u0017\u0017�.\u0016��\u001b\u0012������\u0019hs\b3Fo!B����ձ\u0000�\u00066���K 4X�v\u0011���L��촃���)�S\u0012�*\u000f>������58K�zQ�0���P\u0007+z$��GkU�C�x��I}�F�\b�\u0015�\u001d��W��\u0017�\u000e�f��ES^���.��L7il��h1�n���=\u000b.N�\u0019������\u0006�_bxzSֱ\u001a�T�&�ߘ\u0003��E��˃D�]\u0017c!�oݿ$#����B�\r�J�:33S�d�׳��\u000f\tF���ө\u0018�>�,pX��v\u0005V�Kq�>Һ�&�\u0003��\u0004�\u001f�򠝀\u0001j��;(���_Gw��v�<�B\u0002̯�AH�\r����*�i��3\u0007!I1�K�˃S���E�s�L�$\u0005H\u001d|��L>v���vv�\u001b�y=�\f\u0019z��\u001d��S�\r\f�?F~��D�X)P�W�|`�)�\u0012׍'��2��\u0016=\\s�\u000e�3N�8�lj=�jq�Q�;��yj���\u001d\fcly[@M\u000e������䈅��Y��F�P�\b���c�؇F���7��=x'��Ѡ��,Y0�+��O;fO��fO\u001do�2��Mѫ��X���^�\u0019\u0018��S�9$M�t��j�\u0003eN\\E��\u001e�Iw�����O\u0003��\b�h�Y#\u0004�X�\ro�\u0005��Oy-QW�\u001f�2��c�T�#�N� �LXv\u001c��Z�\u0003 G�_�2\u0019�u�\u0007\f$��w�\u00042�rCLj��i]�i��D�9�\"\u0002\u0014��Á\rԀ�L����=G9@ή\u001a��ƂA��6���hw�{]Z��p�\n\n����)\u0019\t�t��)0��Q��\u0001]Bt�w�H��\t\u0017�3p��K՚\u0016I\u0006���s�Lش�S+(=\u0017�h��\u000b�ބ�7�DKO��ǫ�I\u000b��1\u0001�c�6��J\u0010S\u001b�k��Isa�O�{�1\u001aU\u0019�/�W\u001e�\u0007I4~4��<>�ww��\u0019s_z��������4\nJ\fp=\u0004!�\u0007Z�H�Z����\u0018ʟ��D�\r�c8k���4\u0016�B�\b��C}\u0001�'�E�I��V�\u0011��\u001dQ��ׇ�\b�à�\b7��\u0005([�:\u0012Ép��hW[�j�O\u0013'QJ�!�;�r\n�ˑN�\u000ba�\u001ay\\EwZ�y\u001e�7���8��괥�7$�HCF�r�=�[�e�Fu6*�N��ܖ_���\u0019�G\u001c\u0014�B\u000f�\u0004\u000bERo���u��~P�z���)�\u00007�pP�e�}\u001f�?�g�հ�I\u0002I�\u0007p!�ry��?��U�f�.��mLj��:\u0015�\u0003\u0003��\\X��!1E�m�'n�e\u0015Bor�����\u001bFWD����e��l>\u001cEC�O�͚V\f�&��|L��ғ<�T)�\u0014���lN��\u0004W�\u0014�QPJ[�b�R���6��\b��ɋ�Թ$�\u0014�ne\b,+��At�\u0019�\u001d���\u0010��~\u0016\u0017J��J��5F$����\u001c\u0015ug�&KnE�AV�\r����3rYr��j�|���2` �\u0006�\u0004\r�+�3\r��\bx\u001f\u000f��J��Ɇc\u0014�7zw�Z��t��Ts\n��y���by��X�׊��\u0014l��\u0016�\u001e;�\rn�ΩkF2gU>Aa�W�,ۭ \u0018`\u0001�˜���3k�4��MK�D���g�\u0018�D�-\u0006��\u00109\u0004\u0010�Q�6�����[�7F�热�)�`\u0016i�vS������\u0017�\u000e��\u001d0\u00180g��\u0014�Ȫh��ǥ�\u0003���M���\u0012�d��\u000f�*xq F\u0000\u00169h@>\u001fH�\u0007��+\u0017c\n��\u000e:l0gh�0!\u0014\u0006�^p��u��e|��z��mY�T�\u0018]^�:/F�42y;S���^\u0014A.9�%c{f�,r�v��F��f �`\u0000TĻ'‚.?�x�&�\t\u001aI/�s�\u0019�J�b'�E�AH�\u000e\u0010��\b�!(N\u0015�\u000fߕ{U\f��/ܼS�zYx!�\u0011l��\u0019\u0003��b0�����i=�2\u0003\u000b,3\t�\f��y��j�{��\tY!q2�Q[��o68�e�[7\u000f�\"XUP�n�t�\u0001������L��M��|ʿn�%��s\u001a\u0019W��h�hA�U{\"�L�u=\u0010R�;{�\"�\t�[\u001c��;\u0006\u0012�\u0005�\b<�\f��K\u0004\u0000\u0013M�6�3KU�\u001f�M\u0017P\u0007��\u0011��\u0007�4\u001f����?\u001b�N\"g�Ŝ�\u0018�&؜���;�.ٽ�0d���aX�����\t\u0010�Q�9[��\u0001<��\u001d�W]3�H��J��^x���๸������\u0011��u�wfl�=:@D7��2m�{b�\u0010�\u0012��la�Z�ݳ�!kb������eV�\u0015\u0003�[�RǣAG�\u000e$��M��\u001cT)\u0000�P(g�+H�#.u�\u0016&�SQ\u001f<��_�\u0014�`F�Q~��\u001c\t�\u000e����c�����\u000fs��\u0003-S�B(2�W�N;\u001f\u000br�_�Û��Qpl���\u0016�W��?~\u0005�\u000f\u0001��\f\rF[\"��*���\u000f0@�j{�TR\u0002��~\u0015b����i��/x�\u001e�\u0004���\u001b��ss�15��\f��[[�\u0004�������-�:��\u000e\u001a�D�\u000b�\u0001S=`��$ZOe:sP���Hy\u0018��S}�\u0012bi�&QA����\fo�\f\f1����e�p\\�7�|z�52{�\u00042\\�F��\u0018X�%���qDӍ\\z����@?)zfg�(�D�\u00118���\u0017�S��=N�\"��H)R�*��\u0017g3C*�4J��I��r�\u0000O�9��A,�\u000e8��]��\u0012ԣ\u0005\u0016V�Hb���>��,\u0010���Z���r��/\u00002��<�sJ���e\u001b�d�\u0007B�l\u0005\u001c^�a����:>IX�y\u0002�͝RcF:���\u0017Ι\u0018S.�\u0019\u0017rz�D}�ˏ�\u00052\u0015�a������3��\u0016${���3!\t���]9\u0019�Q:'\u0002�����7۲�}\u0005�\u0018w��l�\u0011�G]x�?\r\"���IF�؀�8�5�|�2=��\u0017�fQ�\u001d#s�\b@��f�9j�m������yB�\u0016�Tl\u001ej����\u0017\u001f�J�I\"Q�\u0013�d�?\u000e��A:�\u000eL�����\u0003;9�n\u0011!}ݟ�>\u0005�Q*ȵ\u0018��%��c���Ur6n\u0001\\/�)j?'rc�\u0000m�(-K�i{�n\u0014}�D�������B�,'�\u0010T�\u001e�?�4M-�1�K�N�\rf��f�shi�nh��FY+\u000e���!\u0002#����\b\u0013�4�ܽ\u0013b,�\u000eC��r�>�k�,\u000e\u001f� \u0013^ID�F \u0005<��V��S&��&�UX.֘\u0003�3���ג�'���S_��-'���k�����:����k�{&'\u001a/��\u000e`�<�uQW?��.sp)Š��k^��\u000bj\u0013G��5��#�Y��\u0012m�����->^��h��y�k�~�� \u001c�\u0012e���I\u001c�dh�.3�z'yc\u001e⸷r\u0000\u000f\u0005��z�_�Aρ\u000e`���\u0017�x�,f��0\u0018R5�\u0015���Vi��\u001c���%N���Q� \u0007��\u0018'A46�A�v���*ډ�I�$T�vn��+�H\bTr�K껷l���C\u0016Ǘ���!�ڼ����uw�X��b�y��V�˓�Y�G\u0012�:\u000b�۞\u0017��\u001e\u001cb�h�j����jJ�]\r�\u001dA0K(ߺ�\u0001\u001f�0���iݚ�/U�)\u000ep\u001eH\u0003T���$x*����\u00164�V�5x�a6�{M`��\u0005��\u0000�7�Xb��)����O0Z��\u0002\r\u0013a�ͶH�tvr����g;S�e���V['/����)z\u001bf#\u0019m>\u0000_Xf�����LP�0;\t�R�\f��ܹ��\u0012�<K[�!j\"�J��>q��F\u0001y�.\"�ٸ5�M3\u001c)\tXd�!ۮE$5E\f*帚����A�\u000et���\u0018m\"���m&Ua>��F��#\u001ftjZy�9�T�@ݓ\r�cP뭲K���kn�W�\u0002\nL�\u0005*��\u001amh�r��\u000e�,,���~o��\u001c����\u000e�($�Ui񭣫&�ŵ9*!y\f�Fl=-�\u0000���Tp�\"�\u0010d*�A\n��I�2p\u001a��$�?^E�C\u0004��&��j\u001e\u0010���j�ɇ\u0011\u0004O�!YH����Ya���\u000f�\u00148��I\u0005�]b\u001d\u0000�\u000e�H�0o��lj&��\u0003˲����\u000eLw�Ō�*U�,1�\u0013�\u0019������\u0016f\u0002��:��\u0000\u0003K.�\u000b\r��uO�qW�\"[O�f?e�,`GD�m\u00149�!�˯�r/��\u001c-E\u00068�u\u0006��پJ{�������ȉ\u000f\u0013U\u001e�V��\u0017�w��\u001a\n'�\t�\u0006�{\u001d��(5�\u0000�=\u001e2��\\}]�s�\u0013\u0019�\u001cM�i��\u0011U\u0000�\\>n�pܳ�W�\n��N/߹i��\u001bhm�io�Ruh�p��\\�G�p�)�k��/\u0002�c�jĮ\u0012$\\�4�DE\u0014�.�+�6��R��+�\b�?�����q�������\u0003���N/o��6f�vg��ҽL�lϒʂ��-�\u0010Ug�_?��;�<�AY�\u000e����\u0018\u0011up�E\\E�'#�- ~\u0006����������\u0012n��\u001d�ҡw�B��1F�����\u001cxR`)��!�_.\r�v���\u001d�\f�GX��3�v\u0012uE{\u0005\u0017���\u0013০�i���Ȓ\u0000\b0hY,.f�����.�\u0011�B)(�\"���Ϫ큓y�a΋i�@��X��o�.�:\u001fMh#�U7e��X\u001a�^��3\u0003\u0016�Ea�j0P�a��a��\"\t\t\u0012����E�.B�D��ؿ*Ag�˸�[n/W���p�jȐ�D�*.\t!��-~�\u0001?yZ&\u0006P\u0001�\u001c}X)Ǡ���+�ň\u000fO|\u0019��ush\"��8\u0018���{��i=��\\SZj��}�+\u0014e�H\u0007,�����'����p�:l�jEO\u0002`�S+������\u0014o!���;6�\u0007\u001e[�=�AN�\u000e����\rz�r�FC>L��\bL��.7�b���yv�c���f�˵�μ��_o5�g�\u0013Yx)j�A���\\��D5�rH�����\u0004��Q�&d����+5e�;\u0005W�V���L���w��O[�U\u001b�v��\u0000�k\u0012�Ļ\u0018�[0>�\u0016B�d�\u00005������o=F\u001b'L\u000fpDEC-ǕW�FMڙ\u0010ի�����3�o�)rC�B�SO��ߨF�J,�~^9�ZLH��Ϣ��\u0010���(y�<\u0006+f@�����Mx�^\u0012��k}c\bo䱞x�d\u0013�\u0006|ߡ\u000f�\u001d�\u000b��gh֌FF�-\u0011��~!�v\"���\u000e�}s_\u0018J�H�}g����D�\r\u000f�N��J�Ze�Ii�U�G}�u3||�҉�J\u000fy\r��S'$���ܽ}��\n�P8V�b��\u000bT���='\u0017\tu�V>uE%\u0002(�\u001d\u0011��\u0012u\u001f����T������\u000f�!aw�9\u001f}F����!�JE\u001aq\f�/���\\�kB�d����D��e\n�\u0003\u0018��U��%�j�ie��d�;�A@�\u000eĀ��\f�K\u0000#�$׊\u001cw���1��M�\u0006T\u0004��l\u0011�yzmqP4�C�Ӧ�ຟq�o����\u00029O��.�5r�GF��\u0003�PT�&�\b}银\u0018o\t\u0007�\u0018PVw�3ڮ)�H�\rae<֨l��'I�\u0006w4\u0007�M�~��\u0013|�2t\u001a�\u0002�E��]�v�ǎe�\n<�\u000e{��c!`+\\1ܧ�.:��q�d2M\u0010\u001dVT�\u0002\u0015ጰ=~�\u0015V�?�T�z�`��\u000f�K�\u001b\u000f�Tӆ�K\u0017��q|�ۚ\u001f�A^�7�?�\u001f{hW �c���\u001e}�h�d�\u0006lr��F�\"�&�\u0010�bI�J��cH�\u0016���G�e�u����}�@|��TOV磺h��Iߏ\"a�����6'���>%O��ŀT\u0013��ߥ9�AE�\u000e؀��\f��l\u0017:HE���ט�C�\u0017�I�)Y5PE�&��U���vjꎥMk(1n���,\u000e�M�e`%P�����E�0�C�\u001c;\u0006��r��K�`*��7�c�F��\u001f\u001e\u0005�1�y��s�1�I!Qۅ]��\u0003��\u000b�{�LI�k\u001dp���1$�ۗ�3\u0010�*��!\u001c�$��\u0019m�Z?pu߭�(4�Q����\rDۏ���9�;��~��r�\u000bE��f��6H\u0016���\u001a��)�k;�X�\u001d���\u0001^����\nТ�%\u0010׏x�\u0012\u0010�%n��X��L�U��~��:\u001b\u0006eVYIv\u0007\u00132�~��T��Ð3s�����\u0016\u001e�\\�sr\f��6�\"��򑫯��2�\u001a\u0010�#�)��>�n�1���jW�%8�AD�\u000e���\f��\u0003'�L�\u0003���\u001e����n��ceR.�,H=.\u000bh��s�#��ր�/�\u0010�\u001cu�����\u001c�˃d�L�q�����ƺ\u0011%S\u001d�\u0005�����X\u0004�\u0017p;\u0011�%\u000bRj\u0002������J��ک>�\u0011���m9�*�a\u0001��z(%\u0002\n�-֎��Ñ��@�3\u001bKg�(\\\u001d\u00162v�ۜ\u001b]�S\u0017\u0004!���vW$����ۑg��2���\u0006�ܘ���\r�x\u0013��pXY�V�\u001e�+���[��m���:����,ӑt����:{�\n�B������\u0006�\u00165`�����7�]r��[!/��mf�I窛ݝ~xE\u0015��ä�멞\u0000;\u000b�,x\u0007!\n(\u0002:\u0012�IJ\u001aE��u;X�G�ͺ�\u000f�\u0013��\u00120�v~N79�AM�\u000f\u0000��L�-;\u0012�0�\t��\"\u000b��\u0012�����Ux��yu�'�:}pk\u001a�x�^����\u001a�\u0003��fn��8����W�ѫ�0��yR����ܟ�r�\u000fg[�\u00158P��%��\u0013��#Ǟ�)n�\u0018\u0016�:�O>ۣ��N���K�B?��TL���e?����\u0016��\\\u0001\u00058���ޜ\u0000\u0007�ꨱu�\u000e�\"]���O�ds\u0015��N$q�����_H���qUu�b���P�L��2���s2Zid���d`QZ5J���@Y\roܷn���Ο�S\u001f|d>G\b\b_\t\u0015\rf֩})�F78�`된��\u0005n#�a�0g�\u0014\u0017c�����\u0005f�ҝ��%�?F��o��\u0004��\fg�6Ҽ�/.�a���EI��oA�\u0002��Qk*T]rR�A?�\u000f\u0014���\u0016���R��-�����Xd(�#�o���6\t6j��h�j�g����\u000b����n��q\u0010D�a�:P:#��\u0012?��S� ��C\u001e�0IZ��\u0015M���[+!���I~�\\��\f���a|6Y�o��RǓ��q\u0016Y��\u0014��C���ȳ��ϵc��S�_�Ns\u0000D�cs����J��i�\u001c�R\u001bۢ�����R<�6��P�\u0014�$�p�A��\u001c�w��N�NН�x\f�XR�D�l��(S�,�6p6b\u001d��5e\"�Nc\u0015�\u001bg\u001b\t�ߊ>sA��;Uޛ�IF�h8��P\u0011�y�&�\u0005����ɬ=H]ةX\u0002\u000e��s\u0018�T.o/:^܋v�||x����Is��~9\u0005@V[��5)ҡ��?�A��\u000f(���\rfo�v�\u0012�GF�o��\\\u001f�߉�u�gF�\rjt�5��PS�.4�i��Ɲ]�5�x�/�j�\u0016XV{@�.����Av(pݿY�\u0007��g\u001d\u0007a��)4�w���ds���Әż�9���6P\u0018�\u0010��\u0007y\u0004\n\r兘:�y�ۯ���n�E��|)��zO8�~o\u0006���&$\u0004)��F��~��{\u001d\u0005Wn\u000f\u000eq7�7��\u001e�\u001d�����纭�`C1�G�!4Y\u0005��TrQpTo1H�\"{���.���ےo��=Z������T�5����\u001e�Z��?\u000e�\nZR{藊\u0001_Ծ���ѷ!�\u0006,x\u0005��jz�m�\u0015�f6�ӡ���K���Q~[��\u000e�G.EJ����\u0000�i}5�v�񲠬�nWr�\u0003T�����n��\u0002\u0007�9�$8��'\u000b�iY������)�i\u0018!�ؾ��SR��P��)�R�V��\u0017%��A�����\u0004�W�$)?:�\u000b\"1y��\\W�e�n��\u0019�|J�/T��A6�\u000f<��.p�l\"��>��G��ך#-\u0006��X\"U�xkX'3i�\u0007huP�ّѿB\r�e$� \u0017ځ��=��Ҡ�/�2t\u000f�bdǏ��2��x6#�����F4��>�39�^�94\u0012Dz\u001f��h<+h%�<;�\u0016[�h�\u0019\u001d�&��V\u0002��)�\u0000�|,������Pf;\u0001� ۨuW�-�\u0004�^>\u001b]�}=.�@�*�݀��J�\\ؾ���mZ�*���.D��=0���[�Q\r\r+��\"|5ܡ}m>��\u001f��\u001a�\u0003���\u001b\u001d�2�@#S�\u0014�us�im0$��V\u0014�9�N��<��i\u0014\u0014��I�\u001c��}�N\u0001G6u9����\r�怶�\u0014��\u0016�}��K��9U��i���К�A.�\u000fP���r��|sL�I�\u001d[AȧX�R\u001b|�qK��w�\u000e\"6N&w��{�9oEEUD\u0019Q�{:�@\b+�\u0005�T���5\\����U�\tJ�\u0000wn���u\n�a�\n�뽣\f�\u0017\u0006:���|�+�+B\u0000��m\u0004�hTNN��J)\u001e}ފ�U�xS}=�Pft�ɜX\u0006\tA�9ν�e�.}\u0012<��k���*6�V�W@.��?��\u000e�'\u001dV�\u0005C�ݠ�\u000f6�W����6˹��ҩ�gs?\u0003\u0018P�\u0003}�\t.�i/u9Iۡ��\u000e�\bh��\u0018=���\u001b��WIP�DJ��.�w\u0015�\u0011�\t�?_�5/�\u000bQ��T\u001d�\u0003ˆ�@\u001a_�c�+��\u0011\u001aUJ�\u0000��\u0000�7O�\"��d��AE�\u000fd��6�?~r}߇�\u0005U�N*'̱�\u0010\t�UU��Y\u0017҆�e\u0000O\u001aI\u0012!���=��� �&�YT��ƃ�4O��]Hy�V��\u0003\rй?�O��\u001bo�KOK4>F3\u0018\u001b-�g2��\u001a��2S9a���w����8�7��i�\u0005�g�;�D��*�\u000boD�\u0011g\u0019������;ss3�\u00145���B�����QJ\u0005�0m�N}�k���pR\u000f�{^��V�cz^�1��x��d(0�1a�䥛���lF��\u0011K�g!A��\u0012�D##a�����\r`����)�\u001b�����j0���ј�\b1���d�ą��D�S��\u0017J���\u001f�?�5I��%\u0012\u0005�z��C�\u0002F\u0017hf?r�rN�4}J/�R)�\u0010rH��\u001c�\u000f�A2�\u000fx��L�\"rS�z��31��pa\u0019��\u0014G���#��({��,�D\u0016�o�\u000e\u0016:;Œ��S�Aw\u001c\u0015V�\r\u0004cp�{�Z0�\\|lD� �+���#(����a�̎Y>��4�Z�\u0011.;����\u0001�$/�Z\u001a\f\u0005\u000e��m\u0003�s;�+�2%^d�\f�8)��NJp��G�\b՝\u000e��&�\u0000-3��\u000e��MDW�鯶!�0~5\u0013\u0018Ѱ�\t�\b\u000e�!f����g�,a\u001d�\u0002ĭƢ��3\\���o\u0002v ��X���yV��>}>k�qg\u001e��y�?�\u0016�\u000f\u0014\u0019��\u001b�A;�\u000f���MM��8n�\u001fH�� pv2�����\u001c��q���q#�X*!�k\u0010P(\u0001r'������X�-�)K\u0013�%ؠ�XDrHPɉ�v��5��\u0013��\u001ft����Ԇކ\u001bU\u001f^��)n\u000b\u0005\u000e/l���R�\u0003�\n��5\u001e}G��@�\u0006���i�E�\u0013��#�5\u0006q�yFu���L�t�\u0016=���S\u000e\u000b\u0004IU�W\b&\u001br�\u001c,}t…��\u001b�\u001f�[��\u001b�\u000e\t\u00055媔�e��OK_�\u00159�\\\u0013.���d�\u001ff\u0000��{�a�ݗD��tX\u000e|p\n\u001a;�\u000eb���w��G�\u001c���58�f�Gw��6�J�.\u00141kc�$\u0015\u001b�4Ń(2沷��zC�u�X=*�)�\u0002���g>rdrN��P�Ki\\��A?�\u000f���L�.���'V�\u001e7���\u0004�>��m�!?�'*R �\u0004��B���(Q�\n#��\u000e�\u0016\f�0��2�_d%o'J'�H\u0001�\t\u001a(\u001d\u000f�)LG����'Q�F�4�t����D��p\u0006U�q��K\u00162��(\u0018^�L,{��o��6�k�K�1\u0019\u0004o>�{�ϰ��\u0017E���\u0011��Z�\"����\u0006��\u0018C0�zH�\u001f��7l{���f�l�n���|�Q\u0002�7�\n���r��j$�0\u0001��\u0001\u0005\u001e��\u0019q^�\u0017Y>��2ԥ��$8��+I�K��z�LG��\u000e��� R\"�x\u0004\"ب�.~8�!;�>^Nf�݁\u001dg�olF\u0007�{���-�Ta�\u001f'_�F���]@�xM�i�\u001eH��n\u001a>�K\u000e\u001f�u��A7�\u000f����\u0012U�U7�\u0004�o�a�R��\u0017�b�&(y\u001e\u0001���\u0004���P�̓��x�e=\u0004�L�p&)/��\u0016�'\u001ak\u0012�k�����P0����Kdž�,\u0018�\u001cw���Қ��ғ+���������{��=�ݓ\u0005\u001axߋ�)>����$ٿ;5d�\u0012s��Dc\u000f>F�\u001b\t�8�|f��rKx��~�Z\u0004A�\u000f\u0003N!�F<�&�$�>̏ogEcqСf�N�lŶEw\u0004�����-�v��z��\u0000�\u0019�A,�\u0010\u0018��M{����g\u0010��.\u0018\u0004�����ǻP\u0014_\u001a�b�>F:�P���\u001c\u000b\n����\f,\"�����D7쌎H[�Mn�xq\u000e\u000e\u0003p���x��\\\u0007�Xe~�\u0005���\u001c��\u0017�E(2_�k��5\bq��N��� ޴�G����%g�Kˉ\u0005�'\u000f��|f�\\ho�[i%\u001eJ��醻\u001f�2�\u000f;�4�\"KQߥ\t�\nt/�\u0015�{�\nOB��\u0010\u0019���Kc�`ۯ��\u0014+T��^��\u0017�RY��0��C�nE��m\n9 \r�Kև^0�\"���G?��\u001e������l�\u0019y����\u0019�(z�{Z6�1\u0017�a�:e�.�01=tΕr��^$A�g1��=��~�\u0011�A,�\u0010,��X�O�l��\u0018��FN;Ez|�\u0003��0�C\n�\u001e\u0002r��\t���\u00137Z\"<�k>�b�\u0001oe��1ԡ_Y��:\n��p5�Ef�Jt���+��X��#/ȓ\u0005/hU���v4�����i��?��\"M�8x\u001e��\u0019��z\u00022���ۭ+��cc] >^c�9�m8��\u000fbĊAYщ�\u0015��z�R�mt���Nf0N\u001e\u0019�G��\u0005\"�ק�Ò�0|�ڡ2&�)'�F\u0016x�G�u┋7 �#9n\u0017%K\u000bt�\u0013EtkcS\u001e�\u0001\u0006�#�8[�KA�ғ���\u0004%��\u001f��N���\u0018\u001aHU�#Ub5����vIt\u0004�K�O,���\u000f��s\u000b\r��\"�\u0002�����2\u000b�н�\u000f\u0006���La\u0004`27�!O��V�0�\u0002��9\nu�\u000f�t�\u0003l\u0005���%I�\u0002o}��bF��ݤ�Z��\r9\u001b/m�A!�\u0010|��L�3M�$Yz�&\u000f��q�Nf�Y\u000e��ȃ�\u0000�M����8}�z��#�$X�?�Ԃ,�|��5��5�Z4�ŋ2!�eDz%���;*�^\u001d�g�N\u0014ߔ\u0015.;\u00183�\u0007L`�K�s��Q�\u000f2�;��5\u0016Ff��\fC Kq\u0006pa~*��,�S��A�#\u0019jE´�R �OT#�lVd2��p'\nkd�*�\u0001\"���\u0019\u001eQ�a��\b\u0007\u0001\u001a��\r*&���d��O�&K�����h�J�6$�G\"�[��\u0007w��\n\u0001a��\u0013�\u001e�ʅ��?F���fH�8���2��3R���\u0015.��=��H\u0000���M\u0012����v��~�F>@�\u00000�,��A(�\u0010���M$�r�@�qR��g�,�%\u000f�]�,}\u000b��^N\u0010n���\r�M�Q�qcCT�JB\u0000�p�v�t��G\u0006>��IV���+�C)��V\u001bF#ܣ8*���ޗ3C���^���RZ�/\u001c��\u0018�\u0005��\u0003V�������T\t\u001f�+�\u0013x9��6ʣ�jd\"��\u001a����\u001bc�u�65�$�ѭOgU�;NG�\u0015�����/�<�\u001d�\u0015\"��&\u0003\u0011{T��RW21\u0005��!\u0010�}7��hW\t��\u0018/�����ݩ��H\u0003�L\u0019��O�>�8>H���0\u0018�\u001e�͂+J�\bwT肋Ǽ����JX\u0017\u0017@\r�&�R �\u0001���\n9�A)�\u0010���Lɪ�5�v�̓�\u0005�U��%��mp�\"���1q�C�\rЇl\u000e\u0017��*ݺ\u0013g�[Z�xل\b,\"�\u0011W/m�IA�U\u0018>\u001es� ��\\S�N�\u0000�m]�MN�o4�����'h8�IڥB�q\u00198�\u0016^�����rl�k���܂�\u00142\u00018�\u000bȜ*�=�CUHޖ���Hޖ��v�|����8H\u001e�\u001dһ\u0017�P�δ��F���ǝ��G(\u000f؏��Ϳ�L��V\u0005�#�3�/S���\u0005�n�ݮ��\u0005��*�gϝ��S\u0001�(�\u001f8I�͇/4LUh31�y��\u001f\\�\u000e��K码�k�m���N��\u0000H_V�\u0011��\"�1\u0010�7����{u�A'�\u0010̀�L���B\u000f�LF\u0017�r)����v��\"+�'\u0012�m>��SY����\u0016V@*����U��=N\u0005\u0015⌗j�����HS6�j\u001a��15�\n��5���0%�R�nz�\u0012J�\u001f��\n\u0005�\u001a\nr�^�4'ҧ�[��uL2aʴ\u0016�\u001e\u0001�\bj\u0007:�ȇ?�W�\"�oP\u000e�`�k�\u000e�\nx�4����Ƀ�\u0005T�\u0003�:\u001br�\u0016j�B$Α�\t�\"�H�\u0006\n�J^vr\u001a\u00103PpQ�`�\u0018`Lm\r�9\u001e��m\u0019,d��\u001c*o�\u0014WW��AE�\u0010���L���*�CN�v�5e\b�\u001ameB����\u001b֔�B\"\f�����_n]z�G�M�\u00065`�oe2�=\u0003\u0019�\f\u0018lx�gT��P��#�Ö������\u0003xw�z��e\b��\b�A@p�\u001a��\u000b\t$҃��vD��Ž��AU{\u001f��\u0004����7�)�\u0005�JV�\u0011�;�K��N�H�s`X�|\u0019���C��\u001d\u001bə���U�d������4\u0013Q�b���%z�µC-ɻ��}�t�T3�(R=���\u00190�P�����uZ���7��\u000f�Ҩzh��\u0013��e�\"\b1oO�v��\u0001�65$�'��\u001f���%o\u0013�W\u0017�#^\u000e\b�`\u0015z�\u000bUt�ҷ�)��\u000f!��J�;��\u0014��ƈ\u0015n2&�\u0004\u0013\u001e^\u0004�Y����ɣAE�\u0010��۷��3\u0005\u0012�\nN!Œ�퍮��OVT��:��\u0000�Nf��b\u0003�<\u0001\t\\م���;�bO��GGX�\u0017���d��_P}e`\u001c\u000f���\u0014Y���\u0006�|\u0003�q4�\"�x`z�\"vg7���?4����\u0001\u0006۞�1�\u001fCB\u0012\u0004\\�\u001a\u001c��f��\u0007\u001a��Y~�r���p�ąc0�[������fmYYC�)&ګ$�P���\u001cOҕj�3���\u0011]\"#B8�\t�5��ԩ�\r[���\u001a�\u001a���~W\u001d\u0007a�1]𪂂�t4�L\b\u0012������V\u0003��m�=$ΟK\u0004�\u0002\u0003�\tV;�T���.`\u0013��\u0006����֪Ԅ���\u0002�\b�QMZ\u000fC\u0005u$7�\t\u0015�}��\u0007z\u0014��\u0015�n�ύ�i��_� ]�������w�AP�\u0011\u001c���\u001eۮB%\u0002�\u0004\u001eG�_�\u0004\u0012��\u000f\u001en���#Ia�z��8ur����>%�XRk�@�}��\tY���[��1��}�5�\u001b#�g�\u0019[N�d��f�\fZ��%a��'/��.�� e��ܧ��\u0015|�z��)��m���#x0>\u0006��7͏A��[8`#��7\u0013�\u0006i�ؾ1⽝;-1�P5��+Y6\r;��q4i)�bP\u0010��k����\r`n���XJ\u0016\u0019Q�q\u0002\u00023�D\u0017A��\u0005?st*kl%\fY�\u0000?\b6���\u0001�,�eZT[q52�X�`\raIK\u0019z�F\b�*����9�ɳ�1\r���\u001f\u0007 �\u000ev�B��;,H��\u0017��-�/�,��)t�ҙ-d\u0017\u0015����w�=\u001b֫�\u001a8�,�W�\u000f\n@�TwaeQ$�AG�\u00110��X��/\u000b����O\u001d�'@\u0019.y�s��~#�\u001eV�G\u001aA۹��\u0012\u001eW�,�O��a8;�b�(#���i�s�\u0016���\u0013L.�d���\n\t(50���9��AF\f��\f\u00190,(Ղ�G�@��\u0003\n�&�g\n\u0004\u0001԰��\u0001�߭�{�zkaqgǁ�7f���8�\u000f���`\u001c'���\tǒ��_����\u0006v�j�D���Û�\u0013?=�����a���+m�?\u000f�p\u001e)Rqc)W�\u0004\r�\\|\n'ų�\u0019%����1^�����ю�k���t)\u001c���<��ܔ�naF[�\u001e���\r��VO@�s�\u0004�Up�O�[�\u0013�]�Gm�\u000e�pR\\�14��D�q���w�-b�\u000fe��/ʢZ\u001e�\f�)YM\u0018�o�E��\u0006,��AD�\u0011D��L����M�}�\u0004 �0S>�lM]:�j����\u0010e�I�=����q�\u001es�K�?z�<%��Ɲ�Cںz��\u0019Z�\b��c�����сi�v���8�xN��a��\r\u0003%+�\ry���\u0007\u0004\u0003\u0011�\u0015�l�\u0005'oh�U���x3~[nq~Td�@0:n\u0017��E�1�J_�/$O�q�\"B\u0005\u0007��9\u0016\u0019\bOǀn7F�\u0003R1������*U�U4V�\u001eL��V �Ft�X�\u0017�Rt�\u0000?�1I\u001atbe�|mR�\u0005*�\u0000�����\u0018�U��\u0004kw\n���N\"W��V���6B�Ͻ�b�K����Mlv6����!B��w�{}\u0019��\u0015\tBv�O��\u001b\r�S\u001f���$�\u0001��Q�(䦵$4�+�%�E�uc?\u0010����AN�\u0011X��L���;x\b�y���P��銖�qK�z�:\u0005$�6z�H���Es��d\u0006��\u001fh�\u0007���e�hϪj��a\"\"3Bt\u001dA~>\u001b�4���I\u0000�\nql��`���\u000b�V�4\u000f����\u000e���UX��L\u000b������>-f�0�nx\u001826�|�\u001c�b\"���\u000f\u001c�\u001b͌\n10\no��\u0007\u0018cw>ps�3o�f��Ix[��1L�>\n���m��}8Pe;�Y\u0006}����\u0001�\u000e�>\u0019�\u001a���b\"��*z\u0019�\u0012�t��ۻ�i����ω�[����5�\u0017�(�\u000b5;�yM�n���J�at���,�V9ND<��?�#�c;�[AaN�(xQ\u001b���A�='�'\u0001�\u001b��8��p�$���&%�kՐ\u0003bn�z�ؤ�c�AN�\u0011l��ۖ�\u0017�\u0014�8�1�J��f�R�*B\u0018�\u0018��Z\u0017����7�@uFF;:�㮙�JD>\u0013؆���g�/�\u0018_��xԛY�\u00142\u0006\"\u001c�d�~�\u0001�D���:�qX+��/\u0018����^�|�\"G�,��]�X\u0015J��k�K�z\u001f*�4���\u0005� ���$h\u0001S�K�T�b\u0005�W9l\u0005U{BaƤ}U �HZ���`�\u0003\u000f�(�p���\u0004�&�s���a\u0006B吱֝��jk�Ul\u0007c|W:�Lj�\n�]\u0010?=�z��c�\u0000~_Y!j\u0005��Ba\u0017�'q&Z0�H�evFE��p\f$\u0002S\u0000\u0000�{ƿ�\u0013}�r;e\u0000j_l\u0006�;s|-f\u001c�\f�Jr'���<��Wn\u0000\n\u000b\\\u0000��C�򴚠�\u0014�vb��+d)u�`Q�\u001c]�'�c�G�AD�\u0011���N��r!l\u000b�\u000e:\u0018��\\H���$\u0014\u0013�&�\u0000z g���1�$�}8�O@�!t\u001c{1]�S��Z�<�iʲ��Gj\bW�H��2?����L\u0018\u0011~g�^^�\u0003�_݇s��\u001d�;����%��v� ࢁ[���&x�d���.z�\u0000a�p���P\u0001�\u001b\u0002\t�\u0016��~R���4�pȄ!bDW\u001e�d��Vͧm���\u001a�L�\u0006\u0001��\u0011RhB�#`�F:-�{:�j�� �'%��#5���̓�Ĭ\u000e&�T�~;8\r�e��.+���n����zkO��LL,�-P��^O�p��\u0005G�AJ�\u0011���MN4ı��zT�w���7�^5�@�;S*\u0016Qu\u0019l��\u001a\u0000�����<ȎH8 �\u001a���z��6ʇ+\b_�Y[,\f��Ix�\u0015�ї��\u0018���V\u0003+%�W�0\r��a��׈#��^\u0017:~����<\t0G՗-W\u0017�����ɢ\u0012���W&\u0019�P�™�~7�a\n|���ܪC4�5�)�\u0007s���5c{�Y\u001c���Ž0\f �Jl���q^�5_�ӡ�q�(�n0���j�\u0004��MH\u0003{w�@A�GX�L���ٷ�9���\u0007�\f_g~p\r�\u000f\u0013sa��Ԅє�ِ�5`���\u0012(x@,�����\u0000�!�%�\u001d\u0004����\n[k+�O\\~\u0013��JbF&\r�\u001a�os:\u0017{�\u000fv�\u001eӽ2��/�h�C!�\u000eze\u001cm�A�\u0011���߷���7}\u0004\u0004)�\u0001\u0001��-�\u000f){�\u001c�[�\u0002w+�������@x����v�X��\u0012<����x���\u000f�Y�\rNR�\u0019,\t\u001bđ�����\u001c��*\u0014�냟W�\u0015�\u000bM��`��\t��\u0015��,=�2H��\n��QTN\u0018�ڲ�'_�\u0019ĘI�BO�\u0000z�z���\u0004\u0017x_����\nH0��B����!�ż+���F�(�������\u0003�dև�q_}��{�9��\u0011&\u001a��b�\u0011��\b8��#�*���\u0007\bJ�\u001b�\u0016�\u001a�O\u001c�{i�\u0007�q��-\u0014�+�������|����`|��5��9��1f�T���x{�\r\b�+ ��6�)��o\b\u001dȆ�f\u0015�\u0000_<�x\u001f���\r��\n�\u0002�\u0016%4!�sr�\u0001�\\J;��͂�����+�S0\u000f.\u000b5Cq�F\u000e��;�F��\u0002K\u000e�[\u0016T�ƴV��_A�EL�'\u0011c�\u001d\u0003]t���\r&}�@g������W�~�Y�\u0001�h�\u0014����JY�Q�|�\u0007\u0010��X����?9�:��\tR$��3\u0012-��-���B\u001c\u0007���(W\u0004Q\u001a��_\u0019����%�r.�h��\n��F�AP�\u0011����(��f�\u0011\u0005(u޼���,�aq\u0010�{lϨ\u001d\u0004E\u001a�K�2�oب��\t�7m�\u0012i�zD$\\+\u0019/O叞`TGm+\r�\u0006'�ݸ�@�3\u0005\u001bd�Ub�W\u0010!�6pQ��V3�֪�c�\u0010��\u001b�&\u0006@�կ�\u0010\nS�\u0002����g���&��+��T|u ꟠k�!G%��2���;>�Q<\u001eI�M\u0006\u000e��y\\\u000b������?�z�\u000f�l@�[i�\u0018t1\u000b�\u000b:\u0000.\u0001H����N\u0014�\u0012�\u001d7M�9\r�\u0007����$HÀغ�5����z!&�:v(w݂��-���\u001e@���5\u00150\u0016�ߌv$�\u001d\u0017I>����^!�ME�Zu�|�\u0007&�[7�j\u0003��Q�'��\u000euTc��I��p�Q}y���Э��\u0007�h\u0015�4K�l���E�AR�\u0011Ѐ�۹�i�%�͢Zk)��'\u001cOS%��-��ww���5�^�G�[>\u0000�ٟ~��Xf�\u0011.�~�\u0005\u001d4�\u0006h�Os�\b�2�\u0005��+v$\u001fB�)5��\u001e��Y@�b�\u0001JW����\u0004@��QR5c^�� 1S]�\u0004=k�P�\u001f\u0001���U�5\u0003\u000f��\u0006*|���a]d��+�'\u00020lZ\u0007�\u0005\u0010T���B��\t��\u0004.5\u0019\t�\u0000�T?�O��i�n<�%l�q�\u0019�k��~�s�\u0006绽t�n�\u0014%(���PY��u�Y`�Z�j�/�\u0018!�Uß�:�n\f��_�\u001b�;���q�Z�zx�v�����=���@�%T�S{\u0005\u0010lQ|R#\u00112!�+Is�s�x��t�(i��S*fT�{��\bP������`�r\u0010ڹ\u0013eOˎ�5�J�F�AB�\u0011��L����+�\u0012�46�X�D��l�e$\u0002�AO�`�\u001b ��N\u0012C\u0010��ղ��\u0012�s��<�&��\b\n`@���\u0007�ك:����v�\u001a�&/\t9ˁHA�\u000e�C��S1ҧm\u0010�8Ok\u0014���\u0018�\u0001�NL\u000b�����Cz\u000b3\u0011�U�Nޕ`4��e�)��-\n8\u000f�\u0013�)�1\u001a��CR�A\u001e��X~�e�T\u000e��lyLhY��a���`e�X\u0004�:>\n?G� �\u0018�F\u001d�\n/a_�Q~�/��1�\u0014\r��i{�RP�\u000b3rg]x\u001d4��\u001dA�bU\\?�\fY�x\b�h\u0012�T\u0010��0H��\":3��;1�(��X$bw��\t-��I��a䋍gt���J�\u0005_%?Fu4\" 쓻+�\u0000�\u001d�ַ��^�C ��AH�\u0011���L�|���\"�A���]x\u0010��\u001eI�x���\u0017��[��ה���\f���\u001d\u0014_�&K�\u001a�3[��s�p�p�(;jD9 �]�\u0006�\u0017\u0003�p�\u0015ǁ�Y>��<\u000f/@\u0011�_J�¹.i\u0001$�~'�d/\u001c����8�;[dAH�D\f��\u000f�b�4 �;,��F\u001a\u001d�����\u001c���p�Vͮ߾�RL�taq]�?��\u0019.tȰ�Bfc]q��j)6��;]���[sz�G�%�`*n{�0��hJ�uK^Ufa�#���`i��D \t#��\f�F}&��%?D�t\u0019�_���?�$�\u001ePڴ\u0015vJk/۲&c��^�3���]iL<\u000e����\r:w�݌�b���˛\u0006�\u0002�\u0001�\u001ag0r5\u001e���\u0015�ᴥ��Λ�A��\u0012\f��߷:�I�ߦ�g��M��C\u0001kOh\u0016�b�����\rP�W�o\u0010\u000f����c�ʲԭ1|�\b\u001c4��\u0010`\u000f\u000eXk�^H�~�\u0018���u8F�D��j\u001b\u0012����n���!�\u0004�����H#�\u00164&\t\b�\u001d\u001c\u001f#X��N;\u001e����\\7В�*/1����;�?�4L4O\u0017w����H\u0006�\u0013��9�\u0006�����.a�\u0018%Ś�#eM\u0001�'��\u0004���\u001e�p@�b�\u001bG�5�\u0002\\�-\u0003����(2/�G�A6�\u0012 ��L�]-�7\u0017f�^�t﵀�\u0004(1^؏r\u0017�\tE� �J'M���ufF���ơ�H?a���\\�\u0012��\u0018\u0013\u00007iu�=���\u0003�C��fħ�ʍ4p�!���\u0017&`?6X3J$&�?\u000f�\u0015-�#\u0005\u0010�u�a�f���[\u0011��Ƕ�i|��R+\u0018�\u0006����\u000f���e�|!��W��O!��L�'�Xޔ�R�l��\u0019��<\u0006\"����\u001a�a�i;\u0001ɗ�����~�>�\u0007a)P�tQ�\u000f\u0007p���_?���b\u0018�)��}o�3��8��V�\u001cРK\n�ID\u0014��\u0003��e?�?\u001d��y:����\u000e��\u001f\ral5\fG�|H㗛ךt�D��Hܹ�ԕI�Vұ\u0016&�b�[Y^�ȣA0�\u00124��X�~�\u0017\u0005��)*��Z��\u0004��H1���PM� ����9ʌ�H&tz.�Ïh\u001a�2\u000b��\u0005�S|\u0019/cN�u��ur��8:�\u0018�A��yY\u0013#�;�tH�_U\u000fI�=�\r��\bt��\u0006ǜ\u0006����5]Z\u000b]8����\u0000S�v�\u000f?dn��Q�}\u0012�S�����T�Ѹ)�\u0015�\r���d�\u000e˙ү��5X��\u0000�ԣE\u0006���\u0012���\u001a�)�\n��h�Oo{�)��v�.\u0013\u0000L�T3(��Z���ڤ�\u0005��������~\t`_����t�>��[�Nj� d�K�\u0002��\u001b�f@GO�Kr��;4\u00068��d���\u001a>y��\u000f^mo\\�m܋��K�'�ێ��Տ\u001b~��A+�\u0012H��X��5�R����d5H�eI\f�R�Rq����Y)�W=P�\u001b������\n�\"�/\u0002�Ɗ�I���SP(��e����\u0017\u000bKj�O\u0007A�����&pd�̆Z]r?�\u000f�?�3��P\u001b\u0017tLR\u0017\f��^;\t\\��0�?�jB\u0015|P���4\\ekJ��;\u000ex��\u0007�\u0002��!���U*�{�x�}]sǩ\u001e�#×C<�\u0004�\u0003�nS�w�Qk\u0004�W��q�r3�\u0002�7;���-˕�g�-\u0010*6q�X�\u00010�m\u001f%�ZSy��UN��L�\u001c�~\u000f�4���\u00075���Q>�Q�m�\"����djOk���ڣ\u0017���c�)LWzU�EAR��L>z�\u0000p�ox_�R\u0013�A4�\u0012\\��X�7�(1��%�\u0007\u0003�M�\bo\u0007�c�\u0018�[W�f�\u001a�Z,\u0017G��U����e��\u0010q*�荻���N\u0007�a�:Ҟ��#f�$��\u001b�Sj��9=\u0012\u0012���\u0012^xտR��\r\\��\n8Ӏ�\"�\n�\u001c�^[��Ua�}4U\u0017e��2��8�d\u0000_b8:\b\rv\u000bӍ�ƟȮڳ�������2\u0017���\u0017��T���q�q��&6���\u001c\u001a\u0000�U\u001e�r\u0004A]�-ڼ�&��iV?*�|$3���.��U�H}�\u000f��' \u0015h\u001f�^�~\u0018�V)0\u0018����e��d\\S��Ry��Bl�Y���ʚ#��d^)d�s%v[o4����iĈ�k�\u0014�(��-�Z����nA�-#0�w�|@��C���L�\u0007�K\u000f@�y��!B\u0017�{���JL�]�\u001au��B�-\u0018����x\u0010K�=\u001a\u000e^,U�2$�E<�%Y� \rk�q��m\u0004���}\u0016\u0004v\u001d��\u0010'�T�0���[:o\u0017��-����Y��,\r=\u0018��6 O'Ρ\u0016.Q�ݬtE�� ӓ\u000b%y&�g'h\u0014�\u0012}�\u0000��簸O��r(Y�J\u0000��WF39�\u0011~�L�]\u001d൥�A.�\u0012����a��!�О�\n0I���ā��[=T��n^qX�b�k��\u001dg�jx�P��\t*4o�7��3�\r\u0007CO��GP�+\u000e[\"��\t�\t]At�\\�KG.�'/����e\u0013�Q|%n/����Ԕ�$l+hnU�\u000f\u0000\u0000Ї��q\u0011�Q_�}�\"4G�ݹi\u0012G�\u0016�\r\u0004*�.��a�H\u0002�\u0007\fۄG�J'�Kx^�M$�5��\r���\u0005�n��5��u���\u001f�$\u0011{�c�;G��\u0000\u001aj�~ĩpI\u0003.�ڗ��N䓈��p+�`��a�\u0002\r;D\n\u001b��\u0014�a��3.�7�\u000bN�[��\u001fѨ�\u0004+T�\n[�eN6��y��G�5\u001b�Z�c�i�-��!J��]�K���A1�\u0012����s��\u000b��\u0001d�����H�>��\u001d}�3_X�WF���)q@%�wk\n�\u0005<1\u000e�{Lcl�䴢���.�?\u001aF:�[y�S\u000fx�c\u0013��?�D\u0004b\\P\u001c°\u0018��M�9n|���^{��\u0011sS�M�����\u001b�}�\u000bT��8\t\u001f�r�5~���\u0017�����\u0012�6ί~\f�&�l]@\r�SE�\u0006��w��\u000e�ά\u0005�����^\u0003l12�\u0000�W��W�Q���8q��O����\u0002;P�v,���9����K\u0018m�U\"*��e��\u0011f��Pԙ�#��>N0IߓȲ$\u0005���5�\u0014M��t\u0011��\u0000���\u001c\t��\r�d��\b���\u0017���d�ݔ���tz�k�\"~\u0013\u0001�\u0001M#�AJ�\u0012����d�<\u001cc\u0013:z\u001e�\"\u0002\u0018o+�t\u0007�&P��ԭ\n��~\u0015`'�_E\u000f?�D�p9��� ��\n^\u0019:\u0005\u001aS\t����;K&s����ef��N�5\u000f�\u0015�}��\"�\u0010m\u0014�lf�D/�Ι�D��3? E��͔\u001d�X`\rHm�f���\u0006N\u001d�0\u001aVx\t�AH|�*\u001c%��]�yx�\n���3w٠,��D�xCʦ��\u0000�l��tB\u0014\u0007\u001f�g�q��T���\u0016i޷����%o'��m\"\u001a�����%�o�T�e�\u0002\u0013/��2,�]2��i��\u0001|M���֌x���n���#\f&��7a�9���&\u0013\b\u000eѣ��s_%J}�\u0002�Eq\u000e\u001e�a���Tz����Q���H��\u0012bg\u001c�Cԍ�K����\u0004� �\u001d���)!�A@�\u0012Ԁ��d+�j���\u0010��jԆ&�hX�@/A1���g*\u0003��Fݩ\tV�\u0012Qu��J`=\rq\u0004�\u0000�X�Kؿ��A���KR\u001e\u0019�c\u000e)\u0005��r�6\u0006�\u0019?qeo:�\b�T�-��\u0012$�\u0013\u000e>\u0001�z���\u0004ރ�CS�u�~�7\u0002�\u0011\fv\u0002Q6zь\\��,\u001a���O~�\u000f\u0011`��\u0004p�\u001f��H�+��ِk�i5�\u000fnR�!�AF�\u0012��Ľ�UE�\t���7Ig����oPgމ\u001f��Y�Gq<���R[\r}��\u0011A��9u�y3߶\u0003m�\u001d���`�\u001d��\u0007/��{$����-��8�����6\u0018����\u000b\u000f�\r]�H�L�c\u0012�\u000fZ���\u001c��CL��\u0004h�\u0019��h��f\u0010�\u0012n��%�j��`u�s��p�\u0002m�\u001ae�wf\t)渇�R\u0014q&qΰ\rw\u0000�D_5���7\u000f��98&����\u0015��\u0003oDžԂ�\u00039I%���Йν1�{���^X05�z���\u0019P\u001d�H�\u0019n*n~\b��<�>�_�L6mϸ���趑0\u0010\n\u0001��\u0017��{�\u0005\u001fk�*tq:{M4�2C!|^0\u0012{ߜd�Y?�\u00049��1˹��a����� .�*b��#�ۣAK�\u0012���/n�=0�NO]\u000b^��~p8Ua��\u0013��\u000e��%�\u0018\u00032]�\u0013!\u0004��F�\tϕ�ԃf{�r��܇��e�]M����\u0002�\n��\u0017���U\u0004��d�\tp�\u001c������\u001dCi����\u001cC�>��\u000f��*��V���̆DW�\fv0h\u001c)u�8��\u001f��?h0#k࡫4�]ӿΎUd41�\u001b�aNK#���ֳ��e���hk�?�k*���M���T$'/�yG��HN\\+a�\\�\u0015��PLcUdEK\u001e�ݘ�u<(��)��\"�U���݇;����q�\u0012�W\u0019\u0004��\u000b\u0004\u0004�GC�\u0004C\u001d-��R�|�Uz�=�a�N��f�N��6�\u0004\u001b��\u0004�U�*�Eߕ������ʼn�C\u0000��;.JKmz�\tgPir!\u0003�a��A?�\u0013\u0010��L��\\D\u0014\u0015`56T#\u0010��/�S���'\u0002I��\u0013��Y��H,����\u0013�^\u0000�\u00158̺����C������\u0013��UmwIo@��t:iQS]���v\\�\u0003�C0ӏd�ۋ�O��/$D���DZoP瑥LV�\u0014�o��˖�\u0007I�py\u0007mw����g�-�\u00193��-�9�%+)��a\u000e\b�+\b~\u0013�p�x\u000b})�%\u0017��\u0003��G~q0f�\u0012�\u0012z` l�a�\u000b�\r��CȠ��iW��;qj�1\u0004\u001c\u0014�\u000f3��-\u0019 �h�:'wG�Ԁ��ŵ,1Z��ܓ��Q\u0005-�[~!x�#�ؘ�\u000b��7t3\u0001W Fh\u0015����)H����8 A~Gc@�`\u0015b��\u0015Px��҇+��\u001d�Q^�\"kA�5\u0016\u0006��#�\u0005����)�\u0002\u001a���<\u0007\u0019B�[\n.\u0004�\u000b��=MDI�ԨY�O\u0005�a��M\u0001�\u0001־\u0017QF�c�R@�A;�\u0013L��L�\u000b\u0016�\fX����B�\u001c��>��\u001e'��+kf�6���x�B�\u000b�\u001b��\\�<\u0000\u0002�\u0004�\b��:$\u0002�O���/���\u0015³G�ڿ�e���+{��nYQOu���A\u000bRp��N\n��\u001fj�=`��\\u�,��S�=��\u001d�wAa����8F���\"��<0)\u0018M(�K^�t��N(X3t��.�\u000b���y\u0006\u001e�·\u00132#�\u000eM�\u001e\u0006\u001f�� �M\f�9\u001c��U�*Z\u0012�q�iL�ʇO!z{�%S+�q��\u0014�\u0003��z�ɫ\bn��2f�ڃ�\b�͊}�����ѸF�Am�zU-\bc���\u000f���~]��\nc\u0005�-��/�a�jr�K\\�I/P��n�}c�\u001a���2��K\u0006vݩK��A2�\u0013`��L�;�%Ɨށ�c\u0016�A>�l�k\b\u0000�׵(#z��tH�q\b�>a�\n�]��\u000f�|���1\u0016\u0013_�q�\u0019�!!8s�9��ǵ\u0002���\u001a\u001d 7bU\\$�|���Q�וd��I��ތ���C�'��\u001e\u0013�U��1o�\u0017Ƽ �Ƅe�\\��c;�\u001f��\u0010��\u0016\u0006�!0LW���\u0007����^�\u0018\u001f�X\u001e$�wT\u001e��\u001f�\u001a\u000fS\u0007�f&d\u0017��՜B�Id*���c\u0001B�d�2hq\u001f捆�\u001b\u0005!�\u0011�����Y�SS/m���㡃�U\u0017�g��?�5h4��JMj�47?��\u0014���\u000f:e;[$*\u0007�pxd�ѕ]\u0011�c3�\u0004\u00156�wh\r;B��J�ԇ>\u001bv���\"\n�6�A+�\u0013t��L�$v�o���.�%�M�О%@�\u0015ՆE\u0017��\u0018Q�G�~���6ۭ0!'\\�� �W\u0016�\u001em�6�\u0011�g���h�%�0y��`��\tS��ƐT�-��=�|\u001d�U�]�v�� k���L�P\u001dH��lj\u00175�\u0013g��\b\u001f�AQ;wY�\u001eX�9\u0000���w\u0010�\u0013QX\"\u0000�6\u0013#ѯ|Om@\u0019$�pQ-Z(�\u0011f�R)1we+仸�l��*'f�a���1���pL�az}˳W�2Yh�\u0007��b�V+'�%q\u001bZ���\u0010�@\u0014I���}�@�fo����\u0011\u0012&�)��o\u0013\b4��\u0013�s�\u000b�\u0000#�@�\u001e�o�>�o�-FV��ԍ���*;$�T����l�����~�M�cN1Џ\u0018�S��,ٕV��/h�N�:�h-�\u0012\t5`Y޾��\t\u0017 �\u0011����[��n\fW��#�E�\u0012@^�.'����2*W!v���\u0003��?��xJ����\u001dM�\u0006%\u001aU?�A�\u0010 ^B\u0003�\u0013��\u0001�$�A(�\u0013���M\"L���I���V��!�\u001d��;�Xa��ߖ<�]�\u0019\u0000�,�\u0012ܰMs�>�S�\u001c�6k'&��\u000f�\u0005�W����gĈ|��g���\u0004�?��K��M��r�\u0006Aw\u001e��\u0014\n�rĜ�\u000f��v�_\u0017�of�}+���\u0002ő���$ˍ���~i��R\u0001��)74[x�U��C�<�$Ǩ�<\u0011�z^,��\u0011�l@��.\u0003[Y\u001f\u000e��\u00043L�x�@\u0011�ɐ�\u0006y�s��$cFh�`����B�\u0001}�\u0011�ii2G�sj�\r/Ic(tnSuȂ��]�sK^�c�\u0006�U�% \rX���[��\u001a��C�\u0001�*W�\r+A&r{�J K��in�e�\u001f����\u001d\u0003��A}�\u0013���M\u001ft�o+A\u001e@\u0003�\u001e�p𪰮.��\u001d��\u001a%�Pۋv\u001b\"<�\u0003�fKt���=�eρ�UŘm\u0000v\u0014ͫ� \u0004ݯ�\u0010ڏ�zuEV&G��|�\u0019\t[M_\u0013\"J��\u000bL�����\t�\u0001�}v̜)�+�MGo\t&�3���\u0002.�m*`�\u0006%�p���H�c�@�����\nO�����vkr.g�ҋ3��g\b\tS�kM�\u001d��3�0r\u0011���íH����\u001aW��p�ؖx��\u000f軷\u001a�/��*�����\"�Jӧ��>�\f$�-�̗�!-�x�E3J\u001b�q����j�v!�������`\u0017�Y�T\u0010�\u0018Y�ı�\u0014�}�D�'_�}1T�Y��|\u0013�Z�`����Q��A 3�+�#���\u001b�V�/\u0014gqI\b��9\u0012�c�@#;y�K\u0014����\u0012�D\n�\u001a\u0004e\u0011\u0015{8\u001dL[���x\u0007���<��>��J\u001ec-�A!�\u0013Ā�L���ץe�@�s�%�\u001de5��\u0010�\u0004\u0002�\u000b�ħ\u001c\r;g\u0013�!\u0012�B��m[\u0004o\u0006\u0006��\\Q)���\u000e���6�k-䭢\u000eԙͥ�}��~�\u0010��b>�*��<�#ֵ���U�>��h\u0000��o�I\u0011��6�n��l�=Z�\u0010˸���q���5k�&�n�y�H7�䴿]����BP\t���J\u00012^�b\u001dȇm��83�>�Jly\u0012�Q܌�)�+m�x����Q�\u000b��Ԃ5Eq�śn\\\u001eIw*q��z:�o��?��t}\u0010�Nz\\��=�?�H�)#��8�e���˫��j��\b�&�rGb|)��[����r�����\u0019��$�A#�\u0013؀�L��\u0015��d�U�sܱ��~[{(����@\u001e�t��q\f��\u0004�8VY��!<^�����%\b�ۼ�D�y�\b�(�p�\"#�\u0000�(\u0019떼��}8��Y:�θ�E���\u0006!��U�@\u0005[u���e�ݦ\u000e�d�jNmՆ49�l�\tB^���Dd�1}�%�\u000e����*��\u0007O��ǧE�\u0012Ⱥ���\\��l:\u0003�b\u0003\"*˔\u0016\u0017�A\u001e���!)��am\r&DM6ȫ?\"[*�\u0002�\\?�o�v~��\u0018vH3�\u0004��B�Gֵ���v��1m��\u001dl`Qoڏa7�c!Y0���r��R��\u0013\u0010@EDiOa����9\u0007�G��\u000b\u0011hw�\u0000x\u001b�A-�\u0013��M\u0011ڒ��#��t�$�'#\u0006��mË�]ʴ`�.��\u0000�:�|�T�|�}�{��\u0004wd\u0003��\u00004�5���p\u000ft�s9l�jY͗\u001bv���J`)H�{\f\r�%�������\u001dt\u0002\u001ce��1}\u0001�(�\u0002��Y\t-�~��3��\u0006\u000b\u0018�\u001f*���U�\u0004z�$�y�ק=\u001f��x\u001c{�Ozo�%O��#�&�L�Ա5M���\u000f-fU?T�M\u0010��ê��uXR��\u0000H�O�@�m�H:�y�fŌ\u000eB��أ��.��C��[�r��v�i�\u0007�D\u0005�\u0007N�G�!��;u�X��<��\u0015�:\u0017e��1�� k!\r���\u001e�\u0005\u0015\u001e]\u001b\u0006��\rףi\u0002_`\u001c\nJ�t6�')���A1�\u0014\u0000��L�� ^\u001b���[!e��}�F�s\f��Lu`�3���X�2[�\n�WK�M�D�@L���\u001cA\u001b�b�\f@�p\u001e\u001b\u0000�n������(cV8#.��\n\u000bG+��c�\u0019��$\u0013�^��\u0001�z�8�J!m\u000e{��䤢\u0011��s�S�\u0013�\n���oQ�\t��F\\� Ј�=t����k?|��|\u0019\u0007�\u0012�\u000f�����Wp�\u001c=�Q\u0017�b|��+-��\u0006�[,�^��ùc�+�C'QC\\�+�����V��$�A��\u0014\u0014��}b���g�H�\u0012���N�j��DX3QR��g\u001fc�%$$m�T�Zz5o��)��&�'���B�:]�}\u000f\u0011}_\t��\u0010̿r�JiE���z���\u0000`�n��yV|�Z\u0006���ifB���b�V�\u001a�&\fEd\u0001&\f�\r;Y���v������Y��R΁n��, !��$���]���p�M�C��z.��I�ļ�Fm�W;��V\u0010Ʌ��i썖��J�-]��\u0003v���N�i]�|pV���ԡ\u000f�s|e�E8]�����q#h�-X��>‡�(�0�����g6��0�\u000e�q'j*\r?rR�\u001eT\u000e������\u0006�\u000b\u0002c�\u0013�\u001eCc\\\u0000�q(Wx\u000b3\u0015:\u001f�\u00044���;�b̍��;C\u0015<\u0001�`;?EW\u0018�\u00135�\u0005���-�3�;��@�I3��8#\b��\u000b�\u000f)JPi���\u0004X����cF\u0003~�\u001d��\b��Q�PKv���L?\u0018��n\u0018h\u0005����A��\u0014(��}a\u001c�;W0��N\u0016��\u0011| o�3QA���^�\u0017-�C7\u001b\u0011�n��\u0010���ʧ\u0019��\"�?t�~�:oQO'ސ?\f��gn�t�3�;a�쯊�\tC�\u0013i��\t`�VO95�ۅ\t�拣\u0013�7\u0000#���\u000f���oN`�P{��!hj\u001f\u0017��0��9���f����\u0010����O\u0015��$�𼩢��5���\u001d�r�hZ�\\���\u0002��U�'\u000f�ݟ��x@\f*%����mI�^/�F��F\u0004�x#��'p �1b9����\u0007���v@lȶ\u001f)۰}�VlG\u00021�ï�8�ʦNr��\u0007�+T\u000e~{�a;��\"��fPF��|�B >����<^tU0�ɞ�iʂ\u000e��C\\3��5gV\t��x�V?�\u0002\u0012\u0017�\u0014P�\u0004�\u001d)��N����R&'��c\u0018R��\u0010Y�\u0007���%�\u001aӉ���礌\u00195���k��\u0018=\u001e/�\t�AI�\u0014<��M,`}\u00138�#�*�'�\u0013�i��d�T۳��\u0000�uR\u001c�m�',����,y�\u0018�ԩN�M��\u0014�K�\u000f��\u0000z�^�0�+/\rXe��\t�C�My~[���+d����\u001c\u0002��\u001a�M��do�nx\u0016\u001d�/�c%�<][����ި�\u0001ES%���\t��V�\u000f�@o��\u0013ƣy��������@�|�h�kP={�u�,��\u00007\\\r�\t\u0018z��\u0003�=8\u0014�|�ȵ\u000bR�/��t�\\D�/ܼ���A���Ug\u0014�}Wi�\u0003̊�$k|.\u001d�\u0000�Һ\u0017�\r�Nwdž�����(�͊\u0010\r�(CC3麗5}�Ϡ7�P�������*\\3�g'\u001eEp���܊\u0011IW\u0012\b8��߭hpđ�R!V���\u0002-��,J�\"$];v�A\u001c�\u0014P��X\u000f�%E��j�e��W�\u0004�\u0012�1��-B�.{\u0014x��q�!�\u000b3�L�\u0017 A\u000b�^D�\f��^ \u001d\u0015y�6^���\u0012�\u001e\u001b��\u0014�.Y(\f��J\u001b�Q\u000f�i|Nj?.i��w���:Ͻ�{����̪�\u0014]��+B�q��@6D\u0019{:�����x��y\b\u000fu��\u0000�W�j�\u0014�cø�l\u0016j�d�q�7��5%�V�P�����\u001f���\\绳�\"$\\Ѥ�\u001a\u000b���\u0013\r}�m\"\u0000�\u0005�V�\u001b\u001c^e���b�˗�޿x�\u000b�\u0014)�'�Ck�j\\7\u001b�(����S��}�\u0005\r4�Bꋋ�\u0017-�\u0012ؙ#�����ϙ����A\u001a�\u0014d��L��갠�L#�\u001eJ�\u00016����q$�s\u0016���\u0004ܩuM��E����ĭ�2�p�>�\u0016\u001f�^���棼C��oJ_\rt\u001c5\u0011*����W�y64��v@\u0007.�>ª/{F$�\u0000z�[çk]�F�]䳍�L������v8�v�G�ͣ�L��xE��}�j�!�S\u000f\u000f�\u0002���-X�0_�-�y\u001b\u0007K���\u001e�=A�\u0014��J�c�<ԅ��KÃ�$�)c���R�&\u0004Í9Ma�z΄��FE�\u0018�cw�=V��W*�TSN\u001dt\ff>�x$tM�5Xg΄?�9\u0018\u001f�f�0�ǵ���H��\u0014�L���B5�\u0019\u001b涣A\"�\u0014x��M2�\u0001\u0011�\u001a�������r�a�j�N�\u001f��\bڨ��\u001e*\u0006ڷ��$�َ�m�C\u0002S}��^g��\u0005�����x�� L:Ddc�2/�3VD�D:\u0010���A�M���\u00153\u001b?}�3�\u0007�����\u0016!�&\u0001��,``�\u000eu=21�\"�^��S�um�/%yi�7��x3j�{�l\"\"���&�\u0001Q\u001a��\u001d \u0010\u001f.Π�4�\u000f�[��'Z�!o\b\bS�7��-��\u0013Sjh\b�R�oh{VA�<]C����ﶨ\u0014\u0014o\u0017\u000bt�M!��W\u0017\u001f+���Ƥ��z�B����A1\u0019<\\��|�\u000fi�e{Պ�3=��\u001c��\u001b\u0000����N��-���'{��A-�\u0014���L�\u0018\u0012�#\\C)�6W�\r��tl��y\u0013�{-_�<����3��#ȷ�\t�)�@�\u0010/ıZ\u0011yKm!�\u0003�,��\r\u0019�z]�\u0017W*��\u001fEd��R^\nX\rћy�\"u�\u001a#E\u0013���\u001f�����\f\u0011�8\u0000aK\r���#�\u0018�\u0015�Q7\n��\u0001�\u0006�D����Q�^Yv\u0013R�t�XSTP����[���A��Lm\u00197���\u001e����\t�k�mD\u0013{��\rRz���b����D��|\u0012�/��t��\r\u0007�\u0007A�{�y`=X]S\u0019\u0014�@D\u0003�S�8G�k/��~����\u0015��_2uQu\u00064��H#!u\n�\u0018��N��lxj�oud�\u0000:7�4eem��4,\u001a'�|�̧\u001fۣAB�\u0014���M2���d,�n&\u001cn�\u000eڴ]*�o�7�)�]?O���\u0014p��\u001c��Ŧ\u0003��6X9��d�4\u0000Mtĥ6�p9x.U_\u0001�??��i��ӵ�l�2h4���/~��s)�͖_#�@A\u0010\u0001ԬD]��H������b�\u0017|�<�0>a��۝ie�(zd��\u001d��6O�_�´Ѩ�$�y.\f$5]=[��$�e\u0014|\f�̗�C\u001e�[\u0018��\u0006���-�����\u0001\u0000\u0007��=���L��\u0000i���0\u001e��`�C���>��,��fm��y�����)#����\u0017��5]X��M�{���L�B�\r��.\u000b�\u0010�T�\u001d@o��S��BXɛ�\u0007h�[ئ��R�P�d\u000e���D�\u0003\u001e7\u0001R�`E�gh�!Y�UI�AT�\u0014���L�Z��jvPnI_���ag1�ii|�f\u0001�\u0019��\u001dAX�����>�\"�\u000f��w��Y�'lO�Osb-���Z�\u0012\\�|�Y\u001e\u001d\u000fvDi\ru�\n\u0019��\u0004��\u001b���,�b�f���q\u001c�͌\u0010&�ۦ�Qv�\u0000�pמ�e\u0014����Ӕ��2k�<��B�2\\���9�Qޗqz�V�M\"\"�\u0013\u001bXYv��[��Fq\u0005\u000ek�z\u001f� @�j��\u0011\u0003\u001bV)\r�\u001c�Ś�Ak�YL�\u001c�P\u0016:���w\b^�k��\u0001U��\u00124Mb�.w��k�\u0006\u0019+�`xlu��_���Y��>�\n���\u001d��4U�L��瀺�/�'��\u0006��e��\u001e0�\u0010ڏ�\u0019�@�\tncy�,�>*�7\u0015�e������P�38�i\u0013����\u0012�oɉ�.s�e��AB�\u0014Ȁ�I�Ӌ���\u0003��\u0018V��!΄���*�JX[\u0016�g�\u001b�\u0004��eߺf\u0017wSr&a�K��\\K�=���t�\u001d��=c�U�#ɿ\u000b�,Aup� �>�B>�$x=)�嶞@�mp��/?\u001a��R�����s8ɶ\u001c�hmA�����]�`\u0000�\u0007iM&Yˆp�\u0012�\u0001�&5�\u0004bXz�\u001c��]��Ru��nq��k ��t�t�k#�s߾�d�\u001cU\u0005\\<�l'{���T�]'�Oй�G\u0006��}�f�j�;\u00177�ۧ�O���z�.�N��\u001f�E������=u�\u0016�\n�cL,b��=�֒~\u0005\u0015M\u0003\u00166'ީ쯩(H\u0005�\u000f�S������\u0017�\u0019��\u001f��\u001fV�<|�\u0013�'U)�\u0015&��B\u0013��щp��AB�\u0014܀��l�߶�&4\u0001�\nIG��j[�Vڥ�1�/�K���Mª��.�d�j�o�\u001f4\u0017�}cxi;��әM�?���\u00192�\r\t������*������$�~\u0016%B�\u0017�\u001f��\u0013�L�\u000b\u000e�V�\u000f����XS\u001b�r\u0000�\u0017l��g\u0015��R\u0019Z�\f�\u001d\u000f;��JF,��R\u0013i=y٭\\�\u0012�\"\u001bg�B;%H\u0005��ῄ/9 OE�m��B�\n��I�ˤek��0K�����Ÿ�l�\\8�L���ں�I\b:�\u0010�6K�vnݙ=DP?���\\�g~�_�E\u001d��AM�\u0014�����\u0011\u0011��f``zݒ�Z*#!!�c��#2O �x�sL\u000eR<\u0014�f\u0014����`7��XE\u0016e�#�Ss�N�;˦�2Ҍ:�\f~����ǿ�\u000eL���X5���\u0010\u0017x�J�+�lHV���^�\u0007��\fKC�\"\u001f�1.�$\nyD�e\u0003��g�NFѢ\u00171D\n���\u001dpU��T�\u001e��%W���y�\u0017�Y���-@+���=V\u0013\f��&\u0000�\u000b��\f��;�;�e�\u001ep�\u001a˕ ч\u001a�:�8\u001e�>(����\u0001���Ҟl�to@,Ӻ�!���CQCYD#9�i\\:\u001d����� ��.a ����\u001eH�Z��%�N�(�\u001f�g{\u0015��\u0018L�zݕ\"/J\"�\f�kL�}���p=3�NJT`vm�\u001b�,��5I\u0006�A�~�#�B|�\u0015\u0004���bR��Թ�I��'%�I<�u�S�?�\u0010ys�^�^�C��\u0014�c�[\u001f\u001e�^�\u0014u�v�8��Wȴ�\r\tp�l)\u0012�\u0018�Bq�,nȄ�\u000f�\\Lp:-���am��b�\u000eN��`\u000f�\u0011%FCs;\u000b(lz�.�\u0000\r�Ll��X��\u0010��\u0005�\u001cs �G��\u0013�T�\u0006:1[��4\u000b���X�@�+W�Ovϑ\u0019���R�`�'\ta(N�B��@�#\r|�W�;�\\\"�i�k�u���\u0016H��������\u0013��)�\u0007^�@���뱐\"��`,�h�\u0018i\u000f�\u0014\u001a�o\f\u001f�\u0016*\rJA~g\u000e�S�H778^җp-�4\u0018\u001e뎞:\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000��*W��y�i�\u001cG\u001b,%t���\u000f�ہ��V)�\u0003.�*>8��B�;?\u0014IX��\\hJ�sӝ��\\��I��o�\u0011�t�x��jsq\nH<��㮝P\f*p�\u0010�^��됶��\t��<\u0014\u0000� ˉ�@s�O���~��\u0010+���1q�S;Q\u001cs1���\u0005�R��@o�;ԁt�c\u0002\u00166\u0003��(}��\u0019)�������}�\u000bZ��\u0017�9��\u0001�\u0003�mj��8:���LDt����\r>�Z\u001d\u0018�J��z$\b,��/�(d���oe/2�\u0019�\u0016/ӶG��^G����\u0015�ݭ\u001c:���O\u0014bN��.\r\u000fSS82�*�J=S��K4.��<3U܆唻\u0011\r\u0005\u0013�~‚�*�����<��:'��\t���KP�l�5\u001e��u\u0012��d0��\u0004Lȯ0��{m#�A��\u0015\u0018��/\u0015�������\u0000��zZ����\u0014����[�H��\u0016�\b�fժ�[�\u000e\u0014�\u0015�=pg�h�\u0005\u0016�cwR ���v\u0014q��d8o�\b9祝�=E�]��q�/���\u0018q�'.���T3���\r����[}�'&9�#\u0001�@��#\u0016S\u000f��w�)�Z%L�kR��{[Y��*:��Lu�\u0013��\u0016{1e�D�Y����RH\u0018J�&W�2g�8ױC\u0015�$��w���g�E�K���0\u0011wOP[\"\u0003��E��\f�����\n� F#W�r\u000e������d�A�C\u0018�\u000b���\u0011]��'\u0019\u0004�\u0015��|\\��Nx\u001erH��-�\r�XATEƸ�M�͑Jj%���hz�,5�\u0013�bB\f\r=ؕ��qo���\u0006U�\u0019�Z��\u0012�R4;Q���1�u��\"���\u0001%��K% i��u�(�e%�F\u0017Qġ\u0003��ܺ�ׯ�֞\u0000����G���MǸt��X���A:�\u0015,��L���_�q����\u001b6�;Y�\u0014�R�\u0015�\\�\u0014..��\u0014�|b�H�j�u{���b�AB�7��\u0014���\u0000v^�_��.U��i\u0006���T\u0017\u001cB��ٹr\u0001 \u001a�Skx\u0018�\u001f\u001e\u0011��\u0004~n\u0001�PO3{��b:��B��\u000b��<�'��x-`P�m�t��T�����#�\u000e\u000bUL\u0015�#A\u0014\u0002��\r*@��5�o���S�\u0003)&}�J5�`ܿ�_0FE�㭄�0��6���tthc��\u0016z�V�Hk���`�2C��X iL V\tZq^@��<�$��+^��K����̇fI�\u001b��[�\u0002_�;�vd�pa`�\u001f���,�\n\u001e�T�K���\u0012/dJ�ި�Rq�t)I�~��٨��abn� \u0017\\�#���\u0002�q\u0005�0��}���/���\u0017i��Gp�����eW'���gK6�47�V�޳����E=�K�\u0018�\t�\u0017#H.�r�N��!&�N\u0011'3�:�;v�\u0000\u0011\u001c�'�`��[���^;>�0�̵\f\u0005�@\u001f�qOE����g��%�\u0011�?��\"�$�\u0002��\u0010�(0���m�o��ZhH���\u0000\re�\\T��ON�2�l†g�\u000fDA�b\u001a��vz\u0011�%\b�)���\u001b\u0006:���Xt�+m�t��n��\bݕr\b�A4�\u0015T��L����\u0004�\u001e��\b�B��h4=��S|T<[��$G�\\d~�)�h�\rK7>��\u001b� \u0010XAQ\u001c6HB+�\u0007���j�\"ˤ���\u000e��\u0018���Srr��\u0015��5�P\u0019��5b���\t�׼� ��܆�y�\u001c�*�nao�\u0007�-��_O8G�V��M�a��*�V7�����eU�3߯�\u0004�̘�2������\u0006\rەu+�w0\f�a}T\u0019/\u000e�\u0010\n|%fv�)ZT� ��z�{(0�G���ك\u0005�f�O6ۑh��~;?|-\u0015?IA\u0001$q\u000b\u0001� sl�cߓ;\nF\u0014\t�\n��'3�m�\\ܙ�uMj��Q��˨\f�'����o�2B/��\u001d\u001e�~�f�ZO;\u0011�p'e�T�A1�\u0015h��L���7���v_�.��t���9(t�Z�`,3*��>+-\u001a\u000b\u0003�Iz{{ro�\u0018F��V�A�6�\u00167\u001c��\u0002�\u0005>%'��\u0014��>�FD�ZEC�y=#���m\u0012ځ)�*�����e�`+���r��y.��9m���8\u001a�Ǫ��\\o�CG\u0012�y�\u0019j��{�*\u001c��Q�',SC�\u001b�=c�yĬ��QvG�X��c-\u0003�p�iʟ(���ݞ��'�\t9\u0015��A7�\u0015|��L�t��i\u0003�\"���.}�N\u001aig#bD\u001fC\f�<��cR\u0007\u001c�ǭ�\u000bL\bm�We�\u0015�d�\u0004��\u001d2ث�M��ۘs\"��sPÅ��_>צ�[�m��c\u001eڍ�\u0002���qR\u001c@\u0016_H�h�\u0004k�-ΌQ%C�rR�\u0011�Z��\u001a�\u0014\u0018ݶ:�\u0006ȡ g�����\u000f.��ү�%�Do��g\u001b��;�X\u0013z\u001f�ܾ{��@���������9\f�:\u0013���I�Oܐ\u0006\nF;W�\u0005&� @��A9�\u0015����d�l�\u0019=\n��xi\u001e\u0010�\f��Y�t��\u001d�b�PD\u0015A�L�~;X�`\u0017<�-HO����rwṆJ��#����9�>bt�d\u001f��U=\n\u001eiRz�A<���� ��?�TտW����I�1�-�d1�g�^2��Ƚ��w{����d�ҝпf\u0014�yC\t��2\"7��߭�Pn�\u0014h�\u000f��bq��̎���OMܑ@�E\u0015mN���M�\b{ʄ0Ш��{�\u0006�{�U/�Y�I�\u0011&\u0007�\u0007;�J}��\u0010�N.\u0011j�O�\u0015cSU�;�Ъ�X�\b]^�]10_B�\u0011�l���f\u0010B\"L�\u0019s\u001a,Q-���F��5��\u000b�/t�!�$%^rD `Κ�\u001a����]-7R\u001a\u001c�Y�ĕ�\u0013�A<�\u0015���L�.�Q�*�\u0011@�/n/��V\u0007�P�Y�150�4��S���\u001a9콚N�٧\u0013�&@�U;�f\u0005�\u0006G��&\u000e������\u0017�a4J}y\u0001\u0003_�c\u0016\u0003@��( \"<`��g��6�H�\u0017�&\u0012�(�@V���\b�O�P\u0000�2x��]L˷?�3t��98\u0002p\u0014����/��.��\u0015A&\f\u000b1\\�8Zo�\u0000Z\u00169���v��_�ki�ͻ\u0000Q�*����%j�h�*�\t�Yr�;G\u001aQF��Pⱘ5\u0007�9�^�3Q��U�xێ\u001b+WSƲH)ܞ\u000e�o84>m\u000fg�;��\n\u0013�\u000b?�a�r�sH�E�O�VJ�\u0016���V| \u000f��ѹ\u0007�p@u�N؛� U�-�\u0002)`��;V&m\u0000圣�A5�\u0015���.�à4\u0003m7�V��y��+�'ҶFt6��\n~Cd�7\u0006�S�\u0006��ԗP��v�-�\u0011\u0003��m!o�R\u000bI)�6S�.c�n�{�S�j�ue�4l\u0015\u0003�Whfos'\u0011)�V���?z\u0004��)��˵s\u0014�D�z����=\u0014\u0011�����\u001a�54\u0011Π\u001c\u000fH\b\u000f\tHY���&пl�7R�'�cj0h��⒃��L�}�*�`�]�np^�1��GM��?�>���\u000fѸ�j�x\u0019�\u0011ULv�j5\t�W�P\u0006\r\n\u0014e�Y\r\u0002KU���j�/�Lk��\u0000�w�� ��Z{���d�泜�֢v�0\u0011�1�L�(\u000f\u001bfB��Ǎϝ���{:\u0015�7�R��\u0007v���y�({nb+Y�A6�\u0015̀��\u0016\u000f�_\u001a\u0000`�;��=łx��g������k\u001f�`a\u0012�\u0018�\u0004pD��\u000b����h�޺����Y9x��g\u0016�7���҇{��R��\u000e3�Ļ7 �tkV�)����e3va2���ڜ,z�X*>�\u0012���\u000f�j����[�$W[6��\u001e��a�`�S\u0006��w\u000e���\u001d\u00169�Ķ�\u000f\"���\u0011pU��\b|��\u00133����^�0�LH��`3�\u001d\u001fߘe\u0014r�\u0007R>�\u0006�˨gwP�|\u001b�R��NIa�89�+�\u0018t7S\u00046\u0001�\u0001a��$6\u000e\n�P�Y5\u0000��\u0003Y�~�\u0012��n\u0006p���\n�ƯO��#��?���o��_���6\u001cA�Ջh��$��6C\u000b�C�$gT�ُ�A9�\u0015�����d�\u0011�@���0L�R\u0015��S\u0016Y�n\\�@�\"�\u0010Q�B��,@\u0005a�`f2\r�̡[��,F��:x;֖=X�K.�A���\u0002��\"0��5I� �U�8�m ب�W��m��9����٠\\�i\u0019=t\u0012\u0011\u0016�\u0003���2d$\u0002I�uP&qfRcX�\u000f6ה��\u0006f��\u001cIl���@\\\\1��ؖc�C\u0017(A�\u001fw{V�\u0002\u001a�۝Xwxdy\u001e\u001dN'\u001e`n�d9\u00141R���Ζ\u000e�J���o���27��\u000bӇ�w�Ps\u0015�7�;��SXa�#\u001b’�N�\\�v�`?\u0000I�O篬F.\u0013\"�{3�-����9�5[�[\tu�=7��z\u0001��&\u0017d�\u0012w�\u0002��\u001e�y78�\u0010`$���1\u000f�A9�\u0015���\u0011\u0014\u0001��c�M��������|�Kl,\u0017��>m!b���(p&�Vh�p_5\u001e��\u0002\f�`T�A~����\f��Q���C�J��\u0014G��觞�͗\u0001�r�\u001f_�H�k2���Y�x|�����\r��\u000e����b!?��#�8�\r)�\u0019X�E��C\u0013�\u0007�����\b\u0018d\u001c\u0001���\u0004�\u0007��HP\u0015��\u0005�֞\u0003\b\fqf\u0017\b���\u001d��#';\u0005l�A�\r[[^ĵX��t��4+x\u0018�vo�f|�w8\u0000l�P�}�nh�g�Z\u001bT�O�'w��ky|��RԷ_Ԃ�J�О\u0006� ��k]��c��7�?\u0006�b\u0019f(��|N�b�/|�\u0007\u000f&,.Զ��\u001a\r\u0006/���YO0\u0012i�c�;�\u0012�A=�\u0016\b��\t���\u0013\nq�\r$\u0014=���Њ\u0005ib�3�u\u001bo�<�+C}NG�Eq��8��\u0005���$�~�ӽ��a�z ����\u0003D0=�:j\u0014\"�\u0004�^~2��&��sb�g�ZN��\u0006�¬7���eyy?}��j\u0017\u0012_\"͑�UV��,��r�PEi��8\u0003C�A���\u0003g�\"ot�q�gs�9�R����s�!�FF�Фĉ�s�4]����=�y�\u0005�L�\u001a\u0013/�\u001d��f����'�٨:,�A�v����ׅ�6\u001d̂;��ۋ�*4� {�Lx'ur����[L<�\u000b��/GC{}���Ha�O�_�he��\u0013:o\t�f��_����A� sF\u001d\u0018�\u0001�bx�0!c\u0003ku��Z\u000e\u0004��z��UO�A.�\u0016\u001c��X���,�$O.\u001e�\u0014E\u0018�N�\u001a\u0015\u001c�*�\u0013Q��+��\u0016��\u000b74�\u000f�W�{\u0011��4'�L\u0003�d��,��\u0014��%\u001e2�!�ȿ\u001e\u0000\b�(��5ĝ䚛�j-\u001eg�{X�\r�\u001d�y��r�}\b\u0019n�E4����\u0006�k$e��{@r\u001c�9\u0018ڂ��\u001b�\"���5q��ڐ�>\u000eS�\u0017�ӷE\u0015�0�z���_5}���>\\�%:�<\u001fTG0\u001f��98Bu�+NlG�Q��k��\u0013\"�2�yd�C��d�*�M����\u0012�/TY�\u000ez��%&V=�v���!9�������I�-G\u000f�&_i(�n$���\be���\u001d\u00061�\u0010Rn�E�v�I�6��k���|�e��7�A%�\u00160��X�\u0018��K�\n�\b�Or���nj��\\���\u0014����Ч%[�-�\u001e\u0018^�\u0005��VW�T\u0013��0i|�/�Ba�[q+9�!,�t���kV��\u0013�O\u001e�l>�|Qk\u000e:�M��^\u001d�Bp�������~sԊ\u000eS#{8�_�)�\u001aĮ-k��\u0006��\u0003J��һK����;��\u0018H1��Y�\u0005;�����7�\u001b���im�A\u0007^��h\u0004\u0004��0d\u0001��\u0013A��;�eV�W�X� ㈥ncH�\"\u0013k�f�Yn��Sp�}hc\u0016޹ע��B��\u000eק�\u0000*\"�����ib���G�\u0001!~�^_}N�Y\u000e��o�������W��\u001f߶Z�C�54\u0007�A)�\u0016D��X���<\"}�|��~Ů\u00199>�\u000b�i‘p�\f\u0013\u0018�ɡ�\u001aA ��R���\"�s�z��W�\b��cd���e*�?�\u0007fw\b��%3��wS^U�\u0018��>�c萃��A\u0019��u�JУ�Y���GqIC\u000fUSa��y)n�ƥ}6�b�X�L0�\u00174%_}\u0013=/Q\u0019�:�4\u00152���V\u0012���\u001b�r�\f��zQ�\f��[\b�U\u0002�2�s�\\\n���i�\b4�\u0004���#Xo��$��Q'IB�H�g\u000b�\\S��\u0004U�3�e�Ȼ��i\f�x/�-���d���]��)�w���4�I�\fh;>Vm��2j&�4�\u000e�\t\u001d\u0003��\r�N���[����A;�\u0016X��X���v�\nC�C\u001d�\u001d̀\"\u000f�V\u000eB%\u001dޙ����S�\u001fdz\u0005\u0007����\u001c}��h��D�4�P\\Br��dq�p�;4= \u0018mK�v�f�\u001a7��M��\u0016��*C�\")�n\u001d\u0016F\u0012_;t]\u0010�@*��n�E\u000bP��K;Y\"\u0019�)j\bP&�\r�\u001b2�t1\u0011�:\u0004p�=�\u0002(]��[�i�\u0016/vٓ�\u0019�g\f\u001e\bڱ�E���'0���!���\r�&����s�/�/k@�5��\u001f��7?�aFV���=�\u0000�@�4�uE�X\u0002\u0003�#��C%�W\u001b\u001a�!�n�\u001c}aj�U����wͷ�\u0004*���]��׼4K\"c\bc��wG\b\u0012���*\u0004��\u0006��d�l��ߙB!�k>��\"�AB�\u0016l��L�V�}�3\u0013���w\u0016wo5�FW�\"�gnJ;\u001b��K�MW�:�pB�\u000ed\u000e{�ߠe$�D���a��YL)k��p\u0001��L�U4�S��\b�g�<�s��c��xg\u000e\u000f��2Cj\u0007\u0014y�Y#�n�_6\u001c��V\u001a�uA�fo\r\u000b���̆'a�\u0007\u001evWi@Mژu�ݑ�f����~�����p�\u0017�`\t-��\\;�q�\u0007�\ni�\u001b\"I\u0006\f�J\u0011�;\u001a@�AG�\u0016���L�4uTf���9>P�f\u0018�r��Y)�\bZ1�%B\u0007ʱc�Ҏ��\u0007b�0\u001a-d\u0003��\u0000��m9!�=v�$V,ؐ\u001dY\n�z�D��f�@D5�\u001c��\tC1\b�ۃ�\u0013\u001c������F��4s�\f�E���\"����\u0007C���/�����O9M\u0002��Y��v��똓\u0010l��\u0010�sCC(4\u001f�#}7�Bt\u0013<�׭\u000e\u0010����\t�&\r���\r�E�9#ǧE�#��]SZ�-\u0015\u0010W�yGS�\u0017`�`\u0017�X��sgƩb���U\u0011��œy���P�ۋha����\r�!4��\u0004��\u0006�~����?����='cd�\t��ȩ���+���\u0010\f�'r�N��dԸ��}A�=�{R\u000bn�\u001e\u0004�\u0004�#�Mg���|C���A;�\u0016���L�Sꘃ9��\u000bw<�\u0005\u0001�܁��,��?�[7\u0001�\\�h\\��4xXTW�6�\u0016\u001d�i�a���C\u0012��{���\u0015�$M�\n�q�?î^��W�;\u0019��[h_�U�\u001e���\u0011�\u0005k\b\u000e����2y\u001d�>�`��N�IJtJ�^k�3E'�H\u0019�ņ��Q������v����a7aW�o)�P_�/I�\u0019�@��\u0018H��yߑR�\u001f�b�\u001e�|\u0003�\u001c�^\u00058��ϼ����E�Tp\u0004\u0005\u001e�W�\u00177ox�0\u0006b����k\u001e�\f�v��n6\n����r�f�\u0019�_��ܯ�Tz�`O��\u001a��\u0013q\u000b�\t�zW�ߥ�m��4MyS�\"Q\u000f���lPo\u001b�O�׆���\\\u0000\u0000+ⶡ\u001b.\u0014��A]�\u0016���M\u001f0\u001b�&J�0�f��\u0004gEe��ޏ���]�K�y{FH�F\u000eOL�(m�vV�K��;)\u0010n�[#?�ݒ̎\u0017�����\u0005�ԱB�(rM��z\u001bX�sn\u000fxCFq\u0013�M��:�Q�\u0007�(��n\u0019!�Þ�}�5�K�5֘z�'\u0018\u0005i�[QR��請�D�|�q\u001eʞ\u0013+�\u001e\u001c忁;?����I�i��\u0001\b��\u0012WLͿW\u0019���o񀱸�f�x�X�n\f\u000e�mn����\u0001\u0011�]�^���\b\u0011;\u0013R�iAؿ�6;�\u001cۦ�\fE\u0002L]�w\u0010�jPȷ�$\u0007�\u0012�\\�`�0�\u000e1�]�u8�\u0011�j�Yꮯ�9)9�ӰJ\\C�Qߠ��+E\u000e�nn��/�c�k\\\u0001�덄�����e�Fs�:**.�����_��U�k7����ŞWٜ��A8�\u0016���MT�<*\\pP��͡�Si7]��\u001c�bf����s��>�\u0014\u0001\u0013���{�\u000e*e\b���L���!s|.r�o\u0012�Hϣ�mgͨ��t�s�ca2#�e��d\u001b,;\u0000��Ҝ�> ˊ\u00182��\u0000Zk���=�\u0004Q��\u0001$\u001c�\t���/Cm\u0001��\u000e/Wv��?��ad��Is�ki�J�`����\u0000�E���\u0015M������-������]^>b#K歐Ÿ��tY��\u001cTb�\u0003�Y�Q�1p�:\u0015�źbxz)-Ht�=4�H�5�k�)�R*Q\u000f�����]�\u0016\fl\u0017�Kꂊ4�s?�V7�1^>[h�g�`b\u0018XO\u001b��dg\u0001OO��g^~�eҍ\u000f\"A$\b�~��<\u0002\u0006�s�\u001a��AA�\u0016Ѐ�L�\u0000�[|cp淘�L-!��ބ����_���\u00190��'��\fLC.\u0014i�\u0012��EvG=�Аm6ͻP�\u0015(ohk(y�\u0003JZ���1��,\n�\u0012���\"�&�j[�\u001d�B�Q�\u0003QgDz>R>�����i\u0003�\u0001��\\��_��ne\u0013�XE����\u0003\fA!{Ryg��\u0010��\u001d6�ﮜ\u001c�\u001d\f<� ,�H\u0018/Fݧg��iC� R�ެ��\nR��Uf\u0017yB�*�\u001b����gl�s}dp��r����>~b\u0011���\u000fc��H��֞f����\n?�-\n\u000f���dΣ�r��\u001a�\u0010p'$�'!ޘ�}?*\f�\u0002�\u001eٸ��1Z��R\u0003;�\u0019��'4[=�\u000en'��]��>r{\u0000���-߳Z\u0014\u0016TH*�\u0012�A@�\u0016��L�-zn\u001c7����\u0013a\u0004S�s\u001d�%e�*���\u0000�\u0017�C=�'Y�ͷ��\\�(J�#\u001c5c�*9q|���Ƨ��_L�<\u001d�$Y��8�K��̭C\u00163;A}=!\u0019��T`s\u0011��@oH����D��[O>Qi;/��vJ��!鋷��n��\u001b\u0002�\u000bq��ǣc��\f� ~�C�%�jZHP+��\u001ay�\u0015�0���ɣ\u0000\tM)�7\u0001�M@[ԑm\u0015�Z�\u000e�\u001a�\u0000�_�͚�B��\"\u00052\u001f��i��,ϳ��k|�w^�\u0019O�\u0018vy��Ҽ\"�����>�J\\�l\u0011wF����$�ར�����M����-!�c�{�,���\u001d\u001e��\u0000�T\u0003>�\u0017���jP�\u000b�ê\t!�I��0�-]%{\u0003g��\u001b�A9�\u0016���L�ܻH�t?��\u0003\u001c���B^y]v��\u0014g)j��\\$5�{\u000f��R�����\n\u0015�j�����1=?\u0013PW�Gj��\b���4\u0005.dX���H�q�w�|\u0017�\r��`yd�O-\u0000�rf�]��\u000f\u0004��\r��X��)\u0005ɠ\u0006�Y\u0006\u0012im\u000fR\u001e��g��R���P+GƇ0ס��F��ɀ�R�<\u001c9\u0005c��@\u0000\u0018��\u001b=�Ү�.O\u0015\u0006�l\u0004ho!U��Md�r�֪\u001dX�Wdr\f�Ϟs���q�'�C�M�\u0006���*_����c�\t\tި�\u0016��\u0006�F�g8�͓���i�^�F�3s�v��X�1��'q�Iy�b�\\e�^����V6WF�=W�InK\u001cl���kh�2II��B\u0014�\u0017\f��|�\u0007/���\u001d�Z�\u0000�MR�\u001e@\u0006�\u0011�\u0017e-�(��������1 �\u0004���\u0006c�i�|R�h��Ȉ�\u0005����c����~\u0001��\u001fu��\u0004��%u�GR�p�2P��j<�B)����F��\u0004{�<\u0000��g�(�������\u0013w\fJ�\u0004N�!�\u0016�x\u0002�l�_��tM2��M���\u000f?&ˍB�d�C�WgR�\u0005\u0012ޡ�Eo\u0005j\u0013\u0015�\u0002����:{լMj�\u0000<{-;'hV\u001ff5���1̦ۉdZZU�E�wD���+fǰ9��#?ڜ$d���Z�\u001a8?\r�;.̥CϤ)ܔ��?5\u001dl̔�3�v���D�\u0011���wV�\u0014S��.�\u0013�]�\u0012\u001co��x��٥��\u0019U]�ԡq�h\u0015��a�e\u001a\u0005V~����h�e�v\u000eR=gtՇ�\u0000�<�ں���\u0007F+�P9j$�܄���H�Z�/Q/�<�L\u0011�:��A4�\u0017 ��\t\u001fN��a�\u0016\u0013���g\u0004�K���f}��������������\u0014�h\u0004�^�\u0005na�KQ\u0011�,K\u000eG�뽣�B��#�V��:�#5�iV��k@�\n!�a_�M#U3)�\u0017�C��_t\u000b��\u0006�ҫV�O�R���l�\u001f=�����@<\u001d\b^\u0005+���\u000bY&gX\r�\u0019<>ۖU۾н��i�\u001e7�Xb���f�_�7���\u001b���'�g!�f�z\u0005��ѳ�ܚUgLC�nQ\u0012�\u0018h�i\\Ռ�f�%�]��K�]�����\b�>�#�\u0017�3pE��&�D�����=���sy�\u0013��\u0012�\u000e�\u0000B����婂4>N�@V��\u000bHȨ~�0��d�.8,�e3\u001e�b�f2G�A*�\u00174��X ��q\u0015\u0010n�7\r\u001c��E\u0019�D�\u0014�R��&��~\u0015\u001a�]�k%si��\u0018���{dK\u001f�=O\u0002ܧ��E�\\*f~�\u001d4��X��\"�%�/�e�1\t�������=��9��ߋU�N\u0017b6�+%�\u0012�V�\u0015�O��br�B\t'�\t\u0013Upb'���b�j��mn�Jc�SE�W�.�m�\u0017I<��\u0012K��Z,\u001a��zH*�Kt�;x\u0005\u000b�a3\u0000�Qi\u0007��%����K \u0019N�Uq�s�V<\n?*�a����]��\u001bq/Z���菥_x�Q���f��ruV�'�l��\u001cs�1�\\O�TB�-\u000f\u001e��;Y����4��W]�U\u000e\u001f͚\u0013��?d����djBB��A2�\u0017H��M���n�\u0002���U�/�ƦA�z\u0002T|�LԱC�E�^�$�F\u000e\u0010��Y$Y$}��N,�F�FfQ\u000e}�V��$\r����\u001bk==�P\u0019\u0013_M,;܁��k��%�\u001fS�92�����u�04�J\t��i�WR�*D�p����K���MƄ�ǝJ�Y���ɚv��\u0019/�9�����\u001c\u0012j\r3C\u0013�\"g��έ����,^v�|\u001f�:�\u0012\u001f�κ)\u0011��J��ᇣ\u0003EAT�]�'i�2�\u000b��R\u0017dB�j\u0001�R���l��\u0010�mh,0g\u0003���6����\u000f����nn���\u0000��\\⊞\u001c�u-4N�Ch�\b��kI�(�\u0018C���9��;\u0011����!�%\u0005�UX\"�A5�\u0017\\���)4��S�\u001aYo\u0013ю��F\u00114e��9Ñ��W1nܼ\u0019\u000e��\u0003W�ܜ�~c�\u0015�\u0019\u000b\"d��V\u001cs���Y�\u0001��Ʋ¤�N\b�\u001d�*�9���������+]\u0005\u0018�\u001262O�o\u0019Z��F\t���@\u001e9\f�\u0012\u001bD�\u001dX�\u000f���=ov�x#\u001f\u0013Cb`?��p\u001b\fKz�3�\u0014�N�yi*�o��Fxk���\u0014��2�X\u000fQ\n\u0014N��f\u000f�X�`%�0�{��k��o\u0016�8�\u0000SPUs���S�Ng�h%\u0011��;ϭ;\u0017@���Ǽ�*M0\u0018z�i�\u001d�5moOK���\u001fظDg�mK����+7u[�\u0007�\r���K��z\u0002t�;`\u0018uk=c�����(�+�m�\u000f�A\"�\u0017p��M���3�\u0006\rQ+�~E 8U��A�)��9\u0019U�Wk\u0014��9)-\u0006�E�ķ��t�S�m�M���͒���0���L�k�k\u0011�a�$� p�\n|�/1\u0001dQ\u0011\u001d#��\u0006\u0012&_���9���\n�GF�r\u000b��-\u0016\u0007�M��(\u0011�{-`�ZK�;�\u0012���Pb�j�>(��\u000bX���}��\u001c�\u0015\"\\���\n�>\u001e[�\u0004\u001a\u0004�/U\u00141�O\u0011 �c�`+VgR\u000fT��){��L��r�@A��]�����ӻf=��r��Jc�+��77dv���)�ڼ��\u0006�r�I���I$3��Uw$�\t�3\u001e���|�ѻ�@h��f\u000e�66k�N��L��+3�Q�\u001aa\u000e\r�\u0011Z�M\u0015�����S���tZbM�H6���A-�\u0017���2g���j\u000f�\u0000����\u001ew���\u0016�Y�\u0019\u0012\u0010\\�2w�о�ՉB����[sFr�5�󜡥ڮ�4�۳�\u0015���֒�LCh����=�^� �9��9P��7qH���UĹ��\u001eO�[Btc��[�W�P�7�\u0010�\u0003��u5�ҟ\u0017���\u0004\u0012^dHv\u0004\n�gTH��3�-�Su\u000eŔ�-O(��1��Y��J��d�N���_�s��\u0004i�yfN^�׮����\u001d͌K�J�$<\u0019�\u0007�Z�f#oL%\u0014�k/�\u001av�N\u001f%�\u0011�G\u0004Xu��Ht�\u0019���m�L�j�c��#�\u0019\u000bª6ıh\u0000>�a�M_1�4��PzJz茼\u000f�+���6�G�,U�\fv�A3�\u0017���L��[x�kx\u0019�������/\u0019V�:\u0005�s\u00189�<\u0000��9!\u0001��&\u001b|���r�`�\r{��)\u0002\t�XG�\u0017��T�2��R��q���\"�;\u0000�d���ش\u001fq:Ӈ�o�3��i�?�\u0016�3��^G�\u0011%$�\u0017�\u0004�ȤB��o�v�H=\u0003(I\ng�%���<8S&�p̽H`\u001a��2Z�\u001c9�(ķ���l\u0016J�\u001d��$\b��\u0007\f=sL��P\u0002�l�|�'b��D�|�ՙ���\u001f4\u001dP�[�e�z�\u0013��_ى�Qy�\t$�=�FK�i7�������έ���K��M�A䈰\b\u001bL�\nW��[Z\u00014@��]\u001c��8Aº�<���\u0006yۚ=\u001e�\u0000��/~�i��A2�\u0017���L��l�\u0010\u000e�j@I�v���[$tB��\u000f�c\\<.��eyqJYMY\u0018J�\u001bk\u001dy\u0002�Gaɯ�s���\u0001�b�ԑq��R��\u001a�ޡmHM����\u0007_�`3B+�M�?\u0006�@�=?\tВ�sP�����C�NJ��������v�\u0015X�Uj\"#���cӓ��J\u001e|J��\rʝN��\u0012\f9\u0011���s�\"\u0001pW#�\u001b!�\u001d���|{���\u0002�Q���_\"�\u0013\u0011�u���fZ���+e��{�g��A�}r��vג�t�$��Z=�{�0\u0005\u000b\rl�zم�\u0014��?�:\u0017\u000b0P\u000b�/}����W\u000b�\u000f\u0004��`WғO�l6:/��j�!����\f���]�A1�\u0017Ԁ�MX\f���Sd�K\u0012UX�ʺ\f\u001f��Ӎo�#�1yp�9�f�^�\u001bK�2ik=3AC���&\u001a\u001a��\u0010\u001d��N\u0013J�!O��l����^��8�\u0000�f>���\b1�;���\u000bK\u0007\u001d�\u001ez\u0015Q�\u0003���\u001c�)i��y~Ff\u0017L�Z($��LK\u0002�^�јr\t�X\u0007���4��\u0007b�y�FL�U�8�v�B�p9�L����$BEm�+dv�50[\u001c$��w��\u0018��o)ⲥT\u0006�X'tm�F\u000eY��\u0011\u001cSa�K��=�\u0006�'f|)J��3��\u001c)�\u0015N��;����\u0018�\fΰ\u001c\u0016\u0016�\tcQ�a�\u0014\u001e�L�R\u0011&|�pw\u0005P\u0000�~�F�\u0004�\u001d7�\t�\u001e9�$\u001eG�VS<�\u0000�A-�\u0017���hh�dvM��{gC���hȯ|i�\u0014��+ݴF$CX\u0002~\u0016�\u0012�,~|Z�Ԛ���ny\u00164�\u001f���'����\u0007R:R=��bX��\u000e�\\� �x�7[�\u0018�Y��r�H(�\\��ۇ��z�ᓬl\u0014vN'v��p=i�<�}�t��Ug�u\u001b��\u0011k\u0019�Z�YN���v@��\u0007/AA'����J����t�I��\u001c\u0001Q[�f\u001e� \rd��7�Z��\u000f\u0018�\"�\u0011�A.�\u0017����p�~a���\f\u001a\u0014�\n������\u0003�\u0004\u0004��\u0015Ih�T�\u0019Ѓrc`)8��*�\"�{��a�&���������\u0001��\u001c�K\u0013nEK\u000e�w\u0015�4��F�\u0007\u0005'uv\f�%!��\t���j\u0013�=6�r1�\u000e��\u0007��;�a0.%U���*+�\u0006я,*��eTIy˰>w~�U�2��$B��\u0018�L⠸����(�t#��ӳ��A6�\r\u0017w\ty\u0013�A'�\u0018\u0010��7\f:�W��SJB�cW��ր�\tڳ��'G\\�M�0:�\u0004z�\u0016{�\u001c�3��\"甫\f�fsJ\u0018@k��ӈ]P��\u001f�\u0010�u��̞:�\u0016\u0007v\u0017�����S���\u001c\"�*�oC5�E�j�`�zqǟo��\u001d1�\\�y/;��M\u00051\u001d4\"`�S놰�Y�m'�s��5`k��\u000e��2���M�OȐ��`�E\u0014�`\u001b1��t�q��'Q\b\u001f�\u00189�q-����S�8�4Xq\u001fn�7��\"�[6�2~���;�����8�M�g�G�C�n�v�aW���\u001d\u0018��ñ��K\u0005�5���\u001f��e�nԬ\u001f\n�j�N\r\u0006����\"�ǭ�R\u0019Ҡ�\u0000_�A#�\u0018$��X���$�ẕ��JQԗOk2����pB�l\u0017�:\u0006\"�\u0013�\u000e��q����\n:��z\u001d`䨹��±Ӌs(���\bп�ͿTd�Q �xШ2c$�����Z|�W\u001d푹/�/7���M\u0017��N4\u00025�s�L?�\f򨬟k\u0012\u0000���\u0014��\u0000�O��}��]\u0000�J\u0019�o�����\"L\u000bi����y7�LW��\u001fwH`굇^b�]e\b\u0013��:�S���*B�pW�?�p#�5\u0015�\u0019����+2�kuR@�����(y^\rA�>�h̪��\u001a�=��f�\u0000�C>��f�4f�z�ٸ9�S2���\u0012>)\b�zr�%�H�\u0014�\u000f�� ǚ��A\u001d�\u00188��X�~�\u0001�$7#��h��\u0000���:W@�\fױ�*\u001e�o\u0015�\u001e��(�G�\u001a\u0003(]��Q�X8\u000f\u001a\u0014`\u0000R�99Q�\u0018`�R6\u0003��,��\u0018C�$�\u0004K��\u00065$)�r��\u0006\u001b����\u0006��b(��\u001e�ߧOS�\u0017��x�2��4�\u0014\u0007�S\u001d�+�Ù�Ս��\u000b�j��K��w�e1 �T\u0010Plj�n�)B��N\\��7>�Cl[g\u0017fK�\b��8o;\r�಴���ƀ҉1��]%���y6�9\u0016�~C46&̑e+����i��[��\"[=�E����\u0002�����<+_���\u001a��L\u000e��flB\u001e\u0016�>\u001f�F��ݳf�͸;��m\u000eg2��A,�\u0018L��X�,��\t\u0007�Q��\u0004;Α�ޡmG�1vx�^��6Q\u0017>\u0018��\u0018�0����?u��5Ĉk�BtbeG�d����3�-3�\u0011�\b\u0019�?Y\u000fd�:�ӕ�ʥv{&���\b^\r\u001eT��\u0000��se�0�SL�k96G����\u0017�4@�\u000fE�ő�KiC��=��Z���8צ)������]s��s�\u000b�Y'g�݈̈�c�����\u000eXz�c>a��o���`�\n��8���_\u001c�����[g�\u0010��P޽E��\u0019�9e����k�]\u0018���Q�\u00021�Q��\t4��\\�\u00132]�ؤ����ņ )�tXH�\u001d�]<~�\"1k��n#\t�d��k,�9\u0011�\u0013�\u001d<�FA�A\u001d�\u0018`��M \u0018\t3F戤�{_\u001d����BS�+�q��q��\u001d+�\u0007vsj-�2Dk79�?\u001e솰J�\u0006�\u0014BU\\���D�Zh�\u001c�EVժƇr\u001a5�oJ���I亍�dv\"]uз�� ~㕹?;���]\u0002�&�c���*�|�>s�j>��Mš���=�/Z�ʬc\"�c�0�Oh��\u0010/&I0\u0015��6�\u0014��q�\u001b����b�Qtd؜:I�\u0012܆}q��=3V��W�\bY\u001d�\u001c�\u0005>��+��gE������Ҧ�t��.\u0012'���w�Q^��\u0013�ZX%�Ф��z�BqU�ӻ��3\u00002��'�g%�]�@W����O�ʣA$�\u0018t��L�����l/�મC�^t�\\M�B�'�4a�vo���q�\u001a�]���G!]��C$��yQ��ilB���Ӫ\u0016J��谟����x�\t?��\u0007\"�*F�6\n��$\u0000\u0018�P�ө���\u001d��~��\r܆Y���)�$�{�9۳�!�\u000bu^�c��t���ֻ:ƶԫE�K�x�� j��d���\u0016��\u000fU�\ty�GK���?ݩ\r$��\u0011��%s�\\�D�\\��\u001b�\u0017X\u0004�]*\u001a��\u001d�|Ξ��?z.u\rt��ŽF�B��%#٣3\u0014G�Y�\u001e�!�}� �U\u0012�=x�N�\u0016R�y:-�R�f�Xp\f�&��xи,�w226�A,�\u0018����b\u0007�K��h\f�u�ˠhZfb,\u00146\u0004I\\\f�ew��\u001b\n�#\u001e~����\\\u0019��4[T�R\u00056i\u001f�����j\u0001:���K{�\f�-�۞ض�V\u0017�B\u0013l�˟� �\u001d0�\u0004e$���������\u001a1��!�]f��#\u000f퇮��\u0014\u001f�\fL\"�W�~\rq\u000e��8��f\u0000�\"g\u0016\u0000�p)��;�H\u001a���w�a��;C�xg��4���D�ј*Z:���ʷ�D>\u001cl��܏\u001e�\u0012F�G����h6��Kc��8���x\u000e�u�횑ͷ\u0007�\u000e��M\b�j�\u0017�D���,�J%\u0019�01&VNf\u0005k�ڤa�\u000e\u0007V�& N\t<\u0003��[V��\"L�i�ޛ�\u0012���\u0003\u0001��AE�\u0018����m��K}�\u0000C�F�\u000e��1=\u000bV\u0019U�L�ݯ�B���JSKV\u000f�C�@�#�U���\u001d֧�6&�/r��p�a�����|d$��b��\"4�T�\u0010Мم��d�g���u\"\u000bD�;��\r7�\u0010`�\"\u0013\u0000��H\f��{9p�X�%���\u00026x�AO�%�3\u001a�B5�>�g��\u0006�J�A�}��\u0016�I�Q�z��S��T\u0013���4:��r�L{�(y���\u001a�\f��@\u0007�3\n\u001a�'\u001eiT\u0011�}_��[\u000e�����\u0012ץ\u0000^�\u0015�^���,or��\u0010:��\r�*\u0001�\u001d�\u0005����$�N(v2ơ\u000f�/\u0000�<�ָZ���8}1�\u0001�t\"@`�\u0012�\u000e�aCE�\u000eC#2�Uj��\u0016H�\u0004��E\u001d�XO�I}y\u0000W�*l��AQ�\u0018����h�7qu\u0017��+\u0018,�̧\u0019\u001a{T����JH\b\u001f;�/�畨a%�ɼ�*��ɛa~��J�'�kV6��ů\u0002燊 J8��¡�g��E�\n����H�>\\W[3��\u0007�W`&�\u001cU:�wR��Ɩ*�e\u0005qr3\u0014)�*e\u0001�[1��u����\u000f�<��f�ġ\u001aV��r\r��`'\f�l�&TVz}�a��&<<�B�A[�\u0016�\\-\u0003es��M�D��^\tCn4;�P�\u0017m����\t�;h���w\u001d�nhS9�.�+\u000b;�\u00166�/���:Zˈ�\u0006�w��A^��\f\u000e�>��z�ۀc\u000f\u0005��c�k���[z�\u0005�F�\u0000���r�V�\u001el��S�*L��\u0007���'c\u0006���\u0002��.B4\u001eb|���%2��_�\u001bc.��\u0014\rI��AG�\u0018Ā��߅�B\u0016��Nj�\rDZW���J\u0017�U\n��r�Cyo�8�i\u000e#D;jn�r�GD�cҫ�\u0011O�c�՗>���sV�L��[�t���R�:i��D�-x�ȁ���\u001aMش`4�ە�Ppi�\u00064;AJ.uX��m�%�,��\u0017�L\u0014\u0005\u0016x�a�\u0014�5����[�'k����I��\u0005K��شHl����c���m\u001e��r-���*(|5���\fP-`\u0012��z���)�H���L�����ai�9�\u0018oyM�Y�\u0012��'����,\u001c�s��﵎`\u0011_=\u0005�\u001e����[��\b�2\u001a��V�9\u0000�[o \u001bӣ�\u0004�\u0015\u001a�\nD&gW�ϭ2�>d\nV\b4Y\u0012]}\u000e9˔��Ũ�p^�@��J \rx�\u001b~�f/Il;����A?�\u0018؀��\u0011����x=���d�e�\u0011�\u0010LE'C\u0013'��\u0007����`\u0010�\n�i\u0005�6�\u000f�\u0016��hr\u000f�\u000b��~�L��q!�q������_�:��2�\r���\f��\u0011},�w�V̲\"\u0010\u0000���\r8\u0007���)�@�n�����nG\u0014G\u0006��\u001aT��\n.�\u0011���J\u001fH�\u0018Z��\u0018��4�\u0019���\u001a��>\u000b�=����\u0015|a\tDd��ND�xz��b=�>0�\u0011\u0019r赃�X)�I����1L\u0003��k\u001c�A\f>�\u00139\u001bF.6�xL��@\u0015h��L\u0013\u0005r]��la�f������\u00069�pn+Y\t\u0005��\u0001\u000e+��:�)\u0012a�S��x\u0004\"�R\u0017��+���sWM��\u001ed�28�cX����j��,�kx>�x�x�\u0011�A3�\u0018���5�R\u0019��¥�\u0013r�9_o��\u001a�(�e&le]g\u0017+\u0002䰙\u0001�#\u0010a�`Z@�m\u0005q\u0019pdA\\g�O��+��j�S�\u0011n���k@��o�\u0013��\u0004-\rs_�������\n�M�s���n�s��-��͎��\f���{^\u000fs�6�\bѠI�#j���\u0016�\u001f3 �5��0p\u0003�L�\\�+Ə��S\u000e�\n-R\t�ܬ!�(B�Gi�82���E2�\u0019�\u001b�\u001f�\u000e\u000e�\u0018�%��F�����״]��23�\u0011�k;S�e��\b6��*�@���'܎��\"\u001f#�4�\u0015\t���3�Fc�hu�V�\u0017k��M��tI\u001d\t��xF����$���\u0004�\u0007�\u001f^�gU�٦���P���\u000e�\u0011�A(�\u0019\u0000��2j)�ܵ�ݗ�Ka6��/����0������:&�毿��\u0016iZ�����@�#)�\u000f���XF���\u0007�q'��\u0018PH�\u0011�\u0016�ۡ(�Y�v��6K�k\u000eW��p\u001a*`��hM�Mt�䶭���\b��eC!�SR��sJ�!l����\f�N��6�u\u000e��pv�\u0017�ҤahR�.�7 �~�L�6_|�Il�FA[x��V��=\u0011\r��7��\u0010��xOJ�\r��W{�H\u0019V>�B:�\u0019\u0014��}���gB�\r��ٲ��\u0013܇��\u001f)�f0[��\u0001��pV��\u0006\b$��Ȁ�o�\u0005\u0006����m\u000b�D��h��悔�\n]�\u0015�\u0004\u0003~���ݹo�=��iea\u001a�T�ν�I\u0001\u001a\u0000���\u0019�\tp�\rZ�L��y�.%¦M�\u0002\u0016�L�S��x-2M��y5�\u001c�\u0012�Ѥ�ů�\u0004�\u0000�FP�VBf�H�t�G\u0010���!�?IT�n���1�d/Y<\u0017��0�Kٔ�f�WYz�9���Y�)9�UL��S5�\u001c�C\u000f�o�/��\bJ0����yAy���Ux\"U'\f�Al\u0012�����Dd�;e8g\u0000l�e��d��]��qY;��\u001b���J��1-\u0013\u0011+��.\u000e/�\u0015�q�D�\u00055:6�����N��\u001a���J\u0012��j���ǯ�b�\u001d\u001a��D\u001b\u000e\r�٭�\u00125egRKt��8�sL\r�\u000bf�8��\u001d�\u001d޾\\\u0003���\u0018\u000e�\u0001\u000e��D'�\u0005�L�B��|\u001b�Cڧ�޾���\u0019�9\u001f���њ��yz7��\rq��&�_G�p{���M!������<�j\b��B�\u0015)*,]�g؂&���H�[��j�q\b��m�\u000e8���qt�\u0013]\u0007��W%�\u0014�g��8n���u$N��+&Y>�;6��$�Xai��\u001c��I��\"�q(�B�9���'F�_��\u001cT�\u0006D����l��K\u0016�N�G�c\u001a��|���Wa\t\na�p��R�\u0018���,a\u0004Ѡ��\u0013Ȼ��^�\u0000Mt�O4����qz�fV�P�͓��s\b\t\u001c\u0004\u001e���g�A�^�o�u�ts\u0019|�w��*w�T�\u001b�<�*s�\u001a\u0002iy�aż�ҥHW�\u000e:c�p�IU�;��a\u0014����F�@����ID����\u0006����A$�\u0019<���\u0012t�7����\u0015��8c6����[q�\u0003�ʌײso\u0017����+\u0004\u0001<�M\u000ei�D{�\u001f��I\nq�H)\u001c�Pk\u001a���q�է\u000eX\u001d�o��f\u001aU��J�#�\u0007���_��`4spT2�壉pC��<�軮��q��Im�K�\u0018,��Z�dT��y�!\u000e�\u001c\u001a��ޤ�7\f�+�g��\u0016G��\r�\u0013�\u001c�����\u0006fhInkܽԈ�~�����\b�ֵjV�w\u001b;��%+�d��\u0014\u001e�}�\u000b��ֽ��\u0015R�HFIQY��M~*�#�\u0010�?\u001a�\u0015���Kj�\u0000�����y?��}\u001d\u0004��T��+��\u000b���G\u0005��&]��\u001eI}�'6��A'�\u0019P���\u001d�Ot�`<���l��L�Pq�6\u0015\u0000\u0019攜��YH�\"Gg���SK�'�>P\u0001�\u001c�\u0002�;$\u001c��n�q������\u0016#\u000ehR`�ݯ��(/\u0013�\u0017�\"\\\\+^��l\b����^��/*�Nw���h�$\u0007�,�1lL.=�%�ڼ�G�L��7�r���\ff�ƿ�`���c\\�8������\u0014h-\u0015\u0007��\u0019�Œ�+p�q mΑ\u001b�_\u001a _���Ew�$6Y�ộ��?�d�?J����(u�|\u001a��qZ��,�\u0012�ُ\u0000\u0005Ѭ�\u00128��A(�\u0019d��Mzۡ�\u001e��7�n\f\u0014d�%�+\u0005�@����\f�D���)4����)����U�t��G�]�uL����bEJ�y�L�?�֘X�yj\u001a��\u001c\r�@\u0017|��\u0007n��)\u0012��a]���GeD\r�\b����O��z����Z�h <2y�\u0007\fD\u00059es.X��a�Kn!G���\u0011��?\u001e͠��`�lYx�������\u0007X�)�Z�\u0017[c�+c��_5�sS�^���h&�z�\u0001*vQtzo�}�6m����\r�33�\\���p��\u0003��N��L\t识O$\u0012��\u0001��c����@�h��A���7��\u0015�UQK8m]�����\u0002*���\u0017ٴ/�\u0012�A\u0016�\u0019x��MvCG�VMo:��(�cVA3\u001cݍ-�\u0004��i]��i\u001eQ\r%h~j���P�.v]�x:Y �a�M~y�\u001e\u0004��\u0015��^1���\u0006V��j��\u0002^����^s��\u000fSU�Z��WB�2\nV,�a�5�,-�N��\u0001��P�\f\u001e$��\f�#��\u0014Q��\u0013\"���穈H��\u0014��F?\u0002�S\u0006�\nIm���'$P���\u0007T+�\u0012(ٿ\r\u0011&[0��@�oӝ�}3���ʀ�vۭ�/\u000e\u0017��e]\tn�V���j3�e�Ź\f�٠���\r��h��|���9x�\u0004���\u0019�jP�\fZ9���x�\u0001�NҌ\u0010��\u0017�\b�A<�\u0019���L�l� {L���\u0004U���ޘ��^�ŋ��Q\u0019\u0011�TN�Fu�ɭ\u001c>O'\u0004�җ�\u001f2`�\u001f�R@�s�Z��/\u0006�|�\u0015J���[V�vB�t#��S�\u001dN8�YP�Q��qu$\n|0�\u0016�K�\u001e���2�\u000exM\"��a�S\\ޚ��\u0017��\u000f�\u001b0\u0001o�(�C���:4�N\u0005�tY�lw{w�6GIZK�dP����\u0012\u001eG&K\u0016\u0000�0Q\n8��&_�\u0015\u0004\u0007\\\u0015�?lk�b�\u0016�I�l�\u000e#��K�4kOƙh܇E�0v���\u0016�2\u0011�\u0011�j:y�\u0018�s\u0010�'sSI��HgI?�� �!��-4�gO\u0012c\u0007�6Ao\u0005�Z�z�\u0002j蛭�f,QqmY\u0000\u001dҵ\u0010�.�)\u001bCf\u0016�4hm���\n'�@H9�E\u0001=��V�\\�\b�i�\u001696��}4�A��y\fk�m��1FH���d�<���ە1%���z�\u0007�\u0007�\u0005�� �%ޅU�\u0003O/Ζc\u0006��A'�\u0019���1�ɐ��:y�w{`O�\u001dQ\u0001\u0019��Y�\n����o(|\f?�[O)w;Ni��5\u0003�@A\u0004�XIc�\u0013��A�,~ن\u0000?�}k�b�^r�j\u0006�8���b�\u0011�:jh\\^Z\u0019��\\\u000f{��(�^�r\u0011'\u001a��`b�m�;�6�+�^N\rݧ����\u0011a9��\u0010{K`&ū��Б\u0017>�ub�/#L\u000bˠv\r�W�`�]�h �Au\u000e\u0001'�K�N�>E⪬|T����E$\u001b\u000e\u0011��\u001dz�\u00077��\u0017\u00078ϼ�2�\u0005y&v�c\u0017]D�\u0015�\f�V�bY\u0004��A���@�<�\u00137p��i\\\u0005�\u000e̘7\u001dZ[h��&�-\r1�E\u001fTj�M�p\u001d�\f'�,\u001c�\u0012n�A3�\u0019Ȁ��\f�\u0000�\t\t��\b�Q/�jy1��\u0005�\t���\u0011)0�t(�/\u001dC\fyIǠ��ą\u0014�(9\u001f!I�\u0001#H �s+�\u000b����`���\u0006��=[�%�g�f�\u0005��\u0007d\u0011Njp�\u001dE\"\u0014�HiZ�\rs\u0002�3�O���\u0000�}��P���Pu�\u00133,��M>�^W\t�(�~�b\t�P�6�H�,J��Ӽ�/�(�J�e5�?��\u0006��M\u0000��4HL\u0002K�\u0015j Q�\u0016|�kZ\u0014��\f���@����_Լ����mP���N�9\b\u0017���㢙�ŕe�ȩ\u0015�3c͂s 1|(�N\u001fy9a�\n�\u0015܀<\u001f��t��\u0003�]�⪃��r\u0015���#V���;y����6�a���Ђ(2\u0002�~��A2�\u0019܀��\u001d�%���H�5d�lFてח��;�\r��nZ\f���\f��\r+�/�P�h۽�\r�Ӂ\u000b\u0003�$}�\u0013��C-\u0007�7tjIl\u0006����\u0016Ňm�.�\u0015f���\u0018\u0003��\u0011]�/�t�l]�@�$\u0015\u0018H~���΄�SA�K���نF�����\u0017\u0007\u0000ܱM�\u0015\u000e7�ӁO��\t\u0007\u0004��A�h�;09�H{\"£\f�[��0d�����������\u0018]C���Ma�e�\u0004\u000e��*]����\u0006�>B�dH2���\u0014�n��C\u0004���5N4�l5+3��RFt�Z�\u0018��\u000f!m�5sM��ה]��\u0013\u0014�-�\u0016ce9\u0001�q�x��\n\u000bR��e��w`\u0017��-+�8�\n\u0012��A*�\u0019���6U���\u001d7�\u0011n?\u0016X8�\"$�&�j\u0002?�Wn�\u001d�ȅ?fz\u0019�\u0012\f��\u0004��*�ϦR�\u001fja�~,�#��q7W5�-iP�kg��x�\u0018J\u0004x\u0010��\u001a�_3�S�F�V\u001eL\u0019��_%8��:��u�\u0015hڼ\u0002\u0006��\t.��3\u0005'[�TS~\u0012>y�ڱ�'��X\u0007\u001c�MT�w\u0000mb�lW��\u0002\\\b��z�`o\nR�b\fb�\u0002\u0015�����#��C\u000e��)���ǖ\u000f������>Y��*�\u0017\u001df6�$AO��F\u0014�[c�37\u0017[}���u�HvE;q1�V,f�\n��\u00104�c�]}���[l��\u0014����z���m��m��\u0017�6�W6V�\u001fI!�ZM\u0007�A3�\u001a\u0004��L�r�����16���%�]���\u0007C��S�\u0006���7���Բ���+�\u000e\u0001�\\��78��M\rޗ-��\u0005�\u0010����{�\u001f\u0004#Iq���9��0��#I�+\u0013'���S��q(��j�ϋe=\u001f��vl����M�bZ\u0003�^�\fQ}qI��]���8�\u001b\u0013�F�A����c�\n\n�>ά�3颓���\u0006��\u0006�|\u000f�ꝼh�B�f�3�\u0005\u001f�sz��J��vS�S��\u001f9�0�\u0004:C��Do�����G��Oђk�RY\u0014l��&����z=\u0007\b�TԎ�r�v��\\�-��\u0015�p�\u0013{<�\u0000�\u0003m�}>A�_��L��/vI#n�.��α�D�����ܗz��$ݑ�AX�\u001a\u0018��X��Em�KB\r�\t�H|\u001e�)���o��?��пv�q3�,��� ^�\u001cQڬ��6�����\u0014�u���\u0010�١�������\u000e\u0018Qή�Ai-)C�v\n�Į\u0003���\u0019\f�*K\u001f\u000e�/��\u000f�7���\u0000SQ)�ZY.�a?\u0010��<��\u0018�����fb�|E�B�虾\u0004����\t�`\\d,.�b�b�\u0001�v��Ֆ�F�N\u0018��k�CN&��O� df�\u0017�\u0013<ĸ���A�\u0000茉3uJ�A\u001e�\u001a@��X����\u0018^��2X\u001d\u001c�+wy\u0007�7ᡮz֛\u001bG\u0001���eb2$&`:��\u001a\u0010b��p��i�������Fu�d���\u000e\u0001/ �a�\u0018\u0002,\u0010}����eE�K1e���;��y�]���\u0012\u0012v/��G8\u0003y��(t\f�\tN\u0011�������\t�z��Uһ�`K�\u0006�H�8��\u0005\f\\0���{O��2 �\t\u0010�v��@Þ�,/�q�G\u000b8��\u0000�\u000b��\u000f�@����kiU\u0016m`o��)3�V߼v�>�\u0007�K�\u001cR{\u0006'A�9w��ǯ�-X���Tc�;�F���`k\u0007�\u0005e�N\u0014]�z�\u001c�qn\u0018;!�\u001e���ܰ�oy��ܵxɣA#�\u001aT��M+f]�)�`y�U�&�?C���UK:����4Ζ��0$~[(%\u0000�_\u000fU\u0006\u0015aˈ�\\\\�����'�\u0017.\u000bN.\u0015�(�+\u0014̹񗡾\u001fd}����a�ӷ7�\r��\u0005x,��\u0015���zu6C=m�\u001c�0r�������cjx���\u001eO}<ţ�E\u000b�\r��\u0001��ycy�r���-����\u000f�&Mt�'���\u0016^���\u001f���{����O6:��\u0012\u0013�S�Hv����\u0018\u0004[l(\u00076{¶W\u00108�4��*\u0017���\u0011�ħ V^R��\u0010\\�@�b\u001c\u0017��F:ѿ\n8��\u0003B\n`�� +�r\u0003ϑH���\u0018F\u0019\f9\u0018c�\u0016H�l�vq��9�Cգo�UQ<\u0002���McA�k� o\u000b\u0001�+�|�-<,9,\t\u001b\"�\u0015T��W\u0018x+�\bM�\u001d�Q�g��\u0001ߓ�O5�Tj�����$����#�O\u0007\u001a�S��X�д0���y�\r\u001cpЀ\u0003^��\u001b��~*��O\u0013��jN�\u001f��\u0016�.�\"/�$$�\u001b�:�nۑ�p�g�\u0005^\u0002\u0018�b�7�k\\�H��\u001b�S�\\.f��Yg#�ǿ�\t���6X�U%\u0019�\u001d�:C�^`C����m'6��~ٹ�e�_\u0014ذ�o�M���P%��\u001d,��,7&b\u0003�2�8Ű���KRL�bz�uȶ�����\u0012�h1Pc��\f��6��j�Pی\u0015}=%��)�;��J\\�\u00138\u0011ɕ�^`�\u0003���m&8Z|��9\b�Pkp㪘i}�\\\u001d��̀��]�\u0015ܱ�\u001d��(\u0004=�\u000b\u001c\u0002��[��\tj��Yٍ��6�A4�\u001a����\u001d�����2\u000e%�\u001d�͡�0�5UX�\u000f��Fzo�#�T{u\n(�E\u001dCŴ\u0015��\u00123��w��TVJ+/�}_��B��p�f��+j�u�PzT%��S+>=\u0007:Ӻ{�J�٠\u0003�v���\u0015�%y?\n�t��\"{�j\u0017�4�K�\u00006�U�_׋�-G��uw�R�F�^>d�7�(�#_�+��!=虱�)����ѽz��~;�\u0003���G�٫�JC\u001a���J��hK�\u001e�=D\u0007P��k�N\u0001��P^�+����`�=\u0003\u0004��C�NUg\t�sc�\u00067��7�\u001f��;F[;7���<�a\u00121��Ҿ�놊�q���]�/?D\f��E�.��L�͕2��\u0017�>l��A0�\u001a����\u0018U$���_�\u0011D��j,���}�uټ��\u0010wT���H��i�3C��(\u001c�e�Zr\u0010�_5��\u000f\u000e�5�\u001cX��\b�}�g\u0004e׭\u001d�@^I�2\u0003������#���d���z�)\u0000���{~�>�W\u0015�{�\u0000~�a\r�G=�Sa�j�H<�\"�\u0017x�\b������q�S���B`����7�W��\fk|VgY�h�����\t���z5x\r��Bb=�y\u0018�\u0007ňR\u0013Q\u0015)x:B����սρ@�_S����J*V�ۡ�j!�!��B�\f�L\u0004%���<�ј6�@�\fP��±\bـ\bT� φ��6���R�(H��L�\u0001��R`3�w^�\u0018r\u001a��\u0014h�8��A6�\u001a����\u001d��D�x��L�\bv=�o��QMI�\u001a!�Z��t\u0003���F~��%j��@I\f�4u���3=\u0003\u0004ov���o���9z����\u0014�%&[����:�P�9gp�BIQ�h��\u00197y,o�S\u001e*U\u0004��\f\"}eI�\u0001<|���I\u0019\n�b��ӟ;\u001e\u00078\u0005\u0016ˌGsf�L�\u0005�\b\u0005A�\u001e`Q{�p�\u0018�*��T��^m\u0012��A>�\u001a����\rC��\u001d98�;�sٿ�\\�Ip�iG.�:�~\u0016Q:�H�\u001a*?�Ȭ�m�>�\u0013\u000b�����\u0011}\u0000Q/\u0012ڇ��Lp\"�O�i�٢��s.C��APc\u0014K\u000bV�\fs��ѭy\u001b_[�\nI\u0017��q�Bm�\b�'��I��x֓_� �\u0012K�g�H���k��9BjSo\u001b�\u0010�^�����J`�\u0007����q��\u0012�F\u001d�[T�_\u001d�s\u001a��*}��W�aQ=ͱg5m���l�$�\u0012�vc��;o�%C�\u0004\tv�\u0016�\u0002\u0010\u000f\u0017\u0010\u0007ﳡ(�l\u001dը�OڧHmaw��!�ϣ\u0019c�3.�\u00020��t\u0006���'Ɋ�a`f��\\��h\u001eOI\u0018�oB5�Cf�\u001c\u001c��q�Zw�}\u0012j��c\u001e\u0010V��m\"@38M\"��AC�\u001a�����a��\u0006w\r\"���rX�\u000b�M\u0014\u0000՟�G\u0010 \u0013<�2��\u0015\u0016��)\u0013\u0013`�t�C\u0007�\u001e��yʗ�r����\u000f��C�\u0005�\u0012�\u0011{�O�ya�������ߩr��en�\r\u0007(\u0006����=�k�f˕%\u0016S�\rpY\t,��'���UG�D�3�w\u0013�֢���vt�\u001b�wh\u0007�#\u0007��l׾5\u0007�$�$>\u001161о=\u0010\u0011�[\u001dlw�~Iq����5\b�G���4���\u0002�,4\u0012*��TB�qw9y\b�\u000e8 b%n�V펶�7F�n���³��;%\u001b�\u0002�3�E���n��}]�+���6(�\rɣK!%�peD�#���r)T����:f�div\u000bc}�\"�LM�-#��\u001a;\u0000�EX��\u0004��\u0004\u001elQ�Lvܴ��A=�\u001b\b���\u0018Mv\t�������\u0016�4Rf�k���L�$H�c���.\u001d���޼?�$^�v)�h�\u0002�e$�i%O��\t�����=�K\u001a���\u0015�2��t� R^>\f��P}X.�$���\u001a�^K�y��[����ΐŌ+\\Q�Q�R�/�޻S\u0001�R�'��8�pc�;~���-.\u0018���r���\u001d\n6�;��}��5�����$.gg���\u0015��I}�ԏU�Jxp֮��� e\u0003s؀Y\u0016p��C�;���\u0016�\u0012��6�O���� �1o6Z�d\u0004~\u0015G�\u0003���\u0011�����a�����\u0013����\u0007�i�B�M�ux�\f\u00050�`��U���)�1\u0002ɨ��\rr\r.@�2\u000b@\u0007B�\u001c\u0019�`\u0001�����x�A��\u001b\u001c��X@�,.�Sp�~F�\"��E�~`z����+�/��pFP�Gâ�h\u000b�\u0004'���\u0005��t\n9���_�*\u0012[�\u000f\u0012�\u0014���!��\u0017�b�\u000fo��\u000bR!\u0006���Oζ�oUE�\t��Q��g$`\u0006>]�f�fR\u0007�.3\u0012�V�Y�6���(�\u000b�\u000b?g��2������\r�\u0005\t�{ݙ�f�v話�H^M��\u001e���E*ږwoC=��J�\u0002���\u001fF�ҹ0��*\\Q�!{!ð\u00140p\u0017\u000e�\fl#\u000fKj\u0004�Q\u0017��C�\u0019#\u000f\u0010bD��|������\f�9\u001e�\u001dJY�)��q�S6B�\\\bM�gw�߉����t\u0000\f\u0005ߵ��q\u001c3�ڑ�x��/����e��������)�\u001b��Գ\u0006���\u0010^\u0016�^��x\u0004���^|��I�%�գٰ�DA\u0013�.1�A*�\u001b0��L��Hv�:0-�F\b+�\bI�\u0004<,&as\u0001�\u000b�\u0005>J>`\":�1a���6k\u0010�\\[*y{\u0016R�u������V<�d����iw���\u001f�@3E�a\u0011\u0010\t�+\u0007��CR�o\"*�˳\u0013U�8�R\u0002�E�N����x��lxwp�3�u�:2\r\u0014:���좂�M�\u0001\u0001C�\u0003��p��.��\u0015-��v1l�pcs�5:�\u00125��+�\u001a�Ⱥ-|X'hmx��\u0003_!�.�o�r�e�Q�:���“��\u0011��O�9S,%��f\u0007�\u001f�}�E[�yI�\u0016*���+VQ]c\u0006��\u0007W���A\\�\u0004��F�W�f�O(�KK\u0010\u000b;Q�ǝ���f�Դ\u001d$�e\u0014h\u0016]\u0002F'�A:�\u001bD��L���_�3hPc�J�\u0014ٸa��2��\u0004\u00153\u001a\u0013�\u0001���U����\u0000�����\"�Mݳ\u0004�8\u0017���k�ad��Ƒž����\u0016Q�.�r�krV��+Dd��\\jJ��6���\fw+$\u0002�˵)�]�\u000b[���{wi(z�v9�*U�:����7N�\u0002\u001d(��\u0004��\u0000���n�P�.V\u0014KH��Ci<���>\b�R��“�����p\u0001(���CX�=��oc��2�#�k�Q��g&�P��a\u0002\u001e��!WJ�\b쥂O+�c�s(N�\u001f�����r\fM�qp\u001f'�b�\u0010�1�ZJu����h옑�\u001c*Hp_*���ߛ�h\u0007�\u0001,�SQX8\u0015bI��_��ü./�u�mCE\u0006�\n\u0003��AB�\u001bX��M|�V�B�3$~XC41\u001e1�B\b\u0003��7�\u0004ֱw�m(p�\u001a�~0� )e���_W=��\u0005A\n�\u0014��M-���2<\u000e\u0010��I\u0012Ͷ\u0017�������\u000fQO�\u000e:@��Ж\"\u001f4��q�7L�*\u0000:�����\u001fq��yN\u0004\u001a�ZM jkx���\u000bf�̦Ӊ�G�\u0007�yě��\u0005�mJ\u0006��C*Vچ=�\u00067r)\u0019�_#��š�g\u0007�\u000ft\u0011�E�\u0004\"ᒁ�8�|�\u000f�&�~��;�&���a��*Vmb༯p\u001d\u0017���_r�?\\�;�1���)��e8��\u0004:c�\f}��\u001eE�P���\u0012�RQGH~���Y��_\u0018�\u0006�n�\u000eJ׭���<$��W�!G�)\u001a��5�G�\u0016+��Q�y��p���bð��AB�\u001bl��L��\u0002h���ܷY��Eq\u000b���\ty���5��\\�5�b\u0002�ey��\u0013���I��\u0006����8e�* g\u0011J\u001e\u0006�\u001cf̯�|1\u0002�QF3ب$\u001e����%�ӓ|/^��>P$�l:W�&ߩS\u0001� �H�4��췏�\u0007}Xn�����+8E�&H\u0012I���\u001d�Fl.Q�F/rYC\u0011�����\t�6M�����p� ����\t9��dd��,�C�b��<ۑ�Gw}����\u0015e_�)]�m\u000e\r\u001b�}6�3; �\n'\"\u001e�OH�z3�eꓰj�W\u0004I �uJk7\u0013™a���(+/�~D4�1~7\u001a\u000f���Υ�ܧx)����A�+�\u0005t��Q�7�\u0000yT)�\\��\u001e\u001e�\u000b�:�\u0019\u0016�\u0005�\u0010A=�\u001b����\u000fI\u001b˝0[\u001b��Q`���������w�\u0001�\u0019T���kD\u0004#�o\u001c��H��)vwu�~�CL�����(�˅EӇ�\u000f8k�A��\u001d)Z{4�\n�H�b~.|ZV�-��}EF`xw�H�����b��1��������`�us�n��,�\u0019\u001bt��\u0010>�;\u001c_/%��}��v\u0011�\u0013i����O��\u0010VCN~\u000eBMp���c���S��Ȅ�*�[�\u0019�\u0001\u0014\u0017\u0005��\t�ZS�P�\u001fuF̻\u0003t�\u000b�T���<\u001ex��$���@�\u0013<���@��dI�\u001b��ѳ\u0001l��ً\u00173)�����\u0001uXs=�\u0005��\n�A�peR��5��L�;BkN��z�LW�0\u000f.or�\u0014$�9�e��Sܺ�A9�\u001b�����䙿v�VFn��ǎ\u000fHf��2^�l\u0016�>m6�.8]'���\u0019z9�U��\u001c�&����\u0013����a�'�\u0001�l=^�\u0006K�`C�\u0002Boq\u001cpX��Q��20W�r���\u000b�Sjd�)�\t�^q\u0002���E��M^�\"��K\u0019}�0;����7\tSl\b�IJ��/�̥�\u0018\u0006f]t:����!��w�\u001enK�(\u0002�p\u001eڑJJ�'\\������w�'*���cE�>\r�Η���:\u0006�7��?��\u0017�t��0ދ\u001aHa�m2��\u0019�R�[�7C�1��^r��2/5�0�.�>�՘^����d� O�:�_8�l\t&<\u0001\u001a�\u0013��ˆ{I�S\u0019#W�zU,\u0013\u0018�\u0001��^��\"/�1+\u001d��\"\\�\u0006��\u0005(%m~�\u0017�m�\u000b��|รA=�\u001b����\u001e[Qe\u001a�Ӓ\u001ep�W��m�\"�\r\u001f`�\u0011�kQU�U-\u001d��j�Gs{��Q\u001d��Zю�W\u000eu�Ύ�!P���iI���ZS�<�&-Uo�ꠏ��9�g�\f��\u001d\u0004�\u0016Q��@�̣+|�tG��:Amd�ǂ\u0003\u0012Ʊ�P\bU��@\u0007�K�^T��u\u0004\u0007>G=2\u000b�\u0005�R��\r:*o+�?� �h������\u00122j�\u0004JΡ\u0015���O3:�qۇ\u0018� A\u0017s�^Z��\u0015\t�,�b�6�\u001c<}���l�\u0019t\u001a68�\u001ehd1�����wi,h{\u0010\u001cjK�l\u0005j��\u0003U��6\rw�֋��XW\u0001�\\�t@�>OEz}�\u0013�1�n\u001f8.k��BE����\u0002d)͊5\u0015>�J`\u001e\u0001��\u0004\u0014�iF\u0018��\\��A-�\u001bЀ��\u001e+s�[�\u0015�+Lz-�\t�T\rN�\u0010f����@C��Ӗ���h3�H��1h)��\u0014J;w�aޫ\u0014x�\u001f\t�\u0005����~�H�&隴\u0014����\u0000��M\u0013��ȸ��9\u0003���\u0005?���ϙ��=\u001b�d�;$�'�e�A�M\u001aR\u0016�F�\u0014�'����3�\u0013��*JΠ�\f��\u0004�Ƽf\u0015~�?=�)�|�=GՓ��\u0010g\u001a\u000f\r�ԓg\u0011�,!]0\u0017:��-2\u0019S5�-�\u0006'�\u0002e���\u0011_�O3.R���d�s��wq\u000e\u0005�����\u0014�\\\\\u001f�{�?�V�xO��\bo���b�\f�\u0007�͊�r�\u0017����7�\\ߑ/P(pYl�a��!M\u000e��HX$�'X�\u0004��A,�\u001b���\r��x!!\f��:A\u0016�`�\u001aK��jf�~�\u0017�u\u0015\f�Ǟ�YTL{\fI\u0015�}ѭ�����fG�;d:ȳ�?\u0006=�5\u0011��K����]�ci\u0018�fR2M��\t\t��\u0000��c?�Ҟ=aɺ^ųΓ�ҕF\u0013F���$�#\u0016q\u0015�K|XXr�T�\f��\u001c�<�����Q'��\u000eeƑ�~;�\b��19�Ƭ���h�;��>;\bU��-�\u0012VU/�ӧ�z.��\\.(�rr�[���lj�Y�\u0001�޸G\u0001\t]\u0013\u0012o�a\u001b\b\u0019���\\�^��nB�Q~���/5�\\�\u0010\u000bSS��5{*��w��Pg��^�LRO��=d\u001b\u0014Z\u0000��\t���X�\u001b�����\u001c��.>S6��A9�\u001b�����/)���N��ԋ�C\u0011�\u000b�{�m�_xA[\u0003\u0005?�5�\u0017�� \u0013}L9g�\u001d\u0016t�\u0007\u0018(D2脱�;d�\u0002\u0001��\u001e�\u0004\u0016�~̃(��Δ�T\\Z\u000e��\u001d���S+Jh��-#W���t�\n�ӱB\u001c�j�\u0016��\u0017�K��i��\u0015eм���\\g\u001e��2Sv:\"���/��s<\u0006�@��\u0016$m\u0006o3o+:��I����\"�2�>��P�\u0001ٴK���M\u0015J��b�T����_~\u0011\u0001\b4���dԮ�\u001bDÍR0����@�J���^�O�~\u0004�S��k�~6\r��ɨ��c\u001f���\u0017\u001d\n�P\u0005[Vm���q\\y�L�X\u000b��.\u0006�F}\u0016� y�+�\u0002\u0004Շ\u0012�*��*_���osҽ�A7�\u001c\f��6��\u0014���\u0016\f_޺l\u001d&�H�\u001f�J�\u001c�3G��\u0016�`$��>�\u0005Czh��B\u0004A��s��H\u0007x.��[6�m5b�ݳ�m��1C��>�[�E�N�!3\u0019\u001f��\u001e\u0018\u0011�\u0010\u001f����f��\\s\u001a\\�}�\u0004�G&&\u0000|����y��Kg|�2Z\bq\u0010{\u0006\u0017Sxk\u0012�lW�\\1\u001f����Z\u0017���]\u0015$0<�?H����~ǹ��z�~S*����V|�a�Ŋ�-I�\u0015t\u0019��8�����\u000bS1�li\t�\u0003� ��\u0001�ݏ��3]\"S\u0016�����#�v�,�\u001c\u0011�\u001b�����u-�2�^X\u000e�=��\u001c�^�ߠUP��w���f��Sa�oYA?6=݀��\r\u0001\u0016e��4���\u0007�A3�\u001c ��]�u�=�r�ٳC��Ų%�`�s��~��\u0010j�%����w �zp\b�h\"Qs\u001e�o��.v?��b�=��Y��]:8��i$\u0002����i�$P\u0017�J�%\u0004\u000b���m�p��s#:�/\u000e!�j�ohsZq� ����wD#ղ�\u0016XD� ���^Z/\u0010�\\\u000fW0��t�a�&����=\\\u001d�hC\u0011���\u001a��`��z�\u001ar��\u0002\u0003z�ܹ��I�=xN�y9��&�CQb�}�\f]��^(��z_��P^g\u001b9�\u000f��\u000f�8��\f�*�)\t�0�\u0002r�f#W��\"���yt٪\u0004Y��DQ����\u0002�^���l:�LnYdˇ��Z�\u0006\u0004\u0003l��.n\f,��\u000b�\u0010�a\u0013�ptg\b�A$�\u001c4��X�\u000b+���Tt\\\u0007��\u0015zV(S������U\u001a�S�|M�G~�\"i\u0019ͧӐQ�烶\u0012�Dh�x�/�(T��)�\u000b+\u0000�e@<\rU˿Le���\u0018;�,��{�{�Q�� �\u000e-p'�Gx\u001d�Ƚz��\u0014\u0002#\u001e�\u0014��[�ؔ�Ĥ�,�ؠո\u0010Q\u0015�9�: 2[&�ت���TxD|�j�\u0005��z櫕��\u0018�\u001c\u0012��\u0016���^�E�'��ʹ\\\b`(\u00020��#�a\u0007�2/���ӓN�\t�k�\u0004&K�b�U��瑟=�r~��V`D��\u0011*��]\u0002\u0010��1V���x}�,)U!�\u0010��ʲM�B�LI�4��Lq���\u0005���0��ңA$�\u001cH��X��-�i������]�\r��\u000eO�c���\u001f;�8��c�pc�� ��JD1G��9���\u0006\be��\u0011�9q��\"\u0019�,��\u000f��\u0007�\u001a���g���\u0010�����MO\tt\"�Mr��\u000ea����E��C�0�7��@2��\u0014���-ۚ3���{��C<���\b�!�FJE\u00132ڲ��Z�.ߋ���|��6��ɝ���(����@B��\u000eE//����a�y���?S[\t﹁\u0014�w\u001b\"�\b5do\fU\u0013~\u0004%\u001e���j�!4~m�ݎLhC�\u001b\u0003WˆX�p;�%�$����\u0017\u0016x����(r� xT\u0011�%�[-R�#\u000b\u0018j�O\b�A\u001a�\u001c\\��Lȟf�����':V�\u0000�;����cy��h�\u0017�CE0L��..�4�ì�����J\u0000D\u0018��>\u0019���\u001a2�\t�-w\u0019e�v}��D�-�\u0005�I�\u001b�f\u0011��uF�³\t��zS��-\b#�\u001f���\u001f�y��d9��B���b�M4\u0004\u001e��\u0015�*�e�z,�S*\u0013�}��%UA�L����P���mV�ӹ\u000b�=y�\u0012Ӳ�$:m��\u000b�6�`O1]ox�o&V�O�\u001a$콜\u0014�w�\u001fqtf\u0001dC7F��xN�g^8�\u0003ƮS`��\u0001\u0007(\u0015�hG��A�?/m���Y:�z�\u0014\u001c$0���H�|-�ݑ\f��w�#;\u0016oңA$�\u001cp��L�T�4ܶ=�V/э���Q�P�C�\u0003�\u0013P���ymn��\u001a�Q�\b\\ ���M���d�@{���N�\u0018\u0017�� ��aZĆ����\u000e��._\u001c�p�'\u0000�ػ���\u0013�`uE��)\\\u0010��\u0000�����W\u001c��_44Yp6̷�p��\u0019��3�^?��i�eJ�'�\u0017ܓ\u000e�ee\rP\u000b\u0002h(&խ����L��Qo�9]�ETφ�cd��Pƨ�G�4o\\�=����\u001fl�D͆�+���w��/U�A'�\u0016�nmI�\u001e�('#�\u001ep*���\u0011\u0007�k¼�ޜ��f\u0018\u000e\"��q\u0015�M2+z\u0010��k���\u0014^L*�ԅ�evL��̪�\b\u0017�����A!�\u001c���M|P]���\n4����ݜ��as\u001bgR-�4��gy��\u001be�V�ۘ\u000f�\u0013�n�\u0003��m��\u001b�\u0012r�հ��%ڐu�zŰ18↽\u0014g1wy\n��'x��������Kj\u001eTS�Y@�>��}K�R�7La�713}\u001d\u0001^�v\u0016��9؇�\r\u000b\r|G)���q_9H��\u000f��\u000fL\u00110��\f�D��˓\u0007��s^��\u0019�_�#\u001ep\u0010�\u0019jѣ\u0006�l�+�\u0013\u0016D���I���\u0000��Y���\u0007������!��(�U�\u0013�N�^��U/�0C~ƴ�qyZ*\u001ej^�DN����Vgg%�[�,�\n�9P�|��f�)��%k晴n37��A3&›�A$�\u001c���LȾ��yQ\u0012��U�EP�C\u001c�&\n�\u0006\t3/\b8`|\u0004\\���\u001c��D�S�Q����]:�\f�Wް��E�D���W����,���tQE��{&J�|�M-8�I]_&�,��#��q�f\u00174)�K ��Z4~\u00103���U�J�q$vq���t\"eyO\u0019�I����\u000e@��׀�Vs\u0010\u0004j���P���\\�\u0012ʚ��M\u0004E]���+x�T\u001d����CD��m�8�c�\r\u001a��R|\\�{\u0004�A\rjX��\u0000�\nD�f�k\u0012L�WV�.\u001c\u001f3���8��|\f\u0013����N��1y�й?\u001ed�˃\u0000)�M�#\u000f~\u0006�\u0000�;�w�˚�S\n���I季A%�\u001c���MT����\u0010�\u0014���7�<\nn�##%�yz�I\u001e/:p\u0001)#X%��H�wB���?\u0015֭�����\u001ajќN\u001fg~�ћ$�\u001d�\u001df\u0017�\u0003_\u0019���ij$�E��\fB(��(�>+�\u001a\u000e�_�?��IG1.q\u0012�ݼU;\u0010Ə$ؼqۦ\n,�V\u0003�����\u0010x&oOJ��JVLP5۹C��\u0011�Ư�r\u001c�c��B�\n��ٕ7$��+�vy�2z�\u001d�\u001b�1\u001e[c�R#��(��t�c���D�E\u000e�l����QO\"�c<�H.P�#(�Ѡ�tLbW �\u0010X~�vN��bg���\u001bf�\u001d\u0006��>��{\u0001�h[���@O�C\u001d�{�����;�bZ��\u001c�A$�\u001c���Ms׿�p���]\u0003�\u001axi\u0010$���\u001a\u0004ː\u001d���P�����(z)�\u0019�H�Dc\u001a��\\GlU\u000e����\\?Z���!��\n�@�2\r۸\u0000�O�\u000b(��x���o5^��k#2\\�z��(&��V��Z����E'=_O��̓�\u0017\u001b\u0018DZ��L�a2Zd'����.�\u0018�&ِ���&6\"�A\"�\u001cԀ�6y\u0016\u0003�\u0011/\b�Ł�؉�oӣԕ\u001b�M����z\u0014\u0017ga�\f\u000f��ć�ݛ@bP�e�\u0005ň��\u001f�I|����4�J�\u001d\u0018U��f��)���\u0001G\u0019����iX� �e`\u0001b�T�q�J(���ϫ�b\u0010Kv��\f��4\u001f\n��g��{s\u001eB巭�Q�\u001c��H�+5\u0002E��x͆�����?:�\u001d6�\r\u0002�m2��\u001cV@�\u00158ݯ\u0013�a�$�>;\u0019�pww�g\u0013+��w�.=@\n�pYQ�B\u0003�\u000be7#���\r���x�T�~i|�k�:�]7}]����v�&����������P��\u0007�A,�\u001c���et�\u00127\u0018hDH���)�G�\u0013A\u0004\u001cǯD�s��=����p�\t\u0010\u001cU��\u001f�%h&q�\u0004Z�/c�n!J����\u0005֢����=:P��'��\u0016��6���ʭ\\ٝ��2����\n���BH�eh2���3���\u0014Լ�]锫�m������K錗4��p�v,���e��`���\typ�ź\u001d����d�o�.��*��k-AG\tC�ci����.�)�,��4���L@�/\u0016kՙd1\u0007�\"W�\u0006��\u0017\u0018\"\u001b��\n2O�!\u001b�y\u001c(�>�\u001f'��A2\u001ey\u0019�f�#m���F��\u000e�x-.bg\u000fTy�%�<_�4O\u0007$�ޚj���@I\u0018�9���z$��A6�\u001c���1�r��I�lA%<т��U�\nD�Z@\fr�N(�.\u00133yg���>�)\f�&R3��g9��Y��\u000e\u000b�.��3�#s͊a�\u0014�\u0016�O?�ۙ\"f�����\u00150��J+�\n<����}��6\u0017Nl\u0005H��\u001c\u000e!+ϼ���\u0007V�8�\u000bUp��\u000e�\u0019u1����>-GR���@@e�bo��i�O��H\\�]s�&\u0003\u0004�3؊�0\u000f���Z\u0001ңF)����\u001d<Ώ��\u00192��~`�PJ\u0019��S�9�\u0018�Q����8Cf�<�{pT{=�/�u\u0001�΅i�]����a�\r����lS�\n,'`��m�wV\u0010W6\b�K��H�\u001f�1��]=/뤁b\b�i��i����V#\u0013o>> ����A1�\u001d\u0010��M{\u000f�\b�U\u001f���KH��7\u0014~�\u00113\u0004�\u0010\u0019w�c�\\;��-�\u0000D%�� \u000ë\u0018��6��-�vA\u0012���MPQV}�\u0005)�W�(W��؜�\u0014I\u0010�}�\u0003H�͏\u0002o�}�\u0002�Ќ�@�\rl`�\f����)s6�O.��;J0m˪s\u0016\u0016��_�ES(,�2cn�l_���bU3\u0006j9\"�I#�I\u0003�vo-@��13W�^HL8fR\u001a\u0007�8���4\u000bȻڭ������Z�\f�F�aś�܆\u00113�:N\u0010gvm\u0006�'�+�F�E�\u0012\\��g��-�4,���.y���\r�a�ې\\��_��!TE�n\u0000J�$\u0011��\u0013尛�m`�\t|\u0000Zgq���5\u0015��-�\u000b��A\u0019�\u001d$��K.A�T�\u0018�Yo��\u0016�tw>�ʣ#��b\u0015K�(9̙o?Ɋ�}Է\u0007��az�]��)9\u0006�\u001at�(���?�:+`�,j�\"���1~P��@�H�8�\u0013�sc�'3(��\"S�\n!{�/O#�!�m\u001e�R�vK�\u0014��\r�S}�}��W\u001e�\u0002UGd�]��0�/���Ouj���\u0018}ht7\ra��\u0016@�\u0006���~\u001bJ�\u0013�\u001c���\u001f#ԉc\u0003\u0003�oy�i�-�\u0017�\u0013bbI���XG�iΙkg�aѼI�\u0007\u001dٜ��ũ��T\f\u0017ч|\u0007/�,8�J�ԼIL�\u00144���\u001a.����D��\u0004�g|�\u0016��\t\b*�\u000e�bfQ:Ngo����'��Q�\u0015L�i\u001a��\u0019h�Ar��\nUS��:\u001c��&v_��\u0019\\���ɞ�\u0003���\u0015R\u001e]��XbB�H�\u001ab\u001c�����z����\u0003���U�慧�#}���n �yG=�鮣A0�\u001dt��L��6�+m]\b`�Bg�\u0005���t\u000b�kܴȆR��r\u0012\u0006�{;�Fq�7/�R�Ih\u0018b�P�\u0004\u001b��Y\u00072L:�5��)��\t��\u001d����T�j����'n��_\u000e\u0017�y���j����-�\u0005�\u000b��NJvBS2�YZVe�,6�7J-<�Լ�D�����K×n�4s�\u0016���K@��HT\"\u0004\u001a8�!\u000b+�\" �3�¹\u001e��߉�H\u0010�7}7g0�y'V1V\u0006��X�\u001eHy|@!\u001f���P:\u0010::5�1O�\u0013�\u001b����\u0005�Ԟ�\r\u000f���N�S�X���\u0013E9h��\u0002�h@.\u0003\u0000T���0\n��\u0005�h�S'���{l\u0015��^�e���k��I��\u0014\u0001Sb|8�?d�A,�\u001d���L�\"ŎG�v\u001f��h������_��-�\b \u000b� �\u0001���������Sv�䵻���Ư���X�ḯymhrS\\e��\n���#�GB�C�\u0016��\b��|���Q����Wc8-\u0005(���VՄ�S9�{����5�K\u0006���\u0013\u0000)e+\u001fE��ol>�^�u^a�v�-X,\u0001��w�I�H��?�P��]6\u0011\"��\u0005\u0017�ޗ��\f�K����\u0001�2���\u0012=�۔5\u001c�8���<�\u0016Οݔu2���\u0012�ٮp�h\u0019�k��x�\u001c��z^k�A#U\u0006f\u0013�B��\u0002�sX�̫�V��\\��\u0010l`\u0000��^j�\\\u0014RG\u0012�\u001c��S�\u0001[�v�;e��N�*���A>�\u001d���l�\"}��+��'F���Ȕ{վ�\u0007��̝�y�u�h��ٰʰj�v��~���\u001a�w�#%m�Y�s�E��#�\\p����%S+��\u0018z�L�\u0001�4~A{�����S�\u0006��F�@z�\f�y�Ԍ�\u0000�#;�@v�\u00009dG�i�A\u0019\u0018b�[��]D`ݑ\rn�\u001d��$\u0004\b�DP\u001d��{�u��c����7�]\u001aNju�i�=\u00110�\u0017!Z\u0016\u0010���|�\n��ιM}��6̶�jb��)���\f?��m\u0001X�X՘���!�\u0007A���P��<��Q_��K:&�����b=Be�[�d :\u001dl�?6ߴrY|h�fޢmE�peM/���FϜ��MP�\u001eS��qD\u0016O�mfz��*��A2�\u001d���L�\n2R�����[��\u000f�d�VaY�[#�yE�\u001b�\u001f*Xlo?�߂�4&~AT�\u0010>�\u001f�Ms5vr��\u0019\rrB�+���{5T5̒qqp�5䱬T���\b\u0014�Fu1�\u000bU�\u001b�v\u000e���\u000f\u0007|\ri�\u0018e�*Nsq�\u0010%ӧ�!�b�B�����\u0010TD#0Z&Bm��\u0002��\u0006ޗ^n��=-�j��dc�C.��Ɣ�q�9K�\u001e��.�**\f�E?d\u0013���G\u0016�㫁2cHX󤣮��\u0005/�\u0014��}˚�ܸ�95�ͧ���\u0013oW4���w�0\u000fk�7\u0007iX�\u0001R+�\r\u0004D�ц�K\f�DQ�6��\u0003�m\u0015�\rs\u0018�_�*F�+�r\"\"�D)���c�\u0006��\r�-�A6�\u001dĀ�1����Y����l\u0016twE���b#�h�\u0017\r�\u001c\rV���n<���p�?\u0006�fv凙ۻ���]}��?w���s��ڶ\u0005\u001d�ck�d����j\u0010�\u0011\u0018aY�y�7�g��T�o/��٩Y���\u0007W���k�-.E�\u0002��\u0006dZ�2rЇ�\u0015O��.(�I��)���p\u0006���\u000b�\u00151<�P�A��ǠTr���SR\u001d�范4d�0\rM�\n���G\u000e��\u0016�k��fjE\u0006S\u0014ӓC��\r\u0011B��=�9͒}������\u0017\u001c��]�\u0002@�\u0011��;S���\u0019�8����n�Ȅ\u001c\u0011�#���N��h\u0010�� Qj�\u0019d��0�G�4�@h\u001aH/O��ϻ��W\u001b2|��):κ�$�A:�\u001d؀�L�E���o[�׮]�c�0Z�f�y��\u0015\u0015�)H�R$�4���Џ�[��DF��J��E\u0019�5F�)��\u0016�*L��Ѻ�;�P^�IR�\u0002\\��2��z�����\r\u0005��u�?�\bV\u0015��M�\u001fl.�@]�&!V��ÿu�j�~Q��Q\u0005��\u001a���e'{=)x\u0017��\u0005�f0\u001a���*�\u001a�^i=�c�e�/mb�#\u0013���?n�d��4Ǝ;\u000fNC�D̎�\u0019Ծ\u0014\u001f��\u0005�߬�Ţ�p5���!�\n��\u0013%�&��]�� }]\t��\u0003\u0016zlO;��\u000fx\u001e��G�\u0006\u0006P�\u001b���]�W�H�\u0002�\u001b����E��5\u0007��\u0014#�L\u0019�E/w@d���J's�#��}�+\u0005�a5�A=�\u001d��.�h�jo5#:\u001e�<��0#q�~T�\u0015q\u000f|@h*N)�1)\u0016��G\u0012�^��j���\u0003d����~tZ��.�~��k`-�9G�L?n*��\u001f\u0005�\u0018��\u0002N:�+gU���k�׿�:NU�~�vS8�S��Ep��*k�V*�\u0010R�(�ќ����\u0002\r\u001aHʻN��k�/X\u0018\r->5��d\fd\u001e����b<�\u0003i���.�ތx��K��Ci�\u00020�\u0018\u0003\u0001�f7\u0003�0\u0001�ɹ\\8�n������0�߸cUg�S���9��P�/Ƃ��0���t˒;:����A>�\u001e\u0000��Mz�\u000b�\u0016��\rh\\3Q\f���`&�����X��\u0005��⫾�߷�HV�r)7�\f�\u0005�y#v!���5h�\u0015�4�n���Z)qÐ\u0018��m����+xi�5V\u0004Q-\u000eO�S�N<=�\u00110H��,,�\u000f\u0003��\"���Q}�C\u00104���)'�6���0-5�\u0005\u0004�<3\\��\u0007\r�<�7��E���\u0010M\u000f����P��\u0018h7_o�.\"�\u0015���\u0001\f(ܡ\u0016y|�\u001e�\u000f1\u0017bg��ip���X��dFiCɪ_x߮'�p��\u0018�XR�ޥ�q���VB��ÂȘ�\u0017�\u0019��X<��uQP8\u001c�;A\f�\u001ce��������<���ÙlM�\u0010�\n\u0015��9�\u0001(�\n���տ\u001f�6�?�\"�H���f���c�A-�\u001e\u0014��X�fL�-�I�\u0013�\t=�\u001feP�7\u001a2\u000b]jA.$-�9kAt\u0003�����gӛ_�\u0013-\\�#��h�\u0002D\u001a�xc̅\u0016TF\u0019k�m)/\r\u0015���7N�\n6F\u001e�U�\u001b�\u0001�\f��C�X�*�\u00114w�l�v3�'���m\u0015�l���ZH�o�2��Ԯ�)X�Ke\u0010�\u0018K\u0011���\u0006d�\u0019_�8A�\u0013������X�t��3��\u001ea(����K��̶���\u0014PD&\u001e�*�p� &\\�\u0007�˪�[?����\u0014G�S�d)�\\�\u0017���\u00170���\u0000�\u0006\u0001��G.����.��2�/0\u0003\u001d�`\u001d}����BE1ʉ\u0003�0��K* ���\u0010��>u-$\u00006��-]�6��\"+��A'�\u001e(��X��<���\nݞ/��\\�T{ό��f%\u0000�>b3ݿ��<��rfBY\u0001Q��͘��%��<�_S\u0004\u000fW�/蒾���25\u0006�p}'�xs��h�x\u001cet���\u001a��Q|\"Xc�J<\nA�G���\u000b/�٦�9��\\��WZ�7����\u0018\u0005�� J���%l��x�2��w}Sh���_M;�q���i��Ce\u0012�����/�������0�./4i�K��\u001dʻ�,M���\u001c��m��/�sdxT�?Ā�j�ǓZ\u0016\u001d3\t\n��3\u0016��@�h]���w\u0004�\u0017�`\u001ct\u001f�!\u0015\u0015\u0010\u001f�[�d�\"K�#�I��i[8O\u0001ώݲ��\b\u001c��\u000b���A$�\u001e<��X�a��\u0011\u0014.<=,8�R�&4�*�\u0018\f=�\u0014�\u0014��JG�#�X�O�&�OTPvi����e�i\u0011\u0001����w\t�\\�2f\u0013\u001cE\rl�bo\u001c�-�l\u0011qi\u0016�+�`j2�����I\n}Z���D\t9���0\u0014W����[���5�>t�[\u001f������!�G\u001c\u0012��i&�ù�\u0001\bT��F�\u0007\r�FR��\u001aǷ�5�uNJ�\u001cD��\u0000\u0019:R�E�\"��Z�nٴ�$�\u000b�\t��Vax�N�\u0010��Q��\u0006�&�ѷg<\u000ff/m�\u0013Ā�y^bO��#g��\u0016\u0019ﭹ���<\u0004\u001a�L�4p\u0019�>\u001e�nv�\t��Z߰n\u0004\u000f��l.\"��`�j��@�A �\u001eP���\u0018@�2�ݫ�꽧��0����:�8�MZ�E�\u001f\u0019(ס\u000e�0�b*��E��ǚf�BL���?�X�\u0012�!��\u000e>��9GIiV[G���:\u0007����^KÒ�aLa�\\��)K���u�l�}\t��Y���u��b҆4\u001f�I[��*a8#�Lذ�[m޴�\u0003k�\u0002A�.كIJ|�%,�SV�%��\u0004\u001e3\b\u0004Ƕ�Kč���=?��a��J���ŃD��;�]e��F\u0001lM����է?s\"+�X2Q�ԩ\u001c�3E=���6�&��=�f��\u0012�{C��_��ޑN�\\9�j�\nզ'!V���2\u00076���X\u000e\u0015��A!�\u001ed���\r�\u0002��O� ��mMo\u0007h,*J��i+��G��j�Y.(��%�[~J]k��ڤ,_�NO��\u001a�\u000fZY��o���n\u000bR�d��8��HT\u0014ް[��\u0006t\u001eL\n���*$~�SkQ|��\ni�$v\nu���;(��[���Ed7�\fp-�j��f:\u0004w~\u0001K�'d�^\u0007\u0001�\u0011�@�\u001dP\u000b�ʚ ���9|��N~���\u000f.\u0007!^���\u0000͔ݜ��[ݏ�6�13\u0000�J���vl���X�D\u0002.2ԅ��K��\u0014F�\"�\u0010;\u000b�K���2weQ�U\u000f�l���+���|;�2��\u0002�\u0015$T�\u0012ȺL2��\u0007����\u0018]zw\u000e u�\u001f�\u0016���A$�\u001ex���\u0018L�Ɓz7�����;�!��e�\u0010M�\u000e��z\u0015\u0002�gǁ��P^3\t��\u000f��{'IK���'d���ۢ�ñ\u0010&WS�]���Î�\u0018�d��[�hd��+Q\t��\u0017xKW���o\u001f���S�s�B/l�C����C�+�\u0007&-e֦��b�E�\u001ecO��z7y�\u0001~���\u0018eq�\b1�,�<�=�ؿ�\u0013�\u0012\u0005B����e�5�'�M������I\u0013�L�.4�����@o\"��S�=i�1����glP&ئ!\u001b�:O�����x�\u0005�\u0005���ѓf�5G8ٝ�Q�Øm�X�6w-��*�ܳ2\n\u0017�Q\u001a\u0016\u0017�.֎�\r��Ǩ����A\"�\u001e����\u0017�Hm\u000fŦ��\u0001W:ɉQ�֑\u0007\u0010\u001f�]�\u0011\u001dV�\u001cB2:�|�Ų�Հ|u�>h�\u000f�p�9A/���cWp\u0018{�㈶$̙��ɭ<\"m�\u0001/��v߉\n� �\u0010�?\u0015C��N\u0004\u0003�h��\u0018l\"��;�N�V70�yݬz;oyn�Rkx1y\u0006�M��3X�O�͘\f��\u0018�E�(0�9\u0001܀h\u0017�%\u0013\u0017�e�X���\u0003�����Nz�\f�^y\u001aF���$�\u001e�\\5�+t�U���uC�*.\u0016Y�4\u001b\u000e�C��g��崇rX�Q�\u0011�h��\u0000��� �\u0006\u0014Z.^����D��Y5\u0003.t,짎�\u0014g���^�LJ|*0+PTk�\u0012��AW�\u001e����\rD\b�Օ�N���)��w!&�Ȱ\u001c B^�qH� �\u0015>O)b\u001c\u0012\u001f)x����u��&Ǵ�Z�b?,\u0015�Z���v�n�~�+���I�ō|M\u0004�q\u001b�]\u001c��ݐ\n�x٩�Z�q_3��\"�-+v\"E���b� _a\u0001�V�\u0007\u001e'�A����{9�k���-�\u0012���<���7�t\u0013\u0014����\u0013Ϻ�\u001e!�����E\u0001xԯBR\u0006វ��\u0011�Rq��9dx֙s�g\u0005����9�\t�jT��v�i<�)\n?Ě(N��mOb�rf\f���7�j�h��d�H���*\u001b�v�{�C[/�lz/E���g�X��x$V��\u0001D֕��Vd7�b����\u0001\u000b���,�!\t\u0015�yJU�?]B���d��9�F��+�XQ\u0012w���\u0007�۝X��AW�\u001e����\r�(O�\u0011�Ѹkg`U6P\u00132*\u000fڱ�������~���H\u0014=���Q�M%\u0018�|BL��$�����!����R\u0014\u001a<��d�[���0I153A���Fa\u000f���8�O���$#̽a8����D��oo�o�}*?gx���N�8$�\u0017����\u001a�\\\u0004!\fs��J\u0017�j�F�GEJ0v<%\u0018d\tW����d�Yzۙ����\u0011�x�F��n�܇�\u001d�x���~F]\u000f\u0011��du\u001d��\u000e�I����\u0010�s��`��_�d\fc�O�\u0005���\u0016\u001d?�3�x��K�1�!o���ċ[W9�B>�\u0015�\u0003�\u0007*,��\u0000�l�����3˲R�#��*WH*\u001dfx�t<)ޏ�AB�\u0005��W�o�9]+�.��+�K}$���\u0007�d|\u0015\u0017+�\u001c�$��l�v.��S}����\u0012�o;O>��9\u0011��\u000b��\u0003�'\u0005���K�j]���۰ܣ��F\"lw\u0017\u001cE3�\u0018����8}oS̈pTV���U�jl\b7kxe8\r�I�'\u001f���A>�\u001e܀��\f�H2����\u0001���S�j�m\u001c\u001a��!R}�9�\u0000*��9Iom�xN���\u0019�T-�\u0003\u0015v��$��x)�q�ǚ)6+$\b�|�.h��\tX��-�����c�6�\u0003�w3P\u00006$�\r�jq@��\u001d�\u0012�\u0010vK���5�3:e���\u0005wT�oD�һ�\r}�=�\u0005����ֆ\u0015�N�`A�/\u0013����l�»��\u001f��q�\u000f$GQ1n�%���i��\u001b\u001c6���P��v\u0004�\u001ak��m�ͽ���~���{\u0015��#\u0013�>1�Tr�s\u001b׺���ph�>���\r��Z`�[��{�%���\u0001Q\fSc�eQ�\u0010�By\u001c��Q���6$&2\u001a\u0005\u0014�/\u0018O�\u001a>�l0��Z;#�Pd\u0004�ؠ\\)*&����v�\u000bt8�S+��H\u0007쬛}Ԯ.\u001d�$�\u0013F>\u0011���j�,���jD#���\t�-\u0014hn�\u000b\f\u0013_yd\u000b���y\u0015�Τ\\\u0013\u0013u�\u0015Vǰ�^I\b��DŽ)�\nd��5��<�����\u001cާ0��8k�!\u0014\u001c�V�)=�@\u0019��~�\u0005D�8\u0013�iġ��\u00118�x���y;,�4�HR�b\u001b�C\u0003�d��f̚��\b���\u0007�*�XW�=�M��TC��HrX��A7�\u001f,��۷�^�\u000ea�\u0000��a��\u0019�\u0004��>�\u0010�jr�OQ����}B\"\u0012�v��\u001aQ~ޱ\\ń|������3��\u0017���K�{J�xcbł6q�е6�q#B���\"oG�ke_+�\u000b0i���H���U\u0016?(\u0010#u�\u001f����)�DF-�.�X`��K�r;�=�U�UK0a&T\u0006�b>e������\\\b�\u001f~p<��B�ooo��@D��*\u0005�\u001f�L�*wU�\"\u001bQ�D:�o{�\r�^OUv�w\u001c �t'��\u0012v��d6l�4BX`�E:��\u001drr�\\��Y_:\u0010j\u0000�\r�\u0004~�Gj�\u0001��\u000f�xH�\t�ځ+/8\u0001�\u000f�rr��\u000b&�kU��&\u0003�\u0000)3d���u4\u001d�ߒ�Z��A/�\u001f@����\u0018jw��T#0n��hʼnC/�:�&\u0016�7�G��Fw\u0005\u0011WT�.����\u0019\u001d\u0017v�N���8{/��8T�\u0016W��[}�η�\u001b\u0011�\u001a\u000e�O\u0004��.�\u0019\u001e��#\u001e�\u001c�\u001d\n��\t77�+É\u0013X���\u0011\u0002�k�\u0004�p]�u5�\u000e^��Q\u000f��Z^�\u0002�«™�P�A��~\u001e�,��0¼\b?uPқ��\u0017\u0002��>��E�q7$U�{yUy��k\fZ�A\u0006�X�2^�_�Ty��#\u0017�7;�p���|E?\\�*����\"�\u0000B���lȪ�&�\u000bXE̞k����\\\u0013y��\u001f���NTi\u0019\u0019*Q?\u0019�1���[���\u0000�M�!\u001d�\u001fMa *�p%�z_ʎ�Ě��f:��A<�\u001fT��L�\\�!��'��\u0005���,\u001b�+\u000b�O`��l�RF5��/���ޑCF�,gd��3dԠV��tG�W�\u001dQ\u000b�N�\"�f��):��V��50\u0014,H�\u0004a�\u0017�>��5�\u001c@��>\u0015N�?��\u0004?&\u0010�M�]\\���\u0002�z%��H)�)f�\u0001�x��]Y�#���FO\u0005p:�\u0010�[����W8[@�,�\u001e\u000e���\u000bG���#ȴ���\u0002����>K�i�,\u0007{�\u001ezX��fg\u001b`�I\u0005��ۯ\u0012��\u000btTw�[�A4�\u001fh��L�&eC��.�q:\u001b8��!��9�P\u001f�\u0007P���.�˯�\u000bQ]&EUT�Ӗ��*\\D�h�\u0006\u0000�\u0003㝶:5W�vǥK�i�J\u000e���\u0005=��P[����1)?��H�:u�èXP��&� �#50��@��ӱdp�\u0012�jq\u00033[Cx-r�eak��\\\u0002�㣨 �Y��\\�\\^�\u001e��5��ȥs\f��\u000e���B\u001e1�p\\J/�H��\u0014,q\u0016�&3\u001f�-�W�k\u001b�A,�\u001f|��M?�}�*v&�����\u001d��ߥ۷�+���8Y/}�����+\u0003�T����du\\s��m\u0005�sj��*v\u000e���]%��wбR��[ʞ\u000fjYs��� Y�=h�7%c�l�\u001a�,%cw��6�\u0000Y�\u0010\u0012���B�ɩx\u0015�����4�\u0003�4ع�~m�_�eoj�`��IF��\u0000�\u001c�5z�\u0018HS���\u0001g�͏�����\n\f��L\u000b�p��pOʯv\u0002\u0003=~|�B\u001br�I��\u001dk\u0000�b�l\u001a62:��Q�܁��>��T���~;a��L|{����VO�V\f�&��\ni�j�\u001e�,{�;\u0005Fs��7�\u0004R��1�\u0017�ӣA$�\u001f������C��ky0�����k��3H�\u001a>�n�t�\u0002�\u0018�_�o\u000f��\f��\u001d-l��=�0\u000fq�\t�a\u001d�<>�7l��;\b6>[�x��[��W����\u00104�[,Ҳ9�τ�p��3�t�RBگ�&��=�x.C�^Cnl�A�\\�0�VD�0t\u0007j\u000e�\u0016�\t�q���\u000fy�E~�U�P��ik��'^s\u0017��\u001f\u0017��ˀ� �\u0004��c��zv��+\u0014�i\t��7��\u001f�\"fѻ*�u^����R�\u0013�&ܹ�JF��\u0003�7�k|�[\u001e%Q���\u0004g�Es���P����\tFY���.���\u0006��{5u�����m�̈́ʧ��\u0010�h:��A5�\u001f���M \fi��.�\u001ba��\bH�RN���\u0012r��\u0015R��\"s�\u0004��Oq�{����%Y����VT5�{��U���y��5�`��7\u0003\"�\u0017`\n�\b���\u001e\u000e\u0017~�c�\u0017�#��\u0011�·�G�d��M�\t�\u0004�\"�m�Y{�\u0001�;Gf��\u0006؃��fy�\u0000Dvv\u0011�t�ٖ��\u0004\u001f�\u0002Q�Ay�ixY:=\u0003����_\b�Ϟv��~���-:���z��R�M�j�&80٣~�\u0011�,\f3b�B�\u0003�\u001d&4�r��\u001c����\u0019�r����%�H��.5֡����O�QR�^����9���q\u00105蘂�\u0015�� \fw�0B��&�����e�sʐ���KjUS�O�>o.Dw���\u0011\u001b�A%�\u001f���M{\u001fj���ݵ7�A\u0012�n�H���<\u0000��\u0001\u0006\u000b���A�U�Άz���L��C`m�>Yc�\u0006�#\r�'�\u0019���U\u000b�1${TS\t͍�4b\t��\u0001�O�2\f���7�\u0014\n�R/�ŠBl\u0016��K��\u001a�)��h��U���\n \u001c����d\u0019�\u0014��%m�z�\u0000���ѷv�q»��@j\u00190�6��\u001cP�y5\u001f�u\u0005��\u001d��1���Ϟ�ngX(�z\u0006��\u0017S�0�CL<�m�{\t\u001d�R����Y\n���_�\u0010_�\u0013��*%\u0000�-m�D/\u000e�pVH\f8#�\u001b:\u0017�Q\u0003ƍ-��N�)��\twεN�x�u��`�~�l��Ҧ�.\u001bч�$�A%�\u001f̀�L��A�/\u0010�X���y�q�]\u0000Yq��|Va�\u0015�\u0007�u��.��\u000b���Y�&$�\u0007�1��\u0013'����sD��b\u001b6��u�c���\twV{\\��]0��.\u001b�C�\u0012fՂς�����;�c-H�.h�\t-\u0006!㞔_mLy�\u001f!b�S�x\u0003��\b�P�<\u0003v�\u0003.���µ<�#�Vd����@ѩ��T�\u0000�:\u0013\u001a|��uL�a��t} xA3���G�)�\u0010����0l��([gu��IE`\u0001h��b���h:\"u�J�1�dGğ=h\u000b�})h�_��p\u0015�cƏ'�\u0005�]��x�bK�\u001d~{wF\\��z\u0018\u001e�+#���n�y�Z�\\k+&+��A3�\u001f�����6u�\u001a!�^���\u000b\u0013@NdP\u0004%l�A�ٔ�H�Bѵ֑��JKMհh��-M��\u0012\u0011v�\u0017��sc�j7\u0014�W�+�@L��~��P��\u001d~��\u0007k\u0010���ꃿe��\u001b�\u0011)[x�� ��K?�\u000bW���+�����5;Y��iY\u0004�\u0004�p��|\u001f�m�QE��cj\u000fbh43�JžQ�\u000b(�ʴ�\u0007�_q׷��Ɲ�z$�RG�}JX�dz���G��fs1`^�\b��\u001f�\\+\u0004\u0001�1�>��\u0014�'9G������\u000fj����uv�^�>�ҿ�IOI���m\u0014�&�`�>\u0013��J�q˂�w��ߏ�n�c�;G���f�\u0018r�pS�?k\u0010r\u0006�fi\u0007X6\u0012��A4�\u001f��M��\b7�~ey�\u0019$�\ns�\u0006\u0016$��R�\u001d<�\u0016*\u0014���}���m\b�z\u0001?�U�\u0013���t\u0003��NhVXQ)��1\u000f���L�����xM\u0004Y�|]��VP_�\u0013�K��z8�tVZ-��|eb�m��?��W\u001c%���a�ʟ\u001c\u001aNOl�&[�>�_}�9&\u0014\u001cЧ\u0010 gԐ�\u0002\u0017�i�^�6��(d�>3U9\u0007��\n�\u000b\u0005G\u0014a�ӄ;���\bm�+4���\n��$��&O���\n��x�I�L\u0017F\u0001�6xy�)2��#$\u000e��\u0015�\"��zxKEȿ�N�'s\u0017���z�ź7R\u00199P\u001d�ތ�н�ܻ7��G�%�g\u001cj�\u0002��;9�D���G����]��?Ϋ�P8�Dd��x�)\u000f�AK\b�A\u0017� 0���\r����\u0014�Zo)�Ϋ��b%�A�N_\u0005�\b��m�(S<ٶ|�$��< �\\=rKV��9o�שi�9�\u001eձ�2���c���⅀ϼO�†ta�y] \\K�\u000e\u001a�f�<�=d�~W���\bj�bU��ZC�7I`�*O���߱\u0010~\u001e[5��\u0014�\b����=b�F<���9�3�{x{rr��/r<͂\u001bV�\u0000V\u0002t�򄍇�se����ױ��Xٟ\u001a\u0011l\"a�^7'8�o,�\u0014�I0Y��0�����QŇ\u001aȱX�d;��J���5���'����Kn\u000e\u000fS�͆�\u001f)\bk[���jnJO�����\u0011Wl��A(� D��M\u0012\u0006�5�ͣS���Ռe�O�\u0014���\u001d?@;���x���m��]ejvW�B���W��7\u0016�ɫE�w\b��������V\u0016���?\"Bh��\u0001;�ፒ3���z8*~�~ԣު_b�q[��:\u0017(mܶ\f]�\u001b��n�=�>F�cI�hC�'F)xʷ�!†\u0015�\u0002�~#��'\u0012���\u0004\u0001��[|\u001d��\u0001#�rlЖ\u0003�%|\u0006�}h��nČ�Q�j\u0003\u0007�K(\u00118��Q\u001d���o\u0006:\u0012�̍X�?\u0001Ӌ�����:��t*ɬ}]6�+\f\u0006��|��F\u001b��\u0014\u0012l�Dl\u0015bk(��F2\u0017��3��let�T{��L���\u0007��U��#\u001b\u001f߃��A0� X��L��������x���S3��\u0005O���3���Q\r��o�dM\u0006��W;�\"�p��\u0012��[��cUl%W&\u000e���`c��\u00181DtÞV�R�W�������+�R�\n}�\u0005���D2�\u000fG\u0002�2ݡ��j;\u0013�ޖF�qڇ �&��9�\u0002\u0005\u000e~�F_mt�k\u0002�L�\u0019\u0015�U�_�W\u0007�v����I��L�ƒ����!m^܁�\u0015�C��oD���~��5X�[�ļ\u000f�Pmƒ\u001ct�Cc�\u0014�\u0013�\u0018��\u0013:���\u0010n�w�m�\tvAk�S����\u0014�KaG���8T�B,\u0018��'ut!ꈟ�`��jS�dc�G���[֫�Q@[\r��H�\"/G\u0000�\f�򜙕I�A*� l���l���\u001c��!7��t\u0003H�Ь�����\u0019'���_\u0000�\u00166�\u001aĎ\u000b\u001e�(��o[��\u001a\u0019O��\u001f�1yS��\\�ԭ\u0015�g)?讅�\u001c+\f5i��*?da���\u0002�\u001f�p|sO\u000b�B�\u0004\nxҖ\u001fxژ#�g\u0019�<'�I\u001d�����\u001f���R~�G�$5w�3��LRA�]!��%�(���wI1\u0000.��Η�4�uu��h�qHew\u0013�%�\u0006!���\u001d�f����Q�ida\u0017���H�꼅 ��i�+��#�\u001a7fr��D���Ð�g8���%}�Ok�1\ns0��H\u0017\u0019��\f\\L���\u0006���z�÷�Z\t�>'a�D\u0005XX\b�gC�\u0019p����\\�A1� ���M \tH������R\u001d��$KRZ�����e�]�C���|^\u0002�E��܈/5�ʐ��k��6�0Y:⒁�ʟ�7n~�l.\u00111��5l�H��0����׎ŒJ6��'7G�\u0013�-\u001c�1K?����C`�33�O,�Y�W,T���o\u0011JB5�w�v��\u000e�\"v�`�KL\u000ff'\u001a���\u000el�L\u001c��\u001d6\u0001ȡ��&���ુ�;UX\u0000Q��\b8�ڝ�t�_����|����_��\u000b��d�2I\u001f�ų�y��C\u0011�C��\\5\u0010}QO��\u0018�_��v�+\u001c�32g�_u�Ŕ��q�\u0004�U�R��X,s$s�����E�ٗ�V���+X@`\u0013K]�L�z\"\u000b��\u0007*A�ɣA3� ���M2��C߬�U}x\u0000`p0q�\u001d\u0013�\u0006z_�f��W��|:�\u0010�U�\u0018[N�+D̏;�T#�B�X|g�#��;���&�l\u001e^����G:�o�)Ä�~��gfs�HH��\u0013~Iҿ���\u0000�q ,R�ykT��ob@\u000f�\u0003Q����{�U�\u001a\u001fQ^9J�\u000f\u001f�Dn��c�7D�'ݻc\u0012\ro\u0016U�o�Z�!H�I�11�\u0017�]�D���й��jg\u0018\u0011�T\u001ej3a��\u001f\u00115+�4�N�\fK�1,\u001d2�}�[�&\n׋�\t):���Tۚ�Ӥ\u0016p�W0�<�(&���dG<��Qȓ�6�Ĵh\u0014X�O�A:� ���L�*H�\u0003Y�*i��]�\u0002�/D��\u0002q�B�b]-\u0011���[ڭ\u001b,*1���_\u001fe��u<���\u001f$L\u0013X|���d�\u0012�\u0010@���|��[���k9\u0001XfU�ͪ7\u000b\nydG05�%;����\u001a/�fw��\u0017�#��$\\h��nwRp,���m��vQX�� �9\u0010�vO��@�&&�x��\u001ewM����֜'�y�\u0018%�\\�\u001aa+m����ڠ�@�1׮\u0018q1uɁy�\u0019k9|jBap���\u0019��\u001d��bt�x�K�\u001a�?-���\u000fv�����Y5\u0007ߪ7�\u0002S\f+�l�]ۼ'H�p��u�_�@D�߶���N�C�Od�d��*&\u0016�\u0012@��\u001f2���NݗD��gnڿg������H\u001e�$�+UϏx�Q�mG�'W�j\u000e���6\u0011�\u0010/�x��~�ݱ��\\c�\b�-\t\f�\u001c�2\u0003\f!�\u0018�/VJg�~}E6�zH\u0013:3Z$��\u001fE_\u001a�\u001ar\u0011�6��>�;��6��s\b�#��k��9\u001e:߷�\u0012CQ�\bx\u0001�,��M�E�m\u0019B\u0007�\u0001�\u000ee���:?�Cp;�a�3�@�\b��\u0003�z�Nj!SW���f�ha��NX~\u001e��`:��ڡ�5��\u0003\u0018��E�K���\u00162�_��>��W>�b!S��|��\u0017C�w֌&�h\u001a\u0000\u001f�'��r\\S�'?�@��=s�L�\u0007�m��#g\\��AJ� �����\u0004鶐�i8�$\t�\u0018\u0013���l\u001bb�,���Z\u001a\u0000sYm��\u001a\u0011�����q+'͜pY��Ր�\u0010�)��\u0003�.u\u0002\u0000\u0006\u000f�E\b�SO�ٮ�\u001bn\u001f\u0007�?\u001555\u0013��HC���o.�ۯ�x:�O�\u0010�X��\u0006\u0007�\u001f�_ND鱿��V�砋��[��L\u0015�B\u0018ԥ\u0010Y[�\u001f\u001d��\u0019ŷ�{s^y}�f�Q\u0019_�z��\u0013���!�\b\u0017��2Q��#,}�\u0002_qӤ�>n^�/\u001biw�]��d�\u0003g��ی @�X�\u001e(�=\u0014�S-��n0\u001c�1�\u0011��w��Zk\u001dԱJ�\u00033zc�m�\u0018��O\u000e�\u001aR\u0017�\u0004\u001b�z�~\b]�-:��g�\u0006�Mॲ\u0001�f/�\u0016�\" {[=xZx�\u0011�쨊#�M�_�~'9ݑQ�\\2�AE� �����I[3�T�[2#��wbS�D\u0016����\u0011ԁC�\u0001/{��\u0019�Tpt8D�准k�\u001a�.\u0015@���>�%��l\u001f�M\u0017\u0001��\u0001���\u000b�\u001ajޱ讝���Z-п�P.\u001e��-\u001a:C)�\u0003�x��Qϰ�v:�p���|���/n���<�N�9]��Z-��̈́�e�'�y\u0019P#���n)\u001a�$Pw�ɉ+?��gG�\u0006�M\"@^��J\u0003=�S�\u0007�u�;�p-.�\r\"��ͩ��\b��Z\u0018��)�o�å�};�\u001d����f�\u0012@��i+��5�\niח\u0015oo0Ã3^���v,E�VY6/\n�{ܜ��\r�Yw�.~\u0011aʼnԦL��[�:��\"\u001d�Y���~R�Eg\u00156�_�;��-XZ�|(z���A{�!\f���\u000b����Ge\u000b\u000ec\t\u001aĊ�\u0006,iRJfkG�����ē��~$\u000f-\u0011j�\u0017;Z��z�b\"2��i襽\u0005�%��22��\u001f�>6��\u0019F�:ei�c�Cݟ��ɫ����SM@��m�Z�l��FA��wb6t�M��䢬$h\u0018��2\u0005�c�>\u000b\"��U%\u000e\u0015��>��L�\u000bj7��&���\u0016D\u000fI5�nA.�\u001a\u001a��%�\u0006A';\u001e��feG�0\u0001�����=�&�r�M�Z�\u0002��A\u00074��N�ɘ{�����[Qt�\u0001\ne��=�gb�R����*��\u0007�cw,}\u001e��\u001fcw_`ͳ87ܨ�v�rH�\u0007A\u0010o�E\t�Z2�\u001c$���\u001d�\u0005\u0019QB�\r���MЬ_#/���M6`�d4��\u0003�U=9����R,��A�q|V�\"�\r��!�G�\u001d+N�?��6��+\u0003;�l�I�0��+\u001c\u001d�yȯ�A4�! ���\u001b�\u0011dY·�+���s��1~��\u001aY,\bŞD•��L\u0014\\���ߒ��Rl�N�X\rC���\u000f�5�\r�\t��C�Kt�*I\b3I��z)Tm�p$��2\u0005o�\u0013�/\u000fM�6\b�YD\u0002�b;R\u00183�ܣ3`8�SՊ�&�U\t\u0015G����\u0010�w���a\u001eC4���-�rV\n�Z=m�~\u0013y�_\u001e1�\u0000Iz�\u001b���\u0010\n���\u0016\u0004a�\u0000�>�\npGo.\u0001�]�2���ל�nl��A<�!4���\rI��i�m�D\u0012tf������\u0002�ݮ�)���V+\b���\u00064*F@�sYV�d\\�y�K��D �@k�=f'�\u0006�\u0005��ln\n�-C�]�\u000e_��\f���%�؇8�\u0014x3�\r���ᨛ�]/�\n2c�bszn�\u0014\u0016��q\u000e\u0000���p�p�ӢZ�J�������{ \r\u000e���\u0000���|�}ul�\t~oGȇՋ\u0002-]�5��e�\u0011��\u0016fz>$sK4Δ���\fܛ�˄C8)�V\u0003\r:\u0006��%\u0017z-��\u0005�)��E\"I7�\u0005~ F�X\u001d�<�v�7��l~��\n�e�\u0005����Rdv%\u0005\u0002v\u0000�J�b\u0013?\u0018��(�c\u0002\t\u0019�\u001a\\\u0006��\u0003ۻ-��ʔlX�ݎ\u0013�2,��/4�xu1د�A;�!H���\u0015���݈�R�t��n2u,�\u001dV��D�\u001ei'�k�{\u0010I��'�3vG�A\u00076j\u0003m���,�\u000ea=ߖ�]�pQ;轣ىQ�=l\u0006������1ح[d��H\u0016��\u0010��\u0004�r�^bY6\n[X!Fb�.(*��4\u0001�Z�m\u001c/�[Z�G�zwߏ\u000b��\u00182FvubF�*�\\V���/bBZ):��i\u001b�\u0019Z�u\u0005yT�0f\u001a��m�%�\u0018i��o\u0016d\b�;.V%?\u0007-N�f�%˓�tGiH\"\u0005���I{:.YAi�G�.>�H�:�-4d7�^cx���\u001d��+���������RE�3\u000b\u0016\r��g:W{a�q�f\u0019�\u0019Lu��=\u0001�0@\u0019�\u001fs��A|���\u0003����}�\nۢx����AC�!\\���\u000e��\u0019E6��|\u001e���=R�xEj�7�<��8���D���qƯ�:�;�\u000fPn8)#�W\u001fM�����X�|2�\u0014&����tB�R\u0018ʖ��nք��,�\u0012�\u0016DI�jU��Ep\u0004��]Z��\u0017r��b.�\u0012��l�nf��\\a�ڴY��h_L\u0015�ʧl:R����\t\u0019qƏ4\u0004⑜\u0016�)��F9&�F���� �xFY�g�^�E����[x��\u0002�T������M�s�\u0013+����m]���\u0017�:�H��w�\n�<�C{z\u00001�a\u0004\u0004�QF�_>�./��*�>��\u001f7\u0002\u0013/�c�M\"TM��D�\u0014��1��Q+�=���nd�Ӏ�M y]�p��\u001d\u001e1Yvt�t\bA��B\u0005!Y\u0005��\u0002쮣AE�!p���\u000e�+&�\u000b\\I1o̪^qw��v\u0005��\u0013�\u0000\u001e)�\u0018\u0016�N��t&G����\u000b���\u0017V��s�O�\u0013��,��\rS�L�W�rcNH��\"\u0003�\u0000�J�\u0007�Ia\u0011��Vͨ���sH��̗�/S0'���TF�w��ɓ���B\u0011�ƸۑF�\u0000�LQqW��Wc\b�Р\u001c����\r��O�ņ\u001d���M\u0014�\u001f\u001e�N��0�[S��N�+\r�K\u0004\b��oB04\u0000�P�6ZD�\u0005\u000f�A����6�M�\u000by\fh\b\u000f׼�p�\u0006��MY�\u0010ywG���9��Yߛ_�\u0004c�\u001fTA��:j!\u000eѪ�4=\u0006&,DvѠ� �jחίR��_����\u0007.+��\f���#K뾥\u000e\u0007�\b$\u0003�U�\u0001� x�c�ڭ�AS�!����\u0018Ln\u0007-�\u0014��D�\u0013p�K�8�.\u000b��k��\bT�5Q���Eto���e��X���ȴGI��4�N���(\u0005\u000b��\u001e����ǹ,v��:x\b���:\u0018X�}���^T���\u0013^9,r�A\u000e���#ߖ\u0004�\u0007��f�\u0013i�\u00056��d|�P�\u000f�#N�O��7����vŏ�}\u0011�\n��Q��:\u001c\u0006+\u0012�H��H��CV\u001a�\u0010���ོZ�-�\u000foEb�g�\u0016(�^Z\rh\u0001d�h�\u0015\u001f�s/;4_m:\u0018w��]��^�\u001e�\u0007�a�l�m��0/��J%+�)7 �Q�v���^�����\u000frw(n��T�\u001f{��ײ\u0007f\fQ��\u0005-�\t����$�����\u000f\u0003��\f`;�i��\"_�t\\f�\u0003���pHT^����Xh�AS���AX�!���M�3��3E\u001c\u001e���(�Z��ɭ\fsKџ7�Cf�BM��-:\r���\u0010\u001e\u001dyg��\tv��2�Z��K�\u0003�\u0007�3𬛮F&�\u0016;����\u0015�0�;�I�K���m��\u0011�Hl�T\u0019���\u0014\bC��3��r�~&b��K�Io�q�l>��p\u001d\t�p\b\u0013�aX�}���\f�\u001a\u001d���\"\u0003�%Y\u0003J~\u0018h�ߍh��\u0005\u0015�߽:�\u0004Rɵ\u0006�7u�\f_Y�\u0005�$Rɼ�\u0011�=�;\u0011�?��pO�1�\u0016��\u0004�>��/��\"�?\u0016��X\u0000_Şd>����>N_*�өQ,�T�m<�����?�r�\u0000�O\u0018\u0013��v\u0012)o[6$�*�hS R(�aKVbc_�8e��F\r�g�\b\u001b���\u000e�X�p�&�-ѣ)�\u0012�6q�������\u0014n�-h�AL�!����\u001eX������D�\u00000���2kI�*�\u0011�\u001f��Mn� ��L��\u00186�Q\u0010De'\u0006�o3���[uk\u0011\u0012��5t��9�Y�$�s�\u0002��Ӝf�1UÑ�Xڻ��J\u0004��ZY�˽�Y,�X2\u0005W{�\u0012�j�AV�!����\u001b`_��.D\u001b\u0010Rs9�:7�\u001cƶ�ݸ\u00073�>�b��\u0016�\f\u0006T�'�[�GpX\u0001�˶�H;���ib�h�����|����3̚���~.�n5�D\"��-}[�w����0u:�t#\u0019w�/��/�:���u\u0002᯶�E��_w���#�%������\r���\u0006�\n�k�?�d\u000bW��A�Q#�{�I��E��!���M��iŝܭ��$��v�ug�S\u0005\u001du�����#��\u0014�{�B�>\u001b\u0011���L\u001dF�\u0005��\u0000��4r������\r��e�\u0017(�HB���=-�l\u001f\u000b\u0010�OX\u001c2�\u0000�&D\nN��������t;U��!�Xl\u0015K_0���C֛�]\u0012P\u001b(�����Е�\"�\u0017�2�\u0019�5\u0016��\u0000�\u0003��\u001e8S/��ծ\u000eD'b|6�A`�!Ԁ��\r(b�څ�b�\\�Ǘ�̐\u000b<ƛ\u0004\u001c��\u001b����<\u001fʫ]�\u000e�<ńd\u000bԺ\u000b�{\u000bw)Yޙd̚L�\u0016�@���uB\f�\u0007�.\u0004fqҮ� ��\u0007qЋcn�4��c8���\u0003���Ñ�Zh�if�I�*\u0019�K��C�^��\u001a\u0013�s\u0019\"��\u0003�#�ĉ�k�a����P�\u0001\u0006�yXvJQ\u0001��\u0016+ixy�\t7�~�\bz�:��+�J\u0003\t;_D�ke��c\u0016�{�\f����CM\u0019poz�A\u000b�(�\\ͱWu\t5�0�\u0013w2������7��g�H�b1�i��W\u0016�@�\u000b�@eX�\u0007\u001e{�1�,����c�sjޟ\u0002�#|�G\\����w�(��\u001d\u0018�\u001f\u0019�ʗ�6�Gu\f�������E����\nߺ7˒��\u000f\u0013��_�b1�\u000e��щ�[�4���A\\�!���\r�R���E\u0015nK6$�9�KΔъ\u0018�?�\u0017ۆ4v(��-Y��b]VG�\u0002a��.Fz�]��V�5_�n���\t\u0007W�\u001fٗ\u0003�E�\u001d������#\u000f��k\u001c�r**J���.\u0019��M�*���1uL��w]�o�L�{���ο�zs\u0012��e�&�6)5kV�\u0012�74D�\u000f����#X�K�\nb�ع�օ蚦�RN��=���[�̆A\u0015�I\u000e�\\7��}\u000f`��\nQ�H�\u0019�]�i�� �0L��Z�oܪ��y�?\\\u0004/�ڰXAGƞe�1q\b�|�3�e91\u0016�\u000b儲�ċ)��Z$\u000e��ܿ��@��6%��oj\u001c;I>���O���!�W<#�鲶��\u0019\u000f��\\.�h��R��ne�kx��,��}h#֢�DU�s�S��bl\u001b���L\u001cGI��]�~(�Ĉ%�x�/�CPơL�%��w�BM���\b�\r�� ��I�?�;m��|�&����\u0002\u0012oy�\r�4/\u0010�\u000b׈����\u0007Ӣ\u000f\u000e���1\u0019��tj��ƒ�\r�S���\u0000 �m\u000f����=c\u000f\u0005Zr��԰�\u000e����ˎ��\u0005v\u0019@<��]��>㊿�Ì�6�JT�����A�2�\\u�\b�4i(�J�@(XFq�X��A.�\"\u0010��X���@c2\u0010�\u0004<��1�,�~�d��FH\u0006�L���3\u0016�R�\"�*\rï������G\u0001�A\u0001�%�ݩ\u001e�\u0002�*�,�2����z\u000em�\u000b˜֤�b�Y�^�ɽdo��T[\u001d��d�l�}.�Y\u0018��3Q�\u001d+YB2\u0014���V�\u0017�h�\u001d\u001br�}^*1XJ��̒���+���h�G,��%\u0005Ɵ\u000e�%f\u0014/�Γ�X�\u0019㜡�jY�փ���c�m��9�P���h,=�Z���`\bǮ�-�� \u00105�j)���;�Q��\u0014��Dd��\u0013���+���[u�\t\u0004��\u001c]�mӄ�ܑ��\u000b�L��72��W�Q\"�\b$\u0007Z\u0018��+k\b@��\u0010a�b�zɣA8�\"$��X�?E��s}�+\u0010�\u0010�H�Sc�i�ly��\u0010\u0001�\u0006�\u000f<��!�Y�ԍDe\u001a�`��0��y��7`\u001b��M2\r�8րf\t�jQ���q��%x\u0018\u001f\u0001iB���[Ǜ?��A,�)�\tT���Տ���>u>*\u0013,?$G�SQ����g�ܿ�%,&g���H\u0000�E �\"I\u001e0+���x\u0011s6�\f��\u0003\u0016O\u0013�\u0013J�BI��k&f\fЊ\u0006��\u0017eGY\u0005g^-��\u001d��ȎZU\u00132e{��c����r�cE\u0000\u0002�L�(�Y�a�I�n���uo�\u001eA�W踱\u0016�\u0017n�j%���\u0005\\U�Ht�ά�j��\"��ZO`�5<��\u0004�A\\-�\u0007��D/I-\u0002F��\u000fǼ��\u000f�\u0000\rңA-�\"8���\f��2��\u0013�I���\u0002,����ԍ���ȏ\b��\b�\u001e���5�\t�N!��;��+n�Qp�V�̆}x\u0003\u0016�ѯ!/ǁ-�j��!\tp���\f%�\u0019�\u0002Q\u0000�+q���~�Q��kv<�jdi=\u0015ř:���X�\u0010��6W6�e\"��st��6u+`�,�3�MB\u001f\u000f�Ε����� 𼀫�]�+\u001d�S��ϻVU\tUz���.*=p>\u0011ǒ�<�\u0003��n6��i�I\u001dl5GJ���|C\r9Mj_��C\bO��p��m��O_�=�ʅ�g\u0017�|\b�ƣ<ŖpU��\u001e\u0005�q�d�\u0013b0�4�$\t0\u001b�\u0006��[�M.�\u0004�Ih,p�&9�\u001a,u�l��A%�\"L��L�\f\u000ew9�6[�]\\�\u001a��\r\bv\u0007\u00149]X�uw�H\u0011���/ܦ\u0019����T4\u0005��'\u0010\b�a8��P�p�H�;�qT\u0003���V/��;f�Ȉ���5�b�MSYY�\u0001�\t5�\"\u0007�L5�!��D�swt󈬎��\u001f�8�E�4Rb���\\\u0004`?\b\n��\u001d\u001f�=��^R��\u001e ž�6\u000b�9�\u000bA�E�\b���R_��M\u0007�D�;-���]\u0012\"�\u0006a�����S?U\u0016'b\u0005!\u0019\u001fH��^�Ğ(���\u0005@�CXW}�N�͖�Bݬ�ͷ\u0003v\u001e�;X{l\u0011Oңރ\u0015K\u0013�z}sz���>\u00116�;\"BR�h�;\u0014�R���9\u0003��E+��0����AA�\"`��L���pps\u0019�B�A�5X����Q�\u0014\tq&�V\u0015�E\"\r�X���\u001f���U�e-�u��\u0018�\u0002�M�\u001e�\u0010oͅB&����<����o1���N��\u0013&�]��T\u001d�\rR�\n�H��p��8�Xo�7�\u0007����ٴk\u000b˪�x:/��\u0014��\r<��L�rwg\\bi���{�)��\u000f��\r�M��\u0014���)t�nc�K'��o`m\u001a\u0013����ryǷ�s\u0015F\u0003a�_h����8\t�W\u000eE�w\u0019���o@w�3��w7,�K8\u0012��\u0001�@�\b�.�2i�BaaC�Z>���NX[U�/��aV�\r�Ю�ҽ4J5p\u0018�Z���\u0011vG���>h�9A���*)_{l�@�l�\u0016\u0012z`?�f�ژ\r�ww\u0006���\\�A:�\"t���e�%A�\u0013�(��\bBp�\t�肊�3�\u0002u��~�{~�)�\u0012 xq���\u0001�u�)\u000f/I���i�b��\u001c\"ZH�|KY�\u000f��9\u0005\u0010����\u001f�~쌊p\f��)�*ٱ\n\r,�۷m�U\u0010�@\\�?ch�\u0011�A&�#\u0014��L�FM\u001b�\u0007`�`+_\u00074gP�P�-ы\u001a��*H��?���x1�\tٴ�[\u0002���2� ����|��+\u00197slMxa\u000f��z�H��w��\u001b\u0012���vH\u0000�\\#�(!j\u0002\u0017)U]�i�G�i~r�n�J\u0000\u0000}���ҿ\u001b\u0002\u0002��6ݣ��8#H?��\"�\u000fG�R���\u0016W�\rd�yS���+(d�[`}\u0001C�4�L�\u0001�7�����#[<��ב\u0011,Um\u0004\u0000I�ڒ���:\u0016y��\u0011�\u001c\u0013Y*/r\u0002)�$��c\u001b�\u0019Z\u0013�C?�0�0�����)�=���\u000f��c���ow�L|�H'i�\u001b\u0007��\u0019��h�Ȣ\u000b�혧{K��B3S�\u0011�7\u000b�\u0011��?��h!�K�<\u000bb�i� \u0007qO�٧\"\u0014\bt?�I°�Δ��w�.S�#\\a��$�A(�#<��Mw\u0005σo�\t�\u0000?Y\u0002�F'\u0011�̽�;�+2�\u0000�3�&6C\\FB����es{{n\u0000^����*�Oj���$�À��ۣA'�#P��M2�*\u0005�w�æ\u001c���6���mܼT���S�\u0005���\u001fH\tV\u0017\u000f�-a=�g;>�]�6\u000b*\t[� \u0015&�Q��0X�\u0016!~)�\u0007r\n:[oE1{�\u001f�{���%d��!|��Cq\u000e\u0018�xlu�?�\u0018O~�y�2�iP6&�&�iÿe�����1�h��h�\u000b��%I����*;�h\u0015�D��a\u0010�^_�x�>k��\u0005ȣ�|�7C���/��e�br��boEf����D7ޱ�e\fj��y\u0002%J]s��:�E�1�Bb��4O22_D��8C�6p\"�e\u001e\u0015b����U���l}\u0001�c\u0018�����\u001eeU\r�}ࢄ\u0011�*\fl\b��#\u001563/?��A>�#d���dER�\u0011Ӳ�pj��`=��\u000eF�)�Ŝ/� �MQ���z\u001f{n��4���zK\u0000��t��\u0018�8���n\u0000`R���F���U�>h�׀���y^�n�X\u000e�31\r\u000eQ��p s\u001dE\u0004,�s�\u0006�%�&�\u001f�h�k/Y�B�Wd(CY�r�Z\"y'l��c��T֤�k��g\u001a�,Q]����o��!�׭\u0011�bj\\\u0013ч�\u0003:�\rR\u0001��\u0013�yD٫t`6Œ��v��:_Xp�|�o��Hdd-@�{\u001b5\u0014#v��=\\Jf�����Vl痥���j���\u001dp�M\u001f��@\f��\u0019[3l���tS�1�so}\u001cA��\u0013e��]��v\u000f���)6��Q���\u0002\u0005ۦ���P6��0\u001cL�\u0011�AH�#x��ƈ�f[P�W{/xCC�\u0007#�=ݕ�*�(t핮\t�+�&�\u0004�Ù�޿��a1��?�.��~��\u0019Z�|�_i\bxJ-O��\u0004N�oބ��|,y��Axvxm9�H�\u0018-~c\u000eL����ƫ�\u0007��I�a|(���m��u\t�8G~����\u0012o��VB{\u00154���\\e��L�q$Jf\b\u0015%q�1��Grc�\u001b���%�:Ԫ�\u0017R��a�wF�\u001c\r�)��ȃЄa�\u0007ѐ\u001e59\f�\u0014\u0011�7F\t�\u000e��̿�t��Z6r$�\u000bF��\u0015�Lƀf>d����1F�Nr\u0019��io�ѝ�z;\u001b�\u0016�(��F����������\"i�\u001d���d��\u001d.\u0001�x��\u001bY�z�VN|l�z]���%\u0002�&wK\u0001RF\u001e\u0012�AH�#����sx�����s��ȗ}��ԦA[�H���Ww�MGFA�C�:>#Tq�\u0007\u000f]�����0hZZG�c3M:Q���T��h��\u00050'�^\u0000�\u001c��3�\u001f�2���\r39�.��x[�-��\\�\u0019\u0001n�\u0013�%���\u0013���J�Ʊ*�MN�[<��ǔ\bv�i\u0004���:5�G\u0006҆�*)�,\b\u0019n�����\u0015��TV\u0001����ҧN���GXh��\u0013\u0011�WA]��/��=����\u000f�U;��D�l�t.�>?���ak=h\u000fы�w;:)��vJx��v�\u0019�`\u001c�/�E�,��\u000bH���7u\t=�`I}�$��V\u0001o�CM|\u000f@��#�NQ�\u0012\b����\u0013�)|�c\u0019��瘗jR'ʱ�����oi�\\�7\u0017;�;�m\u0012�AE�#����l\fE\u0015\u0007�R�3ݯʛX|\u001e������\u0010���h��!�:�\u0017\"����\u0007Joňw�]�X\n7J�!95�x\u0016fޚ�����,W\u001a���\f���wGj%\u0015k\u0016p����ff3O�3]O�6�-���c���&����;��RB�7�\u000b�xː9�0��[-u\u0007\u000bxo�qb�c�a��ؐ#_��[�]� U\u0007��\u0017��E{�m�Pt�֋��3�Ӯ쑥��P�N�=G+�\u001bt|\u0016��\u0014\rke�\r\u0004\b�+� \u0016�\u001b/�!�� sH�#\"|�\u0013��\rʬ��hFn>���\u0000z�(�t�F�\u0001�IC�-�DO�@p\u001d�Fl�[�J�эT���\u0018a|O��\u000f���\u0006Į��\u0014�\u0001+��\u0005��q��Y;\u001f%\u0011�A@�#���L�\u0007੠FE���y��1r����F����3����)u�\u0005��K�i�H�gi�e�v\u001c���c�\u001f��Y�\t���]���j\u0007I�؍`�\u0005\u0016a��?��/��\u000b��� \u001c�V��Z��E�@���!�_��|�n\u000fReI\u000e����Y��l\u0019D\u000b�5��\u000f��(!�B�\u000e�v_�>�Fџ�O�ME�b��u�_\u001bʟus����p�ˢww��V����&��僥���\tX\u000f���\\�\u0019(�\"\u0017X���2֋Z�:\u000e�ΩN'�\u0014hd~(y{�p�Z-����\u0017�\u0004R�nֵ\u0005i\u0000\u001eIiVî�.����\u001a\u001e*o�#\u0016��4�%��:�[܉�c���\u001eᔲv�\r�\f\u001e.\u0006qf٨�9\\��\u001c�\u0019&7-X�\u001cF\b���\u001a:��&��\u001d��s3���\u001f���?\u0019��Cx_���&��1s�b��n�d���z4\u0003�\n\u0005ݝ\u0003\nc\u001d%k/�gR�A/�#���L��\u001c�0%�����7K�/�m�\u001e��<�����j\u0002�\u0017n�� #e[�v\u0019Na\u0019��zĮ\u0014�\u0015��\bA�\r_F�=�\u0003����Ɉf�\u001d�Z\u0018D\u0011�~L\"�;��s����\u001c�2�#2\u001d���:]6����\u001fR�aWI�����;/[�}I�\u0017��Q\u0010�9��-k�\u0003��a��:k�c�v\f\u000b�\u0010n\u001aD�R��\u0001�z۪��NO>��\u0004�)�4�\u001aX�Ugڟ�\u0015�7��s0O\u0007z�A!$Il�G\u0019p6��\u0006(��\u0012�i$��n�^��>\u0017�P�Y�ܶ�_�6\r.ȸ\u0016�z�*V�D[�+h%g>b\u0005<�\u001f�{���b�\u0019˩�6��RGwRDw�M(\u0015B\u00129d�A��$\u0004��|��W�nr�m@$�(\u0019�s͕���J����X�\u0018gg��5r�n\\��\u0010�%�V��Z��\u001dIB\u0016\"������gF�Y\u0013e$\u0004?�j\u000eU�\u000e�\"\u000b7�\u001d\u0014!�'�˽�-\u0004\u0011\u000b��Y��\b�8�\u0010��y������0#$��I�ɷ����j�|�+\u0004�\u0015�T)F�h�����FS���\u0019k_u,l�S0v��(��o\u001b�\r�.ѿr_,1�u\u0007{�\u0018��(\u0002k�>��P��\u00169�v����Q�M��\u000f������~�3\u0006�*\u0004 U#9+L�[�\u001f���zlA�����l�D`���\u001a2R\u0014ʻ�*�\u0006�o7��\u0003~:��2�}��\\����dj�n\u0011JM�ъ��y�r���y�O��+H[Z�Y2o�\u001c�~~�XQ3�x__š�ү��7���\u0014�/u����;\u00143\u00140i�؈��7w<���r�R:P܃�j�Res��*��@\"Т\u0010��lq�ŝ��<�\\��-ѫ-�=\u001f\t&\u0012A\u0007�A\u0017�$\u0018��XЪ\u001c�\u000e�+�k^�%W���7�\u0013��R\u000e�M�\u0012��~\t���T�\u001e�{���\u001fX!T\n�\u0014E���eZ�\u0011!�h�B\u0014�mp\u0015~��]�ƙ�\r�\nI�=k6��\u000e8/\rq�w�A���5��WJBcE\nvSSk`HZ,��n�k\u0010�A\u0007q^o�K\u0016`1��:1S��y�L}�=�� �!\b��™��i�\u0006.�6e�)�1RB9\u0014���`\u0015%��o?���\f%�\u000b+�#�g�\f��]��=s6G�w�E\u0012T\u001b�g�ŷO�to�A_&h%�vFMO\u0019X\u0012\u0013�P*� R\f����O��\u0016C/\u0001׽�S���ի��\u0000�3ۣA\u0019�$,��L���g�ݣ�,�C����3��D��Yשv��\u0018\t�)9+p\u0011o�\u0014��\u0018�9\rՎo\u0016�\u000e�\u000e�\r��\u0001z&�@k�P�}!cf��nö�N\u0005�&��\u0018�{��p���3�\u0017T��C�֯����UwF�\u0006��A$�$@������9FU\u001fT4� '�T���&3>A#� p3���5�\u0007_֞�!��?E5���]\tb�]���`\u001c\u0018kUŏmQ2z|��i�\u001d\u0015�*\u0015We�Et��O��F[�xj�a��F.�����\r#���l�n������!Ŝ����\u0005�\u0006ni��jh$lp�W#�\u0002n^\u0005F���ր�<�����0L[�l�8�_Ga�MY�\u001bf�\u000e^�\u0004\u0015�|�y\f���5��\nJ��\u001a\u0007�F��B_�~B矢�d������H���E��c��\u0018������ Q��cR>�\u0016R��\u000e�\u0010N�\\G\u0015bI��;\u0007i\u000f\u0018�:��-H$�]����ܚ�U}D�S�A$�$T��L�H��ž\u000e\u000b[\u0004����TA1&?Ph�N����8����&\u0003\u000bh6z��@�Q\u0011�z�L����N�\u001d��\u001cD�\u0002��\u001c�����,q�c��[�\u001e\u0010G��9D�]�(w�S��z�\u0019\u0013NH^\u001chE:�.%�ǵ\u0015��u���ï=�\u001a�\u0012ϫ���-\r\u0010��)g��a����\u0018�K�\u0011�.p��R��(�a�~%}��[,��{pє?�sL6;�ٺ�)\u001fҎ8l�[\u000eƗ��a���\t\u0006Uu5���8���Շ^I Хe���&UՃφ�)Eތl94T˝/\u0004T�]���:n>�b\n\u0015MzeVx�\u0001�6�eWF�r��\u000f$n\u0001����6ۣA\"�$h��L��)��wϷ��v\u001f�\u001b�wP��/�w\\�[\u0016�\u0003�3ϟ̸��Utc�\"��\u001d�<��ͫ\u0011N�\u0017�Sd\n;\u0017�#5�l}�#�\u001f�̨D�/a�3h\u0000\r!�\u0013��$/���\u001b\u0007�\u000e?\u001b\u001c�ߢx�\u0006�����O�\u001d����W����Sn'p��Q\u0016��\u0006=y���3���G&���+��?��~P\u000b,�N�UU��\u000f6����7H�i�q��T�\u0019\u001d\u0012\u001e�\u000bM\u001f\u0004��\u000fI6��\r\u000fL�G��-\u0011\u001e��\\}�\u001b��݅\u001c�w��ǢF�]h��L\u0002�\u0013����\u0013�Uy�_\u0014���h�ѿE��\t�%�-_��ڿ������܈B\u0017��Av�A(�$|��L�\u000e����\"v�\t���ȷ\u0004\u001a��B��\u001a\bd�\rB���2;YHF!ǹ\u0015\u001d K�ڒ�.��g��\u0002 \u0000������`p*���G�[�\u0001�+�Ǹ�$�v\u0006\u0000v_�gc�\u0015p)z�&�ص��ҩ\u0015\u001aVI���zGt\u0019�\u001e�2��'Lr���Y\u0019]����\u001f� �FDi������\u0018S�!C]e���HPĖ�4k?�'���Bu.W\u0014\u0000e���\u000bU�n7�B�º�d\u00163���8X�Ow��״�:Gy9�{\fk@�\u0013:�\u001c�C�\u001e�q�}�U�Q�k[#�\u000f�J\u00018\u0013\u000e��a�o��'Dc�\u001f4\u0006uO�8QEy\u0017�3�Sw��\u0015\u0016�\t�xc��Φ�t�μI�o}�\u0013�@�\u001f<��$�mf8�����Z�=�\r�#�Ŭ�R�%7�\r\u0013/*W��ϸ�uO70�v��Ы��c��I�$�q�@���\u0013\\��\u0000q��Ԣ�k\u001a]@�a�\u000e���\u0000���U]�m�d�Cn\u0016\u000fH�~�R۱\u000bp��~1+�\u0013���\u0017}!\t�\u0010�v�I<�4\u0016\u001d�w\u0001XW�޻�r�\u001b�D��.j�e�/���q\\uk[�I\u0001!P��N�\u000f(\u0013q9��'>`^�\rBl\u001bܬ�mǐ��\u0018���\u0014m�j\u0015\u001c��v\b=��\u0014a`�E�~�5`\u001b7�G\u0006`��-�\nq.\u0006�7���\u0004��\u0012��\u0006�I=[�A2�$���M0\u0010�\t�N��\u0010ܼ������:���z�\t����bx�\u001b���9�����.���\u0018\u0013�;}-W8�=�ve�����=6v����l�U�)T�ټ!�q$T\u0004��#�5�������\u0006\u0015\u001f\u001e�U����T�\u001f/͡�v�<{\u0006\u0018���Lb+Ȩ$i����\u001aޠ�\u0005c�����(!�yU����P��\b�m�\u0004��f{+�~����oc��\u000et��\u0014�7�b��\"�)�);AU9\t�j���\u001b]��g�6h�v[��\u000f]B\n0[D\u0006���\u0006��k��\t/#�\u000b|�A�\u0010\u0019=rL���M��?dGbq\u0013�aNȞ����b���>�}�Y\u0014^v\u0005�/��G�|c�w�ۣA/�$���L�N����\u001bSr�x�\u000f�1���<Ⅵ��@�St0�YW�#8�\f:�^J�����ߌ.W��x e\u0013bߊ1�n��b�^\n\u0010U��]c��U\u001a���\u0018z���V��W��)��q��KX�\u000b\\�����\u0003:��&B��W���\u0013��J\u0016~�\u0016g��>�\u000b�71\u001dI�W�e��~5?�<���jM���\u0016�Ȣ�jЉb�t�f�}\"�m�?\u0013��1��\u001f~��{��ȩ�\u0012@\u001a�|\u0018@U\u001c@]ܕ�0�\u0005�\u0011'����8\u0006�ePX5��>��\\��Kx��P\u0010��H@�;\t+���s�>�\u0001W\u0006~�������)i�l�D��\u001b���Q��ށ+�)Z�� E�@�A9�$̀�M2p�\u0001����'I�@\u0012�O�*ц�!���Y��d3xQ5u+���D�B��G�$���ֆ��\u001f�ȟMBP[�}U=�f���ŷ�=�����\u001f?E\u0010�2�\u0007�\u0005�b��+W�1‘���Tl���d�\u0000,���%\u00186�z��m\u0003+lGm���\n�L�J\u000e%�5\f V�5�0��a�2��\u0010���\u0006�H~e���p���\r�;3�=$���\u001f�)\u0004��\u001f\u001f\u0019)����iZQ��j�ˣԘ�\u000f��n�C�\u001c\u001a��}�\u0012.���\u001c|VB\u00037���?%�\n�d\u0006�\u001dӟ\f\u0013��#U:\r��\r\u0016��4\u00159�l�.� \u0017VT\u0004���!/V\u000e��Tz�j�\u000fnY��wx����\u0001\u000b|��mJ�AB�$����\u0001�&\fn��3�Z��&�o5�\u0017ЕèJ�tF��\r�3Ⱦ�\u0019�?p\u0016K=j\u001ekĩ����S?\u0012���ͼ\u0015k��u\u0003̽��\u0011_<�P�#�@����2�\t����=r��\u0001'���8�K#ޗ0���4G\u0004�^J\u001eg^\u0002\fw^�\b�\u0014wel�\u001f���ǽ�<��Mt\u0018\u0004�P��6�\u000b��\u0016�k]ad6/�{�\u0017�`���D9\f\u0007��T�\u0014�6k1\u0010ލ���cU��F�E;�XS�#����\\�%h>\u001e\u0016\u001d\u0011a���&��[Fn�����\r�B��>Ӻ��ӱ=%NJ,\u0006�c09*�}�\u001e�O�m�G3)2c��>`��Th\u0001�X�\u0003\u0003G��N\te�\u000f�e����\u0003J\r�N�Ъ�c�jk\u00015Bk=/�<�m\u0002v�\u0016��\u0012Tu\u0015�b\u001f(~�l�����r\u0012'�_}r\u0001�l���5���\n\u000b�:i�.~\u0002�)H7\\zY�\u000e\u001d/Ȉ\u001cB�������V<���.\u0010O,'5\u0015P�v��AU%�a�\u0006\u000fL򘫚9r�5�\u0007�\u001eߗ�\tJ��U��%�.y�p(!\u0007\u0018�ZYe�m_��//k�p�\u0012{Ѿa(��t\u0011xaګiqR\u001a�A$�%\b��1����ZN>����e'��d�B���B%#��\rD�p\u0010�\t����>W�z�f�G��{\u000e��\u0000����ݺ'e9\u000fW%k�Y^�iҕf��\u0014so��%pa��Lye'�Qm�r��L#A�*�D��\u0001|���M@y &����N���\u0010��\u0000��VH��r;�6ۈ}\u0003��\n�� �F(TՓi�\u0001�sb��#��h\u001f��_�q��\\\u0011�\t�愘�1G��:��\u0001\u0005���߼�K���\u0012�\\��\u001bT;�qD\u0018��\u001dE�s�Ή�o&��m�?\rp\u001c�C#���r%\u0005\ftI����\u0000�dVYS\u0002�Y��Qť���2���gQ����\u0019��qc\u0002��A(�%\u001c��L�\\���/�\u000e�~��V��\u0014Q\u0012��W���b{�\u000f3j��*I���E�o��0\u001c=\u001b\"�c6'��:Q\t\ry6��tZ#���k��\u0019lfŅ��\u0006\u0000����3�0�ag�,y@�m\u0016��ɶwh�t��P�g�]V��`�\u0018�B\u0019�!�w.��nm�U�\u0019V��\u0006��\u001c!�(�\u001a\rٶ\u001c�L��\u0005:p-M��k�����4���u���������l�֢I�!�y�<\"��8ż\u0004΃S�ڕ�/ؿkO�?����>*��o1T�<�+v�\t�p�A�\u0016:�{\u001fV�d��0�Ct��r�����\u0011)�.(Q\u0000��:�#N�TyCK\nH����i�j�3m�sDV��pH��<�P�I������,�D1��Ͽ�.�]��=Z!\u001a��3�\u000e�\u001d�p���Y!��\u0002���tp���3�\u0003\u0010�\u0000VeW5���\u0012F��%s>���\u001d��o}�\u0015�\u001a!�k�����\"��\u000fڭd۷Z��Myq��A+�%D���cǔ\u001eɕuW�IJ�\u0011pp\u0007���?`�\\�\u001a��\u0010\u0007t2w\u000b\u0012N\u001a���w�?\ty2�8MjVӊ�W\u0006��И�l�rK8q\u0003���}:��q������\u001d0��v\u0014Z\t>\u0019��Td\u0003#\u001e{\u000bq�h0JgЇ�n6�\u0000\u000f5l�-#��1I\u00187��s��\u000b�\u0010A���}�]��?�\u000b��E\u001a\u0000)��\u001c\u000b�/E7ůB��\u000bv���\b\u0015�1d}�Ъ�AYbhk\u001e��u�'u�lE\u0001|S3e;.S[�'\\>^񙂮6��\r����z-����\b��C.�`w��SV�\\(�f��c�d�)k}\\M\u00073�p��b56p���\u0013\u001d=j\f{�\tD�1󲌝�[\tᑈ�A%�%X��M{a��)�*0|�(S���\u0014��C4#��f������(�aZ\u0013\u0006<;W'�+r�pM��L��,�\"���U׭Ÿ�\u0011ꩰ��kVv+����tOg�G\u0006�rX��\u0003Y^瀄��\u0012i�ͧ���]���\u0000]'W��uI14�8@\u0001jwa�����\u0012�ˣ;��tI��]a����Q(�`�n���\u001c���H\u0011[B��ƈ��Mנ\u000efu[�\u0003�\\��\u0015��\b�\f�g�\u0006$-\u00190WH�]��\fI$��\\~\u0017]�G���Ѵ�\u0004�Vr�f��\u0014Ͱ�t��R{jO�j/c^,j8�\u0012\u000b\u0007�Gb\u0004E씮��H͖�i�2/!\u001f�\u0006�=�)��I�}M῰�0\u001f��\u0018�t\u0000�H<\u001d\fzk\u0012\u0016w>\u000e�^2�p\u0014���;\u0004�\u0005\u001b\f��C�ah?�+\u000e\u0000淥՟\u0005�x�f3�\u0014Ah3��D(�(!]�X\u0002q߲��hM�!;2�\u0002��5�\u001bFO\u0012.<�5q�<��;/�\u0014W�J�zJ}5�\u000bW,�A+�%���L�����||��^;���uJ�GKO�ȶU�Rz\t�f��L�P���m�ӧ��e@�#\\P��\r�Z8\u001b�d#�ޏ �\u0017�s��œ�\u0007=��V�gv�\u0016~\u0018͵�\u0003�Qf�����\u0011ث!\u0012\u001f0&\",\u0011����4�\u001b�\u0014�\u000eNy�Ēख़|�\u0010\u001a�G���h�K��}�}��M^�����R&���T��q��z��S&�*��cW1T}D\u0007�������#�\u001ee�c�碲��8��\u0010��\u0005��㚏�L�\u001d7R�2\u001f�z\fN�J�\u0018��\u0018iA���\u000f�E��Wg\u0014\u0000�v.��f�\u0007�\u001b��D�+�\t]Dtp�EhGx&���\u0011�����\u000e*.ʛg�\n�A'�%���L�?w\u0012o毃e��>\b@�\n\f�K��\u0010\u001b\u0012��h���\n��\u0014\u0013�r��\u001b\u001fB���M��A�\u0000)���D\u0012�9*����\u0012���<9�^;&�x{�\u0004�\u000b(\u0007'�'B\u00122ߧ��t\u0003�r`UN5�K⚱�V7a.,��6�\u0019hs�\u001di+;?B�q��ړQ��\u0019���\u0007\t�e�,EN�\u001b��~�\u0004��ʂ�\u000bT%�_{��s\u0015��\u000b��ޝZ:\u001d��\u0019��ݽvڪ�3��G�9W�>zqo\t,�S}ܰbg\u001e����:�Q�\u000b�s�'F\tBrb��\u0002�O����@\"�Xt����\u000b\u0014�����ڗ3Y�\u000e\u0004K���0\u0003g,����=��\u001b`��A*�%����k�?,�,Da��^*��u\u0015����\u001a���\u0013\u001d������–[��j�����0e,Q1�w�\u00058�Q\f�\rwz��E���\tZ]\u0018prɉXy\\)R�\u000f�Q���Pą�T�L���\u0016��F��V�cL\u001fނ��Y�;K\u001fi\u0018i;�%�þ��\u001c�\t��\bݕJ��u\t�\u001fSz���s�uLǞ\u0001`�&�C�\u0002�-�>��\u0017�\u000fTs��0\u001aD�i�b��l}����U%�G�^Ux��\u0018z0\u0005�[�{�\u0011\u0017D����'�{���$Ь%�re<��ʬl�SHFnl'��̃og2\u000b�mw=G�$G�~vS\u0000�R�9�~�eZEݭtM�i�)\u000bV�\u0011�\u001e���s�\u001dL�#����h��ta{��\fa���L��?\u000e��ن\b�Q\u0012Ϡ�p�H�<��,u�`����:�\u001bE�9B\u0019V���\u000e\u0003\u0003JZ��\u0004/���\u0017���ީ�hS��\f�\u001bd*]�[�(l,ti\u0010�xd;3@ϝ�qF�w}��>\u0002�5k��(��\u000f\r`wU�Iy�3UD�?ND� ���\u0000 \t��?�A+�%Ѐ�.\u0010��O�\u001d\u0014\u001aS�\"ނ�r�9nF��S�~\r1\u001a�K3�i'\tx�gnX���۳@�r��\u0007�\"{�\u0019\u001a\"\u0006�R|\u0019^S���Ml�\u0013��\u001a��Yºf��\b-6�#�\u0003R) �\u0018�cz�>�J�\u0001*Y\t{v��sV;\u0012ۋ7�\u0019\u000f�H���\u001f�����K\u001d���\u001axX\bh��O�Z��S�Y�`�c\u001ao��V{Ƈ1\u001f1'0\b^~[�!�C`���]��c��*2\u0013\n�A��-E�W҅��\\��\u001e?yU��#���{גQ㍔@�M\u0014���\u0001\u0011o�`ߺS\n\u0007�h�t��g0\u000f�Ղ�\u0018q\t�4�/Ŵ�h�_Ԋ�0�]\u001f��0.\b�+\u0014��\u000f\u000e�B��Љ��A-�%���eD��k��\\��eHN�*9�f_s��-�7к,ӯ��S�\u000eZ��\fr �C$�l�')Ț�'��G�O�F�24��X�\u0004��\u001f16`)\u0015Σ����\tv��k*\"oP� ���=�qHyK<;���an�w5�\u001b�Sw����P\"�������\u0000\u000fDGo�%i�c�J\b���\u0013�ɍS�Φza��zaͻid�L��d��'���Y�q��\t�ޒ\\�ʑ�J-�D�?�(�۷�\u001c��A:��\u0005��\u0015OǕ�\u0012�ٓ\u0018rӺl4xkW�Ea�v��\\\u0001G�z��௦\u001a׫U�\u0006��=������V\u0003p�\f3�����.U�&�'�\u001d��?#i��r�\r�A)�%���1��r�3W��f՗+��W���jT�\n�F#A�\u0019/C��qz�R�y�^�C��0�#\u001dc\u0005l�\u0010�K�D��R�#l'�w-�R\u001d�#_��%PY���\u001d\u0010�\"�G\u0007j\t}\u001d.�A(�&\f��]��bc�G@UE^s�^Gk݁���\"�S\u0003|\u0017\u0015��g�\u0014}���jvB�[R3i\u001c��\u001a��Gr��\u0013�MƲ���!�ճ]\"��rr:��@��r�prv\u001c�}>�\u000e�t��,�\u0014*��V{}k��+-z��c���z���f�`�����z���wi\bD\"��\nĶ�����đ�o͔�#N̈́\u0014yh�\r��|KF.��G�\\\u0002^c\u001c��O�\b���B��\u00038\"��(�H�\f�QL��\u0004\u0001�z���:@e\u0010��\u0010��\n�\u001a\nO�i��k�G���X\u0001�\u0015ߝ��%\u0003���E��H���?\u0018`㭁bJ�Q��P[U�H\u0003gOm����h��\n�\u0004i��A\u001f�& ��X��0\\H\u000fȓ�\u0017B�$//9�\u0000r���S\u0007���;�g\u001a�h'� \u0012%\u0014�*\u0016x����bV>\u0014\u0003Y�ٰh\u0006ɀW~\u0004\u001f嗸f��U\u000b\u000b�\u001cG��\u0005�#����\re�\u0017�(Nl��1�X�֮��u\f\u001c�rHY�6����8\u0014~���Xz�\u001c\\�0�A#�&H��M2q}+����\r�*\u001cJ\u0002�\b�\u00008��!�sȮk�7ܑ�\u0010�����՞k�3�#\u0001\u0006\u001d�2T���\u001e��\u001d\u0002�\u0018��\u0004<2���қ���]4\u0019s7�\r3��+a��\u000e\u001c%9\\/�X��+6�:��]�:MC���/�\"\u0019i1�W\u0012'\u001f�\u0002���!Ot�\"�!�2~�b\u0001\u000f��1�Qf�\"\\�\u0015m��<�\t[|�ʐ�*fa��\u001f!m\n�O��\u001b~F\u0013F���@NG\u001e�A\"`\tvK�}���4�rb���\u000epЅp�V\u001a\u001f3 ��\u0015\u000e���\u000b�h�*[�\u0000��s\u0018��p0�����>\u00185#�T+Ѥ�;\u0002 \u0010bFd�jF�N���\u0004\u0003�ۭ�A-�&\\���\u001ez�K��]��o H \u0003������5�p��:��IQ�{X�B��\tx�\u0012GZuO0�\u001a7�>�p��MHugd��K2��qݻ(~�\u0010�\u0001)��%��*BK\u001b�Ԭ�LH[��_�[1j�Bu�^�=��T�܋�)��\u0018�+���[-_,�>~\u0017v��9v�#����#\u000f\u0007�X\"�p�\t�\u0011�φW��\u0005~��\u0018ㄛ�K��{\f�\u001f:Nx�z!�ˀ��\u0016���\u000b�<��f9r�$��׼Y�H\u0012=\u001f�VZ�Kc�m�P�\u0015\u0012�;\"{-�s\u0011�b)kz6��|�\u0017�\u000eN&S>s ,��PP�<�'\u0011�l#s�iC\u0019�\u0006�����������*���Oe\u000bM���A#�&p���\f�\u0001�/'\u0014BC�ӔV�\"�5EɂG����z�j�͋1[�؆�t\u0000\u001e&~�����W�E\nK����I�\t�a����+y0\u000b$8!�L�u��ǂ��\u00107|\u000e\u000f\f��g��R�B��\u0007���\f�Ǫ\u000e����.\u0001\u001b�pm\u0012D*��\u0000գ�M\u0019-˚;�\u001d�\u0004�a�A\u0004qK��@�'n\tj�\u0018;\u001a����P9C#C��E��D�o2�\u001f峪��\n\u000f�\u000bC!\u001c\u000b\r�^�<{8g\u0000�fvHʯ��\u001bi�g�\u0019���S�\r�o��]F�7\u001a�����R:���8���\u0012ퟄ�f��<>��\u0011���8|�d�\r\u0006�Z���ϡ\u0003u9���[���V�6�\ti\u001d\rnS�\u0005�\u0012C0�i5N�Bh�š\u0016o0=SJ�u���\"fЭ\n�^\u000b�;�\u0018q��\u0013\u0019���gi�y6Uj��No;s�����Z\u0003vM\u0003\u0002�\f^���+|�T&)��b{%\u001dqcO�\u001a�\u0006\u001e~f��\u000f\u0010RGup�\u001aϐFvRCl`\u001e��5x���\\�\u0000��>����\r'�\u0011����\u0010&��F�\u0006+�]i\u0003�ו��V���_Y�|\u0012�\u0000�s�x-\u001e$u��y�Q>\u0018�F�\r��C\\�j�#%�u]\u000f}�H�)\u0019=�3��yPR�a�:|Fb��R$�A*�&���.\u0017�&u�ZT3��q�+F�\u0006\u001e\u001d�7v$F,$�'7\u00055\u000fnE\t�\\\u0019�\u0007��t�~�M{�K•d\f�xV���F��di�kB�\u001a�\u0014�|�X���O>Kq��Ǘ{��w�Uq��&U\u0000X\t��a\u0013�DZ�\u001b\u0002������-�\u0005�q\\U\u000b���ؕ��X���#�\u001cy��ԙ\u0018��?��b��\u0013Ӽ��3�\u00071�l�M����<ݭ\u0005�E��8��?��#�AD�\u0015>\u0010I\u0002b)��\u0001\u0000�LB\u0007Q�\u001f�\u0001I�|\u001c\u001aY������2w�<\u001e�.L\u0016��\u00047��id�L'�\u001c�A�e����N:r��+\u0010��p<�UYT޽\\�\u0001�L��lY=O��%\u0015�\bTg�+Vm�A)�&���MW��j\u0006�ޣ��\u000eA�ꍙ�o!P�?=k�1�C�O��UP�+$M�'u��C\u0001\u001f\u0012^9U\"�l���]�\r�5�ȶ��m�\u001d�,�[�85g.�`�8��|+�*��rY#>�w�fx\u0011�;�'<\u000b�b͸�R�\u0006�\b��\u0003\u0013�&LU�t�W9h\b����lL�@�>ɛ|?��3q\u001a�3����I��E�\t<Ֆ�GR�={a2Mi\u0013+DR:qb$��-\t��3n�\u0018K�q\f����\u001e\u0010�ӱ�U����$�A0�&���L���\u0019�\u001c�ҭܙ��4��QN��X��*�5Y�87��0t�m\u0005�\u0003j�\u0006��G0½yM�]d\\\f�F�F�u\b�p&8\u0004󽍠f�g\u0013�J1\u000e p��4�\u0011��tl�>elzb0t\u0004��\u001f�\u0001�U�4\u000e0�I��><1U˅+���`a��\u0002\u0010Ir\u0013���\u001d�\u0012�c^�ӷ\u001c��\u0019.ip+\u0015\u0015\u0012�K���\u000e�t �\u0004mal���D\u0011\r��4�;G\u0010_�\u001e~���(W^W\",��u����z��R\u0010\u0017���0��2�\u001e#��\r$ś�-�������B�R��$n\u0005�u����.`b�\u000b�\u0007%��+\u0012������;\u001e��\u0018�ӏ�2l�\u0007�\t\u001f����}���d�R�B\u001e�&Ԁ�}a,�\u001c�U�ij���>�F]�I��{���8\bk�w#��l�\f\u000e'Yq\u0006�.�����4Jh�\"1#��[ �k��\u0013����F�A�gc��\u0002�\u000fTQI�{y�\u0007�\u001f$[���d\u001b�\u001b�Y���E���ʻ]-�0���\u00137�����?�{�V�4�&�6\u0005�\"a��U\u001a#K��иG\u001c��vL�\u0000t\u0005�\u0002\u0017o�����s�;y����~4�B\u0006\u0004\u001b%��??�ˉk´�#��*�D�*�h���v9���<��7>����\u00136>�7��ʽ�7�\"\\\u0012�J-ٱމ�\u0015����'Kk\u001d͈���|��]�ݳ�\u00008\u0000\nXŸ\"�Oc\r�\u0011C�f����'�o\u0012�K�H�ߴ\u001a]�,[C�z�ƁH\u00123zF(\u000f,6�ߕ�\u0018�3��p���Q\u0015��9Q������NU��t��Ф.)\u001a\u001aZ_V�I#�*w��k �D��?\u001cQ���5�����G\u0013�%)�X;M�i�\u000b�d9���p|__\f�/�ۻ��\u0010��\t��m���PP7`�*,ƾ'\u001aB]~C�R\u0013�_~�#\u001a�`�\u0006#��˥\u0011�\u0018\u000f+\u00166�g��\u0010�[^v\u001e��R�2�\u0014�ڎ�r�슞�\f��\u001c�\\\u0005�����\u0000��#�~�5\u0004�\u000338D2\"�\u001d��A@�&��.F�Q;��\u001c<�|p��\u0019/,9\u0004Q\u001d\u001e\u0018C<�\u0001�=�g�>l4�\\�?N\u000e\u001f\u001e(��\u000fƃ7�o�m\u001f�O4��3x�t\u0007u�jHf0{�h)��\u0015����j�vv�\u0007v�G\u0015?v�c��\"��$����\u0010\u000f+\u00113\u000f�\tT��W!Q�Y\u001f� �?�JdO�9\f���\u0000��a,�\u0019X�w��w\u0015݌\u0001H�m#���)4'K�U�\u0010�����\u000b�\u0000��\u0007,�[��Y\u0015x\f\u0005=��P���\u0000|��\u001a�\u0005\u0017�]%�H�O�V�g5D\u0010\u0001�5�KWR\u0019�6\u0001�Y�8���\u0018\f���*f�+�\u0006��G�\n��H�\u0007���\nh�r\u0007�!\r��T>���\r�r\u0018��\u0013�+w��vp\u001f\u001e���\t�z�J$\b����;\u0015��b�4��A/�&���M{\u0012�\u0019>M���UR\u0017\\jAg0�&\u0019�\n�eI2�����6\tP-���\rc?�\u0016\u001fi�ϋLw�\\�K��\u001f��r\u001e�Ӈn�9�P�GvX�y9�\u001e��\b���\u0005�:\u001c�2\u001d�C��9\rNCm�H\u0003�G\u0004�94�g��nv[]\u001dƏ(�`�ff�x6X/R��.H�5}�{\u001a�p'[��c�|ǁ��<ĭ\t\u0007�E��r{!XV\u001e>gd�O��}Zٸ���\u0018�\u001fC�u\"Le�\u0002�1�A,�\u0000\u0000��M{�V�|]\u001b�V�v�\u001a�Wv�������a\u0017΢�\u0014l�!�����e�|\u0014�.�3;\u0016�q\u00105Eq�b\u001e�n�$\u0017����AIhd\u001fr6�癍��Ā\u0018�jк|���ٻ�MF\u0003\u0014��\u001c����\u001c�\u0018\u0013D\u0004��� �wn\u0018?\r�n͈jO){�X���O=\u000eѸ$\u0014Y��\u0005I��Up�E��]�\\S\u0006�s\u001d��s����f�A�cr�j0�\u0015NR*&\u0005ԕ:�l��\u0005)t��\u00000��𩔩X\u0001���d1l�s�U��Ѣ��lY��gy�}�A�Cj˾������y�9�\f�K�G#�ׇ(J�D�j6\u0010�p/\u001fi�\u0012���R�\\�Ըyeh���dc�A$�\u0000\u0014��L�3�o�zwB����\u000f�j�\u00059�Fsc.��n�t����\t�� ��r'�A\n�\u0016\u0017��|8Q(#L�nvlj��\u0019��J�\"�sȃ�\u0014.�D��V�Qpf`��\\:\u001c �\u00150\u0003�\u0014����U�\u0003W�R6�hg��Bs�v�ʲ�q��6Hg�g��0J���'���~O[�|���j`��8��r�d�H�\u0007�\u0017B9M\u001e��w�f\u0006\\��Gh_j2'+�u\u0001Ml\u000b��#�e�o�;��&�T@�۞\u001b`S=\u0000N����������~\u0019�z�S\u001c��f�\u001f��v\r&4\f/\u000e�\u0013�s8\u0014���}1@ƺP1\"\u0010؟xZ�ta�Q��n~����t֣A2�\u0000(��6�lg\u0006�\u0001�\f�R�X���3�,�>2�\u0012�0�@\u001b\u0014.ִ\u0013[(@/�w��=�'\u0005��@ɔW@Z�OB�\u0014v*�$Z��Y�v��U0�B'�Vs:'@\u0004�~�FE@�^lx�\u0006Sm���}\u0010��b��F\u000b��!:Ew_f`�5s5-\u0004\u001b�EcY�\r#�k�o�p�2\u0004�1b}?_\u000eT2\u0018&\u0010)�Ѻls��\u000e0\r]y;��[�KY_c%=�\u000bc��w�����c�]\u0014�m5�t�\u0005l\u0018�Y��\n��~�K0��&3r���Q\u0005�K�������>R�k�9p\u000e.��F(j\u0001R�hL\u0012I��O~�M�>�\u001c���&[\u001e�������{5��\u0005�\u0006��(�3\n�CYW�AC�\u0000<���p��vحN\u001fz>#�X�r}0x!\u0016��v��yM��z\u0007���hu����[�`t��c��h,��{���L�/W�h�i8e[\u0007~A��\u001b1ƿE���˭8[�]��`\u0014u�g�_ߢ���ٹn3E�\u0000�}���\u0010���(�\u0006��f�w���4S5�+�9��,\u0016�^�|\u0013�lV\u0019ڟ�i�(ç�ʟJ�-ޥ�7�1����\u0013�E'���(ٛf�1���b;/�{y��ABȞV��\u001dKC\u0003��\u0006�X��#�e��_i�Z�b\r�\u000b��)ׅ���\u001c*k\u001c\b��u���f�h{��2���\n�Z��tq�\u0011�$l��NEW�\fL�#=S��\u0013d\u001d̻mY\u000e��x��\u0002������e����P�\u000b�A<�\u0000P��L���\u0000̚E_�\u0016�l�����̄n\u0002U��2{X*�\u0018g$�\u001b~if;5J�2�\"�[�\u0002\u001dFţ���3ђz;\u001a�v=<������ԹG�VzyR��\u0000�\u001d�/]��\u0007r��PP�`ä�\u0016U*\u0012\u001e�\u0003���H:�4\u0019ao\u001a��F�C^��е���y�V\u0004\u0015A�P@G�=�\u0006Џ�G5B\u001f�(�ĝ�#|+[4|\u001d֗�mp╙M&�\u0004\u001a���qX\u001d�뺓�\f&A��>n\f�FT\\A\u0007lLY�2��\u001fH�\u0014\u0017�\u000f�q��P�[��\u000egi��au�ɶ���(2V\u0017�\u000f\u0010�'9�4t�RN!(;�\u001a\f8z��\u0015`��}}A���Yt�*��\u0004��?�Y4��{\u0012\u000b#�d��r�P���A7�\u0000d��MvG�\u000bi\u0019�vœ�0���,]��\u001f{1\\K8�?�Bݜ��j\u0005��(�̨\u0004�L=�\u001d��\u001c\fq_�2Q��Z]T�L���\t�\u0015��Hs��_�؍� ;\u0016mJ��n~���P��NITa�\u001c.����\u00132�\u001ft�!F0Z�4U�\fL�f́����-���y\rY�?���\\� �/��H�j��Y\u0007�Zji�h\u0005[*���\u001a*���UT�>l?Wp�\u00129�і\n�A�\u001c�D���q8p�$�\u0015�w��\u0013��&d9/0�ȇ\u0015��X\t%�'\u001dXU�����a\b�,YU#\r�fK\u0011��Ol�<��\f��\t`�=�W`4x����Ó4�\u001f��T<#��q�\t;lgTI��)ݎS�S�A7�\u0000x���b[�\\!\b��\u0011?�%+�\u0011׍xn�\u001f�aa�{\u0004�F���k��1��o�\u0002x\u001b�U�\u000e�s\u0001�&7��ٚ�h�F\u0016��Wnځ�@[\n=H��\u0015ڏ-��TCx'�\f\u0001V\ts��Q�I�7�}��\n[�z�p�>~dj�:���߀�\"u�Ȃ��!��OJXP���quf��R�Cg\u0007���Wu���LĻ\u001cDd���5A�ɛ���\n�Yȴ]޲����5�\bJ8l5�\u0002h�w;�\u001b \u000291S�&\u0016�nf�q�\b7U\nQ��{ �}\u0015�5H\u0012����e\u001e!�޳W\f/�q�#�~�\u001b�~�_*���f�H�8���\tKjtB)��U!F⍳t\u0016�K[�_�ڇ��o\u0003�u\u0007�AD�\u0000����b�A����\r\u0018�,�xa�\u0012\u0011ĭo�����c)3U_\u0012�\u001e��ܶq�\tA�aϦ�\\\u001d˪Z�\u0000K!�����b�p�Y\\��&�%r�\u0018�_Q�t.�\u001aL\u0019Da^\u001a^$\u000f�甶Rg+Hf_�_8OlZ~r��{`��'\u0011\u001aO\b\u0007@�� \u001dImNJ�z��\u0010ġ���F�������P\u0012�B��{KR��J�N��!�+�v�\u0015I2���\u001b��\u0012�[��˝\u0015\f\u0019���\u0004�{�G��s$��\u0010\u000e�y1�%���L��8\n[g\u0014��[���S?�T\u0000��^�{}�\u00152J�B��=\\�.8Ӷ��8k�4�\u0005ӗ�\u001dE�]mB��Ɠ8���8\u001e ]�j�\u000f,�u<�3CRK�\u000f\u0014� \u0019Vk}��u\b�AC�\u0000����b�\u0005�\t�\u0002a*V�`&̃Y'\u0000�-xS�Ixo�Q��A����\u0003����-�s���\f&���_�g��_'9x&ty�*\u001a��]\u0015�\u0015�o8��ݸ���(\u000fw�!w�O����e�0�\u0004�H\u001f�v�����\u0004K�\u0010bH\\���\u000fN�\u0003SD�AQ$饕_썃\u000b�d��TyP�e�O\u0012݈���bwa��6�V?Qe0|\u000e�`����\u0013a�\u0011��p\u0015ߏ�������M�]\u0019Q�7\u0015�e��\u0006v��\u0001\u000f<\u0000\u001b6k��R�?�7�K�\u001d6u�\u001e\u001a�\u001b-j0VJA\u0000\\�\u0004�\u0002k���\u0013���;t\r��*�q���G�A��H�N�i�����8\u000eVe\u0019�\u0002R\u001e��ȹI��\u001b��\u0014\u0019J{\u001ay�\u0018�\u0002���i�\n�A6�\u0000���6_� kk��\"�g���\"t\u001e0���] o\u0012o�t�\u0013�}\u0006؃5y�@�5J@�ᔃ\u0011@�h\u000e�\n*Ү:0\u001b�xS~\u0005?����W\\���\u000f}���a�}�C��\u0012����d��1G���)�\u0017K�����P��6�`\u0010��<�����\b�>g��W�.:�it�\u0017�Q�\u0001ű\u001egv!�_�g\n�\r:��ᅪ��G#��b��4;�wN���Nǒ\\�(\u0001uµCy�\u0017y����K���UtG�\u0017�\u0014\u0011K�������2�����R�/\f��>��,h�����9B:��:�_��\u0011?�˂M��\"�zM��C�c���sR�Sp�J\u001c��4\u0012[�:\u0015k[����[\u001ckǣA?�\u0000Ȁ�L�\u0000a�\b��ۘ��*\u0003}�f�GG^��\u000e\u0002�q+\u0018\"�Q�ͫ���%e,�[L�.���b��g���J\t:D��4�F��\u0004�[�a�����B=��6�V\u00197D�!eK'\u0001l\u0015�s\"�fb\u001c�2\u0017ϕ�a���\u0011�<;Rb���\u0007(Apb����x��q\u0005��\u0003\u000e��p��e��pUx\u001d��^��w�\u0014�\u0001��\"\u0000��j�|(��D���;�U�e=�&f�\u001d��+q�2�\u0016�'�clonZO:W�Fץ��\u0015\u0004+���߰��\u0018��Q�\u0007���\u001c��a}\u0004\u0007�����\u0018E�琱�d���d\u0006��\u0007��Q�2U\u0013�7:�\u0001_$p�fP_Y����|U�\\2\u0005x�����(+�ݺ٥���\u0017\b�.��A6�\u0000܀�MQ\u0001��ZB\u000b)I�\u0005I4���+�����+�E\\\u0014��S՝�9;L9n�\u0015t�)vb+\u0005�X������B��W���(8\u001c�y�ߤX%e\u0010sļq�x�o䵥\u0005*��k�9�\u0017�ohsT\u000f�)u������\ty\u001d��\u000b�O�!\u0015\u001c�\"��\u001fx\u000e�IcZ�b�|�\u000bS2��\u001e\b�]�d\u000e�\"���\t\u0002*ӳ�#T8H\u0000�!��\u001e\u0014�̰\b[�\"1�˼�\u0000g�)k�_iL�o.��\u0012\u0006����01��Ok�u�\u0004�I@:a���\n\u0011{\u0013Y\u0016/�\f�ړD��[4^�\u000b�����Y�ٖ�\u0012l\u0004�\b���+�\u001b�pU�$��P��ݨ\t\u0019��JR\u001b��D�e�J�5�\u0006\b\u0001�AS�\u0000���X����b�[e8<\u0011�;Z�E׷�Zr\u0003�\u0013\by@�>�x�\u0000\u0016;;�3�dh�V\nX\u001f@\u0010\u0016N�'ٛEأ�}��k6�\u0011�9I����R�\\\u0015\u0004�\u0001����\u0018צ�o�-��'\u001b\u0019��G6\u00004��\u001e�]���9��o-g:\u0017\u000e��\\\u001c\u0014�9[�|�\u0013�$�\u0004a\u0000{ˆ�)QB�\u0006b\u000f�\u0014�5�.���&��Z\u0005�\u0018���\u0018g�vLCq\r^�K\u0000��A\u0006�\u0001{k��\u000fk�1CN����`\u000e����AY�\u0010\u0006���\u001b�^�\\%9�cZ*(g�4�.�\u0006֤�.�\"�\u0014\"?�0��M�\u000f�\u0017�lw���\u0007)�%-�)2\f��_W��/���t��\u000f��7��#��r\u00076��/�\u001d�zp��~f�K�\"\u0004�&�\tGm\u0015ȡ����L\u0004E�\u0001\u001eW;su��A\u000b�\u0001\u0004��X���G�ީa\u000eibJ��/�{��\u0016�I�\u0011�Ĭ\u0003� �>\u001e�A\u0003�q�\u0015eJ�:ca�m儡�^\n��嘨\fV;��m[Vg��bx�@����W(l�\u0019�_iM���ɮ��\u0015� a��e��w#�\u0013Y�b|�tKY6K�%���̳�aZ���\u0017�(�1�\r��h\u001ei��\u000f���I\f������\u0019 ��$\u0010�2(\u0010T�I�\u001e�\u0002�%4��\u0004@�Uv��j�6�B��G�x\u001d��Eq\b+�\u001b)��-}3�\u0019IG�5%��\u001a����. \u0010�r\u0002%\f%\b�\u000e�ü#I\u0015�\u001e����l\u0017���̮�.�A)�\u0001\u0018��Xи���^��k\u001f�(�\n�g֍��\u001e�8ԉ\u000bg\u001f|?��7O��p�v�Q�3\f\u0010i(�my!O��rx\u0002y�\u001br\r�H)a�&3�f�ѳ\n~�l^�\u0014(��@nY�d�c�&��%�c��\u0007[\u0005� IA\u0007���\u0011�\u0017��Zy�\u0000\u001an���\u0012(lB����ƒ�\rHC(<�)���2=\u001e~\t\u0003S�%.?s�M��\u0005xz\u0014��ь��x\u0005��;�\n�\u0013�\u000f�8a����ʗ�;�u2�qq\u0006\"\u001d���u��\f��ҩ�ޚ|0���h.�ו\f��nu\f\f��/�Szo����ˏ#s��@b\u0001s7\u0001��g�\u0014�h�\u001a��Q* h\u001e�|��@���f��r\u0011�A\u001e�\u0001,��MWg^ 5'�b�~��\u0011����C�H�,�d�\u0010���Y+��V\u0016+�г��]W��픨2RD+�^V�?)�v{_�ʖ�����5��Y3��W}��l�\u001d�\u001dlJtZ�v�Yd�\f�\bb^��\u001a�-$\f(`�?[���F�ff5�\u0003s�\n�\"h�\u0017�d\u0016�D�.\u0016\u001a��1�\u0003���u\u000f\u0016����l:�M�23M�}����A�V�\u0012[�\u001c&N�HI\u001d�ie���\u000bͶ�'L��/\u000fV\f)�\rI8�-�\u001d{?&�A��Px�QLD�\u0015[�`\u000bBmQ��!�\u0002۶\f{���ŲM]\u0016�.o���mS8yd�M���Є\u0006l�\u001d�-�A+�\u0001@���k���0\u000f�\u00114e��\tX9َ���\\2�\u0004MA��{��b:ɒ|C\u001c�K�׊h`�׸���\u000e�G���\u000f<���Y�\u0017'�\u001bP(�;���e\u001c��<~�0�q�E�LYP}��G��_S���{�o�����\u0005\u0001��G��\u0010Sb�g��\t�Q��/謹��\r�s)T�q�\u000e��A�(���\u0013�eJ�\u000eu���SKp�Q��L��=��\u001b�ə\bڏv\r�GŤ��d~���5)t���\u001d�[b�r\f\u0011\u00021�3�1�\u0011Q��<�W�MkR�MI�S\u0015 J>a5��U��\u0017\u001b�v\u0005�,�T�3\u0011;�GGe����Dc>\n�9!`���HZ��#}\"?�Gr\u000b�A(�\u0001T���&Z����\niO\bTx��,�\t�6��\u0012P�\\���J�\u00111c`�\u0014���l����l�����\rV\f\u0013�\t\u0004\u0007hO��%\u001f��4X�8\t�W�\t�\u0007\u001e\u0003��o�{\u0014���/�e\u0000��6��iFp}�{��+�\u001e \u0006�_\u0015�О�\u0005~�{�F�����j?��\u0014�\t����0\u0001�Ǝ,`s�\u0002�\u001bB3��\n\bz?ʲ�\u0002�H@d����j�mH�ل\u001f����UA\u0018�Mϻ�\n�jbD\"C��bvm�-�\r�\u0001��1�>]�d�M��a����*���\u0004Y$ْ��F�6x��.6`ݐ�a'R*�F�iy\\���#��x�\u0011N��b�NJ���d������I���`:F��H���ՙRSWQi���ܽX ��\u001e:�\u0014\u0000\u001e�H�:��UT�\u0007슐� ���\u0013�Ƣ$Pi2°`+��[\tD�4^\u0000h�����7\u0016\u0001\u00199�X�P��2�\u000b\u0004\u0000�ݸ��\t]��\u0001-�GS\u000e�s�\b�A1�\u0001|��MYe�g,�\u000b�pA����a-�E�\"D���o\u0000�QY��\f�^���߈�!y\u0003=\u000fm��S8�ě�Jtd\u000b%\f�x�\t\u0010Dz�\u0002\u0010W�ι�\u001f�j�%\u001c�t��V�ڻߵq'iX$��%�.(�A�O�^G�\u0007�/�\u0005M�\u001b�5!0\t/��ٶ>�6Ҳ����x�K�8\u001a�}��\u001a�\u0000���`t�2�*�1'D�ia�\"@�0̚���E�֍=�E�ԕ^^1�o�g�y�e�3�6\u0002\u0019E\t[���R�Y$\u0005�Q�c��jϮ''Lo3k�p�J�}\u001d����l�O��\u001e\u000b�\u0002r\u001b�\u0012\u0004z\u0014*��=R�=,i�J��䯾���D\u001d��M�\u0006�Q \u0015\u0017�����#�A4�\u0001���L�4\u0012�\u001f0_�\u001d]~ȎFO��,�f�\u0000\u0012\brq\u0001\u0010)\u0010�H~X�mx1#�\f$p��E#\u0015_��\u000e��K��#A睆ŔŠ�\u001ey\f�W|c\t%�xٯ��J�z�*L d�c~c�M�x!�}D�=֘���Dz\u0015̙x�\u0017\u0019�KJݹ���S\r&��ݴ�$�\u000fl�\u0010�՟���I�c,�I�������\u001e�^\u001a��KG?\t���=�\f긾g�r؂KY��\u0013jX������\u0012�\u001f��q9M�Icr�t��\u0006f�\u001f�j\u000f+ވ���vK�v2�\r��q\u0001�7���6�4e{��\u0014C/�\u0002]��\u0012�\u001f��X���Tu�\u0002}k�y�cA��T&�.1ʶS�\r!.\u0018��7�vj��A+�\u0001���L��*dǠt_���Ȃ\u001ce��{�fw�iS�\u0011\\�\u0015����_�\u0003[z\u0007n͛�!H� l�G1��a��)��*�(ih�\b��\f�d�\u0016��I�a\u000e\t\\�\\������2���\u000f��\f.eۈ�\rV\u0000��`'�=.%�\u001d�w\u0006��†Ӝ;���P'��P�w���G7\u000e��ʘM�\u0002&c��]�\u0012t��ti�=\u0019#r��j?i\u0007T�ȑ�휠!\u001cUdz�0׵H�͠j�=�=����\u000e/�\u0010�\u0019B\f��y�\u0012��dѸV����'\u00008��+\u0015��[�����H\n�n)\u001c���k\u0001V�r\u0013@�A3�\u0001���۹_Wga\f$]�[!�j�(ޤ�NM���\u0003Џ���S�D\u0017}}3\u000f���طK\u0013\u0001{l�����0��ؖ�8�U��}����g�,�!-o�����=O_xR�U�$�nF�\f���1�k�p��s�>�<\u0014�#8��\u0006\u0002��c�L�\u000e:Q׵���n$ՄX\u001e��H��'�\u0011<\u0003nX5s\u0015�M�Z\tkV��K`c\u001fZ�p @�'\u0019�^�'���+���0�)':��NS��\bܝ�F\u0015��\r����:�\bQ���s�P�\u0000��z������\u0019��N�=\u001f�{&O\u001c\u0006u%Z��ʹ�?���l\f/\u0019�ږ�\u001e_v4�n����\u0005��$�\f�\u0003\u001e����\u000b�b��\u0014��|&�V�nȬ�E,�ȄW�r�s��UR�A\u001e�\u0002\b��Msx��9%��}IUz�!N�:\b��\u0017ŐU^\u0018�\u0000�8vnU~����\u0019�Z����c�tNoK5�A4�\u0013g\u0011���\u000b1�ԗVA�8\bT.L\u0014!�~�3��FMg��WoP��8�d��dk���KB�*�\u0001��Q��z�ן45Q�4\u0012�Lh�F\u0017Ϫ���9b����۸�(e��\t=�\ty9��B�t�\u0000{<�r���p�\fSx�\u0019dt)ɇ\u0010{\u0002O��#��q&�/�d�\u0011����؝�Tgʦ��\u0011��\f?\u001ew����z�.>���\u0010�ݩq�h\u0000\\+��c����kG\nn�ٹ�\u0017j�\u0004��%���8�:��y�$'S�A,�\u0002\u001c���h�r}\u000b]{��\u001c����ꗚj���ɼř\u0011���\u0002����?\rYTY\u0012E�\u001f��}I���\"����1�j\u0015C|`���h�@��t�$�Q����o~��u�ZI'W�\u0006\t7�;\f ?�q��\u001cS)CJ\u0004�\b\u0007�q��;2\u0015�A����=o�^\b\u000e}mn�$�2-b,��\u0015C�ڛa�E���a�y=����`��!s_�\u0002(\u0010MS!u���w��.��8;�#�Bq�42����Q����[�;��m��ʏ{���\u00073�xYk���Gn^�<�{+,�\u0011\\��`F���~Y^��%�I��!�;U���/�\u0015�ѫ[�������\u0005�'A�Yu�\u0006�\u000b�A$�\u00020��L�\u000e�\u0017�1me��\u0015\u0014�\u0016\u0016\u0002K�È'����\u0015�U����G��ֲC`�0��r�e�f�������\u001cҹ\u0005��H\u0004��`\u0013,�E\u001a�cN\u0019`6.h��+\u0005ܷS�M\u0014\u001ak� 5X:%œ�a[��\b�m�x�ެ��8!�Z�p\u001f�\u000e\fb\u0005t��޶\u001apb�P}��(�;��`矈26\u0001�;�7�� ��@�\u0017�pz=���%��U���E�'\u0019�)�\u001a\u0007fU^t\u0010�ӃM9�.N�1��ۦ�-�^��P�|�$�us��\u0002�@�\u0001��S��dH�A�2�\u0000>���X��\u0011�\u0017d�\n6�\u0000\u000f E\u0007E���_����u�p\u000f��p\u0014I%Yd�A(�\u0002D��L�\u0012r]��+�G\u001c����ַ\u0016��`���%]x\u001a��\"\f\u000e\u0000&Zn't�'g�Z�.53��.�J\u0010a����,O\fw\u00152��~\u000erm�q5�\u000eZ�L\u0013�O��_F\u001e��9f\u0005? � \u0011t*'���j��\u0007�&�Cc�\u0007��\u000e26\t�J�v��u\u0006�ȿ�Z�\u0019_摐u�6�\u0010O\u0014{�\f7�,\tj=�\u0013�\u0016K��/��\u0005̟��\u0016,?��)��\r�1ꐅ*�D���ձE^�b\u0018��4��駫\u0013�q���l1�g�A<��s���vEmY���]�\u0015��=�(\u000e�8=��g�#�1�f\u001e�\u0017�B�\u0003{}l&��?�����\u0002\u0002Z\u001cB�J�\u0019�I����A6�\u0002X���\f�������9\u000f�c2�m\u0003H\u001e��L7$쵭�c�\b��#*/�)�.�w7°-�0\u001bk[�Q��c-���Z\u0013tJ�,���'�~\n�N�Ŭ��X9T�\u0018z �FI�A��b��,��\u0015�\u001c=\u0000\ng��\u0017����]-v��!{�A��\u0012����\u0007@�\nq��\u0007{�y�3�\u0016\n\u0015*\u000b.k�]s�͇\u0003.��lL�p2ѣ�%�p�\u0007]\u000b�����)D��^(�.�f��Y�yst����\u0001EVR�T�\"Á�\u0019�U\u0013\u0005lX�\u0019B\u0011Ǽ��\u001f\fZY\u001d,�\u0003\u000e�\u001b�^����k��6�B�ˏ�MՌԔu���K�f�Q�\u0015�\u0005<1�_�\"Ñ�#% �v$��&�M���\n�4��Á\u0002l���\f�(p�]\u0002��gq%�Z*=;S\u001c9:#�+�R �kf\u0010x\u000b����\u001b=�ٻ�\u0004�~Y \u0016�7\u0007�nɔ\u001c�\u000e������*���wl�\u0016ü�\u00187�ee\u000e-+\u0017�PZEJ4��3�E��G�\u000f�$�W��ut��d��ʞ0�ĭ����S��Q^W���<�?�\f�-��ek\u000eW��6i\u0016�~�l2'��\u0015dt\u0000;�߈\b������j�Ys\u000b��u\u0006wBZ��KY��\u0019U!�\u0000�r�`8�\n���-c��\u0000J�[�\u0001V�\u0016&F��\u001c\u001d:q��ѽ�����.���\u0012�G�Q�\f�KȨW\" ��L6\u000b�]}����\u000ekd+x\u001bSUz#>[Z \u0003\u0018�~\u000f�\u0010��Oٔ��AD�\u0002����\frӋp�ݨj�$� qеƻ�����eVEBH�#\u00032!\u0006�\u0016���܌�\u0018R�,�B�\u001b,\u00078l\u0004�O�n]Z��j���\u001eϬ��ː\u0018��7�plW�\u0015����,��*�2D��/�v\u001d\u000f\u0018/�Y<�� ���ejQÀ���Y\u0016�N�\u001e��&�&�~Bni\u001a��&��)���\u000b\u0000�y:�`ɫ)��O�.��\u00027�R�\u000e��+\t|��xh�\u0002)��óuJ�jiWH��YdW�ִ\u001c�ص��o�\b�H�����=τ~��\u001e>X\u0007�Q\u001fi\u000bfD��bQ��\u001am�\u001e�&(\r�ү\u001b����4HRɳ=U��=@���]ܒ1�;B]O?\u0016�\u0017��D^��\f1�h&e��K�BL�f�\u0017O\f��.�D��AC�\u0002���L����\u0010��&�C/��}�\f \u001c���1�\u000b|\u000f��U�[�ߍA�^\"�@a�|M���\"ס���H��ݲ\u0015%�N<&J\u000b�d�}X���O�$c�?�»�\u0019\r�[Ѐ�)Q���\u0004��\u0012S��\u000f1)\u0001�t���\u0011�=E��5�\u00019\u0015\u000fe��x9ۜր��\u000f�\b\u001c\\1ׇ*���&}�\u001b�A<�\u0002���MZ���;\u0016�����\r\u000b�R,�y�d&��\u000bH�S��/���G�K�\u0006\u0000\f�\u0003˝�(m}�*I����yN��,cJi\"�\\�#\\����(\f<هriN�jH�8�aɭܡ��\u001d�ק��Z��[*��\u0005X�ov�\u001f��\u000eg��!,�����'�2�P�6\u001bg��\u0014��5DE�a��Y�N�վN��.\u001e�w�M\u0014��.�,�\\-\u0012\u0002q��\u0011m/~��=J��*a���X�\u0000��%\u000b�\tQh\u0004���0�ǂ��\u001dò���)��\u0011��\u001b��3?�/\u0002n��m\u0012�X�\u0012՟�(���A)}�\"�06�C��\"�\u000b9h�\u0016�xֻ��{��\u0001��o��3���$�H\u0014\\��N��#.-�A=�\u0002Ѐ��=���}Kb`[�.\u0015Ϣ�uԓ`E��I,�\u0018�&=�\u0005���\u0005��C�]��=P\u001a�E\"\u0011D��/)<�J�R\u0000��u-?\u0017d�D�h�\u0006�uG;J�A���;,���О\u0005��K�\u0016\u0010E<3���XR\u001e\u0010m�\u000f:��4�9c\fE�A$ʸN8B���|B���/\bW��{`��7����Χ\u0014ouV}��\u0007��1Ɇ�@����%5��\u0017�B㥼�X��\u0014(@��\u001c<\" .\u0005����\u001c�<�f\bn|\u0005E���i-�\u0005�\u001d�T��\u0019�S���B�F�2~Td�C׉t�yԒ=2?��\f�\u0012�Qo�\u0016\u001a:�5\u0003l�$�\u0002���Cន��ϥč\u0015�dk����\n�K��\f9��z�c\r\"x�Ar�\u0002��}a�i\u001d4\u0006th�s�\u0001ЗW�c��Ag�]O}\u0013�ӑK����|rA�.9�W\"R�����\b/��\u0004�~��cfm\u0019Ҷ��+�\u0013�(�b��\u001c_���|�����\u001e�\b�p`��pՒ~+�D�\\̾\b\u0010�\u0001�s|STb^�4��\u000b�\u001e�l\n�M\u000b�S�܍\u000f݄\u0011M\u001f6�l����\u001b����\f/j�����\u0019-�_�v�%oI\u0014 \n��lYq�\u001b��6f1������M\u001d�,\u001df\u0001;�V���:ױz�,���{/gV�6Z\u00155�=P\u0003�'���S�3]�'\u001e\u0010���20���\u0013Ğ�\u001c��2���@QB�\u0012��l\u0018��|>Th9�� 導��\u0014nϽ\u000b�¯L���f����B\u001d_�UuÅ�̠ٸ���K��\u0010\u0006\r`Y�q\u0017\u0003�Z\nn0�ot�G�\u0007�oPto �\u001c�PN1�ߥ�@\u0010���A\u0018�\u0002���X�t�S�g�]��1|_\u0001�\u001d�m�\u000foP�9\u0018�!�|��\\�h��\f�?bz��\u0014_\nN��óz_\u0010�q}\f\t��\u001a�\u000f�R��E+��J�\u001d�4u\r�k���q\u0005]^�9���>\n�pM]��\u0005c�Cɾ\u0004]���ң\u0019�Gc\f��nL���c�mUB<��>f���޲m7�\u0017\u001a\u001c��顛xS�/�#A\u001dH$�:�m�0=�lLm�\u0015\u001f\u000bY��J\u0016�mM��+\r\u0003�\u001e�s��>8S9����9��\u001c\u0013\u001c>Ҏ\u0000\u0003����\u0017;B\u0019�9J�:N����'g\r��l�C=�\u0017�^��A$�\u0003\f��������\u0001˾\u0016�*\u0018��0|%@98i����^\u0018\u0006��+���Y���\u0017\u0014\u0007�JO�D|�Ο�l�L$>�Y��P��$F1\u0011L�\u0019x��Iӟ4���O�����\u001e�3{�K�s�Po�\u0006\b�\u0005�����ί�\n@B&%\u001eD�),\u0000�\r���F�:\u0014���K/\u0012c���Ww\u0012��e?M>���\u0007�\u0000�ۥ\u0014Q>�\u001e����Z����(\f�]�pyy�\u0005����\rU4�h��T�\u0002�\u000b��p$��e6�K �.�\u0002\t�B�U\u001azOw��D\u001c\u0004Y5\u000bw�4\u0007z�\u0018U�<�I�W��ʼ\u00122��z#��q�L���C0�q�����\rq�\u0013w��Y�A%�\u0003 ��X�_\u0005�\u00019E1���ے�I�������3��v��T��5���T\u0013�K���^����7J/V�ێ��1�!\"�6g���ouĤր���z$�^cb�\u0014\u0019u\u0004\u0012٤rN�\u00186s�\u0002�w/�@\u0011��\u001d�+��.���\u0016:Q\u0007l�\u0016������\u0010��\u001cu�w��L�#�*e��OU���nl:Ե\u0007Aܑ��\u0018V\b!�OYE\u000f��k/�\u0019\u0013 ��v\u0017pr\u0017go�̦�.��֮\f�?�\u0000���ݎ�Wv@���̅\u0001��������}�-|h\u0012F-8�`|�V;\u0012R`ʧ3�\u000e\u0018��b�٘%�0}����o%\u001b\u0011��Ҥ�6�\fsef`�\u0012�A �\u00034��L�N\u000b��V��;\u0004u4w\u0014��0RP�/�isSr�O\u0013�3\u0012i�2�V�\f�cʯa\n8WX\u0015V��@8���0s\u0003r�1ǯk��\u001b�:�#�-��S�\u0001��\u0015u%E\u0007��xi�*å�Ov}I�8\bt���ϱ\u001e'zk�A\u0000Y^��kj/%=+��ݶ9#L\u0013Xnz1� s���E�$�L׹\"��g�4�\u0018v\u0016�l�/�̞�z`�J��W,��)w��\u0018\u00194ob� \"\u0007\u001c\u000fH���J@Y,Ӿ�/���\u001e�᧪\f&R���&V\u001e�a�~�\u0002�T{\u0001�\u001ck�ڞ\u0018����\u0016}����\u001d(0\"�\u001b�>\\A����\u000f�\f����2A�/�mO�[�A'�\u0003H���b-Z(��\u001c\u0002��9=�ZR\u0012��S�\u0003\u0005N�\b\u0000k<3�\u0015����Q,% ӆ�)����\u0002�Ә�E,~�6�\u000e�;�@�\u0003Niő�?����x�0��v����P��\fL�q\u0011\t+W%�)\u001a敦+����\u0016\u0018$�\u001a�\u0000�_c9�\u0017�U\u0006��5\u0017�����߀D\u000fJ����'��TX�-�?\f=\u0001����%�����%��\"]l~S��h�F\fm\u0017]i�W\u0006��\n�A�QC\t���\u0006�W|��ɻH\u001e��wbNJ���\u0013\u000f����e�\u001f.��&t,,�tyNC��Ҹ5��VG�\u0001��{��\u001eE��\u0000*��\u0000c%k\u0001�E0\\H��'6�u��mm\n�A,�\u0003\\���d\u001b���_\u0014\u0017Í\u0013U���Β.���Z�:�\u0018\u001d�.�E�!�vI�_ �U\u0013\u0015��J�&�!�)H\u0004�\u001e�nH\b�e;0��g<��d.Z6��s\u0003��\u001b�G\u0019�<\u0001�VI:�\u001cô\u001cV���{a໯�z\u0005�ކ�#v��<��}ü��$e��\u000f]�G��\tE�)�\u0012���b*���Ҝ�_�L�M\u0014�Iv�>���\\gC��\"��\u0001\f�M���$��i1��\u0017EV��(W\u001cs�jʊkܴ�\u00050\u001d��7!�}\u0010�3j���B��e���\u0012�6�q�9���a�‚�q�\u0002��{��I@�8Ҧ\u0017_�Q�1�ޱ�>\u0004�\u0003η�\u001b��ݶqD��E��\u001c5�\n�A8�\u0003p��L�r1g�\u000ea\u000b��٬�44�~)<�\\g�\u0016�\u001e�$�p�ɸJ:��J:\r�T�h��\u0007 l�2�N!�b����{��\u001e�V6�@.��ʺ�\u0011�/��30�#M�f�\b��*����\u0019�FIfʼ�~������=�\u0013\bm��Y0\u0004�b��x�\u0001�L\u0014a4\u001f��^�(�\u0017س��w\u0006dj��I\u0002\u0018�!��\u0000UR��c���/����q\u0011ӌ|\u0003�|an�\u0001w�\u0015�y�AJ֔y\u0006�\u001b�\u0005�\u0004\u0014�\u0012\u0000\u001f.\u001d�q��ER8�\u001b�_T�\u001fTٺ�i��V�w����O[�e��ׁ�\u0011�e\u0006̸\u001e\u001e\u0001�&`\u0019w\t٬���\u0001\u0019<��c�\u0005��|�i1\u0006\u0013\u00037\u0003h�N0����@���A5�\u0003���M\"�\f\u0000�DZUo�\u0007����w�\u001cE\u001b\u001c�Y�|J�����7��n�@�I��0\u0010��@5z�̠T?���heq��0\u0019�\u000eOy_�O�Z����������`�Gw�9��HO\u0016n(�\"�6��~;o)�\f��\u0014�}�R\u0014ikw���\u0017�N������i�ݴ0X�^\tQ�(��L�K��n��H�)�4ׯ�D�\u0002N�HD&Mt�.�أ�l�k����n�x��M�NE\f%�����B2>��.s��r��`lr\u00045�i72�QfX9\u0015�6*�\u0004 \n��Y;ᅏ9�`��\t�\u000e[(\\\u0016R�>�\u001d�9�ϖ���J�ig\u0003\u0004jA���l��_�0��*H�3R�9�'��\u001c\u0015��AA�\u0003���MY\u001f�LD�\u0001�\u001b\u000b� vd��\u0005�\u0015Ļ\b\u0007��9՞R��\u0004�-�z���^����\u0012u2\u000e��t�\r��{YK��d펓bJ�����ҴqڞH\u0006'Xv�q�:9���˶�6�E.�\u0000b�@\u001dY�x\u0004:��k��Dž��>�2\u0002:��\b}>�7�\u001ci���\u001d2�pa\u0015U\u0013\u0003�\u0007䢼a��\u001a��\u0003jt\u000f�-!��W�\u0006��\n�$\u0016��p|���\u0001�ө9�\u0013��9���\u001c��1�}���v���S�\u0012�OOm֝[+�]�2�1�{N�\u0016�\u0017�8w2\u0016/\u0005���|\u0007-��#�Rb�H�*����Z*8��w�Ss��Ut��\r\fq/�B�ҳ��S(�K��\r\u0001\u0007�\u0003�ˮ�ܷ�~���\u0019�x#�A7�\u0003����\rE�B\u0017��8\u0003>\r��P����x�S\u0000�\u0010lN\u0006�\u001e�\bt�\u0015�{\rQ�F�N����D{t��i�㚀�|��F����� �hpRj�ٰ�\u001ez�´@�[�����̈́~�D\u000bW�W2��up\u0011J��\u001an�\u001f\t?K(ӟ�Z�/|�#�k\u0000�����\u001a�A�\u0016Z\\[\u0006��;bt��V���x��ˆ+^���m�:��\u001d|S�t�dQ��<�vxJV�f��-l���l)��{?1�ç8׻��\u0015{�$f�W7p\u001eH��\u001aK���_\u0003��藅�@\u001ap����w6$����6�\u0010$S��س�����{�c�$��8�����/��Ǖ�O\u0002A\u001b�;M�b�p�8�f��\u0012�D�A3�\u0003����\u000e�\u0012&^o�\u0004\"�\u0001$gޡt�}�)��8\u000e΅�\u0011\u001b�dX�Q��{}�\t'�%��\u000e�\u0016(r{;� �2ވ��n��ʳx\t\u0003j\u0015�/$Vn\u000f���DE\u0003�\u001dy�?\"\f��|�\u000e�$�%��h������\u0002��\u000f\t�?r��mF<�\u0004Lh,xQ5#�y��@Y�\f\\h���ށP7�o�l\u0010͢\u0003\u000e[\u0015\u0013gJ��yS��m̉�ed���Y��@s\u0010U\u0011�(�p\u0016?��}\r��Τ\u001e\u0000\b��N\u001c��\b]��K�Ű��@3�\u0002(A �,��F��x��BN��K0T>>\b\fE g9\u0004\tdGC!jg��Z{���=\u0014��:m\b�\u001e9�]x\u001e��^`\u0015kV\ty�i�5\u001f+�\u0002\u0004E�A/�\u0003Ԁ�6QED\b`��P=��s=����Y��6�Ң�4<��\u001au���#�N\u001e5iq���Lb\u000fv=@��L%��i�r2�\ff�gS\u0016�\u0017���\tl���z��\u001d\u0005�\u001c�R�U4��'�&\"%p�=마\t�L��^T@�;N����\u0019FRi�r�]��ʷ����\r�\u0011k�I�ܘk\u0014`y\u001e\\^�AY\\\u001bK�\u0011\u0010\u0001�@��\u000fmC|%\u0005\u0002ɀ\r%�{IǞ�o�|swX2��n���X���\r���\u001d'\u0005\u001cۼ��!�v��s��\u0007\u001c�\u0004\u001f��(8�'��C\u000e�L��V\u0004\tJ�u����D���\u0000P�Z��t1\b\\�l��<\u001e�\u0005�FhkV�H<��\u0007\u001a���\b.��>x@Y\u0003�����A)�\u0003��Ms�Ļ*\r7\u0003��0�-\u001ai\u000b|���z1ڡ�:\u0011�[�BG\u001e/\u001e<�\u001e�r%v�����f\u001e�q��������71[;��y~?A���<�g�-�\u000b\u001bfB�u�'b_��w��0�M���J�?8�|���Uk�\u0000\u0015����Pg�Amq\bK/�n�\u001b�u�~����ꭡ���n��MJ�H��M�41��e���\u0018�v[嵍��O��\u001d7]�L�[d\u0002`��l�)fWɅ\u0011g}<�\u001eO�\u0006�\u001b�����J[���鯤N �FK1��X�@�^0!\u000b����@\u00171�\u000f$�w��[�S���r\u000f�\u0000��\u0004\u001b*�(\u0015��U�Х�܆�JЁ�Wx�\u0000�0&�A(�\u0003���L�\b\u001b���\u001c��1U���ua�\u0016\u0018a�%\u0019<��\u0000\u0012}A���3�IU��o�t춈�^����)ܺ'��\u0005R\u001a��\u0002��O͟��Y\u0004��m�\u001d�yw�@�\u0011.��p\u0000F1.�l�jC{\u000f����iK��R�Rߒ\u0010�rD�6�ڕ\u0010�\u0003�\u0007�1y/g�֯��\r��h9��\u0013�\u0019[\u000e��qj�\u001bP_�c~:R\u0001lD�x�ԕ�9�(d&M��,u\u0014�Y��\u0004M�A$�p?��M'9���[�\f�g?a��@�b\u0013)B?�0\u001e��\u0016��G�p�r�$i�WM$@��X{`���,Y�U�ɠs\u001dn�+�J ��PwI\tO�\u0006gmxO�\"PNm�Ut�A(�\u0004\u0010��L��b2�㞨�&�5��%d���u�X�Fn\u0015�6\u0001�k�\u000f�\u0005��e\u001d\u0010N�R�q\u0006s��KIg�\u000f.��H\u0007-$\u001f�\u000b?%>C���:\u001c�Ƨ�M��5:�Ya�2��@1��,C��\u0012�$��u\n�+���\\?C+�i�\u0005�\bn�jG\u001d�\u0014��m�\u0016��\u0016G�}�qو��%��m�E�9�kiǝz\u001b\u0015����̱�j�.W+�,��\u001c0�#1�{�O_\u0014Yww\u0005\u001f�\n?\\i\n�K�Wᜇ%/�%ǭ��b���U��T��\u0017�\t�\u0006�\u001d�z�\u001c�\n\u000e\u000b�\u0012.o�[i�) Еp&��'7��5H0�\u000eՊ\u0013\u000b�q>�5�E�\u0003u<��A-�\u0004$��۷�Q�h$H߯mE^\u001b-���^��F��]\u0002�E\u000e-�@\u0013�$R:;�/�\u0007�C�0\u0002��R�8y�Z1��Z�\u0010Q�BnK\u0016!�r��\u001f|�z6S�@\u0018\u0002��o/>�(��fLV��q���\u0014\u001bre���\u00012�F(�)��X���\t�\t\u0006�w/�<��$�k}Wbn{\u0005t�N��\u0002�j2�%�eU\u0005��Z]\u001d���Ի1饴u��9�\u0018u:\u0016j+��O�??i+��3c��ʆ��>LЉjO�\nY;]wx���xI���۲2LhU~j��u���\f\u00163]��\u000b�nA����\u0018�^\tw:NDj8��}��[t\u001c`��Guq�\u001a�-b\u0017ʹӋ��P\u0004\r���H�\u0012�A-�\u00048��X��d}\u0004Q�k�V��7B�(�>s�\u0002�p�\u0007hXcxkU�\u001c��c�\u0001\u0011}�;\u000f�\rf�%\u0002e����1,p]��Z\u0002�\r\\@�\u0018�~HKOi�,m�����b���>\f���(���D�N*�.]����߫�\u0000L����d�\u0003F#;\"\u0016��Kq�R��\tl��\u0005\u0001�C$\n�p�XϢZKI;B�ʟ��^t.\u001bՒ�\u001c*�\fX)l\u0015��\u0005�s\"�W7��^\\m4\u0012�$�a!\u001e,y\u001e�8�\u001c� '�&�m�V��i�Q,���\u000f�����ô=\u0005���х\n��\u000e-�L�]d\u0000j\u0016NC\u0005k�$�\f�:�R���1�qU��A&N�\u0014X^\u001a�\u001d�\\}T�2QK��t\u0013�£A%�\u0004L���\f]���| x<�� I�8��ItE\u0004����z,��\n�����\u0016�\u0003��_15zоB\u0011��\f\u0006�_(g�����DŽ�v�#��;N��\u001cK���/\u0014�4��h�����z�k��{�\b��q���\r�f3F��k- rF�bU���j\\�;\u001a\u0012�GO�{K���q9q�[^P�ͭS� ��Y�Qx*�C\u001as����U�)2�\u001eSNT�h���\u001f��\f+}��ũ�X�:�YN�\u000b��ƶ�\u0018呋��\u001c利�5\u0000{\u0005\u0011\u0012\u0005�7r8\u001cku\u001e%9�`\u0018A\t|���Ҩ��%0�t@\u001c\u000b@��\ne�br\\��Jr{�a¼���n�\u0014!�A3�\u0004`���1�I�G@��\u0004\u0014�Rn �\u001c�܉X3ڜ ��l�2i<\u0014�=dA�S\u001c\u000fQ0G���J�c����1\u0001�L�\t�ϓя_��\u000e��\u0001�\u0014�\u0012��<�)��_���.E~��9�;|ĝD\u000e:���b{0冖�\u0016��\u0000�Um��=�H\u0018J��c\u0003��2\u000b\u0015��T]է^�2�\u000eg/}�\u0012\\\"���y�$�\u001e�\u001f�_��YO\u0004c�0\u0013K5S�\u0016�Pmx\u0007��\\9t�\u0015\u001aW�N3?�` Zn�N!*M�U\u0005W�3\u000bk|��.����eS\u0001�}���Y\u001f\u001f\f��p���\"k�P�O\u0004\u0002Q��o�!\u0001y��QΦ��\u0016(� 2��2��\u001c�Է�_���vLr#�\u0001�3�t#�A��\u0004t��|�J�[��N�ݜ�f�\u0014\u0001=r��\u001d �\u0010\n:T\u0016c.\\��aiD���֌�\u0011*��,�ژ)S\u0002��n\u000fa�D����0�78\u0015�B���[�\u0015�\u001f��LU\u0001\u0010kzb�P����i�\u001d���d?N,\u000b�5\u0013��%\u0001�X��\u001bZ&P�\n\u001dS&�_7\u000b�]�\t/���X�w@�\u001eO��-s�\u0000��Vq��\u0004K����ܖKn�B����;O�~W=��֘*�Bj���Wo9\u001c�j��.����0g��I3 D�(\u0004�����S\n\n\u0012-�\u0005\u0002z��\u0010��sO��>�B&���L��8�Ģ��y����S97�\u0007,.�\u0007\\Ա�C��I&��5*�L��6̦5����\u001f���1�TȬP����\u0001[���a\f:�b\rF'�{�0*���Z8t����\u0018~�\u0000��5q%D��\u0004ј\u0013\u000e��m�Ք��\u001am�^���\u001e\u0015mU��)\u0014��B\u0013F�h��\u001f\u0014:\u0012.SQ�y=�C������Ѣ���Uͥ���h��\u0002�۷<%j*����ӣA>�\u0004����\u0019p1�R�n����x�t�f�*��f�4ڂ\u0001��᦬,��h�{�?\u0003i<.�\u001e=!�b�.�\u0000�U4���3G�\u0002*\u0002Roe��� .�1\u001f^KA�e\u0017q�\u0014�\u0011�ol����H` d,�8@�@�r.�g��u�R��\u0016Ps�˺߾��\r���\u0017/\u001b�L��K�$A�\u0017\u00137J�q\u0006�w�:�l�����:_\u001ai\u0018_s~�\u0003@�\ti���\u0004���\u0017�HL����Fj�\u0003[�G��oo���HƿX\f�ч��\u0007\fG�����\u0019��U��\u0016N�]G��\u001fp\r�\u00197>���\\���}\u001eYH�-�A�{�J��\u0013P�I\u0014Dy\u000f�k\u0000��\u0006��R^��j��߃�h��R������\u00161\u001f\u001a�\u0014G�A>�\u0004����\f��\"�\u0014��\u001dǎ=�h�����eP��\b��%��\u0013A>\u001c�\u0000�S\u0002��Y�N5u\u001e�2_�[8\u001a�����s��\u001dռ\u001c�&����s;����n�]j\u0016ѫ\u0007���$ړ�+��+D)�]��\u0018�\t��c9��듺��/����\rZY5���Z��R�����\rmc`�b�\u000223!B$S��\u001c�4\u000b�\u0014�\u0014��򀁬�\u0016\u0014H\u0016g�8��\"t!!f��\u001a��R�,u#F�\u00146\u0006��9xY�\u0015ME|PS�3|\u0005{�2��h\u0000���H6��J\u0007g��G�\u000e\u001asc&0��d\u0007p=P���5s����~:�[Bߩڱ��4\u0001U��8�3Ia̅\u0019\u001b��'�\u000f��R�?��Z梺\u001cl�x��1$S�AL�\u0004���L��ѵlt�w��ũ��8o�\u000e���Yݛ�G\u00172�R�K\u001a�D�x�\u001d\u000e��\u000b',m�r��h��\u0001�,}�+Oh\u001fe|%8�����i��`r\f\u000b��sA\u0002I� ��\u001e\u0000p��i�F�\u0006i\u001d���\u0018Gk\fe=�r\u001ac� �\u0007\rO\u0013l\u0000ۈ9a���9H�\u0013�l�dk'\u0006��\b��(�ɟ?��s�(�LF�-\u001e�M�q\u0014���q8���*�\u0002\u0011'��\u0018\u0016#є\";\u001f��\"Gm;e�z\u0003�\u0017�4%��$OSVW��\u0001\u0017\u0003\u001b\t�7��E�����8�w\u001e�k���q���x�\u001c�*E,���,\u0004ݯS\u000f�@ܑ\u001b���򒬖���\u000bC�\u0015�U\u0011Rzǯ����\u0007:n�@��Z:�\u001c�&*z��)��;�Ck/;P�,���VH�AO�\u0004Ā��̯՘ٸ;\r�����n��?�s›yP�\u000f��r����^��2�\u0017\u0004�\u0016^�Z���@�~V��<���\u0007�/\"�]=c\fٽ�h-/צZ\u0003�cN�W�BT��P]�x�R\f�0$�f\u001a\u00059\u0017\u001b\u001e:�\u0011���\u0012\u0010~np(�Y�\u0018��Uq%���`sR3� ��(��\fCwAd�_�U(����)bAb��4f�|���\u0007\u001e9��\"!#\u0014�nF���L5�Ð�Q\u0012$�:У�W������T.�ԣQ㬦6\\��CaH��0H��`r�{C�\u0016�t�3��=����(\u0017=ފ�\u0017��t�-i��\u0000�k֏��\u0002(�&.jw�6��6�\u0003|��aGU�8\"�\u0003Z�j;q>\t}K+\\8�Q��yG��ˏ���N\u0012�B�#��\u0017\b���E�B �\u0004؀�|�\u0010�ք(�����.��m\u0002-�-=~P���y��5\u0016y���M�ON-�\u0017վH�w�f�\u0007M`�],Q�x�p�d�TN�\u0000\f�lzL�\u0004\u0019�\u0013�\u0016��[W�3���\u0011����͠�&�\u0011��[��+ex�\rʠ_\u0016'\u0010ʃ2j��S1����?ɸ�C����\u0018���]e� �.;�A\u001c��\u0000篬�9��\u0004O/a�EV�K�\u0014Yܝ��ۃ�\"l}�%NR��\u0001݅L@/(���\u000b\bGwAw@m��2�c_��\u001b�\u0001z����\n\b�5J�C����p`ȟ\u0004hH|�\u0007\u0002f�����zROI�t�����d�\ff�p��rbt��ԝ,'���ޖw\u0005���g�yΙG�ץ�\u0004.�٥M�rdR���5\u0007��͈&�u�����\u0011���O+��\u0013\u0016X(�\u0005J�'{�\u0017�?\u000e�y�8����s�D��~�3��W8֓l\u0011\u000b՚�IM��{7�[��\u000f�Q��\u001cu8W�����7so�CYf�A\u000ed\u0005M\u0013��ߛ�t�$}\u000bbT��\u001d��\t��\u0006r��$=�<����\t\nbݚL��p�Ӄ\nZ�\u0007��A\u001c3i����G�\u000e&6\u0010\u0004\u0006���\u0019���L�ܗ~\u000b�\u000e�bY\u0018�[�ӯ\u0002x�o��[6\u0003G��lj>�\u000f����A �\u0004��L�8�@��b{����쩣�F��\\�0�\u0001�\u0019޴T��J\u0002�\u000fm7�\u0014xө��!��C�B�r��\u0011�\u0003g�]�\fK��G��ư������=��OM\"Y��\u0014C㡫|&\\곃h\u0003׆���'#˷�+t?\\\u0000 \u0012@�\u000f��z��͆��A(�\u0005\u0000��X���d�ٚ���\u001a�\u0000�V�記,m+%#>xy�ҡUPk��uK\u0018�o���-;�.�\\ }#\u0003���C�-.)������N�\u0006z0(�V4\u00197Z�=i�\u001d\u0019�����\u001f�,yaI�-;�_�RZD\u0001���\u0010A4�;���\u0018�\u0003��\u0005��(k/���S�\u0010?�9��\u0006D�X�i�\u0011�\t~� ���=�)��U�\u0013��!g=�+U�w5>4�`Ι���\u001f��X�fl�3�%�\\��sFh�X�J�\u0017\b\"Q���?\u0014N��\u00061�\u0017��{��A��C\u0019�v�S�ۀC��L������\u001f��^O��@!����\u001eͺ(A�){/�3}�U\u0010��n�r1_^Y-�A\u001e�\u0005\u0014��LǶS_:_Ͳ\u0007��|<\\m\fc\u0016;ZB���M8jgDz�9�� |���I&`\u001b0I�|�\r\u0019i\u0013\r�XO���7��=�&C\u0012RE�\re\u0017�\u0011\u0015\u0016\u000e\u0006�[�J�r\u0012�TA����qK�u�F\u000b\u001e[nF�آZv�6����*I{{F@�!��\u0004Mq��8i\r��,�fl`\u000fө���w\"Gv\u0010��\\���\u0019��|�dq&N��=`����}\u000b\"=f��:��B���#)�2��\u0015Ɨ������]��b��'\u0011�w@��M�8C\u0004�U�\u0017���k�C�ޟv\u000e�n\u00128�1��\u0012��I8-�8�@W�8z�bP�\u0003y$�z��R�+��\u0006��A\u001f�\u0005(��L��\"\u0014L�w�o;$�m�eH����\u001a\u001a9��\rA��4\u0018�S\u001f�d`˯i[����z��\u0004ʢ`\u0018\u0015�/�|�\u0018���:�¨�\u0001�$3���U�\u0002�K�o�\u0002���1�s���\u0018P�J$�|\u0006�\u0019��\u001d�\u0018cr\u0004�uVⲃ|�l�\u0017\b�-\t\u0004ӗ�ږ�.mL �u\u0015n��Yb�t��8y�k��6�\u0015�&�\u001e��|+�_�\u001ct\u001e\u0007�rC܁>��|�6��co����˸�5��⏍\u0011 妫\u0014�\u001e%\u00114��jr�}[#i��|'C1�|,�b��̲�!����.\\Fs�}�3���ݡ�����@���\u001bH�j\u000f^����-�A&�\u0005<��M4*\u0004\u0018\\���&�\u000b�LM�$�-�:oab�ķ\u0016�'��뉦˓C�Ƹ9.�\r�P�xI�?ź,p.;�w+zD�n�\u0012ڒYz���ƴm�I�\u001589�WE\u0010��\u001f��D\u0000�[�k\\��\u001d3�\u0002��\u0014R��2sCF\n\"g\"\u000f�܍5��+\u0007�<�Y\u0002���Ǡ#i�*zK��\u0010����;٣V9�9�\u0010��o?�?��f�\u0017ڸ'h�A��D'v�G(\f��G�e\u0007�ϼD���\f���\u0015�p�b��~H��\u0004+8D�?&�M���+\u0006$\u0005W���y�=�=�\u001c>�֖\u001e��|�ԟR�\u0016���o?��\u0017k=�Hg�P\u0006��#{\u001cr&\u0014ڟ���|?��A\u001e�\u0005P��L��7'���_�\u0017�v7�٨D�U\u0014�˶m��Z�\t\r�$D��\u0010�Y��Φ,\f'Y���h\"��� �5(��\u000f2�Ht��\r�W:pЀ���C�8�M�j���\u0016x�\u001f/\u001f�\"J_�\b��S�䥃S��`�#t�u�^Uc�\u0016�̺�\u0000�B붉�\u0005gu�gh�W\u000b��\u0012-Qz����\u0001�c�?t����P\u0000���y�\rt��bI.>q�$F��\u0001t.hH�R��\t��7׼5�Չ�t�\b\u0018O�q� ����pN���������],25�\r�n�YB���+)T�\n�:���U\u0002��(:�:Q\u0016\u0002\u0004y )�\u0007\u0014�\u0003bo����%3�A��ҟ�?.���\u0000�c#���#QV-�>(\r\u000f�\u001d�\u0012�\u0013?\u0014��ҊIw`�'��Zw�xy���\u0006i�\u0007�\u000bX\"�S\t_J\u0014\u001a�0SU\t����u��\u001e_�\u0006�v�\n����k�\u001b(���Ӷ�9i��\bo�Vm��h���\u0004g�ܷ���v����$8�n\fv \u0012�L[7�>\u000b�:y;\u001e^y\u001f>|�U���+j��E3�7p��'��A4�\u0005x��L�%�i����e���\u001b�Ij~�\"�k�\u0016u�\u0014$H\\��K��Ns�ք�j�R����(�M�_05�\u0017}\u0001(�kڤT�jM��}_\u0007�\u001c^�P_��<5\u0017�b�!�A���\\H\u0013��r�\t���g-`\u001b���Y�K���q|�n��x\f�:��!�_�P\u0003��(�_�\\��0�\u0014�er���M\t�`�\u0012\u0013!\u0004\u0000�\u0017\u0001�K`�K\b��fݘ[�\"+ȁ.�'Ճ��<�߈Kq�d\u0000��\u0015���tn4�Ŕ\u001d������\u0005���\u001b�\u0016���jZ�G�]1�`��}���ng��<�-�?\u0004\u0001����Ր�]�\u001cQ��V�\t:���\u001d�\u0004mS�����9-��r�!Pؔ�dz\u0012���A)�\u0005���L�E�êOM����xt�%\\�\u00063)�P�Il8h9�b�I�S\u000f>�oC\u0004�Ѡ�\u00079H'�Gq�h��o0�98��%\u001e�L\u00004\u0017^<���%�/���\u001c'1&$\u0007��AG�$��\u001b/�F#\u001a��~Ƙ�x/=� \f���:�����t��a���(\n\u000e�\u0012�e�a,\u0002�@�eA�������\u0006kG2QҘh´�w҄��[6�\u001f`%\b��vX@��\u0007�MKm�{��0�V��7PJ���ϘLD���\u000fw\u0000AFZ{�~�g\"��t�a\u0016/�(���oKp��ܔ�\u001e\u0018��\u001a�B��D�\t�:Uf\\kʰ#'G�*���\u0003�\u0016�\bRJ����xZ\u0011��<�\t�A#�\u0005���L�e��\u0004(�\u0005�\u0011�\u00120�u���x�G�[�%�hN�|���\u000e-@R���\tE�:������Q&\u0018�W��\"�l��󢺡�\u0019xa\\�F�<�e�m\u0014�öU��\u0017fX\n^�r\u000f����,���\nk�\u0011l���\u000e�)Z�,���(��\u0006m��P7�N�Ԅ�G�\u001b��R:��8�+\u0005�E>�\u000e˟��z�4<Ύ�\u0018\r�e�\u0015xr��w�Pk�0H�$,���H'Z�1��kH�0-Ou��\u0010=lGFa�Xo\u0014�-t��*���|c\b�w�����IL\u000b$\b�߇e��M��}\r�\u001a\"\u0007�7��\u0001.\u0019�0��$��\u001f\\�\u0000�Z��I��A$�\u0005���L��\u0000Q\r7�\r�]�Ն&g��?[�\u0012a&>\u000f�ή��k^?�\u0018�`�\u0007%t���>|}(��\u0006P���o�v��\u0017\f��lo���v�T�\fF�/Z�E��(�%\u0011t74�1\n6\">���\n�C�\u0001��=�\u0017A�JKнY\r|��������F�]�\u0018\rm���r�\u0004s�?�nu@\f�������6\u001b��8#;\nʓ�c�+v�%c/\u0002��/�Ә\u0003\n\u0006��~+��*�M�$I?\u0001$\"�J�m�X�q!�r�\\@�ޚ�d�#��\u0019\u0006.�B$�\u0003��*gy�6)�4\tk�!\u0018��D����\u0012�\b\u0000\u0017\u0007$ �����VJ†Kn$����16�\u001f�ߕ����Y_���4>��J��\u0015�%��BS_v��dp�q�w\"Ǻ��J��f�t�]�&��1���\t�ά��\u001e&�S��'-���W�p(+*��A��A^\u001e\u001b��\\�B��a6��\u0013�A$�\u0005܀�2x�hA�|qy�y� �4A�J��́\u000b]S�dnf)���\u001e�\u001b�<�4���C��V%B�\u0016�]j\u0005��l�a��\u001c9��+¦샚z�\u0019\u0007%JsZ΅\u001b޽�3\f!�\u0015�К��\u0017$\u0002%�S�U�j\u001bۼ�I(\u0018az7J�\r\u0016\u0003bym���,t}X1�>\u000f�\u001a�\u0002���)m\u001e<>\f/\u0001)ut˖\u000b\u000f�YO2����Lt\u0014V�\f\\v�I\u001a�c7��\u0010I\u0015(�\u00021�9�����N�q�)������i�y\"X�i�,�2\u0002lz�\u0001/~�Ɨ(d&��\u0010��\u001cJ/���f-9��U�\u0005��\u001f����p�ւ[v�W(.�� N@���ɿ�|*�t�A@�\u0005���LǶ�6r/�����nѯ�\t0q‹�X\u0016��gp��\f�m;��>nɢ��سpL)�T[%\u0012�\u0001j��\u001e��\t��c�����*~�\bR9jw�\u0011n�9\r��k��\u0017\u0002��{�'��\"'�����k�ue��.~\u0018Wu��YRD\u0012��2�$��v�\n�&�S��\u0003ْaer������(\u0015�v\\��-!�\u0014Q l\\0�N���\u0017N\u0002@�(Ϟ��hZ�VL�P\u0018 �\u0006�E��+\u0019,Bi!_��\u0004C\u001b�\u0007���jPw����l٧��SH4h;�J���\u0004힐}*�[�Ʈ�\u000f�l\u0005\u0017�\u001d.{�\u001d��+��x��\u00035�%YZq�劷_/|\u0012��O�\u000f�YrX$�H�Q�Aӕ�\u001e���d|��$�A)�\u0006\u0004��X�|��u\u0013�\u001bF&\t�����E��cnG�ڲT�~~\r� �,�\u0002�\u0018��^1�.�\f./f\u000e���\u001c��������G�\"�\u000b�&��\u000b4\u0019q����NW�Y�H\u0000�>\u0010u�>�p�\u001b�n�r+�~�l�A��4A��{B��\u0007\u0012�\u0016�G���\u0016���+���m���\u0010\bAt\u00185:�\"��Z�v�\n|\u001d\u0019|5S\u0010�#\u001b:�\u0003�܎\u0014�\u00016��ܐ�X�Ř�\t&�i�����Ŗ��\u0004�õ��o\u001c}\u000b{�DTE�6� \u001b\r�2ݓ?�N�\u0004V\u0006��\u0003�xi\u001b\u001b��\u0016�\u0019\u001bl���Q\tC2��&��\u001c^����a��\u000bO�\u001d)\"%�\"P�J�\\b�ɣA,�\u0006\u0018��L���\u0018\u001d�{��,��\u0007�\rߵ\u0004(!\u001a\u0007\u001eX�\u001eu��s�Lj<ᛇ⎍R���jK\"�Uk\u0010\u0019h`�y��\u001cu�5��T�\u0001\u001f_��2}����\u0018��\u0018�\u0003�@�\u0019��d�f/D%tw\u0017e{��6\u0018���>�:v�B��%�N�cY��Z�`��0e��[��o��k~�<�x0\u001f\u0010�=o���\u0006\u0003�\u001b�~I�\u001b�\n(e\u001a��hZ�G�[v�9\u0004\u0004s�a\u0018�$d��\u0015�2\u0004�w1�f���s�\u001f��7����՚\u000f\u0010.r\u001dV��c\u0013�j��9�\u000e\u001a��P\u000b3���¾��:�F�lux��A�ѧs���2�v�8�…f�IW�d}�GC:\u0015���ܳU\u001b�A.�\u0006,��L�\u0019\u0010��\\Rcb���Q�k\u000e\u001fB�y�\u0015]�Qb@��#m��l��\u0001\u0011\u0018}t\b��<~���ϙ�\nʔ\u0014�Re�61�\r\n\u0001e�/�w.kR\b�����J\u0019��<�)�j5.o*��0�\rL�򞖧\n&z8\"Xo\r��\u0014�>��B�\u0003d�\u0011|��\u0018��;���ܰ#�l�3Pq\u001f*�)�\u0003\u001a1�,�*�)��������^�A��|��<�7H�?z\u0017�n(�q�\t4\u0007+�Q�mV���ސx).o4+��+c$[&)�t���/@�!\"��\fE���@s�vKD[d戀y-a�d�\u0012��F�P���\"�E�������\u0010�˶=S��q���=ɰ%\u0015x�\u000b\u0012�=\u000fJ�A7�\u0006@��L�k�x/�.z\"�{m6�:�\u001f^�\u0015sR�\u0013��wU��6�KS��x��\u001c\u0000\u0018��%%���\nѐ�]�ߙ�\u0007\u0010\u0015\u001a�\u0019��c=H\u001a�}|5b\u0002��X\u0006���b\u000fN���I.�5\u001f�-���0^��\u000e��\t�ꃧ��Gۭ�ԙd��d\u0015\u001b'/\u0012:�S�D�h�+0���\\;K,��\u00189���@��mx�Co\u0013ͻ��p��h\u0014��\u0007\u001e���(�\u0016����r\u0018\u0014\u0019)��\t���\u0011\u0018!�\u0007y��\u0007�L�ƌ�E%���]�\u001c}'�\u0007b�Y�=�g\u0017��:�,��\r�Q,J\u0018J7�\u0005{�K'D�\u000b\u001d����uH���\u0012�t\u001d����<�Ow�\u0016l\u001ḇ�z:\u0017O�^�\u0013�A:�\u0006T��M��wT�;\u000b)z�\u0018�Ʊ�G֚�\u000fB�\u0015��m\u001a�\u00139�\u001f�lrL|0s`��x����@����{��-\t;7O��:���A\u001bU\u0003�G�e�p�d&��0�_N\t�䐓�S��r%\u001cy�>R-3ҿg�T,E}��0\u0007\u0017��e��c\u0005\u001dX���\ntq}D�F�+�wX��p\u0007��I��.d���N��x\u001e;\u0012������ہ,k��\u0018�Z�\u001c���m\u0012�o�\u001a����Ԋˍ�q&����\\�&\u000efޅ\n������K�>u%|�=�%��8\u001f�\u0006\u0014�6$:w�\bY:Ki\u001eܵ\r�\u0000����P��(����x��%�˃\u0006\u0004☫5Z�O\u0005QB%�0+]/���b���ﴣ�B\t�\u0006h���\u000b2���_\u001fGʐ�\u0012U%W\f\u0013W���\u0016\u000fʚ�V��4\fv���K�>E�\u0001�x��\u0018j����\\�7��m:x\u0001-��{��F�F%�f\u0019Q��e\u0015��N���_H�t�pQ�\b�v/>5�6$aB�m2j4b�}��l�$\u0010r�\u0016j�t��(��O*�J!��A�\u000b�옒Z\n��\u001dD\u0013����M�\b��ӏ��@�RK���2��\u0005Kn\u001b� �\u0012�Q4Ӂ\u001b�p��t�E�\u000e�:(�ᦖP�N)y��~h:�N%;�\fPs��c��.���\u0012��\u0012��u*���\u0014Ղ[����(�P��:r�i��s�l��\u0018�\u0017]�͉7��0rb\u0011��7�:�\r�~�\\PGm�J�\u0003��۬��,\u001f�\"�F*����c�\u001f�5AR~\u001chg\u001cjIr�lj%�OR�ÿ�\u0017�(�[�ɟ\u0006�o�D����\u0015zNNSr׿jgsh�\u0015(�x��T��NZ�r�!�\u0016Xϛ�9Z@��04�f\u0011�\u00037�K]�\u001b�\u0011q�4�Z\u0001\u001ci@N�kH��_GAH\u0001�B�\u0019Uv�\u0002cdg��H\u0004\u0005��Sg\\��a@�}s9Na昞���6���E1��ݦ�WȊ;�\\T��'_?���\t�\n^\u0000.��`�It/�֣Aq�\u0006|���}ܟEl;���Q\u0005\u000fQJ�VD�>\r\u0014��7�\u0012�_U4\u0019r�\u001f�����;5a>��S\f�$hu\u0001���P��\f���QZ\t�(+D͈g�}���\u0007P�\tf\u0005�����#���m���>{^\u0002�e\u0016\u0012=���\u0007\n���\u0012mE�\u0019&ԗ����n��mi\u0005�\u0013\n0�͐1��0v��JI{4��0�wd��2ײ\u0016���4\u0001c��}�H�\u0004,t�P�q��\u0011�1�n�O�y\u0010\u001f4\u001a�\u000b)�\u001f�=mL²^��^\f�i�\u000e6�\u0017\b=p��H����<�,ݣ\u0011>z\u00027\u0012 {)\b\u001a%�p\u0017P+�s�\u0006{����`E�v�O\u00193�N��`�2��q����IT��\u0016�~�R\u0016����b\u0006f¼\u0015��j\n>C��ޜ��2\u0013q]ZVz��P4��D��\u0016��\u001b��\u0007�m�\";p�m\u001b�F�;\u000fWDۣAD�\u0006�����Z��ڷek�\u001cou����:��oq/�>9ׄ���%�?�����F����VaY���\u0019$�\tb,�i��Lg�\u001dP0C����\u0019�\u0015�\fO˸C2��\\8�\u0018�p'�B��F\u0006�\u001d�,\b@�;��LGF�b�,��1͹\u001b\t|\u0013�-7\u001f��/�b�������\u0006<��\u00158 ������O��\u001e߇$U(���s��8\u0016�`\b��M>��C�]8.�M��\u001d�gp�}Q���?ɰ�\u00069\u000b�\u0001<��G\u0018�k\u001d�\u000b�S�R+v��5_\u0013�K�\u0012�لA���\u001f!T0\"��Bs��\u001efC��13�\u0002�\u0014��N��(eN\u0012�ŕrQ�\u001a\u0006c�9\u000e��\u001e�\u001a�\u0015��7\u0013t �@J&���vw\u000f)DB\u0018�=\u0004�����A;�\u0006���.�\u0007�}���\u000f=\u0011��h��y;0\u0004�*�\\К�ѡ\u0016\u0006\u0012l�k'\u0015(�u�1fH�\n���\u0005�h��]\u0014du�\"�\\E~��\t\nZݾvO�\u0016\u0011�R\u0014�\u0013�[�.@�.:m\u001b�5���\u001f�Y��y��S��J\nA�>�7l��a:+?�2\u0004�|��\u0010y�A�E�纏\u0015SE\u0000\u001e�\u0002�\u001a�9��A^�I���\u0010�H˽�9����<\u001eA�]}įI���\b.\u000eF��;�c?s\u0016x�|\u0012���jt�\fm�^�`F��*��\u000f��@\fkiT��\f�J��e\u001ar��Ae~\u0007��i�S�\u0016���m�p㗐����T��\u0010e�\u000f�\\Iؒ����9�i��d�\u0004gY(s���\u0007�e�u�H\u0016�R�O؁�AC�\u0006���.���\u001b6��$D6L&Y���ܒ���\u0017�E �B�$��\u001b\u0013�K�\b�T/s����\u0006\u001cAf/3\\��񄩜���\u0000�E\u000f\n��x]�\u0014�\u0017�0��\b'U.�.h�M}�)��?��\u000e���Z\u0005�\u001d�{�\u0016#�d�������7*�2�:^|\\F�%���8ik\u000b�RYa�5��Fl���)�@�?��^�^��\u0011!�t1�]\t����wsK�RR>��,\u001e�D��#\u0016>Ʌ����|\"�$Hk\u0019mS\u0002#\u0015�\u001a#\u001d�N�Gr�9�i\t� ��t\u0000����~�y�*��\u0005��Q1��j��MA��X%�\u000eSU\t���=���+ܧ5\n9”%�ov\u0010\u0005�R�I�\u0001�\u001c\u0007\u0004�t�9��m]ɷ�闅p\f�D\u0012��Aҁ\u0006̀��\f\\0q\u0014$){�\fC�W��\t�\u0002O\u0019)��;�\u000b\n�\u0015��)9�\u0013n���u�a�I2w��V}%p���\u001c_�\u0006�\u0007�;�\fwS̖\u000f��H���q:���R0�\u0015�������e#�o`-�_U�ܴ\u0011���5��K�pB)7]d�o?�W�\u0011u\u000b�D{���I#�\u0017dW4�\u000f\u0002\u0014�5���gO�y���`W��\u000e)�T6��B�����!��\u0004I~��g�+x0\nλ'\u000e��\u001f\f���M�U�٫��G�Y�J\u001a낫��g��q��\u0014�X�R�\u0004g�H���kڌ\u0001��W(�\u0017���\r�6�2We���|Y�]�{Ubt��f!!��o���D�G\u0017��\b��3��y{w�\u001f��\u0000O�6�\tM{}\u001a4j���⩄[��j]R\u0003�\u000f\u0017�\b�\u001c�H���_�Љ��\u000e\u000b�A-�\u0006��]��B)>���\u001a��-����\tJP@�\u000b�*�7�\u000f)\"ڛ\u0017Bpo�ZF�~�b\u000e\u000b����\u0016m�_dn���Hr\u0003����3�%\u000f)�\u0019`�DZ�����K���ʢJv6����P�A��\u0000�����ވx��js|\u0004\u0013\u0005+��\u0000%r+f9�@���0\u0011ȋ��9�\bTr\r��\f���@\u001a\u0004e�����ډ�W�0�\ng� P>��*������f&��\t�x�\u0005\u000e9�ڄ|\u0015s>���\u000b�\b[������Kk�u�\u0004�x%�����~s�ӎ˞\u0017��y�Τ�H��˽gзЩUb������y\nB,��4�5S�7��w�GǪ\u0005/�\u0011��Yp�O�\u0012�L�\u001a+X(\u0007]鎈$�0�A)�\u00070��MF\u000f{v\u001c�������\u0015yr��\b�(\u000f��U�ߓ�Wl�\u0011�Q��NH���A4T����)��[A�{\u001c��VD��Aeb/-Tz\"��)\u000f$t#wX��\u0002�-ڜ%����!�c�6{2�%��R�\u0016 �I<��\u0015�\u0004d�AIB�����]��b\n�]\u001d\u0018\u0010k_[.\u001dP\f����^\t6�l�#y�A�2/_H�aG\u001d�Oo��̱[Q�\u0011��Q\\q�\r4\u0018�\u001dn��\u0000:M�@���\u0011f�.*�I�\u0015\u001b_k~nJ�D3ȇ���\ni�5q�f���Q�\u001dٴk\r��\\kXS�¬\u0005;��2�@��{�.��O\b82\u0002���J`b8��e;=�wE�)�A&�\u0007D��L�\u0015��\u0017�[�Y��1�}~�V,ښ �j�R/m��V������!W�����Y�zr�\u0005o�^И\tRF�\\3{��%��\u0012\u0002xD�Ξn6��a���5�{�7�a\"\u0019\nqq�6�e-фYй��������\u0014���x8޵����NX�P���6���B�y#��$�j��p�f\r4h+\bF �FI��gD\u0000�%�sy=K���ewՔ];�����xW\u0018�\f-�(�N�\u0005���\u0012�}Z\u0010烈�\u0019���R���߹�?]�qbS\u000e\f�&\u0010�N\\�*d��\u000e\u001bz&��\u0018�]U=��\u001c\u001e:E�\u0017]X�GD�Y������������Eq\u000b�=@�?�A*�\u0007X��MXb�8؟Kx\u0004\u0018eQ�\u0015�)���lC;�H���g�4 \u0000�Y\u0015�4���O3��hʘ<,��\u0003C��d�\bZjR���ݔر\u0001ڋ��!=2\f\u0019��O\u0002��\u0016�g�t�@g�&���h?Ԅ�M�V�\u0014�-��~\u0015�������cޫl�,�[\u001c:+t\u000fѪ:\u0003Z�������ʆ�\u0010܍\t>M2s�r��\u000b����O\u0006\u0003\r��i^\\��_�(��bE\u001b'yM�t���w��\u001a��\u0000�Ul��Q�+\u001a��O\n\u0019]�~cן��J�b�צ��n���1\r�5�\u0003�\u0003(eYa�\r���i��L�C�\u0015����U1)k{�ū�*u1\t⥷\\7J��\u000f��.-�A��\u0007l��|�\u0010/m@n�i����\b���$�&u-S\u001c�l�&bk\u0000\u001a�F�ѯs*cy�&�\u0018�'��d\u001dV��=\bD͖�c�Gt3�t|�>��8���)\u0016�eC2\u0005ys��8&�U�~k�\u0001�c���\u000bw\u0012�@�'��{�;��jx�N�Pa�]\u001b��d�\u0000�-fY\u001d\u000e�\u0017i\"ݸsx�<��\u001e��\u0018�fL���wbl���=��%��X�.���i)�^lJt����\u000b�\u0012�\u0015�1hQ��}J�\u0015��MjL��w�1'��hC2\u0002���}L\u0002�NyL(���� >zg�\u0000\"<�8��,Q�\nz��y\u001f�\u001a$�W�KL�2[�~y��ѱ���L��C�Ë\u001a��z�̂�tJ;��#�\u0004J\u0012U�E�/�\u0017sk4�\u0001\u001b\"U4��\u0001���u��N�ʧ�\">\u001a�ب�\u0015nz��l�u�.�&СO|ګ/a�Z�9�sЀ�^�wx�kN\u0014w?���z��_[�\u0003��TR۝����\u0000�u\u0006r���A6�\u0007���.u0ʮ>�{[\f�].v\u000f\n����^�ާ��M��2�C�jx����\u001dݖ�q����V�Y�\u001e\\}��ᦴ�7\u00062�\\�ۿ+��\u001f�\u0006@�9�}��j���#�2�Yf�b+\u0007���?��8�'-\u00112�\u001dߐ�u����\u0010�x�;‘��xYyТiz��͜�f!�eFόO�@\r����<��⬳�-\u001f\u001d�C�\u001d�\u001a�+CST1�,�z{!yT1�\u0011\b�\u000e�IJ��s�Ƀw*�Z�u4�6��\u0016��'C\t��ܩ[P�8#'�\f��1���t�O5\u0016ڥ�(�f\u001a\u0006��A/�\u0007�����\bb�[d\u000b(�\u0017��a\u0010.T\u0003�_�\u0004�/\\[�%���\bQ����B�R�񘱗ON�a�b�S��<\u0010\u000e�+\\���m\u001f���\t��TOv6, X�Q��C\\�w�#;�\u0004s,��GbP7�ߥ���/�A�@M�E�G��G\u0002�\u00053�\u0012X�\u0001\u0013u-gj�zf\u0005@�\u0014�,�\r�9ƚx�#@���o6\u000e�T�a�ӂ���+m?=�~��zb�D���ߟ�\u0015Rk�A�\u000b�&��M�\u0010\u0015�G�?V�X<_��\u000b��o\t�\u0001\u0003Z�\u0001\u0000!�hX��\u0002��V�Ù��$R�\u0018��C�$���\u001b�.�n��;<Ы�P:*��,�d3ߌ�\u0007��&�����J���Iy�A;�\u0007���L��vsW�_�C���H\f>\u001d#\u0000���:Ft\u0003'q&����X9���J�;�^a�\u0007-�@��м\fX٣�g��)$5s�U�\u0007\u0010\u00143��V{OB\u00150T5�ܮ(��R���Y\u0014g���\u001fõ�\u001aW�5d�\u0017\u0019iȟWv]\u0010`�o\u0018SG��/\u000bM����\r�F\u0014����`��Eoo$�C\u0019L���\u001cG\u001f6_)��\u001a1�\u0018���\u0018\t\u0002�nx:����[Q���\u0019Tрv�Sz\u0002�ϏH\u0004\u0019\u0001\f=x��\f\b�o`�Ӯ\u0016�\u000eQ��p7�r5�\u0010�6D�\u0002���\b��H�FM��y���\u0011\u001a�����&(x2��\u0012C\u0007�un��\u001b�+�L\u000b�J�և4R�\u0003P��\u0017\u000ew��M��~�0�q�\u0015w��d�A2�\u0007���M2\u000e\u0016f�\u001a|��d��E���\t�~�0\u0017�u{�]v�I����\u0003O9�6﹈7�ޡ�P\r!\u000b�\u0000_\u00196a�C��\u001c����ɒ\u0010\u001a��#G\u0012ؖK��w�[���>\b�\u0014�+p\u0005>=\u0017���>\u0001�\u0004�)�'�U.�nS�g�vS��'K9�\u0017��}9��T�$i��YP�~t\b�\u0011#�4��\f\u0011(�C\u0015���Rw��D[m�\u00012m�,\u001b\u0012��x\u001c��?R]��H�j�+t��0=��a������\u000b� �b�b��i�\u001f��M�h콘H�V\u0019\"m��%\u0006�c\u0011锌+2k������Y\u0015��H\u0007'!���=�g\u001c�D9�x\b͘W����@\u0002\u0015�˺K\u001a6�A%�\u0007��2l\r-\u0006\u0012T���\"=B��C\u000eZH��y��\u0017E/\u001c\u001fd��\u0007\u001a�I�i��n�\r����J` \u0017w�3��tWy\u0007e��2\u001dU\u0012m�\u0006Xk��e��I�\u001dx���e\u001a\"M����4��$Rm��8m��(8�$�W�߅�� ���2\rH�\u001c���$\u0003�����qf�;�\u0012�;�;\u0005�]5�\b\u0010�PZV1����Fw�)�U\u0017q\nx\t�p���P\r�\u0016�xX��\u0018���\u0014a(@���\u0010�\u0003���\u0018\u0011�.\u0017��R!.���Ib\u0007K�����2O�*���\u0015���㖛%$�S7\r��[I\\���C�\u00065nv����a\u0016\u0019F/gX'�W�\b�e�9\u001ac��\u001ec�\u001f�A\u001f�\u0007���6w�����]\u0014[�Ӂ2�v�������[�(ȁ��g���E�����\u0019О�-xĤY�yܨ�����iC� �C�z�\u001e�Rϟ\u0003?\u0017[�\u0001\u001d�\n`����JM��\u0019����\u0004_�\u0012;:%V8/K��2\u0017�\f7����T\u0003=��%���I`��r�[\n\u001cJ\u000bGB\u0016�\u0007�\u0012B���\u0011:���KY\u001e�?W����Ғ0�\u0012����%i�_(\u0002v��vy�;f�\u0001�\n�6�'4���\u0005�4k�\u0003b�Pwğ�\u0001���\u001dƯ�%6n]K\u000fjI<|\u0013(�E+\u001b\u0004��ꄜ����/�{)t�{k�V���78�\u000f�����G�l\u00115�?���\u0007�A\u001d�\b\f��2x�\u0016\u0002k�\u0007^F\u0011��̀\u0007\b}��e��L\u0019]�n\u000b���/\u0017�K��l�5\u0013�\u0006�,F�;��h��;�7.9�;�\u001fV�u;�/\u001e'\u0003\n+�g�\"ܪ��\u0011��LsZa8\"��M�ԆfD��~/0����=��\\Ã>�V��^����5ҿgtZ\u0002N�D��o>�s�����s\u0002;���A֒�\u0014���ܒ��`\u0018�����#y\f3\n��mb�W�{��I ����\u0012\u0018�Ӷ~�:ě\u001b�U\u0002h�c�=�\u0017�\u0003;1�LyA��̠yIJaM��!t�X�\u000f�~�z\u0007D=��\u0019�q��1\u000f�\u001c�O�_�\u001e�ˉ�'(]2�q\u001c\"b�\u001e�A\u0016�\b ��Lǚϸ�0��cr�-\u0014�\u001b��_�|4��|�U�B�W�_x\u001a\u000e����\u00074�)P�\u0019�A�\u0007��\u0007Z��Q�����m��!}�\u0015߂)�\u001bh>\u001a_�\u0011�h�eT�����\u0016���/�\b\u001fQį��Ņ�-�W\u001e�흰��,r\u001bUނ���_ؼ�����\u001a���y�FY���!�\u0012w���֘5?e�\u0019��\\����y�:t|X�\u0013�l���\u0005��6J\u0013swy)��驇\u0014f���Lw⍤f\u0001�Sjj�_ɛ�`\u0000Q\r\nQ\u0007�)LԖ{���4��7xr�X�C��p+o\u0002��)ﻬ�^���[a�\u000b�\u0005�\u000b�A\u001b�\b4���b�Z,�0��Ys즭�z_�˾>�\u0001B(�H�s\u000e���_��^�y\u000f;�\u0003�̑_�HC\br�U��2M\u000b���M� �ڑf�Gt�E\u001b��z�\u0006�#�f��\t�\u001a@�n�p�YY�)-�(=˼��R����1\u0001��4�Pl\u001d�\u0002`,:\u0010��\u001d�ᅑ�u�}Q(\u001cI��V��\u000b��\t�\f�x���1�ǜz�ܯE\u000f�b웪�\u00104R�2���<��\u0000�'}�\u0014��?y���\u0003��\u0005�\u001f��.ڬD\u0000F�v�w������#�d\u0005�\u0013+�v�8\u001c�1\u0005�|��|\u0019dh�?�<\u001a\u0013`���XbIku �.t���\u001b�T\u0014&q\u001d�A&�\bH���pF\b��\u000f�-��Nrf�\u0012nB\u000b\\�x_��(\u0014�Mpk���\u0014�\u001bx,\u0004�\b\\�i�t~�\u0001!��C�C z�u`������\fņ����E8r�$�ߤ/Qj~��/�>U E� ̿��t!�!&\u0015�Fw\b��2O��h �m��*i\"�\u000bd�%���\u0000\u0011���?ʾ�+\u000b��'������Q��3���1�\u000e?:\":\bw��N��`��\u0005\"}�)8�Ӭ\u00102,��+�i-�쩄�F�\u0000z\u0019�7A��ƞ|�oe��n�7n�r\n#ã�lY��WW����/�C����?Z\u0007��~u�\u0003پ��\u001e8�\u0010ur]��\u0005�ܒ�������\u0000si%�A\"�\b\\��MO�ߐ�j���I��\u0000\u001a�2�dc���\u0004m�㵫\u000f�,Ej̾V��-\u001f�d*�\u0011p�\t4�o����+\u001e$n\u0000ʐl�8@������!\u0016���-iR\u0017��\u001d8\u0018'�\tЙ\b\u0010M��\u0015\u0001\u0003���Ԗ�5�����\u000b)gS\u0000�Q�Bz�Gf\u0000hw�D�H��\u0003�r��\f���\u0002\fq��\u0012��p'��&-\u0006\u00183��|H�ļ�v-��PI��7\u000f�\u001c|���\n�>�%�\u0016�5��L��7O��\u0013Y\\9�o�\u0005$�K����4�^kx���\u001f���l\"�98x�\u0013ă,(\t>N��\r\u0013��e��;�O%�]���x��${wSq*�T|N!s\u0015���A\"�\bp��6���6�ʤ��'�e/�NY6*��r\u000b����֡{�6\u0011_�Z\u0015\u001a8�AC��\u0017\u0018�\u000eF�'Is&�*\u0016\u001d,�\u0006���◂u&�Ǎ.��\rܻ��&vַA*�ی0P��ѳ���)u��q���\t\t�ޅ+4RP_\u0017�/M�SRW\b� T*J&ߛƩ���7dڠcG���SR ju��9�r�{�\u0014�?\u0016`\n��pn\u0007�A2���3\u0016���ܦ���2T��u�N���\u0013��\u0018�?n\tV�T��^�t\u000b��tZ_\f�^�\t|}��}\u0014R�\u001d�K��\u001e�\n�\u0000�K��u�\f�ΣXAc/\u0005�u\u0010q�:��(V�\u001f��ϝ�T\u0003f9[��A+�\b����d����ܤ/������g�\u0017�<��ץ<2\u0012�c�\b�U�>\u001c����b���{�j�Md�\u0001R\u001e�Ӹ\\SI%g\u0013�+����M�ߗ�A\u001e��Hz�~\u0017�(\u0013�\u0018̅�\f�\u001eF��#\\��\u001b�)֋Q�%U$�a�\u0012T]hH�O\u000b��\u000bo��(���-M�\u0004\u000f��\u0017+�3\n?N=t�\bp���o\u00146����F\u0014\u001d��P'�(���\\�L�=T�\u0016\f�\u0011���f\n\u000e�\u0006g\u000f\u0012���\u001c�n:�\u0012����K]6�)���\r^2�S��Đ�5m4\u0000c�<�bx@\u0019��n/k���\u001a\u000f\u000b\u000b=�S~���O\\�\"\u0005pi#lF��uhg�DžU�v��\u0003=��kؘ\u0010�1%�A.�\b����5��E�\u0010^e<+�st�T�J��D�XQn�CE�P\fA�X\tQ\u0019�\u0000�\u0013Q�\u000b�R��~1�IPV�;�n\u0018�~�\u0010������IH]�\u0015\u001b�HJ���Ĉ��#��D$1֨��]7\"���l�G�U�m�<\u000b�\u0016�\u0016�X�N��0\u0001�ϡd.�.��]�0\u001b�\u001b+��M��t}9u�Sɮ���'��h��\u0000p�b561ϴ�8A�ߩ�(&W\u0014x�p�i\r^��\u0007F��,�r���^\u0016�C\u0014��\u0001��\f����P\u0006Ѕ�\\7OW��\b� ����p���=r\u001d���g�͵�2<��+z>8�viy��i��Y���B��\u000e��I��p\u0011pz�&�\tu[�#�A7�\b����c\u0019\u001f`�\n�dATǯ�\n%�NZ1��?\\ҭ�\u0014E�\u0011�\t�\u0000\u0012I�՞���*,7V\u000e�{�\u0013\u0013k��\n\f��\u0002N�o\u001d\u0012\u0004\\k�Ł\u000b{\u0019� !�w�֍���Y�f\u0016kf�S���ҞK)���K>�݁�:\u001f�&Y[Bu�@\u001fO}�K6��\u0006�Z�9��\f�x��T}�|�F4>��{\u000e7\u0018:hnCcvR�h㾤�b��s\u0015}U��dj_�G��\u001d5EC\u001e����c�Çt\u001d��z�h�\u001c��rG��\b�����LI��nI�d�2��g�ҕ+�!�\u000eZh���\u0019B�P`�\";�\u0001*�\nIG1&���{\u001b^��Ft��<��L�@��3\u0004\u0002�d��4\\��*A��e%�A7�\b����d�ks\u0014\u001e��c\u0011�U�7�L���KC�\fD\fw��w��\u0013���5#�p\u0005������B)�b\ba�_\rc.�q��@��m�=�u\u0003�\u001c�}v�}\u001fQj�h��wa~6$]�����\u0004\ft;\"��\u0002D\\\r�!\u001f�A���dcY�B\"���n�Ϙ�Z�9�o�\u0005���p\u0010�'�iڦ[\\�\u0001ˤ�\u0017��\u0003c�uA�A,�\b���X�īs�\u001e߰ɾ��R\u0019�\u000e�_����m��J�T\u0002%\u000f�\u001a\bI�������\u000b�r�\u001f\f����\u0003��$'��R֥�����䌟�0zt�i$��\u0015P\u001fd�\u000b\b\u0002W\u001f��Z��\r\u0019��ȋCQ�M\u000fv���k�\u0011��CX\u0000��\u001fy��\u0003�\u00020��=��t�\u0017\u0005ZD�%�h\u001cs���U�\u0010��Q��!;�g3��\u00041�\u0007j�d�\u0005�MQ�ܝ���\u0000�\u0002c\u001e�;���YT�~'[@�1��\u0012�Uֽ(ؖ\\���\u001e�}���\u0007j^6��\u0003��]\u0002��\u0007�i\t~�^]\u001fǾ��R\u0016���u���vJ{\u000f`O�L�u�z+�z�z/1`�A,��Y\r�\b�k���\u000e\t��B��4��\u001f�e�[��@\\�\u000f���`�\u0010p�.a%`=�g\t�Ȱ��n(����)B��\u0010����|�^I�\u001f\u0006Q�ա󠮼\u0003���xw6���\u0002m\u001c�����2\u0019�\u0018\u0001!z[�\u0006�\u0012�vza�-=T��=�.�u���$�\u0011A\u0004I1�v�Տ�W\u0019֜\u0016�_+��ys\\�%7CL�S���^�����\u0007\u0000���\u0004\u001c���?���\u0000˼lUjO��6\u0005��q1kۣA\u001f�\t8��M%9�\u000f\u000f0+��\u0001\n�#E\u0015��_��\u001e�\u001c���\u0014��بpR�qv�53�Z<\n7\u000b3\u0007�d.�\u0006��-|�B�Gщ��Q\u0002%�}-'\u0007����\u0006��эy������\u0003\u001ai��E�I��\b��>Y�*x\u0007�1}惌�7�!E�\"�ukk?\u000e�a_j\u001el���܂O�L�N?� \u001b\u00066���Z�da�K�(�A\u000b�� +*\u001b3��9�k��k��\n+�1�D��4�\u000e?{�*J%\u000eϕҁ۲\u001e� 34�K\u001e\u0010:\r7�3��H���8́��\u0019\t�5��,$Aע��^Ry�\u0016��\u0019�K�)��5��Fg\n�&�$�\u0006�Y\\\\���A3�\tL���dG�:\u001f8��\f��P�O��t��u_�v?�5�=��a�;m�\u0018�D��;t����H\t\u0011P�X`\b\u0018&\\:\u0015��QX�����7B߬ċee%���Ԭ�O����8(�4;��St�x\u00169E��\u0004����������8\u0015\r���\u0000\u0015k\u0012�\u00185�\u0016d�6\u0014'д���-k\u0003�,�\t�A�\r�\u0013T\u001c���\f\u0010lh�\u0007b�\u000ba��@���ص�.�\u0007��,�7�7�Ԭ\tQ�e\u0018ۏ(8qڽuz��\u001f�DL%r���\\\u001dI�\u0005�6ƫ�4a�:�I\u0006��1R��\u001c�7��U��\u0003Aa��듏5���g�,��Q 눣����o��gO'&DՓ�]�\bjS`��Z)'�A@�\t`���b*\"L�\u001eIhN\u0006Ly����yQ�\u0015\b`�ע͉\u001bL�\n\u0014HV���9�\u0002\rd��\u001b�G�\u001c=\u000e�dOjv?\"?'�t��\u0017���K�K�c�\u0006��Z�ك�\u001d��$[��u�P�\u0013��O\u001b��H��¿�r+\u0000��\u0012��R���J�)�r\"�J}�\u001a&�I�0Jd��F\u0017��8�=�y�S\u001b���__j�2�d'�����E�W@e���%��w�t�K\u001d�h�u=?Q�̉�\u001c`�������F�)���w\ns�,\u001e�l�����\u001aB�zWR\u0011��\u0004\u0006'����wdU�c�ƏL�\u000e\u001fj�^p2�-.29օ7�5�m�UFpd\\�\u001fN�� J���]z+a�\u001d��\u001a�6\u000e\u0019�\u00136--\\Z%%�AJ�\tt���b��ik��\u0000\u0000�A{\u0007�\u0005\u000f����Ma�Y�_[����\u0018D\u0019|{\u0017\u001f�q~[Z����ξ�\u0015\nM�\u001c�v�́M�`��ޘ���$�Ir�\u0015�B���Y��\r�8��\u0018\u001aN����7����ܲ=�\u0016�1\u001b��S(+�\rGm�X3�f�5n�\ni�\n���#\u0003\u0013\u0000i�\u001a�\u000b.�(��@��t\u0000�yUL+��\u001b\b�\u000bo\u001d\u0018mg��r�\u0001r��|;6\u001b�Q\u0014\u0012�d\u0005-��;�b�ްI��?�°^��@\b=�9�\u0007' \u001bO拨�X\u0005��8,f�W��\u000b_\u0017V\rE ��q\u0001%����s����\u001d\u001ca��\\��,ז1d��M�\b~U��I�\u000bC�t����IhD�M�f!H����v-\n��i\u0014�\"Vr:i7�m#�AY�\t����&��@��cQ�/\u000e�S\n�Z�\u0005���3��D/� � \u001a�h�ףІ�v\f\u000b(�� w�\u000b�j��z⡱\u001f\u0012)\u0000��E\r/n�̉�X1݌&N�d ŗ��hpҥ}�\r\u0007�V^\u0012@��Mxm��(��P����$��\u001e�\f�\u0014�\"���\u0001[�C�`*��*V3\u001d���\u001fF\u000e�فQAhT��~��\t\u000e�g\u000b�Y������ү4O�Q�'�q��������\u0017z�=�NL�z�mC1���-�\\[��V�\u0000\u0005qnG�Z�\u0002~��(�6wc~\u001d�\u000f�)�0�\u001b\u001d̰Ŵ�O�o���.\u001d�������ś�:�PZ���{�\u0013\u0003��祤4)��Ȭ\u001bۣ�ƞ��N���5\u0011O�w�3�\u0002[�PbM�����Z�XQx�8}7c胓\u001c���O�m�y��\u0006(��A5�\n\u0000��L��x\u0005��ƧD���\u0018\u0001|���¢M%\u001co�ڹU��<�Jt�`E��9�R�����㕪WK\rי�\f,<8\u0014����c \nU�u��ɨ��#\u0013��\u0010���&J\u0015�\u0019P/D�|�����\\u��%��\u0013\u001b\u001e�i@b�r�QwZi\u0004\u001e���@W�^��I[p�q�U���Z%|�6�糃|Z�'���]��84\u0018A7�-��I��k\u0003�y�%�Oj4F�䌴��\u001d�zmp\u0019�o\u0006������\u001d�~\u0013�\u0000/�OO�ħQi��r\u0010M�n�}��4W1�����Y\u0003\u000e?vR��4)ѻ&n\u000b-`ѳ�\u0001\u0012&�Y�ҁ\u0010;�C��+��\u0018Ĺ�\u0012���J��J1ˋ6\u0011���A<�\n\u0014��L�\u001fO��3�����b�i�f�GpjJ�]}M���\u001d\u0002B\nR���yDS������[ ϲC3���?*`�`H�Q��c�\u000e]��\u0007��\u000b8�\u0002�\"a&�\u000e5q:�\u001fw��X���?��\u000f�\u001b\u001c��D�.�q�����Ka��~�Ջ\u001dL\u0005a\u0013\u0003\u000e�\n�nD%=�\u000e��A�\u0018d~\u0011��`�\u0001IY�f\u0013\t�o\u000e\u0001���jҢA˝x3\u0016� \u00052e�\u0011�Vb�;\u0015�N�`z$!eـ���4\u001e�����?�`�1:sA�5���$�lE�\\;�\u0007/�У���K��\u0014\u0000��I��C�����c�K�N��sԠG������S�4�F�\u0012�=�~_�F�p��y�\u001c��\u001b\u0004����俞f���A:�\n(��MW2�U\ts��ԩS��=\u001b\ro�7/j)0��C��k��A�Q\u0013&w�\u0012��6�f*Xn\u0013Z�t�t�6�\u0011�Ks)\u0012��Y-�\u0019�Fh��\u0007\rN��>\u000b6\\���\u0001\r]���}\u001b���/��h5Z%�\u0001\u000e.�\u001a\u0005p\u0005UԢCJ�\u0012��g�xN�\u0015����wn�]b�8�\bMy��\u0013.\u0005�\u000b(96l��d���2\u0004�o\u0010��U&���������\u001b���ݿn�ŦDR��t�;ϕL\u00014wn��j�=��\u001f\u0017������\u0015�ّڒZ���#���iX5��\u0014��2�\"��l����A*c�����v�.�\n��\u0016R\u00127���\u0001�V9K�\u0016\u00077U\u0018\u0014����)\u0010�\u0005���%B��\u0017$�F>A�:�m�\u000b�֪V����4漓���P*ɫ�,�>5kg�:����\u00065>�>�]��u߾�gd�\u0007f�?��p�tJ��S$���e9�f]8������o��f�7G��axC��e��,���+�3&�\u001cA�\u000ex�؟���\u0005���J��\u0016q�\u001f�+SQ@L\"Z�6��T�\u001b��\u000f�j���g6��\t�H�\u0015�RU8N��Q`��T�E�+\u001bd�N�Y\f�٭I���9�(�M����3J�->��~3�ku��&!&.;Π����>���3\u000b�b<�����(ɦ�$td\u0001T�C\u001f˱��k�l|ҥ�И�+��Я#�76g�E6�/��:A�\u001ar��\u001b�w�I�s\u0001%�$�\u0019�D/H��'Yy�0���\bl=�\f�����.���9נ.4ѩ\t�\br5�\u0015�ȩj5\u000f��G��0\u0011B\u0016�mz\rF\rH%\u0019�!3�\u0006�\u000f�\u001b!�F�O�6+�T�(\u0012�%Ͻ��;RK�X��:���ƀ>\t�H&q2\fs��;�\u0013�Z��)I�,��k�?\u0014��HF���5�P���\u001a\u001dAEc0.M­�\na�@X-r,�b[�o� %�W\u0004��~�\u0001�cn\u0002\u0001=0&�>�'�K�R:�gM�\u0003�^FE\u0016X�0�D�\u0005����Ԅ?َ�1�9JE?�Yh`\u001d���y�\u000e@��!1\u0017Q\u001aH�AP�\n���ۿ�F�e�.\b]�ْ۶�\u000f�߈$�ܜ���aU�`���JOWȝ܋�Կw�'O�^\f��ڞ�e��{m�(�d��f\u0019��&�T�S\u0002j2��0�g�f\\�fZ��$�o��\tz\t7w�k-A�\u001d\u0006OM��\u0003�kM\u001d�\\�i���]�\"�i&?�Y�\u001a�nT��v������!�\u0010M\u0011Q�\u0006�u#'���=�4��2��U��񒾷\u000b3w�/O���D��s\u0010�BGxg���\u0002\u000fr�EE�\\ڋ3������]\u0000*ϛ�#b�/U�+H\u0007���[0��:m��S�\u0017��\u0014�7E�w@�}_�\u0002؋֞�\u001b�%]\u0013k2a�误&��V\u001cP�?X�of�]�\rD9p�\u000e��۽�v^�c���8Ꮀ�h�*~�G�AQ�\n���۹kƶ�;\u0006�=\u0005AvN�^�M�r�16�[�\u000ex���\u00131��G8̸��Rť5��㾀#/�_�!z�\u001c\u0010�/m\u000b+�\u001f�#b��j?�L�D\u0010��\u000b�s\u0002\u00190\u000e�Zw�|KNJ�i'-W>}K\u0016���&\u0001�9�9�dS.��Մ���\u000b��\u000e\u0000��\u0000��bX�3�5%�L]\u0013��d\u0012����m�\u001dK�h\tˍ���/�&\u001f)Q�]%jץ\u001bR�J_\\\n�-��B/����\u0012\u0018\u001d��\u0000�n��\u001a�d��ܱ^�\u001c����\u001c�\u001e�GQ\n��\u0003�\u0014�W\u0011��u�2:��\f$WZ�.\u0010|�G�AŁ\nȀ���sڲ7�\ru�6N���\u0006i�O\u001a�Zrm8?��\u0000I��E��T�w�\u001c-G\u000f���y�V��B\r�d���\t��@�����rv�\u0017\u001d��H�'���+�Nn�e����T\u0012E�Ƨ3��@�I\bS�����_��,�\u001cb���\u0005�8���(d��\u001c�����wa0\u0007�B̘\u001eR\t�r\u000e/���\u001bO���P�K�\u0014�X�\u0014�~Go\u0010�\"���$R�\u0010�G@��\u00019�V�~��a�B+�T��šQO�~x\u0002X�D�/�bM�U\t\n�Ȁ健��H�Z����J��6�ф\u0013�R8jр�\f��h��u�\"�\u0018�0V�IQ�4������\t���&�\u0011Ƽcν��I:ǻ[k�\u000f9gGll��=�h��\u000b�A��I�\u0004�\u0001$om���'��=\u0015�\u000eg�[��e������~�%7':{*��<��'�\u001f�+8%XgvrӁ\u0019��\"R��\u0007���zY�$h���x��պx\t� *��q\t��Ȇ�Ae�~�6�h�7�$�\u0017�\u001b6\u0000�(�&©�F�A*�\n܀�L�]�%Oi����\u0012f\t$v���\u0015u�\u001eUR��Tki4\u0003t�\trb�sH\u0000�Dg�x'�f+~�\u0016N��ש�\f���\t��O�肾{e�\u0013'��Y��.\u0001:� ��);,�2`i��\u00159m\u0003A��#\u0012^b���h�\u00079].g¨Afg\u001a\u0005l��\u0012A�mR9k�O��dV�q\"I/]^��>V\b%�F�F��\u001f<`\r�\\��V�4O|撬�\u0017N0�\u0014�o�;|�/h�VT�n�=����6wA\u001bzvY\rX\u00019y�¢������\u0017�\u00034�]���\u0002��/�\u001f\u001b�\u001a%�_��c\u0015{�\u0001�dW*J���=\u001aI0Rq��z�m~S��)\u001bK&T���s\u0006��-�A$�\n���X�\u0011љR�\u000b۟J\bD�Z�\u0005�޽�TX�\u001dǘQq@��~�\u001cY��P�\u0012ڌ0��n�\u0010�e+CZ\\�磻bs�p2�I�V��?�ᰄ�h�\n�#h[\u0012=&���X(P5�MT+KǸ]=\u0010����u*k������Ư\u000b�?߬�\nKG[��\u001e��F�㙺�*)\u0015�\u0016�f\u0015�\u0000�\u001fcs%\u0012#-C�,��W$\u000b�\u0014�҂\rK\u0016u`\u0007�F�\u0006�K��6\r\nu�O\u0015�O�Ӫ䖄�ƕ`��Ԭ���j��j󅦾ܹٚ�bT\u0003�tUD7�tz@�@��\u0001o'�Ƽ�n��)2\u001f�Ǘ\b�n��הg�v�#r?\u0007\u0001�\u0010Rx'ݬ��7\td�A8�\u000b\u0004��X�o\u0006#\u001a%�U�k\u0000%'��\u001b\b\"X�\tx^R>��F�r�ԑ����\u0017V�U@\u0011H\u001d��������\u000f\"�\u0010�Lڭ�L�!��\u0014�\\�CL�C\u0012iI�=f�XK���)��i��5e��p(0\u001b�\nՊ���_�jѓh���n}��G�\\U���\u0014�\u000f�3�N�\u0006���A����#�%\u000722�����T�9J��\u0016�&�\\k�\u00124\u0007�\\J��r��nT��̠\u0010�h�B��0�\u001e���j\u000eS�.c.u�\u0019:6Ky�^\u001b�\u0001�}0���C�܃yy����~\u000eCAC�#�ú�X\u000ebH{�\u001c�b�\u0006\t����^�E�iG�HMapws�f\u00058fX�\\r�\u001b�s��{����O��ɣA*�\u000b\u0018��L����R��l\u001e��̰\u0002��\u0015��\u0005.�݁�)���������5��\u0012��y��l�c`\u0002]g,�Y\u001c\u000b\u0012ac��\u0006\u0015ĺ�M��솨g-ZٍF��rS5.\u0000\"~3��\u001d�;����2\n�c�2�����-\u0004�s�\u0001)cv#k��\u0000\u0015N0+�\u0019g�R\u0004�.�W�ҠK��\u0016(ˍ\u0019k��D�[�:���u�8c�k}{��;W9/�\u0019�>�?8�\u0007J0\u0013��w�o~��^�s��\u0007�\u0005��{��,V(\u000e#��}ʄ&\\\nMM��S�\u0014틀\u0015�\u0010��\u001dl��^�;��\t�\f]�rBbl��v��rJc�*i�*�\u0014\f\u0001�e\u0005�A�Jj\"2��\u0010\u001e�\"��$��A\u001d�\u000b,��L�uke=\u001a\u0015,���;��Ҡ�2]E�n�j�\u001d\u0000{�IO/\u0012j}\"\u0002he\bld\u0018�\u0019u��$C\u0006m\u001d���\u000f,\u001f_ѹ��F�1����ۉE�:\u0013D?�Y�a�\u0013\u0006�� \u0007_\f\u000e�\u0012{1�\u0005e2%��8=:�:F�\u000fb��P/k�\u0016;��y\"_�X)8n.��֭2\u0006��`�4�N�p6�P�vH�!;���W!��p���?,���\u0007��4<\u001a/;���귵cl�֮�\u000b�^��4�x�\u0006�%�Pzߏ3�w��\u0002�G���ȕ[�y��*�m��\u0002�9�*�\fr��Ы(�!\u0015h��f�U�\u0001:�7�Y6��#\u0013=L�����ܣA$�\u000b@���m��܁��E��;�R��y\u0011z���k\u0013��{k���z�\u0011�Ï��6u,d\u0019^�X\u0007�\u0000��N����2�\u0017֫�'ak��\n�:Ւk�Ĉ�t.}P�x}L�\u000ew�\"��3�.\\Zn����v��{L�J�\u0016�mXe�\u001c5\u0012�Y���ԋ�\u0007�-�yk\u000e\u0018��/�׉\u000e(\u0007��/\u0005\u0001( 떟��\u0004�2;�*p�!���\r\u0007N��L\u000es��U��_�:\u0003y�n\u0007Lj9:-p�\rˬ�\u0000�9�bn�!7�>�\u00029�\u0013��\u0006�d^K\u0010\u001a_Ͱ^�k�5x#�N�wW\u000f��r&'\u000b�b�Q�\u0018�\\\u0012������\u000f���Fԥ�f˙Ni�p�\u0000���%�A\"�\u000bT��L��t�[)����u��KQ��߄|$��\u001b��SMiZ\u001a����d��7D��\"�w�'���́E\u0001z�Pym ��1\u001bcU1��ë�\u001bG��+�;��tMS�c\u0017�����bB��B��6�\nK4�抮 ٨�W�p,���Pm�a,Z�~r��,j����9\u0002ů�w\u0015H�Is�\u0007�Χ�\u0005�=\u000e�\u0005w������qTI\u000b��\u0011{e71\u001c$�\u001c�a\u001a�R����P\u001b��ӳ�Ouѡ|Dy���\u0017Δ\u0018dWb�ߋF�\tbS�!g��\u001bL+㧌��0_�\u000bn�?\u001f�ds���+���\u0006��\\�>�f\u0004p\u0019T�\\��|�r�_�}��A\u001e�\u000bh���s#�T<��e���L�Se\u001e\u0007�,�U\u0018�[;��\n\u0012�C#�����!�)��wQ��#�\u0003/j5>����.�\u0002ޜ\u001a�o%}��,\u0002EP��j�o��}�l����7\bݰ(W�vl�rg�z�\u0006��o�\b���l�������c!9\u0001>��7��׆�R\t���mz\u001ewXj\u0005�\u0003(�i2W���\u0016]z\b>\\�B\u00167\u000b5ʋx�O�����lQ�}��[=,�>�o.�r�n(�o\u0017rOLUD?(~0\u001c�\u0017�ui�O��\u0014�%���S�\r��Z��.��<�>㤘��?��?�S��Y\\ᖚJ\u001d���\u000eX������vԭ!�A!�\u000b|���d�L�x��(\u0010L��7C��\u001b��;��5\u001b��9\u0014��J.\u0002\u0014E\u0003\u0016�����k5��\u0014��~�|�����\u0004ܹ�4�x}��J�7H8�L�/����pP\r6F�L0�m ��Q\u000e��#��t:kE&���!M�j�\u001f\u000f\u0014��y:\u0006Y\u00009��\u00056���h���]i\u000e�\u001b�\u001d��\u0003\u0012��#\u000eH�߮�9^\u0005�'�\u0018h�w�6Yae��QN�� �,�F�C'\u001c�\t\u0016���g�I��@\"\r����\u0015b�⭥f�-\u000b?�����.ʙ�D>\u0013����J�3*\u001fJL\u001b\u0018��ڮ\u0004oLZ9$��b���Ua�.\u0016�\"`���� �d%94���\u001e�!�A\"�\u000b���L㱭)��)�l-���\fT��T\u0003�(:�Y����u��x�\u0004x\u0015�n�s�;تj�a�k�_��'��;{������.��-�W�TO}Z�-\t��s�\u0006'��\u000f��]����G\u0006I>\u0001�\u0005\tF��\n(\u001fSm��-%X�Z��\u001e�ITYu:4F�{���\b\u0001����tX�\u000e �A���m`‚�\u000e�X-D\u001bJ�A/�\u000b���L�\u000e�\u0000s�%��3u\u00142N�\b�\u001a��\u0016e�.!��\u0013\b8��d�d`��P\u001eЊ뛲 \u0012E4��u�\u000e1BQb�\u000f<���g�\u0007 ^��\u001a��K�#I��>�@30����T��!��nLS��a�,c8�\u0001��1��Z���f��\u0005P^��r}4\u000e�V��%Rp�@\u0002���w���w.2�R\u0003\u0012P���\f�/f�n�h���ו��x���\b�\u0011�}�\u0006Ԉ\u0011���0�p�\u0005\u000eG�a\u0002\u000e�ǸcX�8\u0019\u0003�t ��:!��\u001a��|9�\u0001b�FWB!vE\u001f��^�e���+����>w�X{4�\u001e6YC3Uw(5�rl=\u0012ڪg\n�}�ĭ8\u0002\b��l�\u0002��0�\u0017\u0003�4�\u000e�\u0015䪷P��\u0007\b�p�\u0010ާT���mw�2�I^Rt�\u001f�P�XB?=9���\n\u0002gY�����\r2�<�\u0017\u0014S�qJ� *\u0002�I�2A�&��8\u0016Q񽑹!�ړ��s�T�f�\t�E#�ż��\u000b9>R�fm�\r\u000f�K��lrOy�G�;@(��\"\u00172��\u0019F��(��8\u001e:�?LQlG7/�A2�\u000b���۸\u000eB�*7�y��nb����\u000e04�k\u0017��\u0019$J�\u001c�<����\u001cGGA\u001b�ڀ���\u000e\u0015Υ�\f�l\\�\u001byX5�l\u0017��c�wK��Ƣ�I��\u0007C+\\IG�G�3\u001f4,�\u001d��\u0000bS\u001a��^8�Ѧ\u000f�J�\u0017���\u0004�Z�\u0014��}�\u0005\u0019��\u001c�'\"C}\u0019��\u001c�H@\u0006*SH��xۏ�\u0007.\u000b�r��\u001ai�$!�=�\u0014�?�J\u0011�e�G���{w|\\WY�Ͼo�Ԇ��w�,L��Dv��8k�\u0000ΚQ�uHmE��!�):�=��xP�\r�h3�Re1��iw��\u001c�\n\u0007&�I��\u0002W�N�8w\u0013��\u001e?�>����\u001c@�d'\u0006�@j\\:͠�\u0018���\u001d�\u0011*G�A*�\u000b��L��VEK����Ox�<\u000f������\u00105�y\u0017��!u�3q\u00158�\u0011�/)kh�u��|\u0000r�\u0014\rV��\u0003�J^Y��\u001fZ\u001d:ۏJ��UמU�\u0004�?u/o\u0001\u000f�oU-@\u001d\f���E6��8y�~�aƳ}::�+z#J��oo�L8f�B\u001b�0+�n;��\"/�a���-\u0002l�)ʨ%\u0014Of3�\u0000��F\u0004)^\u0001�KO��k�Q\u0015A�eߜ����\b�*���jd�A?�\f\b��L�D��\u0011��G�W��oI�\u0014�Ōe$K7�`\nC�qF7\u0005�+`�\u0018Rqp~�3�\r\f�\fG��^>����Jx$�\u001b'\u0000��Yz�5\u0004�)ص����A�\u001d���S���]]�J�k����\u0012�l�3�:-��I�6(��?�U�:�\u001db\u000bf�$��%\u0016\u0001�bFZ�I�h\u0003% �RK<�E�\u001d2J{�\u0001�51EbI��\u0007Ӫ:��o�tK�[�zHG @��\u0010R+*\u0007: �\u000e\u0019VW�R���f�Az��?���j~y)����\u000e�DX4�\u0004�\u001d7��T���\u0018���Tn;b���0��ek\u000eT�QQy>��(\u0018\u0006vtB\u0017:\u000f�_H��K��[�\u0014���w6\u0012ъܵ\u0016Y?@�\f\u0007��8�\u001c\u0002s\u0019e�A1�\f\u001c��L��a����\u000f�\u001a\u000e��\t\u0007Tbۼ\u001f�^ngȋ\u0019=SGز��\u0000� p�\"/s�vG��e\u001b��v)z�{��Fe���\u0003��j:��\fx�T\u0019 ~A�j�X(ͽ\b� &gjž��MA/�*{�d~\u001a0��\r\u001a����TYo`�\u0014\u0002l�\u0017�?��n��\u0004\r�3لT�!\u001eiQU>�\"�+�D\u0005�D\u0007��8\u000b�djE�\u0007�sVx\u0001ns2K#P��>\u0013&ZZˍA�\u00033\u0011\u001e}�/[ZIx�M��\t|fR�e�X�\f�iѤ\\���\u001cK6?á5n��'\u0014oail\u0016C8��:�<�ސ�#��ts`}�I��\u0015-ti��ş��͊�\u001cï�Og3�S���H)F�\u000e�B�#�A/�\f0��L��\u001ar�P��\\3M\u001a��3Yw�\u001e�vu}��Iw�\u0016��E\u0004\u00034�W�1\u000e@�\u0017ګ���x��\u0005>zn�b*�)��M]'\u000b\u001b*dl��CL�&*��+\b1�\u0017���7w�Um;\"g\u001c����\u0016<�s\u001a�$--�뛆\u0010`�?[�]�\u0005�+�#Ar��)���\u0010a����W�ɛ�QP\u0011��'����;\u0010\\�\u001b\u001e'�{:nE�a\n�t�6\u0015R�\u0005x7��⯇C0�n�����@Me��Z���'��\u0005�a!z��3\\S�\r\u0003խ�ΉpJ���E\u001fQ����\u0015\u000f�\u0004���1�\u000f�Nm��\u0010�4\f\u0013���^\u001e�����R�9��J3>*�w��Gy-'���q��,�v�J�A.�\fD��L�8��\u0004o����\f� 9_l\u0016{�?0\u001f�xĦo��&S+��V��/\u0014\\\u0003`0�(>L\u0002��(Rѕ�ȺC\\�Z6�d���nҨ�_\u0019nF�\u0007�j�H@��֛��j�]�f9��]��+���[�2��\u0007�t\by\u000bC����d7I�-�\fA�nn7ԩ_\u000b��j3Ù��\u001dE��R�\n�/���N�\u0007+a_б��f 4ź�\u001fY�Dj\u001a�0\f�y��g\u001d[�m�N-�CʓAN��D\u000f�t����6�y乊H��G��MN\u001d�E�Ą\u000b{���V�S�LH'B\\�@z�^��\u0017w��@���hG�i�i�Rg6�\u000f���n���j�5|�VYD�O������Az�\fX���\u0013�#]/�I^#��,����_�t\"�hB�\u0014��]'���Z\"�ح�\u0016V��\u001d-m����q�4i�g��\u001d���8�My�]\u0014\u0010�����͉O\u000b\u0006g��8���\u000f�W��A���0\u000b\u0012�!���އ\u001b0�\u001dJ���\u0016\u0000t�?�\u001f*qf�g�T\u0004��?�cZ\u001f���+�����%�I�N�BX�?Z@�\u0014��\u0000���v9�p�N鄷\u0003\u0011(p\u0015��f���S17h�!�D\"�S!�o��c�� �8(j��+���C���w�j�1�j\u0018\b�Z���?\u000bUi�,���ό�\u0012�A����Вk������\u0016��=\u0007?�d�lḛP\n���\b�[��b�K(٦\u0018�Ґ'6����1D�*B�7B�Ħ�����Y�k~�\u0018�\t��\u0017���&q�'��\u0019�:�;\u0003y�-�S��5\u0011� v���\u0002ȼ�\u0017��vd�\u001fUU =\u000bB}�:�U煐.��R�c�\u000f;cN����+卯�b�.]�\"1j�&B3S\u000b\u0017���Y�C\u000e#�L�Y�[�\"\u001bxFX�T����T�U��ݟ�����F[x��\"uP¾�\n@�0p��n]\u001cEjG';�t\u0013�A5�\f���M$�t��Pp�;h&��\u0002k�?{�N�/\t�\u0012���\u001bV9 ��\u0016k���\u0001�~B�x�rAO�\u0014�)�Y��k�C�P\u001a\f\u0019�{\u0005�n�\u0006\"鱧�V�8;Y�jE�j7�A�\u0003\u001dv�N$Ç�wf�QY�t�Z���\u001d�U�9\u000b���-���/�^!���=(�z��rt��D{�c����*@B\u0011\u0012\u001bq\u0003�D꧛\u0018����4\u0002E�diɈ�Ð��W��r�0�P�~��tW0\u0002\u0002m\t��\u0003�b@d��'�қ\u0003�C~�<��n\u000bʙ0�-�F\rb��w��A� �\\H\u0000���\u0012��>Ãe\u001d�I��\u001f����t��swܧ�[�\r�x\u000f\u00035<�J�Ԩ���2m�Tt�\u0001\u0018�js�p\"Ȝ\u0001\u0004��4���l�L�\u001ai�pw� ��Yѯ0W\t�\u00170�%�VI���aw����޲�9��\u001a\u001eդ�K9^f��\f=�\u001e����tSq\\0��w�5�Z����\u0014\u0003�&���r�\u001fc�7�wjM�\u0012�w\u0018�Lem�R�n.t�������C\u0012\u0014q�A�3�\u0018�奰 Ͳ\u0005ӯ�\u001a����ت�1�V��\u0000��\u001as�%[;��\r�ֆ\u00058O\f`P���V���$\"<Ȗ��ͫ;�=\u0012 �\u0015��I��\u000b\u001e(p𫍴>\b�d�Ѕp\r?\u0004n���\u000e\u0004J\u001c\u0001+(��%��\u001dC��|d@��W�A8�\f���.��.�\u0016 +\u0014��A\u0006\u0003]GG\u0004����ز\u0016��tB��t���&v1�e�d�\u0018�����]��B��e������@������B�\u0000�\u0000\u001c\u000f9�/�1\u0005�1�|�\u000bP�ƌn�\u0001A�w\u0014�PH�J����\u001a2>�~�2\u00069>�^\u0013\u0001\u001f�6\\~�\\�9�(�P��wB/���O{7o�\u0007��g\u0007?Y��]J��Q|��tM!PG\u001fB��6���\u0007\u0010�@�\u0004y\u001d�>��u&p�R�,��,�^P[)���=�\u001b\n��*O�bJ�\\B\\�X\u001d��L&�K���ɠ'�|n���[u}qVP!��6\u0019�N\u000f�P��\n�[\"��p��Q\u0019w�\u0013�4�ϯE�\u001a�J�����m���g\u0005���ۣAӁ\fЀ��ڵ_\u00003��N\u0010R��@��w�uN��\u0002/�ks��JV!�ۧR��&�X\u001b��p�\u000f\")����G;]����Z\u0000-\u000e�*A\f\u001a���\u001bF\u0011�,W��$�D�8T�v��)\u001a��(����)\u000bE�d7 ��Z�S,K\u0019��&V\u0001_\u001d>�d]��p\t����@�u���E\u0001Y[ҲM��<|]�7d�?\u0017�}���R�焌����sk�\u0003*\u0005oN�u9���+��\u0011r�@\b�Px���\u0016Pa?\rc[�\n\u00054�#ӯ<��\u000e���\u0007 �վI\u0003�\u0010��J1k\\eA9Y�\u0015����\u0012kpM<.c���?P$SO9�g��A\"�\f��X���r�F���Q�Q�!�`�F���\u0002�J�Z���潊G�Å$Gʀ#~����\u0016�i��ʃs1ԻU\u0016qjs(@�%.�\u0006N2��SY�95�v�\u0003��LE\u0016�\u000eE��\u000fH!\u001c+\u0018�'e�\u0013\u0015C\u000b����D=�8�l�z=\rF7\u000bz��(چ\u0018�����'�wc���q&0�+�/b\"�H'oܥ�[��b��KƁ�\u0016u&\"\u0016��Oy����E�q�v'I�Ox\n��;c\t3\u001f��Z\u0017қ\u0005�4afP��u��v���`���k_?D��'{��>�`\b�%��8���蜨\u000f������\u0015k�˝hփ��d/�\u0016��S�쁎#ƪ\u0005�\u0001;\u0016\u001c����\"��H\u001c�{\u0012�+�l3{\u0000�����\u001e����!�����\u0010Wf�x���\u0014\u0003\u0013��]_�����N;\u0004�\u000f�\u0019t�\rm���J���iR�(\u001c,EB����\u0001�\u0000\u0010>�GI���\"\u00125�Y��\u0003啎��%Y�$s\tD/��ٴm�/��W\u00117\u001f_��A#�\r ��M4\rkF-�Ĉ\u001b�q���*�[\u000eD���b@l�e�7�JQB8p<��\u001eG\u0016��}2u\\k\u0014�ԧ�\r\u0017�����Z�ل��Pu�\u000f\u000b��|�q���m�&�4,_\"��\u000f���)��T��[�Ȩ놘|P5���>�&��0^��\u0016�&�`\u000b�\u001bw_�pT�)�,�┰Tэ��\u0001�o-_~�_�\tm_6h���\u0006ywj5��ZR7\u001c�?�,�\u0015>:��ఛ��`3��\u0017���q\u0015\r�\f�h�\u0016\"���?8�!�_K�ǩ�\u0002�ƶ���yk�f8�F��G�.\u0004�H8��\u00178�\u0011��G���Q\u001a!�v'�\u0012x�T�\u001d&�՗���\n�\u000fZ�A$�\r4��Mzb��;�)��pq\u0015\u00012vI線\u0018�X[��;��rl\u0012�݇\u0010(�2��@\f����g�V蕨b.�O\t�\"�i��w��ü����4��C��]ij�i[ڢE\u0018\u0010w\u000f\u0000r�˽Tq=v���\u0006M��n�u�d��t���K�n��Z�?~�5�\u000eY�\u0014�j��\u0007�)E���=ѱw����6�\u0007}*��)�\b��0f�O<��\u0000�|�4� �*%��+\u001e�\t\u0005�\u0015\u0016\"�0X���D�B\u0004�\n��\\���ɘ4��\u0007�\u0011�\u0019>�j\u000e\u001aD���\u0005��P��S\u0012ʯH��߭�\u0015�٤�\u001d\u0017\u0012�3_�\u001d���J��A���˭�%#���NҹQ\u0004�A5�\rH��LƷ+%���\u0019�/����\u0004�2L�\u001a'F�Z^eF�~�c�-2\t�(\u0017�\\\u0019Dj}'���I��óЁ\u0015�\u0006`_0Q�Ƈ�����O(\u001f�\t\u001bQ\u0001\u0014����\u0016��\u001a�L��SX�\u0014_\\2�\u0017���y��Td�d����\b>�=/� ��G�2\u001d��a�Š\u0015\u001e�Ӗ���8�\u0001\u0006C&\u001e����b@Ss���t'���|��3�>\u0018ԞI�\"Z\u0016R�m�\u001a��ޞZ`\b���`�8�S�\u0000h\u0013L�C�j\u0014䋊���\u0015Ǽ�0\u001f�k�5��\r�\u0007��j\u000f��-\u0005�9O�lc����sl䐢%z��:i5�]\u001c�\u0019p�y�w��v�0/���)O\u0010P\nl\u0006�]\\bD�\u0001\u000b�c�[�A6�\r\\��L��\u0006}�G�`�#�ߵ�b��\u0017�\u0003���\u000bF�{i[\\��-�\t0�~̳�?����\u001b�l�ik�\u000ejw�s�h\u001a����o~Ԝ9\u0016�y�(ML\u001d:Ar��ʎ)��M�Ni��\u0000�徦�\u0017\u0018��Fn(6��f;G�Gm�v_q �3���佶*�}�%ѷ�ѪV\u0002J����2l��_�\u0005U\u0017�\u001fI��>�/2o�H��6=zZ\\�U�R�Bdy��$\r����X\ny\u001cꊝڰ��j��]�O\u0013�쵵����̶�@�J$\u001c6!^꜇\u0017ubw��\u0017\u001a�ij���\t\u0001�0��a5��B�\u0016�\u0002\u0012]��%ˆ\u0012�h������\u0017�tb<3�$g\u0014Hw�r\u000b�Z�I�n�\u0014�[��A1�\rp��L�g\t\b)r�\r \bp\u0001l^�/\r��+\u001f\u0015���Q�tӥ�ij\u0019X\u001b\u0001�]����1��k\u001a&��\u0010\u0000�����\u001bQ�Ջ\u0005N.E2gX�y(�����{\u0012ԩ\u0004��\t����W\u0015@�lMY\u0002Y��G��/��:�5Ls%#\u0016Y\u0007&�\u0000\u0013_�\u0003�^\u000e�����-/��7F4�[݇���H�V��\u001c�>�@�%�*��\u0003JB�����s�V�{�s�´1\u0000�u\u001f��0�N�1�p$��T}z�~�A�ʸ\u001e�x\rjp���4Gz��R�wUq^̥�K�3w�}b���b�o�K����\r�����i\u0003T�ٳ�qM �E�U�����\u0001��\u0004�y+b�e8���M�8��m�A6�\r����\u0013�3dg�!�ev$��4\u001b���\u0018���\u000b��5wG����\u0011��:��\u000ba'��\u0003�y��4\u0017(�\u0013�oO=��۾������W4-�E�\u001c+3\u0018\u001d�fnXb\u001b�s\u0012†���{\u001ey�Jhٺ=*[\u0007\u0005�n\u000e�\u0010(r@d�x\u0012\u0014�������Q�<6�.+\f�\u0013e�y褕��ݥg���^�U7i\u0002Ϩ �\u0015m-��2I�1��swҿt�8\u001f\u0000�_\u001c�\u0011\u0013ϙ�8�-��\\)·�\u000f����i�˲��A�\u0001qx���q��j\u0017\u001f��ob�[p�^��|�)����ޗ>�\bZU�q,�$ٰ��\u000f�,W�*\u0019�,\u0011�G��\u00134�����5�\u001f�R+�&;պ�2L�\u0019e�f��d�'\u0004-�!�q�m|�\\���\f�\u0017�d^��\u001dJ[�}�^�v\u0019l�Bm�|)�IyM�q�l\u0001\u001c�\u0003��M��8�FH���iW�H?\u0006�\u00069gjI�sG�1�ƃͫ�:99\u000b�\u0012o.��l#\"@�pz�w�5\"�14�\u000fk�;_\\�����B��\u001b#<�\u0011<6��fT\u0011�Tҋ\b���b\b�\u0018��z\u0006�j��\u0011��~5=(;E69\u0017�G��~iV#]��!5�E@<�)��!�\u001e�>�+��.\u001b4�Pn\u001d�;U�;UmN��\u0019���&!���$�#�AL�\r����!ñs\u001c7\u000eK[4_�:�N�\u001ft�hךӜ^9���\ns=��]`�B>�/�|{��\u001c��*���;�\u001dϱ�\u000e�(� r��\rﭴ�e�|.C+�,��\u0007\u001dp�k?ei�1Y�rz�\bR��j\u0004b%��\t�9�>�e��I�@�x\u0006�!�y���R�z.�]z\"x�I8]�t�z�i�u�יA�����K�氚( �0a�.\u0017ۅ{Dz�N��e\u0017e�k�G5����\u000b�>S�\u000f��Lda\u0010Y@ym J^�\u001a�귟�ub�c�\u000eU+<�Uo2[\f��{95O\u001e\u0010�:B\r���O[ŦEŸHť��rp��q\u0016��߹;i�&\u0001�������\u0019�\r�7��\u001e\u0015J}nU\u0015��\u0018\u0013�j�\"��'\u000f��t5�:�m˵#�Bd�\rԀ�}a�^�\u0011���l���-���+x\u001b\u0019\u0019��Z�W��=ޜ��F��2�\"ح\u0007�\f4�bj�\r]�0v��B�U\u001b��W�\u0013��v����\u0004ͬ���\u0017�%/�>��b�u^h\u0015'\u0005\r��O\\�Pq�Y7N�6U�m).Q=6���N�1��������c�\u001c9�\u0014a)\u0013�\n�\u001d}��g�P��;$\u0006Ȓ�ε���1թ�M�\fE��%P�����v\"����{�8���r��,Nw\u000f��pѠFm\u0002�J| 3N���x����>s'J�l�^\u00078��P�E��T��hg�+L#��GF8��\u001d��aT�\u0000\u0000\u0000\u0000\u0000\u0000\u0002��Zq�d51�\f\n�C�a����+���>�\u000fH�7\u00020B�w���h!����:h8���\u000f���1\t!\u0016Z\u0000�.����\u0006���\u0013�I�s[I����:�v�T�ah��\u0003��8�O�/gu�-�v�u\"MS*���dxx�f\u0000\u001f�Q�b]�x:l5\n�\f��\u0010�����n��\u001eD�\u001b�&\u001a��]��nM�F\u0014J�F\u0000�,S :p_$4��O�\u0013>�i+��=F���\u0003��KA\u001ei\u0016��X�/I\u0017��\u0002=m_啪�\b�\u0015\r�x!����,�Ph͏Ua̮\u0006��sj\u0001\u0013�$\u000b)�;�\u001a��ƍz=��I�\u0006G\"�\u001bG�Ёs\u0015�\b@�1�����2l�`U�w�+��cQgb���~/���@\u0002���2W�o���;\u001bkK\t˓��A3�\r��0[x���6\u0018�\u0006�7�p�\u0002P�0�E��w���\u001cEu>���%��Sݸ����1�Qaa\b�;���\rz ���b\"$��N~��i�<\u0006\u0016��^#\r\u000b|�\t��ٚ��\u0004\u0007�\u0014� �B�l��,�#y�k����W@�\u000fv|c$�\u0002���\u000fW��/K\u001e�q��\u0016\u0018,ꤾeȓ,��\u001d\u0018��S�HfEfx\u0010gR�j%�@҆���u�pS�u�:٦62a)^̂/p)�aD�[\u001dr�.S��pnQ��{�<�\u0004\r\u0000�~w�\\�,CK\u000fR���k�g��%(��)\u0016\b\u0017\u0012�p�\u001bEUu�۸��8�\fl\u0002y^v\u0002\b=n3\u0016t�&\t��I0��/p6�#\u001a�:�����A\"�\r���L���N�٧Z��\u0014\u001e\u0014�32s�M\u001e\u0002���6u�\u000b\u0016��^\bܡhv[G\u001e��SU&�\u0001�a$~\u0004�0\u0006�\u0004Y ۔\r/�@��џ�\u0005�Ar�h4}�/XV�ٯ���~�蜠z��\u001a4����P}׸w�����\u001f�)�K��'ytJ\b@YM�'��0�=�\u0001`�\u001e>�r*��Lл�y3�%��T�Os��`��{fH���ps\u0012M���\u001c#M��|\u0005�\u0013�3�\u0002�Jɀ�\u0007*��g��0#��l\r�\u0000�ET��\u0001�2�$AӛX\u0012����0�>�\fvUx�78 ��ø�\n����fR�\u0007:�\u001f}����:F���\u000f\u000bo����?]�A �\u000e\u0010��M{�\u0017\u001a_�ܛ��\u0011r���@�ܗ�\u0001\u000e�(�r\u0001�h�������*\t�\\S�w2^����2�'��Dm\u001ct�&��,†�\u0001\u0006��K<�HĘ�\u0017L�xd+=\u0004�v]��==�g��b�^�!\u0011������\fNe$$�A�\u000e�\u001e\u0013ۮF\u0018�*��\u001f2c��M�=����\u0001y�ձ�+r�����\u001aj٠fM|�#٫\u001ab�K?\u001c�BJ�)q_$��\u0018�e%>\u0011��\u0006�9�3�U�B\u001e-$;�\u0001\u0001Fu\u000e9��#��d�\u000e\u001c)\b�M#/���\u001b��k\u001f\u001d[5�3�\u0005m\u001ej�W�7����Y��3�a-H��$[0�}��\u0016|6̹A�\u0007\u0012ڣA%�\u000e$��LɣͳLHǩI�Ne7\u001d䚄�\u001fF-�:��<_W�wFk0\u000b�z��0��^�Wξ�u�曥\u0005�Y\u0006C5Z�s�g`+�`1q�\u001cW�f,U\u0011�\u000e���\u001dlf��o\u0007\u0000\u0018d��\u0005D�H\u001f���䬊������+\t\u000b`��B\u001a\u001fL�L*b\t\tBƽ3�/EFY5�ͪG{�x,��X�#\u001e��\f\u000e��vh\u0014aPh\u0000x��-�^�\u0003�\u0006N_�`\u0005¾��&�N�\\�NN(PG��E��\u000b۠N��L�\u0002�f�T\\�\u0011C�nP�ǪQ\u0017�;����L���\u000f\u000fQz�����Ľ�\u0016W���\u0014]�*�U%�\u0003\u0006\b>���U��4\u001co�n�t���M\u000f\\�A\"�\u000e8��L���C1�\u0011b�\u0002#\tiRW�j�K�j2Ѷ���Q7�������賭\u001c(@z���� aP��(�c����,\u0002��!d�OHVLq�ꥢ}�j\u0005T�K�J9��gQYլ\"i��#G\u0019��O�p}�p�PJ�j�<��CE\u000e�d���ͫ&d�t�\u0019��F��\u001bf)��r�\u0004�Z��8D�����NJNA\u0018\u0017Xg<(`\r��Y5� \u000e�1�����Q_\u0015�\u0019�.8D�2oj��v��\r'����|�P��{\u001d�X�FT\u0013�\u000eE\u0003�R�ˌκ�݆�iH�V\u0014f�3x�g`\u001esr��\u0002�\nZyƇ��Ⱦ\\�Q�'K�\u0010\u001e\u0019�l�A%�\u000eL��M\u0014�i\u0005iX�\"۔�X�$\u0016��P�ZT]����ǔ�1�`���.\u0015P���?\t��a��ci\u000b�\u001dV�+������\"�E��u�\u0000�Y��R����.J�fȗ�==�u$����M�\u000f�@\n�t\n֧><�i���up��t0����\t҉��䇁(̳���\fa�B7\u0002_Y?\u0014�&�IY\u0006\u0003�ː���\"���\u0013��/<\tZ�\u000e��}�%�i���\u0007(|�\u0019�U�2�\u001b�#@��<\u0000zB\t�ǺMa'��x:�`��l\u0006��݃\u0017/\u000bA�a:>1�0Z�Ym-�9�\u000el��l!���Ŷ\t���p&~=\u001c��ߩ��-��]�dT\u001c\u0016J_�YQ�A2�\u000e`��L���\u0005���\u0011*&n~���I\u0015�V\u0015UF�6u�U>�h�Ui��|�����4�u����#��Z�p�#�����*B\u0001b�Y\u0003�>L��\t%;��1�T�x�h8`�\\��3��4\u0012`��B|\u0013�9���\u0016�a��B\u0010�\u0011\u000f2wK7�^=~!�:\u001a�����\u0010m�\u0010<�F���!E\u0017p����S^|\u0005,�1�\u0000�P�ٍ�Ӯ���g\"�\u0007��-\u0014~�'n�Ɉ�q?�V|Z��{��ҫ)$\u0010E\u0005TV\u0016o󼼔���r���֏t�\u0016\u0011�Vn�\u0007q��\u0010�\u0007*�k\u0000ݓ��E�!��A�}J��`�\u0014�lkn��������Rŭz�l\u0000\b\u0002W��\u0019�,&�0�oyUO�I�w��e�\u0003I\u0018:�p��\u0011O\u0011{�\\�\f��Z\u0005ӌ7��-��=\u0016�O/y��Q�P-C,O���4����<�’�^$�pW���A.�\u000e�����ړKM�\\\u00179@~!R\u001f�0©��\u000b}\r�8 ��6\u0005f�<�\u0014�D��\u0015T�)�\n�\u0019��\u0001~R`��i�Z��\u0015b\u0017������5��\u0003o�\u0004ls���~t�?�\u000e�u(]x�lJKSL�\u0012j]T�f8����5\u000f��跋�7���\u0000�\u0016�:�\"��o]��W��F��9|��8QW\t�\u0016�%��\n��}�\t�5�ǂ��\u0001��ǵ\"v�����C\u0017\u0010V���;\u0015\u001e���\u0002�a�_�\\\u0013�d�4==��\nֳ$�71��raQ?n��(�mC\u000bɑ�\u0011|\u001b\u001c�y\u001b>���v�\\�\r��C���G�a�+کW6D۠i����!�b?\u0000���l\u001b\u0001%��\u0000*���A)�\u000e�����>����\u0010��\f�Z\u000f\u0002N��Tp�gfX\u0013\r�����nju�i~h^��5Z�V\u0004\u000bG)tC�\u0017\u0017���b\u0018�F���{#8C\u0015�Œ\u0019�Tk�/����z\u0017\u0001g\\�\u0002Y��\u0017\u0013\u000b��W�/�~�o)�Ha�@[K0�A\u0004�ͣ\u0001ơ)^y��\b�\r(0\u0007�\f�K\u000b�@\u000e���������\u0011yr/�=J��b��d�\u0014\nf���gw�t��\u0010��\r\u0012�ʘ\teU�?���\u001d�R�,\u001f�p�Bޖ���)s\u0016\u0013���d��#T %z�5��&^&�Y�hm�\u0004�-z~���t���/�x<\u00149bb�����@3\f5���\u0010�\u0013�-��.\u0011}!������A'�\u000e�����xk�`L����ȅ���Α\u001c��I\u000b:6���?3⁲f��4U��\u0019pѽ�N\u001d\u0017�;N��������D(�H����\fCN.2��\u001a4�\u001f��/\u001b�6`\u0013�v�\u0005l�^{��\u001e'E���9������֩�p;�\u000e�#n�-?V{F��n�N\u0007/��-\n�Z\u0007)E>E\u0006�Y�\\��\u0015Z�\u000f]��;��\u0006��p\\�d�p�SBˢ\u001f{f�\u0017\u001d\u001c\u001b\u001c\b����\b���\u0018+���OM�\u0011^EYY��T�����A�*[\u0015��\u001f}V8\u0006Ѿɇ!���r3�y�\u0005�ѱ���P�\u001a<��\u0006��,��\u000e�伽3��^\u001f\u0017>Gs�p��c[���+2����A\u0018�\u000e؀�]��b_\fJ�Y��S��\u0014ތB%�Η\u001bf�\u0003�=\u0011\u000bC�%d�4�|)Wp��M�=�턆�0\u000e4�x�@S*�v�\r�g�\u001f0_�\u0007��)�!(\\�\u0015�\u0010&*�\u0000kV�t'E���R�����1N�tZX#�ٿ\u0019�;y\u0017\b9T${�V�\u0018�$RH�+؉��<\"�>\\q�\b�b<\"��ZH{\r�g'Ql�>�Z]��If\nH+��k�0\u0016\u000f3��0\u0011k�uY\u0016�\u000b?(��\u001fhI�O\u0016H�V6}uKz�R\n�\u0010�k��Uq�-�#��\u0015\tx\tN���\u001dm�rg�\u0001\u0006����*�{\u0000�D�\u0014u�\u001aĨm�+�\u0006\\���q��B�A\u0016�\u000e��X��÷\u0012��֧��1�Iz(��Ά\u0016�\u0010~�\u0013TA*\u0011��N���\u0019j�\u001c�&��2���\u001a.1�X\u000fy\u0016�@�\u001d}�DŞ�\u001c�2O���\u0017�I��j��\tr�u�q��@�s\n��\u00008!_Q\f��]\u0007\u0002Ε�.<>(��ӯ��,\u0010v�䚦d$\u0003���`?��\b��ٴs�ۊ�\u0004T���\n�x�M���ehQ�Dg�DS_��34\u0015��Ҭ챏&ձ?�Z�m� �5�hlp����=kD1�ᴚ�%jJЭQl\bN\u000f}�\u0006���*:p\u0003(�Նz�S�\u0014s��^�'�|@%K��\t��\\\u000fz��D�����A\u0016�\u000f\u0000��X�g1��v@��\u0003��\"ˆo�>$��~�e.눲b���r�2ʲs�\u001c��A\u001c\f��lul ��t-\u001a�A�})Զ��\u0001��Q�<�����K�\r�\u0018��\u0000N=�r��9IL\u001er�c�;Pښ�\u0001 \u0002�i�\u0013tZ�G{\rV%�~�f��,\u001dAwX����Sp`��C$EU\u001b���p���K7�osBk\u000f�v̓^���s�\u0007�ZL\u0013\u0018�\u0010�돳�u���p���)\u0013ά�S����\u001fN��\u0019\n��U�\u001f���\u0005\u0000�s1��am��\u0005\tT$3nXӠD<0�DTl�rtGG�\u0015t���Sņ*l\u0015\u0000��\u0006���2�Y�\u0017\u0000�A#�\u000f\u0014��Mz�g%�Z�\u0015\u0005#)�B���M�\u0012~��bœ�t�9u\u0000Uݾu\u000f҆w�&O�iZ��\u000e�O�NI\u001d�qx��D��\u000e_�3\u0004,\tB�+��4\u0019v����p�\u0011\u001e{��{\nYv_��.�\u0018\u0017�d���s:Evմ���*\u001c�\"x\u001c�H���?e#!�܎6\\�3��\u0010kς���X�7�+�<��\u001b��G�Vv�|���G�\"Ҡ��-�,D\u0007�Q~���\\��;�{ӵ\u001fm0� \u0007�(V��^���rTv�d\u0000�\u001c*�BX\u0016�\u001d�1\u001c��S\b�\u001f�s��@��Z)��7Y��\f|Q��\u0011�c9]����*�y�W�}���%�1��\u0007�WF*͢?�A)�\u000f(��L�\"��,R�k�l�mp5i�u1:\u0018��NLE���\f��48uG|C\b|�lt�L^W\u001b\fi��i�z�/H.�C��e�Q�\u0019\u001f$�f�P�\f�\u001a�h-�Z�)\u001fu��\u001b�\r>��u���,iL��%���W~����\u0003B\u0012���ֵ\f\t܄A�����P�;q�f�+�A����j\u0011�_���y\r�0�\rM����\t7\u000f���\u0017\u0006�%\u001eBۙ��`�piŕa�c�������\u0002��i>\f%O\u001d�#.�\u001f�\u0003�X�D��\u0010�����g�fg\u000e�r�g�;\u0001�N\u0018\u0017�\\\u001b\u00048�P�W\u0015�]\u0016[����\u001a\u0007�\u0005�����U*i�\u0015-%��<�\u0000�8]�P���A/�\u000f<��L�:�\"^\u000b\u0014�/�5q7.�LN2��\u0003�AXҫ��;�\u0005�\u0014w=,�\b��}'�ź\u0013����&c��Nt»r����Z\u001c�Wo@�\u0013\u00072R{L��e�K07�N)l\u0005�q�\u0017�[<�Z\u0010Z\u0014���\"RZ<�D��đ�9�j`���9�ǰi��\"80{��@�-\\z�q���[8d��\u001e\u0012���gD�NBl�/��nO��\u0000Z�Y�2�N�c��H�\u001fO\u001d~h�uҗ[\u001cY��\u001c^�-�,z���馝a�/�}\"��4jہ�ʑN|C\u0007\u001a\u001a�7�a����fH��� k1��ݠg�@:}^&�n<�/�ݘrQ�\u001d\r)�.��H$�\b��\u0002\f!��\u001fܣA(�\u000fP��N<����\u0001B�d\u001b{ Ü\u0015����ZJ�V�Z��f_a\u0011\u00052\u000e\u0000l���D��\u000fy�z��\u0017���QC\u0004�QL��9-��1@�yZ\n\bg��c}`��꼡s��pB��\bP��U��P���\u0003]Lժ\b_�\u000f��\u0001\\ژX��\f�B�]\u000e�j}���\u000ey�U�����:���R?\r��ؾ캔�0�\u0001Ƃ��:\\^w�(\u0011�sL�Q4�aĴ\u0013\u000b.#��S��w�\u0018h\u0017\u0000*d���B�[���\u0016g#�ϊ\u0007e���1�0dГ��)�(\u001bD�޻sk57\u000bKjqi��U\u0007�\u0013����L�-%�oɖ���\u00120�#��U�����(��%\u00117\u001f\u0003g\u0016'sG�A(�\u000fd��l���[*�A\u0010��\u0007����\u000e\u000f�����ߏ���9�\"WC�Ά\u001fHO*��\u00165\u0000\u0015�L�n��\u0000/�=���uV\u0014����m!��f\u0007�.�1�ʖ��\u0002��2s��X&�?g\b\u0007�чj�\\q��\u000fp���\\:hV�Hes���H�\"=�>�\u0000X��ت?L�:���څ���S�^x�q�\u0010vh�dr\\�ϟ1T�-��I� \u0000v��\r]�#7s���sY~���yǘloH\t��2�׽�\"�#�vz8>�Ӂ\u000e���\u0019�_\u001b��K~g�CdO#K�N)\u001a\n�\b�Iڽ����-\n������:\u00192'�\u001bD�>�]���N&΂��{%#�/D\u001f�\n[��,#\r\r����]����{\u001c'\u000e\u0003\u0003g+Ꮶ��\u00061�1\u0013G\u001f��}^on����?�\u0004�\u001d\\�Q�7�g\u0000�R\u0014iqRo\u0007��M�\u001138W�w��5\"�z�k�%�\u001a;����\u0014���Sq�5w��}�i�/g���M�Զ��)���5m1i\u001b�A+�\u000f���L�=]?�*M�\"��\u0001�$m1��Y\u000e\u001b\u001f�\u0012��� B���\u001e'��E��\n ��\u0001�-g��f�N\rL�;qb荆�b�����6\u001a�#�Y_\u000e�\u001e31d`yŶ��>R:U~\u00070�x��lj�R7\u000ew+�̴2w�V�����\u001b��3#��h.���8u� jQ�Z��>�\"�\u001a��\r�S���*L\u0010nM�ק��/>H/\u0014�d�zQ\"PƁ��\u001aQ��\u00013WԀV-�Ca�dCP�U��\\ �N�|i�����\"i\b%A��\u001e\u000b�#�'\n��>D\u0011���\f����A�d������m\u0012\u001b\u0004�}\r\u000e�-\"��\u0005%ɠ\u001d\u000f�ג=9�I%k�$�땮����=ۣA:�\u000f����\f��g\u0016�#YS�Xǫ,\u0013��i}�\u0013��ۺ��`�aG�w\u0017\u0013�E���å\u00058�ь��z4\u0013�&��z��\u0006-���r��i�\u000b��:\u0011�\u0013\u0014nm�X���F�\u001c7�\u000e�\u00053q\u0018\n@��\u0012K*u\r�LR��\u001ct��G��r2G\b�d�4\u000e�U��v��)|\u001f��X:���>d�r�H�s��\u0001hU���Qi\u0016hk��@� Iw8�=�3�5�n����wY5LSR�B�?�P𶋂��)���u�&ib����8�)y�U���\u001fjUl�:)+�+�B'�n�q��7<�K��r���_�\u0019��fD~��\u0017��\u0015�H��D\u0019��ǀ\u0014�\u001b� �n��\u001b��q6\u0000}��\t&�ߣAG�\u000f���L��\u0017��ɺ�TD��\u0018�%\u0002Q��-�\u0017\u001dd��X\u0013�\u001e��.W�fx}���8��q�s�\u001eM\u0007����&�Y%Ԇg����\u001a\\�\u0017\u00007~�g\u000eړ���\u0012\u000bj����nJѱ_��'�[f>\u0015�A\r�Ion/��\u001fv԰�:�\u0019�\u0017H�q�\u0003C<�#��P��]�\u0007>q�\u0016Ȯ5���O��=\u0001\u0001�a�m�0!��T�\u0003\u001f����ה+ǒN�'\\�u�_��^��W��h��Fz�޳jե�ٞ���IjYB2���&���P���u��\u000b6\u0000�\u0012�%��h�\u0015ljf/U(�i�\b�s�ӐU\u000e���~�\u0013���T��V\u0012�Qr�\u000b���8�y�g��#d��d�3�i��˘��\u001aZ\u001a*����A<�\u000fȀ�L�\t\u000f�\r\u0017��B�\r�p���@�\tkE\u0004o&D�\u001e\u0000h-ڥ8 ��Jsd�\u0016j��\u0005}�l꺓�&��6=�=��\u000b�i�f��q�?�o�\u001b�q�x�NX��=�\u001e���C9�\u0017���/\u0013|�\u0000�����t��wNXUN���\u0010�\u001e��W=w��\u0000�E�WP\u000f\u001c1X\u001f�Kү>\u0013>�賨,�ņt#\u000b���k�6��4���_W�O��l\u000b��\u0015͖{ڽ\u001fb��\u001a���\bp�W{1��\u0011���\u000e��NJ�)\u001a���o���\u0007�W�&;^�݋`h�\u0003�\u0013H���s���3�e��oˉS>�d�\u0013\u0004Y��\u0017i�^N�5��E�Hk�Cd\\7�*+��\b]q�>����͘��J�\n�A5�\u000f܀�]�J\u0016y���ؗT��o\"�ޟ�\u000b��\u0000�u�\u001fP�\u0010Y��x-�@�Dow�)S�t>�V��^��l\u0006L��JP.�p\u0014�t�\u001a6����9\buB��G\u000bY�g\u0012B]��}�a|�خ�Ќ�DYx,���\u001e璉��B��|\u0006�\u0016�M`�_��\u0003�,\u0007;���Q!��\u0007�U.>4Ο\n=�\u001d(8\n,9\u0004��5��䄎)�2=��꼆\t\u001f�9��3�Q\u0003�l\nPu,���g!�\"\u000bwR�g\u0005fIe\u0004id�n��e�R�\u0005�\u0017�x�(\b�x}FV -.���p\u0014�,\u0013P��Y �υ�l��\"H�\u0002\u0010xmDž�dC\u0018\u001ca\u000e5��\u000fd�U�\u0019�kc�ȉ�f�h��\\AHto��A0�\u000f���L�\\�{�'����<#X9�gb̗�썆 ��,��\u0001\u000e��CׅN��'���\u001d\u00133/�����r����+���,�\"\u0018ڥ�Z�\u001cxY����d�\u0014\u0014�\u0015��g�rXr^s��.��i!o���?;���\u0014�\u0006�\u0006-���hB9��Q��Mt�§?�Zʧw;�H\u0001�\u001flt\u000f��\f�Q99���h����?���ݧ�+_��lz��O�'�\rU5s����n6�0ъ��X\t7`[vA�v��C�NI��@5�ib�6(��]\u0002������=r��m\rb�ۥAІ��fO\t���o�o\u0006��2|p��vs2f�R7ǫ:\u0007��\u0016E��򐪰\u001e�6��7�ޔ��A1�\u0010\u0004���\f��u-?���a�~f�zw��݄sUӋW#� �\nB���68b��\u0006�bE7a��/�?%O��q稄$\u0012�$s=}\f\nH}\u0000L\u0006\u0012F+�͊��nk�o�1��F̗\u0011\u0018�̶N\u001f\u0006/{x��^�CWH�b�d�뼖\u0010�I�8ߣ7\u0016?D�\u000bSH7�;aV�iR�\u001b}\u001a��.Zo��F�l���\u0016\rQ���K��w�t�K\u001e6���\r�{�2�B�\u0013����r,\b\u0005<\u0019���\u0001��'�L�1��:\u001bo=)���Y�J4�\u0004G$mR+�i�,K��je\u0018�����w#K\u000e\u001c8]E����\u000b����%O؋ntq{�\u0013�:FX�Ȃ�둰I6v~}��~\n����A4�\u0010\u0018��L��f\\X\u0005�'�?i�_6!�a�$|�@8u~�j�ls�T�[\u0016>��`���H\ba&\u0003\u000e��\u0014�JŤ+�b�\u001e��{�kJ�K\u0018\u0018�&F��j\u0003�\r�\u0011�Z!�Py��'��C�ƻ\u001b���t����P\u001b����\f�n�)\u0018��X��+��ʒ_�\u0006�G��P\u0006\u001c���ߍ&\u0010�\u0014\u001ci�ki>eL^\u0019����\u0018��Ӻ;O�D\u001f3�g\u001ax�b?+\u001f��4�\u0003\b�F�#��_��~˵��_x&�?s�?�v�\u0014�\u0011�\\=����x<\u0002�l$�V�^e�i����y\\Db�ڑ��mK�:�Q՝@�B>\u0017���c�\u001arM�>\"]ӹ\u0000xu�%�hp*j���\u0018��\u0002�\u0001��\u0004\u0002�\u0007�!d\t�\u0016�%:B�D��\u00194�\\D`&�_�j�\b\u0006\u00059{ۍV�\r\"���I4PI���U5\u0001�R�\b\u00115�ί���=ֆ=��\bR��?�r9��݃�Q�u\t�\r��OE���\u000b��qi8x�A9�\u0010@��L��UaP{؜�\u0001\u0018��\u0019~�ko��+6\u0010P\u001fU�t�\u0002!�\u0011�/��\u0003'�J%]�U;!u_��t\u001d�$�k\u0010�\u001a���2\tc�K*\u0002\u0010������\\~3#�^Q��A����O�pN�^\r4ך�/D�dP�a\u001b\f��@�b\u0007�J�?����\u0013ʧ�ή�?��0���ܺ�.~�y��T�O��A\u0012|��1v��5\u0010\f�R�\u001b\u0006+V}d�BO\r��&��|\u0003*�����ƈ\u0001���(AY�Rn�U@�_\u0012��)^�b�\u0007�;\u0015n���^_� P3m݋�-�\u0000<\u001f�<\u001d2��/�S���_\u001a�\u0017�\u0003s�^�AKfL��`ڙ��S\u0001���E`\u001c��u�L'�6˷�$�@��w��A��\u0010T��L�|w-��'��\\L�8���o��HL9\u0001q4�1�\u0012\u0017C��\u0001�\u0015���B�5tWe���p��^�i��aZ�_�����\u0012�O��+�k,��L��?�x{9֗5��\u0007�GXƼ�(�(IP�;X�`��{��\b5!\u0010�\t\u0005�\u001e�\u001c�b�j�5�\u0015p���j�=��o�2\u00187��PlJ$.��u[O1{��\u0015\u001bӄb�`���\u0011Ŧ=\u001f��\u0004�\u0014�� �\"\t�o��YҎ�m����\u0011���@�����Qx\"�ӹ���E��bb��4�~�eOlP�O�����}���SA�f���5������y�Є\u000fI@�O��x?\u0013@�F�a�xHs�\u0003�~s�%��q랅5XP�n\u001b�l �\u0017�3~�|��G>\u0016Ţ�)�c�ٱ�\u0019\t\u0012�\u001e~�L�Xc�a���kA詇\u000f�e��;z�5*E�\u001b9��$��!��M�\"����$��m���#�A6�\u0010h����\rV�~\u0001���\u0018��.\u0011�.�_���\u0014�\u0016�7q\u001alp��o`�KD��m�]��?S�~\u0000\\�J��_�N������~L�\u0005m}�ܼk�@�V_XRo�8cHJJ����:��ʷOgX�)H �\u0003x!�HZPV�\n�j{��7�\u001et�\u0004&��$m%�i% �\u0011P\u001aEB���\u0003S7�/�5�E�X<�����j6fS8|#\b ī��Y묍9z����6F�\u00020Fh�c�DK2�|��,E�=�2o�\u000e\t�ι���\u0013p������&���y%��\u0002\u0010�BDnx�J\"�F3P\u0017q�h�B�-aɢ������\u001e\u001d��庿��\u0006�e�C=a1\u0004A�\u001bG\u0000[\b���A���Yp���A;�\u0010|��L�Ԡ\u0018��JY\u0001^ז�ɼ��\u000e\u0004�\u0000��\u0011@��Pl�sٵ�U��+�K3�q�>�)ޜ\u000f��Z�`��B��\u0000�[b2�|��3~\u0003����1\b��.\u0015�����I\u0018.Y�\u0002��>����B���eU`����\nD;0��?� ]��'ەZ\u001d��ꩀ�N\u001f\u000e�v{�m��\u0016�*o|�\u000b��?��C�_=�����v\u0002~�b\u0011��aX�\u0014�J�2yB\u001bǔ\\$\u0002mu/0�\u000f\f\u001c�1ǃ�9\\��������d̯\u0015e_�ɗD���jOeI\u000b׬\u001f�x&��m�;)�\u0010�AM\u0017�k6KGlYW�yFJoF/�m��J�}�=�\u001d�u=k#\u0017�2L�e\u00037x��8J�\u0010E�G�V\t\t�A=�\u0010���ۼ�%��\u001e-\t�F�\u0006�\u0007�/\u001d'�<Е1`nU���c� ���\u00041��U���װJ�\u0014\u0012'\u000bb\u0001����\u0001�e�#�\u0003I>����#�B�\u0019Y��:J��V0.a�L+a:�\u000b̖�̮�����{Њ�|���WWW\\�\n�D�\u0003(`�\u0005\u0017���\u000b7\f)\u0013�\u0002���}\u001c���( \u0019\rLה(�H\\�Y�\u001db\u00050��\u001d�$����Y\u0019��U^���%�\u001a\u0011\n�ޠ��r�E\u0017\u0011�?N�]\u001d\u0002)��]f2�\f.�YJ�X��\"���M�P �m���p�\\��t�A<�����\u0003 \u0001>2���}�\u001c��L�\u001d\u001a\t2iރ�\u000e���9�S��ښ$5,\u001d[-: U���P�)�KSIe�A�r>In�A=�\u0010���L�.X?\u0012��٣\u001b[��\u001c�O�{ƺ��t����5�c\u0015�<���e��\u000b�K�@2�zH�Q�\u0007Tyz4\r�rڷ�r�W�\u001f(�?vj\u0015t�?\u0016��?k�����d@�U��9Z��5��V݃:�+yɰ�}��N��\u0012j�\u001a��H��\r�?��\u0002�3H�l�p�#���O��\u000f�)�:����\u0017&./���r\\��w��\u0011�s�#���\u0014�����Vǝ��A8�\u0010����\f���\u001f��I0�\u0019\u0002\u0005R?A�\u0002�\u0010��\u0006�\u0002H�8x!��Vf�H��n|����\u001f����d��&��c\u001b���c�\u0007?b\u0001ի�\u001c.\u0004(i�j&{\"�%��\u0002�o�'s?�=n�\u0004\u000f�\u0015��\u00034��\u0006��o��L�il�u�ߺ;�\u001a��ԑU�1�\\�C�����\u0014�w�\u0013rb��J�h�k�S2/W3Z�\u0012\u001d\u0016g\u0010�G��j�<$�I�'$��zn\u0016��(��G9v�(\rQY��U�\u001f���\b!�>�@�ڡ-Ʋ���\u001e\u0019�\"L~+d�,�\u0010z&�\u0014*��\u0002�u\u001eqY&�n��S�����&J��e\u0011hv\n�a�(�\u0015�\u0005�euR�0R��Ր��\u0010F|��\u0006,\u000b��\u0018�YX0Gt�����\f>��\u0006|X��t�)��uf\u0018���\r\u0002śHr�M\u0002��:\\��6V��L+N���%\u0004Z��7��6by\u0014D�@8\r�\t\n]�?(ߋB���\\\u0016`&5\u00139\u0011C\n�\u000e\u0014�zF\u0011�K\u0014h�\rz�]��\u0004E�CwL\u0017�\bS�\u001e���i�\u0014ث�M�}�����A&�\u0010���X�0�SW���R.�X���F#.���*��ω_\u0005�^K�\u000e�X�\t�P\u001e\u001c�*��/��\u0010\u0019���<\u0019L\n�N�ծ�\u0018ٍQ5��\u001f��[��\u0011�o\u0005�\u0011{R\t6��X\u000bj�#j\u001e�+��=\u0001��d��V�m�+�m?�j|���5\u0000ܹs��Gߟ�í���揙�\"��@�U�\u001fܧ[l��\u001d�P\n���sn�HY�\u001fheLC���\u000b�u\f�\\K�zC�V^#m�$b��\u000b*��O���J�&-��\"�m��9g\u001e�,+�9\u000b\u0015#��\u001a�tvB���\"���\b|�+0�6��\u0016����6dv\u0013�N�ƶ��v�*K�L�k\u0014n�Q���\\�A&�\u0010��X�h�^\u000ev\u0011�V�/J��\r� �C3\r%�wqHr������S��~cQ�\u0005�W�N*Alś���=��\u001b���ݹ��ow�5�0]\u0005z\u0004\u0004�6�?^�'�\u0000�_���8�m7I$�K�ъ�\u0011?ʾH�]fO��_��\u001e��_G����\u001e���Nx\nL\u0014\u001f\u0006�%Ӄ �ѕ�\u001f��^���V�?�\u0015��3&C|e�ae��\u001d�����WB�V�2B)��7o)��Ӿ\u000eJ�>\\�@Y#\u0002�~��\nB�-�9�X���`f��f�\u001d���\u0019��\u0001�7X+\u0001�v{dA�\u0002\u0016\u0000\u0010'e��l�5�!�߽F��\"���\u001d��R>�d��x\f���\t�A(�\u0011\b��X�\u001a?�!�V�|��5־�\u001fۤ��[�V\u0007���Y� b�bk���ܶ����Õ��\u001aR1w�1&���\u000b�����HI�l\t&\u0004F\\����4\b�ݣ%(g�-\u001ah��:\u0002\u0018VM�#�{e%\fl\n2 \u0016\u0012\t�%��g�-w��a-�\u0005n�l�*P\u0012�ǖ���R�1��76\u001a�B�!SwNN_�^�#�\u0012��Wo�o�\"��Q8�vӡ�w\u001fY�`1\u0007Ψ��a�qk\u001aL�u�f4���\u001b�_�ʦ���\u0005�c�s�;�\u0011�\bv��}}*gF[�I2��N\u0017gD?\u001b7\u0012�A&�\u00110��M\u001e��v5(c�o-\u000f�M��\u0018�i��x!Q\\�|J\u0003\u0001��\u001a���k��L�$�\n}���̉J�Q�L��'/�>Y9�7\u0002�&w�0x'i>�\u000b4�s���\f\u0011\u0019\u0019�\u0002�V�y�7b\tx�>�[�\u0000'Y:�\u0004�$$���Y߯�\nt\u0012�ء�(Ǐ�i�ã6ذ׸-�mkF��ߝ�`\rf�d%V�[Ѡ�y[�#.\u001fVS�gCx\"ֲ�\u0006FP\u001d�Ms\nL\u0002��/���&Ւ��@v�=F��\u000f�J\u001f�~uAr���{��\u0012�?��:�(5�5�h�U;\u0019�\\�xL�h�\u0017\u0019c�;��[gts?u,\u000e�լ2\u0003v�g�?��B#�x�\u0013�\u0005\\\u0003?�A-�\u0011D����)�8��\u0003���j!��>��.ƀ�\u0007�\u001d\b�a\u0000��H\f\be��Z\u0017q�[\u0011�קM�q�6\u0005�\u001a�i┮)��?y\u0011��GF�0�۰�.��\"\u0019D��\u0011[�:w�}eF\\\u001dRRW8\u0001\b2\u0004ՃBL�mK�����]���mi\u000f\u0001�[�;f�'u�\u0016�)�x�\u0007������!\r&�S�{ʀ{ɴ�i[>\u0002�ٖi�U��\u0001��_:�;�;ʥ��T\u001b�\r\u0018!yű����<�0\u00177�+�7P�g�E�^��I��F���<�7�$/\u0019\u0017ϑ�D�Δ���N�l�\u0005��\u0013oZ殨w�S:8��\u0003-�\u0006���Y�v�\u0010���ƚet�H�;YP�v� ~ɣA'�\u0011X���\u0016�!����Ȍ(\u000e�c\u00059k�k\u0010'�j��oeZ�\u001fW/9�M��0��\u001aG��\u0019o\u0012X>���\u0011�4#���r]�\u001ep��]4-�|5D����`�\u0013��\u0000����)��2�Y�;;�l�h\\���0�)Q��*�Y�3��e�e�\u0011ɂ.T��(�_.`�B1�Ay��\u001fՓ�2�-\u0013秔\"t1\n�C��\u0019�\\���A�\u0003|T��RX�v/y@U�{�Yj\u0002�\u001a0��\u0014�\u0016��rXu��\u0004�:���\u0017[�\u0016�[4z�\r��\r^\u0003�\u0010�ʙ��\f\u000e��&'�\u00114P��]U3�\u0003F�喬\\�|�+NS\u000fL6!\r�M�l\u0016�X��Iko�g)w$ˣA.�\u0011l���\u0016�(\"_���bX�Skĕ��zP��&��,�O�\u0007Q��\u001c��\u0018)���=�\t�j��90\u0012t�&~�I\u0000�ڃ��o�X���w\u0004x^\u001f*dO�h��b`o7\f�bB��Z*������/�?�/���գ�]��(��|<��|恽����\u0000炄-t�\u0001#�j��g��\u0010&\u001aB�\u0018`#\u001c�6�.\u000f�\u000b'�\ru\u0000IE I��$�qE������ӳW�\u0011\u0018\u00131�…�Z\u001f4\u0019]]�xU������>8�j�\u000b0u/,�ɠ�TG�\u0002�/�����lX��*t�l7f;r���'T!vR���\rO��a�H�Ab(~M\"�t�j\f��ԪY\u001c|[\u0013�H.T�Ӑ��A,�\u0011����\fЬ��Yk��\"�j��\u0006\u0003�,Ri\t��<�l\u0004�E\u0003Ǚ\u0005���!���=�^R\u001aT\u001f\u001a\u001f��\tdڳ�\u001e\u0003\u001e�&�<�l�\tp���,�7)y�� *\u000b8�\t��,�Ct�ߍ��56Dgݨ]�Y��w�ʊ��פx\"d�H0�W�z�\u0007���Z�\u001f~�;g��3o(mm4�,�7�wI\u0016i�\u0015�A�\u0007�mORrJ*�\u001fUj\\\u00113�6�o�G�:Ր���whg\u001b/��sSwp��J���\u0014\u0001���c�\n�+�\u0000\u0001�t]x:K�W�h��:R~0#�<��F_l�vGO��Ώ��ZkS3b��V��\u0004�e��LR\u0014���s\u001eB�\t6��ŗ\u0002�����F�9W��\u001czQM%�8^�8t�QꉣA7�\u0011���J\u0004���C�d\u0012�f\u001f?g&_�L����]]AK�k\u000f��\u0014�iS\f�؈櫓b̥���\u001b\bᒞ��}DI��j�oQ����ѩ]�0\bū��X<���E\u0016ik���3��\u001eI�Y\u0004\u0015��YM\t?\u0003��\u0000#d�1�(�ub�k�!n���s\u0001\tu8��h_)~�Ѐr�ZK�����([B���\u000f�3���@�\u0004�ؔ�ms�a�\u0015��љ�]]?�,Ū\u0019�)\n�v���o��H�wW��ٗ؇�b^@�Q�\u0003R6�\u0011�sq\"�������0\u0001�H��\u0004`�[L(���%�\u00115�-�7[>v\u0015\u0001X?�amD\u0012�\u000e��J��\u001e��c���\u0019n�(�\u0011L\u0017M��M��\u0017����A0�\u0011���2hf=�`ڠ��a���\u0011�x��ԇ�R\b2\u0018����̭&g5O�\u0013@\u0010Lv�oɕ��7���귕T�t�\u0004W�P����\\0��~6 g��Q�%�����I�\u0019j��3R�TG���P��@�\u001c���V�u�7[K1��Ź^�\u001c2�\u0004�b\u0013��y�0\u0000��ի\u0015ׁM\r���`���Ͻ�9!��\u0010Q%A/�*\u0005��}\u001f��\u000b�\u0000E@\u0007�0c�\u001fc��4/\u000fŬV���j\u0011�z\u001el1��ƿA��Ҽ\u0016���8$���i�@\u0016���\u00002B\rv\u0010�'ԫ�:\u000bj\u0004�r>��ql-��\u001e2�qJ^sv���! ,�aLR�9`*�6\u001a#�:*��%P�e��\f�\u0013ZX\u0014�$�AɁ\u0011Ѐ�}�\u0016�WZ\u001e\u001e-3�:w[�@�Y{�*D?,!|;鲭�b��ᇳ�}/f�a�U\u00173\u001c�dZ46\u0007�j�\u000er�PD�\u0005��\u001b��O��˺Ŕ\u0002ക�\u0019��\r��C\u0017=�>\u001b�\u00005�󕊰v.A�~��'� O)�W\u0004)Lp*\u0000���,h�:f�Q\u0000^b1Aʪ\b�\u0017B�L�\u0006�eL���a�q\u0012#��u�<7i����%�\nڸg�\u0005ӆ\r\u0010�\u0001!�^Z�.\u000fg���X�2\u001d���@�\")����oa7pa�i���S*�*P�⫩~E�Y��g{��sx6'��\u00068\\\u000f~e��S=j��f���5vT���ŕG\u001d�:W�0\u0005A�o�䌠���L\u0016�Et�h\u001eK\u0000Sþ0�#�]\u0011Ce\u0006���E�g���\u0019[����u�%uI�=�~�]s\n�/|V\u001eԂ��ӀB^cpB\u001e�|�qQ��\u0016W5z��(�&��j\u0003\u0013~�\u0016�Λ�\u0015�4gϵ�ޠ\u0018�^j���7���dz�Ѝ(ևo!#��M>!j����{��N�:m߂-��(�6��x\u0016�E�=���3���7@v<b�;�Wxh53�!\u0014�\f\tks+Ѓ\u0017�\b��!#~\u001e� >{W[�j\u0016���\u0011\u0014\u0000O\u0004!��G9�Uf\u001fM��Ҵ�|V����d�p\u00193��ٵT����}�t㲬6��]�9�nj���w�R�Z$\u0017\u0004r�n�\u0010�c�.X�r]&#K���p�\b-~��\u001c�\u0002W��Uu�7��#-��Eܔ\u0006�a�id��T�̀�,�$�A\"�\u0011���X�4\u001d����\u0001�)C�\u0019��\u001d1`�f��s�\u001cP&b��L\u0011\u0011d�]��|���5-I|ׂ䤅(\n�7��^���'|Ī7����d�К���b�\\\u0019��Cʗ��\n\u001b4�\u0006ݨ�#y�o�Z_�\b��f��(؞/\u0018�FK��@��\b:n�N���?�U0��t\u0005E� X��*��;d^\u000fȝ-��y��ǚ�\u000b�*t�P8��l�\u001f\u000fc��lbeh��Ҧ�K\u0002��\u0006��8\u001d1�.���]Б��ꦥ$QHq��\u0004\u001bse�E����\u001c��UԽ���g�U\u0011���\u0011��S�lX���σp�F\u0013���\u001f�)rYr!�|�$�jfGd��!\u000f�z�/3q4ߦԓ��\u001fm*��-��\u000f\r�?\u0015�ē�\u0006�\u0015Wt�y�[�F��{>�\u0012\b\u0000H$�X������0f0 [RZ�8\u000f-��\u0003�u��b\u0005u-zi�ޣA;�\u0012 ��L��+\u0007ˢ�y\u0006����9Z�\u001c�\u0006��\u0011���4�[�F�[\u000bl��[?����J\u001f��\u0010>�\u000eڀ���jX�D��N#E�C\b}\u001bس\u000bų%K�'�s�Ѩ���Gx*%���h�`�J�{\u0003�z\u0006�<�b�j�6eի:\u0017p>\u0005̐D%���\u001f�\r\u0012\u0006�[�m�v�x��\u001d\u0000��� {/H��A;\u001d�y\u0011�8}\u000b����-�CQ:!�\\\u0007�k/ZG����VC*�Hz�w��{������������7�p$x���\u001c�\u000e��� nڊ��\u0002H\u000f~LrO����ވrۤ4`B�צ��~�����\u0007n�V��gՒ��UW�/�\u001b��ꎮ�py1\u0011�}\u0000�~�\u0005�uſ�*KۣA7�\u00124��lӗ�L�\\Ui=di�\u001an�\u0007w��r�؞%z���z�E'\u0007�d���H��� Pe�_9��+X\u000b\u0004�]�����\u001c-F�^��5�\u0016щc��v�\r1a�\u0012\u0019�*F�\u0006'Y��͏l`�����\t�p���?�pH��L��j��vտ1�, l��FZ\u0010��|h,\u001b\u0016��i�i¿!�J-�ͯ�8�9b�\u0018\u0007\u0012DŁнT\u0018\\D�1��z*;$O��\u0005p\u001f�\b�>��0'n�x\b�%��zj��\u0002i�ur\u001c�2-��:���S���A�P���Ĝ�����b�$�j)�\u001f����%�=�/��\u0000�\u0011��?�\u0003�;\u0017�\u001c\u0016�E0����L�5\u0019����\"�-ob?\u0002���g�Հҭ�A;�\u0012H��L�����\u0003\u000b[�^E�I�\\������~\u001a�\u0013m�.$As���v�U���%5�\u000b��;\u0016��\u0006;������;��k����N\u0005��.����qV��:�I^cӮӋ�|Yd�N\u0004��HO�<\u0006�1�u\u0000��FO��\u0007�턯`\u0005./�\u0001���zM1dž0�ҩ�w0�ꑨo\u001f �t�G���&��Q|�1�@Q����i:I\u0019�\u0002\u0003)��\u000b|��������\u0006�_(JX�_>(\u001a��vJ�\u0002R/l�SB\u0001T�3��\u0000i��n�ą��\u000b��V�\u0018l���6��\u0010�H��@�܌���1\u0016�)�L\u0013���\u0006��t�\u001d�pV\u0014��\u0019�\u001e?MԐ�n���񙕨��+�����\b�(��6w]��AC�\u0012\\��L�\f��\u0011�sF\u0017U>,�\u001a��_>d��\u0015ش<�0\b��\u001f�KE�k1�D�\t\u001f��\u00035��\u0019�\u0019W�1�\u0011_��Bh&��1{\u0013t��V��}��Q�}\u0014:�k�~gN�\u0018\t�n������\u0005\u0019M��}b���S�[Ys\u0000���`V]\u0001���=N�j\u000e\u0013GBڕIј�<�\u0016�d+Fה\"�0\nd(&�\u0017\u001bg�Ɉ�nM�����R��7��2�o‡N�\t��g\u001bXO�\u0006W�B�����b�g���-����Z�\n�d�x�\u001a\u001dC\u001dڿ��耝X�\u0001�\u001eK:Vw�����\u0002t� ,��\t�oX�Y��o)wX���;���_*���߃P\u0014�(�P@Z�8W��?�\r=q��*p\n�kW���c�\nq��+<�\u000fgm,\u0013�������4��\u0003�0��U���\u0002?2���HC&{���{�����n\u0013�Z�\u0012O\u001f��AW�\u0012�����,WE�\f��\u0007O\u0011cZ\u0005�9~�����\u0007�^\u0007�]�x��3�TW'�C���0�M]��x����;\u0007z=�ė\u001b��%#0�\u0001H\bO?�*\u0012\u0019��'m�$\r�\u001fG\u0015X�3o�44\u0014j����\u000b�\u0011\u001dJϿ�É�!�N�*�������7��Ws�ukN7�.��(�Yչi�\u0018װ��<�\nDʫ����Y�a`���V��\u0014�`�\u0019�\u001e�'��\u0007��=Ka*���\u001dD\u0011��\u0005.[��-�`pr\u001a#q�Y{�f�\nb�(S|�{�|��j��G���=J\u0016���T��,�$�e�4\u0014�����z\u0001d�BA\u000f�%�\u001d�*��掝�O��M-6�\u001c��\u0019��J�(\u0002\\:a��-]\u0013��\t\u000e�}\u0016��\u0000��\u001bB�>@��W]`�W�\t!`�t�\u0014�n�AN�\u0012���Lȡ@^R��<\u0017���\r�(��F�u�9�4r���Г�7�B��\u000b\u0000N�\fdٓ�$g@�\u0018]W/O��g#�AJ�\u001e*���S�gG/��\b��F�Lg8�:Ҷ}�!u X�\u000eO\u0003�'�o\u0018�\u000f,�l֌8�\u0000us\u0000T�*?7�-\nB�v����Ժ�>\u0006{�J�S��E�o*\"C�\u0002�8b�R�%T9Þ[IƺK7>\u0011E\b��\u001f\u0000��\t\u0002�En���;\u0003���U�ך)k\u001d\u0018�\u001e`z�\u0014`�F(�[�0\u001b�'������h\\o��\u000e��xd����U<�mzW�\u0012<#����\u0019>p\"��+�T>uy\u0005+�\t�4eQ�$.��C�m�7\u0017���'ο\u001dd\u0017�7\u0007`+�\u0019�\u0006`�6%��\u0010n�钏o�\u001b�����amd���AS�\u0012���۹`��\u000b\u0003\r\u001b��C��c�\r>��M/�,�(�\u0007٣�۝4\u0013�Hӣ\u0002�θC[��+� \u0003V�V5�&�E��:�J\u000b���\u0015S�v\u0017Ĩ�Z��O�c%�Ĵ�\"��8�P5\r2gu)2�<�\u0000A4�Q7\u0019��‚��sUb\\\u0003\u0001��\u000b��\\\f������6\r\u0005���\u001cA��R�2Fi\u0000�R4�\u0014�\u0015h\u0011��'5C��G�L��\u0017o\u000b����I�++\u0016H�\u0000��9/��L\u00005\r*���d����2p\u0019\f�;�>�z*�ߩ�В(��\u0018&�3�E%��.V!�\u0000�m���\u0003��2���Rm��\b�͕��\u0003���Qi��j��aI��������\u0007��\u0004b�mt2���\u0018i�wp9wB4��U��p�g^�7�z���\u0010T+$�z\np�A?�\u0012���L������2��-8�#\u0005\\qf/*I�������x�}9�����֑\u0002>@BHǪ����$Wپ�:̀���tD����\u0005�\u0016\u001a\u0011T\u0015e�R\u0015Ç\t��\r����L\u0011uMN�o_A\u001fS�s�|����\u0018|TMe7��~\u0012\u001b,2�T�g�\u000e\u0019%W��t\\��^�9��YT�:�0H��\t�A��n\\\u001c�:�\u001f���-�@���-Z�g�2\n\u0006\u0004E:�k%V\u0002b?�2*q�5��%��!)\n�J��Z�@�y���b�z�\u0018\u0004\u0013�v|�w�'�W-�\u0016�����jt�\u001a\u00045��$ȃ�O�A�W�ׁe�E-\u000b���H��O\u0014�4�PFکJ��/\t}�^��\f�D�ђ[.Rk�m\u0015\u000e�����Aׁ\u0012Ԁ�}d�\u0006{��L\u0011a\u000b\\��\f��99�gA\"1D�É;U�Ǔ�Q�n� �[uoVu�\u0019Έ\u0017�{b\u001b+\u0007\u000fJ�[@�hW�=�$Og�_嚡\u0010f�c��P\u001b]�/�\u001a}�2t%g�4�\u0001�F�\u0011\u0017\\\u0014G\u00182K����Z\u0017��柳|J�,�\u0007���A��r�@n�b^\u000b�LO��ָ�ˆR�Iʠ\b[�pV\u0016a0,\u0004U>ܹ��r&���ٰ�(\b�9>��Y�0�j�^�\u0006W�\r\u0000�f��\u000f\u0004\f\u0000\u000f͢\u001f��-��\u001b�\u000b\u0015֑��l�>��䬺�fi\u000b�\u0005�ك�y[���~E\u000b�\u0005K\u0000%�\u0012��%N0\u0004c���\u000b�o<�k}J�bӡ���\u001b��VdL��Yrs�硳S����4�\u0004�� iS*�ᴹ�S�\u0018h(0�K�\n\u001b\u0015�t�\u001cUi{x�����\u000e�\u0011��\u000e\u0002'zI[sV��i{��?�C�A\u0017�\u0012��L�\u0019'���p��\u0014���\u0011��\u0006͢G�F�r�1v�^[c\u000f\u0012�G��\b_��\\�ۤi�42K���f\u001b�E�\u001d�\u00185Jv�\u001c&�%YM�yMsu��戟�@\b$��4\\kn\r��\u0002���<�C��8\u001dn\u000f�\u0011�5�A/OB�J�-}�\u001fQ_\"��?\u0017)$�ڀ�E\u0016�\u0012���3zvy�\u0017Z��\bo��I��\u0015Q�p3H�p�\"�H��,�\bN�f�\u0003\u0002�~�����ꆣ�g2\u001c>�e���ki�#����)s�\u0004Kib#F�c��\u0010!��E�O|]�\u001b\u000es[�|̠~�]��ō��oܪ�_-'��/��y����=�m*�A\f�\u0012���X�\u0016���\u0010\u001dr�]\u001a6��M\u0015b9�����߁k\u0007�k6g�_څ(t\\�Ŗ�\u0015;�*izV�S�ɤ7ұ���؆Gm�A�Z*۴]0/z{\u0014,\u000e����)���\u0013��&�\u0005W��`R����\u00130n���|��$i\u0001\u001a\u0013\u0017V.\\����\u001e�Ϊ��'�t1��1�K}����o��F� \u0002>���������Sf^��Џ\u001c^�T\u0013N\n\u0016�\u000b��\u001e8��X=f\u0017�����޿]�\fcbU�� ǻ\u001a0'�̡QgB_�uM���3�\u0005�`\u0001��+2�`�h�m�ěp��&�Ȭ�y�Ëdl�qI\u0004�@�A+�\u0013\u0010��X�\u001b?׬�2R�=r�\u001d�6��?��\u0013�A�%\u0001��\u001fRr;eN�ߌ���ާ�e��M\u0015\u000e<�J���i*��XVIG\u0013o\u0005\u0011\u001c�\bw�:��c�r���W��MpK\u000f�F���o\u0010��b���;y\u0006xi��W�T�x��+��XihX\u0018�\u0011��p�\ncP*D��u\r�� �)+\u000f�[G���,�'f�ϒ�\u0018tU\u001c\u0017ۚ���`�B\u0017\u001bP���Z\r�=0+�9/>PS�AM��\u0000��]ٻ�S�\u0014P�ᑰ/���U_8Z�T�+3\u0003$E\u001e��6\"����(����\u0004-������\u0017���\u0017е\u0016{Cn_��\n+\u00012�}�K#D -h\u0011n\u0016��U��A �\u0013$��L�\"\u0004���j�Ҋ@8J�*j�\u0014\u000e��\b!l'.[\u0014E���=J��hǻj�ǡ�\b�N[��^\u0019��z2��3\"B��\u0005fcQj�\u0005��UB\n۶,��t[ª\u0005�I���\u0012��A\u0017i�\u0004D�\u0019�ֱ���\u001du�\u0012��e�O�\u001e�\u0010�i�X�\u00193;5/\u0006�\u0006\b��iY\u001eԘ5�����QQ��p�N�\bm]\u000e>\u0004\u000f\u001a�{�=c�J\u001f(A�\u000f�څ�U\u0015����r9)�\u00072��c=G^�ì\u000e����\u0002~,�F��\b?���=���~�I$\\=\u001f\n��\u000b�\u0004\u0010���\f�o���\u001ax\u0015>\u000e�_��f\u0018�:\u0007��\u0018����\u0007OiK�i�1�[�A!�\u00138����Vfj�G�p\u001bޮ75\b���\u0019�vfX��Eu��Կ�3��\u0011���G\u0003��F9Mz�}^u�LDծ1�&�ܦ��N���;�f^)\"{�iN~>�=�n\u0012\u001f\u001eg�\u0005�/��^A�8v�\u0001�k\u000f\\��H���_����k�v��`��\b\u0012�w��A\u000fd���0�~W���X\u00001�.�&��U8>�>\f\u0017�d\u0018\u0000�d�\u001a��#P�EY��\b�͹�-L��ݷ4������)�9�\u001f\u001c��s�>���tґ\r��\u0011w����,˸�\u0017�@k���E��L�\r��\u0000��n�;��2F�rT��.�xq_��-*�i���n�ڴ\u0015%�\u0017\u0004\u00189m;�A,�\u0013L��L�,'�CC\u001f�R\u0018&�\u001b�1���G\u00014\u000f�0�����' H�\u000e9���\u001d��^���\br|�^\\���\n���SI\n�x��;�*ׇCqlS#��o�\u000e\u0006�\u0002�\bK̽^������]�����4feȡ������T��H\u0015��\b~���\u001e��8؞�r�Q���n ri��K��`d\u001fP/����:��\b�*����j��sdʿ�\u001f�\u0014n�}iȌ\u0005.0��x��S�n�RA��\u0007\u0012\u001b�H*(�3�{�a�\u0002�n�_��Q��/��\r<�2�\u0003>5�\u0006�PD�Ա�j\bO�H�Xc�c`�����\u00109$�sԵX8[��\u0018FџN\u00122���P�\u0016\u0000�v�A/�\u0013`��L�j�Q��;\u001f?�\u0018K�ŷ�Q���PG\u0011J̥ѧ\u000fa�\ty�e�\u000fz~\u0018}$j�%\u000e�vC\u0010�U�\u0011��\u0003��\u0018�\"�@>\u0006�i\u001c����`�\u0014�(��1��f��\u001cs�\u000e�W51���ү5dydeʢ�\u0001\u0014�/�\u0013ؒr��դ\u000en�pZ����?��\u0018��7hQ�Q獥�u\u0001Zt�(�_%:]aJ���\u0002ml�M\u001e�\u0011O�9��P�m|�\u0011\u001d�$Ɯ��yθg�:R���\u0012\u0012�!k���\u000b�F��\ts~H\tV��gC�U�6��*4\u001cw�I��\u0007|��畠��U\u0016)���l�ϱZ�\u0004�39\u001a}�$�&խ���\u0006�w�;�;�gU9B��T��\u0004}��f\u0017����A@�\u0013t��L�-s�\u001b��O���H#�ׁ��\n���\u0005Ƴl�C��\u000b��\u0011�4\t�C���u\u0000/�P�\u0015y�$G.=-~*\u001d�g�����hI���'\u000f�\u001b�>f`���A��[\u0003L�䅍�\u0014(���d\u0007��'੓�`���\r��@^,��9\u001dֹ}%O#���H\u0006�EN����\u0001\u001c�TͲ%W����C\u0019t|£n��1-�\u0013�ك�2:49T�^�=�<�j�i���\u0017��X�g#�\n���n�INqS�@���Y=W0\u0004�\u001e #K@Q|���\u0012��\u0004�A����C�<�j�\u0010L!�P*\r��x�)�b\u0000�U�U�4B�f�\u000f�(\u000boQ�(��/ ��n\u0010ɼ\u0005����W\u001d\u0015\u0012��\n��\u001f�h\u0015季A<�\u0013���L��p�\u000fY\u0005�\r�*�Ғ�2�E$��\u00125\u001c`0�\u0004Ih\u0005+E`�%����\fQD=��t��JY�<�b\u0007���\u0000�:��sh�\u0004�L�\u0013��Pl��y6cb#�m�ҨМ�B�\b.^�-���Ḅ��d��Dm�.Mr�k�f,F��(�Z7!�醸��x\\6N\\m���&,�Ny\tq�\u0001�8ÃT��* ŏ�i�3��>ۨPW6�p�ú����z�E8#\u0019\u000e�uʴ\fD��b�7��\u001e�ř\u000fW�v-�ꖿ\u0016\u001c��\u0004}�r��\f^���@T��e��\u0003Y���1|�\u001a,,�ϗ��\\\r�\u0002A`�\u0001`���B`��% 6>�����UM,R�Y1v�g>\u0002�$e�֩5���\\\b%,�A?�\u0013�����S[��|\u0015z��I����}��h��\f-�CF�-8b\u0004~����\u000b�x��J�%��UYJ�X�8l��\u00120>1�u��^L?\\�6\u0007�E�F ��u�W\u0012E��\u001e��\u0012�Ȩ�#xQ��j���M��C�R���\u0016��]�r�y\u0018\u0011\"j�\u000fa��u�l3\u0005��\u000b];\u0001E\u0019)\u001a�>\u001c�*Qj>�-[�+0� ��տ{�\u000fH�Y\t��{Eβw15y���\u0017B�\u0001�é�x\u0017���\u0002�J���>�{i�Q�^��xMr���M�Nμ)�O��u\u0014ð\u0003��C� \u000fe��wo\tSbNg�M���@�<_V�D���DFڡπ�\u0005`��\u0006Z��k9�}��Bi�qY\u001237��\b��c�g\u0001��\u0019���:\u0016�.\u001a�4�\u000e{�<\u0003X��R^��c)>mra�bp��\u0012Y��f%竨�����{�N,���U��ѣAƁ\u0013Ā��\f�\u0014\n\u0017e�З%\u0018J�s�㈰��\u000e\u001c�!�Vxlѯ��2\u0003+)1���\n.\u0011\u0011�^z\u001f�Ux\u0017�\u001b�y�(\u0001���Ko�gIn\u0001�{���,ea\u0018oH�V{�:��L}p����.\u001c���Ց\r���j�Ua��(\u0000�w\u0011�q\u000e,k\\�Ɯ/��+����y�p�6�\\I�\u001e�UUc�50�\u0000�E�f��q�D�%1=�U�Bu�\u0002]�������\u001b\u001e1�\u0005��J\u0011m��=ڣ�s7.|\u001d/���\u0003����\u001f�b�\u0014\u0017�k�O��;�\u00183rZ�\u0014\u001c�d�ғ���d^��\u001eGꞓ\u0000縉��/\u0000\n\u0010�\r��a\u0005^J:�5�(\u0015�;wbg\u0014�[7�(v�#P��.�\u0002X/��Š\f��m%�bX�s��ےc8���\u0000��\u0017QSNg�\u0011\t�UUzQn\u0019d��$\bD\u0019��O��*1���R���f�m^lċ���3�F#�\u0007'�{s\u001a����:Fd��H��{�±��\u001b�cr��l\u0010\u000fa՞�\u0010�\u0005�}`\u0007��R��\u000f�I:�$gw�\u0012ekmGEEz��������*�^\b��#\u0003[\u000f\u001b����|N\u0003�֗�\"/{$\u0000)�=�J\f�ڽ\u0011Qr��s��u@LP�g�5U=���\u0013�f���KD���i\u0016���\t_�{7�\u0003&�V����wz��[\u0006>-����\b\u000e�v�M4���U\u000f��d�ٓ�����m�\u000b�\"��<\u0012I0f������t�p����\t�\u000f�\u000b*J\r;˴e�A%�\u0014\u0000��L�\u0011�t�(3k\u0013��<\u001e\u0016�{u\u0003Ei�^�9p�\u0003�R*��\u001a��j?Ct���<59�'%\t%h���od�i��\u0010\u0014񊜣>x����wM�D�g�ȭ��\u000f�AY���, �F{;rY{��\u0007�\u000e\bE�\f�K��q%�\u0012\u0004�j1?�<0�(���\u001e�_@�L\u0019\u0010d/�\u0018��%\u0006�.F����~@\t��\u0002&h�s\u0012\u0003\u0000x��eN\u001b\u0004�0\u001b���\u0017�{�@c:\u001d���,��\u0019|)���\b\"�/+?\u0012�}$/y�\u0016��c\u0015���9$�.@\u001bb[\u0011�Sb��A2�\u0014\u0014���Ej]��v2bA�gt����\\��N<\b�tI�)b���!��;S\n�{�J�v��\u0013�\u000eɥ)l)�$Cf�e���䃸�ǃh �����'d���uO�\u0010�h\u001f�Ӵ�Fl\\�\u0017��B���P�4*NY�z>��҅]ҩ&x���\u000b-�.�y#L`Wt��d\u001d^���V\b�\u001a�Ǧ^��\u000f�2�_<���j�\u001f\fƁ\u001a� \u001bㅳy��LStŖ\u000f�\u0001��W\u000f\u000bjO(�GK:a�>ZJ\u0001�{i�Pr�XX x��U9\u0019�\u0016�'>'l��l%�\\\u0005!���c��\u0001F3���I�E�m�„0h#\u0004�DY�\u0013P��ȋg�V�o��>f�b\u0005*����S��k�4\u0002��f���W?tp��QD$��\u0014p.�ӡ\u0007\u000b[��N?�̛H zDq�xK!t\u0001�<���7k��0Q��+1>����v�4��'h?�dE��w��u,6\u0014mD���/�{���::b�\n�\u0005y�v�YB?t�\u001b�������q�9�\b=)��p^�-���E�M�bYm�f��pTT���F�j\u0005{�$ݣ�)?DA\f�,\u0001���08z\u0000;C��-\r��}�x���Pee\rSTR�\u001d<�h#\u0001\u0016�*\u0007O���G�\u0013,�|'+�w|��(��,󿬵��\u0006��S��$\u0019��m�]�\u001bT�$X\u0016_�\u0013�3��5T�\u0015Q۳���K�)��\\�[�A��\u0014<��}[DCÀ\u000b\"^��&.�\u001bQ5ѱ\u001d�R�;�z{�䫞\u0011\u0007\r�To�:�\u0004��J�@�\f�L��\u0019�S�\u000b�\f�\u0005�\u001d\u0010�)\u000f�G��3N(�a�\u0000J«��E^:\u0018Ь;���\u001bl\u0013@N��fZlߴ`\u000f�2\u0005��U����M\u0011\u0001\u0000�Mr\u000f����&�-\u0013<�r8N\u000f�\u000b`�~�XWv�P!\u0010�Y\u0019a\u0011�D�'\u0001\t`{�\b!�S�f\u0005L]Zvr\u001b\\\u0012���_e\u001045_�L����\u001b�m�,�\u0017�\u0002�\u0017��*Ը����%Ȅ���8�f\u0014���Fn\u0003k�dK��@n���\n���̓QICZ\u001c��[���\u0013�o\u001e�\u0016�{#���\u0007^;���r�f�U䶹�\u0007�4Xc�Z5�\u0017�۫!S\u000b'I�\u001eE��\t\u0005�E,e\u00019�}��I@6:fJ�=I{���qةs^C0���\u0017��\u0000Lp���s\u0014�\u0007�\u0011��Iͪ�b\u001dF\u0017w�%�dR��UTM��O�\u00030\\�!'\u001aDA;�զ�bv¤8\t���\u0001Ӎh\u000ebf\u0012$���?���\n�2)�A��\u0014P��|�O���\u0010[��\u0001��>0EIo\u000f���pj��0�a\u0017I��p����D\u0000�� &0)�n\u001dJ�����1W����\u001e��_\\\u0002�\u001c�^S��W��{Ӕ\u0001�\u0005��k�\u0016A3���ݱ',�\u0016�����x�\u0017��o\u0014�p�UA\u0000�uӊ\u001e�\u001e�\u0005�1u\u0002F+\u001a,��t����K�\u000eKC�ؕ\u0012Sv��e��xB(��^(�[DB�\u001d��L�}-�.�Foj�xi��7�\u0018���\u0019z�����npB��ë%h^L�!O�\u0003������n�e��\bu\u0004��?��s��1�&\n�\u0018�p���\n��&�\u0011��\u0014\u0013\u0013��K΂k|9��r8��7�P�hK�k�A(�\u0014���I�\t�Xz\u001a� \u000f\u0005����x�Zh�����n�\u000e���P�\fQP\u000fЉ\u0006t���t\f˩!Oϰ\u0016���MMY\r1\r3)_t��f�����\u000f쩻��\u000b�ö�\u000f���լ��wf\\y�!�\u001cO\\6�|�oA\u001aN1q8��^=�y�`�\"Y�]�q\u0005\fLg�<���1�I#�0:ֽ�lOGS1;*��m���}\u001f�ߠ�-J����\u0019]*���n%������x���^{C�����zg˭�&�a\u0013�o\u0012ͩ��^e��ە\f��ۂ\u0017���\u001b0�Ѻ�G���wˍ�B�\u0016��I��\u0018TUc��q�\u0015�����h��\u0000���Y;��6�1��Kj�{��A&�\u0014���۹C6\u0004�M����6��\u001c��ع��u����;A\u0003���Aa��\"�\b�Yi�Ŷ]�>����)�*5��5k\u00033�iۨ$\u0011;稕'��\u000e\u0010�%�5Ƅ�nO�\u000b�\u001f\n[\\k�L�\u0019�i�{�\u0000�M�>�|Џ��Ÿ\u0011�ӳ��vS}@\u000f���7]�)r\u0004�\"{����u�k^��e�:���U,3���z� �d#\u0011�\u0017��\u0004�߸\u0005�\u001a\r�N�w\u001d��`.\u0000B\\��c��򢾙�D�f�#�!(\u0015t�+\u0000�*\u0002�:\u0001���*�?�\n��Z�8�����\u001a\u0000\u0005\u0003��AxU\u001b�f,*p~����\u0004\u001e�PJ�7�\u000e2�5��\t�ĭ]\u001e��ij�A�\u0014Ȁ�{\u0019<�t;�S%��\u0007hֆ5��\u0007�\u001aB2���Y\u000e��;��^\\˽\u0003�6B�����>x�N�#�4�^���x�2\u0018���u��\u001b��Z�:��m�\u0011\u0010,�_�#=Ж5\u0018�džT�`�,N��1\u0010(�\u0004��z\u0004\u0011�\b~!>L\u0001��7L��\u0016�C\u0017�\u001b\b3b�C�\u001d\u0010�vN\u001a�C\u001a�\u001c�\u0010��Ϥq�}�\u0018�����A�i$\u0003`�an���T�\fV:�Ԧ������\t�}�HR���_��+\u0015�\u0017!����\u0019}\u001e���r\t!A�N\u001f9�<\u001b�k��}w���~��\u0004��~\u0001�-3\"C��\u0003�mM�(S(�7t.�ɼ�0v�Fyy�$\u0002I�I��h�\u0017���l�Sa$\u001aʝ\u0000�\\<��\u001d�I\u0014LG�\u000e50�k��W#��\u0019w\\�9\r\t4�\u001c�l����3�cM�i�\u0000�:\u0006\\�\u0002e�x�(0Dn\u0011C�x\u0002`�R\u0011��`���h��dC�}Y\u001ax�(�j��KЬT�����q۔^�i��ٗ���!\r�b\u0016E�;\n�V�?�A1�\u0014܀��&\u001bD5�1��\u001b�\u0018 ����i\u0002\n�5i�+�=ʦ�\u000e3\u0019A�&����RT��R���\u0001��\u000e'DEʎ2A��$�\u0005��qd��@69�\u0015��b�T\u0001X����\u001f�57�C�s^��\"b�ND+���\rZ��3,����R\u0019/\u0007�5��\r�H,?��\u0002\u001a�^\u0001]Њ�C:��\u001f����4^�Π!��}3\u0006\u0015�\u000f��Z1v�)0J�5��q͡��^��`\u000bU铡�\u0019#���[� �W$�Hm�Z$\u00040�-��(��\u001a;����s שMkXx��ZjčW����\u001d~��X{�z�b+�>\u001b��Y\u0016�+���\u001f�/�{ӏa�?�a�\u0007�����]��Q�>E�G�1�A0�\u0014���X��s$��\u0006�˟7��5\u0012w�N����\u001c�B�Dj��@_鬱�Dv�?LT����/j�\u001b+^�{Re���Їw*\u0012����l�%�z��V\u0013��K\u0012���>E}ߢ�Ԫ�\u00057\u001f���-Ci�\u000f���v�k�v�\u0013T\u0004�O�z��f\\\u0001\rV\u0013�j���R\u001eڜ�8�)�o�3�rP�\t\u0014\u0014���\u000ew�V\u001a�n��\u0011��}���Gіrb\u001d߱}��Y�\u001c��@\u0003�\b^ڴ��t�P �/<\u000f]����\u001d3\u0005��\u000e���+�\u0016\b���Zܾ�=\"O�`,�H��>\u001eR\u0017����*\u0017y%ʒ�b:ї�3�(�˦�m\u0003��\t��ׇI\u001b���@O��Qwҟf��T\u0004ѣA2�\u0015\u0004��X�\u0018�Y\u0016w��Q�s�5\u0014����!W�x7B����}�\u0000(�!g\u0013\n+\u00055�/\r�o�T\u0000-�ɳ�\u0018`�-�h�W�����z�g$ �Q�\u0012D�s��I��kj���pPɒP��y���4S�\u000eS.����d��\u0003�\u0004��d� \u0004�J\u0006F®T\u001e��dz�\\�=Ul�����!U[\u0010�j��\u0012]\u001b�\u0013�|p1�8��\u0005f��^��E���G,\u000505�\u0014�m\u001bN�\u0015���m���\u0002\u0012J\fUp�����ፔtC���%ǹ�5I��\u0003�t�\b�\u001a�98L�+�i\u00071��行~\u0002g�z��\u00150&�gf\u0002O���\u0006\u0001}u�1q2\u000e�M\u0014E��?%�Xݬ�}\u0018\u0007�=A\n���_ ��A)�\u0015\u0018��6V@��\u0011�9r��\t���z��2>\u0018\u0003ɹ�u�Q�ia!�k\"��n!ƞ����lL�r��~y@\\z���g�c�'�\u0001���*Wѹ�|1m�\u0007��\nS�T\u0017���\u0006Na�����\u000e�\u0005ID����T�8�[\u001a�F�\\ݡ�\u0000[ٛ�q-���G굤���b�^)\u0000�i\u00000\f�L`o����ږ(\u0013�:M�B��t�b���b%���v>�q�hKIv�Om��Lэb̘�\u0001B�A��f�Yt\u0006�\u0002�)��\u001aH�>�ܶ�`.\"Ku�?\u0004�Yz\u001f��3,�\u0018K�E�\u0005�\u00172h\u0004�����ӓ�B6�Uy'|$\u0002[G�A/�\u0015,��X�J����A�ou.��4ka�(�~��I]��&�PJ�e�m�y�`m´������Y�\u0010;�d�\u0005�\u000e�$!-\u001b\u0013��itK���sJ�|e�<�8�\u0016���J���l#�|@��\u0004��8ms).p\u001c}\u0016<�\u000ev�\u0016�:2�D-Te/f́Z��,�O��9�?��JZ\u0005�č���\u0014�rz�`4s�S�W�cȓ�q1��2�_��k�瞽ȩ��g��LѬ\u0007`�\tQ\n<ל\u000ei˼�7��^��y�\u0012�\u001b\u0016��+��_�rOZ\u001dL^u�j?�.`�x��#��/\u0010�r�o�'\u001a6��J\u0006�l��Ѐ\u0004�τ�G\u0019-�\u001e��<�F8(�!ռa���I��A.�\u0015@��l�&3\u0015���X�6���\u0015��9ej\u0000c��Lv>>v\u000b�H��!�)���e\u0013�8hX\u001a\u001d��\u000b��p;]B\u0010\b�I?���j�0~]Q���F\u0007��'�>��K�jO򤘠��ÿ\b�\u001e�\u0010J*�<�:��\u001e���P�\u0012��?�r��ӿO�n$�\u000e���\u0006�\"���y3љ�l�\f�O\u001es�S\u0017��=���C��\u0012�^�\t��爡0q��P�p^�C�;A+�oy��7\\�ҹħg�B�I�R*Ah���\u0010R�i\u0011\u0013E#\u0003�\u0007���OJ�S�Ͳ �]ɉc�%\u0001�0K�\u0014,���\n'#�3�I0�\u001e��lk��\u0006�\t�\u000b�\u0019���c1&�;�|h<���\u000e����A��\u0015T���MQ\u0001\u0011�\u001ct��\u0003z`�\u001c�:޼[/�,h�*0��\u0012i&�^ �\u0000\\�6��\u0006E\u0001@\t��CW*>3\u0018�Y\u0010j�\u00164תMF�Y֯��)��]�(e>���\u0016⯞R(fu�E+��\u000b�F�'��`����#\u0011����mS�O��8N�����Z�����D�Q\u0015mr(\u0004����pN;�yC|�u��\u0013K#�e\u0000�q�\u001b��Ѣ/6\u0010��NiTqɭ����Xkv�\u0001�Z��\u0002\u0017`M�\u0019\u0005+J�\u0005e}���\u0012?��ʫר����4)\u0016�j��}\u000e`�\u000f���.s�;�Ns\u0003�\u0006Io�\u0014\u0006ON�\u0015���K�UDa\u0019Z�1�~l\u0003��$\u0014�����\u000b�$YnɣA5�\u0015h����d� �\u0010���\u000bl3��p{��-�ja$j�\u001b\u00062\u000b��\u000b\u001a\u0018��Ol\u0000�;�cE�Z�~:~X�7.�\u0003��wZ'|OQ\u0018�Gl{\u0001��;j6\nW�O�R���G����\u000e�\u0014���9R��Qb�\u000e�|цG�Cs��\u0005a1�Z�F돚\f�\u0010:����2�c�����%�>���EK4�l\u0015��7�\u0001��@��\u000ft�ՠ��\u000eM��r��Z\u0011��\u001aF+�\u001a�,\"*\u001e\fq$G9�C�n�]íJq��;-��p\\��ط\u0018:�f_����pX8�7N�\u001a\u001f\u0005��W�^��P��*Gq'@F;C*�\u001e`z��\u001d��\u0004M4J�����N��4pdRD3�RѸឺC�~6ɣA,�\u0015|���р�����-Џ\u001c=zyf|�\u0015U\u0018t\rg�\u001d�߳�^�>�\u001a�oե��X�Ѵ�\u001cj�ɹIy�r��zŒWq�:��X�ߦ��7�g%�+V�3�\u0013�\u0019.��\b��$&��U\u0006�\nH��N\u001a�\u000bN�y��1�\u0013��>�C��\u001c�\u0014 >�\u0010{\u000e\np~�U�+�d�E�k\u0003�@DB\u0011z�`gS\u0015K-,���o���WUHV3�=.�!��b\t�\u00164�$?zy���_�\u0017(�\u0012O�\u0018\t�\u0002�\u0005�?�v��\u0019�\u0011G#�GA\b�v�.���is/\r<��n��S�/ڸ1Wwx\u0017Ԁ~6\u001bڳ~*v\u0005���D �F\u0007\u001f�\u0002�a�\u000f�~\u001dC'���.�'T}��ɣA:�\u0015�����\u0014)G]RoȢIzQH\b�\u0019\u001eD0@N��\u0014;c\u001b{�ʣ�\u001b^�%��\u0018�\u0000���Y#����o\u000e�\u001f�f\u0004)(\u001a\u001a'>\u0005y\u0018�XM ^\u00196��d�W�@d�υ&a\u000f�H��>2nU&\u001c\u001d`\u0010qй�a�\u0002\b|�@\u001fQ/5\u0011^b��D����H�\u001b�c�\"��QN��\\��^\u0000�oU\u0018��\u0017}�4\u0006���\u0002u�w偍\u0015�m�4��Uc����jn�����\u000e�\nDŽ�u�w���y!�ڨ[�ad�FF��G�.��\\�����aJ�{�m;��W\u0004\u0003/\u0004[\u001dc=�\u0006�f\t�9h1W�T��֖�\"�\u000e�I��\u000b����I\u00180������\u0011�F\\\u0003��7�R7m'[qg�X�����x״�XɣA8�\u0015������'��޿5�P�*B���G�2v\u0004K`G�74��\u0003�j/���m�����\u0007���*\t%dx�ָ�\u000eR�\u0018\u000b\u0016�\u0012Z���H�w\u001c��Sy7`\u0011�\u0001���L�N\u0015Mjn�x���\u001c��\r�<����M\u0019\"�$���-�\"�\u0000�\b\\)�=�\u0010��\u000e�9\u001aiN��擢�Z�!ӫ��\r��7m��|�\u0006~B�\u0001:�O�a\u0017��cu��S���z\u0003�5YU��\u0015�񝁫����~\u0003�}ԇ�]i}�%���9\u0013\u0004\u0006\u000b��\u0017*�H��U\u001e�,�� 0��`z\u0002g\u0006>�4���th`��\u0016���s\u000f�%�\u0010Z\u000f�7�+�����Ef�]�x�\b��%�\u001f��uI?X�\u00168IA\r\u000b{Z\u0012�bɣAn�\u0015����\f�m[��\u0001�2�~\u000e��~�|�����MQ��4�T�%�\u0001�$�hQ�.�c\u0013�A�=e�#'p\u0017?Q�\tybB`g^h�Tp$���;�}a���P\u0012F��B��Nm\u0011�5\r(+�3�\f��&�Ÿ\u0018\u0016�c�������\rШ�<*��g9zJD�\u0001�X$\u000e\u0005�0�\u0000L�P�?\\����)�P\u001d���W+=�����\u000e�t�\f=�nm5���[��\u0004*\u0001L�F\u001c��\u001f�(��s�� ���Z�F?I\">~���>��鄒FPׄ�\u000fW9>;'\u0007\u001a�\u00029t���ٻ\r�q�>\u0014�G�\u001a���!\u001a�.�3c\u000b\t%\u0014\b�\t\u000e����G����̓+?gs�CE�ѪP�V�R,C��\u0014�h�\u00066ɟ�޻':b�Z3�'��\u0000���U�\u000bz�\u000b_|�~\u000f�<}��\u0012@���dRu�?v�\ri�ɣA�\u0015̀�}b��\u0003{�|\u0016G��r����x\u0002��%ZӉ�_\u0000ڛv7�0�6��(\u0018I��'m9�V�j\u0017\t�<ƽ:�\u0002\u0010�a\u000e쓜W��n�I�&L/\u001d��V\u0019ߟLx��\u0010�\u0016H#�\u001f�Ɯ@Nw|�2\b\u0012w�n�Ǵc���\u0019�َ?��lf��D\u0003\u0004\u0006|A&�H���\u0014a�t�� ppa�ñ�\u0017m.Ӎ�/\u0015rs��]02���|<\u0017���F\f�(\u0003\u00166�\u0006�\f�:��|�b�;�Y�,\b�N���\u001e����Jt\n�Ӄ��\"V1���ק\u0017�f>sN��w�P�\u0011\u0002� #����\u001f\b�4\u001f%7ޣ3�9�c��V\u000eeg�5�t����3\u0011ą����]�L͜3�Lȸ�eQS�\"�)X��\u001f���j\u0003��TH�)r���l�$IX�%V\\�o}Z�\u000b_dM@\u0000p����a<`S�v?��\u0011MJL�(�V\u000b�\to�j��ǧh��;�%\b�$�.\u001d�P���W۪ |�e��\u0003�2o�PAz�R�+�}�\u0006!N�\\%'R�v�Yv\u0019��I?�\u001ely�\u0003�J\u0007f`�:�\rD�T*V�Y�I�Gvf~����d?�� ?v��幋�P�e\u001d�A\u001b�\u0015���&�Ve��1g�I�=���\r\u001ep�����o�\u0006\u0016���o���#\n����n��.A�����5QA޳�,��HR6��-r��r�v����\u0005j�\u001d���6J�\\�\u001c翤T���љ\u0019#� ���\u0007�2\u0003�\u001cTɇյ�J����>\nI���@:�+!朼i��8{Iś\u0004��L\u00103�\b���3U-??T��C�\r�T�M��K\u001f@�HY?����>U\u0014��Ï����\u0011�YB\u0014�\u001b/\\��I�i=֞aPwA�7\bJgH�\u001f�r��\\+t���6�\u0019�\t��n�9��E K�r/ュ]*�����i+e\u0002�&�3(,�A\u000f�\u0015��/#��N3gU\u0016Z�|,csA�BD\u000b�50Z�\u0002r�u\u001b`�Ⱥ>\nDF�\u0004�^�KH���\"�=\n*@:\"�)�\u00131Z��X��%^.N�\u0017\u001c\u000b*�3<�0Uߡ}DiR_z�\u001c�\"=��\t\u0019�I��,�SxLyx��H\u00136�P\u0017��I��P���0I֫J�\u0012��v@�q���\u0004G�a�eSJ������8̯��*\u001f˲+\u0002;\u001am74<���p��\u001a��۝�߶�\bD�X�{*�~\u0018(l�-�Cu�J\u0003߭�l\u0000\u0007\u0002\u0010�u9���V��o����,?O��\u0012�s�68A\u0001y�\n�;\r�v��*�+�\u0006�un�cT\f\u00016�iTx\u0002�\u001ajp\t�ӊeh���!5\u0012 ���\u001f��a��(D�}:�����77��\":��ߗuƗ��\b�\bۨ�&E��I�mL�\u0019\u0002j�~\u0014<$�\u0019�s\\.H�}\u001e\u0005��}E;o�N\u0002�\u000f`e]a)�i��u��XⰗ���o���=٬���\u0003hg�dl)\u00159�\u0019Z\u001cm�\u0007ˆ��aa\u000f�z�\"0��v�\u0005t۾h��#^�|�6\u000f\nHM��1����\u0018[�F��d,��Ĥ8�R\n\u0007�R&��nT�a(��#\t��A\u0006�\u0016\u001c��1��hE�o.0�t|>ۋPE�>�-N]�\u000b@\n<�!�֖�\"\u0007��y�U���!/�@�!\u0007W�\u000f2T���F!!��\u0002����Z�\u0018�Qp��N��f��\u001a\u0018�_�\u0017��x&�\u0007��׍�Q\u000e*6��\u0004��\u0001!\u000ef+�H���\u0004j�\u001e�C�����܊*3�\u0011lE�IwW�CM�\u0005t��j~@f�C�Cp6�\u0012�%?\u0001\u000b��\u001a��z������\u0016��Mq�z�쌛-� �o�3�A\u0000�\u00160��.��\u000e\\ZjG��j9�r\u001e���\u001d���\u001a4���aak\u001eȐ�u\u001ef@�:�;c�\u001eG��Y\u0010h\u0016��b�\u000bB(����IN:.d\u001c��ͬ��^l������\u001d1���.�w�\u0002�y\u0018�\u0007Fx&&�c�ZQ�R޽M�i�M�U�y�-�\bq���\u0006^�wm�r��w�͸\u001b�#�\u001be\u0000���3g\u001fإ\r\t.˩���\u0002�\u001e����/AQ����'\u0012P�X뫁CQ�t�t\u000b\b\u0011�-�\u000b\u001elz�\u0001\u0007\"�g���M\r�(\u0002qp����+Hx�2~k\u001e��y?��>n�V��\u0018�E-��A\u001f�\u0016D��L�!0�-��C܄n�fbR��q�)�{ɐ���2���\u000e8�`9iL�3�,����\u001c \u0004�\"G���t]\u0007A�5E��\fQg�81��+��\u000b��o%+:�sZ\n<�\u001fā\u001d�S�p�I�z�+A)�=��\f�|\u0012�g4R,C\b-���]\u000b�8a �����\u0013�\u0001��K\u000f�`�\u001f�\b�i��\u0019s\u0000����e+��U��9��\\c�x���\u0004Q\f�Jh7\u0012x��\u0016ژ����y�� �C�/�?\u00076BW\u001c��\u00147���Ǧ]��C�\u0005��x�\u0006\u0018ƾܡ��\nx��4�C}����w�~?87G\u0006\u0007�j�\t���wJ�[oɆ~LdV\u0000�A\u001b�\u0016X��.��0\u0019�xQ�'��ђd9���\u000fa]��d\u001c�]\u001e�\"��!�G\\Ƀ�\u0002�����Hr�\u001eT�.桀�\u000b�]�V��]|��j��z�y�v�p\u000eE���\"Q��\u0017�OV�\u0013&�W�\u001aY�d�)�Ϙj�?乨2�*`\u0000�s�¯�Hm���ni;k�G�R5�a�\u000b�.c&ZI��\u001e�=eh�\u0013�a\u0016\u0001N�\u001cu��E8���`��\u0005*����:l�<\u0015�\u0011D�^��)�jɜ\fH��\u0016��5�Rz���|�qbS���\r\u000e\u000eGg\u0006'|�\t�HB\u0012at/��� ��\bj�s�ꭈ\u0002�rs�mem����h�\u0012\u0006����D-��A\u0013�\u0016l��.�:\u001d;|��{B݃|�4�\u0019*M�'�m\\\t)\u0005�\u0011�G]N����[�A���f(=\f8����\u0019Q~\u0011㄀\u0006\u0018g�6Y��\u0005�\u000e�\n� ����\r:�\u0015)���i����,�g\r������@yr2�\\�t\u0016$ɒ\u0016/�\u0006��A\u0019\u0011�q��}��\u0010�º<շ����s�\u001e��}5ߵ�\u001a\u0013J\u001c�\u000f\u001a�R@嶴$�k�]�O��k\u0014�\ty\u0012��{�m���whZ��$�l!��^���+(�sM\u001d�m���!`X4f\u0006�Ft�6\u0015���nؠ����ı���\u001fim\n�\u0002l�)0�<�V\u00061��vɶ����X\u0001��A\u0017�\u0016���-�$&\u000bĔP���*@\u0004ϥ�8F� ܭ\nia�l��j��Pu�G�\u0018Q��ݰ�}\u0018�����}���\bG���w�4B���\u001b�R��8d%dع�\u0012ى���G1���~QY)\bj\r�2G�q���ý�\u0018N��˒G��j�?�y.��&\u0004��oA\u0014\u001e���t��,(����:��]���a#\rF���)�n����\u001f0��h�\u0016�\b�Se������LGf[�\u001f6�+�G��y~�HF?��d��e\u0003@��:�.PD\u000fu��FZ2\u000e\u0001.�\u0011����*A\u001f<-R\u0004�T�����z��s�\u0019� \u0004���vF�\f,]\u0010�a�A\u001c�\u0016���*�R�Y=g�eN�\b����[QL6%���bֈ\r�;\u001a,d�t`S�q����\u000e\n��\b4y�:o���Gu]�E�`T\u0006�_�b��o��h�\u0002~'\u000b{����\u001d�\u0006�H_KY%S�/BM&S�!���˶o�׆\u0002�[\u0018K���\u0001�O.|�\u0007\u001e�ڥڄ+UF���ƕ�t\u0003\u0000�KR��%\u000b�M+\u000e\u0003x�A!�\u0016���.\f�\u0006�}3w��#5�\n��C\u0010��P\u001e\u0001\u001a\u000e\u0011\u0018��\u0005T\u0003@�䟲�ڵ���\u0007),\u0011�:��\u0004������f@N�Pek�UBⶅ|,���X�5\u0012��0^=D\bn�H\"��+M��`\u001fE�Ak\u0004SƬ���pJ�Hw�Н��4\u001di���U��\u001c��@��x���&P�`M6P\u000enĐ��5Զ\u0019�\u0012��\u001c��ݴ�\u001b\u0005�|\u001eF��\u0002�4���EnR\r�X�ȵ�!�ҩ�w-(\u001bհT�3}W\t\bY\u000fU�5+��=O9\n��h��g-�;9�a\u0011I~L\f&$�|3���T��~�����f�j@�C�A>����^�u\u001e�s��m��\u0000��A �\u0016���&��wVn\u001cC�7�KPr�.�p؏o_\u0000MC�9\u0005L�\u001dQ7\u0002���@Ⱈ(�H\u0001<5!�t������W�ҢE�\u0017 1>�|z�\u001f��\u00044�%�TZ�.,\u001d�WW&%�F�z� QRp�|���T�|�����G�R����&V\b�|\u0017�\u001bN�\u0003޿o�\u0017�pw�`S\u001c��\u0018\u000f�Yl\u0018i�&���+�\t��C��73R�r'��\u000e�M�\u0019�}�>�\u0002z>��,\u0007�~�`9\u0006�\u001d6�0E_JE�\\\u001c�:Fl��\u001e���\u001c�ߩWV�3]\u001e�\u0019�x\\������Z����^04�A\u0012�\u0016Ѐ�&�܁y�����B�R\u0005j\u001a��<\u0000��E��كg@��\u001a\u0011\u0007�\r��\u001e\u0016u���H�`TԷ�l��\n�\u001a��.3+��\u0005�\u0001\u001b�k\r���_�dR���z���\u0015TH\u0007d��\u0010|�ǽ��\u0018��TÔ��*]����\u0012�1�7w�<ø\u0001��6�6m\u000fG�|��F�\u0019�٘��?w��4\u001d�\u0005��\u0012\u0006�J���\u0007���RH��$��?]8U�I�LɊ���$�\u0007�=����W3�iǮ���\u0004���BX�Գ%cȥ�j����5�I����\u0018�Pd\u001eU\u0018��Q}���gsI�~�-w�v�S�(�0�}�A\u0003�\u0016��.\u0000~�n�\f�վb�Rg�]\u001d[��*��t,<\u001e��᪕�����\u0015���2���Z\u0019�C\u001d����1'��8�P|Sl�\u000e���\u0018u����\u0011e\u0001Ԕ\u00132\u0007��6��o��zޣ���;Mԩ��\u000e/\u0003󫀁k�T�*�Vp��%���$y�\u0017Fr���=��T�#6\u0011od>e����l��{+�\bϴ�~��$9\u000f\u001f\u0011-�\u0011��%q����S�\u00062w��;)4\f�)'��j\u001d�j{��%\u001f� �wʁq�L��^;ؘX\u0012x8(�3�F.l]��wDj�\u001cr+��x���ᅣ��P�t�f(�-ニ\u0005��}��K�aPt:\u0013\b<��H��'���Z�^\b\u0014�\u0012���\u0012��ה�'֖�5�� �_\u0006k�˧ũ��\u0017�*}\u0001�\u0000%K��G�f��F����X�RQ$R��A\u0001�\u0017\f��-�5[�d�K&�$\u000bڸ׭��ofM\"�)i:hM�\u000f���<\f�+��\u0017���ꙺԠ�i8��ө���O�wL�9�\u0017{t\u0019N�1��R̼%p�G�;vFҋ�.w@ΐw֠���+c���b�\u001c˗W X�.����u@7��\u0000]�5���\u0012(�\u0000J�\u001bA�-nI\u0003\fR\u0018�^�^���8vsi^�A��T�.�\u0002\u0019p�:\u0019�\u0001\u0005�ٯ�>��$�\u001c\u0017\u0019��\u0011�~\u0001�jΈv\u0013�f\u001c��V�I���\u001f�*\u001a\\\u001aNK�����e��SC-\u0003\nO\u001d�\u0014�\u001bNe�\u001fA>M��N������E��\u0015�۾H��%�>���s��\u0005\u0006ݪ\u001c!�cQ��\u0004aُ���iW\n\u001e�,T+em�8\t\u0005%BuY�A[�����M�@\r�~��Y'9[u���]���H����\u0007d�yM��sl�\u001d��.��4\u0000[���;F�&�p�׆$g!)�>�\u0006�T#�x0\b�şlU`���'��ˊg�N\n�΄�HӁC�‹ү\u0000}u�l7\u0001��բx�=�s$��$�@�\u00174��-�$��\u0007���\u0000��\u0015=FS��\u000b��\tM�]��\u001d.��m�1�W��$�2%G��\u0004\u0017���GW��\b+W���\r\u0003\u0005���\u000fk\"�&�\u0013�jߠ\"���|)L=���O�$��$\u001fj���*pDr�\u0016k��i�f��S=(��\u0005�І{��,(u�\n,��ޟ�ڜ��\u0013\u001b�=�7�ol��}T\u000f�/�:��}��%�ヽ9��_�op�j�l!�Og9C(%�mT�\\li�0���o��s��#�g��\b}{\u0007Q�t�V ���]zԣ@��\u0017H��\n%b�\u001f�?�&B\u0007\u000f�Grw\u0012�D\u0017\u0006]��\u001d\u000e�J�7W��n\u000e��1�lu���}l��2�Ded\u000f\u0007��\u001c��\\�Y������\"�-/�Ư�\u001a��=�=���>���\\PcOS��%x�CVC��m\u0016յ������5��\u0016��\u000f��!F��~�օ섃ˎ95�PP\u0006-̼��z�&Du��\u0011�\u0017sn���\r�x�\u001e8�^\b]/y���\u0017�$��|4S�OT��\u001f�\u0011\u001b��9X˛�=�OY\u0010�:�x\t��qdk�\u001f\u001e��V��7R�հ�3N�e\b�A\u0005�\u0017\\��.��'|Tb�2\r�\fs�\t���-C��t�O|\u001c2��\"�\u00126�\u001d�[\u0017�������M+�C\u0004\u0001E;����+��YU����ֳ\u001a���`\u0018�\u0007\u001e]LM�2L�JK8�vM{\u0016���)I�7$\u0013�� �\u00031V\u0003�~\u000b\u00048�e��W�J\u0005�g�|\u001c<�N\u0010^$�$���NT�o�P��\u0012�\u001e��輻��MR���\u0001�ٗe\n��̏�\u0001Qř��\u001cOj��%>��j1��qs�\f%�&\u00020����_o�q8�r���Z+�pLE��\u0000�/Y}&Қ�ȼFp�E��I�\u001d\u0010���_�o]�A\u0011�\u0017p��I`P4D���':�tz��BaG�\b�tC��7l�p��-h�]-v��\u0000w�.���%N@�\u001b\u0017#�n\u0000�k&A\u0004�§��<0\r�~���6\u000e\":{�Nzo\u0005\u0001!+�wv.:�̔�Z�}��\u0017�\u0001nœ'#�+��œ\u0005\u001a��\"\u001dY�I���1FB�\u0017(iOڻ�,�$ �~�?�����&�\u001du\u001d���e5�\u0005�i&�\u001d�\u0014:aq�W\u0019B�L\t�Pd5\\�Q��\u001b\u0014��kF�\u001d��C��!�\u000e���f��@\u001a�Q8l٦S�E2��\u0001\u0005�H���\u0010�0\u0016_�g��\u0004��_�_�z�xrtX���EǛ}���(�A\u0016�\u0017���.�\u0010�⛏\u0001\u0003���8)�A��\u0012ݛ\t�\u0004\u001aU�B�HY�Y�R�#�_3X#�H6`6�&\u0016��3��4Q����v�p�\u0003�}��q\u0006�\u001c\u001e�H�uF\u0013_�-��n�\u0018%�\u0015\u0000\u001dYJ1\u0002\u001c&\n.�Ϥ���P0Wt�ȏ�)yc�n$��\u0007�6\u0005����A�聺>��0���n]E;\b\u0007>�\u0001\u0019\\|}=}\u0016�/�\r[��:�Ö\u0006���9/�\u001bPZ���\f(\u001b^[s,\u00054vi3��,R�H�,_� {�;�A,�\r��\u0005��z�\u0006�0�C\f��R�#�d&I\u000f��\"\u0006�&�&\u001b��Gk�:�\u0018���4R�-��?/��A\u0014�\u0017���J8'�5�&�.��\u0011�Z\u0018�yK��.�r}Px\u0016�\u0012\f�J�?�*!�-U�Ϣ�\u001d��{�G�WW�+Jn����\u001bCi���Ɉ\u001fd\u000f\u0004�4�Λ�'\u001dw\r\u0007�j�I�\u0013�����?z�e�I��1�H��rm��#\u0001�A0�\u0006�\b�^3\u0017:��ST�\t$�\u0000��\u0002\u0013��2�\u0016\nL%�$\u001c�\u0003�qm�\u0011�\u0004d�e>}1DB?\rF�3��1�����\u0002]+o+��\u000b�/��\u000b�A>\u000ba��\u0006���Y�]Q\u0010�Α�PH���\"�Y��d�'���k��\u0014�\f\u0011D~�\u000e'ƅ��,Nҍ��2S�B_�����d��\"tx�� \u0005É�*|�\u0016�\u0018�\u0000�.��+\u001c\u001f<���dF�g'�\u0016\u0006\u0014�\u0010K�Rm^\u0001�\u001bN�2�\u000b�(¿U�A\r�\u0017���0_$&�\u0007\u001e�O!\u0003\u001c�?)q-\u0014R\u0010\r��zxE�ܣ��\u001c\\\u0015\u0012�o\"�ܿ��Z\u000b_\r����-���a-��H�\u000e\u001c\u0016�k#r@V\b\u0002=\r�\u000e\u0003W-o����\b?f�A\u0011�\u0017Ԁ��}��\u0016\u0011\u0003q\u001bs�f��\te���\u001b�\u0001��:��\u001aw��DW�>BUI�;�gڥM��\u0011���rޝ\n{�L[`\u0016+��ވN�v�nIݭ\nx����Z-\u0002̀�RP�\u0007WO�l�en\tX��|b\u001b\u001a�S�� a���t�ཊ\u0004\u0004Kd/�l�\u001edw�D:*����[W�\u0019�W\u0010���\u000e\u0006.��\u0017- \u0001A\u0005y���8Y���u!�\u001d�u��͏H��j,�\u0003+��'���b5��6>��e�O�!8bw\u0006��\u0017�M����\u00042y\u0018O��%K���u$�B\\\u0000�V�+�\u0003���/�/�$\u0000\u001c�큛vtIٵM�A\u0007�\u0017��0d7\u0003if�~\fӰ�n\u0019�=Ô�<$̄\u0011\fi�C\\�G�\u0019��\u0004�ZZ�\u000fe%�w.��\u0016�\u0003�\u0014ʈ���\u00198B)DN�DϏ�&\u0015��\u0002\u0000\u0005\u001f��lp4�_\u000f$m\u0015���\u001e6\r�|�g\u0011\u0012��u\n\\\u0005\n����>�\u000f*5TEQ�A2�\"\u001a�N!.�W��\u0018�-�n!��\n�s��/l6�`���\u001c`M�51g�{\u0018\u000f��>-ߥ�ag�\u0014������}eYwI\u000f\u0012�\u0010ϻ�*C�\u0019��?�\u001d��w_���k�DX���\u000bWD�\u0010\u0001\t�\u0012\u0010�2��ܒJ|;�\u001dJ��￴����I��L�A\u000b�\u0017���J1ķO��TP5�+�i�nzHY\u0011\u0000�Q\u0006�C_��[g\u001cUE\u001cP�]/�`zj���{hނ�\u0006\n�f\u0006i\u001fEf��B����\u0012ar�ʏ�qIз[��DF���>���V���\u0000ȋw8�T5\t��\u0003v�N�ʤפ�\u0001�.gkp�A �\u001by��B�,�6\u0010\u0016_�C���)�҅�>�%D�\u000f��ѥ��4�yt?��_�0`�`P�HJ3X�ahg��Gb\r��\u0000B��=:�(\u0010�\u0005g�A�L��o�z�\u000e���E#��#�cØx�����\u0003�٘\"���[\u001d�j\u0011\u0002��\f�\u0000���w/�3E$��P�?�Q�@�������O\u0002R\u0005q��-,W�~��\u001d�:��m���A�\u000f��\u0012\nO\u001bf�\u001as�0�^=(�5N�����wž�)v/l%˶�dk��V��[�A\u000e�\u00188��\u0002\u0000�&5��;�\by��j����)Q�tSR*� CøC\u0017���\u001d�&\u000fx�i>E�Ȩ+�~7�>.�Os�:Д\"\u001f���\u001aKlQ�����S�p��ZH��dgm�^�1�(�D��U�b\u00015�O2`T�GH\u001e���A��d[{��Q�^Q���!\u000b@��S�\r�\u0004��[m��\u0007�C:�Ͼ7\u0012\u00189\u0002��s9!���\u001c�`�KZ�E�^A�Qd'��]#=L�£\u001d�\u000be�\u0012\u0017�\n\u0013�)�l?��@Q^��UE\u000e��QQ�AJ[�*�\u0002aЈvE0���\u001d�1p�\u0006�*�:o2e�T�5�M�\u001aJ��ɪ�毣A\u0004�\u0018L��JZ�Io����픉twε�fi\u0000���*�#�nt+�|��\u0006'(ï�\u0003u�c�\u0001cO䠔�w\u0017�+\u0019�_��|VIr��U3\u000b\u001b�\u0012S\u0015���P� ��?�?�(a����\u000fT���|_����u5\"�\u000e�vjL���I��1[\u0010�qe\u001b\u0016�\u0018���)�.�\n�q�;�}^�%��5sdp�?�K\u001a\u0016��w�UG��\u0012r\u001b޿�f\u001c .~�,~\u00144�>���l�\"(\b�P��;�FI@\\\u000e���m7\u0011y]T\ba��,I���\bM)�n\u0002C�J\b0���8{��w���uA���lb���̭z\rܝt����^�\u000e\u0011ɋgo�\\\u0014\r\u0003��)��\u0018}JE=K�#�d��A)�\u0018���.\u0002`��\u0015˒E���\u0002uZǪ@�l�ʮ!'o\u0002&;`�\u000e���\u0007�\u0011C���рA����?��揂5\f�U����v��\u0001�\u0003BrnU��PIy�\u0000�`�\u0016\":�M��-��x�\be���XЮ����c���u��X\u00168!���M�-��\u001c���2���G�\\�K���\u0016��1�?1�M�u\t\u0017sP��P�6C�¢t�;*�_���j-A�lv��\f���!E�\u0019\u000eb\u0013\u001b|�'O��۶|�±Tqm�\\8C/\u000f���C��N\u0013\u0017��|\u001e�Nj�c{�#\u001c\n\u0010cX��N\u0002L=6��]�\u000b�_���]�^�~Nf�auT\u0006��ԫuD�\u0012I ���Wf£A\u001d�\u0018���/#�H0qxU\u001a�Cx��\"ߔ\u001d�\n�4��45�:\r&�G�I����}ϡ�_Դx�,�i�8D��\r(�V��1(��p3���D�;�]�dGf�%���c��\u001e�\u0010���w�����l��'�\n�\u0003\u0006����\u0004��9��4bʈɚz� ���(\u001e�)�vsԤ;\r�&�$5hE��I�\u0000́��%�\u0014+`n�c\u001e�\u0018r\u001c�&�:��M<��1�\u0004~*Gm\u001ayze�ą1\u001agy�=\u001d�Ce\u0015ܹ{口E4�#���k��/w���\t}�*��洬��\u0017!k���>���b<\u0004[F��\\\u0002;}[\f1w=ͣڴk\u0017�� �!��A\u0016�\u0018Ā�0d�vw\r\u0003�x����%���‡\u0000\u0010R�\u0015�6s!\u001b�\u000e���q�a�g��\u000fA��U'\b\t\u000b\u0011X̬�T���\u0002\u0001�~�X��A#�\u0019\u0000��J[���+�}P��U\u001e\u0002�\u0018�\u001c\u001e��ڭ�b���{���P�mI�\u001d�J\u0004_\rѢ�&.�ڃ��h�^�J\u0002�I�YJ�TC��R\u001c��\u0016> +�,{9\teo\u001eu�����L)�(\u0017�e��?8���vi\u001ea��ɋHW(��\u001am\u0005u�Bv�w�\r=I܎��B\u0004��\b��8L\u001d�$��\u001aa\u001ajFxH7��h��\u0014�\u0005�y��'��W\\m &%6$\n���ρ섄b�-�<2f�LGs�\u001a��q�b/`\u0012��{�cJ���e0}Ec�>8v�������o�[�X-s���c���f�=�����\";��\u000f�cY.�1�\u001a����[��A*�\u0019\u0014��1�N�S����^�ѝ6o\u001056�*<&(�g�SFٙj��ϷJ�\u0019\u0018�;PM4ﲈÕI�{韴��3H\u001f�f���\u0010�A\u001a�\u0019(����\u0017��\u000b��Ӝ�M5h\u0018���f{5�\u0002ɉֽ���*�/j��j�\u0014\u0003%��nz�E���2�Z�&\u0002\u001fNB8���A�N��sR�\\�\r��n�<{ȓBX|\u000b鲼8��P�\u001a� �\u001c)�ba}(n�+=*X�\f�\t�<�T��\u000e^��6�\u0001��\u0018��m�a\r�rN�G�.i���\u0012��H֨���w�w�}X���\u00050(ǭ;]�\u0014Uku�6���I\b x�R�n\u001f�~K�\u0007d;�*�\u0006I�\u0003C8wr��fޓ��Ѕ\u0016pn\u0018f4���\"��d�\u0003|�ڀS�;��R\\l��m\ta;\u0016ճDz\u0005w\u0002�]Q� PU\u0010����A\u0014�\u0019P��-��KY4���D׹\u0005[P�<�ˇ�\u0005�Zc�Gբ>Y\f��@jm�4ZY+�����\u001a�;�~r~��ڵa<��C�\u0006\u0019��=Ưh\u0011f�3HP\u001b\u0011�\n�?R�E�ɣA\u000e�\u0019x��-�>b��R7\u0014*�!��\u0018a��bu\"\u001e\u0015L��̑��|\u0010s_5FS�mʽ�������\\I��*�Y\u001a\u00101���y\b�\u001e�C�)\"y\u00143�Y�\u0011��2,g�����>��zY��]\t�3ea��o-�B��\u0011v*�'�\n��\u000e\u0015����u\u000b�\u0007R\t]t\u0007�L�\\�kq��k�6${\u0014�<\r��\u0014�V��O�q%P\r\u0016rj\u0003�.��s��䠘��73�UK��\u000f`�,T�@H��'���DaX�&&j�j�v�ޙLy�}�Q��\u0007��oi�Ի��/�^�\rǰ��§'�n\u0006GI0\u0006��N����A#�\u0019���.'!k\u0017���1+oe\u001f�����\u0006\u0004\u0019͡�A����_3���R�s���\u001e\u0000e~�\u000e7r�\u0010�\u0012vw5�\u0012��J���r���\u0002����\u000b��TW���\u001e�A^��� y\\6d\u001fa�}��{\u0005#�In}�Jg��/�3X��/��\u001e��?�%\u001c^�d|6�\u001d�����\u001e*\u0001R��~v>}�\u0006�Yd�LR���\u001ft?�^�&A���Lqc�ׂ��_�\u001c�����Z\u0007��k\u0012*�5]C��\u0007��y�z��k\u0010\u0002���\nl�E�\u0013��\u000e�b�ї짛Lj�JX�Ì�\u001dK ��d��\u0014\u0019�z\u001b@�z%��\n���t�\u0003\u001a��\u0000�G�#~\r��|(\u001d/-0�c�b��|���G�\u0011�Q|C������6\u0001KE��ר�� \u0007�/7��3 ql��(����HcrW�+�k�k��Y>�fo��b2\u0017Ei�j�B��}D\\R�&\u0012sK�a2����\u0004� \u0014�v)\u0007\u000e\u0005���-~[�o�\u0011�\u0007��0-r#��\b\n����0u�Cp�\u0018kV�9�EUG\u0013�\b��������\u0016ޕ�\\�A\u0004�\u0019܀�.\f����*��@g����ȅB�j��6���\r�A�#k��PXc��qQJV�[\u0011=*~U�¸�B�@��5.��\u0012�1��sr�\"\u0014-��RNL��r��Ċ[\u000b�\u0001\u0001A���e%\u0007h�\u0006��\t�bEl#T\b�\u001d\u0002\t)�n���%4l�\b\u0004���\u000b�(q\"U:�U\u001b���\u0004���L��9�OO?�$5ܖv�\u000e��\u0004+�t��\u0013\u0013�%D|�\u0003F���;��i|c+d�\u0016��\u000e\u0010�ɀT���m\b\u0007D\u001b)\"3��c{\u001f�f�T6�J�{�G�\t7ɺ-��\u0005�\u0011�m���I|Gy%�A\u0010�\u0019���1��l��M9�M���_y�.M�U(ٳ@�MCNY�ЇE�lo0\u0018~υ�LU�U��R�Ҡt�\u0012�.�/ӧ��;\u0007*b�a\u0011u6\u0019Mc\u0001�VٍӲZ8\u0000��\u0019\u0017!>Z(���,��Ta\u0014��\f]k�\u00113��^م�\u0007��C\u0014)���F�\u0018\u001b�Պ�3\u0017\\F\u0006��\u000e;j`uR�mR���jŜ���eM�&Ĉ\t�K\t����|ҡww9�C<0Ոzj\t<�\bϼ�j҅\f\u0016,���cc\r�\u0015l\u001e۰��BF��A\u0016�\u001a\u0004��-�ӳ�@�ع�~\u0015�SW#�K[w��\u000fY\u0004\u001a[f�B<6X����^�pZ-\u0018g��8I��wu�\u0011>~bx�\"f�\u0016l$�J�&\u0016\u0003^�\f�\u0013@\u0003��\u000e%�tg��\f������d\u001dd\u0013�r��x�\u0010�mCe.kGKJ�\u00000�Q��!�DQ\u0010\u0017\u000f�ؿE\u00142-�\u0002����\t-�ڋ��~�\u001f\u0002�(Μa��e4�\u0017eyFGS\u0007M�B�D|�\u0001�.8\u0018�C�\r�KT\n\u0004fgy؁�@�\u0012��L$��\u0013�\u000e*�,��TW깴>\b�v;�J �R�\t\u0007!I��/\u0015?�í�USw~K�h�r3:�\u001bT<�A\r�\u001a@��-�@r2�s��.�(L�-����>�\\�y\u0012�\u001f\u000b>������\u0004\u0002�\u0002�r��+��>J�V@����\r�k\u001cQ�\n`�ĵ�\bŨ�e\u001by��X�/�\u0001{a�\u000bx&�q��jh�=ϟa]�������y0܀�Q�YWMA?A7�\u0006��/�7�\u0015��\u0002hDR;\u0003IS_�ܠ�\u001e�%�0f�3�\u0004�\u0013�\u000fi;J�\u0006��ky~�\u0004C)��\u00007M|\u0010+�\u0006R\u0016�\u0001��� ��׎�\u0003�j2K!\u0010�wƣo�x�T�u��D7d#\u000bz��#'�4לy��l�\u0006o\u0005!\u0000Y\t\u0003���\t�yM�i.t�(��^�����A\u001a�\u001aT��\u0001��i��\u0016��U|����z\\�\b-n:MǴ\u0019�����\r\u000fGLj�fi��c�K5����o��\u0003�\u0014�\u0011�&\u000e�RGC�b�(�n�M�\f����&V\u0019���4�y:�J��Z�EGrw�ER����\u0007�\u0003��[��'�\u0005�W���1��Q�V\n@\t�\u0016}��Α\u001dd)���\r�[���\u0005x�D�R���\u0017�3\u0003}@i|�\t\u0012L�\u001dF�c�\u001ab��q�\u0002�Ⱦ��p�3�l\u0012�%L݁�\u001a��\"L�\u001be��Y�`�x<1Z�2'��Y?�b$}��\u0000���ir�\u0005.��\u0000\u000b��\u0014w\n��?�li\u001e�g��:��s>#V�CΨ\u001a�w�A\n�\u001ah��/\u001aV�Y�\u0017�\u001aVǣ�ß&\u0017\u0015��\u001a1�\u000b��NfW�;x8r2�\u001c���a�вX\u0015F���{0�먘/�o���Qz'j+��b\u0002[K+���n\u0014^�|\u0001arB�\u001c�|���X�*���\u001a\u0002��e�uU�P�L����9����\u0015��ɊA�2ľ��8�|�l�>�G�͠;\u0012�<�\t�Ί\u000b��\u001c=a��X�\u001f���\u001fxr\nrw\u0011�\u0003\\�T\u001aw}�w��6�X(SV�0�K\u001f=h�Z)�.�a\u0000�z��?C\u0015,\u001c�b��q��]��3:\u0011\u0004\u00128�q�ݍ�{\u0011%�7\u0019O�դ�kԌ��A\u0019�\u001a|��-�׆YH\u001c��H��5 ���\bq��b>����D�+@\t\u0015��\u000f�\u0011\u0010�g�H�\u001aA�MY �\u00054 \u0002�2\u0017\u0017�\u0003��N�\ng�\b�^%�כ\u0017O�\u0012A�5�d�}����\u0005�i���;\t�xH�j��=�\u0002I�\",�tI�c��|����x���c\u0013�’����8���\bq�����D�>�E�s�o��KO\fֶ��\u001dR%\u0004�9�B��O��7i����AH�GR���\t>�\u0001\u0012�@�TYd�xX�W�\\���%O7Mr\u0000ZV)�\r��6�;�Ϡ�B��%�a\"7\u0000(���0\u000eP�����:\")�M���\u0006m��C��]�A\u0004�\u001a���./H�Uy2|S�����[*@�\u0017��8x]�Q\u000e�^\u0000ec�\u0007nA\u0017\u0014n=\u0004���\u001b[�ĵ\u0002iL+�4.�q�C3,z�.�o9X\u001c( ��xGj\u000b]O\u0005&)�(�Z?�g��z���t�p2+�\n{'h,��\"\u000bKΦÑ(�<��7\u001c��M�c�\u0003\u0001��������*\u0003�\u001e��,�%�Eh�/\t\u0012�gx���T�\u000b�[9�=p��=\t��U�Z���XL�\u001c�\rN%X\u0016����\f��D�%��\u000b��\u0019�x�����lZ\u0015(uj\u001b<��\u000bN;\u001f�#y����޹��7?��\u001f�rZ�A\u0007�\u001a���\u0002\u000b�\u0005\\\u001b�I-�e\\��%Iz���s�\u0016Y\u001b\u00059_�~�ͧ�&h\u0013SS\u000f��\u0019fU^\bYtq�Oi�˘�޿2�Y\u0000_h����P��ެ&o�ؘ\u001e�m��v+Du�B���\t*� Yz�w$� Ĕ3��99�$�\"�ڢK�}\u001c�A�v��\u000erĹ�\b����\t&�\u000b8f�֖�\nl����3@�Q\u000f�Q�Up�������&�z�s\u0003,����Pp�Ř�X�NA��\u0007�\u0005\b�\u001a@\u001f��\u0001\u001e=<��&�#���{����6��4�. <�����D{(��b��\u001a��\u001cP���FI��w�A\u0004�\u001a�����\u0017��ȥ�P�\fĢ�\u0017;z����\u0002\u0018�<[t8�h6�\u0016�zD���v\t�K���\u0011�b\u0012��`\b�4�� �3��5��\u00143�O��>j���v��K�V2TI�+\\�>��\u001b^���zN��\u0016����\u0005ܴ\u000ew6<\u00159iە�;\u0015\u0000�~/E���q��\u0002�J\t�ʸ#�c�>t\f��9��\u001f���4Y������J3�n��)X[#\r���W�Sc���u��@�\u0010���h�)�A\u0019�\u001à�-�\u0005�Zj�Q\u0017�d���$����K��2T����H[/�E�9g�\u0013�F\u0001p�\u001cn\u0010-���\u0014k�I\f�L���\r\u0010˼\u000b\u001e���P�(\u0019��\u001d~��W�e���;Ҩ\u0013\u0000VeY�c4G�\u0014I&SM\u0016.�ͦ\u001d�w]�\"��xw���N�˾)����Ą�Qq����m%�\u001db׉3u��E��j\u0016��]R;燱\u0007y\u0002��r�\u0002�I�c�G4���\u001d��RZ�\u001e0��\b�*X����*=X\u0014�K��������lT�\f��vƆ�y[+qly]6v��\u001a�M�9\u0005�x�r���\u001cI(�O\u0005����a���c�p��S�I�A\u0011�\u001a���-��>\u0000\u000eG�`U�Âi�\u000fI[�LN�\u0015�Գ\u001aA�\u0012\u001f���`b�f�1>����;{U�\u0016�>g[�\u0005�{�XM���܁�̮�\u0019ӿ\u0010��#J�t�<\u000e��\u0015K\u0012x\u0004Q�D�4uxLK�\u0012\u0015��\b�+����_�\"��O�Ɨ�y�gz��6�1�0i��\u000b�X�\u000e�ԙ��L�������C�w\u001a ,�.�p\u0010�r�mJ0�8��^\u001dp�\u0014{���\u0013\nh�gEq��g3|j~\b��\u0000hd,o��jkiK�\u0003Tz\u0011�\u0006�sO��\t\r�}�4V�:\b~�V��h0�}�\u0007�d?��噻d��,\u0014\u001f_sZ�A\u0006�\u001a����.}�3�\u0013�;D�\u0012�e@�ᆨ�l��\u00103�h\u0005�i\u001b�\u0004 �3�\u0016/%�FX�\u000b��}߀\r:�\u0007|�y�>P�*\u001eSo\u0013�Clf\u001c�\b��L�\u000b}�.E9�ckK���ږ��\u0003�V^��\u0010�\u0018�t�g�~�kJ�ӎ��Cl�O\u001d�\u0004�uk|��%\u000b?T9,���P5�ٵw�8�#�\u001aѥA\u0014J��BZ\u000bP���u\u0001�a��wsحR��\u0018\\\u0016o�d\u001b�Y\b޹L���%�\u0016D>���̗���ۊ�D\u0002�Z��\u001e\u001fȨ>������\u0002��Q\r����)�\u0010����J4~m%��ɠ�n�2�A\n�\u001b\b����\"����;�Lej��)�Q�-S!\u001d༶�X�R�4�Ջ\r�{s��|�\u0011g`3y��\t\u0003\u001a�f\u000e:^��O�\u000bSsm/�b�Q\u0010~֊P��T�\u0018N�V®2-lE�\f`�O�j\b�e��:��?\u0000�ʿ �s��1��j\"\f��fS�RKȘ��\n%-ި��!�B�\u0002�kJ�\t?�Vf�?iq�#z�\u0010�Ń��\u0003t�7I��nf��R\u0005f��\u0010��i��\u0019M�47x\u0012Ʌ��$[��&�^��R��\u0011Lq��؁�\u001f�\u000flg\u0019���$����\u000f�ƴ+a�\u000ei$~��T~��M�0�A\t�\u001b\u001c��.%զ@\u0011CO@˱�:�H:��\u000b��\u0010\u001c\u000f���!/�I!wX���ͦi\u0012o�\u0016_��\u0012q���ߑtB\u0000U\u0003��\u0013Ϫ�k��K�k�\u0012\\�'l�P[��JJ�1���\u0000�\"E�\"���'G�v���ע��\u001by�ö\u000f�:i�\u0005�Ә��Hk���Aƶ�BA>o��n\u0003j�&X\n�*\r��\u0003r�r���\u0016�/r>=\u0018�8֯Y\u000f�G)��@��\u001a�L�p��;\u0002�hlK�D�����ka��RN#\"dz�\b�c���<��A\u0005�\u001b0��-��̢ߥ���\u0018\\\u0000�\rɆ�� tvp\u0014��a~�@�h\u0017�������H�\t�\u0004�\u0002\u0001�gQ���؁\b\u0000��t�\u000eNz 8G�\r���\u001a�w�>�a{��C\rw�\u000b������5�\u000f;v(9�����1�id�����\u001e�V\u0007k���\t��Q�q�\u0016E�����\u0013��H{�*��뇤�7ҟ\u0016��\u0001n�ڃ�uI��\u0002��YvC��h�z\t.\u0000өL\u001eҟ��L�ڛ�\f�\u001cI],Ҭ\u0016�s9\u0005��\u0014.1��eK� ]���R�\u001aloÉD�S��A\b�\u001bD���(��\u0011\u0018��\u001a����ٹZ)ed��J��_F�sQj��\tnvNv�3\u001f�Pd���)af�\u0006ʩò��\n��UB\u0011���\u001f�k��U�x�\u0001\"�Zc��-xu�\u0017��E�SA{BoN\b�7[��hd߸\u0002��'k�!h�\u000e�4��Ɍ��N��\u0004z\u001f�Y=\fR���2�wG\r+���\"\u0003��MU�N��ސ�S������� \u000e���u�?��A\u0002��@�\u0004��0-��Ǫ��3S��\t��\u0018\u0015j<���p\u0014�\u001aR�C�6�\u0012\u0018�㓫�B�\u001a�=\u000f�ҡ\u0017��\u001e2)\u0012��ɭ�\u000b7r�w�����Td.{��Q\u0010�\u0012�������ya�\u0006�\u0012\u000f;r��Ї���\u000f(m\u0012\rK$�w�p�\u0000���W�ƸP��|-��\"d�\n͊�\nӥ��>q�@\u0016�-&�����vWW�|�\u001d�d���XT8\u0019;��A\u0012�\u001bl���}t=\u00126m\u0002[m��\u001f�~|�ͅ\r�{��8ʿl���i��I\n�2/F�ֹT���4)W��ұR\u0007ft�j�\u00005����`Sx�)[��d,K���#X��g4\u001f�X&�\u0010�P\f&!�7\u0019��\u0002�ս�4Ōp\u0000���\u001f��2�3%Hc�\u0000\u0001KP^\u0017��\u001a����B�VW�Ȣ��N&Svz��^�e��C\u0014��*,v�\u0017Ǿ�cݝ��s�\u0010�H�٘\u0014� r- �\u0017�l���*+�m��\u0007Q�\u0010�ȇ������M\r.��\u0011S�st�y�\u0003����\fb�!��\u0018a8�F��fQ�+c��'��$�bR�A\b�\u001b���.��\u0013��\u0003\u000ffN3}8�\u0005�ʄ��<#������\u001e�PI��e�Ei��b����{j�%\u001c�_�\t�\"���\u0017Wk�/��'�\u001d3�vT��r����^�XS\u001d�kz3[>1��\u001b�\b�I:o}��yk�����𖛌z+h}���\u0007n\u0004(o�Bl\u000eA���\u001c�����OqO9ܬ��&g�\u00118�%�N2?\u0006���)�P�L\u001dw�\u001c��Rj����]\u0016\f��\u001f\u0015\u0014YX6k�''s�A��X��!\te�Y1��~��\n�Q�]D��/��#`a��M���\u0002>4͐f\u001d��b�G\u0007��[w�.\u0001%�A\u0017�\u001b���0\u0001��=\u0017�a$�K��[?m*{�rQB]�r����C��Ui\u0004Pf���Î�\u0014E���k��[[ ��GT�[r9��]�@0��e�O;�m$�}�\u0011�<�ں\u000f�ߝ\u0011�-f�簥�Y\u0010�l��k1i�\u0012TS�\u000b\u0011\u0018c��\u0002d&+d��\u0014\u0001z�\u0003�R�Z�ޙ.F\u0002+\u0011&�9#��\u0015����`�������A��\b�\u0001��9M��'oA�\u0000Ǜ0��Ј��1\u001d\u001e2\u0003��\u001cs�W��������/\u0002�\u000bd.a��]\u001b�\u001f\u000f,\r\u0014�\u0006C���L�5�V��=\t���{e�9\u0011q������B81��\\E�\u001e\u0012\u0013�4d�A\b�\u001b�����\u0004=��(4^\u0001\u000e \u000e��Ν�\nr�����ͺF�x�ת\u0003Å\u0013�Y>˒�^G�A\u001d����3`���9x�{����r8���f��\u0018�(�\"��\u000b0�$���\u001fwa�����d@��2t\u0007~ɮ'Z���j@��S���E\u0005�yQ;>�5I�T��|���\u001a\u0000���\n�g���Ρ\u001eg�s��\u0006Γ��x؇�\u0001y\u000e9�1�۫�\u001b��!\f:ߵ��9H�b�K���\\ܲ�\u0013\u000f�h�>��)<� ��{qȵQG�@j��\r�C\u0000�yE�Kyd���ac����\u001bmьv\u0007P�\u001aF�nD=�A\"�\u001b���f�$\u001aE�°yN&�Q�%��=�\u0002G=hH�o_Ob[;��l�\u0017�ϋ�R\u001d \t\u001c��\u0019�\\���j0x�E��xs\u001ey�?:�)Dv�1�\u0004\u0013T\u0010��\u000f\u0002�\n�\r���=�\u0003f��;���\u000f\u0005)�\u0010ٿ�\u001e��\u0001\u000f\u0015\u0015X����^\b����b�+�\u0013�9]���Z�g�L�J�$\u0000�׺Y�\u0001�\u0004Yx��E�e3@a媗�}�2�,����3ٔ\r�n.�\u0002>���\t]��8k\u0001V�[uu\u0019�+z7�x��\t�b�m\u0003��n�>�C�\u0001}\u000e:\u0011^�׃���d����(�aydn�}�\u0014r~�<��,� 6Ĭ7-��G�~�fH!�1�A\u0016�\u001bЀ��}sw�\u001aR\u0011��^q�\u0017�/J�VC�\u0005�D�\u000br�'���eUA\u001aM�x��\u0001=��\u000f���\u001b�\u0000��EY8ӄ\u0003�$�\u0012O�z�\u0010�8dr�T��\u0005��V��Xf�\u0005.yA�\u001a�V�� �\u0019F���\u0003*��{!�!`��Bw?b\u0003�{���ը\u0018B�Y�\u001d\u0015\u0016�K�x�}��\u000e�`��!�=�X���N���H%\u000e�k�aC3Dz�\u0019\u001d�-������)#t��a��\u001a.�*`\u0019�\u0012n7\u0010\"G\u000fb��q��E�\u001f\u001b\u0011ad'�i���Wœ\u000e9�@A�\u0011d��\u001e]~��i^����}�s\u0000�G�'��\u001dZ�B�ۃ��m~B�(�@��\u001b��.G�Ol\u0004��?9,z��\u0006\u0001��j�����i��\u0011��H�\u0011�O�l{M\fx\"\u001e[��b*.�S\u0015.\u000f칠�_�I�?�N�\u000e�\u0005�\u001f�\t�l\u001d�H�5\u0006�%���2�iW����nSX��\u0010\"�+8X ���ڸ��w����O��i��_\n�+�S%�\"gk�8\u00177s!*)uo����C���\u0019���\u0003�)\r\u0010�\\���Y\u0018�z�s��b��YY�;PsW�\u001eS\u0002m\u000b�v\u0013Q\u0002���q�o\u0015\u00062���6�\u000f��*Q�{��9�@J��r\t�L�|\u0000[�����=�ۙi)�z\u001e0�A\u0002�\u001b���-�Tf�qd\u0005S���숥�3����|�\u000bfIM\u001b��\u001c�X:a�K&9\u0011d��?��2�.�\u0002�EV��~\u0018>��%��^��e\u0014Zqh��\u001c\u0011q�3}o��t�\u00129\u0010�����&��-m�\u000fE��\f��\u001a��xO�+�,��#HB]�{�$��M�m�\u001c��I���\u001fT'��R\u0004���\u0010c�51��Yq\t~]�Œ\u001f�����1��dCڧ\\�ݞ�'��ugL�0�L4��ﬡ�zR1�\u0007\u001e��>�/�4\u0007����ԵtAVz�E�cV־\u0013���m�\u0016�����s�v�A\r�\u001c\f��.����a�f\u0014\u0004\u0003���j�����6�s(�f}T�|�Hr�]�OAý�\u0007�������U(��o�\u000f@N��>\u001cP�:L\u0000�z�^|$\u000eAX�\u0018�ޘ��\u001a}qv\u0011�}�qV�j.����(�Һ|�\"\u001b&+�Ż^\\�gOuocd�3Y\f���xz,&L\u0016�0{b\u0014\u0017Ҭb�\u0014Ǖ7����A�b&��΅\u0014�7���\u001e��H��=S���z���i�_y�7c\n�z5\n�\\��i™�\u000f��J�\u0006��I?\u000e�b�����H|X��WEU2���S\u000eKv�t�Ì��v��\u0003�%�=�P��J�\u000f��A\t�\u001c ��0\\0>����\u0000���!e7��ȹz|2fR+@�\tt}�c!����\u0018\u000f\u001b�\u001a��~�]�\u0013�@w����ĀgU��ƨ������o���;��D��J[�\u0000�j�0Qԁ�\u0007�m+!;\\3�W��2!9\b��\u0005n�\\��n�-��\u0004�\u0000�jƪ8G�\u0000��g�L:k��!p����ZcP\u0005c�[,�UɘG_CD����3��x�D�'�j\u0017Ckg�\u0007��,\r\u001a�U�����4k�g\u0014+'2��G�,��z\u001f������͖ZqEa��\u0016�\"����=�\u0015�~��\\qf�\u0005��C_��A\t�\u001c4��\u0001�4�EP����noYm��\u000b,�ۏXs\"�!5q��\u001b)ú�\u0011d\"^�a�| �b2}(.�S�^\u000f��\u0004�h�#��m9�c�\u0006`R�D��ՠ���]~�i�hz��U�oG���5\\_��!B>�\u0003\"�c\u0014$�\u0004�\f�\"\n3GVp\u00139�k���|3���෮a�֘\u001d(C��i�E/ٱq��\u001e�HӖ��]\u001f5\u0003\u0011\u0006��\u0011�d_���*��g�C�\u000bMf5#RN�\t�3*�\u0007t�ק�5� GOZ�\u000b\u001bi��0\u001f\b�q�A�vc�f6\u001f\u000e7��+�=nea�j��47���h����A\u000f�\u001cH��-��\u0012��>^2=O�}�\u0006�����\u000b�5�s+�<�<��\u0017�q�؏���T,�O�\r� aw�\"]h��D��'�Mr��Ѝ��!���=\u0006\"����\u0002���X�R��H���WJ�Q���\u0000�QmۜΒ�V�������$�����(\u0003���\t�Ð� ����0<\u0013b�\u0013E\u0014�5ufH�)\u0013\"j�2Ϣ�eW�\u0018�C�V�\u001bz\u0014Ƃ�}\u0019Kګ�i��҂�Y�\u0006!��b�.TȰ�\b�!���\\I\b���\r{Ҝ\u000f�N\u001bG�hqØ4�\u001e\u000f���\u001d�\u0001�\u0012v3�Kq���i;wIV.͸\u001d��H�A\u0015�\u001c\\��-�B��\u001b'yI]\u0007��y�E�m\u0002�n\\�$rFa��F��@8��W�K�2�j\u0002 H���\u000e��\rDiQrD5Z1=\rb6��ƣ�]xy�\u0000\u000b�\\�b��O�\u001aa�\u0014�\u0005\u0004���+��\u0018��[p*d\u0010J��o��%bR�}�\u0011\u0005\u0005Cة\u001c@'.|\ts�x\u001aq_�\u000f���cJ+�\u0000 ��42]zhc���dc�����\u000e�$��1;�\f����\u0019�w�8'�􌹣\f�h\n\u0001��$�a1\u001e��k�T�\u0001\u001a�igƻO�1nή�I\bİ�7�/,y�j�MX��p����\tN�\u0007���� \u0003�F�\u0010�\b(����\u0004{�i��A\u001c�\u001cp����B\u0005�%f�\u001e���\"zH�F�6��N6H��\u0003|����s\u0017^\u0005��|�`\tv?ϻ\u0018�,�N\u0018�l\\��^�;F\u001b��\u0004T�z�Y\u0014�<(��\b;_��2����\u001d׀3\u001f\u0017\n�HqI�Hf\u001b଍�����q'Y�Ӱp�e.�BL���\u0003S\u0007\\�>�Yum�XU�'ͫ9\u000b������c\u001a�Ne^�\b?:k�_��\u000b3B�5T�\u0019w<\u0006{�?q\u001au��48��\u001a�T=��F�@?Z��t$F|�h2\\E���\bu颡��C���!�/\u000f�F�-���\b�y�I@��Om��\b}/\nϹd>�L�\u0002�I��rѯ�i�3��\nڤ)�A\n�\u001c���-���\b|\u0018�\"�\\왬Q�2�̀h\u001d�/'����b���O�ڇe���#}I�k�U�\u0011\u0000.\u0005�[=6���\u0007�t쒻�@2߶5�E�\u0016\u0012Ε�&]Qi\\�mɕ�ˉ�\u0017<��\u0002�b��\u0010\u0012�\u0004}\u0013p\u000b`\r{�K��<��,m���G\\�U\b��?��?\b�ϟ*:\u0014\u0014��S\u0013mu#�!$\u0006ڝ+\u000b<ɩ�MY<���Xw6ԟ�a7��S/��IC�;k-&,r����O\u0014(�r6��?X��\u0019\f��\u001c�&\u001d��4q�ֶ�&J:;z�\u001a;綾�����\u001fHC0�R\u0001*���\"=�\rH�A'�\u001c����7wR�w��}\u00060�̢Ay1<�o{�BHG��?��{�j�\u0011z\u001aF^x�:�\u0015�Q\f\u001c��\u0010��q�\u001cE�\u0001T���E�m�*CC=D�f���4�m�-}��\u0004�j\u0016�\u0012\u0011�(k� Fp��v]mxm�˷sg��\u0001r��4�\u001b\u001d+�K5a�=\u000bu�#�uL9�&o��R��vt�ē\u001aWu�w]�����(J[�.�̭�=H�Ŏ\u0006�\u001fVJ2[e�\u0002r����>C�}�\u001f�o\u0004\u0006)K�F�]҉����p!��\\�@�d�,:�.����\\V�/���G�:\u0013>�z\u000fG�<[͙]�\u0012fl\u000b�C�\r_\u001f����?ʀ7d�`\u000f�]\u001d���\u0004�4\u000f25�A\u0013�\u001c���-�C���4�a�b\u0002?'u�A��T�����U�|mr' �{TR�/�w�a\u0006�P|c���������\r\u001b�8񗛜���\u0003!���6.}E)\u0015ҔnP\u00159'\u001cJq����\f���x&�(�\u001a\t�N\u0005��\u00002C^\u0007�w\u0006�\u0011�e���u\"Y�\u0019\u000eM�\u0012��~�%+�n���J1Y��у�SQ��3�X\u0018���?:��6�\u001c��\u000b\\ԎA(�h\u001b�@}\u001f�\nH!�\u000eh&�i7�\u000e���^�\u001c�\u001eb�J��)1Y�\u0015�h�3it�\u001a�6�\r�3U\u0011Qt%�?]�ez� p\u0011-��S�E�^*U�~:���6,^���\u00151���(\u001dy�e{@)��j��k�3�W�G\b\n�b\f��\u001c(�\u0010|�<2a>�NJ��L�E\u0012d��I�fЌ����alM_��D`��A\u0014�\u001cԀ�\u0001���/ �2�V�鞳�k=��Ƙٌz\u0010\u001f�?[\u001a[;mr\f�����8�۶�\u0010�O/�\u001cB��qXc�\u0012���RM��tN\u0007\u0004)C*\u0016�z��=�a�x\u0014�z���*&u��D6\"�\u000b�҈[C{�%U��U��Q�Q�8�C���w��kT<��獡�&�x�6t�y�J\u0013��5����5Ӿ��$�\u001b\n�mW����B\u0013E�#O8o�\n�\u0002�.'%g\u000e�\u0014#49t���zӲYHj�Vc]��\u0007�wiI$�\u0006\u0002�:d祑�\u0018�+������=\u0012C�0�eT��h�\u001f�p���]�Z�/�\u001b���CJz�Ԏ�A\u0010�\u001c��/\u001eU̎p�\u000f��=��P�I�D ��jmQ�\u0000\u0018���\\R=ƽd�l3`�����Ơ��&\u001f��K���JY�\b\n\u0013�y��U��Ǚ\u0014��r�|\b�8���$��5[3`�9ۦ�\u0004֚\u0017!\u001a*r��.\u001c0��\r��\u001f�f{��X��\u0007�~_R\bb��jg����0��(�\u0004\u0001L\u001f��lq\u0015QR�d��r�D86\u000f�1?\u0007Ѽi�c�T�]t�\"�g\u000e��c�n9`��\\ޞ�&C�X���W\u000f�-�����X��\u0002�b�p�п�7׶\u0004�K����a�n��;�G�\u00023Ywϝ\u0011�}Ǻ�?:�A\u001b�\u001c���.\u0016���m����N��Mò�\u0007ޱi\u0001y$:���Ӹj+.�[%�@�\u0002\u0017\u0014�q\u0010C\u0001A\n��d���K\u0012v\u0006\u0019��泻�͈Б��e�Sd\b��_F��\u0000��p\u000bǐ��5�gzx1\r�\"�׿\u000f \u0002\u000ei\u000fdIք���\u0002\u0005\f\fdqo�\u0012/\u001b%��7|��O��\u001d\u001cލ��>�%�{\u0017����\n���DHC�'�҅\u0002�.�N\u0004D\u0012�N\u0007\n��Δ�0}�)\u0018�σ\u0013��\u00033�T4�\u0014��+��svsW\u0003�>��ݻ,���W<��\\I\u001eUh\u0014*k�\u000b\fp�\";h�q��n��'P�\u0006�n�\u0001~��\u0011�#���`fӢt�~@\u0019嫾�@>�\u0014Pi��֕�HmYm�O\u000b�\u0016mūPc�u�\u0004\u0016\u0003U����6�]�D\n�e\u0006Ң��\u001e\n\u000f��\\Y�aRV\u0004,��^ȧ�bk��[�n���]��q짰��e\u0011\u001e�x\u0019c��KEǒ{�W�0���\u0013�U[�xr\n��#�\u000b�ߝ3w�wݷ���\u001f-�\u001d�s3�ڵ�I4@�/�A\u0010�\u001d$��0\u0006�k\\�=[�ik�M�ӱ�_�e\f�\u0001\u0013��\u000eY��v'����)\u001b��r���4T�;\u001e \u0000��N&O��W��xh\u0014O�C��b���g4I��$�B��(LIM\u0006�\u001e�)\u0007\u001a�\fY�ى��\u000ecl�\t�\u001f�hx���\u0015�h�36�Z�\b�d�fmzZ��\u001e�-�PE\u0018�iX�\u001b�Df10tD�'sϼsL2OY��#K���T^��޼4���M\f�w{�>zlf����{\u001a�4.�ɘ(�o^��\u0005����$�٫o�B��œ�\u0017>\u000e�bw�>�3}��@2\u0014�Z��\u0015�Y��Y���{\u001c�f�3�QۣA\u0013�\u001d8��1�bJ�i�ʡ\u001a�M(�\u001c�F�\u001cO�<\u001a�}���B9��>ط7���P��ڈ��,U\u0007\u0004��8\u0000R�l�\u001dB�\\�ã��5�K�ϗ�x���FgI\u0017�\f�\b2��Yڼ)�\\��O�g�\u001cvꮉ���{\u0016A��#�~�3��\u000e�\u0007�WQ�\u001aI7\u000b�T�W\u0002\u001fCG\u0004�s�6�@�X\u001d���'M�9���\u0011y\r\n�5I\u001f_�\u000f�\u0004�4=�+�=\\�����躻�V�r���� �����mڞ��\u001f��K\n�6`��C\u0010\u0011���2�X�L�}��/\u001eY(�r�g�\u0017�\u0003=FF�7z\u0017��GL�\u000f���\r4v��A\u0004�\u001dL��0.�V.eq���v�]�IU{�_�d\t�f\u0016=!�\"�M!�)�4\u0015;\u0010�u~\u0016K�\u0011�\u0018�b��}�s\u0013V������ak����W'��x`����ǰeP��Z������,կ��Qxua�\u0013\u0001ؔ�1(q[�\u0015\u0000�\u0012���mՇ\f�E�y�f\u001d-��\u0014�v\u0012�\u0014t�*=�鋰_\u0006\u001e�C��\u001e����%\u0001\b�� ]�^\u0013�=�Bn\"d�(\n�Ń\t�r%7^�p\fQ�\u0013O����\u000b�fJ�\u0000\u0010���2�:�\u001dS�h���L��`Ň�sn�r9\u000b��2G�Q�.��6\tC�����A\u0011�\u001d`��1��\u0012�\\�X\t\u0017�Ks\u0000�:�Q\u0007�\"�lx��Z�j� �\f>�u)\u001e=�V\bR\u0003��=&��bT����\u0014�׽#���\u0013sxYdQ%\u001c>�:�m\u001fm�jP���\u001d=��G���\u0005�����\u0011~\u0003�\u001d&̖�BW�8��O4i@�\u0012�7!ZQ/��\u0001G\"�{\u0012\rM�F��9R�ZQK�<\u000b�'�T5\u0018��5����P�>���@=)��Γ��\u000e�{,\u001bS�ϳ\u0004]�\u0005��\u0015�\fe]\u0019\\p�w�Fޅ�A\b���&\bw��!���Iv吘�ig8�|�a%\t/��/ԋj=Ŗ���\u0001�L�\u0015lj��m\u0015\u0010R���\u0011�A#�\u001dt����>�J,D{/��*_hXN�_s�\n`��\u000e�3D�����+kU�\\%�ܪbx�ֺ.�o\u0000v�\u001bF0�����T\u0006�s�wgW�#\u000e�/Ո��\u000e�׿Vy\u0006��06�Nuͅ�?\u001bqK�E��4\\_~���q�Utk5�ǘ��\r(e�UgWB�6�QR?\u0016�~�G\u001dK�9s�����>��KD��!I\t�\u0016yz�\u0007��x��u�\u0013��\u001b!�0�!�@�\\4�3o�|\u0011\u000em>�nN�$T�˟�5�\u000f�'\u0013����LR�]�2\u0005\u0015�f��\u001a���\"b\u0001�qƩԐ��(���ý�\f�GwQ�_T\u001b��\fb��Ij\u0016��$�UZ��'�A\u0015�\u001d����� m�|g\u0013s�X�Lh\"��\u0011u��1YjR\u000b)��:r�(�\u0014u�M��ނ�\u001f3��c\u001b���қ8�ʢo'��.F_�����R\"�ϧzg\u001b\u0014�g8���\u001c���\u0003��u�\u0015s\r�n�d�\n\b�p(2�\f�U�t�v5��I�\n\"(�\u0013\fћ��ͳ���o\u0012Wg�q��`q\u0001�h�n�H�w8\u0000\u0018���\u001a\f�p\u0006��hnTˍ\u0019\u0006�T<0D���#Z�E��Ü\u0016��ܗ 3\u001c�>�\u001f.Ѧ\\҇˺�M^2aG����=Z�cS�\\CD1,�k��%��E\u0015�D�ð���T�����\u0018n8�.�Zgd+�A\u0007�\u001d���.T���%\u0001�-D�f��?�*�$�-7޹\u0012wM�\t0g�q��7$�r�u J�\u00043[\u0004����~��\"�2�D�ַ�\u0011iK�\u0010�T\u001f/CķЋ�}�\u0010\u000fWϾl3+\u0003�vo����$���\u0018�\u0000�[DqmWז\r+����1��� �٢\r�$,@�3~��(9߄�^��\u0006�\u001db\u001b�L�c`��[�\u0014/g9��j��\u0018m�HN���\u0007Y�V��\u0017\u0011\u0018R���M�HL��P,�UQ��K��\u0000{�6�#�њ����J��3G(߃~V�$RLl\u001c8��m<\u0003�\u0011n�9EHP�A\u0015�\u001d���-�\n\u0013�\u001a&.fe2\u0017 \f\u0015?���9�~D)\u0015��\u001b�c�O\u0002\u0016a\u0002գ�%2��T��晿��zތؕS?���/�yq\u0012ePz�Pu0ӟ�l�ȼ�\u0017����T\\ť/\u0004rn֔�ΉPB�\u000b��Sv�^<�\u001f4e\r��\u0010�r-Q�\t�És\"�&]C�5en���۸}|\u0014\b��Čs<#Ylfք\u0005�\u0013,@����-2:\u0017\u000e]��Sv%JC<_�'��[᎟�*\u0018�`��Mo��_\u0019W0���E\u001d\u0005k�D\u0017)p�\u0012t\u0010V\u001fF��b���\u0015L�� ��~\u0010ɯ���w\u0007\u0014=o\u0018\r��^k\u0014Q�j[��\u000b��_�A\"�\u001dĀ��ӳa������_~DjR��%\u0014�z�\u001dﵨ����G��\u0014�W�\fi��\u0016W�\u001b;\u0016�l���e\u0007\u001c\u0004�W��:�\u0011h�H%!�`9F�u���0S�\u0001�y�=�Ph� ~G��\r�h\u0006\\�&1�>d~]�X��\u0002�����sn�N��sy��E�|�\u0002�8�s�,`\u0019\u001f�°\u001d\u000fRz؃\u0018�\u0012?��Vd�\u0010˟G��4u�F�ĸ���Ω�S�\u0016�ў�4\u001e���f�-ɏ\u0001��yrOk34�\u001b��\u0013�-uEԇ#*\u0014v/�v.�D���u~+W�*!�<\\y�-�4U��\u001c\"�}�K{\t#b����������)\u0011��&(�� Hɤ5�A!�\u001d؀�L�8\u000e�\\�\u0010'ѹ�\u001e&#����i�Q�%V/%�U_�\u0003�2�s8�n�>����_��\u001f!�ܓ��̈́���\u001fN����W���q\u001d�\u0005����c�A�i�\u000b\u0014�Ѧ���m+W\u0015S��N\u0010v�\u001f���\u000f�~���A\u000e�\u001e\u0000��-�@ʈ�D�Y�(�7L������끰E0Q�N\u001fC��O2x\f\u0003T�\u001fۥ$4s�#��jr��.�.\u0011d|�T�ܓ*���AЭ%\u00154\u000b:o�R�u�3\u0011B\u001c/}���&=����-���\u0010.p YR�l-#'\u0019�NC�j�rA\u0018����|�\nPȮ����{4�y+\u0010r�\b�]�\u0006C�\u0011 �4#�U�\u001f�\u0004t�^6�\u0002\u001d\u001a����ֽ�Цݒx��\u001a�$3�\u001c7���\u0013Q(k��MH���\u0004F4|�\u001f[k0�LP��ޙɲ�X��{\u0011�1,B��Q�=���������Z�^\u0019\u0003ZP��A\u0014�\u001e\u0014��\u0000\u000e�\t�\u000e�T)(\u0007��\u0017\u0014��DȰ\u000bw}�_���[��*�͜x��݆ql\u001ak�@ �E��N�b�g�\u0004Н`:+�\u0002�5�\u0006���\u0015\u0018j~s \u000f����\u000e]\u001d�M��i\"��{\u001bL��S\"�3\u001f��O��X��棏P�!�x�\u001f�w�������ӏ>'\u0016{��v�od�ND<;\u001e�\u0004T�a���ԍN·&?�.-\u0015N�\u0017\nj�h�;e7�\t�����ݚ�k\u001bC���AI�v\u0002vcJ�/��F��uT�>�X��\u0002�\n��)1\t�c�іk\u0014\u0001;�f�.�[�Fi5ʁ��\u0004\u0012n�k\u0018��E*�:��A\u0011�\u001e(��..j�\n?>>�\u001eZuGc�\n\u0002!���\u0013@\u0011� ̤ K1_\n@\u001at��l�)\u0003�L\u000fX��z\\�DK3���\u0017�\u0019K��lÂ�X;�\u0013}]�\\J��\u0000G*O��ߴ��g�#\u0007\u0004�+�_\u0019h��\u0019\u0013��Bw\u0010�K�f��?E\u001a�\u001d;\n��\n\u001cE�\u0000��z�\u00040\u001e��O8\u0013�\u0010�<Ǣ�E�٣������\u001c�\u000e_9$��\u0003ϛ�\u0011`�v�l@t?��aa��O\u0003���6u����o�{zx?U�M��^8��\u0013��\u0011(�e��`��\u001f\u000e\u0015�E\u001cx\b�N�����|����\u0004s݀�i�z_L��a��D6��A\u0015�\u001e<��\u0002\u0004�%\\Fd\n\u0019�U�i\u0000d&�\u001ar0�:�땅��\u0012~[�A��\u000b�T^��x�\b�8\u0012�\u0003j�wL��D�4-}�F��O���Q��p���B6�n\u0000\u0002�uk\u0000\u0002\f:W����q��\u000bQ������-z��1��Ӵ�,\u001e����j\u001evBs��Gq�}���irU:\b�\u000b\u0014�.�-nh!����\u0006�b!���A65�\u00104ͭ\u0011�&o\u0018�m?o�\rZ��\u0016L\u0015����{9蔢�˘n�M|\"�\u0004|\f�\u000fF�Fq>\u000eԗ�}ȸ���\b:E����Bٔ�\tm2�|H��Z�Z檏����\u0004lۤS�F4\u001aFQ�U�C>*�A\u0007�\u001eP���}|ܼF�[*�J|P;\t{T�$���cK4����\u0014E��TF\u001a\u0017\fn;�wx\u00168�\b\u0017��„�z!����QCj�@��'\u001bCk�\"і��1����\u0006�=�*Y+*=����\u0015����z\u0001\u001d����\t�\n�0�����\u0016�QS��\u0018w��N6�)�\u0012vx�y�3j9\b�g\u001eqȲ\u0006�D�\u001cj���5P���D���'��\f���\u0002*!��`�@�TC�\t�+P�эZ\u0006��Dwz�������pq�p<,�\u001f�\u0012\u0002��Nj�}��䃝ő�D��\u001d=����\u001co�S\u0002�\u000b?C.X���\u0006��\u0016����'�X^���QixÈ�f���7\u001f��q��,k�\u000f�>����B�x����^�&yC�1``��\u000e�I��˜�i����y�/t!�lɎ!�0v�_��\u001b��\u0010�v����C��\u0010���9�V\"���A\u0015�\u001e���\u0001�ے��\\^���W!�\u001f��X�֝Y�l��+=)\u000b^��o\b��'��� ��ў^O#��d�]+��O\u0018CDT����?\u001c�\r\u0012���)�]t�i�ܫ\u00152g�Q�*�d��\u0011����^��\u0012Y�(\"�\t�*�\n\u0004�M��K�W����\u000e\t�eQ��t���|���)�D\u0001�\u0007OU��\u0019\\е���:T��T�\u0001InQV\u0012���K+L |�si\u0003d�\u0002�\u000fR�b\u001b�����;\u001f�+��zB�Qc�;.��?/.IM�G�p�\u001f�.�� ѭɷ]j��\u0018b�.*�����B\u0011��\u0018ԥ\u0016PR{�,��M5lSZ�E�N�A\u0002�\u001e����[Y/Z\u0014�A<���3�G{�S\u0007��I�\u0019De�rAv�k�\rϙ��?\u0000[�tXS08�;c�5��]]Cy��� ���F�#\u0007�犖�ul��9Bl�d�$}������4�i�3�_��a��S�B�8���*\nӼI�\u0019��OPW�=7҈�#D����\u0014'߅�/&�\u00137G:\u0019�C�eOܩL64\u0005}���\u000e\u0018�dxǀ\u0014ӎ\u000b#��\u0004{\u001d��r��&X\u0010�έ-��\tX\u001f��\u0019���m���\u001b���$�n�\f����ꇨ,$9Lr�bn�\u000b�BT\n��!@\u0013�ޗ?�r2�A\u0012�\u001e���/\u001a�V�]ضd��\u0019!\u0007r`t��o��k�v�Q�ZBqx�ż��y|Y��\u001b��\u001c˖��dPr�Xxk�M�L\u000e1�\t-Q2Z^�x�I�����y\\\u0016\u0011_ym\u0001�y\n�j\bBe���#(��R�u�O\u0003�Ep����v\u0013\u001e��@\nT\f�X5����\u001eEG�O�%Y��\u0006��'�*�%�\u000f}��\u0012�+�\u0016ι��G\u001dI���#�ⵃ�����zH\u001a �\u0019Y�z��-��P\u00108 ܝ����4\u001c��[��O���\u0007s\u0013�Ⱦs�n��#`R\u0019.t3�,��7N\u0004����N�y�[}����IaL�걶�A\u001a�\u001eȀ�\u0000]H�,?St(�A�Q����m#K�#v��y���\u001c�\u0019\u0010�Ŭ\\\f����I\u00057�-m\u0015\u0014�����\"\u001b\u0019�L\t\u001d�U>v�(�˩O��\\A\u000b(���Vg� 3�\b'��2�g���LQ_kW\u0012���/�����D?��\u0010۪�m�T�\u0015��\u001a����\u0015�GQ��Sz�r+���,�'1��$B&{\u0018�k˯9�Ec�_3�� 5S{Dl�`��\u0006\u0018\u001d��7~F��`\u0010��%\u001a\u0005}�eS����M/��$�\u0003�ѹ�6���O?rm\u0014�\u0001�����>��\u0012\u0002r���i�H%�et\f\u000b]�[���J�\u000fx�A�==�\u001e�)'ΣA\u0017�\u001e܀�\u0001��>���\u0015�\u0018��\u0004�P)\u001d\u0016����\u001d�C��Kp\u001e\u00050�I\u0006+�R�\b�T\u0004C�������y0�\u001d���\u001fno�?���-o����\u0013���I���hb֤w]�\u00040F�\u0015#o#���\u0012l`��6V-G��R�:�O۩�:�7��\u0000el6�5�/�}�\r�]?o��A��6ڻ��\u001d�\b��)).r�@��\rV�\u0015�ZY������@*\u0006�+���\u0013v�eF*iI�υ2�W_J\u0012�\u001f����s�<�Ā\u0004�\u001b�-�\u000b�>�\u0015F�O��*\f\u0002�V7�����}.��l�F�0���q\u0001k��{I\u0003��������F:\bk�9F֨�\"k��r\u0000�\u0003\u0017�U�@[o�>q\u000ec*��oD/\u001a;�H@W��9\u0011��\u0010\u001b6�\u001c]mF\u0012\u0000��P��;*\b\u0013��r��\u001aM\u001d�-o��p�5�D7��@�B1�A\u000b�\u001f\u0004���;�x���i�k��\"&N�`�7��\u000f�\r�Y��kˌ�Ȱ�)�ټ\fN��k��6L쵴qy-�\u000bO\r\u0011�\u000bc�wٻ\t\u0004\b�s�����\u0018\u001a�m��ND�ٸX���}\u001bG���\u0010il�\u0005d�O��}�A<�?�Z\u000ev\\#ۖ\u0000�4&���V���2���9Y��7�\u00150�)1�\u0003%�n2$�ڭ�-y\u001ay��\"��j|�B\t�>�����y�|םb*���p\f��a���k�\u000b���Y}A�� J?�,���\u0013d�8�\u0005���69��,\u0017rې� �\u001e\"H��:\u001d,���ӎ���F�=�A\u0013�\u001f\u0018��-�֘-k@ʗ�5�^�������cB��I�-#�̊���x�r���\u0015��K䛷l6�Z�u�x_�\\�wi#�ё�d�[�rM�A0��Zߴ\u0017\"��R|~\u0003k�Gm�z��tm\u001e�\u001d���\u0012޻��\u0017�u3�]�\u001f�ν鐤A�K�uO�8���\u0018�#F��H��\u0019�E��,^hJ�i�^\u0007&[\u0010�r�^�L�D�\u000blYP�D\u0018\u0000�o��\u0006\u0016�R�j�jMD���M\u00183�+�=�\n�R��l_\u001d\bY�����\u000b�KVwd\u0017�^�X>= sM\u0007�0\u0005j.ܯмH\u0004$���^ŭi\u0016]\u0003��A\u0017�\u001f,��0[�}5�\"�”O�e�'L�u�glwG\u001d�/����K�#)#�-�\u001b\u0007+��.O���6Zj��e�\u0018Y$Ž�,8�\u000b���8\u0002r$G�\u0016c]dC�%\u001f=�lLmc\u0010M\u0006��W7i����2��͛��Xіu�9\u000e׹�K�p�L����[\u0011C\u0007�d��\u000e��\u0014�\u001e\u001f\u001f\u0002�3d�X\t�\u000b�\u0002�1-,��l\"���������\u0015D9Ч���\u0011B��-���\r��\u0000S�.�\u0006���7\u0006\u0017{H\u0017�\u0002MȽa�k摜\u0015�G����V{]����yHR\u0014;��Δ\f��6j�T�Z��\f��bi\u0016�(�i\u001c4�ӏ?��A\u0011�\u001f@���}sp�%UԂ��\u00051+�/����g��b\u0010/Nt� �S8���`��P�@�}�'$�,\u0015)�w�T�\u00061���\u0015�}\u001d��\u0002(�\u0004�?�D�\u000e�\u0013n���\u001c!�q�����4\u0019~lE�V�\u0014����\u0003\u000bId՜?H�\u0003�#�Z��6ag�\u0010\u0003&r9�l��ɕ�˨q����\rc\\�V\u0006�S��\u0005��1wmfr\u0007ir\u0010���;#B�\rUf�z�i�񵡿���0\u001d \u0014\u0001���\bz��\u0003vk�!\u0003̮�L��\u001d�\u0014�v'��J�\u000fp��\u001b�֢��R*��\u0019���Ơ�rX���P\u0007�E�E$�XV=\u0011��\t%�)�A �\u001fT��.�\u0016�q֭��<��5����9؂v\u0002U/�\u001f\u001a;�G�{���X.\u0016���-�;J\u000b(��I$3Ѿ�N��<|B�`j���=\u0000�6S\u0018�ҏ9Б?�N�r\u001e��̦�����DK<�\u001fxL��xa\u0018��ZZv�o��~�\u0000Ƹ��\u001b\bL�6/�E��\u000bS�\f{����W�n�L�/n�u��\u0017���\u0014l중ܺU\"iTy��2�S�Mꆫ��C|X\u0017�����dT�\"d�Y�\u0019�Ko��I�ű_�Ii��n�\u0006�K�<��]�^pk�A��V%Q�\u0013C\u001c��R�\rc\u0005���\u00138�Ѭ}\u0002%\u0018���(�\u0012\u0017�!��_R\u0019i]ߑ�? s\u0005ޯb|\u0011�[���켩��L\n���ժ���CS\u0017QS߂���$��Z��\tϭ���\u0007�\u0018�~`�\u001b\u0015\u001c������\u0019_ҟ\r�y�/\u0010��+dX��2��B\u0017��6��ʁ\u0017��o4�Ø��w���Q�åV���\u0002\u0016��m\u0015��\u001d�\u000eJ���\u0005 ȋ\u0015��ujh�1<{\u0007��\u000f#\u0018Y)\\��)7�Ex�(2�\u0006\u000e��\u0017ǫU�\u0004�:��Ѣ�\u0007v\u0004W�F��3���i\u0006��E�pY*��Bb2_g�T ����#A\u000f��p����\u000e3\u0004X\u0004:\r�/��p�˩v�A�����\"d�o��#�A$�\u001f|��\u0006�:��\u0006��vĞ)��집��\u00044�d�\u0011���Q:\t}�A�\u0010�%^sj}�\u001e�������,@�����CKE�3tꆹ\u0012Nj?v����R����q+\u0002)hӊ�NË�4������gq�ȀL�q��͕�\u0013�\u001d�\u0000^\u0015x��[��£9��\u0018X]$7�y$�DP\u0017ٔ��DŽ�����Qk��'�\r\u001f4b=�ѣA\u0011�\u001f���.�Hn2�\u000e1�F\f5�<��\u000f�6z\u001a���$V����b��\u0010�i��r��T6gũ�:`�\u0019��\u0003?�����\t\u0014�y���\n伯a�oRi@o\u001b��k�L}�eY���}>J`[/�d+��\u001f9�Z�A\u0013�\u001f̀�\u0002\u0017O\\X\"�`dR��t!���D\u0016�e/�\u0019q�Ӧ��p������qC����wK��\u000f�\u000b[\u0012R�]na}yI)ߎ\u001d���K���\u0011�o�$�\u0010�@�Ÿ�\\\u001d��\u001eN�/�M.�+#�qv\u000b�M��\rc\u0014��9\u000f��z�hr�ҩB���\u001e;]P��h�\u001d��5`I�5�\u001c[�a��kOٛ�N1\u0017���\u001a&\\[�8^R�\u0003�\u0004&���L�j]/i�f�T�xa�PH\u0004��-�q@�:��3�S0�h�ڲp\u0000akt��fMb������l9F�ҕ\tB\r\u001d�S�>0#؃��#A]�h�t�\u0001�\\�7�\u000e0J�A\u001d�\u001f���q�>�.��>��vIK{��Cg�T��U%CA�^�^�R���{�W��\u001eR,�x�.\rE���0�M\u0006\u0016�M�\r\u0006r1\u0002�\f�\"Ja(�)��\tOS�\u0001K\u0013ζ�K�c-T��8� ����K+v],,?\u0012�\b\u0012�������\u0012\u0003T\u0002�u\t���T2�\u0011r���b #�\u0003\u0000V>�+Fp1>��q\u001a�5�q�V��\r��ҷX\t\u001f�\u0003\u0012�:�������\u001f�tc�H�\u0017\"��\u0003�K<��\"��&�F��)��\u0005�\nb[*\f8N�}�\b �p��;�9J��\u0016Т\u0005�\u0016�J�`\u0001BA$@�c��l��1-��2]�1j �\"\u001c�1�A\u0005�\u001f��\b}^T��j��C�\u0006��5.����\f��K&��2�J�V��4�\u000b=���\u001f\u0003�\u0010\f6$\f\u0004�\u0006�I\t��\u0018�~�*�͉��*��\u001f\u0007ɾ�-9��;��=I��\u0006\u0003㼇���!S�\f����|��p��>�=\u000f�gp���lW/n���x���ʅ��m�j����\u000e�Vg��_.b4k��\u000b�Ů�\b�E�D����ཌྷ�Ȉ�#\u0006~�U�� ��\"�\u000e��<\u0007��\u0015��\u000f&��\u0017\u0013\u0005R��6�2J#3h&~�S\u0003��/�_�,Y�v�U\u0018�ʑ�V'�\u0006�(�I�8N\u000e�\u0007�A\u001b� \b��\u0000O���\\�=�ڹ͟Y���\b^��y{d���s\u0019\u0019\u001d�����\u0001�V�\u000fa$\u0019��\"�>�t\nU\u0002�\u001d�\u001d��qf���h�ŗ�`�X���Zj�A{�������\u0019�C{�u�a_A}��A��\u0004)�ɠ��Y|;����(�J-�\\x��z@��\u001cZ6\u001dy�4���\u001f�$�\t~g?E?be�;�����_�@�դ_�l�Q>/e�\u0003��zTX^�������:Y4��A\u0004� \u001c��\bS��/�S��/����\u000bW.N��\u0004�p�X֟Ύ6c-]\b��\t�!��\u001a�~EQ\u001a�In�d�\u0013�v~�'�k�$ϳV\u000f�k{�^��-�Me��X�M�>�n�����d4ʵos���Do\u0015š5�z�o�n\b��'���FK��{���!S��L���to7P\u0003B�$�?[a�C\u0007Z��ˣ�\u000b��l���z�\u0011\u0010�\u0011/�)��\r-�x\u0002��G���=>�%�\u0000\u001f\u0005�V\u0011���a,r_�Pr\u0016��\u00157ٓ��\u0016N������\"�\u0001\u001c\u001c\u0007*֕\u0001P���\u0004-6���Pb�r8�O�A\u0015� 0��.ĝg%A\u0005���s\u0017����\u0014>���:�@\u0010�\u0002)��k}7�����,��6\u0002\u0003�~�YE��i��\u0005P!����u��9��xT�\u0014P�Ǒ�c��\u0015\u0018ɍ\u0003����c�/)��i�b�3��Ie��&p��l9�9\u001cuO�ݑo��Hz<�����\u000e\u0005z{��\f\t\fq��(�\b\u0013����}Z��\u0017rB�z�U\fT|��rg�-�|O}aѐ=ck��9�\nD7 \u0012r\"��\u0016\u001bN3b\u0005ؤ��dQ%�BcHoO�<��\u001f\u0013~D%����캬\u0016��}�\u0017�v�e�H�\u001f\u0019�S���?�j�\n]�\u0000'O\u0010�jUi��߀�A\u0018� D��1�V\u0006��3`سxi*�\u001e��332�ꫪ��\\/�^�6F\u0019̼E���\u0005F��e5�\u001f\b�\u0011q!oO8\u0001��\n�0��s��\u0005\u0003�߳�J�\r\u0010Ŧ��\u001d�\u0002\u0016��5*�\u0019�d�|=���?�=j1�U�'l1n�it+\b�I�� �ӄp\u0019n\u0013�~R����>IL\u0005\u0017\u001dp#n���\u000e^��\u0001��\u000eI[���\u00076i�>m��^}��N-�軙-w��kS4\u0006\u0005[W\u000b\u0002y��\r���\u0013\u0019IWeeB�g\u001e�2�4}��0Y�!\u0001A[�*�S��}\u0014^\nC���x���+�\u0016���/��~�'NIв\u000e��y��w,���\b\u001c�>Dr��;��]\u0016�@\u001e{��>͉��=�\rE\u0018\u0007�A\u0012� l��.��π������\n��H5}��,�\u0016Y�P\u000ee�\u0001�\u0016/W���v-��j\u001fN��\u0017\u0011�1B��c����_�TlH�2�ɂ\u001eJ�\u0019�\u001b�����<|�훏�u�D�U�\u0012bX�=*,k]��_����\\N��l\u0015[�\";?Ne�S��1|O�Znf�\u0007��3\u0014��\u0001�N\u0000r\u0005��\u000b(\u0006c��E��\u001ac�\u0012��{~��<⫺t[k�-��J\r�$k�0ײ�ϔ�1��J\u0018y���=\\>%�5�+�X�\u0007y0\u0004#g��\ngUH��&i��\u000b�����aE8W\\�����\u0001z���M�\u0002H�B*7\u000e\u0014䙍#�A\u0018� ���0\t���٥_ �eX{ˉ\t\u001f<��ux���@x�E>pe��m�8����\u0011�m�X\u0006�;\r��p�9����t8�7�nr�;\u000b0��`z9�\u0014�!ho�\u001c\u0003u\u001d���\b��矰�\u00054\u001a8EO�_�ax²��AGC{\u0019�r^\u0010\u0012a�*�qU�%cS�:�0�'�2@�Q\u001d\u0018\u0012\b���hG\rb�꼐\u0013\u0010Un�֘'�*i�翩o\u00026O��Q\r�\u001f�^f}X�\u0013��(_\t���\u001a\fT��li�Q��\ba%�:E`�s�/�Q�O��)�>��e�\t�խ���:nINҥ�l���\u0017Ͼ_��\u0018�mg}�f=�����I�t�A\u0011� ���-���U�q�F�b��\u0005*�y%�ⷊ�y�y�$���'�O���mB������\u000e�h9\u000fv�Ǫ�O�\t�Q��\b\u0004\u0005ح�5G���\u0014��\u0019�\u0011�-���u�'VJ�\u0003%�Ȱ5\u001f�\" 0�v���J�b�j<��?{�6��]z\u000bp��u!��r�X�a<Ӓ�`�x��Z~��g� \r�eb�.�_�%�z\"��F\u0002ڬhB^ԩ\u0003\u000e\u0003'�)e;\u0000B��sCt�R��fQ�e>�~�+�\u0014n\u0010v�\\\u0012�h�w\u0014o�,l�:5Ah�c��{)8�\b�7R)�&��D�\rSg\u001dd\u0019��O��\b�\u000eѝY�O��A\u000f� ���\u0000P�\u00038�|���\u0003!�Y�/\u001d\u0018fw�\u001b��W4F�\u001a�.���!J�<�L\u000bL5HM��\u0003\u001b\u0004~�\nL�-4��\u00118\u001c*E�\u0005-�HN��Y\u0006=��t=F\u0004?-���E\t�7͍�\u0019\"*%�ya�%�No�R�VҌS\u001c��\u0002\u001e �D�o�7;�\u0015�S\u000f�\u0011p/9&\u0003&;\u0018\u0018F�\u0003,KJZlv#�\u0019�,��z�\u001aj�\u001d+df��sߗ\u0017G��!\u00063��P\"��b�\u0016b�\u000e\u0006�S\u0013�P�v=�\u000f�2�%�U��u���>!��QR�\u001eV�\f�\u0014�����^\u001c������V�i@\u0004�ۖW\\���\u00037-����A\u0015� ���-��&\u001b\u0012���\u0003�Zْ� ��(�\u001c�UWը�x`KG�\u001b�qc�\u0018>�\u001b/����~\u0014zA�W�¸�_~���z�j\r���z3�%z��Y��\u0000l���\u0018���uGt\u000e�?JC��}1�*�g�#\f\tЁ{\u0014�Ns��P\t{�Bi\u0010�n\u001ce�=#�W�[r���_c�*�5��\u0016K#OF�\u000f\u0013\u0005�C�0te;?P��^��y�g���e\u0002�����&(R��w�z�u���iV��\u000fP؃���wZM\u0005\u0002�\u0004�dw��D�N��ff�-��C�\u0000�t1Rjc���L�2���\u0014\u001a����\u0001[@��\u0012vD�\u0014�@�� Ѐ�\u0002\u0016e���<{\u0011�\u0001)�wqK[=\b�I�ݭ�v��V(�b����\u0004\u0014<�܂�$PQlr����а>F�}�ݩ�\u000eomIo�O��G����\u0013�wd���4f\u0012N}\u000e���]A�;\"�cu��x�f%@�A`l\td15j�EoJ�\u0017D\r�P�'g@3�W�C\u000e}�5i�����g`�`�m\u001e��kk�F@�{D5\"\u001cT�5П\u000b\u000f\u0000\u001a�!�-��\u00019�Jw��\u0002شiR�ښ\u0010�C{4p�r~r�\u0001��\u001ec?�_��\u0017.g �\u0011�7�}9�:��A\u0000� ��-���7�\u0001���y��K`�ᾬ\u001b�6@\u0015�BK9:k��Gӫ\u001b�|�l�-�Oi\u0010�\u0014�Bq�\u0002�\u000e�H��>������u�u�J�[���O�����<%���9���{��2e��֙\u0007�}!���cD4Z��+\u0013�D5\u0017�#\"\r!�2��\u0004����\u001e�Ԗ���׿{��\u0000\rl���9\tU^o�zw{�`qn#��f�!��g�E�#\r������C��U�5��p�\nx��\u0000��LV��3�G/=��!��Dl�A\u0000� ���\u0001�Xscݦ7p\u0016(\"\f�$u��]��!�U��x����\u001fJ[\u001aE���3�/^��Z5\u0000��X��̷ݬ\u0004Kg@�0�Ɔq]� 3@Zr\u0017)qϒ��F��>e:�\u0012�lR��S�畴������\u0004\u0017��$��\r�K��~\u0011�&�0�3�2�T%�\u0000o�xN�#� �䰒\"F\u0011�Hh��8`\u0019\u0014\u0004�}����H\u001d\u0002��N\u001b�*-��c8\b����J�5\u0002�]�,��b�\u0010\fG�Wd��\u0011)����\u000e�t2�����D�%�#ʙ��g�h��E�.K.M\"\u0015�4����#�A\f�!\f��.���|\u00175:��(džP��Z��n����l�e�(k�:�Ϛ\u0013�0�0����̓#OV��}/=�!ul��\t�[Z�]����~�kž�\u0005 �P� ��f栓W�f\u0017�\u0019H���������1��\u0005�\u0001�I��\u0016�+�\u001f��5%@]��\n�3\u0016�O�:7\u0017���[nߺ��\u0015\u0004 ��\tﱿ���V�\u001e7�a����C7)�;�\u0013��A\u000e�! ��/_��ߤpsݮ�\u001aVn2�\td+\u0016}���v\"��9O\u0005��2A\u001c�ik��')��\rB\u0000�xl\\��\bҌ�9��\u001d\u0016����/+-�;-ni�\r�Κ�\u0004�'G�y���� �\u000bu\u0012�8$�E�Uo&^��(�BnY�F�$L��1���_��r20��!��K�Z{�48U\u0004[\u0006�.�Y��\u001d��N\u0010\fn��J�z'r3�?��!�,��菙g�**�\"\f�;��i���\u0015؊!�^C\u0011,\u000e~\u000eD&v�bB��#nb%\u001b\u0018\\k�Z���\u000e����V�\u000f���eo�\f\u0002ɛ዗��\u0018x�n��r�#I�%�A\u0003�!4��\u0000\u001a��ڧa\u001f-E�\u0018���R�\u0013���Zu,�'��\u0010�c�\u0011�\u001d:^\u001an\u001aȶ�r���\n��\u0005\u001c.n��.ͪ�[��_��0��9\r1a�/���,[�B\rC�_\\\u0013W���p�v��/�}|��m�2�(����Z7b��$rx\u0015O�I��M^I��@\u001a���.\u001f��\u0014�\u001e�D�3醊\t�-���[�Pa\f\u001d��8�ԃ}dj�\u000b�tㄼ_����7����{<���_\\��潼\u0012PR�����BP��\u0014\u001azO�ُ7ZD��\\d��ƙ\u0014v�\u001d�\bb�C� 9a��3�;>�A\u001d�!H���~?)���#���z+BR��\u0013S��\u0014�y�pQ�\u001dC\u0003�W÷�2�`(|\u0012�^\u0013��Ŀ��\u000ep\"aK����y-�T\\2\u0005v����I�\u0013�?�!�J�o4�\u0000P�;Øà��\u000e�.�b�9��֙si��$\u0013\u0005ߋ1��~�R�QH\u001d?�[k��\u0004E��{��\u001f����[g?�[}\u0000�or��L�c���@��~@�@ܹ\u0018`�e�g�\u0015A��v\"�6`{\u0003n\u0000!R\u0010UCr�O\r�\u001bHb��?C��!��O�z8z/(LsZ*�|�\u0016LH�\u0010\u0017�RD6��PV�Mʕ z\nT��\u0011J�P�4�\u0018\u000ev����tcF�\u00116����B9�A\u0004�!\\��.$����r�&��pB�\u001c,-�h�\u001e\tHw$X!,\b��T\u0011W�_�j\u0018>.j��;e�\u001c��9E6[�b788��9�6N3Ձ路\u0016��؍0�r�Е?�Y����\u000e���\t$�J+��\u00142\u001cx\u001c��)�y}�{��DTʒ�}�8��\u0017\u001a};�J9a��D޾s��%+��\u0006h+��2�z\\cmu�c\u000b����~��ʦOX�\u001f��|G\u0016u��U:��ha�A��gD��)�\u0018B]�%,0L�\u000f\u001b�^F��H�=!Xc1�)L����\u0000�{,��\u0018���\u0015\r4���B6H�A\u0015�!p��5C���\u001f����\\��\u001e\u0014��s&k]��d�s�Td\u0001�ִ�3䓥����u\u0019�g�\u0000]��ѭ����A���7ux�A|/�Z�C��x\u001c�\u0011���Q�nĻ�ܳE���\u0015����}tY�\u0017Ĉ\u000bo��r{(�� �\u0005�t� �CωćdjVW��)�\u0012��(+��\u0013�}ɂ��\u000f�ߍ�ڛ�i��BZ�2\u001e5U��swz�!�\n@��a�\r+\u0006WJ��QR�c\u0017I\n�6[X&w����Dత�\u0016XYX8Ɨ{UG�aBQ��\rc������\u0004է}�N\\`|E���b�LC\u0016:�����(Zw� \u0002\u0003�A\u0018�!���\u0002\u0002�fs�x\n\u001c��h\u001e�\u0002�]ٴ�E��\u0000\t0�&CL]YP�(�A��2OS뾝��9��\u0007R���q5,G��gX�VS\bt>��6>+�/�����:B:\\�QD|\u001a�\u0002ڽ[X�\u0011g�{`w��ܠ\u0014�\\�9h�\\�,�.LX�T��x\u0013�ӿ����F�����XG*W���Y�\u001bt`Q�k^\bd�xT<��D��\u0002�m\\C%�\u0012�ȟ?�\u0007�F�x\u0003��^(�2A��=�/�\u000e��Ũ1�����jb4�6��-C�\u0012�Ο���\u000e\u000bh�9Y,G\u0005Э�\u000e����\u001e�b?��Z���\u001a\n1G\u0016��A\b�!���.U.�0x�\u0003��ڱ��>҆p�\\\u0013\u000e�|�@]F`dA+\f]\u001c������Hm�e\u001f�?/��D��wEſYc\u0018�\t��㕡�:\u001f\b�1œw(�\u0013o��G\u001b��K\u00141\t\u0019y�k�6!F\u000b�,�\u001a]��;�z]%��k7h'5\u000b���\bW���g9��\u0010���y\u001b9�t\"V�R(tE\u0019���|\u0015qΜp�Ak�6�89\n��Xa\\\u001fzTs�z\u0006Vq\u0017��Z�:7��\u0004چޭ㞖Ӫ��x���X�p���B\u0017��\u000bV@l�L!_^��\"g$l���&�;t�􁐐\u001a�\u0018t\u0010G��\u0016��\u0019�A\u0006�!���\u0001��b\u0010�ߗx���\u000e:d\u0017�\u0011(�E�8]ު\u00106򙪳.m�:{\u0014�6�\u0001f\b&w���I��\u0014�D�i�*��)�MÚM��\"tBH����\u0015+�����������C�\u000f��v�17�xG7��X��[Dz~�=W�W!pr�+�/����\u001b+�\f��\u0007�\u001f.z��\u0002��A�JAt����Y�\u000b��\u001f���9�\u0007��>�+�T��u�V6B�R�1�\u001b�$��\u001c*\u001c\u0004\u0011���\u0002.\u001e\u0002a41hǧ��lo~Y��\u001d�\u001bG�s����V{\u0006���\u0019[\u001f���\u0006A�<7�y�ӈ�A\u0006�!���M%�J\u000b,�gs\u0016-��l�j�\u0015H�5���Kc�F�������挎��c+_���\u0014-�JV��\u0019-�d���\n�\rd*��^��v�:��p�U�g��ߞ�;.��+b��\u0016�\"�#��q\u001eв;�<����a��(uأ�i��a-�v��A�_��CW\u0014���\b�z\u0000�\u0018�X0W�������kT\r�y\u0003�W7�6�>B�U�9#�\r\u0016�\u000b��\u000e�J�n�[�’\u0003\u001e�j�x�����+_�}�\b���Q�W\u0011�A()\b\f(\u0000n\t/T\u0016rͅ�E�\u0005��\u0006R�_�8U㎔�ȣA\u0003�!Ԁ�\u0000\u000e���B12\u0016�X����km�F\u0010�;���J�[qV>AmW��v���\u0002A��Hlͻki��0;g���/A\t�\u0012͏\u001c�9z&�ɺ��zPx�U��?۬L\u0014��$�i��\u0016]�GL��\u00003�;15#���Z�\u0000 \"ږ�dj`�_|o\rhP�4�F�\u0014�(\u0011,ۏ>RjF�3������La���р�Qߙ���� \u0002�&yJyr�1��`��\tw��\u0005Y�\u0017o>P��Y�.1��VnN/?h�\u00020�\u0000\u0004y�\u0015����:\bQ\u001e�ܼ�T��n ���Tv��y��v��t���A\u0017�!��\bӿI}�\u000bg\u001cX]��g��iu�Ɯ.����v�^01]�VC���-\u0012���ג!����K\n���[\u0011%�\f��\u0015�D��9\u000e�\t;?xr��>�����9Ip,�{��\f��\u001c���4�����\u0007\\��B��x!Q�\u001a���=��6\u0011�z�Q�����К��|3N*#�\u0016������#^��c\u0010�� �=C\u0018\r\u0002�\u001d\u0007MB\u001aB_�T�t�S|ݿ\u0005f7�\u0012 �\u0018\u0016Ͳ}-�w>��\u0004�Q,HF\u0005��%�\"ߊ�\u0006��e\u00121uԺ�l���\u001f!�\u0011�_�\u0019\u0002�]�\u0015�\n�y8�?i\u0006�8��=��\u001a'XC�A\u0010�!���.'a��gEYZ�ꉰ2����V,Đîx�@�E\u001c\n����+}\u0012��L�D.�\u0002��U���ϵ�{\u0007\u00198�����D�I���Yn�T���\u0016�רGeQ�yK+\"5�\u001c�\u00174�\u0010?��e���s�\u0006\u0002��h�Jj�k�D*�����\u0019\u0007דg �[�yJ��\b.^\u001bɃ��Ϫ\u001aA�6=�^,\\k��\u001f�hZĤ�S�\t\u000e����ժ>c�\u001c)�\u0011&�S^:BB��P�\u000e�D5y�&��;\u0006E���תQ��X�![����Ѳ�n������w�}��;�\u0001v\u001d�\u0006�0ޭ\u001dSH�;�l�H%l�A\u000f�\"\u0010���}���\u0014����W�ᴧ��B�\u000b�})&���(\u001f\u0016�\u000b�\u0015��M(��P��[=Ѐ\u001462\\%�\u0011]�׺qx,2d$\u00117��jAR\u0018Y����*��c��/5X���\u0014��^\u001dQ�ݥw\"q�j\b�\u000f\u001cq�3�l�ܨN]Gy��,��\u0007�8qd������f��#�\u0012�#�/\u001d��:��\u000e�v\u001e�\u0015�C�A\u000b�\"$��\u0000����S0\f\u001c��ֽ�:[\u0001Hq�M����:Q��\r\u001a������E�\u0011��\u001bW�a�\u0004;�l\u0000���l6�N�\u0011\u0010�AZ�d��\u00173�y����lF��f��|#\u001bBH�a%)�\u0003�\u0013�a�\u0006�k!\u001e�*3�\u000f��΃�\rKo�Պ�\u001e/+\u0010�\\�\u0005\u0003I!9*�=%t�%�e��\\\\C�\u0002^n$\u0005p{u^�\u0003�ǫ7ۻ�n:>��\u0005����54B\b�5p\r�\r�\u0018��YϬ�A��\u001d�0R=՞1T��,\r¤�K~i4�\"X-h���U\f�;,\u0016\u0006�]�_G�r�/�ִ\u0011��M����w��A'�\"8��0\u0001 ��4�\u0005�����2��X5�D~�\u000f��\u0019Ay;1�\u000b��)�!�*ヸ�����S�����\u001d���\ne8(:=Gt����*kS����\u0001\u001c�N���#C/���`�QZ�Dת�]�\u0014I1�\u001a\u0017A���ZQ���R����\u001a(a$��\u0000\u0002Y�����\"���QQc[���\u0016*�V�/�H����_u����_mL�e'\u0002�'q���k�Ë�[�-�\u0019��\u0011Z\b�\\���\\�\u0013ԝ��z�E�\b·�5K�fC��V,�K\u0005����x(�����Q���Mg�8��\u0004\u0019�\\�\"��t\u0004T\u000f\u0001�\b��Ǩ�\u0018��[G_\u0012o��񘽆p�-�\u0012�٣A#�\"L��.#��e\u0000���d�A\u001e�\"���\u0013j\u001b�R��S�*�\u0012� Dw��S`d\u001b9F�,�\u0014\u000f�>�>�%�ɀ\u001cP���Χ9\u0002���\rL�2��d�w�ֲ<\u0003n{A[7��w�X.�k\u0004qr�\u0001\u0007�/v\u001d�Xp,�O��j��m�\u0007/v\u0005\u0002�!jym\u0019�9\u001b�+\u0007c�+���d\u001b �S���m�LĻB��)\u0014\u001cLo�^8�=���9l`�z�\u001c�B�|<\u0002E��\u001a�o~��i\u001a�[���h�\"�[��\u0007\".���:h�i�\u001b���\u0003��:K�?��TC���gή\u0019K��Ǚ��-��r��\u0002P���I\u001b?{��'e���҅��5P2�_�v�\u0011gE���\u0015΃���A\u001e�\"���/SY\n�F@��5\u0013Ϲ��?�\u001a�]b\u0019�zb��\u0003��\u0005�\u00031��L�����P\u0017c��\\�c'T`�\u001d�Q�\u0016�Z���l�h��:\u001a\f,\u0010����恏�qV��a��\u001a�5d�:'�L��D\u0012�L\u0001\u0019=�4\u0013W€;<\u00169$\u001a&S��R@<��x�@E&��^��W�e\u0013Z�儃��r�ފ\u000b�l\u0005E��@\u001be��zgnY62i%\u0017A5(�\u0015�\u0004�\u0018�0�ܖ[樆EV\u0010l=�}�X�]bd���!U��1���$^\u001c��&aҰ�4�\u0012����\u001b��{�M߁�\u001c`�$�7\u0006@ڷ\u0014���gj���\f\u0012��F�\u0005��}t|�k�A\"�\"�����ڵ`Va8�X[G(�x��v$\u000e�yx�\u0007�|T��\u0005�����ϥ�=;�M�vn��6���}p',5���S\u0014�q�\u0010���V�\u0013�\u0016lx\u0005i�E�\u0004�1�\u0003��q7uרum���\u0003�z\u0004n)r\u001f=�\u0012\bi�˕���$��1�Vp1���\\�\u0016Ll���k/\u000b�|�P/�L�\u000e��\r\u000e�O��6�F���ˀ\u0016��r�_Ra\u000f\u001fW`D'@\u001ft�om@-�\u001c�w\t,U\u000b��?y��X\u0014}\u000e��7�༒�_�^j|�=VB;c#\u001f\f�<�]�]��\u0001�]\u0018k�8��t�`-\u001f'�g�<�+�e��b\u001a�F@�s:�a�\u0003\u0014���B/�A\u0017�\"Ā�\u0000Q&O�%���j?l&8u�*�s\u0007�|I\u0018�\"N�\u000e�\u0012�jP�u\u0014�\u0018��t�\u000bC\n��S\u0019S�{.ܝ[�v��\u0011�k��\f5���D�uْ�\u0014i(\u0011�u��tb�u\u0010��Km�\u001b\u001a\n��◂\u0004�\u001dS퓕)�U�A\u001fU�\u0013�?}��/\"Z��֯*�����@�|=$s\u0012\b\u0013�(}���Ɔro\u0019���\f���O�[\u0000ɶ���X�\u0005\u000b)N\t���>�\u0019\u001e�Q�`bSΡ@݅g�\u001e�^��b\u0010��$��'wQ�Î�J�\"\"�\b�W}U�>6\u0003�S�7\u001fT`��5@&�\u001c �ꀦۍ,���0ef��#N��b~�.�A\u0003�\"؀�\u0000#�t�M�\r�TtR�D�u\r�^ґk��R�h��C{�~\u0016\u001d��oCN�o�\u0016\u000e���~�أ*�\u000b ��y\"w�P\u0000��pLM����s�h����I�J\u0017�#�%ș��a?\u001a\u0013�\"۽]��\f���,H�.�sxW\u001b!\u001f3F�~�2_�ш\b\\�\f�J�Ĉ|iT��u�-�r�8��y�l)�cU0�g]��gq/����N�M�\u000b\r��q[��\rf�N4d\u001e/�>U#��4��Թ�b@�;$Y\u0001�\u0019���Q�wݒ���\u0004\r׽6d0_L�\\��\u0010��$Ș\u0005��{mQ\u0014\u0014,��A\r�\"��/N�?O�����~��X��>�İ_;��|bv�t�� N�\n>_�F~2���lJz�Iy\"s��=�^}�X���\t�\u0013��$�M\u0012M9�|$Ń\u001c���g��H}r�p\u0003\t�ޥvGD�<�r�E\roۊvY����\u0000��\u000e�\n���\u0007R���+^In���z-�\u0017\b\u0001\u0019ɑ�A�\u00047v4\u001a3Ůě�\\�\u001a����x�\u0003�\u001fe�_����k�O/��tU\u00042؉�Du2�ua$���*\u000f���c?G�ھ��\u0004\u001a=<��6�f�X~f�d\u0011Yn�c��\u0014f�R�\u0014J���h\u001bZ\r8�A�A\u0014�#\u0000��\u0002\n�\u001e?�5���\f�7�g�����E昳�9b��8i����\"#��\u0007&�4y+�jW\u0017��\u000bv�!E���a�\u000eBz�}K\u0016��\\�j/�\u0015laRX�X\u001e����w�κ���b\u0018?�\u0017�K&W.�#��\u0013\u0019%�Kz��\u001c=��\n\u0011��\u001f��\u0010BX7�e�kt3CL�\u0007��$\u001d�E��9�`љUt�M�\u001428W/(m\u0016T���\u0017$!\u001aVrJ\b[o��r*\t\u001d����ƅ�f�3\u0013�\u001b�س�ƣ�J�\u001d��P��Fp�0�\u0003�- �V�ڪ+A�4(�4k�\u0010���$!�>��:�ؖ�X��\";0�?]�����\"�A\b�#\u0014��-��\u0019���vޟ�邩)�1{��х��N�j�\f^L�]�t\u001d\nْ�\u0010k\n� p�UE��\u0015P�\u0004BiI�@3��B\u0010���|���2��\u000e\u0015���*�3\u001d�\u0013\u00068S7aM\u000b���*�h,V�=L;��7�N�{6\n����\"�R�\u0006ð�}헪�7�%�\u00013�u�\t�\u0007j��}Ă֡-���f\u000bU�~�\b\u0017t��\u001e��\u0006�\u0016����VNځM�k}+�\u0013(��V�\u0002a�G7?T���~4`7�\u0010��?1yε��\u0004\u0006\u0014��5��N|��\u000e�n�65^\u000f�}�j��\u0005��fX��3���|���P�A\f�#(��\u0002\u0003����P�׉M\u0010�]_t\fiΰ���\u000bۀ���\f���-�7�\u0018Dҟ�{V{E\u001d\u001a�f(Akd���\u0002\u0010�A�j��\u000e�=W%�Uw^�MbOf�;/mT;#�\u001e 1v�sMMR�\u0007�OEs����������גN9��p����v�vr�-B���\u001fxL$�ӭ\n&�9~%\rH�\u001b���0�vn�y�Ա�s:���\u001d@�\u0001���q+r�&\u001b'�u�Z3̺\f��� �\u0003���P\b'�4�0\u0010x\u000fU�����]\u000f(~ �\u00032\bL�h�v��j ~F[���o�\u0002�&e6t�?'^��;�n6*�A\u0019�#<��1�י\u0013�&t��\u001f g�v��&��\f;��,nm_��9��im\u0003��l�ҁ�(��@�\u001aa\f�|U�ĄҾ��\u0000��Æ.�\u0010HH5\u0015�X�\u0007��\u000e<嚎��\u0017��������\u001b�shmH�h�L�c��B�%��F��\u0004Ee�xs\u0002�\u00125\u0002��M\u0006?z�� \u0003�*�\u0015t�.Z���-W�7U��Eɫ���-�6�n\n5�N��\u0018��KԶ�\u001f\u0018�O>�S\u000f�H�\fA��[��}\u000e�_4\u0012�ex||�*�h�\u0016�\u0000Z\u001bx���u���`�2���x�I�t� ����\u0017Q�&\u001b�G�p�sˏ@�[1���k[>I�8j�@��#P��/�\u0013Pc\u0000��>{B5��y��~�p�\u0000�\u001e�#\u0005\u0015K�j�\u0006&�\u00019\u0019'\u001e%n���ڸ\f>�����O\f�ϒ��Duj\u001583�I�ЄEV\u001cF�,C'\u001e z��\u001f��Q�\u001f#Z�\u0014Z����M�ݕu/�`CK\u0016\u0003t\u0010�\u0015_�zdd0\u0015`w��ƺ���\u001a�iΈ8��޸:��\u001a*�cOZ���\u0007p�,waw��#z\"��U�>X\u0019\u001b��!kڠ8��>�����_�?i��\u0005�rsE\u001f\u0017\u001cJY�ٍ\u0013*��ŗ6\u000e�\u001f�� �\f��'��Ӗ\u0017ݎ�5\u000b\u001cڣA\u0000�#d��-��9A*� 2\u001d|��񇵴8�d���6%-�N�\u0011\u0003\f�<�YCS� f�1W&\u0000|�j{K@������������\u0004��u\r�\r:�tW޺\u0016�\u001aȕY��\u0004�z�Ƅ#j]���쇕��\u0018Ť!B\u00076���[�Z�\u0001��Ri01F��\"�ә�k�˚���0e���\u001e�d�\u0019\b����#\u0007�Au�D���\u000e���1\u001e\u001a��`N�Tz����Vݠ�(��ŕy\u001e\b�d�n�n�\u0012i\u0015�<\\)�\nx�/¹\u0010�7:�hrf\u001c\rJ�-#�h�&��6�*�b�����\u0018�F3�A\u0016�#x���4G�;U\u0016��m>��\u0019��;@�aW̤j$<㥝E���rݽ�\u000fG\u0011F1���᪁��\u0007��\u0010����l������{������ �\u0002\u0007�Fٸ�?��\t�\u000eQ(�}\u0019�������'�.�l��N-�R����,\u0006M\u0003\u0011���\u0016UD\u0000��\u001d�t\u001f��rc�\u0019j�w�x���o�\u000f�\u000b�K�ℬ�)\u0014^nG\u0011\u0015�c�\u0014��\u0011dTc.\u0012\\�^�oW�s�\u0016{H\u0015��!�h�ͧ\u0015*��{�\u0015\u000f\u0019N��5�Ui�!�\u0006�ut\u00103�[����@at\u0017��.�^�Y6u��]�*�)T̩C��^��1tH]x�A�A\t�#���.J\u001f\u0012����4s҄��h\u0001����aq�iW�\u0012��X��[�5fg�w\u0004Ed:n\u001b�yT�$��ěG\f�U&D�-\u0003\u0011$��J{���\u0000-�NE�&�8�@\"?�(\u0018�/���R�]�\u0006}3[�R��|j\u0013�Y�v��{\twH쬐s\u0019���\b�\u0003�\u001b(\t\u001d�H�r��I�j�\u0015�����\"��4@��cS�\r�d\u00017Y\u000e���8$tĴެ\u000b�\u0015$�\u0013�\u0016\f\u0000:�M�BMU�mYݚ� �J���\u0016�����i�|`Ǩ�E���_�f4H�\u0013��4�\u0017\u0003�g4\u0002�B�*�L\u001e{M��O?3�A\n�#���\u0000N$(��� n��݆�\u001aȈ\u0018��\u001a��\u0002�@D\u0019�p\u001d�͎7�7�� ���R��p\u000fS����uEH]��o�u�N_�B�ΈH=\f>^���L�.X2�k1a\r��C�\u0003z���`�\u0017\u0000\u0007�\u0003�\u0016|�~�8�v\t�N_\u0017�\u0013\u0004iF��\u0010㉌H��V��7L��n\u0013��d>�H��P_\u000bu��Z@x%\u0000��:n\u0012��3�?}4\u001d��\u0001/%\u0013:\u001dTp�}P�3�DK*M*\u0005D�z�\u0018�Y�O�R�'�+\u0003't��?fN��\u0005|��A��\u0001��>\r�\u0003�l޳\u0011\u000b�6t��)�xlΗӾ\u0019\u0005*�a�A\u0002�#���0\u0002 u��޲�y\u0002�n�h�\u001aOd��\\\u0010��Rߘ\u0004�u\n%�\u0018���O���\u001c/�+^U�|'}�3u��,'dp�E��;uc��ŋ\u0013\u0000Kȋ�Bz\u001f\u0005r[�U\u0011�Yq8C�j�M�m#q\u0000-����MY\u0004X�\fM��b#��{s)$�c�=������͠�\t(�\u001596)��7G,$4\u000f��\\.%��]�#D��U^\tf���4D�g'V�����\u0010G��q��\u0005p\u000b�>��\u0000�Z��\u0015\u0015/�r�C\u001c\nH�0�G�\u0006��h��\u0007�k��\u0013:#\u0001P.N�\u001d?\\�;\u0011\u00139�x�d�A\u0004�#Ȁ�\u0001��7�陙�7�@V�6�)�D!�>�7G[w9>�D\u0007����D\u001e��]qu�Q\u0001�L��\b��M>l@\u0012�M\u00153H}��0�t\u00178�XM�T�

���?���A��y�� \t�!q��m�V��\u0012�\u0014�ǜQ�\u000b��F�\u0019\b�U���\u0010�\u0012;<Ħ<\u000e,H,\u001d�y���>>�3Q�J�\u0019�'���\u0001~�\u0010e�C5\u0012\u0003��\u0016��؟\fh�#\f}��b�1�%�x�z\u000bb�]�����M�y0�*S��\u0019���H1��+B�E�Vga9�\u0019\u001d�����)�-r�@s��d���S\t�.\u0014/�o��\u001a�!4J�\t�\u0010�*��n�H���\u0001�#�f�>�\u0006��\u001a����3{��*\r�gV�\u0010��?��\u0005�\u001emƳrc^N*������y����M˼�g\u001fc{�@��#���\bS��0K�5��\u0014�:b }��\u000f�ݫϳd\u0017ns ��)\u000f9?\f����\u0017\u0010\u0005��\u0004�;I}p\u0017\u0010��\u0004e�\u0011n�.�g%ϸ��<���W+�\u0004ؠ�t|*��o�i�;�w_�U�1\u0001�E���4�i9�n��-W,)�T�_pl\u001e�\u0003\u0005x�4\u001a�S�+M\u0017g�\u000e�\u0006&���\r��|]ȬZk�@���q��g�N�\u000bdT�H��\\y\u001d޽Q�\u001e�\u0013�M�\u0011\u0006GY��1\"�-̇�QHi\u001b����\t4\u0001��\u0014�U�\u0003vN\t�\"\u0004���#C�Ne�:�1\u0005н��\")+eA�\u0005�\u0015q\u0015>(�\u0011/\bs�)���\u0012������\u001a�����΋X\u0014\u0004��g�d߸2��~\u0014��Z1��c%ɑr\u0019\u0011�\u001a�\u0001m�����mW����<�`q\u0011\u001c�3ͬ:g?�����\u0004\u0002E��\u000f�-��7�8؉�� �H7�Dv�z\f1��)�]�˞�K�\"z�\u0012��jvM]�AQ\u0005�\u0016�'�)+((�#aQ\u0002[{3\u0015��A\u0006�$���.H)��H��a k~k�Y1,\u0004\u001dc��[���;�\t�!\r���0*�t���q\u0017j��h�#�\u001e�+vR\u001d\u0013��2Ⱥ�7=�\u0010��z�\u0010E_��\r�r`�\u000eM³g���QaJ\n3C���PY��<����z\u0011\u001bP\u0010\u0014vQ3(渓�\u001e���UX��Jd��}�7��W�'���\u0002��\t�9֛�H��yg�;���޸ٺ�CL��U��o�*�l*iA2�\u0004�Q�F�\u001e�\u001f\u0019q��b%�{ǽ&�h�ň�Aa���\r��W���!�RI��]�\u0019s$A��\u001at�R��7\\(�F*�A\u001d�$��-�^��o\r�y�M�\\A\u001d\u0013\u0017��KƆE�\u001b�����M���\u001b�괿�Km\u0007U\u0012���gn�Ȣ������T�χ��\u001aIȡ�ќ\f��i\u001cw���!\u000b\u0016C.IGM�o�1�_�10��\u0006y�%�u��M[ ʗ��\b��\u0011~�-�\u00076k��>fZ�vt[\u0012*�9t�\u0011��L\u0002?�Mc�4+���N��8��\u0006��e�\u001f��\u0003)���0\t���&,�5�q��=T-��BK�}��=��/釘�vG\u001c)�N%\u0014#\u0006^E��`i�I�H��a\u0010`\u0006u\u0001/�9���r�=?\u0010J\u0001�l\u0003����d�\n�ʇ&q�9]�Q3\u0017���\f���A\u0015�%\b��/R��O\u0012廓�\u0014P�\u0014cS\u0018��_f��\f�ʃb/�� �sc��\\��X�`Q>8���I�(����s�Htr\u0015��\"�\u0007Z�j�h���\u001cV@\u0010\u001dHY���#�fg��]Bh�\u0012\u0019o�\u0016�e��o{\b���\u0019E��y� A6\u000b�Q=���[Qb*�Ч�!�L������\u0011�M��V;�CT�L2�0\u0006Rn��D�\u0011s\u0007}ᐐ\"��\\rk#���˵\\x��@���*��g�Ȝ\u001cKg\u0005:\u001f�É��\u0003�\t .�L�\u001f�k־�\u0002���&�\u00059����Q�F�=�F�-*p�aH�?H�\u001eŃ��\r�*�Xޅ�Q�A\t�%\u001c��-�i�\u0002���\u0017>��̓�\t�`A��Q�\\�'��D����m�C�4�W�Ҳ+X\u0014������\u001e�pm\u00021mU֎(SQ{\n�Q�}$��\u001b\n@\u001d�I�N��o��\u0019�\u0003.`\u00036���g1!�xȚ��2#��zU'6Y�[�ä��P=P�|c\u0019_��J3���VW��\u0003�\u0006F\u000f��L���J�.\u001bBt�u�=�4�`e\u001by�\u0007����\u0000\u0014_5|b�N�\u0014������8_d�\u000e�� �ԉ9ن�⥳P��5�vU��5į��\b\u000e�\bXC��X>/�\u0004PՐܞMޖ�\u0013<��\u0010�@��%0��-�Bc���o��9�/$�X�E/_S��\u001dx����zP<��I�j?�U@y�ʛ���\u000b��ޓ��h�\r�A\u001eS����\u001c��c�\u0002�\u0010��W��>\u0010�+�M\u0013��\u0006��\bԻ�R�X\u001d�G�\u000f����ˠ��\u0012� Զ�\r\u0013�Q]\u0004fݠz��z��zTK�Ս�\u001aoya��kn���\r�\u000b�;\u0018\f��F\r=��M�����m�\";���tfӖ�ω�v���g\u0017\u0007\u001c@V\"�\\����sY\u0001�.p{�˝�\u001e�-#�\u0011\u0014~\u0014�r�˝�̘��\nY�\n\u0018�\u001d�MҊ,�@��%D��.M��ױ�{\u000e�L�\u000fL�,0�\u000e�^&�t\u0004�|c\u0011h��\u000e�E'����r�'v���\u0007V�Š�\u001f�Y\"\u0012����\u0019\f �]d��u\u0012�&.&���_���y9?\u0004�s�|\u0016^$�g�\u00182��\tVd�\u0002G]h\u0018�ŕqCx2�\u0017��\u0005/h�Ȱq�9L\u0014gt!\"�s $�44=ru]\u0007Υ�\b�'柡i{���;oc��������|�x}ϧ\u0000�m��~䍂�\u0001�Sa�MBtD����6�\n;ϊ������`f\\�l�tP�˗\t�R��\u0014br[�K��A\u0005�%X��./\u0018<�uީ�SLl�Rc�\u0019)\u0003;�Q�Ŏ��h����0L������r訝�N���r���\n\f{H< $�ʁ\u000e�\n�oT��-�\u0019?��q�`ip�+ƴRBr�$��g4�[�hw�4/Ɗ�\u000f��걩�\u0019Z�\t����9+����\\��>R~G옱zM�+4�'��>H��\u0003\u001c~\u0000�Jw‘�3*v�^�D&ty�n\u0007�u+�~\u0011�(�ߡ��sƟ9�]�>*���aVڱ.\u001c�K'���\u001c�g���ho]&\\�\u0010p@����+�\u0002:(\u001c�ތ\u00059\f9w�˂����X�@��%l��/���XŐU��Vpm��\\[tY����Bu��_�=u���i&�J�\u0007ҹ����'�\u0005d*���\"�y��\u001d��CI���-��Z��X\b��kv��]۔�\u0014pn\f/d\u0019�B�]�t$�\u0000:y\\B��AL\u0012�t\u0007�v�\u0014V)��\u001b�I��E�,���_2@֔{R�X��#o���\u0004Ѵ�\u0010v�\u0006V�\u0005tUKU�\u0015\u00118��\u0010]����c��u��y&AH� \tuFK-4�)�5v9\u0010�\u0014��O�}E�8�O\u001f)Z�#����3\u0000��_�l�ݸ���0Ƃ�\f\u001a�@��%���-�o���jAT\u001a\u0002\u0010��F\u001b�Ц\u0004R����$�p\u0014�g��K��8\\�cɀ�>�Q�/\fK��\u001a\"�q/�Q\rM��<��D^\u0015\u0010�j[���U5���ˁR.�s\u0007�̸B)�\fg\u0002�2���\fHL���\u001a\u0012\t�,��O2�J)�z̼�4\u001b:�P��\u0001�\u0016\r\\��o�d��A\u0001�\r��_�~�\u0016�N��\\�\u0003�\u000bY��yߢ7���\u0004����Ӡ\u0002����l�)���-�=�g���\u001d�-�9����O��7��e�<�S��\u0018�F\u0013\u000bRS9�\u0012�\u0013n���A\u0000�%������ c��O����P����Y?�\u001c�\u0018rU\u000b\u0003S�% \u0016>Ec�����\u0003v��S�\u0007i\r-�S�T�l/\u001eb�\n�.{/\b�hs\u0012A�d�&�j��\t\u001a4\u001b�(ƀS�Z��.X���&�\u0011\u001a\u000e���g:,z�Y�\u0007tG�\u001a&Y����r�qύ�\u0006�x{z�\u0003��\u0011Y��\r���j�\u0014��9\u001a]V`��r4\u0013���:q��ك�\u0013b���W+[�2:W�\"�ʨh������e�\u001f{\u001d�~\"�z\u0017XB���x�7\f����\"o��\u0019\tޫ���\u000f������O%�s��@��%���6:\f�\u001a2��'�Wh\u0019�����\n&�\u00032�%�r�\u0013\u0011�N\u0006٫�FR���/HWf\u0006��Y �'����4x\u001b\u0012���n����N���o`m\u001c���E�:�ੰ\u0012��i��2�@�%���/A�R�\u0017+�\\R�r\u0003����lx����N��vS<�����7�[%�T�T��\u0007��R��\u001cr�f�\u001e�c�%\u0006�Eg��nA\u001f��&�\u0007���bZ�g�\u0005��E�.lL\u0002�5��9��Xx�[\u0004��-�b}���\r��x5\u0015�X�\u0011\u001e���ﹱ����W3m,u�x$\t3��\u0017��tX6r�CX1vn\u000b\u0005�}��m�j���\tp4\u0015�ǡ���֜��4�-�\u0017�\u0005��j\u000e�%<��ShEs���]��+��%D\u001b���\u001b��n�]\u000b'��P�A\u0000�%Ѐ�0;���\b%f\\\u000e\u001eH>K�q\u000fV��t��䛉��?��\u0002JƏ\u0017>�'�v��\\�8�([�?\fT��.���\u0014��L�\\��\f���nѕ�آ�\u001e��֫\u0018\u0000b9�?W؂D�F\u0017�\u000e\u0018�1&�8�֒#�OE�~���<.3����:{�뛴�\u0018\u0013\n�w�y]\u0001����1�:��+�l�냰���,�B#\u0005�E]��\bj�s�\"\u001a�C�s\u0018nk��\u000e2_AЇ�s^Q�9�H��E�[��hY�\u0011�\r \u0012+ֽ��Ȼ!P��m���p)}%�\u00031\u0013\u0010w[wsզ5�)z��A\u0006�%��-��Ǥ�{6\n�c���\\�]��о\u001e��[=*4FSb٧��\u0017~��+j>\r\u0003'U]0�B*h�H��}�3g%��dw����S�\u00001��\u0019]J\u0007&д\\�gl�y{P\u0007P�f�σ���f�8��@LN�\u0001�\u000b�8�ܪM0�W��Y�d�J�ן�\u0013���\u001b�D�!}�^�4�U��S��8�Ѯ���Y�\u0014M�$Ѓ-�H�U\u0011\u000b��73\u0012+$v\rK��o\\�&�J�F*3���\u000bjӈbË�N�#4�*� �A�T�D�\u0006�\"P���.�\u0014Q\b��`�%�.� �/��b=Q�#�A\u0005�%���0\u0006_kM�\u0012�_@(\u0010����4Ö\u0007\u000b�`!\u00167�yz,��2�6h�Q@�Z��/�z�6�}���\r�\"��\u0012��hZ��v)��\"'�9ʪA��r\u0019.�0���bj\u00079YĘ��t�\u001a\u0015�t��L����o�=/��^[��)�����\u0006\\��\n�z+D\u001bgH��K���k)0�?�f`\r����*��]ЩD��]�\u001c�e���}|�����]�ڵ����g��\u001ah�!��\u0000ӌQ\u001c1;O��\"�&��\u001e�?>��\u0005�\\��\u0019���H�µt�>x\u0007E��r�F|[4\u0017gV\u0007��A\u000e�&\f��0\u0006��\u0011�Z&��\u0019>\u0016�N���u�H����|����4z�>�\\\u0014*ktd�cD#!\f�kǫ�^ӊ��0����\u001e�O�>x�7G2�\f̒�=��&\u0007�G��\bF�����\u001a5���%{�=\u000e��໪�`S#��ֵ@K�'���*O kb �D��@�耷�\u0017\u0014�,_�#��/�vn�\u000fl�D�:��\u001a\u001b�ז���N�͑T�O\u0001�\u0004�\"s�]:�\b}�i��ɿA�\n\u0019W�\u0006R��.�y��F\u0003����lT�\u001e���2\u0015�{\u0016E2:\b����g�어�����*�U�ϫ/jnj�ԖQB\r\u000b\u001fQ�Z\u0006\u0001œ�\u0003\u001f��Wl�~̙uޱ�\u0004e���9��.ŵ�WQZ�����`�\u0012�Y��\tkWƥ�8�/���\u001b\u0007�T�#�.\u0007�V\u000b�)�L-u��\u000e\u0017��x��)6\u000bZ�\"̼�{����P�\u0012#8�t�&>?���jE�ɴ�\u0003O��\bW��\u001b�\u0004��TK�|�Wu�A\t�&4��/>����!e8\n��\u001c�\u0003�\u001aQ\u0001N[ޚt���p��O�\u001f=�h�\fT���\u0005p��@�n\u001d�TB\fԷR\u0000 ���\nZu�\u001b,]�H��zBJ5�Y��Ā�n��(\u000e(o�\u001f�\u0012 B8�t����\u0018�&�ϡ_\u0006��]`�2��a����0�H�\rR\u0019\u0003�'u�P��k�?Ba�\u0019��f\u001e��R�sY��\u0019Zz��Da�lx1��v�\u0014�\u0018��\u001b�%Nz\u0000:�ԝĖ>z_�t]��ʜ��\u001b�Uw�\u0012��;�~Mi�dn�%Y�ځw\u001bK}���Օ\n�r�����\u0011c\u000e%\u001b�d_~'Ɠ���A\u0013�&H��0(�\u0000�%\u001ba��k��S*d���V\u000f@�x�]\u0002\b�\u001d\u0000mq��B�{�NqY:�5��\n\u0012@bZ\rw;�\u0012w�=���b�T#�@�6�Γtwnх��|s:�J��b����\"iZ(�u����W�/�'�c���g�\u001cH\u001b%ӣ��\t�ɜE\bg�3�Fj(p\\�\r�.���κ=/}\u001dr���*1&\r�7Hp��S��.\u0012ݢ�\f:��K�#�?sŤiM�R+��\u0010��e��+ݡ\n���uu�RT-�(v�RI��e�\f�,�\u0017��]F‹�#�Y����n�4\u0004\u0005�`\u000b\u00126\u0010R�I���[�鏅���A\u0007�&\\��0^���\u001a׬G��Z�\u0000=ĺ&\u0003�ќ���d�\\\n����7?Z\u0012\u0018�ě�����R�\u0003oo�e.��l���F�XfD�_P�^8�\u00033F�}�\u001a3���\u0000,�de��wک{\u000b[g�bfl\u0011�5�l�|�g\t�dS��ɦF�D��l\"�C;(\u0011޷�+N�1��}\f���w:�p\u0015��z>\t�\u001e�Èn�jb��^�g�u���\u0002ʶ���\u0012�Gq\u001dW!��2)lg�\u000f\u001f�����^=\u0018�V\u0017�s]Σ�sW�i���̬+�nJhIW�\u0010i|�Z��\u001b�ᇔ�(�� 0���\t\u000fb�A\r�&p����:\tYM[���\u0010�>������&X<�b�;Yp�ʈ���K�FP6�������t\\9�d�E(��׶��\u000b\u00079/t�VTV��\u0002��fy��G���(\u0011l0RG�U$]/�Az�7�w�Ļ\u0005)\u0018�M\u0000\u000f'c\u0007\u001a_\u001a�4�?�\re;(�Ae�ک�Ws�0�\u0000�7�)\u0016��/�O��L�3I\u0005�7C�\u0005z[��\u001d^�\u0006D��1\"�\u0012�:J��.�@��p�D�\u001f�0^��\u0000��Vy\u001cO\u0002�\u0014\u0018�`��Vep4#_e��\u000b�<|^��f�\u0017>�N@� �x��٤�=m��Q��ES��\u001b�%\u0010�A\u001f�&���M�P����<1�EZ�d�_=�lO�^g���h��9�A޺��!,�\u0005tX�\u0001�\u001fP�\u0002�A�\u0005�;l\u0012%\u0006�B����\u0013\u0015���\u001f+Y4�}��t\nd�x�ؐ\u0013��Ŋß8���Փ/&�����W�Y\u000b\u001b�3��\u001e1n���[!֩?�\u00005��_�ȥ�7T�Ov��'B9�7z;I�\u0000Q$\u0018�K����\u0004@\n�qsg�J�Ŗa�DF�\u001f\u0006\u0007���(�����F�>\u0000G����u/2�\u0002���БR\u0002��˹�,;xbo�DY�\u0004\u0000��5\u0014n����➐\u0010/Y0�3�an\u000b��R�u]��\"��u�Rh���k��7Ŷ�\u001eky:�A\n�&���/�N媓9���L)�\u0007.U�\u000b� ��SF0Ϊ(Xݚk��j\u0005sc��H\u001a�\u0007�aD��z]�6�X:\u0014\u0016h����[\r�Oz\u0003�J�Mǹ�d�+��>�\u0010��\u0005����\u001d���`�]y\u0015�\u001b�\u001b\u0016 \u0018���a&'���\u0015s�s�3��z�G_/i��\u0014�\u0012^��Ǒh\u0001�-\u000fW�U��\u0003\b0\u0001&��c\f��(ſ�^\u0011�*E�\nĦ�hI}o\u0010v3�d\u001f�i�:;��92�8�@:��Ak+�SĿ\u0015K�\u0015b.�%�Y�\u0010�u�9k�K\u0014����DI\u0005e�t�lh������#f�\u000e�\u001bi�oY�A\b�&���M,R\u000bi\b.3�}��C\fZ������l�r�q|=�+(��g^ӭ�W_\\��}��|J\u0000��\u0010�\u0017�{�\u0001�P]��������t\u000f��bU��\u0012I�)\u0003���^��:u}�������Fq��C�SAeٮ���~�\t�5&+�2�v/�Kt��\u001e�����1��\u0012et���2ޱ���\u001b4\u0007ƣR��#�{£4\u0000��':9p�\u0018�1����'v\u0013V�PV�C�y���Y����\u001e��\u0012��Y�\\q�%�\u001c�0 ��:\u0006e�\r\u0004Zۭ:�s��K�\u0007:\tb��fr�Aa��6^\u000b\u0015���1M\u0000�A\b�&���07!~�Z�E���\n�\"Z��\u001bh\u001f�\u0014�FP}_�`҄f\u000e�%�d�xf�\r\u0004�Y��X\u0012xc�\u0017��k�}���\u000f}�X^�`@;�}����\u0000�2*\u000fq�3,�C���[�\u001dڬU[|!\u001c\u0002��P�������1r���e�l\u001d��f����fa\u0011�kK֪��W�\u0014C�P�[D�V\b\u0007�B��%\"�?H����\t$�\u0019\u0014*\"�\u00131ac[����t�P\u0010;s�\u0003\u0010\u000e��?tOE}�Is탉*��p�� ���1]\u0014����[.釒1E�����\u0000��R\u0004�\u0002K�\u0004�ㄯe��*���z'��\u0012�A\r�&Ԁ�0w=\u0006\u0003��ے\u000eڱߴ���^�\u0014�be�P�9G��>ey++/�ğv:si�3��<\n��������6i��:��uUK��\u0017�k��\n?X�\u0005�0�L��N5_�[].�����\f\n\u001b�@�^/\u001d}�5��z\u0010��Q6�'\u0015�C\u0001\rV~�\u0012\n<\u0010\b��=p3�@\\f�Tu��I\\]\u001f�%\u001a�y\u0000�;�stU�5�\r\u001fISrw�\u0000p��A\u001bh�����=���s�X��U�\u0002Z���~�EMl�\f\u0019I�{�t�\tu��\u001cu�'�ѿ�A\u0003�&��.>�f5(x#\u001cE\u001c4맕�jN�\bQ�1��\u0001\u0001H�p�F8��[;��\u000e����/\u000f{�w\u0017�\"�\u001a�\u001d�<^+[�L�Mb]~��wψ��V��d\u0011sB\u0012\"��q�\u0000�x���C�Y\u0011�z���\u0004�����\u001b�Gק�����d��OϴCm��F6�\u0016n>�A\nt\u0000�6��\u0012��\u00188\f�2;\u0007�ש�\u0014���m��v�Q�\u0006�\fۜ4�6�7\u001dPN��y��2!�z\u001e����ŧ�{��\n�c};�8Rղe�\u00150NɛX�<���\u0001��I(<=��v�J�\"('�v��im�A\f�&���0+���w�\u000b���:�W��ZC\u000en�#���\bX{�\u0015�AE���X�_�f�\u001a\fT�\"�,i��`V=�.\u0010Λ�ޣ��`0�\u0014�5\u0005\u000b���\u000e�u{�\u0006u|a\fi \u001a5,8\nHUB�|�L�g\u0007T�����Y�M��\n�j\rb�N�\u0016�I%x\rx���?�ϸé$�}�Y�,[�zC:��\u0007R\t�R���\n\u0003��z��c�ZGf�N�~�p�EwoA6\u001d���\r\u000b�w\u001c�E\u001c\u0004��i�>y�����W�<�f��L\u000f��\u000e��A��\u001b��p���%��O\u0012��K& lU�O�\\�@�)�p$\u0007@y���\u001fC�u H��\u0003\rA�A\u0013�\u0000\u0000��/ʔ�\u0014�KL��\u001a\u0015[�q̻��q.��M#i�\u001b�arw�F?�n�����\u0000�30���{\n=\u001c���@dU\u0010%�J��*���\u0019/%��H� �\u001b��\r��\u001a�c7���.�\u001a�n�\n��-'t~�wD�Ϛ$\u001e�\u0007�V��o�\u000eH���/ܒ���+\u0012\u001b��L02E$\\�\u0018P��\u001f��WR�\u0004\u000b#�\u0006�\u0006�\u0011�N�\u0016�\u0005y���x/9H�Q\\��s\u001d\u001d��/�Ȏi�p��\\-��7�C\\_\u0010�W˝e\u0012�\u0015��I����\u0001����S�\u000f+\u0007(-rYr�#�����\u001f&���\u0006�f\u0016k���}44���Y���A\u000f�\u0000\u0014��M70b�WS\b\u0015ܒo�1�6\u001e�U\u001c\u0010P�Me}���� �/�\u001f��3���qFK��o�����+\u0010�\u0001�[&\f���\u0015�LI�^��w���\\�Z{y{\u001a�\r��|\u0014\u0000\u0002���b$]{ʧ���f�_@\u0000~�׼��\nHh\u0018MAs��=!�e��^czK���K#�q\u001b\u0010�x��@�m`��\u001b��n��\f����O<������\u0000��gV�uiv�}�s@�\u001b�CV5\u0014o���,X+KL��ê{�'{E���g�\ft�܇�a\u001f|\u0013'�W%��$%�T\\(�s\u000f��w�\u0007��f2\u0016�-��!�MV0�Y�AȣA\u0018�\u0000(���{\u0005q�?J�\t+Ij���Є\u0001��P�\u001f�?lUe\r�\u001e���WBP\u001b���I����2+ۆ\"��T���|�\u001auܻ�p]�^\u0000>\u0004+fF���h\u0017A�\u0011�A\u0014�\u0000<���tv�����tw\"�|�\u0017eߨ��ҽ�%t�W �\\|ލT��ѻ�Qv5\u001d��\f�O��\f�%�\u000bC:��k��D[�x�����k����?���#�.W�ɢ��\r�\u0003��hU���\u001c�)\u001a\u0013o�P�!=\u001b͕�<(���\u001f�̦\u0012��r�س\u0005�\u0012\b\u0010�\u0017�\u001c�ݔYP=��!��:\u0017R�ӕl\u001a�����\\��\u001fA�\u0013ؠ��X�\u000f&*��EEx�\u001f8:\u0018\\\u0011q\u001fv\u0014\u0005���\rX__8E\u001aGg\u001eʵF�f%�tEn\t��V\u0001\u0013�\u000fN\u001eS\u000e�!�X\u0007\u001c�Υ�O����)n-��d#HNRz����{\u0002�\t�A\u001d�\u0000P���;�R@�vL\u0002��\u001f�/�nf�nͼ,Nc��1��ă99EX��\"�?�X��v\"�\bx0:�%O��wg�VL��S��\n͌\fX1c摉�'��E\u0015�M�/��W�|�}����$\u0004�\u0006��γ�\u00022 \u0007�5�\u0014�%S�5�F��!����\u000f1@Ժ9�'C\"�κZR�ֹ��\u001c���5�ێ$W��g^<��\u0007Gi�`>�E\u0014�)�;F\u001d�<�6-V�2\u0006��J�EZzW\b�\u001fŪV\u001f��[�>;/��\u0017����РSS9�!f�v���\\\u001da�\nh@��m�s�e�����\u0011�Oޣ]\u001c#�n�4Z�xp��:H�`�?�A\u001e�\u0000d���1�\u0014\u0012Ji+\u0001\b\u001b~沈'&\u0013��\u000eB\u001b?�r�}��B�\u0006��\u0006'�e2wǴgb�ƸI\u000e-!\u001cڨ\t�9�Y(�Gyqj�\u0018f�к�\u0007\u001f�A`[1f$E���PJ~��ېg\u0015��\u001c\u001a��\u0019��n[�\u001d�A�\u0016SNFP_�W؉\u0006q`�\rG�u�C�Ӫ�=��Ƌ\fГ&�de�1<%\u0016�w\u000fN\u0017�G��\u0003�_X��s/:��b�\u0019�{WrB\u0011�ӉNɓ�~\u0000{����K`���\u0011K25\u000f���:\u0005�\"\nl{��8\n\u000f�-����x!��\u000e~��\u0007%ay%/����%\u000e�ԸS�Q��i\n\u0001��.�j���|g�\\x�WƸ�sU�A\u000f�\u0000x��M-�1MQ�\u0019���O�\u001f\u001d�]\u0013Da��<�D���[O�C\u0004��\u001d���,��0~T�l�\rz\u001c\n0X�S�����8�\u000e03�\u0002'{(]\u0002b�[A�\u0005���r��+B��x\u001a6ٶmI��7p�|\u0019M\u00173>K\u0013E�S�|H�\u0000@yGmv3\u0012�p��\u0017\u001f3\r{�#w��\u001a�\u000e\u001c`���5�\u0013�~���\u001d\u0006��\u001b8��C���F�[��A�\u0012��??a\u000e�9��5�\u0006�3GaG�v8Oժ�e��s��G�Pɟ\t�̞��9��6\u001e��I� \r9[���c�\r،��2J\u0001�\u0015JEK�|��fbv�z�R�A\t�\u0000���.FŴ�(\"���/��Drw\u001eI�\u000f\u0015�$��\u0003�cĿ�PH��4\u0007b\u0011�{=�Wi��/j:\u0012T\u0016��Ts7��%�^�� \u0015��5�S°�@��c;H��%�����E\t�\u000by��`r����\t���.��u� �S\u0014�� Q\u001e�~Ȕ\r��iM���U�zX�:�f[�]��K�c,8{\u0004�IL웄�H�͛���Ox�>*�\u001a���\\0e�\n9�T�\u0014E�upI�?�����\u000b\u0005��q�,X�d\u0015\u001c��g�M\u0004�\u0014�o�L*-}���\u0010��\u0015\u0007�mngy�\u0003�'\u001a\t/\u0011o�=h�.�A\u0016�\u0000���M\u0018̨檨�[��b�y�M#�;�;�xi���Gx��^n����OEhU���1��]\"�-ڦ)�Ǩt<ɒ�\u001c�h+Mޒ֟̕0,\r�e2�^��w�^���2���PBm��U�]�\n�B\u0018U!4\u001a:��\tWG���Ƥ��\u0005�j9\tx\u000b�&6-Y���oE��6\tVO���\r�g=\u0002n]�\u001b�p��數@�\n��2/�7\u0004���\u0006١y��~���VϱP��1����r�#�*���\b3\b\u001e���ts�b��'%ǙXo\u000f�^:�\t\u0004��߶S�Y�`\u001f�R����o�hl�\t��6a�G6Hpp���y�I�A\u0018�\u0000����\u0016`��3�:%\u001ci\u0004\u0015>\f���AQ��~\u0003�\u0011YnBY�◰�\b�v��|e\u0016�΋ȿ�.��$~��\"z\u0002H���K���G+�\u0019sƋ�;���4�\u000e4��؋�q5b8屋h��\u001e����\nR�!��Z�hE��B�\t�(��H�xkC�'�(�\n\u001b�:�.��Ɋ(���\u00176�/\u0013��$��R�MP�\u001bR�%�u\u000bd��R7����~�!(�[Ҿ��a��[̵�QDB�ʿ�\u0011$\"\"_YW���Z>\fU\u0011�t$Q�\u0001\u001f,\u001bc޿�8\u0013�@S��6Ό\u0006\u001e�s�\u0004�/�č+ٺGu�1��<�� d��p���\u0004�A\u0016�\u0000Ȁ��w\u000b�D�e���m�J�}K�S\u000bi����ߗ�5��\\\u0013?�d��6����\u0006�n\u0013�L!�gǵ1�f�Q~/�8x\u0014l��J�<>�OM�㙨��飨h\t/�^${d�t�\u0006�j���퀎�\u0007�{#Y3ss\u00007�OsI�p-|����F\f�x|e>�Hk���\u001f�\u000e\u0019�\u000b�:��jO\u0014��L��|\\6��Z�qu�4�����-r�%��4�&�=��~��\u0017�!F�8�PP��U]Ŷ���n���w0�$��F�C�J\u0007\u000b\u0011�\u0016\u001b\u000b�p�d\tL\u001cO����8\u0012�0\u000eZW\u001a�\bc=�:݂\u0005��u\u0004�A\u001d�\u0000܀�M&$�v�2ʼn�V�}\u0014���Uz\u0014��\u001fTq0q���y�Ke\u000e҇E��@a�F�\u0018Յ �\n���(�\u0004fA�/_@J�a\u0012�ع�gV4��+�hl�16�d��3�\u001b_�aPA�\u00037Y,���/\u0015\u0015�4����;-R��\t��UӺ6}��7f\"��L����8�\u0002�*��dׁ_S�\u0015��P�h�4id���r�o���\b����,�\"�m~�\u0013xP{�`��\u001a�7���v��J��*����/\u0015>\\��8'�i��.�(����-Ϳ\u0014$\u0005��\"\u000bH\u0017O+a(��PX�;i�U\u0001�\u0001��!!\u0011.��=�\u0001u2��{�\u0016��A\u001f�\u0000���J�\u0001:IyNu�x3T���P�;Ә\u000f\u0003�!�d[g�6ԫ:&\u000f��\u0003\n�n��K���^nf1&�9���\t��YM�B�\f���,e�S�n���7\u001f\u0014㚟\\'�NW֍g�6\u0016�?}}��\u0000Cd)|���ˑ�)^\u0018Z�\u0007\u001e\"�n݀\t��r\u0016?[/M�]-�\\#?ޛ�b�����ds�;8l�3�\u0018M��e���y>�V|\\z��`�$�.�f%Y\u0006\u0015ALċ�ҵoϩ��\u0016'�s}\u0011�\u0017ݧ6o\u001d�'�\u00039[-�2��q�E'���B}S�1�7��c���\u000es���\u001cA��\u0019���\u0017*\u001a�/x4\u001b�vU#�\u000e+A��A\u001a�\u0001\u0004���\u0013Z\u001c\u0000�.r�\u000e ,�\u0016�r4\u0002*��9zi��\u0011UA�\u0011Y�D;㬊k��M�$\u0000z�&ܾ���ĺ�d�&m�\u000f��\"�3\u00007���\u0002Va(��2���.n3\u0005�5M�\r�.朆�\tY��y����H_\rȔ�h��\r�gA\u0005�?�C�Ib�{�'��}�,�����p\u0019S\u001fj@Sy�+��W\u0011_� )�F��e��=���U�JAN�p�\u0015�+��\u001dd\u0002t��\u0019\n��BA\\�\u0014�q�.��\u0016y�\u000b\u0014��\n\u0014���X\u000bJ��׻����[\u0012GPD��B.Q¢�ށ��=O@K����@���A����\u0001�u �(�Gd�A\u0010�\u0001\u0018��M\u001b\"mݩ�x�\u000e�,��S��^���|\f�������e�yd��j\u0018V�\b�n(U4?@�n\u0006�do\u0011ZS�MA�\t��Y\u0003ʤP�A��?&��-\u0002��[/S���\u001f~���\b�{\u001e\u0000�(W���|���F,����*���\u001b\u0017�(U���a5�1|�\t�+�G�9��j\u0010��WEu~~7ބc�\u001f�r�D�\u0016���N�=��D~��\r����#U��,)\u0004�\b�\u0012�R�iU�(,\\3���\u0019\u0005��\u0002�>�,�4y�1G���]�A!Q5��\u0000��~�.�].�z��\u0000]�\u0016+��\u0003\u0014d�o��2>Q\u001c�A\u0016�\u0001,��5\u0003�U�\u001a��\u0002�T��~�\u000eG�!Nc��^�R�\u0018�Q��s�����\t'\u0011�'��\u0014k\u0001.�Dm͕�\n(�#��t���Nj\u0003�I\r�� ���7�\u0013�\u0014�پ\u0019�4�U$�����*U���@i{��m5 ��dˋ1�2�#�\u0015��\f�-\u0004gw4��A\t�����\u001b�ZG��c]w�T.N�(�֍��C���Ă�w�{\"ǁ��P���v�M\u0016\u0015���;�(x\u000bP\u0019<ؓZ��n����������9��P��Ə}7\u001b\u000eW)�\u001f\u0004�y�'��\u0001\u0010\u0018��ݛP��\u0011�M=�^+\f�Ҁ���J[��\u0004E�\u0001��A(�\u0001@���\u0017\u0018���j�k�x+~��]&���C�YJ��3&�8X�\u0002lz�\u0002\u0012�j\u0012P�A\u0004O|ϝ:�d\u001c#C6#?E���W'$�\t$wD|>p\u0002҅�\b��[\b-\u0002�/��Bڐ�\u0016�Z�i�\b\u001f6 \u0006\u0011�\u000e�03��z\"!\"�\u001fn�:x~�{W�\u0018䐥E�ǚh0��7\u0000\u0016��-��\u00118)�ճv\t�0�\u000b!\f�H]:8ؑ2o��f�6\u0004��\u001a���l�/n\u0003L�e��~\u0011�\u000b\u00067�YE�\u0003,����yDZ�i��\u001at�1�4�+�_\u001a\u0011B�\u001cI�U�GE��4�8�\u0010\u0015/��j_�{N\b^\u001a��\u001e�SI�Gc����Z-�|\"(�aZ/�!Ӻ��a�\u0003\b�A.�\u0001T��M,��u��\u000e��\u0003u�}�A���P��Xbb\u0003s�ѵ�;�ј��U�\u0007�_�;\u000b\u0014\u0012��\u001fb�b��Z��\u0007MlH\u0014\u00060�Oi(0�Hs��{��d\u001fi_\u0007���\u0010A\u001e�\u0017�Ľ����U<�Il��\u000f�<�)���\bZ�gm}'>\u0006/�V]�Ǚ\u0016����]K��\u0012����s\u0019fCDJ��D\u001b�Y�u\u001c��k�\u0011��\u0002L*��R\bA��,���_������Y�x��\u0001h�\t�.��Cy��ħ6�QЌ�uO\u0004p�|�\u0012��\u0001��P�Z!Ϝw�s�'kU���~ܕD��\u0017���Skl�\u0013�D��\u00003R9��Y;��m\u0005x��S�G-�Iw\tKj�?�.�-\u001f[�A��\u0001h��|�N\\�5%�b��.�#;V�e7�.q\u00001_�\n�_a�Ak�e�\u001e�U%�\u001fίj�m�\u0006��\u001f�j��\u00073O��\u0012�\u0018Ң\"��`\u0005\bb�\t�M�1\u0015`��\u0006J�j���\u0005�r�=�����L\u00159��%�����J�Dm�Wd]�h����7��\b�Z\f�hѣ$a\u0015څ�Z\u0001n0�,�u���ʺ��\fd-��Np�E\u001a�a��{��\"�;�\u0015�[�R�^%\u0004��w/G\n�@\u0002�\u0000�Bj���X�\u0003|\n�\u0002�4ݣ�q\r������m�x�ce\u001f�\u0012}X�K��:\u0005���e�~�R/j<�\u0011\bAo\u0007D �\u0019��\b]gD3-�5�uYl�\u000b0C��8�Jo���e��\u0016J%����?��9��\f�U�ޭ��\u0005��>ԻT��L��\f��\u0018Y��(|g6�2,\u001e�@��Y�_!���\n{\u001d���\u0006��\u0018_�@_�y\u0002U�`\u001c�Q�rQX7� �\u0011[�\u001c��\u0018H�\u0015�i'ҕ�҄��ź��y2�!�e���\r�\u0015E�%�Az�\u0001|����m\f�k��~�>F\rVE���G����gĬQ���\u0016Qr` ��1�\u001f�����fT�\u0013ZQG^�\u0000��T@�ܧ�70�D\f\f�7ᅦb�U��%\u0016P\u0000Y�'s�\u0011$Q&�%\u001c���7\u001b�7!\n\bϴ�\u0003VGH����;zˈO�:��;;.\u0014N0I���]�+W7\u0015�Ě&���8��ֶ,�?j\u001b\u0004����16olT�͒dH0��\u0001=�>wP\u001b�\u000f�\u0002M�c��@W�Y�gC��~�SY߷���\u0003��\"��'%�\u0018\"�(\u001d\u001e0�hf��^�:U�,�L\u0013�\u0015�\u000f�O\"?�Cx��;\u0003��({��\n�+�*�#��Ek,0\u0003�lnW��\u000f�C��k�\u0006p�4F�\f�,����4\u000fq�?[dYă����C9�.�V>p6{ֽAgA�������t�Xm<��RC�g�\u0019!$�1��\r4�%ɦ%�^\u0010u\u0003�Aׁ\u0001������@\u0013+W\u0018�c�!f�ppy�0�a8��ʲ^��G\u000b����e�\u0014f\u0018L�,:\u00189��\r!h��\u0006�k�\u001c؄iCX���wh��\u0002c�I�\u0013\u001c\u0003}�\u0010����V ���\u0016��Z<��z�}�\u0016(�\u001b��w��2���\n\t\u000eD��Z3�~Z\u001a�zJ��IU����>5�̯�L�.�v�O���G��\bo\u001b����,@�u\u000e\u0012��2Y\u0006���9^&�k��.%�EۏC�\u000b���M��~�y�m}���\f����?A�\u0004`�����\u0019!c10`�\n3�ysK/�\u0005�!��\u001a�D��7)��P�-�{+��hp��ٚ��H�3�;����u�e�\u0017�}�\u0004Sl�\u0015wv�\u000b�~\u001e�|�H=�Gm���a�\u001c�6+��\u0005�\u001a�W�\u0006\u0010-����\fO�\u00026�F\u001bǯ4I��ή>�i�����V㜕��HM@�w!R��\u0007�\\mt��Fc��\u0006Y�o�g�f\u0005�j'�5>��bF�'n\"R�w\u0007h1�fNL{�i�ે\u001f��\u0004��}�j�|��d�b��~ڇ�q��iN(\u001c}{��07:M\u0004Δ�e��c\u0007[K4\u00078�������M����\u0011q��\u000eAz\u0007a�ACQ��\u001a\u0006#�����\u001d\u0019!��V\u00014\u0000��'/\u001aq��*C��5�\u0000��\u00031��\u000e�&��[�~RW+�s� {�\u0019/��P]�v\t\u0001�Ҍ�.G�õ@�Iq\f:e*\u0003cI�����_,e,��Zu�7\"F*p�V�ə\u0003�mX@�8�'L�\u0013Zb�\\\f\u0004}�}�r���>yp\r�\t�#��c�8\u001b�r��'�s�\u001c�&\f��ꯟ}�Iq�>�>�ׁ�k��J����2j<���]��\"\u0006d�\u0013\u001a���Y'��;�v8,\u001f\u000b�1���j�g3����\n�BB�\u0001̀���ۙ�G�qqL\u00128=&���o�`���C�&0A����-�NJO;ڿ$\u00057t�\u001e\u0010A��S��\n�f��\u000e/�~%N��/{�A~qwF�;v�\u0006�i\u0014d��Qd{���}pv0��#�tMZd<�ԧ���\u0014\u0018йD�Is\u0014̵x4��\u0013JͲ��,,|h��\u0007!�\u0006��V��a�f\t͜�>Ez�\r�eɿ�\u0012��\u0018\u0007\u0006Ō���Gp/$%ۤ[(r�\u0001v�k��+.�\u0015\u0013�����\u001e\u0018�G��K|׼�\u0007]��P����ճ#N��=�#!�s_��\nk�:�<�ges�$+w�ѾO�\u0004ДJ��P��-\u000e�Uh�mq���ĎT����-I���Wn2�<�\u001bׁ��8S��LA>79)�Tm�q�X�~\u0013�zI�ù7�\u0001�<�\u0000�Y��\r��Ps�y_�����*<���\fb�|f;\u001d�\u0006>\bΣ�\u0003\u001bb\u0001\u000e&T�7\u0012&�5������\u001e����\r�&\n��'\b';+�\u001e\ts`�Lo7�}9�P\u0006�kAM��X5���r�\u0005�\u0013�>\u0018�\u0007&ŊKĂiQLJ���R����7�D�‰��L\u001bk�ZgIn=OM��\b�X;(V�D!N���8�\"�\u0018\u0011�}řC�d]p� 򏳼����T�\u00022�fMìHy�\u001d/LR���\rq�ɾ����\u0014.�?�WӍ(��c>�B(�\u0001���|�\u0004\u0002`�$��C��`=\u000f\u0010ҹ9�r�p�Z\u001bw\u0015�TH�J��A2_^/��R{��\u0011\u0001�ω�\u001bgg׸k��=�6�lj��(��\u001b��v�\u0003�����\u000f-��%~a��\u000f�\u001aH��#�G��\\Q\u001b���t\f\u001a�v:\u0010\u001df��E>�A��\u001dH%&�|nœ\u0019�&5\u0007Й�.��F\u0012�ߎ�\u000b\u0012�$\u0003PU�?��!2�Xr��\u0005r#�\r=�+���\u000757�5�|QVD�:�@���a��r,�}C.\u0016y\\�%�́���+\r�m�\u001alpB�\u000f�FH�\u0019b�k%\u0000��K{�� ���a��� p�ckI�:���p'�Je�nfm\u0005�4@����d��4�h�-ĔM\u001c\u000b�\u0016\u0003�L�\u0005\u0002;��|\u0014\u000f\u0018b��Ax�{�p͎�+�Z�İ\u0018�%$���\u001f`x\\dH��\n�}\u000e������r�\u0011�:�\u0013�K_C�&[ S�\u0014-s�\u000b��P����\u0018���љ-��\u0017}��e��&8�LVh�R\b�:}\t\u0003��\\�\u0017��މ��4��+\u0004x���\u0014B�g�$\u001e]y�^�\u0005\u001df�\u001a\n+DvA\u0005;#�\u001eG�Ʌ\ra����\u0019�\u0000\u001e�@\u001bǽ➯�i���\u0007��޸>�`�\u001ftyG���\u0004��W*2�e�אj�����5�4}\u0006�8�\u0014(�f�b�s�gH�BI�\u0001����򺏞v1�e�ԟt�{\b�b3\b\u001c��\u0006\u0005�<�,�\u0016��E\u0006=S-��d\tH�����nj((��\u0001��nk���%F�zc��G��\u0014\tul�ZfI\u0011��ǡ6h�\u0002~j\u0013K�H|d�\f�f]TzK\u0010����\u001eI>������e}�z���=���x�\u0006a�R6�|�9�1$�\u001d\\-g��K�6A3\u0011-�\u0010A�\u001f\t�P^ϗ\u0006=�\u000b��\u001b�E�'L��A�A$\u0014M��>��ю\u001bJ^n����\f���zC��/�lQa�y�.[�Z�\u001f�5�3�MPq\\/×w�g�\u000b9\u000f��@��/�\u0012�LWz�3`iߎ�\u001c�N;\b�\n�6�}s\r\u0004pe]\u0014|*��?�9���5��\u0012}5�o�S/#\u000b�8�\u0005j�'��fm�\u0018��P�Ģ�e�\t��\u0011��\u0002sʆ20�[h�h\u0014��\u000f�(_�q�~�O%v|�3\u000e�6�|1�!|V��S-\u0005��m���K֦�Viz���MTAٖ��~,�\t%�-�#�\u0010�'��\u000f\u0006nF/��tǶ�Qg\u000e\n�dgх\"*�P4�!ܳ\u0006\u0003u�\u0013N�L\u0001�Mgޭ�I���!6f����O���=�\u0006�\u00121�:ԝ��\u0003:\u0005ȸ�{5�\u000e��s\u001b}�Rb\u0002���״�J�d\u001b9䐺w}\r�\u0006u?�[�܂\u0007ia���\t>���F�\u0001�apL|�ⵝ���\"\u0004ND�y�?���o=�BK�\u0002\b��{-X�\u001a��SQ�:��Ϸ;��?����.��@��f�}_��Ld\u0012G��t�)\u0006�]�q�ÈK\u00175\u001e)����\u0017(���v{�c�m)қ�L�2��\u0015����5��~�;Tzw���E�\u0017)\u0002V��l\n^w\u0004\u0013�}��2\\�����K�P�\f\u0001\tƦ�g0�#6��W����tq�\u0012�Tc�yY�\u001c\u0010�q>�S�\u0001��)\u0011�N\u0013\u0006�l�N���l�����\r�\u0000~�7R�p�\u001c�zbPD�����@�y,\\\u000f������پ_n3���W,�uq(�\u000b�{�d���r�)=�\f]ˊB�8�ϔ\u000e�_+\b�Y�\u000e1@\u0014�lu\u0016\u0006p�$�\u0015r�\u001ef��y�\u000b�����7\u001e�6�\u001a\u0016]�����\t\u0019\u0015��W�<�\f8�\b^�>���\u001a��nSC:�ڴ����.\u001c�\u0011B��\u0000��\u000b[|\f��,�e\u0012�uZ��_�\u0002����:)\u0012��(��8�\u0000I�935\\.7\u0000HZ\u0000qB�8����\u0019�\u000eM(Z�f�z\u001f\u0010'I�\nq���6O�\u000b��\t��\u001d�H�\t�@���3\u001fϦ�����h��\u0016\u0016H��ӡ\u0007��6\rQK\u001f\u0005�o9��G6�h�4\\j�\bZc�V��EF�0���Y �G�|yR�G_'\b��QfAz�ƒ��N,iz\u0006sP�X�\b�V\u0001u���\u0001󄹹��G\u0011d]J�l�\"����`�~z�?��3���(\u000b���v�8:^y�X�\u0018C�y_3$o\\I��\u0016I�(�\u001f\u001b�g�\u0000eo�G\u0012�E���\tٍ����#\u001d��\u000f�a^\u0007ʹ��:Ng��\u0001{��ӕ�uJ\u0000ɣB5�\u00020����\u001e�\u0010��S�����20�\u0011�#\b�@���N�,RG� q�����\u0011�Oy�\r��~�$P�w�|\u000e`��`�W��-\u0019Ŧ���\u001e7A)�y } A9�ݔKa�F�/ċ\u000fs�S\b�m�ҳTOs\u001b�Gr�\u00157�ϼt�F'���K>PH�\u0014A�/�K�׋���\u0011*��u���W�ȥ�Og�\u0012��\b}����Xg��o\b�\u001e�6�K�׹��t\t~^���\u001d��Lw�CLI��7\u000b�\u000b X\f\u0005\u001bj�Q�\u001e�M}��v�2�h\u0018\u0015\u0005h�\\\u0018�\u0010j��P����a�\u0003���z�w��}\u0004%�Đӝ;\u0000/�7V\tg�{�::�.|wC�\u0018������\u001b~()�z�?`\"iT�OD�Ezw?d\t\u0011�\u0000���N[ۀ>�HNae\u001cz!1\u0005K��j=\u0013Tu�M���G�v}�Wf�.�h�ϣB3�\u0002D��|�>ErXk&�<�y�⾎`ǀd��4�N�ؤ�o���F���aȷ�P�@�-\u000bU�,�oZ�c&yv�Xs�\t�c�'\u001a��'��z\u0012��\"�A|'�9dk����q\u000e6�J\f$��b�\u0010b����ظf�~�n\u0004�]=|/P���\u0015q�\nKȘI��&��h{v\u001e\u00102�xYi��<�U�\u001c�-�\u00153��#���~tx=�u�H5�������c\\��6�Vh�/���M\u0010���\u0015\u000bd�o�8J�p�\u001d#\u0003�a��\u0003�����߈3�j��6�p;��'$+M(tw���d�\u000b�:��Λ�H!\u0014�Q\u001d‡m\fu\t���F�\u001eҺ�CD�q�ʩ�\u0019,<�/\u000bT\u0015��]��\f+\u001c��W]�\u0010���\u0016�����XFp��[X'{�\\�I��Ⱥ\\m�?C�e\u0013�g%�dҖ�\n��&�:#\u001a'S\u0014��+�\u0017���լ囕%AnO�eu�I?�r\u0013��?R�c44pt�5�\u0019\u0017\"�e2��[I�M�\u0004�\u0010S����\u0005G[��mH?\u001ct��SH@�����›�O�Or\u001d}�f�A��b�4�M\u0005-t�kJƤ��K�/\u001c���]��J,!\u001aa�\u0017�k��/\u0010Z���^�1b95��zg��3�nv\u001d]m\u0018N-�-0HӏM���\"7��Ѻ}M#8+e�AZ�\u0002X��\u0001\u0004�H#]���HL\u0012\u0012������U�\u0014���K�RlU|c�+$)�w)ޓ�\u001fƇ9�+�_\u0014�W\u0016j\u0017��\u000e�9{q�\"��N��bct��LIW�l��s��\u0018��\u0005hu�\b��G?�cF���޿(� ٤�\u001cM�w�W�{�_�_ck�\u0000t���Ѓ�a��)|���B`XC?��ztH�\nuA\u001b��c'D,\u0007\u0003p�j��,�\u001d��\u0012�\r�46q��F��d�\u001128|)��\u001d���U���\t\f��\u0005XZ���p!��\u001b\r.nȥ]�\u0002��\u0019\"���O�<\u001cю]U\u000e2\b�v�!��(\u0007�zKj+�\u0000z�\u0005U!���^\u0010\u00062�\u0004�Jە�>����K�Z�:<3��q�z>��8�-����W�M�]�ia�\u0006�Aѵ�\u0005πX\u0014�o�&ܮnS��A��\u0002l��q]P_�>�\u001d\u000f\"�\u0004S��\u0000C��\u0018�V�q��w$oq\u0012&�v���`H.D\u0015:\n|T����\u000f ap�5�ԖB��W18L94fd�w�:\f���e����WF�H_c𥲠�X���_�Ԁ��bI\u0002�G\u0014\u001a�6�\n��J�&w۲�p/��Y��s�\u0006)|�\u0012�2Lg\b�x���ܷqRup\u0015�C\u001f\u0006�_�\\Đ��\u0019�Q�\u001cs�\u000e��pr�2e��\u001e�*�4s\u000f}G�,d���Q�\f3,̈M�O��4@˰\u0012��!�Q8����*�����.g��\u0011�(�\u0019�5��\u001a\u001cwd��D\u0004\u0013�8�\f\u0019��Ek\u001e���\u0001\u0001l�W��x�!|�=6��J��\u0000_�q�\tn�\u0005� �G��#w=�8(\u0019��fS����\u0013��C;\u0014�$��i��B�\u001a[f\n\tV�P\u0015��#k]�x\u000e�@����ߔI�l6����d�1���*�����L\u0007T��iKNӲ��d�=79�\u0018�����R>A�Gt㜖\u0006{Π��A��\u0002�����S\u0015\u0010X���Q�̭�P\u000fv�Q��\u0001����P!��\b(=\u0010�z{�.��\u0000\u0000\u0000\r�\u0000\u0000\u0005\u0000�\u0005�®\u0001=\u0010��\u0000\b1\u001f\u0014�\u001e\u0003\u001d��;π\t�o9\u001f���\u0000\u0000�0x\u0017:\"ʪn\u001f\u0006�|\u0019\u0016�q��\u0000\u001e�J\u001d8�\u0002���l�����I�CT��L�\u000bb���L(\u0002�\t�@�UvQ6^d�����\u0018������\f��\u0001\"��\u0012Z*_1��\u0005�\u0004Pre�1\u000b\u001fH}���\u0016d�]D�\u0003S\fm���\u0011r\u001a�d\u0001˘��\u0012t\r\"v\u000ek��\u0012Z�-[��BZ/��V� +b�8O��\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017��jl9\\ٕ����d�@f�\u0003��\u0012�c�i�E�.�\n�$ٍ�Z\u001aҽF\u001a�\u001d�`��}lr�\u0012��esk�\u0016�\u0006H���z8{ZG{�)�\u0019\u001bk���(\"�8͜W��m>\\�x��ܪ\u0007x8C�(�����\u001dN\u0007��p\u0000\u0000p�V\u0005l\u0018¤�\u0017z��\u001d\u0010�ϖrT�m�\u0013��b�A�\u0002�����,\u0004�놾\u001fؗ�\u0012��\u001e�\u00189p��\u0016f�;�5�\u0017~(G��ۖ�\u0003oޏ����\u000b�\u0017���ٶ�*!x\u0006c\f��\t䉰�\u0012�]�1��;$B�����\u0003�I�P���%1�s H\u0003���O\u0014a�E�\r\b��4U�H\u001b\u000bJ-7�xˏeSfր��x��\u0007�\u0016-4�\b&�\u0005�ݐ��`�0q������E����V\\��<ۺ�\u001a�|\u001b�\u0016����[[ض\u0016��:��Mq����o�V��2�\b;��\u0001����Zn}\\\u0000zy�߭@������N��'R�h�\u0002<���\t\u0010{��ެF_㻨�\u001c�˹E�\fE\u0017X��\u0003�.�Z:\u0001�\u001cZ��a��Ǔ�!�W�931��K�\u0006�`�QJS��DUޫ!�Ow�m�\u001c��l�X��\"\u0013�34��\u0013�(�~c\u0000�E'o�[�\u0000\n�\u0000\n��.�.\u0000�\u0007��\u0004�e�\u001a��Idu(іԍ�h_�\u0011֬@�%�3�\u0004Q��@L\u00029W�\u001e�\u001c�9��\t�M �o0�c�\b\u0000�>\u0018�،\u0010B\u0006�2n��\u001f\u00143~0À(�ЯtL&t�\r?��_�УAÁ\u0002������$s��?+�١L������=o��\u0001��\u0000!̽J<�t���\u000e5 �`���%ȼDGC\u000b>ҍ�&����\u001fs��-?�>�\u0019�U��\"b��X��\"-H\u0000w�N�E�v͝-H��8�.���+��b�?ͥ�ת]�z\u0000M\u0004f\u0001�A���\u0003hN�;��Nb:���gdJj��8�\u000en�{9�cbܞ�Fp\u0000\u0018*�\u0001�m�6�a`L��O\u0007�pp|+�����Fwe�\u0006\u0003\u0006�Z�\u001e\u0003��o���z$\u0013\u000b<�jJu@\u0004�Lxw�\fS|�\u001c<٭/�4?qJ�_��y$\u0006 9�r;�\fc\u0004�_#\t��ꎬ�Ԭe��\u0010�r\b݀\u001e���q�a�)\u0006�\u0012\"*�U��u)@XI�Q.\u0007}�)�W�^熋��\u0018\u0004r�M���\u0000m\u0000\n�R�\"�T@\u0002�\u0000\u0002�#�e�$\b�\u0003V8\u0004�9��~\u000b@ß�K\u0007=��\u0003�\u0014��uo�\u0000\u0015@\t����#�x\u0004�7H�7H�\u0013\u0000�Q�Ϡ&\u0000�HNp}\u0004\u0000@�4�?�\u001f�M�X �I4�\u0003s�at�\u000ba�SV���A��\u0002������U\u0012O�\u0007cY]t�6����^F1��\\\u0004N�\u0000\f��\u0019��\u001b[\u000f�*�bSaͯ�;\u0017�d\u0004f��iX�'0\u0000Q3G��ѩF\u0016)�k\u001eI�0�\u001f\u000f\b d�X@֠x\u0012ep\u0017����\u001bĂ���\u0002,\u001e=8�o�1D�\u0010��\u001eB\n�C�z�\\��&�gl�t�\u0001:�r�$�X\\v��{Ȥ\u0010��\u0007\"�\u001b��Y��\\d\u0017cr8\f\u0006\u0000��[��{[��c�b/\u0012���\u0011��b�\u001c�?wo��'�\u001c��\u000e �S'\u0002�\u0005��h��o�v*�V\u0006�]ƣ��9���\r=}��%�����GW\u0000�#��t�x�\u0000����\n���:���\u0017M�@9}1�1�\u0003�\u0000�ޛ�\t`\u0001�\u0000*�S��\u0000�\u0001}V�{�i\u000b��Kx��#�A,���\u0002�\u0000\u0005Pv�xj�\u0000\u0015@\u0000\u0015A��'V��\u0001T\u0000<��;��8\u0000*�\u0003�n��\u001e�x\b�R���\u0002?�\u0000�\u0018�)j��+��\t�\u001e�=��1E��Al�\u0002Ѐ����H+\u0018��y�\n�-sӽ ���\u001c'Ħ�\u0000\u0012b�`4\u0016'{(W��\rx\u0019L����Z|\u000fĐ\u0002댨�\u0006���\u0013�(K1�\u0018aDzCk\t�?g\u0000Ċ\u0005dC6!�y���\u0005\u0007����\u0000(���Tm�.�)��\u001b�w�\u0011�'cE`��`�kĺ�lE�\u0013#ۊ5�\u0007В&EhW�\t��\u0000���FB\u0018�|Up/&I\u0003\u0014ݾ\f��\u0005Y˚��G�A�ǵ\u0000Sh�O�\u0005��f�����\f�^��̹�\f�o�r�I֙?,���\u0018�\u001fT���-@�v��T�.(\u0000����\u0000\u001e\u0000=����\u0000\u000f\u0000\r�2y��\u000bB�������S-2^\u0014\u0003��\u001d�\u00006�\u0003j�ӻ�`\u0002�\u0000\n�H%���\u0000U\u0000\u0002�0�DR*�\u0000*�\u0000�\u0002�T\\n��\u0002�\u0000<���0\u0006�\u0013?�\b\u0004�>������u��&\u0016X�(!��Ag�\u0002�����\u0005��QYw�\u0013�-\u0018�E�x��>`�U��\u0000i�x��]���D�DB�n�դ\b |\u0001�����\u001d\u001aB�4�0�&@�\u0001-�y�`�Hj�aKO܂{C3��\u0000\u000b��:\u000f\u0002G\u0016v\u000e����,]����>����L��=\u0016(�)i�w}��MeWS��p$�_\"����Sm�\u0011D#\u0011�m��1��I'������\u000fM����\u0011\u0003w\r��2�C��\u0001T��ȕ����:����C+���4�\f\u001c��\u0013��\f�;�\u0004�R�m�R�BtyJ��\u0002ƒ��s\u0000\u000f\u0000\u001e�c�c\u0000\u0007�\u0001�2y��\u000b9��1��\u000e�h�SZd�(\u000e_Lu��\u0000�\u0000\r��N�M�\u0006�\u0000�.����\u0005P\u0000*����EQ\u0000\n�\u0000*��U\u0017\u001b�p\u0000�\u0000\u000f$z��\b\u0000@�?�\u0010\t9��\fκ'38&\u0013J�e�iB\r��Ad�\u0002�������w�R��S#��H~\u0004A݄*��[F\u0004\u0000\u0000���h��d�5*\u0011B\"����œH\u0014�x\u0006��\u0014�[V)Z^m�%-ou�}�\u0012(\u0003P�\u0005����\u0003��_\u000f\u0010L����c���r�\u001aNN�\u000b��R����,�H\u0018[5�\u00019A�a~*X\"f\u0007�\u001fݒ��2��o���7Y\u00175\u0019�U��\u0015u��g\u0010\u001c0\u0019�_�L\n+y��\u0017!a�w\u0000� \u0005ݐ�l\u0003oWR\u0006�%O_c@I`+l�8���R�F;KN\u001a��i�,��x���\u001f���/�������\u0000\u000f\u0000\u0003����K\u0000\u001b@\u0002�sX\u0012`\u0016@/�֯s��z���o\u001d\\�\u0004sH%���\u0000U\u0000\u0000�\u000e�o\rT@\u0002�\u0000\u0002�0�D��8\u0000*�\u0003έ��#�\u0002�\u0000=��\u001c��\u001e\u0002;򜔾 M\u0001\u0002h�\u0010&���_|�at�ῖ>��;��Ar�\u0003\f����\u0001ؠ�U�����*��]�:���\u001d��\u001e\u0000C�{��x�O�u\u001e\u000eX�6�\u0006\u0000�P�\u001d0|\u001dœs�j�\t�H[ѸbJ\u000e\n�\u0019Z\u0000\u000b���i��]�@�'Us{ؔt&�p\u0005�?ؠ���\u000e\u0016V\u001dȺ�6�hE��H@��K(\u000f�*�V�@\u00059�\u0007��cR�G\u000e�rT�$\u00069\t�ת\u0017����=���Kf\u0019F\u0018?�o�R*oq�\\\n�Mn\u0004�,�尘�k\u0005}��7��\u000e\u001d�}����h�\u0017ֻ=�@R1�\u001dVC�\u0016�B�HQ���09\u0015x���\u00077~�\u0007*�N��\u0000\u001b@\u0003h���ǖ\u0000\r�\u0000�\u0015U�\u0007\u0000�K�b��?O�\u0006�����t�x\u0000#�j�\u0014��\u0000U\u0000\u0000U\u0006\u001a��[�\u0000\u0005P\u0000\u0005P:���t�\u0003�\u001e�t�U�\u0000U\u0000\t�=HL\u0003�#�K����4\u0004\t��~\u0010&�����w�\u0017\u0007�\u0012�XYbb�Æ�An�\u0003 ���\u0014�\u0000�e'Y\u0004?��2(���c�[��\u000b��\u0000;�l;��/��LB���(�\u0018\u0007�6\u0001�\u0014b�G�J��$��߈V-\u001bۉ��L�\u0001@�z��O&��\b@\u0006Z��\b?Պ�\u00078z\u000b�`�*kp��&ּw�i��ڟL�*�7�ik���Ico6���(k���\t�6Շ_�\u0002��6\u0002@�\u0012��+��3���nC\r�\u0016LVW�\u0004g���\u0018\"�1�H�k\u0005l&ӗڎ�x91���d��/�\u0001}cͤ�������t���@ẎTĘ���o��\u000en��\u000eU���\u0000\u000f\u0000\r� ��� \u0001T\u0000\u0005P��p8\u0007\"\\�{6����o޽�\r\u0017M�\u0004s\rTB�9\u0000\n�\u0000\n��U\u0013�|�\u0000�\u0000\u0000�\u0002�T\\n��x\u0003�n���\u0000\u0015@\u0001�^��\u0001�\u0011ǃ�R�\u0002h\u0010&��\u0010&�\u0017��S:�|J�[��e��H���An�\u00034���\u0015.���%���&���\u0006(]�#���\u0002j2\u0000\b�篻-��L\u0012\u0007��5#x\u0001P�Ri\u000e\u0013޻����P'\u0010u�2��2�`�\u0012\u0000A��ԃ�*'a�˨%\u0014�0�<\u0000\u001b��̤�䯂�\u0019y�8�\\�I�^c�?}�h�\u0015+aY���B��,?��+NM%�GU��������/��L(�qY�\u0000+a_1��\u0017Py!����z�p����k\b�\u0006Ӗ�k��j\u0018�ˇg}��ܿ�4\u0005��D\u0010�i1�\u001c�ih�O=����\b�iAi\u000b��\u0014\u001c���\u001c��:�L\u0000\u001e\u0000\u001bZA/\rT@\u0002�\u0000\n�˲�p\u000eD����\u00058\u001c�߽{�\u001a.��\u0000\b�\u001a��.r\u0000\u0015@\u0000\u0015A��'V��\u0001T\u0000\u0001T\u0005\"���#��\u0007��#�z\u0000\u0015@\u0001�Y�\u0003�#�\u0007��\u0002h\u0010&��\u0010&�\u0017��X_|�ot��}�X*����Ao�\u0003H���Q��e!\b�\u0018.�K�\u0017v���]�\u000e|5��E\u0010T^I�\u0004�~�\"*o\u0000Z���\u0002\fI�\u0011S�e+�>�>�����\u0019�8�h\u0013��*�Jڅ\u0015{�}���\u001c��}�}��h�\u0017�<�I^N��uY\u000e�\u0019�[E9�ꘓ\u0016��\n������\u0000�_���\u0001�\u00006��^\u0018��\u0001�\u0000\u0015A��� 9\u0012�\u001bٴ\u0014�߃~��xh�o<\u0000\u0011�5Q\n\\�\u0000*�\u0000*�\rTN��\u0002�\u0000\u0002�\u001d[�q�G\u0001�\u000fq�G*�\u0000*�\u0004ʽY�\u0003�#�\u0007��\u0002h\u0010&��\u0010&�������a2��3e�� ���Aq�\u0003\\���\u0015/\u000f\b2�\u000e:\u0005��\u0019Vۼ�h\u0016��_\u0003-������BP�Py��\u0007^�����u��P����_�t!>:C��/�I��\u0011n�sF�γ�Y9S\u0014��}�\n�^��\u00116�%B���\t�\u0012XBŦ7.�2˫���\u0001R`6O��\u0003�8\u000b�Q�$\u0017Ă��jt\u001e���,zڋdn�6��\u0001����\u001d�֐��\u001f��J��g�\u000b�\u001f�DgX��U�1 ʴ���j��j\"�w 3}���\u0018\u0017ȥUd�>Dd�����-\bPР\u0010��J\u0004������h�\b�x\u0000���\u0000\r@\u0001���� �\u0000%�\u0000�����\u0000\u0013�9Y\u001eM���\u0001�W��b$\u0000�\u0000)a�\\R~p\u0000_�\u0000_�d\u0017uH�\u0000\u0005�\u0000\u0005��\u0017��\u0014\u0004\u0000G\u001b\b+�\u0000\u0002��C��f\u0001\b\u0002\u0012M�\u0016h\bo���\u0006�q�@\u0016��X_|�at�ὖQQ�gF�As�\u0003p���\u0015/\u000f\b2�\u000e:\u0005��\u0019V۾\u0005#\u000bK~��\u0016h��6\b)��-lqUE\r��\u0012�.\f��\u0004̓��4jm�\"\u001b%\u0000���\u001f�������\n\u0007�b4�JT3��X�(�\u0016h^\u0012�ηվ\"1�P.���ʎ��W�N� ��Z���L�FJ\u0007ӑA\u001dG��C�\f\n�{\u0001\rg��\u0014\u0017j_F�n�2�vV�ΠըEÃ\u0013A�ՖH���2/b�r`�\b�CR��\u0015�W�X+Wr\u00035�\u0015Z���ΕU�\u00198�녩e��!��k`\b����(m�.\r�\r��<�\u0000\u0012����\u0000\u0001�\u00005;d�2\u000b�\u0002\\\u0000\u0004��\t��\u0001:c����N��\u001d\u0015x������\u0000;\f���\u0000�\u0000\u0002�� ���p\u0000/�\u0000/�S��l �\u0003\u0000\u001e6\u0010Q�\u0000\u0002��\b��*\u00000\u0001�L�\u0016�\u000b��x%\u0012-\u0014#\b`�ڇX_|�at�ὖQQ�hƣAj�\u0003����Q?��S[�(������M%�`݂V2\u0012*\u0007�F�����-@�\u0011\u0012:\u001d.�\u0007p�N�/�lN�@#�>y\u0007�\u0003�ڢ�||\u0006\u0019S�VdzU\u0002�\u000e��VsZ\u001fZ}{��\u001fY���\u0010�k9��2�,�_\t���\u0014Ff/\u0003��}s;/K�>I��]�\u000e�\u000f=�\u000f��\u0006~�fa��\tÏ\u0011|�\u001cӗnvuc�\u0014t�C����bX�`�3�� eK\u0006Ӗ�k��j0�����r�d�\u0017��%y �i1�\u001dVC��O<\u000bh�2\u001dS\u0012b�\u0014����t��\u0000�_���`\u0003h\u0000mi\u0004���\u0000\u0015@\u0000U\u000e]�\u0003�rOu\u0017��)��U�W����\u0000�\u001d�إ�@\u0000�\u0000\u0002�0�DR*�\u0000*�\u0000*��U\u0013�|�\u0000�\u0000\u000fq�G#�\u0000�\u0000\u000f#՟@<\u0002;���\u0002\u0000\u0000�\fs\u0017�\t�E�\u0001��z��0x_ckx#RƣAq�\u0003����\u000bT�]�@T\"H�aA{,�lMH��\u001d^�տ���U!�HX���_u�U�f\u0015Ֆ[k,����\"\"#��Ƽ�ȥ�DI�b�c%uZ�ӝN�%�n�Q�]z�\u0000�\u0001�b���&\u0007̔G�%�и�\u0015�I8G�g�\"h'\u001c��7�x`_[�[,�;�*\b���fp��z��r5�YٜȈ\n\u0017pjsX\u000fKC��?�.��|\u0002\u0018\u0015\t�!��Q#c�=�UX4i\u0005��2�7���\u000bR��J�����FN_���*��\u0000\u0001���X;�\u001av����ޟC��\u0003�����\u0000\u001a�\u0003S�'� �\u0000%�\u0000K�B܎\u0000\u0012�{���s�ۃ��\u001ctN�z\u001a\u0000\u000e� ����\u0000��\u0000���.�<\u0000\f,\u0000\f-�\"\u001b\bx\u000b\u0000�6\u0010��\u0000\u0006\u0017\u0000����\u0002�\u000e��&uDc\u0003��X\u0003ǰv��\u0017C�\t���9��ǔ���Ae�\u0003����U����\f~ݧ���zb���|�`��d\u0003�ϾIW���+���0C@\u0006�+�\ba;�=��k�K)2P\u0010��\t�\u0001$�)��p\u0015�\u0002�-JQd6#X����K�ڏ��U���7S�ԇh\u0014�o1�+���\u00130\u0019d�9X�s\u001c�\u0011�\u0004����L?X�T\u0018jET�!5\r$�\u0016�2�l@;m�;5�=�6�\u0015{��2HAݦ�\u0006WvB1����\u000eL4�)\u000e��+�\u001a\u0002�ܢ\by��ێ�!�C'�Ɂg2\u0012�$Ť)�����߼\u0001ʿӯ��\u0001�\u0001��\u0012��l\u0000U\u0000\u0001T3�_�\u0007$�Q{6����^\u0014��~\u0001o<\u0000#�o��� \u0000U\u0000\u0001T\u0018j�)\u0015D\u0000\u0015@\u0000\u0015@R*�վp\u0000U\u0000\u0007��#��\u0000U\u0000\u0007��#�}\u0000�\u0011ߔϔ�@\u0000\u001a/9�ϰ�4=\u000e��c9�@�uA���ƣ��\u0003��������\u0003Ԁ������\u0003�������\u0003��������\u0004\u0010�������\u0004$�������\u00048�������\u0004L�������\u0004`�������\u0004t�������\u0004��������\u0004��������\u0004��������\u0004Ā������\u0004؀������\u0004�������\u0005\u0000�������\u0005\u0014�������\u0005(�������\u0005<�������\u0005P�������\u0005d�������\u0005x�������\u0005��������\u0005��������\u0005��������\u0005Ȁ������\u0005܀������\u0005�������u��A|S���\u0006\u0004\u0000���", + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-disposition":"attachment; filename=\"audio-20230130131824.mp3\"", + "content-type":"audio/mp3", + "date":"Mon, 30 Jan 2023 13:18:26 GMT", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/youtube_video_to_mp3/api.py b/toolbench/toolenv/tools/Tools/youtube_video_to_mp3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..622f7819c6ec26d2fb21078e01f261b394a15e6e --- /dev/null +++ b/toolbench/toolenv/tools/Tools/youtube_video_to_mp3/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_mp3(url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This is the main endpoint to convert youtube videos to high quality MP3." + + """ + url = f"https://youtube-video-to-mp31.p.rapidapi.com/download" + querystring = {'url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "youtube-video-to-mp31.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/ytconvert.json b/toolbench/toolenv/tools/Tools/ytconvert.json new file mode 100644 index 0000000000000000000000000000000000000000..7eb9c4486715920fc4e14583d5d634dc1dd6ab45 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ytconvert.json @@ -0,0 +1,149 @@ +{ + "tool_name":"YTConvert", + "tool_description":"Download mp4 and mp3 from youtube", + "title":"YTConvert", + "pricing":"PAID", + "score":{ + "avgServiceLevel":100, + "avgLatency":969, + "avgSuccessRate":99, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/netostbatista-8PFB2-57zTu/api/ytconvert2/", + "host":"ytconvert2.p.rapidapi.com", + "api_list":[ + { + "name":"/url/generate", + "url":"https://ytconvert2.p.rapidapi.com/youtube/url/generate", + "description":"Gets a url or key to download or stream MP4 or MP3", + "method":"GET", + "required_parameters":[ + { + "name":"Type", + "type":"STRING", + "description":"", + "default":"MP3" + }, + { + "name":"Title", + "type":"STRING", + "description":"", + "default":"name_music" + }, + { + "name":"Url", + "type":"STRING", + "description":"", + "default":"https://www.youtube.com/watch?v=Qzw6A2WC5Qo" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ytconvert2.p.rapidapi.com/youtube/url/generate\"\nquerystring = {\"Type\": type, \"Title\": title, \"Url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytconvert2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/search", + "url":"https://ytconvert2.p.rapidapi.com/youtube/search", + "description":"Search by content, URL or playlist", + "method":"GET", + "required_parameters":[ + { + "name":"SearchQuery", + "type":"STRING", + "description":"", + "default":"Skillet" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ytconvert2.p.rapidapi.com/youtube/search\"\nquerystring = {\"SearchQuery\": searchquery}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytconvert2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/download/mp4", + "url":"https://ytconvert2.p.rapidapi.com/youtube/download/mp4", + "description":"Download using the key as param generated in the request \"/url/generate\"", + "method":"GET", + "required_parameters":[ + { + "name":"key", + "type":"STRING", + "description":"", + "default":"8c8745b2-ebb7-4c05-a34f-7310b687f186" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ytconvert2.p.rapidapi.com/youtube/download/mp4\"\nquerystring = {\"key\": key}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytconvert2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/download/mp3", + "url":"https://ytconvert2.p.rapidapi.com/youtube/download/mp3", + "description":"Download using the key as param generated in the request \"/url/generate\"", + "method":"GET", + "required_parameters":[ + { + "name":"key", + "type":"STRING", + "description":"", + "default":"8c8745b2-ebb7-4c05-a34f-7310b687f186" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ytconvert2.p.rapidapi.com/youtube/download/mp3\"\nquerystring = {\"key\": key}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytconvert2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/stream/mp3", + "url":"https://ytconvert2.p.rapidapi.com/youtube/stream/mp3", + "description":"Get stream mp3 using the key as param generated in the request \"/url/generate\"", + "method":"GET", + "required_parameters":[ + { + "name":"key", + "type":"STRING", + "description":"", + "default":"25c80ca6-d1e3-485f-8237-65c3e10c7641" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ytconvert2.p.rapidapi.com/youtube/stream/mp3\"\nquerystring = {\"key\": key}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytconvert2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/stream/mp4", + "url":"https://ytconvert2.p.rapidapi.com/youtube/stream/mp4", + "description":"Get stream mp4 using the key as param generated in the request \"/url/generate\"", + "method":"GET", + "required_parameters":[ + { + "name":"key", + "type":"STRING", + "description":"", + "default":"25c80ca6-d1e3-485f-8237-65c3e10c7641" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ytconvert2.p.rapidapi.com/youtube/stream/mp4\"\nquerystring = {\"key\": key}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytconvert2.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ytconvert/api.py b/toolbench/toolenv/tools/Tools/ytconvert/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2fe3a0573abd3db546df4acc72ef80fd681cf22b --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ytconvert/api.py @@ -0,0 +1,134 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def url_generate(type: str, title: str, url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets a url or key to download or stream MP4 or MP3" + + """ + url = f"https://ytconvert2.p.rapidapi.com/youtube/url/generate" + querystring = {'Type': type, 'Title': title, 'Url': url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytconvert2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search(searchquery: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search by content, URL or playlist" + + """ + url = f"https://ytconvert2.p.rapidapi.com/youtube/search" + querystring = {'SearchQuery': searchquery, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytconvert2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def download_mp4(key: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Download using the key as param generated in the request "/url/generate"" + + """ + url = f"https://ytconvert2.p.rapidapi.com/youtube/download/mp4" + querystring = {'key': key, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytconvert2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def download_mp3(key: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Download using the key as param generated in the request "/url/generate"" + + """ + url = f"https://ytconvert2.p.rapidapi.com/youtube/download/mp3" + querystring = {'key': key, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytconvert2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stream_mp3(key: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get stream mp3 using the key as param generated in the request "/url/generate"" + + """ + url = f"https://ytconvert2.p.rapidapi.com/youtube/stream/mp3" + querystring = {'key': key, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytconvert2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stream_mp4(key: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get stream mp4 using the key as param generated in the request "/url/generate"" + + """ + url = f"https://ytconvert2.p.rapidapi.com/youtube/stream/mp4" + querystring = {'key': key, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytconvert2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Tools/ytstream_download_youtube_videos.json b/toolbench/toolenv/tools/Tools/ytstream_download_youtube_videos.json new file mode 100644 index 0000000000000000000000000000000000000000..1f979e4c109646a1caee408044b407c16439716c --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ytstream_download_youtube_videos.json @@ -0,0 +1,44 @@ +{ + "tool_name":"YTStream - Download YouTube Videos", + "tool_description":"Download or stream YouTube Videos/MP4.", + "title":"YTStream - Download YouTube Videos", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":228, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ytjar/api/ytstream-download-youtube-videos/", + "host":"ytstream-download-youtube-videos.p.rapidapi.com", + "api_list":[ + { + "name":"Download/Stream", + "url":"https://ytstream-download-youtube-videos.p.rapidapi.com/dl", + "description":"Stream or download info.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"Youtube Video Id.", + "default":"UxxajLWwzqY" + } + ], + "optional_parameters":[ + { + "name":"cgeo", + "type":"STRING", + "description":"Country code in ISO 3166 format of the end user.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://ytstream-download-youtube-videos.p.rapidapi.com/dl\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ytstream-download-youtube-videos.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Tools/ytstream_download_youtube_videos/api.py b/toolbench/toolenv/tools/Tools/ytstream_download_youtube_videos/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5a726d6fafbb71cab8cb4b0fdcf8261265a7f841 --- /dev/null +++ b/toolbench/toolenv/tools/Tools/ytstream_download_youtube_videos/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def download_stream(is_id: str, cgeo: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Stream or download info." + id: Youtube Video Id. + cgeo: Country code in ISO 3166 format of the end user. + + """ + url = f"https://ytstream-download-youtube-videos.p.rapidapi.com/dl" + querystring = {'id': is_id, } + if cgeo: + querystring['cgeo'] = cgeo + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ytstream-download-youtube-videos.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/01/api.py b/toolbench/toolenv/tools/Translation/01/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d0d3f43e43631b1e2b4c8cc6551dee881354d9e4 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/01/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def endpoint(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "01" + + """ + url = f"https://014.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "014.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/13f918yf19o1t1f1of1t9/api.py b/toolbench/toolenv/tools/Translation/13f918yf19o1t1f1of1t9/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ba43b1240a95b7c21639a069df73aed6f3feb979 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/13f918yf19o1t1f1of1t9/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def endpoint1(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "endpoint1" + + """ + url = f"https://13f918yf19o1t1f1of1t9.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "13f918yf19o1t1f1of1t9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/ai_translate.json b/toolbench/toolenv/tools/Translation/ai_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..ff9d16c6e1a7d12461a56a4b89640d7caf30a07f --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ai_translate.json @@ -0,0 +1,48 @@ +{ + "product_id": "api_aee083b8-65a7-4f2e-b371-8599f274f693", + "tool_description": "Unlimited automatic translation service. More than 99 languages available", + "home_url": "https://rapidapi.com/ai-translate-ai-translate-default/api/ai-translate1/", + "name": "AI-translate", + "title": "AI-translate", + "pricing": "FREEMIUM", + "tool_name": "AI-translate", + "score": { + "avgServiceLevel": 99, + "avgLatency": 2328, + "avgSuccessRate": 99, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "ai-translate1.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://ai-translate1.p.rapidapi.com/en", + "description": "To make translate you need to make a POST call", + "method": "POST", + "required_parameters": [ + { + "name": "lang", + "type": "string", + "description": "- Target language to translate. (**en**)\nor\n- Source and Target language. (**it-en**)\n", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translate1.p.rapidapi.com/en\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translate1.p.rapidapi.com/{lang}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get list of languages", + "url": "https://ai-translate1.p.rapidapi.com/lang/list", + "description": "To get languages list you need to make a POST call:", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translate1.p.rapidapi.com/lang/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translate1.p.rapidapi.com/lang/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/ai_translation/api.py b/toolbench/toolenv/tools/Translation/ai_translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..36255176249083bbbf62bf10169cc509ec6245d1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ai_translation/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def text(to: str, text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "text" + + """ + url = f"https://ai-translation.p.rapidapi.com/translate" + querystring = {'to': to, 'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ai-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/ai_translation_apis.json b/toolbench/toolenv/tools/Translation/ai_translation_apis.json new file mode 100644 index 0000000000000000000000000000000000000000..cd4313bbbf2d7330475895c9a83adb1db07bd67f --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ai_translation_apis.json @@ -0,0 +1,801 @@ +{ + "tool_name": "AI Translation APIs", + "tool_description": "The AI Translate API supports more than 60 different languages. Obtain a better translation! The biggest translation services in the world are the AI Translate APIs. Real-time language translation is available. PLAIN/HTML/JSON/XML/SRT/YAML/ANDROID/IOS/XAMARIN It contains many billions of professionally translated words.", + "title": "AI Translation APIs", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 472, + "avgSuccessRate": 93, + "popularityScore": 8.4, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/saijeevanballa-SQhbMuR2KtK/api/ai-translation-apis/", + "host": "ai-translation-apis.p.rapidapi.com", + "api_list": [ + { + "name": "Translates Large Files", + "url": "https://ai-translation-apis.p.rapidapi.com/file", + "description": "It translates formatted input text into the language, returning the requested translated language text with the format.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "to", + "type": "ENUM", + "description": "to: \"af\", \"ar\", \"bn\", \"bs\", \"bg\", \"ca\", \"hr\",\n \"cs\", \"da\", \"nl\", \"en\", \"et\", \"fi\", \"fr\",\n \"de\", \"el\", \"gu\", \"ht\", \"hi\", \"hu\", \"is\",\n \"id\", \"ga\", \"it\", \"ja\", \"kn\", \"kk\", \"ko\",\n \"lv\", \"lt\", \"mg\", \"ms\", \"ml\", \"mt\", \"mi\",\n \"mr\", \"fa\", \"pl\", \"pa\", \"ro\", \"ru\", \"sm\",\n \"sk\", \"sl\", \"es\", \"sw\", \"sv\", \"ta\", \"te\",\n \"th\", \"tr\", \"uk\", \"ur\", \"vi\", \"cy\"", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/file\"\nquerystring = {\"file\": file, \"to\": to}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "string" + }, + "translated": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "Translates HTML", + "url": "https://ai-translation-apis.p.rapidapi.com/html", + "description": "It translates formatted input text into the language, returning the requested translated language text with the format.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/html\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": { + "source": { + "message": "welcome to rapid api" + }, + "translated": { + "message": "\u0924\u0947\u091c\u0940 \u0938\u0947 \u090f\u092a\u0940\u0906\u0908 \u092e\u0947\u0902 \u0906\u092a\u0915\u093e \u0938\u094d\u0935\u093e\u0917\u0924 \u0939\u0948" + } + } + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + }, + "translated": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "Translates JSON", + "url": "https://ai-translation-apis.p.rapidapi.com/json", + "description": "It translates JSON input text into the language, returning the requested translated language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": { + "source": { + "message": "welcome to rapid api" + }, + "translated": { + "message": "\u0924\u0947\u091c\u0940 \u0938\u0947 \u090f\u092a\u0940\u0906\u0908 \u092e\u0947\u0902 \u0906\u092a\u0915\u093e \u0938\u094d\u0935\u093e\u0917\u0924 \u0939\u0948" + } + } + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + }, + "translated": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "Translates Yaml", + "url": "https://ai-translation-apis.p.rapidapi.com/yaml", + "description": "It translates formatted input text into the language, returning the requested translated language text with the format.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/yaml\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": { + "source": { + "message": "welcome to rapid api" + }, + "translated": { + "message": "\u0924\u0947\u091c\u0940 \u0938\u0947 \u090f\u092a\u0940\u0906\u0908 \u092e\u0947\u0902 \u0906\u092a\u0915\u093e \u0938\u094d\u0935\u093e\u0917\u0924 \u0939\u0948" + } + } + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + }, + "translated": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "Translates Number to Text", + "url": "https://ai-translation-apis.p.rapidapi.com/number", + "description": "It translates number input text into the language, returning the requested translated language number text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/number\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": { + "source": 10, + "translated": "ten" + } + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "integer" + }, + "translated": { + "type": "string" + } + } + } + } + } + }, + { + "name": "AI Translate (auto correct spelling mistakes)", + "url": "https://ai-translation-apis.p.rapidapi.com/ai-convert", + "description": "Translate Input Text with a text analyser and get accurate sentence", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/ai-convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": { + "source": "hw ar you", + "translated": "How are you?" + } + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "string" + }, + "translated": { + "type": "string" + } + } + } + } + } + }, + { + "name": "Translates Paragraph", + "url": "https://ai-translation-apis.p.rapidapi.com/", + "description": "This api translates input text to requested translated language text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": { + "source": "welcome to rapid apis", + "translated": "\u0930\u0948\u092a\u093f\u0921 \u090f\u092a\u093f\u0938 \u092e\u0947\u0902 \u0906\u092a\u0915\u093e \u0938\u094d\u0935\u093e\u0917\u0924 \u0939\u0948" + } + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "string" + }, + "translated": { + "type": "string" + } + } + } + } + } + }, + { + "name": "Supported Languages List", + "url": "https://ai-translation-apis.p.rapidapi.com/languages", + "description": "Get Supported Languages List That AI Translation APIs Support", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "success": true, + "data": [ + { + "code": "af", + "language": "Afrikaans" + }, + { + "code": "ar", + "language": "Arabic" + }, + { + "code": "bn", + "language": "Bangla" + }, + { + "code": "bs", + "language": "Bosnian" + }, + { + "code": "bg", + "language": "Bulgarian" + }, + { + "code": "ca", + "language": "Catalan" + }, + { + "code": "hr", + "language": "Croatian" + }, + { + "code": "cs", + "language": "Czech" + }, + { + "code": "da", + "language": "Danish" + }, + { + "code": "nl", + "language": "Dutch" + }, + { + "code": "en", + "language": "English" + }, + { + "code": "et", + "language": "Estonian" + }, + { + "code": "fi", + "language": "Finnish" + }, + { + "code": "fr", + "language": "French" + }, + { + "code": "de", + "language": "German" + }, + { + "code": "el", + "language": "Greek" + }, + { + "code": "gu", + "language": "Gujarati" + }, + { + "code": "ht", + "language": "Haitian" + }, + { + "code": "hi", + "language": "Hindi" + }, + { + "code": "hu", + "language": "Hungarian" + }, + { + "code": "is", + "language": "Icelandic" + }, + { + "code": "id", + "language": "Indonesian" + }, + { + "code": "ga", + "language": "Irish" + }, + { + "code": "it", + "language": "Italian" + }, + { + "code": "ja", + "language": "Japanese" + }, + { + "code": "kn", + "language": "Kannada" + }, + { + "code": "kk", + "language": "Kazakh" + }, + { + "code": "ko", + "language": "Korean" + }, + { + "code": "lv", + "language": "Latvian" + }, + { + "code": "lt", + "language": "Lithuanian" + }, + { + "code": "mg", + "language": "Malagasy" + }, + { + "code": "ms", + "language": "Malay" + }, + { + "code": "ml", + "language": "Malayalam" + }, + { + "code": "mt", + "language": "Maltese" + }, + { + "code": "mi", + "language": "Maori" + }, + { + "code": "mr", + "language": "Marathi" + }, + { + "code": "fa", + "language": "Persian" + }, + { + "code": "pl", + "language": "Polish" + }, + { + "code": "pa", + "language": "Punjabi" + }, + { + "code": "ro", + "language": "Romanian" + }, + { + "code": "ru", + "language": "Russian" + }, + { + "code": "sm", + "language": "Samoan" + }, + { + "code": "sk", + "language": "Slovak" + }, + { + "code": "sl", + "language": "Slovenian" + }, + { + "code": "es", + "language": "Spanish" + }, + { + "code": "sw", + "language": "Swahili" + }, + { + "code": "sv", + "language": "Swedish" + }, + { + "code": "ta", + "language": "Tamil" + }, + { + "code": "te", + "language": "Telugu" + }, + { + "code": "th", + "language": "Thai" + }, + { + "code": "tr", + "language": "Turkish" + }, + { + "code": "uk", + "language": "Ukrainian" + }, + { + "code": "ur", + "language": "Urdu" + }, + { + "code": "vi", + "language": "Vietnamese" + }, + { + "code": "cy", + "language": "Welsh" + } + ] + }, + "headers": { + "content-type": "application/json; charset=utf-8" + }, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "language": { + "type": "string" + } + } + } + } + } + } + }, + { + "name": "Translates Large Files", + "url": "https://ai-translation-apis.p.rapidapi.com/file", + "description": "It translates formatted input text into the language, returning the requested translated language text with the format.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "to", + "type": "ENUM", + "description": "to: \"af\", \"ar\", \"bn\", \"bs\", \"bg\", \"ca\", \"hr\",\n \"cs\", \"da\", \"nl\", \"en\", \"et\", \"fi\", \"fr\",\n \"de\", \"el\", \"gu\", \"ht\", \"hi\", \"hu\", \"is\",\n \"id\", \"ga\", \"it\", \"ja\", \"kn\", \"kk\", \"ko\",\n \"lv\", \"lt\", \"mg\", \"ms\", \"ml\", \"mt\", \"mi\",\n \"mr\", \"fa\", \"pl\", \"pa\", \"ro\", \"ru\", \"sm\",\n \"sk\", \"sl\", \"es\", \"sw\", \"sv\", \"ta\", \"te\",\n \"th\", \"tr\", \"uk\", \"ur\", \"vi\", \"cy\"", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/file\"\nquerystring = {\"file\": \"\", \"to\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/file\"\nquerystring = {\"file\": \"\", \"to\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Translates HTML", + "url": "https://ai-translation-apis.p.rapidapi.com/html", + "description": "It translates formatted input text into the language, returning the requested translated language text with the format.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/html\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/html\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + }, + "translated": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "Translates JSON", + "url": "https://ai-translation-apis.p.rapidapi.com/json", + "description": "It translates JSON input text into the language, returning the requested translated language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + }, + "translated": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "Translates Yaml", + "url": "https://ai-translation-apis.p.rapidapi.com/yaml", + "description": "It translates formatted input text into the language, returning the requested translated language text with the format.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/yaml\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/yaml\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Translates Number to Text", + "url": "https://ai-translation-apis.p.rapidapi.com/number", + "description": "It translates number input text into the language, returning the requested translated language number text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/number\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/number\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "AI Translate (auto correct spelling mistakes)", + "url": "https://ai-translation-apis.p.rapidapi.com/ai-convert", + "description": "Translate Input Text with a text analyser and get accurate sentence", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/ai-convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/ai-convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "string" + }, + "translated": { + "type": "string" + } + } + } + } + } + }, + { + "name": "Translates Paragraph", + "url": "https://ai-translation-apis.p.rapidapi.com/", + "description": "This api translates input text to requested translated language text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translation-apis.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translation-apis.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "data": { + "type": "object", + "properties": { + "source": { + "type": "string" + }, + "translated": { + "type": "string" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/ai_translation_apis/api.py b/toolbench/toolenv/tools/Translation/ai_translation_apis/api.py new file mode 100644 index 0000000000000000000000000000000000000000..dc8bf40361d740f05f10a40cd0102e797b20a1e8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ai_translation_apis/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def supported_languages_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Supported Languages List That AI Translation APIs Support" + + """ + url = f"https://ai-translation-apis.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ai-translation-apis.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/ai_translation_v2/api.py b/toolbench/toolenv/tools/Translation/ai_translation_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a5bfb96b51e67f7fbc43cf578b27224c952696c5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ai_translation_v2/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(to: str, is_from: str, text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Converting written text or spoken words from one language to another, making it understandable to people who speak different languages." + to: Language - **ISO-639-1 code** + from: Language - **ISO-639-1 code** + + """ + url = f"https://ai-translation1.p.rapidapi.com/translate" + querystring = {'to': to, 'from': is_from, 'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ai-translation1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/ai_translator.json b/toolbench/toolenv/tools/Translation/ai_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..3b6e39afb987e0901cc83ca79b3be72676a4f888 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ai_translator.json @@ -0,0 +1,39 @@ +{ + "product_id": "api_26adf2de-f548-4a3b-80a6-f4720bdcfacd", + "tool_description": "Same quality of translation than Google Translate but cheaper !", + "home_url": "https://rapidapi.com/regis.amon/api/ai-translator1/", + "name": "AI-Translator", + "title": "AI-Translator", + "pricing": "FREEMIUM", + "tool_name": "AI-Translator", + "score": null, + "host": "ai-translator1.p.rapidapi.com", + "api_list": [ + { + "name": "translate_translate_post", + "url": "https://ai-translator1.p.rapidapi.com/translate", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "target", + "type": null, + "description": "", + "default": "fr" + }, + { + "name": "input_text", + "type": null, + "description": "", + "default": "Hello World !" + } + ], + "code": "import requests\n\nurl = \"https://ai-translator1.p.rapidapi.com/translate\"\nquerystring = {\"target\": \"fr\", \"input_text\": \"Hello World !\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translator1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ai-translator1.p.rapidapi.com/translate\"\nquerystring = {\"target\": \"fr\", \"input_text\": \"Hello World !\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-translator1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/aibit_translator.json b/toolbench/toolenv/tools/Translation/aibit_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..eb421356bda42b4616fb50ea9d459892eae9549a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/aibit_translator.json @@ -0,0 +1,220 @@ +{ + "tool_name": "AIbit translator", + "tool_description": "Translate API, Translation Service.\n\u2713 Text, JSON, HTML\n\u2713 Pay per requests, Affordable Price\n\u2713 High-Quality Results, Blazing Speed, Reliability, Availability\n\u2713 110+ Languages Supported.", + "title": "AIbit translator", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 630, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/aibitranslator-aibitranslator-default/api/aibit-translator/", + "host": "aibit-translator.p.rapidapi.com", + "api_list": [ + { + "name": "Detect language", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/detect-language", + "description": "- Detect text language", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/detect-language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": { + "X-Powered-By": "", + "Content-Type": "", + "Content-Length": "", + "ETag": "", + "Date": "", + "Connection": "", + "Keep-Alive": "" + }, + "schema": { + "type": "object" + } + }, + { + "name": "Get Supported Languages", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/support-languages", + "description": "Get list support languages by AIbit", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/support-languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate JSON", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/json", + "description": "- Translate JSON data, able to protect paths", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "", + "default": "auto" + }, + { + "name": "json", + "type": "OBJECT", + "description": "", + "default": "{ \"title\": \"The Importance of Regular Exercise\", \"author\": \"John Doe\", \"rate\": 4.2999, \"extra\": { \"comment_counts\": 10, \"last_comment\": { \"author\": \"not be translated\", \"short_text\": \"Hi thank for your post... We need more information\" } } }" + }, + { + "name": "to", + "type": "STRING", + "description": "", + "default": "vi" + } + ], + "optional_parameters": [ + { + "name": "protected_paths", + "type": "ARRAY", + "description": "", + "default": "[\"extra.last_comment.author\"]" + } + ], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/json\"\nquerystring = {\"from\": is_from, \"json\": json, \"to\": to, \"protected_paths\": protected_paths}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate Text", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/text", + "description": "- Translate between more than 110 languages.", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Original Language", + "default": "auto" + }, + { + "name": "text", + "type": "STRING", + "description": "The text you want to translate", + "default": "C\u1ea3m \u01a1n b\u1ea1n \u0111\u00e3 s\u1eed d\u1ee5ng d\u1ecbch v\u1ee5 c\u1ee7a ch\u00fang t\u00f4i" + }, + { + "name": "to", + "type": "STRING", + "description": "Destination Language", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/text\"\nquerystring = {\"from\": is_from, \"text\": text, \"to\": to}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": { + "X-Powered-By": "", + "Content-Type": "", + "Content-Length": "", + "ETag": "", + "Date": "", + "Connection": "", + "Keep-Alive": "" + }, + "schema": { + "type": "object" + } + }, + { + "name": "Detect language", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/detect-language", + "description": "- Detect text language", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/detect-language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/detect-language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "Translate JSON", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/json", + "description": "- Translate JSON data, able to protect paths", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "", + "default": "auto" + }, + { + "name": "json", + "type": "OBJECT", + "description": "", + "default": "{ \"title\": \"The Importance of Regular Exercise\", \"author\": \"John Doe\", \"rate\": 4.2999, \"extra\": { \"comment_counts\": 10, \"last_comment\": { \"author\": \"not be translated\", \"short_text\": \"Hi thank for your post... We need more information\" } } }" + }, + { + "name": "to", + "type": "STRING", + "description": "", + "default": "vi" + } + ], + "optional_parameters": [ + { + "name": "protected_paths", + "type": "ARRAY", + "description": "", + "default": "[\"extra.last_comment.author\"]" + } + ], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/json\"\nquerystring = {\"from\": \"auto\", \"json\": \"{ \\\"title\\\": \\\"The Importance of Regular Exercise\\\", \\\"author\\\": \\\"John Doe\\\", \\\"rate\\\": 4.2999, \\\"extra\\\": { \\\"comment_counts\\\": 10, \\\"last_comment\\\": { \\\"author\\\": \\\"not be translated\\\", \\\"short_text\\\": \\\"Hi thank for your post... We need more information\\\" } } }\", \"to\": \"vi\", \"protected_paths\": \"[\\\"extra.last_comment.author\\\"]\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/json\"\nquerystring = {\"from\": \"auto\", \"json\": \"{ \\\"title\\\": \\\"The Importance of Regular Exercise\\\", \\\"author\\\": \\\"John Doe\\\", \\\"rate\\\": 4.2999, \\\"extra\\\": { \\\"comment_counts\\\": 10, \\\"last_comment\\\": { \\\"author\\\": \\\"not be translated\\\", \\\"short_text\\\": \\\"Hi thank for your post... We need more information\\\" } } }\", \"to\": \"vi\", \"protected_paths\": \"[\\\"extra.last_comment.author\\\"]\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Translate Text", + "url": "https://aibit-translator.p.rapidapi.com/api/v1/translator/text", + "description": "- Translate between more than 110 languages.", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Original Language", + "default": "auto" + }, + { + "name": "text", + "type": "STRING", + "description": "The text you want to translate", + "default": "C\u1ea3m \u01a1n b\u1ea1n \u0111\u00e3 s\u1eed d\u1ee5ng d\u1ecbch v\u1ee5 c\u1ee7a ch\u00fang t\u00f4i" + }, + { + "name": "to", + "type": "STRING", + "description": "Destination Language", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/text\"\nquerystring = {\"from\": \"auto\", \"text\": \"C\u1ea3m \u01a1n b\u1ea1n \u0111\u00e3 s\u1eed d\u1ee5ng d\u1ecbch v\u1ee5 c\u1ee7a ch\u00fang t\u00f4i\", \"to\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aibit-translator.p.rapidapi.com/api/v1/translator/text\"\nquerystring = {\"from\": \"auto\", \"text\": \"C\u1ea3m \u01a1n b\u1ea1n \u0111\u00e3 s\u1eed d\u1ee5ng d\u1ecbch v\u1ee5 c\u1ee7a ch\u00fang t\u00f4i\", \"to\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aibit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/aibit_translator/api.py b/toolbench/toolenv/tools/Translation/aibit_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c7fc43bcfeeb64e82a68661db3cb680a3479c2e4 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/aibit_translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list support languages by AIbit" + + """ + url = f"https://aibit-translator.p.rapidapi.com/api/v1/translator/support-languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aibit-translator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/amazon_translate.json b/toolbench/toolenv/tools/Translation/amazon_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..de8abc132feeb4ba4d20fa8ec3f2a62ee80f94f8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/amazon_translate.json @@ -0,0 +1,67 @@ +{ + "tool_name": "Amazon Translate", + "tool_description": "Amazon Translate uses deep learning techniques to produce more accurate and fluent translation than traditional statistical and rule-based translation models.", + "title": "Amazon Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 0, + "avgLatency": 321, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/jozef-WxBhUjW_l/api/amazon-translate/", + "host": "amazon-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Translate with JSON", + "url": "https://amazon-translate.p.rapidapi.com/", + "description": "Translate with POST method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://amazon-translate.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"amazon-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate using Query", + "url": "https://amazon-translate.p.rapidapi.com/", + "description": "Translate with GET method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "target_lang", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello world!" + } + ], + "code": "import requests\n\nurl = \"https://amazon-translate.p.rapidapi.com/\"\nquerystring = {\"target_lang\": target_lang, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"amazon-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate with JSON", + "url": "https://amazon-translate.p.rapidapi.com/", + "description": "Translate with POST method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://amazon-translate.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"amazon-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://amazon-translate.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"amazon-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/amazon_translate/api.py b/toolbench/toolenv/tools/Translation/amazon_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d5024e728a484459675a936147ca6e161b6fe250 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/amazon_translate/api.py @@ -0,0 +1,35 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate_using_query(target_lang: str='de', text: str='Hello world!', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate with GET method. + Use text query parameter to specify text that should be translated. + Use target_lang to specify target language." + + """ + url = f"https://amazon-translate.p.rapidapi.com/" + querystring = {} + if target_lang: + querystring['target_lang'] = target_lang + if text: + querystring['text'] = text + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "amazon-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/amazon_translate_api.json b/toolbench/toolenv/tools/Translation/amazon_translate_api.json new file mode 100644 index 0000000000000000000000000000000000000000..5d701471a5745c2fb750c4f0e48427fee729976e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/amazon_translate_api.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_df80b009-467f-4012-84d4-8b4479a777b2", + "tool_description": "Fluent and accurate machine translation", + "home_url": "https://rapidapi.com/spiderservers/api/amazon-translate-api/", + "name": "Amazon Translate API", + "title": "Amazon Translate API", + "pricing": "FREEMIUM", + "tool_name": "Amazon Translate API", + "score": null, + "host": "amazon-translate-api.p.rapidapi.com", + "api_list": [ + { + "name": "/v1/translate", + "url": "https://amazon-translate-api.p.rapidapi.com/v1/translate", + "description": "ij", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://amazon-translate-api.p.rapidapi.com/v1/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"amazon-translate-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://amazon-translate-api.p.rapidapi.com/v1/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"amazon-translate-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "result": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/anime_voice_waifu_ai_api.json b/toolbench/toolenv/tools/Translation/anime_voice_waifu_ai_api.json new file mode 100644 index 0000000000000000000000000000000000000000..d9a5a56c06435551cbf8aca60d575faf3f600430 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/anime_voice_waifu_ai_api.json @@ -0,0 +1,57 @@ +{ + "tool_name":"Anime Voice Waifu Ai Api", + "tool_description":"With this app, you can easily convert Japanese text to voice", + "title":"Anime Voice Waifu Ai Api", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":96, + "avgLatency":72796, + "avgSuccessRate":96, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/alsheikhaminulislam/api/anime-voice-waifu-ai-api/", + "host":"anime-voice-waifu-ai-api.p.rapidapi.com", + "api_list":[ + { + "name":"Get Speaker List", + "url":"https://anime-voice-waifu-ai-api.p.rapidapi.com/speaker", + "description":"Get Speaker List", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://anime-voice-waifu-ai-api.p.rapidapi.com/speaker\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"anime-voice-waifu-ai-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Voice", + "url":"https://anime-voice-waifu-ai-api.p.rapidapi.com/japaneseto", + "description":"Get Voice", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"speaker", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://anime-voice-waifu-ai-api.p.rapidapi.com/japaneseto\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"anime-voice-waifu-ai-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/anime_voice_waifu_ai_api/api.py b/toolbench/toolenv/tools/Translation/anime_voice_waifu_ai_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b3b2dda8c3b870bd5dcac3fb5026de2f5d5009af --- /dev/null +++ b/toolbench/toolenv/tools/Translation/anime_voice_waifu_ai_api/api.py @@ -0,0 +1,52 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_speaker_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Speaker List" + + """ + url = f"https://anime-voice-waifu-ai-api.p.rapidapi.com/speaker" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "anime-voice-waifu-ai-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_voice(text: str, speaker: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Voice" + + """ + url = f"https://anime-voice-waifu-ai-api.p.rapidapi.com/japaneseto" + querystring = {'text': text, } + if speaker: + querystring['speaker'] = speaker + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "anime-voice-waifu-ai-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/automatismz_translator.json b/toolbench/toolenv/tools/Translation/automatismz_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..993a6bf049d2b85a5e0ad6e1a99322f593a2d73d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/automatismz_translator.json @@ -0,0 +1,39 @@ +{ + "product_id": "api_1b1c0e50-86c4-489d-9396-3d4e99ab4fa8", + "tool_description": "Automatismz translator is an api that can translate to any language chosen.", + "home_url": "https://rapidapi.com/daminsoft/api/automatismz-translator/", + "name": "Automatismz translator", + "title": "Automatismz translator", + "pricing": "FREEMIUM", + "tool_name": "Automatismz translator", + "score": null, + "host": "automatismz-translator.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://automatismz-translator.p.rapidapi.com/translate", + "description": "Automatismz translator is an api that can translate to any language chosen.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "fr" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello" + } + ], + "code": "import requests\n\nurl = \"https://automatismz-translator.p.rapidapi.com/translate\"\nquerystring = {\"to\": \"fr\", \"text\": \"Hello\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automatismz-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://automatismz-translator.p.rapidapi.com/translate\"\nquerystring = {\"to\": \"fr\", \"text\": \"Hello\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automatismz-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/aws_translate.json b/toolbench/toolenv/tools/Translation/aws_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..d8eaff835351f63191a9859e61829c66d8fe5422 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/aws_translate.json @@ -0,0 +1,53 @@ +{ + "product_id": "api_bd3c471c-2f2f-4e20-8475-e59627806ab3", + "tool_description": "Use the AWS Machine Learning Translate Service to translate strings, with automatic source language detection.", + "home_url": "https://rapidapi.com/cpvdeveloper/api/aws-translate/", + "name": "AWS Translate", + "title": "AWS Translate", + "pricing": "FREEMIUM", + "tool_name": "AWS Translate", + "score": { + "avgServiceLevel": 0, + "avgLatency": 3457, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "aws-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://aws-translate.p.rapidapi.com/translate", + "description": "Translates a string into the target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aws-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aws-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aws-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aws-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "SourceLanguageCode": { + "type": "string" + }, + "TargetLanguageCode": { + "type": "string" + }, + "TranslatedText": { + "type": "string" + } + } + }, + "error": { + "type": "null" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/bidirectional_text_language_translation.json b/toolbench/toolenv/tools/Translation/bidirectional_text_language_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..54e0deb3e90f7d5e75d06aa1aaeb914f31e0a215 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/bidirectional_text_language_translation.json @@ -0,0 +1,202 @@ +{ + "tool_name": "Bidirectional Text Language Translation", + "tool_description": "Per request pricing, not character based. 30 languages to translate to and from. Simple request and response.", + "title": "Bidirectional Text Language Translation", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 86, + "avgLatency": 1749, + "avgSuccessRate": 86, + "popularityScore": 9.2, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/ibmbpmtips/api/bidirectional-text-language-translation/", + "host": "bidirectional-text-language-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Translate Big Text", + "url": "https://bidirectional-text-language-translation.p.rapidapi.com/translate.php", + "description": "takes source text, from language and to language and provides results in a very simple object.\nLanguages specified are in two character ISO codes.\nif lang_from is not specified it will be auto detected.", + "method": "POST", + "required_parameters": [ + { + "name": "lang_to", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello how are you doing?" + } + ], + "optional_parameters": [ + { + "name": "lang_from", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://bidirectional-text-language-translation.p.rapidapi.com/translate.php\"\nquerystring = {\"lang_to\": lang_to, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bidirectional-text-language-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "original-text": "Hello how are you doing?", + "translate-from": "en", + "translate-to": "de", + "translated-text": "Hallo, wie geht's?" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "connection": "keep-alive", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Mon, 11 Jul 2022 19:46:02 GMT", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Translate", + "url": "https://bidirectional-text-language-translation.p.rapidapi.com/translate.php", + "description": "takes source text, from language and to language and provides results in a very simple object.\nLanguages specified are in two character ISO codes.\nif lang_from is not specified it will be auto detected.", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello how are you doing?" + }, + { + "name": "lang_to", + "type": "STRING", + "description": "", + "default": "de" + } + ], + "optional_parameters": [ + { + "name": "lang_from", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://bidirectional-text-language-translation.p.rapidapi.com/translate.php\"\nquerystring = {\"text\": text, \"lang_to\": lang_to}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bidirectional-text-language-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "original-text": "Hello how are you doing?", + "translate-from": "en", + "translate-to": "de", + "translated-text": "Hallo, wie geht's?" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "connection": "keep-alive", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Sun, 03 Jul 2022 02:50:14 GMT", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Detect Language", + "url": "https://bidirectional-text-language-translation.p.rapidapi.com/detect.php", + "description": "If you want to detect language only and not translate you can provide the text parameter and the detected language will be provided in the results", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "I am fine thank you." + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://bidirectional-text-language-translation.p.rapidapi.com/detect.php\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bidirectional-text-language-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "original-text": "I am fine thank you.", + "detected-language": "en" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "connection": "keep-alive", + "content-length": "65", + "content-type": "application/json; charset=utf-8", + "date": "Sun, 03 Jul 2022 03:13:43 GMT", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Get Supported Languages", + "url": "https://bidirectional-text-language-translation.p.rapidapi.com/languages.php", + "description": "takes no inputs and provides an array of supported language with iso 2 code and name of language in english.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://bidirectional-text-language-translation.p.rapidapi.com/languages.php\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bidirectional-text-language-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": "[{\"code\":\"en\",\"name\":\"English\"},{\"code\":\"ar\",\"name\":\"Arabic\"},{\"code\":\"az\",\"name\":\"Azerbaijani\"},{\"code\":\"zh\",\"name\":\"Chinese\"},{\"code\":\"cs\",\"name\":\"Czech\"},{\"code\":\"da\",\"name\":\"Danish\"},{\"code\":\"nl\",\"name\":\"Dutch\"},{\"code\":\"eo\",\"name\":\"Esperanto\"},{\"code\":\"fi\",\"name\":\"Finnish\"},{\"code\":\"fr\",\"name\":\"French\"},{\"code\":\"de\",\"name\":\"German\"},{\"code\":\"el\",\"name\":\"Greek\"},{\"code\":\"he\",\"name\":\"Hebrew\"},{\"code\":\"hi\",\"name\":\"Hindi\"},{\"code\":\"hu\",\"name\":\"Hungarian\"},{\"code\":\"id\",\"name\":\"Indonesian\"},{\"code\":\"ga\",\"name\":\"Irish\"},{\"code\":\"it\",\"name\":\"Italian\"},{\"code\":\"ja\",\"name\":\"Japanese\"},{\"code\":\"ko\",\"name\":\"Korean\"},{\"code\":\"fa\",\"name\":\"Persian\"},{\"code\":\"pl\",\"name\":\"Polish\"},{\"code\":\"pt\",\"name\":\"Portuguese\"},{\"code\":\"ru\",\"name\":\"Russian\"},{\"code\":\"sk\",\"name\":\"Slovak\"},{\"code\":\"es\",\"name\":\"Spanish\"},{\"code\":\"sv\",\"name\":\"Swedish\"},{\"code\":\"tr\",\"name\":\"Turkish\"},{\"code\":\"uk\",\"name\":\"Ukranian\"},{\"code\":\"vi\",\"name\":\"Vietnamese\"}]", + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "connection": "keep-alive", + "content-length": "1174", + "content-type": "application/json; charset=utf-8", + "date": "Sun, 03 Jul 2022 02:49:41 GMT", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Translate Big Text", + "url": "https://bidirectional-text-language-translation.p.rapidapi.com/translate.php", + "description": "takes source text, from language and to language and provides results in a very simple object.\nLanguages specified are in two character ISO codes.\nif lang_from is not specified it will be auto detected.", + "method": "POST", + "required_parameters": [ + { + "name": "lang_to", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello how are you doing?" + } + ], + "optional_parameters": [ + { + "name": "lang_from", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://bidirectional-text-language-translation.p.rapidapi.com/translate.php\"\nquerystring = {\"lang_from\": \"\", \"lang_to\": \"de\", \"text\": \"Hello how are you doing?\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bidirectional-text-language-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://bidirectional-text-language-translation.p.rapidapi.com/translate.php\"\nquerystring = {\"lang_from\": \"\", \"lang_to\": \"de\", \"text\": \"Hello how are you doing?\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bidirectional-text-language-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/bidirectional_text_language_translation/api.py b/toolbench/toolenv/tools/Translation/bidirectional_text_language_translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..80f9e68a40b06bf91483e70fdad8b4d4456769c3 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/bidirectional_text_language_translation/api.py @@ -0,0 +1,75 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(text: str, lang_to: str, lang_from: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "takes source text, from language and to language and provides results in a very simple object. + Languages specified are in two character ISO codes. + if lang_from is not specified it will be auto detected." + + """ + url = f"https://bidirectional-text-language-translation.p.rapidapi.com/translate.php" + querystring = {'text': text, 'lang_to': lang_to, } + if lang_from: + querystring['lang_from'] = lang_from + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "bidirectional-text-language-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def detect_language(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "If you want to detect language only and not translate you can provide the text parameter and the detected language will be provided in the results" + + """ + url = f"https://bidirectional-text-language-translation.p.rapidapi.com/detect.php" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "bidirectional-text-language-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "takes no inputs and provides an array of supported language with iso 2 code and name of language in english." + + """ + url = f"https://bidirectional-text-language-translation.p.rapidapi.com/languages.php" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "bidirectional-text-language-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/bing_translate.json b/toolbench/toolenv/tools/Translation/bing_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..419d57fa12550803ce17e30d9e98b08f1410a2da --- /dev/null +++ b/toolbench/toolenv/tools/Translation/bing_translate.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Bing_Translate", + "tool_description":"Dịch", + "title":"Bing_Translate", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/trieuthang1991/api/bing_translate/", + "host":"bing_translate.p.rapidapi.com", + "api_list":[ + { + "name":"Noname", + "url":"https://bing_translate.p.rapidapi.comhttp://www.imic.edu.vn/", + "description":"Không có gì", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://bing_translate.p.rapidapi.comhttp://www.imic.edu.vn/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bing_translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/bing_translate/api.py b/toolbench/toolenv/tools/Translation/bing_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..40637b16323a31c1e585ef4fc0cad0a204bf8af7 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/bing_translate/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def noname(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Không có gì" + + """ + url = f"https://bing_translate.p.rapidapi.comhttp://www.imic.edu.vn/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "bing_translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/certified_translation.json b/toolbench/toolenv/tools/Translation/certified_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..508ed6ba5cd015e575c99c5caf8c861ee6c13ff9 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/certified_translation.json @@ -0,0 +1,208 @@ +{ + "tool_name": "Certified Translation", + "tool_description": "The Certified Translation API can be used to create translations of complex documents by professionally certified human translators.", + "title": "Certified Translation", + "pricing": "FREE", + "score": null, + "home_url": "https://rapidapi.com/immitranslate-developers-immitranslate-developers-default/api/certified-translation/", + "host": "certified-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Get Account", + "url": "https://certified-translation.p.rapidapi.com/account", + "description": "Retrieves information about the current account, including:\n\n- Users\n- Stored Payment Methods", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/account\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Retrieve Order", + "url": "https://certified-translation.p.rapidapi.com/orders/{order_number}", + "description": "Retrieves a specific order by the order number.", + "method": "GET", + "required_parameters": [ + { + "name": "order_number", + "type": "string", + "description": "A unique number identifying the order.", + "default": "123456-123456" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/orders/{order_number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "List Orders", + "url": "https://certified-translation.p.rapidapi.com/orders", + "description": "Retrieves a paginated list (default `50`) of orders associated with the provided account, sorted in descending order by `created_at`.\n\nThe `Order` objects included in this response are reference objects, meaning they do not contain all the possible properties of the order, but rather a glimpse.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/orders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Pay Quote", + "url": "https://certified-translation.p.rapidapi.com/quotes/{quote_token}/pay", + "description": "This endpoint is for paying a quote, which converts it into a translation order for processing. Future updates on the order are received via webhook.", + "method": "POST", + "required_parameters": [ + { + "name": "quote_token", + "type": "string", + "description": "This value is first sent when requesting a quote.", + "default": "quote_a1s2d3f4q5w6e7r8t9y0" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/quotes/{quote_token}/pay\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Create Quote", + "url": "https://certified-translation.p.rapidapi.com/quotes", + "description": "Once all files that require translation have been uploaded, they must be combined together via the Create Quote endpoint to determine pricing and turnaround time.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/quotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Upload File", + "url": "https://certified-translation.p.rapidapi.com/files", + "description": "Uploads a file for use in a quote or for other purposes.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "A multipart/form-data file. The following file types are permitted:\n\n- PDF\n- DOC\n- DOCX\n- JPG\n- JPEG\n- XLS\n- XLSX\n- GIF\n- PNG\n- BMP\n- TIFF\n- TIF\n- HEIC\n- TXT\n", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "metadata", + "type": "OBJECT", + "description": "Metadata about the file that assists our platform in determining price, turnaround time, and other information.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/files\"\nquerystring = {\"file\": file}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Languages", + "url": "https://certified-translation.p.rapidapi.com/languages", + "description": "Retrieves a list of available languages and their respective ISO codes.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Pay Quote", + "url": "https://certified-translation.p.rapidapi.com/quotes/quote_a1s2d3f4q5w6e7r8t9y0/pay", + "description": "This endpoint is for paying a quote, which converts it into a translation order for processing. Future updates on the order are received via webhook.", + "method": "POST", + "required_parameters": [ + { + "name": "quote_token", + "type": "string", + "description": "This value is first sent when requesting a quote.", + "default": "quote_a1s2d3f4q5w6e7r8t9y0" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/quotes/quote_a1s2d3f4q5w6e7r8t9y0/pay\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/quotes/{quote_token}/pay\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Create Quote", + "url": "https://certified-translation.p.rapidapi.com/quotes", + "description": "Once all files that require translation have been uploaded, they must be combined together via the Create Quote endpoint to determine pricing and turnaround time.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/quotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/quotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Upload File", + "url": "https://certified-translation.p.rapidapi.com/files", + "description": "Uploads a file for use in a quote or for other purposes.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "A multipart/form-data file. The following file types are permitted:\n\n- PDF\n- DOC\n- DOCX\n- JPG\n- JPEG\n- XLS\n- XLSX\n- GIF\n- PNG\n- BMP\n- TIFF\n- TIF\n- HEIC\n- TXT\n", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "metadata", + "type": "OBJECT", + "description": "Metadata about the file that assists our platform in determining price, turnaround time, and other information.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/files\"\nquerystring = {\"metadata\": \"\", \"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://certified-translation.p.rapidapi.com/files\"\nquerystring = {\"metadata\": \"\", \"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"certified-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/certified_translation/api.py b/toolbench/toolenv/tools/Translation/certified_translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d354537cdc7eda094cb6735d9d6371f0821df224 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/certified_translation/api.py @@ -0,0 +1,98 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_account(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieves information about the current account, including: + + - Users + - Stored Payment Methods" + + """ + url = f"https://certified-translation.p.rapidapi.com/account" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "certified-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def retrieve_order(order_number: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieves a specific order by the order number." + order_number: A unique number identifying the order. + + """ + url = f"https://certified-translation.p.rapidapi.com/orders/{order_number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "certified-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_orders(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieves a paginated list (default `50`) of orders associated with the provided account, sorted in descending order by `created_at`. + + The `Order` objects included in this response are reference objects, meaning they do not contain all the possible properties of the order, but rather a glimpse." + + """ + url = f"https://certified-translation.p.rapidapi.com/orders" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "certified-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieves a list of available languages and their respective ISO codes." + + """ + url = f"https://certified-translation.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "certified-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/ceviri.json b/toolbench/toolenv/tools/Translation/ceviri.json new file mode 100644 index 0000000000000000000000000000000000000000..f8da03596f1349d7e7ccce663deacde81ac90c98 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ceviri.json @@ -0,0 +1,48 @@ +{ + "tool_name": "ceviri", + "tool_description": "dil ceviri", + "title": "ceviri", + "pricing": "FREE", + "score": null, + "home_url": "https://rapidapi.com/baha255434/api/ceviri5/", + "host": "ceviri5.p.rapidapi.com", + "api_list": [ + { + "name": "ceee_copy", + "url": "https://ceviri5.p.rapidapi.com/", + "description": "faas aasdd", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ceviri5.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ceviri5.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "ceee", + "url": "https://ceviri5.p.rapidapi.com/", + "description": "faas aasdd", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ceviri5.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ceviri5.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "ceee_copy", + "url": "https://ceviri5.p.rapidapi.com/", + "description": "faas aasdd", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ceviri5.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ceviri5.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ceviri5.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ceviri5.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/ceviri/api.py b/toolbench/toolenv/tools/Translation/ceviri/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f2502b8e944ef0b570e287ad0fa711cc950fae62 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ceviri/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def ceee(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "faas aasdd" + + """ + url = f"https://ceviri5.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ceviri5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/cheap_translate.json b/toolbench/toolenv/tools/Translation/cheap_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..d471f875399986f12c6a82139801cbfdb89c1e8a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/cheap_translate.json @@ -0,0 +1,95 @@ +{ + "tool_name": "Cheap Translate", + "tool_description": "translate via google translate, bing translate", + "title": "Cheap Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1454, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/cheap-translate-cheap-translate-default/api/cheap-translate/", + "host": "cheap-translate.p.rapidapi.com", + "api_list": [ + { + "name": "/goo/translate/languages", + "url": "https://cheap-translate.p.rapidapi.com/goo/translate/languages", + "description": "Get all Goog supported language", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/goo/translate/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "/goo/translate", + "url": "https://cheap-translate.p.rapidapi.com/goo/translate", + "description": "Translate text from language to other language via Goo", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/goo/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "/translate/languages", + "url": "https://cheap-translate.p.rapidapi.com/translate/languages", + "description": "Get all supported language", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/translate/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "/translate", + "url": "https://cheap-translate.p.rapidapi.com/translate", + "description": "Translate text from language to other language", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "/goo/translate", + "url": "https://cheap-translate.p.rapidapi.com/goo/translate", + "description": "Translate text from language to other language via Goo", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/goo/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/goo/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/translate", + "url": "https://cheap-translate.p.rapidapi.com/translate", + "description": "Translate text from language to other language", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cheap-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/cheap_translate/api.py b/toolbench/toolenv/tools/Translation/cheap_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..01f78a3ad2568ee1ae9c5978ee82a3fe571e362e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/cheap_translate/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def goo_translate_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all Goog supported language" + + """ + url = f"https://cheap-translate.p.rapidapi.com/goo/translate/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cheap-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translate_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all supported language" + + """ + url = f"https://cheap-translate.p.rapidapi.com/translate/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cheap-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/checkprplan.json b/toolbench/toolenv/tools/Translation/checkprplan.json new file mode 100644 index 0000000000000000000000000000000000000000..fc1a9d24aa662f66844865df11aec24237842717 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/checkprplan.json @@ -0,0 +1,24 @@ +{ + "tool_name":"checkprplan", + "tool_description":"cghj", + "title":"checkprplan", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/tb1org2-tb1org2-default/api/checkprplan/", + "host":"checkprplan.p.rapidapi.com", + "api_list":[ + { + "name":"1", + "url":"https://checkprplan.p.rapidapi.com/posts", + "description":"1", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://checkprplan.p.rapidapi.com/posts\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"checkprplan.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/checkprplan/api.py b/toolbench/toolenv/tools/Translation/checkprplan/api.py new file mode 100644 index 0000000000000000000000000000000000000000..46068b0fcbaebbda2fdd121a399937394af0f411 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/checkprplan/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_1(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "1" + + """ + url = f"https://checkprplan.p.rapidapi.com/posts" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "checkprplan.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/chinese_english_dictionary_api/api.py b/toolbench/toolenv/tools/Translation/chinese_english_dictionary_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..319f4ca35a434ceb009ae45d3799a213fceafd05 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/chinese_english_dictionary_api/api.py @@ -0,0 +1,48 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def definition(definition: str, simplified: str=None, limit: int=None, traditional: str=None, any: str=None, exact: bool=None, pinyin: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for a definition." + definition: The definition to search for. + simplified: The simplified Chinese character to search for. + limit: The maximum number of definitions to return. + traditional: The traditional Chinese character to search for. + any: A search term that can be either a definition, simplified Chinese character, traditional Chinese character, or pinyin. + exact: Flag to set whether to return exact matches only. + pinyin: The pinyin to search for. This can be either with diacritics or tone numbers. + + """ + url = f"https://chinese-english-dictionary-api.p.rapidapi.com/definition" + querystring = {'definition': definition, } + if simplified: + querystring['simplified'] = simplified + if limit: + querystring['limit'] = limit + if traditional: + querystring['traditional'] = traditional + if any: + querystring['any'] = any + if exact: + querystring['exact'] = exact + if pinyin: + querystring['pinyin'] = pinyin + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "chinese-english-dictionary-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/codemorph.json b/toolbench/toolenv/tools/Translation/codemorph.json new file mode 100644 index 0000000000000000000000000000000000000000..24a285760d714da20e2d987627ce9dc0e6d4d1e8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/codemorph.json @@ -0,0 +1,39 @@ +{ + "product_id": "api_440bf0cc-e0eb-4f26-8298-6407dec7c620", + "tool_description": "AI Powered Code Translation Tool", + "home_url": "https://rapidapi.com/JackLillie/api/codemorph/", + "name": "CodeMorph", + "title": "CodeMorph", + "pricing": "FREEMIUM", + "tool_name": "CodeMorph", + "score": { + "avgServiceLevel": 0, + "avgLatency": 947, + "avgSuccessRate": 0, + "popularityScore": 0.1, + "__typename": "Score" + }, + "host": "codemorph.p.rapidapi.com", + "api_list": [ + { + "name": "Translate Code", + "url": "https://codemorph.p.rapidapi.com/convert", + "description": "You can submit your code as input and receive the translated code in your desired target language as the output. Whether you need to convert a small code snippet, an entire function, or even a large codebase, this endpoint has got you covered.\n\nThe underlying AI technology behind the CodeMorph API ensures accurate and reliable translations. It comprehends the intricacies of different programming languages, understands their syntax and semantics, and intelligently maps equivalent functionalities between them. The translated code retains the original structure and syntax, reducing the need for manual modifications and saving valuable time.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://codemorph.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"codemorph.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://codemorph.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"codemorph.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "convertedCode": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/deep_translate.json b/toolbench/toolenv/tools/Translation/deep_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..f2922b7ce959634ab8b8fc827de9a4cdc40368b9 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/deep_translate.json @@ -0,0 +1,82 @@ +{ + "tool_name": "Deep Translate", + "tool_description": "100x cheaper than Google Translate. Same API. Same quality.", + "title": "Deep Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1168, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/gatzuma/api/deep-translate1/", + "host": "deep-translate1.p.rapidapi.com", + "api_list": [ + { + "name": "detect", + "url": "https://deep-translate1.p.rapidapi.com/language/translate/v2/detect", + "description": "To detect the language of some text, make a POST request and provide the appropriate request body.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "languages", + "url": "https://deep-translate1.p.rapidapi.com/language/translate/v2/languages", + "description": "You can discover the supported languages of this API by sending an HTTP request using a URL of the following format", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "translate", + "url": "https://deep-translate1.p.rapidapi.com/language/translate/v2", + "description": "To translate text, make a POST request and provide JSON in the request body that identifies the language to translate to (target) and the text to translate (q). You can provide multiple segments of text to translate by including multiple q fields or a list of values for the q field. Specify target languages by using their ISO-639-1 codes.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "detect", + "url": "https://deep-translate1.p.rapidapi.com/language/translate/v2/detect", + "description": "To detect the language of some text, make a POST request and provide the appropriate request body.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "translate", + "url": "https://deep-translate1.p.rapidapi.com/language/translate/v2", + "description": "To translate text, make a POST request and provide JSON in the request body that identifies the language to translate to (target) and the text to translate (q). You can provide multiple segments of text to translate by including multiple q fields or a list of values for the q field. Specify target languages by using their ISO-639-1 codes.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://deep-translate1.p.rapidapi.com/language/translate/v2\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deep-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/deep_translate/api.py b/toolbench/toolenv/tools/Translation/deep_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..dce650201f55ea2ac715cc1771ba2cc9d35b50c9 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/deep_translate/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "You can discover the supported languages of this API by sending an HTTP request using a URL of the following format" + + """ + url = f"https://deep-translate1.p.rapidapi.com/language/translate/v2/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "deep-translate1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/deepl_api.json b/toolbench/toolenv/tools/Translation/deepl_api.json new file mode 100644 index 0000000000000000000000000000000000000000..75c526956f759f5788d4d27c227b92d986ce5801 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/deepl_api.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_68bb3d26-de58-45de-ba13-05ea8a7a3dc6", + "tool_description": "NO Word Limit\nNO Character Limit", + "home_url": "https://rapidapi.com/zfcsoftware/api/deepl-api5/", + "name": "DeepL API", + "title": "DeepL API", + "pricing": "FREEMIUM", + "tool_name": "DeepL API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3488, + "avgSuccessRate": 97, + "popularityScore": 9.5, + "__typename": "Score" + }, + "host": "deepl-api5.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://deepl-api5.p.rapidapi.com/translate", + "description": "When you post the language and text to the api, it returns the translated version", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deepl-api5.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deepl-api5.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://deepl-api5.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deepl-api5.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/deepl_translate_machine/api.py b/toolbench/toolenv/tools/Translation/deepl_translate_machine/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c47818a224a5f363ce858a7ce1c06b2d243620aa --- /dev/null +++ b/toolbench/toolenv/tools/Translation/deepl_translate_machine/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate_text(target: str, source: str, text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate Text" + text: Text + + """ + url = f"https://deepl-translate-machine.p.rapidapi.com/v1/translate/text" + querystring = {'target': target, 'source': source, 'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "deepl-translate-machine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/deepl_translator.json b/toolbench/toolenv/tools/Translation/deepl_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..69092f08c241956c597095e246bc5f3928b75936 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/deepl_translator.json @@ -0,0 +1,67 @@ +{ + "tool_name": "DeepL Translator", + "tool_description": "DeepL\u2019s neural networks are able to capture even the slightest nuances and reproduce them in translation unlike any other service. To assess the quality of our machine translation models, we regularly conduct blind tests. In blind tests, professional translators select the most accurate translation without knowing which company produced it. DeepL outperforms competition by a factor of 3:1.\n\nList of supported output languages is in \"About tab\".", + "title": "DeepL Translator", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 0, + "avgLatency": 741, + "avgSuccessRate": 0, + "popularityScore": 0.1, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/jozef-WxBhUjW_l/api/deepl-translator1/", + "host": "deepl-translator1.p.rapidapi.com", + "api_list": [ + { + "name": "Translate with JSON", + "url": "https://deepl-translator1.p.rapidapi.com/translate", + "description": "Translate with POST method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deepl-translator1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deepl-translator1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate using Query", + "url": "https://deepl-translator1.p.rapidapi.com/translate", + "description": "Translate with GET method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "GET", + "required_parameters": [ + { + "name": "target_lang", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello world!" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deepl-translator1.p.rapidapi.com/translate\"\nquerystring = {\"target_lang\": target_lang, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deepl-translator1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate with JSON", + "url": "https://deepl-translator1.p.rapidapi.com/translate", + "description": "Translate with POST method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://deepl-translator1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deepl-translator1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://deepl-translator1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deepl-translator1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/deepl_translator/api.py b/toolbench/toolenv/tools/Translation/deepl_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fd33b69eaf5a61b2c192409fd215a09afcff3677 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/deepl_translator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate_using_query(target_lang: str, text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate with GET method. + Use text query parameter to specify text that should be translated. + Use target_lang to specify target language." + + """ + url = f"https://deepl-translator1.p.rapidapi.com/translate" + querystring = {'target_lang': target_lang, 'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "deepl-translator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/demo_project.json b/toolbench/toolenv/tools/Translation/demo_project.json new file mode 100644 index 0000000000000000000000000000000000000000..ba845e073b44b124bcf1966dc349cd23f8885e7d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/demo_project.json @@ -0,0 +1,111 @@ +{ + "product_id": "api_aae1e340-8da6-45b4-9277-9de4634ac1f1", + "tool_description": "This Project is created by the onboarding process", + "home_url": "https://rapidapi.com/developerunittest/api/demo-project10619/", + "name": "\ud83d\udc4b Demo Project", + "title": "\ud83d\udc4b Demo Project", + "pricing": "FREE", + "tool_name": "\ud83d\udc4b Demo Project", + "score": { + "avgServiceLevel": 100, + "avgLatency": 904, + "avgSuccessRate": 100, + "popularityScore": 8.1, + "__typename": "Score" + }, + "host": "demo-project10619.p.rapidapi.com", + "api_list": [ + { + "name": "Place Order", + "url": "https://demo-project10619.p.rapidapi.com/order/{id}/place", + "description": " ", + "method": "POST", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/order/{id}/place\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/order/{id}/place\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Add to Order", + "url": "https://demo-project10619.p.rapidapi.com/order/{id}/product", + "description": " ", + "method": "POST", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/order/{id}/product\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/order/{id}/product\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Create Order", + "url": "https://demo-project10619.p.rapidapi.com/order/new", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/order/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/order/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Create User (Sign Up)", + "url": "https://demo-project10619.p.rapidapi.com/auth/user", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/auth/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/auth/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Create Product", + "url": "https://demo-project10619.p.rapidapi.com/catalog/product", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/catalog/product\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/catalog/product\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Login", + "url": "https://demo-project10619.p.rapidapi.com/auth/login", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/auth/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project10619.p.rapidapi.com/auth/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project10619.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/demo_project/api.py b/toolbench/toolenv/tools/Translation/demo_project/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7d5f4f88204fa762ab1437773f1c75fd80ba515b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/demo_project/api.py @@ -0,0 +1,155 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def me(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/auth/me" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_categories(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/categories" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_product(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/product/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_products(skip: int, limit: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/products" + querystring = {'skip': skip, 'limit': limit, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_user_orders(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/order/my" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_order(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/order/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_products_in_category(limit: int, category: str, skip: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/category/{category}/products" + querystring = {'limit': limit, 'skip': skip, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/demo_project_v3/api.py b/toolbench/toolenv/tools/Translation/demo_project_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7d5f4f88204fa762ab1437773f1c75fd80ba515b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/demo_project_v3/api.py @@ -0,0 +1,155 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def me(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/auth/me" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_categories(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/categories" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_product(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/product/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_products(skip: int, limit: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/products" + querystring = {'skip': skip, 'limit': limit, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_user_orders(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/order/my" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_order(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/order/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_products_in_category(limit: int, category: str, skip: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project8717.p.rapidapi.com/catalog/category/{category}/products" + querystring = {'limit': limit, 'skip': skip, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project8717.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/dictionary.json b/toolbench/toolenv/tools/Translation/dictionary.json new file mode 100644 index 0000000000000000000000000000000000000000..5fc151076b99dea8a2d38da516e786f8eacb80f5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/dictionary.json @@ -0,0 +1,27 @@ +{ + "tool_name":"dictionary", + "tool_description":"get any definition of word you need from single api", + "title":"dictionary", + "pricing":"PAID", + "score":null, + "home_url":"https://rapidapi.com/hsain9357-FqcHMmJr1is/api/dictionary72/", + "host":"dictionary72.p.rapidapi.com", + "api_list":[ + { + "name":"get all defintion of words from oxford", + "url":"https://dictionary72.p.rapidapi.com/mum", + "description":"**this endpoint will return any definiton", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://dictionary72.p.rapidapi.com/mum\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"dictionary72.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/dictionary/api.py b/toolbench/toolenv/tools/Translation/dictionary/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0f657bca4607cb5d26432dccb367881959f7bc1b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/dictionary/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_all_defintion_of_words_from_oxford(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**this endpoint will return any definiton" + + """ + url = f"https://dictionary72.p.rapidapi.com/mum" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dictionary72.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/dictionary_by_api_ninjas.json b/toolbench/toolenv/tools/Translation/dictionary_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..d2b5a873fe00506f93c030c679170e1f923ef388 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/dictionary_by_api_ninjas.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Dictionary by API-Ninjas", + "tool_description":"Look up any word in the English dictionary. See more info at https://api-ninjas.com/api/dictionary.", + "title":"Dictionary by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":565, + "avgSuccessRate":94, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/dictionary-by-api-ninjas/", + "host":"dictionary-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/dictionary", + "url":"https://dictionary-by-api-ninjas.p.rapidapi.com/v1/dictionary", + "description":"API Ninjas Dictionary API endpoint.", + "method":"GET", + "required_parameters":[ + { + "name":"word", + "type":"STRING", + "description":"Word to look up.", + "default":"bright" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://dictionary-by-api-ninjas.p.rapidapi.com/v1/dictionary\"\nquerystring = {\"word\": word}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"dictionary-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/dictionary_by_api_ninjas/api.py b/toolbench/toolenv/tools/Translation/dictionary_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..822313efe673a2d59beff96097068840273a19f2 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/dictionary_by_api_ninjas/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_dictionary(word: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Dictionary API endpoint." + word: Word to look up. + + """ + url = f"https://dictionary-by-api-ninjas.p.rapidapi.com/v1/dictionary" + querystring = {'word': word, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "dictionary-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/do_translate.json b/toolbench/toolenv/tools/Translation/do_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..6cefa72a9e5416476b17359f8ddf60a6cfa77541 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/do_translate.json @@ -0,0 +1,39 @@ +{ + "product_id": "api_804cfa11-e6bb-44f5-8975-961bff7feb64", + "tool_description": "Easy to use multilingual deep learning translator. Translate between the main languages, JSON format. ", + "home_url": "https://rapidapi.com/do-ai-do-ai-default/api/do-translate/", + "name": "do-translate", + "title": "do-translate", + "pricing": "FREEMIUM", + "tool_name": "do-translate", + "score": null, + "host": "do-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Translate Text", + "url": "https://do-translate.p.rapidapi.com/trans/translate_string", + "description": "This endpoint is used to translate a text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://do-translate.p.rapidapi.com/trans/translate_string\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"do-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://do-translate.p.rapidapi.com/trans/translate_string\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"do-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "TranslateJson", + "url": "https://do-translate.p.rapidapi.com/trans/translate_json", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://do-translate.p.rapidapi.com/trans/translate_json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"do-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://do-translate.p.rapidapi.com/trans/translate_json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"do-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/dpl_translator.json b/toolbench/toolenv/tools/Translation/dpl_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..01423ff86a302da17352ec5c8f439ef3902b9f8c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/dpl_translator.json @@ -0,0 +1,52 @@ +{ + "product_id": "api_f1fa8398-c2fe-4844-8478-5f8077d99fb9", + "tool_description": "The most precise and finely-tuned machine translation in the world", + "home_url": "https://rapidapi.com/splintPRO/api/dpl-translator/", + "name": "DpL Translator", + "title": "DpL Translator", + "pricing": "FREEMIUM", + "tool_name": "DpL Translator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1967, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "dpl-translator.p.rapidapi.com", + "api_list": [ + { + "name": "/translate", + "url": "https://dpl-translator.p.rapidapi.com/translate", + "description": "A list of acceptable languages can be found [here](https://rebrand.ly/DpL-Documentation).", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://dpl-translator.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"dpl-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://dpl-translator.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"dpl-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "text": { + "type": [ + "string", + "null" + ] + }, + "alternative_texts": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + }, + "additionalProperties": false + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/easy_translate_api.json b/toolbench/toolenv/tools/Translation/easy_translate_api.json new file mode 100644 index 0000000000000000000000000000000000000000..834f556da4214017f1a0c2b757c719000bbbcb60 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/easy_translate_api.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_091f2372-2659-4c13-b3b0-b558875500da", + "tool_description": "Our translation API is a simple and effective solution for quickly translating text from one language to another. Using our API, you can easily integrate the translation functionality into your applications, websites, or online services. Our system uses the latest translation technologies to provide superior-quality results, with great accuracy and speed. With our API, you can translate short or long texts in just a few seconds, without having to worry about the technical\ndetails of the trans...", + "home_url": "https://rapidapi.com/Davidczz/api/easy-translate-api/", + "name": "Easy Translate API", + "title": "Easy Translate API", + "pricing": "FREEMIUM", + "tool_name": "Easy Translate API", + "score": null, + "host": "easy-translate-api.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://easy-translate-api.p.rapidapi.com/translate", + "description": "You have to specify the langages (from/to) and the text you want to translate.\nParameters are \"sourceLang\", \"targetLang\", \"text\".\nText has to be from 1 to 1000 characters.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://easy-translate-api.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"easy-translate-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://easy-translate-api.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"easy-translate-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/efficient_translate.json b/toolbench/toolenv/tools/Translation/efficient_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..ec1a52e2c5bdfdd80130c5f0219254f65882e508 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/efficient_translate.json @@ -0,0 +1,199 @@ +{ + "tool_name":"Efficient translate", + "tool_description":"Efficient translate API with good prices", + "title":"Efficient translate", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sedoyjan/api/efficient-translate/", + "host":"efficient-translate.p.rapidapi.com", + "api_list":[ + { + "name":"translate", + "url":"https://efficient-translate.p.rapidapi.com/translate", + "description":"Returns translation for passed query", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"", + "default":"peach" + }, + { + "name":"to", + "type":"STRING", + "description":"", + "default":"de" + }, + { + "name":"from", + "type":"STRING", + "description":"", + "default":"en" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://efficient-translate.p.rapidapi.com/translate\"\nquerystring = {\"query\": query, \"to\": to, \"from\": is_from}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"efficient-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "from":"en", + "to":"de", + "value":"Pfirsich" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"42", + "content-type":"application/json; charset=utf-8", + "date":"Tue, 05 Jul 2022 22:04:40 GMT", + "etag":"W/\"2a-nR2/zkr7vUKrxZK/6cWze5ZL+Ss\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"languages", + "url":"https://efficient-translate.p.rapidapi.com/languages", + "description":"Returns the list of supported languages", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://efficient-translate.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"efficient-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + "af", + "sq", + "am", + "ar", + "hy", + "az", + "eu", + "be", + "bn", + "bs", + "bg", + "ca", + "ceb", + "zh-CN", + "zh", + "zh-TW", + "co", + "hr", + "cs", + "da", + "nl", + "en", + "eo", + "et", + "fi", + "fr", + "fy", + "gl", + "ka", + "de", + "el", + "gu", + "ht", + "ha", + "haw", + "he", + "iw", + "hi", + "hmn", + "hu", + "is", + "ig", + "id", + "ga", + "it", + "ja", + "jv", + "kn", + "kk", + "km", + "rw", + "ko", + "ku", + "ky", + "lo", + "la", + "lv", + "lt", + "lb", + "mk", + "mg", + "ms", + "ml", + "mt", + "mi", + "mr", + "mn", + "my", + "ne", + "no", + "ny", + "or", + "ps", + "fa", + "pl", + "pt", + "pa", + "ro", + "ru", + "sm", + "gd", + "sr", + "st", + "sn", + "sd", + "si", + "sk", + "sl", + "so", + "es", + "su", + "sw", + "sv", + "tl", + "tg", + "ta", + "tt", + "te", + "th", + "tr", + "tk", + "uk", + "ur", + "ug", + "uz", + "vi", + "cy", + "xh", + "yi", + "yo", + "zu", + "la" + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"570", + "content-type":"application/json; charset=utf-8", + "date":"Tue, 05 Jul 2022 22:01:31 GMT", + "etag":"W/\"23a-Fahfhn9Pvyn44l0S03kKzfBBdbo\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/efficient_translate/api.py b/toolbench/toolenv/tools/Translation/efficient_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d38e210d91ad6a7c4fae6df41e321bfcd38793a4 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/efficient_translate/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(query: str, to: str, is_from: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns translation for passed query" + + """ + url = f"https://efficient-translate.p.rapidapi.com/translate" + querystring = {'query': query, 'to': to, 'from': is_from, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "efficient-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the list of supported languages" + + """ + url = f"https://efficient-translate.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "efficient-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/english_synonyms.json b/toolbench/toolenv/tools/Translation/english_synonyms.json new file mode 100644 index 0000000000000000000000000000000000000000..8273f25f6918ebd5b53836db2e485c2113417a24 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/english_synonyms.json @@ -0,0 +1,37 @@ +{ + "tool_name":"English synonyms", + "tool_description":"Get all english synonyms from a given word", + "title":"English synonyms", + "pricing":"PAID", + "score":{ + "avgServiceLevel":96, + "avgLatency":86806, + "avgSuccessRate":73, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ericmorvax-2YHUl-ynmUD/api/english-synonyms/", + "host":"english-synonyms.p.rapidapi.com", + "api_list":[ + { + "name":"Get Synonyms", + "url":"https://english-synonyms.p.rapidapi.com/{word}", + "description":"Get all synonyms from a given english word", + "method":"GET", + "required_parameters":[ + { + "name":"word", + "type":"string", + "description":"An english word", + "default":"bourgeois" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://english-synonyms.p.rapidapi.com/{word}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"english-synonyms.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/english_synonyms/api.py b/toolbench/toolenv/tools/Translation/english_synonyms/api.py new file mode 100644 index 0000000000000000000000000000000000000000..00bfb96bd499ec6fdccfeba595201e3df9216bb0 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/english_synonyms/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_synonyms(word: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all synonyms from a given english word" + word: An english word + + """ + url = f"https://english-synonyms.p.rapidapi.com/{word}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "english-synonyms.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/explorarc_s_translating_api_ai_powered/api.py b/toolbench/toolenv/tools/Translation/explorarc_s_translating_api_ai_powered/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8494012242354df394fa596b8f436e8291cec3c4 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/explorarc_s_translating_api_ai_powered/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translator(lang: str='spanish', query: str='eamless translation between multiple languagesS', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "ExplorArc's Translating API is an **AI-powered tool** that enables seamless translation between multiple languages, providing accurate and reliable results." + + """ + url = f"https://explorarcs-translating-api-ai-powered.p.rapidapi.com/api/translator/translate" + querystring = {} + if lang: + querystring['lang'] = lang + if query: + querystring['query'] = query + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "explorarcs-translating-api-ai-powered.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/fairslator.json b/toolbench/toolenv/tools/Translation/fairslator.json new file mode 100644 index 0000000000000000000000000000000000000000..76a103a3b5daafdae3bacfc0b74c67c64d44f96a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/fairslator.json @@ -0,0 +1,218 @@ +{ + "product_id": "api_ef8645c6-77a3-41b7-9c05-ced4889a91d1", + "tool_description": "Rewrites texts into different genders or forms of address. This is the API behind Fairslator, a popular tool for removing bias from machine translation.", + "home_url": "https://rapidapi.com/lexiconista/api/fairslator/", + "name": "Fairslator", + "title": "Fairslator", + "pricing": "FREEMIUM", + "tool_name": "Fairslator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 6258, + "avgSuccessRate": 100, + "popularityScore": 8.3, + "__typename": "Score" + }, + "host": "fairslator.p.rapidapi.com", + "api_list": [ + { + "name": "/rewrite", + "url": "https://fairslator.p.rapidapi.com/rewrite", + "description": "Rewrite a text into a different gender or form of address.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fairslator.p.rapidapi.com/rewrite\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fairslator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fairslator.p.rapidapi.com/rewrite\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fairslator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean", + "const": true + }, + "originalText": { + "type": "string", + "description": "The text you have requested to rewrite is repeated here for your convenience." + }, + "firstPerson": { + "type": "string", + "description": "The contents of the secondPerson field from your request is repeated here for your convenience." + }, + "thirdPersons": { + "type": "object", + "description": "The contents of the thirdPersons field from your request is repeated here for your convenience.", + "patternProperties": { + "^.+$": { + "type": "string" + } + } + }, + "rewrittenText": { + "type": "string", + "description": "This is the result you want: the rewritten text." + } + } + } + }, + { + "name": "/analyze", + "url": "https://fairslator.p.rapidapi.com/analyze", + "description": "Find out the gender and form of address of people mentioned in the text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fairslator.p.rapidapi.com/analyze\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fairslator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fairslator.p.rapidapi.com/analyze\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fairslator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "required": [ + "success", + "text" + ], + "success": { + "type": "boolean", + "const": true + }, + "sourceText": { + "type": "string", + "description": "The source text (if any), repeated in the response for your convenience." + }, + "text": { + "type": "string", + "description": "The analyzed text, repeated in the response for your convenience." + }, + "firstPerson": { + "type": "object", + "description": "Contains properties of the person (or persons) to which the text refers in the first person (using pronouns such as 'I' and 'we'), if any.", + "properties": { + "keyword": { + "type": "string", + "description": "A keyword, usually a noun, taken from the text (or from the source text if supplied) which represents this person." + }, + "gender": { + "type": "string", + "enum": [ + "m", + "f" + ], + "description": "The person's (or persons') gender: 'm' for male, 'f' for female." + }, + "number": { + "type": "string", + "enum": [ + "s", + "p" + ], + "description": "The person's (or persons') number: 's' for singular, 'p' for plural." + }, + "genderFreedom": { + "type": "string", + "pattern": "^[mfb]*$", + "description": "Genders the person (or persons) can be rewritten into: 'm' for male, 'f' for female, 'b' for gender-neutral." + }, + "numberFreedom": { + "type": "string", + "pattern": "^[sp]*$", + "description": "Numbers the person (or persons) can be rewritten into: 's' for singular, 'p' for plural." + } + } + }, + "secondPerson": { + "type": "object", + "description": "Contains properties of the person (or persons) to which the text refers in the second person (using pronouns such as 'you'), if any.", + "properties": { + "keyword": { + "type": "string", + "description": "A keyword, usually a noun, taken from the text (or from the source text if supplied) which represents this person." + }, + "gender": { + "type": "string", + "enum": [ + "m", + "f" + ], + "description": "The person's (or persons') gender: 'm' for male, 'f' for female." + }, + "register": { + "type": "string", + "enum": [ + "v", + "t" + ], + "description": "The register in which the person (or persons) is (or are) being addressed: 'v' for formal, 't' for informal." + }, + "number": { + "type": "string", + "enum": [ + "s", + "p" + ], + "description": "The person's (or persons') number: 's' for singular, 'p' for plural." + }, + "genderFreedom": { + "type": "string", + "pattern": "^[mfb]*$", + "description": "Genders the person (or persons) can be rewritten into: 'm' for male, 'f' for female, 'b' for gender-neutral." + }, + "registerFreedom": { + "type": "string", + "pattern": "^[vt]*$", + "description": "Registers the person (or persons) can be rewritten into: 'v' for formal, 't' for informal." + }, + "numberFreedom": { + "type": "string", + "pattern": "^[sp]*$", + "description": "Numbers the person (or persons) can be rewritten into: 's' for singular, 'p' for plural." + } + } + }, + "thirdPersons": { + "type": "array", + "description": "An array of objects which represent people mentioned in the text in the third person.", + "items": { + "description": "Contains properties of the person (or persons) to which the text refers in the third person (using nouns, and pronouns such as 'he', 'she' 'they').", + "properties": { + "keyword": { + "type": "string", + "description": "A keyword, usually a noun, taken from the text (or from the source text if supplied) which represents this person." + }, + "gender": { + "type": "string", + "enum": [ + "m", + "f" + ], + "description": "The person's (or persons') gender: 'm' for male, 'f' for female." + }, + "number": { + "type": "string", + "enum": [ + "s", + "p" + ], + "description": "The person's (or persons') number: 's' for singular, 'p' for plural." + }, + "genderFreedom": { + "type": "string", + "pattern": "^[mfb]*$", + "description": "Genders the person (or persons) can be rewritten into: 'm' for male, 'f' for female, 'b' for gender-neutral." + }, + "numberFreedom": { + "type": "string", + "pattern": "^[sp]*$", + "description": "Numbers the person (or persons) can be rewritten into: 's' for singular, 'p' for plural." + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/fast_and_highly_accurate_language_detection.json b/toolbench/toolenv/tools/Translation/fast_and_highly_accurate_language_detection.json new file mode 100644 index 0000000000000000000000000000000000000000..00c772af30ba6d61373fc293f1bef79d16e8b02e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/fast_and_highly_accurate_language_detection.json @@ -0,0 +1,127 @@ +{ + "tool_name": "Fast And Highly Accurate Language Detection", + "tool_description": "Fast and highly accurate (99.9% accuracy for most major languages*) language detection in 176 languages based on the Fast Text Machine Learning model. Please see the \"About\" section for details on languages and accuracy data.", + "title": "Fast And Highly Accurate Language Detection", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 127, + "avgSuccessRate": 99, + "popularityScore": 9.2, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/smodin/api/fast-and-highly-accurate-language-detection/", + "host": "fast-and-highly-accurate-language-detection.p.rapidapi.com", + "api_list": [ + { + "name": "Languages", + "url": "https://fast-and-highly-accurate-language-detection.p.rapidapi.com/languages", + "description": "Endpoint to return language information.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fast-and-highly-accurate-language-detection.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-and-highly-accurate-language-detection.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "array", + "items": { + "type": "object" + } + } + }, + { + "name": "Language Detection Endpoint", + "url": "https://fast-and-highly-accurate-language-detection.p.rapidapi.com/detect", + "description": "This is the endpoint for language detection.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fast-and-highly-accurate-language-detection.p.rapidapi.com/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-and-highly-accurate-language-detection.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "lang": { + "type": "string" + }, + "prob": { + "type": "number" + }, + "isReliable": { + "type": "boolean" + }, + "highAccuracyLanguage": { + "type": "boolean" + }, + "predictions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "lang": { + "type": "string" + }, + "prob": { + "type": "number" + } + } + } + } + } + } + }, + { + "name": "Language Detection Endpoint", + "url": "https://fast-and-highly-accurate-language-detection.p.rapidapi.com/detect", + "description": "This is the endpoint for language detection.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fast-and-highly-accurate-language-detection.p.rapidapi.com/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-and-highly-accurate-language-detection.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fast-and-highly-accurate-language-detection.p.rapidapi.com/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-and-highly-accurate-language-detection.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "lang": { + "type": "string" + }, + "prob": { + "type": "number" + }, + "isReliable": { + "type": "boolean" + }, + "highAccuracyLanguage": { + "type": "boolean" + }, + "predictions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "lang": { + "type": "string" + }, + "prob": { + "type": "number" + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/fast_and_highly_accurate_language_detection/api.py b/toolbench/toolenv/tools/Translation/fast_and_highly_accurate_language_detection/api.py new file mode 100644 index 0000000000000000000000000000000000000000..68a2e3bf8953c6c48ef5d66b12a675879dcd42ce --- /dev/null +++ b/toolbench/toolenv/tools/Translation/fast_and_highly_accurate_language_detection/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Endpoint to return language information." + + """ + url = f"https://fast-and-highly-accurate-language-detection.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fast-and-highly-accurate-language-detection.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/fast_deepl_translator.json b/toolbench/toolenv/tools/Translation/fast_deepl_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..a008133087eaea997620d69638fcc5688d7a0dd1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/fast_deepl_translator.json @@ -0,0 +1,62 @@ +{ + "product_id": "api_16e58077-12e4-40fc-b28d-3073f389c81d", + "tool_description": "Neural Translate. HTML / Text / JSON. Cheaper than original, same quality.\nDeepl Translator API allows developers to access the powerful DeepL engine for translating text from one language to another. \nThis API provides rich and accurate translations through an intuitive interface, allowing quick and easy integration into applications.\nFree Translate full web pages and url, fast and free*\nFeel Free to use our advanced DeepL Learning language translation APIs to seamlessly translate between a...", + "home_url": "https://rapidapi.com/bwtun-bwtun-default/api/fast-deepl-translator/", + "name": "Fast DeepL Translator", + "title": "Fast DeepL Translator", + "pricing": "FREEMIUM", + "tool_name": "Fast DeepL Translator", + "score": { + "avgServiceLevel": 97, + "avgLatency": 6579, + "avgSuccessRate": 97, + "popularityScore": 9.3, + "__typename": "Score" + }, + "host": "fast-deepl-translator.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://fast-deepl-translator.p.rapidapi.com/api/translate", + "description": "Translate endpoint", + "method": "POST", + "required_parameters": [ + { + "name": "target", + "type": "STRING", + "description": "", + "default": "EN" + }, + { + "name": "source", + "type": "STRING", + "description": "", + "default": "FR" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Adultes, enfants\u2026tout le monde erre dans la rue. Nous n\u2019avons plus rien. Nous sommes dehors avec nos quatre enfants\", r\u00e9p\u00e8te-t-elle en ajoutant qu\u2019ils ont \"fabriqu\u00e9 des tentes de fortunes\" dans le centre-ville de Gaziantep, \u00e0 une trentaine de kilom\u00e8tres de l\u00e0. \"Nous n\u2019avons pas de nouvelles de nos proches. Tout le monde est mort, soupire-t-elle, la voix \u00e9trangl\u00e9e par l\u2019\u00e9motion. Que Dieu aide la Turquie et son peuple. Je n\u2019ai pas de mot. Dieu, aide nous !" + } + ], + "optional_parameters": [ + { + "name": "base64_source", + "type": "STRING", + "description": "", + "default": "no" + }, + { + "name": "base64_target", + "type": "STRING", + "description": "", + "default": "no" + } + ], + "code": "import requests\n\nurl = \"https://fast-deepl-translator.p.rapidapi.com/api/translate\"\nquerystring = {\"base64_source\": \"no\", \"base64_target\": \"no\", \"target\": \"EN\", \"source\": \"FR\", \"text\": \"Adultes, enfants\u2026tout le monde erre dans la rue. Nous n\u2019avons plus rien. Nous sommes dehors avec nos quatre enfants\\\", r\u00e9p\u00e8te-t-elle en ajoutant qu\u2019ils ont \\\"fabriqu\u00e9 des tentes de fortunes\\\" dans le centre-ville de Gaziantep, \u00e0 une trentaine de kilom\u00e8tres de l\u00e0. \\\"Nous n\u2019avons pas de nouvelles de nos proches. Tout le monde est mort, soupire-t-elle, la voix \u00e9trangl\u00e9e par l\u2019\u00e9motion. Que Dieu aide la Turquie et son peuple. Je n\u2019ai pas de mot. Dieu, aide nous !\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-deepl-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fast-deepl-translator.p.rapidapi.com/api/translate\"\nquerystring = {\"base64_source\": \"no\", \"base64_target\": \"no\", \"target\": \"EN\", \"source\": \"FR\", \"text\": \"Adultes, enfants\u2026tout le monde erre dans la rue. Nous n\u2019avons plus rien. Nous sommes dehors avec nos quatre enfants\\\", r\u00e9p\u00e8te-t-elle en ajoutant qu\u2019ils ont \\\"fabriqu\u00e9 des tentes de fortunes\\\" dans le centre-ville de Gaziantep, \u00e0 une trentaine de kilom\u00e8tres de l\u00e0. \\\"Nous n\u2019avons pas de nouvelles de nos proches. Tout le monde est mort, soupire-t-elle, la voix \u00e9trangl\u00e9e par l\u2019\u00e9motion. Que Dieu aide la Turquie et son peuple. Je n\u2019ai pas de mot. Dieu, aide nous !\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-deepl-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/fast_language_detection.json b/toolbench/toolenv/tools/Translation/fast_language_detection.json new file mode 100644 index 0000000000000000000000000000000000000000..1a15440e4e34703d2027664cf3d930ccbd6c30ba --- /dev/null +++ b/toolbench/toolenv/tools/Translation/fast_language_detection.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_e15cc92a-29e6-484f-b01a-bd93317ab905", + "tool_description": "Detect the language of your text fast! This API detects more than 160 languages and returns language code in ISO 639-1 format.", + "home_url": "https://rapidapi.com/MrPicasso/api/fast-language-detection/", + "name": "Fast Language Detection", + "title": "Fast Language Detection", + "pricing": "FREEMIUM", + "tool_name": "Fast Language Detection", + "score": null, + "host": "fast-language-detection.p.rapidapi.com", + "api_list": [ + { + "name": "Detect", + "url": "https://fast-language-detection.p.rapidapi.com/detect", + "description": "This endpoint takes your text in a JSON body and tries to detect the language of the text.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fast-language-detection.p.rapidapi.com/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-language-detection.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fast-language-detection.p.rapidapi.com/detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fast-language-detection.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/french_synonyms.json b/toolbench/toolenv/tools/Translation/french_synonyms.json new file mode 100644 index 0000000000000000000000000000000000000000..f80a39cc8c2bf083112f25e439f87e5d11686bb3 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/french_synonyms.json @@ -0,0 +1,40 @@ +{ + "tool_name":"French Synonyms", + "tool_description":"Get a list of synonyms from a french word", + "title":"French Synonyms", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":39463, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ericmorvax-2YHUl-ynmUD/api/french-synonyms/", + "host":"french-synonyms.p.rapidapi.com", + "api_list":[ + { + "name":"Get Synonyms", + "url":"https://french-synonyms.p.rapidapi.com/{word}", + "description":"Get all synonyms from a word", + "method":"GET", + "required_parameters":[ + { + "name":"word", + "type":"string", + "description":"", + "default":"question" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://french-synonyms.p.rapidapi.com/{word}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"french-synonyms.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/french_synonyms/api.py b/toolbench/toolenv/tools/Translation/french_synonyms/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a6034c538813ef793481703777d833e7af676132 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/french_synonyms/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_synonyms(word: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all synonyms from a word" + + """ + url = f"https://french-synonyms.p.rapidapi.com/{word}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "french-synonyms.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/g_translate.json b/toolbench/toolenv/tools/Translation/g_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..1e072042469d17d03bba37eb15ead066786c39af --- /dev/null +++ b/toolbench/toolenv/tools/Translation/g_translate.json @@ -0,0 +1,343 @@ +{ + "tool_name": "G Translate", + "tool_description": "Translate API using the best translation engine.", + "title": "G Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2618, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/datascraper/api/g-translate1/", + "host": "g-translate1.p.rapidapi.com", + "api_list": [ + { + "name": "Get Supported Languages", + "url": "https://g-translate1.p.rapidapi.com/languages", + "description": "Get Supported Languages", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://g-translate1.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"g-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "code": 200, + "data": { + "auto": "Detect Language", + "af": "Afrikaans", + "sq": "Albanian", + "am": "Amharic", + "ar": "Arabic", + "hy": "Armenian", + "az": "Azerbaijani", + "eu": "Basque", + "be": "Belarusian", + "bn": "Bengali", + "bs": "Bosnian", + "bg": "Bulgarian", + "ca": "Catalan", + "ceb": "Cebuano", + "ny": "Chichewa", + "zh-CN": "Chinese (Simplified)", + "zh-TW": "Chinese (Traditional)", + "co": "Corsican", + "hr": "Croatian", + "cs": "Czech", + "da": "Danish", + "nl": "Dutch", + "en": "English", + "eo": "Esperanto", + "et": "Estonian", + "tl": "Filipino", + "fi": "Finnish", + "fr": "French", + "fy": "Frisian", + "gl": "Galician", + "ka": "Georgian", + "de": "German", + "el": "Greek", + "gu": "Gujarati", + "ht": "Haitian Creole", + "ha": "Hausa", + "haw": "Hawaiian", + "he": "Hebrew", + "iw": "Hebrew", + "hi": "Hindi", + "hmn": "Hmong", + "hu": "Hungarian", + "is": "Icelandic", + "ig": "Igbo", + "id": "Indonesian", + "ga": "Irish", + "it": "Italian", + "ja": "Japanese", + "jw": "Javanese", + "kn": "Kannada", + "kk": "Kazakh", + "km": "Khmer", + "rw": "Kinyarwanda", + "ko": "Korean", + "ku": "Kurdish (Kurmanji)", + "ky": "Kyrgyz", + "lo": "Lao", + "la": "Latin", + "lv": "Latvian", + "lt": "Lithuanian", + "lb": "Luxembourgish", + "mk": "Macedonian", + "mg": "Malagasy", + "ms": "Malay", + "ml": "Malayalam", + "mt": "Maltese", + "mi": "Maori", + "mr": "Marathi", + "mn": "Mongolian", + "my": "Myanmar (Burmese)", + "ne": "Nepali", + "no": "Norwegian", + "or": "Odia (Oriya)", + "ps": "Pashto", + "fa": "Persian", + "pl": "Polish", + "pt": "Portuguese", + "pa": "Punjabi", + "ro": "Romanian", + "ru": "Russian", + "sm": "Samoan", + "gd": "Scots Gaelic", + "sr": "Serbian", + "st": "Sesotho", + "sn": "Shona", + "sd": "Sindhi", + "si": "Sinhala", + "sk": "Slovak", + "sl": "Slovenian", + "so": "Somali", + "es": "Spanish", + "su": "Sundanese", + "sw": "Swahili", + "sv": "Swedish", + "tg": "Tajik", + "ta": "Tamil", + "tt": "Tatar", + "te": "Telugu", + "th": "Thai", + "tr": "Turkish", + "uk": "Ukrainian", + "ur": "Urdu", + "ug": "Uyghur", + "uz": "Uzbek", + "vi": "Vietnamese", + "cy": "Welsh", + "xh": "Xhosa", + "yi": "Yiddish", + "yo": "Yoruba", + "zu": "Zulu" + }, + "message": "" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-length": "1765", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 23 Sep 2022 03:07:44 GMT", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Translate Text with POST", + "url": "https://g-translate1.p.rapidapi.com/translate", + "description": "Translate Text with POST method", + "method": "POST", + "required_parameters": [ + { + "name": "tl", + "type": "STRING", + "description": "", + "default": "ru" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "The POST method has several advantages over GET: it is more secure because most of the request is hidden from the user; Suitable for big data operations." + } + ], + "optional_parameters": [ + { + "name": "sl", + "type": "STRING", + "description": "", + "default": "en" + } + ], + "code": "import requests\n\nurl = \"https://g-translate1.p.rapidapi.com/translate\"\nquerystring = {\"sl\": sl, \"tl\": tl, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"g-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "code": 200, + "data": { + "translation": "\u041c\u0435\u0442\u043e\u0434 POST \u0438\u043c\u0435\u0435\u0442 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432 \u043f\u0435\u0440\u0435\u0434 GET: \u043e\u043d \u0431\u043e\u043b\u0435\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u0431\u043e\u043b\u044c\u0448\u0430\u044f \u0447\u0430\u0441\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441\u043a\u0440\u044b\u0442\u0430 \u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f; \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0441 \u0431\u043e\u043b\u044c\u0448\u0438\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u043c\u0438.", + "pronunciation": "Metod POST imeyet neskol'ko preimushchestv pered GET: on boleye bezopasen, poskol'ku bol'shaya chast' zaprosa skryta ot pol'zovatelya; Podkhodit dlya operatsiy s bol'shimi dannymi.", + "pairs": [ + { + "s": "The POST method has several advantages over GET: it is more secure because most of the request is hidden from the user;", + "t": "\u041c\u0435\u0442\u043e\u0434 POST \u0438\u043c\u0435\u0435\u0442 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432 \u043f\u0435\u0440\u0435\u0434 GET: \u043e\u043d \u0431\u043e\u043b\u0435\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u0435\u043d, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u0431\u043e\u043b\u044c\u0448\u0430\u044f \u0447\u0430\u0441\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0441\u043a\u0440\u044b\u0442\u0430 \u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f; " + }, + { + "s": "Suitable for big data operations.", + "t": "\u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0441 \u0431\u043e\u043b\u044c\u0448\u0438\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u043c\u0438." + } + ], + "source": { + "language": { + "didYouMean": false, + "iso": "en" + }, + "text": { + "autoCorrected": false, + "value": "", + "didYouMean": false + } + } + }, + "message": "" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-length": "1161", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 23 Sep 2022 03:06:06 GMT", + "server": "RapidAPI-1.2.8", + "x-proxy": "1", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8", + "x-trial": "0" + }, + "schema": {} + }, + { + "name": "Translate Text", + "url": "https://g-translate1.p.rapidapi.com/translate", + "description": "Translate Text", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "One idea behind Java's automatic memory management model is that programmers should be spared the burden of having to perform manual memory management. In some languages the programmer allocates memory to create any object stored on the heap and is responsible for later manually deallocating that memory to delete any such objects. If a programmer forgets to deallocate memory or writes code that fails to do so in a timely fashion, a memory leak can occur: the program will consume a potentially arbitrarily large amount of memory. In addition, if a region of memory is deallocated twice, the program can become unstable and may crash. Finally, in non garbage collected environments, there is a certain degree of overhead and complexity of user-code to track and finalize allocations." + }, + { + "name": "tl", + "type": "STRING", + "description": "", + "default": "ru" + } + ], + "optional_parameters": [ + { + "name": "sl", + "type": "STRING", + "description": "", + "default": "en" + } + ], + "code": "import requests\n\nurl = \"https://g-translate1.p.rapidapi.com/translate\"\nquerystring = {\"text\": text, \"tl\": tl, \"sl\": sl}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"g-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "code": 200, + "data": { + "translation": "\u041e\u0434\u043d\u0430 \u0438\u0437 \u0438\u0434\u0435\u0439 \u043c\u043e\u0434\u0435\u043b\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u044c\u044e \u0432 Java \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0438\u0437\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043e\u0442 \u0431\u0440\u0435\u043c\u0435\u043d\u0438 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u044c\u044e. \u0412 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u044f\u0437\u044b\u043a\u0430\u0445 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442 \u0432\u044b\u0434\u0435\u043b\u044f\u0435\u0442 \u043f\u0430\u043c\u044f\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u0430, \u0445\u0440\u0430\u043d\u044f\u0449\u0435\u0433\u043e\u0441\u044f \u0432 \u043a\u0443\u0447\u0435, \u0438 \u043d\u0435\u0441\u0435\u0442 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0440\u0443\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u043f\u0430\u043c\u044f\u0442\u0438 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u043b\u044e\u0431\u044b\u0445 \u0442\u0430\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432. \u0415\u0441\u043b\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442 \u0437\u0430\u0431\u044b\u0432\u0430\u0435\u0442 \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u0438\u0442\u044c \u043f\u0430\u043c\u044f\u0442\u044c \u0438\u043b\u0438 \u043f\u0438\u0448\u0435\u0442 \u043a\u043e\u0434, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u0434\u0435\u043b\u0430\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u0441\u0432\u043e\u0435\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e, \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0442\u0438 \u0443\u0442\u0435\u0447\u043a\u0430 \u043f\u0430\u043c\u044f\u0442\u0438: \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043b\u044f\u0442\u044c \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0431\u044a\u0435\u043c \u043f\u0430\u043c\u044f\u0442\u0438. \u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u0435\u0441\u043b\u0438 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0430\u043c\u044f\u0442\u0438 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0430\u0436\u0434\u044b, \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e \u0438 \u043c\u043e\u0436\u0435\u0442 \u0430\u0432\u0430\u0440\u0438\u0439\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443. \u041d\u0430\u043a\u043e\u043d\u0435\u0446, \u0432 \u0441\u0440\u0435\u0434\u0430\u0445 \u0431\u0435\u0437 \u0441\u0431\u043e\u0440\u043a\u0438 \u043c\u0443\u0441\u043e\u0440\u0430 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u0430\u044f \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u0434\u043b\u044f \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f \u0438 \u043e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f.", + "pronunciation": "Odna iz idey modeli avtomaticheskogo upravleniya pamyat'yu v Java sostoit v tom, chto programmisty dolzhny byt' izbavleny ot bremeni ruchnogo upravleniya pamyat'yu. V nekotorykh yazykakh programmist vydelyayet pamyat' dlya sozdaniya lyubogo ob\"yekta, khranyashchegosya v kuche, i neset otvetstvennost' za posleduyushcheye ruchnoye osvobozhdeniye etoy pamyati dlya udaleniya lyubykh takikh ob\"yektov. Yesli programmist zabyvayet osvobodit' pamyat' ili pishet kod, kotoryy ne delayet etogo svoyevremenno, mozhet proizoyti utechka pamyati: programma budet potreblyat' potentsial'no proizvol'no bol'shoy ob\"yem pamyati. Krome togo, yesli oblast' pamyati osvobozhdayetsya dvazhdy, programma mozhet rabotat' nestabil'no i mozhet avariyno zavershat' rabotu. Nakonets, v sredakh bez sborki musora sushchestvuyet opredelennaya stepen' nakladnykh raskhodov i slozhnost' pol'zovatel'skogo koda dlya otslezhivaniya i okonchatel'nogo raspredeleniya.", + "pairs": [ + { + "s": "One idea behind Java's automatic memory management model is that programmers should be spared the burden of having to perform manual memory management.", + "t": "\u041e\u0434\u043d\u0430 \u0438\u0437 \u0438\u0434\u0435\u0439 \u043c\u043e\u0434\u0435\u043b\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u044c\u044e \u0432 Java \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0438\u0437\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043e\u0442 \u0431\u0440\u0435\u043c\u0435\u043d\u0438 \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u044c\u044e. " + }, + { + "s": "In some languages the programmer allocates memory to create any object stored on the heap and is responsible for later manually deallocating that memory to delete any such objects.", + "t": "\u0412 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u044f\u0437\u044b\u043a\u0430\u0445 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442 \u0432\u044b\u0434\u0435\u043b\u044f\u0435\u0442 \u043f\u0430\u043c\u044f\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u0430, \u0445\u0440\u0430\u043d\u044f\u0449\u0435\u0433\u043e\u0441\u044f \u0432 \u043a\u0443\u0447\u0435, \u0438 \u043d\u0435\u0441\u0435\u0442 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0440\u0443\u0447\u043d\u043e\u0435 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u043f\u0430\u043c\u044f\u0442\u0438 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u043b\u044e\u0431\u044b\u0445 \u0442\u0430\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432. " + }, + { + "s": "If a programmer forgets to deallocate memory or writes code that fails to do so in a timely fashion, a memory leak can occur: the program will consume a potentially arbitrarily large amount of memory.", + "t": "\u0415\u0441\u043b\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442 \u0437\u0430\u0431\u044b\u0432\u0430\u0435\u0442 \u043e\u0441\u0432\u043e\u0431\u043e\u0434\u0438\u0442\u044c \u043f\u0430\u043c\u044f\u0442\u044c \u0438\u043b\u0438 \u043f\u0438\u0448\u0435\u0442 \u043a\u043e\u0434, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u0434\u0435\u043b\u0430\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u0441\u0432\u043e\u0435\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e, \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0442\u0438 \u0443\u0442\u0435\u0447\u043a\u0430 \u043f\u0430\u043c\u044f\u0442\u0438: \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043b\u044f\u0442\u044c \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0431\u044a\u0435\u043c \u043f\u0430\u043c\u044f\u0442\u0438. " + }, + { + "s": "In addition, if a region of memory is deallocated twice, the program can become unstable and may crash.", + "t": "\u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u0435\u0441\u043b\u0438 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0430\u043c\u044f\u0442\u0438 \u043e\u0441\u0432\u043e\u0431\u043e\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0430\u0436\u0434\u044b, \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e \u0438 \u043c\u043e\u0436\u0435\u0442 \u0430\u0432\u0430\u0440\u0438\u0439\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443. " + }, + { + "s": "Finally, in non garbage collected environments, there is a certain degree of overhead and complexity of user-code to track and finalize allocations.", + "t": "\u041d\u0430\u043a\u043e\u043d\u0435\u0446, \u0432 \u0441\u0440\u0435\u0434\u0430\u0445 \u0431\u0435\u0437 \u0441\u0431\u043e\u0440\u043a\u0438 \u043c\u0443\u0441\u043e\u0440\u0430 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u0430\u044f \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u0434\u043b\u044f \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f \u0438 \u043e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f." + } + ], + "source": { + "language": { + "didYouMean": false, + "iso": "en" + }, + "text": { + "autoCorrected": false, + "value": "", + "didYouMean": false + } + } + }, + "message": "" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "content-length": "5162", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 23 Sep 2022 02:56:29 GMT", + "server": "RapidAPI-1.2.8", + "x-proxy": "1", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8", + "x-trial": "0" + }, + "schema": {} + }, + { + "name": "Translate Text with POST", + "url": "https://g-translate1.p.rapidapi.com/translate", + "description": "Translate Text with POST method", + "method": "POST", + "required_parameters": [ + { + "name": "tl", + "type": "STRING", + "description": "", + "default": "ru" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "The POST method has several advantages over GET: it is more secure because most of the request is hidden from the user; Suitable for big data operations." + } + ], + "optional_parameters": [ + { + "name": "sl", + "type": "STRING", + "description": "", + "default": "en" + } + ], + "code": "import requests\n\nurl = \"https://g-translate1.p.rapidapi.com/translate\"\nquerystring = {\"sl\": \"en\", \"tl\": \"ru\", \"text\": \"The POST method has several advantages over GET: it is more secure because most of the request is hidden from the user; Suitable for big data operations.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"g-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://g-translate1.p.rapidapi.com/translate\"\nquerystring = {\"sl\": \"en\", \"tl\": \"ru\", \"text\": \"The POST method has several advantages over GET: it is more secure because most of the request is hidden from the user; Suitable for big data operations.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"g-translate1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/g_translate/api.py b/toolbench/toolenv/tools/Translation/g_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c8f7c6bc79d250deef2b33f3084f4e46a538308b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/g_translate/api.py @@ -0,0 +1,52 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Supported Languages" + + """ + url = f"https://g-translate1.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "g-translate1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translate_text(text: str, tl: str, sl: str='en', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate Text" + + """ + url = f"https://g-translate1.p.rapidapi.com/translate" + querystring = {'text': text, 'tl': tl, } + if sl: + querystring['sl'] = sl + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "g-translate1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/gangster_speak_translator_api.json b/toolbench/toolenv/tools/Translation/gangster_speak_translator_api.json new file mode 100644 index 0000000000000000000000000000000000000000..afca012cc12d1d7b284f36359a3dbfe716bc9a69 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/gangster_speak_translator_api.json @@ -0,0 +1,43 @@ +{ + "product_id": "api_1db8b32d-d161-4c1f-acf9-ab190b0ff125", + "tool_description": "Unleash your inner gangsta with this fun text translator!\nGangster Speak Translator is a unique and entertaining text translation tool that turns your ordinary words into gangster lingo. Whether you're looking to spice up your messages, add some swagger to your social media posts, or simply have a good laugh with friends, GangstaTranslator has got you covered! With just a few clicks, you'll be talkin' like a true gangsta in no time. Give it a try and let the good times roll!", + "home_url": "https://rapidapi.com/sadasdasdlukedev/api/gangster-speak-translator-api/", + "name": "Gangster Speak Translator API", + "title": "Gangster Speak Translator API", + "pricing": "FREEMIUM", + "tool_name": "Gangster Speak Translator API", + "score": null, + "host": "gangster-speak-translator-api.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://gangster-speak-translator-api.p.rapidapi.com/index.php", + "description": "The Translate endpoint is a part of the Gangsta Translator API that provides a simple and easy-to-use interface for converting input text into \"gangster speak.\" It is designed to add an entertaining twist to ordinary text, making it suitable for casual conversations, social media posts, and more.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hey how are you?" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://gangster-speak-translator-api.p.rapidapi.com/index.php\"\nquerystring = {\"text\": \"Hey how are you?\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gangster-speak-translator-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://gangster-speak-translator-api.p.rapidapi.com/index.php\"\nquerystring = {\"text\": \"Hey how are you?\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gangster-speak-translator-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "input": { + "type": "string" + }, + "output": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/get_01.json b/toolbench/toolenv/tools/Translation/get_01.json new file mode 100644 index 0000000000000000000000000000000000000000..71979ca8e2fa8c3f647db37ff054629253fec3c0 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/get_01.json @@ -0,0 +1,31 @@ +{ + "product_id": "api_db2d4a79-d7f6-4e11-b677-618400647148", + "tool_description": "translation", + "home_url": "https://rapidapi.com/michalfiction/api/014/", + "name": "01", + "title": "01", + "pricing": "FREE", + "tool_name": "01", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2103, + "avgSuccessRate": 100, + "popularityScore": 6.9, + "__typename": "Score" + }, + "host": "014.p.rapidapi.com", + "api_list": [ + { + "name": "ENDpoint", + "url": "https://014.p.rapidapi.com/", + "description": "01", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://014.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"014.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://014.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"014.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "get_01" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/get_01/api.py b/toolbench/toolenv/tools/Translation/get_01/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d0d3f43e43631b1e2b4c8cc6551dee881354d9e4 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/get_01/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def endpoint(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "01" + + """ + url = f"https://014.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "014.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/get_13f918yf19o1t1f1of1t9.json b/toolbench/toolenv/tools/Translation/get_13f918yf19o1t1f1of1t9.json new file mode 100644 index 0000000000000000000000000000000000000000..6a2b804508c1532b5f6d3c85e36ad435c2e882a7 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/get_13f918yf19o1t1f1of1t9.json @@ -0,0 +1,31 @@ +{ + "product_id": "api_02f4dd86-13b0-4026-92c9-cf81a20790d9", + "tool_description": "rrrrrrr", + "home_url": "https://rapidapi.com/radislavmalikov/api/13f918yf19o1t1f1of1t9/", + "name": "13f918yf19o1t1f1of1t9", + "title": "13f918yf19o1t1f1of1t9", + "pricing": "FREE", + "tool_name": "13f918yf19o1t1f1of1t9", + "score": { + "avgServiceLevel": 0, + "avgLatency": 1367, + "avgSuccessRate": 0, + "popularityScore": 0.1, + "__typename": "Score" + }, + "host": "13f918yf19o1t1f1of1t9.p.rapidapi.com", + "api_list": [ + { + "name": "endpoint1", + "url": "https://13f918yf19o1t1f1of1t9.p.rapidapi.com/", + "description": "endpoint1", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://13f918yf19o1t1f1of1t9.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"13f918yf19o1t1f1of1t9.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://13f918yf19o1t1f1of1t9.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"13f918yf19o1t1f1of1t9.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "get_13f918yf19o1t1f1of1t9" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/get_13f918yf19o1t1f1of1t9/api.py b/toolbench/toolenv/tools/Translation/get_13f918yf19o1t1f1of1t9/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ba43b1240a95b7c21639a069df73aed6f3feb979 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/get_13f918yf19o1t1f1of1t9/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def endpoint1(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "endpoint1" + + """ + url = f"https://13f918yf19o1t1f1of1t9.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "13f918yf19o1t1f1of1t9.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/google_cloud_translate_api.json b/toolbench/toolenv/tools/Translation/google_cloud_translate_api.json new file mode 100644 index 0000000000000000000000000000000000000000..21b6a0179525da9c3c2cc9dcdb335b0b608c5e37 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_cloud_translate_api.json @@ -0,0 +1,61 @@ +{ + "tool_name": "Google Cloud Translate API", + "tool_description": "Make your content and apps multilingual with fast, dynamic machine translation.", + "title": "Google Cloud Translate API", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/jozef-WxBhUjW_l/api/google-cloud-translate-api/", + "host": "google-cloud-translate-api.p.rapidapi.com", + "api_list": [ + { + "name": "Translate with JSON", + "url": "https://google-cloud-translate-api.p.rapidapi.com/", + "description": "Translate with POST method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://google-cloud-translate-api.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-cloud-translate-api.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate using Query", + "url": "https://google-cloud-translate-api.p.rapidapi.com/", + "description": "Translate with GET method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello world!" + }, + { + "name": "target_lang", + "type": "STRING", + "description": "", + "default": "de" + } + ], + "code": "import requests\n\nurl = \"https://google-cloud-translate-api.p.rapidapi.com/\"\nquerystring = {\"text\": text, \"target_lang\": target_lang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-cloud-translate-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate with JSON", + "url": "https://google-cloud-translate-api.p.rapidapi.com/", + "description": "Translate with POST method. \nUse text query parameter to specify text that should be translated.\nUse target_lang to specify target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://google-cloud-translate-api.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-cloud-translate-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://google-cloud-translate-api.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-cloud-translate-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/google_cloud_translate_api/api.py b/toolbench/toolenv/tools/Translation/google_cloud_translate_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fc863e0a1e2a42ef2bc28eeed190ff7d27281f86 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_cloud_translate_api/api.py @@ -0,0 +1,35 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate_using_query(text: str='Hello world!', target_lang: str='de', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate with GET method. + Use text query parameter to specify text that should be translated. + Use target_lang to specify target language." + + """ + url = f"https://google-cloud-translate-api.p.rapidapi.com/" + querystring = {} + if text: + querystring['text'] = text + if target_lang: + querystring['target_lang'] = target_lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-cloud-translate-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/google_translate.json b/toolbench/toolenv/tools/Translation/google_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..985e11b393ec13e8cd01b3362de562e1e2c84b84 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_translate.json @@ -0,0 +1,136 @@ +{ + "product_id": "api_e38cb63a-c55f-4e53-a16d-6a4df0fa3288", + "tool_description": "Use Google Translate API, Same quality result but x100 cheaper. Fast and stable translation service", + "home_url": "https://rapidapi.com/undergroundapi-undergroundapi-default/api/google-translate113/", + "name": "Google Translate", + "title": "Google Translate", + "pricing": "FREEMIUM", + "tool_name": "Google Translate", + "score": { + "avgServiceLevel": 100, + "avgLatency": 402, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "google-translate113.p.rapidapi.com", + "api_list": [ + { + "name": "Tranlate Text", + "url": "https://google-translate113.p.rapidapi.com/api/v1/translator/text", + "description": "Translate Text", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Target Language", + "default": "en" + }, + { + "name": "from", + "type": "STRING", + "description": "Original language", + "default": "auto" + }, + { + "name": "text", + "type": "STRING", + "description": "String or HTML to translate", + "default": "xin ch\u00e0o" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/text\"\nquerystring = {\"to\": \"en\", \"from\": \"auto\", \"text\": \"xin ch\u00e0o\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/text\"\nquerystring = {\"to\": \"en\", \"from\": \"auto\", \"text\": \"xin ch\u00e0o\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "Detect Language", + "url": "https://google-translate113.p.rapidapi.com/api/v1/translator/detect-language", + "description": "Detect Language", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "\u611f\u8c22\u60a8\u4f7f\u7528\u6211\u4eec\u7684\u670d\u52a1\"" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/detect-language\"\nquerystring = {\"text\": \"\u611f\u8c22\u60a8\u4f7f\u7528\u6211\u4eec\u7684\u670d\u52a1\\\"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/detect-language\"\nquerystring = {\"text\": \"\u611f\u8c22\u60a8\u4f7f\u7528\u6211\u4eec\u7684\u670d\u52a1\\\"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "Translate JSON", + "url": "https://google-translate113.p.rapidapi.com/api/v1/translator/json", + "description": "Translate JSON", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "auto" + }, + { + "name": "json", + "type": "OBJECT", + "description": "", + "default": "{ \t\t\"title\": \"The Importance of Regular Exercise\", \t\t\"author\": \"John Doe\", \t\t\"rate\": 4.2999, \t\t\"extra\": { \t\t\t\"comment_counts\": 10, \t\t\t\"last_comment\": { \t\t\t\t\"author\": \"not be translated\", \t\t\t\t\"short_text\": \"Hi thank for your post... We need more information\" \t\t\t} \t\t} \t}" + } + ], + "optional_parameters": [ + { + "name": "protected_paths", + "type": "ARRAY", + "description": "", + "default": "extra.last_comment.author" + } + ], + "code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/json\"\nquerystring = {\"to\": \"en\", \"protected_paths\": \"extra.last_comment.author\", \"from\": \"auto\", \"json\": \"{ \\t\\t\\\"title\\\": \\\"The Importance of Regular Exercise\\\", \\t\\t\\\"author\\\": \\\"John Doe\\\", \\t\\t\\\"rate\\\": 4.2999, \\t\\t\\\"extra\\\": { \\t\\t\\t\\\"comment_counts\\\": 10, \\t\\t\\t\\\"last_comment\\\": { \\t\\t\\t\\t\\\"author\\\": \\\"not be translated\\\", \\t\\t\\t\\t\\\"short_text\\\": \\\"Hi thank for your post... We need more information\\\" \\t\\t\\t} \\t\\t} \\t}\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/json\"\nquerystring = {\"to\": \"en\", \"protected_paths\": \"extra.last_comment.author\", \"from\": \"auto\", \"json\": \"{ \\t\\t\\\"title\\\": \\\"The Importance of Regular Exercise\\\", \\t\\t\\\"author\\\": \\\"John Doe\\\", \\t\\t\\\"rate\\\": 4.2999, \\t\\t\\\"extra\\\": { \\t\\t\\t\\\"comment_counts\\\": 10, \\t\\t\\t\\\"last_comment\\\": { \\t\\t\\t\\t\\\"author\\\": \\\"not be translated\\\", \\t\\t\\t\\t\\\"short_text\\\": \\\"Hi thank for your post... We need more information\\\" \\t\\t\\t} \\t\\t} \\t}\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/google_translate/api.py b/toolbench/toolenv/tools/Translation/google_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8aa6860ea99c4ad5994e4b1ce2060df72c87ce5b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_translate/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Support Languages" + + """ + url = f"https://google-translate113.p.rapidapi.com/api/v1/translator/support-languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-translate113.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/google_translate_text.json b/toolbench/toolenv/tools/Translation/google_translate_text.json new file mode 100644 index 0000000000000000000000000000000000000000..a9c90dcd9d030124f3e3dfbab8523af96cdde7f1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_translate_text.json @@ -0,0 +1,273 @@ +{ + "tool_name":"Google Translate Text", + "tool_description":"Translate, detect language, and text-to-speech capabilities for seamless multilingual communication.\nThis API is a lightweight version and can be used by simple translation applications\nFor more features check out this API-> https://rapidapi.com/biihezron1-5ghxDw6eSBV/api/linguatoolbox", + "title":"Google Translate Text", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":653, + "avgSuccessRate":25, + "popularityScore":1.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/biihezron1-5ghxDw6eSBV/api/google-translate-text/", + "host":"google-translate-text.p.rapidapi.com", + "api_list":[ + { + "name":"translateText", + "url":"https://google-translate-text.p.rapidapi.com/getTranslation", + "description":"Enter the text to be translated.", + "method":"GET", + "required_parameters":[ + { + "name":"toLanguage", + "type":"STRING", + "description":"Enter the language you want to translate the text to. (Use the language codes in About/Read Me)", + "default":"fr" + }, + { + "name":"text", + "type":"STRING", + "description":"Enter the text to be translated", + "default":"what a beautiful day!" + } + ], + "optional_parameters":[ + { + "name":"fromLanguage", + "type":"STRING", + "description":"Enter the original language of text. (Use the language codes in About/Read Me)", + "default":"en" + } + ], + "code":"import requests\n\nurl = \"https://google-translate-text.p.rapidapi.com/getTranslation\"\nquerystring = {\"toLanguage\": tolanguage, \"text\": text, \"fromLanguage\": fromlanguage}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"148", + "content-type":"application/json", + "cross-origin-opener-policy":"same-origin", + "date":"Mon, 03 Jul 2023 21:26:30 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "x-clacks-overhead":"GNU Terry Pratchett", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "key1":"value", + "key2":"value" + } + }, + { + "name":"textToSpeech", + "url":"https://google-translate-text.p.rapidapi.com/", + "description":"convert a given text into speech. Note the audio file is available for 5 minutes maximum at our servers. Download as soon as possible\n\nWe are fixing some few bugs in this endpoint.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://google-translate-text.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"supportedLanguages", + "url":"https://google-translate-text.p.rapidapi.com/supportedLanguages", + "description":"Get a list of supported languages", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://google-translate-text.p.rapidapi.com/supportedLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Afrikaans":"af", + "Albanian":"sq", + "Amharic":"am", + "Arabic":"ar", + "Armenian":"hy", + "Azerbaijani":"az", + "Basque":"eu", + "Belarusian":"be", + "Bengali":"bn", + "Bosnian":"bs", + "Bulgarian":"bg", + "Catalan":"ca", + "Cebuano":"ceb", + "Chichewa":"ny", + "Chinese (Simplified)":"zh-CN", + "Chinese (Traditional)":"zh-TW", + "Corsican":"co", + "Croatian":"hr", + "Czech":"cs", + "Danish":"da", + "Dutch":"nl", + "English":"en", + "Esperanto":"eo", + "Estonian":"et", + "Filipino":"tl", + "Finnish":"fi", + "French":"fr", + "Frisian":"fy", + "Galician":"gl", + "Georgian":"ka", + "German":"de", + "Greek":"el", + "Gujarati":"gu", + "Haitian Creole":"ht", + "Hausa":"ha", + "Hawaiian":"haw", + "Hebrew":"he", + "Hindi":"hi", + "Hmong":"hmn", + "Hungarian":"hu", + "Icelandic":"is", + "Igbo":"ig", + "Indonesian":"id", + "Irish":"ga", + "Italian":"it", + "Japanese":"ja", + "Javanese":"jv", + "Kannada":"kn", + "Kazakh":"kk", + "Khmer":"km", + "Kinyarwanda":"rw", + "Korean":"ko", + "Kurdish":"ku", + "Kyrgyz":"ky", + "Lao":"lo", + "Latin":"la", + "Latvian":"lv", + "Lithuanian":"lt", + "Luxembourgish":"lb", + "Macedonian":"mk", + "Malagasy":"mg", + "Malay":"ms", + "Malayalam":"ml", + "Maltese":"mt", + "Maori":"mi", + "Marathi":"mr", + "Mongolian":"mn", + "Myanmar (Burmese)":"my", + "Nepali":"ne", + "Norwegian":"no", + "Odia (Oriya)":"or", + "Pashto":"ps", + "Persian":"fa", + "Polish":"pl", + "Portuguese":"pt", + "Punjabi":"pa", + "Romanian":"ro", + "Russian":"ru", + "Samoan":"sm", + "Scots Gaelic":"gd", + "Serbian":"sr", + "Sesotho":"st", + "Shona":"sn", + "Sindhi":"sd", + "Sinhala (Sinhalese)":"si", + "Slovak":"sk", + "Slovenian":"sl", + "Somali":"so", + "Spanish":"es", + "Sundanese":"su", + "Swahili":"sw", + "Swedish":"sv", + "Tagalog":"tl", + "Tajik":"tg", + "Tamil":"ta", + "Tatar":"tt", + "Telugu":"te", + "Thai":"th", + "Turkish":"tr", + "Turkmen":"tk", + "Ukrainian":"uk", + "Urdu":"ur", + "Uyghur":"ug", + "Uzbek":"uz", + "Vietnamese":"vi", + "Welsh":"cy", + "Xhosa":"xh", + "Yiddish":"yi", + "Yoruba":"yo", + "Zulu":"zu" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"1943", + "content-type":"application/json", + "cross-origin-opener-policy":"same-origin", + "date":"Mon, 03 Jul 2023 21:27:14 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-clacks-overhead":"GNU Terry Pratchett", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"detectLanguage", + "url":"https://google-translate-text.p.rapidapi.com/detectLanguage", + "description":"Get language from text", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"bonjour, comment ca va" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://google-translate-text.p.rapidapi.com/detectLanguage\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":1, + "text":"bonjour, comment ca va", + "result":[ + { + "type":"Language detection" + }, + { + "value":[ + { + "name":"French", + "probability":0.9999965349138424, + "code":"fr" + } + ] + } + ] + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"173", + "content-type":"application/json", + "cross-origin-opener-policy":"same-origin", + "date":"Mon, 03 Jul 2023 21:27:39 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.8", + "x-clacks-overhead":"GNU Terry Pratchett", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/google_translate_text/api.py b/toolbench/toolenv/tools/Translation/google_translate_text/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d86881b7f2310acf0aa4dcdd3abfa8fac5934f81 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_translate_text/api.py @@ -0,0 +1,99 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translatetext(tolanguage: str, text: str, fromlanguage: str='en', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter the text to be translated." + tolanguage: Enter the language you want to translate the text to. (Use the language codes in About/Read Me) + text: Enter the text to be translated + fromlanguage: Enter the original language of text. (Use the language codes in About/Read Me) + + """ + url = f"https://google-translate-text.p.rapidapi.com/gettranslation" + querystring = {'toLanguage': tolanguage, 'text': text, } + if fromlanguage: + querystring['fromLanguage'] = fromlanguage + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-translate-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def texttospeech(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "convert a given text into speech. Note the audio file is available for 5 minutes maximum at our servers. Download as soon as possible + + We are fixing some few bugs in this endpoint." + + """ + url = f"https://google-translate-text.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-translate-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def supportedlanguages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of supported languages" + + """ + url = f"https://google-translate-text.p.rapidapi.com/supportedlanguages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-translate-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def detectlanguage(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get language from text" + + """ + url = f"https://google-translate-text.p.rapidapi.com/detectlanguage" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-translate-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/google_translate_v3.json b/toolbench/toolenv/tools/Translation/google_translate_v3.json new file mode 100644 index 0000000000000000000000000000000000000000..0b755b98a95b0ad6511432b8eb9d1bf9f2576cc5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_translate_v3.json @@ -0,0 +1,55 @@ +{ + "product_id": "api_e38cb63a-c55f-4e53-a16d-6a4df0fa3288", + "tool_description": "Use Google Translate API, Same quality result but x100 cheaper. Fast and stable translation service", + "home_url": "https://rapidapi.com/undergroundapi-undergroundapi-default/api/google-translate113/", + "name": "Google Translate_v3", + "title": "Google Translate", + "pricing": "FREEMIUM", + "tool_name": "Google Translate_v3", + "score": { + "avgServiceLevel": 100, + "avgLatency": 519, + "avgSuccessRate": 100, + "popularityScore": 8.9, + "__typename": "Score" + }, + "host": "google-translate113.p.rapidapi.com", + "api_list": [ + { + "name": "Supported languages", + "url": "https://google-translate113.p.rapidapi.com/api/v1/translator/support-languages", + "description": "Get Support Languages", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/support-languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://google-translate113.p.rapidapi.com/api/v1/translator/support-languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"google-translate113.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ], + "standardized_name": "google_translate_v3" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/google_translate_v3/api.py b/toolbench/toolenv/tools/Translation/google_translate_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8aa6860ea99c4ad5994e4b1ce2060df72c87ce5b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/google_translate_v3/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Support Languages" + + """ + url = f"https://google-translate113.p.rapidapi.com/api/v1/translator/support-languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "google-translate113.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/googletranslate.json b/toolbench/toolenv/tools/Translation/googletranslate.json new file mode 100644 index 0000000000000000000000000000000000000000..821f8c709a6be742d39b65f4bfda7b7fdb9c4cfd --- /dev/null +++ b/toolbench/toolenv/tools/Translation/googletranslate.json @@ -0,0 +1,62 @@ +{ + "product_id": "api_1de3ec8f-1e95-42ef-8a60-324a8e5e9738", + "tool_description": "GoogleTranslate", + "home_url": "https://rapidapi.com/mailtrack00-cguT5CH6Apv/api/googletranslate3/", + "name": "GoogleTranslate", + "title": "GoogleTranslate", + "pricing": "FREE", + "tool_name": "GoogleTranslate", + "score": null, + "host": "googletranslate3.p.rapidapi.com", + "api_list": [ + { + "name": "TranslateEndpoint_copy", + "url": "https://googletranslate3.p.rapidapi.com/", + "description": "Translate api endpoint", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://googletranslate3.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"googletranslate3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://googletranslate3.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"googletranslate3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "TranslateEndpoint", + "url": "https://googletranslate3.p.rapidapi.com/", + "description": "Translate api endpoint", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "textType", + "type": "STRING", + "description": "", + "default": "plain" + }, + { + "name": "api-version", + "type": "NUMBER", + "description": "", + "default": "3.0" + }, + { + "name": "profanityAction", + "type": "STRING", + "description": "", + "default": "NoAction" + } + ], + "code": "import requests\n\nurl = \"https://googletranslate3.p.rapidapi.com/\"\nquerystring = {\"to\": \"de\", \"textType\": \"plain\", \"api-version\": \"3.0\", \"profanityAction\": \"NoAction\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"googletranslate3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://googletranslate3.p.rapidapi.com/\"\nquerystring = {\"to\": \"de\", \"textType\": \"plain\", \"api-version\": \"3.0\", \"profanityAction\": \"NoAction\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"googletranslate3.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/hiro_hindi_roman_translator.json b/toolbench/toolenv/tools/Translation/hiro_hindi_roman_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..c70d4f580369c22767983b599d83b44c6bafb2ba --- /dev/null +++ b/toolbench/toolenv/tools/Translation/hiro_hindi_roman_translator.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_9394eb9c-31ed-4b9b-b064-5c11ae97c262", + "tool_description": "HiRo API - Converting Hindi Roman Queries to English", + "home_url": "https://rapidapi.com/knowdis-data-science-knowdis-data-science-default/api/hiro-hindi-roman-translator/", + "name": "HiRo Hindi Roman translator", + "title": "HiRo Hindi Roman translator", + "pricing": "FREE", + "tool_name": "HiRo Hindi Roman translator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 334, + "avgSuccessRate": 100, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "hiro-hindi-roman-translator.p.rapidapi.com", + "api_list": [ + { + "name": "hiroTranslator", + "url": "https://hiro-hindi-roman-translator.p.rapidapi.com/pipeline", + "description": "Translates **Hindi Roman** to **English **with high **precision**", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://hiro-hindi-roman-translator.p.rapidapi.com/pipeline\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"hiro-hindi-roman-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://hiro-hindi-roman-translator.p.rapidapi.com/pipeline\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"hiro-hindi-roman-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/ibmwatsonlanguagetranslator.json b/toolbench/toolenv/tools/Translation/ibmwatsonlanguagetranslator.json new file mode 100644 index 0000000000000000000000000000000000000000..3ebb0a8c2232eb9da0b1b7f0511f8eb0768a06d3 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ibmwatsonlanguagetranslator.json @@ -0,0 +1,255 @@ +{ + "product_id": "83", + "tool_description": "Automatically identify the language used in your input text", + "home_url": "https://rapidapi.com/dimas/api/IBMWatsonLanguageTranslator/", + "name": "IBMWatsonLanguageTranslator", + "title": "IBMWatsonLanguageTranslator", + "pricing": "FREE", + "tool_name": "IBMWatsonLanguageTranslator", + "score": { + "avgServiceLevel": 0, + "avgLatency": 127253, + "avgSuccessRate": 0, + "popularityScore": 4.3, + "__typename": "Score" + }, + "host": "IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com", + "api_list": [ + { + "name": "createModel", + "url": "https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/createModel", + "description": "Uploads a TMX glossary file on top of a domain to customize a translation model.Depending on the size of the file, training can range from minutes for a glossary to several hours for a large parallel corpus. Glossary files must be less than 10 MB. The cumulative file size of all uploaded glossary and corpus files is limited to 250 MB.", + "method": "POST", + "required_parameters": [ + { + "name": "username", + "type": "CREDENTIALS", + "description": "Username obtained from IBM Bluemix.", + "default": "" + }, + { + "name": "baseModelId", + "type": "STRING", + "description": "Specifies the domain model that is used as the base for the training. To see current supported domain models, use `getModels` method.", + "default": "" + }, + { + "name": "password", + "type": "CREDENTIALS", + "description": "Password obtained from IBM Bluemix.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "monolingualCorpus", + "type": "FILE", + "description": "A UTF-8 encoded plain text file that is used to customize the target language model.", + "default": "" + }, + { + "name": "forcedGlossary", + "type": "FILE", + "description": "A TMX file with your customizations. Anything that is specified in this file completely overwrites the domain data translation. You can upload only one glossary with a file size less than 10 MB per call.", + "default": "" + }, + { + "name": "parallelCorpus", + "type": "FILE", + "description": "A TMX file that contains entries that are treated as a parallel corpus instead of a glossary.", + "default": "" + }, + { + "name": "name", + "type": "STRING", + "description": "The model name. Valid characters are letters, numbers, -, and _. No spaces.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/createModel\"\nquerystring = {\"monolingualCorpus\": \"\", \"forcedGlossary\": \"\", \"username\": \"\", \"baseModelId\": \"\", \"parallelCorpus\": \"\", \"password\": \"\", \"name\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/createModel\"\nquerystring = {\"monolingualCorpus\": \"\", \"forcedGlossary\": \"\", \"username\": \"\", \"baseModelId\": \"\", \"parallelCorpus\": \"\", \"password\": \"\", \"name\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "deleteModel", + "url": "https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/deleteModel", + "description": "Deletes trained translation models.", + "method": "POST", + "required_parameters": [ + { + "name": "username", + "type": "CREDENTIALS", + "description": "Username obtained from IBM Bluemix.", + "default": "" + }, + { + "name": "modelId", + "type": "STRING", + "description": "The model identifier.", + "default": "" + }, + { + "name": "password", + "type": "CREDENTIALS", + "description": "Password obtained from IBM Bluemix.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/deleteModel\"\nquerystring = {\"username\": \"\", \"modelId\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/deleteModel\"\nquerystring = {\"username\": \"\", \"modelId\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "getModelDetails", + "url": "https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/getModelDetails", + "description": "Returns information, including training status, about a specified translation model.", + "method": "POST", + "required_parameters": [ + { + "name": "password", + "type": "CREDENTIALS", + "description": "Password obtained from IBM Bluemix.", + "default": "" + }, + { + "name": "modelId", + "type": "STRING", + "description": "The model identifier.", + "default": "" + }, + { + "name": "username", + "type": "CREDENTIALS", + "description": "Username obtained from IBM Bluemix.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/getModelDetails\"\nquerystring = {\"password\": \"\", \"modelId\": \"\", \"username\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/getModelDetails\"\nquerystring = {\"password\": \"\", \"modelId\": \"\", \"username\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "getModels", + "url": "https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/getModels", + "description": "Lists available models for the Language translator service with option to filter by source or by target language.", + "method": "POST", + "required_parameters": [ + { + "name": "username", + "type": "CREDENTIALS", + "description": "Username obtained from IBM Bluemix.", + "default": "" + }, + { + "name": "password", + "type": "CREDENTIALS", + "description": "Password obtained from IBM Bluemix.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "default", + "type": "SELECT", + "description": "Valid values are leaving it unset, 'true' and 'false'. When 'true', it filters models to return the default model or models. When 'false' it returns the non-default model or models. If not set, all models (default and non-default) return.", + "default": "" + }, + { + "name": "target", + "type": "STRING", + "description": "Define with source. Filters models by target language.", + "default": "" + }, + { + "name": "source", + "type": "STRING", + "description": "Define with target. Filters models by source language.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/getModels\"\nquerystring = {\"default\": \"\", \"username\": \"\", \"target\": \"\", \"password\": \"\", \"source\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/getModels\"\nquerystring = {\"default\": \"\", \"username\": \"\", \"target\": \"\", \"password\": \"\", \"source\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "translate", + "url": "https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/translate", + "description": "Translates input text from the source language to the target language.", + "method": "POST", + "required_parameters": [ + { + "name": "username", + "type": "CREDENTIALS", + "description": "Username obtained from IBM Bluemix.", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "Input text in UTF-8 encoding. Multiple text query parameters indicate multiple input paragraphs, and a single string is valid input.", + "default": "" + }, + { + "name": "source", + "type": "STRING", + "description": "Used in combination with target as an alternative way to select the model for translation.", + "default": "" + }, + { + "name": "target", + "type": "STRING", + "description": "Translation target language in 2 or 5 letter language code. Should use 2 letter codes except for when clarifying between multiple supported languages. When model_id is used directly, it will override the source-target language combination. Also, when a 2 letter language code is used, and no suitable default is found (such as \u201czh\u201d), it returns an error.", + "default": "" + }, + { + "name": "password", + "type": "CREDENTIALS", + "description": "Password obtained from IBM Bluemix.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/translate\"\nquerystring = {\"username\": \"\", \"text\": \"\", \"source\": \"\", \"target\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/translate\"\nquerystring = {\"username\": \"\", \"text\": \"\", \"source\": \"\", \"target\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "translateByModelId", + "url": "https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/translateByModelId", + "description": "Translates input text from the source language to the target language.", + "method": "POST", + "required_parameters": [ + { + "name": "modelId", + "type": "STRING", + "description": "The unique model_id of the translation model used to translate text. The model_id inherently specifies source, target language, and domain. If the model_id is specified, there is no need for the source and target parameters, and the values will be ignored.", + "default": "" + }, + { + "name": "username", + "type": "CREDENTIALS", + "description": "Username obtained from IBM Bluemix.", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "Input text in UTF-8 encoding. Multiple text query parameters indicate multiple input paragraphs, and a single string is valid input.", + "default": "" + }, + { + "name": "password", + "type": "CREDENTIALS", + "description": "Password obtained from IBM Bluemix.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/translateByModelId\"\nquerystring = {\"modelId\": \"\", \"username\": \"\", \"text\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com/translateByModelId\"\nquerystring = {\"modelId\": \"\", \"username\": \"\", \"text\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"IBMWatsonLanguageTranslatordimasV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/indic_translator.json b/toolbench/toolenv/tools/Translation/indic_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..16c592fdddb6af4e1c8d0df13b840f60950085cf --- /dev/null +++ b/toolbench/toolenv/tools/Translation/indic_translator.json @@ -0,0 +1,33 @@ +{ + "tool_name":"Indic-Translator", + "tool_description":"Indic Translator is an advance AI based Translator Indian languages translator API. It has outperformed Google and other translators for tricky Indian languages. Indic Translator has been especially designed for Indian languages, and has been trained on advance deep learning algorithm to perform well on nuanced Indian languages.", + "title":"Indic-Translator", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1348, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/knowdis-data-science-knowdis-data-science-default/api/indic-translator/", + "host":"indic-translator.p.rapidapi.com", + "api_list":[ + { + "name":"queryTranslator/", + "url":"https://indic-translator.p.rapidapi.com/rapidapi_translate", + "description":"For translating an English sentence (query) to Hindi.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://indic-translator.p.rapidapi.com/rapidapi_translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"indic-translator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/indic_translator/api.py b/toolbench/toolenv/tools/Translation/indic_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..af28b0ca44fd623a507393093253b69440379520 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/indic_translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def querytranslator(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "For translating an English sentence (query) to Hindi." + + """ + url = f"https://indic-translator.p.rapidapi.com/rapidapi_translate" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "indic-translator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/joj_translate.json b/toolbench/toolenv/tools/Translation/joj_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..1e0052f1b1c1825d4c98278aedc82f821d80b118 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/joj_translate.json @@ -0,0 +1,344 @@ +{ + "tool_name": "JoJ Translate", + "tool_description": "Fast and scalable API service from the world's most used translation service!", + "title": "JoJ Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 943, + "avgSuccessRate": 100, + "popularityScore": 9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/jojapi/api/joj-translate/", + "host": "joj-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Batch Translate", + "url": "https://joj-translate.p.rapidapi.com/batch-translate/", + "description": "Batch Translate (FAST)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "texts", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://joj-translate.p.rapidapi.com/batch-translate/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"joj-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "translations": [ + "art\u00edculo", + "Estoy escribiendo un art\u00edculo", + "\u00bfQu\u00e9 est\u00e1s haciendo?", + "Cosas diferentes" + ] + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "alt-svc": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status": "DYNAMIC", + "cf-ray": "78d014f8dd6992ab-FRA", + "content-type": "application/json", + "date": "Sat, 21 Jan 2023 12:34:04 GMT", + "nel": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jEA779JBIJCUEJqbaQXfi5T92m7erE8stzZWuby2uLZVODkj8zN%2BN01lA4dZj8l%2BKxZVPOAPdpesPh8c5YtwzOdgHhfAUS%2Fgo3hxGmU%2F8UKoeCJRrHyB9putXqAWXJPUFA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Translate", + "url": "https://joj-translate.p.rapidapi.com/translate/", + "description": "Translate", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Text to be translated", + "default": "article" + }, + { + "name": "target", + "type": "STRING", + "description": "Language to be translated", + "default": "es" + } + ], + "optional_parameters": [ + { + "name": "source", + "type": "STRING", + "description": "Language of the text source (default: `auto`)", + "default": "auto" + } + ], + "code": "import requests\n\nurl = \"https://joj-translate.p.rapidapi.com/translate/\"\nquerystring = {\"source\": source, \"text\": text, \"target\": target}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"joj-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "auto_correct": null, + "original": { + "detected_language": "en", + "pronunciation": "\u02c8\u00e4rd\u0259k(\u0259)l" + }, + "translation": { + "language": "es", + "pronunciation": null, + "parts": [ + { + "text": "art\u00edculo", + "alternatives": [ + "cl\u00e1usula", + "artejo", + "formular", + "colocar de aprendiz" + ] + } + ] + }, + "word_types": { + "word": "article", + "types": [ + { + "type": "noun", + "translations": [ + { + "text": "art\u00edculo", + "meanings": [ + "article", + "item", + "section", + "paper", + "story", + "report" + ], + "frequency_score": 3 + }, + { + "text": "cl\u00e1usula", + "meanings": [ + "clause", + "article" + ], + "frequency_score": 1 + }, + { + "text": "artejo", + "meanings": [ + "article" + ], + "frequency_score": 1 + } + ] + }, + { + "type": "verb", + "translations": [ + { + "text": "formular", + "meanings": [ + "formulate", + "frame", + "state", + "shape", + "article" + ], + "frequency_score": 1 + }, + { + "text": "colocar de aprendiz", + "meanings": [ + "apprentice", + "article" + ], + "frequency_score": 1 + }, + { + "text": "acusar", + "meanings": [ + "accuse", + "charge", + "denounce", + "arraign", + "incriminate", + "delate" + ], + "frequency_score": 1 + } + ] + } + ] + }, + "see_also": null, + "definitions": { + "types": [], + "definitions": [ + { + "type": "noun", + "definitions": [ + { + "types": [], + "definition": "a particular item or object.", + "example": "small household articles", + "synonyms": [ + "object", + "thing", + "item", + "unit", + "artifact", + "piece of merchandise", + "commodity", + "product", + "device", + "gadget", + "contrivance", + "instrument", + "utensil", + "tool", + "implement" + ], + "others": [ + { + "type": "informal", + "words": [ + "whatsit", + "what-d'you-call-it", + "what's-its-name", + "whatchamacallit", + "thingummy", + "thingy", + "thingamabob", + "thingamajig", + "oojamaflip", + "oojah", + "gizmo", + "gubbins", + "doodah", + "doobry", + "doodad", + "doohickey", + "doojigger", + "dingus", + "thingo" + ] + } + ] + }, + { + "types": [], + "definition": "a piece of writing included with others in a newspaper, magazine, or other publication.", + "example": "an article about middle-aged executives", + "synonyms": [ + "essay", + "report", + "account", + "story", + "write-up", + "feature", + "item", + "piece (of writing)", + "composition", + "column", + "paper", + "tract", + "study", + "review", + "commentary", + "treatise", + "analysis", + "disquisition", + "discourse", + "theme" + ], + "others": [] + }, + { + "types": [], + "definition": "a separate clause or paragraph of a legal document or agreement, typically one outlining a single rule or regulation.", + "example": "it is an offense under Article 7 of the treaty", + "synonyms": [ + "clause", + "section", + "subsection", + "point", + "item", + "paragraph", + "division", + "subdivision", + "heading", + "part", + "bit", + "passage", + "portion", + "segment", + "provision", + "proviso", + "stipulation" + ], + "others": [] + }, + { + "types": [ + "Grammar" + ], + "definition": "the definite or indefinite article.", + "example": null, + "synonyms": [], + "others": [] + } + ] + } + ] + }, + "examples": [ + { + "html": "an article about middle-aged executives", + "text": "an article about middle-aged executives" + } + ] + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "alt-svc": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status": "DYNAMIC", + "cf-ray": "78d00acdde615c85-FRA", + "content-type": "application/json", + "date": "Sat, 21 Jan 2023 12:27:09 GMT", + "nel": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=St7PgVN50O5PEzF8Muo9XWgpeiYpLr4J0livcvepjCYaDJNWsx6wp%2FUaPRydOOdiKT%2FMyp6lQV1DAm%2BvUAAoLHEN2I9UfI1%2B%2FSL9murFua3%2BSVEYQaznUg38jkmtvIFdYQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server": "RapidAPI-1.2.8", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8" + }, + "schema": {} + }, + { + "name": "Batch Translate", + "url": "https://joj-translate.p.rapidapi.com/batch-translate/", + "description": "Batch Translate (FAST)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "texts", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://joj-translate.p.rapidapi.com/batch-translate/\"\nquerystring = {\"texts\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"joj-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://joj-translate.p.rapidapi.com/batch-translate/\"\nquerystring = {\"texts\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"joj-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/joj_translate/api.py b/toolbench/toolenv/tools/Translation/joj_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bfb17b903417a19eb218b1f39682d06009af94dc --- /dev/null +++ b/toolbench/toolenv/tools/Translation/joj_translate/api.py @@ -0,0 +1,34 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(text: str, target: str, source: str='auto', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate" + text: Text to be translated + target: Language to be translated + source: Language of the text source (default: `auto`) + + """ + url = f"https://joj-translate.p.rapidapi.com/translate/" + querystring = {'text': text, 'target': target, } + if source: + querystring['source'] = source + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "joj-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/just_translated.json b/toolbench/toolenv/tools/Translation/just_translated.json new file mode 100644 index 0000000000000000000000000000000000000000..96df6503aaefeff4ecdae717822a7730a0bca6bc --- /dev/null +++ b/toolbench/toolenv/tools/Translation/just_translated.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Just Translated", + "tool_description":"Neural algorithm. 0.45$ per 1 million characters. 90+ languages. A hybrid model of translation. For private plan telegram DM: @evonova", + "title":"Just Translated", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":296, + "avgSuccessRate":100, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/lebedev.str/api/just-translated/", + "host":"just-translated.p.rapidapi.com", + "api_list":[ + { + "name":"getTranslate", + "url":"https://just-translated.p.rapidapi.com/", + "description":"Try quality Translate.\nHTML or Text", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"HTML or plain text", + "default":"Hello, how are you?" + }, + { + "name":"lang", + "type":"STRING", + "description":"What language to translate into?\nPut langfrom-langto (ex. en-fr) OR lang to need translate (ex. fr)\n\nLanguage flags\n[https://rapidapi.com/lebedev.str/api/just-translated/tutorials/language-flags](url)", + "default":"fr" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://just-translated.p.rapidapi.com/\"\nquerystring = {\"text\": text, \"lang\": lang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"just-translated.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/just_translated/api.py b/toolbench/toolenv/tools/Translation/just_translated/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bd32bc0c65009ca1d1df5fe7b573bb1b5bc370f0 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/just_translated/api.py @@ -0,0 +1,36 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def gettranslate(text: str, lang: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Try quality Translate. + HTML or Text" + text: HTML or plain text + lang: What language to translate into? +Put langfrom-langto (ex. en-fr) OR lang to need translate (ex. fr) + +Language flags +[https://rapidapi.com/lebedev.str/api/just-translated/tutorials/language-flags](url) + + """ + url = f"https://just-translated.p.rapidapi.com/" + querystring = {'text': text, 'lang': lang, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "just-translated.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/kkk.json b/toolbench/toolenv/tools/Translation/kkk.json new file mode 100644 index 0000000000000000000000000000000000000000..2719d6c9441bdb68be9b15c2ba59eb94a083a093 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/kkk.json @@ -0,0 +1,31 @@ +{ + "tool_name":"kkk", + "tool_description":"kk", + "title":"kkk", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/glei/api/kkk5/", + "host":"kkk5.p.rapidapi.com", + "api_list":[ + { + "name":"gfdgdf", + "url":"https://kkk5.p.rapidapi.com/", + "description":"dfgdfg", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"kk", + "type":"STRING", + "description":"", + "default":"kkkkkkkkk" + } + ], + "code":"import requests\n\nurl = \"https://kkk5.p.rapidapi.com/\"\nquerystring = {\"kk\": kk}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"kkk5.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/kkk/api.py b/toolbench/toolenv/tools/Translation/kkk/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0561cc1edb7d1b83faa97c68cf0bbe9a0bb75d94 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/kkk/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def gfdgdf(kk: str='kkkkkkkkk', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "dfgdfg" + + """ + url = f"https://kkk5.p.rapidapi.com/" + querystring = {} + if kk: + querystring['kk'] = kk + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "kkk5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/language_detection.json b/toolbench/toolenv/tools/Translation/language_detection.json new file mode 100644 index 0000000000000000000000000000000000000000..c01886f9e06c9533e0f7e5e29010d7070f6b3947 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/language_detection.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_e4a4e4c7-6b38-4f39-8e61-743d57ca2136", + "tool_description": "Detect over 100 languages from text.", + "home_url": "https://rapidapi.com/ExoWatts/api/language-detection14/", + "name": "Language Detection", + "title": "Language Detection", + "pricing": "PAID", + "tool_name": "Language Detection", + "score": null, + "host": "language-detection14.p.rapidapi.com", + "api_list": [ + { + "name": "detect", + "url": "https://language-detection14.p.rapidapi.com/", + "description": "Detect over 100 languages from text. The longer the text, the high the accuracy.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://language-detection14.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"language-detection14.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://language-detection14.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"language-detection14.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/language_detection/api.py b/toolbench/toolenv/tools/Translation/language_detection/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d2a202516e874787322c16d8c2c30a90790f5a08 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/language_detection/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def language_codes_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return list of language codes in ISO 639-1 format." + + """ + url = f"https://language-detection5.p.rapidapi.com/get_language_codes" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "language-detection5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/language_detection_v2.json b/toolbench/toolenv/tools/Translation/language_detection_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..c1da1f2c453b93791063d8970de9a019267338a0 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/language_detection_v2.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_c329c980-0173-4a37-a72f-6fbdb6b2b560", + "tool_description": "Detection of all possible languages with probability scores.", + "home_url": "https://rapidapi.com/ai-box-ai-box-default/api/language-detection5/", + "name": "Language Detection_v2", + "title": "Language Detection", + "pricing": "FREEMIUM", + "tool_name": "Language Detection_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1124, + "avgSuccessRate": 87, + "popularityScore": 7.3, + "__typename": "Score" + }, + "host": "language-detection5.p.rapidapi.com", + "api_list": [ + { + "name": "Language Codes List", + "url": "https://language-detection5.p.rapidapi.com/get_language_codes", + "description": "Return list of language codes in ISO 639-1 format.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://language-detection5.p.rapidapi.com/get_language_codes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"language-detection5.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://language-detection5.p.rapidapi.com/get_language_codes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"language-detection5.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "language_detection_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/language_detection_v2/api.py b/toolbench/toolenv/tools/Translation/language_detection_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d2a202516e874787322c16d8c2c30a90790f5a08 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/language_detection_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def language_codes_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return list of language codes in ISO 639-1 format." + + """ + url = f"https://language-detection5.p.rapidapi.com/get_language_codes" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "language-detection5.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/language_translator.json b/toolbench/toolenv/tools/Translation/language_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..f9886a13edc4d745e4f2dcefacd6553dd74e7905 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/language_translator.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_41d48cc2-5b0f-4597-bddc-8052de804c7f", + "tool_description": "Accurate AI based Text translation: Translate between 103 languagesTranslations. Cheapest and the fastest language translator available on the internet", + "home_url": "https://rapidapi.com/karthikhosur15/api/language-translator1/", + "name": "Language-Translator", + "title": "Language-Translator", + "pricing": "FREEMIUM", + "tool_name": "Language-Translator", + "score": null, + "host": "language-translator1.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://language-translator1.p.rapidapi.com/translate", + "description": "Translate the text by proving the string text along with its output language ISO code in two characters . A list of language and corresponding codes are provided in the link\n\nAbkhazian\nab\nAfar\naa\nAfrikaans\naf\nAlbanian\nsq\nAmharic\nam\nArabic\nar\nArmenian\nhy\nAssamese\nas\nAymara\nay\nAzerbaijani\naz\nBashkir\nba\nBasque\neu\nBengali (Bangla)\nbn\nBhutani\ndz\nBihari\nbh\nBislama\nbi\nBreton\nbr\nBulgarian\nbg\nBurmese\nmy\nByelorussian (Belarusian)\nbe\nCambodian\nkm\nCatalan\nca\nChinese (Simplified)\nzh\nChinese (Traditional)\nzh\nCorsican\nco\nCroatian\nhr\nCzech\ncs\nDanish\nda\nDutch\nnl\nEnglish\nen\nEsperanto\neo\nEstonian\net\nFaeroese\nfo\nFarsi\nfa\nFiji\nfj\nFinnish\nfi\nFrench\nfr\nFrisian\nfy\nGalician\ngl\nGaelic (Scottish)\ngd\nGaelic (Manx)\ngv\nGeorgian\nka\nGerman\nde\nGreek\nel\nGreenlandic\nkl\nGuarani\ngn\nGujarati\ngu\nHausa\nha\nHebrew\nhe\nHindi\nhi\nHungarian\nhu\nIcelandic\nis\nIndonesian\nid\nInterlingua\nia\nInterlingue\nie\nInuktitut\niu\nInupiak\nik\nIrish\nga\nItalian\nit\nJapanese\nja\nJavanese\nja\nKannada\nkn\nKashmiri\nks\nKazakh\nkk\nKinyarwanda (Ruanda)\nrw\nKirghiz\nky\nKirundi (Rundi)\nrn\nKorean\nko\nKurdish\nku\nLaothian\nlo\nLatin\nla\nLatvian (Lettish)\nlv\nLimburgish ( Limburger)\nli\nLingala\nln\nLithuanian\nlt\nMacedonian\nmk\nMalagasy\nmg\nMalay\nms\nMalayalam\nml\nMaltese\nmt\nMaori\nmi\nMarathi\nmr\nMoldavian\nmo\nMongolian\nmn\nNauru\nna\nNepali\nne\nNorwegian\nno\nOccitan\noc\nOriya\nor\nOromo (Afan, Galla)\nom\nPashto (Pushto)\nps\nPolish\npl\nPortuguese\npt\nPunjabi\npa\nQuechua\nqu\nRhaeto-Romance\nrm\nRomanian\nro\nRussian\nru\nSamoan\nsm\nSangro\nsg\nSanskrit\nsa\nSerbian\nsr\nSerbo-Croatian\nsh\nSesotho\nst\nSetswana\ntn\nShona\nsn\nSindhi\nsd\nSinhalese\nsi\nSiswati\nss\nSlovak\nsk\nSlovenian\nsl\nSomali\nso\nSpanish\nes\nSundanese\nsu\nSwahili (Kiswahili)\nsw\nSwedish\nsv\nTagalog\ntl\nTajik\ntg\nTamil\nta\nTatar\ntt\nTelugu\nte\nThai\nth\nTibetan\nbo\nTigrinya\nti\nTonga\nto\nTsonga\nts\nTurkish\ntr\nTurkmen\ntk\nTwi\ntw\nUighur\nug\nUkrainian\nuk\nUrdu\nur\nUzbek\nuz\nVietnamese\nvi\nVolap\u00fck\nvo\nWelsh\ncy\nWolof\nwo\nXhosa\nxh\nYiddish\nyi\nYoruba\nyo\nZulu\nzu", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://language-translator1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"language-translator1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://language-translator1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"language-translator1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/languagelayer.json b/toolbench/toolenv/tools/Translation/languagelayer.json new file mode 100644 index 0000000000000000000000000000000000000000..a05e7a6a8b7eeb1c535759b0cc5b1d928a6b7357 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/languagelayer.json @@ -0,0 +1,79 @@ +{ + "product_id": "128", + "tool_description": "Identify the language of a body of text. ", + "home_url": "https://rapidapi.com/stefan.skliarov/api/Languagelayer/", + "name": "Languagelayer", + "title": "Languagelayer", + "pricing": "FREE", + "tool_name": "Languagelayer", + "score": null, + "host": "Languagelayerstefan-skliarovV1.p.rapidapi.com", + "api_list": [ + { + "name": "detectLanguages", + "url": "https://Languagelayerstefan-skliarovV1.p.rapidapi.com/detectLanguages", + "description": "Multiple query texts detection", + "method": "POST", + "required_parameters": [ + { + "name": "apiKey", + "type": "CREDENTIALS", + "description": "Api key obtained from Languagelayer", + "default": "" + }, + { + "name": "query", + "type": "LIST", + "description": "Array of query texts", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://Languagelayerstefan-skliarovV1.p.rapidapi.com/detectLanguages\"\nquerystring = {\"apiKey\": \"\", \"query\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"Languagelayerstefan-skliarovV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://Languagelayerstefan-skliarovV1.p.rapidapi.com/detectLanguages\"\nquerystring = {\"apiKey\": \"\", \"query\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"Languagelayerstefan-skliarovV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "detectSingleTextLanguage", + "url": "https://Languagelayerstefan-skliarovV1.p.rapidapi.com/detectSingleTextLanguage", + "description": "Standard language detection", + "method": "POST", + "required_parameters": [ + { + "name": "query", + "type": "STRING", + "description": "Query text", + "default": "" + }, + { + "name": "apiKey", + "type": "CREDENTIALS", + "description": "Api key obtained from Languagelayer", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://Languagelayerstefan-skliarovV1.p.rapidapi.com/detectSingleTextLanguage\"\nquerystring = {\"query\": \"\", \"apiKey\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"Languagelayerstefan-skliarovV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://Languagelayerstefan-skliarovV1.p.rapidapi.com/detectSingleTextLanguage\"\nquerystring = {\"query\": \"\", \"apiKey\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"Languagelayerstefan-skliarovV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "getLanguages", + "url": "https://Languagelayerstefan-skliarovV1.p.rapidapi.com/getLanguages", + "description": "Get list of supported languages", + "method": "POST", + "required_parameters": [ + { + "name": "apiKey", + "type": "CREDENTIALS", + "description": "Api key obtained from Languagelayer", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://Languagelayerstefan-skliarovV1.p.rapidapi.com/getLanguages\"\nquerystring = {\"apiKey\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"Languagelayerstefan-skliarovV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://Languagelayerstefan-skliarovV1.p.rapidapi.com/getLanguages\"\nquerystring = {\"apiKey\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"Languagelayerstefan-skliarovV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/lanytek_audio2midi.json b/toolbench/toolenv/tools/Translation/lanytek_audio2midi.json new file mode 100644 index 0000000000000000000000000000000000000000..352563125ba73fe6ca7c88fa146ccca2329366f3 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/lanytek_audio2midi.json @@ -0,0 +1,155 @@ +{ + "product_id": "api_cc991661-4a88-4397-9707-e3e976d4a6d2", + "tool_description": "Welcome to our Lanytek AI music transcription service! \n\nOur service allows users to easily convert music audio files or YouTube links into MIDI and PDF files of the corresponding sheet music. \n\nWhether you're a musician looking to transcribe your own performances, or a music educator looking to create sheet music for your students, our service makes it easy to get the files you need. \n\nOur state-of-the-art AI algorithms are able to accurately transcribe even the most complex pieces of music,...", + "home_url": "https://rapidapi.com/JC1DA/api/lanytek-audio2midi/", + "name": "Lanytek Audio2Midi", + "title": "Lanytek Audio2Midi", + "pricing": "FREEMIUM", + "tool_name": "Lanytek Audio2Midi", + "score": { + "avgServiceLevel": 0, + "avgLatency": 127201, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "lanytek-audio2midi.p.rapidapi.com", + "api_list": [ + { + "name": "/gen-from-youtube", + "url": "https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-youtube", + "description": "[ASYNC_API] Generate transcription from youtube video.\n\nArgs:\n\n url (str): URL of youtube video.\n\nRaises:\n\n HTTPException: Error message.\n\nReturns:\n\n AsyncRequestResponse: response", + "method": "POST", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-youtube\"\nquerystring = {\"url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-youtube\"\nquerystring = {\"url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "title": "AsyncRequestResponse", + "required": [ + "requestId", + "waitingTimeInSecs" + ], + "type": "object", + "properties": { + "requestId": { + "title": "Requestid", + "type": "string" + }, + "waitingTimeInSecs": { + "title": "Waitingtimeinsecs", + "type": "number" + }, + "description": { + "title": "Description", + "type": "string", + "default": "Please query /audios/{request_id} to get the result." + } + } + } + }, + { + "name": "/gen-from-file", + "url": "https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-file", + "description": "[ASYNC_API] Generate transcription from audio file.\n\nArgs:\n\n file (UploadFile): Audio file. Maximum size is 25M.\n\nReturns:\n\n AsyncRequestResponse: response", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-file\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-file\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/gen-from-file/sync", + "url": "https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-file/sync", + "description": "[SYNC_API] Generate transcription from audio file.\n\nArgs:\n\n file (UploadFile): Audio file. Maximum size is 25M.\n\nRaises:\n\n HTTPException: Error message.\n\nReturns:\n\n SyncRequestResponse: response", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-file/sync\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-file/sync\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "title": "SyncRequestResponse", + "required": [ + "pdf", + "midi" + ], + "type": "object", + "properties": { + "pdf": { + "title": "Pdf", + "type": "string" + }, + "midi": { + "title": "Midi", + "type": "string" + } + } + } + }, + { + "name": "/gen-from-youtube/sync", + "url": "https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-youtube/sync", + "description": "[SYNC_API] Generate transcription from youtube video.\n\nArgs:\n\n url (str): URL of youtube video.\n\nRaises:\n\n HTTPException: Error message.\n\nReturns:\n\n SyncRequestResponse: response", + "method": "POST", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-youtube/sync\"\nquerystring = {\"url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lanytek-audio2midi.p.rapidapi.com/audios/gen-from-youtube/sync\"\nquerystring = {\"url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lanytek-audio2midi.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "title": "SyncRequestResponse", + "required": [ + "pdf", + "midi" + ], + "type": "object", + "properties": { + "pdf": { + "title": "Pdf", + "type": "string" + }, + "midi": { + "title": "Midi", + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/lecto_translation.json b/toolbench/toolenv/tools/Translation/lecto_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..d21cab3ae191d61d155d7f5df5f540ab7c2695ed --- /dev/null +++ b/toolbench/toolenv/tools/Translation/lecto_translation.json @@ -0,0 +1,289 @@ +{ + "tool_name": "Lecto Translation", + "tool_description": "Fast Neural Translation. Text/HTML/JSON. Protected keys. Multiple source texts and target languages in a single request. Free Translation API trial with paid plans as low as $0.3 per million characters. 90+ supported languages. For personalized integration support or private plans with higher quotas, contact [support@lecto.ai](mailto:%73%75%70%70%6f%72%74%40%6c%65%63%74%6f%2e%61%69) or via Telegram @lectoai . Also available via our website with attractive Translation API pricing at https://da...", + "title": "Lecto Translation", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 118, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/lecto-lecto-default/api/lecto-translation/", + "host": "lecto-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Translate Texts", + "url": "https://lecto-translation.p.rapidapi.com/v1/translate/text", + "description": "Batch translate array of texts into multiple target languages.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "Accept-Encoding", + "type": "ENUM", + "description": "Optional `Accept-Encoding: gzip` header to receive gzip compressed response. If sent, `Content-Encoding: gzip` response header indicates gzip compression.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/text\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": { + "Content-Encoding": "gzip", + "Content-Type": "application/json", + "x-characters-count": "42" + }, + "schema": { + "type": "object", + "properties": { + "translations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "to": { + "type": "string" + }, + "translated": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "from": { + "type": "string" + }, + "translated_characters": { + "type": "integer" + } + } + } + }, + { + "name": "Translate JSON Payload", + "url": "https://lecto-translation.p.rapidapi.com/v1/translate/json", + "description": "Translate JSON values from JSON formatted strings into multiple target languages, with **protected keys** feature available.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "Accept-Encoding", + "type": "ENUM", + "description": "Optional `Accept-Encoding: gzip` header to receive gzip compressed response. If sent, `Content-Encoding: gzip` response header indicates gzip compression.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "translations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "to": { + "type": "string" + }, + "translated": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "from": { + "type": "string" + }, + "protected_keys": { + "type": "array", + "items": { + "type": "string" + } + }, + "translated_characters": { + "type": "integer" + } + } + } + }, + { + "name": "Detect Language", + "url": "https://lecto-translation.p.rapidapi.com/v1/detect/text", + "description": "Send array of source texts in request body and receive JSON response with the detected language codes.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "Accept-Encoding", + "type": "ENUM", + "description": "Optional `Accept-Encoding: gzip` header to receive gzip compressed response. If sent, `Content-Encoding: gzip` response header indicates gzip compression.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/detect/text\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "detected_languages": { + "type": "array", + "items": { + "type": "string" + } + }, + "original_characters": { + "type": "integer" + } + } + } + }, + { + "name": "List Languages", + "url": "https://lecto-translation.p.rapidapi.com/v1/translate/languages", + "description": "Get a list of supported languages for translation in **ISO-639-1**, **ISO-639-2** or **BCP-47** formats.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "Accept-Encoding", + "type": "ENUM", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "languages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "language_code": { + "type": "string" + }, + "display_name": { + "type": "string" + }, + "support_source": { + "type": "boolean" + }, + "support_target": { + "type": "boolean" + } + } + } + } + } + } + }, + { + "name": "Translate Texts", + "url": "https://lecto-translation.p.rapidapi.com/v1/translate/text", + "description": "Batch translate array of texts into multiple target languages.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/text\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/text\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "translations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "to": { + "type": "string" + }, + "translated": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "from": { + "type": "string" + }, + "translated_characters": { + "type": "integer" + } + } + } + }, + { + "name": "Translate JSON Payload", + "url": "https://lecto-translation.p.rapidapi.com/v1/translate/json", + "description": "Translate JSON values from JSON formatted strings into multiple target languages, with **protected keys** feature available.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/translate/json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Detect Language", + "url": "https://lecto-translation.p.rapidapi.com/v1/detect/text", + "description": "Send array of source texts in request body and receive JSON response with the detected language codes.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/detect/text\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lecto-translation.p.rapidapi.com/v1/detect/text\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecto-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "detected_languages": { + "type": "array", + "items": { + "type": "string" + } + }, + "original_characters": { + "type": "integer" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/lecto_translation/api.py b/toolbench/toolenv/tools/Translation/lecto_translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0e06379f021344954c7267f3df63edeff7ef05de --- /dev/null +++ b/toolbench/toolenv/tools/Translation/lecto_translation/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_languages(accept_encoding: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of supported languages for translation in **ISO-639-1**, **ISO-639-2** or **BCP-47** formats." + + """ + url = f"https://lecto-translation.p.rapidapi.com/v1/translate/languages" + querystring = {} + if accept_encoding: + querystring['Accept-Encoding'] = accept_encoding + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "lecto-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/linguatools_translate.json b/toolbench/toolenv/tools/Translation/linguatools_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..52ece97ee77d0c08ef19ef97ae21e5dfd355937a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/linguatools_translate.json @@ -0,0 +1,139 @@ +{ + "tool_name":"linguatools translate", + "tool_description":"Looks up a word in a dictionary and returns all translations with bilingual example sentences.", + "title":"linguatools translate", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":159, + "avgSuccessRate":100, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/petapro/api/linguatools-translate/", + "host":"petapro-translate-v1.p.rapidapi.com", + "api_list":[ + { + "name":"translate a word (new)", + "url":"https://petapro-translate-v1.p.rapidapi.com/", + "description":"Looks up a word in a bilingual dictionary and returns all translations ordered by frequency. Optionally restricts the result for a given wordclass.", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"any word (case insensitive)", + "default":"verdienen" + }, + { + "name":"langpair", + "type":"STRING", + "description":"One of the following combinations (in lower case): de-en, de-es, de-nl, de-pl, de-it, de-cs, en-de, es-de, nl-de, pl-de, it-de cs-de", + "default":"de-en" + } + ], + "optional_parameters":[ + { + "name":"wortart", + "type":"STRING", + "description":"One of the following parts of speech (in upper case): ADJ, ADV, AUX, EIGENNAME, ITJ, PHRASE, PRON, PREP, PREP_ART, PTK, KONJ, MODAL, NOMEN, NUM, VERB", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://petapro-translate-v1.p.rapidapi.com/\"\nquerystring = {\"query\": query, \"langpair\": langpair}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"petapro-translate-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "freq":6225, + "id":536985, + "l1_text":"verdienen", + "l2_text":"deserve", + "synonyme1":"deserver, earn, gain, merit", + "synonyme2":"", + "wortart":"VERB" + }, + { + "freq":4214, + "id":536987, + "l1_text":"verdienen", + "l2_text":"earn", + "synonyme1":"deserve, deserver, gain, merit", + "synonyme2":"einnehmen, erwerben, gewinnen", + "wortart":"VERB" + }, + { + "freq":104, + "id":536988, + "l1_text":"verdienen", + "l2_text":"merit", + "synonyme1":"deserve, deserver, earn, gain", + "synonyme2":"wert sein", + "wortart":"VERB" + }, + { + "freq":27, + "id":2088899, + "l1_text":"verdienen", + "l2_text":"gain", + "synonyme1":"deserve, deserver, earn, merit", + "synonyme2":"annehmen, erlangen, erringen, erwerben, gewinnen, hinzugewinnen, lukrieren, zunehmen", + "wortart":"VERB" + }, + { + "freq":0, + "id":536984, + "l1_text":"verdienen", + "l2_text":"deserver", + "synonyme1":"deserve, earn, gain, merit", + "synonyme2":"", + "wortart":"VERB" + } + ], + "headers":{ + "access-control-allow-origin":"*", + "cache-control":"max-age=0, private, must-revalidate", + "content-type":"application/json; charset=utf-8", + "date":"Sat, 11 Jul 2020 13:45:36 GMT", + "etag":"W/\"47e69939279fa1efb15de1a71549d7ee\"", + "server":"RapidAPI-1.1.21", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.21", + "x-ratelimit-requests-limit":"1000", + "x-ratelimit-requests-remaining":"990", + "x-request-id":"16ad99df-3908-4f81-b47b-512c21e6bf80", + "x-runtime":"0.234127", + "content-length":"828", + "connection":"Close" + }, + "schema":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "freq":{ + "type":"integer" + }, + "id":{ + "type":"integer" + }, + "l1_text":{ + "type":"string" + }, + "l2_text":{ + "type":"string" + }, + "synonyme1":{ + "type":"string" + }, + "synonyme2":{ + "type":"string" + }, + "wortart":{ + "type":"string" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/linguatools_translate/api.py b/toolbench/toolenv/tools/Translation/linguatools_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fde6dff4f5c6b13a14a72edca236e8fd8ca82818 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/linguatools_translate/api.py @@ -0,0 +1,34 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate_a_word_new(query: str, langpair: str, wortart: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Looks up a word in a bilingual dictionary and returns all translations ordered by frequency. Optionally restricts the result for a given wordclass." + query: any word (case insensitive) + langpair: One of the following combinations (in lower case): de-en, de-es, de-nl, de-pl, de-it, de-cs, en-de, es-de, nl-de, pl-de, it-de cs-de + wortart: One of the following parts of speech (in upper case): ADJ, ADV, AUX, EIGENNAME, ITJ, PHRASE, PRON, PREP, PREP_ART, PTK, KONJ, MODAL, NOMEN, NUM, VERB + + """ + url = f"https://petapro-translate-v1.p.rapidapi.com/" + querystring = {'query': query, 'langpair': langpair, } + if wortart: + querystring['wortart'] = wortart + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "petapro-translate-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/lingvanex_translate.json b/toolbench/toolenv/tools/Translation/lingvanex_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..fca68007354b6dc3d51f0c428eb7c870736db1cf --- /dev/null +++ b/toolbench/toolenv/tools/Translation/lingvanex_translate.json @@ -0,0 +1,221 @@ +{ + "tool_name": "Lingvanex Translate", + "tool_description": "Lingvanex works via HTTPS requests. The URL of all requests starts with https://api-b2b.backenster.com/b1/api/v3/. In case of a protocol selection error and using HTTP, the request will be redirected to the address with the HTTPS protocol (status code 302).

Authentication of requests is done by adding the \u201cAuthorization\u201d header with the following data format: Bearer The key can be created on the user control panel page https://lingvanex.com/account", + "title": "Lingvanex Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 664, + "avgSuccessRate": 99, + "popularityScore": 9.8, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/Lingvanex/api/lingvanex-translate/", + "host": "lingvanex-translate.p.rapidapi.com", + "api_list": [ + { + "name": "/getLanguages", + "url": "https://lingvanex-translate.p.rapidapi.com/getLanguages", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "code", + "type": "STRING", + "description": "the language code in the format \u201clanguage code_code of the country\u201d, which is used to display the names of the languages. The language code is represented only in lowercase letters, the country code only in uppercase letters (example en_GB, es_ES, ru_RU etc). If this option is not present, then English is used by default", + "default": "en_GB" + }, + { + "name": "platform", + "type": "STRING", + "description": "api", + "default": "api" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lingvanex-translate.p.rapidapi.com/getLanguages\"\nquerystring = {\"code\": code, \"platform\": platform}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lingvanex-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "err": "", + "result": [ + { + "full_code": "", + "code_alpha_1": "", + "englishName": "", + "codeName": "", + "flagPath": "", + "testWordForSyntezis": "", + "modes": [ + { + "name": "", + "value": true, + "genders": true + } + ] + } + ] + }, + "headers": {}, + "schema": { + "properties": { + "err": { + "description": "the text of the error. It is null if the response status is 200. Otherwise, it contains a string", + "type": "string" + }, + "result": { + "items": { + "properties": { + "codeName": { + "description": "the language name translated using the language specified by the query parameter \u201ccode\u201d", + "type": "string" + }, + "code_alpha_1": { + "description": "the language code in the \u201clanguage code\u201d format", + "type": "string" + }, + "englishName": { + "description": "English name of the language", + "type": "string" + }, + "flagPath": { + "description": "the relative address of which is the image of the country flag. Example static/flags/afrikaans. The full address for downloading the flag will be https://backenster.com/v2/static/flags/afrikaans.png. In order to download flags in increased resolutions, you should add to this parameter: @2x or @3x (example https://backenster.com/v2/static/flags/afrikaans@2x.png or https://backenster.com/v2/static/flags/afrikaans@3x.png)", + "type": "string" + }, + "full_code": { + "description": "the language code in the format \u201clanguage code_code of the country\u201d", + "type": "string" + }, + "modes": { + "description": "an array of objects, each of which is a description of the function that is supported in the given language", + "items": { + "properties": { + "genders": { + "description": "logical value true or false, which shows the ability to synthesize speech for both sexes. Displayed only for function \u201cSpeech synthesis\u201c", + "type": "boolean" + }, + "name": { + "description": "name of the function. Currently, only 4 functions are widely supported: \u201cSpeech synthesis\u201c, \u201cImage recognition\u201c, \u201cTranslation\u201c, \u201cSpeech recognition\u201c", + "type": "string" + }, + "value": { + "description": "logical value true or false, which shows the status of the function: on or off", + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "testWordForSyntezis": { + "description": "a word for testing a speech synthesizer", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + { + "name": "/translate", + "url": "https://lingvanex-translate.p.rapidapi.com/translate", + "description": "", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lingvanex-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lingvanex-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "err": null, + "result": "London ist die Hauptstadt und gr\u00f6\u00dfte Stadt Englands und des Vereinigten K\u00f6nigreichs.", + "cacheUse": 0, + "source": "London is the capital and largest city of England and of the United Kingdom.", + "from": "en", + "sourceTransliteration": "London is the capital and largest city of England and of the United Kingdom.", + "targetTransliteration": "London ist die Hauptstadt und grosste Stadt Englands und des Vereinigten Konigreichs." + }, + "headers": {}, + "schema": { + "properties": { + "cacheUse": { + "description": "the number of letters translated using the Lingvanex service cache", + "type": "integer" + }, + "err": { + "description": "the text of the error. It is null if the response status is 200. Otherwise, it contains a string", + "type": "string" + }, + "from": { + "description": "code of the source language in the format \u201clanguage code\u201d. In the case of sending a translation of an array of strings with different language content, only the language of the first element of the array is returned", + "type": "string" + }, + "result": { + "description": "result of translation. In the event that a line was sent to the translation, the result is also a string; if an array of strings, then we also get an array of strings", + "type": "string" + }, + "source": { + "description": "source data for translation", + "type": "string" + }, + "sourceTransliteration": { + "description": "transliteration of source data. In the event that a line was sent to the translation, the result is also a string; if an array of strings, then we also get an array of strings", + "type": "string" + }, + "targetTransliteration": { + "description": "transliteration results. In the event that a line was sent to the translation, the result is also a string; if an array of strings, then we also get an array of strings", + "type": "string" + } + }, + "type": "object" + } + }, + { + "name": "/translate", + "url": "https://lingvanex-translate.p.rapidapi.com/translate", + "description": "", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lingvanex-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lingvanex-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lingvanex-translate.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lingvanex-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "properties": { + "cacheUse": { + "description": "the number of letters translated using the Lingvanex service cache", + "type": "integer" + }, + "err": { + "description": "the text of the error. It is null if the response status is 200. Otherwise, it contains a string", + "type": "string" + }, + "from": { + "description": "code of the source language in the format \u201clanguage code\u201d. In the case of sending a translation of an array of strings with different language content, only the language of the first element of the array is returned", + "type": "string" + }, + "result": { + "description": "result of translation. In the event that a line was sent to the translation, the result is also a string; if an array of strings, then we also get an array of strings", + "type": "string" + }, + "source": { + "description": "source data for translation", + "type": "string" + }, + "sourceTransliteration": { + "description": "transliteration of source data. In the event that a line was sent to the translation, the result is also a string; if an array of strings, then we also get an array of strings", + "type": "string" + }, + "targetTransliteration": { + "description": "transliteration results. In the event that a line was sent to the translation, the result is also a string; if an array of strings, then we also get an array of strings", + "type": "string" + } + }, + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/lingvanex_translate/api.py b/toolbench/toolenv/tools/Translation/lingvanex_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..660899739c1aec3d7471f7a9fda16f76a4b8067c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/lingvanex_translate/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getlanguages(code: str, platform: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + code: the language code in the format “language code_code of the country”, which is used to display the names of the languages. The language code is represented only in lowercase letters, the country code only in uppercase letters (example en_GB, es_ES, ru_RU etc). If this option is not present, then English is used by default + platform: api + + """ + url = f"https://lingvanex-translate.p.rapidapi.com/getlanguages" + querystring = {'code': code, 'platform': platform, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "lingvanex-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/link_bilingual_dictionary/api.py b/toolbench/toolenv/tools/Translation/link_bilingual_dictionary/api.py new file mode 100644 index 0000000000000000000000000000000000000000..da4e88376e090f468a236bd14918a3b195094a8a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/link_bilingual_dictionary/api.py @@ -0,0 +1,32 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def lookup(to: str, word: str, is_from: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get bilingual translations" + to: The language you want to get translations + word: The word you want to translate + from: The language that your word belongs + + """ + url = f"https://link-bilingual-dictionary.p.rapidapi.com/{is_from}/{to}/{word}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "link-bilingual-dictionary.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/long_translator.json b/toolbench/toolenv/tools/Translation/long_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..7a8d613f8e9ae7b43e34319bbbe53ff6d25e9439 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/long_translator.json @@ -0,0 +1,662 @@ +{ + "tool_name": "Long Translator", + "tool_description": "Translate text into other languages. \nCan translate long texts, fast processing, cost-effective.", + "title": "Long Translator", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 568, + "avgSuccessRate": 100, + "popularityScore": 9.5, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/cloudlabs-dev/api/long-translator/", + "host": "long-translator.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://long-translator.p.rapidapi.com/translate", + "description": "This endpoint is used to translate text from one language to another using the post method", + "method": "POST", + "required_parameters": [ + { + "name": "target_language", + "type": "STRING", + "description": "Target language, filled with supported language codes such as: **en**, **eu**, **id**, and many others.", + "default": "fr" + }, + { + "name": "text", + "type": "STRING", + "description": "Text to be translated", + "default": "what is your name?" + }, + { + "name": "source_language", + "type": "STRING", + "description": "Source language, filled with supported language codes such as: **en**, **eu**, **id**, and many others.\nYou can also set the value '**auto**' if you want an API that detects the language automatically", + "default": "auto" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://long-translator.p.rapidapi.com/translate\"\nquerystring = {\"target_language\": target_language, \"text\": text, \"source_language\": source_language}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"long-translator.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "status": "success", + "data": { + "translatedText": "quel est ton nom ?", + "detectedSourceLanguage": { + "code": "en", + "name": "English" + } + } + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "alt-svc": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status": "DYNAMIC", + "cf-ray": "731eae362ef64d81-SIN", + "content-type": "application/json", + "date": "Thu, 28 Jul 2022 15:34:44 GMT", + "expect-ct": "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "nel": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YDi%2Bx9K0853YTDY0hiS4hype%2F2gtDuzn7n%2Fk7%2BjkCfnlq1nb1wFfhEWjzZWGWqVZ0F2tr%2BNFv28%2BJKa2Fcm6I7oEw25i7PGf1l8GmkyUzOB3G1mx%2FjeDQvfjLqgsMwcD\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server": "RapidAPI-1.2.8", + "vary": "Accept-Encoding,User-Agent", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8", + "x-ratelimit-characters-limit": "100000", + "x-ratelimit-characters-remaining": "99982", + "x-ratelimit-characters-reset": "2678385", + "x-turbo-charged-by": "LiteSpeed" + }, + "schema": { + "type": "object", + "properties": { + "status": { + "type": "string" + }, + "data": { + "type": "object", + "properties": { + "translatedText": { + "type": "string" + }, + "detectedSourceLanguage": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + } + } + }, + { + "name": "languages", + "url": "https://long-translator.p.rapidapi.com/languages", + "description": "This endpoint is used to get a list of available language codes", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://long-translator.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"long-translator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "data": { + "languages": [ + { + "code": "af", + "name": "Afrikaans" + }, + { + "code": "sq", + "name": "Albanian" + }, + { + "code": "am", + "name": "Amharic" + }, + { + "code": "ar", + "name": "Arabic" + }, + { + "code": "hy", + "name": "Armenian" + }, + { + "code": "az", + "name": "Azerbaijani" + }, + { + "code": "eu", + "name": "Basque" + }, + { + "code": "be", + "name": "Belarusian" + }, + { + "code": "bn", + "name": "Bengali" + }, + { + "code": "bs", + "name": "Bosnian" + }, + { + "code": "bg", + "name": "Bulgarian" + }, + { + "code": "ca", + "name": "Catalan" + }, + { + "code": "ceb", + "name": "Cebuano" + }, + { + "code": "ny", + "name": "Chichewa" + }, + { + "code": "zh-CN", + "name": "Chinese (Simplified)" + }, + { + "code": "zh-TW", + "name": "Chinese (Traditional)" + }, + { + "code": "co", + "name": "Corsican" + }, + { + "code": "hr", + "name": "Croatian" + }, + { + "code": "cs", + "name": "Czech" + }, + { + "code": "da", + "name": "Danish" + }, + { + "code": "nl", + "name": "Dutch" + }, + { + "code": "en", + "name": "English" + }, + { + "code": "eo", + "name": "Esperanto" + }, + { + "code": "et", + "name": "Estonian" + }, + { + "code": "tl", + "name": "Filipino" + }, + { + "code": "fi", + "name": "Finnish" + }, + { + "code": "fr", + "name": "French" + }, + { + "code": "fy", + "name": "Frisian" + }, + { + "code": "gl", + "name": "Galician" + }, + { + "code": "ka", + "name": "Georgian" + }, + { + "code": "de", + "name": "German" + }, + { + "code": "el", + "name": "Greek" + }, + { + "code": "gu", + "name": "Gujarati" + }, + { + "code": "ht", + "name": "Haitian Creole" + }, + { + "code": "ha", + "name": "Hausa" + }, + { + "code": "haw", + "name": "Hawaiian" + }, + { + "code": "iw", + "name": "Hebrew" + }, + { + "code": "hi", + "name": "Hindi" + }, + { + "code": "hmn", + "name": "Hmong" + }, + { + "code": "hu", + "name": "Hungarian" + }, + { + "code": "is", + "name": "Icelandic" + }, + { + "code": "ig", + "name": "Igbo" + }, + { + "code": "id", + "name": "Indonesian" + }, + { + "code": "ga", + "name": "Irish" + }, + { + "code": "it", + "name": "Italian" + }, + { + "code": "ja", + "name": "Japanese" + }, + { + "code": "jw", + "name": "Javanese" + }, + { + "code": "kn", + "name": "Kannada" + }, + { + "code": "kk", + "name": "Kazakh" + }, + { + "code": "km", + "name": "Khmer" + }, + { + "code": "rw", + "name": "Kinyarwanda" + }, + { + "code": "ko", + "name": "Korean" + }, + { + "code": "ku", + "name": "Kurdish (Kurmanji)" + }, + { + "code": "ky", + "name": "Kyrgyz" + }, + { + "code": "lo", + "name": "Lao" + }, + { + "code": "la", + "name": "Latin" + }, + { + "code": "lv", + "name": "Latvian" + }, + { + "code": "lt", + "name": "Lithuanian" + }, + { + "code": "lb", + "name": "Luxembourgish" + }, + { + "code": "mk", + "name": "Macedonian" + }, + { + "code": "mg", + "name": "Malagasy" + }, + { + "code": "ms", + "name": "Malay" + }, + { + "code": "ml", + "name": "Malayalam" + }, + { + "code": "mt", + "name": "Maltese" + }, + { + "code": "mi", + "name": "Maori" + }, + { + "code": "mr", + "name": "Marathi" + }, + { + "code": "mn", + "name": "Mongolian" + }, + { + "code": "my", + "name": "Myanmar (Burmese)" + }, + { + "code": "ne", + "name": "Nepali" + }, + { + "code": "no", + "name": "Norwegian" + }, + { + "code": "or", + "name": "Odia (Oriya)" + }, + { + "code": "ps", + "name": "Pashto" + }, + { + "code": "fa", + "name": "Persian" + }, + { + "code": "pl", + "name": "Polish" + }, + { + "code": "pt", + "name": "Portuguese" + }, + { + "code": "pa", + "name": "Punjabi" + }, + { + "code": "ro", + "name": "Romanian" + }, + { + "code": "ru", + "name": "Russian" + }, + { + "code": "sm", + "name": "Samoan" + }, + { + "code": "gd", + "name": "Scots Gaelic" + }, + { + "code": "sr", + "name": "Serbian" + }, + { + "code": "st", + "name": "Sesotho" + }, + { + "code": "sn", + "name": "Shona" + }, + { + "code": "sd", + "name": "Sindhi" + }, + { + "code": "si", + "name": "Sinhala" + }, + { + "code": "sk", + "name": "Slovak" + }, + { + "code": "sl", + "name": "Slovenian" + }, + { + "code": "so", + "name": "Somali" + }, + { + "code": "es", + "name": "Spanish" + }, + { + "code": "su", + "name": "Sundanese" + }, + { + "code": "sw", + "name": "Swahili" + }, + { + "code": "sv", + "name": "Swedish" + }, + { + "code": "tg", + "name": "Tajik" + }, + { + "code": "ta", + "name": "Tamil" + }, + { + "code": "tt", + "name": "Tatar" + }, + { + "code": "te", + "name": "Telugu" + }, + { + "code": "th", + "name": "Thai" + }, + { + "code": "tr", + "name": "Turkish" + }, + { + "code": "tk", + "name": "Turkmen" + }, + { + "code": "uk", + "name": "Ukrainian" + }, + { + "code": "ur", + "name": "Urdu" + }, + { + "code": "ug", + "name": "Uyghur" + }, + { + "code": "uz", + "name": "Uzbek" + }, + { + "code": "vi", + "name": "Vietnamese" + }, + { + "code": "cy", + "name": "Welsh" + }, + { + "code": "xh", + "name": "Xhosa" + }, + { + "code": "yi", + "name": "Yiddish" + }, + { + "code": "yo", + "name": "Yoruba" + }, + { + "code": "zu", + "name": "Zulu" + }, + { + "code": "he", + "name": "Hebrew" + }, + { + "code": "zh", + "name": "Chinese (Simplified)" + } + ] + } + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "alt-svc": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400", + "cf-cache-status": "DYNAMIC", + "cf-ray": "731e367a29fca3d6-SIN", + "content-type": "application/json", + "date": "Thu, 28 Jul 2022 14:12:59 GMT", + "expect-ct": "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "nel": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}", + "report-to": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jlmuncbV1tebB7jKiSRpA%2F7Xhfk%2BE0bPkjIQ%2BBYn9Mm2zkPamlEb6lR2teDOEPcTQfCbLbVx8QTyL23a%2BHKBshqKSihDX%2FqUGLYXLeGGqSPxXknaFFdfet0%2BiLwianP2\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server": "RapidAPI-1.2.8", + "vary": "Accept-Encoding,User-Agent", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8", + "x-turbo-charged-by": "LiteSpeed" + }, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "languages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + } + } + } + }, + { + "name": "translate", + "url": "https://long-translator.p.rapidapi.com/translate", + "description": "This endpoint is used to translate text from one language to another using the post method", + "method": "POST", + "required_parameters": [ + { + "name": "target_language", + "type": "STRING", + "description": "Target language, filled with supported language codes such as: **en**, **eu**, **id**, and many others.", + "default": "fr" + }, + { + "name": "text", + "type": "STRING", + "description": "Text to be translated", + "default": "what is your name?" + }, + { + "name": "source_language", + "type": "STRING", + "description": "Source language, filled with supported language codes such as: **en**, **eu**, **id**, and many others.\nYou can also set the value '**auto**' if you want an API that detects the language automatically", + "default": "auto" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://long-translator.p.rapidapi.com/translate\"\nquerystring = {\"target_language\": \"fr\", \"text\": \"what is your name?\", \"source_language\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"long-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://long-translator.p.rapidapi.com/translate\"\nquerystring = {\"target_language\": \"fr\", \"text\": \"what is your name?\", \"source_language\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"long-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "status": { + "type": "string" + }, + "data": { + "type": "object", + "properties": { + "translatedText": { + "type": "string" + }, + "detectedSourceLanguage": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/long_translator/api.py b/toolbench/toolenv/tools/Translation/long_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0912fdf7a43474f5941d9b77b8f87ffc3b20ab67 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/long_translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint is used to get a list of available language codes" + + """ + url = f"https://long-translator.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "long-translator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/master_language_translator.json b/toolbench/toolenv/tools/Translation/master_language_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..e9df1c82dc52a468d360ca4085ba784bce7cd89c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/master_language_translator.json @@ -0,0 +1,43 @@ +{ + "product_id": "api_ad743be9-3102-42d9-a34d-87f3cfb8e4ae", + "tool_description": "Translates between dozens of languages.", + "home_url": "https://rapidapi.com/jjespinozala/api/master-language-translator/", + "name": "Master Language Translator ", + "title": "Master Language Translator ", + "pricing": "FREEMIUM", + "tool_name": "Master Language Translator ", + "score": null, + "host": "master-language-translator.p.rapidapi.com", + "api_list": [ + { + "name": "translator", + "url": "https://master-language-translator.p.rapidapi.com/translator", + "description": "Translates between dozens of languages", + "method": "POST", + "required_parameters": [ + { + "name": "source", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "target", + "type": "STRING", + "description": "", + "default": "es" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "With this tool you can translate any text" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://master-language-translator.p.rapidapi.com/translator\"\nquerystring = {\"source\": \"en\", \"target\": \"es\", \"text\": \"With this tool you can translate any text\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"master-language-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://master-language-translator.p.rapidapi.com/translator\"\nquerystring = {\"source\": \"en\", \"target\": \"es\", \"text\": \"With this tool you can translate any text\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"master-language-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/matecat_filters.json b/toolbench/toolenv/tools/Translation/matecat_filters.json new file mode 100644 index 0000000000000000000000000000000000000000..db38490f78ea770273ffa1ea2721b10a73fb056c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/matecat_filters.json @@ -0,0 +1,104 @@ +{ + "product_id": "5638c6dce4b071b68c61dbae", + "tool_description": "Convert any file to the XLIFF format, and then back to the original format with all the contents translated and perfectly preserved formatting.\r\nAlready used by MateCat, the popular CAT tool. Test it right now on matecat.com.", + "home_url": "https://rapidapi.com/translated/api/matecat-filters/", + "name": "MateCat Filters", + "title": "MateCat Filters", + "pricing": "FREEMIUM", + "tool_name": "MateCat Filters", + "score": { + "avgServiceLevel": 99, + "avgLatency": 4223, + "avgSuccessRate": 99, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "translated-matecat-filters-v1.p.rapidapi.com", + "api_list": [ + { + "name": "/AutomationService/original2xliff", + "url": "https://translated-matecat-filters-v1.p.rapidapi.com/AutomationService/original2xliff", + "description": "Extract translatable text in XLIFF", + "method": "POST", + "required_parameters": [ + { + "name": "targetLocale", + "type": "STRING", + "description": "Target locale code, two letter language code and two letter country code separated by a hyphen", + "default": "it-CH" + }, + { + "name": "sourceLocale", + "type": "STRING", + "description": "Source locale code, two letter language code and two letter country code separated by a hyphen", + "default": "en-GB" + }, + { + "name": "documentContent", + "type": "BINARY", + "description": "File to process. The name of the file is taken from the Content-Disposition property or the optional `fileName` parameter.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "fileName", + "type": "STRING", + "description": "File name, this parameter is useful when the file name contains UTF8 chars", + "default": "original.json" + } + ], + "code": "import requests\n\nurl = \"https://translated-matecat-filters-v1.p.rapidapi.com/AutomationService/original2xliff\"\nquerystring = {\"targetLocale\": \"it-CH\", \"sourceLocale\": \"en-GB\", \"documentContent\": \"\", \"fileName\": \"original.json\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translated-matecat-filters-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translated-matecat-filters-v1.p.rapidapi.com/AutomationService/original2xliff\"\nquerystring = {\"targetLocale\": \"it-CH\", \"sourceLocale\": \"en-GB\", \"documentContent\": \"\", \"fileName\": \"original.json\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translated-matecat-filters-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "filename": { + "type": "string" + }, + "xliffContent": { + "type": "string" + }, + "isSuccess": { + "type": "boolean" + } + } + } + }, + { + "name": "/AutomationService/xliff2original", + "url": "https://translated-matecat-filters-v1.p.rapidapi.com/AutomationService/xliff2original", + "description": "Get the target translated file", + "method": "POST", + "required_parameters": [ + { + "name": "xliffContent", + "type": "BINARY", + "description": "The translated XLIFF", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translated-matecat-filters-v1.p.rapidapi.com/AutomationService/xliff2original\"\nquerystring = {\"xliffContent\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translated-matecat-filters-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translated-matecat-filters-v1.p.rapidapi.com/AutomationService/xliff2original\"\nquerystring = {\"xliffContent\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translated-matecat-filters-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "filename": { + "type": "string" + }, + "documentContent": { + "type": "string" + }, + "isSuccess": { + "type": "boolean" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/microsoft_translator_text.json b/toolbench/toolenv/tools/Translation/microsoft_translator_text.json new file mode 100644 index 0000000000000000000000000000000000000000..cb479b3fa0aa9616d377a08c8d50b9fdca0178ee --- /dev/null +++ b/toolbench/toolenv/tools/Translation/microsoft_translator_text.json @@ -0,0 +1,799 @@ +{ + "tool_name": "Microsoft Translator Text", + "tool_description": "An AI service from Microsoft Azure that enables you to easily conduct real-time text translation.", + "title": "Microsoft Translator Text", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 94, + "avgLatency": 776, + "avgSuccessRate": 90, + "popularityScore": 9.9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/microsoft-azure-org-microsoft-cognitive-services/api/microsoft-translator-text/", + "host": "microsoft-translator-text.p.rapidapi.com", + "api_list": [ + { + "name": "Languages", + "url": "https://microsoft-translator-text.p.rapidapi.com/languages", + "description": "Gets the set of languages currently supported by other operations of the Translator Text API.", + "method": "GET", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "Accept-Language", + "type": "STRING", + "description": "The language to use for user interface strings. Some of the fields in the response are names of languages or names of regions. Use this parameter to define the language in which these names are returned. The language is specified by providing a well-formed BCP 47 language tag. For instance, use the value `fr` to request names in French or use the value `zh-Hant` to request names in Chinese Traditional. Names are provided in the English language when a target language is not specified or when localization is not available.", + "default": "" + }, + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + }, + { + "name": "scope", + "type": "STRING", + "description": "A comma-separated list of names defining the group of languages to return. Allowed group names are- `translation`, `transliteration` and `dictionary`. If no scope is given, then all groups are returned, which is equivalent to passing `scope=translation,transliteration,dictionary`. To decide which set of supported languages is appropriate for your scenario, see the description of the response object.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/languages\"\nquerystring = {\"api-version\": api_version}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Transliterate", + "url": "https://microsoft-translator-text.p.rapidapi.com/transliterate", + "description": "Converts the text of a language in one script into another type of script. Example- \nJapanese script \"\u3053\u3093\u306b\u3061\u306f\"\nSame word in Latin script \"konnichiha\"", + "method": "POST", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + }, + { + "name": "toScript", + "type": "STRING", + "description": "Specifies the output script. Lookup supported languages using the `transliteration` scope, to find output scripts available for the selected combination of input language and input script.\n", + "default": "" + }, + { + "name": "fromScript", + "type": "STRING", + "description": "Specifies the script used by the input text. Lookup supported languages using the `transliteration` scope, to find input scripts available for the selected language.\n", + "default": "" + }, + { + "name": "language", + "type": "STRING", + "description": "Specifies the language of the text to convert from one script to another. Possible languages are listed in the `transliteration` scope obtained by querying the service for its supported languages.\n", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/transliterate\"\nquerystring = {\"api-version\": api_version, \"toScript\": toscript, \"fromScript\": fromscript, \"language\": language}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate", + "url": "https://microsoft-translator-text.p.rapidapi.com/translate", + "description": "Translates text into one or more languages.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "ARRAY", + "description": "Specifies the language of the output text. Find which languages are available to translate to by using the languages method. For example, use `to=de` to translate to German.\n It's possible to translate to multiple languages simultaneously by repeating the `to` parameter in the query string. For example, use `to=de&to=it` to translate to German and Italian in the same request.\n", + "default": "" + }, + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + }, + { + "name": "includeAlignment", + "type": "BOOLEAN", + "description": "Specifies whether to include alignment projection from source text to translated text. Possible values are- `true` or `false` (default).\n", + "default": "" + }, + { + "name": "from", + "type": "STRING", + "description": "Specifies the language of the input text. Find which languages are available to translate from by using the languages method. If the `from` parameter is not specified, automatic language detection is applied to determine the source language.\n", + "default": "" + }, + { + "name": "category", + "type": "STRING", + "description": "A string specifying the category (domain) of the translation. This parameter retrieves translations from a customized system built with Custom Translator. Default value is `general`.\n", + "default": "" + }, + { + "name": "toScript", + "type": "ARRAY", + "description": "Specifies the script of the translated text. Supported scripts are available from the languages method", + "default": "" + }, + { + "name": "profanityMarker", + "type": "STRING", + "description": "Specifies how profanities should be marked in translations. Possible values are- `Asterisk` (default) or `Tag`.\n", + "default": "" + }, + { + "name": "profanityAction", + "type": "STRING", + "description": "Specifies how profanities should be treated in translations. Possible values are: `NoAction` (default), `Marked` or `Deleted`.\n### Handling Profanity\nNormally the Translator service will retain profanity that is present in the source in the translation. The degree of profanity and the context that makes words profane differ between cultures, and as a result the degree of profanity in the target language may be amplified or reduced.\n\nIf you want to avoid getting profanity in the translation, regardless of the presence of profanity in the source text, you can use the profanity filtering option. The option allows you to choose whether you want to see profanity deleted, whether you want to mark profanities with appropriate tags (giving you the option to add your own post-processing), or you want no action taken. The accepted values of `ProfanityAction` are `Deleted`, `Marked` and `NoAction` (default).\n\n| ProfanityAction | Action |\n| ---------- | ---------- |\n| `NoAction` | This is the default behavior. Profanity will pass from source to target. |\n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a jackass. |\n| | |\n| `Deleted` | Profane words will be removed from the output without replacement. |\n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a. |\n| `Marked` | Profane words are replaced by a marker in the output. The marker depends on the `ProfanityMarker` parameter.\n| | For `ProfanityMarker=Asterisk`, profane words are replaced with `***` |\n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a ***. |\n| | For `ProfanityMarker=Tag`, profane words are surrounded by XML tags and \n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a jackass.\n", + "default": "NoAction" + }, + { + "name": "fromScript", + "type": "STRING", + "description": "Specifies the script of the input text. Supported scripts are available from the languages method", + "default": "" + }, + { + "name": "includeSentenceLength", + "type": "BOOLEAN", + "description": "Specifies whether to include sentence boundaries for the input text and the translated text. Possible values are- `true` or `false` (default).\n", + "default": "" + }, + { + "name": "textType", + "type": "STRING", + "description": "Defines whether the text being translated is plain text or HTML text. Any HTML needs to be a well-formed, complete HTML element. Possible values are `plain` (default) or `html`\n", + "default": "plain" + }, + { + "name": "suggestedFrom", + "type": "STRING", + "description": "Specifies a fallback language if the language of the input text can't be identified. Language auto-detection is applied when the `from` parameter is omitted. If detection fails, the `suggestedFrom` language will be assumed.\n", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/translate\"\nquerystring = {\"to\": to, \"api-version\": api_version, \"profanityAction\": profanityaction, \"textType\": texttype}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Detect", + "url": "https://microsoft-translator-text.p.rapidapi.com/Detect", + "description": "Identifies the language of a string of text.", + "method": "POST", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Detect\"\nquerystring = {\"api-version\": api_version}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Break Sentence", + "url": "https://microsoft-translator-text.p.rapidapi.com/BreakSentence", + "description": "Identifies the position of sentence boundaries in a piece of text.", + "method": "POST", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + }, + { + "name": "Script", + "type": "STRING", + "description": "Script identifier of the script used by the input text. If a script is not specified, the default script of the language will be assumed.", + "default": "" + }, + { + "name": "Language", + "type": "STRING", + "description": "Language tag of the language of the input text. If not specified, Translator will apply automatic language detection.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/BreakSentence\"\nquerystring = {\"api-version\": api_version}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Dictionary Lookup", + "url": "https://microsoft-translator-text.p.rapidapi.com/Dictionary/Lookup", + "description": "Provides alternative translations for a word and a small number of idiomatic phrases. Each translation has a `part-of-speech` and a list of `back-translations`. The back-translations enable a user to understand the translation in context. The Dictionary Example operation allows further drill down to see example uses of each translation pair.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Specifies the language of the output text. The target language must be one of the supported languages included in the `dictionary` scope of the Languages resource.", + "default": "" + }, + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + }, + { + "name": "from", + "type": "STRING", + "description": "Specifies the language of the input text. The source language must be one of the supported languages included in the `dictionary` scope.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Dictionary/Lookup\"\nquerystring = {\"to\": to, \"api-version\": api_version, \"from\": is_from}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Dictionary Examples", + "url": "https://microsoft-translator-text.p.rapidapi.com/Dictionary/Examples", + "description": "Provides examples that show how terms in the dictionary are used in context. This operation is used in tandem with `Dictionary lookup`.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Specifies the language of the output text. The target language must be one of the supported languages included in the `dictionary` scope.", + "default": "" + }, + { + "name": "from", + "type": "STRING", + "description": "Specifies the language of the input text. The source language must be one of the supported languages included in the `dictionary` scope.", + "default": "" + }, + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "X-ClientTraceId", + "type": "STRING", + "description": "A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Dictionary/Examples\"\nquerystring = {\"to\": to, \"from\": is_from, \"api-version\": api_version}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Transliterate", + "url": "https://microsoft-translator-text.p.rapidapi.com/transliterate", + "description": "Converts the text of a language in one script into another type of script. Example- \nJapanese script \"\u3053\u3093\u306b\u3061\u306f\"\nSame word in Latin script \"konnichiha\"", + "method": "POST", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + }, + { + "name": "toScript", + "type": "STRING", + "description": "Specifies the output script. Lookup supported languages using the `transliteration` scope, to find output scripts available for the selected combination of input language and input script.\n", + "default": "" + }, + { + "name": "fromScript", + "type": "STRING", + "description": "Specifies the script used by the input text. Lookup supported languages using the `transliteration` scope, to find input scripts available for the selected language.\n", + "default": "" + }, + { + "name": "language", + "type": "STRING", + "description": "Specifies the language of the text to convert from one script to another. Possible languages are listed in the `transliteration` scope obtained by querying the service for its supported languages.\n", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/transliterate\"\nquerystring = {\"api-version\": \"3.0\", \"toScript\": \"\", \"fromScript\": \"\", \"language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/transliterate\"\nquerystring = {\"api-version\": \"3.0\", \"toScript\": \"\", \"fromScript\": \"\", \"language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "Example of a successful transliterate request", + "items": { + "properties": { + "script": { + "type": "string" + }, + "text": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + { + "name": "Translate", + "url": "https://microsoft-translator-text.p.rapidapi.com/translate", + "description": "Translates text into one or more languages.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "ARRAY", + "description": "Specifies the language of the output text. Find which languages are available to translate to by using the languages method. For example, use `to=de` to translate to German.\n It's possible to translate to multiple languages simultaneously by repeating the `to` parameter in the query string. For example, use `to=de&to=it` to translate to German and Italian in the same request.\n", + "default": "" + }, + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "includeAlignment", + "type": "BOOLEAN", + "description": "Specifies whether to include alignment projection from source text to translated text. Possible values are- `true` or `false` (default).\n", + "default": "" + }, + { + "name": "from", + "type": "STRING", + "description": "Specifies the language of the input text. Find which languages are available to translate from by using the languages method. If the `from` parameter is not specified, automatic language detection is applied to determine the source language.\n", + "default": "" + }, + { + "name": "category", + "type": "STRING", + "description": "A string specifying the category (domain) of the translation. This parameter retrieves translations from a customized system built with Custom Translator. Default value is `general`.\n", + "default": "" + }, + { + "name": "toScript", + "type": "ARRAY", + "description": "Specifies the script of the translated text. Supported scripts are available from the languages method", + "default": "" + }, + { + "name": "profanityMarker", + "type": "STRING", + "description": "Specifies how profanities should be marked in translations. Possible values are- `Asterisk` (default) or `Tag`.\n", + "default": "" + }, + { + "name": "profanityAction", + "type": "STRING", + "description": "Specifies how profanities should be treated in translations. Possible values are: `NoAction` (default), `Marked` or `Deleted`.\n### Handling Profanity\nNormally the Translator service will retain profanity that is present in the source in the translation. The degree of profanity and the context that makes words profane differ between cultures, and as a result the degree of profanity in the target language may be amplified or reduced.\n\nIf you want to avoid getting profanity in the translation, regardless of the presence of profanity in the source text, you can use the profanity filtering option. The option allows you to choose whether you want to see profanity deleted, whether you want to mark profanities with appropriate tags (giving you the option to add your own post-processing), or you want no action taken. The accepted values of `ProfanityAction` are `Deleted`, `Marked` and `NoAction` (default).\n\n| ProfanityAction | Action |\n| ---------- | ---------- |\n| `NoAction` | This is the default behavior. Profanity will pass from source to target. |\n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a jackass. |\n| | |\n| `Deleted` | Profane words will be removed from the output without replacement. |\n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a. |\n| `Marked` | Profane words are replaced by a marker in the output. The marker depends on the `ProfanityMarker` parameter.\n| | For `ProfanityMarker=Asterisk`, profane words are replaced with `***` |\n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a ***. |\n| | For `ProfanityMarker=Tag`, profane words are surrounded by XML tags and \n| | Example Source (Japanese)- \u5f7c\u306f\u30b8\u30e3\u30c3\u30ab\u30b9\u3067\u3059\u3002 |\n| | Example Translation (English)- He is a jackass.\n", + "default": "NoAction" + }, + { + "name": "fromScript", + "type": "STRING", + "description": "Specifies the script of the input text. Supported scripts are available from the languages method", + "default": "" + }, + { + "name": "includeSentenceLength", + "type": "BOOLEAN", + "description": "Specifies whether to include sentence boundaries for the input text and the translated text. Possible values are- `true` or `false` (default).\n", + "default": "" + }, + { + "name": "textType", + "type": "STRING", + "description": "Defines whether the text being translated is plain text or HTML text. Any HTML needs to be a well-formed, complete HTML element. Possible values are `plain` (default) or `html`\n", + "default": "plain" + }, + { + "name": "suggestedFrom", + "type": "STRING", + "description": "Specifies a fallback language if the language of the input text can't be identified. Language auto-detection is applied when the `from` parameter is omitted. If detection fails, the `suggestedFrom` language will be assumed.\n", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/translate\"\nquerystring = {\"includeAlignment\": \"\", \"from\": \"\", \"category\": \"\", \"to\": \"\", \"toScript\": \"\", \"api-version\": \"3.0\", \"profanityMarker\": \"\", \"profanityAction\": \"NoAction\", \"fromScript\": \"\", \"includeSentenceLength\": \"\", \"textType\": \"plain\", \"suggestedFrom\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/translate\"\nquerystring = {\"includeAlignment\": \"\", \"from\": \"\", \"category\": \"\", \"to\": \"\", \"toScript\": \"\", \"api-version\": \"3.0\", \"profanityMarker\": \"\", \"profanityAction\": \"NoAction\", \"fromScript\": \"\", \"includeSentenceLength\": \"\", \"textType\": \"plain\", \"suggestedFrom\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "Example of a successful translate request, including all optional parameters.", + "items": { + "properties": { + "detectedLanguage": { + "properties": { + "language": { + "type": "string" + }, + "score": { + "type": "integer" + } + }, + "type": "object" + }, + "translations": { + "items": { + "properties": { + "alignment": { + "properties": { + "proj": { + "type": "string" + } + }, + "type": "object" + }, + "sentLen": { + "properties": { + "srcSentLen": { + "items": { + "properties": { + "integer": { + "type": "integer" + } + } + }, + "type": "array" + }, + "transSentLen": { + "items": { + "properties": { + "integer": { + "type": "integer" + } + } + }, + "type": "array" + } + }, + "type": "object" + }, + "text": { + "type": "string" + }, + "to": { + "type": "string" + }, + "transliteration": { + "properties": { + "script": { + "type": "string" + }, + "text": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + { + "name": "Detect", + "url": "https://microsoft-translator-text.p.rapidapi.com/Detect", + "description": "Identifies the language of a string of text.", + "method": "POST", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Detect\"\nquerystring = {\"api-version\": \"3.0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Detect\"\nquerystring = {\"api-version\": \"3.0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "Example of a successful detect request", + "items": { + "properties": { + "text": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + { + "name": "Break Sentence", + "url": "https://microsoft-translator-text.p.rapidapi.com/BreakSentence", + "description": "Identifies the position of sentence boundaries in a piece of text.", + "method": "POST", + "required_parameters": [ + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [ + { + "name": "Script", + "type": "STRING", + "description": "Script identifier of the script used by the input text. If a script is not specified, the default script of the language will be assumed.", + "default": "" + }, + { + "name": "Language", + "type": "STRING", + "description": "Language tag of the language of the input text. If not specified, Translator will apply automatic language detection.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/BreakSentence\"\nquerystring = {\"Script\": \"\", \"api-version\": \"3.0\", \"Language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/BreakSentence\"\nquerystring = {\"Script\": \"\", \"api-version\": \"3.0\", \"Language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "Example of a successful break sentence request", + "items": { + "properties": { + "sentLen": { + "items": { + "type": "integer" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + { + "name": "Dictionary Lookup", + "url": "https://microsoft-translator-text.p.rapidapi.com/Dictionary/Lookup", + "description": "Provides alternative translations for a word and a small number of idiomatic phrases. Each translation has a `part-of-speech` and a list of `back-translations`. The back-translations enable a user to understand the translation in context. The Dictionary Example operation allows further drill down to see example uses of each translation pair.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Specifies the language of the output text. The target language must be one of the supported languages included in the `dictionary` scope of the Languages resource.", + "default": "" + }, + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + }, + { + "name": "from", + "type": "STRING", + "description": "Specifies the language of the input text. The source language must be one of the supported languages included in the `dictionary` scope.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Dictionary/Lookup\"\nquerystring = {\"to\": \"\", \"api-version\": \"3.0\", \"from\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Dictionary/Lookup\"\nquerystring = {\"to\": \"\", \"api-version\": \"3.0\", \"from\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "Example of a successful dictionary lookup request", + "items": { + "properties": { + "displaySource": { + "type": "string" + }, + "normalizedSource": { + "type": "string" + }, + "translations": { + "items": { + "properties": { + "backTranslations": { + "items": { + "properties": { + "displayText": { + "type": "string" + }, + "frequencyCount": { + "type": "integer" + }, + "normalizedText": { + "type": "string" + }, + "numExamples": { + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "confidence": { + "type": "number" + }, + "displayTarget": { + "type": "string" + }, + "normalizedTarget": { + "type": "string" + }, + "posTag": { + "type": "string" + }, + "prefixWord": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + { + "name": "Dictionary Examples", + "url": "https://microsoft-translator-text.p.rapidapi.com/Dictionary/Examples", + "description": "Provides examples that show how terms in the dictionary are used in context. This operation is used in tandem with `Dictionary lookup`.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Specifies the language of the output text. The target language must be one of the supported languages included in the `dictionary` scope.", + "default": "" + }, + { + "name": "from", + "type": "STRING", + "description": "Specifies the language of the input text. The source language must be one of the supported languages included in the `dictionary` scope.", + "default": "" + }, + { + "name": "api-version", + "type": "STRING", + "description": "Version of the API requested by the client. Value must be **3.0**.", + "default": "3.0" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Dictionary/Examples\"\nquerystring = {\"to\": \"\", \"from\": \"\", \"api-version\": \"3.0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://microsoft-translator-text.p.rapidapi.com/Dictionary/Examples\"\nquerystring = {\"to\": \"\", \"from\": \"\", \"api-version\": \"3.0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"microsoft-translator-text.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "Example of a successful dictionary example request", + "items": { + "properties": { + "examples": { + "items": { + "properties": { + "sourcePrefix": { + "type": "string" + }, + "sourceSuffix": { + "type": "string" + }, + "sourceTerm": { + "type": "string" + }, + "targetPrefix": { + "type": "string" + }, + "targetSuffix": { + "type": "string" + }, + "targetTerm": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "normalizedSource": { + "type": "string" + }, + "normalizedTarget": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/microsoft_translator_text/api.py b/toolbench/toolenv/tools/Translation/microsoft_translator_text/api.py new file mode 100644 index 0000000000000000000000000000000000000000..51feb27506030acfff4a9701b0f33ad7ad2ced8b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/microsoft_translator_text/api.py @@ -0,0 +1,39 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def languages(api_version: str, accept_language: str=None, x_clienttraceid: str=None, scope: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the set of languages currently supported by other operations of the Translator Text API." + api_version: Version of the API requested by the client. Value must be **3.0**. + accept_language: The language to use for user interface strings. Some of the fields in the response are names of languages or names of regions. Use this parameter to define the language in which these names are returned. The language is specified by providing a well-formed BCP 47 language tag. For instance, use the value `fr` to request names in French or use the value `zh-Hant` to request names in Chinese Traditional. Names are provided in the English language when a target language is not specified or when localization is not available. + x_clienttraceid: A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId. + scope: A comma-separated list of names defining the group of languages to return. Allowed group names are- `translation`, `transliteration` and `dictionary`. If no scope is given, then all groups are returned, which is equivalent to passing `scope=translation,transliteration,dictionary`. To decide which set of supported languages is appropriate for your scenario, see the description of the response object. + + """ + url = f"https://microsoft-translator-text.p.rapidapi.com/languages" + querystring = {'api-version': api_version, } + if accept_language: + querystring['Accept-Language'] = accept_language + if x_clienttraceid: + querystring['X-ClientTraceId'] = x_clienttraceid + if scope: + querystring['scope'] = scope + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "microsoft-translator-text.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/ms_translate.json b/toolbench/toolenv/tools/Translation/ms_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..64b983c1cfb65cd5ca35d70fa0e98a7ab201aeb8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ms_translate.json @@ -0,0 +1,37 @@ +{ + "tool_name":"MS Translate", + "tool_description":"Translate text to 100+ languages.", + "title":"MS Translate", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/apishub/api/ms-translate1/", + "host":"ms-translate1.p.rapidapi.com", + "api_list":[ + { + "name":"Translate", + "url":"https://ms-translate1.p.rapidapi.com/translate", + "description":"![](https://i.imgur.com/0aNqncl.png)", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"The sentence you wish to translate", + "default":"La oración que deseas traducir" + }, + { + "name":"lang", + "type":"STRING", + "description":"Target Language", + "default":"en" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ms-translate1.p.rapidapi.com/translate\"\nquerystring = {\"text\": text, \"lang\": lang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ms-translate1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/ms_translate/api.py b/toolbench/toolenv/tools/Translation/ms_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..98ac5a61a40495eec3eb7ab4fc32fa447cdcdf32 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/ms_translate/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(text: str, lang: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "![](https://i.imgur.com/0aNqncl.png)" + text: The sentence you wish to translate + lang: Target Language + + """ + url = f"https://ms-translate1.p.rapidapi.com/translate" + querystring = {'text': text, 'lang': lang, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ms-translate1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/multilingual_translate_service.json b/toolbench/toolenv/tools/Translation/multilingual_translate_service.json new file mode 100644 index 0000000000000000000000000000000000000000..21ba9c9e71c1902fbf06cfe91491c969316e42b0 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/multilingual_translate_service.json @@ -0,0 +1,54 @@ +{ + "tool_name": "Multilingual Translate Service", + "tool_description": "Multilingual API for translating large and small texts from $0.2 / per million characters", + "title": "Multilingual Translate Service", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 32297, + "avgSuccessRate": 100, + "popularityScore": 8.4, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/kiev3381917/api/multilingual-translate-service/", + "host": "multilingual-translate-service.p.rapidapi.com", + "api_list": [ + { + "name": "Full list of available languages", + "url": "https://multilingual-translate-service.p.rapidapi.com/GetLangs", + "description": "Language list for translation into both directions", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://multilingual-translate-service.p.rapidapi.com/GetLangs\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multilingual-translate-service.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Send Task To Translation", + "url": "https://multilingual-translate-service.p.rapidapi.com/Translation", + "description": "Setting a transfer problem. The result of the execution is a json massive", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://multilingual-translate-service.p.rapidapi.com/Translation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multilingual-translate-service.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Send Task To Translation", + "url": "https://multilingual-translate-service.p.rapidapi.com/Translation", + "description": "Setting a transfer problem. The result of the execution is a json massive", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://multilingual-translate-service.p.rapidapi.com/Translation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multilingual-translate-service.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://multilingual-translate-service.p.rapidapi.com/Translation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multilingual-translate-service.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/multilingual_translate_service/api.py b/toolbench/toolenv/tools/Translation/multilingual_translate_service/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e8ec3ccd971f0ee271a74c738e20dc851fc8b240 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/multilingual_translate_service/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def full_list_of_available_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Language list for translation into both directions" + + """ + url = f"https://multilingual-translate-service.p.rapidapi.com/getlangs" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multilingual-translate-service.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/multiple_language_translator_api.json b/toolbench/toolenv/tools/Translation/multiple_language_translator_api.json new file mode 100644 index 0000000000000000000000000000000000000000..ccf73f1e1a83981c4f38aa629714ef6cafffeb0f --- /dev/null +++ b/toolbench/toolenv/tools/Translation/multiple_language_translator_api.json @@ -0,0 +1,171 @@ +{ + "tool_name":"Multiple Language Translator API", + "tool_description":"Translates English to many other languages", + "title":"Multiple Language Translator API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/ej84/api/multiple-language-translator-api/", + "host":"multiple-language-translator-api.p.rapidapi.com", + "api_list":[ + { + "name":"Spanish to English Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_es_en", + "description":"Enter Spanish text to translate into English.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"Hola" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_es_en\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"English to Spanish Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_es", + "description":"Enter English word to output it in Spanish.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"Hello" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_es\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Chinese to English Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_ch_en", + "description":"Translates Chinese to English.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"你好" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_ch_en\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"English to Chinese Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_ch", + "description":"Translates English to Chinese.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"hello" + } + ], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_ch\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Korean to English Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_kr_en", + "description":"Translates Korean to English.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"안녕하세요" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_kr_en\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"English to Korean Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_kr", + "description":"Translates English to Korean.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"good morning" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_kr\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Japanese to English Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_jp_en", + "description":"Translates Japanese to English.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"こんにちは" + } + ], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_jp_en\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Englishto Japanese Translator", + "url":"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_jp", + "description":"Translates English to Japanese.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"Hello" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_jp\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"multiple-language-translator-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/multiple_language_translator_api/api.py b/toolbench/toolenv/tools/Translation/multiple_language_translator_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..dca864551dbc11fa5e27c08b746c66a2baca649f --- /dev/null +++ b/toolbench/toolenv/tools/Translation/multiple_language_translator_api/api.py @@ -0,0 +1,180 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def spanish_to_english_translator(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter Spanish text to translate into English." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_es_en" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def english_to_spanish_translator(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter English word to output it in Spanish." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_es" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def chinese_to_english_translator(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates Chinese to English." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_ch_en" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def english_to_chinese_translator(text: str='hello', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates English to Chinese." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_ch" + querystring = {} + if text: + querystring['text'] = text + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def korean_to_english_translator(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates Korean to English." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_kr_en" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def english_to_korean_translator(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates English to Korean." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_kr" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def japanese_to_english_translator(text: str='こんにちは', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates Japanese to English." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_jp_en" + querystring = {} + if text: + querystring['text'] = text + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def englishto_japanese_translator(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates English to Japanese." + + """ + url = f"https://multiple-language-translator-api.p.rapidapi.com/api/translate_en_jp" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "multiple-language-translator-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/murciaturistica.json b/toolbench/toolenv/tools/Translation/murciaturistica.json new file mode 100644 index 0000000000000000000000000000000000000000..a2921cffa8533412b7c9dee6fa9c7f05b1a18d91 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/murciaturistica.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Murciaturistica", + "tool_description":"API traduccion", + "title":"Murciaturistica", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/djbranigan/api/murciaturistica/", + "host":"murciaturistica.p.rapidapi.com", + "api_list":[ + { + "name":"PuntoFinal", + "url":"https://murciaturistica.p.rapidapi.com/", + "description":"Ni puta idea de lo que estoy haciendo macho.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://murciaturistica.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"murciaturistica.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/murciaturistica/api.py b/toolbench/toolenv/tools/Translation/murciaturistica/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6cb8682a8836fc5486e478e0482f879fc383447d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/murciaturistica/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def puntofinal(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Ni puta idea de lo que estoy haciendo macho." + + """ + url = f"https://murciaturistica.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "murciaturistica.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/my_translator_pro.json b/toolbench/toolenv/tools/Translation/my_translator_pro.json new file mode 100644 index 0000000000000000000000000000000000000000..cdf4d1954984d165849c0ef74e795a33b0ba621e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/my_translator_pro.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_bc782145-fe99-469a-911c-47c55e4ba6c9", + "tool_description": "Get an improved translation without the premium prices - supported for over 64 languages ", + "home_url": "https://rapidapi.com/healthytechguy/api/my-translator-pro/", + "name": "My Translator Pro", + "title": "My Translator Pro", + "pricing": "PAID", + "tool_name": "My Translator Pro", + "score": null, + "host": "my-translator-pro.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://my-translator-pro.p.rapidapi.com/api/translate", + "description": "Endpoint to send text to be translated", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://my-translator-pro.p.rapidapi.com/api/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"my-translator-pro.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://my-translator-pro.p.rapidapi.com/api/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"my-translator-pro.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/namba_translator.json b/toolbench/toolenv/tools/Translation/namba_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..5fad8b7958eb96281251a1e943d98517532fd2d8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/namba_translator.json @@ -0,0 +1,66 @@ +{ + "tool_name":"Namba Translator", + "tool_description":"Can translate any number to Swahili words.", + "title":"Namba Translator", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/Isayaisaya/api/namba-translator/", + "host":"namba-translator.p.rapidapi.com", + "api_list":[ + { + "name":"sw_num", + "url":"https://namba-translator.p.rapidapi.com/sw-num/{num}", + "description":"Can translate a number to Swahili words.", + "method":"GET", + "required_parameters":[ + { + "name":"num", + "type":"NUMBER", + "description":"", + "default":"43" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://namba-translator.p.rapidapi.com/sw-num/{num}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"namba-translator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "num":"43", + "words":" arobaini na tatu", + "formatted_num":"43" + } + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"63", + "content-type":"application/json; charset=utf-8", + "date":"Sun, 06 Feb 2022 08:39:15 GMT", + "etag":"W/\"3f-Hpl2TssxPrYn9RBMgU4ROMqHoQA\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "num":{ + "type":"string" + }, + "words":{ + "type":"string" + }, + "formatted_num":{ + "type":"string" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/namba_translator/api.py b/toolbench/toolenv/tools/Translation/namba_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1c1799f07ebaa3e3ab0303c6c404445d252ba467 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/namba_translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def sw_num(num: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Can translate a number to Swahili words." + + """ + url = f"https://namba-translator.p.rapidapi.com/sw-num/{num}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "namba-translator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/natural_translation.json b/toolbench/toolenv/tools/Translation/natural_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..93429f0ec522da517b8a6cf9f329b5f1792b2d1d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/natural_translation.json @@ -0,0 +1,43 @@ +{ + "product_id": "api_b4c61cf6-efeb-4b37-9740-8ee518e0b1ef", + "tool_description": "Natural Translation based on Google's Natural Language Processing library. 110+ Langs. HTML/Text/JSON.", + "home_url": "https://rapidapi.com/KGMK/api/natural-translation/", + "name": "Natural Translation", + "title": "Natural Translation", + "pricing": "FREEMIUM", + "tool_name": "Natural Translation", + "score": null, + "host": "natural-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://natural-translation.p.rapidapi.com/translate", + "description": "Translate Text or HTML", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "es" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello world" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://natural-translation.p.rapidapi.com/translate\"\nquerystring = {\"to\": \"es\", \"text\": \"Hello world\", \"from\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"natural-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://natural-translation.p.rapidapi.com/translate\"\nquerystring = {\"to\": \"es\", \"text\": \"Hello world\", \"from\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"natural-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/navicon1.json b/toolbench/toolenv/tools/Translation/navicon1.json new file mode 100644 index 0000000000000000000000000000000000000000..427ce6e110c9470c39f57125052b6ad2af792682 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/navicon1.json @@ -0,0 +1,24 @@ +{ + "tool_name":"navicon1", + "tool_description":"sg", + "title":"navicon1", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/tb2/api/navicon1/", + "host":"navicon1.p.rapidapi.com", + "api_list":[ + { + "name":"1", + "url":"https://navicon1.p.rapidapi.com/posts", + "description":"1", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://navicon1.p.rapidapi.com/posts\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"navicon1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/navicon1/api.py b/toolbench/toolenv/tools/Translation/navicon1/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0ef551f8846fbf348da68c5271bdfa3374006d5a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/navicon1/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_1(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "1" + + """ + url = f"https://navicon1.p.rapidapi.com/posts" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "navicon1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/neuro_high_quality_translation.json b/toolbench/toolenv/tools/Translation/neuro_high_quality_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..0a2268d8536cd6e21d07d77f15a4604e76f123bd --- /dev/null +++ b/toolbench/toolenv/tools/Translation/neuro_high_quality_translation.json @@ -0,0 +1,77 @@ +{ + "tool_name": "Neuro High-quality Translation", + "tool_description": "High-quality text translation based on neural networks and our own multi-model", + "title": "Neuro High-quality Translation", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 33189, + "avgSuccessRate": 100, + "popularityScore": 8.1, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/kiev3381917/api/neuro-high-quality-translation/", + "host": "neuro-high-quality-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Translation", + "url": "https://neuro-high-quality-translation.p.rapidapi.com/Translation", + "description": "Setting a transfer problem. The result of the execution is a json massive", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://neuro-high-quality-translation.p.rapidapi.com/Translation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"neuro-high-quality-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "result": true, + "text": "warto\u015b\u0107" + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "connection": "keep-alive", + "content-length": "42", + "content-type": "application/json", + "date": "Tue, 03 May 2022 22:46:13 GMT", + "server": "RapidAPI-1.2.8", + "x-powered-by": "Neuro High-quality Translation Server v.3.1", + "x-rapidapi-characters-remaining": "-222", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.8", + "x-ratelimit-characters-limit": "10000", + "x-ratelimit-characters-remaining": "9990", + "x-ratelimit-characters-reset": "2677945", + "x-ratelimit-requests-limit": "500", + "x-ratelimit-requests-remaining": "495", + "x-ratelimit-requests-reset": "2677945" + }, + "schema": {} + }, + { + "name": "List of available languages", + "url": "https://neuro-high-quality-translation.p.rapidapi.com/GetLangs", + "description": "Language list for translation into both directions", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://neuro-high-quality-translation.p.rapidapi.com/GetLangs\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"neuro-high-quality-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translation", + "url": "https://neuro-high-quality-translation.p.rapidapi.com/Translation", + "description": "Setting a transfer problem. The result of the execution is a json massive", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://neuro-high-quality-translation.p.rapidapi.com/Translation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"neuro-high-quality-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://neuro-high-quality-translation.p.rapidapi.com/Translation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"neuro-high-quality-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/neuro_high_quality_translation/api.py b/toolbench/toolenv/tools/Translation/neuro_high_quality_translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..326415cbed10b01afd4af6b85ebb6e6f00c746ca --- /dev/null +++ b/toolbench/toolenv/tools/Translation/neuro_high_quality_translation/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_of_available_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Language list for translation into both directions" + + """ + url = f"https://neuro-high-quality-translation.p.rapidapi.com/getlangs" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "neuro-high-quality-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/nitro.json b/toolbench/toolenv/tools/Translation/nitro.json new file mode 100644 index 0000000000000000000000000000000000000000..93cd3377b469e35cea48023d3712ba79baae749a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/nitro.json @@ -0,0 +1,948 @@ +{ + "product_id": "api_9837d3e8-606b-4a80-8bdf-f2dc69d7b35b", + "tool_description": "The Nitro API provides automated access to Nitro, a professional human-powered translation service with support for 70+ languages. ", + "home_url": "https://rapidapi.com/info-fPBM4OHdS/api/nitro/", + "name": "Nitro", + "title": "Nitro", + "pricing": "FREE", + "tool_name": "Nitro", + "score": { + "avgServiceLevel": 100, + "avgLatency": 313, + "avgSuccessRate": 9, + "popularityScore": 0.1, + "__typename": "Score" + }, + "host": "nitro.p.rapidapi.com", + "api_list": [ + { + "name": "Get a Specific Order", + "url": "https://nitro.p.rapidapi.com/orders/{id}", + "description": "This endpoint retrieves a specific order.", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/orders/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/orders/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Account", + "url": "https://nitro.p.rapidapi.com/account", + "description": "This endpoint retrieves an account.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/account\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/account\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get All Orders", + "url": "https://nitro.p.rapidapi.com/orders", + "description": "This endpoint retrieves all account orders.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/orders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/orders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Rates", + "url": "https://nitro.p.rapidapi.com/rates", + "description": "This endpoint retrieves all rates.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/rates\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/rates\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": [ + { + "source_language": "af", + "target_language": "af", + "rate": 12.1 + }, + { + "source_language": "ar", + "target_language": "ar", + "rate": 9.0 + }, + { + "source_language": "ar", + "target_language": "tr", + "rate": 20.0 + }, + { + "source_language": "az", + "target_language": "az", + "rate": 8.96 + }, + { + "source_language": "be", + "target_language": "be", + "rate": 5.5 + }, + { + "source_language": "be", + "target_language": "en", + "rate": 14.3 + }, + { + "source_language": "be", + "target_language": "ru", + "rate": 11.0 + }, + { + "source_language": "bg", + "target_language": "bg", + "rate": 9.92 + }, + { + "source_language": "bn", + "target_language": "bn", + "rate": 10.74 + }, + { + "source_language": "ca", + "target_language": "ca", + "rate": 11.5 + }, + { + "source_language": "cs", + "target_language": "cs", + "rate": 10.75 + }, + { + "source_language": "da", + "target_language": "da", + "rate": 14.5 + }, + { + "source_language": "de", + "target_language": "de", + "rate": 12.42 + }, + { + "source_language": "de", + "target_language": "en", + "rate": 24.85 + }, + { + "source_language": "de", + "target_language": "ru", + "rate": 16.67 + }, + { + "source_language": "el", + "target_language": "el", + "rate": 9.0 + }, + { + "source_language": "en", + "target_language": "af", + "rate": 24.2 + }, + { + "source_language": "en", + "target_language": "ar", + "rate": 16.7 + }, + { + "source_language": "en", + "target_language": "az", + "rate": 17.93 + }, + { + "source_language": "en", + "target_language": "be", + "rate": 14.0 + }, + { + "source_language": "en", + "target_language": "bg", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "bn", + "rate": 20.0 + }, + { + "source_language": "en", + "target_language": "ca", + "rate": 22.1 + }, + { + "source_language": "en", + "target_language": "cs", + "rate": 20.7 + }, + { + "source_language": "en", + "target_language": "da", + "rate": 29.0 + }, + { + "source_language": "en", + "target_language": "de", + "rate": 23.5 + }, + { + "source_language": "en", + "target_language": "el", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "en", + "rate": 13.0 + }, + { + "source_language": "en", + "target_language": "es-ES", + "rate": 16.6 + }, + { + "source_language": "en", + "target_language": "es-MX", + "rate": 16.5 + }, + { + "source_language": "en", + "target_language": "et", + "rate": 21.5 + }, + { + "source_language": "en", + "target_language": "fa", + "rate": 20.0 + }, + { + "source_language": "en", + "target_language": "fi", + "rate": 34.76 + }, + { + "source_language": "en", + "target_language": "fr", + "rate": 20.5 + }, + { + "source_language": "en", + "target_language": "fr-CA", + "rate": 27.6 + }, + { + "source_language": "en", + "target_language": "he", + "rate": 27.59 + }, + { + "source_language": "en", + "target_language": "hi", + "rate": 17.95 + }, + { + "source_language": "en", + "target_language": "hr", + "rate": 16.5 + }, + { + "source_language": "en", + "target_language": "hu", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "hy-AM", + "rate": 16.7 + }, + { + "source_language": "en", + "target_language": "id", + "rate": 17.0 + }, + { + "source_language": "en", + "target_language": "is", + "rate": 31.0 + }, + { + "source_language": "en", + "target_language": "it", + "rate": 16.5 + }, + { + "source_language": "en", + "target_language": "ja", + "rate": 31.4 + }, + { + "source_language": "en", + "target_language": "ka", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "kk", + "rate": 18.5 + }, + { + "source_language": "en", + "target_language": "ko", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "lt", + "rate": 19.4 + }, + { + "source_language": "en", + "target_language": "lv", + "rate": 21.5 + }, + { + "source_language": "en", + "target_language": "ml-IN", + "rate": 17.93 + }, + { + "source_language": "en", + "target_language": "ms", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "my", + "rate": 31.7 + }, + { + "source_language": "en", + "target_language": "nl", + "rate": 20.0 + }, + { + "source_language": "en", + "target_language": "no", + "rate": 31.4 + }, + { + "source_language": "en", + "target_language": "pl", + "rate": 16.6 + }, + { + "source_language": "en", + "target_language": "pt-BR", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "pt-PT", + "rate": 19.0 + }, + { + "source_language": "en", + "target_language": "ro", + "rate": 16.6 + }, + { + "source_language": "en", + "target_language": "ru", + "rate": 15.4 + }, + { + "source_language": "en", + "target_language": "sk", + "rate": 17.93 + }, + { + "source_language": "en", + "target_language": "sl", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "sr", + "rate": 17.93 + }, + { + "source_language": "en", + "target_language": "sr-CS", + "rate": 17.93 + }, + { + "source_language": "en", + "target_language": "sv-SE", + "rate": 26.17 + }, + { + "source_language": "en", + "target_language": "ta", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "te", + "rate": 18.0 + }, + { + "source_language": "en", + "target_language": "tg", + "rate": 19.3 + }, + { + "source_language": "en", + "target_language": "th", + "rate": 20.0 + }, + { + "source_language": "en", + "target_language": "tl", + "rate": 16.6 + }, + { + "source_language": "en", + "target_language": "tr", + "rate": 16.6 + }, + { + "source_language": "en", + "target_language": "uk", + "rate": 14.4 + }, + { + "source_language": "en", + "target_language": "ur-PK", + "rate": 20.5 + }, + { + "source_language": "en", + "target_language": "uz", + "rate": 16.7 + }, + { + "source_language": "en", + "target_language": "vi", + "rate": 17.95 + }, + { + "source_language": "en", + "target_language": "zh-CN", + "rate": 19.9 + }, + { + "source_language": "en", + "target_language": "zh-TW", + "rate": 19.9 + }, + { + "source_language": "es-ES", + "target_language": "es-ES", + "rate": 9.12 + }, + { + "source_language": "es-MX", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "es-MX", + "target_language": "es-MX", + "rate": 7.5 + }, + { + "source_language": "et", + "target_language": "et", + "rate": 10.75 + }, + { + "source_language": "fa", + "target_language": "fa", + "rate": 10.0 + }, + { + "source_language": "fi", + "target_language": "fi", + "rate": 15.7 + }, + { + "source_language": "fr", + "target_language": "en", + "rate": 24.0 + }, + { + "source_language": "fr", + "target_language": "fr", + "rate": 10.8 + }, + { + "source_language": "fr", + "target_language": "ru", + "rate": 15.4 + }, + { + "source_language": "fr-CA", + "target_language": "en", + "rate": 15.0 + }, + { + "source_language": "he", + "target_language": "he", + "rate": 13.8 + }, + { + "source_language": "he", + "target_language": "ru", + "rate": 24.2 + }, + { + "source_language": "hi", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "hi", + "target_language": "hi", + "rate": 8.95 + }, + { + "source_language": "hr", + "target_language": "hr", + "rate": 8.2 + }, + { + "source_language": "hu", + "target_language": "hu", + "rate": 9.0 + }, + { + "source_language": "id", + "target_language": "en", + "rate": 30.0 + }, + { + "source_language": "id", + "target_language": "id", + "rate": 8.7 + }, + { + "source_language": "is", + "target_language": "is", + "rate": 15.5 + }, + { + "source_language": "it", + "target_language": "it", + "rate": 8.24 + }, + { + "source_language": "it", + "target_language": "ru", + "rate": 15.4 + }, + { + "source_language": "ja", + "target_language": "en", + "rate": 110.0 + }, + { + "source_language": "ja", + "target_language": "fr", + "rate": 75.0 + }, + { + "source_language": "ja", + "target_language": "id", + "rate": 75.0 + }, + { + "source_language": "ja", + "target_language": "ja", + "rate": 45.0 + }, + { + "source_language": "ja", + "target_language": "ko", + "rate": 75.0 + }, + { + "source_language": "ja", + "target_language": "ru", + "rate": 40.0 + }, + { + "source_language": "ja", + "target_language": "th", + "rate": 75.0 + }, + { + "source_language": "ja", + "target_language": "zh-CN", + "rate": 83.34 + }, + { + "source_language": "ja", + "target_language": "zh-TW", + "rate": 83.34 + }, + { + "source_language": "kk", + "target_language": "kk", + "rate": 9.25 + }, + { + "source_language": "ko", + "target_language": "en", + "rate": 120.0 + }, + { + "source_language": "ko", + "target_language": "ko", + "rate": 10.8 + }, + { + "source_language": "lt", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "lt", + "target_language": "lt", + "rate": 9.7 + }, + { + "source_language": "lt", + "target_language": "ru", + "rate": 20.0 + }, + { + "source_language": "lv", + "target_language": "lv", + "rate": 10.75 + }, + { + "source_language": "ml-IN", + "target_language": "ml-IN", + "rate": 9.0 + }, + { + "source_language": "ms", + "target_language": "en", + "rate": 30.0 + }, + { + "source_language": "ms", + "target_language": "ms", + "rate": 9.0 + }, + { + "source_language": "my", + "target_language": "my", + "rate": 15.7 + }, + { + "source_language": "nl", + "target_language": "nl", + "rate": 10.74 + }, + { + "source_language": "no", + "target_language": "no", + "rate": 15.8 + }, + { + "source_language": "pl", + "target_language": "pl", + "rate": 8.3 + }, + { + "source_language": "pl", + "target_language": "ru", + "rate": 15.4 + }, + { + "source_language": "pt-BR", + "target_language": "pt-BR", + "rate": 9.0 + }, + { + "source_language": "pt-PT", + "target_language": "pt-PT", + "rate": 10.0 + }, + { + "source_language": "ro", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "ro", + "target_language": "ro", + "rate": 8.3 + }, + { + "source_language": "ru", + "target_language": "az", + "rate": 17.93 + }, + { + "source_language": "ru", + "target_language": "be", + "rate": 14.0 + }, + { + "source_language": "ru", + "target_language": "cs", + "rate": 18.0 + }, + { + "source_language": "ru", + "target_language": "de", + "rate": 23.5 + }, + { + "source_language": "ru", + "target_language": "en", + "rate": 25.0 + }, + { + "source_language": "ru", + "target_language": "es-ES", + "rate": 16.6 + }, + { + "source_language": "ru", + "target_language": "fr", + "rate": 19.9 + }, + { + "source_language": "ru", + "target_language": "he", + "rate": 27.59 + }, + { + "source_language": "ru", + "target_language": "hy-AM", + "rate": 16.7 + }, + { + "source_language": "ru", + "target_language": "it", + "rate": 14.0 + }, + { + "source_language": "ru", + "target_language": "ja", + "rate": 30.0 + }, + { + "source_language": "ru", + "target_language": "ka", + "rate": 19.71 + }, + { + "source_language": "ru", + "target_language": "kk", + "rate": 17.95 + }, + { + "source_language": "ru", + "target_language": "lt", + "rate": 19.7 + }, + { + "source_language": "ru", + "target_language": "lv", + "rate": 20.0 + }, + { + "source_language": "ru", + "target_language": "pt-BR", + "rate": 18.0 + }, + { + "source_language": "ru", + "target_language": "pt-PT", + "rate": 21.7 + }, + { + "source_language": "ru", + "target_language": "ru", + "rate": 7.7 + }, + { + "source_language": "ru", + "target_language": "sr", + "rate": 17.92 + }, + { + "source_language": "ru", + "target_language": "sr-CS", + "rate": 17.92 + }, + { + "source_language": "ru", + "target_language": "tr", + "rate": 15.4 + }, + { + "source_language": "ru", + "target_language": "uk", + "rate": 13.81 + }, + { + "source_language": "ru", + "target_language": "zh-CN", + "rate": 19.0 + }, + { + "source_language": "sk", + "target_language": "sk", + "rate": 8.96 + }, + { + "source_language": "sl", + "target_language": "sl", + "rate": 9.0 + }, + { + "source_language": "sr", + "target_language": "sr", + "rate": 8.96 + }, + { + "source_language": "sr-CS", + "target_language": "sr-CS", + "rate": 8.96 + }, + { + "source_language": "sv-SE", + "target_language": "sv-SE", + "rate": 13.1 + }, + { + "source_language": "ta", + "target_language": "ta", + "rate": 9.0 + }, + { + "source_language": "th", + "target_language": "th", + "rate": 10.0 + }, + { + "source_language": "tl", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "tr", + "target_language": "tr", + "rate": 8.95 + }, + { + "source_language": "uk", + "target_language": "en", + "rate": 24.0 + }, + { + "source_language": "uk", + "target_language": "ru", + "rate": 7.7 + }, + { + "source_language": "uk", + "target_language": "uk", + "rate": 7.7 + }, + { + "source_language": "ur-PK", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "ur-PK", + "target_language": "ur-PK", + "rate": 10.74 + }, + { + "source_language": "vi", + "target_language": "en", + "rate": 20.0 + }, + { + "source_language": "vi", + "target_language": "vi", + "rate": 8.97 + }, + { + "source_language": "zh-CN", + "target_language": "en", + "rate": 90.0 + }, + { + "source_language": "zh-CN", + "target_language": "ja", + "rate": 90.0 + }, + { + "source_language": "zh-CN", + "target_language": "ko", + "rate": 50.0 + }, + { + "source_language": "zh-CN", + "target_language": "ru", + "rate": 45.0 + }, + { + "source_language": "zh-CN", + "target_language": "zh-CN", + "rate": 40.0 + }, + { + "source_language": "zh-TW", + "target_language": "en", + "rate": 90.0 + }, + { + "source_language": "zh-TW", + "target_language": "ja", + "rate": 90.0 + }, + { + "source_language": "zh-TW", + "target_language": "ru", + "rate": 45.0 + }, + { + "source_language": "zh-TW", + "target_language": "zh-TW", + "rate": 40.0 + } + ] + }, + { + "name": "Translate", + "url": "https://nitro.p.rapidapi.com/translate", + "description": "This endpoint sends the text for translation and creates a list of orders.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nitro.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nitro.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "nitro" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/nitro/api.py b/toolbench/toolenv/tools/Translation/nitro/api.py new file mode 100644 index 0000000000000000000000000000000000000000..76fd8f793beb1c5f317ede22159a3c2b10ba9dac --- /dev/null +++ b/toolbench/toolenv/tools/Translation/nitro/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_a_specific_order(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint retrieves a specific order." + + """ + url = f"https://nitro.p.rapidapi.com/orders/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "nitro.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def account(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint retrieves an account." + + """ + url = f"https://nitro.p.rapidapi.com/account" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "nitro.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_orders(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint retrieves all account orders." + + """ + url = f"https://nitro.p.rapidapi.com/orders" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "nitro.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def rates(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint retrieves all rates." + + """ + url = f"https://nitro.p.rapidapi.com/rates" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "nitro.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/nlp_translation.json b/toolbench/toolenv/tools/Translation/nlp_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..6a81b4ac2afcffa50735c8b4f5b09ce8d7809368 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/nlp_translation.json @@ -0,0 +1,353 @@ +{ + "tool_name": "NLP Translation", + "tool_description": "Neural Translate. 110+ Langs. HTML/Text/JSON. Protected words. Multiple target langs in single request.", + "title": "NLP Translation", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 97, + "avgLatency": 2387, + "avgSuccessRate": 97, + "popularityScore": 9.9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/gofitech/api/nlp-translation/", + "host": "nlp-translation.p.rapidapi.com", + "api_list": [ + { + "name": "JSON Data Translate", + "url": "https://nlp-translation.p.rapidapi.com/v1/jsontranslate", + "description": "Translate values inside JSON formatted string with **protected keys** and **protected words** capabilities", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "to", + "type": "STRING", + "description": "", + "default": "es" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "{\"name\":{\"firstName\":\"George\",\"lastName\":\"Bush\"},\"age\":30,\"Address\":null,\"cities\":[{\"code\":\"NYC\",\"name\":\"New York City\",\"state\":\"New York\",\"lat\":40.73061,\"long\":-73.935242,\"description\":\"

New York City (NYC), often called New York (NY), is the most populous city in the United States. With an estimated 2019 population of 8,336,817 distributed over about 302.6 square miles (784 km2), New York is also the most densely populated major city in the United States.

\"},{\"code\":\"LA\",\"name\":\"City of Los Angeles\",\"state\":\"California\",\"lat\":34.05,\"long\":-118.25,\"description\":\"

Los Angeles (l\u0254\u02d0s \u02c8\u00e6nd\u0292\u0259l\u0259s); Spanish: Los \u00c1ngeles; Spanish for 'The Angels'), officially the City of Los Angeles and often known by its initials L.A., is the largest city in California. With an estimated population of nearly four million people, it is the second-most populous city in the United States (after New York City) and the third-most populous city in North America (after Mexico City and New York City).

\"}]}" + } + ], + "optional_parameters": [ + { + "name": "protected_words", + "type": "STRING", + "description": "", + "default": "New York;Los Angeles" + }, + { + "name": "protected_keys", + "type": "STRING", + "description": "", + "default": "name.firstName;name.lastName;cities.code" + } + ], + "code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/jsontranslate\"\nquerystring = {\"protected_words\": protected_words, \"from\": is_from, \"to\": to, \"protected_keys\": protected_keys, \"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "from": "en", + "original_json": "{\"name\":{\"firstName\":\"George\",\"lastName\":\"Bush\"},\"age\":30,\"Address\":null,\"cities\":[{\"code\":\"NYC\",\"name\":\"New York City\",\"state\":\"New York\",\"lat\":40.73061,\"long\":-73.935242,\"description\":\"

New York City (NYC), often called New York (NY), is the most populous city in the United States. With an estimated 2019 population of 8,336,817 distributed over about 302.6 square miles (784 km2), New York is also the most densely populated major city in the United States.

\"},{\"code\":\"LA\",\"name\":\"City of Los Angeles\",\"state\":\"California\",\"lat\":34.05,\"long\":-118.25,\"description\":\"

Los Angeles (l\u0254\u02d0s \u02c8\u00e6nd\u0292\u0259l\u0259s); Spanish: Los \u00c1ngeles; Spanish for 'The Angels'), officially the City of Los Angeles and often known by its initials L.A., is the largest city in California. With an estimated population of nearly four million people, it is the second-most populous city in the United States (after New York City) and the third-most populous city in North America (after Mexico City and New York City).

\"}]}", + "protected_keys": "name.firstName;name.lastName;cities.code", + "protected_words": "New York;Los Angeles", + "status": 200, + "to": "es", + "translated_characters": 1251, + "translated_json": { + "es": "{\"name\":{\"firstName\":\"George\",\"lastName\":\"Bush\"},\"age\":30,\"Address\":null,\"cities\":[{\"code\":\"NYC\",\"name\":\"New York Ciudad\",\"state\":\"New York\",\"lat\":40.73061,\"long\":-73.935242,\"description\":\"

New York City (NYC), a menudo llamada New York (NY), es la ciudad m\u00e1s poblada de los Estados Unidos. Con una poblaci\u00f3n estimada en 2019 de 8,336,817 distribuida en aproximadamente 302.6 millas cuadradas (784 km2), New York es tambi\u00e9n la ciudad principal m\u00e1s densamente poblada de los Estados Unidos.

\"},{\"code\":\"LA\",\"name\":\"Ciudad de Los Angeles\",\"state\":\"California\",\"lat\":34.05,\"long\":-118.25,\"description\":\"

Los Angeles (l\u0254\u02d0s \u02c8\u00e6nd\u0292\u0259l\u0259s); Espa\u00f1ol: Los \u00c1ngeles; Espa\u00f1ol para 'Los \u00c1ngeles'), oficialmente la ciudad de Los Angeles y a menudo conocida por sus iniciales LA, es la ciudad m\u00e1s grande de California. Con una poblaci\u00f3n estimada de casi cuatro millones de personas, es la segunda ciudad m\u00e1s poblada de los Estados Unidos (despu\u00e9s de New York City) y la tercera ciudad m\u00e1s poblada de Am\u00e9rica del Norte (despu\u00e9s de la Ciudad de M\u00e9xico y New York City).

\"}]}" + } + }, + "headers": { + "content-type": "application/json; charset=utf-8", + "date": "Fri, 14 Aug 2020 12:30:51 GMT", + "server": "RapidAPI-1.1.24", + "x-engine-id": "ta0-5f245e231cfee9002fb7ffff", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.1.24", + "content-length": "2424", + "connection": "Close" + }, + "schema": {} + }, + { + "name": "Translate", + "url": "https://nlp-translation.p.rapidapi.com/v1/translate", + "description": "Translate Text or HTML", + "method": "GET", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "es" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello, world!!" + } + ], + "optional_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "protected_words", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/translate\"\nquerystring = {\"to\": to, \"text\": text, \"from\": is_from}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "from": "en", + "to": "es", + "original_text": "Hello World", + "translated_text": { + "es": "Hola Mundo" + }, + "translated_characters": 11 + }, + "headers": { + "content-type": "application/json; charset=utf-8", + "date": "Fri, 14 Aug 2020 12:28:06 GMT", + "server": "RapidAPI-1.1.24", + "x-characters-count": "14", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.1.24", + "content-length": "140", + "connection": "Close" + }, + "schema": { + "properties": { + "from": { + "type": "string" + }, + "original_text": { + "type": "string" + }, + "status": { + "type": "integer" + }, + "to": { + "type": "string" + }, + "translated_characters": { + "type": "integer" + }, + "translated_text": { + "properties": { + "es": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + { + "name": "Translate", + "url": "https://nlp-translation.p.rapidapi.com/v1/translate", + "description": "Translate Text or HTML", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "HTML or plain text to translate", + "default": "Hello World" + }, + { + "name": "to", + "type": "STRING", + "description": "Destination Language code. Case sensitive.", + "default": "es" + } + ], + "optional_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Source Language. Case sensitive. Leave it blank is not recommended", + "default": "en" + }, + { + "name": "protected_words", + "type": "STRING", + "description": "Case sensitive. Separated with semicolon (;)", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/translate\"\nquerystring = {\"from\": is_from, \"text\": text, \"to\": to}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "from": "en", + "to": "es", + "original_text": "Hello World", + "translated_text": { + "es": "Hola Mundo" + }, + "translated_characters": 11 + }, + "headers": { + "content-type": "application/json; charset=utf-8", + "date": "Wed, 30 Oct 2019 01:28:32 GMT", + "server": "RapidAPI-1.0.32", + "x-characters-count": "11", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.0.32", + "content-length": "118", + "connection": "Close" + }, + "schema": { + "properties": { + "from": { + "type": "string" + }, + "original_text": { + "type": "string" + }, + "to": { + "type": "string" + }, + "translated_characters": { + "type": "integer" + }, + "translated_text": { + "properties": { + "es": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + { + "name": "JSON Data Translate", + "url": "https://nlp-translation.p.rapidapi.com/v1/jsontranslate", + "description": "Translate values inside JSON formatted string with **protected keys** and **protected words** capabilities", + "method": "POST", + "required_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "to", + "type": "STRING", + "description": "", + "default": "es" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "{\"name\":{\"firstName\":\"George\",\"lastName\":\"Bush\"},\"age\":30,\"Address\":null,\"cities\":[{\"code\":\"NYC\",\"name\":\"New York City\",\"state\":\"New York\",\"lat\":40.73061,\"long\":-73.935242,\"description\":\"

New York City (NYC), often called New York (NY), is the most populous city in the United States. With an estimated 2019 population of 8,336,817 distributed over about 302.6 square miles (784 km2), New York is also the most densely populated major city in the United States.

\"},{\"code\":\"LA\",\"name\":\"City of Los Angeles\",\"state\":\"California\",\"lat\":34.05,\"long\":-118.25,\"description\":\"

Los Angeles (l\u0254\u02d0s \u02c8\u00e6nd\u0292\u0259l\u0259s); Spanish: Los \u00c1ngeles; Spanish for 'The Angels'), officially the City of Los Angeles and often known by its initials L.A., is the largest city in California. With an estimated population of nearly four million people, it is the second-most populous city in the United States (after New York City) and the third-most populous city in North America (after Mexico City and New York City).

\"}]}" + } + ], + "optional_parameters": [ + { + "name": "protected_words", + "type": "STRING", + "description": "", + "default": "New York;Los Angeles" + }, + { + "name": "protected_keys", + "type": "STRING", + "description": "", + "default": "name.firstName;name.lastName;cities.code" + } + ], + "code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/jsontranslate\"\nquerystring = {\"protected_words\": \"New York;Los Angeles\", \"from\": \"en\", \"to\": \"es\", \"protected_keys\": \"name.firstName;name.lastName;cities.code\", \"json\": \"{\\\"name\\\":{\\\"firstName\\\":\\\"George\\\",\\\"lastName\\\":\\\"Bush\\\"},\\\"age\\\":30,\\\"Address\\\":null,\\\"cities\\\":[{\\\"code\\\":\\\"NYC\\\",\\\"name\\\":\\\"New York City\\\",\\\"state\\\":\\\"New York\\\",\\\"lat\\\":40.73061,\\\"long\\\":-73.935242,\\\"description\\\":\\\"

New York City (NYC), often called New York (NY), is the most populous city in the United States. With an estimated 2019 population of 8,336,817 distributed over about 302.6 square miles (784 km2), New York is also the most densely populated major city in the United States.

\\\"},{\\\"code\\\":\\\"LA\\\",\\\"name\\\":\\\"City of Los Angeles\\\",\\\"state\\\":\\\"California\\\",\\\"lat\\\":34.05,\\\"long\\\":-118.25,\\\"description\\\":\\\"

Los Angeles (l\u0254\u02d0s \u02c8\u00e6nd\u0292\u0259l\u0259s); Spanish: Los \u00c1ngeles; Spanish for 'The Angels'), officially the City of Los Angeles and often known by its initials L.A., is the largest city in California. With an estimated population of nearly four million people, it is the second-most populous city in the United States (after New York City) and the third-most populous city in North America (after Mexico City and New York City).

\\\"}]}\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/jsontranslate\"\nquerystring = {\"protected_words\": \"New York;Los Angeles\", \"from\": \"en\", \"to\": \"es\", \"protected_keys\": \"name.firstName;name.lastName;cities.code\", \"json\": \"{\\\"name\\\":{\\\"firstName\\\":\\\"George\\\",\\\"lastName\\\":\\\"Bush\\\"},\\\"age\\\":30,\\\"Address\\\":null,\\\"cities\\\":[{\\\"code\\\":\\\"NYC\\\",\\\"name\\\":\\\"New York City\\\",\\\"state\\\":\\\"New York\\\",\\\"lat\\\":40.73061,\\\"long\\\":-73.935242,\\\"description\\\":\\\"

New York City (NYC), often called New York (NY), is the most populous city in the United States. With an estimated 2019 population of 8,336,817 distributed over about 302.6 square miles (784 km2), New York is also the most densely populated major city in the United States.

\\\"},{\\\"code\\\":\\\"LA\\\",\\\"name\\\":\\\"City of Los Angeles\\\",\\\"state\\\":\\\"California\\\",\\\"lat\\\":34.05,\\\"long\\\":-118.25,\\\"description\\\":\\\"

Los Angeles (l\u0254\u02d0s \u02c8\u00e6nd\u0292\u0259l\u0259s); Spanish: Los \u00c1ngeles; Spanish for 'The Angels'), officially the City of Los Angeles and often known by its initials L.A., is the largest city in California. With an estimated population of nearly four million people, it is the second-most populous city in the United States (after New York City) and the third-most populous city in North America (after Mexico City and New York City).

\\\"}]}\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Translate", + "url": "https://nlp-translation.p.rapidapi.com/v1/translate", + "description": "Translate Text or HTML", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "HTML or plain text to translate", + "default": "Hello World" + }, + { + "name": "to", + "type": "STRING", + "description": "Destination Language code. Case sensitive.", + "default": "es" + } + ], + "optional_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Source Language. Case sensitive. Leave it blank is not recommended", + "default": "en" + }, + { + "name": "protected_words", + "type": "STRING", + "description": "Case sensitive. Separated with semicolon (;)", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/translate\"\nquerystring = {\"from\": \"en\", \"protected_words\": \"\", \"text\": \"Hello World\", \"to\": \"es\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://nlp-translation.p.rapidapi.com/v1/translate\"\nquerystring = {\"from\": \"en\", \"protected_words\": \"\", \"text\": \"Hello World\", \"to\": \"es\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nlp-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "properties": { + "from": { + "type": "string" + }, + "original_text": { + "type": "string" + }, + "to": { + "type": "string" + }, + "translated_characters": { + "type": "integer" + }, + "translated_text": { + "properties": { + "es": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/nlp_translation/api.py b/toolbench/toolenv/tools/Translation/nlp_translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6984460338c129790fc24dc30515e79dacd81f0e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/nlp_translation/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(to: str, text: str, is_from: str='en', protected_words: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate Text or HTML" + + """ + url = f"https://nlp-translation.p.rapidapi.com/v1/translate" + querystring = {'to': to, 'text': text, } + if is_from: + querystring['from'] = is_from + if protected_words: + querystring['protected_words'] = protected_words + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "nlp-translation.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/number_to_numeral_converter.json b/toolbench/toolenv/tools/Translation/number_to_numeral_converter.json new file mode 100644 index 0000000000000000000000000000000000000000..64d390174f88e8b6c06c2496e5791e88475dfa9d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/number_to_numeral_converter.json @@ -0,0 +1,31 @@ +{ + "tool_name":"Number-to-Numeral Converter", + "tool_description":"An api that provides the Roman numeral for a given number between 1 - 1000", + "title":"Number-to-Numeral Converter", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/CSC-89/api/number-to-numeral-converter/", + "host":"number-to-numeral-converter.p.rapidapi.com", + "api_list":[ + { + "name":"Get Numeral", + "url":"https://number-to-numeral-converter.p.rapidapi.com/api/{number}", + "description":"Send out a number, receive its numeral equivalent", + "method":"GET", + "required_parameters":[ + { + "name":"number", + "type":"string", + "description":"", + "default":"456" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://number-to-numeral-converter.p.rapidapi.com/api/{number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"number-to-numeral-converter.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/number_to_numeral_converter/api.py b/toolbench/toolenv/tools/Translation/number_to_numeral_converter/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7f6b606d8a0fc2a8454474b577b5271f7aea4d37 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/number_to_numeral_converter/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_numeral(number: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Send out a number, receive its numeral equivalent" + + """ + url = f"https://number-to-numeral-converter.p.rapidapi.com/api/{number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "number-to-numeral-converter.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/opentranslator.json b/toolbench/toolenv/tools/Translation/opentranslator.json new file mode 100644 index 0000000000000000000000000000000000000000..b4d08d4f775822c5b463d8f752eb9eee355e93ff --- /dev/null +++ b/toolbench/toolenv/tools/Translation/opentranslator.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_bb84551d-6e6b-424e-9add-f17bc990f391", + "tool_description": "It's a free translator that helps you translate any text to any language", + "home_url": "https://rapidapi.com/falcondsp/api/opentranslator/", + "name": "OpenTranslator", + "title": "OpenTranslator", + "pricing": "FREEMIUM", + "tool_name": "OpenTranslator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2448, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "opentranslator.p.rapidapi.com", + "api_list": [ + { + "name": "Open Translator", + "url": "https://opentranslator.p.rapidapi.com/translate", + "description": "This is open translator by AI", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://opentranslator.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"opentranslator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://opentranslator.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"opentranslator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/prima_translation.json b/toolbench/toolenv/tools/Translation/prima_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..1fcdc0884b5c406f661b1289aeed943e8021fc9c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/prima_translation.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_cd1a5f02-2832-4a5d-9726-8e045824eafa", + "tool_description": "Universal translator of high quality text", + "home_url": "https://rapidapi.com/kiev3381917/api/prima-translation/", + "name": "Prima Translation", + "title": "Prima Translation", + "pricing": "FREEMIUM", + "tool_name": "Prima Translation", + "score": null, + "host": "prima-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Create Translation", + "url": "https://prima-translation.p.rapidapi.com/task", + "description": "Sending the text to transfer to service. \n\nThe main feature of our system of active translation of the text is payment for contacting API, which allows you to greatly reduce the cost compared to competitors.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://prima-translation.p.rapidapi.com/task\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"prima-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://prima-translation.p.rapidapi.com/task\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"prima-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/qr_api.json b/toolbench/toolenv/tools/Translation/qr_api.json new file mode 100644 index 0000000000000000000000000000000000000000..fcbeacbced11267da0f1052cb52f903ce609e99a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/qr_api.json @@ -0,0 +1,31 @@ +{ + "tool_name":"QR API", + "tool_description":"This API takes URL/String and gives 'QR' image\nSend the URL and get QR code as response.", + "title":"QR API", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sujalpatni007/api/qr-api6/", + "host":"qr-api6.p.rapidapi.com", + "api_list":[ + { + "name":"Qr Image", + "url":"https://qr-api6.p.rapidapi.com/qr", + "description":"This end point takes a 'GET' request with url/ string as a parameter and gives back a QR code image.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"url", + "type":"STRING", + "description":"", + "default":"https://www.google.com" + } + ], + "code":"import requests\n\nurl = \"https://qr-api6.p.rapidapi.com/qr\"\nquerystring = {\"url\": url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"qr-api6.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/qr_api/api.py b/toolbench/toolenv/tools/Translation/qr_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e1e7f1acaad67c302b8fb7b4379d72370ea6f4db --- /dev/null +++ b/toolbench/toolenv/tools/Translation/qr_api/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def qr_image(url: str='https://www.google.com', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This end point takes a 'GET' request with url/ string as a parameter and gives back a QR code image." + + """ + url = f"https://qr-api6.p.rapidapi.com/qr" + querystring = {} + if url: + querystring['url'] = url + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "qr-api6.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/rapid_translate.json b/toolbench/toolenv/tools/Translation/rapid_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..c587cd1d946bf59d3b8ad374ae107d0e4677ac6e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/rapid_translate.json @@ -0,0 +1,390 @@ +{ + "tool_name": "Rapid Translate", + "tool_description": "Translate texts between 50+ natural languages.", + "title": "Rapid Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 225, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/petadata/api/rapid-translate/", + "host": "rapid-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Get Languages", + "url": "https://rapid-translate.p.rapidapi.com/GetLanguages", + "description": "Returns supported language list.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rapid-translate.p.rapidapi.com/GetLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rapid-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": [ + { + "code": "ar", + "englishName": "Arabic", + "nativeName": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629" + }, + { + "code": "as", + "englishName": "Assamese", + "nativeName": "Assamese" + }, + { + "code": "bg", + "englishName": "Bulgarian", + "nativeName": "\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438" + }, + { + "code": "bn", + "englishName": "Bangla", + "nativeName": "\u09ac\u09be\u0982\u09b2\u09be" + }, + { + "code": "ca", + "englishName": "Catalan", + "nativeName": "Catal\u00e0" + }, + { + "code": "cs", + "englishName": "Czech", + "nativeName": "\u010ce\u0161tina" + }, + { + "code": "da", + "englishName": "Danish", + "nativeName": "Dansk" + }, + { + "code": "de", + "englishName": "German", + "nativeName": "Deutsch" + }, + { + "code": "el", + "englishName": "Greek", + "nativeName": "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac" + }, + { + "code": "en", + "englishName": "English", + "nativeName": "English" + }, + { + "code": "es", + "englishName": "Spanish", + "nativeName": "Espa\u00f1ol" + }, + { + "code": "fa", + "englishName": "Persian", + "nativeName": "Persian" + }, + { + "code": "fi", + "englishName": "Finnish", + "nativeName": "Suomi" + }, + { + "code": "fil", + "englishName": "Filipino", + "nativeName": "Filipino" + }, + { + "code": "fr-fr", + "englishName": "French", + "nativeName": "Fran\u00e7ais" + }, + { + "code": "fr-ca", + "englishName": "French (Canada)", + "nativeName": "French (Canada)" + }, + { + "code": "gu", + "englishName": "Gujarati", + "nativeName": "\u0a97\u0ac1\u0a9c\u0ab0\u0abe\u0aa4\u0ac0" + }, + { + "code": "he", + "englishName": "Hebrew", + "nativeName": "\u05e2\u05d1\u05e8\u05d9\u05ea" + }, + { + "code": "hi", + "englishName": "Hindi", + "nativeName": "\u0939\u093f\u0902\u0926\u0940" + }, + { + "code": "hr", + "englishName": "Croatian", + "nativeName": "Hrvatski" + }, + { + "code": "ht", + "englishName": "Haitian Creole", + "nativeName": "Haitian Creole" + }, + { + "code": "hu", + "englishName": "Hungarian", + "nativeName": "Magyar" + }, + { + "code": "id", + "englishName": "Indonesian", + "nativeName": "Indonesia" + }, + { + "code": "it", + "englishName": "Italian", + "nativeName": "Italiano" + }, + { + "code": "ja", + "englishName": "Japanese", + "nativeName": "\u65e5\u672c\u8a9e" + }, + { + "code": "kk", + "englishName": "Kazakh", + "nativeName": "Kazakh" + }, + { + "code": "kn", + "englishName": "Kannada", + "nativeName": "\u0c95\u0ca8\u0ccd\u0ca8\u0ca1" + }, + { + "code": "ko", + "englishName": "Korean", + "nativeName": "\ud55c\uad6d\uc5b4" + }, + { + "code": "lt", + "englishName": "Lithuanian", + "nativeName": "Lietuvi\u0173" + }, + { + "code": "mg", + "englishName": "Malagasy", + "nativeName": "Malagasy" + }, + { + "code": "ml", + "englishName": "Malayalam", + "nativeName": "\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02" + }, + { + "code": "mr", + "englishName": "Marathi", + "nativeName": "\u092e\u0930\u093e\u0920\u0940" + }, + { + "code": "ms", + "englishName": "Malay", + "nativeName": "Melayu" + }, + { + "code": "nb", + "englishName": "Norwegian", + "nativeName": "Norsk" + }, + { + "code": "nl", + "englishName": "Dutch", + "nativeName": "Nederlands" + }, + { + "code": "or", + "englishName": "Odia", + "nativeName": "Odia" + }, + { + "code": "pa", + "englishName": "Punjabi", + "nativeName": "\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40" + }, + { + "code": "pl", + "englishName": "Polish", + "nativeName": "Polski" + }, + { + "code": "ps", + "englishName": "Pashto", + "nativeName": "Pashto" + }, + { + "code": "pt-br", + "englishName": "Portuguese (Brazil)", + "nativeName": "Portugu\u00eas (Brasil)" + }, + { + "code": "pt-pt", + "englishName": "Portuguese (Portugal)", + "nativeName": "Portugu\u00eas (Portugal)" + }, + { + "code": "ro", + "englishName": "Romanian", + "nativeName": "Rom\u00e2n\u0103" + }, + { + "code": "ru", + "englishName": "Russian", + "nativeName": "\u0420\u0443\u0441\u0441\u043a\u0438\u0439" + }, + { + "code": "sk", + "englishName": "Slovak", + "nativeName": "Sloven\u010dina" + }, + { + "code": "sl", + "englishName": "Slovenian", + "nativeName": "Sloven\u0161\u010dina" + }, + { + "code": "sv", + "englishName": "Swedish", + "nativeName": "Svenska" + }, + { + "code": "sw", + "englishName": "Swahili", + "nativeName": "Kiswahili" + }, + { + "code": "ta", + "englishName": "Tamil", + "nativeName": "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd" + }, + { + "code": "te", + "englishName": "Telugu", + "nativeName": "\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41" + }, + { + "code": "th", + "englishName": "Thai", + "nativeName": "\u0e44\u0e17\u0e22" + }, + { + "code": "tr", + "englishName": "Turkish", + "nativeName": "T\u00fcrk\u00e7e" + }, + { + "code": "uk", + "englishName": "Ukrainian", + "nativeName": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430" + }, + { + "code": "ur", + "englishName": "Urdu", + "nativeName": "\u0627\u0631\u062f\u0648" + }, + { + "code": "vi", + "englishName": "Vietnamese", + "nativeName": "Ti\u00ea\u0301ng Vi\u00ea\u0323t" + }, + { + "code": "zh-Hans", + "englishName": "Chinese (Simplified)", + "nativeName": "\u7b80\u4f53\u4e2d\u6587" + }, + { + "code": "zh-Hant", + "englishName": "Chinese (Traditional)", + "nativeName": "\u7e41\u9ad4\u4e2d\u6587" + } + ], + "headers": {}, + "schema": { + "items": [ + { + "properties": { + "code": { + "type": "string" + }, + "englishName": { + "type": "string" + }, + "nativeName": { + "type": "string" + } + }, + "required": [ + "code", + "englishName", + "nativeName" + ], + "type": "object" + } + ], + "type": "array" + } + }, + { + "name": "Translate Text", + "url": "https://rapid-translate.p.rapidapi.com/TranslateText", + "description": "Translates text and returns translated result.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rapid-translate.p.rapidapi.com/TranslateText\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rapid-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "from": "en", + "result": "Salut tout le monde", + "to": "fr-fr" + }, + "headers": {}, + "schema": { + "properties": { + "from": { + "type": "string" + }, + "result": { + "type": "string" + }, + "to": { + "type": "string" + } + }, + "type": "object" + } + }, + { + "name": "Translate Text", + "url": "https://rapid-translate.p.rapidapi.com/TranslateText", + "description": "Translates text and returns translated result.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rapid-translate.p.rapidapi.com/TranslateText\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rapid-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rapid-translate.p.rapidapi.com/TranslateText\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rapid-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "properties": { + "from": { + "type": "string" + }, + "result": { + "type": "string" + }, + "to": { + "type": "string" + } + }, + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/rapid_translate/api.py b/toolbench/toolenv/tools/Translation/rapid_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1d1fd6f43f2f86e7c630468e2e7a5fa672e58ff9 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/rapid_translate/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns supported language list." + + """ + url = f"https://rapid-translate.p.rapidapi.com/getlanguages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rapid-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/rimedia_translation.json b/toolbench/toolenv/tools/Translation/rimedia_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..bcad3845d5e06590f4e4fd7f6ecbec1231eb80de --- /dev/null +++ b/toolbench/toolenv/tools/Translation/rimedia_translation.json @@ -0,0 +1,205 @@ +{ + "product_id": "api_f9fc79f6-62a9-4bdf-9fa5-410c8f4868b9", + "tool_description": "Rimedia\u00a0Translate.\u00a0instantly translates words, phrases, and\u00a0paragraphs between English and\u00a0more than\u00a0100 other languages. HTML / Text / JSON. Protected words. Multiple target languages in one application.", + "home_url": "https://rapidapi.com/sibaridev/api/rimedia-translation/", + "name": "Rimedia - Translation", + "title": "Rimedia - Translation", + "pricing": "FREEMIUM", + "tool_name": "Rimedia - Translation", + "score": { + "avgServiceLevel": 0, + "avgLatency": 26, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "rimedia-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Rimedia - Translate", + "url": "https://rimedia-translation.p.rapidapi.com/api_translate_limited.php", + "description": "Rimedia\u00a0Translate.\u00a0instantly translates words, phrases, and\u00a0paragraphs between English and\u00a0more than\u00a0100 other languages. HTML / Text / JSON. Protected words. Multiple target languages in one application.", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Target language code. Multiple target language codes separated by semicolons (;). \nexample: \"fr;ar;es\"", + "default": "es;fr;ar" + }, + { + "name": "text", + "type": "STRING", + "description": "text or html to translate.\nexample: \"Hello World\".", + "default": "Hello world try, HELLO" + } + ], + "optional_parameters": [ + { + "name": "translate_capital", + "type": "BOOLEAN", + "description": "set \"true\" to translated capitalize words, or \"false\" to not.", + "default": "true" + }, + { + "name": "from", + "type": "STRING", + "description": "Source language code. example: \"en\" or leave it blank if you are not sure.\nNote: \n\t- Specify the source language in the from parameter for a faster translation process\n\t- Multiple languages \u200b\u200bin one query will take longer response time.", + "default": "en" + }, + { + "name": "protected", + "type": "STRING", + "description": "List of words that will not be translated. Separated with a semicolon (;). example: \"world;World\"", + "default": "world;World" + } + ], + "code": "import requests\n\nurl = \"https://rimedia-translation.p.rapidapi.com/api_translate_limited.php\"\nquerystring = {\"translate_capital\": \"true\", \"from\": \"en\", \"protected\": \"world;World\", \"to\": \"es;fr;ar\", \"text\": \"Hello world try, HELLO\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rimedia-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rimedia-translation.p.rapidapi.com/api_translate_limited.php\"\nquerystring = {\"translate_capital\": \"true\", \"from\": \"en\", \"protected\": \"world;World\", \"to\": \"es;fr;ar\", \"text\": \"Hello world try, HELLO\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rimedia-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "status": { + "type": "string" + }, + "message": { + "type": "string" + }, + "text": { + "type": "string" + }, + "from": { + "type": "string" + }, + "to": { + "type": "string" + }, + "translate_capital": { + "type": "string" + }, + "protected": { + "type": "array", + "items": { + "type": "string" + } + }, + "result": { + "type": "object", + "properties": { + "es": { + "type": "string" + }, + "fr": { + "type": "string" + }, + "ar": { + "type": "string" + } + } + }, + "count_characters": { + "type": "integer" + }, + "count_words": { + "type": "integer" + } + } + } + }, + { + "name": "Rimedia - Translate Unlimited Characters", + "url": "https://rimedia-translation.p.rapidapi.com/api_translate_unlimited.php", + "description": "Rimedia\u00a0Translate.\u00a0instantly translates Unlimited words, phrases, and\u00a0paragraphs between English and\u00a0more than\u00a0100 other languages. HTML / Text / JSON. Protected words. Multiple target languages in one application.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "text or html to translate.\nexample: \"Hello World\".", + "default": "Hello world try, HELLO" + }, + { + "name": "to", + "type": "STRING", + "description": "Target language code. Multiple target language codes separated by semicolons (;). \nexample: \"fr;ar;es\"", + "default": "es;fr;ar" + } + ], + "optional_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Source language code. example: \"en\" or leave it blank if you are not sure.\nNote: \n\t- Specify the source language in the from parameter for a faster translation process\n\t- Multiple languages \u200b\u200bin one query will take longer response time.", + "default": "en" + }, + { + "name": "translate_capital", + "type": "BOOLEAN", + "description": "set \"true\" to translated capitalize words, or \"false\" to not.", + "default": "true" + }, + { + "name": "protected", + "type": "STRING", + "description": "List of words that will not be translated. Separated with a semicolon (;). example: \"world;World\"", + "default": "world;World" + } + ], + "code": "import requests\n\nurl = \"https://rimedia-translation.p.rapidapi.com/api_translate_unlimited.php\"\nquerystring = {\"from\": \"en\", \"text\": \"Hello world try, HELLO\", \"translate_capital\": \"true\", \"to\": \"es;fr;ar\", \"protected\": \"world;World\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rimedia-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rimedia-translation.p.rapidapi.com/api_translate_unlimited.php\"\nquerystring = {\"from\": \"en\", \"text\": \"Hello world try, HELLO\", \"translate_capital\": \"true\", \"to\": \"es;fr;ar\", \"protected\": \"world;World\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rimedia-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "status": { + "type": "string" + }, + "message": { + "type": "string" + }, + "text": { + "type": "string" + }, + "from": { + "type": "string" + }, + "to": { + "type": "string" + }, + "translate_capital": { + "type": "string" + }, + "protected": { + "type": "array", + "items": { + "type": "string" + } + }, + "result": { + "type": "object", + "properties": { + "es": { + "type": "string" + }, + "fr": { + "type": "string" + }, + "ar": { + "type": "string" + } + } + }, + "count_characters": { + "type": "integer" + }, + "count_words": { + "type": "integer" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/rushtranslate.json b/toolbench/toolenv/tools/Translation/rushtranslate.json new file mode 100644 index 0000000000000000000000000000000000000000..88573a9cff4e2e2f1e568b36fd796bebf48509a5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/rushtranslate.json @@ -0,0 +1,692 @@ +{ + "product_id": "api_2553797c-608c-4e9e-8782-0cb502b4382a", + "tool_description": "Human powered document translation API.", + "home_url": "https://rapidapi.com/RushTranslate/api/rushtranslate/", + "name": "RushTranslate", + "title": "RushTranslate", + "pricing": "FREE", + "tool_name": "RushTranslate", + "score": { + "avgServiceLevel": 100, + "avgLatency": 687, + "avgSuccessRate": 7, + "popularityScore": 0.1, + "__typename": "Score" + }, + "host": "rushtranslate.p.rapidapi.com", + "api_list": [ + { + "name": "Get File", + "url": "https://rushtranslate.p.rapidapi.com/files/{file_id}", + "description": "Get detailed information about a specific file.", + "method": "GET", + "required_parameters": [ + { + "name": "file_id", + "type": "STRING", + "description": "File ID", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/files/{file_id}\"\nquerystring = {\"file_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/files/{file_id}\"\nquerystring = {\"file_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Unauthenticated." + } + }, + { + "name": "List Languages", + "url": "https://rushtranslate.p.rapidapi.com/languages", + "description": "Get the list of languages we support. The language codes included in the response will be required when placing orders via the API.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": [ + { + "code": "ar", + "name": "Arabic", + "active": true + }, + { + "code": "bg", + "name": "Bulgarian", + "active": true + }, + { + "code": "zh-cn", + "name": "Chinese (Cantonese)", + "active": false + }, + { + "code": "zh-si", + "name": "Chinese (Simplified)", + "active": true + }, + { + "code": "zh-tr", + "name": "Chinese (Traditional)", + "active": true + }, + { + "code": "cs", + "name": "Czech", + "active": true + }, + { + "code": "da", + "name": "Danish", + "active": true + }, + { + "code": "nl", + "name": "Dutch", + "active": true + }, + { + "code": "en", + "name": "English", + "active": true + }, + { + "code": "fr", + "name": "French", + "active": true + }, + { + "code": "fr-ca", + "name": "French (Canadian)", + "active": true + }, + { + "code": "ka", + "name": "Georgian", + "active": true + }, + { + "code": "de", + "name": "German", + "active": true + }, + { + "code": "el", + "name": "Greek", + "active": true + }, + { + "code": "he", + "name": "Hebrew", + "active": true + }, + { + "code": "hi", + "name": "Hindi", + "active": true + }, + { + "code": "hu", + "name": "Hungarian", + "active": true + }, + { + "code": "id", + "name": "Indonesian", + "active": true + }, + { + "code": "it", + "name": "Italian", + "active": true + }, + { + "code": "ja", + "name": "Japanese", + "active": true + }, + { + "code": "ko", + "name": "Korean", + "active": true + }, + { + "code": "no", + "name": "Norwegian", + "active": true + }, + { + "code": "pl", + "name": "Polish", + "active": true + }, + { + "code": "pt-br", + "name": "Portuguese (Brazil)", + "active": true + }, + { + "code": "pt-pt", + "name": "Portuguese (Portugal)", + "active": true + }, + { + "code": "ro", + "name": "Romanian", + "active": true + }, + { + "code": "ru", + "name": "Russian", + "active": true + }, + { + "code": "sk", + "name": "Slovak", + "active": true + }, + { + "code": "es", + "name": "Spanish", + "active": true + }, + { + "code": "sv", + "name": "Swedish", + "active": true + }, + { + "code": "tl", + "name": "Tagalog", + "active": true + }, + { + "code": "th", + "name": "Thai", + "active": true + }, + { + "code": "tr", + "name": "Turkish", + "active": true + }, + { + "code": "uk", + "name": "Ukrainian", + "active": true + }, + { + "code": "vi", + "name": "Vietnamese", + "active": true + }, + { + "code": "ur", + "name": "Urdu", + "active": true + }, + { + "code": "ml", + "name": "Malay", + "active": true + }, + { + "code": "la", + "name": "Latin", + "active": true + }, + { + "code": "pj", + "name": "Punjabi", + "active": true + }, + { + "code": "fs", + "name": "Farsi", + "active": true + }, + { + "code": "sb", + "name": "Serbian", + "active": true + }, + { + "code": "al", + "name": "Albanian", + "active": true + }, + { + "code": "cl", + "name": "Creole", + "active": true + }, + { + "code": "mk", + "name": "Macedonian", + "active": true + }, + { + "code": "bn", + "name": "Bengali", + "active": true + }, + { + "code": "fa", + "name": "Persian", + "active": true + }, + { + "code": "tg", + "name": "Tajik", + "active": false + }, + { + "code": "uz", + "name": "Uzbek", + "active": true + }, + { + "code": "am", + "name": "Amharic", + "active": true + }, + { + "code": "ne", + "name": "Nepali", + "active": true + }, + { + "code": "ca", + "name": "Catalan", + "active": true + }, + { + "code": "mr", + "name": "Marathi", + "active": true + }, + { + "code": "gu", + "name": "Gujarati", + "active": true + }, + { + "code": "kn", + "name": "Kannada", + "active": true + }, + { + "code": "my", + "name": "Burmese", + "active": true + }, + { + "code": "ku", + "name": "Kurdish", + "active": false + }, + { + "code": "hr", + "name": "Croatian", + "active": true + }, + { + "code": "bs", + "name": "Bosnian", + "active": true + }, + { + "code": "so", + "name": "Somali", + "active": true + }, + { + "code": "fi", + "name": "Finnish", + "active": true + }, + { + "code": "et", + "name": "Estonian", + "active": false + }, + { + "code": "ga", + "name": "Irish", + "active": false + }, + { + "code": "lv", + "name": "Latvian", + "active": true + }, + { + "code": "lt", + "name": "Lithuanian", + "active": true + }, + { + "code": "mt", + "name": "Maltese", + "active": false + }, + { + "code": "sl", + "name": "Slovenian", + "active": true + }, + { + "code": "ta", + "name": "Tamil", + "active": true + }, + { + "code": "am", + "name": "Armenian", + "active": true + }, + { + "code": "ie", + "name": "Indian English", + "active": true + }, + { + "code": "te", + "name": "Telugu", + "active": true + }, + { + "code": "be", + "name": "Belarusian", + "active": false + }, + { + "code": "sw", + "name": "Swahili", + "active": true + }, + { + "code": "ps", + "name": "Pashto", + "active": true + } + ] + }, + { + "name": "Get Order", + "url": "https://rushtranslate.p.rapidapi.com/orders/{order_number}", + "description": "Get detailed information about a specific order.", + "method": "GET", + "required_parameters": [ + { + "name": "order_number", + "type": "STRING", + "description": "Order number", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/orders/{order_number}\"\nquerystring = {\"order_number\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/orders/{order_number}\"\nquerystring = {\"order_number\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Unauthenticated." + } + }, + { + "name": "Get Revision", + "url": "https://rushtranslate.p.rapidapi.com/revisions/{revision_id}", + "description": "Get detailed information about a specific revision.", + "method": "GET", + "required_parameters": [ + { + "name": "revision_id", + "type": "STRING", + "description": "Revision ID", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/revisions/{revision_id}\"\nquerystring = {\"revision_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/revisions/{revision_id}\"\nquerystring = {\"revision_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Unauthenticated." + } + }, + { + "name": "Create File", + "url": "https://rushtranslate.p.rapidapi.com/files", + "description": "Creates a new file. File uploads are limited to 100Mb in size. Each file may be attached to only one resource after creation.", + "method": "GET", + "required_parameters": [ + { + "name": "type", + "type": "STRING", + "description": "Type of file - source or reference", + "default": "" + }, + { + "name": "file", + "type": "STRING", + "description": "File to be uploaded", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/files\"\nquerystring = {\"type\": \"\", \"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/files\"\nquerystring = {\"type\": \"\", \"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Resource not found." + } + }, + { + "name": "Download File", + "url": "https://rushtranslate.p.rapidapi.com/files/{file_id}/download", + "description": "Retrieve a temporary download URL for the file. Files are encrypted and stored in an Amazon S3 bucket. When you want to download a file this request will generate a temporary signed URL allowing access to download the file securely. URLs expire after two minutes.", + "method": "GET", + "required_parameters": [ + { + "name": "file_id", + "type": "STRING", + "description": "File ID", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/files/{file_id}/download\"\nquerystring = {\"file_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/files/{file_id}/download\"\nquerystring = {\"file_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "Unauthenticated." + } + }, + { + "name": "List Revisions", + "url": "https://rushtranslate.p.rapidapi.com/revisions", + "description": "Get a paginated list of your revisions sorted in descending order by requested_at date.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/revisions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/revisions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "Unauthenticated." + } + }, + { + "name": "List Orders", + "url": "https://rushtranslate.p.rapidapi.com/orders", + "description": "Get a paginated list of your orders sorted in descending order by received_at date.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/orders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/orders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "Unauthenticated." + } + }, + { + "name": "Create Order", + "url": "https://rushtranslate.p.rapidapi.com/orders", + "description": "Creates a new order. Files must be created prior as their IDs will be included in the files array of this request.", + "method": "POST", + "required_parameters": [ + { + "name": "files", + "type": "STRING", + "description": "List of file IDs - type must be either source or reference", + "default": "" + }, + { + "name": "services.target_language", + "type": "STRING", + "description": "ISO 639-2 language code", + "default": "" + }, + { + "name": "services.source_language", + "type": "STRING", + "description": "ISO 639-2 language code", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "notes", + "type": "STRING", + "description": "Notes for staff or translators - basic HTML allowed", + "default": "" + }, + { + "name": "services.shipping", + "type": "BOOLEAN", + "description": "If you would like a hard copy shipped - only available with certified translation", + "default": false + }, + { + "name": "services.shipping_signature", + "type": "BOOLEAN", + "description": "\tIf an adult signature should be required for delivery", + "default": false + }, + { + "name": "services.shipping_service", + "type": "STRING", + "description": "Level of shipping service - standard (USPS Priority Mail) or express (USPS Express Mail). Required if shipping.service is true", + "default": "" + }, + { + "name": "address.street_2", + "type": "STRING", + "description": "Second line of the address", + "default": "" + }, + { + "name": "services.expedited", + "type": "BOOLEAN", + "description": "If you would like expedited turnaround service", + "default": false + }, + { + "name": "address.street_1", + "type": "STRING", + "description": "First line of the address. Required if shipping.service is true", + "default": "" + }, + { + "name": "callback_url", + "type": "STRING", + "description": "Callback URL for webhooks", + "default": "" + }, + { + "name": "address.city", + "type": "STRING", + "description": "City the address is located in. Required if shipping.service is true", + "default": "" + }, + { + "name": "address.recipient", + "type": "STRING", + "description": "Name of the person - both name and company can be included. Required if shipping.service is true", + "default": "" + }, + { + "name": "services.notarization", + "type": "BOOLEAN", + "description": "If you would like the certification notarized - only available with certified translation", + "default": false + }, + { + "name": "address.state", + "type": "STRING", + "description": "State or providence the address is located in. Required if shipping.service is true", + "default": "" + }, + { + "name": "services.currency_conversion", + "type": "BOOLEAN", + "description": "If you would like currency conversion - only available with certified translation", + "default": false + }, + { + "name": "reference", + "type": "STRING", + "description": "Reference number for your use", + "default": "" + }, + { + "name": "address.zip", + "type": "STRING", + "description": "Zip or postal code the address is located in. Required if shipping.service is true", + "default": "" + }, + { + "name": "services.certification", + "type": "BOOLEAN", + "description": "If you would like certified translation service otherwise standard translation provided", + "default": false + }, + { + "name": "address.country", + "type": "STRING", + "description": "ISO 3166 country code for the country the address is located in. Required if shipping.service is true", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/orders\"\nquerystring = {\"notes\": \"\", \"services.shipping\": false, \"services.shipping_signature\": false, \"files\": \"\", \"services.shipping_service\": \"\", \"address.street_2\": \"\", \"services.expedited\": false, \"address.street_1\": \"\", \"callback_url\": \"\", \"address.city\": \"\", \"address.recipient\": \"\", \"services.target_language\": \"\", \"services.notarization\": false, \"address.state\": \"\", \"services.currency_conversion\": false, \"reference\": \"\", \"address.zip\": \"\", \"services.source_language\": \"\", \"services.certification\": false, \"address.country\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/orders\"\nquerystring = {\"notes\": \"\", \"services.shipping\": false, \"services.shipping_signature\": false, \"files\": \"\", \"services.shipping_service\": \"\", \"address.street_2\": \"\", \"services.expedited\": false, \"address.street_1\": \"\", \"callback_url\": \"\", \"address.city\": \"\", \"address.recipient\": \"\", \"services.target_language\": \"\", \"services.notarization\": false, \"address.state\": \"\", \"services.currency_conversion\": false, \"reference\": \"\", \"address.zip\": \"\", \"services.source_language\": \"\", \"services.certification\": false, \"address.country\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Create Revision", + "url": "https://rushtranslate.p.rapidapi.com/revisions", + "description": "Creates a new revision for an order. Files (optional) must be created prior as their IDs will be included in the files array of this request. Only a file type of reference will be accepted.", + "method": "POST", + "required_parameters": [ + { + "name": "body", + "type": "STRING", + "description": "Revision body - basic HTML allowed", + "default": "" + }, + { + "name": "files", + "type": "STRING", + "description": "List of file IDs", + "default": "" + }, + { + "name": "order_number", + "type": "STRING", + "description": "Order number in need of revision", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/revisions\"\nquerystring = {\"body\": \"\", \"files\": \"\", \"order_number\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rushtranslate.p.rapidapi.com/revisions\"\nquerystring = {\"body\": \"\", \"files\": \"\", \"order_number\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rushtranslate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "rushtranslate" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/rushtranslate/api.py b/toolbench/toolenv/tools/Translation/rushtranslate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9cfd57d1545aefa01ed8c32d581e40e675aebf5d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/rushtranslate/api.py @@ -0,0 +1,182 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_file(file_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detailed information about a specific file." + file_id: File ID + + """ + url = f"https://rushtranslate.p.rapidapi.com/files/{file_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of languages we support. The language codes included in the response will be required when placing orders via the API." + + """ + url = f"https://rushtranslate.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_order(order_number: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detailed information about a specific order." + order_number: Order number + + """ + url = f"https://rushtranslate.p.rapidapi.com/orders/{order_number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_revision(revision_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detailed information about a specific revision." + revision_id: Revision ID + + """ + url = f"https://rushtranslate.p.rapidapi.com/revisions/{revision_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def create_file(type: str, file: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Creates a new file. File uploads are limited to 100Mb in size. Each file may be attached to only one resource after creation." + type: Type of file - source or reference + file: File to be uploaded + + """ + url = f"https://rushtranslate.p.rapidapi.com/files" + querystring = {'type': type, 'file': file, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def download_file(file_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve a temporary download URL for the file. Files are encrypted and stored in an Amazon S3 bucket. When you want to download a file this request will generate a temporary signed URL allowing access to download the file securely. URLs expire after two minutes." + file_id: File ID + + """ + url = f"https://rushtranslate.p.rapidapi.com/files/{file_id}/download" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_revisions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a paginated list of your revisions sorted in descending order by requested_at date." + + """ + url = f"https://rushtranslate.p.rapidapi.com/revisions" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_orders(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a paginated list of your orders sorted in descending order by received_at date." + + """ + url = f"https://rushtranslate.p.rapidapi.com/orders" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "rushtranslate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/simple_elegant_translation_service.json b/toolbench/toolenv/tools/Translation/simple_elegant_translation_service.json new file mode 100644 index 0000000000000000000000000000000000000000..6d6c59546cbed99ae2d6cec14552d9b657512b89 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/simple_elegant_translation_service.json @@ -0,0 +1,142 @@ +{ + "product_id": "api_8f6f13ad-4cdc-48df-bdb3-8b08251e1261", + "tool_description": "Simple & Elegant Translation Service. This translation service is similar to similar. You can actually do a lot of things with the help of the Google Translate API ranging from detecting languages to simple text translation, setting source and destination languages, and translating entire lists of text phrases", + "home_url": "https://rapidapi.com/ashokrs/api/simple-elegant-translation-service/", + "name": "Simple & Elegant Translation Service", + "title": "Simple & Elegant Translation Service", + "pricing": "FREEMIUM", + "tool_name": "Simple & Elegant Translation Service", + "score": { + "avgServiceLevel": 50, + "avgLatency": 459, + "avgSuccessRate": 50, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "simple-elegant-translation-service.p.rapidapi.com", + "api_list": [ + { + "name": "To get a list all the supported languages by this API Endpoint", + "url": "https://simple-elegant-translation-service.p.rapidapi.com/getSupportedLanguages", + "description": "To get a list all the supported languages, execute this API, https://translate.pregnya.com/getSupportedLanguages", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://simple-elegant-translation-service.p.rapidapi.com/getSupportedLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-elegant-translation-service.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://simple-elegant-translation-service.p.rapidapi.com/getSupportedLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"simple-elegant-translation-service.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "languages": { + "af": "afrikaans", + "am": "amharic", + "ar": "arabic", + "az": "azerbaijani", + "be": "belarusian", + "bg": "bulgarian", + "bn": "bengali", + "bs": "bosnian", + "ca": "catalan", + "ceb": "cebuano", + "co": "corsican", + "cs": "czech", + "cy": "welsh", + "da": "danish", + "de": "german", + "el": "greek", + "en": "english", + "eo": "esperanto", + "es": "spanish", + "et": "estonian", + "eu": "basque", + "fa": "persian", + "fi": "finnish", + "fil": "Filipino", + "fr": "french", + "fy": "frisian", + "ga": "irish", + "gd": "scots gaelic", + "gl": "galician", + "gu": "gujarati", + "ha": "hausa", + "haw": "hawaiian", + "he": "Hebrew", + "hi": "hindi", + "hmn": "hmong", + "hr": "croatian", + "ht": "haitian creole", + "hu": "hungarian", + "hy": "armenian", + "id": "indonesian", + "ig": "igbo", + "is": "icelandic", + "it": "italian", + "iw": "hebrew", + "ja": "japanese", + "jw": "javanese", + "ka": "georgian", + "kk": "kazakh", + "km": "khmer", + "kn": "kannada", + "ko": "korean", + "ku": "kurdish (kurmanji)", + "ky": "kyrgyz", + "la": "latin", + "lb": "luxembourgish", + "lo": "lao", + "lt": "lithuanian", + "lv": "latvian", + "mg": "malagasy", + "mi": "maori", + "mk": "macedonian", + "ml": "malayalam", + "mn": "mongolian", + "mr": "marathi", + "ms": "malay", + "mt": "maltese", + "my": "myanmar (burmese)", + "ne": "nepali", + "nl": "dutch", + "no": "norwegian", + "ny": "chichewa", + "pa": "punjabi", + "pl": "polish", + "ps": "pashto", + "pt": "portuguese", + "ro": "romanian", + "ru": "russian", + "sd": "sindhi", + "si": "sinhala", + "sk": "slovak", + "sl": "slovenian", + "sm": "samoan", + "sn": "shona", + "so": "somali", + "sq": "albanian", + "sr": "serbian", + "st": "sesotho", + "su": "sundanese", + "sv": "swedish", + "sw": "swahili", + "ta": "tamil", + "te": "telugu", + "tg": "tajik", + "th": "thai", + "tl": "filipino", + "tr": "turkish", + "uk": "ukrainian", + "ur": "urdu", + "uz": "uzbek", + "vi": "vietnamese", + "xh": "xhosa", + "yi": "yiddish", + "yo": "yoruba", + "zh-cn": "chinese (simplified)", + "zh-tw": "chinese (traditional)", + "zu": "zulu" + } + }, + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "simple_elegant_translation_service" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/simple_elegant_translation_service/api.py b/toolbench/toolenv/tools/Translation/simple_elegant_translation_service/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e76ef84de2c6e69b1723d12c2ced2baa6f5b1780 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/simple_elegant_translation_service/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def to_get_a_list_all_the_supported_languages_by_this_api_endpoint(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To get a list all the supported languages, execute this API, https://translate.pregnya.com/getSupportedLanguages" + + """ + url = f"https://simple-elegant-translation-service.p.rapidapi.com/getsupportedlanguages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "simple-elegant-translation-service.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/slavic_translation.json b/toolbench/toolenv/tools/Translation/slavic_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..c7223f7f62568db3f02155773acf189b0df57fb6 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/slavic_translation.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_7dd6734b-3769-4e29-8c0b-86a82ac8f90e", + "tool_description": "This API uses the same state of the art, deep learning model as Google Translate. It supports 5 languages: be en pl ru uk.", + "home_url": "https://rapidapi.com/Fisher20/api/slavic-translation/", + "name": "Slavic Translation", + "title": "Slavic Translation", + "pricing": "FREEMIUM", + "tool_name": "Slavic Translation", + "score": null, + "host": "slavic-translation.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://slavic-translation.p.rapidapi.com/translate", + "description": "Translate endpoint\n\nModel was optimized for Belarusian for which it achives 96% quality of Google Translate in terms of relative BLEU scores.\n| direction | Google | This_model | delta | quality |\nbe2en\t31,2\t28,2\t-3,0\t90,4%\nbe2pl\t16,2\t14,5\t-1,7\t89,5%\nbe2ru\t21,7\t23,0\t 1,3 \t106,0%\nbe2uk\t17,5\t17,7\t 0,2 \t101,1%\nen2be\t22,3\t20,5\t-1,8\t91,9%\npl2be\t14,9\t13,7\t-1,2\t91,9%\nru2be\t21,6\t21,1\t-0,5\t97,7%\nuk2be\t17,5\t17,7\t 0,2 \t101,1%", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://slavic-translation.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"slavic-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://slavic-translation.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"slavic-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/speech_dubbing.json b/toolbench/toolenv/tools/Translation/speech_dubbing.json new file mode 100644 index 0000000000000000000000000000000000000000..c92b8091c1c9f5d7d58030be349094795fb0e51c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/speech_dubbing.json @@ -0,0 +1,74 @@ +{ + "product_id": "api_b120fbcd-87cc-4710-9c73-66760281bc0c", + "tool_description": "This API allows you to dub audios in another language with the voice you want.", + "home_url": "https://rapidapi.com/Thomcle/api/speech-dubbing/", + "name": "speech-dubbing", + "title": "speech-dubbing", + "pricing": "FREEMIUM", + "tool_name": "speech-dubbing", + "score": { + "avgServiceLevel": 100, + "avgLatency": 10977, + "avgSuccessRate": 100, + "popularityScore": 8.5, + "__typename": "Score" + }, + "host": "speech-dubbing.p.rapidapi.com", + "api_list": [ + { + "name": "/get_timestamp", + "url": "https://speech-dubbing.p.rapidapi.com/get_timestamp", + "description": "This endpoint returns a json file which is required to use the \"/dubbing\" endpoint. The json file contains the timestamp and general information about the video to be dubbed.\nTo do this, you'll need to send an audio file in \".wav\" format, indicate the language in which your audio is spoken (in ISO 639-1 format), and indicate the language into which you'd like the audio to be translated (also in ISO 639-1 format). As the API relies on google text to speech to generate the audio, you should choose the voice with which the original audio will be translated on the site: \"https://cloud.google.com/text-to-speech/docs/voices?hl=en\". Finally, you'll need to indicate the gender of the person speaking (\"MALE\", \"FEMALE\" or \"NEUTRAL\").", + "method": "POST", + "required_parameters": [ + { + "name": "target_language", + "type": "STRING", + "description": "", + "default": "fr" + }, + { + "name": "voice_name", + "type": "STRING", + "description": "", + "default": "fr-FR-Standard-B \t" + }, + { + "name": "spoken_language", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "gender", + "type": "STRING", + "description": "", + "default": "\"MALE\"" + }, + { + "name": "audio_file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://speech-dubbing.p.rapidapi.com/get_timestamp\"\nquerystring = {\"target_language\": \"fr\", \"voice_name\": \"fr-FR-Standard-B \\t\", \"spoken_language\": \"en\", \"gender\": \"\\\"MALE\\\"\", \"audio_file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"speech-dubbing.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://speech-dubbing.p.rapidapi.com/get_timestamp\"\nquerystring = {\"target_language\": \"fr\", \"voice_name\": \"fr-FR-Standard-B \\t\", \"spoken_language\": \"en\", \"gender\": \"\\\"MALE\\\"\", \"audio_file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"speech-dubbing.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "/dubbing", + "url": "https://speech-dubbing.p.rapidapi.com/dubbing", + "description": "Get the dubbed audio from the timestamp on the \"/dubbing\" endpoint. To do this, simply post the .json file received from the \"/get_timestamp\" endpoint. In return, you'll get audio in the form of binary data.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://speech-dubbing.p.rapidapi.com/dubbing\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"speech-dubbing.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://speech-dubbing.p.rapidapi.com/dubbing\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"speech-dubbing.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/swenapi.json b/toolbench/toolenv/tools/Translation/swenapi.json new file mode 100644 index 0000000000000000000000000000000000000000..ed757d1a91bc7c8e9bab1f7ddfe091345f987c62 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/swenapi.json @@ -0,0 +1,51 @@ +{ + "tool_name":"Swenapi", + "tool_description":"Translating English or numbers words to Swahili.", + "title":"Swenapi", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/Isayaisaya/api/swenapi/", + "host":"swenapi.p.rapidapi.com", + "api_list":[ + { + "name":"en-sw", + "url":"https://swenapi.p.rapidapi.com/en-sw/{word}", + "description":"Translate an English words to Swahili", + "method":"GET", + "required_parameters":[ + { + "name":"word", + "type":"string", + "description":"", + "default":"go" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://swenapi.p.rapidapi.com/en-sw/{word}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"swenapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"sw-num", + "url":"https://swenapi.p.rapidapi.com/sw-num/{num}", + "description":"Translate any number to Swahili words", + "method":"GET", + "required_parameters":[ + { + "name":"num", + "type":"NUMBER", + "description":"", + "default":"45" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://swenapi.p.rapidapi.com/sw-num/{num}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"swenapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/swenapi/api.py b/toolbench/toolenv/tools/Translation/swenapi/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2936bc23b8c043e6292bdda1ff6da3011ef8b2f8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/swenapi/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def en_sw(word: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate an English words to Swahili" + + """ + url = f"https://swenapi.p.rapidapi.com/en-sw/{word}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "swenapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def sw_num(num: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate any number to Swahili words" + + """ + url = f"https://swenapi.p.rapidapi.com/sw-num/{num}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "swenapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/test/api.py b/toolbench/toolenv/tools/Translation/test/api.py new file mode 100644 index 0000000000000000000000000000000000000000..141fcd0dcc85e816d3de9c356d8010af87db6ada --- /dev/null +++ b/toolbench/toolenv/tools/Translation/test/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def fasfasf(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "faafsfas" + + """ + url = f"https://test4963.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "test4963.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/test1.json b/toolbench/toolenv/tools/Translation/test1.json new file mode 100644 index 0000000000000000000000000000000000000000..3a557427228bd711552fb07b88665ebd7c5753d5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/test1.json @@ -0,0 +1,24 @@ +{ + "tool_name":"test1", + "tool_description":"test1", + "title":"test1", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mukesrana/api/test11509/", + "host":"test11509.p.rapidapi.com", + "api_list":[ + { + "name":"myapplication", + "url":"https://test11509.p.rapidapi.com/", + "description":"myapplication", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://test11509.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"test11509.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/test1/api.py b/toolbench/toolenv/tools/Translation/test1/api.py new file mode 100644 index 0000000000000000000000000000000000000000..50968c1a8df506871fe3cb657faa02d83e8265ea --- /dev/null +++ b/toolbench/toolenv/tools/Translation/test1/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def myapplication(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "myapplication" + + """ + url = f"https://test11509.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "test11509.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/test_v2/api.py b/toolbench/toolenv/tools/Translation/test_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..141fcd0dcc85e816d3de9c356d8010af87db6ada --- /dev/null +++ b/toolbench/toolenv/tools/Translation/test_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def fasfasf(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "faafsfas" + + """ + url = f"https://test4963.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "test4963.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/text_to_emoji_api.json b/toolbench/toolenv/tools/Translation/text_to_emoji_api.json new file mode 100644 index 0000000000000000000000000000000000000000..8e483e0a23abf6c5741ce7da0819cc956508e8ed --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_to_emoji_api.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_638e37e4-eefc-41ed-8767-8885188f78f4", + "tool_description": "Emoji Translator by AI - Convert Text \ud83d\udcdc to Emoji \ud83c\udfc6. This webpage transforms plain text into the immaculate emoji language. Use this Emoji Translator for Emoji copy and paste. Enter your text and this tool will convert the text into emojis with multiple emoji options. Emojiziter!", + "home_url": "https://rapidapi.com/LuSrodri/api/text-to-emoji-api/", + "name": "Text to emoji - API", + "title": "Text to emoji - API", + "pricing": "FREEMIUM", + "tool_name": "Text to emoji - API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3996, + "avgSuccessRate": 100, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "text-to-emoji-api.p.rapidapi.com", + "api_list": [ + { + "name": "/text-to-emoji", + "url": "https://text-to-emoji-api.p.rapidapi.com/text-to-emoji", + "description": "Insert a input with text and transform it into a sequence of emojis.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-to-emoji-api.p.rapidapi.com/text-to-emoji\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-emoji-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-to-emoji-api.p.rapidapi.com/text-to-emoji\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-to-emoji-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/text_translation.json b/toolbench/toolenv/tools/Translation/text_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..7e828449d4ff848f932a3e2cc89a58bee266ee0c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_translation.json @@ -0,0 +1,34 @@ +{ + "product_id": "api_2cb8ed7b-c699-4c3b-a121-77f1efbbcbd7", + "tool_description": "this is a simple api to transle any text (from, to) +200 international languages", + "home_url": "https://rapidapi.com/jolix1235/api/text-translation6/", + "name": "text translation", + "title": "text translation", + "pricing": "FREEMIUM", + "tool_name": "text translation", + "score": { + "avgServiceLevel": 0, + "avgLatency": 127323, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "text-translation6.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://text-translation6.p.rapidapi.com/xenova/translate", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-translation6.p.rapidapi.com/xenova/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translation6.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-translation6.p.rapidapi.com/xenova/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translation6.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/text_translation_multilingualbilingual.json b/toolbench/toolenv/tools/Translation/text_translation_multilingualbilingual.json new file mode 100644 index 0000000000000000000000000000000000000000..3590f8f87bd0e9d52ce852257d3975e6d8448fa8 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_translation_multilingualbilingual.json @@ -0,0 +1,49 @@ +{ + "product_id": "api_9cf97e54-cc39-45b0-9ff7-a5d018ce052e", + "tool_description": "Text translate from one language to other language .\nSupports multilanguage at a time", + "home_url": "https://rapidapi.com/admobsteelindia/api/text-translation-multilingual-bilingual/", + "name": "Text translation - Multilingual/bilingual", + "title": "Text translation - Multilingual/bilingual", + "pricing": "FREEMIUM", + "tool_name": "Text translation - Multilingual/bilingual", + "score": { + "avgServiceLevel": 100, + "avgLatency": 534, + "avgSuccessRate": 100, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "text-translation-multilingual-bilingual.p.rapidapi.com", + "api_list": [ + { + "name": "translatetexttotext", + "url": "https://text-translation-multilingual-bilingual.p.rapidapi.com/translatetexttotext", + "description": "Translate text from one language to other", + "method": "POST", + "required_parameters": [ + { + "name": "tolanguage", + "type": "STRING", + "description": "", + "default": "Spanish" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "hello how are you" + }, + { + "name": "fromlanguage", + "type": "STRING", + "description": "", + "default": "English" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-translation-multilingual-bilingual.p.rapidapi.com/translatetexttotext\"\nquerystring = {\"tolanguage\": \"Spanish\", \"text\": \"hello how are you\", \"fromlanguage\": \"English\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translation-multilingual-bilingual.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-translation-multilingual-bilingual.p.rapidapi.com/translatetexttotext\"\nquerystring = {\"tolanguage\": \"Spanish\", \"text\": \"hello how are you\", \"fromlanguage\": \"English\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translation-multilingual-bilingual.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/text_translator.json b/toolbench/toolenv/tools/Translation/text_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..990991f682624442f635f5b6be58e279136e8bf1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_translator.json @@ -0,0 +1,63 @@ +{ + "product_id": "api_cd8d050c-b271-4d7a-a4cf-f8ddcf85cd0d", + "tool_description": "Translate text to 100+ languages \u200b. Fast processing, cost saving. Free up to 100,000 characters per month", + "home_url": "https://rapidapi.com/dickyagustin/api/text-translator2/", + "name": "Text Translator", + "title": "Text Translator", + "pricing": "FREEMIUM", + "tool_name": "Text Translator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 432, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "text-translator2.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://text-translator2.p.rapidapi.com/translate", + "description": "This endpoint is used to translate text from one language to another using the post method", + "method": "POST", + "required_parameters": [ + { + "name": "target_language", + "type": "STRING", + "description": "Target language, filled with supported language codes such as: **en**, **eu**, **id**, and many others.", + "default": "id" + }, + { + "name": "source_language", + "type": "STRING", + "description": "Source language, filled with supported language codes such as: **en**, **eu**, **id**, and many others.\nYou can also set the value '**auto**' if you want an API that detects the language automatically", + "default": "en" + }, + { + "name": "text", + "type": "STRING", + "description": "The field must be filled with text content to be translated, maximum 15,000 characters", + "default": "What is your name?" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-translator2.p.rapidapi.com/translate\"\nquerystring = {\"target_language\": \"id\", \"source_language\": \"en\", \"text\": \"What is your name?\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translator2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-translator2.p.rapidapi.com/translate\"\nquerystring = {\"target_language\": \"id\", \"source_language\": \"en\", \"text\": \"What is your name?\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translator2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "translatedText": { + "type": "string" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/text_translator/api.py b/toolbench/toolenv/tools/Translation/text_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..edcfea8136ba9a447a46458063e4a11e833ffe2e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_translator/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def geterrors(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint is used to get a list of available error codes" + + """ + url = f"https://text-translator4.p.rapidapi.com/api/errors" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-translator4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getlanguages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint is used to get a list of available language codes" + + """ + url = f"https://text-translator4.p.rapidapi.com/api/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-translator4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/text_translator_v2.json b/toolbench/toolenv/tools/Translation/text_translator_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..041c25818a95e3202e26bfde636b640274aaa7bb --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_translator_v2.json @@ -0,0 +1,56 @@ +{ + "product_id": "api_cd8d050c-b271-4d7a-a4cf-f8ddcf85cd0d", + "tool_description": "Translate text to 100+ languages \u200b. Fast processing, cost saving. Free up to 100,000 characters per month", + "home_url": "https://rapidapi.com/dickyagustin/api/text-translator2/", + "name": "Text Translator_v2", + "title": "Text Translator", + "pricing": "FREEMIUM", + "tool_name": "Text Translator_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 399, + "avgSuccessRate": 99, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "text-translator2.p.rapidapi.com", + "api_list": [ + { + "name": "getLanguages", + "url": "https://text-translator2.p.rapidapi.com/getLanguages", + "description": "This endpoint is used to get a list of available language codes", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://text-translator2.p.rapidapi.com/getLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translator2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://text-translator2.p.rapidapi.com/getLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"text-translator2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "languages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + } + } + } + } + ], + "standardized_name": "text_translator_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/text_translator_v2/api.py b/toolbench/toolenv/tools/Translation/text_translator_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9a2805a97dd1788cfe6e6d6f46be81652c2046fc --- /dev/null +++ b/toolbench/toolenv/tools/Translation/text_translator_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getlanguages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint is used to get a list of available language codes" + + """ + url = f"https://text-translator2.p.rapidapi.com/getlanguages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "text-translator2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/traducao.json b/toolbench/toolenv/tools/Translation/traducao.json new file mode 100644 index 0000000000000000000000000000000000000000..8714d360c15f3af17b27526a7acba535572ed964 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/traducao.json @@ -0,0 +1,49 @@ +{ + "product_id": "api_1ca7da82-171d-41cf-b7a4-618326b9f2b8", + "tool_description": "Para traduzir", + "home_url": "https://rapidapi.com/guvedana/api/traducao2/", + "name": "Traducao", + "title": "Traducao", + "pricing": "FREE", + "tool_name": "Traducao", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1187, + "avgSuccessRate": 100, + "popularityScore": 8.1, + "__typename": "Score" + }, + "host": "traducao2.p.rapidapi.com", + "api_list": [ + { + "name": "Gustavo Vedana", + "url": "https://traducao2.p.rapidapi.com/", + "description": "hhfghfgfgf", + "method": "POST", + "required_parameters": [ + { + "name": "target", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello" + }, + { + "name": "source", + "type": "STRING", + "description": "", + "default": "pt-br" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://traducao2.p.rapidapi.com/\"\nquerystring = {\"target\": \"en\", \"text\": \"Hello\", \"source\": \"pt-br\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"traducao2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://traducao2.p.rapidapi.com/\"\nquerystring = {\"target\": \"en\", \"text\": \"Hello\", \"source\": \"pt-br\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"traducao2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/trans/api.py b/toolbench/toolenv/tools/Translation/trans/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a1bb923a8fb58be7d1f22de1741dffb07203e0d9 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/trans/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def adad(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "asdasdasdasdasdas" + + """ + url = f"https://trans17.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "trans17.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/trans_v2/api.py b/toolbench/toolenv/tools/Translation/trans_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d58e4043bcb600b9b5c94db7cbad8ec967c0bf34 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/trans_v2/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translation_suppliers(is_id: str, yourquestions: str='up to 500 characters', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "We Welcome All Your Needs for Translation in any field" + id: volume starting from 1000 words + yourquestions: Freely Ask Your Questions for your projects + + """ + url = f"https://trans2.p.rapidapi.com/suppliers/{is_id}" + querystring = {} + if yourquestions: + querystring['YourQuestions'] = yourquestions + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "trans2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translate.json b/toolbench/toolenv/tools/Translation/translate.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb154734a7547f39a5ca30fe7a357b105b37bf2 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate.json @@ -0,0 +1,51 @@ +{ + "product_id": "api_3d9997d6-07fb-42c6-850f-f18829749cf9", + "tool_description": "Translates text into one or more languages.", + "home_url": "https://rapidapi.com/mrcodar7/api/translate281/", + "name": "Translate", + "title": "Translate", + "pricing": "FREEMIUM", + "tool_name": "Translate", + "score": { + "avgServiceLevel": 100, + "avgLatency": 826, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "translate281.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://translate281.p.rapidapi.com/", + "description": "Translates text into one or more languages.\n\nfrom : language code || auto (Detect language automatically)\nto : target language code", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "ar" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello World!" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "auto" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate281.p.rapidapi.com/\"\nquerystring = {\"to\": \"ar\", \"text\": \"Hello World!\", \"from\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate281.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate281.p.rapidapi.com/\"\nquerystring = {\"to\": \"ar\", \"text\": \"Hello World!\", \"from\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate281.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate/api.py b/toolbench/toolenv/tools/Translation/translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5ecdf8e7c061ed73ba9a0012507f4990499e0f84 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate/api.py @@ -0,0 +1,73 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def accurate_language_detection(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return the Language of the Text" + + """ + url = f"https://translate287.p.rapidapi.com/detect/accurate" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate287.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def fast_language_detection(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return the Language of the Text" + + """ + url = f"https://translate287.p.rapidapi.com/detect/fast" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate287.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translate(text: str, dest: str, src: str='auto', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return Translated Text and the source language if it wasn't specified" + + """ + url = f"https://translate287.p.rapidapi.com/translate/" + querystring = {'text': text, 'dest': dest, } + if src: + querystring['src'] = src + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate287.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translate_all_languages.json b/toolbench/toolenv/tools/Translation/translate_all_languages.json new file mode 100644 index 0000000000000000000000000000000000000000..9709679590bb1f995c6b9b3eed2965ab194e5324 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_all_languages.json @@ -0,0 +1,418 @@ +{ + "tool_name":"Translate All Languages", + "tool_description":"Translate All Language - Text Translator\n\n100x cheaper than Google Translate. Same API. Same quality. Translate All Languages provides a simple API for translating plain text between any of 100+ supported languages. If you don’t know what language the text is written in, our API will detect the language of the original request. \n\ntelegram DM: https://t.me/justmobicode", + "title":"Translate All Languages", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":341, + "avgSuccessRate":100, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/JustMobi/api/translate-all-languages/", + "host":"translate-all-languages.p.rapidapi.com", + "api_list":[ + { + "name":"Translate", + "url":"https://translate-all-languages.p.rapidapi.com/translate", + "description":"Translates input text, returning translated text", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"The input text to translate.", + "default":"If you don’t know what language the text is written in, our API will detect the language of the original request." + }, + { + "name":"toLang", + "type":"STRING", + "description":"The language to use for translation of the input text, set to one of the language codes listed in the overview tab", + "default":"fr" + } + ], + "optional_parameters":[ + { + "name":"fromLang", + "type":"STRING", + "description":"The language of the fromLang, set to one of the language codes listed in Language Support. If the source language is not specified, the API will attempt to detect the source language automatically and return it within the response.", + "default":"en" + } + ], + "code":"import requests\n\nurl = \"https://translate-all-languages.p.rapidapi.com/translate\"\nquerystring = {\"text\": text, \"fromLang\": fromlang, \"toLang\": tolang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-all-languages.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":200, + "langDetect":"en", + "translatedText":"Si vous ne savez pas dans quelle langue le texte est écrit, notre API détectera la langue de la demande d'origine." + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-type":"application/json", + "date":"Wed, 14 Jun 2023 13:40:45 GMT", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "vary":"RSC, Next-Router-State-Tree, Next-Router-Prefetch", + "x-matched-path":"/api/translate", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-execution-region":"iad1", + "x-vercel-id":"dub1::iad1::4qkch-1686750044604-f1b526b472c1" + }, + "schema":{} + }, + { + "name":"Languages", + "url":"https://translate-all-languages.p.rapidapi.com/languages", + "description":"Returns a list of supported languages for translation.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://translate-all-languages.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-all-languages.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":200, + "languages":[ + { + "af":"Afrikaans" + }, + { + "ar":"Arabic" + }, + { + "az":"Azerbaijani" + }, + { + "be":"Belarusian" + }, + { + "bg":"Bulgarian" + }, + { + "bn":"Bengali" + }, + { + "bs":"Bosnian" + }, + { + "ca":"Catalan" + }, + { + "ceb":"Cebuano" + }, + { + "cs":"Czech" + }, + { + "cy":"Welsh" + }, + { + "da":"Danish" + }, + { + "de":"German" + }, + { + "el":"Greek" + }, + { + "en":"English" + }, + { + "eo":"Esperanto" + }, + { + "es":"Spanish" + }, + { + "et":"Estonian" + }, + { + "eu":"Basque" + }, + { + "fa":"Persian" + }, + { + "fi":"Finnish" + }, + { + "fr":"French" + }, + { + "ga":"Irish" + }, + { + "gl":"Galician" + }, + { + "gu":"Gujarati" + }, + { + "ha":"Hausa" + }, + { + "hi":"Hindi" + }, + { + "hmn":"Hmong" + }, + { + "hr":"Croatian" + }, + { + "ht":"Haitian creole" + }, + { + "hu":"Hungarian" + }, + { + "hy":"Armenian" + }, + { + "id":"Indonesian" + }, + { + "ig":"Igbo" + }, + { + "is":"Icelandic" + }, + { + "it":"Italian" + }, + { + "iw":"Hebrew" + }, + { + "ja":"Japanese" + }, + { + "jw":"Javanese" + }, + { + "ka":"Georgian" + }, + { + "kk":"Kazakh" + }, + { + "km":"Khmer" + }, + { + "kn":"Kannada" + }, + { + "ko":"Korean" + }, + { + "la":"Latin" + }, + { + "lo":"Lao" + }, + { + "lt":"Lithuanian" + }, + { + "lv":"Latvian" + }, + { + "mg":"Malagasy" + }, + { + "mi":"Maori" + }, + { + "mk":"Macedonian" + }, + { + "ml":"Malayalam" + }, + { + "mn":"Mongolian" + }, + { + "mr":"Marathi" + }, + { + "ms":"Malay" + }, + { + "mt":"Maltese" + }, + { + "my":"Myanmar (burmese)" + }, + { + "ne":"Nepali" + }, + { + "nl":"Dutch" + }, + { + "no":"Norwegian" + }, + { + "ny":"Chichewa" + }, + { + "pa":"Punjabi" + }, + { + "pl":"Polish" + }, + { + "pt":"Portuguese" + }, + { + "ro":"Romanian" + }, + { + "ru":"Russian" + }, + { + "si":"Sinhala" + }, + { + "sk":"Slovak" + }, + { + "sl":"Slovenian" + }, + { + "so":"Somali" + }, + { + "sq":"Albanian" + }, + { + "sr":"Serbian" + }, + { + "st":"Sesotho" + }, + { + "su":"Sundanese" + }, + { + "sv":"Swedish" + }, + { + "sw":"Swahili" + }, + { + "ta":"Tamil" + }, + { + "te":"Telugu" + }, + { + "tg":"Tajik" + }, + { + "th":"Thai" + }, + { + "tl":"Filipino" + }, + { + "tr":"Turkish" + }, + { + "uk":"Ukrainian" + }, + { + "ur":"Urdu" + }, + { + "uz":"Uzbek" + }, + { + "vi":"Vietnamese" + }, + { + "yi":"Yiddish" + }, + { + "yo":"Yoruba" + }, + { + "zh":"Chinese (simplified)" + }, + { + "zh_TW":"Chinese (traditional)" + }, + { + "zu":"Zulu" + } + ] + }, + "headers":{ + "accept-ranges":"bytes", + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"539", + "cache-control":"public, max-age=0, must-revalidate", + "content-disposition":"inline", + "content-length":"1621", + "content-type":"application/json", + "date":"Wed, 14 Jun 2023 13:36:24 GMT", + "etag":"\"16572248ef97989fb59ada96c08b4ff4\"", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "vary":"RSC, Next-Router-State-Tree, Next-Router-Prefetch", + "x-matched-path":"/api/languages", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"HIT", + "x-vercel-id":"dub1::94tdx-1686749783937-8a32b554336e" + }, + "schema":{} + }, + { + "name":"Detect", + "url":"https://translate-all-languages.p.rapidapi.com/detect", + "description":"Detects the language of text within a request.", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"The input text upon which to perform language detection. Repeat this parameter to perform language detection on multiple text inputs.", + "default":"If you don’t know what language the text is written in, our API will detect the language of the original request." + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://translate-all-languages.p.rapidapi.com/detect\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-all-languages.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":200, + "langDetect":"en" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "age":"0", + "cache-control":"public, max-age=0, must-revalidate", + "content-type":"application/json", + "date":"Wed, 14 Jun 2023 13:34:34 GMT", + "server":"RapidAPI-1.2.8", + "strict-transport-security":"max-age=63072000; includeSubDomains; preload", + "vary":"RSC, Next-Router-State-Tree, Next-Router-Prefetch", + "x-matched-path":"/api/detect", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8", + "x-vercel-cache":"MISS", + "x-vercel-execution-region":"iad1", + "x-vercel-id":"dub1::iad1::drpsq-1686749672342-5db76d24f034" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_all_languages/api.py b/toolbench/toolenv/tools/Translation/translate_all_languages/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2b1ab44be720b50b008de18d53f86f4179d05760 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_all_languages/api.py @@ -0,0 +1,77 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(text: str, tolang: str, fromlang: str='en', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates input text, returning translated text" + text: The input text to translate. + tolang: The language to use for translation of the input text, set to one of the language codes listed in the overview tab + fromlang: The language of the fromLang, set to one of the language codes listed in Language Support. If the source language is not specified, the API will attempt to detect the source language automatically and return it within the response. + + """ + url = f"https://translate-all-languages.p.rapidapi.com/translate" + querystring = {'text': text, 'toLang': tolang, } + if fromlang: + querystring['fromLang'] = fromlang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate-all-languages.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of supported languages for translation." + + """ + url = f"https://translate-all-languages.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate-all-languages.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def detect(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Detects the language of text within a request." + text: The input text upon which to perform language detection. Repeat this parameter to perform language detection on multiple text inputs. + + """ + url = f"https://translate-all-languages.p.rapidapi.com/detect" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate-all-languages.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translate_com_api.json b/toolbench/toolenv/tools/Translation/translate_com_api.json new file mode 100644 index 0000000000000000000000000000000000000000..e45b851a08980fa12e8ec198c828fc505e21d950 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_com_api.json @@ -0,0 +1,80 @@ +{ + "product_id": "api_622d9760-82bc-4d6d-bda4-e43b4d56d90e", + "tool_description": "The API is a simple way to translate anything you need. You can send content for human and machine translation, get price quotes, check project progress, and automatically receive translated content. Translate API advantages: User-friendly and easy to use Easily integrate with websites and 3rd party products Automation of information flow translation Continuous translation 24/7 More than 90 language pairs in one place Affordable prices and a variety of payment options. So, if you are interest...", + "home_url": "https://rapidapi.com/SantosMorar/api/translate-com-api/", + "name": "Translate.com API", + "title": "Translate.com API", + "pricing": "FREE", + "tool_name": "Translate.com API", + "score": null, + "host": "translate-com-api.p.rapidapi.com", + "api_list": [ + { + "name": "Get machine translation", + "url": "https://translate-com-api.p.rapidapi.com/mt", + "description": "The endpoint serves for machine translation execution.\nIn the \u201csource_language\u201d parameter you should set the source text language code.\nIn the \u201ctranslation_language\u201d parameter you should set the translation text language code.\nYou can get available languages and their codes for Translate API Machine Translation using the \u201cMachine translation languages\u201d endpoint.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello World!" + }, + { + "name": "source_language", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "translation_language", + "type": "STRING", + "description": "", + "default": "es" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-com-api.p.rapidapi.com/mt\"\nquerystring = {\"text\": \"Hello World!\", \"source_language\": \"en\", \"translation_language\": \"es\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-com-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-com-api.p.rapidapi.com/mt\"\nquerystring = {\"text\": \"Hello World!\", \"source_language\": \"en\", \"translation_language\": \"es\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-com-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Create human translation order", + "url": "https://translate-com-api.p.rapidapi.com/ht", + "description": "The endpoint is designed to create a human translation order.\nThe result and status of the order can be tracked by the \"Get human translation order\" endpoint.\nYou can also pass the URL of your service to receive the translation result in the \u201ccallback_url\u201d parameter", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello World!" + }, + { + "name": "translation_language", + "type": "STRING", + "description": "", + "default": "es" + }, + { + "name": "source_language", + "type": "STRING", + "description": "", + "default": "en" + } + ], + "optional_parameters": [ + { + "name": "callback_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://translate-com-api.p.rapidapi.com/ht\"\nquerystring = {\"text\": \"Hello World!\", \"callback_url\": \"\", \"translation_language\": \"es\", \"source_language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-com-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-com-api.p.rapidapi.com/ht\"\nquerystring = {\"text\": \"Hello World!\", \"callback_url\": \"\", \"translation_language\": \"es\", \"source_language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-com-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_it.json b/toolbench/toolenv/tools/Translation/translate_it.json new file mode 100644 index 0000000000000000000000000000000000000000..3b4f6c36eea59bcf0bf86a244ae85f61200108b7 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_it.json @@ -0,0 +1,67 @@ +{ + "tool_name": "Translate it", + "tool_description": "Api translator, with this api you could get translate your text easily from one of the supported languages to another one", + "title": "Translate it", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/360exp-360exp-default/api/translate-it1/", + "host": "translate-it1.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://translate-it1.p.rapidapi.com/translate", + "description": "with this endpoint you can translate text from one language to another one with the following params: q, source, target (q is the text to translate, source is the language of the text and target is the language to translate the text)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-it1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-it1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "translatedText": { + "type": "string" + } + } + } + }, + { + "name": "options", + "url": "https://translate-it1.p.rapidapi.com/options", + "description": "With this endpoint you can get the supported languages and the possible translations between them", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-it1.p.rapidapi.com/options\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-it1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "translate", + "url": "https://translate-it1.p.rapidapi.com/translate", + "description": "with this endpoint you can translate text from one language to another one with the following params: q, source, target (q is the text to translate, source is the language of the text and target is the language to translate the text)", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-it1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-it1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-it1.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-it1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "translatedText": { + "type": "string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_it/api.py b/toolbench/toolenv/tools/Translation/translate_it/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2b973cc5e4f729ea5d24269708f538bf057afb32 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_it/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def options(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you can get the supported languages and the possible translations between them" + + """ + url = f"https://translate-it1.p.rapidapi.com/options" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate-it1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translate_language.json b/toolbench/toolenv/tools/Translation/translate_language.json new file mode 100644 index 0000000000000000000000000000000000000000..5e42108d8d68173e46dc88d1f33164cd77304c36 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_language.json @@ -0,0 +1,248 @@ +{ + "tool_name": "Translate Language", + "tool_description": "Translate Language - Quickly translate your text into all the different languages .\n\nThe Translate Language API is a service that enables the translation of a text passage into various languages. This API allows users to input a text that needs to be translated and select the desired target language.\n\nThe API provides a convenient way to automatically translate text between different languages without the need for manual translation work. By utilizing the API, users can translate sentences, p...", + "title": "Translate Language", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 775, + "avgSuccessRate": 100, + "popularityScore": 9.3, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/ntd119/api/translate-language/", + "host": "translate-language.p.rapidapi.com", + "api_list": [ + { + "name": "Supported Languages", + "url": "https://translate-language.p.rapidapi.com/supported-languages", + "description": "Supported Languages", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/supported-languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "language": { + "type": "string" + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + }, + { + "name": "Translate", + "url": "https://translate-language.p.rapidapi.com/translate", + "description": "Translate", + "method": "POST", + "required_parameters": [ + { + "name": "to_language", + "type": "ENUM", + "description": "`to_language`: Language to be translated", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "from_language", + "type": "ENUM", + "description": "`from_language`: Current language", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/translate\"\nquerystring = {\"to_language\": to_language}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "from_language": { + "type": "string" + }, + "text": { + "type": "string" + }, + "to_language": { + "type": "string" + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + }, + { + "name": "Detect Language", + "url": "https://translate-language.p.rapidapi.com/detect-language", + "description": "Detect Language", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/detect-language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "language": { + "type": "string" + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + }, + { + "name": "Translate", + "url": "https://translate-language.p.rapidapi.com/translate", + "description": "Translate", + "method": "POST", + "required_parameters": [ + { + "name": "to_language", + "type": "ENUM", + "description": "`to_language`: Language to be translated", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "from_language", + "type": "ENUM", + "description": "`from_language`: Current language", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/translate\"\nquerystring = {\"from_language\": \"\", \"to_language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/translate\"\nquerystring = {\"from_language\": \"\", \"to_language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "from_language": { + "type": "string" + }, + "text": { + "type": "string" + }, + "to_language": { + "type": "string" + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + }, + { + "name": "Detect Language", + "url": "https://translate-language.p.rapidapi.com/detect-language", + "description": "Detect Language", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/detect-language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-language.p.rapidapi.com/detect-language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "language": { + "type": "string" + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_language/api.py b/toolbench/toolenv/tools/Translation/translate_language/api.py new file mode 100644 index 0000000000000000000000000000000000000000..348a214582ba20f46849824cf5b7c4dc14c0e096 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_language/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Supported Languages" + + """ + url = f"https://translate-language.p.rapidapi.com/supported-languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translate_plus.json b/toolbench/toolenv/tools/Translation/translate_plus.json new file mode 100644 index 0000000000000000000000000000000000000000..17265225eb6463ab59ca47eae23f381bdbc6784d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_plus.json @@ -0,0 +1,121 @@ +{ + "tool_name": "Translate Plus", + "tool_description": "Dynamically Translate between languages with the Translate Plus API. Our API is much cheaper & faster than Google Translate and other translation providers! Get Started Free!\nIf you are using a very high volume and with our new service, you can translate more efficiently and cost-effectively on https://translateplus.io", + "title": "Translate Plus", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 416, + "avgSuccessRate": 99, + "popularityScore": 9.9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/sohailglt/api/translate-plus/", + "host": "translate-plus.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://translate-plus.p.rapidapi.com/translate", + "description": "Translate any text into more than 100+ languages.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "translations": { + "text": "Hello , How are you", + "translation": "Hallo hoe gaat het", + "source": "en", + "target": "nl" + }, + "details": {} + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "cache-control": "public, max-age=0, must-revalidate", + "content-length": "123", + "content-type": "application/json", + "date": "Tue, 27 Sep 2022 22:18:35 GMT", + "server": "RapidAPI-1.2.8", + "strict-transport-security": "max-age=63072000; includeSubDomains; preload", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8", + "x-vercel-cache": "MISS", + "x-vercel-id": "sin1::iad1::cttlz-1664317115641-5c53223e7dd1" + }, + "schema": {} + }, + { + "name": "detect_language", + "url": "https://translate-plus.p.rapidapi.com/language_detect", + "description": "Our API will detect text and let you know the language name!", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/language_detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "language_detection": { + "text": "How are you?", + "language": "en" + } + }, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-origin": "*", + "cache-control": "public, max-age=0, must-revalidate", + "content-length": "62", + "content-type": "application/json", + "date": "Tue, 27 Sep 2022 22:19:27 GMT", + "server": "RapidAPI-1.2.8", + "strict-transport-security": "max-age=63072000; includeSubDomains; preload", + "x-rapidapi-region": "AWS - ap-southeast-1", + "x-rapidapi-version": "1.2.8", + "x-vercel-cache": "MISS", + "x-vercel-id": "sin1::iad1::dvcn2-1664317166855-7992f89a3adb" + }, + "schema": {} + }, + { + "name": "supported_languages", + "url": "https://translate-plus.p.rapidapi.com/", + "description": "The languages which out api supports.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "translate", + "url": "https://translate-plus.p.rapidapi.com/translate", + "description": "Translate any text into more than 100+ languages.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "detect_language", + "url": "https://translate-plus.p.rapidapi.com/language_detect", + "description": "Our API will detect text and let you know the language name!", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/language_detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-plus.p.rapidapi.com/language_detect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-plus.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_plus/api.py b/toolbench/toolenv/tools/Translation/translate_plus/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ef0520b14b732e3b554ed961575165d70cfa236e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_plus/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def supported_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The languages which out api supports." + + """ + url = f"https://translate-plus.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate-plus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translate_text.json b/toolbench/toolenv/tools/Translation/translate_text.json new file mode 100644 index 0000000000000000000000000000000000000000..6a891f805183c5252c743b4e83c173fcae9c24b1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_text.json @@ -0,0 +1,51 @@ +{ + "product_id": "api_08e4ea7d-43ed-4239-8101-62e1f7349336", + "tool_description": "Our Text Translation API allows seamless translation of any text content across a wide range of languages, facilitating efficient and accurate global communication.", + "home_url": "https://rapidapi.com/g4m3r0/api/translate-text8/", + "name": "Translate Text", + "title": "Translate Text", + "pricing": "FREE", + "tool_name": "Translate Text", + "score": { + "avgServiceLevel": 100, + "avgLatency": 68, + "avgSuccessRate": 38, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "translate-text8.p.rapidapi.com", + "api_list": [ + { + "name": "translate", + "url": "https://translate-text8.p.rapidapi.com/translate", + "description": "Translate text from a language to another.", + "method": "POST", + "required_parameters": [ + { + "name": "target", + "type": "STRING", + "description": "Target language code (e.g. en, de, hi, pl, zh)", + "default": "en" + }, + { + "name": "q", + "type": "STRING", + "description": "Text to translate", + "default": "\u00a1Hola Mundo!" + }, + { + "name": "source", + "type": "STRING", + "description": "Source language code (e.g. auto, en, de, hi, pl, zh)", + "default": "auto" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate-text8.p.rapidapi.com/translate\"\nquerystring = {\"target\": \"en\", \"q\": \"\u00a1Hola Mundo!\", \"source\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-text8.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate-text8.p.rapidapi.com/translate\"\nquerystring = {\"target\": \"en\", \"q\": \"\u00a1Hola Mundo!\", \"source\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate-text8.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_v3.json b/toolbench/toolenv/tools/Translation/translate_v3.json new file mode 100644 index 0000000000000000000000000000000000000000..bb0902063244739d02089ec73c3dead32f011923 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_v3.json @@ -0,0 +1,93 @@ +{ + "product_id": "api_0c10b4be-61ee-4a8b-b501-0568b8ee2d72", + "tool_description": "Easy and reliable Machine Translation and Language Detection", + "home_url": "https://rapidapi.com/omarmhaimdat/api/translate287/", + "name": "Translate_v3", + "title": "Translate", + "pricing": "FREEMIUM", + "tool_name": "Translate_v3", + "score": { + "avgServiceLevel": 100, + "avgLatency": 343, + "avgSuccessRate": 100, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "translate287.p.rapidapi.com", + "api_list": [ + { + "name": "Accurate Language Detection", + "url": "https://translate287.p.rapidapi.com/detect/accurate", + "description": "This endpoint will return the Language of the Text", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "this is accurate and it can improve if it's longer" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate287.p.rapidapi.com/detect/accurate\"\nquerystring = {\"text\": \"this is accurate and it can improve if it's longer\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate287.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate287.p.rapidapi.com/detect/accurate\"\nquerystring = {\"text\": \"this is accurate and it can improve if it's longer\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate287.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Fast Language Detection", + "url": "https://translate287.p.rapidapi.com/detect/fast", + "description": "This endpoint will return the Language of the Text", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "this is accurate and it can improve if it's longer" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translate287.p.rapidapi.com/detect/fast\"\nquerystring = {\"text\": \"this is accurate and it can improve if it's longer\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate287.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate287.p.rapidapi.com/detect/fast\"\nquerystring = {\"text\": \"this is accurate and it can improve if it's longer\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate287.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Translate", + "url": "https://translate287.p.rapidapi.com/translate/", + "description": "Return Translated Text and the source language if it wasn't specified", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "this is accurate and it can improve if it's longer" + }, + { + "name": "dest", + "type": "STRING", + "description": "", + "default": "es" + } + ], + "optional_parameters": [ + { + "name": "src", + "type": "STRING", + "description": "", + "default": "auto" + } + ], + "code": "import requests\n\nurl = \"https://translate287.p.rapidapi.com/translate/\"\nquerystring = {\"text\": \"this is accurate and it can improve if it's longer\", \"dest\": \"es\", \"src\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate287.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translate287.p.rapidapi.com/translate/\"\nquerystring = {\"text\": \"this is accurate and it can improve if it's longer\", \"dest\": \"es\", \"src\": \"auto\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translate287.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "translate_v3" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translate_v3/api.py b/toolbench/toolenv/tools/Translation/translate_v3/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5ecdf8e7c061ed73ba9a0012507f4990499e0f84 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translate_v3/api.py @@ -0,0 +1,73 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def accurate_language_detection(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return the Language of the Text" + + """ + url = f"https://translate287.p.rapidapi.com/detect/accurate" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate287.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def fast_language_detection(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return the Language of the Text" + + """ + url = f"https://translate287.p.rapidapi.com/detect/fast" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate287.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translate(text: str, dest: str, src: str='auto', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return Translated Text and the source language if it wasn't specified" + + """ + url = f"https://translate287.p.rapidapi.com/translate/" + querystring = {'text': text, 'dest': dest, } + if src: + querystring['src'] = src + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translate287.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translateme_translation.json b/toolbench/toolenv/tools/Translation/translateme_translation.json new file mode 100644 index 0000000000000000000000000000000000000000..2a7e5870e09de463dfecf0a11676db33c6a6873b --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translateme_translation.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_21d9da5b-c30b-4671-aa40-3087413cb3a8", + "tool_description": "Machine translation is controlled by a handful of companies. These companies have a monopoly on the price. \n\nTranslateMe Offers upto a 90% reduction in cost with a focus on privacy for end users.", + "home_url": "https://rapidapi.com/ravneetdtu/api/translateme-translation/", + "name": "TranslateMe Translation", + "title": "TranslateMe Translation", + "pricing": "FREE", + "tool_name": "TranslateMe Translation", + "score": null, + "host": "translateme-translation.p.rapidapi.com", + "api_list": [ + { + "name": "Language Translation", + "url": "https://translateme-translation.p.rapidapi.com/translate", + "description": "This endpoint will take input text, input language and output language and further will\nreturn translated text in output language. Along with the request, following details need\nto be sent as body with API request.\n\u25cf input_text: String -> Text needs to be translated (required)\n\u25cf input_language: String -> Input language code (optional)\n\u25cf output_language: String -> output language code (required)\n\nLanguage Supports (Language - Language Code)\n1. English - en\n2. French - fr\n3. German - de\n4. Russian - ru\n5. Spanish - es\n6. Portuguese - pt\n7. Zulu - zu\n8. Dutch - nl\n9. Italian - it\n10. Indonesian - id\n11. Japanese - ja", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translateme-translation.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translateme-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translateme-translation.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translateme-translation.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translatext.json b/toolbench/toolenv/tools/Translation/translatext.json new file mode 100644 index 0000000000000000000000000000000000000000..59bb46f3633c6f7999bc83cb3073f4c3a79aaaf5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translatext.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_54a3453c-4cb4-4108-8adb-8a6cc87b15e8", + "tool_description": "TranslaText is a versatile translation app designed to bridge language barriers and make communication effortless. Whether you're traveling, working, or simply trying to understand text in a different language, TranslaText has you covered. Here are some key features:", + "home_url": "https://rapidapi.com/roylyntikisa/api/translatext/", + "name": "TranslaText", + "title": "TranslaText", + "pricing": "PAID", + "tool_name": "TranslaText", + "score": { + "avgServiceLevel": 100, + "avgLatency": 734, + "avgSuccessRate": 100, + "popularityScore": 9.5, + "__typename": "Score" + }, + "host": "translatext.p.rapidapi.com", + "api_list": [ + { + "name": "postTranslate", + "url": "https://translatext.p.rapidapi.com/api/translate", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translatext.p.rapidapi.com/api/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translatext.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translatext.p.rapidapi.com/api/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translatext.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translation.json b/toolbench/toolenv/tools/Translation/translation.json new file mode 100644 index 0000000000000000000000000000000000000000..85a934e0e695af3b8e08bd65d2fd50a35afc5b7d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translation.json @@ -0,0 +1,51 @@ +{ + "tool_name":"Translation", + "tool_description":"Helps to transte language", + "title":"Translation", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mudasirufatai1-xMHImU8zuKI/api/translation58/", + "host":"translation58.p.rapidapi.com", + "api_list":[ + { + "name":"Translation_copy", + "url":"https://translation58.p.rapidapi.com/owner", + "description":"Translate", + "method":"GET", + "required_parameters":[ + { + "name":"Translate", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://translation58.p.rapidapi.com/owner\"\nquerystring = {\"Translate\": translate}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translation58.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Translation", + "url":"https://translation58.p.rapidapi.com/owner", + "description":"Translate", + "method":"GET", + "required_parameters":[ + { + "name":"Translate", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://translation58.p.rapidapi.com/owner\"\nquerystring = {\"Translate\": translate}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translation58.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translation/api.py b/toolbench/toolenv/tools/Translation/translation/api.py new file mode 100644 index 0000000000000000000000000000000000000000..11baf040caab12c1c855894bdd1ff2e127381f8c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translation/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translation_copy(translate: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate" + + """ + url = f"https://translation58.p.rapidapi.com/owner" + querystring = {'Translate': translate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translation58.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translation(translate: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translate" + + """ + url = f"https://translation58.p.rapidapi.com/owner" + querystring = {'Translate': translate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translation58.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translation_cloud.json b/toolbench/toolenv/tools/Translation/translation_cloud.json new file mode 100644 index 0000000000000000000000000000000000000000..92c7b6d7ccb3590ea89f67bde8a381b78fc1ce31 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translation_cloud.json @@ -0,0 +1,70 @@ +{ + "product_id": "api_ae2145c6-ecbb-4b48-9676-736d3f5c5a4e", + "tool_description": "Unlock real-time translations with our Translation Cloud API. Easily translate text across multiple languages, auto-detect source languages, and access a dynamic list of supported languages. Ideal for apps, platforms, and businesses aiming for a global reach. Integrate today for seamless communication!", + "home_url": "https://rapidapi.com/berthecheick/api/translation-cloud2/", + "name": "Translation Cloud", + "title": "Translation Cloud", + "pricing": "FREEMIUM", + "tool_name": "Translation Cloud", + "score": null, + "host": "translation-cloud2.p.rapidapi.com", + "api_list": [ + { + "name": "Language Detection", + "url": "https://translation-cloud2.p.rapidapi.com/detect_language", + "description": "Detect the language of a given piece of text. Just provide:\n\n`text`: The text you want to determine the language for.\n\nThe response will provide:\n\n`detected_language`: The detected language's ISO code.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translation-cloud2.p.rapidapi.com/detect_language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translation-cloud2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translation-cloud2.p.rapidapi.com/detect_language\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translation-cloud2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "detected_language": { + "type": "string" + }, + "text": { + "type": "string" + } + } + } + }, + { + "name": "Text Translation", + "url": "https://translation-cloud2.p.rapidapi.com/translate", + "description": "Translate a given text from one language to another. \nThe request body should include:\n* `text`: The text you want to translate.\n* `source_lang` (Optional): The source language of the text. If not provided, the system will auto-detect the language.\n* `target_lang`: The language you want to translate to.\n\nThe response will provide:\n* `translated`: The translated version of your text.\n* `source_language`: The detected or provided source language.\n* `target_language`: Your chosen target language.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translation-cloud2.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translation-cloud2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translation-cloud2.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translation-cloud2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "translated": { + "type": "string", + "description": "The translated text." + }, + "source_language": { + "type": "string", + "description": "The detected or provided source language." + }, + "target_language": { + "type": "string", + "description": "The chosen target language." + } + }, + "required": [ + "translated", + "source_language", + "target_language" + ] + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translator.json b/toolbench/toolenv/tools/Translation/translator.json new file mode 100644 index 0000000000000000000000000000000000000000..c0d2e7f0792e2b0520d9d2f51f4f5455e2917e90 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translator.json @@ -0,0 +1,34 @@ +{ + "product_id": "api_04bdcf35-76d1-4248-88cc-05d090cd06cb", + "tool_description": "Text Translation", + "home_url": "https://rapidapi.com/yhwucss/api/translator97/", + "name": "Translator", + "title": "Translator", + "pricing": "FREEMIUM", + "tool_name": "Translator", + "score": { + "avgServiceLevel": 33, + "avgLatency": 40299, + "avgSuccessRate": 33, + "popularityScore": 6.4, + "__typename": "Score" + }, + "host": "translator97.p.rapidapi.com", + "api_list": [ + { + "name": "Get Languages", + "url": "https://translator97.p.rapidapi.com/languages", + "description": "Get all supported languages", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translator97.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translator97.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translator97.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translator97.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "messages": "The API is unreachable, please contact the API provider", + "info": "Your Client (working) ---> Gateway (working) ---> API (not working)" + } + } + ], + "standardized_name": "translator" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translator/api.py b/toolbench/toolenv/tools/Translation/translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..814b4fdb27061cd4e8684eeedaca8722d4378eda --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all supported languages" + + """ + url = f"https://translator97.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translator97.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translator_english_to_any_languages.json b/toolbench/toolenv/tools/Translation/translator_english_to_any_languages.json new file mode 100644 index 0000000000000000000000000000000000000000..001f79ec6748f852d52b5fe2282e7e734f858326 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translator_english_to_any_languages.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_bcaba75f-a5dc-48b3-9f0d-fbd8cd4b7fae", + "tool_description": "You Can Translate English to Any Languages within one minutes", + "home_url": "https://rapidapi.com/rahilkasaragod198/api/translator-english-to-any-languages/", + "name": "Translator English to Any Languages", + "title": "Translator English to Any Languages", + "pricing": "PAID", + "tool_name": "Translator English to Any Languages", + "score": null, + "host": "translator-english-to-any-languages.p.rapidapi.com", + "api_list": [ + { + "name": "Translate English to ANY Languages", + "url": "https://translator-english-to-any-languages.p.rapidapi.com/", + "description": "use POST Method to Translate **to** {language code here} **content **{user content here}", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translator-english-to-any-languages.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translator-english-to-any-languages.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translator-english-to-any-languages.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translator-english-to-any-languages.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translator_v2/api.py b/toolbench/toolenv/tools/Translation/translator_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d09a5b75c7a4074158efacfcf75093d3d7f283d5 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translator_v2/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all of the languages abbreviations" + + """ + url = f"https://translator105.p.rapidapi.com/get-langs" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translator105.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def translate(text: str, lang: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Translates text" + + """ + url = f"https://translator105.p.rapidapi.com/translate" + querystring = {'text': text, 'lang': lang, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translator105.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translatorxpress/api.py b/toolbench/toolenv/tools/Translation/translatorxpress/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e6b987b6b06b074042283ca182c88effffac2e0e --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translatorxpress/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translator_support_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list support languages" + + """ + url = f"https://translatorxpress.p.rapidapi.com/translator/support-languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translatorxpress.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/translef_translator.json b/toolbench/toolenv/tools/Translation/translef_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..632a370f28d61d2bbbff3c6c6421c274982ac2c1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translef_translator.json @@ -0,0 +1,80 @@ +{ + "tool_name": "Translef - translator", + "tool_description": "Translate text to 85+ languages. 0.3$ for million symbols \nFree translation of 50.000 characters.\nSimple and intuitive API.\nFor all questions, please contact telegram - https://t.me/translef", + "title": "Translef - translator", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 0, + "avgLatency": 776, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/mandus1995/api/translef-translator/", + "host": "translef-translator.p.rapidapi.com", + "api_list": [ + { + "name": "List of available languages", + "url": "https://translef-translator.p.rapidapi.com/language/list", + "description": "This method returns a list of language codes that will be needed in the method to translate the text", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translef-translator.p.rapidapi.com/language/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translef-translator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Text translation", + "url": "https://translef-translator.p.rapidapi.com/translate/text", + "description": "The endpoint itself will determine the source language of the text\n\n\"language_code\" - The code of the language to be translated into\n\"text\" - The text to be translated", + "method": "POST", + "required_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello world" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translef-translator.p.rapidapi.com/translate/text\"\nquerystring = {\"language_code\": language_code, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translef-translator.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Text translation", + "url": "https://translef-translator.p.rapidapi.com/translate/text", + "description": "The endpoint itself will determine the source language of the text\n\n\"language_code\" - The code of the language to be translated into\n\"text\" - The text to be translated", + "method": "POST", + "required_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "", + "default": "de" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Hello world" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translef-translator.p.rapidapi.com/translate/text\"\nquerystring = {\"language_code\": \"de\", \"text\": \"Hello world\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translef-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translef-translator.p.rapidapi.com/translate/text\"\nquerystring = {\"language_code\": \"de\", \"text\": \"Hello world\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translef-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/translef_translator/api.py b/toolbench/toolenv/tools/Translation/translef_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0a2d5db90e415cdf4d4352a37b787cdfd08c7463 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/translef_translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_of_available_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This method returns a list of language codes that will be needed in the method to translate the text" + + """ + url = f"https://translef-translator.p.rapidapi.com/language/list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "translef-translator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/transliterator.json b/toolbench/toolenv/tools/Translation/transliterator.json new file mode 100644 index 0000000000000000000000000000000000000000..96026b108a5600bd3a09967baf73a2cf66748af6 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/transliterator.json @@ -0,0 +1,132 @@ +{ + "tool_name": "Transliterator", + "tool_description": "An API for transliteration of person names between Arabic, English, Russian and other languages.", + "title": "Transliterator", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 0, + "avgLatency": 37, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/nontrivialtools/api/transliterator/", + "host": "transliterator.p.rapidapi.com", + "api_list": [ + { + "name": "translit", + "url": "https://transliterator.p.rapidapi.com/translit", + "description": "(POST) Transliterates the input string and return a list of output options", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "str", + "type": "STRING", + "description": "", + "default": "\u0645\u0635\u0637\u0641\u0649" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "ar" + } + ], + "optional_parameters": [ + { + "name": "count", + "type": "NUMBER", + "description": "", + "default": "4" + } + ], + "code": "import requests\n\nurl = \"https://transliterator.p.rapidapi.com/translit\"\nquerystring = {\"to\": to, \"str\": str, \"count\": count, \"from\": is_from}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transliterator.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "translit", + "url": "https://transliterator.p.rapidapi.com/translit", + "description": "(GET) Transliterates the input string and return a list of output options", + "method": "GET", + "required_parameters": [ + { + "name": "str", + "type": "STRING", + "description": "", + "default": "\u0645\u0635\u0637\u0641\u0649" + }, + { + "name": "to", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "ar" + } + ], + "optional_parameters": [ + { + "name": "count", + "type": "NUMBER", + "description": "", + "default": "4" + } + ], + "code": "import requests\n\nurl = \"https://transliterator.p.rapidapi.com/translit\"\nquerystring = {\"count\": count, \"str\": str, \"to\": to, \"from\": is_from}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transliterator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "translit", + "url": "https://transliterator.p.rapidapi.com/translit", + "description": "(POST) Transliterates the input string and return a list of output options", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "str", + "type": "STRING", + "description": "", + "default": "\u0645\u0635\u0637\u0641\u0649" + }, + { + "name": "from", + "type": "STRING", + "description": "", + "default": "ar" + } + ], + "optional_parameters": [ + { + "name": "count", + "type": "NUMBER", + "description": "", + "default": "4" + } + ], + "code": "import requests\n\nurl = \"https://transliterator.p.rapidapi.com/translit\"\nquerystring = {\"to\": \"en\", \"str\": \"\u0645\u0635\u0637\u0641\u0649\", \"count\": \"4\", \"from\": \"ar\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transliterator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transliterator.p.rapidapi.com/translit\"\nquerystring = {\"to\": \"en\", \"str\": \"\u0645\u0635\u0637\u0641\u0649\", \"count\": \"4\", \"from\": \"ar\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transliterator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/transliterator/api.py b/toolbench/toolenv/tools/Translation/transliterator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ad4075341a7a52f33c948de60fbeb6aff15457bb --- /dev/null +++ b/toolbench/toolenv/tools/Translation/transliterator/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translit(str: str, to: str, is_from: str, count: int=4, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "(GET) Transliterates the input string and return a list of output options" + + """ + url = f"https://transliterator.p.rapidapi.com/translit" + querystring = {'str': str, 'to': to, 'from': is_from, } + if count: + querystring['count'] = count + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "transliterator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/tribal_mail_translate.json b/toolbench/toolenv/tools/Translation/tribal_mail_translate.json new file mode 100644 index 0000000000000000000000000000000000000000..1c1d5ca20438e2f82120f29537f44a8186464de6 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/tribal_mail_translate.json @@ -0,0 +1,54 @@ +{ + "tool_name": "Tribal Mail - Translate", + "tool_description": "A fast, affordable, and accurate translation API for publishers, websites, and businesses. Translate into 75 different languages/variants using one of the most advanced translation machine learning algorithms in the world.", + "title": "Tribal Mail - Translate", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 99, + "avgLatency": 2327, + "avgSuccessRate": 99, + "popularityScore": 9, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/marchingtonoliver/api/tribal-mail-translate/", + "host": "tribal-mail-translate.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate", + "description": "This is the main endpoint to send original text to and return the translated version.\n\nPlease use all three parts or the schema to send: target_language, source_language and text.\n\nText should be in UTF-8 format.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tribal-mail-translate.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Allowance", + "url": "https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate-allowance", + "description": "This endpoint shows your current left over allowance for the month.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate-allowance\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tribal-mail-translate.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Translate", + "url": "https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate", + "description": "This is the main endpoint to send original text to and return the translated version.\n\nPlease use all three parts or the schema to send: target_language, source_language and text.\n\nText should be in UTF-8 format.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tribal-mail-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tribal-mail-translate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/tribal_mail_translate/api.py b/toolbench/toolenv/tools/Translation/tribal_mail_translate/api.py new file mode 100644 index 0000000000000000000000000000000000000000..22d5429e55e33584d1615b42b5fc4890a35bad4c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/tribal_mail_translate/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def allowance(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint shows your current left over allowance for the month." + + """ + url = f"https://tribal-mail-translate.p.rapidapi.com/tribal-mail/translate-allowance" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tribal-mail-translate.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/unlimited_language.json b/toolbench/toolenv/tools/Translation/unlimited_language.json new file mode 100644 index 0000000000000000000000000000000000000000..d27fdc87c03cde782414faa3af09f7dd2a147dab --- /dev/null +++ b/toolbench/toolenv/tools/Translation/unlimited_language.json @@ -0,0 +1,170 @@ +{ + "product_id": "api_0da56fc8-d95e-4ca9-852d-479c7ad07b17", + "tool_description": "Unlimited language translation, detection etc. Get temporary authorization tokens at https://rapidapi.com/opensorted/api/token-api . Tokens are only valid for ~ 5 minutes, so you should frequently generate a new one via Token API.", + "home_url": "https://rapidapi.com/opensorted/api/unlimited-language/", + "name": "Unlimited Language", + "title": "Unlimited Language", + "pricing": "FREEMIUM", + "tool_name": "Unlimited Language", + "score": { + "avgServiceLevel": 100, + "avgLatency": 218, + "avgSuccessRate": 100, + "popularityScore": 9.4, + "__typename": "Score" + }, + "host": "unlimited-language.p.rapidapi.com", + "api_list": [ + { + "name": "context", + "url": "https://unlimited-language.p.rapidapi.com/dictionary/lookup", + "description": "Provides alternative translations for a word. Each translation has a part-of-speech and a list of back-translations. The back-translations enable a user to understand the translation in context. The `/context/examples` endpoint allows you to see example uses of each translation pair.", + "method": "POST", + "required_parameters": [ + { + "name": "token", + "type": "STRING", + "description": "Generate a token from Token API - [https://rapidapi.com/opensorted/api/token-api](url)", + "default": "" + }, + { + "name": "from", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `dictionary` to see all available codes", + "default": "en" + }, + { + "name": "to", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `dictionary` to see all available codes", + "default": "es" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/dictionary/lookup\"\nquerystring = {\"token\": \"\", \"from\": \"en\", \"to\": \"es\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/dictionary/lookup\"\nquerystring = {\"token\": \"\", \"from\": \"en\", \"to\": \"es\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "context/examples", + "url": "https://unlimited-language.p.rapidapi.com/dictionary/examples", + "description": "Provides examples that show how words are used in context.", + "method": "POST", + "required_parameters": [ + { + "name": "token", + "type": "STRING", + "description": "Generate a token from Token API - [https://rapidapi.com/opensorted/api/token-api](url)", + "default": "" + }, + { + "name": "to", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `dictionary` to see all available codes", + "default": "es" + }, + { + "name": "from", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `dictionary` to see all available codes", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/dictionary/examples\"\nquerystring = {\"token\": \"\", \"to\": \"es\", \"from\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/dictionary/examples\"\nquerystring = {\"token\": \"\", \"to\": \"es\", \"from\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "translate", + "url": "https://unlimited-language.p.rapidapi.com/translate", + "description": "Translates text", + "method": "POST", + "required_parameters": [ + { + "name": "token", + "type": "STRING", + "description": "Generate a token from Token API - [https://rapidapi.com/opensorted/api/token-api](url)", + "default": "" + }, + { + "name": "to", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `translation` to see all available codes", + "default": "es" + } + ], + "optional_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `translation` to see all available codes", + "default": "en" + }, + { + "name": "textType", + "type": "STRING", + "description": "`plain` OR `html`", + "default": "plain" + } + ], + "code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/translate\"\nquerystring = {\"token\": \"\", \"from\": \"en\", \"to\": \"es\", \"textType\": \"plain\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/translate\"\nquerystring = {\"token\": \"\", \"from\": \"en\", \"to\": \"es\", \"textType\": \"plain\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "transliterate", + "url": "https://unlimited-language.p.rapidapi.com/transliterate", + "description": "Converts text in one language from one script to another script", + "method": "POST", + "required_parameters": [ + { + "name": "token", + "type": "STRING", + "description": "Generate a token from Token API - [https://rapidapi.com/opensorted/api/token-api](url)", + "default": "" + }, + { + "name": "language", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `translation` to see all available codes", + "default": "ja" + }, + { + "name": "toScript", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `transliteration` to see all available codes", + "default": "Latn" + }, + { + "name": "fromScript", + "type": "STRING", + "description": "Get `/languages` endpoint with filter `transliteration` to see all available codes", + "default": "Jpan" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/transliterate\"\nquerystring = {\"token\": \"\", \"language\": \"ja\", \"toScript\": \"Latn\", \"fromScript\": \"Jpan\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/transliterate\"\nquerystring = {\"token\": \"\", \"language\": \"ja\", \"toScript\": \"Latn\", \"fromScript\": \"Jpan\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "detect", + "url": "https://unlimited-language.p.rapidapi.com/detect", + "description": "Detects the language of a piece of text.", + "method": "POST", + "required_parameters": [ + { + "name": "token", + "type": "STRING", + "description": "Generate a token from Token API - [https://rapidapi.com/opensorted/api/token-api](url)", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/detect\"\nquerystring = {\"token\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://unlimited-language.p.rapidapi.com/detect\"\nquerystring = {\"token\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"unlimited-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/vezzra.json b/toolbench/toolenv/tools/Translation/vezzra.json new file mode 100644 index 0000000000000000000000000000000000000000..3a8968e880e77762583734b38b94addda8cc7efa --- /dev/null +++ b/toolbench/toolenv/tools/Translation/vezzra.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Vezzra", + "tool_description":"Translate text | from: Ш дщму г | to: I love u | and vice versa", + "title":"Vezzra", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":0, + "avgLatency":127306, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/redible-redible-default/api/vezzra1/", + "host":"vezzra1.p.rapidapi.com", + "api_list":[ + { + "name":"Translate", + "url":"https://vezzra1.p.rapidapi.com/Translate", + "description":"Jast paste text", + "method":"GET", + "required_parameters":[ + { + "name":"Text", + "type":"STRING", + "description":"", + "default":"Z k.,k. vjhj;tyjt" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vezzra1.p.rapidapi.com/Translate\"\nquerystring = {\"Text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vezzra1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/vezzra/api.py b/toolbench/toolenv/tools/Translation/vezzra/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d9d41c561749d5c1ef6b0681ab4c808002408388 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/vezzra/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translate(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Jast paste text" + + """ + url = f"https://vezzra1.p.rapidapi.com/translate" + querystring = {'Text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vezzra1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/vietnamese_english_translator.json b/toolbench/toolenv/tools/Translation/vietnamese_english_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..a8aca295be240f00f7329751711bdb1472cb0a2c --- /dev/null +++ b/toolbench/toolenv/tools/Translation/vietnamese_english_translator.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Vietnamese English translator", + "tool_description":"Vietnamese English translator", + "title":"Vietnamese English translator", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/khangruni/api/vietnamese-english-translator/", + "host":"vietnamese-english-translator.p.rapidapi.com", + "api_list":[ + { + "name":"translator", + "url":"https://vietnamese-english-translator.p.rapidapi.com/translate", + "description":"translator", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"lang", + "type":"ENUM", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vietnamese-english-translator.p.rapidapi.com/translate\"\nquerystring = {\"text\": text, \"lang\": lang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vietnamese-english-translator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/vietnamese_english_translator/api.py b/toolbench/toolenv/tools/Translation/vietnamese_english_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7dfdf1c748e61084cd9c9b63ff0997a18e7acae1 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/vietnamese_english_translator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def translator(text: str, lang: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "translator" + + """ + url = f"https://vietnamese-english-translator.p.rapidapi.com/translate" + querystring = {'text': text, 'lang': lang, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vietnamese-english-translator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/webit_language.json b/toolbench/toolenv/tools/Translation/webit_language.json new file mode 100644 index 0000000000000000000000000000000000000000..45c48f50ed35ccf47dfb0e48ea2fcc4023dcde80 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/webit_language.json @@ -0,0 +1,1217 @@ +{ + "tool_name": "Webit Language", + "tool_description": "A.I. Text Paraphrase (Rewrite), Dictionary (Lookup, Examples, Bilingual, Synonyms, Antonyms), Key Phrases, Sentences Breaker.", + "title": "Webit Language", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 94, + "avgLatency": 3553, + "avgSuccessRate": 94, + "popularityScore": 9.2, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/webit/api/webit-language/", + "host": "webit-language.p.rapidapi.com", + "api_list": [ + { + "name": "Dictionary Synonyms (TEMPORARILY UNAVAILABLE)", + "url": "https://webit-language.p.rapidapi.com/dictionary-synonyms", + "description": "Dictionary Synonyms", + "method": "GET", + "required_parameters": [ + { + "name": "language", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "q", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/dictionary-synonyms\"\nquerystring = {\"language\": language, \"q\": q}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Dictionary Lookup (TEMPORARILY UNAVAILABLE)", + "url": "https://webit-language.p.rapidapi.com/dictionary-lookup", + "description": "Dictionary Lookup", + "method": "GET", + "required_parameters": [ + { + "name": "q", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/dictionary-lookup\"\nquerystring = {\"q\": q}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Dictionary Examples (TEMPORARILY UNAVAILABLE)", + "url": "https://webit-language.p.rapidapi.com/dictionary-examples", + "description": "Dictionary Examples", + "method": "GET", + "required_parameters": [ + { + "name": "q", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "language", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/dictionary-examples\"\nquerystring = {\"q\": q, \"language\": language}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Dictionary Antonyms (TEMPORARILY UNAVAILABLE)", + "url": "https://webit-language.p.rapidapi.com/dictionary-antonyms", + "description": "Dictionary Antonyms", + "method": "GET", + "required_parameters": [ + { + "name": "language", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "q", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/dictionary-antonyms\"\nquerystring = {\"language\": language, \"q\": q}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Bilingual Dictionary", + "url": "https://webit-language.p.rapidapi.com/dictionary-bilingual", + "description": "Powerful multi-language bilingual neural translation dictionary, supporting 80+ languages.", + "method": "GET", + "required_parameters": [ + { + "name": "q", + "type": "STRING", + "description": "The word or comma separated words (up to 10 words per request) to seek bilingual translations for.", + "default": "merci, poisson, beaucoup" + }, + { + "name": "from", + "type": "STRING", + "description": "Supported ISO 639-1 language codes: 'ar', 'az', 'be', 'bg', 'ca', 'ce', 'cs', 'cy', 'da', 'de', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'it', 'ja', 'ka', 'kk', 'ko', 'la', 'lt', 'lv', 'mk', 'ms', 'nl', 'nn', 'no', 'pl', 'pt', 'ro', 'ru', 'sh', 'sk', 'sl', 'sr', 'sv', 'ta', 'tg', 'th', 'tr', 'tt', 'uk', 'ur', 'uz', 'vi', 'vo', 'zh'.", + "default": "fr" + }, + { + "name": "to", + "type": "STRING", + "description": "Supported ISO 639-1 language codes: 'ar', 'az', 'be', 'bg', 'ca', 'ce', 'cs', 'cy', 'da', 'de', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'it', 'ja', 'ka', 'kk', 'ko', 'la', 'lt', 'lv', 'mk', 'ms', 'nl', 'nn', 'no', 'pl', 'pt', 'ro', 'ru', 'sh', 'sk', 'sl', 'sr', 'sv', 'ta', 'tg', 'th', 'tr', 'tt', 'uk', 'ur', 'uz', 'vi', 'vo', 'zh'.", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/dictionary-bilingual\"\nquerystring = {\"q\": q, \"from\": is_from, \"to\": to}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "data": [ + { + "term": "merci", + "translations": [ + { + "confidence": 1, + "translation": "thanks" + }, + { + "confidence": 0.5555555555555556, + "translation": "cheers" + }, + { + "confidence": 0.5555555555555556, + "translation": "thank you" + } + ] + }, + { + "term": "poisson", + "translations": [ + { + "confidence": 1, + "translation": "pisces" + }, + { + "confidence": 0.9, + "translation": "fish" + }, + { + "confidence": 0.5, + "translation": "fishy" + } + ] + }, + { + "term": "beaucoup", + "translations": [ + { + "confidence": 1, + "translation": "much" + }, + { + "confidence": 0.9, + "translation": "many" + }, + { + "confidence": 0.5, + "translation": "very much" + }, + { + "confidence": 0.5, + "translation": "vastly" + }, + { + "confidence": 0.5, + "translation": "a lot" + } + ] + } + ], + "message": null, + "status": "success" + }, + "headers": { + "cache-control": "no-store, no-cache, must-revalidate", + "content-type": "application/json", + "date": "Sun, 15 Nov 2020 05:55:17 GMT", + "expires": "Thu, 19 Nov 1981 08:52:00 GMT", + "pragma": "no-cache", + "server": "RapidAPI-1.2.6", + "set-cookie": [ + "PHPSESSID=1guskncvdm4qp9o7d9o7mcua6t; path=/" + ], + "x-powered-by": "PHP/7.3.24, PleskLin", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.6", + "content-length": "637", + "connection": "Close" + }, + "schema": {} + }, + { + "name": "Key Phrases", + "url": "https://webit-language.p.rapidapi.com/key-phrases", + "description": "Key Phrases", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "language", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Catania is a city of the eastern coast of Sicily at the foot of Mount Etna, the biggest volcano in Europe. It is the seventh largest city in Italy with the metropolitan area reaching one million inhabitants, a major transport hub, economic centre and a university city where you will enjoy a busy downtown and an active nightlife. Catania is also well known for its particular baroque architecture and urban design." + } + ], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/key-phrases\"\nquerystring = {\"language\": language, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "data": { + "key_phrases": [ + "catania", + "city", + "eastern coast", + "sicily", + "foot", + "mount etna", + "biggest volcano", + "europe", + "seventh largest city", + "italy", + "metropolitan area reaching", + "million inhabitants", + "major transport hub", + "economic centre", + "university city", + "enjoy", + "busy downtown", + "active nightlife", + "baroque architecture", + "urban design" + ] + }, + "message": null, + "status": "success" + }, + "headers": { + "cache-control": "no-store, no-cache, must-revalidate", + "content-type": "application/json", + "date": "Fri, 06 Nov 2020 05:00:13 GMT", + "expires": "Thu, 19 Nov 1981 08:52:00 GMT", + "pragma": "no-cache", + "server": "RapidAPI-1.2.6", + "set-cookie": [ + "PHPSESSID=b5oks3242jg3ujltv8ea3ekiu3; path=/" + ], + "x-powered-by": "PHP/7.3.24, PleskLin", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.6", + "content-length": "372", + "connection": "Close" + }, + "schema": {} + }, + { + "name": "Analyze Grammar", + "url": "https://webit-language.p.rapidapi.com/analyze", + "description": "Perform deep sentences analysis to determine gender, nouns, pronouns, verbs, adverbs, adjective and a lot more complex syntax and morphological insights. Extract roots and stems and examine structure of words.\n\nPowered by Webit X-512 Neural Machine.", + "method": "POST", + "required_parameters": [ + { + "name": "q", + "type": "STRING", + "description": "The text to analyze.", + "default": "This is a sentence being analyzed. This is another one. That's amazing, isn't it?" + }, + { + "name": "language", + "type": "STRING", + "description": "The language to analyze text for. Currently supported: \"en\".", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/analyze\"\nquerystring = {\"q\": q, \"language\": language}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "data": { + "output": [ + { + "alignment": "This ", + "analysis": [ + { + "root": "this", + "symbols": [ + { + "explanation": "Determiner", + "symbols": "DET", + "tag_type": "pos" + }, + { + "explanation": "Demonstrative", + "symbols": "PronType=Dem", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "this", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Demonstrative", + "symbols": "PronType=Dem", + "tag_type": "feature" + }, + { + "explanation": "Masculine or feminine", + "symbols": "Gender=Masc,Fem", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "this", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Relative", + "symbols": "PronType=Rel", + "tag_type": "feature" + }, + { + "explanation": "Animate or inanimate", + "symbols": "Animacy=Anim,Inan", + "tag_type": "feature" + }, + { + "explanation": "Masculine or feminine", + "symbols": "Gender=Masc,Fem", + "tag_type": "feature" + }, + { + "explanation": "Singular or plural", + "symbols": "Number=Sing,Plur", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": "is ", + "analysis": [ + { + "root": "be", + "symbols": [ + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": "a ", + "analysis": [ + { + "root": "a", + "symbols": [ + { + "explanation": "Determiner", + "symbols": "DET", + "tag_type": "pos" + }, + { + "explanation": "Indefinite", + "symbols": "PronType=Ind", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": "sentence ", + "analysis": [ + { + "root": "sentence", + "symbols": [ + { + "explanation": "Noun", + "symbols": "NOUN", + "tag_type": "pos" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "sentence", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + }, + { + "root": "sentence", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + }, + { + "root": "sentence", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": "being ", + "analysis": [ + { + "root": "being", + "symbols": [ + { + "explanation": "Noun", + "symbols": "NOUN", + "tag_type": "pos" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "be", + "symbols": [ + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + } + ] + }, + { + "root": "be", + "symbols": [ + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + } + ] + }, + { + "root": "be", + "symbols": [ + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": "analyzed", + "analysis": [ + { + "root": "analyse", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + }, + { + "root": "analyse", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": ". ", + "analysis": [ + { + "root": ".", + "symbols": [ + { + "explanation": "Punctuation", + "symbols": "PUNCT", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": "This ", + "analysis": [ + { + "root": "this", + "symbols": [ + { + "explanation": "Determiner", + "symbols": "DET", + "tag_type": "pos" + }, + { + "explanation": "Demonstrative", + "symbols": "PronType=Dem", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "this", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Demonstrative", + "symbols": "PronType=Dem", + "tag_type": "feature" + }, + { + "explanation": "Masculine or feminine", + "symbols": "Gender=Masc,Fem", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "this", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Relative", + "symbols": "PronType=Rel", + "tag_type": "feature" + }, + { + "explanation": "Animate or inanimate", + "symbols": "Animacy=Anim,Inan", + "tag_type": "feature" + }, + { + "explanation": "Masculine or feminine", + "symbols": "Gender=Masc,Fem", + "tag_type": "feature" + }, + { + "explanation": "Singular or plural", + "symbols": "Number=Sing,Plur", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": "is ", + "analysis": [ + { + "root": "be", + "symbols": [ + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": "another one", + "analysis": [ + { + "root": "another one", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Indefinite", + "symbols": "PronType=Ind", + "tag_type": "feature" + }, + { + "explanation": "Masculine or feminine", + "symbols": "Gender=Masc,Fem", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": ". ", + "analysis": [ + { + "root": ".", + "symbols": [ + { + "explanation": "Punctuation", + "symbols": "PUNCT", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": "That's ", + "analysis": [ + { + "root": "that", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Demonstrative", + "symbols": "PronType=Dem", + "tag_type": "feature" + }, + { + "explanation": "Masculine or feminine", + "symbols": "Gender=Masc,Fem", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + }, + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + } + ] + }, + { + "alignment": "amazing", + "analysis": [ + { + "root": "amazing", + "symbols": [ + { + "explanation": "Adjective", + "symbols": "ADJ", + "tag_type": "pos" + } + ] + }, + { + "root": "amaze", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + }, + { + "root": "amaze", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + }, + { + "root": "amaze", + "symbols": [ + { + "explanation": "Verb", + "symbols": "VERB", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": ", ", + "analysis": [ + { + "root": ",", + "symbols": [ + { + "explanation": "Comma punctuation", + "symbols": "PUNCT[PunctType=Comm]", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": "isn't ", + "analysis": [ + { + "root": "be", + "symbols": [ + { + "explanation": "Auxiliary verb", + "symbols": "AUX", + "tag_type": "pos" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + }, + { + "explanation": "Adverb", + "symbols": "ADV", + "tag_type": "pos" + } + ] + } + ] + }, + { + "alignment": "it", + "analysis": [ + { + "root": "prpers", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Neuter", + "symbols": "Gender=Neut", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + }, + { + "root": "prpers", + "symbols": [ + { + "explanation": "Pronoun", + "symbols": "PRON", + "tag_type": "pos" + }, + { + "explanation": "Neuter", + "symbols": "Gender=Neut", + "tag_type": "feature" + }, + { + "explanation": "Singular", + "symbols": "Number=Sing", + "tag_type": "feature" + } + ] + } + ] + } + ], + "text": "This is a sentence being analyzed. This is another one. That's amazing, isn't it?" + }, + "message": null, + "status": "success" + }, + "headers": { + "cache-control": "no-store, no-cache, must-revalidate", + "content-type": "application/json", + "date": "Sun, 14 Mar 2021 05:24:13 GMT", + "expires": "Thu, 19 Nov 1981 08:52:00 GMT", + "pragma": "no-cache", + "server": "RapidAPI-1.2.7", + "set-cookie": [ + "PHPSESSID=v21o6e0qnaijg24vvmg1kkk0jr; path=/" + ], + "vary": "Accept-Encoding", + "x-powered-by": "PHP/7.3.27, PleskLin", + "x-rapidapi-region": "AWS - eu-central-1", + "x-rapidapi-version": "1.2.7", + "x-ratelimit-characters-limit": "1000", + "x-ratelimit-characters-remaining": "1000", + "x-ratelimit-characters-reset": "2382169", + "content-length": "6420", + "connection": "Close" + }, + "schema": {} + }, + { + "name": "Transliterate (Any to Latin)", + "url": "https://webit-language.p.rapidapi.com/transliterate", + "description": "Transliteration endpoint provides you with transliteration of text from any language to Latin. Transliterate \"\u3053\u3093\u306b\u3061\u306f\" to \"kon'nichiha\" with ease.", + "method": "GET", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Transliterate any text to Latin.", + "default": "\u3053\u3093\u306b\u3061\u306f\u3002" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/transliterate\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Autocomplete", + "url": "https://webit-language.p.rapidapi.com/autocomplete", + "description": "This endpoint provides autocomplete (word completion) for 80+ languages.", + "method": "GET", + "required_parameters": [ + { + "name": "q", + "type": "STRING", + "description": "", + "default": "aw" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/autocomplete\"\nquerystring = {\"q\": q}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Break Sentence", + "url": "https://webit-language.p.rapidapi.com/break-sentence", + "description": "Perform Neural Machine sentence breaking on a long text. Sentences are break in respect of grammar and phrases meaning.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to perform sentence break on.", + "default": "This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it." + }, + { + "name": "language", + "type": "STRING", + "description": "Language the input text is written by.\n\nSupported ISO 639-1 language codes: `af, am, ar, ast, az, ba, be, bg, bn, br, bs, ca, cs, cy, da, de, el, en, es, et, fa, ff, fi, fr, fy, ga, gd, gl, gu, ha, he, hi, hr, ht, hu, hy, id, ig, is, it, ja, jv, ka, kk, km, kn, ko, lb, lg, ln, lo, lt, lv, mg, mk, ml, mn, mr, ms, my, ne, nl, no, ns, oc, or, pa, pl, ps, pt, ro, ru, sd, si, sk, sl, so, sq, sr, ss, su, sv, sw, ta, th, tl, tn, tr, uk, ur, uz, vi, wo, xh, yi, yo, zh, zu`.", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/break-sentence\"\nquerystring = {\"text\": text, \"language\": language}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Detect", + "url": "https://webit-language.p.rapidapi.com/detect", + "description": "Detect", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to perform Neural language detection on.", + "default": "\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/detect\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Paraphrase (English)", + "url": "https://webit-language.p.rapidapi.com/paraphrase", + "description": "This endpoint allows for text paraphrasing (rewriting) using our A.I. neural network.\n\nSupported languages: English [en].", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "The English text to get paraphrase for.\n\nMaximum allowed characters length per request:\n- 250 characters for Free/Basic plan;\n- 1000 characters for Pro plan;\n- 3000 characters for Ultra plan;\n- 5000 characters for Mega plan.", + "default": "In ancient times Catania was associated with the legend of Amphinomos and Anapias, who, on occasion of a great eruption of Etna, abandoned all their property and carried off their aged parents on their shoulders. The stream of lava itself was said to have parted, and flowed aside so as not to harm them." + }, + { + "name": "entropy", + "type": "ENUM", + "description": "This parameter determines the amount of shuffling put by our A.I. into rewriting your text. The higher the entropy, the more different the final phrase is from the original text. Keep in mind that despite very_high entropy provides more creativity into rewriting your sentence, it might sometimes alter the original meaning, so feel free to fine-tune this parameter to a lower grade of entropy when the final output does not meet the desired result.\n\nSuggested reading: [https://webit.re/blog/202011201848-how-to-rewrite-sentences-without-changing-the-meaning](url)", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "salt", + "type": "NUMBER", + "description": "```\n* * * * * * * * * * * * * * * * * * * *\n* * * DEPRECATED SINCE 2021-02-22 * * *\n* * * * * IT WILL BE IGNORED! * * * * *\n* * * * * * * * * * * * * * * * * * * *\n```\n\n[EXPERIMENTAL] Changes text lexical parts and words with similar synonyms. Accepts an integer value included in the 0-100 range, with 0 means no modification (disabled), 50 brings an average modification, 100 being the strongest change possible.\n\n*Note that, differently from entropy which uses advanced neural patterns, salt slows down text processing due to additional inner dictionary lookups. Therefore, consider using it only when fast processing time are not your major concern.*", + "default": "0" + } + ], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/paraphrase\"\nquerystring = {\"salt\": salt, \"text\": text, \"entropy\": entropy}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Summarization (English)", + "url": "https://webit-language.p.rapidapi.com/summarize", + "description": "Summarize a long article in a short, machine-generated, text.\n\nSupported languages: \"en\" (English).", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to be summarized.\n\nMaximum allowed characters length per request:\n- 250 characters for Free/Basic plan;\n- 1000 characters for Pro plan;\n- 3000 characters for Ultra plan;\n- 5000 characters for Mega plan.", + "default": "Catania is the second largest city in Sicily, after Palermo, and among the ten largest cities in Italy. Located on Sicily's east coast, it faces the Ionian Sea. It is the capital of the 58-municipality region known as the Metropolitan City of Catania, which is the seventh-largest metropolitan city in Italy. The population of the city proper is 311,584, while the population of the Metropolitan City of Catania is 1,107,702. Catania was founded in the 8th century BC by Chalcidian Greeks. The city was almost completely destroyed by a catastrophic earthquake in 1169. However, by the 14th century, and into the Renaissance period, Catania was one of Italy's most important cultural, artistic and political centres. It was the site of Sicily's first university, founded in 1434. It has been the native or adopted home of some of Italy's most famous artists and writers, including the composers Vincenzo Bellini and Giovanni Pacini, and the writers Giovanni Verga, Luigi Capuana, Federico De Roberto and Nino Martoglio. The city has been devastated several times by volcanic eruptions from nearby Mount Etna, the most violent of which was in 1669 and it suffered through another severely damaging earthquake in 1693. Catania today is the industrial, logistical, and commercial center of Sicily. However, it is also noted for its history, culture, architecture, and gastronomy. The section of the city known as the \"old town\" features some of the most striking examples of baroque architecture in Italy, and is a UNESCO World Heritage Site." + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/summarize\"\nquerystring = {\"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Key Phrases", + "url": "https://webit-language.p.rapidapi.com/key-phrases", + "description": "Key Phrases", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "language", + "type": "STRING", + "description": "", + "default": "en" + }, + { + "name": "text", + "type": "STRING", + "description": "", + "default": "Catania is a city of the eastern coast of Sicily at the foot of Mount Etna, the biggest volcano in Europe. It is the seventh largest city in Italy with the metropolitan area reaching one million inhabitants, a major transport hub, economic centre and a university city where you will enjoy a busy downtown and an active nightlife. Catania is also well known for its particular baroque architecture and urban design." + } + ], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/key-phrases\"\nquerystring = {\"language\": \"en\", \"text\": \"Catania is a city of the eastern coast of Sicily at the foot of Mount Etna, the biggest volcano in Europe. It is the seventh largest city in Italy with the metropolitan area reaching one million inhabitants, a major transport hub, economic centre and a university city where you will enjoy a busy downtown and an active nightlife. Catania is also well known for its particular baroque architecture and urban design.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/key-phrases\"\nquerystring = {\"language\": \"en\", \"text\": \"Catania is a city of the eastern coast of Sicily at the foot of Mount Etna, the biggest volcano in Europe. It is the seventh largest city in Italy with the metropolitan area reaching one million inhabitants, a major transport hub, economic centre and a university city where you will enjoy a busy downtown and an active nightlife. Catania is also well known for its particular baroque architecture and urban design.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Analyze Grammar", + "url": "https://webit-language.p.rapidapi.com/analyze", + "description": "Perform deep sentences analysis to determine gender, nouns, pronouns, verbs, adverbs, adjective and a lot more complex syntax and morphological insights. Extract roots and stems and examine structure of words.\n\nPowered by Webit X-512 Neural Machine.", + "method": "POST", + "required_parameters": [ + { + "name": "q", + "type": "STRING", + "description": "The text to analyze.", + "default": "This is a sentence being analyzed. This is another one. That's amazing, isn't it?" + }, + { + "name": "language", + "type": "STRING", + "description": "The language to analyze text for. Currently supported: \"en\".", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/analyze\"\nquerystring = {\"q\": \"This is a sentence being analyzed. This is another one. That's amazing, isn't it?\", \"language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/analyze\"\nquerystring = {\"q\": \"This is a sentence being analyzed. This is another one. That's amazing, isn't it?\", \"language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Break Sentence", + "url": "https://webit-language.p.rapidapi.com/break-sentence", + "description": "Perform Neural Machine sentence breaking on a long text. Sentences are break in respect of grammar and phrases meaning.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to perform sentence break on.", + "default": "This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it." + }, + { + "name": "language", + "type": "STRING", + "description": "Language the input text is written by.\n\nSupported ISO 639-1 language codes: `af, am, ar, ast, az, ba, be, bg, bn, br, bs, ca, cs, cy, da, de, el, en, es, et, fa, ff, fi, fr, fy, ga, gd, gl, gu, ha, he, hi, hr, ht, hu, hy, id, ig, is, it, ja, jv, ka, kk, km, kn, ko, lb, lg, ln, lo, lt, lv, mg, mk, ml, mn, mr, ms, my, ne, nl, no, ns, oc, or, pa, pl, ps, pt, ro, ru, sd, si, sk, sl, so, sq, sr, ss, su, sv, sw, ta, th, tl, tn, tr, uk, ur, uz, vi, wo, xh, yi, yo, zh, zu`.", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/break-sentence\"\nquerystring = {\"text\": \"This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it.\", \"language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/break-sentence\"\nquerystring = {\"text\": \"This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it.\", \"language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Detect", + "url": "https://webit-language.p.rapidapi.com/detect", + "description": "Detect", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to perform Neural language detection on.", + "default": "\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/detect\"\nquerystring = {\"text\": \"\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/detect\"\nquerystring = {\"text\": \"\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Paraphrase (English)", + "url": "https://webit-language.p.rapidapi.com/paraphrase", + "description": "This endpoint allows for text paraphrasing (rewriting) using our A.I. neural network.\n\nSupported languages: English [en].", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "The English text to get paraphrase for.\n\nMaximum allowed characters length per request:\n- 250 characters for Free/Basic plan;\n- 1000 characters for Pro plan;\n- 3000 characters for Ultra plan;\n- 5000 characters for Mega plan.", + "default": "In ancient times Catania was associated with the legend of Amphinomos and Anapias, who, on occasion of a great eruption of Etna, abandoned all their property and carried off their aged parents on their shoulders. The stream of lava itself was said to have parted, and flowed aside so as not to harm them." + }, + { + "name": "entropy", + "type": "ENUM", + "description": "This parameter determines the amount of shuffling put by our A.I. into rewriting your text. The higher the entropy, the more different the final phrase is from the original text. Keep in mind that despite very_high entropy provides more creativity into rewriting your sentence, it might sometimes alter the original meaning, so feel free to fine-tune this parameter to a lower grade of entropy when the final output does not meet the desired result.\n\nSuggested reading: [https://webit.re/blog/202011201848-how-to-rewrite-sentences-without-changing-the-meaning](url)", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "salt", + "type": "NUMBER", + "description": "```\n* * * * * * * * * * * * * * * * * * * *\n* * * DEPRECATED SINCE 2021-02-22 * * *\n* * * * * IT WILL BE IGNORED! * * * * *\n* * * * * * * * * * * * * * * * * * * *\n```\n\n[EXPERIMENTAL] Changes text lexical parts and words with similar synonyms. Accepts an integer value included in the 0-100 range, with 0 means no modification (disabled), 50 brings an average modification, 100 being the strongest change possible.\n\n*Note that, differently from entropy which uses advanced neural patterns, salt slows down text processing due to additional inner dictionary lookups. Therefore, consider using it only when fast processing time are not your major concern.*", + "default": "0" + } + ], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/paraphrase\"\nquerystring = {\"salt\": \"0\", \"text\": \"In ancient times Catania was associated with the legend of Amphinomos and Anapias, who, on occasion of a great eruption of Etna, abandoned all their property and carried off their aged parents on their shoulders. The stream of lava itself was said to have parted, and flowed aside so as not to harm them.\", \"entropy\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/paraphrase\"\nquerystring = {\"salt\": \"0\", \"text\": \"In ancient times Catania was associated with the legend of Amphinomos and Anapias, who, on occasion of a great eruption of Etna, abandoned all their property and carried off their aged parents on their shoulders. The stream of lava itself was said to have parted, and flowed aside so as not to harm them.\", \"entropy\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Summarization (English)", + "url": "https://webit-language.p.rapidapi.com/summarize", + "description": "Summarize a long article in a short, machine-generated, text.\n\nSupported languages: \"en\" (English).", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to be summarized.\n\nMaximum allowed characters length per request:\n- 250 characters for Free/Basic plan;\n- 1000 characters for Pro plan;\n- 3000 characters for Ultra plan;\n- 5000 characters for Mega plan.", + "default": "Catania is the second largest city in Sicily, after Palermo, and among the ten largest cities in Italy. Located on Sicily's east coast, it faces the Ionian Sea. It is the capital of the 58-municipality region known as the Metropolitan City of Catania, which is the seventh-largest metropolitan city in Italy. The population of the city proper is 311,584, while the population of the Metropolitan City of Catania is 1,107,702. Catania was founded in the 8th century BC by Chalcidian Greeks. The city was almost completely destroyed by a catastrophic earthquake in 1169. However, by the 14th century, and into the Renaissance period, Catania was one of Italy's most important cultural, artistic and political centres. It was the site of Sicily's first university, founded in 1434. It has been the native or adopted home of some of Italy's most famous artists and writers, including the composers Vincenzo Bellini and Giovanni Pacini, and the writers Giovanni Verga, Luigi Capuana, Federico De Roberto and Nino Martoglio. The city has been devastated several times by volcanic eruptions from nearby Mount Etna, the most violent of which was in 1669 and it suffered through another severely damaging earthquake in 1693. Catania today is the industrial, logistical, and commercial center of Sicily. However, it is also noted for its history, culture, architecture, and gastronomy. The section of the city known as the \"old town\" features some of the most striking examples of baroque architecture in Italy, and is a UNESCO World Heritage Site." + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/summarize\"\nquerystring = {\"text\": \"Catania is the second largest city in Sicily, after Palermo, and among the ten largest cities in Italy. Located on Sicily's east coast, it faces the Ionian Sea. It is the capital of the 58-municipality region known as the Metropolitan City of Catania, which is the seventh-largest metropolitan city in Italy. The population of the city proper is 311,584, while the population of the Metropolitan City of Catania is 1,107,702. Catania was founded in the 8th century BC by Chalcidian Greeks. The city was almost completely destroyed by a catastrophic earthquake in 1169. However, by the 14th century, and into the Renaissance period, Catania was one of Italy's most important cultural, artistic and political centres. It was the site of Sicily's first university, founded in 1434. It has been the native or adopted home of some of Italy's most famous artists and writers, including the composers Vincenzo Bellini and Giovanni Pacini, and the writers Giovanni Verga, Luigi Capuana, Federico De Roberto and Nino Martoglio. The city has been devastated several times by volcanic eruptions from nearby Mount Etna, the most violent of which was in 1669 and it suffered through another severely damaging earthquake in 1693. Catania today is the industrial, logistical, and commercial center of Sicily. However, it is also noted for its history, culture, architecture, and gastronomy. The section of the city known as the \\\"old town\\\" features some of the most striking examples of baroque architecture in Italy, and is a UNESCO World Heritage Site.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-language.p.rapidapi.com/summarize\"\nquerystring = {\"text\": \"Catania is the second largest city in Sicily, after Palermo, and among the ten largest cities in Italy. Located on Sicily's east coast, it faces the Ionian Sea. It is the capital of the 58-municipality region known as the Metropolitan City of Catania, which is the seventh-largest metropolitan city in Italy. The population of the city proper is 311,584, while the population of the Metropolitan City of Catania is 1,107,702. Catania was founded in the 8th century BC by Chalcidian Greeks. The city was almost completely destroyed by a catastrophic earthquake in 1169. However, by the 14th century, and into the Renaissance period, Catania was one of Italy's most important cultural, artistic and political centres. It was the site of Sicily's first university, founded in 1434. It has been the native or adopted home of some of Italy's most famous artists and writers, including the composers Vincenzo Bellini and Giovanni Pacini, and the writers Giovanni Verga, Luigi Capuana, Federico De Roberto and Nino Martoglio. The city has been devastated several times by volcanic eruptions from nearby Mount Etna, the most violent of which was in 1669 and it suffered through another severely damaging earthquake in 1693. Catania today is the industrial, logistical, and commercial center of Sicily. However, it is also noted for its history, culture, architecture, and gastronomy. The section of the city known as the \\\"old town\\\" features some of the most striking examples of baroque architecture in Italy, and is a UNESCO World Heritage Site.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-language.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/webit_language/api.py b/toolbench/toolenv/tools/Translation/webit_language/api.py new file mode 100644 index 0000000000000000000000000000000000000000..874c89dcb349340caf8066541dbc6cc0f66dd547 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/webit_language/api.py @@ -0,0 +1,159 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def dictionary_synonyms_temporarily_unavailable(language: str, q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Dictionary Synonyms" + + """ + url = f"https://webit-language.p.rapidapi.com/dictionary-synonyms" + querystring = {'language': language, 'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def dictionary_lookup_temporarily_unavailable(q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Dictionary Lookup" + + """ + url = f"https://webit-language.p.rapidapi.com/dictionary-lookup" + querystring = {'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def dictionary_examples_temporarily_unavailable(q: str, language: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Dictionary Examples" + + """ + url = f"https://webit-language.p.rapidapi.com/dictionary-examples" + querystring = {'q': q, 'language': language, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def dictionary_antonyms_temporarily_unavailable(language: str, q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Dictionary Antonyms" + + """ + url = f"https://webit-language.p.rapidapi.com/dictionary-antonyms" + querystring = {'language': language, 'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def bilingual_dictionary(q: str, is_from: str, to: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Powerful multi-language bilingual neural translation dictionary, supporting 80+ languages." + q: The word or comma separated words (up to 10 words per request) to seek bilingual translations for. + from: Supported ISO 639-1 language codes: 'ar', 'az', 'be', 'bg', 'ca', 'ce', 'cs', 'cy', 'da', 'de', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'it', 'ja', 'ka', 'kk', 'ko', 'la', 'lt', 'lv', 'mk', 'ms', 'nl', 'nn', 'no', 'pl', 'pt', 'ro', 'ru', 'sh', 'sk', 'sl', 'sr', 'sv', 'ta', 'tg', 'th', 'tr', 'tt', 'uk', 'ur', 'uz', 'vi', 'vo', 'zh'. + to: Supported ISO 639-1 language codes: 'ar', 'az', 'be', 'bg', 'ca', 'ce', 'cs', 'cy', 'da', 'de', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'it', 'ja', 'ka', 'kk', 'ko', 'la', 'lt', 'lv', 'mk', 'ms', 'nl', 'nn', 'no', 'pl', 'pt', 'ro', 'ru', 'sh', 'sk', 'sl', 'sr', 'sv', 'ta', 'tg', 'th', 'tr', 'tt', 'uk', 'ur', 'uz', 'vi', 'vo', 'zh'. + + """ + url = f"https://webit-language.p.rapidapi.com/dictionary-bilingual" + querystring = {'q': q, 'from': is_from, 'to': to, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def transliterate_any_to_latin(text: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Transliteration endpoint provides you with transliteration of text from any language to Latin. Transliterate "こんにちは" to "kon'nichiha" with ease." + text: Transliterate any text to Latin. + + """ + url = f"https://webit-language.p.rapidapi.com/transliterate" + querystring = {'text': text, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def autocomplete(q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint provides autocomplete (word completion) for 80+ languages." + + """ + url = f"https://webit-language.p.rapidapi.com/autocomplete" + querystring = {'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "webit-language.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/webit_translator.json b/toolbench/toolenv/tools/Translation/webit_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..2ec52c92fc480f36e618395a2b6c1b7c88004a80 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/webit_translator.json @@ -0,0 +1,122 @@ +{ + "product_id": "api_9665385c-1892-429f-a600-92d57ce9840b", + "tool_description": "Neural translation supporting 100+ languages", + "home_url": "https://rapidapi.com/webit/api/webit-translator/", + "name": "Webit Translator", + "title": "Webit Translator", + "pricing": "FREEMIUM", + "tool_name": "Webit Translator", + "score": { + "avgServiceLevel": 91, + "avgLatency": 19189, + "avgSuccessRate": 91, + "popularityScore": 9, + "__typename": "Score" + }, + "host": "webit-translator.p.rapidapi.com", + "api_list": [ + { + "name": "Detect", + "url": "https://webit-translator.p.rapidapi.com/detect", + "description": "Perform Neural Language Detection on any text. Supporting 100+ languages.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to perform Neural language detection on.", + "default": "\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/detect\"\nquerystring = {\"text\": \"\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/detect\"\nquerystring = {\"text\": \"\u4f60\u597d! \u4f60\u597d\u5417? \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f Neural recognition can detect multiple languages at the same time!\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Translate", + "url": "https://webit-translator.p.rapidapi.com/translate", + "description": "Perform Neural Translation in 100+ languages.\n\nTry it live at: https://webit.re/services/translation/text-translator-api/tryout", + "method": "POST", + "required_parameters": [ + { + "name": "to", + "type": "STRING", + "description": "Target language to get input text translated to.\n\nSupported ISO 639-1 language codes: `af, am, ar, ast, az, ba, be, bg, bn, br, bs, ca, ceb, cs, cy, da, de, el, en, es, et, fa, ff, fi, fr, fy, ga, gd, gl, gu, ha, he, hi, hr, ht, hu, hy, id, ig, ilo, is, it, ja, jv, ka, kk, km, kn, ko, lb, lg, ln, lo, lt, lv, mg, mk, ml, mn, mr, ms, my, ne, nl, no, ns, oc, or, pa, pl, ps, pt, ro, ru, sd, si, sk, sl, so, sq, sr, ss, su, sv, sw, ta, th, tl, tn, tr, uk, ur, uz, vi, wo, xh, yi, yo, zh, zu`.", + "default": "zh" + }, + { + "name": "text", + "type": "STRING", + "description": "Input text to perform translation on.\n\n*Plain text only. HTML support coming soon.*", + "default": "This is an example test to translate from." + } + ], + "optional_parameters": [ + { + "name": "from", + "type": "STRING", + "description": "Language of the input text to perform translation on.\n\n*If no language is provided, Webit Translator engine will perform automated detection on the input text.*\n\nSupported ISO 639-1 language codes: `af, am, ar, ast, az, ba, be, bg, bn, br, bs, ca, ceb, cs, cy, da, de, el, en, es, et, fa, ff, fi, fr, fy, ga, gd, gl, gu, ha, he, hi, hr, ht, hu, hy, id, ig, ilo, is, it, ja, jv, ka, kk, km, kn, ko, lb, lg, ln, lo, lt, lv, mg, mk, ml, mn, mr, ms, my, ne, nl, no, ns, oc, or, pa, pl, ps, pt, ro, ru, sd, si, sk, sl, so, sq, sr, ss, su, sv, sw, ta, th, tl, tn, tr, uk, ur, uz, vi, wo, xh, yi, yo, zh, zu`.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/translate\"\nquerystring = {\"from\": \"\", \"to\": \"zh\", \"text\": \"This is an example test to translate from.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/translate\"\nquerystring = {\"from\": \"\", \"to\": \"zh\", \"text\": \"This is an example test to translate from.\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Key Phrases", + "url": "https://webit-translator.p.rapidapi.com/key-phrases", + "description": "Key Phrases", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "language", + "type": "STRING", + "description": "Language the input text is written by.\n\nSupported ISO 639-1 language codes: `af, am, ar, ast, az, ba, be, bg, bn, br, bs, ca, cs, cy, da, de, el, en, es, et, fa, ff, fi, fr, fy, ga, gd, gl, gu, ha, he, hi, hr, ht, hu, hy, id, ig, is, it, ja, jv, ka, kk, km, kn, ko, lb, lg, ln, lo, lt, lv, mg, mk, ml, mn, mr, ms, my, ne, nl, no, ns, oc, or, pa, pl, ps, pt, ro, ru, sd, si, sk, sl, so, sq, sr, ss, su, sv, sw, ta, th, tl, tn, tr, uk, ur, uz, vi, wo, xh, yi, yo, zh, zu`.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/key-phrases\"\nquerystring = {\"text\": \"\", \"language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/key-phrases\"\nquerystring = {\"text\": \"\", \"language\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Break Sentence", + "url": "https://webit-translator.p.rapidapi.com/break-sentence", + "description": "Perform Neural Machine sentence breaking on a long text. Sentences are break in respect of grammar and phrases meaning.", + "method": "POST", + "required_parameters": [ + { + "name": "text", + "type": "STRING", + "description": "Input text to perform sentence break on.", + "default": "This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it." + }, + { + "name": "language", + "type": "STRING", + "description": "Language the input text is written by.\n\nSupported ISO 639-1 language codes: `af, am, ar, ast, az, ba, be, bg, bn, br, bs, ca, cs, cy, da, de, el, en, es, et, fa, ff, fi, fr, fy, ga, gd, gl, gu, ha, he, hi, hr, ht, hu, hy, id, ig, is, it, ja, jv, ka, kk, km, kn, ko, lb, lg, ln, lo, lt, lv, mg, mk, ml, mn, mr, ms, my, ne, nl, no, ns, oc, or, pa, pl, ps, pt, ro, ru, sd, si, sk, sl, so, sq, sr, ss, su, sv, sw, ta, th, tl, tn, tr, uk, ur, uz, vi, wo, xh, yi, yo, zh, zu`.", + "default": "en" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/break-sentence\"\nquerystring = {\"text\": \"This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it.\", \"language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://webit-translator.p.rapidapi.com/break-sentence\"\nquerystring = {\"text\": \"This is a phrase. How well can you do? Mr. Webit has Mr. being part of the sentence without breaking it.\", \"language\": \"en\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"webit-translator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/word_to_word_noun_only_multilingual.json b/toolbench/toolenv/tools/Translation/word_to_word_noun_only_multilingual.json new file mode 100644 index 0000000000000000000000000000000000000000..70c49b77d92986eb3d7f938202fd25e6c28cae91 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/word_to_word_noun_only_multilingual.json @@ -0,0 +1,49 @@ +{ + "product_id": "api_14a4b1f3-4fb8-4d6d-a824-1fc71e48d55a", + "tool_description": "Word to Word NOUN ONLY one language to other.\nText translate from one language to other language from given list of languages\nSupports MULTILINGUAL , 100 LANGUAGES at a time.\n\n", + "home_url": "https://rapidapi.com/admobsteelindia/api/word-to-word-noun-only-multilingual/", + "name": "Word to Word Noun only -MULTILINGUAL", + "title": "Word to Word Noun only -MULTILINGUAL", + "pricing": "FREEMIUM", + "tool_name": "Word to Word Noun only -MULTILINGUAL", + "score": { + "avgServiceLevel": 100, + "avgLatency": 430, + "avgSuccessRate": 100, + "popularityScore": 8.9, + "__typename": "Score" + }, + "host": "word-to-word-noun-only-multilingual.p.rapidapi.com", + "api_list": [ + { + "name": "Word to word NOUN only", + "url": "https://word-to-word-noun-only-multilingual.p.rapidapi.com/translatewordtowordnounonly", + "description": "Translate word to word NOUN only, from given list of languages to target language.", + "method": "POST", + "required_parameters": [ + { + "name": "fromlanguage", + "type": "STRING", + "description": "", + "default": "English" + }, + { + "name": "tolanguage", + "type": "STRING", + "description": "", + "default": "Spanish" + }, + { + "name": "word", + "type": "STRING", + "description": "", + "default": "fly" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://word-to-word-noun-only-multilingual.p.rapidapi.com/translatewordtowordnounonly\"\nquerystring = {\"fromlanguage\": \"English\", \"tolanguage\": \"Spanish\", \"word\": \"fly\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-to-word-noun-only-multilingual.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://word-to-word-noun-only-multilingual.p.rapidapi.com/translatewordtowordnounonly\"\nquerystring = {\"fromlanguage\": \"English\", \"tolanguage\": \"Spanish\", \"word\": \"fly\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-to-word-noun-only-multilingual.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/word_to_word_translator.json b/toolbench/toolenv/tools/Translation/word_to_word_translator.json new file mode 100644 index 0000000000000000000000000000000000000000..63a3e0eb37e654ef80cf147e1966ab9d6aff788d --- /dev/null +++ b/toolbench/toolenv/tools/Translation/word_to_word_translator.json @@ -0,0 +1,88 @@ +{ + "tool_name":"Word to Word Translator", + "tool_description":"World fastest word to word translator for multilingual search engines and other NLP purposes", + "title":"Word to Word Translator", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/bacloud22/api/word-to-word-translator1/", + "host":"word-to-word-translator1.p.rapidapi.com", + "api_list":[ + { + "name":"Word translation", + "url":"https://word-to-word-translator1.p.rapidapi.com/api/translate", + "description":"`translate` is the core API of our service.\n\nNote that `translate` is not suited for sentences or longer texts. There are way better services for that (like Google translation API etc)'. Also note that: \n\n> This is to be used as *a multilingual search engine or depending on your wishes, other natural language processing purposes and not for mere translation*.\n\nAlthough you can do so, because translation is the core of this, **it is very very approximate**.\n\nA `cat` might be translated to other contextual terms in other languages as: `[\"animal\", \"mammal\", \"domestic\"]`. This approximate translation is in fact blazingly fast, and paradoxically more suited for search engines.\n\nFinally, You maybe guessed that `target` can be an array, indeed, and the form to provide multiple targets is simply adding multiple `target` parameters.\n\nLike the following:\n\n```\n curl --get -G 'https://YourWord2WordTranslator@RapidAPI/api/translate?' \\\n -d word=science \\\n -d target=en \\\n -d target=fr \\\n -d target=bg \\\n -d source=en \\\n -d limit=10 \\\n -d score=0.5\n```", + "method":"GET", + "required_parameters":[ + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":10 + }, + { + "name":"source", + "type":"STRING", + "description":"", + "default":"en" + }, + { + "name":"score", + "type":"NUMBER", + "description":"", + "default":0.5 + }, + { + "name":"word", + "type":"STRING", + "description":"", + "default":"science" + }, + { + "name":"target", + "type":"STRING", + "description":"", + "default":"fr" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-to-word-translator1.p.rapidapi.com/api/translate\"\nquerystring = {\"limit\": limit, \"source\": source, \"score\": score, \"word\": word, \"target\": target}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-to-word-translator1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"meta", + "url":"https://word-to-word-translator1.p.rapidapi.com/api/meta", + "description":"`meta` is simply to track of the current information about our back-end.\n\nThe **Word to Word Translator** has been tested in every way possible, although You can expect changes as the API is in active improvement. This is why you would talk with the `meta` API as your own safe guard.\n\n- You might for instance only request our APIs when all our services are up.\n- You might test again when when we increment our deployment version.\n- You might check again for the current supported languages.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-to-word-translator1.p.rapidapi.com/api/meta\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-to-word-translator1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Language detection", + "url":"https://word-to-word-translator1.p.rapidapi.com/api/detect_language", + "description":"`detect_language` is a facilitator API to detect language of texts.\n\nNote that this API is very accurate and at the same time very fast as it relies on state of art machine learning techniques and implementations.", + "method":"GET", + "required_parameters":[ + { + "name":"phrase", + "type":"STRING", + "description":"", + "default":"Pourquoi, Te comportes-tu mal, Chougna, devant le monde" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://word-to-word-translator1.p.rapidapi.com/api/detect_language\"\nquerystring = {\"phrase\": phrase}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-to-word-translator1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/word_to_word_translator/api.py b/toolbench/toolenv/tools/Translation/word_to_word_translator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3a7397a20024eb988f465cba531e08e4f4e27ef7 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/word_to_word_translator/api.py @@ -0,0 +1,102 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def word_translation(limit: int, source: str, score: int, word: str, target: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "`translate` is the core API of our service. + + Note that `translate` is not suited for sentences or longer texts. There are way better services for that (like Google translation API etc)'. Also note that: + + > This is to be used as *a multilingual search engine or depending on your wishes, other natural language processing purposes and not for mere translation*. + + Although you can do so, because translation is the core of this, **it is very very approximate**. + + A `cat` might be translated to other contextual terms in other languages as: `["animal", "mammal", "domestic"]`. This approximate translation is in fact blazingly fast, and paradoxically more suited for search engines. + + Finally, You maybe guessed that `target` can be an array, indeed, and the form to provide multiple targets is simply adding multiple `target` parameters. + + Like the following: + + ``` + curl --get -G 'https://YourWord2WordTranslator@RapidAPI/api/translate?' \ + -d word=science \ + -d target=en \ + -d target=fr \ + -d target=bg \ + -d source=en \ + -d limit=10 \ + -d score=0.5 + ```" + + """ + url = f"https://word-to-word-translator1.p.rapidapi.com/api/translate" + querystring = {'limit': limit, 'source': source, 'score': score, 'word': word, 'target': target, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-to-word-translator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def meta(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "`meta` is simply to track of the current information about our back-end. + + The **Word to Word Translator** has been tested in every way possible, although You can expect changes as the API is in active improvement. This is why you would talk with the `meta` API as your own safe guard. + + - You might for instance only request our APIs when all our services are up. + - You might test again when when we increment our deployment version. + - You might check again for the current supported languages." + + """ + url = f"https://word-to-word-translator1.p.rapidapi.com/api/meta" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-to-word-translator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def language_detection(phrase: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "`detect_language` is a facilitator API to detect language of texts. + + Note that this API is very accurate and at the same time very fast as it relies on state of art machine learning techniques and implementations." + + """ + url = f"https://word-to-word-translator1.p.rapidapi.com/api/detect_language" + querystring = {'phrase': phrase, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "word-to-word-translator1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Translation/word_translation_word_to_word.json b/toolbench/toolenv/tools/Translation/word_translation_word_to_word.json new file mode 100644 index 0000000000000000000000000000000000000000..4adb4075afb847c311d37951d265ccac38ee7861 --- /dev/null +++ b/toolbench/toolenv/tools/Translation/word_translation_word_to_word.json @@ -0,0 +1,49 @@ +{ + "product_id": "api_f325a3f9-fb0e-4cc8-a09c-47af039c2c40", + "tool_description": "Translate word to word only one language to other\nText translate from one language to other language from given list of languages\nSupports multilanguage at a time", + "home_url": "https://rapidapi.com/admobsteelindia/api/word-translation-word-to-word/", + "name": "Word translation word to word", + "title": "Word translation word to word", + "pricing": "FREEMIUM", + "tool_name": "Word translation word to word", + "score": { + "avgServiceLevel": 100, + "avgLatency": 544, + "avgSuccessRate": 100, + "popularityScore": 8.8, + "__typename": "Score" + }, + "host": "word-translation-word-to-word.p.rapidapi.com", + "api_list": [ + { + "name": "Translate word to word", + "url": "https://word-translation-word-to-word.p.rapidapi.com/translatewordtoword", + "description": "Translate word to word from given list of languages to target language.\nEither of from or to language must include English", + "method": "POST", + "required_parameters": [ + { + "name": "tolanguage", + "type": "STRING", + "description": "", + "default": "Spanish" + }, + { + "name": "word", + "type": "STRING", + "description": "", + "default": "fly" + }, + { + "name": "fromlanguage", + "type": "STRING", + "description": "", + "default": "English" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://word-translation-word-to-word.p.rapidapi.com/translatewordtoword\"\nquerystring = {\"tolanguage\": \"Spanish\", \"word\": \"fly\", \"fromlanguage\": \"English\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-translation-word-to-word.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://word-translation-word-to-word.p.rapidapi.com/translatewordtoword\"\nquerystring = {\"tolanguage\": \"Spanish\", \"word\": \"fly\", \"fromlanguage\": \"English\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"word-translation-word-to-word.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Translation/yandextranslate.json b/toolbench/toolenv/tools/Translation/yandextranslate.json new file mode 100644 index 0000000000000000000000000000000000000000..6d9a7b5bfb955ee35ee6255908f5dd00e9da405a --- /dev/null +++ b/toolbench/toolenv/tools/Translation/yandextranslate.json @@ -0,0 +1,117 @@ +{ + "product_id": "597", + "tool_description": "The API provides access to the Yandex online machine translation service.", + "home_url": "https://rapidapi.com/zakutynsky/api/YandexTranslate/", + "name": "YandexTranslate", + "title": "YandexTranslate", + "pricing": "FREE", + "tool_name": "YandexTranslate", + "score": { + "avgServiceLevel": 0, + "avgLatency": 127259, + "avgSuccessRate": 0, + "popularityScore": 4.8, + "__typename": "Score" + }, + "host": "YandexTranslatezakutynskyV1.p.rapidapi.com", + "api_list": [ + { + "name": "detectLanguage", + "url": "https://YandexTranslatezakutynskyV1.p.rapidapi.com/detectLanguage", + "description": "Detects the language of the specified text.", + "method": "POST", + "required_parameters": [ + { + "name": "apiKey", + "type": "CREDENTIALS", + "description": "Your yandex api key.", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "The text to detect the language for.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "hint", + "type": "STRING", + "description": "The most likely language (they will be given preference when detecting the text language).", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://YandexTranslatezakutynskyV1.p.rapidapi.com/detectLanguage\"\nquerystring = {\"apiKey\": \"\", \"hint\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"YandexTranslatezakutynskyV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://YandexTranslatezakutynskyV1.p.rapidapi.com/detectLanguage\"\nquerystring = {\"apiKey\": \"\", \"hint\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"YandexTranslatezakutynskyV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "getSupportedLanguages", + "url": "https://YandexTranslatezakutynskyV1.p.rapidapi.com/getSupportedLanguages", + "description": "Gets a list of translation directions supported by the service.", + "method": "POST", + "required_parameters": [ + { + "name": "ui", + "type": "STRING", + "description": "In the response, supported languages are listed in the langs field with the definitions of the language codes. Language names are output in the language corresponding to the code in this parameter.", + "default": "" + }, + { + "name": "apiKey", + "type": "CREDENTIALS", + "description": "Your yandex api key.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://YandexTranslatezakutynskyV1.p.rapidapi.com/getSupportedLanguages\"\nquerystring = {\"ui\": \"\", \"apiKey\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"YandexTranslatezakutynskyV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://YandexTranslatezakutynskyV1.p.rapidapi.com/getSupportedLanguages\"\nquerystring = {\"ui\": \"\", \"apiKey\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"YandexTranslatezakutynskyV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "translate", + "url": "https://YandexTranslatezakutynskyV1.p.rapidapi.com/translate", + "description": "Translates text to the specified language.", + "method": "POST", + "required_parameters": [ + { + "name": "apiKey", + "type": "CREDENTIALS", + "description": "Your yandex api key.", + "default": "" + }, + { + "name": "lang", + "type": "STRING", + "description": "The translation direction. You can set it in either of the following ways: 1. As a pair of language codes separated by a hyphen (\u201cfrom\u201d-\u201cto\u201d). For example, en-ru indicates translating from English to Russian. 2. As the target language code (for example, ru). In this case, the service tries to detect the source language automatically.", + "default": "" + }, + { + "name": "text", + "type": "STRING", + "description": "The text to translate.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "options", + "type": "SELECT", + "description": "The only option available at this time is whether the response should include the automatically detected language of the text being translated. This corresponds to the value 1 for this parameter. If the language of the text being translated is defined explicitly, meaning the lang parameter is set as a pair of codes, the first code defines the source language. This means that the options parameter does not allow switching to automatic language detection. However, it does allow you to understand whether the source language was defined correctly in the lang parameter.", + "default": "" + }, + { + "name": "format", + "type": "SELECT", + "description": "Text format. Possible values: plain - Text without markup (default value). html - Text in HTML format.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://YandexTranslatezakutynskyV1.p.rapidapi.com/translate\"\nquerystring = {\"apiKey\": \"\", \"options\": \"\", \"lang\": \"\", \"format\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"YandexTranslatezakutynskyV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://YandexTranslatezakutynskyV1.p.rapidapi.com/translate\"\nquerystring = {\"apiKey\": \"\", \"options\": \"\", \"lang\": \"\", \"format\": \"\", \"text\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"YandexTranslatezakutynskyV1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/adsbexchange_com.json b/toolbench/toolenv/tools/Transportation/adsbexchange_com.json new file mode 100644 index 0000000000000000000000000000000000000000..fa9969932c7c5083bb7c1f76a250dbc9cb3ad65b --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/adsbexchange_com.json @@ -0,0 +1,3651 @@ +{ + "tool_name":"ADSBexchange.com", + "tool_description":"Live air traffic and aircraft positional data via ADS-B / MLAT / UAT\n\nNOTE: Please scroll down to view the Terms & Conditions for use and Legal Notice. ", + "title":"ADSBexchange.com", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":236, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/adsbx/api/adsbexchange-com1/", + "host":"adsbexchange-com1.p.rapidapi.com", + "api_list":[ + { + "name":"Aircraft Last Position by Hex ID (icao)", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/hex/{icao}/", + "description":"Returns one aircraft last known location using the mode-s hex (icao), if aircraft has flown in the last 48 hours.", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"", + "default":"a4b605" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/hex/{icao}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft Live Position by Hex ID (icao)", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/icao/{icao}/", + "description":"Returns one aircraft using the mode-s hex (icao)", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"", + "default":"a4b605" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/icao/{icao}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Single Aircraft Position by Hex ID (icao)", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/icao/{icao}/", + "description":"Single aircraft Position by ICAO Mode S 6-digit transponder hex code (if currently tracked)", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"STRING", + "description":"ICAO code 000000-FFFFFF", + "default":"a4b065" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/icao/{icao}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Single Aircraft Position by Registration", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/registration/{reg}/", + "description":"Single aircraft Position by Registration (if currently tracked)", + "method":"GET", + "required_parameters":[ + { + "name":"reg", + "type":"string", + "description":"", + "default":"N8737L" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/registration/{reg}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 250 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/250/", + "description":"Show all Aircraft within 250 Nautical Mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"-0.45536" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/250/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 25 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/25/", + "description":"Show all Aircraft within 25 Nautical Mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + }, + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"0.45536" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/25/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 10 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/10/", + "description":"Show all Aircraft within 10 Nautical Mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"-0.45536" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/10/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 5 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/5/", + "description":"Show all Aircraft within 5 Nautical Mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + }, + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"0.45536" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/5/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 1 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/1/", + "description":"Show all Aircraft within 1 Nautical Mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + }, + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"-0.45390" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/1/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 50 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/50/", + "description":"Show all aircraft within 50 nautical mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"-0.45536" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/50/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft by Squawk", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/sqk/{sqk}/", + "description":"Returns one or more aircraft currently broadcasting a specific squawk code", + "method":"GET", + "required_parameters":[ + { + "name":"sqk", + "type":"NUMBER", + "description":"4-digit Transponder Squawk Code in Octal (ie.1200, 7700, 1234 etc.)", + "default":"1200" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/sqk/{sqk}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within user specified distance up to 250 NM", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/{dist}/", + "description":"Show all Aircraft within specified distance up to 250 NM", + "method":"GET", + "required_parameters":[ + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"0.45536" + }, + { + "name":"dist", + "type":"NUMBER", + "description":"", + "default":"20" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46888" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/{dist}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Tagged Military Aircraft", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/mil/", + "description":"Returns all active aircraft tagged as Military", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/mil/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "ac":[ + { + "alt":"1375", + "altt":"0", + "call":"RAVEN81", + "cou":"United States", + "galt":"1514", + "gnd":"0", + "icao":"AE5407", + "interested":"0", + "lat":"30.935028", + "lon":"-86.066302", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777689215", + "reg":"08-0051", + "sat":"0", + "spd":"208.5", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"298", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"V22", + "vsi":"0", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"-900", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"-900", + "gnd":"0", + "icao":"ADFA39", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"1272", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"1", + "icao":"7CF374", + "interested":"0", + "lat":"-37.668081", + "lon":"144.847258", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777689867", + "reg":"", + "sat":"0", + "spd":"6.2", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"264.4", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"700", + "altt":"0", + "call":"C6016", + "cou":"United States", + "galt":"780", + "gnd":"0", + "icao":"AE2901", + "interested":"0", + "lat":"30.641327", + "lon":"-88.050034", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777690622", + "reg":"6016", + "sat":"0", + "spd":"108.5", + "sqk":"1200", + "talt":"", + "tisb":"0", + "trak":"350.5", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"H60", + "vsi":"-64", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"", + "altt":"0", + "call":"1DCR499", + "cou":"Australia", + "galt":"", + "gnd":"1", + "icao":"7CF634", + "interested":"0", + "lat":"-31.939525", + "lon":"115.975029", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777690242", + "reg":"", + "sat":"0", + "spd":"11.8", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"92.8", + "trkh":"0", + "trt":"4", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"1", + "icao":"7CF472", + "interested":"0", + "lat":"-33.939526", + "lon":"151.190064", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777690003", + "reg":"", + "sat":"0", + "spd":"29.5", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"87.2", + "trkh":"0", + "trt":"4", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"", + "gnd":"1", + "icao":"AE0235", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"USAF", + "pos":"0", + "postime":"1608777690815", + "reg":"87-0123", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"DC10", + "vsi":"", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"15000", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"15000", + "gnd":"0", + "icao":"AE682D", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"1400", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"400", + "altt":"0", + "call":"R1647", + "cou":"Australia", + "galt":"400", + "gnd":"0", + "icao":"7CC4A7", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"65.2", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"215.6", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"", + "vsi":"-192", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"700", + "altt":"0", + "call":"C6502", + "cou":"United States", + "galt":"700", + "gnd":"1", + "icao":"AE265C", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"6502", + "sat":"0", + "spd":"", + "sqk":"4420", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"AS65", + "vsi":"", + "vsit":"0", + "wtc":"1" + }, + { + "alt":"15100", + "altt":"0", + "call":"", + "cou":"India", + "galt":"15100", + "gnd":"0", + "icao":"8002A0", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"IFC", + "pos":"0", + "postime":"1608777690815", + "reg":"H1522", + "sat":"0", + "spd":"", + "sqk":"0524", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"A748", + "vsi":"", + "vsit":"0", + "wtc":"2" + }, + { + "alt":"8675", + "altt":"0", + "call":"MOVER35", + "cou":"United States", + "galt":"9115", + "gnd":"0", + "icao":"AE021F", + "interested":"0", + "lat":"39.884956", + "lon":"-74.439147", + "mil":"1", + "mlat":"1", + "opicao":"RCH", + "pos":"1", + "postime":"1608777690117", + "reg":"85-0027", + "sat":"0", + "spd":"299", + "sqk":"5401", + "talt":"", + "tisb":"0", + "trak":"104", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"DC10", + "vsi":"2103", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"1", + "icao":"7CF66B", + "interested":"0", + "lat":"-31.928981", + "lon":"115.963076", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777689598", + "reg":"", + "sat":"0", + "spd":"0", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"233.4", + "trkh":"0", + "trt":"4", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"1", + "icao":"7CF441", + "interested":"0", + "lat":"-33.944798", + "lon":"151.169572", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777689216", + "reg":"", + "sat":"0", + "spd":"0.2", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"70.9", + "trkh":"0", + "trt":"4", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"62700", + "altt":"0", + "call":"GAFTT31", + "cou":"Germany", + "galt":"62700", + "gnd":"0", + "icao":"3EA3C1", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"", + "gnd":"1", + "icao":"AE059D", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"RCH", + "pos":"0", + "postime":"1608777690815", + "reg":"60-0362", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"K35R", + "vsi":"", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"21000", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"21010", + "gnd":"0", + "icao":"AE146F", + "interested":"0", + "lat":"39.199979", + "lon":"-74.198888", + "mil":"1", + "mlat":"1", + "opicao":"USAF", + "pos":"1", + "postime":"1608777690868", + "reg":"07-7177", + "sat":"0", + "spd":"380", + "sqk":"7022", + "talt":"20992", + "tisb":"0", + "trak":"82.8", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"C17", + "vsi":"0", + "vsit":"1", + "wtc":"3" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"1", + "icao":"7CF43A", + "interested":"0", + "lat":"-33.947568", + "lon":"151.174865", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777690121", + "reg":"", + "sat":"0", + "spd":"0.2", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"221.8", + "trkh":"0", + "trt":"4", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"37000", + "altt":"0", + "call":"JAT271", + "cou":"Chile", + "galt":"36991", + "gnd":"0", + "icao":"E80601", + "interested":"0", + "lat":"-29.155884", + "lon":"-71.3571", + "mil":"1", + "mlat":"0", + "opicao":"JAT", + "pos":"1", + "postime":"1608777690756", + "reg":"CC-AWC", + "sat":"0", + "spd":"460", + "sqk":"2315", + "talt":"", + "tisb":"0", + "trak":"180", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"A320", + "vsi":"0", + "vsit":"0", + "wtc":"2" + }, + { + "alt":"29000", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"29000", + "gnd":"0", + "icao":"ADFF10", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"USAF", + "pos":"0", + "postime":"1608777690815", + "reg":"63-7995", + "sat":"0", + "spd":"602", + "sqk":"3201", + "talt":"29008", + "tisb":"0", + "trak":"90.7", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"K35R", + "vsi":"256", + "vsit":"1", + "wtc":"3" + }, + { + "alt":"60000", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"60000", + "gnd":"0", + "icao":"ADF8E6", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"62700", + "altt":"0", + "call":"GAFTT08", + "cou":"Germany", + "galt":"62700", + "gnd":"0", + "icao":"3EA3B1", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"-300", + "altt":"0", + "call":"C6565", + "cou":"United States", + "galt":"-300", + "gnd":"0", + "icao":"AE2697", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"6565", + "sat":"0", + "spd":"", + "sqk":"4120", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"AS65", + "vsi":"", + "vsit":"0", + "wtc":"1" + }, + { + "alt":"3725", + "altt":"0", + "call":"JAT651", + "cou":"Chile", + "from":"CLO Alfonso Bonilla Aragon Cali Colombia", + "galt":"3716", + "gnd":"0", + "icao":"E8060B", + "interested":"0", + "lat":"-33.26297", + "lon":"-70.792816", + "mil":"1", + "mlat":"0", + "opicao":"JAT", + "pos":"1", + "postime":"1608777688975", + "reg":"CC-AWL", + "sat":"0", + "spd":"150", + "sqk":"3203", + "talt":"", + "tisb":"0", + "to":"SCL Comodoro Arturo Merino Benítez Santiago Chile", + "trak":"170", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"A20N", + "vsi":"-830", + "vsit":"0", + "wtc":"2" + }, + { + "alt":"9025", + "altt":"0", + "call":"SVY305", + "cou":"Thailand", + "galt":"8985", + "gnd":"0", + "icao":"8805A3", + "interested":"0", + "lat":"13.645798", + "lon":"100.423137", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777689742", + "reg":"0169", + "sat":"0", + "spd":"185.9", + "sqk":"7212", + "talt":"8992", + "tisb":"0", + "trak":"185.6", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"B190", + "vsi":"768", + "vsit":"0", + "wtc":"2" + }, + { + "alt":"26000", + "altt":"0", + "call":"RCH553", + "cou":"United States", + "galt":"25962", + "gnd":"0", + "icao":"AE080E", + "interested":"0", + "lat":"22.948158", + "lon":"123.92481", + "mil":"1", + "mlat":"0", + "opicao":"RCH", + "pos":"1", + "postime":"1608777690117", + "reg":"99-0168", + "sat":"0", + "spd":"420", + "sqk":"3255", + "talt":"", + "tisb":"0", + "trak":"213.7", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"C17", + "vsi":"", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"", + "altt":"0", + "call":"LABBOT", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFDF2", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"-100", + "altt":"0", + "call":"HUSKY24", + "cou":"United States", + "galt":"349", + "gnd":"1", + "icao":"AE07E9", + "interested":"0", + "lat":"47.151796", + "lon":"-122.479407", + "mil":"1", + "mlat":"0", + "opicao":"USAF", + "pos":"1", + "postime":"1608777690002", + "reg":"95-0106", + "sat":"0", + "spd":"5.8", + "sqk":"0312", + "talt":"", + "tisb":"0", + "trak":"123.8", + "trkh":"1", + "trt":"5", + "ttrk":"", + "type":"C17", + "vsi":"", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"28000", + "altt":"0", + "call":"PYTHN54", + "cou":"United States", + "galt":"28050", + "gnd":"0", + "icao":"AE1253", + "interested":"0", + "lat":"26.430531", + "lon":"51.667631", + "mil":"1", + "mlat":"1", + "opicao":"USAF", + "pos":"1", + "postime":"1608777482885", + "reg":"62-4126", + "sat":"0", + "spd":"", + "sqk":"3206", + "talt":"", + "tisb":"0", + "trak":"335.9", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"R135", + "vsi":"", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"36000", + "altt":"0", + "call":"MOOSE51", + "cou":"United States", + "galt":"36050", + "gnd":"0", + "icao":"AE1462", + "interested":"0", + "lat":"25.31862", + "lon":"55.048019", + "mil":"1", + "mlat":"1", + "opicao":"USAF", + "pos":"1", + "postime":"1608776922610", + "reg":"06-6164", + "sat":"0", + "spd":"", + "sqk":"4017", + "talt":"", + "tisb":"0", + "trak":"286.4", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"C17", + "vsi":"", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"7875", + "altt":"0", + "call":"", + "cou":"Canada", + "galt":"8014", + "gnd":"0", + "icao":"C28410", + "interested":"0", + "lat":"25.365434", + "lon":"121.141972", + "mil":"1", + "mlat":"1", + "opicao":"", + "pos":"1", + "postime":"1608777689468", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"4530", + "talt":"", + "tisb":"0", + "trak":"7.5", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Chile", + "galt":"", + "gnd":"0", + "icao":"E80602", + "interested":"0", + "lat":"-36.776325", + "lon":"-73.05889", + "mil":"1", + "mlat":"0", + "opicao":"JAT", + "pos":"1", + "postime":"1608777683556", + "reg":"CC-AWB", + "sat":"0", + "spd":"", + "sqk":"2000", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"A320", + "vsi":"", + "vsit":"0", + "wtc":"2" + }, + { + "alt":"30000", + "altt":"0", + "call":"SHELL31", + "cou":"United States", + "galt":"30000", + "gnd":"0", + "icao":"AE07BE", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"RCH", + "pos":"0", + "postime":"1608777690815", + "reg":"62-3578", + "sat":"0", + "spd":"346", + "sqk":"3207", + "talt":"30000", + "tisb":"0", + "trak":"266.1", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"K35R", + "vsi":"0", + "vsit":"1", + "wtc":"3" + }, + { + "alt":"6850", + "altt":"0", + "call":"JAT403", + "cou":"Chile", + "from":"LIM Jorge Chávez Lima Perú", + "galt":"6841", + "gnd":"0", + "icao":"E8060A", + "interested":"0", + "lat":"-33.06824", + "lon":"-70.80251", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777689600", + "reg":"", + "sat":"0", + "spd":"240", + "sqk":"5651", + "talt":"", + "tisb":"0", + "to":"SCL Comodoro Arturo Merino Benítez Santiago Chile", + "trak":"170", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"", + "vsi":"-440", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"25000", + "altt":"0", + "call":"LEVET30", + "cou":"United States", + "galt":"25000", + "gnd":"0", + "icao":"AE1D95", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"USN", + "pos":"0", + "postime":"1608777690815", + "reg":"159893", + "sat":"0", + "spd":"172", + "sqk":"3711", + "talt":"25008", + "tisb":"0", + "trak":"268.2", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"P3", + "vsi":"0", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"61800", + "altt":"0", + "call":"GNYT2", + "cou":"Germany", + "galt":"61800", + "gnd":"0", + "icao":"3E99BE", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"22000", + "altt":"0", + "call":"GLIDE90", + "cou":"United States", + "galt":"21990", + "gnd":"0", + "icao":"AE1444", + "interested":"0", + "lat":"26.522579", + "lon":"51.504434", + "mil":"1", + "mlat":"0", + "opicao":"RCH", + "pos":"1", + "postime":"1608777690743", + "reg":"05-8158", + "sat":"0", + "spd":"264.5", + "sqk":"1707", + "talt":"22000", + "tisb":"0", + "trak":"290.4", + "trkh":"0", + "trt":"5", + "ttrk":"285.5", + "type":"C30J", + "vsi":"0", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"35975", + "altt":"0", + "call":"SPAR411", + "cou":"United States", + "galt":"35985", + "gnd":"0", + "icao":"AE017A", + "interested":"0", + "lat":"37.61618", + "lon":"-86.857969", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608777688840", + "reg":"84-0142", + "sat":"0", + "spd":"407.2", + "sqk":"0774", + "talt":"36000", + "tisb":"0", + "trak":"298.5", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"LJ35", + "vsi":"-64", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"33975", + "altt":"0", + "call":"SOUND81", + "cou":"United States", + "galt":"33786", + "gnd":"0", + "icao":"AE10BC", + "interested":"0", + "lat":"37.343329", + "lon":"-87.550712", + "mil":"1", + "mlat":"1", + "opicao":"USAF", + "pos":"1", + "postime":"1608777689867", + "reg":"01-0193", + "sat":"0", + "spd":"371", + "sqk":"1037", + "talt":"", + "tisb":"0", + "trak":"304", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"C17", + "vsi":"-34", + "vsit":"0", + "wtc":"3" + }, + { + "alt":"32000", + "altt":"0", + "call":"SAM412", + "cou":"United States", + "galt":"32479", + "gnd":"0", + "icao":"AE115D", + "interested":"0", + "lat":"40.997803", + "lon":"-71.200413", + "mil":"1", + "mlat":"1", + "opicao":"USAF", + "pos":"1", + "postime":"1608777690621", + "reg":"01-0015", + "sat":"0", + "spd":"429", + "sqk":"3660", + "talt":"", + "tisb":"0", + "trak":"254", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"B737", + "vsi":"-41", + "vsit":"0", + "wtc":"2" + }, + { + "alt":"25", + "altt":"0", + "call":"KNIFE38", + "cou":"United States", + "galt":"275", + "gnd":"1", + "icao":"AE6037", + "interested":"0", + "lat":"33.126293", + "lon":"-117.286872", + "mil":"1", + "mlat":"0", + "opicao":"USARMY", + "pos":"1", + "postime":"1608777690365", + "reg":"17-20968", + "sat":"0", + "spd":"4.2", + "sqk":"1200", + "talt":"1984", + "tisb":"0", + "trak":"107.5", + "trkh":"0", + "trt":"5", + "ttrk":"260.2", + "type":"H60", + "vsi":"-256", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"28000", + "altt":"0", + "call":"RCH200", + "cou":"United States", + "galt":"28010", + "gnd":"0", + "icao":"AE4F13", + "interested":"0", + "lat":"40.100743", + "lon":"4.832235", + "mil":"1", + "mlat":"1", + "opicao":"USAF", + "pos":"1", + "postime":"1608777618648", + "reg":"10-0219", + "sat":"0", + "spd":"504", + "sqk":"5316", + "talt":"28000", + "tisb":"0", + "trak":"74.5", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"C17", + "vsi":"-32", + "vsit":"1", + "wtc":"3" + }, + { + "alt":"38975", + "altt":"0", + "call":"CTM1013", + "cou":"France", + "galt":"38965", + "gnd":"0", + "icao":"3B7544", + "interested":"0", + "lat":"53.313531", + "lon":"-3.632597", + "mil":"1", + "mlat":"0", + "opicao":"CTM", + "pos":"1", + "postime":"1608777690490", + "reg":"F-UJCS", + "sat":"1", + "spd":"505", + "sqk":"6313", + "talt":"39008", + "tisb":"0", + "trak":"136.3", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"A332", + "vsi":"160", + "vsit":"1", + "wtc":"3" + }, + { + "alt":"7300", + "altt":"0", + "call":"SUMIT71", + "cou":"United States", + "galt":"7539", + "gnd":"0", + "icao":"ADFEA0", + "interested":"0", + "lat":"38.888808", + "lon":"-104.658813", + "mil":"1", + "mlat":"0", + "opicao":"RCH", + "pos":"1", + "postime":"1608777690753", + "reg":"94-7320", + "sat":"0", + "spd":"170.5", + "sqk":"4675", + "talt":"", + "tisb":"0", + "trak":"107.1", + "trkh":"0", + "trt":"5", + "ttrk":"", + "type":"C130", + "vsi":"192", + "vsit":"1", + "wtc":"2" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBF0", + "interested":"0", + "lat":"13.930012", + "lon":"100.613255", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"1", + "postime":"1608775696277", + "reg":"", + "sat":"0", + "spd":"20.5", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"298.1", + "trkh":"0", + "trt":"4", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADF999", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"73000", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"73000", + "gnd":"0", + "icao":"ADF8AB", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"3210", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"8350", + "altt":"0", + "call":"RRR2303", + "cou":"United Kingdom", + "from":"AKT Akrotiri Cyprus", + "galt":"8360", + "gnd":"0", + "icao":"43C6F4", + "interested":"0", + "lat":"51.553986", + "lon":"-1.659678", + "mil":"1", + "mlat":"0", + "opicao":"RRR", + "pos":"1", + "postime":"1608777688840", + "reg":"ZZ331", + "sat":"0", + "spd":"272.3", + "sqk":"2265", + "talt":"2816", + "tisb":"0", + "to":"BZZ RAF Brize Norton United Kingdom", + "trak":"277.4", + "trkh":"0", + "trt":"5", + "ttrk":"270", + "type":"A332", + "vsi":"-2880", + "vsit":"1", + "wtc":"3" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United Kingdom", + "galt":"", + "gnd":"0", + "icao":"40000B", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"-TWR", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"70000", + "altt":"0", + "call":"", + "cou":"United States", + "galt":"70000", + "gnd":"0", + "icao":"ADF8E0", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"0542", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7BB", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADF996", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United Kingdom", + "galt":"", + "gnd":"0", + "icao":"40001C", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"-TWR", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBE1", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBE2", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C3", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBF4", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C0", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United Kingdom", + "galt":"", + "gnd":"0", + "icao":"400025", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"-TWR", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"62700", + "altt":"0", + "call":"GAFTT07", + "cou":"Germany", + "galt":"62700", + "gnd":"0", + "icao":"3EA3B0", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"PHRX2A", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C6", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7BC", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1235", + "cou":"Austria", + "galt":"", + "gnd":"0", + "icao":"447AC0", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C2", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBF5", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C1", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"62700", + "altt":"0", + "call":"GAFTT18", + "cou":"Germany", + "galt":"62700", + "gnd":"0", + "icao":"3EA3BB", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1235", + "cou":"Austria", + "galt":"", + "gnd":"0", + "icao":"447ABE", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7BF", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"55900", + "altt":"0", + "call":"FFMUNT", + "cou":"Austria", + "galt":"55900", + "gnd":"0", + "icao":"447ACA", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"PHRX1A", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C4", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1235", + "cou":"Austria", + "galt":"", + "gnd":"0", + "icao":"447AA7", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"SSM3", + "cou":"Australia", + "galt":"0", + "gnd":"1", + "icao":"7CF7CC", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7727", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADF997", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"SSM4", + "cou":"Australia", + "galt":"0", + "gnd":"1", + "icao":"7CF7CD", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7717", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADF992", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBDF", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"SSM1", + "cou":"Australia", + "galt":"0", + "gnd":"1", + "icao":"7CF7CA", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"198", + "sqk":"7712", + "talt":"", + "tisb":"0", + "trak":"29.5", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"0", + "gnd":"1", + "icao":"ADF991", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"5555", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"SSM2", + "cou":"Australia", + "galt":"0", + "gnd":"1", + "icao":"7CF7CB", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7722", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1235", + "cou":"Austria", + "galt":"", + "gnd":"0", + "icao":"447AA8", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7BD", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADF995", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBE3", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"SSM3", + "cou":"Australia", + "galt":"0", + "gnd":"1", + "icao":"7CF7D2", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7714", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"4600", + "altt":"0", + "call":"FFMSKL", + "cou":"Austria", + "galt":"4600", + "gnd":"0", + "icao":"447AC2", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"380", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"293.7", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7BA", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBDD", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"86700", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"86700", + "gnd":"0", + "icao":"ADF994", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"600", + "altt":"0", + "call":"FFMGRO", + "cou":"Austria", + "galt":"591", + "gnd":"0", + "icao":"447AC8", + "interested":"0", + "lat":"48.234481", + "lon":"16.900169", + "mil":"1", + "mlat":"1", + "opicao":"", + "pos":"1", + "postime":"1608777688977", + "reg":"", + "sat":"0", + "spd":"16", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"304", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"TEST", + "vsi":"-4", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United Kingdom", + "galt":"", + "gnd":"0", + "icao":"400008", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"-TWR", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United Kingdom", + "galt":"", + "gnd":"0", + "icao":"40003E", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"28625", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"28625", + "gnd":"0", + "icao":"7CF7C8", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"3614", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"6800", + "altt":"0", + "call":"FFMSNE", + "cou":"Austria", + "galt":"6762", + "gnd":"0", + "icao":"447AC7", + "interested":"0", + "lat":"48.194277", + "lon":"16.074716", + "mil":"1", + "mlat":"1", + "opicao":"", + "pos":"1", + "postime":"1608777614217", + "reg":"", + "sat":"0", + "spd":"91", + "sqk":"7777", + "talt":"", + "tisb":"0", + "trak":"176", + "trkh":"0", + "trt":"2", + "ttrk":"", + "type":"TEST", + "vsi":"-83", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United Kingdom", + "galt":"", + "gnd":"0", + "icao":"400006", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"-TWR", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"PHRX2B", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C7", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7B9", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7BE", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7B8", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBDE", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"0", + "altt":"0", + "call":"SSM4", + "cou":"Australia", + "galt":"0", + "gnd":"1", + "icao":"7CF7D3", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7724", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADFBE0", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"37300", + "altt":"0", + "call":"", + "cou":"Australia", + "galt":"37300", + "gnd":"0", + "icao":"7CF7C9", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"7200", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"1", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"PHRX1B", + "cou":"Australia", + "galt":"", + "gnd":"0", + "icao":"7CF7C5", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"", + "vsi":"", + "vsit":"0", + "wtc":"0" + }, + { + "alt":"", + "altt":"0", + "call":"TEST1234", + "cou":"United States", + "galt":"", + "gnd":"0", + "icao":"ADF993", + "interested":"0", + "lat":"", + "lon":"", + "mil":"1", + "mlat":"0", + "opicao":"", + "pos":"0", + "postime":"1608777690815", + "reg":"", + "sat":"0", + "spd":"", + "sqk":"", + "talt":"", + "tisb":"0", + "trak":"", + "trkh":"0", + "trt":"3", + "ttrk":"", + "type":"TEST", + "vsi":"", + "vsit":"0", + "wtc":"0" + } + ], + "ctime":1608777692991, + "total":105 + }, + "headers":{ + "cache-control":"no-cache, no-store, max-age=0, must-revalidate", + "cf-cache-status":"DYNAMIC", + "cf-ray":"6066f7580d66f5b5-SEA", + "cf-request-id":"073438eb020000f5b569118000000001", + "content-type":"application/json", + "date":"Thu, 24 Dec 2020 02:41:56 GMT", + "expect-ct":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "nel":"{\"report_to\":\"cf-nel\",\"max_age\":604800}", + "pragma":"no-cache", + "report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=5DjD%2FzykAgFzwdvq%2Fs8btFz8dDybrfVDUQ0aYabx9Gu4lKqZsa0V5WV2qXIca7XWJNkc7DJ8j7nB8K9mQ2A9c42dR3EK3I2r6N4zbLB9%2BO%2BO\"}],\"group\":\"cf-nel\",\"max_age\":604800}", + "server":"RapidAPI-1.2.6", + "set-cookie":[ + "__cfduid=d0caaaf70aab8519b254bf801e16a42671608777716; expires=Sat, 23-Jan-21 02:41:56 GMT; path=/; domain=.adsbexchange.com; HttpOnly; SameSite=Lax" + ], + "vary":"Accept-Encoding", + "x-powered-by":"PHP/7.4.11", + "x-rapidapi-region":"AWS - us-west-2", + "x-rapidapi-version":"1.2.6", + "transfer-encoding":"chunked", + "connection":"Close" + }, + "schema":{} + }, + { + "name":"Aircraft by Call Sign", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/callsign/{callsign}/", + "description":"Returns one or more aircraft currently broadcasting a call sign", + "method":"GET", + "required_parameters":[ + { + "name":"callsign", + "type":"string", + "description":"", + "default":"NKS185" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/callsign/{callsign}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Aircraft within 100 NM Radius", + "url":"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/100/", + "description":"Show all Aircraft within 100 Nautical Mile radius of a point", + "method":"GET", + "required_parameters":[ + { + "name":"lat", + "type":"NUMBER", + "description":"Latitude (-90 to 90)", + "default":"51.46918" + }, + { + "name":"lon", + "type":"NUMBER", + "description":"Longitude (-180 to 180) Hint: US is negative longitude!", + "default":"-0.45390" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/100/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbexchange-com1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/adsbexchange_com/api.py b/toolbench/toolenv/tools/Transportation/adsbexchange_com/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9ff05eaee1c0418b94e8654e615edb0408f49de7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/adsbexchange_com/api.py @@ -0,0 +1,341 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def aircraft_last_position_by_hex_id_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns one aircraft last known location using the mode-s hex (icao), if aircraft has flown in the last 48 hours." + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/hex/{icao}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_live_position_by_hex_id_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns one aircraft using the mode-s hex (icao)" + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/icao/{icao}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def single_aircraft_position_by_hex_id_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Single aircraft Position by ICAO Mode S 6-digit transponder hex code (if currently tracked)" + icao: ICAO code 000000-FFFFFF + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/icao/{icao}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def single_aircraft_position_by_registration(reg: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Single aircraft Position by Registration (if currently tracked)" + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/registration/{reg}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_250_nm_radius(lon: int, lat: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within 250 Nautical Mile radius of a point" + lon: Longitude (-180 to 180) Hint: US is negative longitude! + lat: Latitude (-90 to 90) + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/250/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_25_nm_radius(lat: int, lon: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within 25 Nautical Mile radius of a point" + lat: Latitude (-90 to 90) + lon: Longitude (-180 to 180) Hint: US is negative longitude! + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/25/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_10_nm_radius(lon: int, lat: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within 10 Nautical Mile radius of a point" + lon: Longitude (-180 to 180) Hint: US is negative longitude! + lat: Latitude (-90 to 90) + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/10/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_5_nm_radius(lat: int, lon: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within 5 Nautical Mile radius of a point" + lat: Latitude (-90 to 90) + lon: Longitude (-180 to 180) Hint: US is negative longitude! + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/5/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_1_nm_radius(lat: int, lon: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within 1 Nautical Mile radius of a point" + lat: Latitude (-90 to 90) + lon: Longitude (-180 to 180) Hint: US is negative longitude! + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/1/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_50_nm_radius(lon: int, lat: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all aircraft within 50 nautical mile radius of a point" + lon: Longitude (-180 to 180) Hint: US is negative longitude! + lat: Latitude (-90 to 90) + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/50/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_by_squawk(sqk: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns one or more aircraft currently broadcasting a specific squawk code" + sqk: 4-digit Transponder Squawk Code in Octal (ie.1200, 7700, 1234 etc.) + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/sqk/{sqk}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_user_specified_distance_up_to_250_nm(lon: int, dist: int, lat: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within specified distance up to 250 NM" + lon: Longitude (-180 to 180) Hint: US is negative longitude! + lat: Latitude (-90 to 90) + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/{dist}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def tagged_military_aircraft(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all active aircraft tagged as Military" + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/mil/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_by_call_sign(callsign: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns one or more aircraft currently broadcasting a call sign" + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/callsign/{callsign}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_within_100_nm_radius(lat: int, lon: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Show all Aircraft within 100 Nautical Mile radius of a point" + lat: Latitude (-90 to 90) + lon: Longitude (-180 to 180) Hint: US is negative longitude! + + """ + url = f"https://adsbexchange-com1.p.rapidapi.com/v2/lat/{lat}/lon/{lon}/dist/100/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbexchange-com1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/adsbx_flight_sim_traffic.json b/toolbench/toolenv/tools/Transportation/adsbx_flight_sim_traffic.json new file mode 100644 index 0000000000000000000000000000000000000000..89133128bc150b67b5b6daa2098569b1851c8e08 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/adsbx_flight_sim_traffic.json @@ -0,0 +1,47 @@ +{ + "product_id": "api_65319bd8-6785-4601-a7da-0d3a0c8670ca", + "tool_description": "ADSBexchange.com traffic feed for flight simulators", + "home_url": "https://rapidapi.com/adsbx/api/adsbx-flight-sim-traffic/", + "name": "ADSBx Flight Sim Traffic", + "title": "ADSBx Flight Sim Traffic", + "pricing": "FREEMIUM", + "tool_name": "ADSBx Flight Sim Traffic", + "score": { + "avgServiceLevel": 99, + "avgLatency": 329, + "avgSuccessRate": 99, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "adsbx-flight-sim-traffic.p.rapidapi.com", + "api_list": [ + { + "name": "LiveTraffic", + "url": "https://adsbx-flight-sim-traffic.p.rapidapi.com/api/aircraft/json/lat/{lat}/lon/{lon}/dist/25/", + "description": "Returns all aircraft within 25nm radius of specified Lat/Lon", + "method": "GET", + "required_parameters": [ + { + "name": "lat", + "type": "NUMBER", + "description": "Latitude (-90 to 90)", + "default": "" + }, + { + "name": "lon", + "type": "NUMBER", + "description": "Longitude (-180 to 180) Hint: US is negative longitude!", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://adsbx-flight-sim-traffic.p.rapidapi.com/api/aircraft/json/lat/{lat}/lon/{lon}/dist/25/\"\nquerystring = {\"lat\": \"\", \"lon\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbx-flight-sim-traffic.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://adsbx-flight-sim-traffic.p.rapidapi.com/api/aircraft/json/lat/{lat}/lon/{lon}/dist/25/\"\nquerystring = {\"lat\": \"\", \"lon\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"adsbx-flight-sim-traffic.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "ERR": "INVALID API CALL FORMAT", + "V": "%7Blat%7D %7Blon%7D 25" + } + } + ], + "standardized_name": "adsbx_flight_sim_traffic" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/adsbx_flight_sim_traffic/api.py b/toolbench/toolenv/tools/Transportation/adsbx_flight_sim_traffic/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d1b13bbf3807240076a1ad21b818e6571ffb8a2c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/adsbx_flight_sim_traffic/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def livetraffic(lat: int, lon: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all aircraft within 25nm radius of specified Lat/Lon" + lat: Latitude (-90 to 90) + lon: Longitude (-180 to 180) Hint: US is negative longitude! + + """ + url = f"https://adsbx-flight-sim-traffic.p.rapidapi.com/api/aircraft/json/lat/{lat}/lon/{lon}/dist/25/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "adsbx-flight-sim-traffic.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/aerodatabox.json b/toolbench/toolenv/tools/Transportation/aerodatabox.json new file mode 100644 index 0000000000000000000000000000000000000000..eeb5a6c81765d0c72d6fc811b89e770cca93c5b6 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aerodatabox.json @@ -0,0 +1,137 @@ +{ + "product_id": "api_80b5609b-b6b4-4aff-a824-f9381f781377", + "tool_description": "Flight data API for travel, hospitality, or aviation applications, researchers, small teams, and individual developers.", + "home_url": "https://rapidapi.com/aedbx-aedbx/api/aerodatabox/", + "name": "AeroDataBox", + "title": "AeroDataBox", + "pricing": "PAID", + "tool_name": "AeroDataBox", + "score": { + "avgServiceLevel": 100, + "avgLatency": 380, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "aerodatabox.p.rapidapi.com", + "api_list": [ + { + "name": "(BETA) Aircraft image recognition", + "url": "https://aerodatabox.p.rapidapi.com/aircrafts/recognize/beta", + "description": "**What aircrafts are depicted on this photo?**\n\nThis endpoint recognizes aircrafts on uploaded image and returns information about all detected aircrafts. It is based on computer vision technology and therefore results may be imprecise. It relies on detecting aircrafts' registrations and, once detected, attempting to match these registration with records in aircrafts database.\n\nReturns: Data about found and recognized aircrafts.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "photo", + "type": "BINARY", + "description": "Image containing aircraft. It should be image-type file (JPEG, PNG or BMP). To improve results: ensure that aircraft registration is as much as possible visible on the image; other inscriptions are visible as least as possible or absent on the image (although algorithm strives to filter these out as much as possible, false results are still possible).", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://aerodatabox.p.rapidapi.com/aircrafts/recognize/beta\"\nquerystring = {\"photo\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aerodatabox.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aerodatabox.p.rapidapi.com/aircrafts/recognize/beta\"\nquerystring = {\"photo\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aerodatabox.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "OK-KFN": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "reg": { + "type": "string" + }, + "active": { + "type": "boolean" + }, + "serial": { + "type": "string" + }, + "hexIcao": { + "type": "string" + }, + "airlineId": { + "type": "string" + }, + "airlineName": { + "type": "string" + }, + "iataCodeShort": { + "type": "string" + }, + "iataCodeLong": { + "type": "string" + }, + "model": { + "type": "string" + }, + "modelCode": { + "type": "string" + }, + "rolloutDate": { + "type": "string" + }, + "firstFlightDate": { + "type": "string" + }, + "deliveryDate": { + "type": "string" + }, + "registrationDate": { + "type": "string" + }, + "typeName": { + "type": "string" + }, + "numEngines": { + "type": "integer" + }, + "engineType": { + "type": "string" + }, + "isFreighter": { + "type": "boolean" + }, + "ageYears": { + "type": "number" + }, + "verified": { + "type": "boolean" + } + } + } + } + } + }, + { + "name": "Create web-hook subscription", + "url": "https://aerodatabox.p.rapidapi.com/subscriptions/webhook/{subjectType}/KL1395", + "description": "Creates a webhook subscription on a subject (e.g. flight by number or by airport code). Returns information about the created subscription. Subscription ID contained in it can be used to refresh or remove it.", + "method": "POST", + "required_parameters": [ + { + "name": "subjectType", + "type": "ENUM", + "description": "Subject type", + "default": "" + }, + { + "name": "subjectId", + "type": "string", + "description": "Subject ID. If `subjectType` is:\n- `FlightByNumber`, then this field must be a flight number (with or without spaces, IATA or ICAO, any case formats are acceptable, e.g. KL1395, Klm 1395);\n- `FlightByAirportIcao`, then this field must be a 4-character ICAO-code of the airport where flights are operated (e.g.: EHAM, KLAX, UUEE, etc.).", + "default": "KL1395" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aerodatabox.p.rapidapi.com/subscriptions/webhook/{subjectType}/KL1395\"\nquerystring = {\"subjectType\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aerodatabox.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aerodatabox.p.rapidapi.com/subscriptions/webhook/{subjectType}/{subjectid}\"\nquerystring = {\"subjectType\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aerodatabox.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aerodatabox/api.py b/toolbench/toolenv/tools/Transportation/aerodatabox/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f6aa6709d896469211507336b5c37bcd985b91c2 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aerodatabox/api.py @@ -0,0 +1,863 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def beta_aircraft_image_by_registration(reg: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What is the aircraft photo? ** + + Aircraft images are being searched externally in Flickr. Only images with licenses approved for commercial use are returned. Please be advised that you may be required to mention author attribution before using the image. + + Returns: Image data with medium-sized direct image URL and licence approved for commercial use is returned." + reg: Registration of the aircraft (full, stripped and any case formats are acceptable). + + """ + url = f"https://aerodatabox.p.rapidapi.com/aircrafts/reg/{reg}/image/beta" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def beta_weather_forecast_at_the_airport(code: str, codetype: str, tolocal: str='2023-04-03T14:00', fromlocal: str='2023-04-03T12:00', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "- What is the current weather at the airport? + - What is the weather forecast for the airport? (up to 48 hours ahead)" + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + codetype: Type of code to search airport by (`iata` or `icao`) + tolocal: (Optional) End of the search range (local time, format: `YYYY-MM-DDTHH:mm`). Must be equal to or more than the beginning of the search range specified in `fromLocal`, up to 48 hours in the future. Default equal to `fromLocal`. + fromlocal: (Optional) Beginning of the search range (local time, format: `YYYY-MM-DDTHH:mm`). Must be in range from current time up to 48 hours in the future. Default - current time. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}/weather/{fromlocal}/{tolocal}" + querystring = {} + if tolocal: + querystring['toLocal'] = tolocal + if fromlocal: + querystring['fromLocal'] = fromlocal + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def solar_and_day_time_at_the_airport(codetype: str, code: str, datelocal: str='2023-04-03T19:00', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "- What is the sun position in the sky now at a specific time at the airport? + - When does the sun rise and set at the airport today or on the other day at the airport? + - Is it dark now or is it day at the airport?" + codetype: Type of code to search airport by (`iata` or `icao`) + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + datelocal: The moment of time which solar data is request for (local time, format: YYYY-MM-DDTHH:mm). Default - current time. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}/time/solar/{datelocal}" + querystring = {} + if datelocal: + querystring['dateLocal'] = datelocal + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def current_local_time_at_the_airport(code: str, codetype: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "What is the current local time at the airport?" + code: If `codeType` is: + * `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + codetype: Type of code to search airport by (iata or icao) + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}/time/local" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_delays_current_historical(codetype: str, code: str, datelocal: str='2022-06-03T12:00', datetolocal: str='2022-06-04T00:00', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What is the current or historical average delay in the airport?** or **What is the delay index of the airport right now or at a moment in past?** or **What were the delays within a specific period of time?** or **How the delays changed within a specific period of time?** + + Statistics are calculated against the flight data we aggregated. Hencerforth, it is available only for those airports and those periods of time when delay information could have been reasonably derived. This applies to flights which qualify for this calculation (actual time and status of the flight must be available). This normally applies to flights arriving to / departing from the airports with Live or Radar + Scheduled quality. Learn more about coverage here: https://aerodatabox.com/data-coverage/ + + Median delay and delay index are available if there were at least 2 flights per hour per departures or arrivals at the time requested and at least 3 total qualifying flights within the coverage period. + + *Returns*: Statistical delay information about delays (median delay, delay index, cancelled flights) of arrivals and departures for the requested airport, represented by: + * a single `AirportDelayContract` item displaying the delay information based on flight movements within the 2 hours prior to the current moment, if no `dateLocal` is specified; + * a single `AirportDelayContract` item displaying the delay information based on flight movements within the 2 hours prior to the moment requested in `dateLocal`, if `dateLocal` is specified and `dateToLocal` - is not; + * a collection of `AiportDelayContract` items displaying the delay information at multiple moments within the period between `dateLocal` and `dateToLocal`, if both are specified." + codetype: Type of code to search airport by (`iata` or `icao`) + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + datelocal: The moment of time for / from which delay data is requested (local time, format: YYYY-MM-DDTHH:mm). + datetolocal: The moment of time until which delay data is requested (local time, format: YYYY-MM-DDTHH:mm). + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}/delays/{datelocal}/{datetolocal}" + querystring = {} + if datelocal: + querystring['dateLocal'] = datelocal + if datetolocal: + querystring['dateToLocal'] = datetolocal + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def fids_schedules_airport_departures_and_arrivals(fromlocal: str, tolocal: str, codetype: str, code: str, withleg: bool=None, direction: str=None, withcancelled: bool=None, withcodeshared: bool=None, withcargo: bool=None, withlocation: bool=None, withprivate: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What are current departures or arrivals at the airport?** or **What is the flight schedule at the airport?** or **What is flight history at the airport?** + + Flights may contain live updates with corresponding information related to the actual progress of the flight (including actual/estimated arrival/departure times). In this case this endpoint serves as a FIDS endpoint. Presense of live updates is subject to data coverage: not all airports have this coverage in our system. + + Otherwise the flight information will be limited to schedule only and will not be updated with time. Much more airports have this coverage. + + To check if airport is tracked and on which level, use `/health/services/airports/{icao}/feeds` endpoint. You can also use `/health/services/feeds/{service}/airports` to get the list of supported airports for this or that layer of coverage. + + To learn more about the data coverage, refer to https://www.aerodatabox.com/data-coverage. + + Returns: the list of arriving and/or departing flights scheduled and/or planned and/or commenced within a specified time range for a specified airport." + fromlocal: Beginning of the search range (local time, format: YYYY-MM-DDTHH:mm) + tolocal: End of the search range (local time, format: YYYY-MM-DDTHH:mm). Should be more than beginning of the search range, but not more than by 12 hours. + codetype: Type of code to search airport by (`iata` or `icao`) + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + withleg: If set to true, will include movement information from airport opposite in this flight leg (airport of origin for arriving flight or airport of destination for departing flight). In this case, Movement property will be replaced with Departure and Arrival properties for each flight. Default: false. + direction: Direction of flights: Arrival, Departure or Both (default) + withcancelled: If set to true, result will include cancelled, divered, likely cancelled (CanceledUncertain) flights. Default: true. + withcodeshared: If set to true, result will include flights with all code-shared statuses. Otherwise, code-sharing flights will be excluded. For airports, where no information about code-share statuses of flights are supplied (all flights are CodeshareStatus=Unknown), complex filtering will be applied to determine which flights are likely to be operational (caution: false results are possible). + withcargo: If set to true, result will include cargo flights (subject to availability). + withlocation: If set to true, each currently active flight within the result will be populated with its present real-time location, altitude, speed and track (subject to availability). + withprivate: If set to true, result will include private flights (subject to availability). + + """ + url = f"https://aerodatabox.p.rapidapi.com/flights/airports/{codetype}/{code}/{fromlocal}/{tolocal}" + querystring = {} + if withleg: + querystring['withLeg'] = withleg + if direction: + querystring['direction'] = direction + if withcancelled: + querystring['withCancelled'] = withcancelled + if withcodeshared: + querystring['withCodeshared'] = withcodeshared + if withcargo: + querystring['withCargo'] = withcargo + if withlocation: + querystring['withLocation'] = withlocation + if withprivate: + querystring['withPrivate'] = withprivate + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aiport_by_code(codetype: str, code: str, withrunways: bool=None, withtime: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets airport by code (IATA or ICAO)." + codetype: Type of code to search airport by (`iata` or `icao`) + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + withrunways: Should include runway information + withtime: Should include current local time information + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}" + querystring = {} + if withrunways: + querystring['withRunways'] = withrunways + if withtime: + querystring['withTime'] = withtime + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_runways(codetype: str, code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets information about runways at specified airport." + codetype: Type of code to search airport by (`iata` or `icao`) + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}/runways" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flight_delay_statistics_by_flight_number(number: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**By how much the flight is delayed in average?** + + Gets delay statistics for the flight with specified number." + number: Flight number (with or without spaces, IATA or ICAO, any case formats are acceptable, e.g. KL1395, Klm 1395) + + """ + url = f"https://aerodatabox.p.rapidapi.com/flights/{number}/delays" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_airports_by_ip_address_geolocation(q: str, radiuskm: int, limit: int, withflightinfoonly: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What are the airports closest to the customer, based on their IP address?** + ** What are the airports closest to the location determined (geo-located) by a IP address?** + + Gets the list of airports found within the specified radius around the location approximated (geo-located) from the specified IP address." + q: A valid public IP v4 address + radiuskm: Radius of search around specified location in kilometers (max. 1000 km) + limit: Maximum number of airports to be returned (max. 250) + withflightinfoonly: If set to true, will only return airports which have flight data (scheduled or live) available. Default = false. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/search/ip" + querystring = {'q': q, 'radiusKm': radiuskm, 'limit': limit, } + if withflightinfoonly: + querystring['withFlightInfoOnly'] = withflightinfoonly + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deprecated_search_airports_by_ip_address_geolocation_path_style(ip: str, limit: int, radiuskm: int, withflightinfoonly: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "User `Search airports by IP address geolocation` endpoint instead." + ip: A valid public IP v4 address + limit: Maximum number of airports to be returned + radiuskm: Radius of search around specified location in kilometers (maximum 1000 km) + withflightinfoonly: If set to true, will only return airports which have flight data (scheduled or live) available. Default = false. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/search/ip/{ip}/km/{radiuskm}/{limit}" + querystring = {} + if withflightinfoonly: + querystring['withFlightInfoOnly'] = withflightinfoonly + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def deprecated_search_airports_by_location_path_style(lon: int, lat: int, limit: int, radiuskm: int, withflightinfoonly: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use `Search airports by location` endpoint instead." + lon: Longitude location coordinate in decimal format (between -180 and 180) + lat: Latitude location coordinate in decimal format (between -90 and 90) + limit: Maximum number of airports to be returned + radiuskm: Radius of search around specified location in kilometers (maximum 1000 km) + withflightinfoonly: If set to true, will only return airports which have flight data (scheduled or live) available. Default = false. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/search/location/{lat}/{lon}/km/{radiuskm}/{limit}" + querystring = {} + if withflightinfoonly: + querystring['withFlightInfoOnly'] = withflightinfoonly + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_airports_by_free_text(q: str, limit: int=10, withflightinfoonly: bool=None, withsearchbycode: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the list of airports with ICAO or IATA code matching the search term case-insensitively and airports with airport or city name containing the search term case-insensitively." + q: Search query (min. 3 non whitespace characters length) + limit: Maximum number of airports to be returned (max. 250, defaut = 10) + withflightinfoonly: If set to true, will only return airports which have flight data (scheduled or live) available. Default = false. + withsearchbycode: If set to true, will attempt to interpret short words within the search query as IATA or ICAO code and prioritize exact matches by these codes (they will appear higher than others). Otherwise, the search by code will be completely excluded (only the name of an airport or its city will be searched). Default = true. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/search/term" + querystring = {'q': q, } + if limit: + querystring['limit'] = limit + if withflightinfoonly: + querystring['withFlightInfoOnly'] = withflightinfoonly + if withsearchbycode: + querystring['withSearchByCode'] = withsearchbycode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_airports_by_location(radiuskm: int, lon: int, lat: int, limit: int, withflightinfoonly: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets the list of airports found within specified radius around specified location." + radiuskm: Radius of search around specified location in kilometers (max. 1000 km) + lon: Longitude location coordinate in decimal format (between -180 and 180) + lat: Latitude location coordinate in decimal format (between -90 and 90) + limit: Maximum number of airports to be returned (max. 250) + withflightinfoonly: If set to true, will only return airports which have flight data (scheduled or live) available. Default = false. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/search/location" + querystring = {'radiusKm': radiuskm, 'lon': lon, 'lat': lat, 'limit': limit, } + if withflightinfoonly: + querystring['withFlightInfoOnly'] = withflightinfoonly + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_routes_and_daily_flights_statistics(codetype: str, code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What are the most popular routes from an airport?** or **Where I can fly from an airport?** or **How many daily flights to different destinations from an airport?** + + Gets list of routes and daily flights amount departing from an airport." + codetype: Type of code to search airport by (`iata` or `icao`) + code: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the airport (e.g.: AMS, SFO, LAX, etc.). + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{code}/stats/routes/daily" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def global_delays_current_historical(datetimeutc: str='2022-01-21T12:00', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What is the current or historical delay situation in all airports?** or **What is the delay index of all airports right now or at a moment in past?** + + *Returns:* Statistical delay information about delays (median delay, delay index, cancelled flights) of arrivals and departures for all known airports, represented by a collection of items sorted in departure index descending order (from worst to best)." + datetimeutc: The moment of time for / from which delay data is requested (UTC time, format: YYYY-MM-DDTHH:mm). Default - current time. + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/delays/{datetimeutc}" + querystring = {} + if datetimeutc: + querystring['dateTimeUtc'] = datetimeutc + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def distance_flight_time_between_airports(codetype: str, codefrom: str, codeto: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**What is distance between airports?** and **What is approximate flight time between airports?** + + Returns: Distance and approximate flight time between airports, if both airports found." + codetype: Type of code to search airport by (IATA or ICAO) + codefrom: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the origin airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the origin airport (e.g.: AMS, SFO, LAX, etc.). + codeto: If `codeType` is: +* `icao`, then this field must be a 4-character ICAO-code of the destination airport (e.g.: EHAM, KLAX, UUEE, etc.); +* `iata`, then this field must be a 3-character IATA-code of the destination airport (e.g.: AMS, SFO, LAX, etc.). + + """ + url = f"https://aerodatabox.p.rapidapi.com/airports/{codetype}/{codefrom}/distance-time/{codeto}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_supporting_data_feed_service(service: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**Which airports support flight schedules? **or **Which airports support live flight updates?** + + Returns: Collection ICAO codes of airports supporting specified airport data feed service." + service: Airport data feed service name + + """ + url = f"https://aerodatabox.p.rapidapi.com/health/services/feeds/{service}/airports" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_data_feed_services_status_by_icao_code(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets current status of airport data feed services (live flight updates, flight schedules, etc.) for requested airport." + icao: 4-digit ICAO-code of the airport (e.g.: EHAM, KLAX, UUEE, etc.). Full, stripped and any case formats are acceptable. + + """ + url = f"https://aerodatabox.p.rapidapi.com/health/services/airports/{icao}/feeds" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def general_status_of_data_feed_services(service: str, withhttpcode: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**Which is the general health of the data feed service?** + + Returns: Status of the service in general, regardless of the airports" + service: Data feed service name + withhttpcode: If true, reflect status of the service in the HTTP code of the response (if the service is down, HTTP code will be 503). + + Default: false + + """ + url = f"https://aerodatabox.p.rapidapi.com/health/services/feeds/{service}" + querystring = {} + if withhttpcode: + querystring['withHttpCode'] = withhttpcode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flight_status_nearest(searchby: str, searchparameter: str, withaircraftimage: bool=None, withlocation: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets information about the status of the nearest (either in past or in future) flight or about flight departing or arriving on the day specified (local time), operated: + - under specified flight number; or + - by an aircraft with specified registration; or + - under specified ATC-callsign; or + - by an aircraft with specified Mode-S 24-bit ICAO Transponder address." + searchby: Criteria to search by: +- **number**: search flight operated under specified flight number; +- **callsign**: search flight operated under specified ATC call-sign; +- **reg**: search flight operated on an aircraft with specified registration; +- **icao24**: search flight operated on an aircraft with specified ICAO 24-bit Mode-S transponder address. + searchparameter: If **searchBy** is: +- **number**, then then this field should be Flight number (with or without spaces, IATA or ICAO, any case formats are acceptable, e.g. KL1395, Klm 1395) +- **callsign**, then this field should be ATC call-sign of the flight (with or without spaces, any case formats are acceptable, e.g. AFL1482, nca 008X); +- **reg**: then this field should be Aircraft registration (with or without spaces or dashes, any case formats are acceptable, e.g. PH-BXO, DeMhJ); +- **icao24**, then this field should be Aircraft ICAO 24-bit Mode-S address specified in hexadecimal format (e.g. 484161, 483EFD). + withaircraftimage: Should include aircraft image. + withlocation: Should include real-time positional data, e.g.: location, speed, altitude, etc., if available + + """ + url = f"https://aerodatabox.p.rapidapi.com/flights/{searchby}/{searchparameter}" + querystring = {} + if withaircraftimage: + querystring['withAircraftImage'] = withaircraftimage + if withlocation: + querystring['withLocation'] = withlocation + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flight_status_with_date(searchby: str, searchparameter: str, datelocal: str, withlocation: bool=None, withaircraftimage: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets information about the status of the nearest (either in past or in future) flight or about flight departing or arriving on the day specified (local time), operated: + - under specified flight number; or + - by an aircraft with specified registration; or + - under specified ATC-callsign; or + - by an aircraft with specified Mode-S 24-bit ICAO Transponder address." + searchby: Criteria to search by: +- **number**: search flight operated under specified flight number; +- **callsign**: search flight operated under specified ATC call-sign; +- **reg**: search flight operated on an aircraft with specified registration; +- **icao24**: search flight operated on an aircraft with specified ICAO 24-bit Mode-S transponder address. + searchparameter: If **searchBy** is: +- **number**, then then this field should be Flight number (with or without spaces, IATA or ICAO, any case formats are acceptable, e.g. KL1395, Klm 1395) +- **callsign**, then this field should be ATC call-sign of the flight (with or without spaces, any case formats are acceptable, e.g. AFL1482, nca 008X); +- **reg**: then this field should be Aircraft registration (with or without spaces or dashes, any case formats are acceptable, e.g. PH-BXO, DeMhJ); +- **icao24**, then this field should be Aircraft ICAO 24-bit Mode-S address specified in hexadecimal format (e.g. 484161, 483EFD). + datelocal: Optional parameter: Local date of departure or arrival (in format: YYYY-MM-DD, e.g.: 2019-08-29). If specified, endpoint gets information about flight departing or arriving on the day specified (local time). + withlocation: Should include real-time positional data, e.g.: location, speed, altitude, etc., if available + withaircraftimage: Should include aircraft image. + + """ + url = f"https://aerodatabox.p.rapidapi.com/flights/{searchby}/{searchparameter}/{datelocal}" + querystring = {} + if withlocation: + querystring['withLocation'] = withlocation + if withaircraftimage: + querystring['withAircraftImage'] = withaircraftimage + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flight_departure_dates(searchparameter: str, searchby: str, tolocal: str='2020-06-15', fromlocal: str='2020-06-01', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "**On which days the flight operates?** or **What is the flight schedule?** + + Get flight departure dates for a flight operated: + , operated: + - under specified flight number; or + - by an aircraft with specified registration; or + - under specified ATC-callsign; or + - by an aircraft with specified Mode-S 24-bit ICAO Transponder address. + + Returns: Array of local departure dates in (YYYY-MM-DD)." + searchparameter: If **searchBy** is: +- **number**, then then this field should be Flight number (with or without spaces, IATA or ICAO, any case formats are acceptable, e.g. KL1395, Klm 1395) +- **callsign**, then this field should be ATC call-sign of the flight (with or without spaces, any case formats are acceptable, e.g. AFL1482, nca 008X); +- **reg**: then this field should be Aircraft registration (with or without spaces or dashes, any case formats are acceptable, e.g. PH-BXO, DeMhJ); +- **icao24**, then this field should be Aircraft ICAO 24-bit Mode-S address specified in hexadecimal format (e.g. 484161, 483EFD). + searchby: Criteria to search by: +- **number**: search flight operated under specified flight number; +- **callsign**: search flight operated under specified ATC call-sign; +- **reg**: search flight operated on an aircraft with specified registration; +- **icao24**: search flight operated on an aircraft with specified ICAO 24-bit Mode-S transponder address. + tolocal: End of the search range (local time, format: YYYY-MM-DD) + fromlocal: Beginning of the search range (local time, format: YYYY-MM-DD) + + """ + url = f"https://aerodatabox.p.rapidapi.com/flights/{searchby}/{searchparameter}/dates/{fromlocal}/{tolocal}" + querystring = {} + if tolocal: + querystring['toLocal'] = tolocal + if fromlocal: + querystring['fromLocal'] = fromlocal + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_registration_history_by_tail_number_mode_s_or_id(searchby: str, searchparam: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns: A list of all known registrations of a single aircraft, best matching specified search criteria, if found" + searchby: Criteria to search aircraft by + searchparam: Value of the search criteria. If *searchBy* is: + - **reg**: then this field should be aircraft registration (with or without spaces or dashes, any case formats are acceptable, e.g.PH-BXO, DeMhJ); +- **icao24**, then this field should be aircraft ICAO 24-bit Mode-S address specified in hexadecimal format (e.g. 484161, 483EFD). + + + """ + url = f"https://aerodatabox.p.rapidapi.com/aircrafts/{searchby}/{searchparam}/registrations" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_single_aircraft_by_tail_number_mode_s_or_id(searchparam: str, searchby: str, withregistrations: bool=None, withimage: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns: Single aircraft, best matching specified search criteria, if found" + searchparam: Value of the search criteria. If *searchBy* is: + - **reg**: then this field should be aircraft registration (with or without spaces or dashes, any case formats are acceptable, e.g.PH-BXO, DeMhJ); +- **icao24**, then this field should be aircraft ICAO 24-bit Mode-S address specified in hexadecimal format (e.g. 484161, 483EFD). + + searchby: Criteria to search aircraft by + withregistrations: Should include the history of aircraft registrations (default: false). + withimage: Should include aircraft image (default: false). + + """ + url = f"https://aerodatabox.p.rapidapi.com/aircrafts/{searchby}/{searchparam}" + querystring = {} + if withregistrations: + querystring['withRegistrations'] = withregistrations + if withimage: + querystring['withImage'] = withimage + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_aircraft_by_tail_number_mode_s_or_id(searchby: str, searchparam: str, withimage: bool=None, withregistrations: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns: A list of all aircraft matching the search criteria" + searchby: Criteria to search aircraft by + searchparam: Value of the search criteria. If *searchBy* is: + - **reg**: then this field should be aircraft registration (with or without spaces or dashes, any case formats are acceptable, e.g.PH-BXO, DeMhJ); +- **icao24**, then this field should be aircraft ICAO 24-bit Mode-S address specified in hexadecimal format (e.g. 484161, 483EFD). + + withimage: Should include aircraft image (default: false). + withregistrations: Should include the history of aircraft registrations (default: false). + + """ + url = f"https://aerodatabox.p.rapidapi.com/aircrafts/{searchby}/{searchparam}/all" + querystring = {} + if withimage: + querystring['withImage'] = withimage + if withregistrations: + querystring['withRegistrations'] = withregistrations + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_web_hook_subscriptions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the list of existing active web-hook subscriptions" + + """ + url = f"https://aerodatabox.p.rapidapi.com/subscriptions/webhook" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_web_hook_subscription(subscriptionid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Gets information about an existing web-hook subscription." + subscriptionid: Subscription ID + + """ + url = f"https://aerodatabox.p.rapidapi.com/subscriptions/webhook/{subscriptionid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aerodatabox.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/aircraft_by_api_ninjas.json b/toolbench/toolenv/tools/Transportation/aircraft_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..0b5a513b46e25460346bc0309db139beb8c34439 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aircraft_by_api_ninjas.json @@ -0,0 +1,115 @@ +{ + "tool_name":"Aircraft by API-Ninjas", + "tool_description":"Detailed technical specs on over 1000 airplane models. See more info at https://api-ninjas.com/api/aircraft", + "title":"Aircraft by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":88, + "avgLatency":435, + "avgSuccessRate":85, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/aircraft-by-api-ninjas/", + "host":"aircraft-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/aircraft", + "url":"https://aircraft-by-api-ninjas.p.rapidapi.com/v1/aircraft", + "description":"API Ninjas Aircraft API endpoint. Returns a list of aircrafts that match the given parameters. This API only supports airplanes - for helicopter specs please use our Helicopter API.\n\nAt least one of the following parameters (excluding the limit parameter) must be set.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"min_height", + "type":"NUMBER", + "description":"Minimum height of the aircraft in feet.", + "default":"" + }, + { + "name":"min_wingspan", + "type":"NUMBER", + "description":"Minimum wingspan of the aircraft in feet.", + "default":"" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"How many results to return. Must be between 1 and 30. Default is 1.", + "default":"" + }, + { + "name":"max_height", + "type":"NUMBER", + "description":"Maximum height of the aircraft in feet.", + "default":"" + }, + { + "name":"max_length", + "type":"NUMBER", + "description":"Maximum length of the aircraft in feet.", + "default":"" + }, + { + "name":"min_length", + "type":"NUMBER", + "description":"Minimum length of the aircraft in feet.", + "default":"" + }, + { + "name":"max_range", + "type":"NUMBER", + "description":"Maximum range of the aircraft in nautical miles.", + "default":"" + }, + { + "name":"min_range", + "type":"NUMBER", + "description":"Minimum range of the aircraft in nautical miles.", + "default":"" + }, + { + "name":"max_speed", + "type":"NUMBER", + "description":"Maximum max. air speed in knots.", + "default":"" + }, + { + "name":"max_wingspan", + "type":"NUMBER", + "description":"Maximum wingspan of the aircraft in feet.", + "default":"" + }, + { + "name":"engine_type", + "type":"STRING", + "description":"Type of engine. Must be one of: piston, propjet, jet.", + "default":"" + }, + { + "name":"min_speed", + "type":"NUMBER", + "description":"Minimum max. air speed in knots.", + "default":"" + }, + { + "name":"model", + "type":"STRING", + "description":"Aircraft model name.", + "default":"G550" + }, + { + "name":"manufacturer", + "type":"STRING", + "description":"Company that designed and built the aircraft.", + "default":"Gulfstream" + } + ], + "code":"import requests\n\nurl = \"https://aircraft-by-api-ninjas.p.rapidapi.com/v1/aircraft\"\nquerystring = {\"model\": model, \"manufacturer\": manufacturer}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aircraft-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aircraft_by_api_ninjas/api.py b/toolbench/toolenv/tools/Transportation/aircraft_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ec71b13fcf9ac81d624f09664d09e568ab5df039 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aircraft_by_api_ninjas/api.py @@ -0,0 +1,73 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_aircraft(min_height: int=None, min_wingspan: int=None, limit: int=None, max_height: int=None, max_length: int=None, min_length: int=None, max_range: int=None, min_range: int=None, max_speed: int=None, max_wingspan: int=None, engine_type: str=None, min_speed: int=None, model: str='G550', manufacturer: str='Gulfstream', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Aircraft API endpoint. Returns a list of aircrafts that match the given parameters. This API only supports airplanes - for helicopter specs please use our Helicopter API. + + At least one of the following parameters (excluding the limit parameter) must be set." + min_height: Minimum height of the aircraft in feet. + min_wingspan: Minimum wingspan of the aircraft in feet. + limit: How many results to return. Must be between 1 and 30. Default is 1. + max_height: Maximum height of the aircraft in feet. + max_length: Maximum length of the aircraft in feet. + min_length: Minimum length of the aircraft in feet. + max_range: Maximum range of the aircraft in nautical miles. + min_range: Minimum range of the aircraft in nautical miles. + max_speed: Maximum max. air speed in knots. + max_wingspan: Maximum wingspan of the aircraft in feet. + engine_type: Type of engine. Must be one of: piston, propjet, jet. + min_speed: Minimum max. air speed in knots. + model: Aircraft model name. + manufacturer: Company that designed and built the aircraft. + + """ + url = f"https://aircraft-by-api-ninjas.p.rapidapi.com/v1/aircraft" + querystring = {} + if min_height: + querystring['min_height'] = min_height + if min_wingspan: + querystring['min_wingspan'] = min_wingspan + if limit: + querystring['limit'] = limit + if max_height: + querystring['max_height'] = max_height + if max_length: + querystring['max_length'] = max_length + if min_length: + querystring['min_length'] = min_length + if max_range: + querystring['max_range'] = max_range + if min_range: + querystring['min_range'] = min_range + if max_speed: + querystring['max_speed'] = max_speed + if max_wingspan: + querystring['max_wingspan'] = max_wingspan + if engine_type: + querystring['engine_type'] = engine_type + if min_speed: + querystring['min_speed'] = min_speed + if model: + querystring['model'] = model + if manufacturer: + querystring['manufacturer'] = manufacturer + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aircraft-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/aircraft_data_simple_collection.json b/toolbench/toolenv/tools/Transportation/aircraft_data_simple_collection.json new file mode 100644 index 0000000000000000000000000000000000000000..4e18c8c57c63eb3853f1c8a892e3b83d3b6a86af --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aircraft_data_simple_collection.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Aircraft data simple collection", + "tool_description":"This API gives you information about an aircraft. We have collected this data from multiple sources. You get data from multiple sources at once using a single request.", + "title":"Aircraft data simple collection", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":15708, + "avgSuccessRate":100, + "popularityScore":8.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/mikhail1814/api/aircraft-data-simple-collection/", + "host":"aircraft-data-simple-collection.p.rapidapi.com", + "api_list":[ + { + "name":"getbyhex", + "url":"https://aircraft-data-simple-collection.p.rapidapi.com/aircraft/{id}", + "description":"get aircraft info by hex number", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"string", + "description":"", + "default":"424353" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://aircraft-data-simple-collection.p.rapidapi.com/aircraft/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aircraft-data-simple-collection.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aircraft_data_simple_collection/api.py b/toolbench/toolenv/tools/Transportation/aircraft_data_simple_collection/api.py new file mode 100644 index 0000000000000000000000000000000000000000..acf6bfc9ef3507d2ede3998380d035e6c39396e2 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aircraft_data_simple_collection/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getbyhex(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "get aircraft info by hex number" + + """ + url = f"https://aircraft-data-simple-collection.p.rapidapi.com/aircraft/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aircraft-data-simple-collection.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/airlines_by_api_ninjas.json b/toolbench/toolenv/tools/Transportation/airlines_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..82dcc5bcdecbaa8eae90b09b0d7cdc3d77015032 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airlines_by_api_ninjas.json @@ -0,0 +1,49 @@ +{ + "tool_name":"Airlines by API-Ninjas", + "tool_description":"General and detailed fleet information for over 1,000 airlines. See more info at https://api-ninjas.com/api/airlines.", + "title":"Airlines by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":359, + "avgSuccessRate":100, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/airlines-by-api-ninjas/", + "host":"airlines-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/airlines", + "url":"https://airlines-by-api-ninjas.p.rapidapi.com/v1/airlines", + "description":"API Ninjas Airlines API endpoint. At least one of the optional parameters must be provided.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"iata", + "type":"STRING", + "description":"International Air Transport Association (IATA) 2-character airline code.", + "default":"" + }, + { + "name":"name", + "type":"STRING", + "description":"Airline name. This parameter supports partial matching (e.g. United will match United Airlines)", + "default":"Singapore Airlines" + }, + { + "name":"icao", + "type":"STRING", + "description":"International Civil Aviation Organization (ICAO) 3-character airline code.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airlines-by-api-ninjas.p.rapidapi.com/v1/airlines\"\nquerystring = {\"name\": name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airlines-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/airlines_by_api_ninjas/api.py b/toolbench/toolenv/tools/Transportation/airlines_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..84f580dee7520779ad42b9c317a7bbbd42acc0e7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airlines_by_api_ninjas/api.py @@ -0,0 +1,38 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_airlines(iata: str=None, name: str='Singapore Airlines', icao: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Airlines API endpoint. At least one of the optional parameters must be provided." + iata: International Air Transport Association (IATA) 2-character airline code. + name: Airline name. This parameter supports partial matching (e.g. United will match United Airlines) + icao: International Civil Aviation Organization (ICAO) 3-character airline code. + + """ + url = f"https://airlines-by-api-ninjas.p.rapidapi.com/v1/airlines" + querystring = {} + if iata: + querystring['iata'] = iata + if name: + querystring['name'] = name + if icao: + querystring['icao'] = icao + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airlines-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/airpeace_flight_price.json b/toolbench/toolenv/tools/Transportation/airpeace_flight_price.json new file mode 100644 index 0000000000000000000000000000000000000000..56571efe9b885c6f6cda7fcb94ca2ba2ece83f3f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airpeace_flight_price.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_4c73e377-1c24-4b0d-9c57-b31aeb64b2fa", + "tool_description": "This endpoints gets the booking price for a single seat on Airpeace.", + "home_url": "https://rapidapi.com/salesngine-salesngine-default/api/airpeace-flight-price/", + "name": "Airpeace Flight Price", + "title": "Airpeace Flight Price", + "pricing": "FREE", + "tool_name": "Airpeace Flight Price", + "score": { + "avgServiceLevel": 100, + "avgLatency": 4010, + "avgSuccessRate": 0, + "popularityScore": 0.1, + "__typename": "Score" + }, + "host": "airpeace-flight-price.p.rapidapi.com", + "api_list": [ + { + "name": "Airpeace", + "url": "https://airpeace-flight-price.p.rapidapi.com/api/v1.0/site/airlines/airpeace", + "description": "This endpoints gets the booking price for a single seat on Airpeace.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airpeace-flight-price.p.rapidapi.com/api/v1.0/site/airlines/airpeace\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airpeace-flight-price.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airpeace-flight-price.p.rapidapi.com/api/v1.0/site/airlines/airpeace\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airpeace-flight-price.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/airports.json b/toolbench/toolenv/tools/Transportation/airports.json new file mode 100644 index 0000000000000000000000000000000000000000..e858b8199ef0205cab4961f0057992ed7544fa16 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airports.json @@ -0,0 +1,369 @@ +{ + "tool_name":"Airports", + "tool_description":"Retrieve data about the airports of the world based on code, location or search.", + "title":"Airports", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":196, + "avgSuccessRate":100, + "popularityScore":8.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/burrotech/api/airports12/", + "host":"airports12.p.rapidapi.com", + "api_list":[ + { + "name":"Search", + "url":"https://airports12.p.rapidapi.com/search", + "description":"Search for airports with a string eg \"heathrow\"", + "method":"GET", + "required_parameters":[ + { + "name":"q", + "type":"STRING", + "description":"", + "default":"heathrow" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports12.p.rapidapi.com/search\"\nquerystring = {\"q\": q}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports12.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":"OK", + "api":"search", + "search":"heathrow", + "data":[ + { + "id":24825, + "code":"", + "latitude":31.438513, + "longitude":-97.145842, + "name":"Heathrow Airport", + "type":"small_airport", + "country_code":"US", + "country":"United States", + "region":"Texas", + "municipality":"Robinson", + "elevation":160, + "ident":"TE17", + "gps_code":"TE17", + "local_code":"TE17", + "website":"" + }, + { + "id":2434, + "code":"LHR", + "latitude":51.4706, + "longitude":-0.461941, + "name":"London Heathrow Airport", + "type":"large_airport", + "country_code":"GB", + "country":"United Kingdom", + "region":"England", + "municipality":"London", + "elevation":25, + "ident":"EGLL", + "gps_code":"EGLL", + "local_code":"", + "website":"http://www.heathrowairport.com/" + } + ] + }, + "headers":{}, + "schema":{} + }, + { + "name":"Airport", + "url":"https://airports12.p.rapidapi.com/airport/{code}", + "description":"Collect airport info by code - eg LAX, LHR etc - the response is the same format as the other APIs so the data key will generally have one item if the code exists or it will be an empty array if the code isn't valid.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"", + "default":"LAX" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports12.p.rapidapi.com/airport/{code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports12.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":"OK", + "api":"airport", + "lookup":"LAX", + "data":[ + { + "id":3632, + "code":"LAX", + "latitude":33.942501, + "longitude":-118.407997, + "name":"Los Angeles International Airport", + "type":"large_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Los Angeles", + "elevation":38, + "ident":"KLAX", + "gps_code":"KLAX", + "local_code":"LAX", + "website":"https://www.flylax.com/" + } + ] + }, + "headers":{}, + "schema":{} + }, + { + "name":"Closest", + "url":"https://airports12.p.rapidapi.com/closest", + "description":"Returns the closest 12 airports by location. Includes a distance param for each returned airport in metres.", + "method":"GET", + "required_parameters":[ + { + "name":"lat", + "type":"NUMBER", + "description":"", + "default":"33.946169" + }, + { + "name":"lon", + "type":"NUMBER", + "description":"", + "default":"-118.407267" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports12.p.rapidapi.com/closest\"\nquerystring = {\"lat\": lat, \"lon\": lon}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports12.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":"OK", + "api":"closest", + "latitude":33.946169, + "longitude":-118.407267, + "data":[ + { + "id":3632, + "code":"LAX", + "latitude":33.942501, + "longitude":-118.407997, + "name":"Los Angeles International Airport", + "type":"large_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Los Angeles", + "elevation":38, + "ident":"KLAX", + "gps_code":"KLAX", + "local_code":"LAX", + "website":"https://www.flylax.com/", + "dist":413 + }, + { + "id":3578, + "code":"HHR", + "latitude":33.922798, + "longitude":-118.334999, + "name":"Jack Northrop Field Hawthorne Municipal Airport", + "type":"medium_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Hawthorne", + "elevation":20, + "ident":"KHHR", + "gps_code":"KHHR", + "local_code":"HHR", + "website":"", + "dist":7156 + }, + { + "id":21087, + "code":"SMO", + "latitude":34.0158, + "longitude":-118.450996, + "name":"Santa Monica Municipal Airport", + "type":"medium_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Santa Monica", + "elevation":52, + "ident":"KSMO", + "gps_code":"KSMO", + "local_code":"SMO", + "website":"http://www.smgov.net/departments/airport/", + "dist":8730 + }, + { + "id":14633, + "code":"CCD", + "latitude":34.060799, + "longitude":-118.417999, + "name":"Century City Heliport", + "type":"heliport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Los Angeles", + "elevation":144, + "ident":"84CL", + "gps_code":"84CL", + "local_code":"84CL", + "website":"", + "dist":12785 + }, + { + "id":19539, + "code":"CPM", + "latitude":33.889999, + "longitude":-118.244003, + "name":"Compton Woodley Airport", + "type":"small_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Compton", + "elevation":30, + "ident":"KCPM", + "gps_code":"KCPM", + "local_code":"CPM", + "website":"", + "dist":16308 + }, + { + "id":21209, + "code":"TOA", + "latitude":33.803398, + "longitude":-118.339996, + "name":"Zamperini Field", + "type":"small_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Torrance", + "elevation":31, + "ident":"KTOA", + "gps_code":"KTOA", + "local_code":"TOA", + "website":"http://www.torranceca.gov/487.htm", + "dist":17047 + }, + { + "id":13208, + "code":"SPQ", + "latitude":33.749199, + "longitude":-118.275002, + "name":"Catalina Air-Sea Terminal Heliport", + "type":"heliport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"San Pedro", + "elevation":2, + "ident":"6CA3", + "gps_code":"6CA3", + "local_code":"6CA3", + "website":"", + "dist":25078 + }, + { + "id":3644, + "code":"LGB", + "latitude":33.816523, + "longitude":-118.149891, + "name":"Long Beach Airport (Daugherty Field)", + "type":"medium_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Long Beach", + "elevation":18, + "ident":"KLGB", + "gps_code":"KLGB", + "local_code":"LGB", + "website":"http://www.lgb.org/", + "dist":27791 + }, + { + "id":3432, + "code":"BUR", + "latitude":34.197703, + "longitude":-118.356378, + "name":"Bob Hope Airport", + "type":"medium_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Burbank", + "elevation":237, + "ident":"KBUR", + "gps_code":"KBUR", + "local_code":"BUR", + "website":"", + "dist":28359 + }, + { + "id":21333, + "code":"VNY", + "latitude":34.209801, + "longitude":-118.489998, + "name":"Van Nuys Airport", + "type":"medium_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Van Nuys", + "elevation":244, + "ident":"KVNY", + "gps_code":"KVNY", + "local_code":"VNY", + "website":"", + "dist":30289 + }, + { + "id":21374, + "code":"WHP", + "latitude":34.2593, + "longitude":-118.413002, + "name":"Whiteman Airport", + "type":"small_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"Pacoima", + "elevation":306, + "ident":"KWHP", + "gps_code":"KWHP", + "local_code":"WHP", + "website":"", + "dist":34823 + }, + { + "id":19757, + "code":"EMT", + "latitude":34.086102, + "longitude":-118.035004, + "name":"San Gabriel Valley Airport", + "type":"small_airport", + "country_code":"US", + "country":"United States", + "region":"California", + "municipality":"El Monte", + "elevation":90, + "ident":"KEMT", + "gps_code":"KEMT", + "local_code":"EMT", + "website":"http://www.americanairports.com/Locations/EMTElMonteAirportCA.aspx", + "dist":37674 + } + ] + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/airports/api.py b/toolbench/toolenv/tools/Transportation/airports/api.py new file mode 100644 index 0000000000000000000000000000000000000000..dbc8d99352ac3e9a7e674d253c9c7b6d70ebd804 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airports/api.py @@ -0,0 +1,71 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search(q: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for airports with a string eg "heathrow"" + + """ + url = f"https://airports12.p.rapidapi.com/search" + querystring = {'q': q, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports12.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Collect airport info by code - eg LAX, LHR etc - the response is the same format as the other APIs so the data key will generally have one item if the code exists or it will be an empty array if the code isn't valid." + + """ + url = f"https://airports12.p.rapidapi.com/airport/{code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports12.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def closest(lat: int, lon: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the closest 12 airports by location. Includes a distance param for each returned airport in metres." + + """ + url = f"https://airports12.p.rapidapi.com/closest" + querystring = {'lat': lat, 'lon': lon, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports12.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/airports_by_api_ninjas.json b/toolbench/toolenv/tools/Transportation/airports_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..91c0aaaea615a66307c5aa2bddc6e3781c427d84 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airports_by_api_ninjas.json @@ -0,0 +1,91 @@ +{ + "tool_name":"Airports by API-Ninjas", + "tool_description":"Access vital data for 30,000 different airports worldwide. See more info at https://api-ninjas.com/api/airports.", + "title":"Airports by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":506, + "avgSuccessRate":86, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/airports-by-api-ninjas/", + "host":"airports-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/airports", + "url":"https://airports-by-api-ninjas.p.rapidapi.com/v1/airports", + "description":"API Ninjas Airports API endpoint. At least one of the optional parameters must be provided.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"offset", + "type":"NUMBER", + "description":"number of results to offset for pagination.", + "default":"" + }, + { + "name":"max_elevation", + "type":"NUMBER", + "description":"maximum airport elevation in feet.", + "default":"" + }, + { + "name":"region", + "type":"STRING", + "description":"administrative region such as state or province within a country (e.g. California)", + "default":"" + }, + { + "name":"min_elevation", + "type":"NUMBER", + "description":"minimum airport elevation in feet.", + "default":"" + }, + { + "name":"city", + "type":"STRING", + "description":"airport city (e.g. London)", + "default":"" + }, + { + "name":"country", + "type":"STRING", + "description":"airport country. Must be 2-character ISO-2 country code (e.g. GB)", + "default":"" + }, + { + "name":"timezone", + "type":"STRING", + "description":"airport timezone (e.g. Europe/London)\n\n", + "default":"" + }, + { + "name":"name", + "type":"STRING", + "description":"airport name. This parameter supports partial matching (e.g. Heathrow will match London Heathrow Airport)", + "default":"London Heathrow" + }, + { + "name":"icao", + "type":"STRING", + "description":"International Civil Aviation Organization (ICAO) 4-character airport code.", + "default":"" + }, + { + "name":"iata", + "type":"STRING", + "description":"International Air Transport Association (IATA) 3-character airport code.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airports-by-api-ninjas.p.rapidapi.com/v1/airports\"\nquerystring = {\"name\": name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/airports_by_api_ninjas/api.py b/toolbench/toolenv/tools/Transportation/airports_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6b6ae71ab0aa75ee57232fd289ee8bd432227cf6 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/airports_by_api_ninjas/api.py @@ -0,0 +1,61 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_airports(offset: int=None, max_elevation: int=None, region: str=None, min_elevation: int=None, city: str=None, country: str=None, timezone: str=None, name: str='London Heathrow', icao: str=None, iata: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Airports API endpoint. At least one of the optional parameters must be provided." + offset: number of results to offset for pagination. + max_elevation: maximum airport elevation in feet. + region: administrative region such as state or province within a country (e.g. California) + min_elevation: minimum airport elevation in feet. + city: airport city (e.g. London) + country: airport country. Must be 2-character ISO-2 country code (e.g. GB) + timezone: airport timezone (e.g. Europe/London) + + + name: airport name. This parameter supports partial matching (e.g. Heathrow will match London Heathrow Airport) + icao: International Civil Aviation Organization (ICAO) 4-character airport code. + iata: International Air Transport Association (IATA) 3-character airport code. + + """ + url = f"https://airports-by-api-ninjas.p.rapidapi.com/v1/airports" + querystring = {} + if offset: + querystring['offset'] = offset + if max_elevation: + querystring['max_elevation'] = max_elevation + if region: + querystring['region'] = region + if min_elevation: + querystring['min_elevation'] = min_elevation + if city: + querystring['city'] = city + if country: + querystring['country'] = country + if timezone: + querystring['timezone'] = timezone + if name: + querystring['name'] = name + if icao: + querystring['icao'] = icao + if iata: + querystring['iata'] = iata + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/alpr_api.json b/toolbench/toolenv/tools/Transportation/alpr_api.json new file mode 100644 index 0000000000000000000000000000000000000000..d062a77f11043d8deed8f67260550849ebdc5aed --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/alpr_api.json @@ -0,0 +1,475 @@ +{ + "product_id": "api_c06fca6a-6853-43f9-b5e3-3bba47be4966", + "tool_description": "API for ALPR/ACCR and Vehicle detection", + "home_url": "https://rapidapi.com/phenikaa-maas-phenikaa-maas-default/api/alpr-api/", + "name": "ALPR API", + "title": "ALPR API", + "pricing": "FREEMIUM", + "tool_name": "ALPR API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1145, + "avgSuccessRate": 100, + "popularityScore": 8.1, + "__typename": "Score" + }, + "host": "alpr-api.p.rapidapi.com", + "api_list": [ + { + "name": "Face multiple embedding from url v3", + "url": "https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_multiple_from_url", + "description": "Return vector embeddings satisfy that height and width of face object are greater than 90. Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_multiple_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_multiple_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face multiple embedding v3", + "url": "https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_multiple", + "description": "Return vector embeddings satisfy that height and width of face object are greater than 90", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_multiple\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_multiple\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face multiple embedding from url v2", + "url": "https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_multiple_from_url", + "description": "Return vector embeddings satisfy that height and width of face object are greater than 90. Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_multiple_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_multiple_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face multiple embedding v2", + "url": "https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_multiple", + "description": "Return vector embeddings satisfy that height and width of face object are greater than 90", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_multiple\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_multiple\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face multiple embedding from url", + "url": "https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_multiple_from_url", + "description": "Return vector embeddings satisfy that height and width of face object are greater than 90. Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_multiple_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_multiple_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face multiple embedding", + "url": "https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_multiple", + "description": "Return vector embeddings satisfy that height and width of face object are greater than 90", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_multiple\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_multiple\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face embedding from url", + "url": "https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_from_url", + "description": "Return vector embedding of largest face in the image with Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face comparison from url v3", + "url": "https://alpr-api.p.rapidapi.com/v3/face/recognition/compare_from_url", + "description": "Compare between images of two people to see if they are the same person or not, with Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "image_url_2", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/compare_from_url\"\nquerystring = {\"image_url\": \"\", \"image_url_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/compare_from_url\"\nquerystring = {\"image_url\": \"\", \"image_url_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face embedding from url v3", + "url": "https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_from_url", + "description": "Return vector embedding of largest face in the image with Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face comparison from url v2", + "url": "https://alpr-api.p.rapidapi.com/v2/face/recognition/compare_from_url", + "description": "Compare between images of two people to see if they are the same person or not, with Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "image_url_2", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/compare_from_url\"\nquerystring = {\"image_url\": \"\", \"image_url_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/compare_from_url\"\nquerystring = {\"image_url\": \"\", \"image_url_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face embedding from url v2", + "url": "https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_from_url", + "description": "Return vector embedding of largest face in the image with Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict_from_url\"\nquerystring = {\"image_url\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face comparison from url", + "url": "https://alpr-api.p.rapidapi.com/v1/face/recognition/compare_from_url", + "description": "Compare between images of two people to see if they are the same person or not, with Input is URL", + "method": "POST", + "required_parameters": [ + { + "name": "image_url", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "image_url_2", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/compare_from_url\"\nquerystring = {\"image_url\": \"\", \"image_url_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/compare_from_url\"\nquerystring = {\"image_url\": \"\", \"image_url_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "License Plate OCR China", + "url": "https://alpr-api.p.rapidapi.com/v1/alpr/predict_alpr_china", + "description": "only predict and ocr for China LP on images", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/alpr/predict_alpr_china\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/alpr/predict_alpr_china\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Student Card Extraction", + "url": "https://alpr-api.p.rapidapi.com/v1/student_hub/{schoolID}/verify_card", + "description": "To extract the StudentID and Name corresponding to the school's name.", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "schoolID", + "type": "string", + "description": "only support [HCMUS, VLU]", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/student_hub/{schoolID}/verify_card\"\nquerystring = {\"image\": \"\", \"schoolID\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/student_hub/{schoolID}/verify_card\"\nquerystring = {\"image\": \"\", \"schoolID\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face comparison v3", + "url": "https://alpr-api.p.rapidapi.com/v3/face/recognition/compare", + "description": "Compare between images of two people to see if they are the same person or not", + "method": "POST", + "required_parameters": [ + { + "name": "image_2", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/compare\"\nquerystring = {\"image_2\": \"\", \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/compare\"\nquerystring = {\"image_2\": \"\", \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face embedding v3", + "url": "https://alpr-api.p.rapidapi.com/v3/face/recognition/predict", + "description": "Return vector embedding of largest face in the image", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v3/face/recognition/predict\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face embedding", + "url": "https://alpr-api.p.rapidapi.com/v1/face/recognition/predict", + "description": "Return vector embedding of largest face in the image", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/predict\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face comparison v2", + "url": "https://alpr-api.p.rapidapi.com/v2/face/recognition/compare", + "description": "Compare between images of two people to see if they are the same person or not", + "method": "POST", + "required_parameters": [ + { + "name": "image_2", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/compare\"\nquerystring = {\"image_2\": \"\", \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/compare\"\nquerystring = {\"image_2\": \"\", \"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face embedding v2", + "url": "https://alpr-api.p.rapidapi.com/v2/face/recognition/predict", + "description": "Return vector embedding of largest face in the image", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v2/face/recognition/predict\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Face comparison", + "url": "https://alpr-api.p.rapidapi.com/v1/face/recognition/compare", + "description": "Compare between images of two people to see if they are the same person or not", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + }, + { + "name": "image_2", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/compare\"\nquerystring = {\"image\": \"\", \"image_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/face/recognition/compare\"\nquerystring = {\"image\": \"\", \"image_2\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "OCR Container Code", + "url": "https://alpr-api.p.rapidapi.com/v1/port/predict_container_code", + "description": "Detect Code and OCR them whether horizontally or vertically placed", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/port/predict_container_code\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/port/predict_container_code\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Vehicle Type and License Plate OCR", + "url": "https://alpr-api.p.rapidapi.com/v1/alpr/predict_vehicle", + "description": "Return Bboxes, LP Texts and Vehicles' types", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/alpr/predict_vehicle\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/alpr/predict_vehicle\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "License Plate OCR", + "url": "https://alpr-api.p.rapidapi.com/v1/alpr/predict_alpr", + "description": "only predict and ocr for LP on images", + "method": "POST", + "required_parameters": [ + { + "name": "image", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/alpr/predict_alpr\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://alpr-api.p.rapidapi.com/v1/alpr/predict_alpr\"\nquerystring = {\"image\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"alpr-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/ap_sample.json b/toolbench/toolenv/tools/Transportation/ap_sample.json new file mode 100644 index 0000000000000000000000000000000000000000..7244b6726a7ccb8124a3c5091d0741df8292179f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/ap_sample.json @@ -0,0 +1,63 @@ +{ + "tool_name":"AP sample", + "tool_description":"AR sample", + "title":"AP sample", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":1653, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/xpeto1980/api/ap-sample/", + "host":"ap-sample.p.rapidapi.com", + "api_list":[ + { + "name":"Zipcode", + "url":"https://ap-sample.p.rapidapi.com/", + "description":"Get locations by zipcode", + "method":"GET", + "required_parameters":[ + { + "name":"Zipcode", + "type":"STRING", + "description":"", + "default":"95124" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ap-sample.p.rapidapi.com/\"\nquerystring = {\"Zipcode\": zipcode}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ap-sample.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"AR by city / state", + "url":"https://ap-sample.p.rapidapi.com/", + "description":"AR by state", + "method":"GET", + "required_parameters":[ + { + "name":"city", + "type":"STRING", + "description":"", + "default":"San Diego" + }, + { + "name":"state", + "type":"STRING", + "description":"", + "default":"CA" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ap-sample.p.rapidapi.com/\"\nquerystring = {\"city\": city, \"state\": state}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ap-sample.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/ap_sample/api.py b/toolbench/toolenv/tools/Transportation/ap_sample/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7506b93a5ce725ff8ef84bc1d678a5c8d49d9f25 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/ap_sample/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def zipcode(zipcode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get locations by zipcode" + + """ + url = f"https://ap-sample.p.rapidapi.com/" + querystring = {'Zipcode': zipcode, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ap-sample.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def ar_by_city_state(city: str, state: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "AR by state" + + """ + url = f"https://ap-sample.p.rapidapi.com/" + querystring = {'city': city, 'state': state, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ap-sample.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/aqls_b2c_system.json b/toolbench/toolenv/tools/Transportation/aqls_b2c_system.json new file mode 100644 index 0000000000000000000000000000000000000000..ec15ce5c6ef396462c4e239c06009d29c7b07211 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aqls_b2c_system.json @@ -0,0 +1,546 @@ +{ + "product_id": "api_bf8f568a-8498-451d-91b2-6c328cf18ced", + "tool_description": "AQLS for railway transport queue line management", + "home_url": "https://rapidapi.com/willy13101307/api/aqls-b2c-system/", + "name": "aqls-b2c-system", + "title": "aqls-b2c-system", + "pricing": "FREEMIUM", + "tool_name": "aqls-b2c-system", + "score": null, + "host": "aqls-b2c-system.p.rapidapi.com", + "api_list": [ + { + "name": "get_priority_mrt__train_no__wagons__wagon_no__priorityrows__priorityrows_no__seats_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrows/{priorityrows_no}/seats", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "priority_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrows/{priorityrows_no}/seats\"\nquerystring = {\"train_no\": \"\", \"priority_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrows/{priorityrows_no}/seats\"\nquerystring = {\"train_no\": \"\", \"priority_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_standrows_mrt__train_no__wagons__wagon_no__standrows_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows\"\nquerystring = {\"wagon_no\": \"\", \"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows\"\nquerystring = {\"wagon_no\": \"\", \"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_wheelchairrows_mrt__train_no__wagons__wagon_no__wheelchair_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchair", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchair\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchair\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_wheelchair_mrt__train_no__wagons__wagon_no__wheelchairrows__wheelchairrows_no__seats_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchairrows/{wheelchairrows_no}/seats", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "wheelchairrows_no", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchairrows/{wheelchairrows_no}/seats\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\", \"wheelchairrows_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchairrows/{wheelchairrows_no}/seats\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\", \"wheelchairrows_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_seats_mrt__train_no__wagons__wagon_no__seatrows__seatrows_no__seats_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows/{seatrows_no}/seats", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "seatrows_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows/{seatrows_no}/seats\"\nquerystring = {\"seatrows_no\": \"\", \"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows/{seatrows_no}/seats\"\nquerystring = {\"seatrows_no\": \"\", \"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_stands_mrt__train_no__wagons__wagon_no__standrows__standrows_no__seats_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows/{standrows_no}/seats", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "standrows_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows/{standrows_no}/seats\"\nquerystring = {\"wagon_no\": \"\", \"standrows_no\": \"\", \"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows/{standrows_no}/seats\"\nquerystring = {\"wagon_no\": \"\", \"standrows_no\": \"\", \"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_wagons_mrt__train_no__wagons__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/\"\nquerystring = {\"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/\"\nquerystring = {\"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_wagon_data_mrt_wagons_id__id__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/id/{id}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/id/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/id/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_train_data_mrt_id__id__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/id/{id}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/id/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/id/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_wagon_on_train_mrt__train_no__wagons__wagon_no__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "wagon_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_wagon_by_no_mrt_wagons__wagon_no__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/{wagon_no}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "wagon_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/{wagon_no}\"\nquerystring = {\"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/{wagon_no}\"\nquerystring = {\"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "get_priorityrows_mrt__train_no__wagons__wagon_no__priorityrow_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrow", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrow\"\nquerystring = {\"wagon_no\": \"\", \"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrow\"\nquerystring = {\"wagon_no\": \"\", \"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_train_data_by_no_mrt__train_no__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}\"\nquerystring = {\"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}\"\nquerystring = {\"train_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_seatrows_mrt__train_no__wagons__wagon_no__seatrows_get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "train_no", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "wagon_no", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows\"\nquerystring = {\"train_no\": \"\", \"wagon_no\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "get_trains_mrt__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/", + "description": " ", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "read_root__get", + "url": "https://aqls-b2c-system.p.rapidapi.com/", + "description": " ", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "messages": "Base URL is missing or is not configured properly" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "add_train_data_mrt_add_post", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/add", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/add\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/add\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "add_wagon_no_attach_mrt_wagons_add_post", + "url": "https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/add", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/add\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/add\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "admin_signup_user_admin_register_post", + "url": "https://aqls-b2c-system.p.rapidapi.com/user/admin/register", + "description": "register new admin", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/admin/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/admin/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "login_for_access_token_user_token_post", + "url": "https://aqls-b2c-system.p.rapidapi.com/user/token", + "description": "login to gain access token", + "method": "POST", + "required_parameters": [ + { + "name": "username", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "password", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "scope", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "grant_type", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "client_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "client_secret", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/token\"\nquerystring = {\"scope\": \"\", \"grant_type\": \"\", \"client_id\": \"\", \"client_secret\": \"\", \"username\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/token\"\nquerystring = {\"scope\": \"\", \"grant_type\": \"\", \"client_id\": \"\", \"client_secret\": \"\", \"username\": \"\", \"password\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "user_signup_user_signup_post", + "url": "https://aqls-b2c-system.p.rapidapi.com/user/signup", + "description": "create new user", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/signup\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/signup\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "user_login_user_login_post", + "url": "https://aqls-b2c-system.p.rapidapi.com/user/login", + "description": "login using basic HTTP credential", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aqls-b2c-system.p.rapidapi.com/user/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aqls-b2c-system.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "aqls_b2c_system" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aqls_b2c_system/api.py b/toolbench/toolenv/tools/Transportation/aqls_b2c_system/api.py new file mode 100644 index 0000000000000000000000000000000000000000..35001656d8673739c779cb27fcc6932d17757d1c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aqls_b2c_system/api.py @@ -0,0 +1,344 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_priority_mrt_train_no_wagons_wagon_no_priorityrows_priorityrows_no_seats_get(train_no: str, priority_no: int, wagon_no: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrows/{priorityrows_no}/seats" + querystring = {'priority_no': priority_no, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_standrows_mrt_train_no_wagons_wagon_no_standrows_get(wagon_no: int, train_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_wheelchairrows_mrt_train_no_wagons_wagon_no_wheelchair_get(train_no: str, wagon_no: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchair" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_wheelchair_mrt_train_no_wagons_wagon_no_wheelchairrows_wheelchairrows_no_seats_get(train_no: str, wagon_no: int, wheelchairrows_no: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/wheelchairrows/{wheelchairrows_no}/seats" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_seats_mrt_train_no_wagons_wagon_no_seatrows_seatrows_no_seats_get(seatrows_no: int, train_no: str, wagon_no: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows/{seatrows_no}/seats" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_stands_mrt_train_no_wagons_wagon_no_standrows_standrows_no_seats_get(wagon_no: int, standrows_no: int, train_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/standrows/{standrows_no}/seats" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_wagons_mrt_train_no_wagons_get(train_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_wagon_data_mrt_wagons_id_id_get(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/id/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_train_data_mrt_id_id_get(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/id/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_wagon_on_train_mrt_train_no_wagons_wagon_no_get(train_no: str, wagon_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_wagon_by_no_mrt_wagons_wagon_no_get(wagon_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/wagons/{wagon_no}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_priorityrows_mrt_train_no_wagons_wagon_no_priorityrow_get(wagon_no: int, train_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/priorityrow" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_train_data_by_no_mrt_train_no_get(train_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_seatrows_mrt_train_no_wagons_wagon_no_seatrows_get(train_no: str, wagon_no: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/{train_no}/wagons/{wagon_no}/seatrows" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_trains_mrt_get(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/mrt/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def read_root_get(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://aqls-b2c-system.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aqls-b2c-system.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/australian_vehicle_data_nevdis/api.py b/toolbench/toolenv/tools/Transportation/australian_vehicle_data_nevdis/api.py new file mode 100644 index 0000000000000000000000000000000000000000..88bc1baed7171e42ba99556eb4ebe881892cfba3 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/australian_vehicle_data_nevdis/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def australian_vehicle_search(license_plate: str, state: str, function: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lookup an Australian vehicle by it's rego (license plate)" + + """ + url = f"https://australian-vehicle-data-nevdis.p.rapidapi.com/default/licenseplatelambda" + querystring = {'license_plate': license_plate, 'state': state, 'function': function, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "australian-vehicle-data-nevdis.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/automotive_car_specs.json b/toolbench/toolenv/tools/Transportation/automotive_car_specs.json new file mode 100644 index 0000000000000000000000000000000000000000..cd25534bb9efc99cef49da50dda8ac3e29f9e9cf --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/automotive_car_specs.json @@ -0,0 +1,179 @@ +{ + "tool_name":"Automotive Car Specs", + "tool_description":"A database with a collection of technical specs of thousands of cars.", + "title":"Automotive Car Specs", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":0, + "avgLatency":116, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/viandupie/api/automotive-car-specs/", + "host":"automotive-car-specs.p.rapidapi.com", + "api_list":[ + { + "name":"Get Brand Vehicle Spec", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}/{generation}/{modification}", + "description":"With this endpoint you can get the specifications of a car by Generation and Engine Modification", + "method":"GET", + "required_parameters":[ + { + "name":"modification", + "type":"string", + "description":"", + "default":"2.0 TFSI (190 Hp) quattro S tronic" + }, + { + "name":"generation", + "type":"string", + "description":"", + "default":"A3 (8V facelift 2016)" + }, + { + "name":"brand", + "type":"string", + "description":"", + "default":"audi" + }, + { + "name":"model", + "type":"string", + "description":"", + "default":"a3" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}/{generation}/{modification}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Specifications of Generation", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}/{generation}", + "description":"With this endpoint you can get the specifications of a certain model and generation within a brand", + "method":"GET", + "required_parameters":[ + { + "name":"brand", + "type":"string", + "description":"", + "default":"audi" + }, + { + "name":"model", + "type":"string", + "description":"", + "default":"a3" + }, + { + "name":"generation", + "type":"string", + "description":"", + "default":"a3 (8v facelift 2016)" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}/{generation}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Brand Model Specs", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}", + "description":"With this endpoint you can get the specifications of a certain model within a brand", + "method":"GET", + "required_parameters":[ + { + "name":"brand", + "type":"string", + "description":"", + "default":"audi" + }, + { + "name":"model", + "type":"string", + "description":"", + "default":"a3" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all the specs of brand", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}", + "description":"With this endpoint you can see all the specifications of all the vehicles of a specific brand.", + "method":"GET", + "required_parameters":[ + { + "name":"brand", + "type":"string", + "description":"", + "default":"audi" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get models of brand", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/models/{brand}", + "description":"With this endpoint you will be able to get all of the models of the selected brand", + "method":"GET", + "required_parameters":[ + { + "name":"brand", + "type":"string", + "description":"", + "default":"audi" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/models/{brand}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all brands models", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/models", + "description":"With this endpoint you will be able to see all the models of the listed cars.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/models\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get All Brands", + "url":"https://automotive-car-specs.p.rapidapi.com/cars/brands", + "description":"With this endpoint you will be able to see all the brands that we have a collection of.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://automotive-car-specs.p.rapidapi.com/cars/brands\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"automotive-car-specs.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/automotive_car_specs/api.py b/toolbench/toolenv/tools/Transportation/automotive_car_specs/api.py new file mode 100644 index 0000000000000000000000000000000000000000..efdce3e01d8e788613da7926889e4598c7d4ff1c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/automotive_car_specs/api.py @@ -0,0 +1,155 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_brand_vehicle_spec(modification: str, generation: str, brand: str, model: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you can get the specifications of a car by Generation and Engine Modification" + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}/{generation}/{modification}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_specifications_of_generation(brand: str, model: str, generation: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you can get the specifications of a certain model and generation within a brand" + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}/{generation}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_brand_model_specs(brand: str, model: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you can get the specifications of a certain model within a brand" + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}/{model}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_the_specs_of_brand(brand: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you can see all the specifications of all the vehicles of a specific brand." + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/specs/{brand}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_models_of_brand(brand: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you will be able to get all of the models of the selected brand" + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/models/{brand}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_brands_models(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you will be able to see all the models of the listed cars." + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/models" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_brands(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "With this endpoint you will be able to see all the brands that we have a collection of." + + """ + url = f"https://automotive-car-specs.p.rapidapi.com/cars/brands" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "automotive-car-specs.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/autoymm.json b/toolbench/toolenv/tools/Transportation/autoymm.json new file mode 100644 index 0000000000000000000000000000000000000000..71bbff0ac6aa4a09368b6f12912180d758ae779f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/autoymm.json @@ -0,0 +1,30 @@ +{ + "tool_name":"AutoYMM", + "tool_description":"Ecommerce Automotive Year Make Model Data", + "title":"AutoYMM", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":875, + "avgSuccessRate":100, + "popularityScore":8.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/lloydfz/api/autoymm1/", + "host":"autoymm1.p.rapidapi.com", + "api_list":[ + { + "name":"YMM", + "url":"https://autoymm1.p.rapidapi.com/ymms", + "description":"Year Make Model", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://autoymm1.p.rapidapi.com/ymms\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"autoymm1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/autoymm/api.py b/toolbench/toolenv/tools/Transportation/autoymm/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6cb7a50d6f5d35d7f8dd9b060c37af4fd00f140d --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/autoymm/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def ymm(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Year Make Model" + + """ + url = f"https://autoymm1.p.rapidapi.com/ymms" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "autoymm1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/aviapages_flight_time_calculator.json b/toolbench/toolenv/tools/Transportation/aviapages_flight_time_calculator.json new file mode 100644 index 0000000000000000000000000000000000000000..f702d34633b9213859976b6b9df14752f4dfcf1c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aviapages_flight_time_calculator.json @@ -0,0 +1,475 @@ +{ + "product_id": "api_3b423d84-4b96-41a4-9971-8049cc83895a", + "tool_description": "Pre-estimate flight time for 500+ business aviation aircraft types just within a few seconds. The result of the calculation will include flight time, wind impact, fuel consumption and airways route. Fast and accurate flight estimation will significantly reduce time for your quotation delivery and not only, make your price offer even more accurate and competitive on the market, as well as will serve your sales as a great daily support. ", + "home_url": "https://rapidapi.com/aviapages/api/aviapages-flight-time-calculator/", + "name": "Aviapages Flight Time Calculator", + "title": "Aviapages Flight Time Calculator", + "pricing": "FREEMIUM", + "tool_name": "Aviapages Flight Time Calculator", + "score": { + "avgServiceLevel": 100, + "avgLatency": 460, + "avgSuccessRate": 65, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "aviapages-flight-time-calculator.p.rapidapi.com", + "api_list": [ + { + "name": "flight_calculator_run", + "url": "https://aviapages-flight-time-calculator.p.rapidapi.com/flight_calculator/", + "description": "Endpoint to retrieve flight time, flight route & fuel usage.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aviapages-flight-time-calculator.p.rapidapi.com/flight_calculator/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviapages-flight-time-calculator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aviapages-flight-time-calculator.p.rapidapi.com/flight_calculator/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviapages-flight-time-calculator.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "aircraft": { + "type": "string", + "description": "Aircraft profile name." + }, + "airport": { + "type": "object", + "properties": { + "departure": { + "type": "string", + "description": "Departure airport ICAO code." + }, + "arrival": { + "type": "string", + "description": "Arrival airport ICAO code." + }, + "techstops": { + "type": "array", + "items": { + "type": "string" + }, + "description": "List of ICAO codes of recommended airports for techstop. Is displayed when \"advise_techstop\" is\n set to true and non-stop flight is not possible." + } + }, + "required": [ + "arrival", + "departure", + "techstops" + ] + }, + "distance": { + "type": "object", + "properties": { + "great_circle": { + "type": "number", + "format": "double", + "description": "distance via great_circle (shortest distance) in kilometers.", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "airway": { + "type": "number", + "format": "double", + "description": "distance via airways in kilometers.", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "airway", + "great_circle" + ] + }, + "route": { + "type": "object", + "properties": { + "ifr": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Sequence of airway points codes and airway names. Starts and end with departure and\n arrival airport ICAO codes respectively." + }, + "great_circle": { + "type": "array", + "items": { + "type": "object", + "properties": { + "lo": { + "type": "number", + "format": "double", + "maximum": 180, + "minimum": -180 + }, + "la": { + "type": "number", + "format": "double", + "maximum": 90, + "minimum": -90 + } + }, + "required": [ + "la", + "lo" + ] + }, + "description": "Array of coordinates of great circle route." + }, + "airway": { + "type": "array", + "items": { + "type": "object", + "properties": { + "lo": { + "type": "number", + "format": "double", + "maximum": 180, + "minimum": -180 + }, + "la": { + "type": "number", + "format": "double", + "maximum": 90, + "minimum": -90 + } + }, + "required": [ + "la", + "lo" + ] + }, + "description": "Array of coordinates of airway route." + } + }, + "required": [ + "airway", + "great_circle", + "ifr" + ] + }, + "time": { + "type": "object", + "properties": { + "departure_local": { + "type": "string", + "format": "date-time", + "description": "Local time at departure airport in format \"YYYY-MM-DDThh:mm\"." + }, + "airway": { + "type": "integer", + "description": "Flight time via airways using aircraft performance model in minutes." + }, + "arrival_local_airway": { + "type": "string", + "format": "date-time", + "description": "Local time at arrival airport for calculation via airways using aircraft\n performance model in format \"YYYY-MM-DDThh:mm\"." + }, + "airway_weather_impacted": { + "type": "integer", + "description": "Flight time via airways using aircraft performance model with wind impact in minutes." + }, + "arrival_local_airway_weather_impacted": { + "type": "string", + "format": "date-time", + "description": "Local time at arrival airport for calculation via airways using aircraft performance model with\n wind impact in format \"YYYY-MM-DDThh:mm\"." + }, + "great_circle": { + "type": "integer", + "description": "Flight time via great circle using aircraft performance model in minutes." + }, + "arrival_local_great_circle": { + "type": "string", + "format": "date-time", + "description": "Local time at arrival airport for calculation via great circle using aircraft performance model\n in format \"YYYY-MM-DDThh:mm\"." + }, + "average_speed": { + "type": "integer", + "description": "Flight time via great circle using aircraft's average speed constant (simplified) in minutes." + }, + "arrival_local_average_speed": { + "type": "string", + "format": "date-time", + "description": "Local time at arrival airport for calculation via great circle using aircraft's average speed\n constant in format \"YYYY-MM-DDThh:mm\"." + } + }, + "required": [ + "airway", + "airway_weather_impacted", + "arrival_local_airway", + "arrival_local_airway_weather_impacted", + "arrival_local_average_speed", + "arrival_local_great_circle", + "average_speed", + "departure_local", + "great_circle" + ] + }, + "fuel": { + "type": "object", + "properties": { + "airway": { + "type": "integer", + "description": "Total amount of used fuel consumption via airways using aircraft performance model in kilograms." + }, + "airway_weather_impacted": { + "type": "integer", + "description": "Total amount of used fuel via airways using aircraft performance model with wind impact in\n kilograms." + }, + "great_circle": { + "type": "integer", + "description": "Total amount of used fuel via great circle using aircraft performance model with wind impact in\n kilograms." + }, + "great_circle_detailed": { + "type": "array", + "items": { + "type": "object", + "properties": { + "weight": { + "type": "number", + "format": "double", + "description": "Weight of aircraft by the end of current operation, kg", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "distance": { + "type": "number", + "format": "double", + "description": "Distance flown, km", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "duration": { + "type": "number", + "format": "double", + "description": "Operation duration, min", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "fuel_used": { + "type": "number", + "format": "double", + "description": "Fuel burned, kg", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "final_altitude": { + "type": "integer", + "description": "Altitude by the end of current operation, m" + }, + "operation": { + "type": "string", + "description": "Type of the operation", + "maxLength": 100 + } + }, + "required": [ + "distance", + "duration", + "final_altitude", + "fuel_used", + "operation", + "weight" + ] + }, + "description": "Breakdown of fuel consumption via great circle using aircraft performance model." + }, + "airway_detailed": { + "type": "array", + "items": { + "type": "object", + "properties": { + "weight": { + "type": "number", + "format": "double", + "description": "Weight of aircraft by the end of current operation, kg", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "distance": { + "type": "number", + "format": "double", + "description": "Distance flown, km", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "duration": { + "type": "number", + "format": "double", + "description": "Operation duration, min", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "fuel_used": { + "type": "number", + "format": "double", + "description": "Fuel burned, kg", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "final_altitude": { + "type": "integer", + "description": "Altitude by the end of current operation, m" + }, + "operation": { + "type": "string", + "description": "Type of the operation", + "maxLength": 100 + } + }, + "required": [ + "distance", + "duration", + "final_altitude", + "fuel_used", + "operation", + "weight" + ] + }, + "description": "Breakdown of fuel consumption via airways using aircraft performance model." + }, + "airway_weather_impacted_detailed": { + "type": "array", + "items": { + "type": "object", + "properties": { + "weight": { + "type": "number", + "format": "double", + "description": "Weight of aircraft by the end of current operation, kg", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "distance": { + "type": "number", + "format": "double", + "description": "Distance flown, km", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "duration": { + "type": "number", + "format": "double", + "description": "Operation duration, min", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "fuel_used": { + "type": "number", + "format": "double", + "description": "Fuel burned, kg", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "final_altitude": { + "type": "integer", + "description": "Altitude by the end of current operation, m" + }, + "operation": { + "type": "string", + "description": "Type of the operation", + "maxLength": 100 + } + }, + "required": [ + "distance", + "duration", + "final_altitude", + "fuel_used", + "operation", + "weight" + ] + }, + "description": "Breakdown of fuel consumption via airways using aircraft performance model with\n historical average wind." + }, + "airway_block": { + "type": "integer", + "description": "Total fuel required for the flight via airways including all reserved and extra fuel" + }, + "airway_weather_impacted_block": { + "type": "integer", + "description": "Total fuel required for the flight via airways with historical average wind including all\n reserved and extra fuel" + }, + "great_circle_block": { + "type": "integer", + "description": "Total fuel required for the flight via great_circle including all reserved and extra fuel" + } + }, + "required": [ + "airway", + "airway_block", + "airway_detailed", + "airway_weather_impacted", + "airway_weather_impacted_block", + "airway_weather_impacted_detailed", + "great_circle", + "great_circle_block", + "great_circle_detailed" + ] + }, + "great_circle_carbon_emissions": { + "type": "integer", + "description": "Carbon dioxide emissions via great circle using aircraft performance model in kilograms." + }, + "airway_carbon_emissions": { + "type": "integer", + "description": "Carbon dioxide emissions via airways using aircraft performance model in kilograms." + }, + "airway_carbon_emissions_weather_impacted": { + "type": "integer", + "description": "Carbon dioxide emissions via airways using aircraft performance model with\nhistorical average wind in kilograms." + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "Error code." + }, + "code": { + "type": "integer", + "description": "Error description." + } + }, + "required": [ + "code", + "message" + ] + }, + "description": "Sequence of error codes and messages caught during calculation." + }, + "warnings": { + "type": "array", + "items": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "Warning code." + }, + "code": { + "type": "integer", + "description": "Warning description." + } + }, + "required": [ + "code", + "message" + ] + }, + "description": "Sequence of warning codes and messages caught during calculation." + } + }, + "required": [ + "aircraft", + "airport", + "airway_carbon_emissions", + "airway_carbon_emissions_weather_impacted", + "great_circle_carbon_emissions" + ] + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aviation_airports_and_heliports_api.json b/toolbench/toolenv/tools/Transportation/aviation_airports_and_heliports_api.json new file mode 100644 index 0000000000000000000000000000000000000000..585fc610bfd305557fb4a6997284c746cf42b6e0 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aviation_airports_and_heliports_api.json @@ -0,0 +1,81 @@ +{ + "tool_name":"Aviation Airports and Heliports API", + "tool_description":"Use this API to fetch over 58000 records of registered airports, airfields and heliports in the world.", + "title":"Aviation Airports and Heliports API", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":17564, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/propenster/api/aviation-airports-and-heliports-api/", + "host":"aviation-airports-and-heliports-api.p.rapidapi.com", + "api_list":[ + { + "name":"Search airport", + "url":"https://aviation-airports-and-heliports-api.p.rapidapi.com/api/v1/aviationsrvc/airports/search", + "description":"This endpoint which is paginated also could be used to search a particular record by airport keyword or location keyword. This could be applicable when creating auto-completes etc.", + "method":"GET", + "required_parameters":[ + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"20" + }, + { + "name":"keyword", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"page", + "type":"NUMBER", + "description":"", + "default":"1" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://aviation-airports-and-heliports-api.p.rapidapi.com/api/v1/aviationsrvc/airports/search\"\nquerystring = {\"limit\": limit, \"keyword\": keyword, \"page\": page}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviation-airports-and-heliports-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Get All Airports", + "url":"https://aviation-airports-and-heliports-api.p.rapidapi.com/api/v1/aviationsrvc/airports/all", + "description":"This endpoint which is paginated gets all airports, airfields, heliports etc.", + "method":"GET", + "required_parameters":[ + { + "name":"page", + "type":"NUMBER", + "description":"", + "default":"1" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"25" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://aviation-airports-and-heliports-api.p.rapidapi.com/api/v1/aviationsrvc/airports/all\"\nquerystring = {\"page\": page, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviation-airports-and-heliports-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aviation_airports_and_heliports_api/api.py b/toolbench/toolenv/tools/Transportation/aviation_airports_and_heliports_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e188ffb7bcda581d26d17a71f0b8a044e6bef51c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aviation_airports_and_heliports_api/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_airport(limit: int, keyword: str, page: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint which is paginated also could be used to search a particular record by airport keyword or location keyword. This could be applicable when creating auto-completes etc." + + """ + url = f"https://aviation-airports-and-heliports-api.p.rapidapi.com/api/v1/aviationsrvc/airports/search" + querystring = {'limit': limit, 'keyword': keyword, 'page': page, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aviation-airports-and-heliports-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_airports(page: int, limit: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint which is paginated gets all airports, airfields, heliports etc." + + """ + url = f"https://aviation-airports-and-heliports-api.p.rapidapi.com/api/v1/aviationsrvc/airports/all" + querystring = {'page': page, 'limit': limit, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aviation-airports-and-heliports-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/aviationstack.json b/toolbench/toolenv/tools/Transportation/aviationstack.json new file mode 100644 index 0000000000000000000000000000000000000000..6b423dbbe24f5b2f37c82ab09d73128a6dfd761d --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aviationstack.json @@ -0,0 +1,30 @@ +{ + "tool_name":"aviationstack", + "tool_description":"Free, Real-time Flight Status &\nGlobal Aviation Data API\nFlight tracker & airport timetable data web service\ntrusted by 5.000+ of the smartest companies", + "title":"aviationstack", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":281, + "avgSuccessRate":0, + "popularityScore":0.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apilayerapi-apilayerapi-default/api/aviationstack1/", + "host":"aviationstack1.p.rapidapi.com", + "api_list":[ + { + "name":"get", + "url":"https://aviationstack1.p.rapidapi.com/api.aviationstack.com/v1/flights", + "description":"exemplo", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://aviationstack1.p.rapidapi.com/api.aviationstack.com/v1/flights\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviationstack1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/aviationstack/api.py b/toolbench/toolenv/tools/Transportation/aviationstack/api.py new file mode 100644 index 0000000000000000000000000000000000000000..abec2fcd517f707a888feaa4cc90345a47e5d34d --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/aviationstack/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "exemplo" + + """ + url = f"https://aviationstack1.p.rapidapi.com/api.aviationstack.com/v1/flights" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "aviationstack1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/bharat_rto_bike_owner_search.json b/toolbench/toolenv/tools/Transportation/bharat_rto_bike_owner_search.json new file mode 100644 index 0000000000000000000000000000000000000000..1617ba7e30f8247c0cf27f13342501c04022aec2 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/bharat_rto_bike_owner_search.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_21745820-cb7f-4a73-92d1-1290c434d5a3", + "tool_description": "Bharat RTO helps you to find bike owner details within seconds, check car driving licence details, vehicle insurance details, vehicle registration details, & vehicle resale value. ", + "home_url": "https://rapidapi.com/rahilkhan224/api/bharat-rto-bike-owner-search/", + "name": "Bharat RTO - Bike Owner Search", + "title": "Bharat RTO - Bike Owner Search", + "pricing": "FREEMIUM", + "tool_name": "Bharat RTO - Bike Owner Search", + "score": { + "avgServiceLevel": 91, + "avgLatency": 907, + "avgSuccessRate": 91, + "popularityScore": 9, + "__typename": "Score" + }, + "host": "bharat-rto-bike-owner-search.p.rapidapi.com", + "api_list": [ + { + "name": "Get Bike info", + "url": "https://bharat-rto-bike-owner-search.p.rapidapi.com/", + "description": "enter your bike registration number", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://bharat-rto-bike-owner-search.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bharat-rto-bike-owner-search.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://bharat-rto-bike-owner-search.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bharat-rto-bike-owner-search.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/bharat_rto_vehicle_owner_search.json b/toolbench/toolenv/tools/Transportation/bharat_rto_vehicle_owner_search.json new file mode 100644 index 0000000000000000000000000000000000000000..843d3c357e3329cf594d758d2464e5a9916141d9 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/bharat_rto_vehicle_owner_search.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_7947d3a3-b374-4bb9-ae69-348e4bdd010c", + "tool_description": "", + "home_url": "https://rapidapi.com/rahilkhan224/api/bharat-rto-vehicle-owner-search/", + "name": "Bharat RTO- Vehicle Owner Search", + "title": "Bharat RTO- Vehicle Owner Search", + "pricing": "FREEMIUM", + "tool_name": "Bharat RTO- Vehicle Owner Search", + "score": { + "avgServiceLevel": 87, + "avgLatency": 1031, + "avgSuccessRate": 80, + "popularityScore": 9.4, + "__typename": "Score" + }, + "host": "bharat-rto-vehicle-owner-search.p.rapidapi.com", + "api_list": [ + { + "name": "Get Vehicle Info", + "url": "https://bharat-rto-vehicle-owner-search.p.rapidapi.com/", + "description": "Enter your vehicle number and get all the info.\nEnter car number to get the info and their respective registration number", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://bharat-rto-vehicle-owner-search.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bharat-rto-vehicle-owner-search.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://bharat-rto-vehicle-owner-search.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bharat-rto-vehicle-owner-search.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/brazilian_airlines_real_flights_data.json b/toolbench/toolenv/tools/Transportation/brazilian_airlines_real_flights_data.json new file mode 100644 index 0000000000000000000000000000000000000000..3498404579a1e4f7d711e6d6fd92fa40c84d35c7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/brazilian_airlines_real_flights_data.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Brazilian airlines real flights data", + "tool_description":"✈ This is an API that provides real brazilian airlines flights information.", + "title":"Brazilian airlines real flights data", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":5367, + "avgSuccessRate":100, + "popularityScore":9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/andrebrito16/api/brazilian-airlines-real-flights-data/", + "host":"brazilian-airlines-real-flights-data.p.rapidapi.com", + "api_list":[ + { + "name":"Get airline data", + "url":"https://brazilian-airlines-real-flights-data.p.rapidapi.com/flights", + "description":"In this endpoint you get all data about real flights of airline. Including detailed information like flight plan routes and remarks", + "method":"GET", + "required_parameters":[ + { + "name":"company", + "type":"STRING", + "description":"", + "default":"AZU" + }, + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"2022-04-30" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://brazilian-airlines-real-flights-data.p.rapidapi.com/flights\"\nquerystring = {\"company\": company, \"date\": date}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"brazilian-airlines-real-flights-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/brazilian_airlines_real_flights_data/api.py b/toolbench/toolenv/tools/Transportation/brazilian_airlines_real_flights_data/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4c443f1aa72479b50c2c26e14a3828e56d8ff7f8 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/brazilian_airlines_real_flights_data/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_airline_data(company: str, date: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "In this endpoint you get all data about real flights of airline. Including detailed information like flight plan routes and remarks" + + """ + url = f"https://brazilian-airlines-real-flights-data.p.rapidapi.com/flights" + querystring = {'company': company, 'date': date, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "brazilian-airlines-real-flights-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/builditinerary.json b/toolbench/toolenv/tools/Transportation/builditinerary.json new file mode 100644 index 0000000000000000000000000000000000000000..b5545875116d9e6eebfafe621be5a081bf398e27 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/builditinerary.json @@ -0,0 +1,26 @@ +{ + "product_id": "api_5c161921-42c0-43f9-96bf-b6570f64a601", + "tool_description": "BuildItinerary returns a geo and time-optimised itinerary.", + "home_url": "https://rapidapi.com/citywonder-citywonder-default/api/builditinerary1/", + "name": "BuildItinerary", + "title": "BuildItinerary", + "pricing": "FREEMIUM", + "tool_name": "BuildItinerary", + "score": null, + "host": "builditinerary1.p.rapidapi.com", + "api_list": [ + { + "name": "BuildItinerary", + "url": "https://builditinerary1.p.rapidapi.com/BuildItinerary", + "description": "A POST method that builds the itinerary.\n\n**Input**:\n- the start and end time of the route as timestamp objects\n- the places ids\n- the visiting nodes' information:\n -type of place: Available options: \"Start\" and \"End\" for starting/ending nodes and \"Visit\" for all other nodes\n -the available time windows of the locations\n -the duration of stay for every location\n -the penalty involved to drop a location in case of a non-feasible solution. The higher the penalty, the higher the severity of omission of the location and so the model will prefer not to drop a location with higher penalty\n -the time matrix: a square matrix containing time to get to and/from any destination (in seconds). So for instance, in the example input given there are in total 8 nodes (4 representing the start/end points for the 2 days and 4 representing the visits), so the matrix dimensions should be (8,8).\n\nFor every day a start and end point should be given as separate nodes, so for a 2-day route, 4 nodes additional to the visit nodes should be provided.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://builditinerary1.p.rapidapi.com/BuildItinerary\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"builditinerary1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://builditinerary1.p.rapidapi.com/BuildItinerary\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"builditinerary1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/cab_booking.json b/toolbench/toolenv/tools/Transportation/cab_booking.json new file mode 100644 index 0000000000000000000000000000000000000000..29d435cc943720eb1f6b297ffa358e42b0a46378 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/cab_booking.json @@ -0,0 +1,439 @@ +{ + "product_id": "api_1e4d17e8-2657-4db3-92ab-3156d6987fc1", + "tool_description": "vehicle booking for travel in one place to another place", + "home_url": "https://rapidapi.com/prvishva24/api/cab-booking2/", + "name": "cab booking", + "title": "cab booking", + "pricing": "FREE", + "tool_name": "cab booking", + "score": { + "avgServiceLevel": 67, + "avgLatency": 60332, + "avgSuccessRate": 67, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "cab-booking2.p.rapidapi.com", + "api_list": [ + { + "name": "signupGenerateotp", + "url": "https://cab-booking2.p.rapidapi.com/signup/generateotp", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signup/generateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signup/generateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "signinValidateotp", + "url": "https://cab-booking2.p.rapidapi.com/signin/validateotp", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signin/validateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signin/validateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "signinGenerateotp", + "url": "https://cab-booking2.p.rapidapi.com/signin/generateotp", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signin/generateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signin/generateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "driverSignIn", + "url": "https://cab-booking2.p.rapidapi.com/index/driversignin", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index/driversignin\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index/driversignin\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "cabBooking", + "url": "https://cab-booking2.p.rapidapi.com/cab/booking", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/cab/booking\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/cab/booking\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "payment", + "url": "https://cab-booking2.p.rapidapi.com/payment", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/payment\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/payment\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "showAvailableCabs", + "url": "https://cab-booking2.p.rapidapi.com/cab/view", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/cab/view\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/cab/view\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "driverSignUp", + "url": "https://cab-booking2.p.rapidapi.com/index/driversignup", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index/driversignup\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index/driversignup\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "driverSignOut", + "url": "https://cab-booking2.p.rapidapi.com/index/driversignout", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index/driversignout\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index/driversignout\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "index", + "url": "https://cab-booking2.p.rapidapi.com/index", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/index\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "userinfo", + "url": "https://cab-booking2.p.rapidapi.com/signup/userinfo", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signup/userinfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signup/userinfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "signupValidateotp", + "url": "https://cab-booking2.p.rapidapi.com/signup/validateotp", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signup/validateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cab-booking2.p.rapidapi.com/signup/validateotp\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cab-booking2.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/canadian_gas_prices.json b/toolbench/toolenv/tools/Transportation/canadian_gas_prices.json new file mode 100644 index 0000000000000000000000000000000000000000..90abc1d50765a196e39306cb0861a0cd89c1cca3 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/canadian_gas_prices.json @@ -0,0 +1,241 @@ +{ + "tool_name":"Canadian Gas Prices", + "tool_description":"Provides current gas prices in Canada. Try the `/locations-list` endpoint to view all supported locations.", + "title":"Canadian Gas Prices", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":97, + "avgLatency":2451, + "avgSuccessRate":59, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/mmcardle-drx9FYQNK/api/canadian-gas-prices/", + "host":"canadian-gas-prices.p.rapidapi.com", + "api_list":[ + { + "name":"States", + "url":"https://canadian-gas-prices.p.rapidapi.com/usa", + "description":"Returns the average price of gas in all American states.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/usa\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"City Prediction", + "url":"https://canadian-gas-prices.p.rapidapi.com/city-prediction", + "description":"Returns the estimated price for a given City and its expected day-to-day change (in cents). View the `/predictions-list` endpoint to view the list of valid cities.", + "method":"GET", + "required_parameters":[ + { + "name":"city", + "type":"STRING", + "description":"View the `/predictions-list` endpoint to view valid cities.", + "default":"Toronto" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/city-prediction\"\nquerystring = {\"city\": city}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Predictions", + "url":"https://canadian-gas-prices.p.rapidapi.com/predictions", + "description":"Provides a current prediction of tomorrow's gas price provided by Dan McTeague's [gaswizard.ca](https://gaswizard.ca/gas-price-predictions/). Returns all estimated city prices and their expected day-to-day change (in cents).", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/predictions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"City", + "url":"https://canadian-gas-prices.p.rapidapi.com/city", + "description":"Returns the average price of gas in a specific city in Canada. You must provide both the Province and the specific City you wish to gather the price for.\n\n**Warning you must select a City and Province supported by this API**: To view the current supported locations try out the `/locations-list` endpoint to view all valid Province/City combinations.", + "method":"GET", + "required_parameters":[ + { + "name":"city", + "type":"STRING", + "description":"Please view the results of `/locations-list` to view the most up-to-date list of valid locations for this request.", + "default":"" + }, + { + "name":"province", + "type":"ENUM", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/city\"\nquerystring = {\"city\": city, \"province\": province}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Cities", + "url":"https://canadian-gas-prices.p.rapidapi.com/cities", + "description":"Returns the average price of gas of major cities in a specific province in Canada.", + "method":"GET", + "required_parameters":[ + { + "name":"province", + "type":"ENUM", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/cities\"\nquerystring = {\"province\": province}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Province", + "url":"https://canadian-gas-prices.p.rapidapi.com/province", + "description":"Returns the average price of gas in a specific province in Canada.", + "method":"GET", + "required_parameters":[ + { + "name":"province", + "type":"ENUM", + "description":"A valid province name. Options include Ontario, Quebec, Alberta, British Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Nova Scotia, Prince Edward Island, Saskatchewan.", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/province\"\nquerystring = {\"province\": province}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Provinces", + "url":"https://canadian-gas-prices.p.rapidapi.com/canada", + "description":"Returns the average price of gas in all Canadian provinces.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/canada\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Predictions List", + "url":"https://canadian-gas-prices.p.rapidapi.com/predictions-list", + "description":"Returns valid cities that can be used for the `/city-prediction` endpoint.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/predictions-list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Locations List", + "url":"https://canadian-gas-prices.p.rapidapi.com/location-list", + "description":"Returns full object representing collection of valid locations for this API.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/location-list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"State List", + "url":"https://canadian-gas-prices.p.rapidapi.com/state-list", + "description":"This endpoint provides a list of valid state codes that can be used with this API.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/state-list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"State", + "url":"https://canadian-gas-prices.p.rapidapi.com/state", + "description":"Endpoint to provide average gas price of a given American State.", + "method":"GET", + "required_parameters":[ + { + "name":"state", + "type":"ENUM", + "description":"", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"type", + "type":"ENUM", + "description":"Type of fuel you want the price for. Default is unleaded.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/state\"\nquerystring = {\"state\": state}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"City List", + "url":"https://canadian-gas-prices.p.rapidapi.com/city-list", + "description":"Returns a list of valid cities for this API when provided a valid province. Ex: 'Ontario'", + "method":"GET", + "required_parameters":[ + { + "name":"province", + "type":"ENUM", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/city-list\"\nquerystring = {\"province\": province}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Province List", + "url":"https://canadian-gas-prices.p.rapidapi.com/province-list", + "description":"Returns list of valid provinces for this API.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://canadian-gas-prices.p.rapidapi.com/province-list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"canadian-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/canadian_gas_prices/api.py b/toolbench/toolenv/tools/Transportation/canadian_gas_prices/api.py new file mode 100644 index 0000000000000000000000000000000000000000..51913d7befabf43ff79503ed2c62eb4938a8f9af --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/canadian_gas_prices/api.py @@ -0,0 +1,289 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def states(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the average price of gas in all American states." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/usa" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def city_prediction(city: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the estimated price for a given City and its expected day-to-day change (in cents). View the `/predictions-list` endpoint to view the list of valid cities." + city: View the `/predictions-list` endpoint to view valid cities. + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/city-prediction" + querystring = {'city': city, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def predictions(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Provides a current prediction of tomorrow's gas price provided by Dan McTeague's [gaswizard.ca](https://gaswizard.ca/gas-price-predictions/). Returns all estimated city prices and their expected day-to-day change (in cents)." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/predictions" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def city(city: str, province: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the average price of gas in a specific city in Canada. You must provide both the Province and the specific City you wish to gather the price for. + + **Warning you must select a City and Province supported by this API**: To view the current supported locations try out the `/locations-list` endpoint to view all valid Province/City combinations." + city: Please view the results of `/locations-list` to view the most up-to-date list of valid locations for this request. + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/city" + querystring = {'city': city, 'province': province, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cities(province: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the average price of gas of major cities in a specific province in Canada." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/cities" + querystring = {'province': province, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def province(province: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the average price of gas in a specific province in Canada." + province: A valid province name. Options include Ontario, Quebec, Alberta, British Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Nova Scotia, Prince Edward Island, Saskatchewan. + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/province" + querystring = {'province': province, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def provinces(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the average price of gas in all Canadian provinces." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/canada" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def predictions_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns valid cities that can be used for the `/city-prediction` endpoint." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/predictions-list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def locations_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns full object representing collection of valid locations for this API." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/location-list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def state_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint provides a list of valid state codes that can be used with this API." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/state-list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def state(state: str, type: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Endpoint to provide average gas price of a given American State." + type: Type of fuel you want the price for. Default is unleaded. + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/state" + querystring = {'state': state, } + if type: + querystring['type'] = type + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def city_list(province: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of valid cities for this API when provided a valid province. Ex: 'Ontario'" + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/city-list" + querystring = {'province': province, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def province_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns list of valid provinces for this API." + + """ + url = f"https://canadian-gas-prices.p.rapidapi.com/province-list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "canadian-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/car_api.json b/toolbench/toolenv/tools/Transportation/car_api.json new file mode 100644 index 0000000000000000000000000000000000000000..d5ea4adda7af3c57467691a899bc39bc83eefb53 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/car_api.json @@ -0,0 +1,2095 @@ +{ + "product_id": "api_fce33be1-2c38-4b93-ad1e-d5c471ccfc37", + "tool_description": "Search vehicles sold in the United States by year, make, model, trim, engine, body, mileage, VIN decoder and more.", + "home_url": "https://rapidapi.com/carapi/api/car-api2/", + "name": "Car API", + "title": "Car API", + "pricing": "FREEMIUM", + "tool_name": "Car API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 240, + "avgSuccessRate": 100, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "car-api2.p.rapidapi.com", + "api_list": [ + { + "name": "Engines", + "url": "https://car-api2.p.rapidapi.com/api/engines", + "description": "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n`[{\"field\": \"horsepower_hp\", \"op\": \">=\", \"val\": 100}, {\"field\": \"horsepower_hp\", \"op\": \"<=\", \"val\": 300}]`\n\nSee /api/vehicle-attributes for a complete list of vehicle attributes.\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed json search fields are: year, make, model, trim, fuel_type, engine_type, transmission, drive_type, cam_type, valve_timing, valves, horsepower_hp, size, cylinders, make_id, make_model_id, and make_model_trim_id.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "valves", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "valve_timing", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "fuel_type", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "cam_type", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "engine_type", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_trim_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "drive_type", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + }, + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "cylinders", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "size", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "horsepower_hp", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "transmission", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/engines\"\nquerystring = {\"year\": \"\", \"direction\": \"asc\", \"valves\": \"\", \"valve_timing\": \"\", \"fuel_type\": \"\", \"json\": \"\", \"model\": \"\", \"make\": \"\", \"make_model_id\": \"\", \"trim\": \"\", \"cam_type\": \"\", \"engine_type\": \"\", \"make_model_trim_id\": \"\", \"limit\": \"\", \"drive_type\": \"\", \"verbose\": \"yes\", \"make_id\": \"\", \"cylinders\": \"\", \"page\": \"\", \"sort\": \"id\", \"size\": \"\", \"horsepower_hp\": \"\", \"transmission\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/engines\"\nquerystring = {\"year\": \"\", \"direction\": \"asc\", \"valves\": \"\", \"valve_timing\": \"\", \"fuel_type\": \"\", \"json\": \"\", \"model\": \"\", \"make\": \"\", \"make_model_id\": \"\", \"trim\": \"\", \"cam_type\": \"\", \"engine_type\": \"\", \"make_model_trim_id\": \"\", \"limit\": \"\", \"drive_type\": \"\", \"verbose\": \"yes\", \"make_id\": \"\", \"cylinders\": \"\", \"page\": \"\", \"sort\": \"id\", \"size\": \"\", \"horsepower_hp\": \"\", \"transmission\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/engines?engine_type=&page=&make_id=&direction=asc&json=&horsepower_hp=&size=&verbose=yes&cylinders=&valve_timing=&cam_type=&sort=id&drive_type=&make_model_id=&limit=&valves=&make_model_trim_id=&year=&transmission=&fuel_type=&trim=&make=&model=", + "code": 400 + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "Bodies", + "url": "https://car-api2.p.rapidapi.com/api/bodies", + "description": "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n`[{\"field\": \"doors\", \"op\": \">=\", \"val\": 4}, {\"field\": \"type\", \"op\": \"in\", \"val\": [\"SUV\",\"Van\"]}]`\n\nSee /api/vehicle-attributes for a complete list of vehicle attributes.\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed json search fields are: year, make, model, trim, type, doors, make_id, make_model_id, and make_model_trim_id.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "make_model_trim_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "type", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "doors", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/bodies\"\nquerystring = {\"make_model_trim_id\": \"\", \"direction\": \"asc\", \"year\": \"\", \"page\": \"\", \"verbose\": \"yes\", \"json\": \"\", \"make_id\": \"\", \"trim\": \"\", \"sort\": \"id\", \"make_model_id\": \"\", \"model\": \"\", \"make\": \"\", \"type\": \"\", \"limit\": \"\", \"doors\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/bodies\"\nquerystring = {\"make_model_trim_id\": \"\", \"direction\": \"asc\", \"year\": \"\", \"page\": \"\", \"verbose\": \"yes\", \"json\": \"\", \"make_id\": \"\", \"trim\": \"\", \"sort\": \"id\", \"make_model_id\": \"\", \"model\": \"\", \"make\": \"\", \"type\": \"\", \"limit\": \"\", \"doors\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/bodies?verbose=yes&model=&sort=id&page=&make_id=&make_model_id=&trim=&doors=&make_model_trim_id=&year=&direction=asc&json=&limit=&make=&type=", + "code": 400 + }, + "statuscode": 200, + "schema": { + "properties": { + "_embedded": { + "items": { + "type": "object", + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + { + "properties": { + "id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "make_model_trim_id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "type": { + "minLength": 1, + "maxLength": 32, + "type": "string", + "enum": [ + "Cargo Van", + "Convertible", + "Coupe", + "Ext Van", + "Hatchback", + "Minivan", + "Passenger Van", + "Sedan", + "SUV", + "Truck (Access Cab)", + "Truck (Cab Plus)", + "Truck (Club Cab)", + "Truck (Crew Cab)", + "Truck (CrewMax)", + "Truck (Double Cab)", + "Truck (Extended Cab)", + "Truck (King Cab)", + "Truck (Mega Cab)", + "Truck (Quad Cab)", + "Truck (Regular Cab)", + "Truck (SuperCab)", + "Truck (SuperCrew)", + "Truck (Xtracab)", + "Van", + "Wagon" + ] + }, + "doors": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "length": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "width": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "seats": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "height": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "wheel_base": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "front_track": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "rear_track": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "ground_clearance": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "cargo_capacity": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "max_cargo_capacity": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "curb_weight": { + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "gross_weight": { + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "max_payload": { + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "max_towing_capacity": { + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + } + }, + "type": "object", + "description": "" + } + ] + }, + "type": "array" + } + }, + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "next": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "prev": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "first": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + }, + "last": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + } + } + } + } + ] + } + }, + { + "name": "Years", + "url": "https://car-api2.p.rapidapi.com/api/years", + "description": "For complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n`[{\"field\": \"make\", \"op\": \"in\", \"val\": [\"Scion\", \"Tesla\"]}]`\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed search fields are: `year`, `make`, `model`, `trim`, `make_id`, and `make_model_id`.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/years\"\nquerystring = {\"make_id\": \"\", \"make\": \"\", \"year\": \"\", \"json\": \"\", \"make_model_id\": \"\", \"model\": \"\", \"trim\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/years\"\nquerystring = {\"make_id\": \"\", \"make\": \"\", \"year\": \"\", \"json\": \"\", \"make_model_id\": \"\", \"model\": \"\", \"trim\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/years?json=&year=&make=&make_id=&trim=&make_model_id=&model=", + "code": 400 + }, + "statuscode": 200, + "schema": { + "allOf": [ + { + "items": { + "type": "integer" + }, + "type": "array" + } + ] + } + }, + { + "name": "Trims", + "url": "https://car-api2.p.rapidapi.com/api/trims", + "description": "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n`[{\"field\": \"year\", \"op\": \">=\", \"val\": 2010}, {\"field\": \"year\", \"op\": \"<=\", \"val\": 2020}]`\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed json search fields are: year, make, model, trim, bodies.type, engines.cam_type, engines.cylinders, engines.drive_type, engines.engine_type, engines.fuel_type, engines.transmission, engines.valve_timing, engines.valves, make_id, make_model_id, make_model_trim_id, created, and modified.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/trims\"\nquerystring = {\"make_id\": \"\", \"limit\": \"\", \"direction\": \"asc\", \"sort\": \"id\", \"year\": \"\", \"model\": \"\", \"page\": \"\", \"trim\": \"\", \"make_model_id\": \"\", \"verbose\": \"yes\", \"make\": \"\", \"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/trims\"\nquerystring = {\"make_id\": \"\", \"limit\": \"\", \"direction\": \"asc\", \"sort\": \"id\", \"year\": \"\", \"model\": \"\", \"page\": \"\", \"trim\": \"\", \"make_model_id\": \"\", \"verbose\": \"yes\", \"make\": \"\", \"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/trims?verbose=yes&sort=id&page=&make_id=&make_model_id=&trim=&year=&direction=asc&limit=&json=&make=&model=", + "code": 400 + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "Interior Colors", + "url": "https://car-api2.p.rapidapi.com/api/interior-colors", + "description": "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n[{\"field\": \"name\", \"op\": \"in\", \"val\": [\"red\", \"blue\"]}]\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed json search fields are: year, make, model, trim, name, rgb, make_id, make_model_id, and make_model_trim_i", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "name", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "make_model_trim_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "rgb", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/interior-colors\"\nquerystring = {\"model\": \"\", \"name\": \"\", \"trim\": \"\", \"page\": \"\", \"direction\": \"asc\", \"limit\": \"\", \"make_model_trim_id\": \"\", \"year\": \"\", \"rgb\": \"\", \"sort\": \"id\", \"verbose\": \"yes\", \"json\": \"\", \"make_id\": \"\", \"make\": \"\", \"make_model_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/interior-colors\"\nquerystring = {\"model\": \"\", \"name\": \"\", \"trim\": \"\", \"page\": \"\", \"direction\": \"asc\", \"limit\": \"\", \"make_model_trim_id\": \"\", \"year\": \"\", \"rgb\": \"\", \"sort\": \"id\", \"verbose\": \"yes\", \"json\": \"\", \"make_id\": \"\", \"make\": \"\", \"make_model_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/interior-colors?verbose=yes&make_id=&sort=id&page=&name=&make_model_id=&json=&trim=&make_model_trim_id=&rgb=&direction=asc&year=&limit=&make=&model=", + "code": 400 + }, + "statuscode": 200, + "schema": { + "properties": { + "_embedded": { + "items": { + "type": "object", + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + { + "properties": { + "id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "make_model_trim_id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "name": { + "minLength": 1, + "maxLength": 128, + "type": "string" + }, + "rgb": { + "maxLength": 16, + "type": "string" + } + }, + "type": "object", + "description": "" + } + ] + }, + "type": "array" + } + }, + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "next": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "prev": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "first": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + }, + "last": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + } + } + } + } + ] + } + }, + { + "name": "Exterior Colors", + "url": "https://car-api2.p.rapidapi.com/api/exterior-colors", + "description": "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n[{\"field\": \"name\", \"op\": \"in\", \"val\": [\"red\", \"blue\"]}]\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed json search fields are: year, make, model, trim, name, rgb, make_id, make_model_id, and make_model_trim_i", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + }, + { + "name": "rgb", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "name", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_model_trim_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/exterior-colors\"\nquerystring = {\"trim\": \"\", \"make_model_id\": \"\", \"sort\": \"id\", \"verbose\": \"yes\", \"rgb\": \"\", \"limit\": \"\", \"direction\": \"asc\", \"name\": \"\", \"make_id\": \"\", \"make\": \"\", \"year\": \"\", \"model\": \"\", \"make_model_trim_id\": \"\", \"page\": \"\", \"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/exterior-colors\"\nquerystring = {\"trim\": \"\", \"make_model_id\": \"\", \"sort\": \"id\", \"verbose\": \"yes\", \"rgb\": \"\", \"limit\": \"\", \"direction\": \"asc\", \"name\": \"\", \"make_id\": \"\", \"make\": \"\", \"year\": \"\", \"model\": \"\", \"make_model_trim_id\": \"\", \"page\": \"\", \"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/exterior-colors?verbose=yes&make_model_trim_id=&sort=id&page=&name=&make_model_id=&limit=&trim=&make_id=&year=&direction=asc&rgb=&json=&make=&model=", + "code": 400 + }, + "statuscode": 200, + "schema": { + "properties": { + "_embedded": { + "items": { + "type": "object", + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + { + "properties": { + "id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "make_model_trim_id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "name": { + "minLength": 1, + "maxLength": 128, + "type": "string" + }, + "rgb": { + "maxLength": 16, + "type": "string" + } + }, + "type": "object", + "description": "" + } + ] + }, + "type": "array" + } + }, + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "next": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "prev": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "first": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + }, + "last": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + } + } + } + } + ] + } + }, + { + "name": "Makes", + "url": "https://car-api2.p.rapidapi.com/api/makes", + "description": "Search makes by name and year.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/makes\"\nquerystring = {\"limit\": \"\", \"direction\": \"asc\", \"sort\": \"id\", \"page\": \"\", \"make\": \"\", \"year\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/makes\"\nquerystring = {\"limit\": \"\", \"direction\": \"asc\", \"sort\": \"id\", \"page\": \"\", \"make\": \"\", \"year\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/makes?year=&direction=asc&page=&limit=&make=&sort=id", + "code": 400 + }, + "statuscode": 200, + "schema": { + "properties": { + "_embedded": { + "items": { + "type": "object", + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + { + "properties": { + "id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "name": { + "minLength": 1, + "maxLength": 32, + "type": "string" + } + }, + "type": "object", + "description": "" + } + ] + }, + "type": "array" + } + }, + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "next": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "prev": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "first": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + }, + "last": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + } + } + } + } + ] + } + }, + { + "name": "VIN Decoder", + "url": "https://car-api2.p.rapidapi.com/api/vin/KNDJ23AU4N7154467", + "description": "Decodes Vehicle Identification Numbers. The result will include a list of specifications in the specs property and a list of all possible trims matching the VIN in the trims property.", + "method": "GET", + "required_parameters": [ + { + "name": "vin", + "type": "string", + "description": "", + "default": "KNDJ23AU4N7154467" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/vin/KNDJ23AU4N7154467\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/vin/{vin}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "year": 2022, + "make": "KIA", + "model": "Soul", + "trim": "LX, S, X Line", + "specs": { + "suggested_vin": "", + "possible_values": "", + "vehicle_descriptor": "KNDJ23AU*N7", + "destination_market": null, + "manufacturer_name": "KIA CORPORATION", + "plant_city": "GWANG-JU", + "series": null, + "vehicle_type": "MULTIPURPOSE PASSENGER VEHICLE (MPV)", + "plant_country": "SOUTH KOREA", + "plant_company_name": null, + "plant_state": null, + "trim2": null, + "series2": "Wagon Body Style", + "note": null, + "base_price": null, + "non_land_use": null, + "body_class": "Sport Utility Vehicle (SUV)/Multi-Purpose Vehicle (MPV)", + "doors": null, + "windows": null, + "wheel_base_type": null, + "track_width_inches": null, + "gross_vehicle_weight_rating_from": "Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)", + "bed_length_inches": null, + "curb_weight_pounds": null, + "wheel_base_inches_from": null, + "wheel_base_inches_to": null, + "gross_combination_weight_rating_from": null, + "gross_combination_weight_rating_to": null, + "gross_vehicle_weight_rating_to": null, + "bed_type": null, + "cab_type": null, + "trailer_type_connection": "Not Applicable", + "trailer_body_type": "Not Applicable", + "trailer_length_feet": null, + "other_trailer_info": null, + "number_of_wheels": null, + "wheel_size_front_inches": null, + "wheel_size_rear_inches": null, + "entertainment_system": null, + "steering_location": null, + "number_of_seats": "5", + "number_of_seat_rows": "2", + "transmission_style": null, + "transmission_speeds": null, + "drive_type": "4x2", + "axles": null, + "axle_configuration": null, + "brake_system_type": null, + "brake_system_description": null, + "other_battery_info": null, + "battery_type": null, + "number_of_battery_cells_per_module": null, + "battery_current_amps_from": null, + "battery_voltage_volts_from": null, + "battery_energy_kwh_from": null, + "ev_drive_unit": null, + "battery_current_amps_to": null, + "battery_voltage_volts_to": null, + "battery_energy_kwh_to": null, + "number_of_battery_modules_per_pack": null, + "number_of_battery_packs_per_vehicle": null, + "charger_level": null, + "charger_power_kw": null, + "engine_number_of_cylinders": "4", + "displacement_cc": "2000.0", + "displacement_ci": "122.04748818946", + "displacement_l": "2.0", + "engine_stroke_cycles": null, + "engine_model": "MPI NU", + "engine_power_kw": "109.6179", + "fuel_type_primary": "Gasoline", + "valve_train_design": "Dual Overhead Cam (DOHC)", + "engine_configuration": null, + "fuel_type_secondary": null, + "fuel_delivery_fuel_injection_type": "Multipoint Fuel Injection (MPFI)", + "engine_brake_hp_from": "147", + "cooling_type": null, + "engine_brake_hp_to": null, + "electrification_level": null, + "other_engine_info": null, + "turbo": null, + "top_speed_mph": null, + "engine_manufacturer": "KMC", + "pretensioner": null, + "seat_belt_type": "Manual", + "other_restraint_system_info": "Seat Belt: All Positions", + "curtain_air_bag_locations": "1st and 2nd Rows", + "seat_cushion_air_bag_locations": null, + "front_air_bag_locations": "1st Row (Driver and Passenger)", + "knee_air_bag_locations": null, + "side_air_bag_locations": "1st Row (Driver and Passenger)", + "anti_lock_braking_system_abs": "Standard", + "electronic_stability_control_esc": "Standard", + "traction_control": "Standard", + "tire_pressure_monitoring_system_tpms_type": "Direct", + "active_safety_system_note": null, + "auto_reverse_system_for_windows_and_sunroofs": "Standard", + "automatic_pedestrian_alerting_sound_for_hybrid_and_ev_only": null, + "event_data_recorder_edr": null, + "keyless_ignition": null, + "sae_automation_level_from": null, + "sae_automation_level_to": null, + "ncsa_body_type": "Station Wagon (excluding van and truck based)", + "ncsa_make": "KIA", + "ncsa_model": "Soul", + "ncsa_note": null, + "adaptive_cruise_control_acc": null, + "crash_imminent_braking_cib": null, + "blind_spot_warning_bsw": null, + "forward_collision_warning_fcw": null, + "lane_departure_warning_ldw": null, + "lane_keeping_assistance_lka": null, + "backup_camera": "Standard", + "parking_assist": null, + "bus_length_feet": null, + "bus_floor_configuration_type": "Not Applicable", + "bus_type": "Not Applicable", + "other_bus_info": null, + "custom_motorcycle_type": "Not Applicable", + "motorcycle_suspension_type": "Not Applicable", + "motorcycle_chassis_type": "Not Applicable", + "other_motorcycle_info": null, + "dynamic_brake_support_dbs": null, + "pedestrian_automatic_emergency_braking_paeb": null, + "automatic_crash_notification_acn_advanced_automatic_crash_notification_aacn": null, + "daytime_running_light_drl": "Standard", + "headlamp_light_source": "Halogen", + "semiautomatic_headlamp_beam_switching": null, + "adaptive_driving_beam_adb": null, + "rear_cross_traffic_alert": null, + "rear_automatic_emergency_braking": null, + "blind_spot_intervention_bsi": null, + "lane_centering_assistance": null + }, + "trims": [ + { + "id": 2236, + "make_model_id": 56, + "year": 2022, + "name": "LX", + "description": "LX 4dr Wagon (2.0L 4cyl CVT)", + "msrp": 19290, + "invoice": 18614, + "created": "2022-08-30T22:20:20-04:00", + "modified": "2022-08-30T22:20:20-04:00" + }, + { + "id": 2241, + "make_model_id": 56, + "year": 2022, + "name": "GT-Line", + "description": "GT-Line 4dr Wagon (2.0L 4cyl CVT)", + "msrp": 22690, + "invoice": 21668, + "created": "2022-08-30T22:20:20-04:00", + "modified": "2022-08-30T22:20:20-04:00" + }, + { + "id": 2240, + "make_model_id": 56, + "year": 2022, + "name": "EX", + "description": "EX 4dr Wagon (2.0L 4cyl CVT)", + "msrp": 23590, + "invoice": 22529, + "created": "2022-08-30T22:20:20-04:00", + "modified": "2022-08-30T22:20:20-04:00" + }, + { + "id": 2239, + "make_model_id": 56, + "year": 2022, + "name": "Turbo", + "description": "Turbo 4dr Wagon (1.6L 4cyl Turbo 7AM)", + "msrp": 27890, + "invoice": 26634, + "created": "2022-08-30T22:20:20-04:00", + "modified": "2022-08-30T22:20:20-04:00" + }, + { + "id": 2237, + "make_model_id": 56, + "year": 2022, + "name": "X-Line", + "description": "X-Line 4dr Wagon (2.0L 4cyl CVT)", + "msrp": 22690, + "invoice": 21895, + "created": "2022-08-30T22:20:20-04:00", + "modified": "2022-08-30T22:20:20-04:00" + }, + { + "id": 2238, + "make_model_id": 56, + "year": 2022, + "name": "S", + "description": "S 4dr Wagon (2.0L 4cyl CVT)", + "msrp": 21590, + "invoice": 20835, + "created": "2022-08-30T22:20:20-04:00", + "modified": "2022-08-30T22:20:20-04:00" + } + ] + } + }, + { + "name": "Models", + "url": "https://car-api2.p.rapidapi.com/api/models", + "description": "Search models by year, make, model, trim or make_id.\n\nTo include the models make in the description request with the query parameter as `verbose=yes`.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n`[{\"field\": \"make\", \"op\": \"in\", \"val\": [\"Ford\", \"Acura\"]}, {\"field\": \"year\", \"op\": \">=\", \"val\": 2010}]\n\nAllowed json operators are: =, !=, >, <, >=, <=, in, not in, like, not like, not null, and is null.\n\nAllowed json search fields are: year, make, model, make_id, created, and modified.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/models\"\nquerystring = {\"limit\": \"\", \"make_id\": \"\", \"year\": \"\", \"page\": \"\", \"sort\": \"id\", \"make\": \"\", \"model\": \"\", \"direction\": \"asc\", \"verbose\": \"yes\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/models\"\nquerystring = {\"limit\": \"\", \"make_id\": \"\", \"year\": \"\", \"page\": \"\", \"sort\": \"id\", \"make\": \"\", \"model\": \"\", \"direction\": \"asc\", \"verbose\": \"yes\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/models?verbose=yes&sort=id&page=&make_id=&year=&direction=asc&limit=&make=&model=", + "code": 400 + }, + "statuscode": 200, + "schema": { + "properties": { + "_embedded": { + "items": { + "type": "object", + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + { + "properties": { + "id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "make_id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "name": { + "minLength": 1, + "maxLength": 64, + "type": "string" + } + }, + "type": "object", + "description": "" + } + ] + }, + "type": "array" + } + }, + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "next": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "prev": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "first": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + }, + "last": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + } + } + } + } + ] + } + }, + { + "name": "Vehicle Attributes", + "url": "https://car-api2.p.rapidapi.com/api/vehicle-attributes", + "description": "Returns all options for given attribute.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "attribute", + "type": "STRING", + "description": "The attribute options to be returned", + "default": "bodies.type" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/vehicle-attributes\"\nquerystring = {\"attribute\": \"bodies.type\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/vehicle-attributes\"\nquerystring = {\"attribute\": \"bodies.type\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": [ + "Cargo Van", + "Convertible", + "Coupe", + "Ext Van", + "Hatchback", + "Minivan", + "Passenger Van", + "Sedan", + "SUV", + "Truck (Access Cab)", + "Truck (Cab Plus)", + "Truck (Club Cab)", + "Truck (Crew Cab)", + "Truck (CrewMax)", + "Truck (Double Cab)", + "Truck (Extended Cab)", + "Truck (King Cab)", + "Truck (Mega Cab)", + "Truck (Quad Cab)", + "Truck (Regular Cab)", + "Truck (SuperCab)", + "Truck (SuperCrew)", + "Truck (Xtracab)", + "Van", + "Wagon" + ], + "statuscode": 200, + "schema": { + "allOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + } + ] + } + }, + { + "name": "Mileages", + "url": "https://car-api2.p.rapidapi.com/api/mileages", + "description": "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes.\n\nFor complex queries you may use the json field to send an array of URL encoded JSON conditions, example:\n\n[{\"field\": \"combined_mpg\", \"op\": \">=\", \"val\": 20}, {\"field\": \"combined_mpg\", \"op\": \"<=\", \"val\": 30}]\n\nAllowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`.\n\nAllowed json search fields are: year, make, model, trim, combined_mpg, epa_city_mpg, epa_highway_mpg, range_city, range_highway, make_id, make_model_id, and make_model_trim_id.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "make_model_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "make_model_trim_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "trim", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "json", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "range_highway", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "sort", + "type": "STRING", + "description": "", + "default": "id" + }, + { + "name": "direction", + "type": "STRING", + "description": "", + "default": "asc" + }, + { + "name": "range_city", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "combined_mpg", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "verbose", + "type": "STRING", + "description": "Includes make, model and trim", + "default": "yes" + }, + { + "name": "epa_highway_mpg", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "epa_city_mpg", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "model", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "year", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make_id", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "make", + "type": "STRING", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/mileages\"\nquerystring = {\"make_model_id\": \"\", \"limit\": \"\", \"make_model_trim_id\": \"\", \"trim\": \"\", \"json\": \"\", \"range_highway\": \"\", \"sort\": \"id\", \"direction\": \"asc\", \"range_city\": \"\", \"page\": \"\", \"combined_mpg\": \"\", \"verbose\": \"yes\", \"epa_highway_mpg\": \"\", \"epa_city_mpg\": \"\", \"model\": \"\", \"year\": \"\", \"make_id\": \"\", \"make\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/mileages\"\nquerystring = {\"make_model_id\": \"\", \"limit\": \"\", \"make_model_trim_id\": \"\", \"trim\": \"\", \"json\": \"\", \"range_highway\": \"\", \"sort\": \"id\", \"direction\": \"asc\", \"range_city\": \"\", \"page\": \"\", \"combined_mpg\": \"\", \"verbose\": \"yes\", \"epa_highway_mpg\": \"\", \"epa_city_mpg\": \"\", \"model\": \"\", \"year\": \"\", \"make_id\": \"\", \"make\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "InvalidSearchValueException", + "message": "Search parameter value for `year` is invalid. Must be a positive number.", + "url": "/api/mileages?page=&make_id=&direction=asc&range_city=&make_model_trim_id=&range_highway=&verbose=yes&sort=id&make_model_id=&json=&epa_highway_mpg=&combined_mpg=&year=&limit=&epa_city_mpg=&trim=&make=&model=", + "code": 400 + }, + "statuscode": 200, + "schema": { + "properties": { + "_embedded": { + "items": { + "type": "object", + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + { + "properties": { + "id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "make_model_trim_id": { + "minLength": 1, + "type": "integer", + "format": "int64", + "minimum": -9223372036854776000, + "maximum": 9223372036854776000 + }, + "fuel_tank_capacity": { + "type": "number", + "format": "float", + "minimum": -3.402823669209385e+38, + "maximum": 3.402823669209385e+38 + }, + "combined_mpg": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "epa_city_mpg": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "epa_highway_mpg": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "range_city": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "range_highway": { + "type": "integer", + "format": "int32", + "minimum": -2147483648, + "maximum": 2147483647 + } + }, + "type": "object", + "description": "EPA miles per gallon, ranges etc." + } + ] + }, + "type": "array" + } + }, + "allOf": [ + { + "type": "object", + "properties": { + "links": { + "type": "object", + "properties": { + "self": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "next": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "prev": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "first": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url" + } + } + }, + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + }, + "last": { + "type": "object", + "properties": { + "href": { + "type": "string", + "format": "url", + "example": "/collection?page=:number" + } + } + } + } + } + } + ] + } + }, + { + "name": "Trim View", + "url": "https://car-api2.p.rapidapi.com/api/trims/{id}", + "description": "Returns all data associated with the vehicle trim.", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/trims/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-api2.p.rapidapi.com/api/trims/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-api2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "exception": "MissingRouteException", + "message": "Not Found", + "url": "/api/trims/%7Bid%7D?id=", + "code": 404 + }, + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "car_api" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/car_api/api.py b/toolbench/toolenv/tools/Transportation/car_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..31a70d4ae3af09b03d1c1dfe310f24dc761b2509 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/car_api/api.py @@ -0,0 +1,578 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def engines(year: str=None, direction: str='asc', valves: str=None, valve_timing: str=None, fuel_type: str=None, json: str=None, model: str=None, make: str=None, make_model_id: str=None, trim: str=None, cam_type: str=None, engine_type: str=None, make_model_trim_id: str=None, limit: int=None, drive_type: str=None, verbose: str='yes', make_id: str=None, cylinders: str=None, page: int=None, sort: str='id', size: str=None, horsepower_hp: str=None, transmission: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + `[{"field": "horsepower_hp", "op": ">=", "val": 100}, {"field": "horsepower_hp", "op": "<=", "val": 300}]` + + See /api/vehicle-attributes for a complete list of vehicle attributes. + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed json search fields are: year, make, model, trim, fuel_type, engine_type, transmission, drive_type, cam_type, valve_timing, valves, horsepower_hp, size, cylinders, make_id, make_model_id, and make_model_trim_id." + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/engines" + querystring = {} + if year: + querystring['year'] = year + if direction: + querystring['direction'] = direction + if valves: + querystring['valves'] = valves + if valve_timing: + querystring['valve_timing'] = valve_timing + if fuel_type: + querystring['fuel_type'] = fuel_type + if json: + querystring['json'] = json + if model: + querystring['model'] = model + if make: + querystring['make'] = make + if make_model_id: + querystring['make_model_id'] = make_model_id + if trim: + querystring['trim'] = trim + if cam_type: + querystring['cam_type'] = cam_type + if engine_type: + querystring['engine_type'] = engine_type + if make_model_trim_id: + querystring['make_model_trim_id'] = make_model_trim_id + if limit: + querystring['limit'] = limit + if drive_type: + querystring['drive_type'] = drive_type + if verbose: + querystring['verbose'] = verbose + if make_id: + querystring['make_id'] = make_id + if cylinders: + querystring['cylinders'] = cylinders + if page: + querystring['page'] = page + if sort: + querystring['sort'] = sort + if size: + querystring['size'] = size + if horsepower_hp: + querystring['horsepower_hp'] = horsepower_hp + if transmission: + querystring['transmission'] = transmission + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def bodies(make_model_trim_id: str=None, direction: str='asc', year: str=None, page: int=None, verbose: str='yes', json: str=None, make_id: str=None, trim: str=None, sort: str='id', make_model_id: str=None, model: str=None, make: str=None, type: str=None, limit: int=None, doors: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + `[{"field": "doors", "op": ">=", "val": 4}, {"field": "type", "op": "in", "val": ["SUV","Van"]}]` + + See /api/vehicle-attributes for a complete list of vehicle attributes. + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed json search fields are: year, make, model, trim, type, doors, make_id, make_model_id, and make_model_trim_id." + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/bodies" + querystring = {} + if make_model_trim_id: + querystring['make_model_trim_id'] = make_model_trim_id + if direction: + querystring['direction'] = direction + if year: + querystring['year'] = year + if page: + querystring['page'] = page + if verbose: + querystring['verbose'] = verbose + if json: + querystring['json'] = json + if make_id: + querystring['make_id'] = make_id + if trim: + querystring['trim'] = trim + if sort: + querystring['sort'] = sort + if make_model_id: + querystring['make_model_id'] = make_model_id + if model: + querystring['model'] = model + if make: + querystring['make'] = make + if type: + querystring['type'] = type + if limit: + querystring['limit'] = limit + if doors: + querystring['doors'] = doors + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def years(make_id: str=None, make: str=None, year: str=None, json: str=None, make_model_id: str=None, model: str=None, trim: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + `[{"field": "make", "op": "in", "val": ["Scion", "Tesla"]}]` + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed search fields are: `year`, `make`, `model`, `trim`, `make_id`, and `make_model_id`." + + """ + url = f"https://car-api2.p.rapidapi.com/api/years" + querystring = {} + if make_id: + querystring['make_id'] = make_id + if make: + querystring['make'] = make + if year: + querystring['year'] = year + if json: + querystring['json'] = json + if make_model_id: + querystring['make_model_id'] = make_model_id + if model: + querystring['model'] = model + if trim: + querystring['trim'] = trim + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def trims(make_id: str=None, limit: int=None, direction: str='asc', sort: str='id', year: str=None, model: str=None, page: int=None, trim: str=None, make_model_id: str=None, verbose: str='yes', make: str=None, json: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + `[{"field": "year", "op": ">=", "val": 2010}, {"field": "year", "op": "<=", "val": 2020}]` + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed json search fields are: year, make, model, trim, bodies.type, engines.cam_type, engines.cylinders, engines.drive_type, engines.engine_type, engines.fuel_type, engines.transmission, engines.valve_timing, engines.valves, make_id, make_model_id, make_model_trim_id, created, and modified." + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/trims" + querystring = {} + if make_id: + querystring['make_id'] = make_id + if limit: + querystring['limit'] = limit + if direction: + querystring['direction'] = direction + if sort: + querystring['sort'] = sort + if year: + querystring['year'] = year + if model: + querystring['model'] = model + if page: + querystring['page'] = page + if trim: + querystring['trim'] = trim + if make_model_id: + querystring['make_model_id'] = make_model_id + if verbose: + querystring['verbose'] = verbose + if make: + querystring['make'] = make + if json: + querystring['json'] = json + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def interior_colors(model: str=None, name: str=None, trim: str=None, page: int=None, direction: str='asc', limit: int=None, make_model_trim_id: str=None, year: str=None, rgb: str=None, sort: str='id', verbose: str='yes', json: str=None, make_id: str=None, make: str=None, make_model_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + [{"field": "name", "op": "in", "val": ["red", "blue"]}] + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed json search fields are: year, make, model, trim, name, rgb, make_id, make_model_id, and make_model_trim_i" + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/interior-colors" + querystring = {} + if model: + querystring['model'] = model + if name: + querystring['name'] = name + if trim: + querystring['trim'] = trim + if page: + querystring['page'] = page + if direction: + querystring['direction'] = direction + if limit: + querystring['limit'] = limit + if make_model_trim_id: + querystring['make_model_trim_id'] = make_model_trim_id + if year: + querystring['year'] = year + if rgb: + querystring['rgb'] = rgb + if sort: + querystring['sort'] = sort + if verbose: + querystring['verbose'] = verbose + if json: + querystring['json'] = json + if make_id: + querystring['make_id'] = make_id + if make: + querystring['make'] = make + if make_model_id: + querystring['make_model_id'] = make_model_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def exterior_colors(trim: str=None, make_model_id: str=None, sort: str='id', verbose: str='yes', rgb: str=None, limit: int=None, direction: str='asc', name: str=None, make_id: str=None, make: str=None, year: str=None, model: str=None, make_model_trim_id: str=None, page: int=None, json: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + [{"field": "name", "op": "in", "val": ["red", "blue"]}] + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed json search fields are: year, make, model, trim, name, rgb, make_id, make_model_id, and make_model_trim_i" + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/exterior-colors" + querystring = {} + if trim: + querystring['trim'] = trim + if make_model_id: + querystring['make_model_id'] = make_model_id + if sort: + querystring['sort'] = sort + if verbose: + querystring['verbose'] = verbose + if rgb: + querystring['rgb'] = rgb + if limit: + querystring['limit'] = limit + if direction: + querystring['direction'] = direction + if name: + querystring['name'] = name + if make_id: + querystring['make_id'] = make_id + if make: + querystring['make'] = make + if year: + querystring['year'] = year + if model: + querystring['model'] = model + if make_model_trim_id: + querystring['make_model_trim_id'] = make_model_trim_id + if page: + querystring['page'] = page + if json: + querystring['json'] = json + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def makes(limit: int=None, direction: str='asc', sort: str='id', page: int=None, make: str=None, year: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search makes by name and year." + + """ + url = f"https://car-api2.p.rapidapi.com/api/makes" + querystring = {} + if limit: + querystring['limit'] = limit + if direction: + querystring['direction'] = direction + if sort: + querystring['sort'] = sort + if page: + querystring['page'] = page + if make: + querystring['make'] = make + if year: + querystring['year'] = year + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def vin_decoder(vin: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Decodes Vehicle Identification Numbers. The result will include a list of specifications in the specs property and a list of all possible trims matching the VIN in the trims property." + + """ + url = f"https://car-api2.p.rapidapi.com/api/vin/{vin}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def models(limit: int=None, make_id: str=None, year: str=None, page: int=None, sort: str='id', make: str=None, model: str=None, direction: str='asc', verbose: str='yes', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search models by year, make, model, trim or make_id. + + To include the models make in the description request with the query parameter as `verbose=yes`. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + `[{"field": "make", "op": "in", "val": ["Ford", "Acura"]}, {"field": "year", "op": ">=", "val": 2010}] + + Allowed json operators are: =, !=, >, <, >=, <=, in, not in, like, not like, not null, and is null. + + Allowed json search fields are: year, make, model, make_id, created, and modified." + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/models" + querystring = {} + if limit: + querystring['limit'] = limit + if make_id: + querystring['make_id'] = make_id + if year: + querystring['year'] = year + if page: + querystring['page'] = page + if sort: + querystring['sort'] = sort + if make: + querystring['make'] = make + if model: + querystring['model'] = model + if direction: + querystring['direction'] = direction + if verbose: + querystring['verbose'] = verbose + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def vehicle_attributes(attribute: str='bodies.type', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all options for given attribute." + attribute: The attribute options to be returned + + """ + url = f"https://car-api2.p.rapidapi.com/api/vehicle-attributes" + querystring = {} + if attribute: + querystring['attribute'] = attribute + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def mileages(make_model_id: str=None, limit: int=None, make_model_trim_id: str=None, trim: str=None, json: str=None, range_highway: str=None, sort: str='id', direction: str='asc', range_city: str=None, page: int=None, combined_mpg: str=None, verbose: str='yes', epa_highway_mpg: str=None, epa_city_mpg: str=None, model: str=None, year: str=None, make_id: str=None, make: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "To include additional information about the returned body (such as year, make, model and trim) request with the query parameter as verbose=yes. + + For complex queries you may use the json field to send an array of URL encoded JSON conditions, example: + + [{"field": "combined_mpg", "op": ">=", "val": 20}, {"field": "combined_mpg", "op": "<=", "val": 30}] + + Allowed operators are: `>`, `<`, `>=`, `<=`, `in`, `not in`, `like`, `not like`, `is null` and `not null`. + + Allowed json search fields are: year, make, model, trim, combined_mpg, epa_city_mpg, epa_highway_mpg, range_city, range_highway, make_id, make_model_id, and make_model_trim_id." + verbose: Includes make, model and trim + + """ + url = f"https://car-api2.p.rapidapi.com/api/mileages" + querystring = {} + if make_model_id: + querystring['make_model_id'] = make_model_id + if limit: + querystring['limit'] = limit + if make_model_trim_id: + querystring['make_model_trim_id'] = make_model_trim_id + if trim: + querystring['trim'] = trim + if json: + querystring['json'] = json + if range_highway: + querystring['range_highway'] = range_highway + if sort: + querystring['sort'] = sort + if direction: + querystring['direction'] = direction + if range_city: + querystring['range_city'] = range_city + if page: + querystring['page'] = page + if combined_mpg: + querystring['combined_mpg'] = combined_mpg + if verbose: + querystring['verbose'] = verbose + if epa_highway_mpg: + querystring['epa_highway_mpg'] = epa_highway_mpg + if epa_city_mpg: + querystring['epa_city_mpg'] = epa_city_mpg + if model: + querystring['model'] = model + if year: + querystring['year'] = year + if make_id: + querystring['make_id'] = make_id + if make: + querystring['make'] = make + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def trim_view(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all data associated with the vehicle trim." + + """ + url = f"https://car-api2.p.rapidapi.com/api/trims/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-api2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/car_manufacturer_vehicle_specifications.json b/toolbench/toolenv/tools/Transportation/car_manufacturer_vehicle_specifications.json new file mode 100644 index 0000000000000000000000000000000000000000..7986110bd416539ae436630aa82be077f974282e --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/car_manufacturer_vehicle_specifications.json @@ -0,0 +1,89 @@ +{ + "tool_name":"Car Manufacturer Vehicle Specifications", + "tool_description":"Car Manufacturer and Vehicle Specifications Data. Over 1300 of the top current brand cars. ", + "title":"Car Manufacturer Vehicle Specifications", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/vanderzone/api/car-manufacturer-vehicle-specifications/", + "host":"car-manufacturer-vehicle-specifications.p.rapidapi.com", + "api_list":[ + { + "name":"Cars: Search Any Field", + "url":"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_list/make/?search_value=Volvo", + "description":"search category title, change category to field name to search search from fields available replace category with field name and search_value=value with the search value. Cars. You can change **make ** to any available field to search.\n\nThis example will show all cars with the make Volvo", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_list/make/?search_value=Volvo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-manufacturer-vehicle-specifications.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Cars: List all fields from multiple items", + "url":"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_multi/?make=Volvo&model=XC90&max=10", + "description":"Pass in multiple items into this search and return results from Cars. max = number items to return.\n\nThis example searches for the make Volvo and the model XC90 showing a max of 10 results.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_multi/?make=Volvo&model=XC90&max=10\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-manufacturer-vehicle-specifications.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Cars: Distinct List of Any Field Values", + "url":"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_distinct/make", + "description":"for example if you want to get a distinct list of make that exist from Cars. this should show a distinct list in json array.\n\nyou can change the value make to any available field to return distinct values", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_distinct/make\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-manufacturer-vehicle-specifications.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Cars: Latest 50 - 100 Items", + "url":"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/latest/50/100/", + "description":"show the latest items from the range starting at 50 and showing 100 items from Cars", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/latest/50/100/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-manufacturer-vehicle-specifications.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Cars: Latest 50 Items", + "url":"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/latest/start/50/", + "description":"show the latest 50 items from Cars", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/latest/start/50/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-manufacturer-vehicle-specifications.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Cars: List Items Fields Available", + "url":"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/list_fields/", + "description":"Lists all available fields in cars", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/list_fields/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-manufacturer-vehicle-specifications.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/car_manufacturer_vehicle_specifications/api.py b/toolbench/toolenv/tools/Transportation/car_manufacturer_vehicle_specifications/api.py new file mode 100644 index 0000000000000000000000000000000000000000..caa04b27cd2f58492c6f573fa4e1caf259cac242 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/car_manufacturer_vehicle_specifications/api.py @@ -0,0 +1,140 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def cars_search_any_field(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "search category title, change category to field name to search search from fields available replace category with field name and search_value=value with the search value. Cars. You can change **make ** to any available field to search. + + This example will show all cars with the make Volvo" + + """ + url = f"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_list/make/?search_value=volvo" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-manufacturer-vehicle-specifications.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cars_list_all_fields_from_multiple_items(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass in multiple items into this search and return results from Cars. max = number items to return. + + This example searches for the make Volvo and the model XC90 showing a max of 10 results." + + """ + url = f"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_multi/?make=volvo&model=xc90&max=10" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-manufacturer-vehicle-specifications.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cars_distinct_list_of_any_field_values(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "for example if you want to get a distinct list of make that exist from Cars. this should show a distinct list in json array. + + you can change the value make to any available field to return distinct values" + + """ + url = f"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/search_distinct/make" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-manufacturer-vehicle-specifications.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cars_latest_50_100_items(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "show the latest items from the range starting at 50 and showing 100 items from Cars" + + """ + url = f"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/latest/50/100/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-manufacturer-vehicle-specifications.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cars_latest_50_items(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "show the latest 50 items from Cars" + + """ + url = f"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/latest/start/50/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-manufacturer-vehicle-specifications.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cars_list_items_fields_available(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lists all available fields in cars" + + """ + url = f"https://car-manufacturer-vehicle-specifications.p.rapidapi.com/cars/list_fields/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-manufacturer-vehicle-specifications.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/car_routes_and_directions_google_maps_alternative.json b/toolbench/toolenv/tools/Transportation/car_routes_and_directions_google_maps_alternative.json new file mode 100644 index 0000000000000000000000000000000000000000..3cfafcd9a843cd2f5a18b577244f041f01d749c0 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/car_routes_and_directions_google_maps_alternative.json @@ -0,0 +1,106 @@ +{ + "tool_name": "Car routes and directions (Google Maps Alternative)", + "tool_description": "Routes and driving directions based on OpenStreetMap data", + "title": "Car routes and directions (Google Maps Alternative)", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 0, + "avgLatency": 37, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/iguk/api/car-routes-and-directions-google-maps-alternative/", + "host": "car-routes-and-directions-google-maps-alternative.p.rapidapi.com", + "api_list": [ + { + "name": "GetRoute", + "url": "https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car", + "description": "Get a basic route between two points for a car. Returned response is in GeoJSON format. This method does not accept any request body or parameters other than start coordinate and end coordinate.", + "method": "GET", + "required_parameters": [ + { + "name": "end", + "type": "STRING", + "description": "End point of route. Comma-separated longitude and latitude.", + "default": "8.687872,49.420318" + }, + { + "name": "start", + "type": "STRING", + "description": "Start point of route. Comma-separated longitude and latitude.", + "default": "8.681495,49.41461" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car\"\nquerystring = {\"end\": end, \"start\": start}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "PostRouteGeoJSON", + "url": "https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car/geojson", + "description": "Returns a route between two or more locations for a car and its settings as GeoJSON.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car/geojson\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": { + "content-type": "application/geo+json;charset=UTF-8" + }, + "schema": {} + }, + { + "name": "PostRouteJSON", + "url": "https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car", + "description": "Returns a route between two or more locations for a car and its settings as JSON.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "PostRouteGeoJSON", + "url": "https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car/geojson", + "description": "Returns a route between two or more locations for a car and its settings as GeoJSON.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car/geojson\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car/geojson\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "PostRouteJSON", + "url": "https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car", + "description": "Returns a route between two or more locations for a car and its settings as JSON.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"car-routes-and-directions-google-maps-alternative.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/car_routes_and_directions_google_maps_alternative/api.py b/toolbench/toolenv/tools/Transportation/car_routes_and_directions_google_maps_alternative/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fbf3594ca8ce49164a38ef4ed1463b2306324be6 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/car_routes_and_directions_google_maps_alternative/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getroute(end: str, start: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a basic route between two points for a car. Returned response is in GeoJSON format. This method does not accept any request body or parameters other than start coordinate and end coordinate." + end: End point of route. Comma-separated longitude and latitude. + start: Start point of route. Comma-separated longitude and latitude. + + """ + url = f"https://car-routes-and-directions-google-maps-alternative.p.rapidapi.com/directions/driving-car" + querystring = {'end': end, 'start': start, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "car-routes-and-directions-google-maps-alternative.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/cargomate.json b/toolbench/toolenv/tools/Transportation/cargomate.json new file mode 100644 index 0000000000000000000000000000000000000000..581c1edab82126f1864a2c601229f22f52894b58 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/cargomate.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_34e6b89b-eba1-4397-b724-35706f286f9a", + "tool_description": "CargoMATE translates emails and text into actionable quotes and bookings.", + "home_url": "https://rapidapi.com/cargoai-cargoai-default/api/cargomate/", + "name": "CargoMATE", + "title": "CargoMATE", + "pricing": "FREEMIUM", + "tool_name": "CargoMATE", + "score": { + "avgServiceLevel": 100, + "avgLatency": 4557, + "avgSuccessRate": 100, + "popularityScore": 8.8, + "__typename": "Score" + }, + "host": "cargomate.p.rapidapi.com", + "api_list": [ + { + "name": "CargoMATE", + "url": "https://cargomate.p.rapidapi.com/ai/shipment", + "description": "call API with text and retrieve structured data with shipment informations", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cargomate.p.rapidapi.com/ai/shipment\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cargomate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cargomate.p.rapidapi.com/ai/shipment\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cargomate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/carpool_india.json b/toolbench/toolenv/tools/Transportation/carpool_india.json new file mode 100644 index 0000000000000000000000000000000000000000..7c8844869c16880b0bdec63b2a8c86952d462d7e --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/carpool_india.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_f43ae743-70e1-4468-81dc-45c50d7952d5", + "tool_description": "This Project is used for Car pooling Services", + "home_url": "https://rapidapi.com/CarpoolIndia/api/carpool-india/", + "name": "Carpool India", + "title": "Carpool India", + "pricing": "FREE", + "tool_name": "Carpool India", + "score": null, + "host": "carpool-india.p.rapidapi.com", + "api_list": [ + { + "name": "VehicleInfo", + "url": "https://carpool-india.p.rapidapi.com/", + "description": "This is to fatch vehicle details", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://carpool-india.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"carpool-india.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://carpool-india.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"carpool-india.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/cheap_tracking_status.json b/toolbench/toolenv/tools/Transportation/cheap_tracking_status.json new file mode 100644 index 0000000000000000000000000000000000000000..04eb2b905f5fa13b8a8a7463b74029d077fb707a --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/cheap_tracking_status.json @@ -0,0 +1,52 @@ +{ + "product_id": "api_648dbe30-9baa-4c74-a43e-39dc004ffe8d", + "tool_description": "Track the status for parcels/shipments of over 1000+ carriers worldwide and also detect what the courier is, based on the tracking code/number.\n\nWe can also notify you via Whatsapp for any change of status on your shipments.\n\nA free plan is available.\n\n--\n\nRastreie o status de encomendas/remessas de mais de 1.000 transportadoras em todo o mundo e tamb\u00e9m detecte qual \u00e9 a transportadora, com base no c\u00f3digo/n\u00famero de rastreamento.\n\nTamb\u00e9m podemos notific\u00e1-lo via Whatsapp sobre qualquer mudan\u00e7a d...", + "home_url": "https://rapidapi.com/finestoreuk/api/cheap-tracking-status/", + "name": "Cheap Tracking Status", + "title": "Cheap Tracking Status", + "pricing": "FREEMIUM", + "tool_name": "Cheap Tracking Status", + "score": { + "avgServiceLevel": 95, + "avgLatency": 13451, + "avgSuccessRate": 95, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "cheap-tracking-status.p.rapidapi.com", + "api_list": [ + { + "name": "GetTrackingDetails", + "url": "https://cheap-tracking-status.p.rapidapi.com/GetTrackingDetails", + "description": "The courier will be automatically detected, so the only parameter needed is the tracking code.\n\nFor all plans, the possible statuses are:\n\n- **INFO RECEIVED**: The sender has just created the label\n- **IN TRANSIT**: The parcel is in transit\n- **READY FOR DELIVERY OR PICKUP**: It can also mean that the courier has tried to deliver but couldn't and will attempt a redelivery\n- **DELIVERED**\n- **UNDELIVERED**: It means that the courier struggled to deliver and may be sending the parcel back to the sender\n- **NOT FOUND**: Either the courier hasn't updated the information on their system or there is no data available\n- **TRY AGAIN LATER**: server may be busy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-tracking-status.p.rapidapi.com/GetTrackingDetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-tracking-status.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cheap-tracking-status.p.rapidapi.com/GetTrackingDetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-tracking-status.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "ShipmentNotification", + "url": "https://cheap-tracking-status.p.rapidapi.com/ShipmentNotification", + "description": "If a shipment changes its status, we can send you a Whatsapp Message.\n\nFor the input **notifyIf**:\n- Leave it blank and you'll get notified if the shipment has any change on its status (UNDER DEVELOPMENT)\n- Pass in any of the below statuses and and you'll only get notified if the status gets changed to the desired one\n\n**DELIVERED**\n**IN TRANSIT**\n**READY FOR DELIVERY OR PICKUP**\n**UNDELIVERED**\n**NOT FOUND**", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-tracking-status.p.rapidapi.com/ShipmentNotification\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-tracking-status.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cheap-tracking-status.p.rapidapi.com/ShipmentNotification\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-tracking-status.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "DetectCourier", + "url": "https://cheap-tracking-status.p.rapidapi.com/DetectCourier", + "description": "The courier description will be given back based on the tracking code.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cheap-tracking-status.p.rapidapi.com/DetectCourier\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-tracking-status.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cheap-tracking-status.p.rapidapi.com/DetectCourier\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cheap-tracking-status.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/checkavailable.json b/toolbench/toolenv/tools/Transportation/checkavailable.json new file mode 100644 index 0000000000000000000000000000000000000000..00d6707608b4e899b10b2a84a1e698e68a965ba2 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/checkavailable.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_0bcc04eb-904b-425c-9b0b-225a9e013391", + "tool_description": "Container CheckAvailable", + "home_url": "https://rapidapi.com/villsparekar1/api/checkavailable/", + "name": "CheckAvailable", + "title": "CheckAvailable", + "pricing": "FREE", + "tool_name": "CheckAvailable", + "score": { + "avgServiceLevel": 0, + "avgLatency": 180541, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "checkavailable.p.rapidapi.com", + "api_list": [ + { + "name": "/api/bookings/checkAvailable", + "url": "https://checkavailable.p.rapidapi.com/api/bookings/checkAvailable", + "description": "Checkavailable", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://checkavailable.p.rapidapi.com/api/bookings/checkAvailable\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"checkavailable.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://checkavailable.p.rapidapi.com/api/bookings/checkAvailable\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"checkavailable.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/danish_license_plates_decoder.json b/toolbench/toolenv/tools/Transportation/danish_license_plates_decoder.json new file mode 100644 index 0000000000000000000000000000000000000000..857fe6909bdce837f7a31dd41a8d0355c687d3df --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/danish_license_plates_decoder.json @@ -0,0 +1,134 @@ +{ + "tool_name":"Danish License Plates Decoder", + "tool_description":"This API enables the decoding of Danish license plates, providing access to information about the corresponding vehicles. Using a license plate number, the API can retrieve various details such as the full name of the vehicle, the chassis number (VIN), fuel type, the CO2 emission, maximum speed, and other relevant data.", + "title":"Danish License Plates Decoder", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":386, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/med123/api/danish-license-plates-decoder/", + "host":"danish-license-plates-decoder.p.rapidapi.com", + "api_list":[ + { + "name":"plate_number", + "url":"https://danish-license-plates-decoder.p.rapidapi.com/{language}/{plate_number}", + "description":"plate_number", + "method":"GET", + "required_parameters":[ + { + "name":"language", + "type":"string", + "description":"", + "default":"hl" + }, + { + "name":"plate_number", + "type":"string", + "description":"", + "default":"DC61339" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://danish-license-plates-decoder.p.rapidapi.com/{language}/{plate_number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"danish-license-plates-decoder.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "RegistreringNummer":"DC61339", + "Ident":"9000000002688369", + "ArtNummer":"1", + "ArtNavn":"Personbil", + "AnvendelseNummer":"1", + "AnvendelseNavn":"Privat personkørsel", + "OprettetUdFra":"CocDokument", + "Status":"Registreret", + "StatusDato":"2021-09-20T11:25:12.000+02:00", + "FoersteRegistreringDato":"2018-05-09+02:00", + "StelNummer":"JTDKGNEC20N343772", + "StelNummerAnbringelse":"På forreste travers", + "ModelAar":"2015", + "TotalVaegt":"1240", + "KoereklarVaegtMinimum":"960", + "TekniskTotalVaegt":"1240", + "VogntogVaegt":"1240", + "AkselAntal":"2", + "StoersteAkselTryk":"695", + "PassagerAntal":"3", + "SiddepladserMinimum":"4", + "TilkoblingMulighed":"false", + "TilkoblingsvaegtUdenBremser":"0", + "TilkoblingsvaegtMedBremser":"0", + "MaksimumHastighed":"160", + "FaelgDaek":"1. aksel: 165/60R15 77H 15X4 1/2J. 2. aksel: 165/60R15 77H 15X4 1/2J", + "NCAPTest":"false", + "OevrigtUdstyr":"Rat højdejusterbart, Servostyring, Centrallås, fjernbetjent, 8R7 Dark Blue Twinkle", + "TraekkendeAksler":"1", + "EgnetTilTaxi":"false", + "AkselAfstand":"2340", + "SporviddenForrest":"1430", + "SporviddenBagest":"1420", + "TypeGodkendelseNummer":"e11*2001/116*0236*13", + "EUVariant":"KGB40(H)", + "EUVersion":"KGB40L-AHMGKW(1P)", + "TypegodkendtKategori":"M1", + "AntalDoere":"4", + "Fabrikant":"TOYOTA MOTOR EUROPE NV/SA", + "MaerkeTypeNummer":"10265", + "MaerkeTypeNavn":"TOYOTA", + "ModelTypeNummer":"10265042", + "ModelTypeNavn":"AYGO", + "VariantTypeNummer":"7000000487", + "VariantTypeNavn":"1.0 VVT-i", + "TypeTypeNummer":"69999999990000492", + "TypeTypeNavn":"AB1", + "FarveTypeNummer":"9", + "FarveTypeNavn":"Blå", + "KarrosseriTypeNummer":"104", + "KarrosseriTypeNavn":"Hatchback", + "NormTypeNummer":"49", + "NormTypeNavn":"Euro VI", + "MiljoeCO2Udslip":"88.0", + "MiljoeEmissionCO":"685.1", + "MiljoeEmissionHCPlusNOX":"0.0", + "MiljoeEmissionNOX":"14.3", + "MiljoePartikelFilter":"false", + "MiljoeRoegtaethedOmdrejningstal":"0", + "MotorCylinderAntal":"3", + "MotorSlagVolumen":"998.0", + "MotorStoersteEffekt":"51.0", + "MotorKmPerLiter":"26.3", + "MotorKilometerstand":"77", + "MotorMaerkning":"1KR", + "MotorStandStoej":"76.0", + "MotorKoerselStoej":"69.0", + "MotorStandStoejOmdrejningstal":"3750", + "MotorInnovativTeknik":"false", + "DrivkraftTypeNummer":"1", + "DrivkraftTypeNavn":"Benzin", + "UdstyrAntal":"1", + "UdstyrTypeNummer":"506", + "UdstyrTypeNavn":"ABS bremser", + "UdstyrTypeVisesVedSyn":"false", + "UdstyrTypeVisesVedForespoergsel":"false", + "UdstyrTypeVisesVedStandardOprettelse":"false", + "RegistreringStatus":"Registreret", + "RegistreringStatusDato":"2021-09-20T11:25:12.000+02:00", + "isLeased":"" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"2439", + "content-type":"application/json", + "date":"Mon, 15 May 2023 23:32:13 GMT", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/danish_license_plates_decoder/api.py b/toolbench/toolenv/tools/Transportation/danish_license_plates_decoder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ac568427634f1a0e9392bb99bcb444560a3c2714 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/danish_license_plates_decoder/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def plate_number(language: str, plate_number: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "plate_number" + + """ + url = f"https://danish-license-plates-decoder.p.rapidapi.com/{language}/{plate_number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "danish-license-plates-decoder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/data_mudik.json b/toolbench/toolenv/tools/Transportation/data_mudik.json new file mode 100644 index 0000000000000000000000000000000000000000..f435c6d87bb5c2f4d501042874007ded7b9a9984 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/data_mudik.json @@ -0,0 +1,50 @@ +{ + "tool_name":"Data Mudik", + "tool_description":"Menyajikan data mudik berdasarkan beberapa sumber berita terpercaya", + "title":"Data Mudik", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":0, + "avgLatency":729, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/SandiSopian/api/data-mudik/", + "host":"data-mudik.p.rapidapi.com", + "api_list":[ + { + "name":"Data Individu", + "url":"https://data-mudik.p.rapidapi.com/news/{newspaperid}", + "description":"Dapatkan data dari sumber yang spesifik", + "method":"GET", + "required_parameters":[ + { + "name":"newspaperId", + "type":"string", + "description":"", + "default":"tempo" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://data-mudik.p.rapidapi.com/news/{newspaperid}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"data-mudik.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Semua Data Mudik", + "url":"https://data-mudik.p.rapidapi.com/news", + "description":"Semua data mudik dari berbagai sumber", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://data-mudik.p.rapidapi.com/news\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"data-mudik.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/data_mudik/api.py b/toolbench/toolenv/tools/Transportation/data_mudik/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7875b12db950ddca709cb8dfa9d285b828773b4c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/data_mudik/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def data_individu(newspaperid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Dapatkan data dari sumber yang spesifik" + + """ + url = f"https://data-mudik.p.rapidapi.com/news/{newspaperid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "data-mudik.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def semua_data_mudik(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Semua data mudik dari berbagai sumber" + + """ + url = f"https://data-mudik.p.rapidapi.com/news" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "data-mudik.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/datamo.json b/toolbench/toolenv/tools/Transportation/datamo.json new file mode 100644 index 0000000000000000000000000000000000000000..1ef8ef0ee8e667d332e5ee9132e8086c51277dcc --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/datamo.json @@ -0,0 +1,253 @@ +{ + "tool_name":"Datamo", + "tool_description":"Datamo is a RESTful API that provides extensive electric and combustion vehicle specification data.", + "title":"Datamo", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2627, + "avgSuccessRate":100, + "popularityScore":9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/wreckedmediagroup/api/datamo/", + "host":"datamo.p.rapidapi.com", + "api_list":[ + { + "name":"/specs/v1/tier1", + "url":"https://datamo.p.rapidapi.com/specs/v1/tier1", + "description":"Pull requested vehicle data for specific field parameters. Tier 1 allows the following to be queried by: \n1. make\n2. model\n\nAt least one query parameter is required for a successful call.", + "method":"GET", + "required_parameters":[ + { + "name":"make", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call. For purpose of testing through the RapidAPI interface, this is required. Normally, only one of any additional query parameters is required. i.e. make, model, engineType, ...", + "default":"Tesla" + } + ], + "optional_parameters":[ + { + "name":"sortBy", + "type":"STRING", + "description":"The field you would like to sort by.", + "default":"" + }, + { + "name":"order", + "type":"STRING", + "description":"The sort order of the specified field.", + "default":"" + }, + { + "name":"model", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"Model 3" + }, + { + "name":"page", + "type":"NUMBER", + "description":"The page of data returned, starting with index 1 (Default 1)", + "default":"" + }, + { + "name":"per_page", + "type":"NUMBER", + "description":"The number of entries returned per query. The default is 10 per page. The max per page is 250. ", + "default":"" + }, + { + "name":"fields", + "type":"STRING", + "description":"Over 100+ returnable fields including: make, model, engineType, bodyType, msrp, etc. See the Datamo website for a full list. Leave blank to return all fields.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://datamo.p.rapidapi.com/specs/v1/tier1\"\nquerystring = {\"model\": model, \"make\": make}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"datamo.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "Access-Control-Allow-Origin":"", + "Access-Control-Allow-Methods":"", + "Access-Control-Allow-Headers":"" + }, + "schema":{} + }, + { + "name":"/specs/v1/tier3", + "url":"https://datamo.p.rapidapi.com/specs/v1/tier3", + "description":"Pull requested vehicle data for specific field parameters. Tier 3 access grants to filter by any of the 100+ fields in the database\n\nAt least one query parameter is required for a successful call.", + "method":"GET", + "required_parameters":[ + { + "name":"make", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call. For purpose of testing through the RapidAPI interface, this is required. Normally, only one of any additional query parameters is required. i.e. make, model, engineType, ...", + "default":"Tesla" + } + ], + "optional_parameters":[ + { + "name":"bodyType", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"" + }, + { + "name":"msrp", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"" + }, + { + "name":"engineType", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"" + }, + { + "name":"page", + "type":"NUMBER", + "description":"The page of data returned, starting with index 1 (Default 1).", + "default":"" + }, + { + "name":"search", + "type":"STRING", + "description":"Text search by the make, model, or year.", + "default":"" + }, + { + "name":"model", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"Model 3" + }, + { + "name":"order", + "type":"STRING", + "description":"The sort order of the specified field.", + "default":"" + }, + { + "name":"sortBy", + "type":"STRING", + "description":"The field you would like to sort by.", + "default":"" + }, + { + "name":"per_page", + "type":"NUMBER", + "description":"The number of entries returned per query. The default is 10 per page. The max per page is 250. ", + "default":"" + }, + { + "name":"fields", + "type":"STRING", + "description":"Over 100+ returnable fields including: make, model, year, engineType, bodyType, etc. See the Datamo website for a full list. Leave blank to return all fields.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://datamo.p.rapidapi.com/specs/v1/tier3\"\nquerystring = {\"model\": model, \"make\": make}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"datamo.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "Access-Control-Allow-Origin":"", + "Access-Control-Allow-Methods":"", + "Access-Control-Allow-Headers":"" + }, + "schema":{} + }, + { + "name":"/specs/v1/getMakes", + "url":"https://datamo.p.rapidapi.com/specs/v1/getMakes", + "description":"This endpoint will return all the vehicle makes available, as an array of strings.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://datamo.p.rapidapi.com/specs/v1/getMakes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"datamo.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "Access-Control-Allow-Origin":"", + "Access-Control-Allow-Methods":"", + "Access-Control-Allow-Headers":"" + }, + "schema":{} + }, + { + "name":"/specs/v1/tier2", + "url":"https://datamo.p.rapidapi.com/specs/v1/tier2", + "description":"Pull requested vehicle data for specific field parameters. Tier 2 allows the following to be queried by: \n1. make\n2. model\n3. engineType\n4. bodyType\n\nAt least one query parameter is required for a successful call.", + "method":"GET", + "required_parameters":[ + { + "name":"make", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call. For purpose of testing through the RapidAPI interface, this is required. Normally, only one of any additional query parameters is required. i.e. make, model, engineType, ...", + "default":"Tesla" + } + ], + "optional_parameters":[ + { + "name":"sortBy", + "type":"STRING", + "description":"The field you would like to sort by.", + "default":"" + }, + { + "name":"order", + "type":"STRING", + "description":"The sort order of the specified field.", + "default":"" + }, + { + "name":"per_page", + "type":"NUMBER", + "description":"The number of entries returned per query. The default is 10 per page. The max per page is 250. ", + "default":"" + }, + { + "name":"fields", + "type":"STRING", + "description":"Over 100+ returnable fields including: make, model, year, engineType, bodyType, etc. See the Datamo website for a full list. Leave blank to return all fields.", + "default":"" + }, + { + "name":"page", + "type":"NUMBER", + "description":"The page of data returned, starting with index 1 (Default 1)", + "default":"" + }, + { + "name":"model", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"Model 3" + }, + { + "name":"engineType", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"" + }, + { + "name":"bodyType", + "type":"STRING", + "description":"At least 1 query parameter is required to make a successful call.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://datamo.p.rapidapi.com/specs/v1/tier2\"\nquerystring = {\"make\": make, \"model\": model}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"datamo.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "Access-Control-Allow-Origin":"", + "Access-Control-Allow-Methods":"", + "Access-Control-Allow-Headers":"" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/datamo/api.py b/toolbench/toolenv/tools/Transportation/datamo/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0877119266c6cf577f7708741c58c9a333e69f1b --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/datamo/api.py @@ -0,0 +1,179 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def specs_v1_tier1(make: str, sortby: str=None, order: str=None, model: str='Model 3', page: int=None, per_page: int=None, fields: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pull requested vehicle data for specific field parameters. Tier 1 allows the following to be queried by: + 1. make + 2. model + + At least one query parameter is required for a successful call." + make: At least 1 query parameter is required to make a successful call. For purpose of testing through the RapidAPI interface, this is required. Normally, only one of any additional query parameters is required. i.e. make, model, engineType, ... + sortby: The field you would like to sort by. + order: The sort order of the specified field. + model: At least 1 query parameter is required to make a successful call. + page: The page of data returned, starting with index 1 (Default 1) + per_page: The number of entries returned per query. The default is 10 per page. The max per page is 250. + fields: Over 100+ returnable fields including: make, model, engineType, bodyType, msrp, etc. See the Datamo website for a full list. Leave blank to return all fields. + + """ + url = f"https://datamo.p.rapidapi.com/specs/v1/tier1" + querystring = {'make': make, } + if sortby: + querystring['sortBy'] = sortby + if order: + querystring['order'] = order + if model: + querystring['model'] = model + if page: + querystring['page'] = page + if per_page: + querystring['per_page'] = per_page + if fields: + querystring['fields'] = fields + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "datamo.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def specs_v1_tier3(make: str, bodytype: str=None, msrp: str=None, enginetype: str=None, page: int=None, search: str=None, model: str='Model 3', order: str=None, sortby: str=None, per_page: int=None, fields: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pull requested vehicle data for specific field parameters. Tier 3 access grants to filter by any of the 100+ fields in the database + + At least one query parameter is required for a successful call." + make: At least 1 query parameter is required to make a successful call. For purpose of testing through the RapidAPI interface, this is required. Normally, only one of any additional query parameters is required. i.e. make, model, engineType, ... + bodytype: At least 1 query parameter is required to make a successful call. + msrp: At least 1 query parameter is required to make a successful call. + enginetype: At least 1 query parameter is required to make a successful call. + page: The page of data returned, starting with index 1 (Default 1). + search: Text search by the make, model, or year. + model: At least 1 query parameter is required to make a successful call. + order: The sort order of the specified field. + sortby: The field you would like to sort by. + per_page: The number of entries returned per query. The default is 10 per page. The max per page is 250. + fields: Over 100+ returnable fields including: make, model, year, engineType, bodyType, etc. See the Datamo website for a full list. Leave blank to return all fields. + + """ + url = f"https://datamo.p.rapidapi.com/specs/v1/tier3" + querystring = {'make': make, } + if bodytype: + querystring['bodyType'] = bodytype + if msrp: + querystring['msrp'] = msrp + if enginetype: + querystring['engineType'] = enginetype + if page: + querystring['page'] = page + if search: + querystring['search'] = search + if model: + querystring['model'] = model + if order: + querystring['order'] = order + if sortby: + querystring['sortBy'] = sortby + if per_page: + querystring['per_page'] = per_page + if fields: + querystring['fields'] = fields + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "datamo.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def specs_v1_getmakes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return all the vehicle makes available, as an array of strings." + + """ + url = f"https://datamo.p.rapidapi.com/specs/v1/getmakes" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "datamo.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def specs_v1_tier2(make: str, sortby: str=None, order: str=None, per_page: int=None, fields: str=None, page: int=None, model: str='Model 3', enginetype: str=None, bodytype: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pull requested vehicle data for specific field parameters. Tier 2 allows the following to be queried by: + 1. make + 2. model + 3. engineType + 4. bodyType + + At least one query parameter is required for a successful call." + make: At least 1 query parameter is required to make a successful call. For purpose of testing through the RapidAPI interface, this is required. Normally, only one of any additional query parameters is required. i.e. make, model, engineType, ... + sortby: The field you would like to sort by. + order: The sort order of the specified field. + per_page: The number of entries returned per query. The default is 10 per page. The max per page is 250. + fields: Over 100+ returnable fields including: make, model, year, engineType, bodyType, etc. See the Datamo website for a full list. Leave blank to return all fields. + page: The page of data returned, starting with index 1 (Default 1) + model: At least 1 query parameter is required to make a successful call. + enginetype: At least 1 query parameter is required to make a successful call. + bodytype: At least 1 query parameter is required to make a successful call. + + """ + url = f"https://datamo.p.rapidapi.com/specs/v1/tier2" + querystring = {'make': make, } + if sortby: + querystring['sortBy'] = sortby + if order: + querystring['order'] = order + if per_page: + querystring['per_page'] = per_page + if fields: + querystring['fields'] = fields + if page: + querystring['page'] = page + if model: + querystring['model'] = model + if enginetype: + querystring['engineType'] = enginetype + if bodytype: + querystring['bodyType'] = bodytype + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "datamo.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/driving_directions.json b/toolbench/toolenv/tools/Transportation/driving_directions.json new file mode 100644 index 0000000000000000000000000000000000000000..a7d4d3bbd0c33c192a448ecbe824b3b62ecacca0 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/driving_directions.json @@ -0,0 +1,249 @@ +{ + "tool_name":"Driving Directions", + "tool_description":"Get driving directions and best routes from an origin to a destination in real-time, from Google Maps.", + "title":"Driving Directions", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":137, + "avgSuccessRate":100, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/letscrape-6bRBa3QguO5/api/driving-directions1/", + "host":"driving-directions1.p.rapidapi.com", + "api_list":[ + { + "name":"Get Directions", + "url":"https://driving-directions1.p.rapidapi.com/get-directions", + "description":"Get driving directions from an origin to a destination.", + "method":"GET", + "required_parameters":[ + { + "name":"origin", + "type":"STRING", + "description":"Directions origin / starting point - specified as free-text location query or latitude, longitude pair.\n\n**`e.g.`** *`Church St & 29th St, San-Francisco, CA, USA`*\n**`e.g.`** *`37.743292, -122.420437`*", + "default":"Church St & 29th St, San-Francisco, CA, USA" + }, + { + "name":"destination", + "type":"STRING", + "description":"Directions destination - specified as free-text location query or latitude, longitude pair.\n\n**`e.g.`** *`145 5th Ave, New York, NY, USA`*\n**`e.g.`** *`40.649238, -73.974229`*", + "default":"Sunnyvale, CA, USA" + } + ], + "optional_parameters":[ + { + "name":"avoid_routes", + "type":"STRING", + "description":"Route types to avoid - specified as a comma delimited list of the following values: `tolls`, `highways`, `ferries`.\n\n**`e.g.`** *`ferries,tolls`*\n**`e.g.`** *`highways`*", + "default":"tolls,ferries" + }, + { + "name":"country", + "type":"STRING", + "description":"The country/region to use for the query, specified as a 2-letter country code - see [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\n**Default**: `us`.", + "default":"us" + }, + { + "name":"arrival_time", + "type":"NUMBER", + "description":"Arrival time - specified as a Unix-Timestamp in **destination local time** (e.g. *1665752460*).", + "default":"" + }, + { + "name":"language", + "type":"STRING", + "description":"The language to use for the query, specified as a 2-letter language code - see [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: `en`.", + "default":"en" + }, + { + "name":"departure_time", + "type":"NUMBER", + "description":"Departure time - specified as a Unix-Timestamp in **origin local time** (e.g. *1665785617*).", + "default":"" + }, + { + "name":"distance_units", + "type":"ENUM", + "description":"Set the distance units in the response to Kilometers or Miles - accepts one of the following values: `auto`, `km`, `mi`. The default `auto` value will use the common distance units used in origin/destination (e.g. Miles in the US, Kilometers in Germany).\n\n**Default:** `auto`.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://driving-directions1.p.rapidapi.com/get-directions\"\nquerystring = {\"avoid_routes\": avoid_routes, \"country\": country, \"origin\": origin, \"language\": language, \"destination\": destination}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"driving-directions1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "request_id":{ + "type":"string" + }, + "data":{ + "type":"object", + "properties":{ + "best_routes":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "route_name":{ + "type":"string" + }, + "distance_meters":{ + "type":"integer" + }, + "distance_label":{ + "type":"string" + }, + "duration_seconds":{ + "type":"integer" + }, + "duration_label":{ + "type":"string" + }, + "min_duration_seconds":{ + "type":"integer" + }, + "max_duration_seconds":{ + "type":"integer" + }, + "highlights":{ + "type":"array" + }, + "distance_timing_meters_seconds":{ + "type":"object" + }, + "notes":{ + "type":"array" + }, + "departure_timestamp":{ + "type":"integer" + }, + "departure_datetime_utc":{ + "type":"string" + }, + "arrival_timestamp":{ + "type":"integer" + }, + "arrival_datetime_utc":{ + "type":"string" + }, + "route_parts":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "summary":{ + "type":"string" + }, + "distance_meters":{ + "type":"integer" + }, + "distance_label":{ + "type":"string" + }, + "duration_seconds":{ + "type":"integer" + }, + "duration_label":{ + "type":"string" + }, + "instructions":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "summary":{ + "type":"string" + }, + "distance_meters":{ + "type":"integer" + }, + "distance_label":{ + "type":"string" + }, + "duration_seconds":{ + "type":"integer" + }, + "duration_label":{ + "type":"string" + }, + "notes":{ + "type":"array" + }, + "photo_url":{ + "type":"string" + } + } + } + } + } + } + } + } + } + }, + "origin":{ + "type":"object", + "properties":{ + "google_id":{ + "type":"string" + }, + "name":{ + "type":"string" + }, + "latitude":{ + "type":"number" + }, + "longitude":{ + "type":"number" + }, + "full_address":{ + "type":"string" + }, + "address":{ + "type":"string" + } + } + }, + "destination":{ + "type":"object", + "properties":{ + "google_id":{ + "type":"string" + }, + "name":{ + "type":"string" + }, + "latitude":{ + "type":"number" + }, + "longitude":{ + "type":"number" + }, + "full_address":{ + "type":"string" + }, + "address":{ + "type":"string" + } + } + }, + "directions_link":{ + "type":"string" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/driving_directions/api.py b/toolbench/toolenv/tools/Transportation/driving_directions/api.py new file mode 100644 index 0000000000000000000000000000000000000000..16e4f0896f53cd860335a673d6ef369b0187efb7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/driving_directions/api.py @@ -0,0 +1,64 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_directions(origin: str, destination: str, avoid_routes: str='tolls,ferries', country: str='us', arrival_time: int=None, language: str='en', departure_time: int=None, distance_units: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get driving directions from an origin to a destination." + origin: Directions origin / starting point - specified as free-text location query or latitude, longitude pair. + +**`e.g.`** *`Church St & 29th St, San-Francisco, CA, USA`* +**`e.g.`** *`37.743292, -122.420437`* + destination: Directions destination - specified as free-text location query or latitude, longitude pair. + +**`e.g.`** *`145 5th Ave, New York, NY, USA`* +**`e.g.`** *`40.649238, -73.974229`* + avoid_routes: Route types to avoid - specified as a comma delimited list of the following values: `tolls`, `highways`, `ferries`. + +**`e.g.`** *`ferries,tolls`* +**`e.g.`** *`highways`* + country: The country/region to use for the query, specified as a 2-letter country code - see [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). + +**Default**: `us`. + arrival_time: Arrival time - specified as a Unix-Timestamp in **destination local time** (e.g. *1665752460*). + language: The language to use for the query, specified as a 2-letter language code - see [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes). + +**Default**: `en`. + departure_time: Departure time - specified as a Unix-Timestamp in **origin local time** (e.g. *1665785617*). + distance_units: Set the distance units in the response to Kilometers or Miles - accepts one of the following values: `auto`, `km`, `mi`. The default `auto` value will use the common distance units used in origin/destination (e.g. Miles in the US, Kilometers in Germany). + +**Default:** `auto`. + + """ + url = f"https://driving-directions1.p.rapidapi.com/get-directions" + querystring = {'origin': origin, 'destination': destination, } + if avoid_routes: + querystring['avoid_routes'] = avoid_routes + if country: + querystring['country'] = country + if arrival_time: + querystring['arrival_time'] = arrival_time + if language: + querystring['language'] = language + if departure_time: + querystring['departure_time'] = departure_time + if distance_units: + querystring['distance_units'] = distance_units + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "driving-directions1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/ecoflow.json b/toolbench/toolenv/tools/Transportation/ecoflow.json new file mode 100644 index 0000000000000000000000000000000000000000..9575e43b58cac23f1ff8dd2fec429b6b7341338c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/ecoflow.json @@ -0,0 +1,45 @@ +{ + "product_id": "api_433cc385-a3fc-4a66-aa97-c54531504f4b", + "tool_description": "Calculate CO2 emissions", + "home_url": "https://rapidapi.com/informacionecoflow-rlXf98S-4H_/api/ecoflow/", + "name": "EcoFlow", + "title": "EcoFlow", + "pricing": "FREE", + "tool_name": "EcoFlow", + "score": { + "avgServiceLevel": 100, + "avgLatency": 379, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "ecoflow.p.rapidapi.com", + "api_list": [ + { + "name": "calculate emissions from cars", + "url": "https://ecoflow.p.rapidapi.com/estimate/cars-emissions", + "description": "Car emissions are calculated for rental cars based on it's acriss category that is shared across multiple retailers.\n\nThis categories are the following:\n- MINI\n- ECONOMY\n- COMPACT\n- INTERMEDIATE\n- STANDARD\n- FULLSIZE\n- PREMIUM\n- LUXURY\n- OVERSIZE\n- SPECIAL\n\nIn combination with the fuel type that could be one of the following:\n\n- PETROL\n- DIESEL\n- UNDEFINED\n - HYBRID", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ecoflow.p.rapidapi.com/estimate/cars-emissions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ecoflow.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ecoflow.p.rapidapi.com/estimate/cars-emissions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ecoflow.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "calculate emissions from flights", + "url": "https://ecoflow.p.rapidapi.com/estimate/flight-emissions", + "description": "Flight emissions are calculated taking into account the different space use by different classes\n\nThe available classes are the following:\n\n ECONOMY\n ECONOMY_PLUS\n BUSSINES\n FIRST", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://ecoflow.p.rapidapi.com/estimate/flight-emissions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ecoflow.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://ecoflow.p.rapidapi.com/estimate/flight-emissions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ecoflow.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/electric_vehicle_updates.json b/toolbench/toolenv/tools/Transportation/electric_vehicle_updates.json new file mode 100644 index 0000000000000000000000000000000000000000..947ca11bc8f2eb32d417a468b19986806f9e6a56 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/electric_vehicle_updates.json @@ -0,0 +1,50 @@ +{ + "tool_name":"Electric Vehicle Updates", + "tool_description":"An API showing latest update on EV trends", + "title":"Electric Vehicle Updates", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":932, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/luhar2992-56QGdH6hJ7/api/electric-vehicle-updates/", + "host":"electric-vehicle-updates.p.rapidapi.com", + "api_list":[ + { + "name":"Get Individual News Source Updates", + "url":"https://electric-vehicle-updates.p.rapidapi.com/evupdates/{pubid}", + "description":"Get updates on EV from a specific news source.", + "method":"GET", + "required_parameters":[ + { + "name":"pubId", + "type":"string", + "description":"", + "default":"mint" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://electric-vehicle-updates.p.rapidapi.com/evupdates/{pubid}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"electric-vehicle-updates.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get All EV updates", + "url":"https://electric-vehicle-updates.p.rapidapi.com/evupdates", + "description":"This endpoint will return back all new updates on EV", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://electric-vehicle-updates.p.rapidapi.com/evupdates\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"electric-vehicle-updates.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/electric_vehicle_updates/api.py b/toolbench/toolenv/tools/Transportation/electric_vehicle_updates/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0f6f078524249d783000eea3ad28f1429c4ccf74 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/electric_vehicle_updates/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_individual_news_source_updates(pubid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get updates on EV from a specific news source." + + """ + url = f"https://electric-vehicle-updates.p.rapidapi.com/evupdates/{pubid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "electric-vehicle-updates.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_ev_updates(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return back all new updates on EV" + + """ + url = f"https://electric-vehicle-updates.p.rapidapi.com/evupdates" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "electric-vehicle-updates.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/fachaapi.json b/toolbench/toolenv/tools/Transportation/fachaapi.json new file mode 100644 index 0000000000000000000000000000000000000000..b0c1eb8a98533d37f5fa3bbe955e473434a14b29 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/fachaapi.json @@ -0,0 +1,216 @@ +{ + "product_id": "api_d9748e9d-d2e4-4a08-a613-4d7b7730c8b7", + "tool_description": "Multi Purpose API, including Temporary Disposable Email Detection, Aircraft Database and Live Aircraft Data", + "home_url": "https://rapidapi.com/nfacha/api/fachaapi1/", + "name": "FachaAPI", + "title": "FachaAPI", + "pricing": "FREE", + "tool_name": "FachaAPI", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1092, + "avgSuccessRate": 100, + "popularityScore": 6.8, + "__typename": "Score" + }, + "host": "fachaapi1.p.rapidapi.com", + "api_list": [ + { + "name": "Total Live tracked Aircraft", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/stats", + "description": "Get total live tracked aircraft", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/stats\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/stats\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "liveAircraft": 0, + "updatedAt": 1686929120415 + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "Live NATO Air Policing Aircraft", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/nato-air-policing", + "description": "Get live military aircraft squaking NATO Air Policing / QRA (Squawk 1301-1327)", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/nato-air-policing\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/nato-air-policing\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": [] + }, + { + "name": "Live Emergency Aircraft", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/emergency", + "description": "Get live emergency aircraft (Squawk 7500/7600/7700)", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/emergency\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/emergency\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "general": [], + "radioFailure": [], + "hijack": [] + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "Live Aircraft by Squawk", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/squawk/{squawk}", + "description": "Get live positioning for all aircraft with a specific Squawk", + "method": "GET", + "required_parameters": [ + { + "name": "squawk", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/squawk/{squawk}\"\nquerystring = {\"squawk\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/squawk/{squawk}\"\nquerystring = {\"squawk\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": [], + "statuscode": 200, + "schema": {} + }, + { + "name": "Live Aircraft by REG", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}", + "description": "Get live positioning for an aircraft with a specific REG", + "method": "GET", + "required_parameters": [ + { + "name": "reg", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}\"\nquerystring = {\"reg\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}\"\nquerystring = {\"reg\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": [], + "statuscode": 200, + "schema": {} + }, + { + "name": "Live Aircraft by ICAO", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/icao/{icao}", + "description": "Get live positioning for an aircraft with a specific ICAO HEX Code", + "method": "GET", + "required_parameters": [ + { + "name": "icao", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/icao/{icao}\"\nquerystring = {\"icao\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/icao/{icao}\"\nquerystring = {\"icao\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": [], + "statuscode": 200, + "schema": {} + }, + { + "name": "Aircraft Database Stats", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/stats", + "description": "Get the total number of known aircraft", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/stats\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/stats\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "knownAircraft": 439345 + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "Aircraft Details by REG", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}", + "description": "Get Aircraft details for a specific Registration / Tail Number", + "method": "GET", + "required_parameters": [ + { + "name": "reg", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}\"\nquerystring = {\"reg\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}\"\nquerystring = {\"reg\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": [], + "statuscode": 200, + "schema": {} + }, + { + "name": "Aircraft Details by ICAO", + "url": "https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/icao/{icao}", + "description": "Get Aircraft details for a specific ICAO HEX Code", + "method": "GET", + "required_parameters": [ + { + "name": "icao", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/icao/{icao}\"\nquerystring = {\"icao\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/icao/{icao}\"\nquerystring = {\"icao\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "error": "Unknown Aircraft" + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "Temporary Email Stats", + "url": "https://fachaapi1.p.rapidapi.com/temporary-email/stats", + "description": "Get the number of temporary emails in the database and its last update", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/temporary-email/stats\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/temporary-email/stats\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Check Temporary Email", + "url": "https://fachaapi1.p.rapidapi.com/v1/temporary-email/gmail.com", + "description": "Check if a domain is a known temporary email", + "method": "GET", + "required_parameters": [ + { + "name": "domain", + "type": "string", + "description": "The domain to check", + "default": "gmail.com" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/temporary-email/gmail.com\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://fachaapi1.p.rapidapi.com/v1/temporary-email/{domain}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"fachaapi1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "temporary": false + }, + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "fachaapi" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/fachaapi/api.py b/toolbench/toolenv/tools/Transportation/fachaapi/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1b5665cb0fe9c6de1ee929d069b1e9e3c2dac64e --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/fachaapi/api.py @@ -0,0 +1,240 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def total_live_tracked_aircraft(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get total live tracked aircraft" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/stats" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def live_nato_air_policing_aircraft(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get live military aircraft squaking NATO Air Policing / QRA (Squawk 1301-1327)" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/nato-air-policing" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def live_emergency_aircraft(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get live emergency aircraft (Squawk 7500/7600/7700)" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/emergency" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def live_aircraft_by_squawk(squawk: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get live positioning for all aircraft with a specific Squawk" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/squawk/{squawk}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def live_aircraft_by_reg(reg: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get live positioning for an aircraft with a specific REG" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def live_aircraft_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get live positioning for an aircraft with a specific ICAO HEX Code" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/icao/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_database_stats(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the total number of known aircraft" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/stats" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_details_by_reg(reg: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Aircraft details for a specific Registration / Tail Number" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/live/reg/{reg}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraft_details_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Aircraft details for a specific ICAO HEX Code" + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/aircraft/detail/icao/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def temporary_email_stats(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the number of temporary emails in the database and its last update" + + """ + url = f"https://fachaapi1.p.rapidapi.com/temporary-email/stats" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def check_temporary_email(domain: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Check if a domain is a known temporary email" + domain: The domain to check + + """ + url = f"https://fachaapi1.p.rapidapi.com/v1/temporary-email/{domain}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "fachaapi1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/flight_information_of_hong_kong_international_airport.json b/toolbench/toolenv/tools/Transportation/flight_information_of_hong_kong_international_airport.json new file mode 100644 index 0000000000000000000000000000000000000000..73d0412152891edb2458f19e6533c43c5952f6de --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/flight_information_of_hong_kong_international_airport.json @@ -0,0 +1,112 @@ +{ + "tool_name":"Flight Information of Hong Kong International Airport", + "tool_description":"The data of Flight Information of Hong Kong International Airport is provided by Hong Kong International Airport. This web service returns historical data (previous calendar day) in JSON format based on parameters provided by user.", + "title":"Flight Information of Hong Kong International Airport", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":270, + "avgSuccessRate":25, + "popularityScore":2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/don.ling.lok/api/flight-information-of-hong-kong-international-airport/", + "host":"flight-information-of-hong-kong-international-airport.p.rapidapi.com", + "api_list":[ + { + "name":"3 months flight info", + "url":"https://flight-information-of-hong-kong-international-airport.p.rapidapi.com/flightinfo-rest/rest/flights/past", + "description":"Today - 90D or Today + 14D", + "method":"GET", + "required_parameters":[ + { + "name":"date", + "type":"STRING", + "description":"yyyy-MM-dd", + "default":"2022-08-01" + }, + { + "name":"lang", + "type":"STRING", + "description":"", + "default":"en" + } + ], + "optional_parameters":[ + { + "name":"arrival", + "type":"STRING", + "description":"true/false", + "default":"false" + }, + { + "name":"cargo", + "type":"STRING", + "description":"true/false", + "default":"false" + } + ], + "code":"import requests\n\nurl = \"https://flight-information-of-hong-kong-international-airport.p.rapidapi.com/flightinfo-rest/rest/flights/past\"\nquerystring = {\"date\": date, \"arrival\": arrival, \"cargo\": cargo, \"lang\": lang}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-information-of-hong-kong-international-airport.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "date":{ + "type":"string" + }, + "arrival":{ + "type":"boolean" + }, + "cargo":{ + "type":"boolean" + }, + "list":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "time":{ + "type":"string" + }, + "flight":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "no":{ + "type":"string" + }, + "airline":{ + "type":"string" + } + } + } + }, + "status":{ + "type":"string" + }, + "statusCode":{ + "type":"null" + }, + "origin":{ + "type":"array", + "items":{ + "type":"string" + } + } + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/flight_information_of_hong_kong_international_airport/api.py b/toolbench/toolenv/tools/Transportation/flight_information_of_hong_kong_international_airport/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f92b9c529f0b00a274f52fec36bc34c27d4d9783 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/flight_information_of_hong_kong_international_airport/api.py @@ -0,0 +1,36 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_3_months_flight_info(date: str, lang: str, arrival: str='false', cargo: str='false', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Today - 90D or Today + 14D" + date: yyyy-MM-dd + arrival: true/false + cargo: true/false + + """ + url = f"https://flight-information-of-hong-kong-international-airport.p.rapidapi.com/flightinfo-rest/rest/flights/past" + querystring = {'date': date, 'lang': lang, } + if arrival: + querystring['arrival'] = arrival + if cargo: + querystring['cargo'] = cargo + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-information-of-hong-kong-international-airport.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/flight_radar.json b/toolbench/toolenv/tools/Transportation/flight_radar.json new file mode 100644 index 0000000000000000000000000000000000000000..c44ecc6b7ce8eab217779541b118b3c4462f0e10 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/flight_radar.json @@ -0,0 +1,295 @@ +{ + "tool_name":"Flight Radar", + "tool_description":"The world's most popular flight tracker API which helps you to create Flight tracker application, such as : flightradar24.com", + "title":"Flight Radar", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1666, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apidojo/api/flight-radar1/", + "host":"flight-radar1.p.rapidapi.com", + "api_list":[ + { + "name":"flights/list-in-boundary", + "url":"https://flight-radar1.p.rapidapi.com/flights/list-in-boundary", + "description":"Helps to list flights, aircrafts in a GEO bounding box, and display them on a map", + "method":"GET", + "required_parameters":[ + { + "name":"bl_lng", + "type":"NUMBER", + "description":"The bottom left longitude of the bounding box", + "default":"100.641975" + }, + { + "name":"tr_lat", + "type":"NUMBER", + "description":"The top right latitude of the bounding box", + "default":"13.771029" + }, + { + "name":"bl_lat", + "type":"NUMBER", + "description":"The bottom left latitude of the bounding box", + "default":"13.607884" + }, + { + "name":"tr_lng", + "type":"NUMBER", + "description":"The top right longitude of the bounding box", + "default":"100.861566" + } + ], + "optional_parameters":[ + { + "name":"type", + "type":"STRING", + "description":"The value of 'Code' field returned in .../aircrafts/list endpoint", + "default":"" + }, + { + "name":"speed", + "type":"STRING", + "description":"Filter by speed. The format is min,max . Ex : 0,460", + "default":"" + }, + { + "name":"airline", + "type":"STRING", + "description":"The value of 'ICAO' field returned in .../airlines/list endpoint", + "default":"" + }, + { + "name":"altitude", + "type":"STRING", + "description":"Filter by altitude. The format is min,max . Ex : 0,48000", + "default":"" + }, + { + "name":"airport", + "type":"STRING", + "description":"The value of 'icao' field returned in .../airports/list endpoint", + "default":"" + }, + { + "name":"reg", + "type":"STRING", + "description":"Registration Ex : D-AIHV", + "default":"" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"The number of flights per response (max 300)", + "default":"300" + } + ], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/list-in-boundary\"\nquerystring = {\"limit\": limit, \"bl_lng\": bl_lng, \"tr_lat\": tr_lat, \"bl_lat\": bl_lat, \"tr_lng\": tr_lng}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"aircrafts/list", + "url":"https://flight-radar1.p.rapidapi.com/aircrafts/list", + "description":"List available aircrafts", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/aircrafts/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"flights/list-by-airline", + "url":"https://flight-radar1.p.rapidapi.com/flights/list-by-airline", + "description":"List flights by airline", + "method":"GET", + "required_parameters":[ + { + "name":"airline", + "type":"STRING", + "description":"The value of 'icao' field returned in .../airlines/list or .../flights/detail endpoint\nThe value of 'operator' field returned in .../flights/search endpoint\n", + "default":"AXM" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/list-by-airline\"\nquerystring = {\"airline\": airline}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"flights/get-playback", + "url":"https://flight-radar1.p.rapidapi.com/flights/get-playback", + "description":"Get history traveling data of specific flight", + "method":"GET", + "required_parameters":[ + { + "name":"flightId", + "type":"STRING", + "description":"Value of 'id' OR 'identification/id' field returned in .../flights/detail or .../flights/get-more-info endpoint", + "default":"2b5accad" + }, + { + "name":"timestamp", + "type":"NUMBER", + "description":"Value of 'departure' field returned in .../flights/detail OR .../flights/get-more-info endpoint", + "default":"1648874400" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/get-playback\"\nquerystring = {\"flightId\": flightid, \"timestamp\": timestamp}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"flights/get-more-info", + "url":"https://flight-radar1.p.rapidapi.com/flights/get-more-info", + "description":"Get more information of specific aircraft, flight, airline, etc...", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"The value of registration (if fetchBy is 'reg') or default (if fetchBy is 'flight') field returned in .../flights/detail", + "default":"FD3210" + }, + { + "name":"fetchBy", + "type":"STRING", + "description":"One of the following : reg|flight\n* reg is used to get specific aircraft info, flight is used to get specific flight or airline info", + "default":"flight" + } + ], + "optional_parameters":[ + { + "name":"page", + "type":"NUMBER", + "description":"", + "default":"1" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"100" + } + ], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/get-more-info\"\nquerystring = {\"query\": query, \"fetchBy\": fetchby, \"page\": page, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"flights/detail", + "url":"https://flight-radar1.p.rapidapi.com/flights/detail", + "description":"Get detailed information of specific flight", + "method":"GET", + "required_parameters":[ + { + "name":"flight", + "type":"STRING", + "description":"The value of id, flight_id field returned in .../flights/list-in-boundary or .../flights/list-most-tracked endpoint", + "default":"2b5ae17f" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/detail\"\nquerystring = {\"flight\": flight}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"flights/list-most-tracked", + "url":"https://flight-radar1.p.rapidapi.com/flights/list-most-tracked", + "description":"Return the most tracked flights around the world", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/list-most-tracked\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"flights/search", + "url":"https://flight-radar1.p.rapidapi.com/flights/search", + "description":"Search for specific flight", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Aircraft number, flight code, airline code, etc...", + "default":"FD3210" + } + ], + "optional_parameters":[ + { + "name":"limit", + "type":"NUMBER", + "description":"The number of items per response (max 25)", + "default":"25" + } + ], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/flights/search\"\nquerystring = {\"query\": query, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"airlines/get-logos", + "url":"https://flight-radar1.p.rapidapi.com/airlines/get-logos", + "description":"Get logos of airlines", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/airlines/get-logos\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"airlines/list", + "url":"https://flight-radar1.p.rapidapi.com/airlines/list", + "description":"List all airlines around the world", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/airlines/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"airports/list", + "url":"https://flight-radar1.p.rapidapi.com/airports/list", + "description":"List all airports around the world", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-radar1.p.rapidapi.com/airports/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-radar1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/flight_radar/api.py b/toolbench/toolenv/tools/Transportation/flight_radar/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7233131dbd60546d4803a98db2779bb5be62765c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/flight_radar/api.py @@ -0,0 +1,281 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flights_list_in_boundary(bl_lng: int, tr_lat: int, bl_lat: int, tr_lng: int, type: str=None, speed: str=None, airline: str=None, altitude: str=None, airport: str=None, reg: str=None, limit: int=300, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Helps to list flights, aircrafts in a GEO bounding box, and display them on a map" + bl_lng: The bottom left longitude of the bounding box + tr_lat: The top right latitude of the bounding box + bl_lat: The bottom left latitude of the bounding box + tr_lng: The top right longitude of the bounding box + type: The value of 'Code' field returned in .../aircrafts/list endpoint + speed: Filter by speed. The format is min,max . Ex : 0,460 + airline: The value of 'ICAO' field returned in .../airlines/list endpoint + altitude: Filter by altitude. The format is min,max . Ex : 0,48000 + airport: The value of 'icao' field returned in .../airports/list endpoint + reg: Registration Ex : D-AIHV + limit: The number of flights per response (max 300) + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/list-in-boundary" + querystring = {'bl_lng': bl_lng, 'tr_lat': tr_lat, 'bl_lat': bl_lat, 'tr_lng': tr_lng, } + if type: + querystring['type'] = type + if speed: + querystring['speed'] = speed + if airline: + querystring['airline'] = airline + if altitude: + querystring['altitude'] = altitude + if airport: + querystring['airport'] = airport + if reg: + querystring['reg'] = reg + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircrafts_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List available aircrafts" + + """ + url = f"https://flight-radar1.p.rapidapi.com/aircrafts/list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_list_by_airline(airline: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List flights by airline" + airline: The value of 'icao' field returned in .../airlines/list or .../flights/detail endpoint +The value of 'operator' field returned in .../flights/search endpoint + + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/list-by-airline" + querystring = {'airline': airline, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_get_playback(flightid: str, timestamp: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get history traveling data of specific flight" + flightid: Value of 'id' OR 'identification/id' field returned in .../flights/detail or .../flights/get-more-info endpoint + timestamp: Value of 'departure' field returned in .../flights/detail OR .../flights/get-more-info endpoint + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/get-playback" + querystring = {'flightId': flightid, 'timestamp': timestamp, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_get_more_info(query: str, fetchby: str, page: int=1, limit: int=100, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get more information of specific aircraft, flight, airline, etc..." + query: The value of registration (if fetchBy is 'reg') or default (if fetchBy is 'flight') field returned in .../flights/detail + fetchby: One of the following : reg|flight +* reg is used to get specific aircraft info, flight is used to get specific flight or airline info + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/get-more-info" + querystring = {'query': query, 'fetchBy': fetchby, } + if page: + querystring['page'] = page + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_detail(flight: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detailed information of specific flight" + flight: The value of id, flight_id field returned in .../flights/list-in-boundary or .../flights/list-most-tracked endpoint + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/detail" + querystring = {'flight': flight, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_list_most_tracked(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return the most tracked flights around the world" + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/list-most-tracked" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_search(query: str, limit: int=25, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for specific flight" + query: Aircraft number, flight code, airline code, etc... + limit: The number of items per response (max 25) + + """ + url = f"https://flight-radar1.p.rapidapi.com/flights/search" + querystring = {'query': query, } + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_get_logos(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get logos of airlines" + + """ + url = f"https://flight-radar1.p.rapidapi.com/airlines/get-logos" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List all airlines around the world" + + """ + url = f"https://flight-radar1.p.rapidapi.com/airlines/list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List all airports around the world" + + """ + url = f"https://flight-radar1.p.rapidapi.com/airports/list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-radar1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/flytrips.json b/toolbench/toolenv/tools/Transportation/flytrips.json new file mode 100644 index 0000000000000000000000000000000000000000..0cba74e9a7e9660610ee063f82c57d742dd27d77 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/flytrips.json @@ -0,0 +1,148 @@ +{ + "tool_name":"FlyTrips", + "tool_description":"Data of flights", + "title":"FlyTrips", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":0, + "avgLatency":708, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ruben-jimenez-lancho-ruben-jimenez-lancho-default/api/flytrips/", + "host":"flytrips.p.rapidapi.com", + "api_list":[ + { + "name":"Get Arrival By Country By Airport_Code_copy", + "url":"https://flytrips.p.rapidapi.com/api/v1/flight/{country}/arrival/{airport_code}", + "description":"Get arrival data flight by country_code and airport_code", + "method":"GET", + "required_parameters":[ + { + "name":"airport_code", + "type":"STRING", + "description":"", + "default":"bcn" + }, + { + "name":"country", + "type":"STRING", + "description":"", + "default":"es" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/flight/{country}/arrival/{airport_code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Get Departures By Country By Airport_Code", + "url":"https://flytrips.p.rapidapi.com/api/v1/flight/{country_code}/arrival/{airport_code}", + "description":"Get departure data flight by country_code and airport_code", + "method":"GET", + "required_parameters":[ + { + "name":"country_code", + "type":"string", + "description":"", + "default":"es" + }, + { + "name":"airport_code", + "type":"STRING", + "description":"", + "default":"bcn" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/flight/{country_code}/arrival/{airport_code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Get airports by Country Availables", + "url":"https://flytrips.p.rapidapi.com/api/v1/airport/{country}/availables", + "description":"Get airports by country_code", + "method":"GET", + "required_parameters":[ + { + "name":"country", + "type":"STRING", + "description":"", + "default":"es" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/airport/{country}/availables\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Get Airports by Country", + "url":"https://flytrips.p.rapidapi.com/api/v1/airport/{country}", + "description":"Get airports by country_code", + "method":"GET", + "required_parameters":[ + { + "name":"country", + "type":"STRING", + "description":"", + "default":"es" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/airport/{country}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Get Airline", + "url":"https://flytrips.p.rapidapi.com/api/v1/airline/", + "description":"Get Airlines", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/airline/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Get Countries availables", + "url":"https://flytrips.p.rapidapi.com/api/v1/country/availables", + "description":"Get countries with airport availables", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/country/availables\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + }, + { + "name":"Get Countries", + "url":"https://flytrips.p.rapidapi.com/api/v1/country/", + "description":"Get Countries", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flytrips.p.rapidapi.com/api/v1/country/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flytrips.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/flytrips/api.py b/toolbench/toolenv/tools/Transportation/flytrips/api.py new file mode 100644 index 0000000000000000000000000000000000000000..795d0858518cf151cbb74331c5489509dce11ab7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/flytrips/api.py @@ -0,0 +1,155 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_arrival_by_country_by_airport_code_copy(airport_code: str, country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get arrival data flight by country_code and airport_code" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/flight/{country}/arrival/{airport_code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_departures_by_country_by_airport_code(country_code: str, airport_code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get departure data flight by country_code and airport_code" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/flight/{country_code}/arrival/{airport_code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airports_by_country_availables(country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get airports by country_code" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/airport/{country}/availables" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airports_by_country(country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get airports by country_code" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/airport/{country}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airline(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Airlines" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/airline/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_countries_availables(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get countries with airport availables" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/country/availables" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_countries(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Countries" + + """ + url = f"https://flytrips.p.rapidapi.com/api/v1/country/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flytrips.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/go_train_delay.json b/toolbench/toolenv/tools/Transportation/go_train_delay.json new file mode 100644 index 0000000000000000000000000000000000000000..f19a3185242710ca59ccd3fdcdd87d1539fb02ff --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/go_train_delay.json @@ -0,0 +1,58 @@ +{ + "tool_name": "Go Train Delay", + "tool_description": "An API provides Ontario Go Train Delay information", + "title": "Go Train Delay", + "pricing": "PAID", + "score": null, + "home_url": "https://rapidapi.com/webdesignmtl/api/go-train-delay/", + "host": "go-train-delay.p.rapidapi.com", + "api_list": [ + { + "name": "Search by date ranges", + "url": "https://go-train-delay.p.rapidapi.com/date/_search", + "description": "This is the end point that provides the elastic search capabilities to search the delay data by the date ranges.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://go-train-delay.p.rapidapi.com/date/_search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"go-train-delay.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "Get All Delays", + "url": "https://go-train-delay.p.rapidapi.com/delays/{page_id}", + "description": "Get all delays data", + "method": "GET", + "required_parameters": [ + { + "name": "page_id", + "type": "NUMBER", + "description": "", + "default": "1" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://go-train-delay.p.rapidapi.com/delays/{page_id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"go-train-delay.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Search by date ranges", + "url": "https://go-train-delay.p.rapidapi.com/date/_search", + "description": "This is the end point that provides the elastic search capabilities to search the delay data by the date ranges.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://go-train-delay.p.rapidapi.com/date/_search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"go-train-delay.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://go-train-delay.p.rapidapi.com/date/_search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"go-train-delay.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/go_train_delay/api.py b/toolbench/toolenv/tools/Transportation/go_train_delay/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c14ebb38b438d6f9825c7eb8159ef48313385e7d --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/go_train_delay/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_all_delays(page_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all delays data" + + """ + url = f"https://go-train-delay.p.rapidapi.com/delays/{page_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "go-train-delay.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/gps_coordinate_to_address.json b/toolbench/toolenv/tools/Transportation/gps_coordinate_to_address.json new file mode 100644 index 0000000000000000000000000000000000000000..4bd681d579a06e6c2201fae82335176f7b2e98d5 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/gps_coordinate_to_address.json @@ -0,0 +1,143 @@ +{ + "tool_name":"GPS coordinate to address", + "tool_description":"Convert GPS coordinate to an address and place information.", + "title":"GPS coordinate to address", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":621, + "avgSuccessRate":100, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/geoapify-gmbh-geoapify/api/gps-coordinate-to-address/", + "host":"gps-coordinate-to-address.p.rapidapi.com", + "api_list":[ + { + "name":"Reverse Geocoding", + "url":"https://gps-coordinate-to-address.p.rapidapi.com/v1/geocode/reverse", + "description":"Lookup an address and place information by coordinate or GPS location", + "method":"GET", + "required_parameters":[ + { + "name":"lon", + "type":"STRING", + "description":"Longitude", + "default":"-74.0445" + }, + { + "name":"lat", + "type":"STRING", + "description":"Latitude", + "default":"40.68922" + } + ], + "optional_parameters":[ + { + "name":"type", + "type":"STRING", + "description":"Desired result granularity (country, state, city, postcode, street, or amenity)", + "default":"" + }, + { + "name":"lang", + "type":"STRING", + "description":"Preferable results language code (en, de, it, fr)", + "default":"en" + }, + { + "name":"limit", + "type":"STRING", + "description":"Maximum number of results", + "default":"1" + } + ], + "code":"import requests\n\nurl = \"https://gps-coordinate-to-address.p.rapidapi.com/v1/geocode/reverse\"\nquerystring = {\"lon\": lon, \"lang\": lang, \"lat\": lat, \"limit\": limit}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gps-coordinate-to-address.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "features":[ + { + "geometry":{ + "coordinates":[ + -74.04454817144321, + 40.689253199999996 + ], + "type":"Point" + }, + "type":"Feature", + "properties":{ + "country":"United States of America", + "city":"New York", + "street":"Flagpole Plaza", + "postcode":"10004", + "name":"Statue of Liberty", + "state":"New York", + "datasource":{ + "sourcename":"openstreetmap", + "osm_id":32965412, + "osm_type":"W", + "osm_key":"tourism", + "osm_value":"attraction" + }, + "lon":-74.04454817144321, + "lat":40.689253199999996, + "distance":0.005488592378078627 + }, + "bbox":[ + -74.0451069, + 40.6896741, + -74.0439637, + 40.6888049 + ] + } + ], + "type":"FeatureCollection" + }, + "headers":{ + "access-control-allow-headers":"access-control-max-age, access-control-allow-headers, access-control-allow-methods, access-control-allow-origin, allow, api-version, cf-ray, content-encoding, content-type, date, expect-ct, server, status, vary, cache-control, etag, last-modified, expires", + "access-control-allow-methods":"GET, POST, DELETE, OPTIONS, PUT", + "access-control-allow-origin":"*", + "alt-svc":"h3-27=\":443\"; ma=86400, h3-25=\":443\"; ma=86400, h3-24=\":443\"; ma=86400, h3-23=\":443\"; ma=86400", + "api-version":"1.0", + "cache-control":"private, max-age=0, no-cache", + "cf-cache-status":"DYNAMIC", + "cf-ray":"57267e015a61edef-CDG", + "content-type":"application/json; charset=utf-8", + "date":"Wed, 11 Mar 2020 16:01:06 GMT", + "expect-ct":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "server":"RapidAPI-1.0.42", + "set-cookie":[ + "__cfduid=de03cc162c130a0e1e67c47fc989e4e461583942466; expires=Fri, 10-Apr-20 16:01:06 GMT; path=/; domain=.geoapify.com; HttpOnly; SameSite=Lax; Secure" + ], + "vary":"Accept-Encoding", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.0.42", + "content-length":"562", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/gps_coordinate_to_address/api.py b/toolbench/toolenv/tools/Transportation/gps_coordinate_to_address/api.py new file mode 100644 index 0000000000000000000000000000000000000000..85454d0e9daca37139dc99951d2ab0cc2d3f6b07 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/gps_coordinate_to_address/api.py @@ -0,0 +1,40 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def reverse_geocoding(lon: str, lat: str, type: str=None, lang: str='en', limit: str='1', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Lookup an address and place information by coordinate or GPS location" + lon: Longitude + lat: Latitude + type: Desired result granularity (country, state, city, postcode, street, or amenity) + lang: Preferable results language code (en, de, it, fr) + limit: Maximum number of results + + """ + url = f"https://gps-coordinate-to-address.p.rapidapi.com/v1/geocode/reverse" + querystring = {'lon': lon, 'lat': lat, } + if type: + querystring['type'] = type + if lang: + querystring['lang'] = lang + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gps-coordinate-to-address.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/helicopter_by_api_ninjas.json b/toolbench/toolenv/tools/Transportation/helicopter_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..ba2077200f95f3cc3762daa7dcbb2695936d7724 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/helicopter_by_api_ninjas.json @@ -0,0 +1,97 @@ +{ + "tool_name":"Helicopter by API-Ninjas", + "tool_description":"Detailed technical specs for a wide range of helicopter models. See more info at https://api-ninjas.com/api/helicopter.", + "title":"Helicopter by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":699, + "avgSuccessRate":95, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/helicopter-by-api-ninjas/", + "host":"helicopter-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/helicopter", + "url":"https://helicopter-by-api-ninjas.p.rapidapi.com/v1/helicopter", + "description":"API Ninjas Helicopter API endpoint. Returns a list of helicopter specs that match the given parameters.\n\nAt least one of the following parameters (excluding the limit parameter) must be set.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"max_height", + "type":"NUMBER", + "description":"Maximum height of the helicopter in feet.", + "default":"" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"How many results to return. Must be between 1 and 30. Default is 1.", + "default":"" + }, + { + "name":"min_height", + "type":"NUMBER", + "description":"Minimum height of the helicopter in feet.", + "default":"" + }, + { + "name":"max_length", + "type":"NUMBER", + "description":"Maximum length of the helicopter in feet.", + "default":"" + }, + { + "name":"min_length", + "type":"NUMBER", + "description":"Minimum length of the helicopter in feet.", + "default":"" + }, + { + "name":"min_speed", + "type":"NUMBER", + "description":"Minimum max. air speed in knots.", + "default":"" + }, + { + "name":"min_range", + "type":"NUMBER", + "description":"Minimum range of the helicopter in nautical miles.", + "default":"" + }, + { + "name":"max_range", + "type":"NUMBER", + "description":"Maximum range of the helicopter in nautical miles.", + "default":"" + }, + { + "name":"max_speed", + "type":"NUMBER", + "description":"Maximum max. air speed in knots.", + "default":"" + }, + { + "name":"manufacturer", + "type":"STRING", + "description":"Company that designed and built the helicopter.", + "default":"Bell" + }, + { + "name":"model", + "type":"STRING", + "description":"Helicopter model name.", + "default":"206" + } + ], + "code":"import requests\n\nurl = \"https://helicopter-by-api-ninjas.p.rapidapi.com/v1/helicopter\"\nquerystring = {\"manufacturer\": manufacturer, \"model\": model}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"helicopter-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/helicopter_by_api_ninjas/api.py b/toolbench/toolenv/tools/Transportation/helicopter_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bc3d760c5db5a5173345e07e0afe28a839e2f4f4 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/helicopter_by_api_ninjas/api.py @@ -0,0 +1,64 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_helicopter(max_height: int=None, limit: int=None, min_height: int=None, max_length: int=None, min_length: int=None, min_speed: int=None, min_range: int=None, max_range: int=None, max_speed: int=None, manufacturer: str='Bell', model: str='206', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Helicopter API endpoint. Returns a list of helicopter specs that match the given parameters. + + At least one of the following parameters (excluding the limit parameter) must be set." + max_height: Maximum height of the helicopter in feet. + limit: How many results to return. Must be between 1 and 30. Default is 1. + min_height: Minimum height of the helicopter in feet. + max_length: Maximum length of the helicopter in feet. + min_length: Minimum length of the helicopter in feet. + min_speed: Minimum max. air speed in knots. + min_range: Minimum range of the helicopter in nautical miles. + max_range: Maximum range of the helicopter in nautical miles. + max_speed: Maximum max. air speed in knots. + manufacturer: Company that designed and built the helicopter. + model: Helicopter model name. + + """ + url = f"https://helicopter-by-api-ninjas.p.rapidapi.com/v1/helicopter" + querystring = {} + if max_height: + querystring['max_height'] = max_height + if limit: + querystring['limit'] = limit + if min_height: + querystring['min_height'] = min_height + if max_length: + querystring['max_length'] = max_length + if min_length: + querystring['min_length'] = min_length + if min_speed: + querystring['min_speed'] = min_speed + if min_range: + querystring['min_range'] = min_range + if max_range: + querystring['max_range'] = max_range + if max_speed: + querystring['max_speed'] = max_speed + if manufacturer: + querystring['manufacturer'] = manufacturer + if model: + querystring['model'] = model + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "helicopter-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/high_mobility.json b/toolbench/toolenv/tools/Transportation/high_mobility.json new file mode 100644 index 0000000000000000000000000000000000000000..4f006deb25cb1183bf22ff24fb8de69cdc1b034f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/high_mobility.json @@ -0,0 +1,10025 @@ +{ + "tool_name": "High Mobility", + "tool_description": "Businesses use High Mobility to build their perfect blend of car data points to optimise and scale their products.", + "title": "High Mobility", + "pricing": "FREE", + "score": { + "avgServiceLevel": 100, + "avgLatency": 313, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/high-mobility-high-mobility-default/api/high-mobility/", + "host": "high-mobility.p.rapidapi.com", + "api_list": [ + { + "name": "StartorstoptheHVACsystemtoreachdriverandpassengersettemperatures.Thecarwillusecooling,defrostinganddefoggingasappropriate.", + "url": "https://high-mobility.p.rapidapi.com/climate/start_stop_hvac", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate/start_stop_hvac\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthepreferredtemperaturesettings.", + "url": "https://high-mobility.p.rapidapi.com/climate/set_temperature_settings", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate/set_temperature_settings\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetClimatestate", + "url": "https://high-mobility.p.rapidapi.com/climate", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Manuallystartorstopionising.", + "url": "https://high-mobility.p.rapidapi.com/climate/start_stop_ionising", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate/start_stop_ionising\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "EnableordisableWi-Ficompletely.", + "url": "https://high-mobility.p.rapidapi.com/wi_fi/enable_disable_wi_fi", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/wi_fi/enable_disable_wi_fi\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Manuallystartorstopdefrosting.", + "url": "https://high-mobility.p.rapidapi.com/climate/start_stop_defrosting", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate/start_stop_defrosting\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Activateordeactivatevaletmode.", + "url": "https://high-mobility.p.rapidapi.com/valet_mode/activate_deactivate_valet_mode", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/valet_mode/activate_deactivate_valet_mode\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetWi-Fistate", + "url": "https://high-mobility.p.rapidapi.com/wi_fi", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/wi_fi\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetEnginestate", + "url": "https://high-mobility.p.rapidapi.com/engine", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/engine\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "GetValetModestate", + "url": "https://high-mobility.p.rapidapi.com/valet_mode", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/valet_mode\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Handoveravideofromsmartdevicetocarheadunittobeshowninthecardisplay.TheemulatorsupportsHTML5videoplayerformats.mp4and.webm.", + "url": "https://high-mobility.p.rapidapi.com/video_handover/video_handover", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/video_handover/video_handover\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Attempttostopthecontrolmodeofthecar.", + "url": "https://high-mobility.p.rapidapi.com/remote_control/stop_control", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/remote_control/stop_control\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Forgetanetworkthatthecarhaspreviouslyconnectedto.", + "url": "https://high-mobility.p.rapidapi.com/wi_fi/forget_network", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/wi_fi/forget_network\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Controlthegasflapofthecar.", + "url": "https://high-mobility.p.rapidapi.com/fueling/control_gas_flap", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/fueling/control_gas_flap\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "Activate/chooseanotificationaction.", + "url": "https://high-mobility.p.rapidapi.com/notifications/action", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/notifications/action\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Notifythecarthatamessagehasbeenreceived.Dependingonthecarsystem,itwilldisplayorreaditloudtothedriver.", + "url": "https://high-mobility.p.rapidapi.com/messaging/message_received", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/messaging/message_received\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthechargelimit,towhichpointthecarwillchargeitself.", + "url": "https://high-mobility.p.rapidapi.com/charging/set_charge_limit", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging/set_charge_limit\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthechargingtimersofthecar.Thecommandcanincludeoneofthedifferenttimertypesorall.", + "url": "https://high-mobility.p.rapidapi.com/charging/set_charging_timers", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging/set_charging_timers\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Manuallystartorstopdefogging.", + "url": "https://high-mobility.p.rapidapi.com/climate/start_stop_defogging", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate/start_stop_defogging\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "ActivateordeactivatetheStart-Stopsystemoftheengine.Whenactivated,thiswillautomaticallyshutdownandrestarttheinternalcombustionenginewhenthevehicleisstopped.", + "url": "https://high-mobility.p.rapidapi.com/engine/enable_disable_start_stop", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/engine/enable_disable_start_stop\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "GetDashboardLightsstate", + "url": "https://high-mobility.p.rapidapi.com/dashboard_lights", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/dashboard_lights\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetVehicleTimestate", + "url": "https://high-mobility.p.rapidapi.com/vehicle_time", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/vehicle_time\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "ConnectthecartoaWi-Finetwork.", + "url": "https://high-mobility.p.rapidapi.com/wi_fi/connect_to_network", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/wi_fi/connect_to_network\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetDiagnosticsstate", + "url": "https://high-mobility.p.rapidapi.com/diagnostics", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/diagnostics\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthereductionofchargingtimesofthecar.Thecommandcanincludedifferentvaluesforstartandstop.", + "url": "https://high-mobility.p.rapidapi.com/charging/set_reduction_of_charging_current_times", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging/set_reduction_of_charging_current_times\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetWeatherConditionsstate", + "url": "https://high-mobility.p.rapidapi.com/weather_conditions", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/weather_conditions\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Openorclosethechargeportofthecar", + "url": "https://high-mobility.p.rapidapi.com/charging/open_close_charging_port", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging/open_close_charging_port\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Attempttostartthecontrolmodeofthecar.", + "url": "https://high-mobility.p.rapidapi.com/remote_control/start_control", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/remote_control/start_control\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Tobesenteverytimethecontrolsforthecarwantstobechangedoronceasecondifthecontrolsremainthesame.Ifthecardoesnotreceivethecommandeveryseconditwillstopthecontrolmode.", + "url": "https://high-mobility.p.rapidapi.com/remote_control/control_command", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/remote_control/control_command\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Turnonorofftheparkingbrake.", + "url": "https://high-mobility.p.rapidapi.com/parking_brake/set_parking_brake", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/parking_brake/set_parking_brake\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthechargemodeofthecar.", + "url": "https://high-mobility.p.rapidapi.com/charging/set_charge_mode", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging/set_charge_mode\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "SettheHVAC(Heating,ventilation,andairconditioning)automatedstartingtimes.", + "url": "https://high-mobility.p.rapidapi.com/climate/change_starting_times", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/climate/change_starting_times\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Attempttoturnthevehicleengineonoroff", + "url": "https://high-mobility.p.rapidapi.com/engine/turn_engine_on_off", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/engine/turn_engine_on_off\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "Sendmultiplecommandsatonce", + "url": "https://high-mobility.p.rapidapi.com/multi_command/multi_command", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/multi_command/multi_command\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetTrunkstate", + "url": "https://high-mobility.p.rapidapi.com/trunk", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/trunk\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetParkingBrakestate", + "url": "https://high-mobility.p.rapidapi.com/parking_brake", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/parking_brake\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetMaintenancestate", + "url": "https://high-mobility.p.rapidapi.com/maintenance", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/maintenance\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetVehicleInformationstate", + "url": "https://high-mobility.p.rapidapi.com/vehicle_information", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/vehicle_information\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetKeyfobPositionstate", + "url": "https://high-mobility.p.rapidapi.com/keyfob_position", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/keyfob_position\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Sendakeystrokeorentiresentencesasinputtothecarheadunit.Thiscanactasanalternativetotheinputdevicesthatthecarisequippedwith.", + "url": "https://high-mobility.p.rapidapi.com/text_input/text_input", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/text_input/text_input\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetWindscreenstate", + "url": "https://high-mobility.p.rapidapi.com/windscreen", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/windscreen\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "DisplayanimageintheheadunitbyprovidingtheimageURL.", + "url": "https://high-mobility.p.rapidapi.com/graphics/display_image", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/graphics/display_image\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Unlock/LockandOpen/Closethetrunk.", + "url": "https://high-mobility.p.rapidapi.com/trunk/control_trunk", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/trunk/control_trunk\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetCapabilitiesstate", + "url": "https://high-mobility.p.rapidapi.com/capabilities", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/capabilities\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetUsagestate", + "url": "https://high-mobility.p.rapidapi.com/usage", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/usage\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetTachographstate", + "url": "https://high-mobility.p.rapidapi.com/tachograph", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/tachograph\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Startorstopcharging,whichcanonlybecontrolledwhenthecarispluggedin.", + "url": "https://high-mobility.p.rapidapi.com/charging/start_stop_charging", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging/start_stop_charging\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Requesthistoricalstates", + "url": "https://high-mobility.p.rapidapi.com/historical/request_states", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/historical/request_states\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "LoadaURLintheheadunitbrowser.AURLshortenercanbeusedinothercases.NotethatforthecaremulatortheURLhastobeforasecuresite(HTTPS).", + "url": "https://high-mobility.p.rapidapi.com/browser/load_url", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/browser/load_url\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Unarmorarmthetheftalarmofthecar.", + "url": "https://high-mobility.p.rapidapi.com/theft_alarm/set_theft_alarm", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/theft_alarm/set_theft_alarm\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetVehicleStatusstate", + "url": "https://high-mobility.p.rapidapi.com/vehicle_status", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/vehicle_status\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Sendthedriverheartratetothecar.", + "url": "https://high-mobility.p.rapidapi.com/heart_rate/send_heart_rate", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/heart_rate/send_heart_rate\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Attempttoturnthecarengineignitiononoroff.Whentheengineignitionison,itispossibleforthedrivertoturnontheengineanddrivethevehicle.", + "url": "https://high-mobility.p.rapidapi.com/ignition/turn_ignition_on_off", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/ignition/turn_ignition_on_off\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetHonkHorn&FlashLightsstate", + "url": "https://high-mobility.p.rapidapi.com/honk_horn_flash_lights", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/honk_horn_flash_lights\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Activateordeactivatepowertake-off.", + "url": "https://high-mobility.p.rapidapi.com/power_takeoff/activate_deactivate_power_takeoff", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/power_takeoff/activate_deactivate_power_takeoff\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetHomeChargerstate", + "url": "https://high-mobility.p.rapidapi.com/home_charger", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/home_charger\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetVehicleLocationstate", + "url": "https://high-mobility.p.rapidapi.com/vehicle_location", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/vehicle_location\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetCruiseControlstate", + "url": "https://high-mobility.p.rapidapi.com/cruise_control", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/cruise_control\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetAdasstate", + "url": "https://high-mobility.p.rapidapi.com/adas", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/adas\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetFirmwareVersionstate", + "url": "https://high-mobility.p.rapidapi.com/firmware_version", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/firmware_version\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "CleartheNotificationineitherthecarordevicethathaspreviouslybeensent,ignoringdriverfeedback.", + "url": "https://high-mobility.p.rapidapi.com/notifications/clear_notification", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/notifications/clear_notification\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetPowerTake-Offstate", + "url": "https://high-mobility.p.rapidapi.com/power_takeoff", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/power_takeoff\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetHoodstate", + "url": "https://high-mobility.p.rapidapi.com/hood", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/hood\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Sendanotificationtothecarorsmartdevice.Thenotificationcanhaveactionitemsthattheusercanrespondwith.", + "url": "https://high-mobility.p.rapidapi.com/notifications/notification", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/notifications/notification\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetCrashstate", + "url": "https://high-mobility.p.rapidapi.com/crash", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/crash\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetRemoteControlstate", + "url": "https://high-mobility.p.rapidapi.com/remote_control", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/remote_control\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthelightsstate", + "url": "https://high-mobility.p.rapidapi.com/lights/control_lights", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/lights/control_lights\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Wakeupthecar.Thisisnecessarywhenthecarhasfallenasleep,inwhichcasethecarrespondswiththeFailureMessagetoallincomingmessages.ThecarisalsowakenupbytheLock/UnlockDoorsmessage.", + "url": "https://high-mobility.p.rapidapi.com/wake_up/wake_up", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/wake_up/wake_up\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetIgnitionstate", + "url": "https://high-mobility.p.rapidapi.com/ignition", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/ignition\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetFuelingstate", + "url": "https://high-mobility.p.rapidapi.com/fueling", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/fueling\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "GetChassisSettingsstate", + "url": "https://high-mobility.p.rapidapi.com/chassis_settings", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/chassis_settings\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Activateordeactivatechargingfromsolarpower.", + "url": "https://high-mobility.p.rapidapi.com/home_charger/activate_deactivate_solar_charging", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/home_charger/activate_deactivate_solar_charging\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Controlthewipers.", + "url": "https://high-mobility.p.rapidapi.com/windscreen/control_wipers", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/windscreen/control_wipers\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetDoorsstate", + "url": "https://high-mobility.p.rapidapi.com/doors", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/doors\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "GetSeatsstate", + "url": "https://high-mobility.p.rapidapi.com/seats", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/seats\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetChargingstate", + "url": "https://high-mobility.p.rapidapi.com/charging", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/charging\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetTheftAlarmstate", + "url": "https://high-mobility.p.rapidapi.com/theft_alarm", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/theft_alarm\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetMobilestate", + "url": "https://high-mobility.p.rapidapi.com/mobile", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/mobile\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Openorclosethewindows.Eitheroneorallwindowscanbecontrolledwiththesamecommand.", + "url": "https://high-mobility.p.rapidapi.com/windows/control_windows", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/windows/control_windows\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetWindowsstate", + "url": "https://high-mobility.p.rapidapi.com/windows", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/windows\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetOffroadstate", + "url": "https://high-mobility.p.rapidapi.com/offroad", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/offroad\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Activateordeactivatecruisecontrol.", + "url": "https://high-mobility.p.rapidapi.com/cruise_control/activate_deactivate_cruise_control", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/cruise_control/activate_deactivate_cruise_control\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthenavigationdestination.Thiswillbeforwardedtothenavigationsystemofthecar.", + "url": "https://high-mobility.p.rapidapi.com/navi_destination/set_navi_destination", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/navi_destination/set_navi_destination\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Startparking.Thisclearsthelastparkingticketinformationandstartsanewone.Theendtimecanbeleftunsetdependingontheoperator.", + "url": "https://high-mobility.p.rapidapi.com/parking_ticket/start_parking", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/parking_ticket/start_parking\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetParkingTicketstate", + "url": "https://high-mobility.p.rapidapi.com/parking_ticket", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/parking_ticket\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setifthewindscreenneedsreplacement.", + "url": "https://high-mobility.p.rapidapi.com/windscreen/set_windscreen_replacement_needed", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/windscreen/set_windscreen_replacement_needed\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetNaviDestinationstate", + "url": "https://high-mobility.p.rapidapi.com/navi_destination", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/navi_destination\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthechargecurrentofthehomecharger.", + "url": "https://high-mobility.p.rapidapi.com/home_charger/set_charge_current", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/home_charger/set_charge_current\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetLightsstate", + "url": "https://high-mobility.p.rapidapi.com/lights", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/lights\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetLightConditionsstate", + "url": "https://high-mobility.p.rapidapi.com/light_conditions", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/light_conditions\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Settherooftopstate.", + "url": "https://high-mobility.p.rapidapi.com/rooftop_control/control_rooftop", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/rooftop_control/control_rooftop\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetRacestate", + "url": "https://high-mobility.p.rapidapi.com/race", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/race\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Code->AccessToken", + "url": "https://high-mobility.p.rapidapi.com//", + "description": " ", + "method": "POST", + "required_parameters": [ + { + "name": "redirect_uri", + "type": "STRING", + "description": "", + "default": "{{REDIRECT_URI}}" + }, + { + "name": "code", + "type": "STRING", + "description": "", + "default": "{{OAUTH_CODE}}" + }, + { + "name": "client_id", + "type": "STRING", + "description": "", + "default": "{{CLIENT_ID}}" + }, + { + "name": "client_secret", + "type": "STRING", + "description": "", + "default": "{{CLIENT_SECRET}}" + }, + { + "name": "grant_type", + "type": "STRING", + "description": "", + "default": "authorization_code" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com//\"\nquerystring = {\"redirect_uri\": redirect_uri, \"code\": code, \"client_id\": client_id, \"client_secret\": client_secret, \"grant_type\": grant_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthewindscreendamage.Thisisforinstanceusedtoresettheglassdamageorcorrectit.Damageconfidencepercentageisautomaticallysettoeither0%or100%.", + "url": "https://high-mobility.p.rapidapi.com/windscreen/set_windscreen_damage", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/windscreen/set_windscreen_damage\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetRooftopControlstate", + "url": "https://high-mobility.p.rapidapi.com/rooftop_control", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/rooftop_control\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "GetDriverFatiguestate", + "url": "https://high-mobility.p.rapidapi.com/driver_fatigue", + "description": " ", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/driver_fatigue\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Honkthehornand/orflashtheblinkerlights.Thiscanbedonesimultaneouslyorjustoneactionatthetime.Itisalsopossibletopassinhowmanytimesthelightsshouldbeflashedandhowmanysecondsthehornshouldbehonked.", + "url": "https://high-mobility.p.rapidapi.com/honk_horn_flash_lights/honk_flash", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/honk_horn_flash_lights/honk_flash\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Thisactivatesordeactivatestheemergencyflashersofthecar,typicallytheblinkerstoalarmotherdrivers.", + "url": "https://high-mobility.p.rapidapi.com/honk_horn_flash_lights/activate_deactivate_emergency_flasher", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/honk_horn_flash_lights/activate_deactivate_emergency_flasher\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthespringrates.", + "url": "https://high-mobility.p.rapidapi.com/chassis_settings/set_spring_rates", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/chassis_settings/set_spring_rates\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthechassisposition.", + "url": "https://high-mobility.p.rapidapi.com/chassis_settings/set_chassis_position", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/chassis_settings/set_chassis_position\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Start/Stopsportchrono.", + "url": "https://high-mobility.p.rapidapi.com/chassis_settings/start_stop_sports_chrono", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/chassis_settings/start_stop_sports_chrono\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthedrivingmode.", + "url": "https://high-mobility.p.rapidapi.com/chassis_settings/set_driving_mode", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/chassis_settings/set_driving_mode\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Endparking.Thisupdatestheparkingticketinformation.Ifnoenddatewasset,thecurrenttimeissetastheendingtime.", + "url": "https://high-mobility.p.rapidapi.com/parking_ticket/end_parking", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + }, + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/parking_ticket/end_parking\"\nquerystring = {\"Authorization\": authorization, \"Content-Type\": content_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Attempttolockorunlockalldoorsofthecar.", + "url": "https://high-mobility.p.rapidapi.com/doors/lock_unlock_doors", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/doors/lock_unlock_doors\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "estimatedRange": { + "timestamp": "2021-05-20T14:34:20.442Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "batteryLevel": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0 + } + }, + "batteryCurrentAC": { + "timestamp": "2021-03-02T10:30:39.957Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "batteryCurrentDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltageAC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargerVoltageDC": { + "timestamp": "2021-03-02T10:30:39.958Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "chargeLimit": { + "timestamp": "2021-12-03T16:22:42.291Z", + "data": { + "value": 0 + } + }, + "timeToCompleteCharge": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "minutes" + } + }, + "chargingRateKW": { + "timestamp": "2021-03-02T10:30:39.959Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "chargePortState": { + "timestamp": "2021-12-03T16:22:42.644Z", + "data": { + "value": "open" + } + }, + "chargeMode": { + "timestamp": "2021-12-03T16:22:42.959Z", + "data": { + "value": "timer_based" + } + }, + "maxChargingCurrent": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "plugType": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "type_2" + } + }, + "chargingWindowChosen": { + "timestamp": "2021-03-02T10:30:39.961Z", + "data": { + "value": "not_chosen" + } + }, + "departureTimes": [ + { + "timestamp": "2021-03-02T10:30:39.962Z", + "data": { + "state": { + "value": "inactive" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "reductionTimes": [ + { + "timestamp": "2021-07-19T14:17:45.984Z", + "data": { + "startStop": { + "value": "start" + }, + "time": { + "hour": { + "value": 0 + }, + "minute": { + "value": 0 + } + } + } + } + ], + "batteryTemperature": { + "timestamp": "2021-03-02T10:30:39.963Z", + "data": { + "value": 0, + "unit": "celsius" + } + }, + "timers": [ + { + "timestamp": "2021-07-19T14:17:39.366Z", + "data": { + "timerType": { + "value": "preferred_start_time" + }, + "date": { + "value": "2017-01-10T16:32:05.000Z" + } + } + } + ], + "pluggedIn": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "plugged_in" + } + }, + "status": { + "timestamp": "2021-12-03T16:22:41.968Z", + "data": { + "value": "charging" + } + }, + "chargingRate": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilowatts" + } + }, + "batteryCurrent": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "amperes" + } + }, + "chargerVoltage": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "volts" + } + }, + "currentType": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": "alternating_current" + } + }, + "maxRange": { + "timestamp": "2021-03-02T10:30:39.965Z", + "data": { + "value": 0, + "unit": "kilometers" + } + }, + "starterBatteryState": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "green" + } + }, + "smartChargingStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "scc_is_active" + } + }, + "batteryLevelAtDeparture": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": 0 + } + }, + "preconditioningDepartureStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningImmediateStatus": { + "timestamp": "2021-03-02T10:30:39.966Z", + "data": { + "value": "active" + } + }, + "preconditioningDepartureEnabled": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "enabled" + } + }, + "preconditioningError": { + "timestamp": "2021-03-02T10:30:39.967Z", + "data": { + "value": "not_possible_low" + } + }, + "batteryCapacity": { + "timestamp": "2021-05-05T20:12:52.600Z", + "data": { + "value": 0, + "unit": "kilowatt_hours" + } + } + }, + "headers": {}, + "schema": { + "type": "object", + "properties": { + "estimatedRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-20T14:34:20.442Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 500 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "batteryLevel": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.5 + } + } + } + } + }, + "batteryCurrentAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.957Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "batteryCurrentDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltageAC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargerVoltageDC": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.958Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "chargeLimit": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.291Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "timeToCompleteCharge": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 60 + }, + "unit": { + "type": "string", + "description": "", + "default": "minutes" + } + } + } + } + }, + "chargingRateKW": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 3.5 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "chargePortState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.644Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "open" + } + } + } + } + }, + "chargeMode": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:42.959Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "timer_based" + } + } + } + } + }, + "maxChargingCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 25 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "plugType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "type_2" + } + } + } + } + }, + "chargingWindowChosen": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.961Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_chosen" + } + } + } + } + }, + "departureTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.962Z" + }, + "data": { + "type": "object", + "properties": { + "state": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "inactive" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 11 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 51 + } + } + } + } + } + } + } + } + } + }, + "reductionTimes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:45.984Z" + }, + "data": { + "type": "object", + "properties": { + "startStop": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "start" + } + } + }, + "time": { + "type": "object", + "properties": { + "hour": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 17 + } + } + }, + "minute": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 33 + } + } + } + } + } + } + } + } + } + }, + "batteryTemperature": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.963Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 38.4 + }, + "unit": { + "type": "string", + "description": "", + "default": "celsius" + } + } + } + } + }, + "timers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-07-19T14:17:39.366Z" + }, + "data": { + "type": "object", + "properties": { + "timerType": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "preferred_start_time" + } + } + }, + "date": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "2017-01-10T16:32:05.000Z" + } + } + } + } + } + } + } + }, + "pluggedIn": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "plugged_in" + } + } + } + } + }, + "status": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-12-03T16:22:41.968Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "charging" + } + } + } + } + }, + "chargingRate": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 150 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatts" + } + } + } + } + }, + "batteryCurrent": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": -0.6 + }, + "unit": { + "type": "string", + "description": "", + "default": "amperes" + } + } + } + } + }, + "chargerVoltage": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 400 + }, + "unit": { + "type": "string", + "description": "", + "default": "volts" + } + } + } + } + }, + "currentType": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "alternating_current" + } + } + } + } + }, + "maxRange": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.965Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 555 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilometers" + } + } + } + } + }, + "starterBatteryState": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "green" + } + } + } + } + }, + "smartChargingStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "scc_is_active" + } + } + } + } + }, + "batteryLevelAtDeparture": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 0.9 + } + } + } + } + }, + "preconditioningDepartureStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningImmediateStatus": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.966Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "active" + } + } + } + } + }, + "preconditioningDepartureEnabled": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "enabled" + } + } + } + } + }, + "preconditioningError": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-03-02T10:30:39.967Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "string", + "description": "", + "default": "not_possible_low" + } + } + } + } + }, + "batteryCapacity": { + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "description": "", + "default": "2021-05-05T20:12:52.600Z" + }, + "data": { + "type": "object", + "properties": { + "value": { + "type": "integer", + "description": "", + "default": 70 + }, + "unit": { + "type": "string", + "description": "", + "default": "kilowatt_hours" + } + } + } + } + } + } + } + }, + { + "name": "Authenticateorexpirethechargingsession.Onlyifthesessionisauthenticatedcanthechargingbestartedbythevehicle.", + "url": "https://high-mobility.p.rapidapi.com/home_charger/authenticate_expire", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/home_charger/authenticate_expire\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Setthepricetariffsofthehomecharger.", + "url": "https://high-mobility.p.rapidapi.com/home_charger/set_price_tariffs", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/home_charger/set_price_tariffs\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "EnableordisabletheWi-FiHotspot.", + "url": "https://high-mobility.p.rapidapi.com/home_charger/enable_disable_wi_fi_hotspot", + "description": " ", + "method": "PUT", + "required_parameters": [ + { + "name": "Content-Type", + "type": "STRING", + "description": "", + "default": "application/json" + }, + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "Bearer {{JWT}}" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com/home_charger/enable_disable_wi_fi_hotspot\"\nquerystring = {\"Content-Type\": content_type, \"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n}\n\nresponse = requests.put(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "Code->AccessToken", + "url": "https://high-mobility.p.rapidapi.com//", + "description": " ", + "method": "POST", + "required_parameters": [ + { + "name": "redirect_uri", + "type": "STRING", + "description": "", + "default": "{{REDIRECT_URI}}" + }, + { + "name": "code", + "type": "STRING", + "description": "", + "default": "{{OAUTH_CODE}}" + }, + { + "name": "client_id", + "type": "STRING", + "description": "", + "default": "{{CLIENT_ID}}" + }, + { + "name": "client_secret", + "type": "STRING", + "description": "", + "default": "{{CLIENT_SECRET}}" + }, + { + "name": "grant_type", + "type": "STRING", + "description": "", + "default": "authorization_code" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com//\"\nquerystring = {\"redirect_uri\": \"{{REDIRECT_URI}}\", \"code\": \"{{OAUTH_CODE}}\", \"client_id\": \"{{CLIENT_ID}}\", \"client_secret\": \"{{CLIENT_SECRET}}\", \"grant_type\": \"authorization_code\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://high-mobility.p.rapidapi.com//\"\nquerystring = {\"redirect_uri\": \"{{REDIRECT_URI}}\", \"code\": \"{{OAUTH_CODE}}\", \"client_id\": \"{{CLIENT_ID}}\", \"client_secret\": \"{{CLIENT_SECRET}}\", \"grant_type\": \"authorization_code\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"high-mobility.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/high_mobility/api.py b/toolbench/toolenv/tools/Transportation/high_mobility/api.py new file mode 100644 index 0000000000000000000000000000000000000000..519589c78bdf65f50c4a443074bf854a97806d98 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/high_mobility/api.py @@ -0,0 +1,953 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getclimatestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/climate" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getwi_fistate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/wi_fi" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getenginestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/engine" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getvaletmodestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/valet_mode" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getdashboardlightsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/dashboard_lights" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getvehicletimestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/vehicle_time" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getdiagnosticsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/diagnostics" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getweatherconditionsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/weather_conditions" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gettrunkstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/trunk" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getparkingbrakestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/parking_brake" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmaintenancestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/maintenance" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getvehicleinformationstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/vehicle_information" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getkeyfobpositionstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/keyfob_position" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getwindscreenstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/windscreen" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcapabilitiesstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/capabilities" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getusagestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/usage" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gettachographstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/tachograph" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getvehiclestatusstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/vehicle_status" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gethonkhorn_flashlightsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/honk_horn_flash_lights" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gethomechargerstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/home_charger" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getvehiclelocationstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/vehicle_location" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcruisecontrolstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/cruise_control" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getadasstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/adas" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getfirmwareversionstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/firmware_version" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getpowertake_offstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/power_takeoff" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gethoodstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/hood" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcrashstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/crash" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getremotecontrolstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/remote_control" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getignitionstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/ignition" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getfuelingstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/fueling" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getchassissettingsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/chassis_settings" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getdoorsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/doors" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getseatsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/seats" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getchargingstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/charging" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gettheftalarmstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/theft_alarm" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmobilestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/mobile" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getwindowsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/windows" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getoffroadstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/offroad" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getparkingticketstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/parking_ticket" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getnavidestinationstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/navi_destination" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getlightsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/lights" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getlightconditionsstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/light_conditions" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getracestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/race" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getrooftopcontrolstate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/rooftop_control" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getdriverfatiguestate(authorization: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://high-mobility.p.rapidapi.com/driver_fatigue" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "high-mobility.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/iata_icao_airport_heliport/api.py b/toolbench/toolenv/tools/Transportation/iata_icao_airport_heliport/api.py new file mode 100644 index 0000000000000000000000000000000000000000..30c5db462af1b7219a2aea6c3520343c8e13c692 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/iata_icao_airport_heliport/api.py @@ -0,0 +1,86 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_distance(xlongitude: int, xlatitude: int, stype: str='LARGE_AIRPORT,MEDIUM_AIRPORT', ndistance: int=30, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search airports arround a geo point. + Specify Latitude, Longitude. You can specify a distance, by default it's 30km arround." + stype: You can shoose what airports you want to liste : +one or more values separated by coma : +SMALL_AIRPORT +MEDIUM_AIRPORT +LARGE_AIRPORT +CLOSED +SEAPLANE_BASE +BALLOONPORT +HELIPORT + + """ + url = f"https://iata-icao-airport-heliport.p.rapidapi.com/searchproxiairport/{xlatitude}/{xlongitude}/{ndistance}/{stype}" + querystring = {} + if stype: + querystring['sType'] = stype + if ndistance: + querystring['nDistance'] = ndistance + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "iata-icao-airport-heliport.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search airport by ICAO code" + + """ + url = f"https://iata-icao-airport-heliport.p.rapidapi.com/searchcodeicao/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "iata-icao-airport-heliport.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_by_iata_code(iata: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search airport by IATA code" + iata: Airport IATA Code (3 letters) + + """ + url = f"https://iata-icao-airport-heliport.p.rapidapi.com/searchcodeiata/{iata}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "iata-icao-airport-heliport.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/indian_vehicle_info_by_vehicle_registration_number.json b/toolbench/toolenv/tools/Transportation/indian_vehicle_info_by_vehicle_registration_number.json new file mode 100644 index 0000000000000000000000000000000000000000..8825ff3c3f6881f5551345867f35a78e37dd9e96 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/indian_vehicle_info_by_vehicle_registration_number.json @@ -0,0 +1,82 @@ +{ + "tool_name":"Indian Vehicle Info (By Vehicle Registration Number)", + "tool_description":"Get Vehicle Information, by entering vehicle registration number. get all Indian vehicle info.\nINDIAN Vehicle INFO API", + "title":"Indian Vehicle Info (By Vehicle Registration Number)", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1278, + "avgSuccessRate":100, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/rahilkhan224/api/indian-vehicle-info-by-vehicle-registration-number/", + "host":"indian-vehicle-info-by-vehicle-registration-number.p.rapidapi.com", + "api_list":[ + { + "name":"Get Vehicle Info", + "url":"https://indian-vehicle-info-by-vehicle-registration-number.p.rapidapi.com/products/Master/GetVehicleDetails", + "description":"Get vehicle info by entering the required parameters.", + "method":"GET", + "required_parameters":[ + { + "name":"RegNumber", + "type":"STRING", + "description":"", + "default":"mh08ar6885" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://indian-vehicle-info-by-vehicle-registration-number.p.rapidapi.com/products/Master/GetVehicleDetails\"\nquerystring = {\"RegNumber\": regnumber}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"indian-vehicle-info-by-vehicle-registration-number.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "statusCode":200, + "message":"successfully fetched", + "data":{ + "brand_image_url":"https://img.gaadicdn.com/images/mycar/car_Toyota.png", + "car_image":"https://img.gaadicdn.com/images/car-images/large/Toyota/Toyota-Innova/1174/1544512362262/front-left-side-47.jpg", + "central_make_id":13, + "central_model_id":368, + "central_variant_id":2277, + "color":"SUPER WHITE", + "engine_no":"2KDU796392", + "fitness_upto":"", + "fuel_norms":"EURO 3", + "fuel_type":"DIESEL", + "insurance_upto":"2023-04-05", + "make":"Toyota", + "makeId":38, + "modelId":343, + "modelName":"Innova", + "owner_count":2, + "owner_name":"RATIRAM JAT", + "period":2015, + "registering_authority":"JAIPUR (JHALANA) RTO, RAJASTHAN", + "registration_date":"2015-10-15", + "registration_number":"RJ14TD2823", + "rto":"JAIPUR (JHALANA) RTO, RAJASTHAN", + "userName":"RATIRAM JAT", + "variant_id":5438, + "variant_name":"2.5 G (Diesel) 7 Seater BS IV", + "vehicle_class":"Motor Cab(LPV)", + "year_id":22626, + "inspectionData":null + } + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "apigw-requestid":"dynS1gL6SK4EMoQ=", + "content-length":"914", + "content-type":"application/json; charset=utf-8", + "date":"Tue, 27 Dec 2022 05:42:07 GMT", + "etag":"W/\"392-WsWQkiDaZMDTcXHzHApufUpaZjE\"", + "server":"RapidAPI-1.2.8", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/indian_vehicle_info_by_vehicle_registration_number/api.py b/toolbench/toolenv/tools/Transportation/indian_vehicle_info_by_vehicle_registration_number/api.py new file mode 100644 index 0000000000000000000000000000000000000000..199e0cd4315094002420f66e96ead44f0434b1e7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/indian_vehicle_info_by_vehicle_registration_number/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_vehicle_info(regnumber: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get vehicle info by entering the required parameters." + + """ + url = f"https://indian-vehicle-info-by-vehicle-registration-number.p.rapidapi.com/products/master/getvehicledetails" + querystring = {'RegNumber': regnumber, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "indian-vehicle-info-by-vehicle-registration-number.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/infocarsapi.json b/toolbench/toolenv/tools/Transportation/infocarsapi.json new file mode 100644 index 0000000000000000000000000000000000000000..6e15f98298be74e0d3a40cdf43afae5619131257 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/infocarsapi.json @@ -0,0 +1,117 @@ +{ + "tool_name":"InfoCarsAPI", + "tool_description":"Access detailed car data and captivating visuals effortlessly.", + "title":"InfoCarsAPI", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":48, + "avgLatency":11318, + "avgSuccessRate":48, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/gonzalosebastian20002/api/infocarsapi/", + "host":"infocarsapi.p.rapidapi.com", + "api_list":[ + { + "name":"Get Car Data", + "url":"https://infocarsapi.p.rapidapi.com/cars/{maker}/{model}/{year}", + "description":"You can get specifications, pictures and the average pricing of a car", + "method":"GET", + "required_parameters":[ + { + "name":"model", + "type":"string", + "description":"", + "default":"chiron" + }, + { + "name":"year", + "type":"string", + "description":"", + "default":"2021" + }, + { + "name":"maker", + "type":"string", + "description":"", + "default":"bugatti" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://infocarsapi.p.rapidapi.com/cars/{maker}/{model}/{year}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"infocarsapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Get Car Versions", + "url":"https://infocarsapi.p.rapidapi.com/cars/{maker}/{model}", + "description":"Get the different versions of a car model", + "method":"GET", + "required_parameters":[ + { + "name":"model", + "type":"string", + "description":"", + "default":"chiron" + }, + { + "name":"maker", + "type":"string", + "description":"", + "default":"bugatti" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://infocarsapi.p.rapidapi.com/cars/{maker}/{model}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"infocarsapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Get Car Models", + "url":"https://infocarsapi.p.rapidapi.com/cars/{maker}", + "description":"This endpoint will return back all the models of a respective car maker", + "method":"GET", + "required_parameters":[ + { + "name":"maker", + "type":"string", + "description":"", + "default":"Bugatti" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://infocarsapi.p.rapidapi.com/cars/{maker}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"infocarsapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Get Car Makers", + "url":"https://infocarsapi.p.rapidapi.com/cars", + "description":"This endpoint will return back all car makers supported.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://infocarsapi.p.rapidapi.com/cars\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"infocarsapi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/infocarsapi/api.py b/toolbench/toolenv/tools/Transportation/infocarsapi/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6031d3331e58a4c5e1bc7083675a8eff7dba21da --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/infocarsapi/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_car_data(model: str, year: str, maker: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "You can get specifications, pictures and the average pricing of a car" + + """ + url = f"https://infocarsapi.p.rapidapi.com/cars/{maker}/{model}/{year}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "infocarsapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_car_versions(model: str, maker: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the different versions of a car model" + + """ + url = f"https://infocarsapi.p.rapidapi.com/cars/{maker}/{model}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "infocarsapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_car_models(maker: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return back all the models of a respective car maker" + + """ + url = f"https://infocarsapi.p.rapidapi.com/cars/{maker}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "infocarsapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_car_makers(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will return back all car makers supported." + + """ + url = f"https://infocarsapi.p.rapidapi.com/cars" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "infocarsapi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/informazioni_targhe.json b/toolbench/toolenv/tools/Transportation/informazioni_targhe.json new file mode 100644 index 0000000000000000000000000000000000000000..8b44af40304c4db36fa3330c391ce84210d0e7ff --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/informazioni_targhe.json @@ -0,0 +1,125 @@ +{ + "tool_name": "Informazioni Targhe", + "tool_description": "RCA Targhe Auto e Moto italiane", + "title": "Informazioni Targhe", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 325, + "avgSuccessRate": 100, + "popularityScore": 8.8, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/dynamic-solutions-dynamic-solutions-default/api/informazioni-targhe/", + "host": "informazioni-targhe.p.rapidapi.com", + "api_list": [ + { + "name": "Controlla stato elaborazione job", + "url": "https://informazioni-targhe.p.rapidapi.com/job/status", + "description": "Controlla lo stato di elaborazione di un job creato", + "method": "GET", + "required_parameters": [ + { + "name": "job", + "type": "STRING", + "description": "", + "default": "3046849263c9b8c60761075bc25e99805ef167ae" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://informazioni-targhe.p.rapidapi.com/job/status\"\nquerystring = {\"job\": job}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"informazioni-targhe.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "completed": true, + "pending": 0 + }, + "headers": { + "content-type": "application/json" + }, + "schema": {} + }, + { + "name": "Recupera risultato elaborazione job", + "url": "https://informazioni-targhe.p.rapidapi.com/job/retrieve", + "description": "Ottieni i dati risultanti dall'elaborazione delle targhe inviate", + "method": "GET", + "required_parameters": [ + { + "name": "job", + "type": "STRING", + "description": "", + "default": "3046849263c9b8c60761075bc25e99805ef167ae" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://informazioni-targhe.p.rapidapi.com/job/retrieve\"\nquerystring = {\"job\": job}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"informazioni-targhe.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": [ + { + "targa": "CD123YZ", + "op": "rca", + "data": { + "tipoVeicolo": "A", + "targaVeicolo": "CD123YZ", + "descrizioneTipoVeicolo": "AUTOVEICOLO", + "compagniaAssicurativa": [], + "numeroPolizza": [], + "assicurazionePresente": "false", + "dataScadenzaPolizza": [], + "dataScadenzaCompartoPolizza": [] + }, + "completed": true + }, + { + "targa": "AB123XY", + "op": "rca", + "data": { + "tipoVeicolo": "A", + "targaVeicolo": "AB123XY", + "descrizioneTipoVeicolo": "AUTOVEICOLO", + "compagniaAssicurativa": [], + "numeroPolizza": [], + "assicurazionePresente": "false", + "dataScadenzaPolizza": [], + "dataScadenzaCompartoPolizza": [] + }, + "completed": true + } + ], + "headers": { + "content-type": "application/json" + }, + "schema": {} + }, + { + "name": "Creazione Job da lista targhe", + "url": "https://informazioni-targhe.p.rapidapi.com/job/submit", + "description": "Invia una lista di targhe da controllare", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://informazioni-targhe.p.rapidapi.com/job/submit\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"informazioni-targhe.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "job_id": "3046849263c9b8c60761075bc25e99805ef167ae" + }, + "headers": { + "content-type": "application/json" + }, + "schema": {} + }, + { + "name": "Creazione Job da lista targhe", + "url": "https://informazioni-targhe.p.rapidapi.com/job/submit", + "description": "Invia una lista di targhe da controllare", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://informazioni-targhe.p.rapidapi.com/job/submit\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"informazioni-targhe.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://informazioni-targhe.p.rapidapi.com/job/submit\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"informazioni-targhe.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/informazioni_targhe/api.py b/toolbench/toolenv/tools/Transportation/informazioni_targhe/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8aa3d2e9cbbbc3f32aef754c77a3d1b0a53df8bd --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/informazioni_targhe/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def controlla_stato_elaborazione_job(job: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Controlla lo stato di elaborazione di un job creato" + + """ + url = f"https://informazioni-targhe.p.rapidapi.com/job/status" + querystring = {'job': job, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "informazioni-targhe.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def recupera_risultato_elaborazione_job(job: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Ottieni i dati risultanti dall'elaborazione delle targhe inviate" + + """ + url = f"https://informazioni-targhe.p.rapidapi.com/job/retrieve" + querystring = {'job': job, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "informazioni-targhe.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/interline_global_valhalla_navigation_and_routing_engine.json b/toolbench/toolenv/tools/Transportation/interline_global_valhalla_navigation_and_routing_engine.json new file mode 100644 index 0000000000000000000000000000000000000000..0f3b539459f5cc9ea11fc4df4238a23f310944bc --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/interline_global_valhalla_navigation_and_routing_engine.json @@ -0,0 +1,357 @@ +{ + "tool_name": "Interline Global Valhalla Navigation and Routing Engine", + "tool_description": "Global routing and navigation APIs powered by OpenStreetMap", + "title": "Interline Global Valhalla Navigation and Routing Engine", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 100, + "avgLatency": 124, + "avgSuccessRate": 99, + "popularityScore": 8.8, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/interline-technologies-interline-technologies-default/api/interline-global-valhalla-navigation-and-routing-engine/", + "host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com", + "api_list": [ + { + "name": "traceRouteGet", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route", + "description": "The trace_route action takes the costing mode and a list of latitude,longitude coordinates, for example, from a GPS trace, to turn them into a route with the shape snapped to the road network and a set of guidance directions. You might use this to take a GPS trace from a bike route into a set of narrative instructions so you can re-create your trip or share it with others. See https://valhalla.readthedocs.io/en/latest/map-matching/api-reference.md#example-map-matching-requests", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "traceRoutePost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route", + "description": "The trace_route action takes the costing mode and a list of latitude,longitude coordinates, for example, from a GPS trace, to turn them into a route with the shape snapped to the road network and a set of guidance directions. You might use this to take a GPS trace from a bike route into a set of narrative instructions so you can re-create your trip or share it with others. See https://valhalla.readthedocs.io/en/latest/map-matching/api-reference.md#example-map-matching-requests", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "elevation", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/height", + "description": "Valhalla's elevation lookup service provides digital elevation model (DEM) data as the result of a query. The elevation service data has many applications when combined with other routing and navigation data, including computing the steepness of roads and paths or generating an elevation profile chart along a route. See https://valhalla.readthedocs.io/en/latest/elevation/api-reference.md", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/height\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "routeGet", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route", + "description": "Valhalla's routing service (a.k.a. turn-by-turn), is an open-source routing service that lets you integrate routing and navigation into a web or mobile application. See https://valhalla.readthedocs.io/en/latest/turn-by-turn/api-reference.md", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "routePost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route", + "description": "Valhalla's routing service (a.k.a. turn-by-turn), is an open-source routing service that lets you integrate routing and navigation into a web or mobile application. See https://valhalla.readthedocs.io/en/latest/turn-by-turn/api-reference.md", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "optimized_route", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/optimized_route", + "description": "The Optimized Route service provides a quick computation of time and distance between a set of location sources and location targets and returns them in an optimized route order, along with the shape. See https://valhalla.readthedocs.io/en/latest/optimized/api-reference.md", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/optimized_route\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "traceAttributesGet", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes", + "description": "The trace_attributes action takes the costing mode and a GPS trace or latitude,longitude positions and returns detailed attribution along the portion of the route. This includes details for each section of road along the path, as well as any intersections along the path. See https://valhalla.readthedocs.io/en/latest/api/map-matching/api-reference/#trace-attributes-action", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "traceAttributesPost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes", + "description": "The trace_attributes action takes the costing mode and a GPS trace or latitude,longitude positions and returns detailed attribution along the portion of the route. This includes details for each section of road along the path, as well as any intersections along the path. See https://valhalla.readthedocs.io/en/latest/map-matching/api-reference.md#example-trace_attributes-requests", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "matrixPost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets", + "description": "Valhalla's time-distance matrix service provides a quick computation of time and distance between a set of locations and returns them to you in the resulting matrix table. See https://valhalla.readthedocs.io/en/latest/matrix/api-reference.md", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "matrixGet", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets", + "description": "Valhalla's time-distance matrix service provides a quick computation of time and distance between a set of locations and returns them to you in the resulting matrix table. See https://valhalla.readthedocs.io/en/latest/matrix/api-reference.md", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "locate", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/locate", + "description": "Valhalla's locate service, is an open-source service that provides detailed information about streets and intersections close to an input point with some added matching criteria. This allows for tight integration in routing and navigation applications on web or mobile. See https://valhalla.readthedocs.io/en/latest/locate/api-reference.md", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/locate\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "isochrone", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/isochrone", + "description": "An isochrone is a line that connects points of equal travel time about a given location, from the Greek roots of iso for equal and chrone for time. Valhalla's isochrone service computes areas that are reachable within specified time intervals from a location, and returns the reachable regions as contours of polygons or lines that you can display on a map. See https://valhalla.readthedocs.io/en/latest/isochrone/api-reference.md", + "method": "GET", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/isochrone\"\nquerystring = {\"json\": json}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "traceRoutePost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route", + "description": "The trace_route action takes the costing mode and a list of latitude,longitude coordinates, for example, from a GPS trace, to turn them into a route with the shape snapped to the road network and a set of guidance directions. You might use this to take a GPS trace from a bike route into a set of narrative instructions so you can re-create your trip or share it with others. See https://valhalla.readthedocs.io/en/latest/map-matching/api-reference.md#example-map-matching-requests", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "elevation", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/height", + "description": "Valhalla's elevation lookup service provides digital elevation model (DEM) data as the result of a query. The elevation service data has many applications when combined with other routing and navigation data, including computing the steepness of roads and paths or generating an elevation profile chart along a route. See https://valhalla.readthedocs.io/en/latest/elevation/api-reference.md", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/height\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/height\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "routePost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route", + "description": "Valhalla's routing service (a.k.a. turn-by-turn), is an open-source routing service that lets you integrate routing and navigation into a web or mobile application. See https://valhalla.readthedocs.io/en/latest/turn-by-turn/api-reference.md", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "traceAttributesPost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes", + "description": "The trace_attributes action takes the costing mode and a GPS trace or latitude,longitude positions and returns detailed attribution along the portion of the route. This includes details for each section of road along the path, as well as any intersections along the path. See https://valhalla.readthedocs.io/en/latest/map-matching/api-reference.md#example-trace_attributes-requests", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "matrixPost", + "url": "https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets", + "description": "Valhalla's time-distance matrix service provides a quick computation of time and distance between a set of locations and returns them to you in the resulting matrix table. See https://valhalla.readthedocs.io/en/latest/matrix/api-reference.md", + "method": "POST", + "required_parameters": [ + { + "name": "json", + "type": "STRING", + "description": "JSON payload for the routing engine request. See documentation for the possible contents.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets\"\nquerystring = {\"json\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/interline_global_valhalla_navigation_and_routing_engine/api.py b/toolbench/toolenv/tools/Transportation/interline_global_valhalla_navigation_and_routing_engine/api.py new file mode 100644 index 0000000000000000000000000000000000000000..137fe0ddcfa4ad506c9d1d034702598d08fb6015 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/interline_global_valhalla_navigation_and_routing_engine/api.py @@ -0,0 +1,162 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def tracerouteget(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The trace_route action takes the costing mode and a list of latitude,longitude coordinates, for example, from a GPS trace, to turn them into a route with the shape snapped to the road network and a set of guidance directions. You might use this to take a GPS trace from a bike route into a set of narrative instructions so you can re-create your trip or share it with others. See https://valhalla.readthedocs.io/en/latest/map-matching/api-reference.md#example-map-matching-requests" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_route" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def routeget(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Valhalla's routing service (a.k.a. turn-by-turn), is an open-source routing service that lets you integrate routing and navigation into a web or mobile application. See https://valhalla.readthedocs.io/en/latest/turn-by-turn/api-reference.md" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/route" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def optimized_route(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The Optimized Route service provides a quick computation of time and distance between a set of location sources and location targets and returns them in an optimized route order, along with the shape. See https://valhalla.readthedocs.io/en/latest/optimized/api-reference.md" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/optimized_route" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def traceattributesget(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The trace_attributes action takes the costing mode and a GPS trace or latitude,longitude positions and returns detailed attribution along the portion of the route. This includes details for each section of road along the path, as well as any intersections along the path. See https://valhalla.readthedocs.io/en/latest/api/map-matching/api-reference/#trace-attributes-action" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/trace_attributes" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def matrixget(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Valhalla's time-distance matrix service provides a quick computation of time and distance between a set of locations and returns them to you in the resulting matrix table. See https://valhalla.readthedocs.io/en/latest/matrix/api-reference.md" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/sources_to_targets" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def locate(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Valhalla's locate service, is an open-source service that provides detailed information about streets and intersections close to an input point with some added matching criteria. This allows for tight integration in routing and navigation applications on web or mobile. See https://valhalla.readthedocs.io/en/latest/locate/api-reference.md" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/locate" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def isochrone(json: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "An isochrone is a line that connects points of equal travel time about a given location, from the Greek roots of iso for equal and chrone for time. Valhalla's isochrone service computes areas that are reachable within specified time intervals from a location, and returns the reachable regions as contours of polygons or lines that you can display on a map. See https://valhalla.readthedocs.io/en/latest/isochrone/api-reference.md" + json: JSON payload for the routing engine request. See documentation for the possible contents. + + """ + url = f"https://interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com/isochrone" + querystring = {'json': json, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "interline-global-valhalla-navigation-and-routing-engine.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/lecteurimmat.json b/toolbench/toolenv/tools/Transportation/lecteurimmat.json new file mode 100644 index 0000000000000000000000000000000000000000..66416cf55ae600cce1124fb7f3a8e91bc4d8a3ff --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/lecteurimmat.json @@ -0,0 +1,45 @@ +{ + "tool_name":"LecteurImmat", + "tool_description":"API d'extraction de plaques immatriculations françaises à partir d'une image", + "title":"LecteurImmat", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/nchallioui/api/lecteurimmat/", + "host":"lecteurimmat.p.rapidapi.com", + "api_list":[ + { + "name":"plate", + "url":"https://lecteurimmat.p.rapidapi.com/plate", + "description":"Get plate number from image", + "method":"GET", + "required_parameters":[ + { + "name":"image_url", + "type":"STRING", + "description":"", + "default":"https://www.neozone.org/blog/wp-content/uploads/2021/02/plaque-voiture-france-001-780x470.jpg" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://lecteurimmat.p.rapidapi.com/plate\"\nquerystring = {\"image_url\": image_url}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lecteurimmat.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + "CH-242-GP" + ], + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"", + "connection":"keep-alive", + "content-length":"13", + "content-type":"application/json", + "date":"Fri, 01 Oct 2021 13:28:51 GMT", + "server":"RapidAPI-1.2.8", + "x-cloud-trace-context":"056306a547cc76c4832d8ba4dc243542;o=1", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/lecteurimmat/api.py b/toolbench/toolenv/tools/Transportation/lecteurimmat/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1644f2d364dfb6189bd4627bc1d83540e5c9bb84 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/lecteurimmat/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def plate(image_url: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get plate number from image" + + """ + url = f"https://lecteurimmat.p.rapidapi.com/plate" + querystring = {'image_url': image_url, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "lecteurimmat.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/london_tower_bridge_lifting_times.json b/toolbench/toolenv/tools/Transportation/london_tower_bridge_lifting_times.json new file mode 100644 index 0000000000000000000000000000000000000000..0129e648ddb96c5b46839883b69ee238adff45a5 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/london_tower_bridge_lifting_times.json @@ -0,0 +1,24 @@ +{ + "tool_name":"London Tower Bridge Lifting Times", + "tool_description":"Get the latest Tower Bridge lifting times", + "title":"London Tower Bridge Lifting Times", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/whiteshirt-whiteshirt-default/api/london-tower-bridge-lifting-times/", + "host":"london-tower-bridge-lifting-times.p.rapidapi.com", + "api_list":[ + { + "name":"Get ICS calander file for all available dates", + "url":"https://london-tower-bridge-lifting-times.p.rapidapi.com/getics", + "description":"Get ICS calander file for all available dates", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://london-tower-bridge-lifting-times.p.rapidapi.com/getics\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"london-tower-bridge-lifting-times.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/london_tower_bridge_lifting_times/api.py b/toolbench/toolenv/tools/Transportation/london_tower_bridge_lifting_times/api.py new file mode 100644 index 0000000000000000000000000000000000000000..be7359bb0e7667b070aafb4e397219c7ed63f9bd --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/london_tower_bridge_lifting_times/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_ics_calander_file_for_all_available_dates(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get ICS calander file for all available dates" + + """ + url = f"https://london-tower-bridge-lifting-times.p.rapidapi.com/getics" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "london-tower-bridge-lifting-times.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/lookupaplate_usa.json b/toolbench/toolenv/tools/Transportation/lookupaplate_usa.json new file mode 100644 index 0000000000000000000000000000000000000000..cc50b41abdb08878a6a524acfe1f2303f92adec0 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/lookupaplate_usa.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_03eb64b4-b5ee-45b0-8cc5-613fc639be02", + "tool_description": "Find vehicle data by license plate in the USA. Covers 150M records. ", + "home_url": "https://rapidapi.com/lookupaplate/api/lookupaplate-usa/", + "name": "LookupAPlate USA", + "title": "LookupAPlate USA", + "pricing": "FREEMIUM", + "tool_name": "LookupAPlate USA", + "score": { + "avgServiceLevel": 100, + "avgLatency": 348, + "avgSuccessRate": 29, + "popularityScore": 2, + "__typename": "Score" + }, + "host": "lookupaplate-usa.p.rapidapi.com", + "api_list": [ + { + "name": "License Plate Lookup", + "url": "https://lookupaplate-usa.p.rapidapi.com/license-plate", + "description": "This endpoint provides the details about a license plate, such as the VIN number and information about the vehicle's make, model, and year.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://lookupaplate-usa.p.rapidapi.com/license-plate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lookupaplate-usa.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://lookupaplate-usa.p.rapidapi.com/license-plate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"lookupaplate-usa.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/metro_card.json b/toolbench/toolenv/tools/Transportation/metro_card.json new file mode 100644 index 0000000000000000000000000000000000000000..08cd8d89e5815087177fa5dc92f96028ac63719a --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/metro_card.json @@ -0,0 +1,152 @@ +{ + "product_id": "api_0ddc5912-57ee-4580-8bf0-5f0c1ecf0cfc", + "tool_description": "REST API custom made for Kenyan matatus to help owners collect fares from passengers directly. With each user and owner having wallet, which is toped up using M-PESA", + "home_url": "https://rapidapi.com/kahenyaa/api/metro-card/", + "name": "Metro Card", + "title": "Metro Card", + "pricing": "FREEMIUM", + "tool_name": "Metro Card", + "score": null, + "host": "metro-card.p.rapidapi.com", + "api_list": [ + { + "name": "Crew \u2013 Add Bookmark", + "url": "https://metro-card.p.rapidapi.com/crew/bookmark", + "description": "Crew \u2013 Add Bookmark", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/bookmark\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/bookmark\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Owner \u2013 Add Vehicle", + "url": "https://metro-card.p.rapidapi.com/owner/add-vehicle", + "description": "Owner \u2013 Add Vehicle", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/add-vehicle\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/add-vehicle\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Owner \u2013 Withdraw", + "url": "https://metro-card.p.rapidapi.com/owner/withdraw", + "description": "Owner \u2013 Withdraw", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/withdraw\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/withdraw\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Owner \u2013 Register", + "url": "https://metro-card.p.rapidapi.com/owner/register", + "description": "Owner \u2013 Register", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Owner \u2013 Login", + "url": "https://metro-card.p.rapidapi.com/owner/login", + "description": "Owner \u2013 Login", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/owner/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Crew \u2013 Pay using Bookmark", + "url": "https://metro-card.p.rapidapi.com/crew/bookmark/{id}", + "description": "Crew \u2013 Pay using Bookmark", + "method": "POST", + "required_parameters": [ + { + "name": "id", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/bookmark/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/bookmark/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Crew \u2013 Login", + "url": "https://metro-card.p.rapidapi.com/crew/login", + "description": "Crew \u2013 Login", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Crew - Register", + "url": "https://metro-card.p.rapidapi.com/crew/register", + "description": "Crew - Register", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/crew/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Pass \u2013 Pay", + "url": "https://metro-card.p.rapidapi.com/pass/pay", + "description": "Pass \u2013 Pay", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/pay\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/pay\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Pass \u2013 Top Up", + "url": "https://metro-card.p.rapidapi.com/pass/topup", + "description": "Pass \u2013 Top Up", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/topup\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/topup\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Pass \u2013 Login", + "url": "https://metro-card.p.rapidapi.com/pass/login", + "description": "Pass \u2013 Login", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Pass \u2013 Register", + "url": "https://metro-card.p.rapidapi.com/pass/register", + "description": "Passenger Register", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://metro-card.p.rapidapi.com/pass/register\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"metro-card.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/metro_card/api.py b/toolbench/toolenv/tools/Transportation/metro_card/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c7de5b6b44ef0ab63ebc5c1e852949c11fad6b9d --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/metro_card/api.py @@ -0,0 +1,344 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def owner_view_payments_per_car(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – View Payments Per Car" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/vehicle/payment/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def owner_all_withdraw(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – All Withdraw" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/all-withdraws" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def owner_all_deposits(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – All Deposits" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/all-deposits" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def owner_balance(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – Balance" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/balance" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def owner_view_vehicle(reg_no: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – View Vehicle" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/vehicle" + querystring = {'reg_no': reg_no, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def owner_view_all_vehicle(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – View All Vehicle" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/vehicles" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def owner_profile(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Owner – Profile" + + """ + url = f"https://metro-card.p.rapidapi.com/owner/profile" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def crew_view_payments_per_car(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Crew – View Payments Per Car" + + """ + url = f"https://metro-card.p.rapidapi.com/crew/payments/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def crew_view_all_payments(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Crew – View All Payments" + + """ + url = f"https://metro-card.p.rapidapi.com/crew/payments" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def crew_view_all_bookmark(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Crew – View All Bookmark" + + """ + url = f"https://metro-card.p.rapidapi.com/crew/bookmark" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def crew_view_bookmark(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Crew – View Bookmark" + + """ + url = f"https://metro-card.p.rapidapi.com/crew/bookmark/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def crew_profile(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Crew – Profile" + + """ + url = f"https://metro-card.p.rapidapi.com/crew/profile" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def pass_balance(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass – Balance" + + """ + url = f"https://metro-card.p.rapidapi.com/pass/balance" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def pass_all_top_ups(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass – All Top Ups" + + """ + url = f"https://metro-card.p.rapidapi.com/pass/all-topup" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def pass_all_payments(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass – All Payments" + + """ + url = f"https://metro-card.p.rapidapi.com/pass/all-payments" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def pass_profile(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass - Profile" + + """ + url = f"https://metro-card.p.rapidapi.com/pass/profile" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "metro-card.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/motorcycles_by_api_ninjas.json b/toolbench/toolenv/tools/Transportation/motorcycles_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..be24552467f99ae7b635f69d7189ae10373eec72 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/motorcycles_by_api_ninjas.json @@ -0,0 +1,55 @@ +{ + "tool_name":"Motorcycles by API-Ninjas", + "tool_description":"Detailed technical specifications on tens of thousands of motorcycle models. See more info at https://api-ninjas.com/api/motorcycles.", + "title":"Motorcycles by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":682, + "avgSuccessRate":95, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/motorcycles-by-api-ninjas/", + "host":"motorcycles-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/motorcycles", + "url":"https://motorcycles-by-api-ninjas.p.rapidapi.com/v1/motorcycles", + "description":"API Ninjas Motorcycles API endpoint. Returns up to 30 motorcycle results matching the input name parameters. For searches that yield > 30 results, please use the offset parameter.\n\nEither **make** or **model** parameter must be set.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"model", + "type":"STRING", + "description":"name of motorcycle model. Supports partial matching (e.g. Ninja will match Ninja 650).", + "default":"Ninja" + }, + { + "name":"offset", + "type":"NUMBER", + "description":"number of results to offset for pagination. Default is 0.", + "default":"" + }, + { + "name":"make", + "type":"STRING", + "description":"name of manufacturer/brand. Supports partial matching (e.g. Harley will match Harley-Davidson).", + "default":"Kawasaki" + }, + { + "name":"year", + "type":"STRING", + "description":"release year of motorcycle model. Must be in the form of YYYY (e.g. 2022).", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://motorcycles-by-api-ninjas.p.rapidapi.com/v1/motorcycles\"\nquerystring = {\"model\": model, \"make\": make}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"motorcycles-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/motorcycles_by_api_ninjas/api.py b/toolbench/toolenv/tools/Transportation/motorcycles_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..646a0a80f9e78ab8d10febb94bfbfabfb66f9a2f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/motorcycles_by_api_ninjas/api.py @@ -0,0 +1,43 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_motorcycles(model: str='Ninja', offset: int=None, make: str='Kawasaki', year: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas Motorcycles API endpoint. Returns up to 30 motorcycle results matching the input name parameters. For searches that yield > 30 results, please use the offset parameter. + + Either **make** or **model** parameter must be set." + model: name of motorcycle model. Supports partial matching (e.g. Ninja will match Ninja 650). + offset: number of results to offset for pagination. Default is 0. + make: name of manufacturer/brand. Supports partial matching (e.g. Harley will match Harley-Davidson). + year: release year of motorcycle model. Must be in the form of YYYY (e.g. 2022). + + """ + url = f"https://motorcycles-by-api-ninjas.p.rapidapi.com/v1/motorcycles" + querystring = {} + if model: + querystring['model'] = model + if offset: + querystring['offset'] = offset + if make: + querystring['make'] = make + if year: + querystring['year'] = year + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "motorcycles-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/nederland_license_plate_decoder.json b/toolbench/toolenv/tools/Transportation/nederland_license_plate_decoder.json new file mode 100644 index 0000000000000000000000000000000000000000..f18a9bc302b521ae398daefa50a398106081b014 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/nederland_license_plate_decoder.json @@ -0,0 +1,111 @@ +{ + "tool_name":"Nederland License Plate Decoder", + "tool_description":"The Nederland License Plate Decoder API allows you to retrieve detailed information about vehicles by decoding their license plates. By providing a license plate number, this API offers access to a wide range of vehicle details, including the full vehicle name, hybrid class, fuel type, CO2 emissions (WLTP and NEDC), maximum speed, horsepower and other relevant data. With this API, you can easily gather comprehensive information about Nederland-registered vehicles based on their license plate ...", + "title":"Nederland License Plate Decoder", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/med123/api/nederland-license-plate-decoder/", + "host":"nederland-license-plate-decoder.p.rapidapi.com", + "api_list":[ + { + "name":"plate_number", + "url":"https://nederland-license-plate-decoder.p.rapidapi.com/{language}/{plate_number}", + "description":"plate number decoder", + "method":"GET", + "required_parameters":[ + { + "name":"language", + "type":"string", + "description":"", + "default":"nl" + }, + { + "name":"plate_number", + "type":"string", + "description":"", + "default":"N832NJ" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://nederland-license-plate-decoder.p.rapidapi.com/{language}/{plate_number}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"nederland-license-plate-decoder.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "Kentekenplaat":"N832NJ", + "Merk":"Toyota", + "Model":"Toyota Yaris Hybrid", + "Handelsbenaming":"Toyota Yaris Hybrid", + "Type":"XP13M(A)", + "Variant":"NHP13(MH)", + "Uitvoering":"NHP130L-CHXNBW(1J)", + "Typegoedkeuringsnummer":"E11*2007/46*0152*08", + "Fabrikant":"Toyota Motor Europe Nv/sa", + "Soort":"Auto", + "Inrichting":"Mpv", + "Kleur":"Wit", + "Catalogusprijs":"E 19.539", + "BpmTarief":"E 500", + "DatumEersteToelating":"03-08-2016", + "DatumAfgifteNederland":"20-01-2022", + "DatumLaatsteTenaamstelling":"20-01-2022", + "ApkVervaldatum":"18-01-2024", + "Terugroepactie":"Nee", + "Verzekerd":"Ja", + "Geïmporteerd":"Ja", + "Geëxporteerd":"Nee", + "Taxi":"Nee", + "Motorcode":"1NZ", + "AantalCilinders":"4", + "Cilinderinhoud":"1.497 cm*3", + "Topsnelheid":"165 km/u", + "SnelheidBeperking":"165 km/u", + "Versnellingsbak":"Continu variabele transmissie", + "Brandstof-nummer":"1", + "Brandstof":"Benzine-Elektriciteit", + "Emissieklasse":"6", + "HybrideKlasse":"NOVC-HEV", + "Vermogen":"54,00 kW (74 pk)", + "BrandstofverbruikInStadNedc":"3,1 liter/100 km (32,3 km/liter)", + "BrandstofverbruikOpSnelwegNedc":"3,3 liter/100 km (30,3 km/liter)", + "BrandstofverbruikGecombineerdNedc":"3,3 liter/100 km (30,3 km/liter)", + "Co2-uitstootGecombineerdNedc":"75 g/km", + "MilieuklasseLicht":"715/2007*2015/45w", + "GeluidsniveauRijdend":"73 dB(A)", + "GeluidsniveauStationair":"74 dB(A)", + "GeluidsniveauToerental":"2.500 dB(A)", + "NominaalContinuElektrischVermogen":"10,10 kW (14 pk)", + "AantalZitplaatsen":"5", + "AantalWielen":"4", + "AantalDeuren":"4", + "Carrosserie-nummer":"1", + "Categorie":"M1", + "TypeOmschrijving":"Mpv", + "Lengte":"395 cm", + "Breedte":"170 cm", + "Wielbasis":"251 cm", + "LeegGewicht":"1.060 kg", + "RijklaarGewicht":"1.160 kg", + "TechnischLimietMassa":"1.565 kg", + "WettelijkLimietMassa":"1.565 kg", + "MaximumMassaSamenstelling":"1.565 kg", + "As-nummer":"1", + "Plaatscode":"Voor", + "Aangedreven":"Ja", + "TechnischLimiet":"895 kg", + "WettelijkLimiet":"895 kg", + "Spoorbreedte":"149 cm" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"1862", + "content-type":"application/json", + "date":"Mon, 15 May 2023 13:36:49 GMT", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/nederland_license_plate_decoder/api.py b/toolbench/toolenv/tools/Transportation/nederland_license_plate_decoder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..488a287157973210262483cb152e6d20fa7b17a6 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/nederland_license_plate_decoder/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def plate_number(language: str, plate_number: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "plate number decoder" + + """ + url = f"https://nederland-license-plate-decoder.p.rapidapi.com/{language}/{plate_number}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "nederland-license-plate-decoder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/opennwi.json b/toolbench/toolenv/tools/Transportation/opennwi.json new file mode 100644 index 0000000000000000000000000000000000000000..737540632295c6728695c897300ab1127e7c8779 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/opennwi.json @@ -0,0 +1,134 @@ +{ + "tool_name":"OpenNWI", + "tool_description":"Search by address or zipcode access to walkability, cycling and public transit scores for a given area.", + "title":"OpenNWI", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":923, + "avgSuccessRate":100, + "popularityScore":8.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/tmm6907-9UaCoMqGQi/api/opennwi/", + "host":"opennwi.p.rapidapi.com", + "api_list":[ + { + "name":"GetScores", + "url":"https://opennwi.p.rapidapi.com/scores/", + "description":"Search for scores by address or zip code.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"address", + "type":"STRING", + "description":"", + "default":"1600 Pennsylvania Ave. NW Washington, DC 20500" + }, + { + "name":"limit", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"offset", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"zipcode", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"format", + "type":"STRING", + "description":"", + "default":"json" + } + ], + "code":"import requests\n\nurl = \"https://opennwi.p.rapidapi.com/scores/\"\nquerystring = {\"address\": address, \"format\": format}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"opennwi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "rankID":61619, + "geoid":110010062021, + "nwi":18, + "transitScore":20, + "bikeScore":17, + "searchedAddress":"1600 Pennsylvania Ave. NW Washington, DC 20500", + "format":"json" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"211", + "content-type":"application/json; charset=utf-8", + "date":"Sat, 01 Jul 2023 19:23:11 GMT", + "server":"RapidAPI-1.2.8", + "x-cloud-trace-context":"f1bbcc8443422ea7df6777451e9229f6;o=1", + "x-rapidapi-region":"AWS - us-east-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "geoid":{ + "type":"integer" + }, + "nwi":{ + "type":"integer" + }, + "regionalTransitUsagePercentage":{ + "type":"number" + }, + "regionalTransitUsage":{ + "type":"integer" + }, + "regionalBikeRidership":{ + "type":"integer" + }, + "searchedAddress":{ + "type":"string" + }, + "format":{ + "type":"string" + } + } + } + }, + { + "name":"GetScoreDetails", + "url":"https://opennwi.p.rapidapi.com/details/{id}", + "description":"Search score details by rankID.\n**Key**:\n- d2a: The mix of employment types and occupied housing.\n- d2b: The mix of employment types in a block group\n- d3b: Street intersection density\n- d4a: workers who carpool\n- bikeShareRank: Ranking (out of 20) for quality of public bikeshare services in the region", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"NUMBER", + "description":"", + "default":"115880" + } + ], + "optional_parameters":[ + { + "name":"fields", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://opennwi.p.rapidapi.com/details/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"opennwi.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/opennwi/api.py b/toolbench/toolenv/tools/Transportation/opennwi/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ab204be7c0192b153f51758fb3b3bab791873ea4 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/opennwi/api.py @@ -0,0 +1,68 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getscores(address: str='1600 Pennsylvania Ave. NW Washington, DC 20500', limit: int=None, offset: int=None, zipcode: str=None, format: str='json', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for scores by address or zip code." + + """ + url = f"https://opennwi.p.rapidapi.com/scores/" + querystring = {} + if address: + querystring['address'] = address + if limit: + querystring['limit'] = limit + if offset: + querystring['offset'] = offset + if zipcode: + querystring['zipcode'] = zipcode + if format: + querystring['format'] = format + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "opennwi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getscoredetails(is_id: int, fields: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search score details by rankID. + **Key**: + - d2a: The mix of employment types and occupied housing. + - d2b: The mix of employment types in a block group + - d3b: Street intersection density + - d4a: workers who carpool + - bikeShareRank: Ranking (out of 20) for quality of public bikeshare services in the region" + + """ + url = f"https://opennwi.p.rapidapi.com/details/{is_id}" + querystring = {} + if fields: + querystring['fields'] = fields + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "opennwi.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/pincode.json b/toolbench/toolenv/tools/Transportation/pincode.json new file mode 100644 index 0000000000000000000000000000000000000000..4301218a751350b7b023ce304b3411f494e3139a --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/pincode.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Pincode", + "tool_description":"Search all City, State, Country, and postoffice by pincode, INDIA", + "title":"Pincode", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":714, + "avgSuccessRate":100, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/rahilkhan224/api/pincode13/", + "host":"pincode13.p.rapidapi.com", + "api_list":[ + { + "name":"Find By Pincode", + "url":"https://pincode13.p.rapidapi.com/{pincode}", + "description":"Find By Pincode", + "method":"GET", + "required_parameters":[ + { + "name":"pincode", + "type":"string", + "description":"", + "default":"415612" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://pincode13.p.rapidapi.com/{pincode}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"pincode13.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/pincode/api.py b/toolbench/toolenv/tools/Transportation/pincode/api.py new file mode 100644 index 0000000000000000000000000000000000000000..556d6cd0207495c825e51aabea60b4abfdbe1a8d --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/pincode/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def find_by_pincode(pincode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find By Pincode" + + """ + url = f"https://pincode13.p.rapidapi.com/{pincode}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "pincode13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/plane_tracker.json b/toolbench/toolenv/tools/Transportation/plane_tracker.json new file mode 100644 index 0000000000000000000000000000000000000000..1f656cd21479d7e7874bc06040092373133717d9 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/plane_tracker.json @@ -0,0 +1,43 @@ +{ + "tool_name":"Plane tracker", + "tool_description":"Track a plane by using registration or ICAO address.", + "title":"Plane tracker", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":155, + "avgSuccessRate":0, + "popularityScore":0.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/dlunhappy226/api/plane-tracker/", + "host":"plane-tracker.p.rapidapi.com", + "api_list":[ + { + "name":"Plane info", + "url":"https://plane-tracker.p.rapidapi.com/", + "description":"Info of plane like position and more.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"icao", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"reg", + "type":"STRING", + "description":"", + "default":"N12345" + } + ], + "code":"import requests\n\nurl = \"https://plane-tracker.p.rapidapi.com/\"\nquerystring = {\"reg\": reg}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"plane-tracker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/plane_tracker/api.py b/toolbench/toolenv/tools/Transportation/plane_tracker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5becd56bce67a6cc2110677ee44eeaab574e8ce3 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/plane_tracker/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def plane_info(icao: str=None, reg: str='N12345', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Info of plane like position and more." + + """ + url = f"https://plane-tracker.p.rapidapi.com/" + querystring = {} + if icao: + querystring['icao'] = icao + if reg: + querystring['reg'] = reg + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "plane-tracker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/platetovin.json b/toolbench/toolenv/tools/Transportation/platetovin.json new file mode 100644 index 0000000000000000000000000000000000000000..1de4db0d05649e511801e7bf642d4973b7bf3bcc --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/platetovin.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_4b4b2990-7260-4bb5-a9b4-84717dae78d6", + "tool_description": "PlateToVin provides an API to convert license plates to VIN numbers.", + "home_url": "https://rapidapi.com/tmascroft-C3fihSV6boQ/api/platetovin/", + "name": "PlateToVin", + "title": "PlateToVin", + "pricing": "FREE", + "tool_name": "PlateToVin", + "score": null, + "host": "platetovin.p.rapidapi.com", + "api_list": [ + { + "name": "Convert", + "url": "https://platetovin.p.rapidapi.com/convert", + "description": "Convert a license plate and state to VIN using this API", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://platetovin.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"platetovin.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://platetovin.p.rapidapi.com/convert\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"platetovin.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/radarbox_on_demand.json b/toolbench/toolenv/tools/Transportation/radarbox_on_demand.json new file mode 100644 index 0000000000000000000000000000000000000000..a7c1c6cc1a497e9ef7edc25e078d5f63b16b739c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/radarbox_on_demand.json @@ -0,0 +1,78 @@ +{ + "product_id": "api_3e906eff-4dca-4cef-ab29-e390000db31b", + "tool_description": "AirNav RadarBox On Demand API enables you to quickly and easily integrate real-time, scheduled or historical flight data into your solutions. Available fields include flight number, scheduled, estimated and actual departure and arrival times, flight parameters such as speed and altitude, aircraft registration/tail-number.\n\nFor any questions, requests or suggestions contact our support.", + "home_url": "https://rapidapi.com/radarbox-radarbox-default/api/radarbox-on-demand/", + "name": "Radarbox On-Demand", + "title": "Radarbox On-Demand", + "pricing": "PAID", + "tool_name": "Radarbox On-Demand", + "score": null, + "host": "radarbox-on-demand.p.rapidapi.com", + "api_list": [ + { + "name": "geosearch", + "url": "https://radarbox-on-demand.p.rapidapi.com/flights/geosearch", + "description": "Use this endpoint if you are interested in knowing which flights have flown over a particular geographical area at a given point in time", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "page", + "type": "NUMBER", + "description": "Request page", + "default": "" + }, + { + "name": "pageSize", + "type": "NUMBER", + "description": "Page size", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://radarbox-on-demand.p.rapidapi.com/flights/geosearch\"\nquerystring = {\"page\": \"\", \"pageSize\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radarbox-on-demand.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://radarbox-on-demand.p.rapidapi.com/flights/geosearch\"\nquerystring = {\"page\": \"\", \"pageSize\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radarbox-on-demand.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "search", + "url": "https://radarbox-on-demand.p.rapidapi.com/flights/search", + "description": "Use this endpoint for general flight searches - past, present or future (scheduled) - based on departure/arrival location or individual flights and tail numbers. The search always needs to be restricted by date (either departure, arrival or both).", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "page", + "type": "NUMBER", + "description": "Request page", + "default": "" + }, + { + "name": "pageSize", + "type": "NUMBER", + "description": "Page size", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://radarbox-on-demand.p.rapidapi.com/flights/search\"\nquerystring = {\"page\": \"\", \"pageSize\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radarbox-on-demand.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://radarbox-on-demand.p.rapidapi.com/flights/search\"\nquerystring = {\"page\": \"\", \"pageSize\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radarbox-on-demand.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "aircraftPosition", + "url": "https://radarbox-on-demand.p.rapidapi.com/flights/live", + "description": "Use this endpoint if your goal is to get real time information for live flights, either if you are looking for a specific geographical location or particular aircraft/airline/airport.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://radarbox-on-demand.p.rapidapi.com/flights/live\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radarbox-on-demand.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://radarbox-on-demand.p.rapidapi.com/flights/live\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"radarbox-on-demand.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/radarbox_on_demand/api.py b/toolbench/toolenv/tools/Transportation/radarbox_on_demand/api.py new file mode 100644 index 0000000000000000000000000000000000000000..aec10cc507c3a08bf2d77bc81702ae07710e9083 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/radarbox_on_demand/api.py @@ -0,0 +1,451 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def getaircraft(modes: str='A98909', registration: str='N713UW', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint if you are looking for details or statistics for a specific aircraft (find by Mode-S hex code or tail number)" + modes: Mode-S code + registration: Registration + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/aircraft" + querystring = {} + if modes: + querystring['modeS'] = modes + if registration: + querystring['registration'] = registration + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def gettaf(icaocode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "TAF (Terminal Aerodrome Forecast) is a weather forecast information service provided by airports to serve the surrounding air traffic. TAF reports are updated several times throughout the day to ensure that pilots have access to the most up-to-date information as possible. You can use this endpoint to get the latest weather information for a specific airport." + icaocode: ICAO code + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airports/{icaocode}/taf" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getbusinessflightsstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for all business flights" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/flights/business" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcommercialairportstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for commercial flights on major airports" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/airports/commercial" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getflightsstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for all flights worldwide" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/flights" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getbusinessairportstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for business flights on major airports" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/airports/business" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getnotams(icaocode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "NOTAMs (NOtice To AirMen) are a way of local aviation authorities alerting pilots of potential hazards. Use this endpoint if you want to see the alerts that are relevant for a specific airport." + icaocode: ICAO code + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airspace/{icaocode}/notams" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmetar(icaocode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "METARs (METeorological Aerodrome Reports) provide a report of the current weather conditions in the vicinity of an aerodrome. Use this endpoint to get the most up-to-date METAR information." + icaocode: ICAO code + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airports/{icaocode}/metar" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getcommercialflightsstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for all commercial flights" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/flights/commercial" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getbusjetoperatorstatisticsinternal(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for business jet operators" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/flights/business/operators" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getmajorairportstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for a specific airport" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/airports" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getairport(icaocode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint if you know exactly which airport you need to know details for - you can search by ICAO or IATA code." + icaocode: ICAO code + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airports/{icaocode}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getairlinesstatistics(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for major airlines" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/airlines" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getdatis(icaocode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "ATIS (Automatic Terminal Information Service) is a service that continuously broadcasts aeronautical information around the airport. D-ATIS is the text transcription of the information provided by it. Use this endpoint to find the latest information for a specific airport." + icaocode: ICAO code + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airports/{icaocode}/datis" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getbusjetmodelsstatisticsinternal(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get statistics for business jet models" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/statistics/flights/business/models" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getnattracks(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The North Atlantic Tracks are high altitude routes across the atlantic between Western Europe and North America. The tracks are updated daily. Use this endpoint to get the most up-to-date tracks" + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airspace/nattracks" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def searchaircraft(aircrafttype: str='B738', airline: str='AAL', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint if you want to list all aircraft of a specific ICAO type or company" + aircrafttype: ICAO aircraft type + airline: Airline (ICAO code) + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/aircraft/search" + querystring = {} + if aircrafttype: + querystring['aircraftType'] = aircrafttype + if airline: + querystring['airline'] = airline + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def searchairport(latitude2: int=None, longitude1: int=None, city: str='New York', onlymajor: bool=None, countryname: str='United States', icaocode: str='KJFK', latitude1: int=None, countrycode: str='US', longitude2: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use this endpoint if you are trying to find all airports in a country, city or within a specific region." + latitude2: Latitude 2 + longitude1: Longitude 1 + city: City + onlymajor: Only major airports + countryname: Country name + icaocode: Airport ICAO code + latitude1: Latitude 1 + countrycode: Country code (2 letters) + longitude2: Longitude 2 + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airports/search" + querystring = {} + if latitude2: + querystring['latitude2'] = latitude2 + if longitude1: + querystring['longitude1'] = longitude1 + if city: + querystring['city'] = city + if onlymajor: + querystring['onlyMajor'] = onlymajor + if countryname: + querystring['countryName'] = countryname + if icaocode: + querystring['icaoCode'] = icaocode + if latitude1: + querystring['latitude1'] = latitude1 + if countrycode: + querystring['countryCode'] = countrycode + if longitude2: + querystring['longitude2'] = longitude2 + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def getpactracks(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pacific Organized Track System describes the set of routes across the Pacific between Hawaii or North America and Japan/South-east Asia - updated on a daily basis. Use this endpoint to get the most up-to-date information." + + """ + url = f"https://radarbox-on-demand.p.rapidapi.com/airspace/pactracks" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "radarbox-on-demand.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/rto_challan_api.json b/toolbench/toolenv/tools/Transportation/rto_challan_api.json new file mode 100644 index 0000000000000000000000000000000000000000..d2cce3d38207f6ae35bde80d7f1628eee6932be0 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/rto_challan_api.json @@ -0,0 +1,37 @@ +{ + "product_id": "api_417a762d-e373-4ad2-a011-7def1a78bbf5", + "tool_description": "Powerful Challan Information API\n\ncontact us through email for purchase.\ncontact : flashbomberapp@gmail.com", + "home_url": "https://rapidapi.com/flashbomberapp/api/rto-challan-api/", + "name": "RTO Challan API", + "title": "RTO Challan API", + "pricing": "FREEMIUM", + "tool_name": "RTO Challan API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1747, + "avgSuccessRate": 100, + "popularityScore": 9.2, + "__typename": "Score" + }, + "host": "rto-challan-api.p.rapidapi.com", + "api_list": [ + { + "name": "Search", + "url": "https://rto-challan-api.p.rapidapi.com/bus_api/public/api/v1/vaahan/searchChallanDetails", + "description": "Test", + "method": "POST", + "required_parameters": [ + { + "name": "registrationNo", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rto-challan-api.p.rapidapi.com/bus_api/public/api/v1/vaahan/searchChallanDetails\"\nquerystring = {\"registrationNo\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-challan-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rto-challan-api.p.rapidapi.com/bus_api/public/api/v1/vaahan/searchChallanDetails\"\nquerystring = {\"registrationNo\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-challan-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/rto_challan_information_verification_india.json b/toolbench/toolenv/tools/Transportation/rto_challan_information_verification_india.json new file mode 100644 index 0000000000000000000000000000000000000000..d90c1cb3f28d5c8824c3bb22672f24697e71a7e3 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/rto_challan_information_verification_india.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_35bc4774-edf4-4b35-b291-7ce562e9aa95", + "tool_description": "Fetch any Indian Vehicle\u2019s challan in detail through it\u2019s Registration Number/License Plate. This API has the capability to retrieve the below information, Owner Name, Challan Number and its status, Vehicle Impound, offence names, penalty And much more.", + "home_url": "https://rapidapi.com/aitanlabs0/api/rto-challan-information-verification-india/", + "name": "RTO Challan Information Verification India", + "title": "RTO Challan Information Verification India", + "pricing": "PAID", + "tool_name": "RTO Challan Information Verification India", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1321, + "avgSuccessRate": 99, + "popularityScore": 9.5, + "__typename": "Score" + }, + "host": "rto-challan-information-verification-india.p.rapidapi.com", + "api_list": [ + { + "name": "challaninfo", + "url": "https://rto-challan-information-verification-india.p.rapidapi.com/api/rc/challaninfo", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rto-challan-information-verification-india.p.rapidapi.com/api/rc/challaninfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-challan-information-verification-india.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rto-challan-information-verification-india.p.rapidapi.com/api/rc/challaninfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-challan-information-verification-india.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/rto_india_2.json b/toolbench/toolenv/tools/Transportation/rto_india_2.json new file mode 100644 index 0000000000000000000000000000000000000000..cdbbb9d23ae79d06b1015e83cdec0a905153a5dc --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/rto_india_2.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_fb6a1b69-7fe4-4546-83f0-67bae3cb73b4", + "tool_description": "Powerful API for Indian Commercial Vehicle\n\n\u26a1\t Owner Details\n\u26a1\t Permit Details\n\u26a1\t Licence Details\n\u26a1\t and much more...\n\n\u26a0\ufe0f : Not for Private Vehicle !\n\nContact us before purchasing plan : flashbomberapp@gmail.com ", + "home_url": "https://rapidapi.com/flashbomberapp/api/rto-india-21/", + "name": "RTO India 2", + "title": "RTO India 2", + "pricing": "FREEMIUM", + "tool_name": "RTO India 2", + "score": { + "avgServiceLevel": 27, + "avgLatency": 820, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "rto-india-21.p.rapidapi.com", + "api_list": [ + { + "name": "Search", + "url": "https://rto-india-21.p.rapidapi.com/", + "description": "Search any commercial vehicle details", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rto-india-21.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-india-21.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rto-india-21.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-india-21.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/rto_vehicle_details.json b/toolbench/toolenv/tools/Transportation/rto_vehicle_details.json new file mode 100644 index 0000000000000000000000000000000000000000..8bbedec43b61438e35d83d1bd3ffb31508ff7396 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/rto_vehicle_details.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_fe84915c-4eb7-4e49-b3ea-44f92933588a", + "tool_description": "Powerful Indian Vehicle API\n\n- Owner Name\n- Owner\u2019s Father Name\n- Vehicle Details\n- Financer Details\n- Permit & Insurance Details\n- NOC Details\n\nfor this contact : flashbomberapp@gmail.com\n\nTags: Parivahan mParivahan Vehicle Info RC Details India Car Info Car Info RC database", + "home_url": "https://rapidapi.com/flashbomberapp/api/rto-vehicle-details/", + "name": "RTO Vehicle Details", + "title": "RTO Vehicle Details", + "pricing": "FREEMIUM", + "tool_name": "RTO Vehicle Details", + "score": { + "avgServiceLevel": 94, + "avgLatency": 712, + "avgSuccessRate": 94, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "rto-vehicle-details.p.rapidapi.com", + "api_list": [ + { + "name": "Search", + "url": "https://rto-vehicle-details.p.rapidapi.com/", + "description": "Fetch vehicle information through vehicle number plate !", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rto-vehicle-details.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-vehicle-details.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rto-vehicle-details.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-vehicle-details.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/rto_vehicle_information_verification_india.json b/toolbench/toolenv/tools/Transportation/rto_vehicle_information_verification_india.json new file mode 100644 index 0000000000000000000000000000000000000000..024d0427a2ad8484a459616251623b38110779a0 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/rto_vehicle_information_verification_india.json @@ -0,0 +1,54 @@ +{ + "product_id": "api_6539fa3b-2612-4faf-ab83-c0abd7e0d8fd", + "tool_description": "Fetch any Indian Vehicle\u2019s Information in detail through it\u2019s Registration Number/License Plate. This API has the capability to retrieve the below information, Owner Name, Owner\u2019s Phone, Owner\u2019s Address, Vehicle Details, Financer Details, RC details, RTO based registration number, Insurance Details, Chassis Number, Registration Number, Fuel Description, Vehicle Fitness, PUC Info, Owner\u2019s PAN, Owner\u2019s DL Number And much more.", + "home_url": "https://rapidapi.com/aitanlabs0/api/rto-vehicle-information-verification-india/", + "name": "RTO Vehicle Information Verification India", + "title": "RTO Vehicle Information Verification India", + "pricing": "FREEMIUM", + "tool_name": "RTO Vehicle Information Verification India", + "score": { + "avgServiceLevel": 97, + "avgLatency": 1159, + "avgSuccessRate": 97, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "rto-vehicle-information-verification-india.p.rapidapi.com", + "api_list": [ + { + "name": "vehicleInfo", + "url": "https://rto-vehicle-information-verification-india.p.rapidapi.com/api/rc/vehicleinfo", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://rto-vehicle-information-verification-india.p.rapidapi.com/api/rc/vehicleinfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-vehicle-information-verification-india.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://rto-vehicle-information-verification-india.p.rapidapi.com/api/rc/vehicleinfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"rto-vehicle-information-verification-india.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/speedway_gas_prices/api.py b/toolbench/toolenv/tools/Transportation/speedway_gas_prices/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b5a848f2d41871955423b4872ceca87cfa1cfa1f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/speedway_gas_prices/api.py @@ -0,0 +1,64 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_stores_in_coords_range(long: str, lat: str, km: str=None, miles: str='3', meters: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve stores based off a coordinate query, this must include a lat, long, and range specified by miles, meters, or km." + + """ + url = f"https://speedway-gas-prices.p.rapidapi.com/getstorescoords" + querystring = {'long': long, 'lat': lat, } + if km: + querystring['km'] = km + if miles: + querystring['miles'] = miles + if meters: + querystring['meters'] = meters + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "speedway-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_stores_from_address(zip: str='45331', state: str='OH', city: str='Greenville', street: str='Sweitzer Street', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve stores based off a location query, this could include a street, city, state, and/or zip." + + """ + url = f"https://speedway-gas-prices.p.rapidapi.com/getstoresaddress" + querystring = {} + if zip: + querystring['zip'] = zip + if state: + querystring['state'] = state + if city: + querystring['city'] = city + if street: + querystring['street'] = street + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "speedway-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/taiwan_transport_nlp.json b/toolbench/toolenv/tools/Transportation/taiwan_transport_nlp.json new file mode 100644 index 0000000000000000000000000000000000000000..326378020cb49c2777cea2a828496ee6e89c2aed --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/taiwan_transport_nlp.json @@ -0,0 +1,34 @@ +{ + "tool_name":"Taiwan Transport NLP", + "tool_description":"交通小幫手 - 協助您透過自然語言查詢交通相關資訊。(台鐵、高鐵、公路客運時刻表與台北捷運轉乘)", + "title":"Taiwan Transport NLP", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/ji3g4m6zo6/api/taiwan-transport-nlp/", + "host":"taiwan-transport-nlp.p.rapidapi.com", + "api_list":[ + { + "name":"透過自然語言查詢時刻表與轉乘資訊", + "url":"https://taiwan-transport-nlp.p.rapidapi.com/nlp", + "description":"from:出發站點名稱\ndestination :目的地站點名稱\ntime:出發時間\ntype:大眾運輸種類(包含 hsr(高鐵)、tra(台鐵)、mrt(北捷)、l_bus(客運))\ntimetable:時刻表", + "method":"GET", + "required_parameters":[ + { + "name":"ask", + "type":"STRING", + "description":"", + "default":"幫我查台北到台南的高鐵時刻表明天上午十點出發" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://taiwan-transport-nlp.p.rapidapi.com/nlp\"\nquerystring = {\"ask\": ask}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taiwan-transport-nlp.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/taiwan_transport_nlp/api.py b/toolbench/toolenv/tools/Transportation/taiwan_transport_nlp/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5bcc0f3dc6b9f93a724c54bb0fbdbdc6c9f8f831 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/taiwan_transport_nlp/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def 透過自然語言查詢時刻表與轉乘資訊(ask: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "from:出發站點名稱 + destination :目的地站點名稱 + time:出發時間 + type:大眾運輸種類(包含 hsr(高鐵)、tra(台鐵)、mrt(北捷)、l_bus(客運)) + timetable:時刻表" + + """ + url = f"https://taiwan-transport-nlp.p.rapidapi.com/nlp" + querystring = {'ask': ask, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "taiwan-transport-nlp.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/taxi_fare_calculator.json b/toolbench/toolenv/tools/Transportation/taxi_fare_calculator.json new file mode 100644 index 0000000000000000000000000000000000000000..c1d04ba342d7532bc587cdee59f569fd15979339 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/taxi_fare_calculator.json @@ -0,0 +1,105 @@ +{ + "tool_name":"Taxi Fare Calculator", + "tool_description":"How much does a taxi cost? Estimate your taxicab fare & rates. Get your taxi fare now and compare taxi prices. Taxi Fare Calculator provides taxi & cab fares for any trip in any city. The API provides you with a price for the best possible route for your cab ride.", + "title":"Taxi Fare Calculator", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":98, + "avgLatency":550, + "avgSuccessRate":98, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/3b-data-3b-data-default/api/taxi-fare-calculator/", + "host":"taxi-fare-calculator.p.rapidapi.com", + "api_list":[ + { + "name":"Get taxi fares", + "url":"https://taxi-fare-calculator.p.rapidapi.com/search-geo", + "description":"Search fares by geo coordinates", + "method":"GET", + "required_parameters":[ + { + "name":"arr_lat", + "type":"NUMBER", + "description":"Latitude of arrival point", + "default":"52.47" + }, + { + "name":"arr_lng", + "type":"NUMBER", + "description":"Longitude of arrival point", + "default":"13.63" + }, + { + "name":"dep_lat", + "type":"NUMBER", + "description":"Latitude of departure point", + "default":"52.50" + }, + { + "name":"dep_lng", + "type":"NUMBER", + "description":"Longitude of departure point", + "default":"13.43" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://taxi-fare-calculator.p.rapidapi.com/search-geo\"\nquerystring = {\"arr_lat\": arr_lat, \"arr_lng\": arr_lng, \"dep_lat\": dep_lat, \"dep_lng\": dep_lng}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"taxi-fare-calculator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "headers":{ + "type":"object", + "properties":{ + "response_time":{ + "type":"integer" + }, + "response_timestamp":{ + "type":"string" + }, + "api":{ + "type":"string" + }, + "response_id":{ + "type":"integer" + } + } + }, + "journey":{ + "type":"object", + "properties":{ + "city_name":{ + "type":"string" + }, + "department":{ + "type":"string" + }, + "arrival":{ + "type":"string" + }, + "duration":{ + "type":"integer" + }, + "distance":{ + "type":"number" + }, + "fares":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/taxi_fare_calculator/api.py b/toolbench/toolenv/tools/Transportation/taxi_fare_calculator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f7547fe2c85913651a1a49aee92751f7c0c55fe9 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/taxi_fare_calculator/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_taxi_fares(arr_lat: int, arr_lng: int, dep_lat: int, dep_lng: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search fares by geo coordinates" + arr_lat: Latitude of arrival point + arr_lng: Longitude of arrival point + dep_lat: Latitude of departure point + dep_lng: Longitude of departure point + + """ + url = f"https://taxi-fare-calculator.p.rapidapi.com/search-geo" + querystring = {'arr_lat': arr_lat, 'arr_lng': arr_lng, 'dep_lat': dep_lat, 'dep_lng': dep_lng, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "taxi-fare-calculator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/thai_car_license_plate.json b/toolbench/toolenv/tools/Transportation/thai_car_license_plate.json new file mode 100644 index 0000000000000000000000000000000000000000..904735b3e640233f2c7433132c39af0930c58870 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/thai_car_license_plate.json @@ -0,0 +1,33 @@ +{ + "product_id": "api_2bb9ac69-b9d0-46e8-86aa-cffd48a5d549", + "tool_description": "*** We just update API to version 2, for the old users please re-subscibe version 2 again!! ****\nRecognize the vehicle license plate, license number, province, vehicle brand, model, and color. Included cars and motorcycles from images or Video stream. More than 98.65% license plate reading accuracy. Average time usage per request is about 1.5 second.\n", + "home_url": "https://rapidapi.com/iapphr/api/thai-car-license-plate/", + "name": "thai-car-license-plate", + "title": "thai-car-license-plate", + "pricing": "FREEMIUM", + "tool_name": "thai-car-license-plate", + "score": null, + "host": "thai-car-license-plate.p.rapidapi.com", + "api_list": [ + { + "name": "File upload", + "url": "https://thai-car-license-plate.p.rapidapi.com/file", + "description": "This endpoint allows you to send a picture that consists of minimum one vehicle that OCR must be performed. The response will be \n\n- License plate number.\n- Thai province.\n- Vehicle model.\n- Vehicle color.\n- Vehicle brand.", + "method": "POST", + "required_parameters": [ + { + "name": "file", + "type": "BINARY", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://thai-car-license-plate.p.rapidapi.com/file\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thai-car-license-plate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://thai-car-license-plate.p.rapidapi.com/file\"\nquerystring = {\"file\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"thai-car-license-plate.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/timetable_lookup.json b/toolbench/toolenv/tools/Transportation/timetable_lookup.json new file mode 100644 index 0000000000000000000000000000000000000000..8449077766863804c130c4b9b9321c3867353c4b --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/timetable_lookup.json @@ -0,0 +1,601 @@ +{ + "product_id": "api_a8d91d24-b721-4c5b-9995-b5306e292749", + "tool_description": "Access Worldwide Flight Schedules with connection building.", + "home_url": "https://rapidapi.com/flightlookup/api/timetable-lookup/", + "name": "TimeTable Lookup ", + "title": "TimeTable Lookup ", + "pricing": "FREEMIUM", + "tool_name": "TimeTable Lookup ", + "score": { + "avgServiceLevel": 100, + "avgLatency": 100, + "avgSuccessRate": 100, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "timetable-lookup.p.rapidapi.com", + "api_list": [ + { + "name": "codes - Entertainment Codes", + "url": "https://timetable-lookup.p.rapidapi.com/codes/entertainment/", + "description": "Return a list of entertainment codes used by the airlines", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/codes/entertainment/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/codes/entertainment/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "codes - Equipment codes", + "url": "https://timetable-lookup.p.rapidapi.com/codes/equipment/", + "description": "Return a list of equipment codes used by the airlines", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/codes/equipment/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/codes/equipment/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "codes - Meal Codes", + "url": "https://timetable-lookup.p.rapidapi.com/codes/meal/", + "description": "Return a list of meal code used by the airlines", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/codes/meal/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/codes/meal/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Flight Schedules", + "url": "https://timetable-lookup.p.rapidapi.com/TimeTable/BOS/LAX/20191217/", + "description": "FlightLookup Web Services, powered by FlightLookup Routing Engine. This API provides a powerful information source for developing sophisticated applications requiring flight related schedule data. Whether you are a software company developing products for sale or an in-house developer, the FlightLookup Web Services APIs are unmatched in terms of breadth and richness of information. Our development tools and documentation will get you up to speed quickly enabling short development cycles.", + "method": "GET", + "required_parameters": [ + { + "name": "From", + "type": "string", + "description": "3 letter IATA code for the departure airport", + "default": "BOS" + }, + { + "name": "Date", + "type": "string", + "description": "Departure date (YYYYMMDD)", + "default": "20191217" + }, + { + "name": "To", + "type": "string", + "description": "3 letter IATA code for the destination airport", + "default": "LAX" + } + ], + "optional_parameters": [ + { + "name": "Time", + "type": "STRING", + "description": "Return flights that happen during the specified time period (ANY, AM, PM, NIGHT)", + "default": "" + }, + { + "name": "Compression", + "type": "STRING", + "description": "Displays non-stops, directs and logical single and multiple connections up to the maximum number of results requested (AUTO, NONSTOP, DIRECT, 1STOP, MORE)", + "default": "" + }, + { + "name": "7Day", + "type": "STRING", + "description": "Setting to \"N\" results in 1 days of results. Setting to \"Y\" results in 7 days of results. (N, Y)", + "default": "" + }, + { + "name": "Interline", + "type": "STRING", + "description": "Please see documentation", + "default": "" + }, + { + "name": "Results", + "type": "STRING", + "description": "Range = 1 to 500, Maximum number of results to return", + "default": "" + }, + { + "name": "Connection", + "type": "STRING", + "description": "Displays non-stops, directs and logical single and multiple connections up to the maximum number of results requested", + "default": "" + }, + { + "name": "Sort", + "type": "STRING", + "description": "Specify the sort order for the results (Departure, Optional - Arrival, Duration, Flights)", + "default": "" + }, + { + "name": "MaxConnect", + "type": "STRING", + "description": "Range = 120-1200. Maximum time between flight in minutes. Default = 240 which is the IATA standard.", + "default": "" + }, + { + "name": "Max_Results", + "type": "STRING", + "description": "Override the results count.", + "default": "" + }, + { + "name": "NoFilter", + "type": "STRING", + "description": "Disable Traffic Restriction Code Filters", + "default": "" + }, + { + "name": "Airline", + "type": "STRING", + "description": "Restrict by specific airline 2 or 3 letter airline IATA code", + "default": "" + }, + { + "name": "FlightNumber", + "type": "STRING", + "description": "Restrict by specific flight number must be used with Airline", + "default": "" + }, + { + "name": "ExpandResults", + "type": "STRING", + "description": "Y = Override the flight efficiency filter, showing more results. N = Do not override the flight efficiency filter, showing fewer results.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/TimeTable/BOS/LAX/20191217/\"\nquerystring = {\"Time\": \"\", \"Compression\": \"\", \"7Day\": \"\", \"Interline\": \"\", \"Results\": \"\", \"Connection\": \"\", \"Sort\": \"\", \"MaxConnect\": \"\", \"Max_Results\": \"\", \"NoFilter\": \"\", \"Airline\": \"\", \"FlightNumber\": \"\", \"ExpandResults\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/TimeTable/{is_from}/{to}/{date}/\"\nquerystring = {\"Time\": \"\", \"Compression\": \"\", \"7Day\": \"\", \"Interline\": \"\", \"Results\": \"\", \"Connection\": \"\", \"Sort\": \"\", \"MaxConnect\": \"\", \"Max_Results\": \"\", \"NoFilter\": \"\", \"Airline\": \"\", \"FlightNumber\": \"\", \"ExpandResults\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "airports - Nonstop routes for an airport by airline", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/{airlineiatacode}/", + "description": "Returns a list of nonstop routes for an airport restricted to an airline", + "method": "GET", + "required_parameters": [ + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline IATA Code", + "default": "" + }, + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/{airlineiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/{airlineiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "messages": "The request to the API has timed out. Please try again later, or if the issue persists, please contact the API provider", + "info": "Your Client (working) ---> Gateway (working) ---> API (took too long to respond)" + } + }, + { + "name": "airlines - Airports in a country an airline operates in", + "url": "https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/countries/{countryiatacode}/", + "description": "Return a list of airports in a country an airline operates in", + "method": "GET", + "required_parameters": [ + { + "name": "countryiatacode", + "type": "string", + "description": "Country IATA code", + "default": "" + }, + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline IATA code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/countries/{countryiatacode}/\"\nquerystring = {\"countryiatacode\": \"\", \"airlineiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/countries/{countryiatacode}/\"\nquerystring = {\"countryiatacode\": \"\", \"airlineiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "airlines - Countries airline operates in", + "url": "https://timetable-lookup.p.rapidapi.com/airlines/wn/countries/", + "description": "Return a list of the countries that an airline operates in", + "method": "GET", + "required_parameters": [ + { + "name": "airlineiatacode", + "type": "string", + "description": "", + "default": "wn/countries" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/wn/countries/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airlines - Direct flights for an airline from an airport", + "url": "https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/directs/{airportiatacode}/", + "description": "Return a list of direct flights for an airline from an airport", + "method": "GET", + "required_parameters": [ + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline IATA code", + "default": "" + }, + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/directs/{airportiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/directs/{airportiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airlines - Nonstop and direct flights for an airline", + "url": "https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/", + "description": "Return a list of nonstop and direct flights for an airline", + "method": "GET", + "required_parameters": [ + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline Iata Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/\"\nquerystring = {\"airlineiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/\"\nquerystring = {\"airlineiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airlines - Nonstop flights for an airline from an airport", + "url": "https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/nonstops/{airportiatacode}/", + "description": "Return a list of nonstop flights for an airline from an airport", + "method": "GET", + "required_parameters": [ + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline IATA Code", + "default": "" + }, + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/nonstops/{airportiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/nonstops/{airportiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Airport information", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/", + "description": "Return an airport's information", + "method": "GET", + "required_parameters": [ + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Airports in a country", + "url": "https://timetable-lookup.p.rapidapi.com/airports/countries/{countryiatacode}/", + "description": "Returns a list of airports in a country", + "method": "GET", + "required_parameters": [ + { + "name": "countryiatacode", + "type": "string", + "description": "Country IATA code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/countries/{countryiatacode}/\"\nquerystring = {\"countryiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/countries/{countryiatacode}/\"\nquerystring = {\"countryiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Airports in a metro", + "url": "https://timetable-lookup.p.rapidapi.com/airports/metros/{metroiatacode}/", + "description": "Returns a list of airports in a metro", + "method": "GET", + "required_parameters": [ + { + "name": "metroiatacode", + "type": "string", + "description": "Metro IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/metros/{metroiatacode}/\"\nquerystring = {\"metroiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/metros/{metroiatacode}/\"\nquerystring = {\"metroiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Carriers operating out of an airport", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/airlines/", + "description": "Return a list of carriers operating out of an airport", + "method": "GET", + "required_parameters": [ + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/airlines/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/airlines/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Country IATA codes", + "url": "https://timetable-lookup.p.rapidapi.com/airports/countries/", + "description": "Returns a list of country IATA codes", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/countries/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/countries/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Direct routes for an airport", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/", + "description": "Returns a list of direct routes for an airport", + "method": "GET", + "required_parameters": [ + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Direct routes for an airport by airline", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/{airlineiatacode}/", + "description": "Returns a list of direct routes for an airport restricted to an airline", + "method": "GET", + "required_parameters": [ + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + }, + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/{airlineiatacode}/\"\nquerystring = {\"airportiatacode\": \"\", \"airlineiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/{airlineiatacode}/\"\nquerystring = {\"airportiatacode\": \"\", \"airlineiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Latitude and longitude for location in country", + "url": "https://timetable-lookup.p.rapidapi.com/airports/nearest/{countryiatacode}/{location}/", + "description": "Returns the latitude and longitude for location in country", + "method": "GET", + "required_parameters": [ + { + "name": "location", + "type": "string", + "description": "A location in the country", + "default": "" + }, + { + "name": "countryiatacode", + "type": "string", + "description": "Country IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/nearest/{countryiatacode}/{location}/\"\nquerystring = {\"location\": \"\", \"countryiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/nearest/{countryiatacode}/{location}/\"\nquerystring = {\"location\": \"\", \"countryiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - List of airports", + "url": "https://timetable-lookup.p.rapidapi.com/airports/", + "description": "Return a list of the airports worldwide", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Metro IATA codes", + "url": "https://timetable-lookup.p.rapidapi.com/airports/metros/", + "description": "Returns a list of metro IATA codes", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/metros/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/metros/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Nearest airports for a given latitude and longitude", + "url": "https://timetable-lookup.p.rapidapi.com/airports/nearest/{lat}/{lon}/", + "description": "Returns the nearest airports for a given latitude and longitude", + "method": "GET", + "required_parameters": [ + { + "name": "lon", + "type": "string", + "description": "Specify longitude", + "default": "" + }, + { + "name": "lat", + "type": "string", + "description": "Specify latitude", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/nearest/{lat}/{lon}/\"\nquerystring = {\"lon\": \"\", \"lat\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/nearest/{lat}/{lon}/\"\nquerystring = {\"lon\": \"\", \"lat\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Nonstop and direct routes for an airport", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/", + "description": "Returns a list of nonstop and direct routes for an airport", + "method": "GET", + "required_parameters": [ + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Nonstop and direct routes for an airport by airline", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/{airlineiatacode}/", + "description": "Returns a list of nonstop and direct routes for an airport restricted to an airline", + "method": "GET", + "required_parameters": [ + { + "name": "airlineiatacode", + "type": "string", + "description": "Airline IATA Code", + "default": "" + }, + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/{airlineiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/{airlineiatacode}/\"\nquerystring = {\"airlineiatacode\": \"\", \"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airports - Nonstop routes for an airport", + "url": "https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/", + "description": "Returns a list of nonstop routes for an airport", + "method": "GET", + "required_parameters": [ + { + "name": "airportiatacode", + "type": "string", + "description": "Airport IATA Code", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/\"\nquerystring = {\"airportiatacode\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + }, + { + "name": "airlines - Airlines and the countries they operate in", + "url": "https://timetable-lookup.p.rapidapi.com/airlines/", + "description": "Return a list of airlines and the countries they operate in", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://timetable-lookup.p.rapidapi.com/airlines/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"timetable-lookup.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "You have exceeded the rate limit per second for your plan, BASIC, by the API provider" + } + } + ], + "standardized_name": "timetable_lookup" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/timetable_lookup/api.py b/toolbench/toolenv/tools/Transportation/timetable_lookup/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4ab16dff122c6e9037435e683ebbd942f366e459 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/timetable_lookup/api.py @@ -0,0 +1,599 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def codes_entertainment_codes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of entertainment codes used by the airlines" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/codes/entertainment/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def codes_equipment_codes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of equipment codes used by the airlines" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/codes/equipment/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def codes_meal_codes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of meal code used by the airlines" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/codes/meal/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flight_schedules(is_from: str, date: str, to: str, time: str=None, compression: str=None, get_7day: str=None, interline: str=None, results: str=None, connection: str=None, sort: str=None, maxconnect: str=None, max_results: str=None, nofilter: str=None, airline: str=None, flightnumber: str=None, expandresults: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightLookup Web Services, powered by FlightLookup Routing Engine. This API provides a powerful information source for developing sophisticated applications requiring flight related schedule data. Whether you are a software company developing products for sale or an in-house developer, the FlightLookup Web Services APIs are unmatched in terms of breadth and richness of information. Our development tools and documentation will get you up to speed quickly enabling short development cycles." + from: 3 letter IATA code for the departure airport + date: Departure date (YYYYMMDD) + to: 3 letter IATA code for the destination airport + time: Return flights that happen during the specified time period (ANY, AM, PM, NIGHT) + compression: Displays non-stops, directs and logical single and multiple connections up to the maximum number of results requested (AUTO, NONSTOP, DIRECT, 1STOP, MORE) + get_7day: Setting to "N" results in 1 days of results. Setting to "Y" results in 7 days of results. (N, Y) + interline: Please see documentation + results: Range = 1 to 500, Maximum number of results to return + connection: Displays non-stops, directs and logical single and multiple connections up to the maximum number of results requested + sort: Specify the sort order for the results (Departure, Optional - Arrival, Duration, Flights) + maxconnect: Range = 120-1200. Maximum time between flight in minutes. Default = 240 which is the IATA standard. + max_results: Override the results count. + nofilter: Disable Traffic Restriction Code Filters + airline: Restrict by specific airline 2 or 3 letter airline IATA code + flightnumber: Restrict by specific flight number must be used with Airline + expandresults: Y = Override the flight efficiency filter, showing more results. N = Do not override the flight efficiency filter, showing fewer results. + + """ + url = f"https://timetable-lookup.p.rapidapi.com/timetable/{is_from}/{to}/{date}/" + querystring = {} + if time: + querystring['Time'] = time + if compression: + querystring['Compression'] = compression + if get_7day: + querystring['7Day'] = get_7day + if interline: + querystring['Interline'] = interline + if results: + querystring['Results'] = results + if connection: + querystring['Connection'] = connection + if sort: + querystring['Sort'] = sort + if maxconnect: + querystring['MaxConnect'] = maxconnect + if max_results: + querystring['Max_Results'] = max_results + if nofilter: + querystring['NoFilter'] = nofilter + if airline: + querystring['Airline'] = airline + if flightnumber: + querystring['FlightNumber'] = flightnumber + if expandresults: + querystring['ExpandResults'] = expandresults + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_nonstop_routes_for_an_airport_by_airline(airlineiatacode: str, airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of nonstop routes for an airport restricted to an airline" + airlineiatacode: Airline IATA Code + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/{airlineiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_airports_in_a_country_an_airline_operates_in(countryiatacode: str, airlineiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of airports in a country an airline operates in" + countryiatacode: Country IATA code + airlineiatacode: Airline IATA code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/countries/{countryiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_countries_airline_operates_in(airlineiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of the countries that an airline operates in" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_direct_flights_for_an_airline_from_an_airport(airlineiatacode: str, airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of direct flights for an airline from an airport" + airlineiatacode: Airline IATA code + airportiatacode: Airport IATA code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/directs/{airportiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_nonstop_and_direct_flights_for_an_airline(airlineiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of nonstop and direct flights for an airline" + airlineiatacode: Airline Iata Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_nonstop_flights_for_an_airline_from_an_airport(airlineiatacode: str, airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of nonstop flights for an airline from an airport" + airlineiatacode: Airline IATA Code + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airlines/{airlineiatacode}/routes/nonstops/{airportiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_airport_information(airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return an airport's information" + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_airports_in_a_country(countryiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of airports in a country" + countryiatacode: Country IATA code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/countries/{countryiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_airports_in_a_metro(metroiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of airports in a metro" + metroiatacode: Metro IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/metros/{metroiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_carriers_operating_out_of_an_airport(airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of carriers operating out of an airport" + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/airlines/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_country_iata_codes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of country IATA codes" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/countries/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_direct_routes_for_an_airport(airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of direct routes for an airport" + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_direct_routes_for_an_airport_by_airline(airportiatacode: str, airlineiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of direct routes for an airport restricted to an airline" + airportiatacode: Airport IATA Code + airlineiatacode: Airline IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/directs/{airlineiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_latitude_and_longitude_for_location_in_country(location: str, countryiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the latitude and longitude for location in country" + location: A location in the country + countryiatacode: Country IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/nearest/{countryiatacode}/{location}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_list_of_airports(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of the airports worldwide" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_metro_iata_codes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of metro IATA codes" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/metros/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_nearest_airports_for_a_given_latitude_and_longitude(lon: str, lat: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the nearest airports for a given latitude and longitude" + lon: Specify longitude + lat: Specify latitude + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/nearest/{lat}/{lon}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_nonstop_and_direct_routes_for_an_airport(airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of nonstop and direct routes for an airport" + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_nonstop_and_direct_routes_for_an_airport_by_airline(airlineiatacode: str, airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of nonstop and direct routes for an airport restricted to an airline" + airlineiatacode: Airline IATA Code + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/{airlineiatacode}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_nonstop_routes_for_an_airport(airportiatacode: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of nonstop routes for an airport" + airportiatacode: Airport IATA Code + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airports/{airportiatacode}/routes/nonstops/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_airlines_and_the_countries_they_operate_in(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return a list of airlines and the countries they operate in" + + """ + url = f"https://timetable-lookup.p.rapidapi.com/airlines/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "timetable-lookup.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/tracking_login.json b/toolbench/toolenv/tools/Transportation/tracking_login.json new file mode 100644 index 0000000000000000000000000000000000000000..d3ceb08509c5d28aa3730ab25a9653a7167684be --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/tracking_login.json @@ -0,0 +1,106 @@ +{ + "tool_name": "Tracking login", + "tool_description": "Retrieve the JWT token and the UserId to make call to the tracking api", + "title": "Tracking login", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/espositomichele961/api/tracking-login/", + "host": "tracking-login.p.rapidapi.com", + "api_list": [ + { + "name": "/tracking/{userId}/aggiungiSpedizione", + "url": "https://tracking-login.p.rapidapi.com/tracking/{userid}/aggiungiSpedizione", + "description": "You can add a tracking number, and add it to the diary for the user.", + "method": "POST", + "required_parameters": [ + { + "name": "userId", + "type": "string", + "description": "", + "default": "618036d1bcbd3617662795d4" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/tracking/{userid}/aggiungiSpedizione\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "key1": "value", + "key2": "value" + }, + "headers": {}, + "schema": {} + }, + { + "name": "Login", + "url": "https://tracking-login.p.rapidapi.com/login", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "/tracking/{userId}/recuperaDiario", + "url": "https://tracking-login.p.rapidapi.com/tracking/{userid}/recuperaDiario", + "description": "Retrieve the user diary detail, with spedition status, and update", + "method": "GET", + "required_parameters": [ + { + "name": "Authorization", + "type": "STRING", + "description": "", + "default": "JWT token from login" + }, + { + "name": "userId", + "type": "string", + "description": "", + "default": "609e6b569fa0184b646392fc" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/tracking/{userid}/recuperaDiario\"\nquerystring = {\"Authorization\": authorization}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": {}, + "headers": {}, + "schema": {} + }, + { + "name": "/tracking/{userId}/aggiungiSpedizione", + "url": "https://tracking-login.p.rapidapi.com/tracking/618036d1bcbd3617662795d4/aggiungiSpedizione", + "description": "You can add a tracking number, and add it to the diary for the user.", + "method": "POST", + "required_parameters": [ + { + "name": "userId", + "type": "string", + "description": "", + "default": "618036d1bcbd3617662795d4" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/tracking/618036d1bcbd3617662795d4/aggiungiSpedizione\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/tracking/{userid}/aggiungiSpedizione\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Login", + "url": "https://tracking-login.p.rapidapi.com/login", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://tracking-login.p.rapidapi.com/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"tracking-login.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/tracking_login/api.py b/toolbench/toolenv/tools/Transportation/tracking_login/api.py new file mode 100644 index 0000000000000000000000000000000000000000..834efd1afff688b94382c982e31d35f39a130a30 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/tracking_login/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def tracking_userid_recuperadiario(authorization: str, userid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve the user diary detail, with spedition status, and update" + + """ + url = f"https://tracking-login.p.rapidapi.com/tracking/{userid}/recuperadiario" + querystring = {'Authorization': authorization, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "tracking-login.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/trackingpackage.json b/toolbench/toolenv/tools/Transportation/trackingpackage.json new file mode 100644 index 0000000000000000000000000000000000000000..4623580e3f8a431627aba7ed30eb4867c0296795 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/trackingpackage.json @@ -0,0 +1,43 @@ +{ + "tool_name":"TrackingPackage", + "tool_description":"track ups, fedex,usps and DHL packages.\nWindows store app available → https://www.microsoft.com/store/apps/9PHP0Z68X02N?cid=rapidAPI", + "title":"TrackingPackage", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1084, + "avgSuccessRate":100, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/c2wtechnology/api/trackingpackage/", + "host":"trackingpackage.p.rapidapi.com", + "api_list":[ + { + "name":"TrackingPackage", + "url":"https://trackingpackage.p.rapidapi.com/TrackingPackage", + "description":"Track UPS, USPS and FedEx packages.", + "method":"GET", + "required_parameters":[ + { + "name":"Authorization", + "type":"STRING", + "description":"", + "default":"Basic Ym9sZGNoYXQ6TGZYfm0zY2d1QzkuKz9SLw==" + }, + { + "name":"trackingNumber", + "type":"STRING", + "description":"", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://trackingpackage.p.rapidapi.com/TrackingPackage\"\nquerystring = {\"Authorization\": authorization, \"trackingNumber\": trackingnumber}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"trackingpackage.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/trackingpackage/api.py b/toolbench/toolenv/tools/Transportation/trackingpackage/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3f3c09d0353363cced240984ecda7a253255cfba --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/trackingpackage/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def trackingpackage(authorization: str, trackingnumber: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Track UPS, USPS and FedEx packages." + + """ + url = f"https://trackingpackage.p.rapidapi.com/trackingpackage" + querystring = {'Authorization': authorization, 'trackingNumber': trackingnumber, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "trackingpackage.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/transit.json b/toolbench/toolenv/tools/Transportation/transit.json new file mode 100644 index 0000000000000000000000000000000000000000..3162e147661f59697e66a1fa0b7ab141f77c8bb7 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/transit.json @@ -0,0 +1,1516 @@ +{ + "product_id": "api_78759d45-fa8f-4b6a-a35b-988515fd29e7", + "tool_description": "Transit APIs for urban transport and mobility Apps in selected cities from LATAM. ", + "home_url": "https://rapidapi.com/ualabee-ualabee-default/api/transit4/", + "name": "Transit", + "title": "Transit", + "pricing": "FREEMIUM", + "tool_name": "Transit", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2126, + "avgSuccessRate": 100, + "popularityScore": 8.7, + "__typename": "Score" + }, + "host": "transit4.p.rapidapi.com", + "api_list": [ + { + "name": "/api/v2/tripPlanner/findTrips", + "url": "https://transit4.p.rapidapi.com/api/v2/tripPlanner/findTrips", + "description": "Returns possible itineraries from A to B, according to available or selected transport", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/findTrips\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/findTrips\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/tripPlanner/getCO2EmissionsByPolyline", + "url": "https://transit4.p.rapidapi.com/api/v2/tripPlanner/getCO2EmissionsByPolyline", + "description": "This service calculated the CO2 emissions and savings for the specified polyline and transport type.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/getCO2EmissionsByPolyline\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/getCO2EmissionsByPolyline\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/agencies/getAll", + "url": "https://transit4.p.rapidapi.com/api/v2/agencies/getAll", + "description": "Returns every enabled agency in a determined city.
If there isn't any, returns an empty array.
If city_id is incorrect, returns 400 Bad Request.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/agencies/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/agencies/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v2/tripPlanner/getTripsDetails", + "url": "https://transit4.p.rapidapi.com/api/v2/tripPlanner/getTripsDetails", + "description": "Returns polyline and every stop of selected result trip.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/getTripsDetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/getTripsDetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/agencies/getById", + "url": "https://transit4.p.rapidapi.com/api/v2/agencies/getById", + "description": "If the requested agency exists, then it returns the object. If not, returns 404 Not Found", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/agencies/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/agencies/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/tripPlanner/getCO2Emissions", + "url": "https://transit4.p.rapidapi.com/api/v2/tripPlanner/getCO2Emissions", + "description": "This service calculated the CO2 emissions and savings for the specified origin, destination and transport type.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/getCO2Emissions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/getCO2Emissions\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/tripPlanner/findTripsBike", + "url": "https://transit4.p.rapidapi.com/api/v2/tripPlanner/findTripsBike", + "description": "Returns possible bicycle itineraries from point A to B.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/findTripsBike\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/tripPlanner/findTripsBike\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/shapes/checkClosestStop", + "url": "https://transit4.p.rapidapi.com/api/v2/shapes/checkClosestStop", + "description": "chequea si devuelve un array vacio significa que las paradas estan correctas y las que no son correctas vienen en el array.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/shapes/checkClosestStop\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/shapes/checkClosestStop\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/trips/getByPoint", + "url": "https://transit4.p.rapidapi.com/api/v2/trips/getByPoint", + "description": "Each shape has many trips.
This service groups every trip with the same shape_id and returns each of them with its route and shape ID.
If any parameter is incorrect, returns 400 Bad Request;
and it returns an empty array if it can't find any trip.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/trips/getByPoint\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/trips/getByPoint\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getNearby", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getNearby", + "description": "Devuelve todos los reportes de mapa que esten validados por la comunidad o por moderadores cercanos a un punto en el mapa.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getNearby\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getNearby\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/getPictures", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/getPictures", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getPictures\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getPictures\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getValidatedReports", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getValidatedReports", + "description": "Devuelve todos los reportes de mapa que esten validados por la comunidad o por moderadores.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getValidatedReports\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getValidatedReports\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getValidatedStopReports", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getValidatedStopReports", + "description": "Devuelve todos los reportes de mapa que esten validados por la comunidad o por moderadores.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getValidatedStopReports\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getValidatedStopReports\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/getById", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/getById", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/graphhopper/route", + "url": "https://transit4.p.rapidapi.com/api/v2/graphhopper/route", + "description": "Returns a route according to the specified parameters.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/graphhopper/route\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/graphhopper/route\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getById", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getById", + "description": "Devuelve los datos de un reporte de usuario pendiente o validado.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/rechargePoints/getByLocation", + "url": "https://transit4.p.rapidapi.com/api/v2/rechargePoints/getByLocation", + "description": "Receives one point and a radius and returns every recharge point in a radius smaller than the one passed by parameter.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/rechargePoints/getByLocation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/rechargePoints/getByLocation\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/routes/getFrequencies", + "url": "https://transit4.p.rapidapi.com/api/v2/routes/getFrequencies", + "description": "Returns a list of trip frequencies from the route requested by shape_id, service_id, and direction_id in parameters. If there aren't any, returns an empty array.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getFrequencies\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getFrequencies\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/getTimes", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/getTimes", + "description": "Searches for trips with shared shape_id and returns stop_times of those trips and stop_id.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getTimes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getTimes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/uploadPicture", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/uploadPicture", + "description": "\u00b4This service receives a firestore URL, a city_id, stop_id, and the uploader user data.
First it checks for any explicit content or if the maximum of 3 pictures per user has been reached and the picture is deleted in both cases.
If there isn't any error; the picture is saved to the database and XP points are added to the user. Service returns picture data.\u00b4", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "stop_picture_uri", + "type": "STRING", + "description": "", + "default": "https://firebasestorage.googleapis.com/v0/b/miautobus-development.appspot.com/o/transportation%2Fstop_pictures%2F-MdNT6sjP-1T5A8yvGnJ.webp?alt=media&token=e8be2514-638e-4684-adfb-4d0d21f00dbf" + }, + { + "name": "user_id", + "type": "STRING", + "description": "", + "default": "cBgGUCTxT2d7tsHWg6CFAvVLFjp2" + }, + { + "name": "city_name", + "type": "STRING", + "description": "", + "default": "Cordoba" + }, + { + "name": "user_nickname", + "type": "STRING", + "description": "", + "default": "Usuarionuevo" + }, + { + "name": "user_photo_url", + "type": "STRING", + "description": "", + "default": "string" + }, + { + "name": "city_id", + "type": "STRING", + "description": "", + "default": "1" + }, + { + "name": "stop_id", + "type": "STRING", + "description": "", + "default": "C931" + }, + { + "name": "user_display_name", + "type": "STRING", + "description": "", + "default": "Usuario Nuevo" + } + ], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/uploadPicture\"\nquerystring = {\"stop_picture_uri\": \"https://firebasestorage.googleapis.com/v0/b/miautobus-development.appspot.com/o/transportation%2Fstop_pictures%2F-MdNT6sjP-1T5A8yvGnJ.webp?alt=media&token=e8be2514-638e-4684-adfb-4d0d21f00dbf\", \"user_id\": \"cBgGUCTxT2d7tsHWg6CFAvVLFjp2\", \"city_name\": \"Cordoba\", \"user_nickname\": \"Usuarionuevo\", \"user_photo_url\": \"string\", \"city_id\": \"1\", \"stop_id\": \"C931\", \"user_display_name\": \"Usuario Nuevo\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/uploadPicture\"\nquerystring = {\"stop_picture_uri\": \"https://firebasestorage.googleapis.com/v0/b/miautobus-development.appspot.com/o/transportation%2Fstop_pictures%2F-MdNT6sjP-1T5A8yvGnJ.webp?alt=media&token=e8be2514-638e-4684-adfb-4d0d21f00dbf\", \"user_id\": \"cBgGUCTxT2d7tsHWg6CFAvVLFjp2\", \"city_name\": \"Cordoba\", \"user_nickname\": \"Usuarionuevo\", \"user_photo_url\": \"string\", \"city_id\": \"1\", \"stop_id\": \"C931\", \"user_display_name\": \"Usuario Nuevo\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getByCountry", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getByCountry", + "description": "Devuelve el listado de las ciudades habilitadas de un pais.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getByCountry\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getByCountry\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getUserReportStatusReason", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportStatusReason", + "description": "Devuelve los datos de los tipos de razon de los estados de los reportes de mapa.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportStatusReason\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportStatusReason\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/routes/getByAgency", + "url": "https://transit4.p.rapidapi.com/api/v2/routes/getByAgency", + "description": "Returns every agency route of an agency with its trips. Returns an empty array if none exists. Each route has an array with its trips.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getByAgency\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getByAgency\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getUserReportTypes", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportTypes", + "description": "Devuelve los datos de los tipos de reporte de mapa.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportTypes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportTypes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/countries/getAll", + "url": "https://transit4.p.rapidapi.com/api/v2/countries/getAll", + "description": "Devuelve todas los paises disponibles y habilitados de Ualabee.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/countries/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/countries/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/shapes/checkClosestPoint", + "url": "https://transit4.p.rapidapi.com/api/v2/shapes/checkClosestPoint", + "description": "With and array of shape IDs and the coordinates of a stop, check if there is a point in a 25-meter radius of said stop.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/shapes/checkClosestPoint\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/shapes/checkClosestPoint\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getUserReportStatus", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportStatus", + "description": "Devuelve los datos de los tipos de estado de los reportes de mapa.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportStatus\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportStatus\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/routes/getAll", + "url": "https://transit4.p.rapidapi.com/api/v2/routes/getAll", + "description": "Returns a list with every city route. If there arent any, returns an empty array. If city or route ID are incorrect, returns 400 Bad Request. ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/getArrivals", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/getArrivals", + "description": "Each arrival is composed by many trips, which represent every time a bus reaches the stop.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getArrivals\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getArrivals\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getGraphUpdateHistory", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getGraphUpdateHistory", + "description": "Los status code son. 1 - Actualizando. 0 - Actualizado. -1 - Fallo actualizacion. Si es undefined o null busca todas.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getGraphUpdateHistory\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getGraphUpdateHistory\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getByStatus", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getByStatus", + "description": "Devuelve el listado de las ciudades vigentes o no de un pais.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getByStatus\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getByStatus\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/routes/getTrips", + "url": "https://transit4.p.rapidapi.com/api/v2/routes/getTrips", + "description": "Returns only one trip for each shape_id. Also returns the trip's stops and shape as polyline", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getTrips\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getTrips\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/covid19/getVaccinationLocations", + "url": "https://transit4.p.rapidapi.com/api/v2/covid19/getVaccinationLocations", + "description": "Devuelve los datos de los sitios de vacunacion de una ciudad .", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/covid19/getVaccinationLocations\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/covid19/getVaccinationLocations\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getByLatLng", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getByLatLng", + "description": "Devuelve todos los datos necesarios para iniciar y cargar una ciudad.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getByLatLng\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getByLatLng\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/routes/getById", + "url": "https://transit4.p.rapidapi.com/api/v2/routes/getById", + "description": "Returns solicited route. Returns 404 if route does not exist. If city_id or route_id are incorrect returns 400 bad request. Route ID must be a STRING.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/routes/getById\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/userReports/getUserReportDuration", + "url": "https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportDuration", + "description": "Devuelve los datos de los tipos de duracion de los reportes de mapa.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportDuration\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/userReports/getUserReportDuration\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/getFavorites", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/getFavorites", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getFavorites\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getFavorites\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getConfig", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getConfig", + "description": "Devuelve todos los datos necesarios para iniciar y cargar una ciudad.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getConfig\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getConfig\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getAll", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getAll", + "description": "Devuelve el listado de las ciudades vigentes.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getAll\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getAvgVehicleOccupancy", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getAvgVehicleOccupancy", + "description": "Devuelve el promedio de la ocupacion segun el dia y la hora de la consulta.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getAvgVehicleOccupancy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getAvgVehicleOccupancy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/stops/getNearby", + "url": "https://transit4.p.rapidapi.com/api/v2/stops/getNearby", + "description": "The zoom passed by parameter is turned into a set radius
depending on whether client_platform is web or undefined.

Plus, if client_platform is undefined, zoom-radius relation will change according to different city IDs.

Service will return empty array if zoom isn't related to any radius. for example; zoom < 16 in cordoba.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getNearby\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/stops/getNearby\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "/api/v2/cities/getNearbyServiceStations", + "url": "https://transit4.p.rapidapi.com/api/v2/cities/getNearbyServiceStations", + "description": "Devuelve las estaciones de bici (Talleres, negocios, gomerias, etc) cercanas a un punto y zoom de una ciudad.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getNearbyServiceStations\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://transit4.p.rapidapi.com/api/v2/cities/getNearbyServiceStations\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"transit4.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/translator.json b/toolbench/toolenv/tools/Transportation/translator.json new file mode 100644 index 0000000000000000000000000000000000000000..c6496871412b268d4e1621a4ae248f1f5cc0f1c5 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/translator.json @@ -0,0 +1,28 @@ +{ + "product_id": "api_8e2c13a9-8489-420e-8745-ab1f0d7e4bf2", + "tool_description": "Translator is an API that can translate to any language.", + "home_url": "https://rapidapi.com/daminsoft/api/translator95/", + "name": "Translator", + "title": "Translator", + "pricing": "PAID", + "tool_name": "Translator", + "score": null, + "host": "translator95.p.rapidapi.com", + "api_list": [ + { + "name": "Translate", + "url": "https://translator95.p.rapidapi.com/translate", + "description": "Automatismz translator is an api that can translate to any language chosen.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://translator95.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translator95.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://translator95.p.rapidapi.com/translate\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"translator95.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "translatedText": "Bonjour" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/travel_advisor.json b/toolbench/toolenv/tools/Transportation/travel_advisor.json new file mode 100644 index 0000000000000000000000000000000000000000..1131f878774d1b74f68101943c1e742784466795 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/travel_advisor.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b586002bf89ce683bfa9c555373aa939b24ec0ef6cdb5fc2acfcde0a7e8b56b +size 11489094 diff --git a/toolbench/toolenv/tools/Transportation/travel_advisor/api.py b/toolbench/toolenv/tools/Transportation/travel_advisor/api.py new file mode 100644 index 0000000000000000000000000000000000000000..cb9e3efffbb97517339e8baf100a5465904f5bab --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/travel_advisor/api.py @@ -0,0 +1,1154 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flights_create_session_deprecating(d1: str, dd1: str, o1: str, tc: str=None, ts: int=None, ta: int=1, currency: str='USD', d2: str=None, o2: str=None, c: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "* TripAdvisor stops providing "Flights feature" via their mobile application, the web version is going to be down in the future. + Create new session for searching flights tickets of all airlines around the world. The flight APIs need to use as following : Firstly, you init a search session by using the create-session endpoint and get sid value Secondly, you repeatedly call poll endpoint until the summary/c field is true to get final total flight by summary/nr value. o parameter must be 0 otherwise the summary field is not returned. Thirdly, you repeatedly call poll endpoint with o increasing by n value step by step until you reach total flight." + d1: The airport code of first destination location + dd1: The date of departure from first origin, the format is yyyy-MM-dd. Ex : 2020-05-15 + o1: Airport code of first origin + tc: The age of every children separated by comma. Ex : 11,5 + ts: The number of seniors + ta: The number of adults + currency: The currency code + d2: The airport code of second destination location + o2: The airport code of second origin location + c: Cabin code, such as 0 - Economy | 1- Business Class | 2 - First Class | 3 - Premium Economy + + """ + url = f"https://travel-advisor.p.rapidapi.com/flights/create-session" + querystring = {'d1': d1, 'dd1': dd1, 'o1': o1, } + if tc: + querystring['tc'] = tc + if ts: + querystring['ts'] = ts + if ta: + querystring['ta'] = ta + if currency: + querystring['currency'] = currency + if d2: + querystring['d2'] = d2 + if o2: + querystring['o2'] = o2 + if c: + querystring['c'] = c + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airports_search_deprecating(query: str, locale: str='en_US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "* TripAdvisor stops providing "Flights feature" via their mobile application, the web version is going to be down in the future. + Search for airport code by countries', cities', etc... name" + query: Name of cities, districts, places, etc... + locale: The language code + + """ + url = f"https://travel-advisor.p.rapidapi.com/airports/search" + querystring = {'query': query, } + if locale: + querystring['locale'] = locale + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def attractions_list_deprecated(location_id: int, lunit: str='km', offset: int=None, subcategory: int=None, currency: str='USD', bookable_first: bool=None, limit: int=None, min_rating: int=None, lang: str='en_US', sort: str='recommended', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List attractions of specific location by location_id" + location_id: The value of location_id field that returned in locations/search endpoint + lunit: One of the followings km|mi + offset: The number of items to ignore for paging purpose + subcategory: Attraction category - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (only one value is allowed at a time) returned right in this endpoint + currency: The currency code + bookable_first: Book online first + limit: The number of items per response (max 30) + min_rating: Rating - Min 3 max 5 + lang: The language code + sort: One of following recommended|ranking + + """ + url = f"https://travel-advisor.p.rapidapi.com/attractions/list" + querystring = {'location_id': location_id, } + if lunit: + querystring['lunit'] = lunit + if offset: + querystring['offset'] = offset + if subcategory: + querystring['subcategory'] = subcategory + if currency: + querystring['currency'] = currency + if bookable_first: + querystring['bookable_first'] = bookable_first + if limit: + querystring['limit'] = limit + if min_rating: + querystring['min_rating'] = min_rating + if lang: + querystring['lang'] = lang + if sort: + querystring['sort'] = sort + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotel_filters_list_deprecated(location_id: int, adults: int=1, rooms: int=1, lang: str='en_US', pricesmin: int=None, subcategory: str=None, currency: str='USD', zff: str=None, nights: int=2, amenities: str=None, checkin: str=None, hotel_class: str=None, child_rm_ages: str=None, sort: str='recommended', order: str='asc', pricesmax: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List all available options and filters" + location_id: The value of location_id field that returned in locations/search endpoint + adults: The number of adults in all rooms + rooms: The number of rooms + lang: The language code + pricesmin: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $120 -> 120 + subcategory: Check for suitable value of filters/subcategory field (separated by comma to filter by multiple values. Ex : hotel,bb,specialty) returned in hotel-filters/list endpoint + currency: The currency code + zff: Hotel Style - Check for suitable value of filters/zff field (separated by comma to filter by multiple values. Ex : 4,6) returned in hotel-filters/list endpoint + nights: The number of nights to live + amenities: Check for suitable value of filters/amenities field (separated by comma to filter by multiple values. Ex : beach,bar_lounge,airport_transportation) returned in hotel-filters/list endpoint + checkin: The check-in date at hotel, the format is yyyy-MM-dd. Ex : 2020-05-15 + hotel_class: Check for suitable value of filters/hotel_class field (separated by comma to filter by multiple values. Ex : 1,2,3) returned in hotel-filters/list endpoint + child_rm_ages: The age of every children separated by comma in all rooms. Ex : 7,10 + sort: One of the followings : recommended|popularity|price + order: One of the followings : asc|desc, this param is used with sort by price + pricesmax: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $120 -> 120 + + """ + url = f"https://travel-advisor.p.rapidapi.com/hotel-filters/list" + querystring = {'location_id': location_id, } + if adults: + querystring['adults'] = adults + if rooms: + querystring['rooms'] = rooms + if lang: + querystring['lang'] = lang + if pricesmin: + querystring['pricesmin'] = pricesmin + if subcategory: + querystring['subcategory'] = subcategory + if currency: + querystring['currency'] = currency + if zff: + querystring['zff'] = zff + if nights: + querystring['nights'] = nights + if amenities: + querystring['amenities'] = amenities + if checkin: + querystring['checkin'] = checkin + if hotel_class: + querystring['hotel_class'] = hotel_class + if child_rm_ages: + querystring['child_rm_ages'] = child_rm_ages + if sort: + querystring['sort'] = sort + if order: + querystring['order'] = order + if pricesmax: + querystring['pricesmax'] = pricesmax + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def answers_list_deprecated(question_id: int, offset: int=None, limit: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List answers related to a questions by its id" + question_id: The value of id field that returned in questions/list endpoint + offset: The number of items to ignore for paging purpose + limit: The number of items per response (max 10) + + """ + url = f"https://travel-advisor.p.rapidapi.com/answers/list" + querystring = {'question_id': question_id, } + if offset: + querystring['offset'] = offset + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def photos_list_deprecated(location_id: int, currency: str='USD', limit: int=50, lang: str='en_US', offset: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List photos related to a location by its id" + location_id: The value of location_id field that returned in hotels/list, restaurants/list, or attractions/list endpoints + currency: The currency code + limit: The number of items per response (max 50) + lang: The language code + offset: The number of items to ignore for paging purpose + + """ + url = f"https://travel-advisor.p.rapidapi.com/photos/list" + querystring = {'location_id': location_id, } + if currency: + querystring['currency'] = currency + if limit: + querystring['limit'] = limit + if lang: + querystring['lang'] = lang + if offset: + querystring['offset'] = offset + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def tips_list(location_id: int, offset: int=None, lang: str='en_US', currency: str='USD', limit: int=20, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List tips of specific hotel by its location_id" + location_id: The value of location_id field that returned in hotels/list endpoint + offset: The number of items to ignore for paging purpose + currency: The currency code + limit: The number of items per response (max 20) + + """ + url = f"https://travel-advisor.p.rapidapi.com/tips/list" + querystring = {'location_id': location_id, } + if offset: + querystring['offset'] = offset + if lang: + querystring['lang'] = lang + if currency: + querystring['currency'] = currency + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def keywords_list(location_id: int, limit: int=10, offset: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List interesting keywords related to a specific location by its location_id" + location_id: The value of location_id field that returned in hotels/list, restaurants/list, or attractions/list endpoints + limit: The number of items per response (max 10) + offset: The number of items to ignore for paging purpose + + """ + url = f"https://travel-advisor.p.rapidapi.com/keywords/list" + querystring = {'location_id': location_id, } + if limit: + querystring['limit'] = limit + if offset: + querystring['offset'] = offset + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def questions_list_deprecated(location_id: int, limit: int=10, offset: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List questions related to a location by its id" + location_id: The value of location_id field that returned in hotels/list, restaurants/list, or attractions/list endpoints + limit: The number of items per response (max 10) + offset: The number of items to ignore for paging purpose + + """ + url = f"https://travel-advisor.p.rapidapi.com/questions/list" + querystring = {'location_id': location_id, } + if limit: + querystring['limit'] = limit + if offset: + querystring['offset'] = offset + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotels_list_in_boundary_deprecated(tr_latitude: int, tr_longitude: int, bl_longitude: int, bl_latitude: int, pricesmax: int=None, amenities: str=None, pricesmin: int=None, offset: int=None, rooms: int=None, subcategory: str='hotel,bb,specialty', currency: str='USD', adults: int=1, child_rm_ages: str=None, zff: str=None, limit: int=30, hotel_class: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List hotels by specifying coordinates of bottom left and top right of boundary" + tr_latitude: Latitude of top right coordinate + tr_longitude: Longitude of top right coordinate + bl_longitude: Longitude of bottom left coordinate + bl_latitude: Latitude of bottom left coordinate + amenities: Check for suitable value of filters/amenities field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + pricesmin: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $10 -> 10 + offset: The number of items to ignore for paging purpose + rooms: The number of rooms + subcategory: Check for suitable value of filters/subcategory field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + currency: The currency code + adults: The number of adults in all rooms + child_rm_ages: The age of every children separated by comma in all rooms + zff: Hotel Style - Check for suitable value of \\\"filters/zff\\\" field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + limit: The number of items per response (max 30) + hotel_class: Check for suitable value of filters/hotel_class field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + + """ + url = f"https://travel-advisor.p.rapidapi.com/hotels/list-in-boundary" + querystring = {'tr_latitude': tr_latitude, 'tr_longitude': tr_longitude, 'bl_longitude': bl_longitude, 'bl_latitude': bl_latitude, } + if pricesmax: + querystring['pricesmax'] = pricesmax + if amenities: + querystring['amenities'] = amenities + if pricesmin: + querystring['pricesmin'] = pricesmin + if offset: + querystring['offset'] = offset + if rooms: + querystring['rooms'] = rooms + if subcategory: + querystring['subcategory'] = subcategory + if currency: + querystring['currency'] = currency + if adults: + querystring['adults'] = adults + if child_rm_ages: + querystring['child_rm_ages'] = child_rm_ages + if zff: + querystring['zff'] = zff + if limit: + querystring['limit'] = limit + if hotel_class: + querystring['hotel_class'] = hotel_class + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def locations_search_deprecating(query: str, limit: int=30, sort: str='relevance', offset: int=0, lang: str='en_US', location_id: int=1, units: str='km', currency: str='USD', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for related cities, countries, and suggestions" + query: Name of cities, districts, places, etc... + limit: The number of items per response (max 30) + sort: One of the followings : relevance|distance + offset: The number of items to ignore for paging purpose + lang: The language code + location_id: The value of location_id field returned right in this endpoint or .../locations/auto-complete endpoint + units: One of the followings : km|mi + currency: The currency code + + """ + url = f"https://travel-advisor.p.rapidapi.com/locations/search" + querystring = {'query': query, } + if limit: + querystring['limit'] = limit + if sort: + querystring['sort'] = sort + if offset: + querystring['offset'] = offset + if lang: + querystring['lang'] = lang + if location_id: + querystring['location_id'] = location_id + if units: + querystring['units'] = units + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def locations_auto_complete_deprecating(query: str, lang: str='en_US', units: str='km', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List suggested locations by term or phrase" + query: Name of cities, districts, places, etc... + lang: The language code + units: One of the followings : km|mi + + """ + url = f"https://travel-advisor.p.rapidapi.com/locations/auto-complete" + querystring = {'query': query, } + if lang: + querystring['lang'] = lang + if units: + querystring['units'] = units + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def locations_v2_auto_complete(query: str, units: str='km', lang: str='en_US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List suggested locations by term or phrase" + query: Name of cities, districts, places, etc... + units: One of the followings : km|mi + lang: The language code + + """ + url = f"https://travel-advisor.p.rapidapi.com/locations/v2/auto-complete" + querystring = {'query': query, } + if units: + querystring['units'] = units + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_poll_deprecating(sid: str, currency: str='USD', mc: str=None, o: int=0, so: str='PRICE', ca: str=None, am: str=None, n: int=15, ns: str='NON_STOP,ONE_STOP', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "* TripAdvisor stops providing "Flights feature" via their mobile application, the web version is going to be down in the future. + Poll for more available flight data until the value of "summary/c" field returned right in this endpoint is true. The flight APIs need to use as following : Firstly, you init a search session by using the create-session endpoint and get sid value Secondly, you repeatedly call poll endpoint until the summary/c field is true to get final total flight by summary/nr value. o parameter must be 0 otherwise the summary field is not returned. Thirdly, you repeatedly call poll endpoint with o increasing by n value step by step until you reach total flight." + sid: The value of sid returned in flights/create-session endpoint + currency: The currency code + mc: Check for suitable value of "summary/cp" or "summary/ocp" field (separated by comma to specify multiple values) returned in flights/create-session or right in this endpoint + o: The offset of items to be ignored in response for paging. Use summary/nr field returned in response to get total flights + so: Check for suitable value of "so" field returned in flights/create-session or right in this endpoint + ca: Check for suitable value of "summary/ap" field (separated by comma to specify multiple values) returned in flights/create-session or right in this endpoint + am: Check for suitable value of "itineraries/ac" field (separated by comma to specify multiple values) returned in flights/create-session or right in this endpoint + n: The number of items per response (max 15) + ns: One of following NON_STOP | ONE_STOP | TWO_PLUS or separated by comma to specify multiple values + + """ + url = f"https://travel-advisor.p.rapidapi.com/flights/poll" + querystring = {'sid': sid, } + if currency: + querystring['currency'] = currency + if mc: + querystring['mc'] = mc + if o: + querystring['o'] = o + if so: + querystring['so'] = so + if ca: + querystring['ca'] = ca + if am: + querystring['am'] = am + if n: + querystring['n'] = n + if ns: + querystring['ns'] = ns + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flights_get_booking_url_deprecating(searchid: str, orig: str, is_id: str, searchhash: str, dest: str, impressionid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "* TripAdvisor stops providing "Flights feature" via their mobile application, the web version is going to be down in the future. + Generate booking url relating to a specific flight" + searchid: The value of search_params/sid field returned in response of .../flights/create-session endpoint. For example : 5aaa20e5-d5c8-4cdd-a657-b6453bb80756.1483 + orig: Airport code of origin. For example : DMK + id: The value of itineraries/l/id field returned in response of .../flights/poll endpoint. For example : AgodaFlights|1|68 + searchhash: The value of summary/sh field returned in response of .../flights/create-session endpoint. For example : 2188ff0ed4e8e4ee7a50dc32b229e11d + dest: Airport code of destination. For example : NYC + impressionid: The value of itineraries/l/impressionId field returned in response of .../flights/poll endpoint. For example : 372e5654-b873-4c26-859b-633c29f7ad84.93175 + + """ + url = f"https://travel-advisor.p.rapidapi.com/flights/get-booking-url" + querystring = {'searchId': searchid, 'Orig': orig, 'id': is_id, 'searchHash': searchhash, 'Dest': dest, } + if impressionid: + querystring['impressionId'] = impressionid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reviews_list_deprecated(location_id: int, lang: str='en_US', currency: str='USD', offset: int=None, limit: int=20, keyword: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List reviews related to a location by its location_id" + location_id: The value of location_id field that returned in hotels/list, restaurants/list, or attractions/list endpoints + lang: The language code + currency: The currency code + offset: The number of items to ignore for paging purpose + limit: The number of items per response (max 20) + keyword: Check for suitable value of text field returned in keywords/list endpoint + + """ + url = f"https://travel-advisor.p.rapidapi.com/reviews/list" + querystring = {'location_id': location_id, } + if lang: + querystring['lang'] = lang + if currency: + querystring['currency'] = currency + if offset: + querystring['offset'] = offset + if limit: + querystring['limit'] = limit + if keyword: + querystring['keyword'] = keyword + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def attractions_list_by_latlng_deprecated(latitude: int, longitude: int, currency: str='USD', lang: str='en_US', distance: int=None, limit: int=None, offset: int=None, lunit: str='km', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List attractions by specifying an coordinate and radius" + latitude: Latitude of coordinate + longitude: Longitude of coordinate + currency: The currency code + lang: The language code + distance: The radius around specified coordinate (max 25) + limit: The number of items per response (max 30) + offset: The number of items to ignore for paging purpose + lunit: One of the followings km|mi + + """ + url = f"https://travel-advisor.p.rapidapi.com/attractions/list-by-latlng" + querystring = {'latitude': latitude, 'longitude': longitude, } + if currency: + querystring['currency'] = currency + if lang: + querystring['lang'] = lang + if distance: + querystring['distance'] = distance + if limit: + querystring['limit'] = limit + if offset: + querystring['offset'] = offset + if lunit: + querystring['lunit'] = lunit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def attractions_list_in_boundary_deprecated(bl_latitude: int, tr_latitude: int, bl_longitude: int, tr_longitude: int, currency: str='USD', offset: int=None, lang: str='en_US', limit: int=None, lunit: str='km', min_rating: int=None, bookable_first: bool=None, subcategory: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List attractions by specifying coordinates of bottom left and top right of a boundary" + bl_latitude: Latitude of bottom left coordinate + tr_latitude: Latitude of top right coordinate + bl_longitude: Longitude of bottom left coordinate + tr_longitude: Longitude of top right coordinate + currency: The currency code + offset: The number of items to ignore for paging purpose + lang: The language code + limit: The number of items per response (max 30) + lunit: One of the followings km|mi + min_rating: Rating - Min 3 max 5 + bookable_first: Book online first + subcategory: Attraction category - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (only one value is allowed at a time) returned right in this endpoint + + """ + url = f"https://travel-advisor.p.rapidapi.com/attractions/list-in-boundary" + querystring = {'bl_latitude': bl_latitude, 'tr_latitude': tr_latitude, 'bl_longitude': bl_longitude, 'tr_longitude': tr_longitude, } + if currency: + querystring['currency'] = currency + if offset: + querystring['offset'] = offset + if lang: + querystring['lang'] = lang + if limit: + querystring['limit'] = limit + if lunit: + querystring['lunit'] = lunit + if min_rating: + querystring['min_rating'] = min_rating + if bookable_first: + querystring['bookable_first'] = bookable_first + if subcategory: + querystring['subcategory'] = subcategory + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def attractions_get_details_deprecated(location_id: int, currency: str='USD', lang: str='en_US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all information of specific attracting location by its location_id" + location_id: The value of location_id field that returned in attractions/list endpoint + currency: The currency code + lang: The language code + + """ + url = f"https://travel-advisor.p.rapidapi.com/attractions/get-details" + querystring = {'location_id': location_id, } + if currency: + querystring['currency'] = currency + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def restaurants_list_deprecated(location_id: int, lunit: str='km', offset: int=None, min_rating: str=None, limit: int=30, restaurant_mealtype: str=None, lang: str='en_US', restaurant_tagcategory_standalone: str='10591', restaurant_styles: str=None, currency: str='USD', combined_food: str=None, prices_restaurants: str=None, dietary_restrictions: str=None, restaurant_tagcategory: str='10591', open_now: bool=None, restaurant_dining_options: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List restaurants related to a location by location_id" + location_id: The value of location_id field that returned in locations/search endpoint + lunit: One of the followings km|mi + offset: The number of items to ignore for paging purpose + min_rating: Min 3 - Max 5 + limit: The number of items per response (max 30) + restaurant_mealtype: Meals - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to filter by multiple values. Ex : 10598,10599) returned right in this endpoint + lang: The language code + restaurant_tagcategory_standalone: Establishment Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_styles: Restaurant Features - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + currency: The currency code + combined_food: Cuisine Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + prices_restaurants: Prices - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + dietary_restrictions: Dietary Restrictions - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_tagcategory: Establishment Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + open_now: Only returns restaurants which are opening now + restaurant_dining_options: Restaurant Features - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + + """ + url = f"https://travel-advisor.p.rapidapi.com/restaurants/list" + querystring = {'location_id': location_id, } + if lunit: + querystring['lunit'] = lunit + if offset: + querystring['offset'] = offset + if min_rating: + querystring['min_rating'] = min_rating + if limit: + querystring['limit'] = limit + if restaurant_mealtype: + querystring['restaurant_mealtype'] = restaurant_mealtype + if lang: + querystring['lang'] = lang + if restaurant_tagcategory_standalone: + querystring['restaurant_tagcategory_standalone'] = restaurant_tagcategory_standalone + if restaurant_styles: + querystring['restaurant_styles'] = restaurant_styles + if currency: + querystring['currency'] = currency + if combined_food: + querystring['combined_food'] = combined_food + if prices_restaurants: + querystring['prices_restaurants'] = prices_restaurants + if dietary_restrictions: + querystring['dietary_restrictions'] = dietary_restrictions + if restaurant_tagcategory: + querystring['restaurant_tagcategory'] = restaurant_tagcategory + if open_now: + querystring['open_now'] = open_now + if restaurant_dining_options: + querystring['restaurant_dining_options'] = restaurant_dining_options + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def restaurants_list_by_latlng_deprecated(latitude: int, longitude: int, offset: int=None, distance: int=2, restaurant_styles: str=None, min_rating: str=None, restaurant_tagcategory_standalone: str=None, restaurant_mealtype: str=None, prices_restaurants: str=None, currency: str='USD', open_now: bool=None, limit: int=30, lang: str='en_US', combined_food: str=None, lunit: str='km', dietary_restrictions: str=None, restaurant_dining_options: str=None, restaurant_tagcategory: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List restaurants by specifying an coordinate and radius" + latitude: Latitude of coordinate + longitude: Longitude of coordinate + offset: The number of items to ignore for paging purpose + distance: The radius around specified coordinate (max 10) + restaurant_styles: Restaurant Features - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + min_rating: Min 3 - Max 5 + restaurant_tagcategory_standalone: Establishment Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_mealtype: Meals - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + prices_restaurants: Prices - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + currency: The currency code + open_now: Only returns restaurants which are opening now + limit: The number of items per response (max 30) + lang: The language code + combined_food: Cuisine Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + lunit: One of the followings km|mi + dietary_restrictions: Dietary Restrictions - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_dining_options: Restaurant Features - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_tagcategory: Establishment Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + + """ + url = f"https://travel-advisor.p.rapidapi.com/restaurants/list-by-latlng" + querystring = {'latitude': latitude, 'longitude': longitude, } + if offset: + querystring['offset'] = offset + if distance: + querystring['distance'] = distance + if restaurant_styles: + querystring['restaurant_styles'] = restaurant_styles + if min_rating: + querystring['min_rating'] = min_rating + if restaurant_tagcategory_standalone: + querystring['restaurant_tagcategory_standalone'] = restaurant_tagcategory_standalone + if restaurant_mealtype: + querystring['restaurant_mealtype'] = restaurant_mealtype + if prices_restaurants: + querystring['prices_restaurants'] = prices_restaurants + if currency: + querystring['currency'] = currency + if open_now: + querystring['open_now'] = open_now + if limit: + querystring['limit'] = limit + if lang: + querystring['lang'] = lang + if combined_food: + querystring['combined_food'] = combined_food + if lunit: + querystring['lunit'] = lunit + if dietary_restrictions: + querystring['dietary_restrictions'] = dietary_restrictions + if restaurant_dining_options: + querystring['restaurant_dining_options'] = restaurant_dining_options + if restaurant_tagcategory: + querystring['restaurant_tagcategory'] = restaurant_tagcategory + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def restaurants_get_details_deprecated(location_id: int, currency: str='USD', lang: str='en_US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all information of a specific restaurant by its location_id" + location_id: The value of location_id field that returned in restaurants/list endpoint + currency: The currency code + lang: The language code + + """ + url = f"https://travel-advisor.p.rapidapi.com/restaurants/get-details" + querystring = {'location_id': location_id, } + if currency: + querystring['currency'] = currency + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def restaurants_list_in_boundary_deprecated(tr_longitude: int, tr_latitude: int, bl_latitude: int, bl_longitude: int, prices_restaurants: str=None, min_rating: int=None, dietary_restrictions: str=None, open_now: bool=None, offset: int=None, restaurant_dining_options: str=None, limit: int=30, combined_food: str=None, restaurant_tagcategory: str='10591', restaurant_mealtype: str=None, currency: str='USD', restaurant_styles: str=None, lunit: str='km', restaurant_tagcategory_standalone: str='10591', lang: str='en_US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List restaurants by specifying coordinates of bottom left and top right of a boundary" + tr_longitude: Longitude of top right coordinate + tr_latitude: Latitude of top right coordinate + bl_latitude: Latitude of bottom left coordinate + bl_longitude: Longitude of bottom left coordinate + prices_restaurants: Prices - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + min_rating: Min 3 - Max 5 + dietary_restrictions: Dietary Restrictions - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + open_now: Only returns restaurants which are opening now + offset: The number of items to ignore for paging purpose + restaurant_dining_options: Restaurant Features - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + limit: The number of items per response (max 30) + combined_food: Cuisine Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_tagcategory: Establishment Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + restaurant_mealtype: Meals - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to filter by multiple values. Ex : 10598,10599) returned right in this endpoint + currency: The currency code + restaurant_styles: Restaurant Features - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + lunit: One of the followings km|mi + restaurant_tagcategory_standalone: Establishment Type - Check for suitable values of filters_v2/filter_sections/filter_groups/options/value field (separated by comma to specify multiple values) returned right in this endpoint + lang: The language code + + """ + url = f"https://travel-advisor.p.rapidapi.com/restaurants/list-in-boundary" + querystring = {'tr_longitude': tr_longitude, 'tr_latitude': tr_latitude, 'bl_latitude': bl_latitude, 'bl_longitude': bl_longitude, } + if prices_restaurants: + querystring['prices_restaurants'] = prices_restaurants + if min_rating: + querystring['min_rating'] = min_rating + if dietary_restrictions: + querystring['dietary_restrictions'] = dietary_restrictions + if open_now: + querystring['open_now'] = open_now + if offset: + querystring['offset'] = offset + if restaurant_dining_options: + querystring['restaurant_dining_options'] = restaurant_dining_options + if limit: + querystring['limit'] = limit + if combined_food: + querystring['combined_food'] = combined_food + if restaurant_tagcategory: + querystring['restaurant_tagcategory'] = restaurant_tagcategory + if restaurant_mealtype: + querystring['restaurant_mealtype'] = restaurant_mealtype + if currency: + querystring['currency'] = currency + if restaurant_styles: + querystring['restaurant_styles'] = restaurant_styles + if lunit: + querystring['lunit'] = lunit + if restaurant_tagcategory_standalone: + querystring['restaurant_tagcategory_standalone'] = restaurant_tagcategory_standalone + if lang: + querystring['lang'] = lang + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotels_list_deprecated(adults: int, nights: int, location_id: int, rooms: int, sort: str='recommended', offset: int=0, order: str='asc', pricesmax: int=None, limit: int=30, child_rm_ages: str=None, lang: str='en_US', subcategory: str=None, zff: str=None, checkin: str=None, currency: str='USD', pricesmin: int=None, hotel_class: str=None, amenities: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List all hotels around the world with options and filters" + adults: The number of adults in all rooms + nights: The number of nights to live + location_id: The value of location_id field that returned in locations/search endpoint + rooms: The number of rooms + sort: One of the followings : recommended|popularity|price + offset: The number of items to ignore for paging purpose + order: One of the followings : asc|desc, this param is used with sort by price + pricesmax: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $120 -> 120 + limit: The number of items per response (max 30) + child_rm_ages: The age of every children separated by comma in all rooms. Ex : 7,10 + lang: The language code + subcategory: Check for suitable value of filters/subcategory field (separated by comma to filter by multiple values. Ex : hotel,bb,specialty) returned in hotel-filters/list endpoint + zff: Hotel Style - Check for suitable value of filters/zff field (separated by comma to filter by multiple values. Ex : 4,6) returned in hotel-filters/list endpoint + checkin: The check-in date at hotel, the format is yyyy-MM-dd. Ex : 2020-05-15 + currency: The currency code + pricesmin: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $120 -> 120 + hotel_class: Check for suitable value of filters/hotel_class field (separated by comma to filter by multiple values. Ex : 1,2,3) returned in hotel-filters/list endpoint + amenities: Check for suitable value of filters/amenities field (separated by comma to filter by multiple values. Ex : beach,bar_lounge,airport_transportation) returned in hotel-filters/list endpoint + + """ + url = f"https://travel-advisor.p.rapidapi.com/hotels/list" + querystring = {'adults': adults, 'nights': nights, 'location_id': location_id, 'rooms': rooms, } + if sort: + querystring['sort'] = sort + if offset: + querystring['offset'] = offset + if order: + querystring['order'] = order + if pricesmax: + querystring['pricesmax'] = pricesmax + if limit: + querystring['limit'] = limit + if child_rm_ages: + querystring['child_rm_ages'] = child_rm_ages + if lang: + querystring['lang'] = lang + if subcategory: + querystring['subcategory'] = subcategory + if zff: + querystring['zff'] = zff + if checkin: + querystring['checkin'] = checkin + if currency: + querystring['currency'] = currency + if pricesmin: + querystring['pricesmin'] = pricesmin + if hotel_class: + querystring['hotel_class'] = hotel_class + if amenities: + querystring['amenities'] = amenities + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotels_list_by_latlng_deprecated(latitude: int, longitude: int, adults: int=1, offset: int=None, child_rm_ages: str='7,10', currency: str='USD', rooms: int=1, distance: int=None, lang: str='en_US', pricesmax: int=None, hotel_class: str='1,2,3', limit: int=30, zff: str='4,6', amenities: str='beach,bar_lounge,airport_transportation', nights: str='2', subcategory: str='hotel,bb,specialty', checkin: str='2022-03-08', pricesmin: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List hotels by specifying a coordinate and radius" + longitude: Longitude of coordinate + adults: The number of adults in all rooms + offset: The number of items to ignore for paging purpose + child_rm_ages: The age of every children separated by comma in all rooms + currency: The currency code + rooms: The number of rooms + distance: The radius to look for nearest places + lang: The language code + pricesmax: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $120 -> 120 + hotel_class: Check for suitable value of filters/hotel_class field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + limit: The number of items per response (max 30) + zff: Hotel Style - Check for suitable value of \\\"filters/zff\\\" field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + amenities: Check for suitable value of filters/amenities field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + nights: The number of nights to live + subcategory: Check for suitable value of filters/subcategory field (separated by comma to specify multiple values) returned in hotel-filters/list endpoint + checkin: The check-in date at hotel + pricesmin: Check for suitable price range in filters/prices_slider field returned in hotel-filters/list endpoint. For exmaple : $10 -> 10 + + """ + url = f"https://travel-advisor.p.rapidapi.com/hotels/list-by-latlng" + querystring = {'latitude': latitude, 'longitude': longitude, } + if adults: + querystring['adults'] = adults + if offset: + querystring['offset'] = offset + if child_rm_ages: + querystring['child_rm_ages'] = child_rm_ages + if currency: + querystring['currency'] = currency + if rooms: + querystring['rooms'] = rooms + if distance: + querystring['distance'] = distance + if lang: + querystring['lang'] = lang + if pricesmax: + querystring['pricesmax'] = pricesmax + if hotel_class: + querystring['hotel_class'] = hotel_class + if limit: + querystring['limit'] = limit + if zff: + querystring['zff'] = zff + if amenities: + querystring['amenities'] = amenities + if nights: + querystring['nights'] = nights + if subcategory: + querystring['subcategory'] = subcategory + if checkin: + querystring['checkin'] = checkin + if pricesmin: + querystring['pricesmin'] = pricesmin + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotels_get_details_deprecated(location_id: int, nights: int=2, child_rm_ages: str=None, lang: str='en_US', checkin: str='2022-03-15', rooms: str=None, adults: int=1, currency: str='USD', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all information of hotels" + location_id: The value of location_id field that returned in .../hotels/list... endpoint + nights: The number of nights to live + child_rm_ages: The age of every children separated by comma in all rooms + lang: The language code + checkin: The check-in date at hotel + rooms: The number of rooms + adults: The number of adults in all rooms + currency: The currency code + + """ + url = f"https://travel-advisor.p.rapidapi.com/hotels/get-details" + querystring = {'location_id': location_id, } + if nights: + querystring['nights'] = nights + if child_rm_ages: + querystring['child_rm_ages'] = child_rm_ages + if lang: + querystring['lang'] = lang + if checkin: + querystring['checkin'] = checkin + if rooms: + querystring['rooms'] = rooms + if adults: + querystring['adults'] = adults + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-advisor.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/travel_hacking_tool.json b/toolbench/toolenv/tools/Transportation/travel_hacking_tool.json new file mode 100644 index 0000000000000000000000000000000000000000..807e842ef570d4e16a010eea0ea2066920b31b15 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/travel_hacking_tool.json @@ -0,0 +1,247 @@ +{ + "tool_name":"Travel Hacking Tool", + "tool_description":"Complete and up-to-date database with detailed information about IATA airports, IATA airlines, countries, alliances and more.", + "title":"Travel Hacking Tool", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":518, + "avgSuccessRate":89, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/travel-tools-travel-tools-default/api/travel-hacking-tool/", + "host":"travel-hacking-tool.p.rapidapi.com", + "api_list":[ + { + "name":"Get Airline Alliance List", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/alliances/", + "description":"This endpoint returns a list of airline alliances.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/alliances/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "allow":"GET, POST, HEAD, OPTIONS", + "content-type":"application/json", + "date":"Sun, 30 Aug 2020 12:51:39 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.1.24", + "vary":"Accept", + "via":"1.1 vegur", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.24", + "content-length":"153", + "connection":"Close" + }, + "schema":{} + }, + { + "name":"Get Country List", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/listcountries/", + "description":"This endpoint returns a list of country codes (ISO-3166).", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/listcountries/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airline Details", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/airlines/{code}/", + "description":"This endpoint returns the details for an airline based on an IATA code.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"Specify the IATA code of an airline", + "default":"LH" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/airlines/{code}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "allow":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS", + "content-type":"application/json", + "date":"Sun, 30 Aug 2020 13:10:51 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.1.24", + "vary":"Accept", + "via":"1.1 vegur", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.24", + "content-length":"48", + "connection":"Close" + }, + "schema":{} + }, + { + "name":"Get Airport List", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/listairports/", + "description":"Returns an up to date list of all IATA Airports in our database.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/listairports/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airline List", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/listairlines/", + "description":"This endpoint returns a full list of airlines with their IATA code and full name.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/listairlines/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airplane List", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/listairplanes/", + "description":"This endpoint returns a list of all airplane types available in our database.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/listairplanes/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Country Details", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/countries/{code}/", + "description":"This returns details for a country based on the country codes (ISO-3166).", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"", + "default":"US" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/countries/{code}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "allow":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS", + "content-type":"application/json", + "date":"Sun, 06 Sep 2020 09:04:23 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.2", + "vary":"Accept", + "via":"1.1 vegur", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.2", + "x-ratelimit-premium-data-limit":"50", + "x-ratelimit-premium-data-remaining":"42", + "content-length":"53", + "connection":"Close" + }, + "schema":{} + }, + { + "name":"Get TimeZones", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/timezones", + "description":"Get TimeZones in Olsen Format with UTC offset and Daylight Savings Time (DST).", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/timezones\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airplane Details", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/airplanes/{code}/", + "description":"This endpoint returns a list of airplanes and other means of transportation to match GDS responses.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"", + "default":"777" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/airplanes/{code}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "allow":"GET, POST, HEAD, OPTIONS", + "content-type":"application/json", + "date":"Sun, 30 Aug 2020 12:57:58 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.1.24", + "vary":"Accept", + "via":"1.1 vegur", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.24", + "content-length":"128", + "connection":"Close" + }, + "schema":{} + }, + { + "name":"Get Airport Details", + "url":"https://travel-hacking-tool.p.rapidapi.com/api/airports/{code}/", + "description":"This endpoint returns the details such as name and location for a specified IATA airport.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"Specify a valid three letter IATA code.", + "default":"DFW" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://travel-hacking-tool.p.rapidapi.com/api/airports/{code}/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travel-hacking-tool.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{}, + "headers":{ + "allow":"GET, HEAD, OPTIONS", + "content-type":"application/json", + "date":"Tue, 12 Jan 2021 13:01:13 GMT", + "referrer-policy":"same-origin", + "server":"RapidAPI-1.2.6", + "vary":"Accept", + "via":"1.1 vegur", + "x-content-type-options":"nosniff", + "x-frame-options":"DENY", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.6", + "content-length":"235", + "connection":"Close" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/travel_hacking_tool/api.py b/toolbench/toolenv/tools/Transportation/travel_hacking_tool/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bc6870558d3a215012709fbcaad82f174c946397 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/travel_hacking_tool/api.py @@ -0,0 +1,220 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_airline_alliance_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of airline alliances." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/alliances/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_country_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of country codes (ISO-3166)." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/listcountries/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airline_details(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns the details for an airline based on an IATA code." + code: Specify the IATA code of an airline + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/airlines/{code}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airport_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns an up to date list of all IATA Airports in our database." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/listairports/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airline_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a full list of airlines with their IATA code and full name." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/listairlines/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airplane_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of all airplane types available in our database." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/listairplanes/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_country_details(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This returns details for a country based on the country codes (ISO-3166)." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/countries/{code}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_timezones(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get TimeZones in Olsen Format with UTC offset and Daylight Savings Time (DST)." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/timezones" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airplane_details(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of airplanes and other means of transportation to match GDS responses." + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/airplanes/{code}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airport_details(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns the details such as name and location for a specified IATA airport." + code: Specify a valid three letter IATA code. + + """ + url = f"https://travel-hacking-tool.p.rapidapi.com/api/airports/{code}/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travel-hacking-tool.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/us_gas_prices.json b/toolbench/toolenv/tools/Transportation/us_gas_prices.json new file mode 100644 index 0000000000000000000000000000000000000000..f9aad305f408f65e2192653d3c4066987abf8720 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/us_gas_prices.json @@ -0,0 +1,1057 @@ +{ + "tool_name":"US Gas Prices", + "tool_description":"Simplest and most comprehensive API for average gas price data in the US.", + "title":"US Gas Prices", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":407, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ultrasunshine/api/us-gas-prices/", + "host":"us-gas-prices.p.rapidapi.com", + "api_list":[ + { + "name":"/us/hi", + "url":"https://us-gas-prices.p.rapidapi.com/us/hi", + "description":"Returns current gas price data for Hawaii. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/hi\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/id", + "url":"https://us-gas-prices.p.rapidapi.com/us/id", + "description":"Returns current gas price data for Idaho. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/id\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/in", + "url":"https://us-gas-prices.p.rapidapi.com/us/in", + "description":"Returns current gas price data for Indiana. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/in\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ia", + "url":"https://us-gas-prices.p.rapidapi.com/us/ia", + "description":"Returns current gas price data for Iowa. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ia\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ks", + "url":"https://us-gas-prices.p.rapidapi.com/us/ks", + "description":"Returns current gas price data for Kansas. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ks\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ky", + "url":"https://us-gas-prices.p.rapidapi.com/us/ky", + "description":"Returns current gas price data for Kentucky. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ky\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/me", + "url":"https://us-gas-prices.p.rapidapi.com/us/me", + "description":"Returns current gas price data for Maine. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/me\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/md", + "url":"https://us-gas-prices.p.rapidapi.com/us/md", + "description":"Returns current gas price data for Maryland. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/md\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/mi", + "url":"https://us-gas-prices.p.rapidapi.com/us/mi", + "description":"Returns current gas price data for Michigan. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/mi\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/mn", + "url":"https://us-gas-prices.p.rapidapi.com/us/mn", + "description":"Returns current gas price data for Minnesota. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/mn\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ms", + "url":"https://us-gas-prices.p.rapidapi.com/us/ms", + "description":"Returns current gas price data for Mississippi. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ms\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/mo", + "url":"https://us-gas-prices.p.rapidapi.com/us/mo", + "description":"Returns current gas price data for Missouri. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/mo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/mt", + "url":"https://us-gas-prices.p.rapidapi.com/us/mt", + "description":"Returns current gas price data for Montana. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/mt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ne", + "url":"https://us-gas-prices.p.rapidapi.com/us/ne", + "description":"Returns current gas price data for Nebraska. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ne\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/nj", + "url":"https://us-gas-prices.p.rapidapi.com/us/nj", + "description":"Returns current gas price data for New Jersey. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/nj\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/nm", + "url":"https://us-gas-prices.p.rapidapi.com/us/nm", + "description":"Returns current gas price data for New Mexico. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/nm\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ny", + "url":"https://us-gas-prices.p.rapidapi.com/us/ny", + "description":"Returns current gas price data for New York. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ny\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/nc", + "url":"https://us-gas-prices.p.rapidapi.com/us/nc", + "description":"Returns current gas price data for North Carolina. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/nc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/nd", + "url":"https://us-gas-prices.p.rapidapi.com/us/nd", + "description":"Returns current gas price data for North Dakota. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/nd\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/oh", + "url":"https://us-gas-prices.p.rapidapi.com/us/oh", + "description":"Returns current gas price data for Ohio. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/oh\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ok", + "url":"https://us-gas-prices.p.rapidapi.com/us/ok", + "description":"Returns current gas price data for Oklahoma. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ok\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/or", + "url":"https://us-gas-prices.p.rapidapi.com/us/or", + "description":"Returns current gas price data for Oregon. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/or\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/pa", + "url":"https://us-gas-prices.p.rapidapi.com/us/pa", + "description":"Returns current gas price data for Pennsylvania. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/pa\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ri", + "url":"https://us-gas-prices.p.rapidapi.com/us/ri", + "description":"Returns current gas price data for Rhode Island. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ri\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/sc", + "url":"https://us-gas-prices.p.rapidapi.com/us/sc", + "description":"Returns current gas price data for South Carolina. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/sc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/sd", + "url":"https://us-gas-prices.p.rapidapi.com/us/sd", + "description":"Returns current gas price data for South Dakota. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/sd\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/tn", + "url":"https://us-gas-prices.p.rapidapi.com/us/tn", + "description":"Returns current gas price data for Tennessee. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/tn\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/tx", + "url":"https://us-gas-prices.p.rapidapi.com/us/tx", + "description":"Returns current gas price data for Texas. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/tx\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ut", + "url":"https://us-gas-prices.p.rapidapi.com/us/ut", + "description":"Returns current gas price data for Utah. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ut\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/vt", + "url":"https://us-gas-prices.p.rapidapi.com/us/vt", + "description":"Returns current gas price data for Vermont. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/vt\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/va", + "url":"https://us-gas-prices.p.rapidapi.com/us/va", + "description":"Returns current gas price data for Virginia. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/va\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/wa", + "url":"https://us-gas-prices.p.rapidapi.com/us/wa", + "description":"Returns current gas price data for Washington. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/wa\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/wv", + "url":"https://us-gas-prices.p.rapidapi.com/us/wv", + "description":"Returns current gas price data for West Virginia. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/wv\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/wi", + "url":"https://us-gas-prices.p.rapidapi.com/us/wi", + "description":"Returns current gas price data for Wisconsin. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/wi\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/wy", + "url":"https://us-gas-prices.p.rapidapi.com/us/wy", + "description":"Returns current gas price data for Wyoming. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/wy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/nh", + "url":"https://us-gas-prices.p.rapidapi.com/us/nh", + "description":"Returns current gas price data for New Hampshire. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/nh\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/nv", + "url":"https://us-gas-prices.p.rapidapi.com/us/nv", + "description":"Returns current gas price data for Nevada. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/nv\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ma", + "url":"https://us-gas-prices.p.rapidapi.com/us/ma", + "description":"Returns current gas price data for Massachusetts. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ma\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/la", + "url":"https://us-gas-prices.p.rapidapi.com/us/la", + "description":"Returns current gas price data for Louisiana. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/la\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/il", + "url":"https://us-gas-prices.p.rapidapi.com/us/il", + "description":"Returns current gas price data for Illinois. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/il\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ct", + "url":"https://us-gas-prices.p.rapidapi.com/us/ct", + "description":"Returns current gas price data for Connecticut. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ct\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/co", + "url":"https://us-gas-prices.p.rapidapi.com/us/co", + "description":"Returns current gas price data for Colorado. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/co\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ak", + "url":"https://us-gas-prices.p.rapidapi.com/us/ak", + "description":"Returns current gas price data for Alaska. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ak\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/az", + "url":"https://us-gas-prices.p.rapidapi.com/us/az", + "description":"Returns current gas price data for Arizona. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/az\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/de", + "url":"https://us-gas-prices.p.rapidapi.com/us/de", + "description":"Returns current gas price data for Delaware. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/de\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/dc", + "url":"https://us-gas-prices.p.rapidapi.com/us/dc", + "description":"Returns current gas price data for Washington D.C. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/dc\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/al", + "url":"https://us-gas-prices.p.rapidapi.com/us/al", + "description":"Returns current gas price data for Alabama. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/al\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ca", + "url":"https://us-gas-prices.p.rapidapi.com/us/ca", + "description":"Returns current gas price data for California. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ca\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/fl", + "url":"https://us-gas-prices.p.rapidapi.com/us/fl", + "description":"Returns current gas price data for Florida. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/fl\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ga", + "url":"https://us-gas-prices.p.rapidapi.com/us/ga", + "description":"Returns current gas price data for Georgia. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ga\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us/ar", + "url":"https://us-gas-prices.p.rapidapi.com/us/ar", + "description":"Returns current gas price data for Arkansas. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us/ar\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"/us", + "url":"https://us-gas-prices.p.rapidapi.com/us", + "description":"Returns current national average gas price data. You can query historical data starting from 2023-06-01 by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://us-gas-prices.p.rapidapi.com/us\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"us-gas-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/us_gas_prices/api.py b/toolbench/toolenv/tools/Transportation/us_gas_prices/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ad5848e736eadae3e4a310aba326a1214afd2f6c --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/us_gas_prices/api.py @@ -0,0 +1,1204 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def us_hi(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Hawaii. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/hi" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_id(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Idaho. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/id" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_in(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Indiana. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/in" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ia(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Iowa. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ia" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ks(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Kansas. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ks" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ky(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Kentucky. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ky" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_me(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Maine. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/me" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_md(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Maryland. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/md" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_mi(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Michigan. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/mi" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_mn(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Minnesota. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/mn" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ms(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Mississippi. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ms" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_mo(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Missouri. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/mo" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_mt(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Montana. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/mt" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ne(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Nebraska. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ne" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_nj(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for New Jersey. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/nj" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_nm(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for New Mexico. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/nm" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ny(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for New York. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ny" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_nc(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for North Carolina. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/nc" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_nd(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for North Dakota. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/nd" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_oh(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Ohio. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/oh" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ok(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Oklahoma. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ok" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_or(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Oregon. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/or" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_pa(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Pennsylvania. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/pa" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ri(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Rhode Island. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ri" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_sc(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for South Carolina. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/sc" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_sd(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for South Dakota. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/sd" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_tn(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Tennessee. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/tn" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_tx(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Texas. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/tx" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ut(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Utah. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ut" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_vt(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Vermont. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/vt" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_va(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Virginia. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/va" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_wa(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Washington. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/wa" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_wv(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for West Virginia. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/wv" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_wi(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Wisconsin. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/wi" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_wy(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Wyoming. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/wy" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_nh(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for New Hampshire. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/nh" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_nv(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Nevada. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/nv" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ma(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Massachusetts. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ma" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_la(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Louisiana. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/la" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_il(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Illinois. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/il" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ct(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Connecticut. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ct" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_co(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Colorado. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/co" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ak(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Alaska. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ak" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_az(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Arizona. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/az" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_de(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Delaware. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/de" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_dc(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Washington D.C. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/dc" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_al(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Alabama. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/al" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ca(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for California. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ca" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_fl(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Florida. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/fl" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ga(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Georgia. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ga" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us_ar(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current gas price data for Arkansas. Historical data starting from 2023-06-01 can be queried by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us/ar" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def us(date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns current national average gas price data. You can query historical data starting from 2023-06-01 by adding the `date` parameter to this endpoint. In order to return XML instead of the default JSON format, simply add the `Accept: application/xml` header to your request." + + """ + url = f"https://us-gas-prices.p.rapidapi.com/us" + querystring = {} + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "us-gas-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/usa_license_plate_to_vin_decoder/api.py b/toolbench/toolenv/tools/Transportation/usa_license_plate_to_vin_decoder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..590aa09875e6a1a9f947610ed05bccef139d45db --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/usa_license_plate_to_vin_decoder/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def usa_plate_to_vin_decoder(license_plate: str, function: str, state: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Submit a simple HTTP get request with the license plate, and the state of the vehicle, and receive a VIN number in response. + + You can the decode this VIN to vehicle details using the Free NHTSA (US Government) API here: https://vpic.nhtsa.dot.gov/api/" + + """ + url = f"https://usa-license-plate-to-vin-decoder.p.rapidapi.com/default/licenseplatelambda" + querystring = {'license_plate': license_plate, 'function': function, 'state': state, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "usa-license-plate-to-vin-decoder.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/vehicle_details.json b/toolbench/toolenv/tools/Transportation/vehicle_details.json new file mode 100644 index 0000000000000000000000000000000000000000..e69b4018088606aacb5de75c4c7f426ce088fd5e --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_details.json @@ -0,0 +1,41 @@ +{ + "product_id": "api_db5113bd-366e-4171-b1ee-d52895fd99e6", + "tool_description": "Vehicle Details", + "home_url": "https://rapidapi.com/way2risetech/api/vehicle-details/", + "name": "Vehicle Details", + "title": "Vehicle Details", + "pricing": "FREEMIUM", + "tool_name": "Vehicle Details", + "score": { + "avgServiceLevel": 100, + "avgLatency": 474, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "vehicle-details.p.rapidapi.com", + "api_list": [ + { + "name": "Get vehicle details", + "url": "https://vehicle-details.p.rapidapi.com/V3/GetRcResult", + "description": "Get vehicle details", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vehicle-details.p.rapidapi.com/V3/GetRcResult\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-details.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vehicle-details.p.rapidapi.com/V3/GetRcResult\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-details.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Vehicle Details", + "url": "https://vehicle-details.p.rapidapi.com/V3/GetRcdetails", + "description": "Vehicle Details", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vehicle-details.p.rapidapi.com/V3/GetRcdetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-details.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vehicle-details.p.rapidapi.com/V3/GetRcdetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-details.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vehicle_puc_api.json b/toolbench/toolenv/tools/Transportation/vehicle_puc_api.json new file mode 100644 index 0000000000000000000000000000000000000000..1c8c6192310053f427a2ae4e4b584935db05b37f --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_puc_api.json @@ -0,0 +1,30 @@ +{ + "product_id": "api_c88087eb-51cc-41ce-864e-d12209f32838", + "tool_description": "Powerful API for Indian PUC Information\n\n- Certificate Number\n- Number Plate Image\n- Vehicle Brand Name\n- Vehicle Type\nand Much more....\n\ncontact : flashbomberapp@gmail.com", + "home_url": "https://rapidapi.com/flashbomberapp/api/vehicle-puc-api/", + "name": "Vehicle PUC API", + "title": "Vehicle PUC API", + "pricing": "FREEMIUM", + "tool_name": "Vehicle PUC API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 3407, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "vehicle-puc-api.p.rapidapi.com", + "api_list": [ + { + "name": "Search", + "url": "https://vehicle-puc-api.p.rapidapi.com/", + "description": "Search any Indian PUC Information.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vehicle-puc-api.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-puc-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vehicle-puc-api.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-puc-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vehicle_rc_information.json b/toolbench/toolenv/tools/Transportation/vehicle_rc_information.json new file mode 100644 index 0000000000000000000000000000000000000000..40c09a2ec008e353f94c5e4b91e456e4a3cb7615 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_rc_information.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_f45a11dd-8760-4ac1-a0ab-1e4a70328725", + "tool_description": "Fetch any Indian Vehicle's Information through it's Registration Number/License Plate.\nThis API can fetch:-\n[+] Owner Name\n[+] Owner's Father Name\n[+] Owner's Permanent & Current Address\n[+] Vehicle Details\n[+] Financer Details\n[+] Permit & Insurance Details\n[+] NOC Details\n.......And Much More\n\nTags: Parivahan mParivahan Vehicle Info RC Details India Car Info Car Info RC database", + "home_url": "https://rapidapi.com/fatehbrar92/api/vehicle-rc-information/", + "name": "Vehicle RC Information", + "title": "Vehicle RC Information", + "pricing": "FREEMIUM", + "tool_name": "Vehicle RC Information", + "score": { + "avgServiceLevel": 100, + "avgLatency": 114, + "avgSuccessRate": 100, + "popularityScore": 9.7, + "__typename": "Score" + }, + "host": "vehicle-rc-information.p.rapidapi.com", + "api_list": [ + { + "name": "Vehicle Information v2 [Advance]", + "url": "https://vehicle-rc-information.p.rapidapi.com/", + "description": "Fetch Vehicle Information using Registration Number.\n\n--! Owner Mobile Number Added", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vehicle-rc-information.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-rc-information.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vehicle-rc-information.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-rc-information.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vehicle_rc_information/api.py b/toolbench/toolenv/tools/Transportation/vehicle_rc_information/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c38b1bca2b9a4470b1c91e0f9deae8d626590e89 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_rc_information/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def vehicle_information(vehiclenumber: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch Vehicle Information using Registration Number." + + """ + url = f"https://vehicle-rc-information.p.rapidapi.com/api/{vehiclenumber}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vehicle-rc-information.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/vehicle_rc_information_v2.json b/toolbench/toolenv/tools/Transportation/vehicle_rc_information_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..8774135bab90e6500bdc9f2a37e3c2a3642fda1b --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_rc_information_v2.json @@ -0,0 +1,40 @@ +{ + "product_id": "api_f45a11dd-8760-4ac1-a0ab-1e4a70328725", + "tool_description": "Fetch any Indian Vehicle's Information through it's Registration Number/License Plate.\nThis API can fetch:-\n[+] Owner Name\n[+] Owner's Father Name\n[+] Owner's Permanent & Current Address\n[+] Vehicle Details\n[+] Financer Details\n[+] Permit & Insurance Details\n[+] NOC Details\n.......And Much More\n\nTags: Parivahan mParivahan Vehicle Info RC Details India Car Info Car Info RC database", + "home_url": "https://rapidapi.com/fatehbrar92/api/vehicle-rc-information/", + "name": "Vehicle RC Information_v2", + "title": "Vehicle RC Information", + "pricing": "FREEMIUM", + "tool_name": "Vehicle RC Information_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1329, + "avgSuccessRate": 100, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "vehicle-rc-information.p.rapidapi.com", + "api_list": [ + { + "name": "Vehicle Information", + "url": "https://vehicle-rc-information.p.rapidapi.com/api/PB65AM0008", + "description": "Fetch Vehicle Information using Registration Number.", + "method": "GET", + "required_parameters": [ + { + "name": "VehicleNumber", + "type": "string", + "description": "", + "default": "PB65AM0008" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vehicle-rc-information.p.rapidapi.com/api/PB65AM0008\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-rc-information.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vehicle-rc-information.p.rapidapi.com/api/{vehiclenumber}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-rc-information.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "vehicle_rc_information_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vehicle_rc_information_v2/api.py b/toolbench/toolenv/tools/Transportation/vehicle_rc_information_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c38b1bca2b9a4470b1c91e0f9deae8d626590e89 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_rc_information_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def vehicle_information(vehiclenumber: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch Vehicle Information using Registration Number." + + """ + url = f"https://vehicle-rc-information.p.rapidapi.com/api/{vehiclenumber}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vehicle-rc-information.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/vehicle_specs.json b/toolbench/toolenv/tools/Transportation/vehicle_specs.json new file mode 100644 index 0000000000000000000000000000000000000000..24cbb05eef04bbf56c2f39f7caa78f3e79961894 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vehicle_specs.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_ab247442-2877-4e31-a6b3-ace7f9195e8a", + "tool_description": "Obtain the characteristics of a vehicle with type approval number, version code and variant code", + "home_url": "https://rapidapi.com/flyapi20/api/vehicle-specs/", + "name": "Vehicle specs", + "title": "Vehicle specs", + "pricing": "FREEMIUM", + "tool_name": "Vehicle specs", + "score": { + "avgServiceLevel": 100, + "avgLatency": 833, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "host": "vehicle-specs.p.rapidapi.com", + "api_list": [ + { + "name": "result", + "url": "https://vehicle-specs.p.rapidapi.com/", + "description": "Get the characteristics of a vehicle with type approval number, version code and variant code", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://vehicle-specs.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-specs.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://vehicle-specs.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vehicle-specs.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vin_decoder_belgium.json b/toolbench/toolenv/tools/Transportation/vin_decoder_belgium.json new file mode 100644 index 0000000000000000000000000000000000000000..f2eab7626a64073a3952183322d70437b036bd1e --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vin_decoder_belgium.json @@ -0,0 +1,87 @@ +{ + "tool_name":"VIN decoder Belgium", + "tool_description":"The VIN Decoder API for Belgium vehicles is a powerful tool that enables developers to retrieve essential information about vehicles from the official VIN database. By leveraging this API, developers can extract detailed information about any vehicle/car, such as its make, model, fuel type, CO2 emissions, and more.", + "title":"VIN decoder Belgium", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/med123/api/vin-decoder-belgium1/", + "host":"vin-decoder-belgium1.p.rapidapi.com", + "api_list":[ + { + "name":"VIN decoder", + "url":"https://vin-decoder-belgium1.p.rapidapi.com/{vin}", + "description":"The VIN Decoder API is typically accessed through HTTP requests, and the response is returned in JSON format.", + "method":"GET", + "required_parameters":[ + { + "name":"vin", + "type":"STRING", + "description":"", + "default":"WDD2120051A633430" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vin-decoder-belgium1.p.rapidapi.com/{vin}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vin-decoder-belgium1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "vin":"WDD2120051A633430", + "Brand_and_type":"MERCEDES-BENZ", + "Commercial_name":"E 200 CDI", + "WVTA":"e1*2001/116*0501*12", + "Variant":"J0S1M0", + "Version":"NZAAA501", + "Category":"M1", + "Car_body":"AA - BERLINE", + "Preregistration_date":"", + "Date_of_last_registration":"13-02-2013", + "Cancellation_date":"", + "End_date_of_the_technical_control":"16-04-2024", + "Euronorm":"Euro 5", + "CO2_WLTP_combined":"-", + "CO2_NEDC_combined":"136", + "CO2_NEDC_weighted_combined":"-", + "CO2_WLTP_weighted_combined":"-", + "valid_vin":"1", + "Date_of_registration_of_model_name":"20111215", + "Design_code":"85", + "Engine_code":"651925", + "Engine_displacement_cm3":"2143", + "Engine_registration_date":"2011-12-15T00:00:00.000", + "Fuel_type":"Diesel", + "Hybrid_type":null, + "Model_name":"E 200 CDI", + "Number_of_cylinders":"4", + "Number_of_driven_axles":"1", + "Number_of_wheels":"4", + "Operating_principle_of_internal_combustion_engine":"C4", + "Start_date_of_production":"20111215", + "Upper_limit_of_curb_weight":"1735", + "Upper_limit_of_distance_to_the_next_axle":"2874", + "Upper_limit_of_maximum_technical_weight_of_the_combination_of_vehicles":"4200", + "Upper_limit_of_maximum_technical_weight_of_the_middle_axle":"1900", + "Upper_limit_of_maximum_technical_weight_of_the_vehicle":"2270", + "Upper_limit_of_number_of_doors":"4", + "Upper_limit_of_number_of_seats":"5", + "Upper_limit_of_track_width":"1602", + "Upper_limit_of_vehicle_height":"1486", + "Upper_limit_of_vehicle_length":"4891", + "Upper_limit_of_vehicle_width":"1872", + "Upper_limit_of_wheelbase":"2874" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"1464", + "content-type":"application/json; charset=utf-8", + "date":"Sat, 29 Apr 2023 04:47:04 GMT", + "etag":"W/\"5b8-hYFQvoaa8d1+Jn9dhEqcSQ\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vin_decoder_belgium/api.py b/toolbench/toolenv/tools/Transportation/vin_decoder_belgium/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6a8b854613b81be0a14dc16e15edb1950a4ed299 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vin_decoder_belgium/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def vin_decoder(vin: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The VIN Decoder API is typically accessed through HTTP requests, and the response is returned in JSON format." + + """ + url = f"https://vin-decoder-belgium1.p.rapidapi.com/{vin}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vin-decoder-belgium1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/vin_decoder_usa.json b/toolbench/toolenv/tools/Transportation/vin_decoder_usa.json new file mode 100644 index 0000000000000000000000000000000000000000..232b433fd317aff69c81e340a322f68608221f33 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vin_decoder_usa.json @@ -0,0 +1,188 @@ +{ + "tool_name":"VIN decoder USA", + "tool_description":"The VIN Decoder API is a useful tool for anyone who needs to access detailed information about a vehicle/cars in the USA, and it can save developers a significant amount of time and effort in gathering this data.", + "title":"VIN decoder USA", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":164, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/med123/api/vin-decoder-usa/", + "host":"vin-decoder-usa.p.rapidapi.com", + "api_list":[ + { + "name":"VIN decoder USA", + "url":"https://vin-decoder-usa.p.rapidapi.com/{vin}", + "description":"The VIN Decoder API is typically accessed through HTTP requests, and the response is returned in JSON format.", + "method":"GET", + "required_parameters":[ + { + "name":"vin", + "type":"string", + "description":"", + "default":"3GCPCREC2JG473991" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vin-decoder-usa.p.rapidapi.com/{vin}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vin-decoder-usa.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "AirBagLocCurtain":"All Rows", + "AirBagLocFront":"1st Row (Driver and Passenger)", + "AirBagLocSide":"1st Row (Driver and Passenger)", + "BodyCabType":"Crew/Super Crew/Crew Max", + "BodyClass":"Pickup", + "BrakeSystemType":"Hydraulic", + "DisplacementCC":"5300.0", + "DisplacementCI":"323.42584370208", + "DisplacementL":"5.3", + "Doors":"4", + "DriveType":"4x2", + "EngineCylinders":"8", + "EngineManufacturer":"GM", + "EngineModel":"L83 - SIDI: Spark Ignited Direct Injection, VVT: Variable Valve Timing, AFM, E85 MAX, ALUM", + "ErrorCode":"0", + "ErrorText":"0 - VIN decoded clean. Check Digit (9th position) is correct", + "FuelTypePrimary":"Gasoline", + "FuelTypeSecondary":"Ethanol (E85)", + "GVWR":"Class 2E: 6,001 - 7,000 lb (2,722 - 3,175 kg)", + "Make":"CHEVROLET", + "MakeID":"467", + "Manufacturer":"GENERAL MOTORS LLC", + "ManufacturerId":"984", + "Model":"Silverado", + "ModelID":"1850", + "ModelYear":"2018", + "PlantCity":"SILAO", + "PlantCompanyName":"GMNA", + "PlantCountry":"MEXICO", + "SeatBeltsAll":"Manual", + "Series":"LT", + "TPMS":"Direct", + "VIN":"3GCPCREC2JG473991", + "VehicleType":"TRUCK " + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "content-length":"1024", + "content-type":"application/json", + "date":"Sat, 29 Apr 2023 11:21:38 GMT", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-rapidapi-region":"AWS - eu-west-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "AirBagLocCurtain":{ + "type":"string" + }, + "AirBagLocFront":{ + "type":"string" + }, + "AirBagLocSide":{ + "type":"string" + }, + "BodyCabType":{ + "type":"string" + }, + "BodyClass":{ + "type":"string" + }, + "BrakeSystemType":{ + "type":"string" + }, + "DisplacementCC":{ + "type":"string" + }, + "DisplacementCI":{ + "type":"string" + }, + "DisplacementL":{ + "type":"string" + }, + "Doors":{ + "type":"string" + }, + "DriveType":{ + "type":"string" + }, + "EngineCylinders":{ + "type":"string" + }, + "EngineManufacturer":{ + "type":"string" + }, + "EngineModel":{ + "type":"string" + }, + "ErrorCode":{ + "type":"string" + }, + "ErrorText":{ + "type":"string" + }, + "FuelTypePrimary":{ + "type":"string" + }, + "FuelTypeSecondary":{ + "type":"string" + }, + "GVWR":{ + "type":"string" + }, + "Make":{ + "type":"string" + }, + "MakeID":{ + "type":"string" + }, + "Manufacturer":{ + "type":"string" + }, + "ManufacturerId":{ + "type":"string" + }, + "Model":{ + "type":"string" + }, + "ModelID":{ + "type":"string" + }, + "ModelYear":{ + "type":"string" + }, + "PlantCity":{ + "type":"string" + }, + "PlantCompanyName":{ + "type":"string" + }, + "PlantCountry":{ + "type":"string" + }, + "SeatBeltsAll":{ + "type":"string" + }, + "Series":{ + "type":"string" + }, + "TPMS":{ + "type":"string" + }, + "VIN":{ + "type":"string" + }, + "VehicleType":{ + "type":"string" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vin_decoder_usa/api.py b/toolbench/toolenv/tools/Transportation/vin_decoder_usa/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3efe0e6b9ad086b849c0ff2cef9ded53c6f56b94 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vin_decoder_usa/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def vin_decoder_usa(vin: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The VIN Decoder API is typically accessed through HTTP requests, and the response is returned in JSON format." + + """ + url = f"https://vin-decoder-usa.p.rapidapi.com/{vin}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vin-decoder-usa.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/vin_lookup_by_api_ninjas.json b/toolbench/toolenv/tools/Transportation/vin_lookup_by_api_ninjas.json new file mode 100644 index 0000000000000000000000000000000000000000..881bd07cfdf8a3505095e33a5fcb7bdc3d72cbeb --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vin_lookup_by_api_ninjas.json @@ -0,0 +1,37 @@ +{ + "tool_name":"VIN Lookup by API-Ninjas", + "tool_description":"Find vehicle information from Vehicle Identification Numbers. See more info at https://api-ninjas.com/api/vinlookup.", + "title":"VIN Lookup by API-Ninjas", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":555, + "avgSuccessRate":23, + "popularityScore":2.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apininjas/api/vin-lookup-by-api-ninjas/", + "host":"vin-lookup-by-api-ninjas.p.rapidapi.com", + "api_list":[ + { + "name":"/v1/vinlookup", + "url":"https://vin-lookup-by-api-ninjas.p.rapidapi.com/v1/vinlookup", + "description":"API Ninjas VIN Lookup API endpoint. Returns key vehicle information including manufacturer, country of origin and model year for a given VIN.", + "method":"GET", + "required_parameters":[ + { + "name":"vin", + "type":"STRING", + "description":"valid VIN to check. Must be a 17-character string.", + "default":"JH4KA7561PC008269" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://vin-lookup-by-api-ninjas.p.rapidapi.com/v1/vinlookup\"\nquerystring = {\"vin\": vin}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"vin-lookup-by-api-ninjas.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/vin_lookup_by_api_ninjas/api.py b/toolbench/toolenv/tools/Transportation/vin_lookup_by_api_ninjas/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7aadb5fe4bb007b22368635e366eea0ad03d6bcd --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/vin_lookup_by_api_ninjas/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def v1_vinlookup(vin: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API Ninjas VIN Lookup API endpoint. Returns key vehicle information including manufacturer, country of origin and model year for a given VIN." + vin: valid VIN to check. Must be a 17-character string. + + """ + url = f"https://vin-lookup-by-api-ninjas.p.rapidapi.com/v1/vinlookup" + querystring = {'vin': vin, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "vin-lookup-by-api-ninjas.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/waze.json b/toolbench/toolenv/tools/Transportation/waze.json new file mode 100644 index 0000000000000000000000000000000000000000..2169fa5fbe6558980f120a256e5d4216bf62a5db --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/waze.json @@ -0,0 +1,210 @@ +{ + "tool_name":"Waze", + "tool_description":"Get alerts, traffic jams information and driving directions from Waze/Google in real-time.", + "title":"Waze", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2074, + "avgSuccessRate":100, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/letscrape-6bRBa3QguO5/api/waze/", + "host":"waze.p.rapidapi.com", + "api_list":[ + { + "name":"Autocomplete", + "url":"https://waze.p.rapidapi.com/autocomplete", + "description":"Waze/Google autocomplete/type-ahead for places, locations and addresses.", + "method":"GET", + "required_parameters":[ + { + "name":"q", + "type":"STRING", + "description":"Free-text geographic query", + "default":"sunn" + } + ], + "optional_parameters":[ + { + "name":"lang", + "type":"STRING", + "description":"The language of the results. See https://wazeopedia.waze.com/wiki/USA/Countries_and_Languages for a list of supported languages.", + "default":"en" + }, + { + "name":"coordinates", + "type":"STRING", + "description":"Geographic coordinates (latitude, longitude) bias. Highly recommended to use for getting accurate results.", + "default":"37.376754, -122.023350" + } + ], + "code":"import requests\n\nurl = \"https://waze.p.rapidapi.com/autocomplete\"\nquerystring = {\"q\": q, \"lang\": lang, \"coordinates\": coordinates}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waze.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "request_id":{ + "type":"string" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "name":{ + "type":"string" + }, + "address":{ + "type":"string" + }, + "latitude":{ + "type":"number" + }, + "longitude":{ + "type":"number" + } + } + } + } + } + } + }, + { + "name":"Driving Directions", + "url":"https://waze.p.rapidapi.com/driving-directions", + "description":"Get routes and driving directions from Waze/Google.", + "method":"GET", + "required_parameters":[ + { + "name":"source_coordinates", + "type":"STRING", + "description":"Geographic coordinates (latitude, longitude pair) of the starting point", + "default":"32.0852999,34.78176759999999" + }, + { + "name":"destination_coordinates", + "type":"STRING", + "description":"Geographic coordinates (latitude, longitude pair) of the destination", + "default":"32.7940463,34.989571" + } + ], + "optional_parameters":[ + { + "name":"return_route_coordinates", + "type":"BOOLEAN", + "description":"Whether to return route coordinate pairs (`route_coordinates` field)", + "default":"" + }, + { + "name":"arrival_timestamp", + "type":"NUMBER", + "description":"Unix-timestamp (seconds since epoch) of the arrival time (in case not specified directions will be returned for current time) ", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://waze.p.rapidapi.com/driving-directions\"\nquerystring = {\"source_coordinates\": source_coordinates, \"destination_coordinates\": destination_coordinates}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waze.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "request_id":{ + "type":"string" + }, + "data":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"Alerts and Jams", + "url":"https://waze.p.rapidapi.com/alerts-and-jams", + "description":"Get real-time alerts and jams from Waze in a geographic rectangular area defined by bottom-left and top-right latitude, longitude pairs.", + "method":"GET", + "required_parameters":[ + { + "name":"top_right", + "type":"STRING", + "description":"Top-right corner of the geographic rectangular area for which to get alerts and traffic jams. Specified as latitude, longitude pair.", + "default":"40.772787404902594,-73.76818084716798" + }, + { + "name":"bottom_left", + "type":"STRING", + "description":"Bottom-left corner of the geographic rectangular area for which to get alerts and traffic jams. Specified as latitude, longitude pair.", + "default":"40.66615391742187,-74.13732147216798" + } + ], + "optional_parameters":[ + { + "name":"max_alerts", + "type":"NUMBER", + "description":"Maximum number of alerts to fetch (to avoid fetching alerts set it to `0`).\nDefault: `20`", + "default":"20" + }, + { + "name":"max_jams", + "type":"NUMBER", + "description":"Maximum number of traffic jams to fetch (to avoid fetching traffic jams, set it to `0`).\nDefault: `20`", + "default":"20" + } + ], + "code":"import requests\n\nurl = \"https://waze.p.rapidapi.com/alerts-and-jams\"\nquerystring = {\"max_alerts\": max_alerts, \"top_right\": top_right, \"max_jams\": max_jams, \"bottom_left\": bottom_left}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"waze.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"string" + }, + "request_id":{ + "type":"string" + }, + "data":{ + "type":"object", + "properties":{ + "alerts":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "jams":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Transportation/waze/api.py b/toolbench/toolenv/tools/Transportation/waze/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fffc09505b75c021954cbb85defb9630b2a1b410 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/waze/api.py @@ -0,0 +1,96 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def autocomplete(q: str, lang: str='en', coordinates: str='37.376754, -122.023350', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Waze/Google autocomplete/type-ahead for places, locations and addresses." + q: Free-text geographic query + lang: The language of the results. See https://wazeopedia.waze.com/wiki/USA/Countries_and_Languages for a list of supported languages. + coordinates: Geographic coordinates (latitude, longitude) bias. Highly recommended to use for getting accurate results. + + """ + url = f"https://waze.p.rapidapi.com/autocomplete" + querystring = {'q': q, } + if lang: + querystring['lang'] = lang + if coordinates: + querystring['coordinates'] = coordinates + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "waze.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def driving_directions(source_coordinates: str, destination_coordinates: str, return_route_coordinates: bool=None, arrival_timestamp: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get routes and driving directions from Waze/Google." + source_coordinates: Geographic coordinates (latitude, longitude pair) of the starting point + destination_coordinates: Geographic coordinates (latitude, longitude pair) of the destination + return_route_coordinates: Whether to return route coordinate pairs (`route_coordinates` field) + arrival_timestamp: Unix-timestamp (seconds since epoch) of the arrival time (in case not specified directions will be returned for current time) + + """ + url = f"https://waze.p.rapidapi.com/driving-directions" + querystring = {'source_coordinates': source_coordinates, 'destination_coordinates': destination_coordinates, } + if return_route_coordinates: + querystring['return_route_coordinates'] = return_route_coordinates + if arrival_timestamp: + querystring['arrival_timestamp'] = arrival_timestamp + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "waze.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def alerts_and_jams(top_right: str, bottom_left: str, max_alerts: int=20, max_jams: int=20, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get real-time alerts and jams from Waze in a geographic rectangular area defined by bottom-left and top-right latitude, longitude pairs." + top_right: Top-right corner of the geographic rectangular area for which to get alerts and traffic jams. Specified as latitude, longitude pair. + bottom_left: Bottom-left corner of the geographic rectangular area for which to get alerts and traffic jams. Specified as latitude, longitude pair. + max_alerts: Maximum number of alerts to fetch (to avoid fetching alerts set it to `0`). +Default: `20` + max_jams: Maximum number of traffic jams to fetch (to avoid fetching traffic jams, set it to `0`). +Default: `20` + + """ + url = f"https://waze.p.rapidapi.com/alerts-and-jams" + querystring = {'top_right': top_right, 'bottom_left': bottom_left, } + if max_alerts: + querystring['max_alerts'] = max_alerts + if max_jams: + querystring['max_jams'] = max_jams + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "waze.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Transportation/zipcode_api_world_wide_search/api.py b/toolbench/toolenv/tools/Transportation/zipcode_api_world_wide_search/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6a4304bf8c37cf83daf5965bb93c5e983caee1c4 --- /dev/null +++ b/toolbench/toolenv/tools/Transportation/zipcode_api_world_wide_search/api.py @@ -0,0 +1,236 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def postalcodepairswithinadistance(zip_code: str, country_code: str, version: str, distance: int, unit: str='km', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of matched postal code pairs that are within a given distance to each other." + unit: (optional) default: 'km' (can be 'km' or 'miles') + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/match" + querystring = {'zip_code': zip_code, 'country_code': country_code, 'distance': distance, } + if unit: + querystring['unit'] = unit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def postalcodetolocationinformation(country_code: str, zip_code: int, version: str, country: str='{}', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint allows you to receive information for one or multiple given postal codes." + country: (optional) ISO 3166-1 alpha-2 country code + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/search" + querystring = {'country_code': country_code, 'zip_code': zip_code, } + if country: + querystring['country'] = country + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def isemaildisposable(email_id: str, version: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/is_email_disposable" + querystring = {'email_id': email_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def postalcodeswithinaradius(zip_code: int, radius: int, country_code: str, version: str, unit: str='km', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint will convert a list of submitted postal codes into a list of postal code pairs that are located within given distance to each other." + radius: (required) distance in 'km' or 'miles', max: 500 + unit: (optional) default: 'km' (can be 'km' or 'miles') + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/radius" + querystring = {'zip_code': zip_code, 'radius': radius, 'country_code': country_code, } + if unit: + querystring['unit'] = unit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def postalcodesbycity(city: str, country_code: str, version: str, state_name: int=50, limit: int=100, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of postal codes based on a city. + " + city: (required) name of the city + state_name: (optional) name of the province. List of provinces for a country can be retrieved using our province endpoint + limit: (optional) limit the number of results returned + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/code/city" + querystring = {'city': city, 'country_code': country_code, } + if state_name: + querystring['state_name'] = state_name + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def accountstatus(version: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/status" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def distancecalculationbetweenpostalcodes(compare: str, version: str, country_code: str, zip_code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Conducts a worldwide postal code search for the code 51503" + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/distance" + querystring = {'compare': compare, 'country_code': country_code, 'zip_code': zip_code, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def validphonenumber(version: str, country_code: str, phone_number: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/validate_phone" + querystring = {'country_code': country_code, 'phone_number': phone_number, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def postalcodesbystate(country_code: str, version: str, state_code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of postal codes based on a state." + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/code/state" + querystring = {'country_code': country_code, 'state_code': state_code, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def provinces_statesofacountry(version: str, country_code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint returns a list of postal codes based on a state." + + """ + url = f"https://zipcode-api-world-wide-search.p.rapidapi.com/{version}/country/province" + querystring = {'country_code': country_code, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "zipcode-api-world-wide-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/.DS_Store b/toolbench/toolenv/tools/Travel/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..50ce4fb667cacef35bb802a1e2942a15b6e278e1 Binary files /dev/null and b/toolbench/toolenv/tools/Travel/.DS_Store differ diff --git a/toolbench/toolenv/tools/Travel/52_in_kicks/api.py b/toolbench/toolenv/tools/Travel/52_in_kicks/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3a702306a3473bb6d85af098f427779d55999135 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/52_in_kicks/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def test(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "test" + + """ + url = f"https://52-in-kicks.p.rapidapi.com/test" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "52-in-kicks.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/abc.json b/toolbench/toolenv/tools/Travel/abc.json new file mode 100644 index 0000000000000000000000000000000000000000..8d5248e47db1116ea17552f9563a1e53cfab6e3d --- /dev/null +++ b/toolbench/toolenv/tools/Travel/abc.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_06c61f5b-c1e4-4bc6-ac98-28f9944e237b", + "tool_description": "travel", + "home_url": "https://rapidapi.com/aditisahu/api/abc209/", + "name": "abc", + "title": "abc", + "pricing": "FREE", + "tool_name": "abc", + "score": null, + "host": "abc209.p.rapidapi.com", + "api_list": [ + { + "name": "travel itinerary", + "url": "https://abc209.p.rapidapi.com/travel", + "description": "itinerary website", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://abc209.p.rapidapi.com/travel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"abc209.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://abc209.p.rapidapi.com/travel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"abc209.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/africahotels/api.py b/toolbench/toolenv/tools/Travel/africahotels/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3455cb49b4a9fc4065e961db80accd5507588526 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/africahotels/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def one_african_hotel_and_safari_lodge(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieves one African Hotel and Safari lodge based on ID" + + """ + url = f"https://africahotels.p.rapidapi.com/africanhotels/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "africahotels.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def african_hotels_and_safaries(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "A list of African Hotels Reviews" + + """ + url = f"https://africahotels.p.rapidapi.com/africanhotels" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "africahotels.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/ai_trip_planner.json b/toolbench/toolenv/tools/Travel/ai_trip_planner.json new file mode 100644 index 0000000000000000000000000000000000000000..99c7c78829f5e1ec0eb5cff7914a6a8e11729f3a --- /dev/null +++ b/toolbench/toolenv/tools/Travel/ai_trip_planner.json @@ -0,0 +1,43 @@ +{ + "tool_name":"AI Trip Planner", + "tool_description":"The API generates personalized trip plans based on the user's specified number of days and location. Using AI, the system recommends popular tourist attractions, local experiences, and accommodations based on user preferences and past travel behavior. The generated trip plans can be customized and adjusted to suit the user's needs, making it a valuable tool for anyone planning a trip.", + "title":"AI Trip Planner", + "pricing":"PAID", + "score":{ + "avgServiceLevel":94, + "avgLatency":58702, + "avgSuccessRate":93, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/nabeeldev1340/api/ai-trip-planner/", + "host":"ai-trip-planner.p.rapidapi.com", + "api_list":[ + { + "name":"Get Trip Plan", + "url":"https://ai-trip-planner.p.rapidapi.com/", + "description":"This endpoint is used to generate trip plan based on no. of days and destination.", + "method":"GET", + "required_parameters":[ + { + "name":"days", + "type":"NUMBER", + "description":"", + "default":"3" + }, + { + "name":"destination", + "type":"STRING", + "description":"", + "default":"London,UK" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://ai-trip-planner.p.rapidapi.com/\"\nquerystring = {\"days\": days, \"destination\": destination}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"ai-trip-planner.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/ai_trip_planner/api.py b/toolbench/toolenv/tools/Travel/ai_trip_planner/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a86a83eef190e06e6bebdc3b2dc7417d6da5c7f8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/ai_trip_planner/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_trip_plan(days: int, destination: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint is used to generate trip plan based on no. of days and destination." + + """ + url = f"https://ai-trip-planner.p.rapidapi.com/" + querystring = {'days': days, 'destination': destination, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "ai-trip-planner.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb/api.py b/toolbench/toolenv/tools/Travel/airbnb/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2be1edb1963da3f4a34510abfab910fe47d7a1f3 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb/api.py @@ -0,0 +1,148 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_by_location(checkout: str, checkin: str, location: str, adults: int, pets: int=0, currency: str='USD', page: int=1, infants: int=0, children: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find rooms at a location" + checkout: Check-out date + checkin: Check-in date + location: Location (city, region, suburb, etc.) + adults: Number of adult guests (13 years and over) + pets: Number of pets + currency: Price currency, default: USD + page: Page of results returned +Allowed values: 1-8 + infants: Number of infants (under 2 years) + children: Number of children (2-12 years) + + """ + url = f"https://airbnb13.p.rapidapi.com/search-location" + querystring = {'checkout': checkout, 'checkin': checkin, 'location': location, 'adults': adults, } + if pets: + querystring['pets'] = pets + if currency: + querystring['currency'] = currency + if page: + querystring['page'] = page + if infants: + querystring['infants'] = infants + if children: + querystring['children'] = children + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def calendar(room_id: str, month: str='12', count: str='1', year: str='2023', currency: str='USD', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns availability and prices of a listing" + month: Calendar month, default: current month + count: Returned number of months, default: 12, max: 12 + year: Calendar year, default: current year + currency: Price currency, default: USD + + """ + url = f"https://airbnb13.p.rapidapi.com/calendar" + querystring = {'room_id': room_id, } + if month: + querystring['month'] = month + if count: + querystring['count'] = count + if year: + querystring['year'] = year + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_by_geo_coordinates(checkin: str, sw_lat: int, sw_lng: int, ne_lng: int, adults: int, checkout: str, ne_lat: int, pets: int=0, children: int=0, page: int=1, currency: str='USD', infants: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find rooms in a rectangles bounded by provided coordinates" + checkin: Check-in date + sw_lat: Latitude of the southwestern corner of the search area + sw_lng: Longitude of the southwestern corner of the search area + ne_lng: Longitude of the northeastern corner of the search area + adults: Number of adult guests (13 years and over) + checkout: Check-out date + ne_lat: Latitude of the northeastern corner of the search area + pets: Number of pets + children: Number of children (2-12 years) + page: Returned page of results. +Allowed values: 1-8 + currency: Price currency, default: USD + infants: Number of infants (under 2 years) + + """ + url = f"https://airbnb13.p.rapidapi.com/search-geo" + querystring = {'checkin': checkin, 'sw_lat': sw_lat, 'sw_lng': sw_lng, 'ne_lng': ne_lng, 'adults': adults, 'checkout': checkout, 'ne_lat': ne_lat, } + if pets: + querystring['pets'] = pets + if children: + querystring['children'] = children + if page: + querystring['page'] = page + if currency: + querystring['currency'] = currency + if infants: + querystring['infants'] = infants + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def autocomplete(query: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find locations by query" + query: Query parameter + + """ + url = f"https://airbnb13.p.rapidapi.com/autocomplete" + querystring = {'query': query, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb_income_prediction.json b/toolbench/toolenv/tools/Travel/airbnb_income_prediction.json new file mode 100644 index 0000000000000000000000000000000000000000..6683691301df522c9adf0e2fccec02285f6dd6c9 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_income_prediction.json @@ -0,0 +1,2764 @@ +{ + "tool_name":"Airbnb Income Prediction", + "tool_description":"Find out how much your Airbnb can earn based on short-term rental historical data points ", + "title":"Airbnb Income Prediction", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":94, + "avgLatency":3666, + "avgSuccessRate":94, + "popularityScore":9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/airbtics-airbtics-default/api/airbnb-income-prediction/", + "host":"airbnb-income-prediction.p.rapidapi.com", + "api_list":[ + { + "name":"Get Airbnb Income History", + "url":"https://airbnb-income-prediction.p.rapidapi.com/getIncomeHistory", + "description":"Input\n- coordinate (Lat, Lng of a property)\n- countryCode (Country code in ISO Alpha-2 format. E.g. US, GB, KR, MX etc )\n- bedrooms (Number of bedrooms) \n- radiusInMeter (The API will only use the listings within this radius) \n\nList of country codes: https://www.nationsonline.org/oneworld/country_code_list.htm\n\nOutput: \n- Number of sample: number of listings used to calculate the result. \n- average: This object contains average of key metrics\n- percentile25\n- percentile50\n- percentile75\n\nKey metrics\n- occupancy_rate: number_of_booked_day/number_of_available_day\n- daily_rate: a fee that host charges for 1 night\n- revenue: a monthly revenue. it includes daily rate and cleaning fees\n- cleaning_fee\n- extra_guest_fee: estimated fee per extra guest", + "method":"GET", + "required_parameters":[ + { + "name":"bedrooms", + "type":"NUMBER", + "description":"", + "default":"2" + }, + { + "name":"bathrooms", + "type":"NUMBER", + "description":"", + "default":"2" + }, + { + "name":"countryCode", + "type":"STRING", + "description":"", + "default":"GB" + }, + { + "name":"coordinate", + "type":"GEOPOINT (latitude, longitude)", + "description":"", + "default":"(50.82758, -0.14442)" + } + ], + "optional_parameters":[ + { + "name":"capacity", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"radiusInMeter", + "type":"NUMBER", + "description":"Default is 5,000 meters. We'll include listings within this radius to calculate the income history. Upper limit is 10000 meters. ", + "default":"5000" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-income-prediction.p.rapidapi.com/getIncomeHistory\"\nquerystring = {\"radiusInMeter\": radiusinmeter, \"bedrooms\": bedrooms, \"bathrooms\": bathrooms, \"countryCode\": countrycode, \"coordinate\": coordinate}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-income-prediction.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "message":{ + "no_of_sample":10, + "average":{ + "occupancy_rate":67, + "daily_rate":250, + "revenue":5759, + "cleaning_fee":79, + "extra_guest_fee":79 + }, + "monthly_average_granuar_data":{ + "average_2022_04":{ + "daily_rate":265, + "occupancy_rate":71, + "revenue":6265 + }, + "average_2022_05":{ + "daily_rate":266, + "occupancy_rate":64, + "revenue":5523 + }, + "average_2022_06":{ + "daily_rate":250, + "occupancy_rate":68, + "revenue":5226 + }, + "average_2022_07":{ + "daily_rate":271, + "occupancy_rate":88, + "revenue":7942 + }, + "average_2022_08":{ + "daily_rate":265, + "occupancy_rate":79, + "revenue":6871 + }, + "average_2022_09":{ + "daily_rate":226, + "occupancy_rate":67, + "revenue":5127 + }, + "average_2022_10":{ + "daily_rate":203, + "occupancy_rate":65, + "revenue":4408 + }, + "average_2022_11":{ + "daily_rate":238, + "occupancy_rate":54, + "revenue":4405 + }, + "average_2022_12":{ + "daily_rate":249, + "occupancy_rate":68, + "revenue":6354 + }, + "average_2023_01":{ + "daily_rate":242, + "occupancy_rate":57, + "revenue":5012 + }, + "average_2023_02":{ + "daily_rate":255, + "occupancy_rate":64, + "revenue":5880 + }, + "average_2023_03":{ + "daily_rate":274, + "occupancy_rate":64, + "revenue":6097 + } + }, + "percentile25":{ + "occupancy_rate":50, + "daily_rate":143, + "revenue":3321, + "cleaning_fee":52, + "extra_guest_fee":52 + }, + "percentile50":{ + "occupancy_rate":70, + "daily_rate":202, + "revenue":4956, + "cleaning_fee":67, + "extra_guest_fee":67 + }, + "percentile75":{ + "occupancy_rate":88, + "daily_rate":307, + "revenue":6909, + "cleaning_fee":119, + "extra_guest_fee":119 + }, + "listings":[ + [ + "full", + 52809755, + "Chic designer cottage in the Laines", + "miso/Hosting-52809755/original/58412fc6-4a71-40e2-afc1-dbbc31a6c330.jpeg", + 50.82736, + -0.14154, + "entire_home", + "-1", + "2", + 1, + 5, + "Paula", + 2, + 4, + 54, + 10.8733, + 4.9, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":false, + "pool":false, + "kitchen":true + }, + 93, + "m", + "t", + 193, + 186, + 188, + 214, + 214, + 205, + 192, + 197, + 215, + 199, + 187, + 161, + 60, + 3270, + "f", + 4, + "10958130", + 88, + 74, + 100, + 100, + 100, + 76, + 77, + 100, + 85, + 15, + 51, + 60, + 5655, + 4597, + 6274, + 7067, + 7067, + 5162, + 4924, + 6548, + 6032, + 991, + 3184, + 3270, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 7, + 4, + 4, + 5, + 1, + 5, + 5, + 1, + 3, + 2, + 4, + 4, + { + "dataQualityScore":100, + "distance":204, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 82130, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 70, + 69, + 62 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 184, + 190, + 189 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 4306, + 4371, + 3908 + ] + ], + [ + "full", + 49641951, + "Iconic Boutique Townhouse by the beach", + "b10b7b4e-142a-4101-9ca6-41562425a701.jpg", + 50.82733, + -0.14792, + "entire_home", + "-1", + "2", + 1, + 6, + "Allan", + 1, + 1, + 129, + 0, + 5, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 57, + "m", + "f", + 246, + 234, + 248, + 275, + 281, + 226, + 224, + 200, + 183, + 162, + 191, + 202, + 72, + 5364, + "f", + 1, + "183063833", + 60, + 85, + 84, + 97, + 39, + 80, + 74, + 48, + 97, + 100, + 69, + 72, + 5275, + 7162, + 7437, + 9387, + 3845, + 6546, + 6010, + 3547, + 6665, + 6231, + 4909, + 5364, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 4, + 6, + 6, + 4, + 6, + 2, + 5, + 4, + 2, + 3, + 4, + 1, + { + "dataQualityScore":100, + "distance":247, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 55072, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "inactive", + 69, + 23 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "inactive", + 263, + 239 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "inactive", + 6424, + 1973 + ] + ], + [ + "full", + 20533746, + "Sunny Cottage | By My Getaways | Free Parking", + "prohost-api/Hosting-20533746/original/d5a88969-02f6-4d79-adb8-446cba9f29fd.jpeg", + 50.827, + -0.141, + "entire_home", + "-1", + "2", + 1, + 6, + "My Getaways", + 1, + 74, + 116, + 0, + 4.5, + { + "parking":true, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 74, + "m", + "t", + 419, + 511, + 420, + 413, + 406, + 307, + 241, + 226, + 262, + 235, + 265, + 225, + 46, + 3690, + "f", + 4, + "9802857", + 88, + 66, + 28, + 100, + 85, + 80, + 100, + 36, + 66, + 15, + 77, + 46, + 12266, + 11052, + 3911, + 13756, + 11511, + 8418, + 8510, + 2899, + 6039, + 1249, + 7116, + 3690, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 2, + 5, + 3, + 2, + 3, + 5, + 3, + 3, + 3, + 2, + 2, + 4, + { + "dataQualityScore":100, + "distance":249, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 26736, + "f", + [ + 22, + 49, + 52, + 45, + 43, + 30, + 57, + 82, + 46, + 24, + 16, + 29, + 31, + 21, + 100 + ], + [ + 228, + 236, + 284, + 319, + 407, + 467, + 451, + 433, + 438, + 347, + 291, + 312, + 275, + 288, + 291 + ], + [ + 1785, + 4095, + 5107, + 4900, + 5836, + 4621, + 8501, + 11780, + 6678, + 2818, + 1605, + 3096, + 2959, + 2088, + 10035 + ] + ], + [ + "full", + 25992014, + "Hidden gem - super-central North Laine cottage", + "prohost-api/Hosting-25992014/original/571c5b84-195d-4007-97d7-44f360ac7383.jpeg", + 50.8278, + -0.14027, + "entire_home", + "-1", + "2", + 1, + 4, + "Airhost For You", + 2, + 65, + 137, + 0, + 4.3, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 121, + "m", + "f", + 214, + 215, + 174, + 191, + 176, + 140, + 124, + 120, + 131, + 119, + 125, + 138, + 100, + 5579, + "f", + 2, + "183539480", + 68, + 62, + 76, + 100, + 89, + 100, + 97, + 100, + 93, + 100, + 64, + 100, + 5369, + 4915, + 5074, + 7195, + 5996, + 5640, + 4997, + 5030, + 4989, + 4999, + 3316, + 5579, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 4, + 2, + 4, + 2, + 6, + 3, + 4, + 1, + 2, + 2, + 4, + 2, + { + "dataQualityScore":100, + "distance":293, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 80732, + "f", + [ + 10, + 17, + 76, + 85, + 80, + 73, + 94, + 82, + 82, + 67, + 43, + 28, + 12, + 47, + 87 + ], + [ + 141, + 146, + 152, + 173, + 178, + 200, + 218, + 230, + 236, + 209, + 197, + 233, + 179, + 177, + 193 + ], + [ + 567, + 989, + 4564, + 5649, + 5439, + 5453, + 7537, + 6875, + 7025, + 5188, + 3172, + 2373, + 819, + 3181, + 6313 + ] + ], + [ + "full", + 49134467, + "Centrally Located Modern Cottage & Private Patio", + "ade762f7-cb70-4d21-9b9a-402c130785d7.jpg", + 50.82934, + -0.14115, + "entire_home", + "-1", + "2", + 1, + 6, + "Jessica", + 1, + 3, + 75, + 16.26, + 5, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 80, + "s", + "f", + 209, + 203, + 192, + 339, + 327, + 199, + 170, + 176, + 176, + 178, + 194, + 215, + 73, + 5334, + "f", + 1, + "65093396", + 60, + 81, + 64, + 97, + 50, + 48, + 62, + 24, + 23, + 4, + 56, + 73, + 4274, + 5622, + 4227, + 10756, + 5361, + 3273, + 3679, + 1468, + 1407, + 247, + 3733, + 5334, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 3, + 3, + 4, + 5, + 4, + 4, + 4, + 2, + 2, + 1, + 4, + 1, + { + "dataQualityScore":100, + "distance":302, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 40223, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 47, + "missing", + "missing", + 70, + 90, + 54 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 177, + "missing", + "missing", + 118, + 130, + 134 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 2889, + "missing", + "missing", + 3044, + 4243, + 2611 + ] + ], + [ + "full", + 37100138, + "Spacious family home, central with lovely garden", + "21d43c59-1081-427f-88f7-20be85df8cf3.jpg", + 50.83034, + -0.14403, + "entire_home", + "-1", + "2", + 1, + 6, + "Joe & Jessi", + 2, + 2, + 65, + 0, + 4.8, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":false, + "washer":true, + "pool":false, + "kitchen":true + }, + 12, + "f", + "f", + 363, + 340, + 335, + 327, + 327, + 318, + 301, + 308, + 326, + 327, + 401, + 602, + 70, + 13307, + "f", + 6, + "134826312", + 72, + 58, + 76, + 81, + 100, + 64, + 58, + 52, + 66, + 74, + 69, + 70, + 8439, + 6391, + 8259, + 8605, + 10623, + 6623, + 5701, + 5222, + 6991, + 7861, + 8887, + 13307, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 6, + 5, + 5, + 5, + 3, + 6, + 6, + 8, + 6, + 6, + 6, + 6, + { + "dataQualityScore":100, + "distance":308, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 102663, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 23, + 9, + 7, + 31, + 26, + 0 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 434, + 436, + 426, + 431, + 433, + 434 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 3194, + 1255, + 955, + 4276, + 3602, + 0 + ] + ], + [ + "full", + 17383517, + "Brighton / Gardner Street", + "baafda1f-c174-4f74-ad88-46579775d518.jpg", + 50.82575, + -0.14105, + "entire_home", + "-1", + "2", + 1, + 4, + "Geoff", + 2, + 5, + 46, + 0, + 4.8, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":false, + "pool":false, + "kitchen":true + }, + 214, + "s", + "f", + 144, + 138, + 137, + 132, + 133, + 129, + 122, + 127, + 132, + 133, + 134, + 133, + 100, + 4516, + "f", + 1, + "6478844", + 92, + 74, + 100, + 100, + 100, + 76, + 62, + 44, + 62, + 100, + 100, + 100, + 4463, + 3455, + 4638, + 4486, + 4516, + 3339, + 2592, + 1906, + 2781, + 4516, + 4547, + 4516, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 5, + 5, + 2, + 2, + 4, + 5, + 6, + 5, + 7, + 2, + 1, + 1, + { + "dataQualityScore":100, + "distance":312, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 40846, + "f", + [ + 0, + "missing", + 1, + 18, + 50, + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 87, + 81, + 34, + 39 + ], + [ + 140, + "missing", + 148, + 152, + 154, + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 146, + 148, + 149, + 147 + ], + [ + 0, + "missing", + 49, + 917, + 2578, + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 4274, + 4028, + 1701, + 1927 + ] + ], + [ + "full", + 5087973, + "Lanes Townhouse with a Hot Tub and Wine Cellar!", + "8bbd75fe-ad59-44f0-90b9-cc94c4098de0.jpg", + 50.827, + -0.14, + "entire_home", + "-1", + "2", + 1, + 3, + "Charlie", + 2, + 2, + 59, + 0, + 5, + { + "parking":false, + "hot_tub":true, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 75, + "s", + "t", + 426, + 401, + 399, + 410, + 401, + 392, + 386, + 757, + 778, + 794, + 803, + 792, + 70, + 17322, + "f", + 3, + "20502401", + 64, + 35, + 48, + 81, + 100, + 52, + 27, + 56, + 97, + 81, + 77, + 70, + 8693, + 4487, + 6124, + 10606, + 12820, + 6523, + 3338, + 13259, + 23589, + 20093, + 19312, + 17322, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 2, + 4, + 5, + 3, + 1, + 2, + 3, + 2, + 4, + 4, + 3, + 3, + { + "dataQualityScore":100, + "distance":317, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 59746, + "f", + [ + "missing", + "missing", + 0, + 6, + "missing", + 4, + 3, + 0, + 28, + 23, + 16, + 52, + 24, + 30, + 54 + ], + [ + "missing", + "missing", + 628, + 758, + "missing", + 849, + 835, + 831, + 624, + 395, + 383, + 426, + 367, + 374, + 405 + ], + [ + "missing", + "missing", + 0, + 1422, + "missing", + 1059, + 781, + 0, + 5494, + 2906, + 1963, + 7063, + 2828, + 3599, + 6988 + ] + ], + [ + "full", + 47951366, + "2 Bed Queens Square Brighton", + "2d9a547a-f7b7-4210-b5cc-a98661bde5b6.jpg", + 50.82472, + -0.14383, + "entire_home", + "condo", + "2", + 1, + 4, + "Guest Homes", + 2, + 73, + 69, + 5.52667, + 4.2, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":false, + "pool":false, + "kitchen":true + }, + 64, + "m", + "f", + 286, + 285, + 265, + 274, + 243, + 207, + 142, + 137, + 152, + 137, + 114, + 134, + 27, + 1289, + "f", + 2, + "235517932", + 44, + 50, + 32, + 31, + 27, + 44, + 31, + 40, + 46, + 77, + 56, + 27, + 4141, + 4691, + 2807, + 2804, + 2187, + 3081, + 1556, + 1947, + 2449, + 3748, + 2333, + 1289, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 3, + 2, + 1, + 3, + 3, + 4, + 3, + 3, + 3, + 2, + 5, + 2, + { + "dataQualityScore":100, + "distance":321, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 22267, + "f", + [ + "missing", + "missing", + 2, + 30, + "missing", + 73, + 84, + 77, + 47, + 36, + 22, + 13, + 15, + 51, + 39 + ], + [ + "missing", + "missing", + 180, + 195, + "missing", + 282, + 281, + 313, + 232, + 244, + 210, + 176, + 167, + 177, + 213 + ], + [ + "missing", + "missing", + 123, + 1991, + "missing", + 6782, + 7778, + 7882, + 3650, + 2927, + 1560, + 787, + 867, + 3105, + 2802 + ] + ], + [ + "full", + 3421010, + "Central Brighton in North Lanes", + "e60b7be1-6e55-430d-b234-5898bc3af4a1.jpg", + 50.82729, + -0.13933, + "entire_home", + "-1", + "2", + 1, + 4, + "Geoff", + 2, + 4, + 46, + 0, + 4.8, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 454, + "s", + "f", + 152, + 147, + 145, + 141, + 142, + 141, + 132, + 137, + 143, + 144, + 145, + 143, + 27, + 1301, + "f", + 4, + "6478844", + 80, + 58, + 72, + 100, + 100, + 56, + 62, + 48, + 54, + 4, + 30, + 27, + 4076, + 2867, + 3515, + 4760, + 4791, + 2665, + 2781, + 2226, + 2603, + 194, + 1464, + 1301, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 4, + 6, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 1, + 2, + 4, + { + "dataQualityScore":100, + "distance":359, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 46116, + "f", + [ + 11, + 5, + 5, + 26, + "missing", + 85, + 94, + 83, + 69, + 45, + 32, + 48, + 15, + "missing", + "missing" + ], + [ + 159, + 160, + 163, + 162, + "missing", + 171, + 164, + 180, + 178, + 162, + 160, + 155, + 157, + "missing", + "missing" + ], + [ + 584, + 267, + 271, + 1404, + "missing", + 4824, + 5134, + 4938, + 4063, + 2430, + 1708, + 2490, + 787, + "missing", + "missing" + ] + ] + ], + "dates":[ + "2022-04", + "2022-05", + "2022-06", + "2022-07", + "2022-08", + "2022-09", + "2022-10", + "2022-11", + "2022-12", + "2023-01", + "2023-02", + "2023-03" + ], + "historical_dates":[ + "2021-01", + "2021-02", + "2021-03", + "2021-04", + "2021-05", + "2021-06", + "2021-07", + "2021-08", + "2021-09", + "2021-10", + "2021-11", + "2021-12", + "2022-01", + "2022-02", + "2022-03" + ], + "example_listings":{ + "top_performing":[ + [ + "full", + 20533746, + "Sunny Cottage | By My Getaways | Free Parking", + "prohost-api/Hosting-20533746/original/d5a88969-02f6-4d79-adb8-446cba9f29fd.jpeg", + 50.827, + -0.141, + "entire_home", + "-1", + "2", + 1, + 6, + "My Getaways", + 1, + 74, + 116, + 0, + 4.5, + { + "parking":true, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 74, + "m", + "t", + 419, + 511, + 420, + 413, + 406, + 307, + 241, + 226, + 262, + 235, + 265, + 225, + 46, + 3690, + "f", + 4, + "9802857", + 88, + 66, + 28, + 100, + 85, + 80, + 100, + 36, + 66, + 15, + 77, + 46, + 12266, + 11052, + 3911, + 13756, + 11511, + 8418, + 8510, + 2899, + 6039, + 1249, + 7116, + 3690, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 2, + 5, + 3, + 2, + 3, + 5, + 3, + 3, + 3, + 2, + 2, + 4, + { + "dataQualityScore":100, + "distance":249, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 26736, + "f", + [ + 22, + 49, + 52, + 45, + 43, + 30, + 57, + 82, + 46, + 24, + 16, + 29, + 31, + 21, + 100 + ], + [ + 228, + 236, + 284, + 319, + 407, + 467, + 451, + 433, + 438, + 347, + 291, + 312, + 275, + 288, + 291 + ], + [ + 1785, + 4095, + 5107, + 4900, + 5836, + 4621, + 8501, + 11780, + 6678, + 2818, + 1605, + 3096, + 2959, + 2088, + 10035 + ] + ], + [ + "full", + 37100138, + "Spacious family home, central with lovely garden", + "21d43c59-1081-427f-88f7-20be85df8cf3.jpg", + 50.83034, + -0.14403, + "entire_home", + "-1", + "2", + 1, + 6, + "Joe & Jessi", + 2, + 2, + 65, + 0, + 4.8, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":false, + "washer":true, + "pool":false, + "kitchen":true + }, + 12, + "f", + "f", + 363, + 340, + 335, + 327, + 327, + 318, + 301, + 308, + 326, + 327, + 401, + 602, + 70, + 13307, + "f", + 6, + "134826312", + 72, + 58, + 76, + 81, + 100, + 64, + 58, + 52, + 66, + 74, + 69, + 70, + 8439, + 6391, + 8259, + 8605, + 10623, + 6623, + 5701, + 5222, + 6991, + 7861, + 8887, + 13307, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 6, + 5, + 5, + 5, + 3, + 6, + 6, + 8, + 6, + 6, + 6, + 6, + { + "dataQualityScore":100, + "distance":308, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 102663, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 23, + 9, + 7, + 31, + 26, + 0 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 434, + 436, + 426, + 431, + 433, + 434 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 3194, + 1255, + 955, + 4276, + 3602, + 0 + ] + ], + [ + "full", + 5087973, + "Lanes Townhouse with a Hot Tub and Wine Cellar!", + "8bbd75fe-ad59-44f0-90b9-cc94c4098de0.jpg", + 50.827, + -0.14, + "entire_home", + "-1", + "2", + 1, + 3, + "Charlie", + 2, + 2, + 59, + 0, + 5, + { + "parking":false, + "hot_tub":true, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 75, + "s", + "t", + 426, + 401, + 399, + 410, + 401, + 392, + 386, + 757, + 778, + 794, + 803, + 792, + 70, + 17322, + "f", + 3, + "20502401", + 64, + 35, + 48, + 81, + 100, + 52, + 27, + 56, + 97, + 81, + 77, + 70, + 8693, + 4487, + 6124, + 10606, + 12820, + 6523, + 3338, + 13259, + 23589, + 20093, + 19312, + 17322, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 2, + 4, + 5, + 3, + 1, + 2, + 3, + 2, + 4, + 4, + 3, + 3, + { + "dataQualityScore":100, + "distance":317, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 59746, + "f", + [ + "missing", + "missing", + 0, + 6, + "missing", + 4, + 3, + 0, + 28, + 23, + 16, + 52, + 24, + 30, + 54 + ], + [ + "missing", + "missing", + 628, + 758, + "missing", + 849, + 835, + 831, + 624, + 395, + 383, + 426, + 367, + 374, + 405 + ], + [ + "missing", + "missing", + 0, + 1422, + "missing", + 1059, + 781, + 0, + 5494, + 2906, + 1963, + 7063, + 2828, + 3599, + 6988 + ] + ] + ], + "average_performing":[ + [ + "full", + 52809755, + "Chic designer cottage in the Laines", + "miso/Hosting-52809755/original/58412fc6-4a71-40e2-afc1-dbbc31a6c330.jpeg", + 50.82736, + -0.14154, + "entire_home", + "-1", + "2", + 1, + 5, + "Paula", + 2, + 4, + 54, + 10.8733, + 4.9, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":false, + "pool":false, + "kitchen":true + }, + 93, + "m", + "t", + 193, + 186, + 188, + 214, + 214, + 205, + 192, + 197, + 215, + 199, + 187, + 161, + 60, + 3270, + "f", + 4, + "10958130", + 88, + 74, + 100, + 100, + 100, + 76, + 77, + 100, + 85, + 15, + 51, + 60, + 5655, + 4597, + 6274, + 7067, + 7067, + 5162, + 4924, + 6548, + 6032, + 991, + 3184, + 3270, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 7, + 4, + 4, + 5, + 1, + 5, + 5, + 1, + 3, + 2, + 4, + 4, + { + "dataQualityScore":100, + "distance":204, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 82130, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 70, + 69, + 62 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 184, + 190, + 189 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 4306, + 4371, + 3908 + ] + ], + [ + "full", + 25992014, + "Hidden gem - super-central North Laine cottage", + "prohost-api/Hosting-25992014/original/571c5b84-195d-4007-97d7-44f360ac7383.jpeg", + 50.8278, + -0.14027, + "entire_home", + "-1", + "2", + 1, + 4, + "Airhost For You", + 2, + 65, + 137, + 0, + 4.3, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 121, + "m", + "f", + 214, + 215, + 174, + 191, + 176, + 140, + 124, + 120, + 131, + 119, + 125, + 138, + 100, + 5579, + "f", + 2, + "183539480", + 68, + 62, + 76, + 100, + 89, + 100, + 97, + 100, + 93, + 100, + 64, + 100, + 5369, + 4915, + 5074, + 7195, + 5996, + 5640, + 4997, + 5030, + 4989, + 4999, + 3316, + 5579, + 366, + "-1", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 4, + 2, + 4, + 2, + 6, + 3, + 4, + 1, + 2, + 2, + 4, + 2, + { + "dataQualityScore":100, + "distance":293, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 80732, + "f", + [ + 10, + 17, + 76, + 85, + 80, + 73, + 94, + 82, + 82, + 67, + 43, + 28, + 12, + 47, + 87 + ], + [ + 141, + 146, + 152, + 173, + 178, + 200, + 218, + 230, + 236, + 209, + 197, + 233, + 179, + 177, + 193 + ], + [ + 567, + 989, + 4564, + 5649, + 5439, + 5453, + 7537, + 6875, + 7025, + 5188, + 3172, + 2373, + 819, + 3181, + 6313 + ] + ], + [ + "full", + 49134467, + "Centrally Located Modern Cottage & Private Patio", + "ade762f7-cb70-4d21-9b9a-402c130785d7.jpg", + 50.82934, + -0.14115, + "entire_home", + "-1", + "2", + 1, + 6, + "Jessica", + 1, + 3, + 75, + 16.26, + 5, + { + "parking":false, + "hot_tub":false, + "gym":false, + "pets":false, + "dryer":true, + "washer":true, + "pool":false, + "kitchen":true + }, + 80, + "s", + "f", + 209, + 203, + 192, + 339, + 327, + 199, + 170, + 176, + 176, + 178, + 194, + 215, + 73, + 5334, + "f", + 1, + "65093396", + 60, + 81, + 64, + 97, + 50, + 48, + 62, + 24, + 23, + 4, + 56, + 73, + 4274, + 5622, + 4227, + 10756, + 5361, + 3273, + 3679, + 1468, + 1407, + 247, + 3733, + 5334, + 366, + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + "f", + 3, + 3, + 4, + 5, + 4, + 4, + 4, + 2, + 2, + 1, + 4, + 1, + { + "dataQualityScore":100, + "distance":302, + "isNumberOfBathroomDifference":false, + "isHouseTypeDifference":false, + "confidenceScore":100 + }, + 40223, + "f", + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 47, + "missing", + "missing", + 70, + 90, + 54 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 177, + "missing", + "missing", + 118, + 130, + 134 + ], + [ + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + "missing", + 2889, + "missing", + "missing", + 3044, + 4243, + 2611 + ] + ] + ] + }, + "radiusUsed":359, + "last_updated_date":"2023-03-31" + } + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"*", + "access-control-allow-methods":"*", + "access-control-allow-origin":"*", + "content-length":"20572", + "content-type":"application/json", + "date":"Wed, 28 Jun 2023 04:20:49 GMT", + "server":"RapidAPI-1.2.8", + "x-amz-apigw-id":"HNk9EGumiYcFZvQ=", + "x-amzn-requestid":"a2faaa19-25bd-4b7e-af92-624a0574eabf", + "x-amzn-trace-id":"Root=1-649bb51e-3752d1ce7136fe50300d944e;Sampled=0;lineage=504d0ecf:0", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8", + "x-ratelimit-requests-limit":"1", + "x-ratelimit-requests-remaining":"-1", + "x-ratelimit-requests-reset":"1745330" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airbnb_income_prediction/api.py b/toolbench/toolenv/tools/Travel/airbnb_income_prediction/api.py new file mode 100644 index 0000000000000000000000000000000000000000..2acde463b880902e0820f11e5091c2fe2466d3c3 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_income_prediction/api.py @@ -0,0 +1,54 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_airbnb_income_history(bedrooms: int, bathrooms: int, countrycode: str, coordinate: str, capacity: int=None, radiusinmeter: int=5000, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Input + - coordinate (Lat, Lng of a property) + - countryCode (Country code in ISO Alpha-2 format. E.g. US, GB, KR, MX etc ) + - bedrooms (Number of bedrooms) + - radiusInMeter (The API will only use the listings within this radius) + + List of country codes: https://www.nationsonline.org/oneworld/country_code_list.htm + + Output: + - Number of sample: number of listings used to calculate the result. + - average: This object contains average of key metrics + - percentile25 + - percentile50 + - percentile75 + + Key metrics + - occupancy_rate: number_of_booked_day/number_of_available_day + - daily_rate: a fee that host charges for 1 night + - revenue: a monthly revenue. it includes daily rate and cleaning fees + - cleaning_fee + - extra_guest_fee: estimated fee per extra guest" + radiusinmeter: Default is 5,000 meters. We'll include listings within this radius to calculate the income history. Upper limit is 10000 meters. + + """ + url = f"https://airbnb-income-prediction.p.rapidapi.com/getincomehistory" + querystring = {'bedrooms': bedrooms, 'bathrooms': bathrooms, 'countryCode': countrycode, 'coordinate': coordinate, } + if capacity: + querystring['capacity'] = capacity + if radiusinmeter: + querystring['radiusInMeter'] = radiusinmeter + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-income-prediction.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb_listings.json b/toolbench/toolenv/tools/Travel/airbnb_listings.json new file mode 100644 index 0000000000000000000000000000000000000000..a48d74df94c36200238e7813fffa8b4eba980906 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_listings.json @@ -0,0 +1,839 @@ +{ + "tool_name":"Airbnb listings", + "tool_description":"Join the over 300 users/customers and access all Airbnb data updated daily.\nGet Airbnb listings details, future prices and availability, reviews, and more using listing IDs, geo coordinates or \"market\". \nData analytics endpoints are also available to get detailed info around all airbnb accomodations.\nWe guarantee a 24-hour response time for all inquiries. If a feature you need is not there please contact us and we will evaluate if it is possible to fullfill your needs.\n\nWhile our data are not...", + "title":"Airbnb listings", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":67, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/insidebnb-team-insidebnb-team-default/api/airbnb-listings/", + "host":"airbnb-listings.p.rapidapi.com", + "api_list":[ + { + "name":"Listing reviews", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingReviews", + "description":"Return up to 20 reviews after the specified datetime. Each reviews contains those fields: review_id, comments, response, date_time, language, rating: 5, guest_id. Available only for properties. Available only for the properties whose prices or availability have been requested via API at least one time in the past and at least 5 hours before actual time.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing id", + "default":"619966061834034729" + } + ], + "optional_parameters":[ + { + "name":"date_time", + "type":"STRING", + "description":"the month", + "default":"2023-01-11 10:52:50" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingReviews\"\nquerystring = {\"id\": id, \"date_time\": date_time}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Room prices and Availability by lat lng", + "url":"https://airbnb-listings.p.rapidapi.com/v2/avgRoomPricesByLatLng", + "description":"Retrieve Rooms average Price, average price of available rooms only, availability percent and number of processed rooms in a range from a given geographical point. Max range is 20000 meters.", + "method":"GET", + "required_parameters":[ + { + "name":"year", + "type":"NUMBER", + "description":"the year", + "default":"2024" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"latitude", + "default":"28.0852473" + }, + { + "name":"lng", + "type":"NUMBER", + "description":"longitude", + "default":"-16.7349705" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/avgRoomPricesByLatLng\"\nquerystring = {\"year\": year, \"lat\": lat, \"lng\": lng}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Rooms Prices and Availability by administrative divisions", + "url":"https://airbnb-listings.p.rapidapi.com/v2/avgRoomPricesByAdmins", + "description":"Retrieve average rooms Price, average price of available rooms only, availability percent and number of processed rooms in an geographical administrative division. Geographic area names can be found from \"Get administrative divisions\" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie rooms with cities with the same name but in different countries).", + "method":"GET", + "required_parameters":[ + { + "name":"country_code", + "type":"STRING", + "description":"", + "default":"IT" + }, + { + "name":"year", + "type":"NUMBER", + "description":"", + "default":"2024" + } + ], + "optional_parameters":[ + { + "name":"admin1", + "type":"STRING", + "description":"", + "default":"Lazio" + }, + { + "name":"admin2", + "type":"STRING", + "description":"", + "default":"Citta metropolitana di Roma Capitale" + }, + { + "name":"admin4", + "type":"STRING", + "description":"", + "default":"Municipio Roma I" + }, + { + "name":"place", + "type":"STRING", + "description":"", + "default":"Trastevere" + }, + { + "name":"admin3", + "type":"STRING", + "description":"", + "default":"Roma" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/avgRoomPricesByAdmins\"\nquerystring = {\"country_code\": country_code, \"year\": year, \"admin1\": admin1, \"admin2\": admin2, \"admin4\": admin4, \"place\": place, \"admin3\": admin3}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listings by market", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingsByMarket", + "description":"Retrieve listings ids and last updated dates for prices, availability and ratings in the specified market. Returns 50 results. Can be filtered on bedrooms and max guest capacity", + "method":"GET", + "required_parameters":[ + { + "name":"market", + "type":"STRING", + "description":"", + "default":"Tenerife" + }, + { + "name":"offset", + "type":"NUMBER", + "description":"index to start from", + "default":"0" + } + ], + "optional_parameters":[ + { + "name":"maxGuestCapacity", + "type":"NUMBER", + "description":"Max guest the listing can accomodate", + "default":"2" + }, + { + "name":"bedrooms", + "type":"NUMBER", + "description":"number of bedrooms", + "default":"1" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingsByMarket\"\nquerystring = {\"maxGuestCapacity\": maxguestcapacity, \"market\": market, \"bedrooms\": bedrooms, \"offset\": offset}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listings by lat lng", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingsByLatLng", + "description":"Retrieve listings ids, distance from starting point and last updated dates for prices, availability and ratings in a range from a given geographical point. Returns 50 results. Can be filtered on bedrooms and max guest capacity", + "method":"GET", + "required_parameters":[ + { + "name":"lat", + "type":"NUMBER", + "description":"latitude", + "default":"28.0852473" + }, + { + "name":"lng", + "type":"NUMBER", + "description":"longitude", + "default":"-16.7349705" + }, + { + "name":"offset", + "type":"NUMBER", + "description":"index to start from", + "default":"0" + }, + { + "name":"range", + "type":"NUMBER", + "description":"range in meters from latitude and longitude point", + "default":"500" + } + ], + "optional_parameters":[ + { + "name":"bedrooms", + "type":"NUMBER", + "description":"number of bedrooms", + "default":"1" + }, + { + "name":"maxGuestCapacity", + "type":"NUMBER", + "description":"Max guest the listing can accomodate", + "default":"2" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingsByLatLng\"\nquerystring = {\"lat\": lat, \"lng\": lng, \"offset\": offset, \"bedrooms\": bedrooms, \"range\": range, \"maxGuestCapacity\": maxguestcapacity}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Count listings by market", + "url":"https://airbnb-listings.p.rapidapi.com/v2/countByMarket", + "description":"Retrieve listings count in the specified market. Can be filtered on bedrooms and max guest capacity", + "method":"GET", + "required_parameters":[ + { + "name":"market", + "type":"STRING", + "description":"", + "default":"Tenerife" + } + ], + "optional_parameters":[ + { + "name":"bedrooms", + "type":"NUMBER", + "description":"Number of bedrooms", + "default":"1" + }, + { + "name":"maxGuestCapacity", + "type":"NUMBER", + "description":"Max guest the listing can accomodate", + "default":"2" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/countByMarket\"\nquerystring = {\"market\": market, \"bedrooms\": bedrooms, \"maxGuestCapacity\": maxguestcapacity}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listings by administrative divisions", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingsByGeoRef", + "description":"Retrieve listings ids and last updated dates for prices, availability and ratings in the specified geographic area. Geocrafic area names can be found from \"Get administrative divisions\" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie listings with cities with the same name but in different countries). Returns 50 results. Can be filtered on bedrooms and max guest capacity", + "method":"GET", + "required_parameters":[ + { + "name":"offset", + "type":"STRING", + "description":"", + "default":"0" + }, + { + "name":"state", + "type":"STRING", + "description":"", + "default":"IT" + } + ], + "optional_parameters":[ + { + "name":"admin3", + "type":"STRING", + "description":"", + "default":"Roma" + }, + { + "name":"admin1", + "type":"STRING", + "description":"", + "default":"Lazio" + }, + { + "name":"admin4", + "type":"STRING", + "description":"", + "default":"Municipio Roma I" + }, + { + "name":"bedrooms", + "type":"STRING", + "description":"", + "default":"2" + }, + { + "name":"maxGuestCapacity", + "type":"STRING", + "description":"", + "default":"4" + }, + { + "name":"place", + "type":"STRING", + "description":"", + "default":"Borgo" + }, + { + "name":"admin2", + "type":"STRING", + "description":"", + "default":"Citta metropolitana di Roma Capitale" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingsByGeoRef\"\nquerystring = {\"offset\": offset, \"state\": state, \"admin3\": admin3, \"admin1\": admin1, \"admin4\": admin4, \"bedrooms\": bedrooms, \"maxGuestCapacity\": maxguestcapacity, \"place\": place, \"admin2\": admin2}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Count listings by lat lng", + "url":"https://airbnb-listings.p.rapidapi.com/v2/countByLatLng", + "description":"Retrieve listings count in a range from a given geographical point. Can be filtered on bedrooms and max guest capacity", + "method":"GET", + "required_parameters":[ + { + "name":"lng", + "type":"NUMBER", + "description":"longitude", + "default":"-16.7349705" + }, + { + "name":"range", + "type":"NUMBER", + "description":"range in meters from latitude and longitude point", + "default":"500" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"latitude", + "default":"28.0852473" + } + ], + "optional_parameters":[ + { + "name":"maxGuestCapacity", + "type":"NUMBER", + "description":"Max guest the listing can accomodate", + "default":"2" + }, + { + "name":"bedrooms", + "type":"NUMBER", + "description":"", + "default":"1" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/countByLatLng\"\nquerystring = {\"lng\": lng, \"maxGuestCapacity\": maxguestcapacity, \"range\": range, \"bedrooms\": bedrooms, \"lat\": lat}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Count Listings by administrative divisions", + "url":"https://airbnb-listings.p.rapidapi.com/v2/countByGeoRef", + "description":"Retrieve listings count in the specified geographic area. Geocrafic area names can be found from \"Get administrative divisions\" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie listings with cities with the same name but in different countries). Can be filtered on bedrooms and max guest capacity", + "method":"GET", + "required_parameters":[ + { + "name":"state", + "type":"STRING", + "description":"", + "default":"IT" + } + ], + "optional_parameters":[ + { + "name":"admin1", + "type":"STRING", + "description":"", + "default":"Lazio" + }, + { + "name":"admin2", + "type":"STRING", + "description":"", + "default":"Citta metropolitana di Roma Capitale" + }, + { + "name":"admin3", + "type":"STRING", + "description":"", + "default":"Roma" + }, + { + "name":"place", + "type":"STRING", + "description":"", + "default":"Borgo" + }, + { + "name":"admin4", + "type":"STRING", + "description":"", + "default":"Municipio Roma I" + }, + { + "name":"maxGuestCapacity", + "type":"STRING", + "description":"", + "default":"4" + }, + { + "name":"bedrooms", + "type":"NUMBER", + "description":"", + "default":"1" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/countByGeoRef\"\nquerystring = {\"admin1\": admin1, \"state\": state, \"admin2\": admin2, \"admin3\": admin3, \"place\": place, \"admin4\": admin4, \"maxGuestCapacity\": maxguestcapacity, \"bedrooms\": bedrooms}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing Details", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listing", + "description":"Retrieve listing details.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing Id", + "default":"619966061834034729" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listing\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing Prices Full", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingPricesFull", + "description":"Retrieve listing prices for the next 12 months", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing id\n", + "default":"619966061834034729" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingPricesFull\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing Availability Full", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingAvailabilityFull", + "description":"Retrieve listing availability and stay length rules for the next 12 months\n**Note**: The fact the available field is true does not means that the listing can be booked. It only tells indicates that it is not taken. To confirm if it is really available for stay you must verify all previous and following day rules for stay length are respected.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing id\n", + "default":"619966061834034729" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingAvailabilityFull\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing Availability", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingavailability", + "description":"Retrieve listing availability and stay length rules for the requested month.\n**Note**: The fact the available field is true does not means that the listing can be booked. It only tells indicates that it is not taken. To confirm if it is really available for stay you must verify all previous and following day rules for stay length are respected.", + "method":"GET", + "required_parameters":[ + { + "name":"year", + "type":"NUMBER", + "description":"the year", + "default":"2024" + }, + { + "name":"id", + "type":"STRING", + "description":"the listing id\n", + "default":"619966061834034729" + }, + { + "name":"month", + "type":"NUMBER", + "description":"the month", + "default":"1" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingavailability\"\nquerystring = {\"year\": year, \"id\": id, \"month\": month}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing status Full", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingStatusFull", + "description":"Retrieve the calculated status (available/not available for stay) for the next 12 months of a listing based on previous and following days stay rules.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing id", + "default":"619966061834034729" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingStatusFull\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing Prices", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingPrices", + "description":"Retrieve listing prices for the requested month", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing id\n", + "default":"619966061834034729" + }, + { + "name":"month", + "type":"STRING", + "description":"the month", + "default":"1" + }, + { + "name":"year", + "type":"NUMBER", + "description":"the year", + "default":"2024" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingPrices\"\nquerystring = {\"id\": id, \"month\": month, \"year\": year}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Listing status", + "url":"https://airbnb-listings.p.rapidapi.com/v2/listingstatus", + "description":"Retrieve the calculated status (available/not available for stay) of a listing based on previous and following days stay rules.", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"the listing id", + "default":"619966061834034729" + }, + { + "name":"year", + "type":"NUMBER", + "description":"the year", + "default":"2024" + }, + { + "name":"month", + "type":"NUMBER", + "description":"the month", + "default":"1" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/listingstatus\"\nquerystring = {\"id\": id, \"year\": year, \"month\": month}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Prices and Availability by administrative divisions", + "url":"https://airbnb-listings.p.rapidapi.com/v2/avgPricesByAdmins", + "description":"Retrieve average Price, average price of available properties only, availability percent and number of processed properties in an geographical administrative division. Geographic area names can be found from \"Get administrative divisions\" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie listings with cities with the same name but in different countries). Can be filtered on bedrooms and max guest capacity.", + "method":"GET", + "required_parameters":[ + { + "name":"month", + "type":"STRING", + "description":"", + "default":"1" + }, + { + "name":"country_code", + "type":"STRING", + "description":"", + "default":"IT" + }, + { + "name":"year", + "type":"NUMBER", + "description":"", + "default":"2024" + } + ], + "optional_parameters":[ + { + "name":"admin3", + "type":"STRING", + "description":"", + "default":"Roma" + }, + { + "name":"bedrooms", + "type":"STRING", + "description":"", + "default":"2" + }, + { + "name":"admin1", + "type":"STRING", + "description":"", + "default":"Lazio" + }, + { + "name":"admin2", + "type":"STRING", + "description":"", + "default":"Citta metropolitana di Roma Capitale" + }, + { + "name":"maxGuestCapacity", + "type":"NUMBER", + "description":"", + "default":"4" + }, + { + "name":"place", + "type":"STRING", + "description":"", + "default":"Trastevere" + }, + { + "name":"admin4", + "type":"STRING", + "description":"", + "default":"Municipio Roma I" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/avgPricesByAdmins\"\nquerystring = {\"admin3\": admin3, \"bedrooms\": bedrooms, \"month\": month, \"country_code\": country_code, \"year\": year, \"admin1\": admin1, \"admin2\": admin2, \"maxGuestCapacity\": maxguestcapacity, \"place\": place, \"admin4\": admin4}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get administrative divisions", + "url":"https://airbnb-listings.p.rapidapi.com/v2/getadmins", + "description":"Retrieve geographical admin names to be used in Listing by georef endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie cities with the same name but in different countries). Returns 50 results", + "method":"GET", + "required_parameters":[ + { + "name":"countrycode", + "type":"STRING", + "description":"", + "default":"IT" + } + ], + "optional_parameters":[ + { + "name":"admin2", + "type":"STRING", + "description":"", + "default":"RM" + }, + { + "name":"admin1", + "type":"STRING", + "description":"", + "default":"07" + }, + { + "name":"admin4", + "type":"STRING", + "description":"", + "default":"05809101" + }, + { + "name":"admin3", + "type":"STRING", + "description":"", + "default":"058091" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/getadmins\"\nquerystring = {\"admin2\": admin2, \"admin1\": admin1, \"admin4\": admin4, \"countrycode\": countrycode, \"admin3\": admin3}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Prices and Availability by lat lng", + "url":"https://airbnb-listings.p.rapidapi.com/v2/avgPricesByLatLng", + "description":"Retrieve average Price, average price of available properties only, availability percent and number of processed properties in a range from a given geographical point. Max range is 20000 meters. Can be filtered on bedrooms and max guest capacity.", + "method":"GET", + "required_parameters":[ + { + "name":"year", + "type":"NUMBER", + "description":"the year", + "default":"2024" + }, + { + "name":"lat", + "type":"NUMBER", + "description":"latitude", + "default":"28.0852473" + }, + { + "name":"lng", + "type":"NUMBER", + "description":"longitude", + "default":"-16.7349705" + }, + { + "name":"range", + "type":"NUMBER", + "description":"range in meters from latitude and longitude point", + "default":"500" + }, + { + "name":"month", + "type":"STRING", + "description":"the month", + "default":"1" + } + ], + "optional_parameters":[ + { + "name":"bedrooms", + "type":"NUMBER", + "description":"number of bedrooms", + "default":"1" + }, + { + "name":"maxGuestCapacity", + "type":"NUMBER", + "description":"Max guest the listing can accomodate", + "default":"2" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/avgPricesByLatLng\"\nquerystring = {\"year\": year, \"lat\": lat, \"lng\": lng, \"range\": range, \"month\": month, \"bedrooms\": bedrooms, \"maxGuestCapacity\": maxguestcapacity}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Amenities", + "url":"https://airbnb-listings.p.rapidapi.com/v2/amenities", + "description":"Retrieves amenities ids And descriptions. Returns 50 results", + "method":"GET", + "required_parameters":[ + { + "name":"offset", + "type":"NUMBER", + "description":"index to start from", + "default":"0" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/amenities\"\nquerystring = {\"offset\": offset}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Markets", + "url":"https://airbnb-listings.p.rapidapi.com/v2/markets", + "description":"Retrieve Market names to be used in Listing by market endpoint. Returns 50 results", + "method":"GET", + "required_parameters":[ + { + "name":"offset", + "type":"NUMBER", + "description":"index to start from", + "default":"0" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2/markets\"\nquerystring = {\"offset\": offset}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Connect test", + "url":"https://airbnb-listings.p.rapidapi.com/v2", + "description":"No parameters needed. Useful to test connectivity and authentication", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings.p.rapidapi.com/v2\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airbnb_listings/api.py b/toolbench/toolenv/tools/Travel/airbnb_listings/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7846d392afff344b6ae58fa0169eef45a8a1ba10 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_listings/api.py @@ -0,0 +1,600 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def listing_reviews(is_id: str, date_time: str='2023-01-11 10:52:50', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return up to 20 reviews after the specified datetime. Each reviews contains those fields: review_id, comments, response, date_time, language, rating: 5, guest_id. Available only for properties. Available only for the properties whose prices or availability have been requested via API at least one time in the past and at least 5 hours before actual time." + id: the listing id + date_time: the month + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingreviews" + querystring = {'id': is_id, } + if date_time: + querystring['date_time'] = date_time + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def room_prices_and_availability_by_lat_lng(year: int, lat: int, lng: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve Rooms average Price, average price of available rooms only, availability percent and number of processed rooms in a range from a given geographical point. Max range is 20000 meters." + year: the year + lat: latitude + lng: longitude + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/avgroompricesbylatlng" + querystring = {'year': year, 'lat': lat, 'lng': lng, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def rooms_prices_and_availability_by_administrative_divisions(country_code: str, year: int, admin1: str='Lazio', admin2: str='Citta metropolitana di Roma Capitale', admin4: str='Municipio Roma I', place: str='Trastevere', admin3: str='Roma', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve average rooms Price, average price of available rooms only, availability percent and number of processed rooms in an geographical administrative division. Geographic area names can be found from "Get administrative divisions" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie rooms with cities with the same name but in different countries)." + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/avgroompricesbyadmins" + querystring = {'country_code': country_code, 'year': year, } + if admin1: + querystring['admin1'] = admin1 + if admin2: + querystring['admin2'] = admin2 + if admin4: + querystring['admin4'] = admin4 + if place: + querystring['place'] = place + if admin3: + querystring['admin3'] = admin3 + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listings_by_market(market: str, offset: int, maxguestcapacity: int=2, bedrooms: int=1, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listings ids and last updated dates for prices, availability and ratings in the specified market. Returns 50 results. Can be filtered on bedrooms and max guest capacity" + offset: index to start from + maxguestcapacity: Max guest the listing can accomodate + bedrooms: number of bedrooms + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingsbymarket" + querystring = {'market': market, 'offset': offset, } + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + if bedrooms: + querystring['bedrooms'] = bedrooms + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listings_by_lat_lng(lat: int, lng: int, offset: int, range: int, bedrooms: int=1, maxguestcapacity: int=2, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listings ids, distance from starting point and last updated dates for prices, availability and ratings in a range from a given geographical point. Returns 50 results. Can be filtered on bedrooms and max guest capacity" + lat: latitude + lng: longitude + offset: index to start from + range: range in meters from latitude and longitude point + bedrooms: number of bedrooms + maxguestcapacity: Max guest the listing can accomodate + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingsbylatlng" + querystring = {'lat': lat, 'lng': lng, 'offset': offset, 'range': range, } + if bedrooms: + querystring['bedrooms'] = bedrooms + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def count_listings_by_market(market: str, bedrooms: int=1, maxguestcapacity: int=2, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listings count in the specified market. Can be filtered on bedrooms and max guest capacity" + bedrooms: Number of bedrooms + maxguestcapacity: Max guest the listing can accomodate + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/countbymarket" + querystring = {'market': market, } + if bedrooms: + querystring['bedrooms'] = bedrooms + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listings_by_administrative_divisions(offset: str, state: str, admin3: str='Roma', admin1: str='Lazio', admin4: str='Municipio Roma I', bedrooms: str='2', maxguestcapacity: str='4', place: str='Borgo', admin2: str='Citta metropolitana di Roma Capitale', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listings ids and last updated dates for prices, availability and ratings in the specified geographic area. Geocrafic area names can be found from "Get administrative divisions" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie listings with cities with the same name but in different countries). Returns 50 results. Can be filtered on bedrooms and max guest capacity" + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingsbygeoref" + querystring = {'offset': offset, 'state': state, } + if admin3: + querystring['admin3'] = admin3 + if admin1: + querystring['admin1'] = admin1 + if admin4: + querystring['admin4'] = admin4 + if bedrooms: + querystring['bedrooms'] = bedrooms + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + if place: + querystring['place'] = place + if admin2: + querystring['admin2'] = admin2 + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def count_listings_by_lat_lng(lng: int, range: int, lat: int, maxguestcapacity: int=2, bedrooms: int=1, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listings count in a range from a given geographical point. Can be filtered on bedrooms and max guest capacity" + lng: longitude + range: range in meters from latitude and longitude point + lat: latitude + maxguestcapacity: Max guest the listing can accomodate + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/countbylatlng" + querystring = {'lng': lng, 'range': range, 'lat': lat, } + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + if bedrooms: + querystring['bedrooms'] = bedrooms + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def count_listings_by_administrative_divisions(state: str, admin1: str='Lazio', admin2: str='Citta metropolitana di Roma Capitale', admin3: str='Roma', place: str='Borgo', admin4: str='Municipio Roma I', maxguestcapacity: str='4', bedrooms: int=1, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listings count in the specified geographic area. Geocrafic area names can be found from "Get administrative divisions" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie listings with cities with the same name but in different countries). Can be filtered on bedrooms and max guest capacity" + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/countbygeoref" + querystring = {'state': state, } + if admin1: + querystring['admin1'] = admin1 + if admin2: + querystring['admin2'] = admin2 + if admin3: + querystring['admin3'] = admin3 + if place: + querystring['place'] = place + if admin4: + querystring['admin4'] = admin4 + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + if bedrooms: + querystring['bedrooms'] = bedrooms + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_details(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listing details." + id: the listing Id + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listing" + querystring = {'id': is_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_prices_full(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listing prices for the next 12 months" + id: the listing id + + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingpricesfull" + querystring = {'id': is_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_availability_full(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listing availability and stay length rules for the next 12 months + **Note**: The fact the available field is true does not means that the listing can be booked. It only tells indicates that it is not taken. To confirm if it is really available for stay you must verify all previous and following day rules for stay length are respected." + id: the listing id + + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingavailabilityfull" + querystring = {'id': is_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_availability(year: int, is_id: str, month: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listing availability and stay length rules for the requested month. + **Note**: The fact the available field is true does not means that the listing can be booked. It only tells indicates that it is not taken. To confirm if it is really available for stay you must verify all previous and following day rules for stay length are respected." + year: the year + id: the listing id + + month: the month + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingavailability" + querystring = {'year': year, 'id': is_id, 'month': month, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_status_full(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve the calculated status (available/not available for stay) for the next 12 months of a listing based on previous and following days stay rules." + id: the listing id + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingstatusfull" + querystring = {'id': is_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_prices(is_id: str, month: str, year: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve listing prices for the requested month" + id: the listing id + + month: the month + year: the year + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingprices" + querystring = {'id': is_id, 'month': month, 'year': year, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def listing_status(is_id: str, year: int, month: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve the calculated status (available/not available for stay) of a listing based on previous and following days stay rules." + id: the listing id + year: the year + month: the month + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/listingstatus" + querystring = {'id': is_id, 'year': year, 'month': month, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def prices_and_availability_by_administrative_divisions(month: str, country_code: str, year: int, admin3: str='Roma', bedrooms: str='2', admin1: str='Lazio', admin2: str='Citta metropolitana di Roma Capitale', maxguestcapacity: int=4, place: str='Trastevere', admin4: str='Municipio Roma I', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve average Price, average price of available properties only, availability percent and number of processed properties in an geographical administrative division. Geographic area names can be found from "Get administrative divisions" endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie listings with cities with the same name but in different countries). Can be filtered on bedrooms and max guest capacity." + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/avgpricesbyadmins" + querystring = {'month': month, 'country_code': country_code, 'year': year, } + if admin3: + querystring['admin3'] = admin3 + if bedrooms: + querystring['bedrooms'] = bedrooms + if admin1: + querystring['admin1'] = admin1 + if admin2: + querystring['admin2'] = admin2 + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + if place: + querystring['place'] = place + if admin4: + querystring['admin4'] = admin4 + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_administrative_divisions(countrycode: str, admin2: str='RM', admin1: str='07', admin4: str='05809101', admin3: str='058091', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve geographical admin names to be used in Listing by georef endpoint. admin* parameters are optional but to use admin2, admin1 is required, to use admin 3, admin2 and admin1 are required and so on. Not respecting this requirement could give you unwanted results (ie cities with the same name but in different countries). Returns 50 results" + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/getadmins" + querystring = {'countrycode': countrycode, } + if admin2: + querystring['admin2'] = admin2 + if admin1: + querystring['admin1'] = admin1 + if admin4: + querystring['admin4'] = admin4 + if admin3: + querystring['admin3'] = admin3 + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def prices_and_availability_by_lat_lng(year: int, lat: int, lng: int, range: int, month: str, bedrooms: int=1, maxguestcapacity: int=2, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve average Price, average price of available properties only, availability percent and number of processed properties in a range from a given geographical point. Max range is 20000 meters. Can be filtered on bedrooms and max guest capacity." + year: the year + lat: latitude + lng: longitude + range: range in meters from latitude and longitude point + month: the month + bedrooms: number of bedrooms + maxguestcapacity: Max guest the listing can accomodate + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/avgpricesbylatlng" + querystring = {'year': year, 'lat': lat, 'lng': lng, 'range': range, 'month': month, } + if bedrooms: + querystring['bedrooms'] = bedrooms + if maxguestcapacity: + querystring['maxGuestCapacity'] = maxguestcapacity + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def amenities(offset: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieves amenities ids And descriptions. Returns 50 results" + offset: index to start from + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/amenities" + querystring = {'offset': offset, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def markets(offset: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve Market names to be used in Listing by market endpoint. Returns 50 results" + offset: index to start from + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2/markets" + querystring = {'offset': offset, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def connect_test(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "No parameters needed. Useful to test connectivity and authentication" + + """ + url = f"https://airbnb-listings.p.rapidapi.com/v2" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb_listings_data.json b/toolbench/toolenv/tools/Travel/airbnb_listings_data.json new file mode 100644 index 0000000000000000000000000000000000000000..21794955136c63c7987248db8dff97498958c7ef --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_listings_data.json @@ -0,0 +1,55 @@ +{ + "tool_name":"Airbnb Listings Data", + "tool_description":"Get Airbnb listings data", + "title":"Airbnb Listings Data", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2631, + "avgSuccessRate":100, + "popularityScore":9.2, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/airbtics-airbtics-default/api/airbnb-listings-data/", + "host":"airbnb-listings-data.p.rapidapi.com", + "api_list":[ + { + "name":"airbnbListingsData", + "url":"https://airbnb-listings-data.p.rapidapi.com/getListingsData", + "description":"[To be provided by Jae]", + "method":"GET", + "required_parameters":[ + { + "name":"seLat", + "type":"NUMBER", + "description":"", + "default":"29.360943802211537" + }, + { + "name":"seLng", + "type":"NUMBER", + "description":"", + "default":"-98.20696228678895" + }, + { + "name":"nwLng", + "type":"NUMBER", + "description":"", + "default":"-98.73911255534364" + }, + { + "name":"nwLat", + "type":"NUMBER", + "description":"", + "default":"29.792697441798765" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-listings-data.p.rapidapi.com/getListingsData\"\nquerystring = {\"seLat\": selat, \"seLng\": selng, \"nwLng\": nwlng, \"nwLat\": nwlat}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-listings-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airbnb_listings_data/api.py b/toolbench/toolenv/tools/Travel/airbnb_listings_data/api.py new file mode 100644 index 0000000000000000000000000000000000000000..58d8a83b8bbcd68c5f3fde0de0bd9a45ffc27d34 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_listings_data/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airbnblistingsdata(selat: int, selng: int, nwlng: int, nwlat: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "[To be provided by Jae]" + + """ + url = f"https://airbnb-listings-data.p.rapidapi.com/getlistingsdata" + querystring = {'seLat': selat, 'seLng': selng, 'nwLng': nwlng, 'nwLat': nwlat, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-listings-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb_market_maker.json b/toolbench/toolenv/tools/Travel/airbnb_market_maker.json new file mode 100644 index 0000000000000000000000000000000000000000..647f344ddab7527d4dbc7345e00a8ae980a8be16 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_market_maker.json @@ -0,0 +1,58 @@ +{ + "tool_name":"Airbnb Market Maker", + "tool_description":"Get booked / available average nightly rates of Airbnb listings.", + "title":"Airbnb Market Maker", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":16, + "avgLatency":1664, + "avgSuccessRate":16, + "popularityScore":2.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/airbtics-airbtics-default/api/airbnb-market-maker/", + "host":"airbnb-market-maker.p.rapidapi.com", + "api_list":[ + { + "name":"airbnbMarketMaker", + "url":"https://airbnb-market-maker.p.rapidapi.com/getBookingChanges", + "description":"It fetches up to 100 similar listings (similar compared to the listing detail given by you) and gets their next 365 days available / booked daily rates.", + "method":"GET", + "required_parameters":[ + { + "name":"bedrooms", + "type":"NUMBER", + "description":"", + "default":"3" + }, + { + "name":"country_code", + "type":"STRING", + "description":"", + "default":"GB" + }, + { + "name":"coordinate", + "type":"GEOPOINT (latitude, longitude)", + "description":"", + "default":"(50.82758, -0.14442)" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-market-maker.p.rapidapi.com/getBookingChanges\"\nquerystring = {\"bedrooms\": bedrooms, \"country_code\": country_code, \"coordinate\": coordinate}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-market-maker.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":"{\"message\": [{\"date\": \"2021-07-22\", \"available_median_rate\": 258.0, \"booked_median_rate\": 273.0}, {\"date\": \"2021-07-23\", \"available_median_rate\": 477, \"booked_median_rate\": 368}, {\"date\": \"2021-07-24\", \"available_median_rate\": 289.0, \"booked_median_rate\": 398.5}, {\"date\": \"2021-07-25\", \"available_median_rate\": 341, \"booked_median_rate\": 273}, {\"date\": \"2021-07-26\", \"available_median_rate\": 317.0, \"booked_median_rate\": 273.0}, {\"date\": \"2021-07-27\", \"available_median_rate\": 558, \"booked_median_rate\": 273}, {\"date\": \"2021-07-28\", \"available_median_rate\": 312, \"booked_median_rate\": 273}, {\"date\": \"2021-07-29\", \"available_median_rate\": 273, \"booked_median_rate\": 293}, {\"date\": \"2021-07-30\", \"available_median_rate\": 286.0, \"booked_median_rate\": 405.5}, {\"date\": \"2021-07-31\", \"available_median_rate\": 237, \"booked_median_rate\": 409}, {\"date\": \"2021-08-01\", \"available_median_rate\": 368, \"booked_median_rate\": 273}, {\"date\": \"2021-08-02\", \"available_median_rate\": 382, \"booked_median_rate\": 273}, {\"date\": \"2021-08-03\", \"available_median_rate\": 382, \"booked_median_rate\": 273}, {\"date\": \"2021-08-04\", \"available_median_rate\": 346.0, \"booked_median_rate\": 279.5}, {\"date\": \"2021-08-05\", \"available_median_rate\": 368, \"booked_median_rate\": 273}, {\"date\": \"2021-08-06\", \"available_median_rate\": 443.0, \"booked_median_rate\": 409.0}, {\"date\": \"2021-08-07\", \"available_median_rate\": 358.0, \"booked_median_rate\": 473.5}, {\"date\": \"2021-08-08\", \"available_median_rate\": 371.5, \"booked_median_rate\": 309.5}, {\"date\": \"2021-08-09\", \"available_median_rate\": 405.0, \"booked_median_rate\": 277.0}, {\"date\": \"2021-08-10\", \"available_median_rate\": 405.5, \"booked_median_rate\": 277.0}, {\"date\": \"2021-08-11\", \"available_median_rate\": 513.5, \"booked_median_rate\": 273.0}, {\"date\": \"2021-08-12\", \"available_median_rate\": 405.5, \"booked_median_rate\": 309.5}, {\"date\": \"2021-08-13\", \"available_median_rate\": 498.0, \"booked_median_rate\": 409.0}, {\"date\": \"2021-08-14\", \"available_median_rate\": 245, \"booked_median_rate\": 409}, {\"date\": \"2021-08-15\", \"available_median_rate\": 273, \"booked_median_rate\": 319}, {\"date\": \"2021-08-16\", \"available_median_rate\": 334, \"booked_median_rate\": 286}, {\"date\": \"2021-08-17\", \"available_median_rate\": 588, \"booked_median_rate\": 273}, {\"date\": \"2021-08-18\", \"available_median_rate\": 584, \"booked_median_rate\": 273}, {\"date\": \"2021-08-19\", \"available_median_rate\": 398.0, \"booked_median_rate\": 279.5}, {\"date\": \"2021-08-20\", \"available_median_rate\": 682, \"booked_median_rate\": 409}, {\"date\": \"2021-08-21\", \"available_median_rate\": 477, \"booked_median_rate\": 409}, {\"date\": \"2021-08-22\", \"available_median_rate\": 380.5, \"booked_median_rate\": 273.0}, {\"date\": \"2021-08-23\", \"available_median_rate\": 442.5, \"booked_median_rate\": 268.5}, {\"date\": \"2021-08-24\", \"available_median_rate\": 382.0, \"booked_median_rate\": 273.0}, {\"date\": \"2021-08-25\", \"available_median_rate\": 439.5, \"booked_median_rate\": 272.0}, {\"date\": \"2021-08-26\", \"available_median_rate\": 461.5, \"booked_median_rate\": 282.5}, {\"date\": \"2021-08-27\", \"available_median_rate\": 579.5, \"booked_median_rate\": 392.0}, {\"date\": \"2021-08-28\", \"available_median_rate\": 409.0, \"booked_median_rate\": 436.5}, {\"date\": \"2021-08-29\", \"available_median_rate\": 368, \"booked_median_rate\": 344}, {\"date\": \"2021-08-30\", \"available_median_rate\": 341, \"booked_median_rate\": 273}, {\"date\": \"2021-08-31\", \"available_median_rate\": 341.0, \"booked_median_rate\": 269.5}, {\"date\": \"2021-09-01\", \"available_median_rate\": 341.0, \"booked_median_rate\": 239.0}, {\"date\": \"2021-09-02\", \"available_median_rate\": 358.0, \"booked_median_rate\": 239.0}, {\"date\": \"2021-09-03\", \"available_median_rate\": 409.0, \"booked_median_rate\": 362.5}, {\"date\": \"2021-09-04\", \"available_median_rate\": 477, \"booked_median_rate\": 368}, {\"date\": \"2021-09-05\", \"available_median_rate\": 368, \"booked_median_rate\": 344}, {\"date\": \"2021-09-06\", \"available_median_rate\": 341, \"booked_median_rate\": 273}, {\"date\": \"2021-09-07\", \"available_median_rate\": 341.0, \"booked_median_rate\": 269.5}, {\"date\": \"2021-09-08\", \"available_median_rate\": 341.0, \"booked_median_rate\": 239.0}, {\"date\": \"2021-09-09\", \"available_median_rate\": 358.0, \"booked_median_rate\": 239.0}, {\"date\": \"2021-09-10\", \"available_median_rate\": 409.0, \"booked_median_rate\": 362.5}, {\"date\": \"2021-09-11\", \"available_median_rate\": 477, \"booked_median_rate\": 368}, {\"date\": \"2021-09-12\", \"available_median_rate\": 341.0, \"booked_median_rate\": 245.0}, {\"date\": \"2021-09-13\", \"available_median_rate\": 341.0, \"booked_median_rate\": 227.5}, {\"date\": \"2021-09-14\", \"available_median_rate\": 340.5, \"booked_median_rate\": 227.5}, {\"date\": \"2021-09-15\", \"available_median_rate\": 340.5, \"booked_median_rate\": 231.0}, {\"date\": \"2021-09-16\", \"available_median_rate\": 312, \"booked_median_rate\": 232}, {\"date\": \"2021-09-17\", \"available_median_rate\": 474.0, \"booked_median_rate\": 341.0}, {\"date\": \"2021-09-18\", \"available_median_rate\": 941, \"booked_median_rate\": 375}, {\"date\": \"2021-09-19\", \"available_median_rate\": 485.5, \"booked_median_rate\": 272.0}, {\"date\": \"2021-09-20\", \"available_median_rate\": 341.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-09-21\", \"available_median_rate\": 330, \"booked_median_rate\": 232}, {\"date\": \"2021-09-22\", \"available_median_rate\": 340, \"booked_median_rate\": 232}, {\"date\": \"2021-09-23\", \"available_median_rate\": 335.0, \"booked_median_rate\": 234.0}, {\"date\": \"2021-09-24\", \"available_median_rate\": 426.0, \"booked_median_rate\": 341.0}, {\"date\": \"2021-09-25\", \"available_median_rate\": 395.5, \"booked_median_rate\": 355.0}, {\"date\": \"2021-09-26\", \"available_median_rate\": 340, \"booked_median_rate\": 245}, {\"date\": \"2021-09-27\", \"available_median_rate\": 287.5, \"booked_median_rate\": 228.5}, {\"date\": \"2021-09-28\", \"available_median_rate\": 289.5, \"booked_median_rate\": 228.5}, {\"date\": \"2021-09-29\", \"available_median_rate\": 312, \"booked_median_rate\": 220}, {\"date\": \"2021-09-30\", \"available_median_rate\": 293, \"booked_median_rate\": 232}, {\"date\": \"2021-10-01\", \"available_median_rate\": 402, \"booked_median_rate\": 375}, {\"date\": \"2021-10-02\", \"available_median_rate\": 298.5, \"booked_median_rate\": 401.5}, {\"date\": \"2021-10-03\", \"available_median_rate\": 355, \"booked_median_rate\": 273}, {\"date\": \"2021-10-04\", \"available_median_rate\": 341, \"booked_median_rate\": 260}, {\"date\": \"2021-10-05\", \"available_median_rate\": 330, \"booked_median_rate\": 273}, {\"date\": \"2021-10-06\", \"available_median_rate\": 302.5, \"booked_median_rate\": 236.0}, {\"date\": \"2021-10-07\", \"available_median_rate\": 286, \"booked_median_rate\": 235}, {\"date\": \"2021-10-08\", \"available_median_rate\": 409, \"booked_median_rate\": 307}, {\"date\": \"2021-10-09\", \"available_median_rate\": 433.5, \"booked_median_rate\": 307.0}, {\"date\": \"2021-10-10\", \"available_median_rate\": 355, \"booked_median_rate\": 273}, {\"date\": \"2021-10-11\", \"available_median_rate\": 341, \"booked_median_rate\": 260}, {\"date\": \"2021-10-12\", \"available_median_rate\": 330, \"booked_median_rate\": 273}, {\"date\": \"2021-10-13\", \"available_median_rate\": 302.5, \"booked_median_rate\": 236.0}, {\"date\": \"2021-10-14\", \"available_median_rate\": 286, \"booked_median_rate\": 235}, {\"date\": \"2021-10-15\", \"available_median_rate\": 409, \"booked_median_rate\": 307}, {\"date\": \"2021-10-16\", \"available_median_rate\": 433.5, \"booked_median_rate\": 307.0}, {\"date\": \"2021-10-17\", \"available_median_rate\": 300, \"booked_median_rate\": 232}, {\"date\": \"2021-10-18\", \"available_median_rate\": 266.0, \"booked_median_rate\": 231.0}, {\"date\": \"2021-10-19\", \"available_median_rate\": 257.5, \"booked_median_rate\": 232.0}, {\"date\": \"2021-10-20\", \"available_median_rate\": 258.5, \"booked_median_rate\": 231.0}, {\"date\": \"2021-10-21\", \"available_median_rate\": 286.5, \"booked_median_rate\": 231.0}, {\"date\": \"2021-10-22\", \"available_median_rate\": 409.0, \"booked_median_rate\": 307.0}, {\"date\": \"2021-10-23\", \"available_median_rate\": 409.0, \"booked_median_rate\": 307.0}, {\"date\": \"2021-10-24\", \"available_median_rate\": 286.5, \"booked_median_rate\": 242.0}, {\"date\": \"2021-10-25\", \"available_median_rate\": 258, \"booked_median_rate\": 225}, {\"date\": \"2021-10-26\", \"available_median_rate\": 254.0, \"booked_median_rate\": 231.0}, {\"date\": \"2021-10-27\", \"available_median_rate\": 256, \"booked_median_rate\": 230}, {\"date\": \"2021-10-28\", \"available_median_rate\": 266.0, \"booked_median_rate\": 227.5}, {\"date\": \"2021-10-29\", \"available_median_rate\": 390.5, \"booked_median_rate\": 303.5}, {\"date\": \"2021-10-30\", \"available_median_rate\": 409, \"booked_median_rate\": 323}, {\"date\": \"2021-10-31\", \"available_median_rate\": 300, \"booked_median_rate\": 232}, {\"date\": \"2021-11-01\", \"available_median_rate\": 273, \"booked_median_rate\": 225}, {\"date\": \"2021-11-02\", \"available_median_rate\": 273, \"booked_median_rate\": 225}, {\"date\": \"2021-11-03\", \"available_median_rate\": 266.0, \"booked_median_rate\": 225.0}, {\"date\": \"2021-11-04\", \"available_median_rate\": 273, \"booked_median_rate\": 225}, {\"date\": \"2021-11-05\", \"available_median_rate\": 409, \"booked_median_rate\": 296}, {\"date\": \"2021-11-06\", \"available_median_rate\": 436, \"booked_median_rate\": 300}, {\"date\": \"2021-11-07\", \"available_median_rate\": 307, \"booked_median_rate\": 239}, {\"date\": \"2021-11-08\", \"available_median_rate\": 273, \"booked_median_rate\": 230}, {\"date\": \"2021-11-09\", \"available_median_rate\": 286.5, \"booked_median_rate\": 229.5}, {\"date\": \"2021-11-10\", \"available_median_rate\": 273, \"booked_median_rate\": 225}, {\"date\": \"2021-11-11\", \"available_median_rate\": 277, \"booked_median_rate\": 230}, {\"date\": \"2021-11-12\", \"available_median_rate\": 379, \"booked_median_rate\": 300}, {\"date\": \"2021-11-13\", \"available_median_rate\": 391.5, \"booked_median_rate\": 314.0}, {\"date\": \"2021-11-14\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-11-15\", \"available_median_rate\": 271, \"booked_median_rate\": 232}, {\"date\": \"2021-11-16\", \"available_median_rate\": 264.5, \"booked_median_rate\": 232.0}, {\"date\": \"2021-11-17\", \"available_median_rate\": 258, \"booked_median_rate\": 232}, {\"date\": \"2021-11-18\", \"available_median_rate\": 257.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-11-19\", \"available_median_rate\": 408.0, \"booked_median_rate\": 287.5}, {\"date\": \"2021-11-20\", \"available_median_rate\": 426.0, \"booked_median_rate\": 286.5}, {\"date\": \"2021-11-21\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-11-22\", \"available_median_rate\": 271, \"booked_median_rate\": 232}, {\"date\": \"2021-11-23\", \"available_median_rate\": 264.5, \"booked_median_rate\": 232.0}, {\"date\": \"2021-11-24\", \"available_median_rate\": 258, \"booked_median_rate\": 232}, {\"date\": \"2021-11-25\", \"available_median_rate\": 257.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-11-26\", \"available_median_rate\": 408.0, \"booked_median_rate\": 287.5}, {\"date\": \"2021-11-27\", \"available_median_rate\": 426.0, \"booked_median_rate\": 286.5}, {\"date\": \"2021-11-28\", \"available_median_rate\": 272.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-11-29\", \"available_median_rate\": 264.5, \"booked_median_rate\": 232.0}, {\"date\": \"2021-11-30\", \"available_median_rate\": 271, \"booked_median_rate\": 232}, {\"date\": \"2021-12-01\", \"available_median_rate\": 272.0, \"booked_median_rate\": 228.5}, {\"date\": \"2021-12-02\", \"available_median_rate\": 272.0, \"booked_median_rate\": 228.5}, {\"date\": \"2021-12-03\", \"available_median_rate\": 426.0, \"booked_median_rate\": 286.5}, {\"date\": \"2021-12-04\", \"available_median_rate\": 477, \"booked_median_rate\": 277}, {\"date\": \"2021-12-05\", \"available_median_rate\": 299.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-12-06\", \"available_median_rate\": 271.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-12-07\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-12-08\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-12-09\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-12-10\", \"available_median_rate\": 457.0, \"booked_median_rate\": 295.0}, {\"date\": \"2021-12-11\", \"available_median_rate\": 471.0, \"booked_median_rate\": 295.0}, {\"date\": \"2021-12-12\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-12-13\", \"available_median_rate\": 271, \"booked_median_rate\": 232}, {\"date\": \"2021-12-14\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2021-12-15\", \"available_median_rate\": 273.0, \"booked_median_rate\": 228.5}, {\"date\": \"2021-12-16\", \"available_median_rate\": 292.5, \"booked_median_rate\": 216.5}, {\"date\": \"2021-12-17\", \"available_median_rate\": 471, \"booked_median_rate\": 259}, {\"date\": \"2021-12-18\", \"available_median_rate\": 474.0, \"booked_median_rate\": 262.5}, {\"date\": \"2021-12-19\", \"available_median_rate\": 312, \"booked_median_rate\": 232}, {\"date\": \"2021-12-20\", \"available_median_rate\": 264.5, \"booked_median_rate\": 228.5}, {\"date\": \"2021-12-21\", \"available_median_rate\": 258, \"booked_median_rate\": 232}, {\"date\": \"2021-12-22\", \"available_median_rate\": 272.0, \"booked_median_rate\": 230.5}, {\"date\": \"2021-12-23\", \"available_median_rate\": 272.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-12-24\", \"available_median_rate\": 409, \"booked_median_rate\": 290}, {\"date\": \"2021-12-25\", \"available_median_rate\": 409, \"booked_median_rate\": 290}, {\"date\": \"2021-12-26\", \"available_median_rate\": 312, \"booked_median_rate\": 232}, {\"date\": \"2021-12-27\", \"available_median_rate\": 264.5, \"booked_median_rate\": 228.5}, {\"date\": \"2021-12-28\", \"available_median_rate\": 258, \"booked_median_rate\": 232}, {\"date\": \"2021-12-29\", \"available_median_rate\": 272.0, \"booked_median_rate\": 230.5}, {\"date\": \"2021-12-30\", \"available_median_rate\": 272.0, \"booked_median_rate\": 232.0}, {\"date\": \"2021-12-31\", \"available_median_rate\": 409, \"booked_median_rate\": 290}, {\"date\": \"2022-01-01\", \"available_median_rate\": 409, \"booked_median_rate\": 290}, {\"date\": \"2022-01-02\", \"available_median_rate\": 279.5, \"booked_median_rate\": 238.5}, {\"date\": \"2022-01-03\", \"available_median_rate\": 279.5, \"booked_median_rate\": 221.5}, {\"date\": \"2022-01-04\", \"available_median_rate\": 279.5, \"booked_median_rate\": 228.5}, {\"date\": \"2022-01-05\", \"available_median_rate\": 273.0, \"booked_median_rate\": 230.5}, {\"date\": \"2022-01-06\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2022-01-07\", \"available_median_rate\": 409, \"booked_median_rate\": 259}, {\"date\": \"2022-01-08\", \"available_median_rate\": 426.0, \"booked_median_rate\": 274.5}, {\"date\": \"2022-01-09\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-01-10\", \"available_median_rate\": 273.0, \"booked_median_rate\": 228.5}, {\"date\": \"2022-01-11\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2022-01-12\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2022-01-13\", \"available_median_rate\": 272.0, \"booked_median_rate\": 235.5}, {\"date\": \"2022-01-14\", \"available_median_rate\": 439.5, \"booked_median_rate\": 272.0}, {\"date\": \"2022-01-15\", \"available_median_rate\": 436, \"booked_median_rate\": 273}, {\"date\": \"2022-01-16\", \"available_median_rate\": 290.0, \"booked_median_rate\": 251.5}, {\"date\": \"2022-01-17\", \"available_median_rate\": 273.0, \"booked_median_rate\": 232.0}, {\"date\": \"2022-01-18\", \"available_median_rate\": 272.0, \"booked_median_rate\": 242.5}, {\"date\": \"2022-01-19\", \"available_median_rate\": 273, \"booked_median_rate\": 232}, {\"date\": \"2022-01-20\", \"available_median_rate\": 341.0, \"booked_median_rate\": 274.5}, {\"date\": \"2022-01-21\", \"available_median_rate\": 477.0, \"booked_median_rate\": 320.5}, {\"date\": \"2022-01-22\", \"available_median_rate\": 478.0, \"booked_median_rate\": 320.5}, {\"date\": \"2022-01-23\", \"available_median_rate\": 372, \"booked_median_rate\": 290}, {\"date\": \"2022-01-24\", \"available_median_rate\": 363.0, \"booked_median_rate\": 248.0}, {\"date\": \"2022-01-25\", \"available_median_rate\": 341, \"booked_median_rate\": 232}, {\"date\": \"2022-01-26\", \"available_median_rate\": 341.0, \"booked_median_rate\": 232.0}, {\"date\": \"2022-01-27\", \"available_median_rate\": 359, \"booked_median_rate\": 240}, {\"date\": \"2022-01-28\", \"available_median_rate\": 479, \"booked_median_rate\": 307}, {\"date\": \"2022-01-29\", \"available_median_rate\": 442.5, \"booked_median_rate\": 295.0}, {\"date\": \"2022-01-30\", \"available_median_rate\": 372, \"booked_median_rate\": 290}, {\"date\": \"2022-01-31\", \"available_median_rate\": 363.0, \"booked_median_rate\": 248.0}, {\"date\": \"2022-02-01\", \"available_median_rate\": 341, \"booked_median_rate\": 232}, {\"date\": \"2022-02-02\", \"available_median_rate\": 341.0, \"booked_median_rate\": 232.0}, {\"date\": \"2022-02-03\", \"available_median_rate\": 359, \"booked_median_rate\": 240}, {\"date\": \"2022-02-04\", \"available_median_rate\": 479, \"booked_median_rate\": 307}, {\"date\": \"2022-02-05\", \"available_median_rate\": 442.5, \"booked_median_rate\": 295.0}, {\"date\": \"2022-02-06\", \"available_median_rate\": 320.5, \"booked_median_rate\": 238.0}, {\"date\": \"2022-02-07\", \"available_median_rate\": 334, \"booked_median_rate\": 205}, {\"date\": \"2022-02-08\", \"available_median_rate\": 268.5, \"booked_median_rate\": 205.0}, {\"date\": \"2022-02-09\", \"available_median_rate\": 266.5, \"booked_median_rate\": 205.0}, {\"date\": \"2022-02-10\", \"available_median_rate\": 268.5, \"booked_median_rate\": 205.0}, {\"date\": \"2022-02-11\", \"available_median_rate\": 372, \"booked_median_rate\": 258}, {\"date\": \"2022-02-12\", \"available_median_rate\": 377.0, \"booked_median_rate\": 281.5}, {\"date\": \"2022-02-13\", \"available_median_rate\": 286.5, \"booked_median_rate\": 220.0}, {\"date\": \"2022-02-14\", \"available_median_rate\": 268.5, \"booked_median_rate\": 211.5}, {\"date\": \"2022-02-15\", \"available_median_rate\": 272.0, \"booked_median_rate\": 211.5}, {\"date\": \"2022-02-16\", \"available_median_rate\": 268.5, \"booked_median_rate\": 211.5}, {\"date\": \"2022-02-17\", \"available_median_rate\": 272.0, \"booked_median_rate\": 211.5}, {\"date\": \"2022-02-18\", \"available_median_rate\": 392.0, \"booked_median_rate\": 265.0}, {\"date\": \"2022-02-19\", \"available_median_rate\": 392.0, \"booked_median_rate\": 271.0}, {\"date\": \"2022-02-20\", \"available_median_rate\": 300, \"booked_median_rate\": 215}, {\"date\": \"2022-02-21\", \"available_median_rate\": 261.0, \"booked_median_rate\": 235.5}, {\"date\": \"2022-02-22\", \"available_median_rate\": 261.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-02-23\", \"available_median_rate\": 266, \"booked_median_rate\": 239}, {\"date\": \"2022-02-24\", \"available_median_rate\": 266, \"booked_median_rate\": 239}, {\"date\": \"2022-02-25\", \"available_median_rate\": 409.0, \"booked_median_rate\": 265.0}, {\"date\": \"2022-02-26\", \"available_median_rate\": 409, \"booked_median_rate\": 273}, {\"date\": \"2022-02-27\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-02-28\", \"available_median_rate\": 266, \"booked_median_rate\": 239}, {\"date\": \"2022-03-01\", \"available_median_rate\": 266, \"booked_median_rate\": 239}, {\"date\": \"2022-03-02\", \"available_median_rate\": 266, \"booked_median_rate\": 239}, {\"date\": \"2022-03-03\", \"available_median_rate\": 261.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-04\", \"available_median_rate\": 382, \"booked_median_rate\": 273}, {\"date\": \"2022-03-05\", \"available_median_rate\": 382, \"booked_median_rate\": 290}, {\"date\": \"2022-03-06\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-03-07\", \"available_median_rate\": 269.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-08\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-09\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-10\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-11\", \"available_median_rate\": 362.0, \"booked_median_rate\": 281.5}, {\"date\": \"2022-03-12\", \"available_median_rate\": 382, \"booked_median_rate\": 290}, {\"date\": \"2022-03-13\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-03-14\", \"available_median_rate\": 269.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-15\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-16\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-17\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-18\", \"available_median_rate\": 362.0, \"booked_median_rate\": 281.5}, {\"date\": \"2022-03-19\", \"available_median_rate\": 382, \"booked_median_rate\": 290}, {\"date\": \"2022-03-20\", \"available_median_rate\": 264.5, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-21\", \"available_median_rate\": 254.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-22\", \"available_median_rate\": 254.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-23\", \"available_median_rate\": 254.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-24\", \"available_median_rate\": 254.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-03-25\", \"available_median_rate\": 341, \"booked_median_rate\": 300}, {\"date\": \"2022-03-26\", \"available_median_rate\": 341.5, \"booked_median_rate\": 303.5}, {\"date\": \"2022-03-27\", \"available_median_rate\": 264.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-28\", \"available_median_rate\": 254.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-29\", \"available_median_rate\": 254.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-30\", \"available_median_rate\": 254.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-03-31\", \"available_median_rate\": 254.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-01\", \"available_median_rate\": 409, \"booked_median_rate\": 282}, {\"date\": \"2022-04-02\", \"available_median_rate\": 375.5, \"booked_median_rate\": 286.0}, {\"date\": \"2022-04-03\", \"available_median_rate\": 256, \"booked_median_rate\": 245}, {\"date\": \"2022-04-04\", \"available_median_rate\": 264.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-05\", \"available_median_rate\": 273, \"booked_median_rate\": 239}, {\"date\": \"2022-04-06\", \"available_median_rate\": 273, \"booked_median_rate\": 239}, {\"date\": \"2022-04-07\", \"available_median_rate\": 264.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-08\", \"available_median_rate\": 347.5, \"booked_median_rate\": 295.0}, {\"date\": \"2022-04-09\", \"available_median_rate\": 355, \"booked_median_rate\": 300}, {\"date\": \"2022-04-10\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-04-11\", \"available_median_rate\": 264.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-12\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-04-13\", \"available_median_rate\": 273.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-14\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-04-15\", \"available_median_rate\": 373.0, \"booked_median_rate\": 286.0}, {\"date\": \"2022-04-16\", \"available_median_rate\": 406, \"booked_median_rate\": 296}, {\"date\": \"2022-04-17\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-04-18\", \"available_median_rate\": 264.5, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-19\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-04-20\", \"available_median_rate\": 273.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-04-21\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-04-22\", \"available_median_rate\": 373.0, \"booked_median_rate\": 286.0}, {\"date\": \"2022-04-23\", \"available_median_rate\": 406, \"booked_median_rate\": 296}, {\"date\": \"2022-04-24\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-04-25\", \"available_median_rate\": 273, \"booked_median_rate\": 239}, {\"date\": \"2022-04-26\", \"available_median_rate\": 273, \"booked_median_rate\": 241}, {\"date\": \"2022-04-27\", \"available_median_rate\": 273, \"booked_median_rate\": 239}, {\"date\": \"2022-04-28\", \"available_median_rate\": 273, \"booked_median_rate\": 241}, {\"date\": \"2022-04-29\", \"available_median_rate\": 373.0, \"booked_median_rate\": 286.0}, {\"date\": \"2022-04-30\", \"available_median_rate\": 408, \"booked_median_rate\": 296}, {\"date\": \"2022-05-01\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-05-02\", \"available_median_rate\": 273.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-05-03\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-05-04\", \"available_median_rate\": 273.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-05-05\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-05-06\", \"available_median_rate\": 342, \"booked_median_rate\": 300}, {\"date\": \"2022-05-07\", \"available_median_rate\": 407.0, \"booked_median_rate\": 303.5}, {\"date\": \"2022-05-08\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-09\", \"available_median_rate\": 273.0, \"booked_median_rate\": 242.0}, {\"date\": \"2022-05-10\", \"available_median_rate\": 273.0, \"booked_median_rate\": 243.0}, {\"date\": \"2022-05-11\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-12\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-13\", \"available_median_rate\": 393.0, \"booked_median_rate\": 286.0}, {\"date\": \"2022-05-14\", \"available_median_rate\": 427.5, \"booked_median_rate\": 293.0}, {\"date\": \"2022-05-15\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-16\", \"available_median_rate\": 273.0, \"booked_median_rate\": 244.0}, {\"date\": \"2022-05-17\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-18\", \"available_median_rate\": 273.0, \"booked_median_rate\": 244.5}, {\"date\": \"2022-05-19\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-20\", \"available_median_rate\": 408.5, \"booked_median_rate\": 298.0}, {\"date\": \"2022-05-21\", \"available_median_rate\": 448.5, \"booked_median_rate\": 307.0}, {\"date\": \"2022-05-22\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-23\", \"available_median_rate\": 273.0, \"booked_median_rate\": 244.0}, {\"date\": \"2022-05-24\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-25\", \"available_median_rate\": 273.0, \"booked_median_rate\": 244.5}, {\"date\": \"2022-05-26\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-27\", \"available_median_rate\": 408.5, \"booked_median_rate\": 298.0}, {\"date\": \"2022-05-28\", \"available_median_rate\": 448.5, \"booked_median_rate\": 307.0}, {\"date\": \"2022-05-29\", \"available_median_rate\": 275, \"booked_median_rate\": 259}, {\"date\": \"2022-05-30\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-05-31\", \"available_median_rate\": 273.0, \"booked_median_rate\": 250.0}, {\"date\": \"2022-06-01\", \"available_median_rate\": 273.0, \"booked_median_rate\": 249.5}, {\"date\": \"2022-06-02\", \"available_median_rate\": 273, \"booked_median_rate\": 245}, {\"date\": \"2022-06-03\", \"available_median_rate\": 433.0, \"booked_median_rate\": 303.5}, {\"date\": \"2022-06-04\", \"available_median_rate\": 477.0, \"booked_median_rate\": 307.0}, {\"date\": \"2022-06-05\", \"available_median_rate\": 340, \"booked_median_rate\": 245}, {\"date\": \"2022-06-06\", \"available_median_rate\": 273.0, \"booked_median_rate\": 245.0}, {\"date\": \"2022-06-07\", \"available_median_rate\": 273.0, \"booked_median_rate\": 252.0}, {\"date\": \"2022-06-08\", \"available_median_rate\": 273.0, \"booked_median_rate\": 252.0}, {\"date\": \"2022-06-09\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-06-10\", \"available_median_rate\": 433.0, \"booked_median_rate\": 298.0}, {\"date\": \"2022-06-11\", \"available_median_rate\": 448.5, \"booked_median_rate\": 307.0}, {\"date\": \"2022-06-12\", \"available_median_rate\": 293, \"booked_median_rate\": 271}, {\"date\": \"2022-06-13\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-06-14\", \"available_median_rate\": 264.5, \"booked_median_rate\": 268.5}, {\"date\": \"2022-06-15\", \"available_median_rate\": 264.5, \"booked_median_rate\": 262.5}, {\"date\": \"2022-06-16\", \"available_median_rate\": 264.5, \"booked_median_rate\": 268.5}, {\"date\": \"2022-06-17\", \"available_median_rate\": 420.5, \"booked_median_rate\": 317.0}, {\"date\": \"2022-06-18\", \"available_median_rate\": 454, \"booked_median_rate\": 327}, {\"date\": \"2022-06-19\", \"available_median_rate\": 273.0, \"booked_median_rate\": 268.5}, {\"date\": \"2022-06-20\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-06-21\", \"available_median_rate\": 273, \"booked_median_rate\": 266}, {\"date\": \"2022-06-22\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-06-23\", \"available_median_rate\": 273, \"booked_median_rate\": 266}, {\"date\": \"2022-06-24\", \"available_median_rate\": 443, \"booked_median_rate\": 334}, {\"date\": \"2022-06-25\", \"available_median_rate\": 462.5, \"booked_median_rate\": 337.5}, {\"date\": \"2022-06-26\", \"available_median_rate\": 316.0, \"booked_median_rate\": 280.5}, {\"date\": \"2022-06-27\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-06-28\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-06-29\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-06-30\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-07-01\", \"available_median_rate\": 433.0, \"booked_median_rate\": 330.5}, {\"date\": \"2022-07-02\", \"available_median_rate\": 443, \"booked_median_rate\": 334}, {\"date\": \"2022-07-03\", \"available_median_rate\": 307, \"booked_median_rate\": 259}, {\"date\": \"2022-07-04\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-07-05\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-07-06\", \"available_median_rate\": 273, \"booked_median_rate\": 258}, {\"date\": \"2022-07-07\", \"available_median_rate\": 320.5, \"booked_median_rate\": 251.5}, {\"date\": \"2022-07-08\", \"available_median_rate\": 443, \"booked_median_rate\": 319}, {\"date\": \"2022-07-09\", \"available_median_rate\": 457.0, \"booked_median_rate\": 326.5}, {\"date\": \"2022-07-10\", \"available_median_rate\": 307, \"booked_median_rate\": 259}, {\"date\": \"2022-07-11\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-07-12\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-07-13\", \"available_median_rate\": 273, \"booked_median_rate\": 259}, {\"date\": \"2022-07-14\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-07-15\", \"available_median_rate\": 409, \"booked_median_rate\": 327}, {\"date\": \"2022-07-16\", \"available_median_rate\": 457.0, \"booked_median_rate\": 337.5}, {\"date\": \"2022-07-17\", \"available_median_rate\": 290.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-07-18\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-07-19\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-07-20\", \"available_median_rate\": 273.0, \"booked_median_rate\": 262.5}, {\"date\": \"2022-07-21\", \"available_median_rate\": 273, \"booked_median_rate\": 266}]}", + "headers":{ + "apigw-requestid":"C8d3jheeCYcEPkg=", + "content-type":"text/plain; charset=utf-8", + "date":"Fri, 23 Jul 2021 22:32:04 GMT", + "server":"RapidAPI-1.2.8", + "x-rapidapi-region":"AWS - sa-east-1", + "x-rapidapi-version":"1.2.8", + "content-length":"30438", + "connection":"Close" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airbnb_market_maker/api.py b/toolbench/toolenv/tools/Travel/airbnb_market_maker/api.py new file mode 100644 index 0000000000000000000000000000000000000000..11f1c0d899f98ca9ced343996800977de8f3aa5a --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_market_maker/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airbnbmarketmaker(bedrooms: int, country_code: str, coordinate: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "It fetches up to 100 similar listings (similar compared to the listing detail given by you) and gets their next 365 days available / booked daily rates." + + """ + url = f"https://airbnb-market-maker.p.rapidapi.com/getbookingchanges" + querystring = {'bedrooms': bedrooms, 'country_code': country_code, 'coordinate': coordinate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-market-maker.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb_search.json b/toolbench/toolenv/tools/Travel/airbnb_search.json new file mode 100644 index 0000000000000000000000000000000000000000..d5666079e874d10c949b1098990fb77684f2779e --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_search.json @@ -0,0 +1,2873 @@ +{ + "tool_name":"Airbnb Search", + "tool_description":"Real-time data, unofficial airbnb API, get airbnb listings data, place to stay at an amazing price.\n\nAirbnb com is a well-known and widely used online marketplace for short-term accommodation rentals around the world.", + "title":"Airbnb Search", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1919, + "avgSuccessRate":100, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ntd119/api/airbnb-search/", + "host":"airbnb-search.p.rapidapi.com", + "api_list":[ + { + "name":"properties/get-price", + "url":"https://airbnb-search.p.rapidapi.com/property/get-price", + "description":"Get Price", + "method":"GET", + "required_parameters":[ + { + "name":"checkout", + "type":"STRING", + "description":"Format: YYYY-MM-DD\nEx: 2023-10-02\n\n**To display the price, you should input the checkin and checkout dates**", + "default":"" + }, + { + "name":"checkin", + "type":"STRING", + "description":"Format: YYYY-MM-DD\nEx: 2023-10-01\n\n**To display the price, you should input the checkin and checkout dates**", + "default":"" + }, + { + "name":"id", + "type":"STRING", + "description":"id from search API: data -> homes[index] -> listing -> id", + "default":"792450878965585726" + } + ], + "optional_parameters":[ + { + "name":"children", + "type":"NUMBER", + "description":"Default: 0", + "default":"" + }, + { + "name":"infants", + "type":"NUMBER", + "description":"Default: 0", + "default":"" + }, + { + "name":"pets", + "type":"NUMBER", + "description":"Default: 0", + "default":"" + }, + { + "name":"adults", + "type":"NUMBER", + "description":"Default: 1", + "default":"" + }, + { + "name":"locale", + "type":"STRING", + "description":"id item from the Get Languages API\n\nDefault: `en-US`", + "default":"" + }, + { + "name":"currency", + "type":"STRING", + "description":"id item from the Get Currency API\n\nDefault: `USD`", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/property/get-price\"\nquerystring = {\"checkout\": checkout, \"checkin\": checkin, \"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "flows":{ + "type":"array" + }, + "metadata":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "bookingPrefetchData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "barPrice":{ + "type":"null" + }, + "canInstantBook":{ + "type":"boolean" + }, + "cancellationPolicies":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "book_it_module_tooltip":{ + "type":"string" + }, + "cancellation_policy_id":{ + "type":"integer" + }, + "cancellation_policy_price_type":{ + "type":"null" + }, + "link":{ + "type":"string" + }, + "link_text":{ + "type":"string" + }, + "localized_cancellation_policy_name":{ + "type":"string" + }, + "milestones":{ + "type":"array" + }, + "subtitles":{ + "type":"array" + }, + "title":{ + "type":"string" + } + } + } + }, + "isHotelRatePlanEnabled":{ + "type":"boolean" + }, + "p3CancellationSection":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "cancellationPolicyPriceType":{ + "type":"null" + } + } + }, + "p3DepositData":{ + "type":"null" + }, + "p3MessageData":{ + "type":"null" + }, + "p3_display_rate":{ + "type":"null" + }, + "price":{ + "type":"null" + }, + "productItemDetail":{ + "type":"null" + }, + "productRateSections":{ + "type":"null" + }, + "ratePlanLoggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"null" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"null" + } + } + }, + "tpointContent":{ + "type":"null" + } + } + }, + "clientLoggingContext":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "pdpType":{ + "type":"string" + }, + "productId":{ + "type":"string" + }, + "staysData":{ + "type":"null" + } + } + }, + "errorData":{ + "type":"null" + }, + "initialTranslationState":{ + "type":"null" + }, + "loggingContext":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "eventDataLogging":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "accuracyRating":{ + "type":"number" + }, + "amenities":{ + "type":"array", + "items":{ + "type":"integer" + } + }, + "bedType":{ + "type":"null" + }, + "checkinRating":{ + "type":"number" + }, + "cleanlinessRating":{ + "type":"number" + }, + "communicationRating":{ + "type":"number" + }, + "descriptionLanguage":{ + "type":"string" + }, + "guestSatisfactionOverall":{ + "type":"number" + }, + "homeTier":{ + "type":"integer" + }, + "isSuperhost":{ + "type":"boolean" + }, + "listingId":{ + "type":"string" + }, + "listingLat":{ + "type":"number" + }, + "listingLng":{ + "type":"number" + }, + "locationRating":{ + "type":"number" + }, + "page":{ + "type":"string" + }, + "pdpPageType":{ + "type":"integer" + }, + "personCapacity":{ + "type":"integer" + }, + "pictureCount":{ + "type":"integer" + }, + "roomType":{ + "type":"string" + }, + "utcOffset":{ + "type":"integer" + }, + "valueRating":{ + "type":"number" + }, + "visibleReviewCount":{ + "type":"string" + } + } + } + } + }, + "misaId":{ + "type":"null" + }, + "pageTitle":{ + "type":"null" + }, + "pdpType":{ + "type":"string" + }, + "pdpUrlType":{ + "type":"string" + }, + "seoFeatures":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "androidAlternateUrl":{ + "type":"string" + }, + "androidDeeplink":{ + "type":"string" + }, + "breadcrumbDetails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "linkRoute":{ + "type":"string" + }, + "linkText":{ + "type":"string" + }, + "searchText":{ + "type":"string" + } + } + } + }, + "canonicalUrl":{ + "type":"string" + }, + "indexInSearchEngines":{ + "type":"boolean" + }, + "iphoneDeeplink":{ + "type":"string" + }, + "metaDescription":{ + "type":"string" + }, + "nearbyCities":{ + "type":"array" + }, + "neighborhoodBreadcrumbDetails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "linkRoute":{ + "type":"string" + }, + "linkText":{ + "type":"string" + }, + "searchText":{ + "type":"string" + } + } + } + }, + "ogTags":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "ogDescription":{ + "type":"string" + }, + "ogImage":{ + "type":"string" + }, + "ogImageHeight":{ + "type":"null" + }, + "ogImageWidth":{ + "type":"null" + }, + "ogTitle":{ + "type":"string" + }, + "ogType":{ + "type":"string" + }, + "ogUrl":{ + "type":"string" + }, + "ogVideoHeight":{ + "type":"null" + }, + "ogVideoUrl":{ + "type":"null" + }, + "ogVideoWidth":{ + "type":"null" + } + } + }, + "otherPropertyTypes":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "id":{ + "type":"string" + }, + "option":{ + "type":"string" + }, + "url":{ + "type":"string" + } + } + } + }, + "propertySearchUrl":{ + "type":"string" + }, + "relImageSrc":{ + "type":"string" + }, + "title":{ + "type":"string" + }, + "twitterTags":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "twitterCard":{ + "type":"string" + }, + "twitterDescription":{ + "type":"null" + }, + "twitterImage":{ + "type":"string" + }, + "twitterTitle":{ + "type":"null" + }, + "twitterUrl":{ + "type":"string" + } + } + } + } + }, + "sharingConfig":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "imageUrl":{ + "type":"string" + }, + "location":{ + "type":"string" + }, + "pdpLink":{ + "type":"string" + }, + "personCapacity":{ + "type":"integer" + }, + "propertyType":{ + "type":"string" + }, + "reviewCount":{ + "type":"integer" + }, + "starRating":{ + "type":"number" + }, + "title":{ + "type":"string" + } + } + } + } + }, + "screens":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "screensV2":{ + "type":"array" + }, + "sections":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "sectionsV2":{ + "type":"array" + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"properties/search-by-geo", + "url":"https://airbnb-search.p.rapidapi.com/property/search-geo", + "description":"Search Property By GEO", + "method":"GET", + "required_parameters":[ + { + "name":"swLat", + "type":"NUMBER", + "description":"", + "default":"10.042208853896334" + }, + { + "name":"neLng", + "type":"NUMBER", + "description":"", + "default":"107.84683028952747" + }, + { + "name":"swLng", + "type":"NUMBER", + "description":"", + "default":"107.16653625266224" + }, + { + "name":"neLat", + "type":"NUMBER", + "description":"", + "default":"10.662922606487399" + } + ], + "optional_parameters":[ + { + "name":"self_check_in", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"host_language", + "type":"STRING", + "description":"host_language comma-separated or empty for all types:\nid of **Get Host Language Filters** endpoint\nOR\nResponse from this API: data->filters->hostLanguage-> id\n\nEx: 2,4,1", + "default":"" + }, + { + "name":"top_tier_stays", + "type":"STRING", + "description":"top_tier_stays comma-separated or empty for all types:\nid of **Get Top Tier Stays Filter** endpoint\nOR\nResponse from this API: data->filters->topTierStays-> id\n\nEx: 1,2", + "default":"" + }, + { + "name":"type_of_place", + "type":"STRING", + "description":"type_of_place comma-separated or empty for all types:\nid of **Get Type of Place Filters** endpoint\nOR\nResponse from this API: data->filters->typeOfPlace-> id\n\nEx: Entire home/apt,Private room", + "default":"" + }, + { + "name":"has_superhost", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"has_instant_book", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"property_type", + "type":"STRING", + "description":"\nProperty type comma-separated or empty for all types:\nid of **Get Property Type Filters** endpoint\nOR\nResponse from this API: data->filters->propertyType-> id\n\nEx: 2,4", + "default":"" + }, + { + "name":"amenities", + "type":"STRING", + "description":"amenities comma-separated or empty for all types:\nid of **Get Amenities Filters** endpoint\nOR\nResponse from this API: data->filters->amenities-> id\n\nEx: 4,5", + "default":"" + }, + { + "name":"min_bed", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"min_bathroom", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"min_bedroom", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"min_price", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"checkout", + "type":"STRING", + "description":"Format: YYYY-MM-DD", + "default":"" + }, + { + "name":"category", + "type":"STRING", + "description":"id of **Get Category** endpoint\nOR\nResponse from this API: data->filters->categories-> id\nEx: Tag:677\nDefault category is all", + "default":"" + }, + { + "name":"pets", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"locale", + "type":"STRING", + "description":"id item from the **Get Languages** endpoint\nDefault: en-US", + "default":"" + }, + { + "name":"page", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"infants", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"checkin", + "type":"STRING", + "description":"Format: YYYY-MM-DD", + "default":"" + }, + { + "name":"adults", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"max_price", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"children", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"currency", + "type":"STRING", + "description":"id item from the **Get Currency** endpoint\nDefault: USD", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/property/search-geo\"\nquerystring = {\"swLat\": swlat, \"neLng\": nelng, \"swLng\": swlng, \"neLat\": nelat}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "currentPage":{ + "type":"integer" + }, + "data":{ + "type":"object", + "properties":{ + "filters":{ + "type":"object", + "properties":{ + "accessibilities":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "amenities":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "categories":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "image":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "hostLanguage":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "propertyType":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "topTierStays":{ + "type":"array" + }, + "typeOfPlace":{ + "type":"array" + } + } + }, + "homes":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "listing":{ + "type":"object" + }, + "listingParamOverrides":{ + "type":"object" + }, + "pricingQuote":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "applicableDiscounts":{ + "type":"null" + }, + "barDisplayPriceWithoutDiscount":{ + "type":"null" + }, + "canInstantBook":{ + "type":"boolean" + }, + "displayRateDisplayStrategy":{ + "type":"null" + }, + "monthlyPriceFactor":{ + "type":"null" + }, + "price":{ + "type":"null" + }, + "priceDropDisclaimer":{ + "type":"null" + }, + "priceString":{ + "type":"null" + }, + "rate":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "amount":{ + "type":"integer" + }, + "amountFormatted":{ + "type":"null" + }, + "currency":{ + "type":"null" + }, + "isMicrosAccuracy":{ + "type":"boolean" + } + } + }, + "rateType":{ + "type":"null" + }, + "rateWithServiceFee":{ + "type":"null" + }, + "rateWithoutDiscount":{ + "type":"null" + }, + "secondaryPriceString":{ + "type":"null" + }, + "shouldShowFromLabel":{ + "type":"boolean" + }, + "structuredStayDisplayPrice":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "explanationData":{ + "type":"null" + }, + "explanationDataDisplayPosition":{ + "type":"string" + }, + "explanationDataDisplayPriceTriggerType":{ + "type":"null" + }, + "layout":{ + "type":"string" + }, + "primaryLine":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "accessibilityLabel":{ + "type":"string" + }, + "concatQualifierLeft":{ + "type":"boolean" + }, + "displayComponentType":{ + "type":"string" + }, + "price":{ + "type":"string" + }, + "qualifier":{ + "type":"string" + }, + "shortQualifier":{ + "type":"string" + }, + "trailingContent":{ + "type":"null" + } + } + }, + "secondaryLine":{ + "type":"null" + } + } + }, + "totalPriceDisclaimer":{ + "type":"null" + }, + "totalPriceWithoutDiscount":{ + "type":"null" + }, + "weeklyPriceFactor":{ + "type":"null" + } + } + } + } + } + } + } + }, + "message":{ + "type":"string" + }, + "resultsPerPage":{ + "type":"integer" + }, + "status":{ + "type":"boolean" + }, + "totalResultCount":{ + "type":"string" + } + } + } + }, + { + "name":"properties/rating", + "url":"https://airbnb-search.p.rapidapi.com/property/rating", + "description":"Property rating", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"`id` from search API: data -> homes[index] -> listing -> id", + "default":"50873910" + } + ], + "optional_parameters":[ + { + "name":"currency", + "type":"STRING", + "description":"`id` item from the **Get Currency** API\n\nDefault: `USD`", + "default":"" + }, + { + "name":"locale", + "type":"STRING", + "description":"`id` item from the **Get Languages** API\n\nDefault: `en-US`", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/property/rating\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "disclaimer":{ + "type":"null" + }, + "heading":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "accessibilityLabel":{ + "type":"string" + }, + "icon":{ + "type":"string" + }, + "subtitle":{ + "type":"null" + }, + "title":{ + "type":"string" + } + } + }, + "overallCount":{ + "type":"integer" + }, + "overallRating":{ + "type":"number" + }, + "ratings":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "accessibilityLabel":{ + "type":"string" + }, + "label":{ + "type":"string" + }, + "localizedRating":{ + "type":"string" + }, + "percentage":{ + "type":"number" + } + } + } + }, + "reviewImpressionLoggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"string" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"string" + } + } + }, + "reviewerProfilePhotoLoggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"string" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"string" + } + } + }, + "seeAllReviewsButton":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "accessibilityLabel":{ + "type":"string" + }, + "loggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"string" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"string" + } + } + }, + "title":{ + "type":"string" + } + } + }, + "seeMoreReviewsLoggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"string" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"string" + } + } + }, + "subtitle":{ + "type":"null" + }, + "title":{ + "type":"null" + }, + "titleAccessibilityLabel":{ + "type":"null" + }, + "translateReviewsLoggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"string" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"string" + } + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"properties/reviews", + "url":"https://airbnb-search.p.rapidapi.com/property/reviews", + "description":"Property reviews", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"`id` from search API: data -> homes[index] -> listing -> id", + "default":"50873910" + } + ], + "optional_parameters":[ + { + "name":"page", + "type":"NUMBER", + "description":"Default: 1", + "default":"" + }, + { + "name":"locale", + "type":"STRING", + "description":"`id` item from the **Get Languages** API\n\nDefault: `en-US`", + "default":"" + }, + { + "name":"currency", + "type":"STRING", + "description":"`id` item from the **Get Currency** API\n\nDefault: `USD`", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/property/reviews\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "currentPage":{ + "type":"integer" + }, + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "channel":{ + "type":"null" + }, + "collectionTag":{ + "type":"null" + }, + "comments":{ + "type":"string" + }, + "createdAt":{ + "type":"string" + }, + "highlightReviewMentioned":{ + "type":"null" + }, + "highlightedReviewSentence":{ + "type":"null" + }, + "id":{ + "type":"string" + }, + "isHostHighlightedReview":{ + "type":"null" + }, + "language":{ + "type":"string" + }, + "localizedDate":{ + "type":"string" + }, + "localizedRespondedDate":{ + "type":"null" + }, + "localizedReview":{ + "type":"null" + }, + "localizedReviewerLocation":{ + "type":"null" + }, + "rating":{ + "type":"integer" + }, + "recommendedNumberOfLines":{ + "type":"null" + }, + "response":{ + "type":"null" + }, + "reviewHighlight":{ + "type":"null" + }, + "reviewMediaItems":{ + "type":"null" + }, + "reviewee":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "deleted":{ + "type":"boolean" + }, + "firstName":{ + "type":"string" + }, + "hostName":{ + "type":"string" + }, + "id":{ + "type":"string" + }, + "isSuperhost":{ + "type":"boolean" + }, + "pictureUrl":{ + "type":"string" + }, + "profilePath":{ + "type":"string" + }, + "userProfilePicture":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "baseUrl":{ + "type":"string" + }, + "onPressAction":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "url":{ + "type":"string" + } + } + } + } + } + } + }, + "reviewer":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "deleted":{ + "type":"boolean" + }, + "firstName":{ + "type":"string" + }, + "hostName":{ + "type":"string" + }, + "id":{ + "type":"string" + }, + "isSuperhost":{ + "type":"boolean" + }, + "pictureUrl":{ + "type":"string" + }, + "profilePath":{ + "type":"string" + }, + "userProfilePicture":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "baseUrl":{ + "type":"string" + }, + "onPressAction":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "url":{ + "type":"string" + } + } + } + } + } + } + }, + "roomTypeListingTitle":{ + "type":"null" + }, + "showMoreButton":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "loggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"null" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"null" + } + } + }, + "title":{ + "type":"string" + } + } + }, + "subtitleItems":{ + "type":"null" + } + } + } + }, + "message":{ + "type":"string" + }, + "resultsPerPage":{ + "type":"integer" + }, + "status":{ + "type":"boolean" + }, + "totalPages":{ + "type":"integer" + }, + "totalResultCount":{ + "type":"integer" + } + } + } + }, + { + "name":"properties/detail", + "url":"https://airbnb-search.p.rapidapi.com/property/detail", + "description":"Property details", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"STRING", + "description":"id from search API: data -> homes[index] -> listing -> id", + "default":"792450878965585726" + } + ], + "optional_parameters":[ + { + "name":"locale", + "type":"STRING", + "description":"id item from the Get Languages API\n\nDefault: `en-US`", + "default":"" + }, + { + "name":"currency", + "type":"STRING", + "description":"id item from the Get Currency API\n\nDefault: `USD`", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/property/detail\"\nquerystring = {\"id\": id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "flows":{ + "type":"array" + }, + "metadata":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "bookingPrefetchData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "barPrice":{ + "type":"null" + }, + "canInstantBook":{ + "type":"boolean" + }, + "cancellationPolicies":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "book_it_module_tooltip":{ + "type":"string" + }, + "cancellation_policy_id":{ + "type":"integer" + }, + "cancellation_policy_price_type":{ + "type":"null" + }, + "link":{ + "type":"string" + }, + "link_text":{ + "type":"string" + }, + "localized_cancellation_policy_name":{ + "type":"string" + }, + "milestones":{ + "type":"array" + }, + "subtitles":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "title":{ + "type":"string" + } + } + } + }, + "isHotelRatePlanEnabled":{ + "type":"boolean" + }, + "p3CancellationSection":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "cancellationPolicyPriceType":{ + "type":"null" + } + } + }, + "p3DepositData":{ + "type":"null" + }, + "p3MessageData":{ + "type":"null" + }, + "p3_display_rate":{ + "type":"null" + }, + "price":{ + "type":"null" + }, + "productItemDetail":{ + "type":"null" + }, + "productRateSections":{ + "type":"null" + }, + "ratePlanLoggingEventData":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "component":{ + "type":"null" + }, + "eventData":{ + "type":"null" + }, + "eventDataSchemaName":{ + "type":"null" + }, + "experiments":{ + "type":"null" + }, + "loggingId":{ + "type":"string" + }, + "section":{ + "type":"null" + } + } + }, + "tpointContent":{ + "type":"null" + } + } + }, + "clientLoggingContext":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "pdpType":{ + "type":"string" + }, + "productId":{ + "type":"string" + }, + "staysData":{ + "type":"null" + } + } + }, + "errorData":{ + "type":"null" + }, + "initialTranslationState":{ + "type":"null" + }, + "loggingContext":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "eventDataLogging":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "accuracyRating":{ + "type":"null" + }, + "amenities":{ + "type":"array", + "items":{ + "type":"integer" + } + }, + "bedType":{ + "type":"null" + }, + "checkinRating":{ + "type":"null" + }, + "cleanlinessRating":{ + "type":"null" + }, + "communicationRating":{ + "type":"null" + }, + "descriptionLanguage":{ + "type":"string" + }, + "guestSatisfactionOverall":{ + "type":"null" + }, + "homeTier":{ + "type":"integer" + }, + "isSuperhost":{ + "type":"boolean" + }, + "listingId":{ + "type":"string" + }, + "listingLat":{ + "type":"number" + }, + "listingLng":{ + "type":"number" + }, + "locationRating":{ + "type":"null" + }, + "page":{ + "type":"string" + }, + "pdpPageType":{ + "type":"integer" + }, + "personCapacity":{ + "type":"integer" + }, + "pictureCount":{ + "type":"integer" + }, + "roomType":{ + "type":"string" + }, + "utcOffset":{ + "type":"integer" + }, + "valueRating":{ + "type":"null" + }, + "visibleReviewCount":{ + "type":"null" + } + } + } + } + }, + "misaId":{ + "type":"null" + }, + "pageTitle":{ + "type":"null" + }, + "pdpType":{ + "type":"string" + }, + "pdpUrlType":{ + "type":"string" + }, + "seoFeatures":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "androidAlternateUrl":{ + "type":"string" + }, + "androidDeeplink":{ + "type":"string" + }, + "breadcrumbDetails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "linkRoute":{ + "type":"string" + }, + "linkText":{ + "type":"string" + }, + "searchText":{ + "type":"string" + } + } + } + }, + "canonicalUrl":{ + "type":"string" + }, + "indexInSearchEngines":{ + "type":"boolean" + }, + "iphoneDeeplink":{ + "type":"string" + }, + "metaDescription":{ + "type":"string" + }, + "nearbyCities":{ + "type":"array" + }, + "neighborhoodBreadcrumbDetails":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "linkRoute":{ + "type":"string" + }, + "linkText":{ + "type":"string" + }, + "searchText":{ + "type":"string" + } + } + } + }, + "ogTags":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "ogDescription":{ + "type":"string" + }, + "ogImage":{ + "type":"string" + }, + "ogImageHeight":{ + "type":"null" + }, + "ogImageWidth":{ + "type":"null" + }, + "ogTitle":{ + "type":"string" + }, + "ogType":{ + "type":"string" + }, + "ogUrl":{ + "type":"string" + }, + "ogVideoHeight":{ + "type":"null" + }, + "ogVideoUrl":{ + "type":"null" + }, + "ogVideoWidth":{ + "type":"null" + } + } + }, + "otherPropertyTypes":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "id":{ + "type":"string" + }, + "option":{ + "type":"string" + }, + "url":{ + "type":"string" + } + } + } + }, + "propertySearchUrl":{ + "type":"string" + }, + "relImageSrc":{ + "type":"string" + }, + "title":{ + "type":"string" + }, + "twitterTags":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "twitterCard":{ + "type":"string" + }, + "twitterDescription":{ + "type":"null" + }, + "twitterImage":{ + "type":"string" + }, + "twitterTitle":{ + "type":"null" + }, + "twitterUrl":{ + "type":"string" + } + } + } + } + }, + "sharingConfig":{ + "type":"object", + "properties":{ + "__typename":{ + "type":"string" + }, + "imageUrl":{ + "type":"string" + }, + "location":{ + "type":"string" + }, + "pdpLink":{ + "type":"string" + }, + "personCapacity":{ + "type":"integer" + }, + "propertyType":{ + "type":"string" + }, + "reviewCount":{ + "type":"integer" + }, + "starRating":{ + "type":"integer" + }, + "title":{ + "type":"string" + } + } + } + } + }, + "screens":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "screensV2":{ + "type":"array" + }, + "sections":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "sectionsV2":{ + "type":"array" + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"properties/search", + "url":"https://airbnb-search.p.rapidapi.com/property/search", + "description":"Search Property", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"self_check_in", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"host_language", + "type":"STRING", + "description":"host_language comma-separated or empty for all types:\nid of **Get Host Language Filters** endpoint\nOR\nResponse from this API: data->filters->hostLanguage-> id\n\nEx: 2,4,1", + "default":"" + }, + { + "name":"type_of_place", + "type":"STRING", + "description":"type_of_place comma-separated or empty for all types:\nid of **Get Type of Place Filters** endpoint\nOR\nResponse from this API: data->filters->typeOfPlace-> id\n\nEx: Entire home/apt,Private room", + "default":"" + }, + { + "name":"top_tier_stays", + "type":"STRING", + "description":"top_tier_stays comma-separated or empty for all types:\nid of **Get Top Tier Stays Filter** endpoint\nOR\nResponse from this API: data->filters->topTierStays-> id\n\nEx: 1,2\n", + "default":"" + }, + { + "name":"has_superhost", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"property_type", + "type":"STRING", + "description":"Property type comma-separated or empty for all types:\nid of **Get Property Type Filters** endpoint\nOR\nResponse from this API: data->filters->propertyType-> id\n\nEx: 2,4\n", + "default":"" + }, + { + "name":"amenities", + "type":"STRING", + "description":"amenities comma-separated or empty for all types:\nid of **Get Amenities Filters** endpoint\nOR\nResponse from this API: data->filters->amenities-> id\n\nEx: 4,5", + "default":"" + }, + { + "name":"min_bed", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"has_instant_book", + "type":"BOOLEAN", + "description":"", + "default":"" + }, + { + "name":"min_bathroom", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"category", + "type":"STRING", + "description":"**id** of **Get Category** endpoint \nOR \nResponse from this API: data->filters->categories-> id\nEx: Tag:677\nDefault category is all", + "default":"" + }, + { + "name":"min_bedroom", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"adults", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"locale", + "type":"STRING", + "description":"id item from the **Get Languages** endpoint\nDefault: en-US", + "default":"" + }, + { + "name":"page", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"children", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"infants", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"currency", + "type":"STRING", + "description":"id item from the **Get Currency** endpoint\nDefault: USD", + "default":"" + }, + { + "name":"pets", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"max_price", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"min_price", + "type":"NUMBER", + "description":"", + "default":"" + }, + { + "name":"checkout", + "type":"STRING", + "description":"Format: YYYY-MM-DD", + "default":"" + }, + { + "name":"checkin", + "type":"STRING", + "description":"Format: YYYY-MM-DD", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/property/search\"\nquerystring = {\"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "currentPage":{ + "type":"integer" + }, + "data":{ + "type":"object", + "properties":{ + "filters":{ + "type":"object", + "properties":{ + "accessibilities":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "amenities":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "categories":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "image":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "hostLanguage":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "propertyType":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "topTierStays":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "subtitle":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "typeOfPlace":{ + "type":"array" + } + } + }, + "homes":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + }, + "message":{ + "type":"string" + }, + "resultsPerPage":{ + "type":"integer" + }, + "status":{ + "type":"boolean" + }, + "totalResultCount":{ + "type":"string" + } + } + } + }, + { + "name":"properties/auto-complete", + "url":"https://airbnb-search.p.rapidapi.com/autocomplete", + "description":"Find location for search", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"", + "default":"new" + }, + { + "name":"locale", + "type":"STRING", + "description":"id item from the Get Languages API", + "default":"en-US" + }, + { + "name":"currency", + "type":"STRING", + "description":"id item from the Get Currency API", + "default":"USD" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/autocomplete\"\nquerystring = {\"query\": query, \"locale\": locale, \"currency\": currency}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "country_code":{ + "type":"string" + }, + "display_name":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Type of Place Filters", + "url":"https://airbnb-search.p.rapidapi.com/filters/type-of-place", + "description":"Get Type of Place Filters", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/filters/type-of-place\"\nquerystring = {\"query\": query, \"language_code\": language_code}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Host Language Filters", + "url":"https://airbnb-search.p.rapidapi.com/filters/host-language", + "description":"Get Host Language Filters", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/filters/host-language\"\nquerystring = {\"language_code\": language_code, \"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Accessibility Filters", + "url":"https://airbnb-search.p.rapidapi.com/filters/accessibility", + "description":"Get Accessibility Filters", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/filters/accessibility\"\nquerystring = {\"language_code\": language_code, \"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Amenities Filters", + "url":"https://airbnb-search.p.rapidapi.com/filters/amenities", + "description":"Get Amenities Filters", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/filters/amenities\"\nquerystring = {\"language_code\": language_code, \"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Top Tier Stays Filter", + "url":"https://airbnb-search.p.rapidapi.com/filters/top-tier-stays", + "description":"Get Top Tier Stays Filter", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/filters/top-tier-stays\"\nquerystring = {\"language_code\": language_code, \"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "subtitle":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Property Type Filters", + "url":"https://airbnb-search.p.rapidapi.com/filters/property-type", + "description":"Get Property Type Filters", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + } + ], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/filters/property-type\"\nquerystring = {\"query\": query, \"language_code\": language_code}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Languages", + "url":"https://airbnb-search.p.rapidapi.com/languages", + "description":"Get languages", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "country":{ + "type":"string" + }, + "domain":{ + "type":"string" + }, + "id":{ + "type":"string" + }, + "language":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Category", + "url":"https://airbnb-search.p.rapidapi.com/categories", + "description":"Get Category", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Input destination", + "default":"New York, NY" + }, + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/categories\"\nquerystring = {\"query\": query, \"language_code\": language_code}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "image":{ + "type":"string" + }, + "title":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + }, + { + "name":"Get Currency", + "url":"https://airbnb-search.p.rapidapi.com/currency", + "description":"Get Currency", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"language_code", + "type":"STRING", + "description":"`id` from `Get Languages` endpoint\n\nDefault: en-US", + "default":"en-US" + } + ], + "code":"import requests\n\nurl = \"https://airbnb-search.p.rapidapi.com/currency\"\nquerystring = {\"language_code\": language_code}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "code":{ + "type":"string" + }, + "id":{ + "type":"string" + }, + "localized_full_name":{ + "type":"string" + }, + "name":{ + "type":"string" + }, + "symbol":{ + "type":"string" + }, + "unicode_symbol":{ + "type":"string" + } + } + } + }, + "message":{ + "type":"string" + }, + "status":{ + "type":"boolean" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airbnb_search/api.py b/toolbench/toolenv/tools/Travel/airbnb_search/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9ed91826907e377b9185fa2ac7e0decd6c10b77b --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_search/api.py @@ -0,0 +1,639 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def properties_get_price(checkout: str, checkin: str, is_id: str, children: int=None, infants: int=None, pets: int=None, adults: int=None, locale: str=None, currency: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Price" + checkout: Format: YYYY-MM-DD +Ex: 2023-10-02 + +**To display the price, you should input the checkin and checkout dates** + checkin: Format: YYYY-MM-DD +Ex: 2023-10-01 + +**To display the price, you should input the checkin and checkout dates** + id: id from search API: data -> homes[index] -> listing -> id + children: Default: 0 + infants: Default: 0 + pets: Default: 0 + adults: Default: 1 + locale: id item from the Get Languages API + +Default: `en-US` + currency: id item from the Get Currency API + +Default: `USD` + + """ + url = f"https://airbnb-search.p.rapidapi.com/property/get-price" + querystring = {'checkout': checkout, 'checkin': checkin, 'id': is_id, } + if children: + querystring['children'] = children + if infants: + querystring['infants'] = infants + if pets: + querystring['pets'] = pets + if adults: + querystring['adults'] = adults + if locale: + querystring['locale'] = locale + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_search_by_geo(swlat: int, nelng: int, swlng: int, nelat: int, self_check_in: bool=None, host_language: str=None, top_tier_stays: str=None, type_of_place: str=None, has_superhost: bool=None, has_instant_book: bool=None, property_type: str=None, amenities: str=None, min_bed: int=None, min_bathroom: int=None, min_bedroom: int=None, min_price: int=None, checkout: str=None, category: str=None, pets: int=None, locale: str=None, page: int=None, infants: int=None, checkin: str=None, adults: int=None, max_price: int=None, children: int=None, currency: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search Property By GEO" + host_language: host_language comma-separated or empty for all types: +id of **Get Host Language Filters** endpoint +OR +Response from this API: data->filters->hostLanguage-> id + +Ex: 2,4,1 + top_tier_stays: top_tier_stays comma-separated or empty for all types: +id of **Get Top Tier Stays Filter** endpoint +OR +Response from this API: data->filters->topTierStays-> id + +Ex: 1,2 + type_of_place: type_of_place comma-separated or empty for all types: +id of **Get Type of Place Filters** endpoint +OR +Response from this API: data->filters->typeOfPlace-> id + +Ex: Entire home/apt,Private room + property_type: +Property type comma-separated or empty for all types: +id of **Get Property Type Filters** endpoint +OR +Response from this API: data->filters->propertyType-> id + +Ex: 2,4 + amenities: amenities comma-separated or empty for all types: +id of **Get Amenities Filters** endpoint +OR +Response from this API: data->filters->amenities-> id + +Ex: 4,5 + checkout: Format: YYYY-MM-DD + category: id of **Get Category** endpoint +OR +Response from this API: data->filters->categories-> id +Ex: Tag:677 +Default category is all + locale: id item from the **Get Languages** endpoint +Default: en-US + checkin: Format: YYYY-MM-DD + currency: id item from the **Get Currency** endpoint +Default: USD + + """ + url = f"https://airbnb-search.p.rapidapi.com/property/search-geo" + querystring = {'swLat': swlat, 'neLng': nelng, 'swLng': swlng, 'neLat': nelat, } + if self_check_in: + querystring['self_check_in'] = self_check_in + if host_language: + querystring['host_language'] = host_language + if top_tier_stays: + querystring['top_tier_stays'] = top_tier_stays + if type_of_place: + querystring['type_of_place'] = type_of_place + if has_superhost: + querystring['has_superhost'] = has_superhost + if has_instant_book: + querystring['has_instant_book'] = has_instant_book + if property_type: + querystring['property_type'] = property_type + if amenities: + querystring['amenities'] = amenities + if min_bed: + querystring['min_bed'] = min_bed + if min_bathroom: + querystring['min_bathroom'] = min_bathroom + if min_bedroom: + querystring['min_bedroom'] = min_bedroom + if min_price: + querystring['min_price'] = min_price + if checkout: + querystring['checkout'] = checkout + if category: + querystring['category'] = category + if pets: + querystring['pets'] = pets + if locale: + querystring['locale'] = locale + if page: + querystring['page'] = page + if infants: + querystring['infants'] = infants + if checkin: + querystring['checkin'] = checkin + if adults: + querystring['adults'] = adults + if max_price: + querystring['max_price'] = max_price + if children: + querystring['children'] = children + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_rating(is_id: str, currency: str=None, locale: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Property rating" + id: `id` from search API: data -> homes[index] -> listing -> id + currency: `id` item from the **Get Currency** API + +Default: `USD` + locale: `id` item from the **Get Languages** API + +Default: `en-US` + + """ + url = f"https://airbnb-search.p.rapidapi.com/property/rating" + querystring = {'id': is_id, } + if currency: + querystring['currency'] = currency + if locale: + querystring['locale'] = locale + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_reviews(is_id: str, page: int=None, locale: str=None, currency: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Property reviews" + id: `id` from search API: data -> homes[index] -> listing -> id + page: Default: 1 + locale: `id` item from the **Get Languages** API + +Default: `en-US` + currency: `id` item from the **Get Currency** API + +Default: `USD` + + """ + url = f"https://airbnb-search.p.rapidapi.com/property/reviews" + querystring = {'id': is_id, } + if page: + querystring['page'] = page + if locale: + querystring['locale'] = locale + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_detail(is_id: str, locale: str=None, currency: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Property details" + id: id from search API: data -> homes[index] -> listing -> id + locale: id item from the Get Languages API + +Default: `en-US` + currency: id item from the Get Currency API + +Default: `USD` + + """ + url = f"https://airbnb-search.p.rapidapi.com/property/detail" + querystring = {'id': is_id, } + if locale: + querystring['locale'] = locale + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_search(query: str, self_check_in: bool=None, host_language: str=None, type_of_place: str=None, top_tier_stays: str=None, has_superhost: bool=None, property_type: str=None, amenities: str=None, min_bed: int=None, has_instant_book: bool=None, min_bathroom: int=None, category: str=None, min_bedroom: int=None, adults: int=None, locale: str=None, page: int=None, children: int=None, infants: int=None, currency: str=None, pets: int=None, max_price: int=None, min_price: int=None, checkout: str=None, checkin: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search Property" + host_language: host_language comma-separated or empty for all types: +id of **Get Host Language Filters** endpoint +OR +Response from this API: data->filters->hostLanguage-> id + +Ex: 2,4,1 + type_of_place: type_of_place comma-separated or empty for all types: +id of **Get Type of Place Filters** endpoint +OR +Response from this API: data->filters->typeOfPlace-> id + +Ex: Entire home/apt,Private room + top_tier_stays: top_tier_stays comma-separated or empty for all types: +id of **Get Top Tier Stays Filter** endpoint +OR +Response from this API: data->filters->topTierStays-> id + +Ex: 1,2 + + property_type: Property type comma-separated or empty for all types: +id of **Get Property Type Filters** endpoint +OR +Response from this API: data->filters->propertyType-> id + +Ex: 2,4 + + amenities: amenities comma-separated or empty for all types: +id of **Get Amenities Filters** endpoint +OR +Response from this API: data->filters->amenities-> id + +Ex: 4,5 + category: **id** of **Get Category** endpoint +OR +Response from this API: data->filters->categories-> id +Ex: Tag:677 +Default category is all + locale: id item from the **Get Languages** endpoint +Default: en-US + currency: id item from the **Get Currency** endpoint +Default: USD + checkout: Format: YYYY-MM-DD + checkin: Format: YYYY-MM-DD + + """ + url = f"https://airbnb-search.p.rapidapi.com/property/search" + querystring = {'query': query, } + if self_check_in: + querystring['self_check_in'] = self_check_in + if host_language: + querystring['host_language'] = host_language + if type_of_place: + querystring['type_of_place'] = type_of_place + if top_tier_stays: + querystring['top_tier_stays'] = top_tier_stays + if has_superhost: + querystring['has_superhost'] = has_superhost + if property_type: + querystring['property_type'] = property_type + if amenities: + querystring['amenities'] = amenities + if min_bed: + querystring['min_bed'] = min_bed + if has_instant_book: + querystring['has_instant_book'] = has_instant_book + if min_bathroom: + querystring['min_bathroom'] = min_bathroom + if category: + querystring['category'] = category + if min_bedroom: + querystring['min_bedroom'] = min_bedroom + if adults: + querystring['adults'] = adults + if locale: + querystring['locale'] = locale + if page: + querystring['page'] = page + if children: + querystring['children'] = children + if infants: + querystring['infants'] = infants + if currency: + querystring['currency'] = currency + if pets: + querystring['pets'] = pets + if max_price: + querystring['max_price'] = max_price + if min_price: + querystring['min_price'] = min_price + if checkout: + querystring['checkout'] = checkout + if checkin: + querystring['checkin'] = checkin + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_auto_complete(query: str, locale: str, currency: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find location for search" + locale: id item from the Get Languages API + currency: id item from the Get Currency API + + """ + url = f"https://airbnb-search.p.rapidapi.com/autocomplete" + querystring = {'query': query, 'locale': locale, 'currency': currency, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_type_of_place_filters(query: str, language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Type of Place Filters" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/filters/type-of-place" + querystring = {'query': query, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_host_language_filters(query: str, language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Host Language Filters" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/filters/host-language" + querystring = {'query': query, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_accessibility_filters(query: str, language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Accessibility Filters" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/filters/accessibility" + querystring = {'query': query, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_amenities_filters(query: str, language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Amenities Filters" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/filters/amenities" + querystring = {'query': query, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_top_tier_stays_filter(query: str, language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Top Tier Stays Filter" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/filters/top-tier-stays" + querystring = {'query': query, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_property_type_filters(query: str, language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Property Type Filters" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/filters/property-type" + querystring = {'query': query, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get languages" + + """ + url = f"https://airbnb-search.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_category(query: str='New York, NY', language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Category" + query: Input destination + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/categories" + querystring = {} + if query: + querystring['query'] = query + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_currency(language_code: str='en-US', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Currency" + language_code: `id` from `Get Languages` endpoint + +Default: en-US + + """ + url = f"https://airbnb-search.p.rapidapi.com/currency" + querystring = {} + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airbnb_v2.json b/toolbench/toolenv/tools/Travel/airbnb_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..ad0173c335832152182b520fff554024fb9627d9 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_v2.json @@ -0,0 +1,1123 @@ +{ + "product_id": "api_812299d1-a10f-4941-8e68-5d39788fdba2", + "tool_description": " Airbnb API allows users to search accommodations by location, place name, and GEO coordinates to find a place to rent. This API has all needed by any developer to create a new application with some extended features.", + "home_url": "https://rapidapi.com/DataCrawler/api/airbnb19/", + "name": "Airbnb_v2", + "title": "Airbnb", + "pricing": "FREEMIUM", + "tool_name": "Airbnb_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 893, + "avgSuccessRate": 100, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "airbnb19.p.rapidapi.com", + "api_list": [ + { + "name": "Get Property Checkout Price", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getPropertyCheckoutPrice", + "description": "This API will return the checkout cost of the Property", + "method": "GET", + "required_parameters": [ + { + "name": "checkOut", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "checkIn", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-in date", + "default": "" + }, + { + "name": "propertyId", + "type": "NUMBER", + "description": "Required filed **propertyId** can be got from search property api as **id** parameter.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency** API", + "default": "USD" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyCheckoutPrice\"\nquerystring = {\"checkOut\": \"\", \"adults\": \"\", \"pets\": \"\", \"children\": \"\", \"currency\": \"USD\", \"checkIn\": \"\", \"languageId\": \"\", \"propertyId\": \"\", \"infants\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyCheckoutPrice\"\nquerystring = {\"checkOut\": \"\", \"adults\": \"\", \"pets\": \"\", \"children\": \"\", \"currency\": \"USD\", \"checkIn\": \"\", \"languageId\": \"\", \"propertyId\": \"\", \"infants\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Property Reviews", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getPropertyReviews", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "propertyId", + "type": "NUMBER", + "description": "Required filed **propertyId** can be got from search property api as **id** parameter.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "totalRecords", + "type": "NUMBER", + "description": "Total number of record per api call.**Max limit is 40**", + "default": "" + }, + { + "name": "offset", + "type": "NUMBER", + "description": "Please pass offset value if you want to exclude number of record from top/starting.", + "default": "" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyReviews\"\nquerystring = {\"propertyId\": \"\", \"totalRecords\": \"\", \"offset\": \"\", \"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyReviews\"\nquerystring = {\"propertyId\": \"\", \"totalRecords\": \"\", \"offset\": \"\", \"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Check Availability", + "url": "https://airbnb19.p.rapidapi.com/api/v1/checkAvailability", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "propertyId", + "type": "NUMBER", + "description": "Required filed **propertyId** can be got from search property api as **id** parameter.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/checkAvailability\"\nquerystring = {\"propertyId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/checkAvailability\"\nquerystring = {\"propertyId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Property Details V2", + "url": "https://airbnb19.p.rapidapi.com/api/v2/getPropertyDetails", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "propertyId", + "type": "NUMBER", + "description": "Required filed **propertyId** can be got from search property api as **id** parameter.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency** API", + "default": "USD" + }, + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "" + }, + { + "name": "checkOut", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + }, + { + "name": "checkIn", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-in date", + "default": "" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v2/getPropertyDetails\"\nquerystring = {\"currency\": \"USD\", \"propertyId\": \"\", \"adults\": \"\", \"checkOut\": \"\", \"infants\": \"\", \"checkIn\": \"\", \"children\": \"\", \"languageId\": \"\", \"pets\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v2/getPropertyDetails\"\nquerystring = {\"currency\": \"USD\", \"propertyId\": \"\", \"adults\": \"\", \"checkOut\": \"\", \"infants\": \"\", \"checkIn\": \"\", \"children\": \"\", \"languageId\": \"\", \"pets\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Property Details ( Depreciates )", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getPropertyDetails", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "propertyId", + "type": "NUMBER", + "description": "Required filed **propertyId** can be got from search property api as **id** parameter.", + "default": "" + } + ], + "optional_parameters": [ + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + }, + { + "name": "checkOut", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency** API", + "default": "USD" + }, + { + "name": "checkIn", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-in date", + "default": "" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyDetails\"\nquerystring = {\"adults\": \"\", \"languageId\": \"\", \"checkOut\": \"\", \"currency\": \"USD\", \"propertyId\": \"\", \"checkIn\": \"\", \"children\": \"\", \"infants\": \"\", \"pets\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyDetails\"\nquerystring = {\"adults\": \"\", \"languageId\": \"\", \"checkOut\": \"\", \"currency\": \"USD\", \"propertyId\": \"\", \"checkIn\": \"\", \"children\": \"\", \"infants\": \"\", \"pets\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Search Property By Place", + "url": "https://airbnb19.p.rapidapi.com/api/v1/searchPropertyByPlace", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "id query parameter is **required** and it can be got from **Search Destination API**.", + "default": "ChIJ7cv00DwsDogRAMDACa2m4K8" + } + ], + "optional_parameters": [ + { + "name": "offset", + "type": "STRING", + "description": "Please pass offset value if you want to exclude number of record from top/starting.", + "default": "" + }, + { + "name": "category", + "type": "STRING", + "description": "Default category is all\nTo get other available category please call **Get Category API**", + "default": "" + }, + { + "name": "totalRecords", + "type": "STRING", + "description": "Total number of record per api call.**Max limit is 40**", + "default": "10" + }, + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency API**", + "default": "USD" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + }, + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "1" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + }, + { + "name": "checkin", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-in date", + "default": "" + }, + { + "name": "minBedrooms", + "type": "NUMBER", + "description": "Minimum Bedrooms", + "default": "" + }, + { + "name": "priceMin", + "type": "NUMBER", + "description": "Minimum Price", + "default": "" + }, + { + "name": "priceMax", + "type": "NUMBER", + "description": "Maximum Price", + "default": "" + }, + { + "name": "minBeds", + "type": "NUMBER", + "description": "Minimum Beds", + "default": "" + }, + { + "name": "minBathrooms", + "type": "NUMBER", + "description": "Minimum Bathrooms", + "default": "" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "checkout", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "property_type", + "type": "ARRAY", + "description": "Property Type is optional and if not passed then default is all.\nYou are retrieve available property_type from **Get Property Type Filter**", + "default": "" + }, + { + "name": "self_check_in", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "host_languages", + "type": "ARRAY", + "description": "Host Languages is optional and if not passed then default is all.\nYou are retrieve available host_languages from **Get Host Language Filters**", + "default": "" + }, + { + "name": "super_host", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "instant_book", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "type_of_place", + "type": "ARRAY", + "description": "Type of Place is optional and if not passed then default is all.\nYou are retrieve available type_of_place from **Get Type of Place Filter**", + "default": "" + }, + { + "name": "amenities", + "type": "ARRAY", + "description": "Amenities is optional and if not passed then default is all.\nYou are retrieve available amenities from **Get Amenities Filters**", + "default": "" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + }, + { + "name": "top_tier_stays", + "type": "ARRAY", + "description": "Top Tier Stays is optional and if not passed then default is all.\nYou are retrieve available top_tier_stays from **Get Top Tier Stays Filter**", + "default": "" + }, + { + "name": "display_name", + "type": "STRING", + "description": "**display_name** query parameter is **required** and it can be got from **Search Destination API**.", + "default": "Chicago, IL" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchPropertyByPlace\"\nquerystring = {\"id\": \"ChIJ7cv00DwsDogRAMDACa2m4K8\", \"offset\": \"\", \"category\": \"\", \"totalRecords\": \"10\", \"currency\": \"USD\", \"infants\": \"\", \"adults\": \"1\", \"pets\": \"\", \"checkin\": \"\", \"minBedrooms\": \"\", \"priceMin\": \"\", \"priceMax\": \"\", \"minBeds\": \"\", \"minBathrooms\": \"\", \"children\": \"\", \"checkout\": \"\", \"property_type\": \"\", \"self_check_in\": \"\", \"host_languages\": \"\", \"super_host\": \"\", \"instant_book\": \"\", \"type_of_place\": \"\", \"amenities\": \"\", \"languageId\": \"\", \"top_tier_stays\": \"\", \"display_name\": \"Chicago, IL\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchPropertyByPlace\"\nquerystring = {\"id\": \"ChIJ7cv00DwsDogRAMDACa2m4K8\", \"offset\": \"\", \"category\": \"\", \"totalRecords\": \"10\", \"currency\": \"USD\", \"infants\": \"\", \"adults\": \"1\", \"pets\": \"\", \"checkin\": \"\", \"minBedrooms\": \"\", \"priceMin\": \"\", \"priceMax\": \"\", \"minBeds\": \"\", \"minBathrooms\": \"\", \"children\": \"\", \"checkout\": \"\", \"property_type\": \"\", \"self_check_in\": \"\", \"host_languages\": \"\", \"super_host\": \"\", \"instant_book\": \"\", \"type_of_place\": \"\", \"amenities\": \"\", \"languageId\": \"\", \"top_tier_stays\": \"\", \"display_name\": \"Chicago, IL\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Search Property", + "url": "https://airbnb19.p.rapidapi.com/api/v1/searchProperty", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency API**", + "default": "USD" + }, + { + "name": "totalRecords", + "type": "STRING", + "description": "Total number of record per api call.**Max limit is 40**", + "default": "10" + }, + { + "name": "offset", + "type": "STRING", + "description": "Please pass offset value if you want to exclude number of record from top/starting.", + "default": "" + }, + { + "name": "category", + "type": "STRING", + "description": "Default category is all\nTo get other available category please call **Get Category API**", + "default": "TAB_8225" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "minBeds", + "type": "NUMBER", + "description": "Minimum Beds", + "default": "" + }, + { + "name": "priceMax", + "type": "NUMBER", + "description": "Maximum Price", + "default": "" + }, + { + "name": "checkin", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-in date", + "default": "" + }, + { + "name": "minBathrooms", + "type": "NUMBER", + "description": "Minimum Bathrooms", + "default": "" + }, + { + "name": "priceMin", + "type": "NUMBER", + "description": "Minimum Price", + "default": "" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + }, + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "1" + }, + { + "name": "property_type", + "type": "ARRAY", + "description": "Property Type is optional and if not passed then default is all.\nYou are retrieve available property_type from **Get Property Type Filter**", + "default": "" + }, + { + "name": "minBedrooms", + "type": "NUMBER", + "description": "Minimum Bedrooms", + "default": "" + }, + { + "name": "checkout", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "host_languages", + "type": "ARRAY", + "description": "Host Languages is optional and if not passed then default is all.\nYou are retrieve available host_languages from **Get Host Language Filters**", + "default": "" + }, + { + "name": "amenities", + "type": "ARRAY", + "description": "Amenities is optional and if not passed then default is all.\nYou are retrieve available amenities from **Get Amenities Filters**", + "default": "" + }, + { + "name": "instant_book", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "self_check_in", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "super_host", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "type_of_place", + "type": "ARRAY", + "description": "Type of Place is optional and if not passed then default is all.\nYou are retrieve available type_of_place from **Get Type of Place Filter**", + "default": "" + }, + { + "name": "top_tier_stays", + "type": "ARRAY", + "description": "Top Tier Stays is optional and if not passed then default is all.\nYou are retrieve available top_tier_stays from **Get Top Tier Stays Filter**", + "default": "" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchProperty\"\nquerystring = {\"currency\": \"USD\", \"totalRecords\": \"10\", \"offset\": \"\", \"category\": \"TAB_8225\", \"infants\": \"\", \"children\": \"\", \"minBeds\": \"\", \"priceMax\": \"\", \"checkin\": \"\", \"minBathrooms\": \"\", \"priceMin\": \"\", \"pets\": \"\", \"adults\": \"1\", \"property_type\": \"\", \"minBedrooms\": \"\", \"checkout\": \"\", \"host_languages\": \"\", \"amenities\": \"\", \"instant_book\": \"\", \"self_check_in\": \"\", \"super_host\": \"\", \"type_of_place\": \"\", \"top_tier_stays\": \"\", \"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchProperty\"\nquerystring = {\"currency\": \"USD\", \"totalRecords\": \"10\", \"offset\": \"\", \"category\": \"TAB_8225\", \"infants\": \"\", \"children\": \"\", \"minBeds\": \"\", \"priceMax\": \"\", \"checkin\": \"\", \"minBathrooms\": \"\", \"priceMin\": \"\", \"pets\": \"\", \"adults\": \"1\", \"property_type\": \"\", \"minBedrooms\": \"\", \"checkout\": \"\", \"host_languages\": \"\", \"amenities\": \"\", \"instant_book\": \"\", \"self_check_in\": \"\", \"super_host\": \"\", \"type_of_place\": \"\", \"top_tier_stays\": \"\", \"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Search Destination", + "url": "https://airbnb19.p.rapidapi.com/api/v1/searchDestination", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "query", + "type": "STRING", + "description": "", + "default": "Chicago" + } + ], + "optional_parameters": [ + { + "name": "country", + "type": "STRING", + "description": "", + "default": "USA" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchDestination\"\nquerystring = {\"query\": \"Chicago\", \"country\": \"USA\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchDestination\"\nquerystring = {\"query\": \"Chicago\", \"country\": \"USA\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Search Property By GEO Co-Ordinates V2", + "url": "https://airbnb19.p.rapidapi.com/api/v2/searchPropertyByGEO", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "neLng", + "type": "NUMBER", + "description": "Longitude of the northeastern corner of the search area", + "default": "31.6847819" + }, + { + "name": "neLat", + "type": "NUMBER", + "description": "Latitude of the northeastern corner of the search area", + "default": "69.7627461" + }, + { + "name": "swLng", + "type": "NUMBER", + "description": "Longitude of the southwestern corner of the search area", + "default": "8.6989426" + }, + { + "name": "swLat", + "type": "NUMBER", + "description": "Latitude of the southwestern corner of the search area", + "default": "53.8806856" + } + ], + "optional_parameters": [ + { + "name": "nextPageCursor", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency API**", + "default": "USD" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "minBeds", + "type": "NUMBER", + "description": "Minimum Beds", + "default": "" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + }, + { + "name": "type_of_place", + "type": "ARRAY", + "description": "Type of Place is optional and if not passed then default is all.\nYou are retrieve available type_of_place from **Get Type of Place Filter**", + "default": "" + }, + { + "name": "minBathrooms", + "type": "NUMBER", + "description": "Minimum Bathrooms", + "default": "" + }, + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "1" + }, + { + "name": "totalRecords", + "type": "ENUM", + "description": "Total number of record per api call.**Max limit is 40**", + "default": "" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + }, + { + "name": "checkin", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-in date", + "default": "" + }, + { + "name": "minBedrooms", + "type": "NUMBER", + "description": "Minimum Bedrooms", + "default": "" + }, + { + "name": "priceMin", + "type": "NUMBER", + "description": "Minimum Price", + "default": "" + }, + { + "name": "super_host", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "amenities", + "type": "ARRAY", + "description": "Amenities is optional and if not passed then default is all.\nYou are retrieve available amenities from **Get Amenities Filters**", + "default": "" + }, + { + "name": "property_type", + "type": "ARRAY", + "description": "Property Type is optional and if not passed then default is all.\nYou are retrieve available property_type from **Get Property Type Filter**", + "default": "" + }, + { + "name": "priceMax", + "type": "NUMBER", + "description": "Maximum Price", + "default": "" + }, + { + "name": "checkout", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "top_tier_stays", + "type": "ARRAY", + "description": "Top Tier Stays is optional and if not passed then default is all.\nYou are retrieve available top_tier_stays from **Get Top Tier Stays Filter**", + "default": "" + }, + { + "name": "host_languages", + "type": "ARRAY", + "description": "Host Languages is optional and if not passed then default is all.\nYou are retrieve available host_languages from **Get Host Language Filters**", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v2/searchPropertyByGEO\"\nquerystring = {\"neLng\": \"31.6847819\", \"neLat\": \"69.7627461\", \"swLng\": \"8.6989426\", \"nextPageCursor\": \"\", \"currency\": \"USD\", \"swLat\": \"53.8806856\", \"children\": \"\", \"minBeds\": \"\", \"infants\": \"\", \"type_of_place\": \"\", \"minBathrooms\": \"\", \"adults\": \"1\", \"totalRecords\": \"\", \"pets\": \"\", \"checkin\": \"\", \"minBedrooms\": \"\", \"priceMin\": \"\", \"super_host\": \"\", \"amenities\": \"\", \"property_type\": \"\", \"priceMax\": \"\", \"checkout\": \"\", \"top_tier_stays\": \"\", \"host_languages\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v2/searchPropertyByGEO\"\nquerystring = {\"neLng\": \"31.6847819\", \"neLat\": \"69.7627461\", \"swLng\": \"8.6989426\", \"nextPageCursor\": \"\", \"currency\": \"USD\", \"swLat\": \"53.8806856\", \"children\": \"\", \"minBeds\": \"\", \"infants\": \"\", \"type_of_place\": \"\", \"minBathrooms\": \"\", \"adults\": \"1\", \"totalRecords\": \"\", \"pets\": \"\", \"checkin\": \"\", \"minBedrooms\": \"\", \"priceMin\": \"\", \"super_host\": \"\", \"amenities\": \"\", \"property_type\": \"\", \"priceMax\": \"\", \"checkout\": \"\", \"top_tier_stays\": \"\", \"host_languages\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Search Property By GEO Co-Ordinates (Deprecated)", + "url": "https://airbnb19.p.rapidapi.com/api/v1/searchPropertyByGEO", + "description": "-", + "method": "GET", + "required_parameters": [ + { + "name": "neLng", + "type": "NUMBER", + "description": "Longitude of the northeastern corner of the search area", + "default": "-82.7456683" + }, + { + "name": "neLat", + "type": "NUMBER", + "description": "Latitude of the northeastern corner of the search area", + "default": "46.2301696" + }, + { + "name": "swLng", + "type": "NUMBER", + "description": "Longitude of the southwestern corner of the search area", + "default": "-90.5777958" + }, + { + "name": "swLat", + "type": "NUMBER", + "description": "Latitude of the southwestern corner of the search area", + "default": "39.6115919" + } + ], + "optional_parameters": [ + { + "name": "priceMin", + "type": "NUMBER", + "description": "Minimum Price", + "default": "" + }, + { + "name": "checkout", + "type": "DATE (YYYY-MM-DD)", + "description": "Check-out date", + "default": "" + }, + { + "name": "minBeds", + "type": "NUMBER", + "description": "Minimum Beds", + "default": "" + }, + { + "name": "pets", + "type": "NUMBER", + "description": "Number of pets", + "default": "" + }, + { + "name": "minBathrooms", + "type": "NUMBER", + "description": "Minimum Bathrooms", + "default": "" + }, + { + "name": "checkin", + "type": "DATE (YYYY-MM-DD)", + "description": "", + "default": "" + }, + { + "name": "amenities", + "type": "ARRAY", + "description": "Amenities is optional and if not passed then default is all.\nYou are retrieve available amenities from **Get Amenities Filters**", + "default": "" + }, + { + "name": "instant_book", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + }, + { + "name": "top_tier_stays", + "type": "ARRAY", + "description": "Top Tier Stays is optional and if not passed then default is all.\nYou are retrieve available top_tier_stays from **Get Top Tier Stays Filter**", + "default": "" + }, + { + "name": "property_type", + "type": "ARRAY", + "description": "Property Type is optional and if not passed then default is all.\nYou are retrieve available property_type from **Get Property Type Filter**", + "default": "" + }, + { + "name": "offset", + "type": "STRING", + "description": "Please pass offset value if you want to exclude number of record from top/starting.", + "default": "" + }, + { + "name": "currency", + "type": "STRING", + "description": "Default currency is **USD**. To get other available currency please call **Get Currency API**", + "default": "USD" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Number of children (2-12 years)", + "default": "" + }, + { + "name": "totalRecords", + "type": "STRING", + "description": "Total number of record per api call.**Max limit is 40**", + "default": "10" + }, + { + "name": "adults", + "type": "NUMBER", + "description": "Number of adult guests (13 years and over). Default is set to 1.", + "default": "1" + }, + { + "name": "infants", + "type": "NUMBER", + "description": "Number of infants (under 2 years)", + "default": "" + }, + { + "name": "minBedrooms", + "type": "NUMBER", + "description": "Minimum Bedrooms", + "default": "" + }, + { + "name": "priceMax", + "type": "NUMBER", + "description": "Maximum Price", + "default": "" + }, + { + "name": "host_languages", + "type": "ARRAY", + "description": "Host Languages is optional and if not passed then default is all.\nYou are retrieve available host_languages from **Get Host Language Filters**", + "default": "" + }, + { + "name": "type_of_place", + "type": "ARRAY", + "description": "Type of Place is optional and if not passed then default is all.\nYou are retrieve available type_of_place from **Get Type of Place Filter**", + "default": "" + }, + { + "name": "super_host", + "type": "BOOLEAN", + "description": "", + "default": "" + }, + { + "name": "self_check_in", + "type": "BOOLEAN", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchPropertyByGEO\"\nquerystring = {\"neLng\": \"-82.7456683\", \"priceMin\": \"\", \"checkout\": \"\", \"minBeds\": \"\", \"pets\": \"\", \"minBathrooms\": \"\", \"checkin\": \"\", \"amenities\": \"\", \"instant_book\": \"\", \"languageId\": \"\", \"top_tier_stays\": \"\", \"property_type\": \"\", \"offset\": \"\", \"currency\": \"USD\", \"neLat\": \"46.2301696\", \"children\": \"\", \"totalRecords\": \"10\", \"adults\": \"1\", \"infants\": \"\", \"swLng\": \"-90.5777958\", \"swLat\": \"39.6115919\", \"minBedrooms\": \"\", \"priceMax\": \"\", \"host_languages\": \"\", \"type_of_place\": \"\", \"super_host\": \"\", \"self_check_in\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/searchPropertyByGEO\"\nquerystring = {\"neLng\": \"-82.7456683\", \"priceMin\": \"\", \"checkout\": \"\", \"minBeds\": \"\", \"pets\": \"\", \"minBathrooms\": \"\", \"checkin\": \"\", \"amenities\": \"\", \"instant_book\": \"\", \"languageId\": \"\", \"top_tier_stays\": \"\", \"property_type\": \"\", \"offset\": \"\", \"currency\": \"USD\", \"neLat\": \"46.2301696\", \"children\": \"\", \"totalRecords\": \"10\", \"adults\": \"1\", \"infants\": \"\", \"swLng\": \"-90.5777958\", \"swLat\": \"39.6115919\", \"minBedrooms\": \"\", \"priceMax\": \"\", \"host_languages\": \"\", \"type_of_place\": \"\", \"super_host\": \"\", \"self_check_in\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Top Tier Stays Filter", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getTopTierStaysFilter", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getTopTierStaysFilter\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getTopTierStaysFilter\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Property Type Filters", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getPropertyType", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyType\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getPropertyType\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Type of Place Filters", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getTypeOfPlace", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getTypeOfPlace\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getTypeOfPlace\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Host Language Filters", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getHostLanguage", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getHostLanguage\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getHostLanguage\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Amenities Filters", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getAmenities", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getAmenities\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getAmenities\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Test API", + "url": "https://airbnb19.p.rapidapi.com/api/v1/test", + "description": "This API is to test if server is up and running", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/test\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/test\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Currency", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getCurrency", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getCurrency\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getCurrency\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Category", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getCategory", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getCategory\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getCategory\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Get Languages", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getLanguages", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getLanguages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Get Accessibility Filters", + "url": "https://airbnb19.p.rapidapi.com/api/v1/getAccessibility", + "description": "-", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "languageId", + "type": "STRING", + "description": "Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getAccessibility\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airbnb19.p.rapidapi.com/api/v1/getAccessibility\"\nquerystring = {\"languageId\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airbnb19.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "airbnb_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airbnb_v2/api.py b/toolbench/toolenv/tools/Travel/airbnb_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..10cfbaec8dc66be2d34b7c27ba512b9229332b4d --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airbnb_v2/api.py @@ -0,0 +1,828 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_property_checkout_price(checkout: str, checkin: str, propertyid: int, adults: int=None, pets: int=None, children: int=None, currency: str='USD', languageid: str=None, infants: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This API will return the checkout cost of the Property" + checkout: Check-out date + checkin: Check-in date + propertyid: Required filed **propertyId** can be got from search property api as **id** parameter. + adults: Number of adult guests (13 years and over). Default is set to 1. + pets: Number of pets + children: Number of children (2-12 years) + currency: Default currency is **USD**. To get other available currency please call **Get Currency** API + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + infants: Number of infants (under 2 years) + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getpropertycheckoutprice" + querystring = {'checkOut': checkout, 'checkIn': checkin, 'propertyId': propertyid, } + if adults: + querystring['adults'] = adults + if pets: + querystring['pets'] = pets + if children: + querystring['children'] = children + if currency: + querystring['currency'] = currency + if languageid: + querystring['languageId'] = languageid + if infants: + querystring['infants'] = infants + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_property_reviews(propertyid: int, totalrecords: int=None, offset: int=None, languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + propertyid: Required filed **propertyId** can be got from search property api as **id** parameter. + totalrecords: Total number of record per api call.**Max limit is 40** + offset: Please pass offset value if you want to exclude number of record from top/starting. + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getpropertyreviews" + querystring = {'propertyId': propertyid, } + if totalrecords: + querystring['totalRecords'] = totalrecords + if offset: + querystring['offset'] = offset + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def check_availability(propertyid: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + propertyid: Required filed **propertyId** can be got from search property api as **id** parameter. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/checkavailability" + querystring = {'propertyId': propertyid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_property_details_v2(propertyid: int, currency: str='USD', adults: int=None, checkout: str=None, infants: int=None, checkin: str=None, children: int=None, languageid: str=None, pets: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + propertyid: Required filed **propertyId** can be got from search property api as **id** parameter. + currency: Default currency is **USD**. To get other available currency please call **Get Currency** API + adults: Number of adult guests (13 years and over). Default is set to 1. + checkout: Check-out date + infants: Number of infants (under 2 years) + checkin: Check-in date + children: Number of children (2-12 years) + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + pets: Number of pets + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v2/getpropertydetails" + querystring = {'propertyId': propertyid, } + if currency: + querystring['currency'] = currency + if adults: + querystring['adults'] = adults + if checkout: + querystring['checkOut'] = checkout + if infants: + querystring['infants'] = infants + if checkin: + querystring['checkIn'] = checkin + if children: + querystring['children'] = children + if languageid: + querystring['languageId'] = languageid + if pets: + querystring['pets'] = pets + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_property_details_depreciates(propertyid: int, adults: int=None, languageid: str=None, checkout: str=None, currency: str='USD', checkin: str=None, children: int=None, infants: int=None, pets: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + propertyid: Required filed **propertyId** can be got from search property api as **id** parameter. + adults: Number of adult guests (13 years and over). Default is set to 1. + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + checkout: Check-out date + currency: Default currency is **USD**. To get other available currency please call **Get Currency** API + checkin: Check-in date + children: Number of children (2-12 years) + infants: Number of infants (under 2 years) + pets: Number of pets + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getpropertydetails" + querystring = {'propertyId': propertyid, } + if adults: + querystring['adults'] = adults + if languageid: + querystring['languageId'] = languageid + if checkout: + querystring['checkOut'] = checkout + if currency: + querystring['currency'] = currency + if checkin: + querystring['checkIn'] = checkin + if children: + querystring['children'] = children + if infants: + querystring['infants'] = infants + if pets: + querystring['pets'] = pets + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_property_by_place(is_id: str, offset: str=None, category: str=None, totalrecords: str='10', currency: str='USD', infants: int=None, adults: int=1, pets: int=None, checkin: str=None, minbedrooms: int=None, pricemin: int=None, pricemax: int=None, minbeds: int=None, minbathrooms: int=None, children: int=None, checkout: str=None, property_type: str=None, self_check_in: bool=None, host_languages: str=None, super_host: bool=None, instant_book: bool=None, type_of_place: str=None, amenities: str=None, languageid: str=None, top_tier_stays: str=None, display_name: str='Chicago, IL', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + id: id query parameter is **required** and it can be got from **Search Destination API**. + offset: Please pass offset value if you want to exclude number of record from top/starting. + category: Default category is all +To get other available category please call **Get Category API** + totalrecords: Total number of record per api call.**Max limit is 40** + currency: Default currency is **USD**. To get other available currency please call **Get Currency API** + infants: Number of infants (under 2 years) + adults: Number of adult guests (13 years and over). Default is set to 1. + pets: Number of pets + checkin: Check-in date + minbedrooms: Minimum Bedrooms + pricemin: Minimum Price + pricemax: Maximum Price + minbeds: Minimum Beds + minbathrooms: Minimum Bathrooms + children: Number of children (2-12 years) + checkout: Check-out date + property_type: Property Type is optional and if not passed then default is all. +You are retrieve available property_type from **Get Property Type Filter** + host_languages: Host Languages is optional and if not passed then default is all. +You are retrieve available host_languages from **Get Host Language Filters** + type_of_place: Type of Place is optional and if not passed then default is all. +You are retrieve available type_of_place from **Get Type of Place Filter** + amenities: Amenities is optional and if not passed then default is all. +You are retrieve available amenities from **Get Amenities Filters** + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + top_tier_stays: Top Tier Stays is optional and if not passed then default is all. +You are retrieve available top_tier_stays from **Get Top Tier Stays Filter** + display_name: **display_name** query parameter is **required** and it can be got from **Search Destination API**. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/searchpropertybyplace" + querystring = {'id': is_id, } + if offset: + querystring['offset'] = offset + if category: + querystring['category'] = category + if totalrecords: + querystring['totalRecords'] = totalrecords + if currency: + querystring['currency'] = currency + if infants: + querystring['infants'] = infants + if adults: + querystring['adults'] = adults + if pets: + querystring['pets'] = pets + if checkin: + querystring['checkin'] = checkin + if minbedrooms: + querystring['minBedrooms'] = minbedrooms + if pricemin: + querystring['priceMin'] = pricemin + if pricemax: + querystring['priceMax'] = pricemax + if minbeds: + querystring['minBeds'] = minbeds + if minbathrooms: + querystring['minBathrooms'] = minbathrooms + if children: + querystring['children'] = children + if checkout: + querystring['checkout'] = checkout + if property_type: + querystring['property_type'] = property_type + if self_check_in: + querystring['self_check_in'] = self_check_in + if host_languages: + querystring['host_languages'] = host_languages + if super_host: + querystring['super_host'] = super_host + if instant_book: + querystring['instant_book'] = instant_book + if type_of_place: + querystring['type_of_place'] = type_of_place + if amenities: + querystring['amenities'] = amenities + if languageid: + querystring['languageId'] = languageid + if top_tier_stays: + querystring['top_tier_stays'] = top_tier_stays + if display_name: + querystring['display_name'] = display_name + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_property(currency: str='USD', totalrecords: str='10', offset: str=None, category: str='TAB_8225', infants: int=None, children: int=None, minbeds: int=None, pricemax: int=None, checkin: str=None, minbathrooms: int=None, pricemin: int=None, pets: int=None, adults: int=1, property_type: str=None, minbedrooms: int=None, checkout: str=None, host_languages: str=None, amenities: str=None, instant_book: bool=None, self_check_in: bool=None, super_host: bool=None, type_of_place: str=None, top_tier_stays: str=None, languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + currency: Default currency is **USD**. To get other available currency please call **Get Currency API** + totalrecords: Total number of record per api call.**Max limit is 40** + offset: Please pass offset value if you want to exclude number of record from top/starting. + category: Default category is all +To get other available category please call **Get Category API** + infants: Number of infants (under 2 years) + children: Number of children (2-12 years) + minbeds: Minimum Beds + pricemax: Maximum Price + checkin: Check-in date + minbathrooms: Minimum Bathrooms + pricemin: Minimum Price + pets: Number of pets + adults: Number of adult guests (13 years and over). Default is set to 1. + property_type: Property Type is optional and if not passed then default is all. +You are retrieve available property_type from **Get Property Type Filter** + minbedrooms: Minimum Bedrooms + checkout: Check-out date + host_languages: Host Languages is optional and if not passed then default is all. +You are retrieve available host_languages from **Get Host Language Filters** + amenities: Amenities is optional and if not passed then default is all. +You are retrieve available amenities from **Get Amenities Filters** + type_of_place: Type of Place is optional and if not passed then default is all. +You are retrieve available type_of_place from **Get Type of Place Filter** + top_tier_stays: Top Tier Stays is optional and if not passed then default is all. +You are retrieve available top_tier_stays from **Get Top Tier Stays Filter** + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/searchproperty" + querystring = {} + if currency: + querystring['currency'] = currency + if totalrecords: + querystring['totalRecords'] = totalrecords + if offset: + querystring['offset'] = offset + if category: + querystring['category'] = category + if infants: + querystring['infants'] = infants + if children: + querystring['children'] = children + if minbeds: + querystring['minBeds'] = minbeds + if pricemax: + querystring['priceMax'] = pricemax + if checkin: + querystring['checkin'] = checkin + if minbathrooms: + querystring['minBathrooms'] = minbathrooms + if pricemin: + querystring['priceMin'] = pricemin + if pets: + querystring['pets'] = pets + if adults: + querystring['adults'] = adults + if property_type: + querystring['property_type'] = property_type + if minbedrooms: + querystring['minBedrooms'] = minbedrooms + if checkout: + querystring['checkout'] = checkout + if host_languages: + querystring['host_languages'] = host_languages + if amenities: + querystring['amenities'] = amenities + if instant_book: + querystring['instant_book'] = instant_book + if self_check_in: + querystring['self_check_in'] = self_check_in + if super_host: + querystring['super_host'] = super_host + if type_of_place: + querystring['type_of_place'] = type_of_place + if top_tier_stays: + querystring['top_tier_stays'] = top_tier_stays + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_destination(query: str, country: str='USA', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/searchdestination" + querystring = {'query': query, } + if country: + querystring['country'] = country + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_property_by_geo_co_ordinates_v2(nelng: int, nelat: int, swlng: int, swlat: int, nextpagecursor: str=None, currency: str='USD', children: int=None, minbeds: int=None, infants: int=None, type_of_place: str=None, minbathrooms: int=None, adults: int=1, totalrecords: str=None, pets: int=None, checkin: str=None, minbedrooms: int=None, pricemin: int=None, super_host: bool=None, amenities: str=None, property_type: str=None, pricemax: int=None, checkout: str=None, top_tier_stays: str=None, host_languages: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + nelng: Longitude of the northeastern corner of the search area + nelat: Latitude of the northeastern corner of the search area + swlng: Longitude of the southwestern corner of the search area + swlat: Latitude of the southwestern corner of the search area + currency: Default currency is **USD**. To get other available currency please call **Get Currency API** + children: Number of children (2-12 years) + minbeds: Minimum Beds + infants: Number of infants (under 2 years) + type_of_place: Type of Place is optional and if not passed then default is all. +You are retrieve available type_of_place from **Get Type of Place Filter** + minbathrooms: Minimum Bathrooms + adults: Number of adult guests (13 years and over). Default is set to 1. + totalrecords: Total number of record per api call.**Max limit is 40** + pets: Number of pets + checkin: Check-in date + minbedrooms: Minimum Bedrooms + pricemin: Minimum Price + amenities: Amenities is optional and if not passed then default is all. +You are retrieve available amenities from **Get Amenities Filters** + property_type: Property Type is optional and if not passed then default is all. +You are retrieve available property_type from **Get Property Type Filter** + pricemax: Maximum Price + checkout: Check-out date + top_tier_stays: Top Tier Stays is optional and if not passed then default is all. +You are retrieve available top_tier_stays from **Get Top Tier Stays Filter** + host_languages: Host Languages is optional and if not passed then default is all. +You are retrieve available host_languages from **Get Host Language Filters** + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v2/searchpropertybygeo" + querystring = {'neLng': nelng, 'neLat': nelat, 'swLng': swlng, 'swLat': swlat, } + if nextpagecursor: + querystring['nextPageCursor'] = nextpagecursor + if currency: + querystring['currency'] = currency + if children: + querystring['children'] = children + if minbeds: + querystring['minBeds'] = minbeds + if infants: + querystring['infants'] = infants + if type_of_place: + querystring['type_of_place'] = type_of_place + if minbathrooms: + querystring['minBathrooms'] = minbathrooms + if adults: + querystring['adults'] = adults + if totalrecords: + querystring['totalRecords'] = totalrecords + if pets: + querystring['pets'] = pets + if checkin: + querystring['checkin'] = checkin + if minbedrooms: + querystring['minBedrooms'] = minbedrooms + if pricemin: + querystring['priceMin'] = pricemin + if super_host: + querystring['super_host'] = super_host + if amenities: + querystring['amenities'] = amenities + if property_type: + querystring['property_type'] = property_type + if pricemax: + querystring['priceMax'] = pricemax + if checkout: + querystring['checkout'] = checkout + if top_tier_stays: + querystring['top_tier_stays'] = top_tier_stays + if host_languages: + querystring['host_languages'] = host_languages + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_property_by_geo_co_ordinates_deprecated(nelng: int, nelat: int, swlng: int, swlat: int, pricemin: int=None, checkout: str=None, minbeds: int=None, pets: int=None, minbathrooms: int=None, checkin: str=None, amenities: str=None, instant_book: bool=None, languageid: str=None, top_tier_stays: str=None, property_type: str=None, offset: str=None, currency: str='USD', children: int=None, totalrecords: str='10', adults: int=1, infants: int=None, minbedrooms: int=None, pricemax: int=None, host_languages: str=None, type_of_place: str=None, super_host: bool=None, self_check_in: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + nelng: Longitude of the northeastern corner of the search area + nelat: Latitude of the northeastern corner of the search area + swlng: Longitude of the southwestern corner of the search area + swlat: Latitude of the southwestern corner of the search area + pricemin: Minimum Price + checkout: Check-out date + minbeds: Minimum Beds + pets: Number of pets + minbathrooms: Minimum Bathrooms + amenities: Amenities is optional and if not passed then default is all. +You are retrieve available amenities from **Get Amenities Filters** + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + top_tier_stays: Top Tier Stays is optional and if not passed then default is all. +You are retrieve available top_tier_stays from **Get Top Tier Stays Filter** + property_type: Property Type is optional and if not passed then default is all. +You are retrieve available property_type from **Get Property Type Filter** + offset: Please pass offset value if you want to exclude number of record from top/starting. + currency: Default currency is **USD**. To get other available currency please call **Get Currency API** + children: Number of children (2-12 years) + totalrecords: Total number of record per api call.**Max limit is 40** + adults: Number of adult guests (13 years and over). Default is set to 1. + infants: Number of infants (under 2 years) + minbedrooms: Minimum Bedrooms + pricemax: Maximum Price + host_languages: Host Languages is optional and if not passed then default is all. +You are retrieve available host_languages from **Get Host Language Filters** + type_of_place: Type of Place is optional and if not passed then default is all. +You are retrieve available type_of_place from **Get Type of Place Filter** + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/searchpropertybygeo" + querystring = {'neLng': nelng, 'neLat': nelat, 'swLng': swlng, 'swLat': swlat, } + if pricemin: + querystring['priceMin'] = pricemin + if checkout: + querystring['checkout'] = checkout + if minbeds: + querystring['minBeds'] = minbeds + if pets: + querystring['pets'] = pets + if minbathrooms: + querystring['minBathrooms'] = minbathrooms + if checkin: + querystring['checkin'] = checkin + if amenities: + querystring['amenities'] = amenities + if instant_book: + querystring['instant_book'] = instant_book + if languageid: + querystring['languageId'] = languageid + if top_tier_stays: + querystring['top_tier_stays'] = top_tier_stays + if property_type: + querystring['property_type'] = property_type + if offset: + querystring['offset'] = offset + if currency: + querystring['currency'] = currency + if children: + querystring['children'] = children + if totalrecords: + querystring['totalRecords'] = totalrecords + if adults: + querystring['adults'] = adults + if infants: + querystring['infants'] = infants + if minbedrooms: + querystring['minBedrooms'] = minbedrooms + if pricemax: + querystring['priceMax'] = pricemax + if host_languages: + querystring['host_languages'] = host_languages + if type_of_place: + querystring['type_of_place'] = type_of_place + if super_host: + querystring['super_host'] = super_host + if self_check_in: + querystring['self_check_in'] = self_check_in + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_top_tier_stays_filter(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/gettoptierstaysfilter" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_property_type_filters(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getpropertytype" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_type_of_place_filters(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/gettypeofplace" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_host_language_filters(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/gethostlanguage" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_amenities_filters(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getamenities" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def test_api(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This API is to test if server is up and running" + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/test" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_currency(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getcurrency" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_category(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getcategory" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getlanguages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_accessibility_filters(languageid: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "-" + languageid: Enter **LanguageId** if you want a response in the requested language. To get **LanguageId** call **getLanguages** API and pass in the Id. + + """ + url = f"https://airbnb19.p.rapidapi.com/api/v1/getaccessibility" + querystring = {} + if languageid: + querystring['languageId'] = languageid + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airbnb19.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airhex/api.py b/toolbench/toolenv/tools/Travel/airhex/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f955fb598285ad8a40c168e78eff55670712fef1 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airhex/api.py @@ -0,0 +1,58 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airlines_check_in_url(iata: str, md5apikey: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + iata: Airline's IATA code + md5apikey: Please register at http://airhex.com to use your own API key + + """ + url = f"https://airhex-airhex-v1.p.rapidapi.com/content/check-in/" + querystring = {'iata': iata, } + if md5apikey: + querystring['md5apikey'] = md5apikey + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airhex-airhex-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlines_marketing_names(iata: str, md5apikey: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Purified IATA database" + iata: Airline's IATA code + md5apikey: Please register at http://airhex.com to use your own API key + + """ + url = f"https://airhex-airhex-v1.p.rapidapi.com/content/marketing-names/" + querystring = {'iata': iata, } + if md5apikey: + querystring['md5apikey'] = md5apikey + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airhex-airhex-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airline_travel.json b/toolbench/toolenv/tools/Travel/airline_travel.json new file mode 100644 index 0000000000000000000000000000000000000000..6cb14c7f4adecd94223972dc79052d9cc4bc2d4e --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airline_travel.json @@ -0,0 +1,30 @@ +{ + "tool_name":"Airline Travel", + "tool_description":"TripFro is an on-demand flight booking software development company that builds excellent mobile apps for our customers worldwide. We build custom-made, feature-rich, and user-friendly mobile applications to enhance customer experience all over worldwide.", + "title":"Airline Travel", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":787, + "avgSuccessRate":100, + "popularityScore":9.3, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/kcharles0126/api/airline-travel/", + "host":"airline-travel.p.rapidapi.com", + "api_list":[ + { + "name":"Airline Travel", + "url":"https://airline-travel.p.rapidapi.com/", + "description":"Flight Booking Engine comes with advanced and features of third-party integration, GDS connectivity, inventory management, quotation management, B2B/B2C booking engine, one-way, round-trip, multi-city search option, booking management, reporting, customer management, custom design and layout, multi-language, multi-currency, payment gateway integration and more.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airline-travel.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airline-travel.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airline_travel/api.py b/toolbench/toolenv/tools/Travel/airline_travel/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5229822f722bfca3951593717d11dd7c5889b9cc --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airline_travel/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airline_travel(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Flight Booking Engine comes with advanced and features of third-party integration, GDS connectivity, inventory management, quotation management, B2B/B2C booking engine, one-way, round-trip, multi-city search option, booking management, reporting, customer management, custom design and layout, multi-language, multi-currency, payment gateway integration and more." + + """ + url = f"https://airline-travel.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airline-travel.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airlines_map.json b/toolbench/toolenv/tools/Travel/airlines_map.json new file mode 100644 index 0000000000000000000000000000000000000000..bc9861d57232535c62ef7f0d4be6b5e58673a48b --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airlines_map.json @@ -0,0 +1,30 @@ +{ + "tool_name":"Airlines Map", + "tool_description":"Travel Airlines data map.", + "title":"Airlines Map", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":265, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ashokbhamla/api/airlines-map/", + "host":"airlines-map.p.rapidapi.com", + "api_list":[ + { + "name":"Airlines map", + "url":"https://airlines-map.p.rapidapi.com/airlinesmap.com", + "description":"flights data", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airlines-map.p.rapidapi.com/airlinesmap.com\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airlines-map.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airlines_map/api.py b/toolbench/toolenv/tools/Travel/airlines_map/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8814b776292b4bc135ade9c1b5858f39d62d06f9 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airlines_map/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airlines_map(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "flights data" + + """ + url = f"https://airlines-map.p.rapidapi.com/airlinesmap.com" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airlines-map.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airport.json b/toolbench/toolenv/tools/Travel/airport.json new file mode 100644 index 0000000000000000000000000000000000000000..d84bf5348b29c63fec9dc3c95eb2d3358255c77b --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airport.json @@ -0,0 +1,177 @@ +{ + "tool_name":"Airport", + "tool_description":"This API provides data for more than 73000 Airports and Heliports including geolocation, frequencies, runways and navaids.", + "title":"Airport", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":0, + "avgLatency":35, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/weatherapi75/api/airport10/", + "host":"airport10.p.rapidapi.com", + "api_list":[ + { + "name":"Get Navaids by ICAO", + "url":"https://airport10.p.rapidapi.com/navaids/{icao}", + "description":"Search through our navaids database, by entering the ICAO code (4 letters) of the airport.", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"", + "default":"klas" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/navaids/{icao}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Region by code", + "url":"https://airport10.p.rapidapi.com/regions/{code}", + "description":"Get a region by entering the region iso code specified in the airport property regionIso.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"", + "default":"US-CA" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/regions/{code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Country by code", + "url":"https://airport10.p.rapidapi.com/countries/{code}", + "description":"Get a region by entering the country iso code specified in the airport property countryIso.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"", + "default":"FR" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/countries/{code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Frequencies by ICAO", + "url":"https://airport10.p.rapidapi.com/frequencies/{icao}", + "description":"Search through our frequencies database, by entering the ICAO code (4 letters) of the airport", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"", + "default":"kjfk" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/frequencies/{icao}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Runways by ICAO", + "url":"https://airport10.p.rapidapi.com/runways/{icao}", + "description":"Search through our runway database, by entreing the ICAO code (4 letters) of the airport", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"", + "default":"klax" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/runways/{icao}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airport by Name", + "url":"https://airport10.p.rapidapi.com/airports/name/{name}", + "description":"Search through our database of more than 73000 airports/heliports, by entering the name of the airport.", + "method":"GET", + "required_parameters":[ + { + "name":"name", + "type":"string", + "description":"", + "default":"charles de gaulle" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/airports/name/{name}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airport by IATA", + "url":"https://airport10.p.rapidapi.com/airports/iata/{iata}", + "description":"Search through our database of more than 73000 airports/heliports, by entering the IATA(3 letters) code of the airport.", + "method":"GET", + "required_parameters":[ + { + "name":"iata", + "type":"string", + "description":"", + "default":"CDG" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/airports/iata/{iata}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airport by ICAO", + "url":"https://airport10.p.rapidapi.com/airports/icao/{icao}", + "description":"Search through our database of more than 73000 airports/heliports, by entering the ICAO (4 letters) code of the airport.", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"", + "default":"LFPG" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airport10.p.rapidapi.com/airports/icao/{icao}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airport10.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airport/api.py b/toolbench/toolenv/tools/Travel/airport/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5ffc77b15f9a2dbd5d6c57ed65a8765f91d5ae6c --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airport/api.py @@ -0,0 +1,176 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_navaids_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search through our navaids database, by entering the ICAO code (4 letters) of the airport." + + """ + url = f"https://airport10.p.rapidapi.com/navaids/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_region_by_code(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a region by entering the region iso code specified in the airport property regionIso." + + """ + url = f"https://airport10.p.rapidapi.com/regions/{code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_country_by_code(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a region by entering the country iso code specified in the airport property countryIso." + + """ + url = f"https://airport10.p.rapidapi.com/countries/{code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_frequencies_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search through our frequencies database, by entering the ICAO code (4 letters) of the airport" + + """ + url = f"https://airport10.p.rapidapi.com/frequencies/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_runways_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search through our runway database, by entreing the ICAO code (4 letters) of the airport" + + """ + url = f"https://airport10.p.rapidapi.com/runways/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airport_by_name(name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search through our database of more than 73000 airports/heliports, by entering the name of the airport." + + """ + url = f"https://airport10.p.rapidapi.com/airports/name/{name}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airport_by_iata(iata: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search through our database of more than 73000 airports/heliports, by entering the IATA(3 letters) code of the airport." + + """ + url = f"https://airport10.p.rapidapi.com/airports/iata/{iata}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airport_by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search through our database of more than 73000 airports/heliports, by entering the ICAO (4 letters) code of the airport." + + """ + url = f"https://airport10.p.rapidapi.com/airports/icao/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airport10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airport_guide_aviation_info.json b/toolbench/toolenv/tools/Travel/airport_guide_aviation_info.json new file mode 100644 index 0000000000000000000000000000000000000000..a9a738ccda7a6d31015ac92af9d989ff73563900 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airport_guide_aviation_info.json @@ -0,0 +1,978 @@ +{ + "tool_name":"Airport Guide - Aviation Info", + "tool_description":"Get complete Airport Details by ICAO, IATA or Local IDs. AirportGuide.com has compiled data for over 30 years from multiple sources around the world to provide the best quality global landing facility data. Our database contains over 60,000 airports, heliports, balloonports, seaplane bases, ultralight fields, gliderports, and spaceports. In addition to airport details, we have airline routes, nearby airports, airport delays, aviation calculators, METAR & TAF, airlines, airmen, and FBOs/fuel.", + "title":"Airport Guide - Aviation Info", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":286, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/AirportGuide/api/airport-guide-aviation-info/", + "host":"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com", + "api_list":[ + { + "name":"Airport Details by Use, Country, Type, and City", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getairport_by_use", + "description":"Retrieve a list of airports by entering the country and one or more of the following optional fields: airport use (public, private, military), facility type and city name. The successful call returns the following data: Airport Name, IATA ID, ICAO ID, City, State, Country, Latitude, Longitude. Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/\nNote: The results are limited to 5000 records.", + "method":"GET", + "required_parameters":[ + { + "name":"city", + "type":"STRING", + "description":"Name of the city", + "default":"Los Angeles" + }, + { + "name":"type", + "type":"STRING", + "description":"Valid landing facility types are: Airport, Balloonport, Gliderport, Heliport, Seaplane Base, or Ultralight", + "default":"airport" + }, + { + "name":"country", + "type":"STRING", + "description":"Enter the code of the country. e.g. country=CA", + "default":"US" + }, + { + "name":"airport_use", + "type":"STRING", + "description":"Enter the landing facility use (public, private, military).", + "default":"public" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getairport_by_use\"\nquerystring = {\"city\": city, \"type\": type, \"country\": country, \"airport_use\": airport_use}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "totals":20, + "result":"Success", + "airport":[ + { + "airport_name":"Abbotsford Airport", + "local_id":"CYXX", + "iata":"YXX", + "icao":"CYXX", + "city":"Abbotsford", + "country":"Canada", + "state":"British Columbia", + "longitude":"-122.360000", + "latitude":"49.025278", + "latitude_minsec":"49°01'31.0000\"N", + "longitude_minsec":"122°21'36.0000\"W" + }, + { + "airport_name":"Aklavik Airport", + "local_id":"CYKD", + "iata":"LAK", + "icao":"CYKD", + "city":"Aklavik", + "country":"Canada", + "state":"Northwest Territories", + "longitude":"-135.000000", + "latitude":"68.223333", + "latitude_minsec":"68°13'24.0000\"N", + "longitude_minsec":"135°00'00.0000\"W" + }, + { + "airport_name":"Amos/Magny Airport", + "local_id":"CYEY", + "iata":"YEY", + "icao":"CYEY", + "city":"Amos", + "country":"Canada", + "state":"Quebec", + "longitude":"-78.249722", + "latitude":"48.563889", + "latitude_minsec":"48°33'50.0000\"N", + "longitude_minsec":"078°14'59.0000\"W" + }, + { + "airport_name":"Anahim Lake Airport", + "local_id":"CAJ4", + "iata":"YAA", + "icao":"", + "city":"Anahim Lake", + "country":"Canada", + "state":"British Columbia", + "longitude":"-125.304444", + "latitude":"52.452222", + "latitude_minsec":"52°27'08.0000\"N", + "longitude_minsec":"125°18'16.0000\"W" + }, + { + "airport_name":"Atikokan Municipal Airport", + "local_id":"CYIB", + "iata":"YIB", + "icao":"CYIB", + "city":"Atikokan", + "country":"Canada", + "state":"Ontario", + "longitude":"-91.638611", + "latitude":"48.773889", + "latitude_minsec":"48°46'26.0000\"N", + "longitude_minsec":"091°38'19.0000\"W" + }, + { + "airport_name":"Atlin Airport", + "local_id":"CYSQ", + "iata":"", + "icao":"CYSQ", + "city":"Atlin", + "country":"Canada", + "state":"British Columbia", + "longitude":"-133.671389", + "latitude":"59.576389", + "latitude_minsec":"59°34'35.0000\"N", + "longitude_minsec":"133°40'17.0000\"W" + }, + { + "airport_name":"Bar River Airport", + "local_id":"CPF2", + "iata":"", + "icao":"", + "city":"Bar River", + "country":"Canada", + "state":"Ontario", + "longitude":"-84.092222", + "latitude":"46.420278", + "latitude_minsec":"46°25'13.0000\"N", + "longitude_minsec":"084°05'32.0000\"W" + }, + { + "airport_name":"Lake Simcoe Regional Airport", + "local_id":"CYLS", + "iata":"YLK", + "icao":"CYLS", + "city":"Barrie-Orillia", + "country":"Canada", + "state":"Ontario", + "longitude":"-79.555556", + "latitude":"44.485278", + "latitude_minsec":"44°29'07.0000\"N", + "longitude_minsec":"079°33'20.0000\"W" + }, + { + "airport_name":"Beaver Creek Airport", + "local_id":"CYXQ", + "iata":"YXQ", + "icao":"CYXQ", + "city":"Beaver Creek", + "country":"Canada", + "state":"Yukon Territory", + "longitude":"-140.868889", + "latitude":"62.410278", + "latitude_minsec":"62°24'37.0000\"N", + "longitude_minsec":"140°52'08.0000\"W" + }, + { + "airport_name":"Bella Coola Airport", + "local_id":"CYBD", + "iata":"QBC", + "icao":"CYBD", + "city":"Bella Coola", + "country":"Canada", + "state":"British Columbia", + "longitude":"-126.595833", + "latitude":"52.387500", + "latitude_minsec":"52°23'15.0000\"N", + "longitude_minsec":"126°35'45.0000\"W" + }, + { + "airport_name":"Vancouver/Boundary Bay Airport", + "local_id":"CZBB", + "iata":"YDT", + "icao":"CZBB", + "city":"Boundary Bay", + "country":"Canada", + "state":"British Columbia", + "longitude":"-123.007500", + "latitude":"49.074167", + "latitude_minsec":"49°04'27.0000\"N", + "longitude_minsec":"123°00'27.0000\"W" + }, + { + "airport_name":"Burwash Airport", + "local_id":"CYDB", + "iata":"YDB", + "icao":"CYDB", + "city":"Burwash", + "country":"Canada", + "state":"Yukon Territory", + "longitude":"-139.040000", + "latitude":"61.370556", + "latitude_minsec":"61°22'14.0000\"N", + "longitude_minsec":"139°02'24.0000\"W" + }, + { + "airport_name":"Burns Lake Airport", + "local_id":"CYPZ", + "iata":"YPZ", + "icao":"CYPZ", + "city":"Burns Lake", + "country":"Canada", + "state":"British Columbia", + "longitude":"-125.951389", + "latitude":"54.376389", + "latitude_minsec":"54°22'35.0000\"N", + "longitude_minsec":"125°57'05.0000\"W" + }, + { + "airport_name":"Campbell River Airport", + "local_id":"CYBL", + "iata":"YBL", + "icao":"CYBL", + "city":"Campbell River", + "country":"Canada", + "state":"British Columbia", + "longitude":"-125.273056", + "latitude":"49.951944", + "latitude_minsec":"49°57'07.0000\"N", + "longitude_minsec":"125°16'23.0000\"W" + }, + { + "airport_name":"Carmacks Airport", + "local_id":"CEX4", + "iata":"", + "icao":"", + "city":"Carmacks", + "country":"Canada", + "state":"Yukon Territory", + "longitude":"-136.178333", + "latitude":"62.110833", + "latitude_minsec":"62°06'39.0000\"N", + "longitude_minsec":"136°10'42.0000\"W" + }, + { + "airport_name":"Chapman Airport", + "local_id":"CEZ2", + "iata":"", + "icao":"", + "city":"Chapman", + "country":"Canada", + "state":"Yukon Territory", + "longitude":"-138.266667", + "latitude":"64.900000", + "latitude_minsec":"64°54'00.0000\"N", + "longitude_minsec":"138°16'00.0000\"W" + }, + { + "airport_name":"Dawson City Airport", + "local_id":"CYDA", + "iata":"YDA", + "icao":"CYDA", + "city":"Dawson City", + "country":"Canada", + "state":"Yukon Territory", + "longitude":"-139.130278", + "latitude":"64.042222", + "latitude_minsec":"64°02'32.0000\"N", + "longitude_minsec":"139°07'49.0000\"W" + }, + { + "airport_name":"Dease Lake Airport", + "local_id":"CYDL", + "iata":"YDL", + "icao":"CYDL", + "city":"Dease Lake", + "country":"Canada", + "state":"British Columbia", + "longitude":"-130.031389", + "latitude":"58.422222", + "latitude_minsec":"58°25'20.0000\"N", + "longitude_minsec":"130°01'53.0000\"W" + }, + { + "airport_name":"Haines Junction Airport", + "local_id":"CYHT", + "iata":"YHT", + "icao":"CYHT", + "city":"Haines Junction", + "country":"Canada", + "state":"Yukon Territory", + "longitude":"-137.545556", + "latitude":"60.789167", + "latitude_minsec":"60°47'21.0000\"N", + "longitude_minsec":"137°32'44.0000\"W" + }, + { + "airport_name":"Masset Airport", + "local_id":"CZMT", + "iata":"ZMT", + "icao":"CZMT", + "city":"Masset", + "country":"Canada", + "state":"British Columbia", + "longitude":"-132.125000", + "latitude":"54.027222", + "latitude_minsec":"54°01'38.0000\"N", + "longitude_minsec":"132°07'30.0000\"W" + } + ] + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "totals":{ + "type":"integer" + }, + "result":{ + "type":"string" + }, + "airport":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "airport_name":{ + "type":"string" + }, + "local_id":{ + "type":"string" + }, + "iata":{ + "type":"string" + }, + "icao":{ + "type":"string" + }, + "city":{ + "type":"string" + }, + "country":{ + "type":"string" + }, + "state":{ + "type":"string" + }, + "longitude":{ + "type":"string" + }, + "latitude":{ + "type":"string" + }, + "latitude_minsec":{ + "type":"string" + }, + "longitude_minsec":{ + "type":"string" + } + } + } + } + } + } + }, + { + "name":"Airport Details given an Airport ID", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/get_airport", + "description":"Enter an airport ID (FAA, IATA, ICAO, local) and get general information regarding that airport.", + "method":"GET", + "required_parameters":[ + { + "name":"airport_id", + "type":"STRING", + "description":"Enter the airport ID. This can be an IATA ID, ICAO ID, FAA ID, TC ID, or any locally used ID for that airport.", + "default":"KLAX" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/get_airport\"\nquerystring = {\"airport_id\": airport_id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "local_id":"LAX", + "icao_id":"KLAX", + "iata_id":"LAX", + "name":"Los Angeles International", + "airport_code":"LAX", + "type":"Airport", + "city":"Los Angeles", + "lon_format":"118-24-28.0900W", + "lat_format":"33-56-33.4500N", + "lat_map":"33.942625", + "lon_map":"-118.407803", + "country_code":"US", + "country":"United States", + "state_abbrev":"CA", + "state":"California", + "owner":"CITY OF LOS ANGELES", + "owner_address":"1 WORLD WAY BOX 92216", + "owner_csz":"LOS ANGELES, CA 90009-2216", + "owner_phone":"424-646-5292", + "manager":"KEITH WILSCHETZ", + "manager_address":"ONE WORLD WAY", + "manager_csz":"LOS ANGELES, CA 90009", + "manager_phone":"424-646-5060", + "gmt":"-8.0", + "elevation":"127.7", + "magnetic_variation":"12.1 E", + "commercial_airports_only":"1", + "link_path":"https://airportguide.com/airport/info/LAX" + }, + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "local_id":{ + "type":"string" + }, + "icao_id":{ + "type":"string" + }, + "iata_id":{ + "type":"string" + }, + "name":{ + "type":"string" + }, + "airport_code":{ + "type":"string" + }, + "type":{ + "type":"string" + }, + "city":{ + "type":"string" + }, + "lon_format":{ + "type":"string" + }, + "lat_format":{ + "type":"string" + }, + "lat_map":{ + "type":"string" + }, + "lon_map":{ + "type":"string" + }, + "country_code":{ + "type":"string" + }, + "country":{ + "type":"string" + }, + "state_abbrev":{ + "type":"string" + }, + "state":{ + "type":"string" + }, + "owner":{ + "type":"string" + }, + "owner_address":{ + "type":"string" + }, + "owner_csz":{ + "type":"string" + }, + "owner_phone":{ + "type":"string" + }, + "manager":{ + "type":"string" + }, + "manager_address":{ + "type":"string" + }, + "manager_csz":{ + "type":"string" + }, + "manager_phone":{ + "type":"string" + }, + "gmt":{ + "type":"string" + }, + "elevation":{ + "type":"string" + }, + "magnetic_variation":{ + "type":"string" + }, + "commercial_airports_only":{ + "type":"string" + }, + "link_path":{ + "type":"string" + } + } + } + } + }, + { + "name":"Airport Count by Type and Country", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/count_airporttypebycountry", + "description":"Enter the Country Code to get the total number of airports in the country and the totals by Landing Facility Type (Airport, Balloonport, Gliderport, Heliport, Seaplane Base, Ultralight). Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/", + "method":"GET", + "required_parameters":[ + { + "name":"country", + "type":"STRING", + "description":"Enter the Code of the country. e.g. country=CA", + "default":"CA" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/count_airporttypebycountry\"\nquerystring = {\"country\": country}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "total_airports":2688, + "Airport_Types":"Airport, Balloonport, Gliderport, Heliport, Seaplane Base, Ultralight", + "country_name":"Canada", + "result":"Success", + "airport_count":[ + { + "type":"Undefined", + "no_airport":"508" + }, + { + "type":"Airport", + "no_airport":"1358" + }, + { + "type":"Heliport", + "no_airport":"423" + }, + { + "type":"Seaplane Base", + "no_airport":"399" + } + ] + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "total_airports":{ + "type":"integer" + }, + "Airport_Types":{ + "type":"string" + }, + "country_name":{ + "type":"string" + }, + "result":{ + "type":"string" + }, + "airport_count":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "type":{ + "type":"string" + }, + "no_airport":{ + "type":"string" + } + } + } + } + } + } + }, + { + "name":"Airport Details by IATA", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/get_airport_by_iata", + "description":"Enter an IATA airport ID and get general information regarding that airport.", + "method":"GET", + "required_parameters":[ + { + "name":"airport_id", + "type":"STRING", + "description":"Enter the IATA airport ID to receive the airport's details.", + "default":"LAX" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/get_airport_by_iata\"\nquerystring = {\"airport_id\": airport_id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "local_id":"LAX", + "icao_id":"KLAX", + "iata_id":"LAX", + "name":"Los Angeles International", + "airport_code":"LAX", + "type":"Airport", + "city":"Los Angeles", + "lon_format":"118-24-28.0900W", + "lat_format":"33-56-33.4500N", + "lat_map":"33.942625", + "lon_map":"-118.407803", + "country_code":"US", + "country":"United States", + "state_abbrev":"CA", + "state":"California", + "owner":"CITY OF LOS ANGELES", + "owner_address":"1 WORLD WAY BOX 92216", + "owner_csz":"LOS ANGELES, CA 90009-2216", + "owner_phone":"424-646-5292", + "manager":"KEITH WILSCHETZ", + "manager_address":"ONE WORLD WAY", + "manager_csz":"LOS ANGELES, CA 90009", + "manager_phone":"424-646-5060", + "gmt":"-8.0", + "elevation":"127.7", + "magnetic_variation":"12.1 E", + "commercial_airports_only":"1", + "link_path":"https://airportguide.com/airport/info/LAX" + }, + "headers":{}, + "schema":{ + "items":{ + "properties":{ + "airport_code":{ + "type":"string" + }, + "city":{ + "type":"string" + }, + "commercial_airports_only":{ + "type":"string" + }, + "country":{ + "type":"string" + }, + "country_code":{ + "type":"string" + }, + "elevation":{ + "type":"string" + }, + "gmt":{ + "type":"string" + }, + "iata_id":{ + "type":"string" + }, + "icao_id":{ + "type":"string" + }, + "lat_format":{ + "type":"string" + }, + "lat_map":{ + "type":"string" + }, + "link_path":{ + "type":"string" + }, + "local_id":{ + "type":"string" + }, + "lon_format":{ + "type":"string" + }, + "lon_map":{ + "type":"string" + }, + "magnetic_variation":{ + "type":"string" + }, + "manager":{ + "type":"string" + }, + "manager_address":{ + "type":"string" + }, + "manager_csz":{ + "type":"string" + }, + "manager_phone":{ + "type":"string" + }, + "name":{ + "type":"string" + }, + "owner":{ + "type":"string" + }, + "owner_address":{ + "type":"string" + }, + "owner_csz":{ + "type":"string" + }, + "owner_phone":{ + "type":"string" + }, + "state":{ + "type":"string" + }, + "state_abbrev":{ + "type":"string" + }, + "type":{ + "type":"string" + } + }, + "type":"object" + }, + "type":"array" + } + }, + { + "name":"Airport Count by Use and Country", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/count_airportusebycountry", + "description":"An Api Call which returns: Enter the Country Name to get the total number of airports in the country and the totals by Landing Facility Use. Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/", + "method":"GET", + "required_parameters":[ + { + "name":"country", + "type":"STRING", + "description":"Enter the CODE of the country. e.g. Country=CA", + "default":"US" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/count_airportusebycountry\"\nquerystring = {\"country\": country}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "total_airports":19616, + "country_name":"United States", + "result":"Success", + "airport_count":[ + { + "airport_use":"Private", + "no_airport":"14478" + }, + { + "airport_use":"Public", + "no_airport":"5124" + }, + { + "airport_use":"Unknown", + "no_airport":"14" + } + ] + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "total_airports":{ + "type":"integer" + }, + "country_name":{ + "type":"string" + }, + "result":{ + "type":"string" + }, + "airport_count":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "airport_use":{ + "type":"string" + }, + "no_airport":{ + "type":"string" + } + } + } + } + } + } + }, + { + "name":"OFFLINE - FBO & FUEL", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getfbo", + "description":"The FBO & FUEL API will search airport Fixed Based Operators by airport, fuel, services, and more. Review Parameter List.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"STRING", + "description":"Get FBO & Fuel Search by Code, this is mandatory Parameter when you request for detail. You need to pass AIRPORT code LAX", + "default":"LAX" + } + ], + "optional_parameters":[ + { + "name":"param", + "type":"STRING", + "description":"Airportguide provides accurate Data, Be specific what you searched by this saves your time and Query returns more accurate result. An optional Parameter List: business_name, services, fuel_brand, fuel_grade, offset. You need to pass json format parameters similar to above example.", + "default":"{business_name:Signature Flight Support,services:,fuel_brand:,fuel_grade:,offset:0}" + } + ], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getfbo\"\nquerystring = {\"code\": code, \"param\": param}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "totals":1, + "pageNumber":"0", + "result":"Success", + "FBO":[ + { + "business_name":"Signature Flight Support", + "airport_code":"LAX", + "city":"Los Angeles", + "country":"United States", + "state":"California", + "airport_name":"Los Angeles International", + "office_hours":"24 hours/7 days a week", + "Frequencies":"Unicom: 122.95, Arinc: 130.6", + "services":"Car Rentals
Catering
Computerized Weather
Fuel
Parking (Ramp)
Pilot Supplies / Gifts
Refreshments
Restrooms
Wireless Internet", + "fuel_brand":"Independent", + "fuel_grade":"", + "business_link":"http://airportguide.com/fbo/119294/Signature_Flight_Support" + } + ] + }, + "headers":{}, + "schema":{ + "properties":{ + "FBO":{ + "items":{ + "properties":{ + "Frequencies":{ + "type":"string" + }, + "airport_code":{ + "type":"string" + }, + "airport_name":{ + "type":"string" + }, + "business_link":{ + "type":"string" + }, + "business_name":{ + "type":"string" + }, + "city":{ + "type":"string" + }, + "country":{ + "type":"string" + }, + "fuel_brand":{ + "type":"string" + }, + "fuel_grade":{ + "type":"string" + }, + "office_hours":{ + "type":"string" + }, + "services":{ + "type":"string" + }, + "state":{ + "type":"string" + } + }, + "type":"object" + }, + "type":"array" + }, + "pageNumber":{ + "type":"string" + }, + "result":{ + "type":"string" + }, + "totals":{ + "type":"integer" + } + }, + "type":"object" + } + }, + { + "name":"OFFLINE - All Delays US", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/all_delay", + "description":"Retrieve real-time airport ground delays for US and Southern Canadian airports.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/all_delay\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"OFFLINE - Get METAR Detail", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getmetar", + "description":"Get current METAR details given any latitude/longitude combination. The API finds METAR reports within a 100 mile radius.", + "method":"GET", + "required_parameters":[ + { + "name":"long", + "type":"STRING", + "description":"Pass longitude -104.65", + "default":"-104.65" + }, + { + "name":"lat", + "type":"STRING", + "description":"Pass latitude 39.83", + "default":"39.83" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getmetar\"\nquerystring = {\"long\": long, \"lat\": lat}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"OFFLINE - Get TAF Detail", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/gettaf", + "description":"Get current Terminal Area Forecast (TAF) details given any latitude/longitude combination. The API finds METAR reports within a 20 mile radius or returns an error.", + "method":"GET", + "required_parameters":[ + { + "name":"long", + "type":"STRING", + "description":"Pass Longitude -104.65", + "default":"-104.65" + }, + { + "name":"lat", + "type":"STRING", + "description":"Pass Latitude 39.83", + "default":"39.83" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/gettaf\"\nquerystring = {\"long\": long, \"lat\": lat}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Airline by Country", + "url":"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/airline_bycountry", + "description":"Retrieve a list of airlines by entering the country code. The successful call returns the following data: Airline Name, IATA ID, ICAO ID, Country, Airline Url, Call Signs.Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/ Condition Apply: API accepts offset till 5 only. Contact us for more!", + "method":"GET", + "required_parameters":[ + { + "name":"country", + "type":"STRING", + "description":"Pass the Country code, Don't have Country code list? Refer AirportGuide's Country List here: https://airportguide.com/search/browse-airports-by-country", + "default":"CA" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/airline_bycountry\"\nquerystring = {\"country\": country}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airport_guide_aviation_info/api.py b/toolbench/toolenv/tools/Travel/airport_guide_aviation_info/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a1142b9a809c8c7a9aca03d83c8dcf74f16e3f78 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airport_guide_aviation_info/api.py @@ -0,0 +1,236 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airport_details_by_use_country_type_and_city(city: str, type: str, country: str, airport_use: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve a list of airports by entering the country and one or more of the following optional fields: airport use (public, private, military), facility type and city name. The successful call returns the following data: Airport Name, IATA ID, ICAO ID, City, State, Country, Latitude, Longitude. Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/ + Note: The results are limited to 5000 records." + city: Name of the city + type: Valid landing facility types are: Airport, Balloonport, Gliderport, Heliport, Seaplane Base, or Ultralight + country: Enter the code of the country. e.g. country=CA + airport_use: Enter the landing facility use (public, private, military). + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getairport_by_use" + querystring = {'city': city, 'type': type, 'country': country, 'airport_use': airport_use, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_details_given_an_airport_id(airport_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter an airport ID (FAA, IATA, ICAO, local) and get general information regarding that airport." + airport_id: Enter the airport ID. This can be an IATA ID, ICAO ID, FAA ID, TC ID, or any locally used ID for that airport. + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/get_airport" + querystring = {'airport_id': airport_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_count_by_type_and_country(country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter the Country Code to get the total number of airports in the country and the totals by Landing Facility Type (Airport, Balloonport, Gliderport, Heliport, Seaplane Base, Ultralight). Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/" + country: Enter the Code of the country. e.g. country=CA + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/count_airporttypebycountry" + querystring = {'country': country, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_details_by_iata(airport_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Enter an IATA airport ID and get general information regarding that airport." + airport_id: Enter the IATA airport ID to receive the airport's details. + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/get_airport_by_iata" + querystring = {'airport_id': airport_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_count_by_use_and_country(country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "An Api Call which returns: Enter the Country Name to get the total number of airports in the country and the totals by Landing Facility Use. Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/" + country: Enter the CODE of the country. e.g. Country=CA + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/count_airportusebycountry" + querystring = {'country': country, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def offline_fbo_fuel(code: str, param: str='{business_name:Signature Flight Support,services:,fuel_brand:,fuel_grade:,offset:0}', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The FBO & FUEL API will search airport Fixed Based Operators by airport, fuel, services, and more. Review Parameter List." + code: Get FBO & Fuel Search by Code, this is mandatory Parameter when you request for detail. You need to pass AIRPORT code LAX + param: Airportguide provides accurate Data, Be specific what you searched by this saves your time and Query returns more accurate result. An optional Parameter List: business_name, services, fuel_brand, fuel_grade, offset. You need to pass json format parameters similar to above example. + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getfbo" + querystring = {'code': code, } + if param: + querystring['param'] = param + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def offline_all_delays_us(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve real-time airport ground delays for US and Southern Canadian airports." + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/all_delay" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def offline_get_metar_detail(long: str, lat: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get current METAR details given any latitude/longitude combination. The API finds METAR reports within a 100 mile radius." + long: Pass longitude -104.65 + lat: Pass latitude 39.83 + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/getmetar" + querystring = {'long': long, 'lat': lat, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def offline_get_taf_detail(long: str, lat: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get current Terminal Area Forecast (TAF) details given any latitude/longitude combination. The API finds METAR reports within a 20 mile radius or returns an error." + long: Pass Longitude -104.65 + lat: Pass Latitude 39.83 + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/gettaf" + querystring = {'long': long, 'lat': lat, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airline_by_country(country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrieve a list of airlines by entering the country code. The successful call returns the following data: Airline Name, IATA ID, ICAO ID, Country, Airline Url, Call Signs.Airportguide provides Country Data List: https://airportguide.com/search/browse-airports-by-country/ Condition Apply: API accepts offset till 5 only. Contact us for more!" + country: Pass the Country code, Don't have Country code list? Refer AirportGuide's Country List here: https://airportguide.com/search/browse-airports-by-country + + """ + url = f"https://forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com/airline_bycountry" + querystring = {'country': country, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "forteweb-airportguide-airport-basic-info-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airports_finder.json b/toolbench/toolenv/tools/Travel/airports_finder.json new file mode 100644 index 0000000000000000000000000000000000000000..1fe9c78b18101d4e2111a378d20227d24610180b --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airports_finder.json @@ -0,0 +1,103 @@ +{ + "tool_name":"Airports Finder", + "tool_description":"Airport Finder is a robust API designed to locate airports worldwide. It provides accurate and up-to-date information about airports, including names, IATA codes, locations, time zones, and more. With its easy integration and comprehensive data, Airport Finder simplifies the process of incorporating airport information into your application. Deploy it to enhance travel-related services, flight booking platforms, or any application that requires efficient airport search capabilities.", + "title":"Airports Finder", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":861, + "avgSuccessRate":0, + "popularityScore":0.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/wingsapi/api/airports-finder1/", + "host":"airports-finder1.p.rapidapi.com", + "api_list":[ + { + "name":"Get Airports By Coordinates", + "url":"https://airports-finder1.p.rapidapi.com/airports/coordinates/{lat}/{lon}", + "description":"The \"Get Airports By Coordinates\" API enables you to retrieve a list of airports based on specific latitude and longitude coordinates. By providing the latitude and longitude values, this API returns comprehensive details about airports located within that vicinity. This information includes airport names, IATA codes, locations, and additional relevant data.", + "method":"GET", + "required_parameters":[ + { + "name":"lon", + "type":"string", + "description":"", + "default":"-97.0409" + }, + { + "name":"lat", + "type":"string", + "description":"", + "default":"32.9222" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-finder1.p.rapidapi.com/airports/coordinates/{lat}/{lon}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-finder1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airports By Country", + "url":"https://airports-finder1.p.rapidapi.com/airports/country/{country}", + "description":"The \"Get Airports By Country\" API allows you to easily retrieve a list of airports based on a specific country. This API provides comprehensive details about airports, including their names, IATA codes, locations, and additional information.", + "method":"GET", + "required_parameters":[ + { + "name":"country", + "type":"string", + "description":"", + "default":"United States" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-finder1.p.rapidapi.com/airports/country/{country}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-finder1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airports By City", + "url":"https://airports-finder1.p.rapidapi.com/airports/city/{city}", + "description":"The \"Get Airports By City\" API enables you to effortlessly retrieve a list of airports based on a specific city. This API provides comprehensive details about airports, including their names, IATA codes, locations, and additional information.", + "method":"GET", + "required_parameters":[ + { + "name":"city", + "type":"string", + "description":"", + "default":"dallas" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-finder1.p.rapidapi.com/airports/city/{city}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-finder1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Airport Details By Code", + "url":"https://airports-finder1.p.rapidapi.com/airports/{code}", + "description":"The \"Get Airport Details By Code\" API allows you to quickly retrieve comprehensive information about airports based on their IATA codes. Obtain precise details such as airport names, locations, time zones, and more with this efficient and reliable API.", + "method":"GET", + "required_parameters":[ + { + "name":"code", + "type":"string", + "description":"", + "default":"DFW" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-finder1.p.rapidapi.com/airports/{code}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-finder1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airports_finder/api.py b/toolbench/toolenv/tools/Travel/airports_finder/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c0f93c3c21b2fe24ce0dafec9966911dae8d64d4 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airports_finder/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_airports_by_coordinates(lon: str, lat: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The "Get Airports By Coordinates" API enables you to retrieve a list of airports based on specific latitude and longitude coordinates. By providing the latitude and longitude values, this API returns comprehensive details about airports located within that vicinity. This information includes airport names, IATA codes, locations, and additional relevant data." + + """ + url = f"https://airports-finder1.p.rapidapi.com/airports/coordinates/{lat}/{lon}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-finder1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airports_by_country(country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The "Get Airports By Country" API allows you to easily retrieve a list of airports based on a specific country. This API provides comprehensive details about airports, including their names, IATA codes, locations, and additional information." + + """ + url = f"https://airports-finder1.p.rapidapi.com/airports/country/{country}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-finder1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airports_by_city(city: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The "Get Airports By City" API enables you to effortlessly retrieve a list of airports based on a specific city. This API provides comprehensive details about airports, including their names, IATA codes, locations, and additional information." + + """ + url = f"https://airports-finder1.p.rapidapi.com/airports/city/{city}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-finder1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_airport_details_by_code(code: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The "Get Airport Details By Code" API allows you to quickly retrieve comprehensive information about airports based on their IATA codes. Obtain precise details such as airport names, locations, time zones, and more with this efficient and reliable API." + + """ + url = f"https://airports-finder1.p.rapidapi.com/airports/{code}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-finder1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airports_info.json b/toolbench/toolenv/tools/Travel/airports_info.json new file mode 100644 index 0000000000000000000000000000000000000000..5060fee1206c64d6fc8d3873a6c1a51ffb3d9d04 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airports_info.json @@ -0,0 +1,58 @@ +{ + "tool_name":"Airports Info (α)", + "tool_description":"All airports around the globe are here.\nTHIS IS A TEST\n\n", + "title":"Airports Info (α)", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":398, + "avgSuccessRate":100, + "popularityScore":8.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/lucabianchi.2000/api/airports-info-a/", + "host":"airports-info-a.p.rapidapi.com", + "api_list":[ + { + "name":"Airport Info", + "url":"https://airports-info-a.p.rapidapi.com/", + "description":"Get airport details\nIf you want a specific airport, say it in a comment", + "method":"GET", + "required_parameters":[ + { + "name":"IATA", + "type":"STRING", + "description":"IATA Airport", + "default":"JFK" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-info-a.p.rapidapi.com/\"\nquerystring = {\"IATA\": iata}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-info-a.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "airport":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "IATA":{ + "type":"string" + }, + "ICAO":{ + "type":"string" + } + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airports_info/api.py b/toolbench/toolenv/tools/Travel/airports_info/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d80c3d62a582f0e379051db55a087cfda68b805e --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airports_info/api.py @@ -0,0 +1,31 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def airport_info(iata: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get airport details + If you want a specific airport, say it in a comment" + iata: IATA Airport + + """ + url = f"https://airports-info-a.p.rapidapi.com/" + querystring = {'IATA': iata, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-info-a.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/airports_worldwide.json b/toolbench/toolenv/tools/Travel/airports_worldwide.json new file mode 100644 index 0000000000000000000000000000000000000000..26775bf935f87b3cad055919e255c5aa0b97f7d0 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airports_worldwide.json @@ -0,0 +1,439 @@ +{ + "tool_name":"Airports Worldwide", + "tool_description":"Worldwide Airports information. Demo site: https://core-api.net/airport/airports.html", + "title":"Airports Worldwide", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":3545, + "avgSuccessRate":100, + "popularityScore":9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/ai-box-ai-box-default/api/airports-worldwide/", + "host":"airports-worldwide.p.rapidapi.com", + "api_list":[ + { + "name":"List of airports by coordinate within 500km radius", + "url":"https://airports-worldwide.p.rapidapi.com/get_airports/{latitude}/{longitude}", + "description":"List of airports available within coordinate in 500km radius.", + "method":"GET", + "required_parameters":[ + { + "name":"longitude", + "type":"string", + "description":"Longitude", + "default":"174.7741" + }, + { + "name":"latitude", + "type":"string", + "description":"Latitude", + "default":"-36.8530" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-worldwide.p.rapidapi.com/get_airports/{latitude}/{longitude}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-worldwide.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":"[\n\t{\n\t\t\"elevation\": 13,\n\t\t\"icao\": \"NZWS\",\n\t\t\"longitude\": 171.581,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Westport\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WSZ\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4199,\n\t\t\t\t\t\"m\": 1280\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"04\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4199,\n\t\t\t\t\t\"m\": 1280\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"22\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WSZ.png\",\n\t\t\"region_name\": \"West Coast\",\n\t\t\"airport\": \"Westport Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Westport_Airport\",\n\t\t\"latitude\": -41.7381\n\t},\n\t{\n\t\t\"elevation\": 109,\n\t\t\"icao\": \"NZWB\",\n\t\t\"longitude\": 173.87,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Blenheim\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"BHE\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4675,\n\t\t\t\t\t\"m\": 1425\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"06\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3878,\n\t\t\t\t\t\"m\": 1182\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Grass\",\n\t\t\t\t\t\"code\": \"GRAS\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"10\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4675,\n\t\t\t\t\t\"m\": 1425\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"24\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3878,\n\t\t\t\t\t\"m\": 1182\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Grass\",\n\t\t\t\t\t\"code\": \"GRAS\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"28\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/BHE.png\",\n\t\t\"region_name\": \"Marlborough\",\n\t\t\"airport\": \"Woodbourne Airport\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -41.5183\n\t},\n\t{\n\t\t\"elevation\": 140,\n\t\t\"icao\": \"NZOK\",\n\t\t\"longitude\": 173.956,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Picton\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"PCN\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/PCN.png\",\n\t\t\"region_name\": \"Marlborough\",\n\t\t\"airport\": \"Picton Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -41.3461\n\t},\n\t{\n\t\t\"elevation\": 41,\n\t\t\"icao\": \"NZWN\",\n\t\t\"longitude\": 174.805,\n\t\t\"url\": \"http://www.wellingtonairport.co.nz/\",\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10049749\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/44198_1612334575.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Orson Downes\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9684035\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/56754_1586241550.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Joel Hanks\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/8306287\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/54377_1466489920.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Bob Leask\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10049749\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/44198_1612334575.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Orson Downes\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9684035\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/56754_1586241550.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Joel Hanks\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/8306287\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/54377_1466489920.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Bob Leask\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10049749\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/44198_1612334575_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Orson Downes\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9684035\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/56754_1586241550_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Joel Hanks\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/8306287\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/54377_1466489920_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Bob Leask\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Wellington\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WLG\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 5955,\n\t\t\t\t\t\"m\": 1815\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Bituminous\",\n\t\t\t\t\t\"code\": \"BITU\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"16\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 5955,\n\t\t\t\t\t\"m\": 1815\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Bituminous\",\n\t\t\t\t\t\"code\": \"BITU\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"34\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WLG.png\",\n\t\t\"region_name\": \"Wellington\",\n\t\t\"airport\": \"Wellington International Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Wellington_International_Airport\",\n\t\t\"latitude\": -41.3272\n\t},\n\t{\n\t\t\"elevation\": 17,\n\t\t\"icao\": \"NZNS\",\n\t\t\"longitude\": 173.221,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10778282\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/46863_1668246254.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10265013\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/29879_1628912553.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9625422\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/45297_1582069239.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Rolf Jonsen\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9627383\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/65814_1582264112.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Sean Avery\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7013737\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/2/92973_1293343422.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"ZK-TUI\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10778282\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/46863_1668246254.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10265013\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/29879_1628912553.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9625422\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/45297_1582069239.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Rolf Jonsen\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9627383\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/65814_1582264112.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Sean Avery\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7013737\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/2/92973_1293343422.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"ZK-TUI\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10778282\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/46863_1668246254_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10265013\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/29879_1628912553_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9625422\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/45297_1582069239_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Rolf Jonsen\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9627383\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/65814_1582264112_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Sean Avery\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7013737\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/2/92973_1293343422_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"ZK-TUI\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Nelson\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"NSN\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4419,\n\t\t\t\t\t\"m\": 1347\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"02\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4419,\n\t\t\t\t\t\"m\": 1347\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"20\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/NSN.png\",\n\t\t\"region_name\": \"Nelson\",\n\t\t\"airport\": \"Nelson Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Nelson_Airport\",\n\t\t\"latitude\": -41.2983\n\t},\n\t{\n\t\t\"elevation\": 38,\n\t\t\"icao\": \"NZMK\",\n\t\t\"longitude\": 172.989,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10320119\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/92274_1632651156.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9667724\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/18040_1585382493.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10320119\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/92274_1632651156.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9667724\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/18040_1585382493.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10320119\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/92274_1632651156_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9667724\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/18040_1585382493_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Cody Forward\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Motueka\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"MZP\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/MZP.png\",\n\t\t\"region_name\": \"Tasman\",\n\t\t\"airport\": \"Motueka Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -41.1233\n\t},\n\t{\n\t\t\"elevation\": 364,\n\t\t\"icao\": \"NZMS\",\n\t\t\"longitude\": 175.634,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Masterton\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"MRO\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3953,\n\t\t\t\t\t\"m\": 1205\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"06\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3953,\n\t\t\t\t\t\"m\": 1205\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"24\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/MRO.png\",\n\t\t\"region_name\": \"Wellington\",\n\t\t\"airport\": \"Hood Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -40.9733\n\t},\n\t{\n\t\t\"elevation\": 22,\n\t\t\"icao\": \"NZPP\",\n\t\t\"longitude\": 174.989,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7759232\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/4/85792_1390513049.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7759232\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/4/85792_1390513049.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7759232\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/4/85792_1390513049_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Paraparaumu\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"PPQ\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3894,\n\t\t\t\t\t\"m\": 1187\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"16\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3894,\n\t\t\t\t\t\"m\": 1187\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"34\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/PPQ.png\",\n\t\t\"region_name\": \"Wellington\",\n\t\t\"airport\": \"Kapiti Coast Airport\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -40.9047\n\t},\n\t{\n\t\t\"elevation\": 97,\n\t\t\"icao\": \"NZTK\",\n\t\t\"longitude\": 172.775,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9566453\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/71545_1577690172.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Rolf Jonsen\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9566453\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/71545_1577690172.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Rolf Jonsen\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9566453\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/71545_1577690172_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Rolf Jonsen\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Takaka\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"KTF\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 2730,\n\t\t\t\t\t\"m\": 832\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"18\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 2730,\n\t\t\t\t\t\"m\": 832\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"36\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/KTF.png\",\n\t\t\"region_name\": \"Tasman\",\n\t\t\"airport\": \"Takaka Aerodrome\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Takaka_Aerodrome\",\n\t\t\"latitude\": -40.8133\n\t},\n\t{\n\t\t\"elevation\": 151,\n\t\t\"icao\": \"NZPM\",\n\t\t\"longitude\": 175.617,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9842821\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/69539_1598482728.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Av_NZ Photography\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9764013\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/81250_1592207174.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Bailey Trowland\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9603732\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/41451_1580529659.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Jordan Williams\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9842821\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/69539_1598482728.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Av_NZ Photography\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9764013\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/81250_1592207174.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Bailey Trowland\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9603732\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/41451_1580529659.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Jordan Williams\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9842821\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/69539_1598482728_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Av_NZ Photography\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9764013\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/81250_1592207174_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Bailey Trowland\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9603732\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/41451_1580529659_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Jordan Williams\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Palmerston North\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"PMR\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6240,\n\t\t\t\t\t\"m\": 1902\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"07\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6240,\n\t\t\t\t\t\"m\": 1902\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"25\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/PMR.png\",\n\t\t\"region_name\": \"Manawatu-Wanganui\",\n\t\t\"airport\": \"Palmerston North Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Palmerston_North_International_Airport\",\n\t\t\"latitude\": -40.3206\n\t},\n\t{\n\t\t\"elevation\": 164,\n\t\t\"icao\": \"NZOH\",\n\t\t\"longitude\": 175.388,\n\t\t\"url\": \"http://www.airforce.mil.nz/about/hqbases/boh.htm\",\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"OHA\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 8005,\n\t\t\t\t\t\"m\": 2440\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"09\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6998,\n\t\t\t\t\t\"m\": 2133\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"15\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 8005,\n\t\t\t\t\t\"m\": 2440\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"27\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6998,\n\t\t\t\t\t\"m\": 2133\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"33\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/OHA.png\",\n\t\t\"region_name\": \"Manawatu-Wanganui\",\n\t\t\"airport\": \"RNZAF Base Ohakea\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -40.206\n\t},\n\t{\n\t\t\"elevation\": 36,\n\t\t\"icao\": \"NZWU\",\n\t\t\"longitude\": 175.025,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Whanganui\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WAG\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4501,\n\t\t\t\t\t\"m\": 1372\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"11\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4501,\n\t\t\t\t\t\"m\": 1372\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"29\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WAG.png\",\n\t\t\"region_name\": \"Manawatu-Wanganui\",\n\t\t\"airport\": \"Whanganui Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Wanganui_Airport\",\n\t\t\"latitude\": -39.9622\n\t},\n\t{\n\t\t\"elevation\": 6,\n\t\t\"icao\": \"NZNR\",\n\t\t\"longitude\": 176.87,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Napier\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"NPE\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 5741,\n\t\t\t\t\t\"m\": 1750\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"16\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 5741,\n\t\t\t\t\t\"m\": 1750\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"34\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/NPE.png\",\n\t\t\"region_name\": \"Hawke's Bay\",\n\t\t\"airport\": \"Hawke's Bay Airport\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -39.4658\n\t},\n\t{\n\t\t\"elevation\": 97,\n\t\t\"icao\": \"NZNP\",\n\t\t\"longitude\": 174.179,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"New Plymouth\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"NPL\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4298,\n\t\t\t\t\t\"m\": 1310\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"05\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4298,\n\t\t\t\t\t\"m\": 1310\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"23\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/NPL.png\",\n\t\t\"region_name\": \"Taranaki\",\n\t\t\"airport\": \"New Plymouth Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/New_Plymouth_Airport\",\n\t\t\"latitude\": -39.0086\n\t},\n\t{\n\t\t\"elevation\": 42,\n\t\t\"icao\": \"NZWO\",\n\t\t\"longitude\": 177.407,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Wairoa\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WIR\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 2999,\n\t\t\t\t\t\"m\": 914\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"16\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 2999,\n\t\t\t\t\t\"m\": 914\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"34\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WIR.png\",\n\t\t\"region_name\": \"Hawke's Bay\",\n\t\t\"airport\": \"Wairoa Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -39.0069\n\t},\n\t{\n\t\t\"elevation\": 1335,\n\t\t\"icao\": \"NZAP\",\n\t\t\"longitude\": 176.084,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Taupo\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"TUO\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4547,\n\t\t\t\t\t\"m\": 1386\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"17\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4547,\n\t\t\t\t\t\"m\": 1386\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"35\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/TUO.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Taupo Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Taupo_Airport\",\n\t\t\"latitude\": -38.7397\n\t},\n\t{\n\t\t\"elevation\": 15,\n\t\t\"icao\": \"NZGS\",\n\t\t\"longitude\": 177.978,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10933502\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/2413520_1682409642.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"FR24\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10933502\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/2413520_1682409642.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"FR24\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10933502\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/2413520_1682409642_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"FR24\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Gisborne\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"GIS\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4298,\n\t\t\t\t\t\"m\": 1310\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"14\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4298,\n\t\t\t\t\t\"m\": 1310\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"32\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/GIS.png\",\n\t\t\"region_name\": \"Gisborne\",\n\t\t\"airport\": \"Gisborne Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Gisborne_Airport\",\n\t\t\"latitude\": -38.6633\n\t},\n\t{\n\t\t\"elevation\": 1220,\n\t\t\"icao\": \"NZTO\",\n\t\t\"longitude\": 175.892,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7996552\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/53468_1426058435.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7996552\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/53468_1426058435.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7996552\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/53468_1426058435_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Tokoroa\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"TKZ\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 2789,\n\t\t\t\t\t\"m\": 850\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Concrete\",\n\t\t\t\t\t\"code\": \"CONC\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"13\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 2789,\n\t\t\t\t\t\"m\": 850\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Concrete\",\n\t\t\t\t\t\"code\": \"CONC\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"31\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/TKZ.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Tokoroa Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -38.2367\n\t},\n\t{\n\t\t\"elevation\": 69,\n\t\t\"icao\": \"NZTS\",\n\t\t\"longitude\": 174.708,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Taharoa\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"THH\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/THH.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Taharoa Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -38.1811\n\t},\n\t{\n\t\t\"elevation\": 938,\n\t\t\"icao\": \"NZRO\",\n\t\t\"longitude\": 176.317,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Rotorua\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"ROT\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6047,\n\t\t\t\t\t\"m\": 1843\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Bituminous\",\n\t\t\t\t\t\"code\": \"BITU\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"18\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6047,\n\t\t\t\t\t\"m\": 1843\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Bituminous\",\n\t\t\t\t\t\"code\": \"BITU\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"36\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/ROT.png\",\n\t\t\"region_name\": \"Bay of Plenty\",\n\t\t\"airport\": \"Rotorua Regional Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Rotorua_International_Airport\",\n\t\t\"latitude\": -38.1092\n\t},\n\t{\n\t\t\"elevation\": 20,\n\t\t\"icao\": \"NZWK\",\n\t\t\"longitude\": 176.914,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Whakatane\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WHK\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4199,\n\t\t\t\t\t\"m\": 1280\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"09\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4199,\n\t\t\t\t\t\"m\": 1280\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"27\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WHK.png\",\n\t\t\"region_name\": \"Bay of Plenty\",\n\t\t\"airport\": \"Whakatane Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Whakatane_Airport\",\n\t\t\"latitude\": -37.9206\n\t},\n\t{\n\t\t\"elevation\": 172,\n\t\t\"icao\": \"NZHN\",\n\t\t\"longitude\": 175.332,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7717324\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/3/75145_1384311736.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"AirPilot_Photography\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7717324\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/3/75145_1384311736.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"AirPilot_Photography\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7717324\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/3/75145_1384311736_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"AirPilot_Photography\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Hamilton\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"HLZ\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6755,\n\t\t\t\t\t\"m\": 2059\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"18L\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 6755,\n\t\t\t\t\t\"m\": 2059\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"36R\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/HLZ.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Hamilton Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Hamilton_International_Airport\",\n\t\t\"latitude\": -37.8667\n\t},\n\t{\n\t\t\"elevation\": 10,\n\t\t\"icao\": \"NZRA\",\n\t\t\"longitude\": 174.86,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"RAG\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/RAG.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Raglan Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -37.8047\n\t},\n\t{\n\t\t\"elevation\": 180,\n\t\t\"icao\": \"NZMA\",\n\t\t\"longitude\": 175.742,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9587631\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/5/39399_1580037208.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Sean Avery\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9587631\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/5/39399_1580037208.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Sean Avery\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/9587631\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/5/39399_1580037208_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Sean Avery\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"MTA\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/MTA.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Matamata Airport\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -37.7344\n\t},\n\t{\n\t\t\"elevation\": 13,\n\t\t\"icao\": \"NZTG\",\n\t\t\"longitude\": 176.196,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Tauranga\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"TRG\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 5988,\n\t\t\t\t\t\"m\": 1825\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"07\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 5988,\n\t\t\t\t\t\"m\": 1825\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"25\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/TRG.png\",\n\t\t\"region_name\": \"Bay of Plenty\",\n\t\t\"airport\": \"Tauranga Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Tauranga_Airport\",\n\t\t\"latitude\": -37.6719\n\t},\n\t{\n\t\t\"elevation\": 10,\n\t\t\"icao\": \"NZTH\",\n\t\t\"longitude\": 175.55,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"TMZ\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/TMZ.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Thames Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -37.1567\n\t},\n\t{\n\t\t\"elevation\": 111,\n\t\t\"icao\": \"NZAR\",\n\t\t\"longitude\": 174.973,\n\t\t\"url\": \"http://www.nzar.co.nz/\",\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7307740\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/4/91346_1327914575.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7307740\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/4/91346_1327914575.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7307740\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/4/91346_1327914575_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Ardmore\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"AMZ\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4629,\n\t\t\t\t\t\"m\": 1411\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"03\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4629,\n\t\t\t\t\t\"m\": 1411\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"21\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/AMZ.png\",\n\t\t\"region_name\": \"Auckland\",\n\t\t\"airport\": \"Ardmore Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Ardmore_Airport\",\n\t\t\"latitude\": -37.0297\n\t},\n\t{\n\t\t\"elevation\": 23,\n\t\t\"icao\": \"NZAA\",\n\t\t\"longitude\": 174.792,\n\t\t\"url\": \"http://www.aucklandairport.co.nz/\",\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/8294739\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/64064_1465545017.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Tim Bowrey\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7525347\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/4/16143_1356736480.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"aussie\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/8294739\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/64064_1465545017.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Tim Bowrey\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7525347\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/4/16143_1356736480.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"aussie\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/8294739\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/64064_1465545017_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Tim Bowrey\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7525347\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/4/16143_1356736480_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"aussie\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Auckland\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"AKL\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 11598,\n\t\t\t\t\t\"m\": 3535\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Concrete\",\n\t\t\t\t\t\"code\": \"CONC\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"05R\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 11598,\n\t\t\t\t\t\"m\": 3535\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Concrete\",\n\t\t\t\t\t\"code\": \"CONC\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"23L\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/AKL.png\",\n\t\t\"region_name\": \"Auckland\",\n\t\t\"airport\": \"Auckland Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Auckland_Airport\",\n\t\t\"latitude\": -37.0081\n\t},\n\t{\n\t\t\"elevation\": 49,\n\t\t\"icao\": \"NZWT\",\n\t\t\"longitude\": 175.679,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Whitianga\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WTZ\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WTZ.png\",\n\t\t\"region_name\": \"Waikato\",\n\t\t\"airport\": \"Whitianga Aerodrome\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Whitianga_Aerodrome\",\n\t\t\"latitude\": -36.8317\n\t},\n\t{\n\t\t\"elevation\": 226,\n\t\t\"icao\": \"NZKE\",\n\t\t\"longitude\": 175.086,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Waiheke Island\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WIK\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WIK.png\",\n\t\t\"region_name\": \"Auckland\",\n\t\t\"airport\": \"Waiheke Island Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -36.8089\n\t},\n\t{\n\t\t\"elevation\": 10,\n\t\t\"icao\": \"NZCX\",\n\t\t\"longitude\": 175.509,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"CMV\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/CMV.png\",\n\t\t\"region_name\": \"Auckland\",\n\t\t\"airport\": \"Coromandel Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -36.7917\n\t},\n\t{\n\t\t\"elevation\": 20,\n\t\t\"icao\": \"NZGB\",\n\t\t\"longitude\": 175.472,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7394499\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/3/91813_1339843089.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7394499\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/3/91813_1339843089.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/7394499\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/3/91813_1339843089_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"Leo Pardon\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Claris\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"GBZ\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3051,\n\t\t\t\t\t\"m\": 930\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Concrete\",\n\t\t\t\t\t\"code\": \"CONC\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"10\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3051,\n\t\t\t\t\t\"m\": 930\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Concrete\",\n\t\t\t\t\t\"code\": \"CONC\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"28\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/GBZ.png\",\n\t\t\"region_name\": \"Auckland\",\n\t\t\"airport\": \"Great Barrier Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -36.2414\n\t},\n\t{\n\t\t\"elevation\": 10,\n\t\t\"icao\": \"NZDA\",\n\t\t\"longitude\": 173.894,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"DGR\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/DGR.png\",\n\t\t\"region_name\": \"Northland\",\n\t\t\"airport\": \"Dargaville Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -35.9397\n\t},\n\t{\n\t\t\"elevation\": 133,\n\t\t\"icao\": \"NZWR\",\n\t\t\"longitude\": 174.365,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Whangarei\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"WRE\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3599,\n\t\t\t\t\t\"m\": 1097\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"06\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3599,\n\t\t\t\t\t\"m\": 1097\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"24\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/WRE.png\",\n\t\t\"region_name\": \"Northland\",\n\t\t\"airport\": \"Whangarei Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Whangarei_Airport\",\n\t\t\"latitude\": -35.7683\n\t},\n\t{\n\t\t\"elevation\": 571,\n\t\t\"icao\": \"NZKO\",\n\t\t\"longitude\": 173.817,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": null,\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"KKO\",\n\t\t\"runways\": [],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/KKO.png\",\n\t\t\"region_name\": \"Northland\",\n\t\t\"airport\": \"Kaikohe Aerodrome\",\n\t\t\"wiki\": null,\n\t\t\"latitude\": -35.4511\n\t},\n\t{\n\t\t\"elevation\": 492,\n\t\t\"icao\": \"NZKK\",\n\t\t\"longitude\": 173.912,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": {\n\t\t\t\"large\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10941108\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/640cb/6/1870895_1683027758.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"FR24\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"medium\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10941108\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/400/6/1870895_1683027758.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"FR24\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"thumbnails\": [\n\t\t\t\t{\n\t\t\t\t\t\"link\": \"https://www.jetphotos.com/photo/10941108\",\n\t\t\t\t\t\"src\": \"https://cdn.jetphotos.com/200/6/1870895_1683027758_tb.jpg\",\n\t\t\t\t\t\"source\": \"Jetphotos.com\",\n\t\t\t\t\t\"copyright\": \"FR24\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t\"city\": \"Kerikeri\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"KKE\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3904,\n\t\t\t\t\t\"m\": 1190\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"15\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 3904,\n\t\t\t\t\t\"m\": 1190\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"33\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/KKE.png\",\n\t\t\"region_name\": \"Northland\",\n\t\t\"airport\": \"Kerikeri Airport (Bay of Islands Airport)\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Kerikeri_Airport\",\n\t\t\"latitude\": -35.2628\n\t},\n\t{\n\t\t\"elevation\": 270,\n\t\t\"icao\": \"NZKT\",\n\t\t\"longitude\": 173.285,\n\t\t\"url\": null,\n\t\t\"country_name\": \"New Zealand\",\n\t\t\"images\": null,\n\t\t\"city\": \"Kaitaia\",\n\t\t\"country_code\": \"NZ\",\n\t\t\"iata\": \"KAT\",\n\t\t\"runways\": [\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4600,\n\t\t\t\t\t\"m\": 1402\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"12\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4167,\n\t\t\t\t\t\"m\": 1270\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Gravel\",\n\t\t\t\t\t\"code\": \"GRVL\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"18\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4600,\n\t\t\t\t\t\"m\": 1402\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Asphalt\",\n\t\t\t\t\t\"code\": \"ASPH\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"30\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"length\": {\n\t\t\t\t\t\"ft\": 4167,\n\t\t\t\t\t\"m\": 1270\n\t\t\t\t},\n\t\t\t\t\"surface\": {\n\t\t\t\t\t\"name\": \"Gravel\",\n\t\t\t\t\t\"code\": \"GRVL\"\n\t\t\t\t},\n\t\t\t\t\"name\": \"36\"\n\t\t\t}\n\t\t],\n\t\t\"timezone\": {\n\t\t\t\"abbrName\": \"New Zealand Standard Time\",\n\t\t\t\"offset\": 43200,\n\t\t\t\"isDst\": false,\n\t\t\t\"abbr\": \"NZST\",\n\t\t\t\"name\": \"Pacific/Auckland\"\n\t\t},\n\t\t\"satellite_image\": \"https://core-api.net/images/satellite_images/KAT.png\",\n\t\t\"region_name\": \"Northland\",\n\t\t\"airport\": \"Kaitaia Airport\",\n\t\t\"wiki\": \"https://en.wikipedia.org/wiki/Kaitaia_Airport\",\n\t\t\"latitude\": -35.07\n\t}\n]", + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000", + "content-length":"66338", + "content-type":"text/html; charset=utf-8", + "date":"Sat, 03 Jun 2023 12:29:36 GMT", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-cloud-trace-context":"2e8ae72331324482d61f4489f7c29e56;o=1", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"By ICAO", + "url":"https://airports-worldwide.p.rapidapi.com/get_airport_icao/{icao}", + "description":"Get airport details by give ICAO code.", + "method":"GET", + "required_parameters":[ + { + "name":"icao", + "type":"string", + "description":"ICAO code", + "default":"WSSS" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-worldwide.p.rapidapi.com/get_airport_icao/{icao}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-worldwide.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "elevation":22, + "icao":"WSSS", + "longitude":103.994, + "url":"http://www.changiairport.com/", + "country_name":"Singapore", + "images":{ + "large":[ + { + "link":"https://www.jetphotos.com/photo/10698157", + "src":"https://cdn.jetphotos.com/640cb/5/60393_1661354581.jpg", + "source":"Jetphotos.com", + "copyright":"ToanLa" + }, + { + "link":"https://www.jetphotos.com/photo/9759914", + "src":"https://cdn.jetphotos.com/640cb/6/22889_1591844447.jpg", + "source":"Jetphotos.com", + "copyright":"Daniel Tang" + }, + { + "link":"https://www.jetphotos.com/photo/10008260", + "src":"https://cdn.jetphotos.com/640cb/5/31534_1609636859.jpg", + "source":"Jetphotos.com", + "copyright":"Thanh Ho - SFAP" + }, + { + "link":"https://www.jetphotos.com/photo/8551389", + "src":"https://cdn.jetphotos.com/640cb/5/37521_1490198074.jpg", + "source":"Jetphotos.com", + "copyright":"Peter Kesternich" + } + ], + "medium":[ + { + "link":"https://www.jetphotos.com/photo/10698157", + "src":"https://cdn.jetphotos.com/400/5/60393_1661354581.jpg", + "source":"Jetphotos.com", + "copyright":"ToanLa" + }, + { + "link":"https://www.jetphotos.com/photo/9759914", + "src":"https://cdn.jetphotos.com/400/6/22889_1591844447.jpg", + "source":"Jetphotos.com", + "copyright":"Daniel Tang" + }, + { + "link":"https://www.jetphotos.com/photo/10008260", + "src":"https://cdn.jetphotos.com/400/5/31534_1609636859.jpg", + "source":"Jetphotos.com", + "copyright":"Thanh Ho - SFAP" + }, + { + "link":"https://www.jetphotos.com/photo/8551389", + "src":"https://cdn.jetphotos.com/400/5/37521_1490198074.jpg", + "source":"Jetphotos.com", + "copyright":"Peter Kesternich" + } + ], + "thumbnails":[ + { + "link":"https://www.jetphotos.com/photo/10698157", + "src":"https://cdn.jetphotos.com/200/5/60393_1661354581_tb.jpg", + "source":"Jetphotos.com", + "copyright":"ToanLa" + }, + { + "link":"https://www.jetphotos.com/photo/9759914", + "src":"https://cdn.jetphotos.com/200/6/22889_1591844447_tb.jpg", + "source":"Jetphotos.com", + "copyright":"Daniel Tang" + }, + { + "link":"https://www.jetphotos.com/photo/10008260", + "src":"https://cdn.jetphotos.com/200/5/31534_1609636859_tb.jpg", + "source":"Jetphotos.com", + "copyright":"Thanh Ho - SFAP" + }, + { + "link":"https://www.jetphotos.com/photo/8551389", + "src":"https://cdn.jetphotos.com/200/5/37521_1490198074_tb.jpg", + "source":"Jetphotos.com", + "copyright":"Peter Kesternich" + } + ] + }, + "city":"Singapore", + "country_code":"SG", + "iata":"SIN", + "runways":[ + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"02C" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"02L" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"02R" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"20C" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"20L" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"20R" + } + ], + "timezone":{ + "abbrName":null, + "offset":28800, + "isDst":false, + "abbr":"+08", + "name":"Asia/Singapore" + }, + "satellite_image":"https://core-api.net/images/satellite_images/SIN.png", + "region_name":"Singapore", + "airport":"Singapore Changi Airport", + "wiki":"https://en.wikipedia.org/wiki/Singapore_Changi_Airport", + "latitude":1.35019 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000", + "content-length":"5411", + "content-type":"text/html; charset=utf-8", + "date":"Sat, 03 Jun 2023 12:24:20 GMT", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-cloud-trace-context":"3ff5e3c2d9d81bc2b96e6b224d4b03d2;o=1", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + }, + { + "name":"By IATA", + "url":"https://airports-worldwide.p.rapidapi.com/get_airport_iata/{iata}", + "description":"Get airport details by given IATA code.", + "method":"GET", + "required_parameters":[ + { + "name":"iata", + "type":"string", + "description":"IATA code", + "default":"KUL" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://airports-worldwide.p.rapidapi.com/get_airport_iata/{iata}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airports-worldwide.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "elevation":69, + "icao":"WMKK", + "longitude":101.71, + "url":"http://www.klia.com.my", + "country_name":"Malaysia", + "images":{ + "large":[ + { + "link":"https://www.jetphotos.com/photo/10963873", + "src":"https://cdn.jetphotos.com/640cb/6/827487_1683550954.jpg", + "source":"Jetphotos.com", + "copyright":"Luqman Alif" + }, + { + "link":"https://www.jetphotos.com/photo/10749883", + "src":"https://cdn.jetphotos.com/640cb/5/24969_1665842229.jpg", + "source":"Jetphotos.com", + "copyright":"ChinJH" + }, + { + "link":"https://www.jetphotos.com/photo/8267801", + "src":"https://cdn.jetphotos.com/640cb/5/38806_1462216490.jpg", + "source":"Jetphotos.com", + "copyright":"Ömür Sadikoglu" + } + ], + "medium":[ + { + "link":"https://www.jetphotos.com/photo/10963873", + "src":"https://cdn.jetphotos.com/400/6/827487_1683550954.jpg", + "source":"Jetphotos.com", + "copyright":"Luqman Alif" + }, + { + "link":"https://www.jetphotos.com/photo/10749883", + "src":"https://cdn.jetphotos.com/400/5/24969_1665842229.jpg", + "source":"Jetphotos.com", + "copyright":"ChinJH" + }, + { + "link":"https://www.jetphotos.com/photo/8267801", + "src":"https://cdn.jetphotos.com/400/5/38806_1462216490.jpg", + "source":"Jetphotos.com", + "copyright":"Ömür Sadikoglu" + } + ], + "thumbnails":[ + { + "link":"https://www.jetphotos.com/photo/10963873", + "src":"https://cdn.jetphotos.com/200/6/827487_1683550954_tb.jpg", + "source":"Jetphotos.com", + "copyright":"Luqman Alif" + }, + { + "link":"https://www.jetphotos.com/photo/10749883", + "src":"https://cdn.jetphotos.com/200/5/24969_1665842229_tb.jpg", + "source":"Jetphotos.com", + "copyright":"ChinJH" + }, + { + "link":"https://www.jetphotos.com/photo/8267801", + "src":"https://cdn.jetphotos.com/200/5/38806_1462216490_tb.jpg", + "source":"Jetphotos.com", + "copyright":"Ömür Sadikoglu" + } + ] + }, + "city":"Kuala Lumpur", + "country_code":"MY", + "iata":"KUL", + "runways":[ + { + "length":{ + "ft":13186, + "m":4019 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"14L" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"14R" + }, + { + "length":{ + "ft":12992, + "m":3960 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"15" + }, + { + "length":{ + "ft":13123, + "m":4000 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"32L" + }, + { + "length":{ + "ft":13186, + "m":4019 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"32R" + }, + { + "length":{ + "ft":12992, + "m":3960 + }, + "surface":{ + "name":"Unknown", + "code":"COAS" + }, + "name":"33" + } + ], + "timezone":{ + "abbrName":null, + "offset":28800, + "isDst":false, + "abbr":"+08", + "name":"Asia/Kuala_Lumpur" + }, + "satellite_image":"https://core-api.net/images/satellite_images/KUL.png", + "region_name":"Selangor", + "airport":"Kuala Lumpur International Airport", + "wiki":"https://en.wikipedia.org/wiki/Kuala_Lumpur_International_Airport", + "latitude":2.74558 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000", + "content-length":"4628", + "content-type":"text/html; charset=utf-8", + "date":"Sat, 03 Jun 2023 12:22:12 GMT", + "server":"RapidAPI-1.2.8", + "vary":"Accept-Encoding", + "x-cloud-trace-context":"62303eae01248a79433d16ba261d6dc4;o=1", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/airports_worldwide/api.py b/toolbench/toolenv/tools/Travel/airports_worldwide/api.py new file mode 100644 index 0000000000000000000000000000000000000000..99a31b234060d14e6d6e862a70f1033ed9024a1a --- /dev/null +++ b/toolbench/toolenv/tools/Travel/airports_worldwide/api.py @@ -0,0 +1,75 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def list_of_airports_by_coordinate_within_500km_radius(longitude: str, latitude: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List of airports available within coordinate in 500km radius." + longitude: Longitude + latitude: Latitude + + """ + url = f"https://airports-worldwide.p.rapidapi.com/get_airports/{latitude}/{longitude}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-worldwide.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def by_icao(icao: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get airport details by give ICAO code." + icao: ICAO code + + """ + url = f"https://airports-worldwide.p.rapidapi.com/get_airport_icao/{icao}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-worldwide.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def by_iata(iata: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get airport details by given IATA code." + iata: IATA code + + """ + url = f"https://airports-worldwide.p.rapidapi.com/get_airport_iata/{iata}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "airports-worldwide.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/apis_1.json b/toolbench/toolenv/tools/Travel/apis_1.json new file mode 100644 index 0000000000000000000000000000000000000000..00a95ffd6f10133dfb57e399d9b7d9942d0766fb --- /dev/null +++ b/toolbench/toolenv/tools/Travel/apis_1.json @@ -0,0 +1,24 @@ +{ + "tool_name":"APIs 1", + "tool_description":"Test apis", + "title":"APIs 1", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/workkaushal736/api/apis-1/", + "host":"apis-1.p.rapidapi.com", + "api_list":[ + { + "name":"asd", + "url":"https://apis-1.p.rapidapi.com/asd", + "description":"asdf", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://apis-1.p.rapidapi.com/asd\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apis-1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/apis_1/api.py b/toolbench/toolenv/tools/Travel/apis_1/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c91a42ba23011c35c2a8f8f03f31044f994a83db --- /dev/null +++ b/toolbench/toolenv/tools/Travel/apis_1/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def asd(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "asdf" + + """ + url = f"https://apis-1.p.rapidapi.com/asd" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apis-1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/asr_hub.json b/toolbench/toolenv/tools/Travel/asr_hub.json new file mode 100644 index 0000000000000000000000000000000000000000..2a030ef5820348f4dc771c4b0938584d9c6aa0c7 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/asr_hub.json @@ -0,0 +1,412 @@ +{ + "product_id": "api_d2e5dd3c-1326-41a2-b85f-5bad38a2375a", + "tool_description": "ASR Hub is a nomalized XML API which integrates airline content from multiple sources like Direct & NDC connect, Multi-GDS and aggregators from various markets and\u00a0 offers search, ticket, Payments, ancillary sales, and post bookings services through a single API.\u00a0 ASR Hub 1.0 provides the complete Travel Tech Stack for Airline Retailing\u200b.", + "home_url": "https://rapidapi.com/mystifly-mystifly-default/api/asr-hub/", + "name": "ASR Hub", + "title": "ASR Hub", + "pricing": "FREE", + "tool_name": "ASR Hub", + "score": { + "avgServiceLevel": 26, + "avgLatency": 563, + "avgSuccessRate": 0, + "popularityScore": 0.3, + "__typename": "Score" + }, + "host": "asr-hub.p.rapidapi.com", + "api_list": [ + { + "name": "/api/TripDetails/{MFRef}", + "url": "https://asr-hub.p.rapidapi.com/api/TripDetails/{MFRef}", + "description": "Retrives the TripDetails based on the MFRef Number\r\n- MFRef", + "method": "GET", + "required_parameters": [ + { + "name": "MFRef", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/TripDetails/{MFRef}\"\nquerystring = {\"MFRef\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/TripDetails/{MFRef}\"\nquerystring = {\"MFRef\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "Success": false, + "Data": null, + "Message": "Missing session info in Header/Please validate format 'Bearer'" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/ScheduleChangeAccept/{MFRef}/{FlightId}", + "url": "https://asr-hub.p.rapidapi.com/api/ScheduleChangeAccept/{MFRef}/{FlightId}", + "description": "Accept Schedule Change based on the UserInputs\r\n - MFRef\r\n - Flight Id", + "method": "GET", + "required_parameters": [ + { + "name": "FlightId", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "MFRef", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/ScheduleChangeAccept/{MFRef}/{FlightId}\"\nquerystring = {\"FlightId\": \"\", \"MFRef\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/ScheduleChangeAccept/{MFRef}/{FlightId}\"\nquerystring = {\"FlightId\": \"\", \"MFRef\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "Success": false, + "Data": null, + "Message": "Missing session info in Header/Please validate format 'Bearer'" + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/MarkAsRead", + "url": "https://asr-hub.p.rapidapi.com/api/MarkAsRead", + "description": " MarkAsRead based on the UserInputs \r\n- id\r\n- RequestType", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/MarkAsRead\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/MarkAsRead\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/SeatMapBETA/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/SeatMapBETA/Flight", + "description": "Flight Seat Map Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/SeatMapBETA/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/SeatMapBETA/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/DeQueue", + "url": "https://asr-hub.p.rapidapi.com/api/v1/DeQueue", + "description": "DeQueue", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/DeQueue\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/DeQueue\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/ScheduleChange", + "url": "https://asr-hub.p.rapidapi.com/api/ScheduleChange", + "description": "Change Schedule based on the UserInputs\r\n- ActionType\r\n- MFRef\r\n- RejectOption\r\n- Flightoptions\r\n- Comments", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/ScheduleChange\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/ScheduleChange\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/Queues", + "url": "https://asr-hub.p.rapidapi.com/api/v1/Queues", + "description": "Create Queues", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Queues\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Queues\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/Search/CreditNote", + "url": "https://asr-hub.p.rapidapi.com/api/Search/CreditNote", + "description": "Filter's CreditNote data based on the UserInputs\r\n- Page", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/Search/CreditNote\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/Search/CreditNote\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/BookingNotes", + "url": "https://asr-hub.p.rapidapi.com/api/v1/BookingNotes", + "description": "Inserts BookingNotes info", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/BookingNotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/BookingNotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/api/v1/multiCityFaresBETA/Revalidate/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Revalidate/Flight", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Revalidate/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Revalidate/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v2/Search/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v2/Search/Flight", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v2/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v2/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/CreateSession", + "url": "https://asr-hub.p.rapidapi.com/api/CreateSession", + "description": "Create session based on the UserInputs\r\n- AccountNumber \r\n- Password\r\n- UserName", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/CreateSession\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/CreateSession\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/Revalidate/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/Revalidate/Flight", + "description": "Revalidate's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Revalidate/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Revalidate/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/multiCityFaresBETA/Search/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Search/Flight", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/Search/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/Search/Flight", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/PostTicketingRequest", + "url": "https://asr-hub.p.rapidapi.com/api/PostTicketingRequest", + "description": "Create PostTicketingRequest based on the UserInputs \r\n- firstName \r\n- lastName \r\n- title \r\n- passengerType\r\n- ptrType", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/PostTicketingRequest\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/PostTicketingRequest\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/InetelliBestBuy", + "url": "https://asr-hub.p.rapidapi.com/api/v1/InetelliBestBuy", + "description": "Request for a IntelliBestBuy", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/InetelliBestBuy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/InetelliBestBuy\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/api/v2/multiCityFaresBETA/Search/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v2/multiCityFaresBETA/Search/Flight", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v2/multiCityFaresBETA/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v2/multiCityFaresBETA/Search/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/api/v1/Book/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/Book/Flight", + "description": "To Book a Flight based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Book/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Book/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/api/Search/PostTicketingRequest", + "url": "https://asr-hub.p.rapidapi.com/api/Search/PostTicketingRequest", + "description": "Filter's PostTicketingRequest based on the UserInputs \r\n- PTRId \r\n- Page \r\n- MFRef", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/Search/PostTicketingRequest\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/Search/PostTicketingRequest\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/Booking/Cancel", + "url": "https://asr-hub.p.rapidapi.com/api/v1/Booking/Cancel", + "description": "Request for a Cancel ticket", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Booking/Cancel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Booking/Cancel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/Payments/3DS/GetPaymentInfo", + "url": "https://asr-hub.p.rapidapi.com/api/v1/Payments/3DS/GetPaymentInfo", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Payments/3DS/GetPaymentInfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/Payments/3DS/GetPaymentInfo\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/api/v1/OrderTicket", + "url": "https://asr-hub.p.rapidapi.com/api/v1/OrderTicket", + "description": "Order Flight Ticket based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/OrderTicket\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/OrderTicket\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v2/BookingNotes", + "url": "https://asr-hub.p.rapidapi.com/api/v2/BookingNotes", + "description": "Add Remarks to Booking.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v2/BookingNotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v2/BookingNotes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "/api/Search/Invoice", + "url": "https://asr-hub.p.rapidapi.com/api/Search/Invoice", + "description": "Filter's Invoice based on the UserInputs\r\n- Page", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/Search/Invoice\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/Search/Invoice\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/FlightFareRules", + "url": "https://asr-hub.p.rapidapi.com/api/v1/FlightFareRules", + "description": "Retrives Flight Fare Rules based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/FlightFareRules\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/FlightFareRules\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/multiCityFaresBETA/Book/Flight", + "url": "https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Book/Flight", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Book/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/Book/Flight\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "/api/v1/multiCityFaresBETA/TripDetails", + "url": "https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/TripDetails", + "description": "Filter's Flight data based on the UserInputs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/TripDetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://asr-hub.p.rapidapi.com/api/v1/multiCityFaresBETA/TripDetails\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"asr-hub.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "asr_hub" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/asr_hub/api.py b/toolbench/toolenv/tools/Travel/asr_hub/api.py new file mode 100644 index 0000000000000000000000000000000000000000..657dd0b93de37dfae14058f2596771173f8c6d40 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/asr_hub/api.py @@ -0,0 +1,53 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def api_tripdetails_mfref(mfref: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Retrives the TripDetails based on the MFRef Number + - MFRef" + + """ + url = f"https://asr-hub.p.rapidapi.com/api/tripdetails/{mfref}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "asr-hub.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def api_schedulechangeaccept_mfref_flightid(flightid: int, mfref: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Accept Schedule Change based on the UserInputs + - MFRef + - Flight Id" + + """ + url = f"https://asr-hub.p.rapidapi.com/api/schedulechangeaccept/{mfref}/{flightid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "asr-hub.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/aviation_weather_and_airport_data.json b/toolbench/toolenv/tools/Travel/aviation_weather_and_airport_data.json new file mode 100644 index 0000000000000000000000000000000000000000..a9c7caebda9baf60c8474db6b5c3363cb7e63e7d --- /dev/null +++ b/toolbench/toolenv/tools/Travel/aviation_weather_and_airport_data.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_982ebab2-9d7b-4ceb-a975-d46e0f5a2a0b", + "tool_description": "Fast, up to date GraphQL API, serving latest METARs, TAFs combined with airport and runway data", + "home_url": "https://rapidapi.com/benjasper/api/aviation-weather-and-airport-data/", + "name": "Aviation Weather and Airport Data", + "title": "Aviation Weather and Airport Data", + "pricing": "FREEMIUM", + "tool_name": "Aviation Weather and Airport Data", + "score": { + "avgServiceLevel": 91, + "avgLatency": 1048, + "avgSuccessRate": 91, + "popularityScore": 8.6, + "__typename": "Score" + }, + "host": "aviation-weather-and-airport-data.p.rapidapi.com", + "api_list": [ + { + "name": "/graphql", + "url": "https://aviation-weather-and-airport-data.p.rapidapi.com/graphql", + "description": "GraphQL endpoint", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://aviation-weather-and-airport-data.p.rapidapi.com/graphql\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviation-weather-and-airport-data.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://aviation-weather-and-airport-data.p.rapidapi.com/graphql\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"aviation-weather-and-airport-data.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/awardwallet_email_parsing_travel_plan_data_retrieval.json b/toolbench/toolenv/tools/Travel/awardwallet_email_parsing_travel_plan_data_retrieval.json new file mode 100644 index 0000000000000000000000000000000000000000..3c53f3a211f5a3be6fcc0f0d28b4df97247490b6 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/awardwallet_email_parsing_travel_plan_data_retrieval.json @@ -0,0 +1,26 @@ +{ + "product_id": "53aa61c6e4b008bb2ef87d02", + "tool_description": "Our email parsing API is designed to retrieve travel itineraries from an email. So we can receive a raw email with some type of itinerary, such a hotel reservation of flight reservation, we will extract all the relevant information and return it in a", + "home_url": "https://rapidapi.com/awardwallet/api/awardwallet-email-parsing-travel-plan-data-retrieval/", + "name": "AwardWallet - Email Parsing - Travel Plan Data Retrieval", + "title": "AwardWallet - Email Parsing - Travel Plan Data Retrieval", + "pricing": "FREEMIUM", + "tool_name": "AwardWallet - Email Parsing - Travel Plan Data Retrieval", + "score": null, + "host": "awardwallet-email-parsing---travel-plan-data-retrieval.p.rapidapi.com", + "api_list": [ + { + "name": "parseEmail", + "url": "https://awardwallet-email-parsing---travel-plan-data-retrieval.p.rapidapi.com/parseEmail", + "description": "Parse itinerary and loyalty data information from email", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-email-parsing---travel-plan-data-retrieval.p.rapidapi.com/parseEmail\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-email-parsing---travel-plan-data-retrieval.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-email-parsing---travel-plan-data-retrieval.p.rapidapi.com/parseEmail\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-email-parsing---travel-plan-data-retrieval.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_autologin_with_deep_linking.json b/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_autologin_with_deep_linking.json new file mode 100644 index 0000000000000000000000000000000000000000..a72ac83a4ca65d2a40df7ea975c8dea32e0a82a4 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_autologin_with_deep_linking.json @@ -0,0 +1,39 @@ +{ + "product_id": "53aa3aece4b0b60946a2e969", + "tool_description": "This API gives you the ability to auto-login your users from your website into loyalty program websites. In many cases you can also take a user to a specific page within the target website. The user only has to provide his or her credentials once and then you will be able to \"single sign on\" the user automatically whenever needed. For more details please contact us at http://awardwallet.com/contact.php", + "home_url": "https://rapidapi.com/awardwallet/api/awardwallet-web-parsing-autologin-with-deep-linking/", + "name": "AwardWallet - Web Parsing - Autologin with deep linking", + "title": "AwardWallet - Web Parsing - Autologin with deep linking", + "pricing": "FREEMIUM", + "tool_name": "AwardWallet - Web Parsing - Autologin with deep linking", + "score": null, + "host": "awardwallet-autologin-with-deep-linking.p.rapidapi.com", + "api_list": [ + { + "name": "PrepareRedirect", + "url": "https://awardwallet-autologin-with-deep-linking.p.rapidapi.com/PrepareRedirect", + "description": "Prepare auto-login to account", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-autologin-with-deep-linking.p.rapidapi.com/PrepareRedirect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-autologin-with-deep-linking.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-autologin-with-deep-linking.p.rapidapi.com/PrepareRedirect\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-autologin-with-deep-linking.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "ListProviders", + "url": "https://awardwallet-autologin-with-deep-linking.p.rapidapi.com/ListProviders", + "description": "", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-autologin-with-deep-linking.p.rapidapi.com/ListProviders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-autologin-with-deep-linking.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-autologin-with-deep-linking.p.rapidapi.com/ListProviders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-autologin-with-deep-linking.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_loyalty_data_retrieval.json b/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_loyalty_data_retrieval.json new file mode 100644 index 0000000000000000000000000000000000000000..fd6e562efc5618ce07a63bd33d8b13a2599e4f64 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_loyalty_data_retrieval.json @@ -0,0 +1,39 @@ +{ + "product_id": "53aa3809e4b0b60946a2e8e3", + "tool_description": "This API allows you to automatically retrive: \r\n(1) Account balance and other properties of a loyalty account such as: Expiration, Name, Account number, Status, Next elite level, Miles needed to next level, Segments needed to next level, Last activity, etc.\r\n(2) Account history\r\n\r\nAs of Jun 2014 we support 630 programs and growing. If you run into any issues please contact us via http://awardwallet.com/contact.php", + "home_url": "https://rapidapi.com/awardwallet/api/awardwallet-web-parsing-loyalty-data-retrieval/", + "name": "AwardWallet - Web Parsing - Loyalty Data Retrieval", + "title": "AwardWallet - Web Parsing - Loyalty Data Retrieval", + "pricing": "FREEMIUM", + "tool_name": "AwardWallet - Web Parsing - Loyalty Data Retrieval", + "score": null, + "host": "awardwallet-awardwallet.p.rapidapi.com", + "api_list": [ + { + "name": "CheckAccount", + "url": "https://awardwallet-awardwallet.p.rapidapi.com/CheckAccount", + "description": "Check single account", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-awardwallet.p.rapidapi.com/CheckAccount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-awardwallet.p.rapidapi.com/CheckAccount\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "ListProviders", + "url": "https://awardwallet-awardwallet.p.rapidapi.com/ListProviders", + "description": "Information about supported loyalty programs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-awardwallet.p.rapidapi.com/ListProviders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-awardwallet.p.rapidapi.com/ListProviders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_travel_plan_data_retrieval.json b/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_travel_plan_data_retrieval.json new file mode 100644 index 0000000000000000000000000000000000000000..892771c72126147489da41be2ae09b37752f1edc --- /dev/null +++ b/toolbench/toolenv/tools/Travel/awardwallet_web_parsing_travel_plan_data_retrieval.json @@ -0,0 +1,39 @@ +{ + "product_id": "53aa3ad3e4b0a798dbd198f6", + "tool_description": "This API allows you to retrieve travel plan details from user profiles by scanning their loyalty accounts. Travel plans are returned in an OpenTravel standard data format. For more details please contact us via http://awardwallet.com/contact.php", + "home_url": "https://rapidapi.com/awardwallet/api/awardwallet-web-parsing-travel-plan-data-retrieval/", + "name": "AwardWallet - Web Parsing - Travel Plan Data Retrieval", + "title": "AwardWallet - Web Parsing - Travel Plan Data Retrieval", + "pricing": "FREEMIUM", + "tool_name": "AwardWallet - Web Parsing - Travel Plan Data Retrieval", + "score": null, + "host": "awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com", + "api_list": [ + { + "name": "GetItineraries", + "url": "https://awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com/GetItineraries", + "description": "Get itineraries for account", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com/GetItineraries\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com/GetItineraries\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "ListProviders", + "url": "https://awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com/LIstProviders", + "description": "Information about supported loyalty programs", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com/LIstProviders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com/LIstProviders\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"awardwallet-awardwallet-travel-plan-data-retrieval.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/bart.json b/toolbench/toolenv/tools/Travel/bart.json new file mode 100644 index 0000000000000000000000000000000000000000..73abb72d9853e4f9685a0ff9b2b3a3dd30b26dc3 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/bart.json @@ -0,0 +1,146 @@ +{ + "product_id": "53aa610de4b07e1f4ebecaf6", + "tool_description": "The BART API gives you access to pretty much all of the BART service and station data available on the BART website.", + "home_url": "https://rapidapi.com/sfbart/api/bart/", + "name": "BART", + "title": "BART", + "pricing": "FREE", + "tool_name": "BART", + "score": { + "avgServiceLevel": 100, + "avgLatency": 92, + "avgSuccessRate": 100, + "popularityScore": 8, + "__typename": "Score" + }, + "host": "community-bart.p.rapidapi.com", + "api_list": [ + { + "name": "Schedule information", + "url": "https://community-bart.p.rapidapi.com/sched.aspx", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "cmd", + "type": "STRING", + "description": "See more examples at http://api.bart.gov/docs/overview/examples.aspx", + "default": "arrive" + } + ], + "optional_parameters": [ + { + "name": "orig", + "type": "STRING", + "description": "", + "default": "24th" + }, + { + "name": "dest", + "type": "STRING", + "description": "", + "default": "rock" + } + ], + "code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/sched.aspx\"\nquerystring = {\"cmd\": \"arrive\", \"orig\": \"24th\", \"dest\": \"rock\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/sched.aspx\"\nquerystring = {\"cmd\": \"arrive\", \"orig\": \"24th\", \"dest\": \"rock\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Advisory information", + "url": "https://community-bart.p.rapidapi.com/bsa.aspx", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "cmd", + "type": "STRING", + "description": "See more examples http://api.bart.gov/docs/overview/examples.aspx", + "default": "bsa" + } + ], + "optional_parameters": [ + { + "name": "orig", + "type": "STRING", + "description": "Optional station filter. Uses 4 character BART station abbreviations (http://api.bart.gov/docs/overview/abbrev.aspx)", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/bsa.aspx\"\nquerystring = {\"cmd\": \"bsa\", \"orig\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/bsa.aspx\"\nquerystring = {\"cmd\": \"bsa\", \"orig\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Route information", + "url": "https://community-bart.p.rapidapi.com/route.aspx", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "cmd", + "type": "STRING", + "description": "See more examples http://api.bart.gov/docs/overview/examples.aspx", + "default": "routes" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/route.aspx\"\nquerystring = {\"cmd\": \"routes\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/route.aspx\"\nquerystring = {\"cmd\": \"routes\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Station information", + "url": "https://community-bart.p.rapidapi.com/stn.aspx", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "cmd", + "type": "STRING", + "description": "See more examples at http://api.bart.gov/docs/overview/examples.aspx", + "default": "stns" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/stn.aspx\"\nquerystring = {\"cmd\": \"stns\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/stn.aspx\"\nquerystring = {\"cmd\": \"stns\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Real-time information", + "url": "https://community-bart.p.rapidapi.com/etd.aspx", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "cmd", + "type": "STRING", + "description": "See more examples http://api.bart.gov/docs/overview/examples.aspx", + "default": "etd" + }, + { + "name": "orig", + "type": "STRING", + "description": "Specifies the station. Stations are referenced by their abbreviations (http://api.bart.gov/docs/overview/abbrev.aspx). You can also use 'ALL' to get all of the current ETD's.", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/etd.aspx\"\nquerystring = {\"cmd\": \"etd\", \"orig\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-bart.p.rapidapi.com/etd.aspx\"\nquerystring = {\"cmd\": \"etd\", \"orig\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-bart.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "bart" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/bart/api.py b/toolbench/toolenv/tools/Travel/bart/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b425f07ad3cbf5b53a77881fa377c408f5e918cc --- /dev/null +++ b/toolbench/toolenv/tools/Travel/bart/api.py @@ -0,0 +1,126 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def schedule_information(cmd: str, orig: str='24th', dest: str='rock', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + cmd: See more examples at http://api.bart.gov/docs/overview/examples.aspx + + """ + url = f"https://community-bart.p.rapidapi.com/sched.aspx" + querystring = {'cmd': cmd, } + if orig: + querystring['orig'] = orig + if dest: + querystring['dest'] = dest + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-bart.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def advisory_information(cmd: str, orig: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + cmd: See more examples http://api.bart.gov/docs/overview/examples.aspx + orig: Optional station filter. Uses 4 character BART station abbreviations (http://api.bart.gov/docs/overview/abbrev.aspx) + + """ + url = f"https://community-bart.p.rapidapi.com/bsa.aspx" + querystring = {'cmd': cmd, } + if orig: + querystring['orig'] = orig + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-bart.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def route_information(cmd: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + cmd: See more examples http://api.bart.gov/docs/overview/examples.aspx + + """ + url = f"https://community-bart.p.rapidapi.com/route.aspx" + querystring = {'cmd': cmd, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-bart.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def station_information(cmd: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + cmd: See more examples at http://api.bart.gov/docs/overview/examples.aspx + + """ + url = f"https://community-bart.p.rapidapi.com/stn.aspx" + querystring = {'cmd': cmd, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-bart.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def real_time_information(cmd: str, orig: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + cmd: See more examples http://api.bart.gov/docs/overview/examples.aspx + orig: Specifies the station. Stations are referenced by their abbreviations (http://api.bart.gov/docs/overview/abbrev.aspx). You can also use 'ALL' to get all of the current ETD's. + + """ + url = f"https://community-bart.p.rapidapi.com/etd.aspx" + querystring = {'cmd': cmd, 'orig': orig, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-bart.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/best_booking_com_hotel.json b/toolbench/toolenv/tools/Travel/best_booking_com_hotel.json new file mode 100644 index 0000000000000000000000000000000000000000..d8050ea837e14e78a0b5a0bebb708acfae4cefdf --- /dev/null +++ b/toolbench/toolenv/tools/Travel/best_booking_com_hotel.json @@ -0,0 +1,47 @@ +{ + "tool_name":"Best Booking.com Hotel", + "tool_description":"Fetch the best booking.com hotel in town", + "title":"Best Booking.com Hotel", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":903, + "avgSuccessRate":95, + "popularityScore":9.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/PlanYourTrip/api/best-booking-com-hotel/", + "host":"best-booking-com-hotel.p.rapidapi.com", + "api_list":[ + { + "name":"find best booking.com accommodation", + "url":"https://best-booking-com-hotel.p.rapidapi.com/booking/best-accommodation", + "description":"find best booking.com accommodation", + "method":"GET", + "required_parameters":[ + { + "name":"countryName", + "type":"STRING", + "description":"", + "default":"Germany" + }, + { + "name":"cityName", + "type":"STRING", + "description":"", + "default":"Berlin" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://best-booking-com-hotel.p.rapidapi.com/booking/best-accommodation\"\nquerystring = {\"countryName\": countryname, \"cityName\": cityname}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"best-booking-com-hotel.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "link":"https://www.booking.com/hotel/de/eastseven-berlin-hostel-berlin1.de.html?aid=1938431", + "name":"EastSeven Berlin", + "rating":9.1 + }, + "headers":{}, + "schema":{} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/best_booking_com_hotel/api.py b/toolbench/toolenv/tools/Travel/best_booking_com_hotel/api.py new file mode 100644 index 0000000000000000000000000000000000000000..b048d3c348bfc096b3171928d4ff6c32da4307ef --- /dev/null +++ b/toolbench/toolenv/tools/Travel/best_booking_com_hotel/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def find_best_booking_com_accommodation(countryname: str, cityname: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "find best booking.com accommodation" + + """ + url = f"https://best-booking-com-hotel.p.rapidapi.com/booking/best-accommodation" + querystring = {'countryName': countryname, 'cityName': cityname, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "best-booking-com-hotel.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/biggest_cities.json b/toolbench/toolenv/tools/Travel/biggest_cities.json new file mode 100644 index 0000000000000000000000000000000000000000..902afd6ae8e8af0f71343f990e573b2bdb9c4324 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/biggest_cities.json @@ -0,0 +1,50 @@ +{ + "tool_name":"Biggest Cities", + "tool_description":"List of top biggest cities", + "title":"Biggest Cities", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":814, + "avgSuccessRate":0, + "popularityScore":0, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/amazon197523/api/biggest-cities3/", + "host":"biggest-cities3.p.rapidapi.com", + "api_list":[ + { + "name":"Biggest cities", + "url":"https://biggest-cities3.p.rapidapi.com/bigcityes/{id}", + "description":"Biggest cities", + "method":"GET", + "required_parameters":[ + { + "name":"id", + "type":"NUMBER", + "description":"", + "default":"1" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://biggest-cities3.p.rapidapi.com/bigcityes/{id}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"biggest-cities3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all cities", + "url":"https://biggest-cities3.p.rapidapi.com/UISYzx/bigcityes", + "description":"Get all cites", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://biggest-cities3.p.rapidapi.com/UISYzx/bigcityes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"biggest-cities3.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/biggest_cities/api.py b/toolbench/toolenv/tools/Travel/biggest_cities/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c0767a10f80a88eb0d1bb416ee0e3012b95c2bc6 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/biggest_cities/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def biggest_cities(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Biggest cities" + + """ + url = f"https://biggest-cities3.p.rapidapi.com/bigcityes/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "biggest-cities3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_cities(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all cites" + + """ + url = f"https://biggest-cities3.p.rapidapi.com/uisyzx/bigcityes" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "biggest-cities3.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/biggestcities.json b/toolbench/toolenv/tools/Travel/biggestcities.json new file mode 100644 index 0000000000000000000000000000000000000000..d041fa797a6aec22bed3474da1d47b077b2d6188 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/biggestcities.json @@ -0,0 +1,51 @@ +{ + "product_id": "api_3a864aed-e16d-4ac2-8f67-4c186f1613ef", + "tool_description": "A List of Worlds Biggest Cities", + "home_url": "https://rapidapi.com/rogerkingdom10/api/biggestcities/", + "name": "BiggestCities", + "title": "BiggestCities", + "pricing": "FREEMIUM", + "tool_name": "BiggestCities", + "score": { + "avgServiceLevel": 100, + "avgLatency": 616, + "avgSuccessRate": 50, + "popularityScore": 8.2, + "__typename": "Score" + }, + "host": "biggestcities.p.rapidapi.com", + "api_list": [ + { + "name": "Get Cities by filter", + "url": "https://biggestcities.p.rapidapi.com/X2Q53F/cities/{id}", + "description": "Get Cities by filter", + "method": "GET", + "required_parameters": [ + { + "name": "id", + "type": "string", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://biggestcities.p.rapidapi.com/X2Q53F/cities/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"biggestcities.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://biggestcities.p.rapidapi.com/X2Q53F/cities/{id}\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"biggestcities.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You are not subscribed to this API." + } + }, + { + "name": "Get All Cities", + "url": "https://biggestcities.p.rapidapi.com/X2Q53F/cities", + "description": "Get All Cities", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://biggestcities.p.rapidapi.com/X2Q53F/cities\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"biggestcities.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://biggestcities.p.rapidapi.com/X2Q53F/cities\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"biggestcities.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "biggestcities" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/biggestcities/api.py b/toolbench/toolenv/tools/Travel/biggestcities/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c90e2ab19988fbe0354b18e44e22d72e390baf98 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/biggestcities/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_cities_by_filter(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get Cities by filter" + + """ + url = f"https://biggestcities.p.rapidapi.com/x2q53f/cities/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "biggestcities.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_cities(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get All Cities" + + """ + url = f"https://biggestcities.p.rapidapi.com/x2q53f/cities" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "biggestcities.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/bms_recommender_systems_for_e_commerce.json b/toolbench/toolenv/tools/Travel/bms_recommender_systems_for_e_commerce.json new file mode 100644 index 0000000000000000000000000000000000000000..589004a4e23b7873e16d9fbccfc7e5f260694cbe --- /dev/null +++ b/toolbench/toolenv/tools/Travel/bms_recommender_systems_for_e_commerce.json @@ -0,0 +1,57 @@ +{ + "tool_name": "BMS Recommender Systems for E-Commerce", + "tool_description": "BMS-API-Similar Items API is a Fashion/E-commerce API, that will result all similar items across the database based on the Input Material.", + "title": "BMS Recommender Systems for E-Commerce", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 0, + "avgLatency": 127311, + "avgSuccessRate": 0, + "popularityScore": 0, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/inoor.shaik/api/bms-recommender-systems-for-e-commerce/", + "host": "inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com", + "api_list": [ + { + "name": "Similaritems v2", + "url": "https://inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com/v2/{materialid}", + "description": "List the products customers who bought this product also bought", + "method": "GET", + "required_parameters": [ + { + "name": "materialid", + "type": "STRING", + "description": "Here are the some of sample Product Ids B01FGZ8VMC, B0199T0DN6, B0199SZVV6, B01DZ5OBGA, B0199U54G6, B0184ZD432", + "default": "B01FGZ8VMC" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com/v2/{materialid}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "testfile", + "url": "https://inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com/v4/file", + "description": "", + "method": "POST", + "required_parameters": [ + { + "name": "Datasets file", + "type": "BINARY", + "description": "Please upload .csv format file only", + "default": "new 6.txt" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com/v4/file\"\nquerystring = {\"Datasets file\": \"new 6.txt\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com/v4/file\"\nquerystring = {\"Datasets file\": \"new 6.txt\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/bms_recommender_systems_for_e_commerce/api.py b/toolbench/toolenv/tools/Travel/bms_recommender_systems_for_e_commerce/api.py new file mode 100644 index 0000000000000000000000000000000000000000..134110b0c55fff9414eb131ca7ac19cd3a5b8dff --- /dev/null +++ b/toolbench/toolenv/tools/Travel/bms_recommender_systems_for_e_commerce/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def similaritems_v2(materialid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List the products customers who bought this product also bought" + materialid: Here are the some of sample Product Ids B01FGZ8VMC, B0199T0DN6, B0199SZVV6, B01DZ5OBGA, B0199U54G6, B0184ZD432 + + """ + url = f"https://inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com/v2/{materialid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "inoor-shaik-bms-api-similar-items-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/booking.json b/toolbench/toolenv/tools/Travel/booking.json new file mode 100644 index 0000000000000000000000000000000000000000..38ea73d6daa74425d448ebbb57abeaa341a7350e --- /dev/null +++ b/toolbench/toolenv/tools/Travel/booking.json @@ -0,0 +1,5900 @@ +{ + "tool_name":"Booking", + "tool_description":"This API helps to query rooms, price, facilities, policities, etc information from many hotels around the world to create a travel site such as : booking.com", + "title":"Booking", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":2447, + "avgSuccessRate":100, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/apidojo/api/booking/", + "host":"apidojo-booking-v1.p.rapidapi.com", + "api_list":[ + { + "name":"reviews/get-scores", + "url":"https://apidojo-booking-v1.p.rapidapi.com/reviews/get-scores", + "description":"Get reviewing scores", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_ids", + "type":"NUMBER", + "description":"The value of hotel_id field from properties/list API", + "default":"264831" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/reviews/get-scores\"\nquerystring = {\"hotel_ids\": hotel_ids, \"languagecode\": languagecode}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"review-filters/list", + "url":"https://apidojo-booking-v1.p.rapidapi.com/review-filters/list", + "description":"List supported options metadata for filtering reviews", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_id", + "type":"NUMBER", + "description":"The value of hotel_id field from properties/list API", + "default":"1790664" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"filter_language", + "type":"STRING", + "description":"One of the followings (separated by comma for multiple values): en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en,nl" + }, + { + "name":"filter_customer_type", + "type":"STRING", + "description":"One of the followings (separated by comma for multiple values) : couple|family_with_children|review_category_group_of_friends|solo_traveller", + "default":"couple,family_with_children" + }, + { + "name":"user_sort", + "type":"STRING", + "description":"One of the followings : sort_most_relevant|sort_recent_desc|sort_recent_asc|sort_score_desc|sort_score_asc", + "default":"sort_most_relevant" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/review-filters/list\"\nquerystring = {\"languagecode\": languagecode, \"filter_language\": filter_language, \"filter_customer_type\": filter_customer_type, \"user_sort\": user_sort, \"hotel_id\": hotel_id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "total_reviews":228, + "filters":[ + { + "categories":[ + { + "count":97, + "id":"couple", + "display_value_with_count":"Couple (97)", + "display_value":"Couple" + }, + { + "display_value":"Family", + "count":4, + "display_value_with_count":"Family (4)", + "id":"family_with_children" + }, + { + "display_value_with_count":"Group of friends (9)", + "id":"review_category_group_of_friends", + "count":9, + "display_value":"Group of friends" + }, + { + "display_value_with_count":"Solo traveler (6)", + "id":"solo_traveller", + "count":6, + "display_value":"Solo traveler" + } + ], + "title":"Filter by:", + "id":"filter_customer_type", + "default_display_value_with_count":"All Reviews (116)", + "default_display_value":"All Reviews" + }, + { + "categories":[ + { + "id":"de", + "display_value_with_count":"Deutsch (21)", + "count":21, + "display_value":"Deutsch" + }, + { + "count":91, + "display_value_with_count":"English (91)", + "id":"en", + "display_value":"English" + }, + { + "display_value":"Español", + "count":7, + "id":"es", + "display_value_with_count":"Español (7)" + }, + { + "display_value_with_count":"Italiano (10)", + "id":"it", + "count":10, + "display_value":"Italiano" + }, + { + "display_value":"Magyar", + "id":"hu", + "display_value_with_count":"Magyar (1)", + "count":1 + }, + { + "display_value":"Nederlands", + "display_value_with_count":"Nederlands (10)", + "id":"nl", + "count":10 + }, + { + "display_value_with_count":"Norsk (2)", + "id":"no", + "count":2, + "display_value":"Norsk" + }, + { + "display_value_with_count":"Português (2)", + "id":"pt", + "count":2, + "display_value":"Português" + }, + { + "count":2, + "id":"fi", + "display_value_with_count":"Suomi (2)", + "display_value":"Suomi" + }, + { + "count":3, + "display_value_with_count":"Svenska (3)", + "id":"sv", + "display_value":"Svenska" + }, + { + "display_value":"dansk", + "count":1, + "display_value_with_count":"dansk (1)", + "id":"da" + }, + { + "display_value":"français", + "id":"fr", + "display_value_with_count":"français (27)", + "count":27 + }, + { + "id":"pl", + "display_value_with_count":"polski (3)", + "count":3, + "display_value":"polski" + }, + { + "display_value":"čeština", + "count":1, + "id":"cs", + "display_value_with_count":"čeština (1)" + }, + { + "count":7, + "id":"el", + "display_value_with_count":"Ελληνικά (7)", + "display_value":"Ελληνικά" + }, + { + "display_value":"Русский", + "display_value_with_count":"Русский (3)", + "id":"ru", + "count":3 + }, + { + "display_value":"עברית", + "count":6, + "display_value_with_count":"עברית (6)", + "id":"he" + }, + { + "display_value":"العربية", + "display_value_with_count":"العربية (1)", + "id":"ar", + "count":1 + }, + { + "id":"zh", + "display_value_with_count":"中文 (1)", + "count":1, + "display_value":"中文" + }, + { + "display_value":"日本語", + "id":"ja", + "display_value_with_count":"日本語 (1)", + "count":1 + } + ], + "title":"Show reviews in:", + "default_display_value_with_count":"All languages (200)", + "default_display_value":"All languages", + "id":"filter_language" + } + ], + "sort":{ + "id":"user_sort", + "categories":[ + { + "id":"sort_most_relevant", + "display_value":"Most relevant" + }, + { + "id":"sort_recent_desc", + "display_value":"Newest first" + }, + { + "id":"sort_recent_asc", + "display_value":"Oldest first" + }, + { + "display_value":"Highest scores", + "id":"sort_score_desc" + }, + { + "id":"sort_score_asc", + "display_value":"Lowest scores" + } + ], + "title":"Sort by:" + }, + "hotel_id":"1790664" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"ver", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "content-type":"application/json", + "date":"Mon, 29 Jul 2019 15:44:40 GMT", + "server":"RapidAPI-1.0.20", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.0.20", + "x-ratelimit-requests-limit":"30000", + "x-ratelimit-requests-remaining":"29998", + "content-length":"3024", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"filters/list", + "url":"https://apidojo-booking-v1.p.rapidapi.com/filters/list", + "description":"A list of filter options to pass in categories_filter field. Pass params and values are as same as .../properties/list API", + "method":"GET", + "required_parameters":[ + { + "name":"room_qty", + "type":"NUMBER", + "description":"The number of rooms", + "default":"2" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date ", + "default":"2019-03-15" + }, + { + "name":"dest_ids", + "type":"NUMBER", + "description":"Value of dest_id or city_ufi field from locations/auto-complete API (Don't pass this if you use latlong as search_type)", + "default":"-3712125" + }, + { + "name":"guest_qty", + "type":"STRING", + "description":"The number of adults", + "default":"1" + }, + { + "name":"arrival_date", + "type":"STRING", + "description":"The check-in date at hotel", + "default":"2019-03-13" + }, + { + "name":"search_type", + "type":"STRING", + "description":"Value of dest_type returned by locations/auto-complete API", + "default":"city" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"categories_filter", + "type":"STRING", + "description":"The id returned by .../filters/list API", + "default":"price::9-40,free_cancellation::1,class::1,class::0,class::2" + }, + { + "name":"children_qty", + "type":"STRING", + "description":"The number of children", + "default":"2" + }, + { + "name":"children_age", + "type":"STRING", + "description":"The year old of each child that separated by comma", + "default":"5,7" + }, + { + "name":"longitude", + "type":"NUMBER", + "description":"106.686102 - Don't pass this param if you DON'T use latlong as search_type", + "default":"" + }, + { + "name":"price_filter_currencycode", + "type":"STRING", + "description":"The base currency to calculate exchange rate", + "default":"USD" + }, + { + "name":"latitude", + "type":"NUMBER", + "description":"10.838039 - Don't pass this param if you DON'T use latlong as search_type", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/filters/list\"\nquerystring = {\"languagecode\": languagecode, \"categories_filter\": categories_filter, \"room_qty\": room_qty, \"children_qty\": children_qty, \"children_age\": children_age, \"departure_date\": departure_date, \"dest_ids\": dest_ids, \"price_filter_currencycode\": price_filter_currencycode, \"guest_qty\": guest_qty, \"arrival_date\": arrival_date, \"search_type\": search_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"reviews/list", + "url":"https://apidojo-booking-v1.p.rapidapi.com/reviews/list", + "description":"List reviews of stayed guests", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_ids", + "type":"NUMBER", + "description":"The value of hotel_id field from properties/list API", + "default":"2536126" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"user_sort", + "type":"STRING", + "description":"One of the followings : sort_most_relevant|sort_recent_desc|sort_recent_asc|sort_score_desc|sort_score_asc", + "default":"sort_most_relevant" + }, + { + "name":"rows", + "type":"NUMBER", + "description":"The number of items per page", + "default":"25" + }, + { + "name":"offset", + "type":"NUMBER", + "description":"The number of items to ignore as offset for paging ", + "default":"0" + }, + { + "name":"filter_language", + "type":"STRING", + "description":"One of the followings (separated by comma for multiple values): en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en,nl" + }, + { + "name":"filter_customer_type", + "type":"STRING", + "description":"One of the followings (separated by comma for multiple values) : couple|family_with_children|review_category_group_of_friends|solo_traveller", + "default":"couple,family_with_children" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/reviews/list\"\nquerystring = {\"languagecode\": languagecode, \"user_sort\": user_sort, \"rows\": rows, \"offset\": offset, \"filter_language\": filter_language, \"hotel_ids\": hotel_ids, \"filter_customer_type\": filter_customer_type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "result":[ + { + "user_new_badges":[], + "stayed_room_info":{ + "photo":{ + "url_square60":"http://r-ec.bstatic.com/images/hotel/square60/201/201381270.jpg", + "url_640x200":"http://r-ec.bstatic.com/xdata/images/hotel/640x200/201381270.jpg?k=628f415eead41c36c4feb2110e27fb91b6d33a4c667ccbeab567af2e01cddb74&o=", + "url_max300":"http://r-ec.bstatic.com/images/hotel/max300/201/201381270.jpg", + "photo_id":201381270, + "url_original":"http://r-ec.bstatic.com/images/hotel/max500/201/201381270.jpg", + "ratio":1.5 + }, + "checkout":"2019-06-09", + "checkin":"2019-06-08", + "room_id":253612601, + "room_name":"Superior Double or Twin Room" + }, + "hotel_id":2536126, + "tags":[], + "is_trivial":0, + "pros":"", + "pros_translated":"", + "reviewng":1, + "reviewer_photos":[], + "review_hash":"150f9a5a49c483b0", + "countrycode":"vn", + "languagecode":"en-us", + "date":"2019-06-12 15:12:57", + "author":{ + "avatar":"https://graph.facebook.com/v2.9/10153024133463404/picture?type=square&height=64&width=64", + "helpful_vote_count":0, + "type_string":"Family", + "user_id":82050223, + "age_group":"", + "countrycode":"vn", + "type":"family_with_children", + "nr_reviews":0, + "name":"T.h.d", + "city":"" + }, + "is_moderated":0, + "cons_translated":"", + "title_translated":"", + "anonymous":"", + "cons":"The location is near busy port, quiet crowded sometime. ", + "title":"Disappointing", + "hotelier_name":"Hoang Yen Hotel 2", + "average_score":1.83333333333333, + "review_id":null, + "helpful_vote_count":0, + "travel_purpose":"leisure", + "hotelier_response":"" + } + ], + "count":1, + "sort_options":[] + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"ver", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "content-type":"application/json", + "date":"Mon, 29 Jul 2019 15:45:10 GMT", + "server":"RapidAPI-1.0.20", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.0.20", + "x-ratelimit-requests-limit":"30000", + "x-ratelimit-requests-remaining":"29998", + "content-length":"1442", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"properties/get-hotel-photos", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-hotel-photos", + "description":"Get photos of hotel", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_ids", + "type":"NUMBER", + "description":"Get value from properties/list", + "default":"1950932" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-hotel-photos\"\nquerystring = {\"languagecode\": languagecode, \"hotel_ids\": hotel_ids}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/detail", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/detail", + "description":"Get brief information of a property", + "method":"GET", + "required_parameters":[ + { + "name":"rec_room_qty", + "type":"NUMBER", + "description":"The number of rooms", + "default":"1" + }, + { + "name":"search_id", + "type":"STRING", + "description":"The value returned in properties/list API having response contains the selected hotel", + "default":"" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date ", + "default":"2022-09-13" + }, + { + "name":"hotel_id", + "type":"STRING", + "description":"The value of hotel_id field from properties/list API", + "default":"1720410" + }, + { + "name":"rec_guest_qty", + "type":"NUMBER", + "description":"The number of adults separated by comma, and how you arrange them in rooms", + "default":"2" + }, + { + "name":"arrival_date", + "type":"STRING", + "description":"The check-in date at hotel", + "default":"2022-09-15" + } + ], + "optional_parameters":[ + { + "name":"block_ids", + "type":"STRING", + "description":"The value of 'block_ids' field returned in .../properties/list endpoint", + "default":"" + }, + { + "name":"dest_ids", + "type":"NUMBER", + "description":"The value of 'dest_id' field returned in .../locations/auto-complete endpoint", + "default":"-3727579" + }, + { + "name":"units", + "type":"STRING", + "description":"One of the following : metric|imperial", + "default":"imperial" + }, + { + "name":"currency_code", + "type":"STRING", + "description":"The currency code", + "default":"USD" + }, + { + "name":"rec_children_qty", + "type":"NUMBER", + "description":"The number of children separated by comma, and how you arrange them in rooms", + "default":"" + }, + { + "name":"recommend_for", + "type":"NUMBER", + "description":"The recommended number of persons per room", + "default":"3" + }, + { + "name":"rec_children_age", + "type":"STRING", + "description":"The year old of each child that separated by comma. Ex : 5,7", + "default":"" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/detail\"\nquerystring = {\"dest_ids\": dest_ids, \"rec_room_qty\": rec_room_qty, \"units\": units, \"currency_code\": currency_code, \"recommend_for\": recommend_for, \"languagecode\": languagecode, \"search_id\": search_id, \"departure_date\": departure_date, \"hotel_id\": hotel_id, \"rec_guest_qty\": rec_guest_qty, \"arrival_date\": arrival_date}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/v2/get-rooms", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/v2/get-rooms", + "description":"Get full details of rooms in the hotel", + "method":"GET", + "required_parameters":[ + { + "name":"rec_room_qty", + "type":"STRING", + "description":"", + "default":"1" + }, + { + "name":"arrival_date", + "type":"STRING", + "description":"The check-in date at hotel", + "default":"2022-10-5" + }, + { + "name":"rec_guest_qty", + "type":"STRING", + "description":"The number of adults separated by comma, and how you arrange them in rooms", + "default":"2" + }, + { + "name":"hotel_id", + "type":"STRING", + "description":"The value of hotel_id field from properties/list API", + "default":"1720410" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date ", + "default":"2022-10-10" + } + ], + "optional_parameters":[ + { + "name":"units", + "type":"STRING", + "description":"One of the following : metric|imperial", + "default":"imperial" + }, + { + "name":"currency_code", + "type":"STRING", + "description":"The currency code", + "default":"USD" + }, + { + "name":"block_ids", + "type":"STRING", + "description":"The value of 'block_ids' field returned in .../properties/list endpoint", + "default":"" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"rec_children_qty", + "type":"STRING", + "description":"The number of children separated by comma, and how you arrange them in rooms", + "default":"" + }, + { + "name":"rec_children_age", + "type":"STRING", + "description":"The year old of each child that separated by comma. Ex : 5,12", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/v2/get-rooms\"\nquerystring = {\"units\": units, \"rec_room_qty\": rec_room_qty, \"currency_code\": currency_code, \"languagecode\": languagecode, \"arrival_date\": arrival_date, \"rec_guest_qty\": rec_guest_qty, \"hotel_id\": hotel_id, \"departure_date\": departure_date}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/get-policies", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-policies", + "description":"Get policies of property by id", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_ids", + "type":"NUMBER", + "description":"The value of hotel_id field from properties/list API", + "default":"1528418" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"currency_code", + "type":"STRING", + "description":"The currency code", + "default":"USD" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date at hotel", + "default":"2019-03-15" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-policies\"\nquerystring = {\"languagecode\": languagecode, \"hotel_ids\": hotel_ids, \"currency_code\": currency_code, \"departure_date\": departure_date}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/get-featured-reviews", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-featured-reviews", + "description":"Get featured reviews of stayed guests", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_id", + "type":"STRING", + "description":"The value of hotel_id from properties/list API", + "default":"1528418" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-featured-reviews\"\nquerystring = {\"languagecode\": languagecode, \"hotel_id\": hotel_id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "vpm_featured_reviews":[ + { + "id":4484886348, + "review_id":4484886348, + "title":null, + "languagecode":"en", + "cons":"The staff entered in our room the morning (around 8:30/9 a.m.) and make some noise so they woke us up. Except that, it was the best "cheap hostel" that we had in Hanoi and I won't hesitate to book it again.", + "average_score_out_of_10":10, + "pros":"REALLY nice staff, the room was really clean, the bathroom was clean and a good breakfast. Very good location as well.", + "relative_time":{ + "years_past":0, + "days_past":51, + "weeks_past":7, + "months_past":1 + }, + "travel_purpose":"leisure", + "author":{ + "avatar":"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=64", + "name":"Adélaïde", + "countrycode":"th", + "type":"group" + }, + "date":"2019-06-08 13:56:02" + }, + { + "languagecode":"en", + "average_score_out_of_10":10, + "cons":"Nothing .All perfect for the price I paid", + "title":"Amazing", + "id":4478969348, + "review_id":4478969348, + "date":"2019-05-05 04:46:06", + "relative_time":{ + "days_past":85, + "years_past":0, + "months_past":2, + "weeks_past":12 + }, + "pros":"This hostel is amazing . The location is so great with a nice price. Room are so clean staff is amazing too. I ordered a mix room by mistook then she helps me changed to female room. Love there . I will go back again if I will travel to ha noi next time", + "travel_purpose":"leisure", + "author":{ + "avatar":"https://thirdwx.qlogo.cn/mmopen/vi_32/4wGyKZpCuY0nqYon6dXOtTE0MQbU5alcpNEKqiaCDS19gBhZTRaKRNaKbZI4KeP1gO5XLJNc4QUClKs70T3Diatw/64", + "name":"Xuefei", + "countrycode":"cn", + "type":"solo_traveller" + } + }, + { + "author":{ + "name":"Tara", + "countrycode":"gb", + "type":"solo_traveller" + }, + "travel_purpose":"leisure", + "relative_time":{ + "months_past":3, + "weeks_past":14, + "years_past":0, + "days_past":102 + }, + "pros":"Such good value! Really clean and great location. Highly recommend ", + "date":"2019-04-18 03:21:02", + "review_id":2172369566, + "id":2172369566, + "title":"", + "average_score_out_of_10":10, + "languagecode":"en" + }, + { + "author":{ + "name":"Z", + "type":"solo_traveller", + "countrycode":"in" + }, + "travel_purpose":"leisure", + "relative_time":{ + "weeks_past":15, + "months_past":3, + "years_past":0, + "days_past":108 + }, + "pros":"I would say value for money, courteous staff, need and tidy room and bunks.", + "date":"2019-04-12 06:54:10", + "review_id":4474886113, + "id":4474886113, + "title":"Ga Hostel is priceless.", + "cons":"The stairs are narrow but can't expect much for the value one pay for. If there was a roof top for hang out it would be wonderful.", + "average_score_out_of_10":10, + "languagecode":"en" + }, + { + "travel_purpose":"leisure", + "relative_time":{ + "days_past":114, + "years_past":0, + "months_past":3, + "weeks_past":16 + }, + "pros":"The staff were very friendly and helpful with everything. Furthermore the location was perfect for exploring Hanoi. ", + "author":{ + "avatar":"https://graph.facebook.com/v2.9/10211263271336903/picture?type=square&height=64&width=64", + "countrycode":"dk", + "type":"with_friends", + "name":"Lisbeth" + }, + "date":"2019-04-06 14:19:58", + "title":"", + "id":1599625940, + "review_id":1599625940, + "languagecode":"en", + "average_score_out_of_10":10, + "cons":"The breakfast was a bit simple and not that filling" + }, + { + "languagecode":"en", + "average_score_out_of_10":10, + "cons":"Nothing. Here is very perfect place. Don't worry. All staffs will help you to enjoy travel.", + "id":4463978267, + "review_id":4463978267, + "title":"GA hostel is perfect place.", + "date":"2019-01-28 03:49:40", + "relative_time":{ + "months_past":6, + "weeks_past":26, + "days_past":182, + "years_past":0 + }, + "pros":"Gahostel is the perfect place to travel. All staffs is very kind and the atmosphere is good to meet new friends. I did 3 cooing classes because I wanted to learn about local food. Finally in Gahostel, I got 1500 pictures. The number means a lot of things.", + "travel_purpose":"leisure", + "author":{ + "countrycode":"kr", + "type":"solo_traveller", + "name":"Chanhee" + } + }, + { + "relative_time":{ + "years_past":0, + "days_past":246, + "weeks_past":35, + "months_past":8 + }, + "pros":"The staff was great, free healthy breakfast, comfy bed. Privacy in shower area/big shower stalls. Central in Old Quarter, so really close to many attractions. ", + "travel_purpose":"business", + "author":{ + "name":"Driderpdx", + "type":"solo_traveller", + "countrycode":"us" + }, + "date":"2018-11-25 08:43:03", + "title":"", + "id":1161324775, + "review_id":1161324775, + "languagecode":"xu", + "cons":"Nothing", + "average_score_out_of_10":10 + }, + { + "date":"2018-11-16 11:50:52", + "author":{ + "countrycode":"de", + "type":"solo_traveller", + "name":"Maria" + }, + "relative_time":{ + "months_past":8, + "weeks_past":36, + "days_past":255, + "years_past":0 + }, + "travel_purpose":"leisure", + "pros":"The staff is very friendly and caring. They offer a free yoga lesson in the hostel which was really nice. ", + "average_score_out_of_10":10, + "languagecode":"en", + "title":"", + "review_id":1834344498, + "id":1834344498 + }, + { + "date":"2018-11-09 09:36:52", + "author":{ + "type":"with_friends", + "countrycode":"be", + "name":"Voltagx" + }, + "relative_time":{ + "months_past":8, + "weeks_past":37, + "years_past":0, + "days_past":262 + }, + "travel_purpose":"leisure", + "pros":"Very good rooms ,clean ,nice stuff for shore we will comeback ,perfect price", + "cons":"Everything's ok", + "average_score_out_of_10":10, + "languagecode":"en", + "title":"Excellent Hotel", + "review_id":2048691921, + "id":2048691921 + }, + { + "average_score_out_of_10":10, + "languagecode":"en", + "review_id":1483123148, + "id":1483123148, + "title":"", + "date":"2018-10-25 04:10:05", + "author":{ + "name":"Angelica", + "countrycode":"de", + "type":"solo_traveller" + }, + "pros":"Friendly staff! Booked my amazing Sapa trip and Halong Bay tour throw the hostel! Good breakfast and anytime you need something, Lucia and her \namazing staff are there to help you! Will absolutely come again to GA Hostel !!!!!", + "relative_time":{ + "months_past":9, + "weeks_past":39, + "days_past":277, + "years_past":0 + }, + "travel_purpose":"business" + } + ], + "vpm_favorable_review_count":166 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"ver", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "content-type":"application/json", + "date":"Mon, 29 Jul 2019 15:44:56 GMT", + "server":"RapidAPI-1.0.20", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.0.20", + "x-ratelimit-requests-limit":"30000", + "x-ratelimit-requests-remaining":"29998", + "content-length":"5767", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"properties/get-description", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-description", + "description":"Get description of property by id", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_ids", + "type":"NUMBER", + "description":"The value of hotel_id from properties/list API", + "default":"1528418" + } + ], + "optional_parameters":[ + { + "name":"check_out", + "type":"STRING", + "description":"The check-out date", + "default":"2019-03-15" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"check_in", + "type":"STRING", + "description":"The check-in date at hotel", + "default":"2019-03-13" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-description\"\nquerystring = {\"hotel_ids\": hotel_ids, \"check_out\": check_out, \"languagecode\": languagecode, \"check_in\": check_in}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/list-by-map", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/list-by-map", + "description":"List properties by coordinate of bounding box", + "method":"GET", + "required_parameters":[ + { + "name":"arrival_date", + "type":"STRING", + "description":"The check-in date at hotel, the format is yyyy-MM-dd. Ex : 2022-08-14", + "default":"" + }, + { + "name":"room_qty", + "type":"STRING", + "description":"The number of rooms", + "default":"1" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date, the format is yyyy-MM-dd. Ex : 2022-08-15", + "default":"" + }, + { + "name":"guest_qty", + "type":"STRING", + "description":"The number of adults", + "default":"1" + }, + { + "name":"bbox", + "type":"STRING", + "description":"Coordinate of bounding box - latitude (bottom left),latitude (top right),longitude (bottom left),longitude (top right)", + "default":"14.291283,14.948423,120.755688,121.136864" + } + ], + "optional_parameters":[ + { + "name":"travel_purpose", + "type":"STRING", + "description":"One of the followings : leisure|business", + "default":"leisure" + }, + { + "name":"categories_filter", + "type":"STRING", + "description":"The id returned by .../filters/list API, values separated by comma", + "default":"class::1,class::2,class::3" + }, + { + "name":"children_qty", + "type":"NUMBER", + "description":"The number of children", + "default":"2" + }, + { + "name":"search_id", + "type":"STRING", + "description":"Pass \\\\\\\"none\\\\\\\" or value returned right in this API", + "default":"none" + }, + { + "name":"children_age", + "type":"STRING", + "description":"The year old of each child that separated by comma", + "default":"11,5" + }, + { + "name":"price_filter_currencycode", + "type":"STRING", + "description":"The base currency to calculate exchange rate", + "default":"USD" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"order_by", + "type":"STRING", + "description":"One of the followings : popularity|distance|class_descending|class_ascending|deals|review_score|price", + "default":"popularity" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/list-by-map\"\nquerystring = {\"travel_purpose\": travel_purpose, \"categories_filter\": categories_filter, \"children_qty\": children_qty, \"search_id\": search_id, \"children_age\": children_age, \"price_filter_currencycode\": price_filter_currencycode, \"languagecode\": languagecode, \"arrival_date\": arrival_date, \"room_qty\": room_qty, \"departure_date\": departure_date, \"order_by\": order_by, \"guest_qty\": guest_qty, \"bbox\": bbox}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "copyright":[ + "Standard Twin Room", + "Standard Double or Twin Room", + "Sold out on Booking.com", + "We only have 1 room left!", + "Studio", + "Standard Double Room", + "Double Room", + "Apartment with Pool View ", + "Executive King Suite", + "Studio Apartment", + "Loft", + "Twin Room", + "Deluxe Apartment", + "Standard Triple Room", + "Deluxe Double Room", + "Standard Queen Room", + "Deluxe Queen Room", + "Executive Queen Room", + "We only have 3 rooms left!", + "Two-Bedroom Suite", + "Family Room", + "Double or Twin Room", + "We only have 2 rooms left!", + "Superior Suite" + ], + "unfiltered_primary_count":3267, + "search_radius":0, + "search_id":"ef7e594b281564416033b6f569ac9ce948:6:121", + "page_loading_threshold":10, + "ranking_version":5, + "result":[ + { + "business_review_nr":76, + "district_id":2722, + "class":3, + "distance":"9.24", + "hotel_facilities":"14,425,209,119,15,204,22,158,49,6,184,107,16,210,304,91,110,203,46,421,133,8,81,179,258,5,161,198,45,109,25,44,11,13,20,301,118,422,424,73,47,253,3,78,127,423,140,48,305,420,28,17,96,160,124,129,2,163,23,43", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "currency_code":"PHP", + "selected_review_topic":null, + "review_score":8.6, + "deals":{ + "deal_events":[ + { + "name_translation_tag":"deals_getaway19_customer_label", + "text_color":"#F07C00", + "icon_url":"https://summer_deal.com", + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "icon_name":"percentage-circle", + "discount_percentage":40, + "code":123, + "bg_color":"#00000000", + "description_translation_tag":"deals_getaway19_customer_tooltip", + "disabled":0, + "localized_name":"Getaway Deal" + } + ], + "deals_available":{ + "has_preset":1 + }, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "cleanliness_score_reviews_nr":384, + "country_trans":"Philippines", + "longitude":121.031575884934, + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "city_name_en":"Manila", + "review_recommendation":"", + "in_best_district":0, + "districts":"2722", + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/206157659.jpg?k=5cbcc8f1e4cd6ecb67394e806416096e08bc0580e01499690b75a67eff8d60a9&o=", + "is_city_center":0, + "review_nr":390, + "class_is_estimated":1, + "urgency_room_c":0, + "is_no_prepayment_block":0, + "business_review_score":8.4, + "block_ids":[ + "147682701_183979019_0_2_0" + ], + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"Good", + "rating":7.2, + "review_count":82 + }, + "checkin":{ + "until":"", + "from":"14:00" + }, + "cc1":"ph", + "district":"Quezon City", + "accommodation_type":204, + "location_score_word":"Excellent", + "booking_home":{ + "segment":0, + "group":"hotels_and_others", + "is_booking_home":"", + "is_single_unit_property":0 + }, + "is_free_cancellable":0, + "currencycode":"PHP", + "soldout":0, + "review_score_word":"Excellent", + "hotel_name_trans":"Privato Quezon City", + "business_review_score_word":"Very Good", + "genius_discount_percentage":0, + "main_photo_id":206157659, + "latitude":14.6295874128004, + "countrycode":"ph", + "hotel_include_breakfast":0, + "cleanliness_score_word":"Excellent", + "min_total_price":18567.36, + "city_trans":"Manila", + "checkout":{ + "from":"", + "until":"12:00" + }, + "zip":"1103", + "default_language":"xu", + "location_score_reviews_nr":382, + "hotel_name":"Privato Quezon City", + "ufi":-2437894, + "cleanliness_score":8.7, + "location_score":8.6, + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"6.35", + "price_breakdown":{ + "all_inclusive_price":22800.72, + "has_tax_exceptions":0, + "has_fine_print_charges":1, + "gross_price":18567.36, + "currency":"PHP", + "sum_excluded_raw":4233.36, + "has_incalculable_charges":0 + }, + "city_in_trans":"in Manila", + "hotel_id":1476827, + "is_genius_deal":0, + "city":"Manila", + "url":"https://www.booking.com/hotel/ph/meranti.html", + "address_trans":"#82 Scout Castor Street, Barangay Laging Handa, Quezon City", + "available_rooms":10, + "extended":0, + "facilities_review_score":{ + "rating_message":"Very Good", + "review_count":385, + "rating":8.3 + }, + "price_is_final":0, + "rack_rate_savings":{ + "saving_full_price":37134, + "saving_percentage":50 + }, + "address":"#82 Scout Castor Street, Barangay Laging Handa, Quezon City" + }, + { + "min_total_price":12150, + "checkout":{ + "from":"", + "until":"12:00" + }, + "city_trans":"Manila", + "zip":"1210", + "location_score_reviews_nr":1990, + "default_language":"xu", + "hotel_name":"Lub d Philippines Makati", + "ufi":-2437894, + "cleanliness_score":9.4, + "location_score":9.1, + "timezone":"Asia/Manila", + "distance_to_cc":"6.05", + "cc_required":1, + "is_free_cancellable":0, + "currencycode":"PHP", + "review_score_word":"Wonderful", + "soldout":0, + "hotel_name_trans":"Lub d Philippines Makati", + "business_review_score_word":"Wonderful", + "genius_discount_percentage":0, + "main_photo_id":126146815, + "latitude":14.5670961378782, + "hotel_include_breakfast":0, + "countrycode":"ph", + "cleanliness_score_word":"Wonderful", + "url":"https://www.booking.com/hotel/ph/lub-d-makati-philippines.html", + "address_trans":"7820 Makati Avenue Barangay Poblacion,", + "available_rooms":10, + "extended":0, + "facilities_review_score":{ + "rating_message":"Wonderful", + "rating":9.2, + "review_count":1995 + }, + "price_is_final":1, + "rack_rate_savings":{ + "saving_full_price":14000, + "saving_percentage":13 + }, + "address":"7820 Makati Avenue Barangay Poblacion,", + "price_breakdown":{ + "currency":"PHP", + "has_fine_print_charges":0, + "all_inclusive_price":14895.9, + "has_tax_exceptions":0, + "gross_price":"12150.00", + "sum_excluded_raw":"2745.90", + "has_incalculable_charges":0 + }, + "city_in_trans":"in Manila", + "hotel_id":3019655, + "is_genius_deal":0, + "city":"Makati", + "cleanliness_score_reviews_nr":1987, + "country_trans":"Philippines", + "longitude":121.030726752323, + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "city_name_en":"Makati", + "review_recommendation":"", + "district_id":2710, + "business_review_nr":195, + "distance":"10.82", + "class":3, + "hotel_facilities":"210,6,170,16,184,107,22,29,158,209,204,57,109,25,219,81,8,180,161,172,51,179,46,117,403,421,110,186,91,185,3,171,64,422,47,424,142,20,163,2,175,124,160,17,96,108,181,418,420,305,147,48,28,143,401,423,140", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":9.2, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "is_no_prepayment_block":1, + "business_review_score":9.1, + "breakfast_review_score":{ + "rating":7.4, + "review_count":150, + "review_score_word":"Good" + }, + "preferred":1, + "block_ids":[ + "301965503_195319819_0_2_0" + ], + "checkin":{ + "from":"14:00", + "until":"" + }, + "cc1":"ph", + "district":"Makati", + "location_score_word":"Wonderful", + "accommodation_type":204, + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "segment":0, + "group":"hotels_and_others" + }, + "in_best_district":0, + "districts":"2710", + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/126146815.jpg?k=38439515d7ced30980b11887a4c49e154d1ea599b10540afc34a20abf8f4b7b7&o=", + "is_city_center":0, + "review_nr":2012, + "class_is_estimated":1, + "urgency_room_c":1 + }, + { + "price_is_final":0, + "address":"Located in ICON Plaza, 5th Avenue cor. 25th street. Bonifacio South, Bonifacio Global City", + "url":"https://www.booking.com/hotel/ph/zen-home-icon-plaza-bgc.html", + "facilities_review_score":{ + "rating":7.7, + "review_count":274, + "rating_message":"Good" + }, + "extended":0, + "address_trans":"Located in ICON Plaza, 5th Avenue cor. 25th street. Bonifacio South, Bonifacio Global City", + "available_rooms":1, + "city":"Manila", + "city_in_trans":"in Manila", + "price_breakdown":{ + "all_inclusive_price":26191.78, + "has_fine_print_charges":1, + "has_tax_exceptions":0, + "gross_price":21468.67, + "currency":"PHP", + "sum_excluded_raw":4723.11, + "has_incalculable_charges":0 + }, + "is_genius_deal":0, + "hotel_id":2743978, + "location_score":9.1, + "cleanliness_score":8.1, + "ufi":-2437894, + "cc_required":1, + "distance_to_cc":"8.80", + "timezone":"Asia/Manila", + "location_score_reviews_nr":274, + "default_language":"en", + "zip":"1634", + "city_trans":"Manila", + "urgency_c":[ + 3 + ], + "min_total_price":21468.67, + "checkout":{ + "until":"12:00", + "from":"" + }, + "hotel_name":"ZEN Home at Icon Plaza BGC", + "hotel_include_breakfast":0, + "countrycode":"ph", + "latitude":14.5478835587628, + "cleanliness_score_word":"Very Good", + "review_score_word":"Very Good", + "soldout":0, + "is_free_cancellable":0, + "currencycode":"PHP", + "main_photo_id":150735418, + "genius_discount_percentage":0, + "business_review_score_word":"Very Good", + "hotel_name_trans":"ZEN Home at Icon Plaza BGC", + "cc1":"ph", + "checkin":{ + "from":"15:00", + "until":"" + }, + "location_score_word":"Wonderful", + "accommodation_type":204, + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "group":"hotels_and_others", + "segment":0 + }, + "district":"Taguig", + "business_review_score":8.1, + "is_no_prepayment_block":0, + "block_ids":[ + "274397801_106493800_0_0_0" + ], + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"", + "rating":0, + "review_count":0 + }, + "urgency_room_c":4, + "class_is_estimated":1, + "districts":"15615,3260", + "in_best_district":0, + "review_nr":277, + "is_city_center":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/150735418.jpg?k=5ce9bf921cd865035fc48e9519b98c26f6c9ebdae478e6217b6ff2893aaf1402&o=", + "is_mobile_deal":0, + "city_name_en":"Manila", + "review_recommendation":"", + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "cleanliness_score_reviews_nr":274, + "longitude":121.047892766073, + "country_trans":"Philippines", + "review_score":8.3, + "selected_review_topic":null, + "currency_code":"PHP", + "deals":{ + "deal_events_killswitch":0, + "deals_available":{}, + "deal_attributes":{} + }, + "class":3, + "distance":"13.55", + "district_id":15615, + "business_review_nr":78, + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"96,253,8,107,16,109,104,25,11,301,305,48,143,47" + }, + { + "review_recommendation":"", + "city_name_en":"Manila", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":0, + "longitude":120.988297872986, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":2076, + "deals":{ + "deal_events_killswitch":0, + "deals_available":{}, + "deal_attributes":{} + }, + "currency_code":"PHP", + "selected_review_topic":null, + "review_score":8.2, + "is_smart_deal":0, + "hotel_facilities":"25,109,185,418,16,8,421,158,424,305,48,420,422,204,91,186,425,423", + "accommodation_type_name":"Hotel", + "business_review_nr":359, + "district_id":3261, + "class":3, + "distance":"11.18", + "district":"Paranaque", + "accommodation_type":204, + "location_score_word":"Very Good", + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "segment":0, + "group":"hotels_and_others" + }, + "checkin":{ + "until":"", + "from":"14:00" + }, + "cc1":"ph", + "preferred":1, + "breakfast_review_score":{ + "rating":0, + "review_count":0, + "review_score_word":"" + }, + "block_ids":[ + "311957101_113222285_0_0_0" + ], + "is_no_prepayment_block":0, + "business_review_score":8.1, + "class_is_estimated":1, + "urgency_room_c":5, + "is_mobile_deal":0, + "is_city_center":0, + "review_nr":2103, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/138856421.jpg?k=cfd524a186ab73a19764b6314fd05424f36b449060ebc0f85957e24025e06e50&o=", + "in_best_district":0, + "districts":"3261", + "distance_to_cc":"7.70", + "cc_required":1, + "timezone":"Asia/Manila", + "ufi":-2437894, + "location_score":8.3, + "cleanliness_score":8.6, + "hotel_name":"Hop Inn Hotel Aseana City Manila", + "zip":"1702", + "min_total_price":11700, + "city_trans":"Manila", + "checkout":{ + "until":"12:00", + "from":"" + }, + "location_score_reviews_nr":2072, + "default_language":"en", + "cleanliness_score_word":"Excellent", + "countrycode":"ph", + "hotel_include_breakfast":0, + "latitude":14.5278583655618, + "hotel_name_trans":"Hop Inn Hotel Aseana City Manila", + "main_photo_id":138856421, + "genius_discount_percentage":0, + "business_review_score_word":"Very Good", + "soldout":0, + "review_score_word":"Very Good", + "is_free_cancellable":0, + "currencycode":"PHP", + "address":"Lot 9 Block 5, near corner of Bradco Avenue and Macapagal Boulevard, Aseana City, Paranaque City, Metro Manila, Philippines", + "price_is_final":1, + "address_trans":"Lot 9 Block 5, near corner of Bradco Avenue and Macapagal Boulevard, Aseana City, Paranaque City, Metro Manila, Philippines", + "available_rooms":10, + "facilities_review_score":{ + "rating_message":"Good", + "review_count":2080, + "rating":7.6 + }, + "extended":0, + "url":"https://www.booking.com/hotel/ph/hop-inn-aseana-city-manila.html", + "city":"Manila", + "hotel_id":3119571, + "is_genius_deal":0, + "price_breakdown":{ + "currency":"PHP", + "gross_price":"11700.00", + "all_inclusive_price":14274, + "has_tax_exceptions":0, + "has_fine_print_charges":0, + "has_incalculable_charges":0, + "sum_excluded_raw":"2574.00" + }, + "city_in_trans":"in Manila" + }, + { + "hotel_name":"Red Planet Manila Bay", + "zip":"0930", + "checkout":{ + "from":"", + "until":"12:00" + }, + "min_total_price":13808.34, + "city_trans":"Manila", + "default_language":"xu", + "location_score_reviews_nr":1751, + "distance_to_cc":"2.20", + "cc_required":1, + "timezone":"Asia/Manila", + "ufi":-2437894, + "location_score":8.2, + "cleanliness_score":9.1, + "hotel_name_trans":"Red Planet Manila Bay", + "genius_discount_percentage":0, + "main_photo_id":130337272, + "business_review_score_word":"Very Good", + "soldout":0, + "review_score_word":"Excellent", + "is_free_cancellable":0, + "currencycode":"PHP", + "cleanliness_score_word":"Wonderful", + "countrycode":"ph", + "hotel_include_breakfast":0, + "latitude":14.5774944, + "address_trans":"Arquiza corner Alhambra Streets Ermita", + "available_rooms":10, + "facilities_review_score":{ + "rating_message":"Very Good", + "review_count":1759, + "rating":8.4 + }, + "extended":0, + "url":"https://www.booking.com/hotel/ph/red-planet-manila-bay-manila.html", + "address":"Arquiza corner Alhambra Streets Ermita", + "price_is_final":1, + "rack_rate_savings":{ + "saving_full_price":20717, + "saving_percentage":33 + }, + "hotel_id":2661289, + "is_genius_deal":0, + "price_breakdown":{ + "sum_excluded_raw":3175.92, + "has_incalculable_charges":0, + "currency":"PHP", + "gross_price":13808.34, + "has_tax_exceptions":0, + "all_inclusive_price":16984.26, + "has_fine_print_charges":0 + }, + "city_in_trans":"in Manila", + "city":"Manila", + "longitude":120.9793477, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":1755, + "city_name_en":"Manila", + "review_recommendation":"", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "is_smart_deal":0, + "hotel_facilities":"160,96,81,8,418,51,179,108,161,2,109,163,187,25,423,110,91,186,46,305,48,420,421,189,184,107,16,3,185,188,425,13,20,422,158,47,424", + "accommodation_type_name":"Hotel", + "business_review_nr":377, + "district_id":3374, + "class":3, + "distance":"5.90", + "deals":{ + "deal_events":[ + { + "discount_percentage":40, + "bg_color":"#00000000", + "code":123, + "description_translation_tag":"deals_getaway19_customer_tooltip", + "disabled":0, + "localized_name":"Getaway Deal", + "name_translation_tag":"deals_getaway19_customer_label", + "text_color":"#F07C00", + "icon_url":"https://summer_deal.com", + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "icon_name":"percentage-circle" + } + ], + "deals_available":{ + "has_preset":1 + }, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":8.6, + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"", + "review_count":0, + "rating":0 + }, + "block_ids":[ + "266128901_105636671_0_0_0" + ], + "is_no_prepayment_block":0, + "business_review_score":8.5, + "district":"Manila Bay", + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "group":"hotels_and_others", + "segment":0 + }, + "location_score_word":"Very Good", + "accommodation_type":204, + "checkin":{ + "from":"14:00", + "until":"" + }, + "cc1":"ph", + "is_mobile_deal":0, + "review_nr":1784, + "is_city_center":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/130337272.jpg?k=8f80fb5e1ccda2f2c6299c8511f3216bee740c174e7c9721ca59229fccb06eb2&o=", + "in_best_district":0, + "districts":"3374,8110", + "class_is_estimated":1, + "urgency_room_c":6 + }, + { + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "review_score":7.5, + "selected_review_topic":null, + "currency_code":"PHP", + "accommodation_type_name":"Apartment", + "hotel_facilities":"163,21,2,249,10,55,96,181,108,54,418,420,48,147,28,56,111,223,30,197,185,3,250,188,247,65,92,422,27,224,246,424,47,222,126,159,13,11,52,59,301,109,25,72,104,248,8,12,180,179,60,200,9,76,251,173,16,107,75,22,145,49,14,425,119", + "is_smart_deal":0, + "class":3, + "distance":"13.05", + "business_review_nr":9, + "district_id":15615, + "mobile_discount_percentage":0, + "city_name_en":"Taguig", + "review_recommendation":"", + "country_trans":"Philippines", + "longitude":121.044729351997, + "cleanliness_score_reviews_nr":12, + "urgency_room_c":7, + "class_is_estimated":1, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/119674070.jpg?k=0dfd31b16fed2916f0c579e0db8e43b26ce5d0cd5a4e349aa21a0b84c63948b2&o=", + "is_city_center":0, + "review_nr":12, + "is_mobile_deal":0, + "districts":"15615,3260", + "in_best_district":0, + "location_score_word":"Excellent", + "accommodation_type":201, + "booking_home":{ + "is_booking_home":1, + "is_single_unit_property":1, + "group":"apartment_like", + "segment":2 + }, + "district":"Taguig", + "cc1":"ph", + "checkin":{ + "until":"17:00", + "from":"14:00" + }, + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"", + "review_count":0, + "rating":0 + }, + "block_ids":[ + "263069501_143494366_3_0_0" + ], + "business_review_score":7.2, + "is_no_prepayment_block":0, + "cleanliness_score_word":"Good", + "latitude":14.5512663973055, + "hotel_include_breakfast":0, + "countrycode":"ph", + "business_review_score_word":"Good", + "genius_discount_percentage":0, + "main_photo_id":119674070, + "hotel_name_trans":"Featherlight Suites - Forbes Wood Heights", + "is_free_cancellable":0, + "currencycode":"PHP", + "review_score_word":"Good", + "soldout":0, + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"8.30", + "location_score":8.8, + "cleanliness_score":7.5, + "ufi":-2437894, + "hotel_name":"Featherlight Suites - Forbes Wood Heights", + "default_language":"en", + "location_score_reviews_nr":12, + "min_total_price":24000, + "urgency_c":[ + 3 + ], + "city_trans":"Manila", + "checkout":{ + "from":"12:00", + "until":"12:00" + }, + "zip":"1201", + "city":"Taguig", + "is_genius_deal":0, + "hotel_id":2630695, + "city_in_trans":"in Manila", + "price_breakdown":{ + "has_incalculable_charges":0, + "sum_excluded_raw":"2880.00", + "currency":"PHP", + "gross_price":"24000.00", + "all_inclusive_price":26880, + "has_fine_print_charges":0, + "has_tax_exceptions":0 + }, + "address":"3 Forbestown Rd, Taguig, Metro Manila", + "price_is_final":0, + "extended":0, + "facilities_review_score":{ + "rating":7.3, + "review_count":12, + "rating_message":"Good" + }, + "available_rooms":1, + "address_trans":"3 Forbestown Rd, Taguig, Metro Manila", + "url":"https://www.booking.com/hotel/ph/liz-d-39-fleur.html" + }, + { + "business_review_nr":91, + "district_id":3376, + "class":3, + "distance":"6.61", + "hotel_facilities":"241,107,16,103,121,158,145,22,75,57,15,225,204,425,219,25,44,109,45,179,5,51,53,161,8,421,46,110,58,240,3,185,92,64,253,47,205,27,422,301,142,11,43,10,2,244,23,418,96,160,124,28,48,305,420,423", + "is_smart_deal":1, + "accommodation_type_name":"Condo Hotel", + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":7.4, + "deals":{ + "is_smart_deal":1, + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "cleanliness_score_reviews_nr":812, + "country_trans":"Philippines", + "longitude":120.9849991, + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "review_recommendation":"", + "city_name_en":"Manila", + "in_best_district":0, + "districts":"3376", + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/75865569.jpg?k=6917f27dd0402fdacc37ec0b9949bd158b94042ff35fa3344204316069ee6767&o=", + "review_nr":820, + "is_city_center":0, + "class_is_estimated":1, + "urgency_room_c":8, + "is_no_prepayment_block":0, + "business_review_score":7.2, + "breakfast_review_score":{ + "rating":5.7, + "review_count":69, + "review_score_word":"Okay" + }, + "preferred":1, + "block_ids":[ + "47469502_97693420_0_2_0" + ], + "checkin":{ + "until":"", + "from":"14:00" + }, + "cc1":"ph", + "district":"Malate", + "location_score_word":"Very Good", + "accommodation_type":219, + "booking_home":{ + "group":"apartment_like", + "segment":1, + "is_booking_home":1, + "is_single_unit_property":0 + }, + "currencycode":"PHP", + "is_free_cancellable":0, + "soldout":0, + "review_score_word":"Good", + "hotel_name_trans":"JMM Grand Suites", + "business_review_score_word":"Good", + "genius_discount_percentage":0, + "main_photo_id":75865569, + "latitude":14.573738, + "countrycode":"ph", + "hotel_include_breakfast":0, + "cleanliness_score_word":"Good", + "min_total_price":14033.05, + "urgency_c":[ + 3 + ], + "city_trans":"Manila", + "checkout":{ + "from":"11:00", + "until":"12:00" + }, + "zip":"1004", + "location_score_reviews_nr":808, + "default_language":"en", + "hotel_name":"JMM Grand Suites", + "ufi":-2437894, + "cleanliness_score":7.3, + "location_score":8.2, + "timezone":"Asia/Manila", + "distance_to_cc":"2.60", + "cc_required":1, + "price_breakdown":{ + "sum_excluded_raw":3087.27, + "has_incalculable_charges":0, + "has_fine_print_charges":0, + "all_inclusive_price":17120.32, + "has_tax_exceptions":0, + "gross_price":14033.05, + "currency":"PHP" + }, + "city_in_trans":"in Manila", + "hotel_id":474695, + "is_genius_deal":0, + "city":"Manila", + "url":"https://www.booking.com/hotel/ph/jmm-grand-suites.html", + "available_rooms":1, + "address_trans":"1622 Birch Tower Jeorge Bocobo St, Along Pedro Gil Malate", + "extended":0, + "facilities_review_score":{ + "review_count":808, + "rating":6.9, + "rating_message":"Pleasant" + }, + "price_is_final":1, + "address":"1622 Birch Tower Jeorge Bocobo St, Along Pedro Gil Malate" + }, + { + "districts":"2710", + "in_best_district":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/118373272.jpg?k=9c1d0070135e89e09f84b32a662e258a505a4e2ddb787d59e15dca1773d2213f&o=", + "review_nr":89, + "is_city_center":0, + "is_mobile_deal":0, + "urgency_room_c":9, + "class_is_estimated":1, + "business_review_score":8, + "is_no_prepayment_block":0, + "preferred":1, + "block_ids":[ + "281051801_107215023_0_2_0" + ], + "breakfast_review_score":{ + "review_score_word":"Very Poor", + "review_count":1, + "rating":2.5 + }, + "cc1":"ph", + "checkin":{ + "until":"", + "from":"15:00" + }, + "location_score_word":"Excellent", + "accommodation_type":201, + "booking_home":{ + "group":"apartment_like", + "segment":2, + "is_single_unit_property":1, + "is_booking_home":1 + }, + "district":"Makati", + "class":3, + "distance":"10.53", + "district_id":2710, + "business_review_nr":8, + "accommodation_type_name":"Apartment", + "hotel_facilities":"109,2,107,108,16,103,96,143,47,305,48,301,91,11", + "is_smart_deal":0, + "review_score":7.9, + "currency_code":"PHP", + "selected_review_topic":null, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "cleanliness_score_reviews_nr":88, + "country_trans":"Philippines", + "longitude":121.027409, + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "review_recommendation":"", + "city_name_en":"Manila", + "city_in_trans":"in Manila", + "price_breakdown":{ + "has_incalculable_charges":0, + "sum_excluded_raw":3765.73, + "currency":"PHP", + "gross_price":17116.96, + "has_tax_exceptions":0, + "all_inclusive_price":20882.69, + "has_fine_print_charges":1 + }, + "is_genius_deal":0, + "hotel_id":2810518, + "city":"Manila", + "url":"https://www.booking.com/hotel/ph/zen-home-milano-residences-makati.html", + "extended":0, + "facilities_review_score":{ + "rating_message":"Good", + "rating":7.5, + "review_count":87 + }, + "available_rooms":1, + "address_trans":"Located in Milano Residences, Milano Residences, A Spring Street", + "price_is_final":0, + "address":"Located in Milano Residences, Milano Residences, A Spring Street", + "currencycode":"PHP", + "is_free_cancellable":0, + "soldout":0, + "review_score_word":"Good", + "business_review_score_word":"Very Good", + "main_photo_id":118373272, + "genius_discount_percentage":0, + "hotel_name_trans":"ZEN Home Milano Residences Makati", + "latitude":14.5669178, + "countrycode":"ph", + "hotel_include_breakfast":0, + "cleanliness_score_word":"Good", + "default_language":"en", + "location_score_reviews_nr":88, + "urgency_c":[ + 3 + ], + "checkout":{ + "until":"11:00", + "from":"" + }, + "min_total_price":17116.96, + "city_trans":"Manila", + "zip":"1210", + "hotel_name":"ZEN Home Milano Residences Makati", + "cleanliness_score":7.7, + "location_score":8.7, + "ufi":-2437894, + "timezone":"Asia/Manila", + "distance_to_cc":"5.80", + "cc_required":1 + }, + { + "cleanliness_score_reviews_nr":38, + "country_trans":"Philippines", + "longitude":121.046367, + "is_wholesaler_candidate":1, + "mobile_discount_percentage":0, + "city_name_en":"Manila", + "review_recommendation":"", + "district_id":15615, + "business_review_nr":9, + "class":3, + "distance":"13.08", + "hotel_facilities":"48,47,14,11,301,119,109,2,104,8,96,108,16,107,179", + "is_smart_deal":0, + "accommodation_type_name":"Apartment", + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":7.9, + "deals":{ + "deal_events_killswitch":0, + "deal_attributes":{}, + "deals_available":{} + }, + "is_no_prepayment_block":0, + "business_review_score":8.4, + "preferred":1, + "block_ids":[ + "292657704_186588186_4_0_0" + ], + "breakfast_review_score":{ + "review_score_word":"", + "review_count":0, + "rating":0 + }, + "checkin":{ + "from":"15:00", + "until":"23:00" + }, + "cc1":"ph", + "district":"Taguig", + "booking_home":{ + "segment":1, + "group":"apartment_like", + "is_booking_home":1, + "is_single_unit_property":0 + }, + "location_score_word":"Wonderful", + "accommodation_type":201, + "in_best_district":0, + "districts":"15615,3260", + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/159731343.jpg?k=8d1edbbaca9ab08a5a97bc1935def180e5658dabe62ac86a4c647979d0083783&o=", + "review_nr":38, + "is_city_center":0, + "class_is_estimated":1, + "urgency_room_c":10, + "urgency_c":[ + 3 + ], + "min_total_price":27276, + "city_trans":"Manila", + "checkout":{ + "until":"11:00", + "from":"" + }, + "zip":"", + "default_language":"xu", + "location_score_reviews_nr":38, + "hotel_name":"McKinley Park Residences NETFLIX @St. Lukes", + "ufi":-2437894, + "location_score":9.1, + "cleanliness_score":7.5, + "timezone":"Asia/Manila", + "distance_to_cc":"8.35", + "cc_required":1, + "currencycode":"PHP", + "is_free_cancellable":0, + "soldout":0, + "review_score_word":"Good", + "hotel_name_trans":"McKinley Park Residences NETFLIX @St. Lukes", + "business_review_score_word":"Very Good", + "main_photo_id":159731343, + "genius_discount_percentage":0, + "latitude":14.553077, + "countrycode":"ph", + "hotel_include_breakfast":0, + "cleanliness_score_word":"Good", + "url":"https://www.booking.com/hotel/ph/mckinley-park-residences-w-47-netflix-50mbps-fiber-apt.html", + "address_trans":"30th street cor 3rd ave, Taguig", + "available_rooms":1, + "extended":0, + "facilities_review_score":{ + "rating_message":"Good", + "review_count":38, + "rating":7.4 + }, + "price_is_final":1, + "address":"30th street cor 3rd ave, Taguig", + "price_breakdown":{ + "has_fine_print_charges":0, + "all_inclusive_price":31549.12, + "has_tax_exceptions":0, + "gross_price":"27276.00", + "currency":"PHP", + "sum_excluded_raw":4273.12, + "has_incalculable_charges":0 + }, + "city_in_trans":"in Manila", + "hotel_id":2926577, + "is_genius_deal":0, + "city":"Manila" + }, + { + "distance_to_cc":"6.25", + "cc_required":1, + "timezone":"Asia/Manila", + "cleanliness_score":9.1, + "location_score":8.7, + "ufi":-2437894, + "hotel_name":"Herald Suites Polaris", + "location_score_reviews_nr":494, + "default_language":"xu", + "zip":"1209", + "city_trans":"Manila", + "min_total_price":14700, + "checkout":{ + "until":"12:00", + "from":"" + }, + "cleanliness_score_word":"Wonderful", + "countrycode":"ph", + "hotel_include_breakfast":1, + "latitude":14.5626535, + "main_photo_id":108149026, + "genius_discount_percentage":0, + "business_review_score_word":"Excellent", + "hotel_name_trans":"Herald Suites Polaris", + "review_score_word":"Excellent", + "soldout":0, + "is_free_cancellable":0, + "currencycode":"PHP", + "address":"45 Polaris St., Bel-Air, Makati City", + "price_is_final":1, + "facilities_review_score":{ + "rating_message":"Excellent", + "review_count":495, + "rating":8.6 + }, + "extended":0, + "available_rooms":7, + "address_trans":"45 Polaris St., Bel-Air, Makati City", + "url":"https://www.booking.com/hotel/ph/herald-suite-polaris.html", + "city":"Manila ", + "is_genius_deal":0, + "hotel_id":2581188, + "city_in_trans":"in Manila", + "price_breakdown":{ + "currency":"PHP", + "has_tax_exceptions":0, + "all_inclusive_price":17934, + "has_fine_print_charges":0, + "gross_price":"14700.00", + "has_incalculable_charges":0, + "sum_excluded_raw":"3234.00" + }, + "review_recommendation":"", + "city_name_en":"Manila ", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":0, + "longitude":121.029278, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":496, + "deals":{ + "deal_events":[ + { + "disabled":0, + "localized_name":"Getaway Deal", + "code":123, + "bg_color":"#00000000", + "discount_percentage":40, + "description_translation_tag":"deals_getaway19_customer_tooltip", + "icon_name":"percentage-circle", + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "name_translation_tag":"deals_getaway19_customer_label", + "icon_url":"https://summer_deal.com", + "text_color":"#F07C00" + } + ], + "deal_events_killswitch":0, + "deals_available":{ + "has_preset":1 + }, + "deal_attributes":{} + }, + "review_score":8.8, + "currency_code":"PHP", + "selected_review_topic":null, + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"2,23,418,108,129,181,124,160,17,96,55,305,48,420,140,111,423,3,222,7,47,424,205,422,20,13,219,44,25,109,51,5,179,161,180,81,8,421,203,46,117,91,304,251,210,107,184,16,6,145,158,22,75,204,134,425,209", + "class":3, + "distance":"10.96", + "district_id":2710, + "business_review_nr":84, + "accommodation_type":204, + "location_score_word":"Excellent", + "booking_home":{ + "is_booking_home":"", + "is_single_unit_property":0, + "group":"hotels_and_others", + "segment":0 + }, + "district":"Makati", + "cc1":"ph", + "checkin":{ + "until":"", + "from":"14:00" + }, + "preferred":1, + "block_ids":[ + "258118802_104486078_0_1_0" + ], + "breakfast_review_score":{ + "review_count":98, + "rating":7.9, + "review_score_word":"Good" + }, + "business_review_score":8.6, + "is_no_prepayment_block":0, + "urgency_room_c":0, + "class_is_estimated":1, + "is_city_center":0, + "review_nr":502, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/108149026.jpg?k=c2c138fd755ebad8bf2dd93b1de08543b5d5008a6ace9ac57948fe94aa9aac13&o=", + "is_mobile_deal":0, + "districts":"2710", + "in_best_district":0 + }, + { + "url":"https://www.booking.com/hotel/ph/upper-story-serviced-apartments.html", + "available_rooms":10, + "address_trans":"Centro Tower, 138 N. Domingo Street, ​Barangay Kaunlaran, Cubao, Quezon City", + "extended":0, + "facilities_review_score":{ + "rating":9.3, + "review_count":135, + "rating_message":"Wonderful" + }, + "price_is_final":1, + "rack_rate_savings":{ + "saving_percentage":12, + "saving_full_price":13920 + }, + "address":"Centro Tower, 138 N. Domingo Street, ​Barangay Kaunlaran, Cubao, Quezon City", + "price_breakdown":{ + "all_inclusive_price":15118.19, + "has_fine_print_charges":0, + "has_tax_exceptions":0, + "gross_price":12311.23, + "currency":"PHP", + "has_incalculable_charges":0, + "sum_excluded_raw":2806.96 + }, + "city_in_trans":"in Manila", + "hotel_id":4189247, + "is_genius_deal":0, + "city":"Manila", + "min_total_price":12311.23, + "city_trans":"Manila", + "checkout":{ + "from":"", + "until":"12:00" + }, + "zip":"1111", + "default_language":"en", + "location_score_reviews_nr":134, + "hotel_name":"Upper Story Serviced Apartments", + "ufi":-2437894, + "location_score":8.4, + "cleanliness_score":9.5, + "timezone":"Asia/Manila", + "distance_to_cc":"6.95", + "cc_required":1, + "is_free_cancellable":0, + "currencycode":"PHP", + "review_score_word":"Wonderful", + "soldout":0, + "hotel_name_trans":"Upper Story Serviced Apartments", + "business_review_score_word":"Wonderful", + "main_photo_id":166509609, + "genius_discount_percentage":0, + "latitude":14.617193, + "hotel_include_breakfast":1, + "countrycode":"ph", + "cleanliness_score_word":"Exceptional", + "is_no_prepayment_block":0, + "business_review_score":9, + "breakfast_review_score":{ + "review_score_word":"Very Good", + "review_count":27, + "rating":8.3 + }, + "preferred":1, + "block_ids":[ + "418924701_127428730_2_1_0" + ], + "checkin":{ + "from":"14:00", + "until":"" + }, + "cc1":"ph", + "district":"Quezon City", + "accommodation_type":204, + "location_score_word":"Very Good", + "booking_home":{ + "is_booking_home":"", + "is_single_unit_property":0, + "segment":0, + "group":"hotels_and_others" + }, + "in_best_district":0, + "districts":"2722", + "is_mobile_deal":1, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/166509609.jpg?k=1362ef755e48b008d48165de6fc53924ded5186a824b2adff5431e1fccef3aa6&o=", + "is_city_center":0, + "review_nr":135, + "class_is_estimated":1, + "urgency_room_c":4, + "cleanliness_score_reviews_nr":134, + "country_trans":"Philippines", + "longitude":121.044454, + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "review_recommendation":"", + "city_name_en":"Manila", + "district_id":2722, + "business_review_nr":8, + "distance":"10.57", + "class":3, + "hotel_facilities":"47,158,422,22,204,119,301,11,425,177,16,107,253,6,28,421,420,48,117,305,223,423,4,104,175,109,108,418,8,81,96,194,124", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":9.3, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + } + }, + { + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"185,188,189,16,184,107,422,424,47,158,13,425,20,163,2,109,25,187,8,96,160,108,161,179,418,51,420,48,305,46,28,421,423,186,91", + "class":3, + "distance":"11.81", + "district_id":2722, + "business_review_nr":263, + "deals":{ + "deal_events":[ + { + "icon_name":"percentage-circle", + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "icon_url":"https://summer_deal.com", + "text_color":"#F07C00", + "name_translation_tag":"deals_getaway19_customer_label", + "localized_name":"Getaway Deal", + "disabled":0, + "description_translation_tag":"deals_getaway19_customer_tooltip", + "bg_color":"#00000000", + "code":123, + "discount_percentage":40 + } + ], + "deals_available":{ + "has_preset":1 + }, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "review_score":9, + "selected_review_topic":null, + "currency_code":"PHP", + "longitude":121.05590822943, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":1107, + "review_recommendation":"", + "city_name_en":"Quezon City", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "is_city_center":0, + "review_nr":1128, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/135023915.jpg?k=2bb0f5715e5ee4e3591500722555319f4f09ef8bda88ef005650698c9112bde0&o=", + "is_mobile_deal":0, + "districts":"2722", + "in_best_district":0, + "urgency_room_c":11, + "class_is_estimated":1, + "breakfast_review_score":{ + "review_score_word":"", + "rating":0, + "review_count":0 + }, + "preferred":1, + "block_ids":[ + "262187102_105120793_0_0_0" + ], + "business_review_score":8.9, + "is_no_prepayment_block":0, + "location_score_word":"Excellent", + "accommodation_type":204, + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "group":"hotels_and_others", + "segment":0 + }, + "district":"Quezon City", + "cc1":"ph", + "checkin":{ + "until":"", + "from":"14:00" + }, + "genius_discount_percentage":0, + "main_photo_id":135023915, + "business_review_score_word":"Excellent", + "hotel_name_trans":"Red Planet Aurora Boulevard", + "soldout":0, + "review_score_word":"Wonderful", + "currencycode":"PHP", + "is_free_cancellable":0, + "cleanliness_score_word":"Wonderful", + "hotel_include_breakfast":0, + "countrycode":"ph", + "latitude":14.624450320266, + "hotel_name":"Red Planet Aurora Boulevard", + "default_language":"xu", + "location_score_reviews_nr":1102, + "zip":"1109", + "checkout":{ + "until":"12:00", + "from":"" + }, + "min_total_price":11337.38, + "city_trans":"Manila", + "distance_to_cc":"8.40", + "cc_required":1, + "timezone":"Asia/Manila", + "location_score":8.8, + "cleanliness_score":9.3, + "ufi":-2437894, + "is_genius_deal":0, + "hotel_id":2621871, + "city_in_trans":"in Manila", + "price_breakdown":{ + "sum_excluded_raw":2584.92, + "has_incalculable_charges":0, + "has_fine_print_charges":0, + "all_inclusive_price":13922.3, + "has_tax_exceptions":0, + "gross_price":11337.38, + "currency":"PHP" + }, + "city":"Quezon City", + "facilities_review_score":{ + "rating":8.7, + "review_count":1106, + "rating_message":"Excellent" + }, + "extended":0, + "available_rooms":10, + "address_trans":"Stanford St. corner Aurora Blvd., Cubao, Quezon City 1109", + "url":"https://www.booking.com/hotel/ph/red-planet-aurora-blvd-quezon-city.html", + "address":"Stanford St. corner Aurora Blvd., Cubao, Quezon City 1109", + "rack_rate_savings":{ + "saving_percentage":46, + "saving_full_price":21087 + }, + "price_is_final":1 + }, + { + "city":"Manila", + "price_breakdown":{ + "sum_excluded_raw":3124.04, + "has_incalculable_charges":1, + "gross_price":14200.17, + "all_inclusive_price":17324.21, + "has_fine_print_charges":1, + "has_tax_exceptions":0, + "currency":"PHP" + }, + "city_in_trans":"in Manila", + "hotel_id":2405287, + "is_genius_deal":0, + "price_is_final":0, + "address":"Located in Knightsbridge Residences, 4392 B. Valdez, Makati, Kalakhang Maynila, PH", + "url":"https://www.booking.com/hotel/ph/zen-home-knightsbridge-residences-makati.html", + "address_trans":"Located in Knightsbridge Residences, 4392 B. Valdez, Makati, Kalakhang Maynila, PH", + "available_rooms":7, + "facilities_review_score":{ + "rating":7.8, + "review_count":294, + "rating_message":"Good" + }, + "extended":0, + "hotel_include_breakfast":0, + "countrycode":"ph", + "latitude":14.5672476527804, + "cleanliness_score_word":"Good", + "soldout":0, + "review_score_word":"Good", + "currencycode":"PHP", + "is_free_cancellable":0, + "hotel_name_trans":"ZEN Home Knightsbridge Residences Makati", + "genius_discount_percentage":0, + "main_photo_id":116086624, + "business_review_score_word":"Good", + "ufi":-2437894, + "cleanliness_score":7.4, + "location_score":8.6, + "cc_required":1, + "distance_to_cc":"5.80", + "timezone":"Asia/Manila", + "zip":"1210", + "min_total_price":14200.17, + "checkout":{ + "until":"12:00", + "from":"" + }, + "city_trans":"Manila", + "default_language":"en", + "location_score_reviews_nr":296, + "hotel_name":"ZEN Home Knightsbridge Residences Makati", + "class_is_estimated":1, + "urgency_room_c":12, + "in_best_district":0, + "districts":"2710", + "is_mobile_deal":0, + "review_nr":300, + "is_city_center":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/116086624.jpg?k=10b37df535d73886f469e8c08bffd893de4c05631a6ca57260dbcd20882e3185&o=", + "checkin":{ + "from":"15:00", + "until":"" + }, + "cc1":"ph", + "district":"Makati", + "location_score_word":"Excellent", + "booking_home":{ + "is_booking_home":1, + "is_single_unit_property":1, + "group":"apartment_like", + "segment":2 + }, + "accommodation_type":201, + "is_no_prepayment_block":0, + "business_review_score":7.7, + "breakfast_review_score":{ + "review_score_word":"Poor", + "review_count":5, + "rating":3.5 + }, + "preferred":1, + "block_ids":[ + "240528701_127250440_0_2_0" + ], + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":7.9, + "deals":{ + "deal_events_killswitch":0, + "deals_available":{}, + "deal_attributes":{} + }, + "business_review_nr":47, + "district_id":2710, + "class":3, + "distance":"10.52", + "is_smart_deal":0, + "hotel_facilities":"107,54,108,16,96,55,104,25,109,2,23,185,301,110,11,47,305,48,22", + "accommodation_type_name":"Apartment", + "city_name_en":"Manila", + "review_recommendation":"", + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "cleanliness_score_reviews_nr":294, + "longitude":121.027552611195, + "country_trans":"Philippines" + }, + { + "hotel_id":3670858, + "is_genius_deal":0, + "price_breakdown":{ + "sum_excluded_raw":2222.35, + "has_incalculable_charges":0, + "currency":"PHP", + "gross_price":10101.57, + "has_fine_print_charges":0, + "all_inclusive_price":12323.92, + "has_tax_exceptions":0 + }, + "city_in_trans":"in Manila", + "city":"Manila", + "address_trans":"17 Esteban Abada Street, Loyola Heights, Quezon City", + "available_rooms":1, + "extended":0, + "facilities_review_score":{ + "rating":9, + "review_count":652, + "rating_message":"Wonderful" + }, + "url":"https://www.booking.com/hotel/ph/the-studio-89-residences.html", + "address":"17 Esteban Abada Street, Loyola Heights, Quezon City", + "price_is_final":1, + "rack_rate_savings":{ + "saving_full_price":11657, + "saving_percentage":13 + }, + "hotel_name_trans":"ZEN Premium Studio 89 QC", + "business_review_score_word":"Wonderful", + "genius_discount_percentage":0, + "main_photo_id":173235761, + "is_free_cancellable":0, + "currencycode":"PHP", + "review_score_word":"Wonderful", + "soldout":0, + "cleanliness_score_word":"Wonderful", + "latitude":14.632843, + "countrycode":"ph", + "hotel_include_breakfast":0, + "hotel_name":"ZEN Premium Studio 89 QC", + "urgency_c":[ + 3 + ], + "checkout":{ + "from":"", + "until":"12:00" + }, + "min_total_price":10101.57, + "city_trans":"Manila", + "zip":"1108", + "default_language":"xu", + "location_score_reviews_nr":651, + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"10.45", + "ufi":-2437894, + "location_score":8.8, + "cleanliness_score":9.3, + "is_mobile_deal":1, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/173235761.jpg?k=a2ab8b4e9ba7d6cbc62e89a599df17f7e0ac262e542c0bdde839040eed7bc9d6&o=", + "is_city_center":0, + "review_nr":671, + "in_best_district":0, + "districts":"2722", + "class_is_estimated":1, + "urgency_room_c":13, + "breakfast_review_score":{ + "review_score_word":"", + "review_count":0, + "rating":0 + }, + "preferred":1, + "block_ids":[ + "367085806_119342568_0_0_0" + ], + "is_no_prepayment_block":0, + "business_review_score":9.2, + "district":"Quezon City", + "accommodation_type":204, + "location_score_word":"Excellent", + "booking_home":{ + "group":"hotels_and_others", + "segment":0, + "is_booking_home":"", + "is_single_unit_property":0 + }, + "checkin":{ + "from":"14:00", + "until":"" + }, + "cc1":"ph", + "hotel_facilities":"11,425,20,422,424,47,6,16,184,107,423,420,48,305,46,421,8,96,124,160,179,418,2,109", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "business_review_nr":141, + "district_id":2722, + "distance":"13.71", + "class":3, + "deals":{ + "deal_attributes":{}, + "deals_available":{}, + "deal_events_killswitch":0 + }, + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":9.2, + "country_trans":"Philippines", + "longitude":121.07296, + "cleanliness_score_reviews_nr":649, + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "city_name_en":"Manila", + "review_recommendation":"" + }, + { + "class":3, + "distance":"12.89", + "business_review_nr":690, + "district_id":2709, + "accommodation_type_name":"Hotel", + "hotel_facilities":"418,51,179,108,160,96,8,187,25,109,2,163,110,186,91,423,421,305,48,420,107,184,16,189,188,3,185,20,425,13,158,47,424,422", + "is_smart_deal":1, + "review_score":8.3, + "selected_review_topic":null, + "currency_code":"PHP", + "deals":{ + "deal_events_killswitch":0, + "deal_attributes":{}, + "deals_available":{ + "has_preset":1 + }, + "deal_events":[ + { + "localized_name":"Getaway Deal", + "disabled":0, + "description_translation_tag":"deals_getaway19_customer_tooltip", + "discount_percentage":40, + "bg_color":"#00000000", + "code":123, + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "icon_name":"percentage-circle", + "text_color":"#F07C00", + "icon_url":"https://summer_deal.com", + "name_translation_tag":"deals_getaway19_customer_label" + } + ], + "is_smart_deal":1 + }, + "cleanliness_score_reviews_nr":2385, + "country_trans":"Philippines", + "longitude":121.057905657156, + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "city_name_en":"Pasig City", + "review_recommendation":"", + "districts":"2709,6420", + "in_best_district":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/148788809.jpg?k=167eb7b220ea60ab1e7b294689ab48d2cdd04f34a5b632d57712e96bfaa46519&o=", + "is_city_center":0, + "review_nr":2417, + "is_mobile_deal":0, + "urgency_room_c":6, + "class_is_estimated":1, + "business_review_score":8.3, + "is_no_prepayment_block":0, + "preferred":1, + "block_ids":[ + "80223201_180509986_0_2_0" + ], + "breakfast_review_score":{ + "review_count":125, + "rating":6.6, + "review_score_word":"Pleasant" + }, + "cc1":"ph", + "checkin":{ + "from":"14:00", + "until":"" + }, + "location_score_word":"Very Good", + "accommodation_type":204, + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "group":"hotels_and_others", + "segment":0 + }, + "district":"Pasig", + "currencycode":"PHP", + "is_free_cancellable":0, + "soldout":0, + "review_score_word":"Very Good", + "business_review_score_word":"Very Good", + "genius_discount_percentage":0, + "main_photo_id":148788809, + "hotel_name_trans":"Red Planet Manila Ortigas", + "latitude":14.5778119607827, + "hotel_include_breakfast":0, + "countrycode":"ph", + "cleanliness_score_word":"Excellent", + "location_score_reviews_nr":2382, + "default_language":"en", + "city_trans":"Manila", + "min_total_price":10485.77, + "checkout":{ + "until":"12:00", + "from":"" + }, + "zip":"1600", + "hotel_name":"Red Planet Manila Ortigas", + "location_score":8.4, + "cleanliness_score":8.7, + "ufi":-2437894, + "timezone":"Asia/Manila", + "distance_to_cc":"8.30", + "cc_required":1, + "city_in_trans":"in Manila", + "price_breakdown":{ + "currency":"PHP", + "all_inclusive_price":12866.04, + "has_tax_exceptions":0, + "has_fine_print_charges":1, + "gross_price":10485.77, + "has_incalculable_charges":0, + "sum_excluded_raw":2380.27 + }, + "is_genius_deal":0, + "hotel_id":802232, + "city":"Pasig City", + "url":"https://www.booking.com/hotel/ph/red-planet-ortigas.html", + "extended":0, + "facilities_review_score":{ + "rating_message":"Very Good", + "review_count":2388, + "rating":8 + }, + "available_rooms":10, + "address_trans":"Lot 5, Block 4, Shaw Boulevard", + "rack_rate_savings":{ + "saving_full_price":16385, + "saving_percentage":36 + }, + "price_is_final":0, + "address":"Lot 5, Block 4, Shaw Boulevard" + }, + { + "city":"Manila", + "hotel_id":2739665, + "is_genius_deal":0, + "price_breakdown":{ + "sum_excluded_raw":1206.54, + "has_incalculable_charges":0, + "has_fine_print_charges":0, + "all_inclusive_price":11261, + "has_tax_exceptions":0, + "gross_price":10054.46, + "currency":"PHP" + }, + "city_in_trans":"in Manila", + "address":"4771 Mariano Street, Poblacion, Makati City", + "price_is_final":0, + "available_rooms":7, + "address_trans":"4771 Mariano Street, Poblacion, Makati City", + "extended":0, + "facilities_review_score":{ + "rating":8.4, + "review_count":231, + "rating_message":"Very Good" + }, + "url":"https://www.booking.com/hotel/ph/destiny.html", + "cleanliness_score_word":"Wonderful", + "latitude":14.5649375231688, + "hotel_include_breakfast":0, + "countrycode":"ph", + "hotel_name_trans":"OYO 196 Destiny Hotel", + "business_review_score_word":"Excellent", + "genius_discount_percentage":0, + "main_photo_id":199893699, + "is_free_cancellable":1, + "currencycode":"PHP", + "soldout":0, + "review_score_word":"Excellent", + "timezone":"Asia/Manila", + "distance_to_cc":"6.15", + "cc_required":1, + "ufi":-2437894, + "cleanliness_score":9, + "location_score":8.9, + "hotel_name":"OYO 196 Destiny Hotel", + "city_trans":"Manila", + "min_total_price":10054.46, + "checkout":{ + "from":"", + "until":"12:00" + }, + "zip":"1210", + "default_language":"xu", + "location_score_reviews_nr":229, + "class_is_estimated":1, + "urgency_room_c":14, + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/199893699.jpg?k=b8b56c6469d86931a5b6e396643ca59bcafef979b850004e2254a5375a2215be&o=", + "is_city_center":0, + "review_nr":232, + "in_best_district":0, + "districts":"2710", + "district":"Makati", + "location_score_word":"Excellent", + "accommodation_type":204, + "booking_home":{ + "group":"hotels_and_others", + "segment":0, + "is_booking_home":"", + "is_single_unit_property":0 + }, + "checkin":{ + "until":"", + "from":"14:00" + }, + "cc1":"ph", + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"Pleasant", + "review_count":26, + "rating":6.5 + }, + "block_ids":[ + "273966504_179189381_2_0_0" + ], + "is_no_prepayment_block":1, + "business_review_score":8.9, + "deals":{ + "deal_events_killswitch":0, + "deal_attributes":{}, + "deals_available":{} + }, + "currency_code":"PHP", + "selected_review_topic":null, + "review_score":8.8, + "hotel_facilities":"161,179,5,8,96,160,124,163,419,2,109,91,110,423,421,420,48,305,46,16,107,6,3,425,424,80,47,158,422", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "district_id":2710, + "business_review_nr":74, + "class":3, + "distance":"10.89", + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "review_recommendation":"", + "city_name_en":"Manila", + "country_trans":"Philippines", + "longitude":121.030037398834, + "cleanliness_score_reviews_nr":231 + }, + { + "review_recommendation":"", + "city_name_en":"Manila", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "cleanliness_score_reviews_nr":60, + "longitude":121.050254537529, + "country_trans":"Philippines", + "review_score":8.7, + "selected_review_topic":null, + "currency_code":"PHP", + "deals":{ + "deal_events_killswitch":0, + "deal_attributes":{}, + "deals_available":{} + }, + "distance":"11.19", + "class":3, + "district_id":2722, + "business_review_nr":10, + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"210,16,184,107,121,103,6,145,158,209,25,109,161,51,5,179,8,46,110,304,91,193,185,3,47,7,52,301,163,2,108,129,181,54,418,124,160,17,96,28,305,48,140", + "cc1":"ph", + "checkin":{ + "until":"", + "from":"14:00" + }, + "booking_home":{ + "group":"hotels_and_others", + "segment":0, + "is_booking_home":"", + "is_single_unit_property":0 + }, + "location_score_word":"Very Good", + "accommodation_type":204, + "district":"Quezon City", + "business_review_score":8.5, + "is_no_prepayment_block":1, + "breakfast_review_score":{ + "review_count":22, + "rating":8, + "review_score_word":"Very Good" + }, + "preferred":1, + "block_ids":[ + "435744101_185787776_2_1_0" + ], + "urgency_room_c":15, + "class_is_estimated":1, + "districts":"2722", + "in_best_district":0, + "is_city_center":0, + "review_nr":61, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/210057848.jpg?k=00412f6e514ba69e8aa3072fd27761fdca5eba524bfc4ef50c5aca9493f77f8d&o=", + "is_mobile_deal":0, + "location_score":8.3, + "cleanliness_score":8.9, + "ufi":-2437894, + "cc_required":1, + "distance_to_cc":"7.65", + "timezone":"Asia/Manila", + "location_score_reviews_nr":60, + "default_language":"tl", + "zip":"1109", + "checkout":{ + "until":"12:00", + "from":"" + }, + "min_total_price":10791, + "city_trans":"Manila", + "hotel_name":"Red Hotel Cubao, Quezon City", + "countrycode":"ph", + "hotel_include_breakfast":1, + "latitude":14.6207046498239, + "cleanliness_score_word":"Excellent", + "soldout":0, + "review_score_word":"Excellent", + "currencycode":"PHP", + "is_free_cancellable":1, + "main_photo_id":210057848, + "genius_discount_percentage":0, + "business_review_score_word":"Very Good", + "hotel_name_trans":"Red Hotel Cubao, Quezon City", + "price_is_final":0, + "address":"627 EDSA, Cubao, Quezon City", + "url":"https://www.booking.com/hotel/ph/red.html", + "facilities_review_score":{ + "rating":8.3, + "review_count":60, + "rating_message":"Very Good" + }, + "extended":0, + "available_rooms":10, + "address_trans":"627 EDSA, Cubao, Quezon City", + "city":"Manila", + "city_in_trans":"in Manila", + "price_breakdown":{ + "currency":"PHP", + "all_inclusive_price":12085.92, + "has_tax_exceptions":0, + "has_fine_print_charges":0, + "gross_price":"10791.00", + "sum_excluded_raw":1294.92, + "has_incalculable_charges":0 + }, + "is_genius_deal":0, + "hotel_id":4357441 + }, + { + "latitude":14.633504760161, + "countrycode":"ph", + "hotel_include_breakfast":0, + "cleanliness_score_word":"Excellent", + "currencycode":"PHP", + "is_free_cancellable":0, + "soldout":0, + "review_score_word":"Very Good", + "hotel_name_trans":"Red Planet Timog Avenue, Quezon City, Manila", + "business_review_score_word":"Very Good", + "genius_discount_percentage":0, + "main_photo_id":141978248, + "ufi":-2437894, + "cleanliness_score":8.6, + "location_score":8.5, + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"7.40", + "checkout":{ + "from":"", + "until":"12:00" + }, + "min_total_price":7534.74, + "city_trans":"Manila", + "zip":"1100", + "default_language":"en", + "location_score_reviews_nr":1725, + "hotel_name":"Red Planet Timog Avenue, Quezon City, Manila", + "city":"Quezon City", + "price_breakdown":{ + "sum_excluded_raw":1717.92, + "has_incalculable_charges":0, + "currency":"PHP", + "has_fine_print_charges":0, + "all_inclusive_price":9252.66, + "has_tax_exceptions":0, + "gross_price":7534.74 + }, + "city_in_trans":"in Manila", + "hotel_id":704131, + "is_genius_deal":0, + "price_is_final":1, + "address":"100 Timog Ave. Diliman", + "url":"https://www.booking.com/hotel/ph/red-planet-timog.html", + "available_rooms":10, + "address_trans":"100 Timog Ave. Diliman", + "extended":0, + "facilities_review_score":{ + "rating_message":"Good", + "review_count":1727, + "rating":7.8 + }, + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":8.4, + "deals":{ + "is_smart_deal":1, + "deal_events":[ + { + "discount_percentage":40, + "code":123, + "bg_color":"#00000000", + "description_translation_tag":"deals_getaway19_customer_tooltip", + "disabled":0, + "localized_name":"Getaway Deal", + "name_translation_tag":"deals_getaway19_customer_label", + "text_color":"#F07C00", + "icon_url":"https://summer_deal.com", + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "icon_name":"percentage-circle" + } + ], + "deal_attributes":{}, + "deals_available":{ + "has_preset":1 + }, + "deal_events_killswitch":0 + }, + "business_review_nr":428, + "district_id":2722, + "distance":"10.29", + "class":3, + "hotel_facilities":"423,91,305,46,48,420,421,160,96,8,51,418,179,108,161,2,109,163,25,425,13,20,422,158,47,424,184,107,16", + "is_smart_deal":1, + "accommodation_type_name":"Hotel", + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "review_recommendation":"", + "city_name_en":"Quezon City", + "cleanliness_score_reviews_nr":1730, + "country_trans":"Philippines", + "longitude":121.040831194859, + "class_is_estimated":1, + "urgency_room_c":6, + "in_best_district":0, + "districts":"2722", + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/141978248.jpg?k=8cea9e7899caf17cba8acc8f4c32a08572990e218bb767183bb9aa4f2594f31e&o=", + "is_city_center":0, + "review_nr":1750, + "checkin":{ + "from":"14:00", + "until":"" + }, + "cc1":"ph", + "district":"Quezon City", + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "segment":0, + "group":"hotels_and_others" + }, + "location_score_word":"Very Good", + "accommodation_type":204, + "is_no_prepayment_block":0, + "business_review_score":8.4, + "preferred":1, + "block_ids":[ + "70413101_89034478_0_0_0" + ], + "breakfast_review_score":{ + "rating":5.8, + "review_count":68, + "review_score_word":"Okay" + } + }, + { + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/153677765.jpg?k=a807f158d950292deedb9859f71bea409b78c0356ae96a8ca62075e3e5461a09&o=", + "review_nr":2338, + "is_city_center":0, + "in_best_district":0, + "districts":"3374,3376", + "class_is_estimated":1, + "urgency_room_c":5, + "preferred":1, + "breakfast_review_score":{ + "rating":0, + "review_count":0, + "review_score_word":"" + }, + "block_ids":[ + "193370202_93255255_2_0_0" + ], + "is_no_prepayment_block":0, + "business_review_score":8, + "district":"Manila Bay", + "location_score_word":"Very Good", + "booking_home":{ + "group":"hotels_and_others", + "segment":0, + "is_single_unit_property":0, + "is_booking_home":"" + }, + "accommodation_type":204, + "checkin":{ + "until":"", + "from":"14:00" + }, + "cc1":"ph", + "hotel_facilities":"110,91,423,421,60,305,46,48,420,418,179,161,108,160,96,8,219,25,2,109,419,163,204,425,145,158,47,424,422,107,184,16", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "business_review_nr":355, + "district_id":3374, + "distance":"6.84", + "class":3, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":8.1, + "country_trans":"Philippines", + "longitude":120.983826437126, + "cleanliness_score_reviews_nr":2311, + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "city_name_en":"Manila", + "review_recommendation":"", + "hotel_id":1933702, + "is_genius_deal":0, + "price_breakdown":{ + "sum_excluded_raw":"1863.00", + "has_incalculable_charges":0, + "currency":"PHP", + "gross_price":"8100.00", + "has_tax_exceptions":0, + "all_inclusive_price":9963, + "has_fine_print_charges":0 + }, + "city_in_trans":"in Manila", + "city":"Manila", + "address_trans":"1850 M.H. Del Pilar Street, Malate", + "available_rooms":10, + "extended":0, + "facilities_review_score":{ + "review_count":2316, + "rating":7.6, + "rating_message":"Good" + }, + "url":"https://www.booking.com/hotel/ph/hop-inn-ermita-manila.html", + "address":"1850 M.H. Del Pilar Street, Malate", + "price_is_final":1, + "hotel_name_trans":"Hop Inn Hotel Ermita Manila", + "business_review_score_word":"Very Good", + "genius_discount_percentage":0, + "main_photo_id":153677765, + "currencycode":"PHP", + "is_free_cancellable":0, + "review_score_word":"Very Good", + "soldout":0, + "cleanliness_score_word":"Very Good", + "latitude":14.570172412886, + "hotel_include_breakfast":0, + "countrycode":"ph", + "hotel_name":"Hop Inn Hotel Ermita Manila", + "min_total_price":8100, + "checkout":{ + "until":"12:00", + "from":"" + }, + "city_trans":"Manila", + "zip":"1004", + "default_language":"xu", + "location_score_reviews_nr":2306, + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"3.00", + "ufi":-2437894, + "cleanliness_score":8.4, + "location_score":8.1 + }, + { + "distance_to_cc":"3.65", + "cc_required":1, + "timezone":"Asia/Manila", + "location_score":7.6, + "cleanliness_score":9.2, + "ufi":-2437894, + "hotel_name":"Heroes Hotel", + "default_language":"xu", + "location_score_reviews_nr":966, + "zip":"1017", + "city_trans":"Manila", + "min_total_price":11161.25, + "checkout":{ + "from":"12:00", + "until":"12:00" + }, + "cleanliness_score_word":"Wonderful", + "hotel_include_breakfast":0, + "countrycode":"ph", + "latitude":14.5690213734887, + "main_photo_id":180662640, + "genius_discount_percentage":0, + "business_review_score_word":"Excellent", + "hotel_name_trans":"Heroes Hotel", + "soldout":0, + "review_score_word":"Excellent", + "currencycode":"PHP", + "is_free_cancellable":1, + "address":"1260 Lemery Street cor. Osmena Highway", + "price_is_final":0, + "facilities_review_score":{ + "rating_message":"Excellent", + "rating":8.9, + "review_count":971 + }, + "extended":0, + "address_trans":"1260 Lemery Street cor. Osmena Highway", + "available_rooms":10, + "url":"https://www.booking.com/hotel/ph/heroes.html", + "city":"Manila", + "is_genius_deal":0, + "hotel_id":2636607, + "city_in_trans":"in Manila", + "price_breakdown":{ + "has_incalculable_charges":0, + "sum_excluded_raw":1339.35, + "gross_price":11161.25, + "all_inclusive_price":12500.6, + "has_fine_print_charges":1, + "has_tax_exceptions":0, + "currency":"PHP" + }, + "review_recommendation":"", + "city_name_en":"Manila", + "mobile_discount_percentage":0, + "is_wholesaler_candidate":1, + "longitude":121.001154811011, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":969, + "deals":{ + "deal_attributes":{}, + "deals_available":{}, + "deal_events_killswitch":0 + }, + "review_score":8.9, + "selected_review_topic":null, + "currency_code":"PHP", + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"210,170,16,107,184,63,6,145,158,22,29,204,209,425,44,25,232,219,109,53,51,5,179,81,8,180,403,46,203,110,304,186,91,240,123,185,231,78,3,64,47,424,7,422,205,142,20,23,163,226,2,129,108,54,418,55,160,96,17,28,143,420,305,48,140,423", + "class":3, + "distance":"8.17", + "business_review_nr":64, + "district_id":0, + "booking_home":{ + "is_booking_home":"", + "is_single_unit_property":0, + "segment":0, + "group":"hotels_and_others" + }, + "location_score_word":"Good", + "accommodation_type":204, + "district":"", + "cc1":"ph", + "checkin":{ + "from":"14:00", + "until":"00:00" + }, + "preferred":1, + "block_ids":[ + "263660703_140536454_2_2_0" + ], + "breakfast_review_score":{ + "review_count":116, + "rating":8.3, + "review_score_word":"Very Good" + }, + "business_review_score":8.6, + "is_no_prepayment_block":0, + "urgency_room_c":16, + "class_is_estimated":1, + "review_nr":982, + "is_city_center":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/180662640.jpg?k=4c9f05af34f96d18c617bbb6407a41c8b64de3a0a2508689b7be4b3351e15356&o=", + "is_mobile_deal":0, + "districts":"", + "in_best_district":0 + }, + { + "address":"2150 Roxas Boulevard, Malate, Manila Aloha Hotel", + "price_is_final":1, + "address_trans":"2150 Roxas Boulevard, Malate, Manila Aloha Hotel", + "available_rooms":6, + "facilities_review_score":{ + "review_count":285, + "rating":7.4, + "rating_message":"Good" + }, + "extended":0, + "url":"https://www.booking.com/hotel/ph/zen-rooms-aloha-manila-bay.html", + "city":"Manila", + "hotel_id":3980597, + "is_genius_deal":0, + "price_breakdown":{ + "all_inclusive_price":11570.71, + "has_fine_print_charges":0, + "has_tax_exceptions":0, + "gross_price":9484.19, + "currency":"PHP", + "sum_excluded_raw":2086.52, + "has_incalculable_charges":0 + }, + "city_in_trans":"in Manila", + "cc_required":1, + "distance_to_cc":"3.55", + "timezone":"Asia/Manila", + "ufi":-2437894, + "cleanliness_score":8, + "location_score":8.3, + "hotel_name":"ZEN Rooms Aloha Manila Bay", + "zip":"2150", + "min_total_price":9484.19, + "checkout":{ + "from":"", + "until":"12:00" + }, + "city_trans":"Manila", + "location_score_reviews_nr":288, + "default_language":"xu", + "cleanliness_score_word":"Very Good", + "hotel_include_breakfast":0, + "countrycode":"ph", + "latitude":14.564892, + "hotel_name_trans":"ZEN Rooms Aloha Manila Bay", + "main_photo_id":166777424, + "genius_discount_percentage":0, + "business_review_score_word":"Very Good", + "review_score_word":"Good", + "soldout":0, + "is_free_cancellable":0, + "currencycode":"PHP", + "district":"Manila Bay", + "location_score_word":"Very Good", + "accommodation_type":204, + "booking_home":{ + "is_booking_home":"", + "is_single_unit_property":0, + "segment":0, + "group":"hotels_and_others" + }, + "checkin":{ + "until":"", + "from":"14:00" + }, + "cc1":"ph", + "block_ids":[ + "398059701_123252867_0_0_0" + ], + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"Exceptional", + "rating":10, + "review_count":1 + }, + "is_no_prepayment_block":0, + "business_review_score":8.1, + "class_is_estimated":1, + "urgency_room_c":6, + "is_mobile_deal":0, + "review_nr":295, + "is_city_center":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/166777424.jpg?k=fc6be3e2b4ce1e63e5443adde28caffbd7ca416dbc3555916f72dfc95c34fa37&o=", + "in_best_district":0, + "districts":"3374,3376", + "review_recommendation":"", + "city_name_en":"Manila", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":0, + "longitude":120.985257, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":285, + "deals":{ + "deal_events_killswitch":0, + "deals_available":{}, + "deal_attributes":{} + }, + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":7.9, + "is_smart_deal":0, + "hotel_facilities":"140,110,91,305,418,5,96,17,55,8,44,109,2,23,163,204,13,47,22,107,6,78", + "accommodation_type_name":"Hotel", + "business_review_nr":56, + "district_id":3374, + "class":3, + "distance":"7.41" + }, + { + "accommodation_type_name":"Hotel", + "is_smart_deal":1, + "hotel_facilities":"8,96,160,108,161,179,51,418,163,109,2,25,423,91,110,420,48,46,305,421,16,184,107,3,13,425,20,422,424,47,158", + "class":3, + "distance":"6.80", + "business_review_nr":551, + "district_id":3376, + "deals":{ + "is_smart_deal":1, + "deal_events":[ + { + "icon_url":"https://summer_deal.com", + "text_color":"#F07C00", + "name_translation_tag":"deals_getaway19_customer_label", + "icon_name":"percentage-circle", + "localized_description":"Properties with this label have discounts of 15% or more for stays June 1 to August 31", + "description_translation_tag":"deals_getaway19_customer_tooltip", + "code":123, + "bg_color":"#00000000", + "discount_percentage":40, + "localized_name":"Getaway Deal", + "disabled":0 + } + ], + "deal_events_killswitch":0, + "deals_available":{ + "has_preset":1 + }, + "deal_attributes":{} + }, + "review_score":8, + "currency_code":"PHP", + "selected_review_topic":null, + "longitude":120.984449386597, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":2607, + "review_recommendation":"", + "city_name_en":"Manila", + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "is_city_center":0, + "review_nr":2645, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/98351348.jpg?k=a5542e8ee08b6847c5e43410e30fc0c9d1a196f65bb118d4bb6bd242238ea1a0&o=", + "is_mobile_deal":0, + "districts":"3376", + "in_best_district":0, + "urgency_room_c":6, + "class_is_estimated":1, + "breakfast_review_score":{ + "review_score_word":"Okay", + "review_count":205, + "rating":5.7 + }, + "preferred":1, + "block_ids":[ + "37482701_88828027_0_2_0" + ], + "business_review_score":8, + "is_no_prepayment_block":0, + "location_score_word":"Very Good", + "booking_home":{ + "segment":0, + "group":"hotels_and_others", + "is_booking_home":"", + "is_single_unit_property":0 + }, + "accommodation_type":204, + "district":"Malate", + "cc1":"ph", + "checkin":{ + "from":"14:00", + "until":"" + }, + "main_photo_id":98351348, + "genius_discount_percentage":0, + "business_review_score_word":"Very Good", + "hotel_name_trans":"Red Planet Manila Mabini", + "soldout":0, + "review_score_word":"Very Good", + "is_free_cancellable":0, + "currencycode":"PHP", + "cleanliness_score_word":"Very Good", + "countrycode":"ph", + "hotel_include_breakfast":0, + "latitude":14.5711103220834, + "hotel_name":"Red Planet Manila Mabini", + "location_score_reviews_nr":2599, + "default_language":"en", + "zip":"1004", + "min_total_price":9888.19, + "checkout":{ + "from":"", + "until":"12:00" + }, + "city_trans":"Manila", + "cc_required":1, + "distance_to_cc":"2.90", + "timezone":"Asia/Manila", + "cleanliness_score":8.3, + "location_score":8, + "ufi":-2437894, + "is_genius_deal":0, + "hotel_id":374827, + "city_in_trans":"in Manila", + "price_breakdown":{ + "currency":"PHP", + "gross_price":9888.19, + "all_inclusive_price":12162.47, + "has_tax_exceptions":0, + "has_fine_print_charges":0, + "sum_excluded_raw":2274.28, + "has_incalculable_charges":0 + }, + "city":"Manila", + "facilities_review_score":{ + "rating":7.5, + "review_count":2605, + "rating_message":"Good" + }, + "extended":0, + "address_trans":"1740 A. Mabini St. Malate", + "available_rooms":10, + "url":"https://www.booking.com/hotel/ph/red-planet-manila-mabini.html", + "address":"1740 A. Mabini St. Malate", + "rack_rate_savings":{ + "saving_full_price":16483, + "saving_percentage":40 + }, + "price_is_final":1 + }, + { + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"4.15", + "location_score":8, + "cleanliness_score":7.9, + "ufi":-2437894, + "hotel_name":"Orchid Garden Suites", + "location_score_reviews_nr":508, + "default_language":"en", + "checkout":{ + "from":"", + "until":"12:00" + }, + "min_total_price":15536.07, + "city_trans":"Manila", + "zip":"1004", + "cleanliness_score_word":"Good", + "latitude":14.5602966736793, + "hotel_include_breakfast":1, + "countrycode":"ph", + "business_review_score_word":"Good", + "genius_discount_percentage":0, + "main_photo_id":179599191, + "hotel_name_trans":"Orchid Garden Suites", + "currencycode":"PHP", + "is_free_cancellable":0, + "review_score_word":"Good", + "soldout":0, + "address":"620 Pablo Ocampo Street, Malate", + "price_is_final":0, + "extended":0, + "facilities_review_score":{ + "rating_message":"Good", + "review_count":511, + "rating":7.5 + }, + "available_rooms":8, + "address_trans":"620 Pablo Ocampo Street, Malate", + "url":"https://www.booking.com/hotel/ph/orchid-garden-suites.html", + "city":"Manila", + "is_genius_deal":0, + "hotel_id":280772, + "city_in_trans":"in Manila", + "price_breakdown":{ + "gross_price":15536.07, + "all_inclusive_price":17516.92, + "has_tax_exceptions":0, + "has_fine_print_charges":1, + "currency":"PHP", + "has_incalculable_charges":0, + "sum_excluded_raw":1980.85 + }, + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "city_name_en":"Manila", + "review_recommendation":"", + "country_trans":"Philippines", + "longitude":120.991382226348, + "cleanliness_score_reviews_nr":511, + "deals":{ + "is_smart_deal":1, + "deal_attributes":{}, + "deals_available":{}, + "deal_events_killswitch":0 + }, + "review_score":7.9, + "currency_code":"PHP", + "selected_review_topic":null, + "accommodation_type_name":"Hotel", + "hotel_facilities":"251,210,184,107,170,16,6,49,158,22,119,204,425,209,134,404,219,104,44,25,109,198,419,179,5,161,180,81,8,207,421,203,46,110,304,186,91,240,3,185,78,7,47,405,424,422,301,20,59,89,13,41,2,23,163,244,418,129,108,124,160,96,17,55,220,305,48,420,140,423", + "is_smart_deal":1, + "class":3, + "distance":"8.21", + "district_id":3376, + "business_review_nr":93, + "accommodation_type":204, + "location_score_word":"Very Good", + "booking_home":{ + "group":"hotels_and_others", + "segment":0, + "is_booking_home":"", + "is_single_unit_property":0 + }, + "district":"Malate", + "cc1":"ph", + "checkin":{ + "from":"14:00", + "until":"" + }, + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"Good", + "rating":7.5, + "review_count":80 + }, + "block_ids":[ + "28077209_139074701_0_1_0" + ], + "business_review_score":7.7, + "is_no_prepayment_block":0, + "urgency_room_c":5, + "class_is_estimated":1, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/179599191.jpg?k=e89f75dd1e3fc7eb69af06e3e3716c9d3f51971ee4d8782a4fb255c809e3ffc9&o=", + "is_city_center":0, + "review_nr":514, + "is_mobile_deal":0, + "districts":"3376", + "in_best_district":0 + }, + { + "default_language":"en", + "location_score_reviews_nr":1477, + "min_total_price":11873.95, + "checkout":{ + "until":"12:00", + "from":"" + }, + "city_trans":"Manila", + "zip":"1200", + "hotel_name":"Oxford Suites Makati", + "location_score":7.8, + "cleanliness_score":6.8, + "ufi":-2437894, + "timezone":"Asia/Manila", + "distance_to_cc":"6.20", + "cc_required":1, + "is_free_cancellable":0, + "currencycode":"PHP", + "soldout":0, + "review_score_word":"Good", + "business_review_score_word":"Good", + "main_photo_id":78730980, + "genius_discount_percentage":0, + "hotel_name_trans":"Oxford Suites Makati", + "latitude":14.5635144741952, + "countrycode":"ph", + "hotel_include_breakfast":0, + "cleanliness_score_word":"Pleasant", + "url":"https://www.booking.com/hotel/ph/oxford-suites-makati.html", + "extended":0, + "facilities_review_score":{ + "rating":6.8, + "review_count":1476, + "rating_message":"Pleasant" + }, + "available_rooms":10, + "address_trans":"P. Burgos cor. Durban Street Makati Avenue", + "price_is_final":0, + "address":"P. Burgos cor. Durban Street Makati Avenue", + "city_in_trans":"in Manila", + "price_breakdown":{ + "has_tax_exceptions":0, + "all_inclusive_price":14581.21, + "has_fine_print_charges":1, + "gross_price":11873.95, + "currency":"PHP", + "sum_excluded_raw":2707.26, + "has_incalculable_charges":0 + }, + "is_genius_deal":0, + "hotel_id":250213, + "city":"Makati City", + "cleanliness_score_reviews_nr":1477, + "country_trans":"Philippines", + "longitude":121.029920876026, + "mobile_discount_percentage":10, + "is_wholesaler_candidate":1, + "review_recommendation":"", + "city_name_en":"Makati City", + "class":3, + "distance":"10.97", + "business_review_nr":227, + "district_id":2710, + "accommodation_type_name":"Hotel", + "hotel_facilities":"78,3,6,16,107,22,47,7,13,11,89,15,20,163,23,2,109,44,8,55,81,96,124,160,161,179,5,51,48,46,305,67,91", + "is_smart_deal":1, + "review_score":7.2, + "selected_review_topic":null, + "currency_code":"PHP", + "deals":{ + "is_smart_deal":1, + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "business_review_score":7, + "is_no_prepayment_block":0, + "preferred":1, + "block_ids":[ + "25021301_89003538_0_2_0" + ], + "breakfast_review_score":{ + "review_score_word":"Okay", + "rating":5.9, + "review_count":150 + }, + "cc1":"ph", + "checkin":{ + "until":"00:00", + "from":"14:00" + }, + "location_score_word":"Good", + "accommodation_type":204, + "booking_home":{ + "segment":0, + "group":"hotels_and_others", + "is_booking_home":"", + "is_single_unit_property":0 + }, + "district":"Makati", + "districts":"2710", + "in_best_district":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/78730980.jpg?k=66f8df69daf67713c9a20218f663ab11d9ad7695e7950965f6a1fdef09746540&o=", + "review_nr":1497, + "is_city_center":0, + "is_mobile_deal":1, + "urgency_room_c":17, + "class_is_estimated":1 + }, + { + "accommodation_type_name":"Apartment", + "hotel_facilities":"158,222,47,301,3,107,16,103,28,48,117,305,46,140,110,109,2,179,192,161,108,194,17,96,160,8", + "is_smart_deal":0, + "class":3, + "distance":"11.83", + "district_id":2722, + "business_review_nr":39, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "review_score":8.4, + "currency_code":"PHP", + "selected_review_topic":null, + "country_trans":"Philippines", + "longitude":121.052785009193, + "cleanliness_score_reviews_nr":191, + "is_wholesaler_candidate":1, + "mobile_discount_percentage":0, + "review_recommendation":"", + "city_name_en":"Manila", + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/122324978.jpg?k=8b70ebc088fd30d81968fb7fa6e20aa0d1c8d95aa516c2f3e437f0608b948ddd&o=", + "review_nr":193, + "is_city_center":0, + "is_mobile_deal":0, + "districts":"2722", + "in_best_district":0, + "urgency_room_c":16, + "class_is_estimated":1, + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"", + "rating":0, + "review_count":0 + }, + "block_ids":[ + "220622901_190159345_2_0_0" + ], + "business_review_score":8.7, + "is_no_prepayment_block":1, + "booking_home":{ + "group":"apartment_like", + "segment":1, + "is_booking_home":1, + "is_single_unit_property":0 + }, + "location_score_word":"Excellent", + "accommodation_type":201, + "district":"Quezon City", + "cc1":"ph", + "checkin":{ + "from":"14:00", + "until":"" + }, + "business_review_score_word":"Excellent", + "genius_discount_percentage":0, + "main_photo_id":122324978, + "hotel_name_trans":"Residenciale Boutique Apartments", + "is_free_cancellable":1, + "currencycode":"PHP", + "review_score_word":"Very Good", + "soldout":0, + "cleanliness_score_word":"Very Good", + "latitude":14.6464376980726, + "hotel_include_breakfast":0, + "countrycode":"ph", + "hotel_name":"Residenciale Boutique Apartments", + "default_language":"xu", + "location_score_reviews_nr":191, + "min_total_price":14784, + "checkout":{ + "from":"11:00", + "until":"12:00" + }, + "city_trans":"Manila", + "zip":"1104", + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"9.30", + "location_score":8.7, + "cleanliness_score":8.5, + "ufi":-2437894, + "is_genius_deal":0, + "hotel_id":2206229, + "city_in_trans":"in Manila", + "price_breakdown":{ + "sum_excluded_raw":"0.00", + "has_incalculable_charges":0, + "gross_price":"14784.00", + "all_inclusive_price":14784, + "has_tax_exceptions":0, + "has_fine_print_charges":0, + "currency":"PHP" + }, + "city":"Manila", + "extended":0, + "facilities_review_score":{ + "rating_message":"Very Good", + "review_count":191, + "rating":8 + }, + "address_trans":"132 Kalayaan Avenue Diliman, Quezon City", + "available_rooms":9, + "url":"https://www.booking.com/hotel/ph/residenciale-boutique-apartments.html", + "address":"132 Kalayaan Avenue Diliman, Quezon City", + "price_is_final":1 + }, + { + "urgency_room_c":19, + "class_is_estimated":1, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/113760542.jpg?k=408cf281c004f18eeedf9fb6eb0ca9fd19515c197563d066db31f3fb0d7d6df7&o=", + "is_city_center":0, + "review_nr":778, + "is_mobile_deal":1, + "districts":"2710", + "in_best_district":0, + "location_score_word":"Very Good", + "booking_home":{ + "is_single_unit_property":0, + "is_booking_home":"", + "group":"hotels_and_others", + "segment":0 + }, + "accommodation_type":204, + "district":"Makati", + "cc1":"ph", + "checkin":{ + "until":"", + "from":"14:00" + }, + "block_ids":[ + "39242804_152465587_0_2_0" + ], + "preferred":1, + "breakfast_review_score":{ + "review_count":114, + "rating":6.7, + "review_score_word":"Pleasant" + }, + "business_review_score":8, + "is_no_prepayment_block":1, + "deals":{ + "deal_attributes":{}, + "deals_available":{}, + "deal_events_killswitch":0 + }, + "review_score":8, + "currency_code":"PHP", + "selected_review_topic":null, + "accommodation_type_name":"Hotel", + "hotel_facilities":"45,109,198,104,44,219,81,8,161,51,179,258,5,46,133,110,91,177,6,16,107,75,22,49,158,425,134,204,119,23,2,41,124,160,17,96,418,420,305,48,28,423,140,78,3,422,47,424,13,11,52,301", + "is_smart_deal":0, + "class":3, + "distance":"10.25", + "business_review_nr":201, + "district_id":2710, + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "review_recommendation":"", + "city_name_en":"Makati City", + "country_trans":"Philippines", + "longitude":121.019841134548, + "cleanliness_score_reviews_nr":772, + "city":"Makati City", + "is_genius_deal":0, + "hotel_id":392428, + "city_in_trans":"in Manila", + "price_breakdown":{ + "currency":"PHP", + "all_inclusive_price":50154.26, + "has_fine_print_charges":0, + "has_tax_exceptions":0, + "gross_price":40858.87, + "has_incalculable_charges":0, + "sum_excluded_raw":9295.39 + }, + "address":"161 H.V. dela Costa St. Salcedo Village", + "price_is_final":1, + "extended":0, + "facilities_review_score":{ + "rating_message":"Good", + "rating":7.7, + "review_count":775 + }, + "address_trans":"161 H.V. dela Costa St. Salcedo Village", + "available_rooms":3, + "url":"https://www.booking.com/hotel/ph/one-pacific-place-and-residences.html", + "cleanliness_score_word":"Very Good", + "latitude":14.5612507259246, + "countrycode":"ph", + "hotel_include_breakfast":0, + "business_review_score_word":"Very Good", + "main_photo_id":113760542, + "genius_discount_percentage":0, + "hotel_name_trans":"One Pacific Place Serviced Residences", + "currencycode":"PHP", + "is_free_cancellable":1, + "soldout":0, + "review_score_word":"Very Good", + "timezone":"Asia/Manila", + "cc_required":1, + "distance_to_cc":"5.55", + "cleanliness_score":8.2, + "location_score":8.3, + "ufi":-2437894, + "hotel_name":"One Pacific Place Serviced Residences", + "location_score_reviews_nr":771, + "default_language":"en", + "urgency_c":[ + 18 + ], + "city_trans":"Manila", + "min_total_price":40858.87, + "checkout":{ + "from":"", + "until":"12:00" + }, + "zip":"1220" + }, + { + "soldout":0, + "review_score_word":"Excellent", + "is_free_cancellable":1, + "currencycode":"PHP", + "main_photo_id":181462490, + "genius_discount_percentage":0, + "business_review_score_word":"Excellent", + "hotel_name_trans":"RedDoorz Plus @ V Mapa Extension Santa Mesa", + "countrycode":"ph", + "hotel_include_breakfast":0, + "latitude":14.597694, + "cleanliness_score_word":"Excellent", + "default_language":"xu", + "location_score_reviews_nr":15, + "zip":"1016", + "urgency_c":[ + 18 + ], + "min_total_price":8184.6, + "city_trans":"Manila", + "checkout":{ + "from":"", + "until":"12:00" + }, + "hotel_name":"RedDoorz Plus @ V Mapa Extension Santa Mesa", + "location_score":9, + "cleanliness_score":8.9, + "ufi":-2437894, + "cc_required":1, + "distance_to_cc":"3.65", + "timezone":"Asia/Manila", + "city_in_trans":"in Manila", + "price_breakdown":{ + "sum_excluded_raw":"0.00", + "has_incalculable_charges":0, + "gross_price":"8184.60", + "has_tax_exceptions":0, + "all_inclusive_price":8184.6, + "has_fine_print_charges":0, + "currency":"PHP" + }, + "is_genius_deal":0, + "hotel_id":4623600, + "city":"Manila", + "url":"https://www.booking.com/hotel/ph/reddoorz-plus-v-mapa-extension-santa-mesa.html", + "facilities_review_score":{ + "rating_message":"Excellent", + "review_count":17, + "rating":8.7 + }, + "extended":0, + "available_rooms":3, + "address_trans":"4549 V. Mapa Extension, Santa Mesa", + "price_is_final":1, + "address":"4549 V. Mapa Extension, Santa Mesa", + "class":3, + "distance":"8.01", + "district_id":0, + "business_review_nr":10, + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"16,107,8,96,47,28,109,305", + "review_score":8.9, + "currency_code":"PHP", + "selected_review_topic":null, + "deals":{ + "deal_attributes":{}, + "deals_available":{}, + "deal_events_killswitch":0 + }, + "cleanliness_score_reviews_nr":16, + "longitude":121.017153, + "country_trans":"Philippines", + "review_recommendation":"", + "city_name_en":"Manila", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "districts":"", + "in_best_district":0, + "is_city_center":0, + "review_nr":17, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/181462490.jpg?k=928ac8e290ff02574a563b527c52a9e78f78fb213739b7130dc2ecaa0d6ad312&o=", + "is_mobile_deal":1, + "urgency_room_c":20, + "class_is_estimated":1, + "business_review_score":8.6, + "is_no_prepayment_block":0, + "preferred":1, + "block_ids":[ + "462360002_193186207_4_0_0" + ], + "breakfast_review_score":{ + "review_count":0, + "rating":0, + "review_score_word":"" + }, + "cc1":"ph", + "checkin":{ + "from":"14:00", + "until":"" + }, + "booking_home":{ + "segment":0, + "group":"hotels_and_others", + "is_booking_home":"", + "is_single_unit_property":0 + }, + "location_score_word":"Wonderful", + "accommodation_type":204, + "district":"" + }, + { + "district":"Quezon City", + "location_score_word":"Exceptional", + "booking_home":{ + "group":"hotels_and_others", + "segment":0, + "is_booking_home":1, + "is_single_unit_property":0 + }, + "accommodation_type":216, + "checkin":{ + "until":"17:00", + "from":"14:00" + }, + "cc1":"ph", + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"", + "review_count":0, + "rating":0 + }, + "block_ids":[ + "314920101_140663227_2_0_0" + ], + "is_no_prepayment_block":0, + "business_review_score":0, + "class_is_estimated":1, + "urgency_room_c":21, + "is_mobile_deal":0, + "review_nr":1, + "is_city_center":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/180809722.jpg?k=55df410fd058eb1d42ee431f164730f5d6005fd034a978fe52d06966cdfa2898&o=", + "in_best_district":0, + "districts":"2722", + "city_name_en":"Quezon City", + "review_recommendation":"", + "mobile_discount_percentage":0, + "longitude":121.03255, + "country_trans":"Philippines", + "cleanliness_score_reviews_nr":1, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "currency_code":"PHP", + "selected_review_topic":null, + "review_score":9.2, + "is_smart_deal":0, + "hotel_facilities":"419,109,104,8,194,108,51,418,192,258,420,305,147,48,28,403,421,423,193,64,16,422,224,222,425,11,14,142,301,119", + "accommodation_type_name":"Guesthouse", + "district_id":2722, + "business_review_nr":0, + "class":3, + "distance":"9.91", + "address":"Vinia Residence Philam Quezon City 21st floor", + "price_is_final":1, + "address_trans":"Vinia Residence Philam Quezon City 21st floor", + "available_rooms":1, + "facilities_review_score":{ + "rating":10, + "review_count":1, + "rating_message":"Exceptional" + }, + "extended":0, + "url":"https://www.booking.com/hotel/ph/triple-g-39-s-vinia-residence.html", + "city":"Quezon City", + "hotel_id":3149201, + "is_genius_deal":0, + "price_breakdown":{ + "has_incalculable_charges":0, + "sum_excluded_raw":"1836.00", + "currency":"PHP", + "has_fine_print_charges":0, + "all_inclusive_price":12636, + "has_tax_exceptions":0, + "gross_price":"10800.00" + }, + "city_in_trans":"in Manila", + "distance_to_cc":"8.05", + "cc_required":1, + "timezone":"Asia/Manila", + "ufi":-2437894, + "location_score":10, + "cleanliness_score":10, + "hotel_name":"Triple.G's Vinia Residence", + "zip":"1116", + "urgency_c":[ + 3 + ], + "checkout":{ + "until":"13:00", + "from":"12:00" + }, + "min_total_price":10800, + "city_trans":"Manila", + "default_language":"xu", + "location_score_reviews_nr":1, + "cleanliness_score_word":"Exceptional", + "hotel_include_breakfast":0, + "countrycode":"ph", + "latitude":14.651174, + "hotel_name_trans":"Triple.G's Vinia Residence", + "main_photo_id":180809722, + "genius_discount_percentage":0, + "business_review_score_word":"", + "review_score_word":"Wonderful", + "soldout":0, + "is_free_cancellable":1, + "currencycode":"PHP" + }, + { + "default_language":"en", + "location_score_reviews_nr":482, + "zip":"1781", + "min_total_price":32400, + "urgency_c":[ + 22 + ], + "city_trans":"Manila", + "checkout":{ + "until":"12:00", + "from":"" + }, + "hotel_name":"Parque España Residence Hotel Managed by HII", + "location_score":8.8, + "cleanliness_score":8.5, + "ufi":-2437894, + "cc_required":1, + "distance_to_cc":"20.55", + "timezone":"Asia/Manila", + "soldout":0, + "review_score_word":"Excellent", + "currencycode":"PHP", + "is_free_cancellable":0, + "main_photo_id":161546625, + "genius_discount_percentage":0, + "business_review_score_word":"Very Good", + "hotel_name_trans":"Parque España Residence Hotel Managed by HII", + "countrycode":"ph", + "hotel_include_breakfast":0, + "latitude":14.419076256244, + "cleanliness_score_word":"Very Good", + "url":"https://www.booking.com/hotel/ph/parque-espana-residence.html", + "facilities_review_score":{ + "rating_message":"Very Good", + "review_count":484, + "rating":8.2 + }, + "extended":0, + "address_trans":"5309 East Asia Drive Filinvest Corporate City Alabang", + "available_rooms":2, + "price_is_final":0, + "address":"5309 East Asia Drive Filinvest Corporate City Alabang", + "city_in_trans":"in Manila", + "price_breakdown":{ + "sum_excluded_raw":"8100.00", + "has_incalculable_charges":0, + "currency":"PHP", + "gross_price":"32400.00", + "has_tax_exceptions":0, + "all_inclusive_price":40500, + "has_fine_print_charges":1 + }, + "is_genius_deal":0, + "hotel_id":258353, + "city":"Muntinlupa City", + "cleanliness_score_reviews_nr":483, + "longitude":121.035188734531, + "country_trans":"Philippines", + "review_recommendation":"", + "city_name_en":"Muntinlupa City", + "is_wholesaler_candidate":1, + "mobile_discount_percentage":10, + "class":3, + "distance":"24.29", + "district_id":3441, + "business_review_nr":43, + "accommodation_type_name":"Hotel", + "is_smart_deal":0, + "hotel_facilities":"75,22,49,158,176,425,204,177,6,107,16,46,407,421,403,110,304,109,128,198,104,81,12,8,51,258,5,179,161,53,422,7,405,47,424,11,13,301,20,59,52,3,253,305,48,147,420,28,423,140,2,23,163,124,160,17,96,55,418", + "review_score":8.6, + "currency_code":"PHP", + "selected_review_topic":null, + "deals":{ + "deals_available":{}, + "deal_attributes":{}, + "deal_events_killswitch":0 + }, + "business_review_score":8.1, + "is_no_prepayment_block":0, + "block_ids":[ + "25835310_88827846_0_2_0" + ], + "preferred":1, + "breakfast_review_score":{ + "review_count":31, + "rating":6.7, + "review_score_word":"Pleasant" + }, + "cc1":"ph", + "checkin":{ + "from":"15:00", + "until":"" + }, + "location_score_word":"Excellent", + "accommodation_type":204, + "booking_home":{ + "is_booking_home":"", + "is_single_unit_property":0, + "group":"hotels_and_others", + "segment":0 + }, + "district":"Muntinlupa City", + "districts":"3441,3369", + "in_best_district":0, + "is_city_center":0, + "review_nr":486, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/161546625.jpg?k=553aaa1e4649954ae2bcee9891c97b8a904a7022963eb657a51b7aa779e96821&o=", + "is_mobile_deal":0, + "urgency_room_c":23, + "class_is_estimated":1 + }, + { + "deals":{ + "deal_events_killswitch":0, + "deal_attributes":{}, + "deals_available":{} + }, + "selected_review_topic":null, + "currency_code":"PHP", + "review_score":8.2, + "hotel_facilities":"418,107,184,179,161,16,160,96,8,2,109,163,110,204,91,158,47,46,305,48,420", + "is_smart_deal":0, + "accommodation_type_name":"Hotel", + "business_review_nr":364, + "district_id":2710, + "distance":"10.78", + "class":3, + "is_wholesaler_candidate":1, + "mobile_discount_percentage":0, + "review_recommendation":"", + "city_name_en":"Manila", + "country_trans":"Philippines", + "longitude":121.0305416956, + "cleanliness_score_reviews_nr":2239, + "class_is_estimated":1, + "urgency_room_c":0, + "is_mobile_deal":0, + "main_photo_url":"http://r-ec.bstatic.com/xdata/images/hotel/square60/107717780.jpg?k=09186ae2cd7f2f22c18ac808f994293eb89798395260eba71daeeae9634cdfc7&o=", + "review_nr":2267, + "is_city_center":0, + "in_best_district":0, + "districts":"2710", + "district":"Makati", + "location_score_word":"Very Good", + "accommodation_type":204, + "booking_home":{ + "segment":0, + "group":"hotels_and_others", + "is_booking_home":"", + "is_single_unit_property":0 + }, + "checkin":{ + "from":"14:00", + "until":"" + }, + "cc1":"ph", + "block_ids":[ + "237764402_101256532_2_0_0" + ], + "preferred":1, + "breakfast_review_score":{ + "review_score_word":"", + "review_count":0, + "rating":0 + }, + "is_no_prepayment_block":0, + "business_review_score":8.3, + "cleanliness_score_word":"Excellent", + "latitude":14.5673865245885, + "countrycode":"ph", + "hotel_include_breakfast":0, + "hotel_name_trans":"Hop Inn Hotel Makati Avenue Manila", + "business_review_score_word":"Very Good", + "main_photo_id":107717780, + "genius_discount_percentage":0, + "currencycode":"PHP", + "is_free_cancellable":0, + "soldout":0, + "review_score_word":"Very Good", + "timezone":"Asia/Manila", + "distance_to_cc":"6.05", + "cc_required":1, + "ufi":-2437894, + "cleanliness_score":8.6, + "location_score":8.2, + "hotel_name":"Hop Inn Hotel Makati Avenue Manila", + "city_trans":"Manila", + "min_total_price":8010, + "checkout":{ + "from":"", + "until":"12:00" + }, + "zip":"1210", + "location_score_reviews_nr":2234, + "default_language":"en", + "city":"Manila", + "hotel_id":2377644, + "is_genius_deal":0, + "price_breakdown":{ + "currency":"PHP", + "all_inclusive_price":9820.26, + "has_tax_exceptions":0, + "has_fine_print_charges":0, + "gross_price":"8010.00", + "sum_excluded_raw":1810.26, + "has_incalculable_charges":0 + }, + "city_in_trans":"in Manila", + "address":"7806 Makati Avenue, Poblacion, Metro Manila", + "price_is_final":1, + "available_rooms":10, + "address_trans":"7806 Makati Avenue, Poblacion, Metro Manila", + "extended":0, + "facilities_review_score":{ + "rating_message":"Good", + "rating":7.7, + "review_count":2242 + }, + "url":"https://www.booking.com/hotel/ph/hop-inn-makati-avenue-manila.html" + } + ], + "is_beach_ufi":0, + "unfiltered_count":3267, + "primary_count":381, + "sort":[ + { + "name":"Distance", + "id":"distance" + }, + { + "name":"Popularity", + "id":"popularity" + }, + { + "name":"Stars (5 to 0)", + "id":"class_descending" + }, + { + "id":"class_ascending", + "name":"Stars (0 to 5)" + }, + { + "name":"Guest Review Score", + "id":"review_score" + }, + { + "id":"price", + "name":"Price (low to high)" + } + ], + "sorting":{ + "selected_identifier":"popularity", + "options":[ + { + "identifier":"distance", + "loading_message":null, + "name":"Distance" + }, + { + "name":"Popularity", + "loading_message":null, + "identifier":"popularity" + }, + { + "loading_message":null, + "name":"Stars (5 to 0)", + "identifier":"class_descending" + }, + { + "identifier":"class_ascending", + "loading_message":null, + "name":"Stars (0 to 5)" + }, + { + "name":"Guest Review Score", + "loading_message":null, + "identifier":"review_score" + }, + { + "identifier":"price", + "loading_message":null, + "name":"Price (low to high)" + } + ] + }, + "extended_count":0, + "room_distribution":[ + { + "children":[ + 11, + 5 + ], + "adults":"1" + } + ], + "count":381 + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"ver", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "content-type":"application/json", + "date":"Mon, 29 Jul 2019 16:00:34 GMT", + "server":"RapidAPI-1.0.20", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.0.20", + "x-ratelimit-requests-limit":"30000", + "x-ratelimit-requests-remaining":"29996", + "transfer-encoding":"chunked", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "copyright":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "unfiltered_primary_count":{ + "type":"integer" + }, + "search_radius":{ + "type":"integer" + }, + "search_id":{ + "type":"string" + }, + "page_loading_threshold":{ + "type":"integer" + }, + "ranking_version":{ + "type":"integer" + }, + "result":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "is_beach_ufi":{ + "type":"integer" + }, + "unfiltered_count":{ + "type":"integer" + }, + "primary_count":{ + "type":"integer" + }, + "sort":{ + "type":"array", + "items":{ + "type":"object" + } + }, + "sorting":{ + "type":"object", + "properties":{ + "selected_identifier":{ + "type":"string" + }, + "options":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + }, + "extended_count":{ + "type":"integer" + }, + "room_distribution":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "children":{ + "type":"array", + "items":{ + "type":"integer" + } + }, + "adults":{ + "type":"string" + } + } + } + }, + "count":{ + "type":"integer" + } + } + } + }, + { + "name":"properties/list", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/list", + "description":"List properties having type of resorts, hotels, motels, hostels, etc as on official site", + "method":"GET", + "required_parameters":[ + { + "name":"offset", + "type":"NUMBER", + "description":"The number of items to ignore as offset for paging (fixed 30 items returned per page). You are interested in the optional parameter 'search_id'", + "default":"0" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date, the format is yyyy-MM-dd. Ex : 2022-08-15", + "default":"" + }, + { + "name":"room_qty", + "type":"NUMBER", + "description":"The number of rooms", + "default":"1" + }, + { + "name":"guest_qty", + "type":"NUMBER", + "description":"The number of adults", + "default":"1" + }, + { + "name":"arrival_date", + "type":"STRING", + "description":"The check-in date at hotel, the format is yyyy-MM-dd. Ex : 2022-08-14", + "default":"" + }, + { + "name":"search_type", + "type":"STRING", + "description":"Value of dest_type returned by locations/auto-complete API", + "default":"city" + }, + { + "name":"dest_ids", + "type":"NUMBER", + "description":"Value of dest_id or city_ufi field from locations/auto-complete API (Don't pass this if you use latlong as search_type)", + "default":"-3712125" + } + ], + "optional_parameters":[ + { + "name":"price_filter_currencycode", + "type":"STRING", + "description":"The base currency to calculate exchange rate", + "default":"USD" + }, + { + "name":"travel_purpose", + "type":"STRING", + "description":"One of the followings : leisure|business", + "default":"leisure" + }, + { + "name":"latitude", + "type":"STRING", + "description":"10.838039 - Don't pass this param if you DON'T use latlong as search_type", + "default":"" + }, + { + "name":"longitude", + "type":"STRING", + "description":"106.686102 - Don't pass this param if you DON'T use latlong as search_type", + "default":"" + }, + { + "name":"categories_filter", + "type":"STRING", + "description":"The id returned by .../filters/list API, separated by comma for multiple options. Ex : price::9-40,free_cancellation::1,class::1,class::0,class::2", + "default":"" + }, + { + "name":"order_by", + "type":"STRING", + "description":"One of the followings : popularity|distance|class_descending|class_ascending|deals|review_score|price", + "default":"popularity" + }, + { + "name":"children_age", + "type":"STRING", + "description":"The year old of each child that separated by comma", + "default":"5,7" + }, + { + "name":"children_qty", + "type":"NUMBER", + "description":"The number of children", + "default":"2" + }, + { + "name":"search_id", + "type":"STRING", + "description":"Pass 'none' or value returned right in this API. You need to pass this parameter to get 'offset' working", + "default":"none" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/list\"\nquerystring = {\"price_filter_currencycode\": price_filter_currencycode, \"travel_purpose\": travel_purpose, \"order_by\": order_by, \"offset\": offset, \"departure_date\": departure_date, \"children_age\": children_age, \"room_qty\": room_qty, \"guest_qty\": guest_qty, \"arrival_date\": arrival_date, \"children_qty\": children_qty, \"search_id\": search_id, \"languagecode\": languagecode, \"search_type\": search_type, \"dest_ids\": dest_ids}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/get-static-map", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-static-map", + "description":"Get static map at specific GEO location", + "method":"GET", + "required_parameters":[ + { + "name":"width", + "type":"NUMBER", + "description":"The width of image in pixel", + "default":"720" + }, + { + "name":"longitude", + "type":"NUMBER", + "description":"The latitude co-ordinate", + "default":"106.663626" + }, + { + "name":"zoom", + "type":"NUMBER", + "description":"Zoom in/out of map", + "default":"18" + }, + { + "name":"height", + "type":"NUMBER", + "description":"The height of image in pixel", + "default":"280" + }, + { + "name":"latitude", + "type":"NUMBER", + "description":"The latitude co-ordinate", + "default":"10.807570" + } + ], + "optional_parameters":[ + { + "name":"currency_code", + "type":"STRING", + "description":"The currency code", + "default":"USD" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja\\\", \\\"ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-static-map\"\nquerystring = {\"width\": width, \"currency_code\": currency_code, \"longitude\": longitude, \"zoom\": zoom, \"height\": height, \"latitude\": latitude, \"languagecode\": languagecode}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/get-rooms (Deprecated)", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-rooms", + "description":"Get full details of rooms in the hotel", + "method":"GET", + "required_parameters":[ + { + "name":"search_id", + "type":"STRING", + "description":"The value returned in properties/list API having response contains the selected hotel", + "default":"" + }, + { + "name":"arrival_date", + "type":"STRING", + "description":"The check-in date at hotel", + "default":"2019-03-13" + }, + { + "name":"rec_guest_qty", + "type":"STRING", + "description":"The number of adults separated by comma, and how you arrange them in rooms", + "default":"2,2" + }, + { + "name":"hotel_id", + "type":"STRING", + "description":"The value of hotel_id field from properties/list API", + "default":"1720410" + }, + { + "name":"departure_date", + "type":"STRING", + "description":"The check-out date ", + "default":"2019-03-15" + } + ], + "optional_parameters":[ + { + "name":"travel_purpose", + "type":"STRING", + "description":"One of the followings : leisure|business", + "default":"leisure" + }, + { + "name":"rec_children_age", + "type":"STRING", + "description":"The year old of each child that separated by comma", + "default":"5,7" + }, + { + "name":"recommend_for", + "type":"NUMBER", + "description":"The recommended number of persons per room", + "default":"3" + }, + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + }, + { + "name":"rec_children_qty", + "type":"STRING", + "description":"The number of children separated by comma, and how you arrange them in rooms", + "default":"1,1" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-rooms\"\nquerystring = {\"travel_purpose\": travel_purpose, \"search_id\": search_id, \"rec_children_age\": rec_children_age, \"recommend_for\": recommend_for, \"languagecode\": languagecode, \"rec_children_qty\": rec_children_qty, \"arrival_date\": arrival_date, \"rec_guest_qty\": rec_guest_qty, \"hotel_id\": hotel_id, \"departure_date\": departure_date}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"properties/get-facilities", + "url":"https://apidojo-booking-v1.p.rapidapi.com/properties/get-facilities", + "description":"Get facilities of property by id", + "method":"GET", + "required_parameters":[ + { + "name":"hotel_ids", + "type":"NUMBER", + "description":"The value of hotel_id field from properties/list API", + "default":"1528418" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/properties/get-facilities\"\nquerystring = {\"languagecode\": languagecode, \"hotel_ids\": hotel_ids}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"currency/get-exchange-rates", + "url":"https://apidojo-booking-v1.p.rapidapi.com/currency/get-exchange-rates", + "description":"Get currency exchange rates between different countries", + "method":"GET", + "required_parameters":[ + { + "name":"base_currency", + "type":"STRING", + "description":"One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"USD" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"The language code of specific country", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/currency/get-exchange-rates\"\nquerystring = {\"languagecode\": languagecode, \"base_currency\": base_currency}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "exchange_rates":[ + { + "exchange_rate_buy":"3.6731501", + "currency":"AED" + }, + { + "currency":"AFN", + "exchange_rate_buy":"80.7167636" + }, + { + "currency":"ALL", + "exchange_rate_buy":"108.4850210" + }, + { + "currency":"AMD", + "exchange_rate_buy":"477.8003322" + }, + { + "exchange_rate_buy":"1.7900000", + "currency":"ANG" + }, + { + "currency":"AOA", + "exchange_rate_buy":"340.2726385" + }, + { + "currency":"ARS", + "exchange_rate_buy":"43.5123021" + }, + { + "currency":"AUD", + "exchange_rate_buy":"1.4558160" + }, + { + "exchange_rate_buy":"1.7900000", + "currency":"AWG" + }, + { + "exchange_rate_buy":"1.6965000", + "currency":"AZN" + }, + { + "exchange_rate_buy":"1.7438500", + "currency":"BAM" + }, + { + "currency":"BBD", + "exchange_rate_buy":"2.0000000" + }, + { + "currency":"BDT", + "exchange_rate_buy":"84.4949860" + }, + { + "exchange_rate_buy":"1.7440000", + "currency":"BGN" + }, + { + "exchange_rate_buy":"0.3770000", + "currency":"BHD" + }, + { + "currency":"BIF", + "exchange_rate_buy":"1836.5050463" + }, + { + "currency":"BMD", + "exchange_rate_buy":"1.0000000" + }, + { + "exchange_rate_buy":"1.3663000", + "currency":"BND" + }, + { + "currency":"BOB", + "exchange_rate_buy":"6.9099999" + }, + { + "currency":"BRL", + "exchange_rate_buy":"3.8747999" + }, + { + "currency":"BSD", + "exchange_rate_buy":"1.0000000" + }, + { + "exchange_rate_buy":"69.6869172", + "currency":"BTN" + }, + { + "currency":"BWP", + "exchange_rate_buy":"10.7874866" + }, + { + "exchange_rate_buy":"2.0613000", + "currency":"BYN" + }, + { + "exchange_rate_buy":"20625.1029378", + "currency":"BYR" + }, + { + "currency":"BZD", + "exchange_rate_buy":"2.0000000" + }, + { + "currency":"CAD", + "exchange_rate_buy":"1.3360000" + }, + { + "exchange_rate_buy":"1649.9929679", + "currency":"CDF" + }, + { + "exchange_rate_buy":"0.9954500", + "currency":"CHF" + }, + { + "currency":"CLP", + "exchange_rate_buy":"695.3312017" + }, + { + "currency":"CNY", + "exchange_rate_buy":"6.9038998" + }, + { + "currency":"COP", + "exchange_rate_buy":"3251.3700179" + }, + { + "exchange_rate_buy":"584.1155623", + "currency":"CRC" + }, + { + "currency":"CUP", + "exchange_rate_buy":"1.0000000" + }, + { + "currency":"CVE", + "exchange_rate_buy":"98.7970038" + }, + { + "currency":"CYP", + "exchange_rate_buy":"0.5218500" + }, + { + "currency":"CZK", + "exchange_rate_buy":"22.8648009" + }, + { + "exchange_rate_buy":"178.0454647", + "currency":"DJF" + }, + { + "currency":"DKK", + "exchange_rate_buy":"6.6578500" + }, + { + "exchange_rate_buy":"50.9050135", + "currency":"DOP" + }, + { + "currency":"DZD", + "exchange_rate_buy":"119.5349573" + }, + { + "exchange_rate_buy":"13.9508494", + "currency":"EEK" + }, + { + "exchange_rate_buy":"16.7400015", + "currency":"EGP" + }, + { + "exchange_rate_buy":"28.8554466", + "currency":"ETB" + }, + { + "currency":"EUR", + "exchange_rate_buy":"0.8916232" + }, + { + "exchange_rate_buy":"2.1597000", + "currency":"FJD" + }, + { + "currency":"GBP", + "exchange_rate_buy":"0.7916716" + }, + { + "currency":"GEL", + "exchange_rate_buy":"2.7930000" + }, + { + "exchange_rate_buy":"5.4400001", + "currency":"GHS" + }, + { + "exchange_rate_buy":"49.5500103", + "currency":"GMD" + }, + { + "exchange_rate_buy":"9160.8260557", + "currency":"GNF" + }, + { + "currency":"GRD", + "exchange_rate_buy":"303.8209016" + }, + { + "currency":"GTQ", + "exchange_rate_buy":"7.7003000" + }, + { + "exchange_rate_buy":"207.2000372", + "currency":"GYD" + }, + { + "exchange_rate_buy":"7.8233499", + "currency":"HKD" + }, + { + "currency":"HNL", + "exchange_rate_buy":"24.5132989" + }, + { + "currency":"HRK", + "exchange_rate_buy":"6.6005499" + }, + { + "exchange_rate_buy":"92.9069340", + "currency":"HTG" + }, + { + "exchange_rate_buy":"288.9439367", + "currency":"HUF" + }, + { + "exchange_rate_buy":"14270.5377721", + "currency":"IDR" + }, + { + "currency":"ILS", + "exchange_rate_buy":"3.5962000" + }, + { + "exchange_rate_buy":"69.6869172", + "currency":"INR" + }, + { + "exchange_rate_buy":"1190.0050717", + "currency":"IQD" + }, + { + "exchange_rate_buy":"35707.7773328", + "currency":"IRR" + }, + { + "currency":"ISK", + "exchange_rate_buy":"126.1650007" + }, + { + "exchange_rate_buy":"129.1006339", + "currency":"JMD" + }, + { + "currency":"JOD", + "exchange_rate_buy":"0.7090000" + }, + { + "currency":"JPY", + "exchange_rate_buy":"108.4049591" + }, + { + "exchange_rate_buy":"101.8900128", + "currency":"KES" + }, + { + "exchange_rate_buy":"69.7305169", + "currency":"KGS" + }, + { + "exchange_rate_buy":"4078.2289713", + "currency":"KHR" + }, + { + "currency":"KMF", + "exchange_rate_buy":"438.6506285" + }, + { + "currency":"KRW", + "exchange_rate_buy":"1176.0977154" + }, + { + "exchange_rate_buy":"0.3041000", + "currency":"KWD" + }, + { + "currency":"KYD", + "exchange_rate_buy":"0.8200000" + }, + { + "currency":"KZT", + "exchange_rate_buy":"381.9758037" + }, + { + "exchange_rate_buy":"8659.8989899", + "currency":"LAK" + }, + { + "exchange_rate_buy":"1507.4953505", + "currency":"LBP" + }, + { + "currency":"LKR", + "exchange_rate_buy":"176.6748502" + }, + { + "exchange_rate_buy":"194.0986490", + "currency":"LRD" + }, + { + "currency":"LSL", + "exchange_rate_buy":"14.5231495" + }, + { + "exchange_rate_buy":"3.0786000", + "currency":"LTL" + }, + { + "currency":"LVL", + "exchange_rate_buy":"0.6266500" + }, + { + "currency":"LYD", + "exchange_rate_buy":"1.3995000" + }, + { + "currency":"MAD", + "exchange_rate_buy":"9.5741997" + }, + { + "exchange_rate_buy":"18.1514984", + "currency":"MDL" + }, + { + "currency":"MGA", + "exchange_rate_buy":"3652.5468027" + }, + { + "currency":"MKD", + "exchange_rate_buy":"54.8550096" + }, + { + "currency":"MMK", + "exchange_rate_buy":"1521.4893690" + }, + { + "exchange_rate_buy":"2661.0057600", + "currency":"MNT" + }, + { + "exchange_rate_buy":"8.0580497", + "currency":"MOP" + }, + { + "currency":"MRO", + "exchange_rate_buy":"357.0005686" + }, + { + "currency":"MTL", + "exchange_rate_buy":"0.3827500" + }, + { + "exchange_rate_buy":"36.0499997", + "currency":"MUR" + }, + { + "exchange_rate_buy":"15.3800000", + "currency":"MVR" + }, + { + "exchange_rate_buy":"771.3804201", + "currency":"MWK" + }, + { + "exchange_rate_buy":"19.1812512", + "currency":"MXN" + }, + { + "exchange_rate_buy":"4.1735000", + "currency":"MYR" + }, + { + "currency":"MZN", + "exchange_rate_buy":"62.1000065" + }, + { + "exchange_rate_buy":"14.5231495", + "currency":"NAD" + }, + { + "exchange_rate_buy":"360.4994137", + "currency":"NGN" + }, + { + "exchange_rate_buy":"33.0735983", + "currency":"NIO" + }, + { + "exchange_rate_buy":"8.7297001", + "currency":"NOK" + }, + { + "currency":"NPR", + "exchange_rate_buy":"111.4990327" + }, + { + "exchange_rate_buy":"1.5328020", + "currency":"NZD" + }, + { + "currency":"OMR", + "exchange_rate_buy":"0.3850000" + }, + { + "currency":"PAB", + "exchange_rate_buy":"1.0000000" + }, + { + "exchange_rate_buy":"3.3354500", + "currency":"PEN" + }, + { + "currency":"PGK", + "exchange_rate_buy":"3.3862500" + }, + { + "exchange_rate_buy":"51.8794886", + "currency":"PHP" + }, + { + "currency":"PKR", + "exchange_rate_buy":"156.9499414" + }, + { + "currency":"PLN", + "exchange_rate_buy":"3.8070499" + }, + { + "exchange_rate_buy":"6195.2695942", + "currency":"PYG" + }, + { + "exchange_rate_buy":"3.6412500", + "currency":"QAR" + }, + { + "exchange_rate_buy":"42157.1252955", + "currency":"ROL" + }, + { + "exchange_rate_buy":"4.2167999", + "currency":"RON" + }, + { + "currency":"RSD", + "exchange_rate_buy":"105.1049549" + }, + { + "exchange_rate_buy":"63.9212776", + "currency":"RUB" + }, + { + "currency":"RWF", + "exchange_rate_buy":"910.8140521" + }, + { + "currency":"SAR", + "exchange_rate_buy":"3.7501499" + }, + { + "currency":"SBD", + "exchange_rate_buy":"8.0128202" + }, + { + "exchange_rate_buy":"13.8960993", + "currency":"SCR" + }, + { + "currency":"SDG", + "exchange_rate_buy":"6.5420001" + }, + { + "currency":"SEK", + "exchange_rate_buy":"9.5250005" + }, + { + "exchange_rate_buy":"1.3663000", + "currency":"SGD" + }, + { + "currency":"SIT", + "exchange_rate_buy":"213.6683817" + }, + { + "currency":"SKK", + "exchange_rate_buy":"26.8609992" + }, + { + "exchange_rate_buy":"8974.5666834", + "currency":"SLL" + }, + { + "exchange_rate_buy":"576.3227737", + "currency":"SOS" + }, + { + "exchange_rate_buy":"7.4579999", + "currency":"SRD" + }, + { + "currency":"STD", + "exchange_rate_buy":"21361.3608050" + }, + { + "currency":"SVC", + "exchange_rate_buy":"8.7500004" + }, + { + "exchange_rate_buy":"214.0500157", + "currency":"SYP" + }, + { + "exchange_rate_buy":"14.5231495", + "currency":"SZL" + }, + { + "exchange_rate_buy":"31.2399951", + "currency":"THB" + }, + { + "currency":"TJS", + "exchange_rate_buy":"9.4396003" + }, + { + "currency":"TMM", + "exchange_rate_buy":"15859.5375311" + }, + { + "exchange_rate_buy":"2.9695000", + "currency":"TND" + }, + { + "currency":"TOP", + "exchange_rate_buy":"2.2727273" + }, + { + "exchange_rate_buy":"5.8357502", + "currency":"TRY" + }, + { + "exchange_rate_buy":"6.7455498", + "currency":"TTD" + }, + { + "exchange_rate_buy":"31.3424968", + "currency":"TWD" + }, + { + "currency":"TZS", + "exchange_rate_buy":"2298.1163978" + }, + { + "currency":"UAH", + "exchange_rate_buy":"26.3650009" + }, + { + "exchange_rate_buy":"3705.0621234", + "currency":"UGX" + }, + { + "exchange_rate_buy":"35.3320016", + "currency":"UYU" + }, + { + "exchange_rate_buy":"8535.5466207", + "currency":"UZS" + }, + { + "currency":"VEB", + "exchange_rate_buy":"89162320.0000000" + }, + { + "exchange_rate_buy":"254023.7037037", + "currency":"VEF" + }, + { + "exchange_rate_buy":"6210.3726405", + "currency":"VES" + }, + { + "exchange_rate_buy":"23316.5062762", + "currency":"VND" + }, + { + "exchange_rate_buy":"116.2049564", + "currency":"VUV" + }, + { + "currency":"WST", + "exchange_rate_buy":"2.6511135" + }, + { + "exchange_rate_buy":"584.8665455", + "currency":"XAF" + }, + { + "currency":"XCD", + "exchange_rate_buy":"2.7000000" + }, + { + "currency":"XOF", + "exchange_rate_buy":"584.8665455" + }, + { + "exchange_rate_buy":"106.3989499", + "currency":"XPF" + }, + { + "currency":"YER", + "exchange_rate_buy":"250.1397671" + }, + { + "exchange_rate_buy":"14.5231495", + "currency":"ZAR" + }, + { + "exchange_rate_buy":"12849.4480473", + "currency":"ZMK" + }, + { + "exchange_rate_buy":"12.8440006", + "currency":"ZMW" + } + ], + "base_currency":"USD", + "base_currency_date":"2019-06-19" + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-headers":"ver", + "access-control-allow-methods":"GET, POST", + "access-control-allow-origin":"*", + "content-type":"application/json", + "date":"Fri, 21 Jun 2019 04:34:33 GMT", + "server":"RapidAPI-1.0.16", + "x-rapidapi-region":"AWS - ap-southeast-1", + "x-rapidapi-version":"1.0.16", + "x-ratelimit-requests-limit":"30000", + "x-ratelimit-requests-remaining":"29999", + "content-length":"8487", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"locations/auto-complete", + "url":"https://apidojo-booking-v1.p.rapidapi.com/locations/auto-complete", + "description":"List suggested locations by countries, cities, districts, places name", + "method":"GET", + "required_parameters":[ + { + "name":"text", + "type":"STRING", + "description":"Name of cities, districts, places", + "default":"hanoi" + } + ], + "optional_parameters":[ + { + "name":"languagecode", + "type":"STRING", + "description":"One of the followings en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja\", \"ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw", + "default":"en-us" + } + ], + "code":"import requests\n\nurl = \"https://apidojo-booking-v1.p.rapidapi.com/locations/auto-complete\"\nquerystring = {\"languagecode\": languagecode, \"text\": text}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"apidojo-booking-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/booking/api.py b/toolbench/toolenv/tools/Travel/booking/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d5a897addfdebb64bcfd338d9df0823f5026c9a8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/booking/api.py @@ -0,0 +1,617 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def reviews_get_scores(hotel_ids: int, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get reviewing scores" + hotel_ids: The value of hotel_id field from properties/list API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/reviews/get-scores" + querystring = {'hotel_ids': hotel_ids, } + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def review_filters_list(hotel_id: int, languagecode: str='en-us', filter_language: str='en,nl', filter_customer_type: str='couple,family_with_children', user_sort: str='sort_most_relevant', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List supported options metadata for filtering reviews" + hotel_id: The value of hotel_id field from properties/list API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + filter_language: One of the followings (separated by comma for multiple values): en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + filter_customer_type: One of the followings (separated by comma for multiple values) : couple|family_with_children|review_category_group_of_friends|solo_traveller + user_sort: One of the followings : sort_most_relevant|sort_recent_desc|sort_recent_asc|sort_score_desc|sort_score_asc + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/review-filters/list" + querystring = {'hotel_id': hotel_id, } + if languagecode: + querystring['languagecode'] = languagecode + if filter_language: + querystring['filter_language'] = filter_language + if filter_customer_type: + querystring['filter_customer_type'] = filter_customer_type + if user_sort: + querystring['user_sort'] = user_sort + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def filters_list(room_qty: int, departure_date: str, dest_ids: int, guest_qty: str, arrival_date: str, search_type: str, languagecode: str='en-us', categories_filter: str='price::9-40,free_cancellation::1,class::1,class::0,class::2', children_qty: str='2', children_age: str='5,7', longitude: int=None, price_filter_currencycode: str='USD', latitude: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "A list of filter options to pass in categories_filter field. Pass params and values are as same as .../properties/list API" + room_qty: The number of rooms + departure_date: The check-out date + dest_ids: Value of dest_id or city_ufi field from locations/auto-complete API (Don't pass this if you use latlong as search_type) + guest_qty: The number of adults + arrival_date: The check-in date at hotel + search_type: Value of dest_type returned by locations/auto-complete API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + categories_filter: The id returned by .../filters/list API + children_qty: The number of children + children_age: The year old of each child that separated by comma + longitude: 106.686102 - Don't pass this param if you DON'T use latlong as search_type + price_filter_currencycode: The base currency to calculate exchange rate + latitude: 10.838039 - Don't pass this param if you DON'T use latlong as search_type + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/filters/list" + querystring = {'room_qty': room_qty, 'departure_date': departure_date, 'dest_ids': dest_ids, 'guest_qty': guest_qty, 'arrival_date': arrival_date, 'search_type': search_type, } + if languagecode: + querystring['languagecode'] = languagecode + if categories_filter: + querystring['categories_filter'] = categories_filter + if children_qty: + querystring['children_qty'] = children_qty + if children_age: + querystring['children_age'] = children_age + if longitude: + querystring['longitude'] = longitude + if price_filter_currencycode: + querystring['price_filter_currencycode'] = price_filter_currencycode + if latitude: + querystring['latitude'] = latitude + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reviews_list(hotel_ids: int, languagecode: str='en-us', user_sort: str='sort_most_relevant', rows: int=25, offset: int=0, filter_language: str='en,nl', filter_customer_type: str='couple,family_with_children', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List reviews of stayed guests" + hotel_ids: The value of hotel_id field from properties/list API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + user_sort: One of the followings : sort_most_relevant|sort_recent_desc|sort_recent_asc|sort_score_desc|sort_score_asc + rows: The number of items per page + offset: The number of items to ignore as offset for paging + filter_language: One of the followings (separated by comma for multiple values): en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + filter_customer_type: One of the followings (separated by comma for multiple values) : couple|family_with_children|review_category_group_of_friends|solo_traveller + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/reviews/list" + querystring = {'hotel_ids': hotel_ids, } + if languagecode: + querystring['languagecode'] = languagecode + if user_sort: + querystring['user_sort'] = user_sort + if rows: + querystring['rows'] = rows + if offset: + querystring['offset'] = offset + if filter_language: + querystring['filter_language'] = filter_language + if filter_customer_type: + querystring['filter_customer_type'] = filter_customer_type + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_hotel_photos(hotel_ids: int, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get photos of hotel" + hotel_ids: Get value from properties/list + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-hotel-photos" + querystring = {'hotel_ids': hotel_ids, } + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_detail(rec_room_qty: int, search_id: str, departure_date: str, hotel_id: str, rec_guest_qty: int, arrival_date: str, block_ids: str=None, dest_ids: int=-3727579, units: str='imperial', currency_code: str='USD', rec_children_qty: int=None, recommend_for: int=3, rec_children_age: str=None, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get brief information of a property" + rec_room_qty: The number of rooms + search_id: The value returned in properties/list API having response contains the selected hotel + departure_date: The check-out date + hotel_id: The value of hotel_id field from properties/list API + rec_guest_qty: The number of adults separated by comma, and how you arrange them in rooms + arrival_date: The check-in date at hotel + block_ids: The value of 'block_ids' field returned in .../properties/list endpoint + dest_ids: The value of 'dest_id' field returned in .../locations/auto-complete endpoint + units: One of the following : metric|imperial + currency_code: The currency code + rec_children_qty: The number of children separated by comma, and how you arrange them in rooms + recommend_for: The recommended number of persons per room + rec_children_age: The year old of each child that separated by comma. Ex : 5,7 + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/detail" + querystring = {'rec_room_qty': rec_room_qty, 'search_id': search_id, 'departure_date': departure_date, 'hotel_id': hotel_id, 'rec_guest_qty': rec_guest_qty, 'arrival_date': arrival_date, } + if block_ids: + querystring['block_ids'] = block_ids + if dest_ids: + querystring['dest_ids'] = dest_ids + if units: + querystring['units'] = units + if currency_code: + querystring['currency_code'] = currency_code + if rec_children_qty: + querystring['rec_children_qty'] = rec_children_qty + if recommend_for: + querystring['recommend_for'] = recommend_for + if rec_children_age: + querystring['rec_children_age'] = rec_children_age + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_v2_get_rooms(rec_room_qty: str, arrival_date: str, rec_guest_qty: str, hotel_id: str, departure_date: str, units: str='imperial', currency_code: str='USD', block_ids: str=None, languagecode: str='en-us', rec_children_qty: str=None, rec_children_age: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get full details of rooms in the hotel" + arrival_date: The check-in date at hotel + rec_guest_qty: The number of adults separated by comma, and how you arrange them in rooms + hotel_id: The value of hotel_id field from properties/list API + departure_date: The check-out date + units: One of the following : metric|imperial + currency_code: The currency code + block_ids: The value of 'block_ids' field returned in .../properties/list endpoint + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + rec_children_qty: The number of children separated by comma, and how you arrange them in rooms + rec_children_age: The year old of each child that separated by comma. Ex : 5,12 + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/v2/get-rooms" + querystring = {'rec_room_qty': rec_room_qty, 'arrival_date': arrival_date, 'rec_guest_qty': rec_guest_qty, 'hotel_id': hotel_id, 'departure_date': departure_date, } + if units: + querystring['units'] = units + if currency_code: + querystring['currency_code'] = currency_code + if block_ids: + querystring['block_ids'] = block_ids + if languagecode: + querystring['languagecode'] = languagecode + if rec_children_qty: + querystring['rec_children_qty'] = rec_children_qty + if rec_children_age: + querystring['rec_children_age'] = rec_children_age + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_policies(hotel_ids: int, languagecode: str='en-us', currency_code: str='USD', departure_date: str='2019-03-15', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get policies of property by id" + hotel_ids: The value of hotel_id field from properties/list API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + currency_code: The currency code + departure_date: The check-out date at hotel + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-policies" + querystring = {'hotel_ids': hotel_ids, } + if languagecode: + querystring['languagecode'] = languagecode + if currency_code: + querystring['currency_code'] = currency_code + if departure_date: + querystring['departure_date'] = departure_date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_featured_reviews(hotel_id: str, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get featured reviews of stayed guests" + hotel_id: The value of hotel_id from properties/list API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-featured-reviews" + querystring = {'hotel_id': hotel_id, } + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_description(hotel_ids: int, check_out: str='2019-03-15', languagecode: str='en-us', check_in: str='2019-03-13', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get description of property by id" + hotel_ids: The value of hotel_id from properties/list API + check_out: The check-out date + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + check_in: The check-in date at hotel + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-description" + querystring = {'hotel_ids': hotel_ids, } + if check_out: + querystring['check_out'] = check_out + if languagecode: + querystring['languagecode'] = languagecode + if check_in: + querystring['check_in'] = check_in + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_list_by_map(arrival_date: str, room_qty: str, departure_date: str, guest_qty: str, bbox: str, travel_purpose: str='leisure', categories_filter: str='class::1,class::2,class::3', children_qty: int=2, search_id: str='none', children_age: str='11,5', price_filter_currencycode: str='USD', languagecode: str='en-us', order_by: str='popularity', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List properties by coordinate of bounding box" + arrival_date: The check-in date at hotel, the format is yyyy-MM-dd. Ex : 2022-08-14 + room_qty: The number of rooms + departure_date: The check-out date, the format is yyyy-MM-dd. Ex : 2022-08-15 + guest_qty: The number of adults + bbox: Coordinate of bounding box - latitude (bottom left),latitude (top right),longitude (bottom left),longitude (top right) + travel_purpose: One of the followings : leisure|business + categories_filter: The id returned by .../filters/list API, values separated by comma + children_qty: The number of children + search_id: Pass \\\"none\\\" or value returned right in this API + children_age: The year old of each child that separated by comma + price_filter_currencycode: The base currency to calculate exchange rate + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + order_by: One of the followings : popularity|distance|class_descending|class_ascending|deals|review_score|price + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/list-by-map" + querystring = {'arrival_date': arrival_date, 'room_qty': room_qty, 'departure_date': departure_date, 'guest_qty': guest_qty, 'bbox': bbox, } + if travel_purpose: + querystring['travel_purpose'] = travel_purpose + if categories_filter: + querystring['categories_filter'] = categories_filter + if children_qty: + querystring['children_qty'] = children_qty + if search_id: + querystring['search_id'] = search_id + if children_age: + querystring['children_age'] = children_age + if price_filter_currencycode: + querystring['price_filter_currencycode'] = price_filter_currencycode + if languagecode: + querystring['languagecode'] = languagecode + if order_by: + querystring['order_by'] = order_by + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_list(offset: int, departure_date: str, room_qty: int, guest_qty: int, arrival_date: str, search_type: str, dest_ids: int, price_filter_currencycode: str='USD', travel_purpose: str='leisure', latitude: str=None, longitude: str=None, categories_filter: str=None, order_by: str='popularity', children_age: str='5,7', children_qty: int=2, search_id: str='none', languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List properties having type of resorts, hotels, motels, hostels, etc as on official site" + offset: The number of items to ignore as offset for paging (fixed 30 items returned per page). You are interested in the optional parameter 'search_id' + departure_date: The check-out date, the format is yyyy-MM-dd. Ex : 2022-08-15 + room_qty: The number of rooms + guest_qty: The number of adults + arrival_date: The check-in date at hotel, the format is yyyy-MM-dd. Ex : 2022-08-14 + search_type: Value of dest_type returned by locations/auto-complete API + dest_ids: Value of dest_id or city_ufi field from locations/auto-complete API (Don't pass this if you use latlong as search_type) + price_filter_currencycode: The base currency to calculate exchange rate + travel_purpose: One of the followings : leisure|business + latitude: 10.838039 - Don't pass this param if you DON'T use latlong as search_type + longitude: 106.686102 - Don't pass this param if you DON'T use latlong as search_type + categories_filter: The id returned by .../filters/list API, separated by comma for multiple options. Ex : price::9-40,free_cancellation::1,class::1,class::0,class::2 + order_by: One of the followings : popularity|distance|class_descending|class_ascending|deals|review_score|price + children_age: The year old of each child that separated by comma + children_qty: The number of children + search_id: Pass 'none' or value returned right in this API. You need to pass this parameter to get 'offset' working + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/list" + querystring = {'offset': offset, 'departure_date': departure_date, 'room_qty': room_qty, 'guest_qty': guest_qty, 'arrival_date': arrival_date, 'search_type': search_type, 'dest_ids': dest_ids, } + if price_filter_currencycode: + querystring['price_filter_currencycode'] = price_filter_currencycode + if travel_purpose: + querystring['travel_purpose'] = travel_purpose + if latitude: + querystring['latitude'] = latitude + if longitude: + querystring['longitude'] = longitude + if categories_filter: + querystring['categories_filter'] = categories_filter + if order_by: + querystring['order_by'] = order_by + if children_age: + querystring['children_age'] = children_age + if children_qty: + querystring['children_qty'] = children_qty + if search_id: + querystring['search_id'] = search_id + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_static_map(width: int, longitude: int, zoom: int, height: int, latitude: int, currency_code: str='USD', languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get static map at specific GEO location" + width: The width of image in pixel + longitude: The latitude co-ordinate + zoom: Zoom in/out of map + height: The height of image in pixel + latitude: The latitude co-ordinate + currency_code: The currency code + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja\", \"ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-static-map" + querystring = {'width': width, 'longitude': longitude, 'zoom': zoom, 'height': height, 'latitude': latitude, } + if currency_code: + querystring['currency_code'] = currency_code + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_rooms_deprecated(search_id: str, arrival_date: str, rec_guest_qty: str, hotel_id: str, departure_date: str, travel_purpose: str='leisure', rec_children_age: str='5,7', recommend_for: int=3, languagecode: str='en-us', rec_children_qty: str='1,1', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get full details of rooms in the hotel" + search_id: The value returned in properties/list API having response contains the selected hotel + arrival_date: The check-in date at hotel + rec_guest_qty: The number of adults separated by comma, and how you arrange them in rooms + hotel_id: The value of hotel_id field from properties/list API + departure_date: The check-out date + travel_purpose: One of the followings : leisure|business + rec_children_age: The year old of each child that separated by comma + recommend_for: The recommended number of persons per room + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + rec_children_qty: The number of children separated by comma, and how you arrange them in rooms + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-rooms" + querystring = {'search_id': search_id, 'arrival_date': arrival_date, 'rec_guest_qty': rec_guest_qty, 'hotel_id': hotel_id, 'departure_date': departure_date, } + if travel_purpose: + querystring['travel_purpose'] = travel_purpose + if rec_children_age: + querystring['rec_children_age'] = rec_children_age + if recommend_for: + querystring['recommend_for'] = recommend_for + if languagecode: + querystring['languagecode'] = languagecode + if rec_children_qty: + querystring['rec_children_qty'] = rec_children_qty + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def properties_get_facilities(hotel_ids: int, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get facilities of property by id" + hotel_ids: The value of hotel_id field from properties/list API + languagecode: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/properties/get-facilities" + querystring = {'hotel_ids': hotel_ids, } + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def currency_get_exchange_rates(base_currency: str, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get currency exchange rates between different countries" + base_currency: One of the followings : en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja|ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + languagecode: The language code of specific country + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/currency/get-exchange-rates" + querystring = {'base_currency': base_currency, } + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def locations_auto_complete(text: str, languagecode: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "List suggested locations by countries, cities, districts, places name" + text: Name of cities, districts, places + languagecode: One of the followings en|en-us|ar|bg|ca|cs|da|de|el|es|es-ar|et|fi|fr|he|hr|hu|id|is|it|ja", "ko|lt|lv|ms|nl|no|pl|pt|pt-br|ro|ru|sk|sl|sr|sv|th|tl|tr|uk|vi|zh|zh-tw + + """ + url = f"https://apidojo-booking-v1.p.rapidapi.com/locations/auto-complete" + querystring = {'text': text, } + if languagecode: + querystring['languagecode'] = languagecode + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "apidojo-booking-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/booking_com.json b/toolbench/toolenv/tools/Travel/booking_com.json new file mode 100644 index 0000000000000000000000000000000000000000..7e525a772750424c1498aa53f7be348fcca23c53 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/booking_com.json @@ -0,0 +1,2400 @@ +{ + "product_id": "api_31773249-6e49-4f65-8bc3-f33a1978f084", + "tool_description": "Find all hotels, view prices, photos of the hotels, reviews. Find car rental deals. **Site:** booking.com **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters", + "home_url": "https://rapidapi.com/tipsters/api/booking-com/", + "name": "Booking com", + "title": "Booking com", + "pricing": "FREEMIUM", + "tool_name": "Booking com", + "score": { + "avgServiceLevel": 100, + "avgLatency": 729, + "avgSuccessRate": 100, + "popularityScore": 9.9, + "__typename": "Score" + }, + "host": "booking-com.p.rapidapi.com", + "api_list": [ + { + "name": "Search cars locations", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/locations", + "description": "Search cars locations by name", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "name", + "type": "STRING", + "description": "Name", + "default": "Berlin" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/locations\"\nquerystring = {\"locale\": \"en-gb\", \"name\": \"Berlin\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/locations\"\nquerystring = {\"locale\": \"en-gb\", \"name\": \"Berlin\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": { + "message": "You are not subscribed to this API." + }, + "statuscode": 1, + "schema": "" + }, + { + "name": "Search car rental", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/search", + "description": "Search car rental. Browse our inventory of hundreds of cheap car rentals. Get the best rental car deals on your next trip", + "method": "GET", + "required_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "drop_off_latitude", + "type": "NUMBER", + "description": "Drop off latitude", + "default": 50.08773 + }, + { + "name": "sort_by", + "type": "STRING", + "description": "", + "default": "recommended" + }, + { + "name": "drop_off_datetime", + "type": "STRING", + "description": "Drop off datetime", + "default": "2023-06-30 16:00:00" + }, + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + }, + { + "name": "pick_up_latitude", + "type": "NUMBER", + "description": "Pick up latitude", + "default": 50.08773 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "pick_up_datetime", + "type": "STRING", + "description": "Pick up datetime", + "default": "2023-06-29 16:00:00" + }, + { + "name": "drop_off_longitude", + "type": "NUMBER", + "description": "Drop off longitude", + "default": 14.421133 + }, + { + "name": "pick_up_longitude", + "type": "NUMBER", + "description": "Pick up longitude", + "default": 14.421133 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/search\"\nquerystring = {\"currency\": \"AED\", \"drop_off_latitude\": 50.08773, \"sort_by\": \"recommended\", \"drop_off_datetime\": \"2023-06-30 16:00:00\", \"from_country\": \"it\", \"pick_up_latitude\": 50.08773, \"locale\": \"en-gb\", \"pick_up_datetime\": \"2023-06-29 16:00:00\", \"drop_off_longitude\": 14.421133, \"pick_up_longitude\": 14.421133}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/search\"\nquerystring = {\"currency\": \"AED\", \"drop_off_latitude\": 50.08773, \"sort_by\": \"recommended\", \"drop_off_datetime\": \"2023-06-30 16:00:00\", \"from_country\": \"it\", \"pick_up_latitude\": 50.08773, \"locale\": \"en-gb\", \"pick_up_datetime\": \"2023-06-29 16:00:00\", \"drop_off_longitude\": 14.421133, \"pick_up_longitude\": 14.421133}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Vehicle supplier details", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details", + "description": "Vehicle supplier details by vehicle_id", + "method": "GET", + "required_parameters": [ + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "vehicle_id", + "type": "NUMBER", + "description": "Vehicle id", + "default": 699544941 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details\"\nquerystring = {\"from_country\": \"it\", \"locale\": \"en-gb\", \"vehicle_id\": 699544941}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details\"\nquerystring = {\"from_country\": \"it\", \"locale\": \"en-gb\", \"vehicle_id\": 699544941}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Important information", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/important-info", + "description": "Important information of vehicles", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "pick_up_location_id", + "type": "NUMBER", + "description": "Pick up location id", + "default": 4123205 + }, + { + "name": "drop_off_location_id", + "type": "NUMBER", + "description": "Drop off location id", + "default": 4123205 + }, + { + "name": "drop_off_datetime", + "type": "STRING", + "description": "Drop off datetime", + "default": "2023-09-28 16:00:00" + }, + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + }, + { + "name": "pick_up_datetime", + "type": "STRING", + "description": "Pick up datetime", + "default": "2023-09-27 16:00:00" + }, + { + "name": "driver_age", + "type": "NUMBER", + "description": "Driver age", + "default": 30 + }, + { + "name": "vehicle_id", + "type": "NUMBER", + "description": "Vehicle id", + "default": 663317713 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/important-info\"\nquerystring = {\"locale\": \"en-gb\", \"pick_up_location_id\": 4123205, \"drop_off_location_id\": 4123205, \"drop_off_datetime\": \"2023-09-28 16:00:00\", \"from_country\": \"it\", \"pick_up_datetime\": \"2023-09-27 16:00:00\", \"driver_age\": 30, \"vehicle_id\": 663317713}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/important-info\"\nquerystring = {\"locale\": \"en-gb\", \"pick_up_location_id\": 4123205, \"drop_off_location_id\": 4123205, \"drop_off_datetime\": \"2023-09-28 16:00:00\", \"from_country\": \"it\", \"pick_up_datetime\": \"2023-09-27 16:00:00\", \"driver_age\": 30, \"vehicle_id\": 663317713}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Exchange rates", + "url": "https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates", + "description": "Get currency exchange rates", + "method": "GET", + "required_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates\"\nquerystring = {\"currency\": \"AED\", \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates\"\nquerystring = {\"currency\": \"AED\", \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Car rental details", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/detail", + "description": "Car rental details by vehicle_id. First, call `Search car rental`", + "method": "GET", + "required_parameters": [ + { + "name": "vehicle_id", + "type": "NUMBER", + "description": "Vehicle id", + "default": 699544941 + }, + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "search_key", + "type": "STRING", + "description": "Search key", + "default": "eyJkcml2ZXJzQWdlIjozNSwiZHJvcE9mZkRhdGVUaW1lIjoiMjAyMS0xMS0xMlQxMDowMDowMCIsImRyb3BPZmZMb2NhdGlvbiI6IjU1Ljc1MjIwMSwzNy42MTU2MDEiLCJkcm9wT2ZmTG9jYXRpb25UeXBlIjoiTEFUTE9ORyIsInBpY2tVcERhdGVUaW1lIjoiMjAyMS0xMS0wOVQxMDowMDowMCIsInBpY2tVcExvY2F0aW9uIjoiNTUuNzUyMjAxLDM3LjYxNTYwMSIsInBpY2tVcExvY2F0aW9uVHlwZSI6IkxBVExPTkciLCJyZW50YWxEdXJhdGlvbkluRGF5cyI6Mywic2VydmljZUZlYXR1cmVzIjpbIk5PX09QQVFVRVMiLCJTVVBSRVNTX0ZJWEVEX1BSSUNFX1ZFSElDTEVTIl19" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/detail\"\nquerystring = {\"vehicle_id\": 699544941, \"currency\": \"AED\", \"from_country\": \"it\", \"locale\": \"en-gb\", \"search_key\": \"eyJkcml2ZXJzQWdlIjozNSwiZHJvcE9mZkRhdGVUaW1lIjoiMjAyMS0xMS0xMlQxMDowMDowMCIsImRyb3BPZmZMb2NhdGlvbiI6IjU1Ljc1MjIwMSwzNy42MTU2MDEiLCJkcm9wT2ZmTG9jYXRpb25UeXBlIjoiTEFUTE9ORyIsInBpY2tVcERhdGVUaW1lIjoiMjAyMS0xMS0wOVQxMDowMDowMCIsInBpY2tVcExvY2F0aW9uIjoiNTUuNzUyMjAxLDM3LjYxNTYwMSIsInBpY2tVcExvY2F0aW9uVHlwZSI6IkxBVExPTkciLCJyZW50YWxEdXJhdGlvbkluRGF5cyI6Mywic2VydmljZUZlYXR1cmVzIjpbIk5PX09QQVFVRVMiLCJTVVBSRVNTX0ZJWEVEX1BSSUNFX1ZFSElDTEVTIl19\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/detail\"\nquerystring = {\"vehicle_id\": 699544941, \"currency\": \"AED\", \"from_country\": \"it\", \"locale\": \"en-gb\", \"search_key\": \"eyJkcml2ZXJzQWdlIjozNSwiZHJvcE9mZkRhdGVUaW1lIjoiMjAyMS0xMS0xMlQxMDowMDowMCIsImRyb3BPZmZMb2NhdGlvbiI6IjU1Ljc1MjIwMSwzNy42MTU2MDEiLCJkcm9wT2ZmTG9jYXRpb25UeXBlIjoiTEFUTE9ORyIsInBpY2tVcERhdGVUaW1lIjoiMjAyMS0xMS0wOVQxMDowMDowMCIsInBpY2tVcExvY2F0aW9uIjoiNTUuNzUyMjAxLDM3LjYxNTYwMSIsInBpY2tVcExvY2F0aW9uVHlwZSI6IkxBVExPTkciLCJyZW50YWxEdXJhdGlvbkluRGF5cyI6Mywic2VydmljZUZlYXR1cmVzIjpbIk5PX09QQVFVRVMiLCJTVVBSRVNTX0ZJWEVEX1BSSUNFX1ZFSElDTEVTIl19\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Rental terms", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions", + "description": "Rental terms and conditions by pick up location_id", + "method": "GET", + "required_parameters": [ + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + }, + { + "name": "pick_up_location_id", + "type": "NUMBER", + "description": "Pick up location id. Use `Vehicle supplier details`", + "default": 4516789 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions\"\nquerystring = {\"from_country\": \"it\", \"pick_up_location_id\": 4516789, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions\"\nquerystring = {\"from_country\": \"it\", \"pick_up_location_id\": 4516789, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Rental extras", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/extras", + "description": "Get additional services when renting", + "method": "GET", + "required_parameters": [ + { + "name": "pick_up_datetime", + "type": "STRING", + "description": "Pick up datetime", + "default": "2023-09-27 16:00:00" + }, + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "price", + "type": "NUMBER", + "description": "Price", + "default": 2860.87 + }, + { + "name": "drop_off_datetime", + "type": "STRING", + "description": "Drop off datetime", + "default": "2023-09-28 16:00:00" + }, + { + "name": "driver_age", + "type": "NUMBER", + "description": "Driver age", + "default": 30 + }, + { + "name": "vehicle_id", + "type": "NUMBER", + "description": "Vehicle id", + "default": 663317713 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/extras\"\nquerystring = {\"pick_up_datetime\": \"2023-09-27 16:00:00\", \"currency\": \"AED\", \"from_country\": \"it\", \"locale\": \"en-gb\", \"price\": 2860.87, \"drop_off_datetime\": \"2023-09-28 16:00:00\", \"driver_age\": 30, \"vehicle_id\": 663317713}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/extras\"\nquerystring = {\"pick_up_datetime\": \"2023-09-27 16:00:00\", \"currency\": \"AED\", \"from_country\": \"it\", \"locale\": \"en-gb\", \"price\": 2860.87, \"drop_off_datetime\": \"2023-09-28 16:00:00\", \"driver_age\": 30, \"vehicle_id\": 663317713}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Reviews metadata of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata", + "description": "Get reviews metadata of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1676161}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1676161}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Nearby cities", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities", + "description": "Get a list of nearby cities by coordinates", + "method": "GET", + "required_parameters": [ + { + "name": "latitude", + "type": "NUMBER", + "description": "Latitude", + "default": 65.9667 + }, + { + "name": "longitude", + "type": "NUMBER", + "description": "Longitude", + "default": -18.5333 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities\"\nquerystring = {\"latitude\": 65.9667, \"longitude\": -18.5333, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities\"\nquerystring = {\"latitude\": 65.9667, \"longitude\": -18.5333, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Questions about the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/questions", + "description": "Get questions and answers of hotel staff by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/questions\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/questions\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Hotel on the map", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/map-markers", + "description": "Get nearby landmarks and geo info of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/map-markers\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/map-markers\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Room list of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/room-list", + "description": "Get room list of the hotel by hotel_id. Room prices, photos and full room descriptions", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + }, + { + "name": "adults_number_by_rooms", + "type": "STRING", + "description": "The number of adults in each room. Specify the number of adults separated by commas, for example: `3,1` Means that the first room will accommodate three adults, and the second room will accommodate 1 adult. If you are looking for just one room for two adults, please specify `2`", + "default": "3,1" + }, + { + "name": "units", + "type": "STRING", + "description": "", + "default": "metric" + } + ], + "optional_parameters": [ + { + "name": "children_ages", + "type": "STRING", + "description": "The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year", + "default": "5,0,9" + }, + { + "name": "children_number_by_rooms", + "type": "STRING", + "description": "The number of children in each room. Specify the number of children separated by commas, for example: `3,1` Means that the first room will accommodate three children, and the second room will accommodate 1 children", + "default": "2,1" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/room-list\"\nquerystring = {\"hotel_id\": 1676161, \"currency\": \"AED\", \"checkout_date\": \"2023-09-28\", \"locale\": \"en-gb\", \"children_ages\": \"5,0,9\", \"checkin_date\": \"2023-09-27\", \"children_number_by_rooms\": \"2,1\", \"adults_number_by_rooms\": \"3,1\", \"units\": \"metric\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/room-list\"\nquerystring = {\"hotel_id\": 1676161, \"currency\": \"AED\", \"checkout_date\": \"2023-09-28\", \"locale\": \"en-gb\", \"children_ages\": \"5,0,9\", \"checkin_date\": \"2023-09-27\", \"children_number_by_rooms\": \"2,1\", \"adults_number_by_rooms\": \"3,1\", \"units\": \"metric\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Reviews about the supplier of vehicles ", + "url": "https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews", + "description": "Reviews about the supplier of vehicles by location_id", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "location_id", + "type": "NUMBER", + "description": "Location id", + "default": 4123205 + }, + { + "name": "from_country", + "type": "STRING", + "description": "", + "default": "it" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews\"\nquerystring = {\"locale\": \"en-gb\", \"location_id\": 4123205, \"from_country\": \"it\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews\"\nquerystring = {\"locale\": \"en-gb\", \"location_id\": 4123205, \"from_country\": \"it\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Location highlights of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/location-highlights", + "description": "Get location highlights of the hotel by hotel_id. Ex.: metro, rail", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1377073 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/location-highlights\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/location-highlights\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Description of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/description", + "description": "Get description of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1377073 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/description\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/description\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Review scores of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/review-scores", + "description": "Get review scores of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1377073 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/review-scores\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/review-scores\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Hotel children policy", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/children-policies", + "description": "Get hotel children policy by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + } + ], + "optional_parameters": [ + { + "name": "children_age", + "type": "NUMBER", + "description": "Children age", + "default": 5 + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/children-policies\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1676161, \"children_age\": 5}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/children-policies\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1676161, \"children_age\": 5}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Search hotels by coordinates", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates", + "description": "Get available hotels by coordinates latitude and longitude", + "method": "GET", + "required_parameters": [ + { + "name": "units", + "type": "STRING", + "description": "", + "default": "metric" + }, + { + "name": "room_number", + "type": "NUMBER", + "description": "Number of rooms", + "default": "1" + }, + { + "name": "longitude", + "type": "NUMBER", + "description": "Longitude", + "default": -18.5333 + }, + { + "name": "latitude", + "type": "NUMBER", + "description": "Latitude", + "default": 65.9667 + }, + { + "name": "filter_by_currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "order_by", + "type": "STRING", + "description": "", + "default": "popularity" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "adults_number", + "type": "NUMBER", + "description": "Number of adults", + "default": "2" + }, + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + } + ], + "optional_parameters": [ + { + "name": "children_ages", + "type": "STRING", + "description": "The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year", + "default": "5,0" + }, + { + "name": "include_adjacency", + "type": "BOOLEAN", + "description": "Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.", + "default": true + }, + { + "name": "children_number", + "type": "NUMBER", + "description": "Number of children", + "default": "2" + }, + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "categories_filter_ids", + "type": "STRING", + "description": "Search filter IDs. For possible filters use `@Filters for search`", + "default": "class::2,class::4,free_cancellation::1" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates\"\nquerystring = {\"children_ages\": \"5,0\", \"units\": \"metric\", \"room_number\": \"1\", \"longitude\": -18.5333, \"latitude\": 65.9667, \"filter_by_currency\": \"AED\", \"order_by\": \"popularity\", \"locale\": \"en-gb\", \"include_adjacency\": true, \"checkout_date\": \"2023-09-28\", \"adults_number\": \"2\", \"children_number\": \"2\", \"checkin_date\": \"2023-09-27\", \"page_number\": \"0\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates\"\nquerystring = {\"children_ages\": \"5,0\", \"units\": \"metric\", \"room_number\": \"1\", \"longitude\": -18.5333, \"latitude\": 65.9667, \"filter_by_currency\": \"AED\", \"order_by\": \"popularity\", \"locale\": \"en-gb\", \"include_adjacency\": true, \"checkout_date\": \"2023-09-28\", \"adults_number\": \"2\", \"children_number\": \"2\", \"checkin_date\": \"2023-09-27\", \"page_number\": \"0\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Policies of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/policies", + "description": "Get policies of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/policies\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1676161}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/policies\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1676161}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Payment features of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/payment-features", + "description": "Get payment features of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/payment-features\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/payment-features\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Reviews of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/reviews", + "description": "Get reviews of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "sort_type", + "type": "STRING", + "description": "", + "default": "SORT_MOST_RELEVANT" + }, + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [ + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": 0 + }, + { + "name": "language_filter", + "type": "STRING", + "description": "Filter reviews by language", + "default": "en-gb,de,fr" + }, + { + "name": "customer_type", + "type": "STRING", + "description": "Customer types", + "default": "solo_traveller,review_category_group_of_friends" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/reviews\"\nquerystring = {\"sort_type\": \"SORT_MOST_RELEVANT\", \"hotel_id\": 1676161, \"locale\": \"en-gb\", \"page_number\": 0, \"language_filter\": \"en-gb,de,fr\", \"customer_type\": \"solo_traveller,review_category_group_of_friends\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/reviews\"\nquerystring = {\"sort_type\": \"SORT_MOST_RELEVANT\", \"hotel_id\": 1676161, \"locale\": \"en-gb\", \"page_number\": 0, \"language_filter\": \"en-gb,de,fr\", \"customer_type\": \"solo_traveller,review_category_group_of_friends\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Search hotels", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/search", + "description": "Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages!
Comparable to: ![Search locations](https://i.imgur.com/PCuK81r.png)", + "method": "GET", + "required_parameters": [ + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + }, + { + "name": "dest_type", + "type": "STRING", + "description": "", + "default": "city" + }, + { + "name": "units", + "type": "STRING", + "description": "", + "default": "metric" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "adults_number", + "type": "NUMBER", + "description": "Number of adults", + "default": "2" + }, + { + "name": "order_by", + "type": "STRING", + "description": "", + "default": "popularity" + }, + { + "name": "dest_id", + "type": "NUMBER", + "description": "Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`", + "default": -553173 + }, + { + "name": "filter_by_currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "room_number", + "type": "NUMBER", + "description": "Number of rooms", + "default": "1" + } + ], + "optional_parameters": [ + { + "name": "children_number", + "type": "NUMBER", + "description": "Number of children", + "default": "2" + }, + { + "name": "children_ages", + "type": "STRING", + "description": "The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year", + "default": "5,0" + }, + { + "name": "categories_filter_ids", + "type": "STRING", + "description": "Search filter IDs. For possible filters use `@Filters for search`", + "default": "class::2,class::4,free_cancellation::1" + }, + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "include_adjacency", + "type": "BOOLEAN", + "description": "Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.", + "default": true + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/search\"\nquerystring = {\"checkin_date\": \"2023-09-27\", \"dest_type\": \"city\", \"children_number\": \"2\", \"units\": \"metric\", \"checkout_date\": \"2023-09-28\", \"children_ages\": \"5,0\", \"adults_number\": \"2\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\", \"order_by\": \"popularity\", \"dest_id\": -553173, \"filter_by_currency\": \"AED\", \"locale\": \"en-gb\", \"room_number\": \"1\", \"page_number\": \"0\", \"include_adjacency\": true}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/search\"\nquerystring = {\"checkin_date\": \"2023-09-27\", \"dest_type\": \"city\", \"children_number\": \"2\", \"units\": \"metric\", \"checkout_date\": \"2023-09-28\", \"children_ages\": \"5,0\", \"adults_number\": \"2\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\", \"order_by\": \"popularity\", \"dest_id\": -553173, \"filter_by_currency\": \"AED\", \"locale\": \"en-gb\", \"room_number\": \"1\", \"page_number\": \"0\", \"include_adjacency\": true}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Tips of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/tips", + "description": "Get guest tips of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "sort_type", + "type": "STRING", + "description": "", + "default": "SORT_MOST_RELEVANT" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [ + { + "name": "language_filter", + "type": "STRING", + "description": "Filter reviews by language", + "default": "en-gb,de,fr" + }, + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": 0 + }, + { + "name": "customer_type", + "type": "STRING", + "description": "Customer types", + "default": "solo_traveller,review_category_group_of_friends" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/tips\"\nquerystring = {\"hotel_id\": 1676161, \"sort_type\": \"SORT_MOST_RELEVANT\", \"language_filter\": \"en-gb,de,fr\", \"locale\": \"en-gb\", \"page_number\": 0, \"customer_type\": \"solo_traveller,review_category_group_of_friends\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/tips\"\nquerystring = {\"hotel_id\": 1676161, \"sort_type\": \"SORT_MOST_RELEVANT\", \"language_filter\": \"en-gb,de,fr\", \"locale\": \"en-gb\", \"page_number\": 0, \"customer_type\": \"solo_traveller,review_category_group_of_friends\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Facilities of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/facilities", + "description": "Get facilities of the hotel by hotel_id. Ex.: `Restaurant`, `Room service`, `Breakfast in the room`", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/facilities\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/facilities\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Search locations", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/locations", + "description": "Search locations or hotels by name. Comparable to: ![Search locations](https://i.imgur.com/wLgLE5X.png)", + "method": "GET", + "required_parameters": [ + { + "name": "name", + "type": "STRING", + "description": "Name", + "default": "Berlin" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/locations\"\nquerystring = {\"name\": \"Berlin\", \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/locations\"\nquerystring = {\"name\": \"Berlin\", \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Nearby places of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/nearby-places", + "description": "Get nearby places of the hotel by hotel_id. Ex.: nearby `Airport`, `Shopping Centre`", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/nearby-places\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/nearby-places\"\nquerystring = {\"hotel_id\": 1676161, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Photos of the hotel", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/photos", + "description": "Get all photos of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1377073 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/photos\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/photos\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Filters for search", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/search-filters", + "description": "Get a list of available filters for hotel search", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "dest_id", + "type": "NUMBER", + "description": "Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`", + "default": -553173 + }, + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + }, + { + "name": "filter_by_currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "dest_type", + "type": "STRING", + "description": "", + "default": "city" + }, + { + "name": "units", + "type": "STRING", + "description": "", + "default": "metric" + }, + { + "name": "order_by", + "type": "STRING", + "description": "", + "default": "popularity" + }, + { + "name": "adults_number", + "type": "NUMBER", + "description": "Number of adults", + "default": "2" + }, + { + "name": "room_number", + "type": "NUMBER", + "description": "Number of rooms", + "default": "1" + } + ], + "optional_parameters": [ + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "children_number", + "type": "NUMBER", + "description": "Number of children", + "default": "2" + }, + { + "name": "include_adjacency", + "type": "BOOLEAN", + "description": "Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.", + "default": true + }, + { + "name": "categories_filter_ids", + "type": "STRING", + "description": "Search filter IDs. For possible filters use `@Filters for search`", + "default": "class::2,class::4,free_cancellation::1" + }, + { + "name": "children_ages", + "type": "STRING", + "description": "The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year", + "default": "5,0" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/search-filters\"\nquerystring = {\"locale\": \"en-gb\", \"page_number\": \"0\", \"dest_id\": -553173, \"checkin_date\": \"2023-09-27\", \"children_number\": \"2\", \"include_adjacency\": true, \"filter_by_currency\": \"AED\", \"checkout_date\": \"2023-09-28\", \"dest_type\": \"city\", \"units\": \"metric\", \"order_by\": \"popularity\", \"adults_number\": \"2\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\", \"children_ages\": \"5,0\", \"room_number\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/search-filters\"\nquerystring = {\"locale\": \"en-gb\", \"page_number\": \"0\", \"dest_id\": -553173, \"checkin_date\": \"2023-09-27\", \"children_number\": \"2\", \"include_adjacency\": true, \"filter_by_currency\": \"AED\", \"checkout_date\": \"2023-09-28\", \"dest_type\": \"city\", \"units\": \"metric\", \"order_by\": \"popularity\", \"adults_number\": \"2\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\", \"children_ages\": \"5,0\", \"room_number\": \"1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Districts", + "url": "https://booking-com.p.rapidapi.com/v1/static/districts", + "description": "Returns all the districts where Booking offers hotels.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "name", + "type": "STRING", + "description": "District name", + "default": "" + }, + { + "name": "country", + "type": "STRING", + "description": "Country ID", + "default": "" + }, + { + "name": "city_id", + "type": "STRING", + "description": "City ID", + "default": "" + }, + { + "name": "district_id", + "type": "STRING", + "description": "District ID", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "Page number", + "default": "0" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/districts\"\nquerystring = {\"name\": \"\", \"country\": \"\", \"city_id\": \"\", \"district_id\": \"\", \"page\": \"0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/districts\"\nquerystring = {\"name\": \"\", \"country\": \"\", \"city_id\": \"\", \"district_id\": \"\", \"page\": \"0\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Hotel data", + "url": "https://booking-com.p.rapidapi.com/v1/hotels/data", + "description": "Get hotel data by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1377073 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/data\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/hotels/data\"\nquerystring = {\"hotel_id\": 1377073, \"locale\": \"en-gb\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Payment types", + "url": "https://booking-com.p.rapidapi.com/v1/static/payment-types", + "description": "Returns a list of payments. Only payments with {bookable} set to 1, can be used in processBooking. For processBooking, we always support Visa, Mastercard and American Express.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "payment_id", + "type": "STRING", + "description": "Payment ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/payment-types\"\nquerystring = {\"payment_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/payment-types\"\nquerystring = {\"payment_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Cities", + "url": "https://booking-com.p.rapidapi.com/v1/static/cities", + "description": "Returns a list of cities where Booking.com offers hotels. location: Latitude and longitude. timezone: Timezone of the city.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "page", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "city_id", + "type": "STRING", + "description": "City ID", + "default": "" + }, + { + "name": "name", + "type": "STRING", + "description": "City name", + "default": "" + }, + { + "name": "latitude", + "type": "STRING", + "description": "Latitude location", + "default": "" + }, + { + "name": "longitude", + "type": "STRING", + "description": "Longitude location", + "default": "" + }, + { + "name": "country", + "type": "STRING", + "description": "Country ID", + "default": "it" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/cities\"\nquerystring = {\"page\": \"0\", \"city_id\": \"\", \"name\": \"\", \"latitude\": \"\", \"longitude\": \"\", \"country\": \"it\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/cities\"\nquerystring = {\"page\": \"0\", \"city_id\": \"\", \"name\": \"\", \"latitude\": \"\", \"longitude\": \"\", \"country\": \"it\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Hotels", + "url": "https://booking-com.p.rapidapi.com/v1/static/hotels", + "description": "This call returns the hotel and room data. List of hotels", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "page", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "city_id", + "type": "NUMBER", + "description": "City ID", + "default": "" + }, + { + "name": "slug", + "type": "STRING", + "description": "Website slug. Ex. `ad/plaza` or `it/castello-delle-serre`", + "default": "" + }, + { + "name": "region_id", + "type": "NUMBER", + "description": "Region ID", + "default": "" + }, + { + "name": "country", + "type": "STRING", + "description": "Country ID", + "default": "" + }, + { + "name": "exact_class", + "type": "NUMBER", + "description": "Exact class", + "default": "" + }, + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel ID", + "default": "" + }, + { + "name": "zip_code", + "type": "STRING", + "description": "ZIP Code", + "default": "" + }, + { + "name": "hotel_type_id", + "type": "NUMBER", + "description": "Hotel type ID", + "default": "" + }, + { + "name": "district_id", + "type": "NUMBER", + "description": "District ID", + "default": "" + }, + { + "name": "name", + "type": "STRING", + "description": "Hotel name", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/hotels\"\nquerystring = {\"page\": \"0\", \"city_id\": \"\", \"slug\": \"\", \"region_id\": \"\", \"country\": \"\", \"exact_class\": \"\", \"hotel_id\": \"\", \"zip_code\": \"\", \"hotel_type_id\": \"\", \"district_id\": \"\", \"name\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/hotels\"\nquerystring = {\"page\": \"0\", \"city_id\": \"\", \"slug\": \"\", \"region_id\": \"\", \"country\": \"\", \"exact_class\": \"\", \"hotel_id\": \"\", \"zip_code\": \"\", \"hotel_type_id\": \"\", \"district_id\": \"\", \"name\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "List of Facility types", + "url": "https://booking-com.p.rapidapi.com/v1/static/facility-types", + "description": "Returns facility types names and their translations", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "facility_id", + "type": "STRING", + "description": "Facility ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/facility-types\"\nquerystring = {\"facility_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/facility-types\"\nquerystring = {\"facility_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Regions", + "url": "https://booking-com.p.rapidapi.com/v1/static/regions", + "description": "Returns all the regions where Booking offers hotels.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "region_id", + "type": "STRING", + "description": "Region IDs", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "name", + "type": "STRING", + "description": "Region name", + "default": "" + }, + { + "name": "country", + "type": "STRING", + "description": "Country ID", + "default": "" + }, + { + "name": "region_type", + "type": "STRING", + "description": "Region types", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/regions\"\nquerystring = {\"region_id\": \"\", \"page\": \"0\", \"name\": \"\", \"country\": \"\", \"region_type\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/regions\"\nquerystring = {\"region_id\": \"\", \"page\": \"0\", \"name\": \"\", \"country\": \"\", \"region_type\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Hotel types", + "url": "https://booking-com.p.rapidapi.com/v1/static/hotel-types", + "description": "Returns hotel types names and their translations.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "hotel_type_id", + "type": "STRING", + "description": "Hotel type ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/hotel-types\"\nquerystring = {\"hotel_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/hotel-types\"\nquerystring = {\"hotel_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "List of Room facility types", + "url": "https://booking-com.p.rapidapi.com/v1/static/room-facility-types", + "description": "Returns room facility types names", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "room_facility_type_id", + "type": "STRING", + "description": "Room facility type ID", + "default": "" + }, + { + "name": "facility_type_id", + "type": "STRING", + "description": "Facility type ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/room-facility-types\"\nquerystring = {\"room_facility_type_id\": \"\", \"facility_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/room-facility-types\"\nquerystring = {\"room_facility_type_id\": \"\", \"facility_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Hotel facility types", + "url": "https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types", + "description": "Returns hotel facility types names and their translations", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "hotel_facility_type_id", + "type": "STRING", + "description": "Hotel facility type ID", + "default": "" + }, + { + "name": "facility_type_id", + "type": "STRING", + "description": "Facility type ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types\"\nquerystring = {\"hotel_facility_type_id\": \"\", \"facility_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types\"\nquerystring = {\"hotel_facility_type_id\": \"\", \"facility_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Room types", + "url": "https://booking-com.p.rapidapi.com/v1/static/room-types", + "description": "Returns room types names", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "room_type_id", + "type": "STRING", + "description": "Room type ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/room-types\"\nquerystring = {\"room_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/room-types\"\nquerystring = {\"room_type_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "List of Hotel chains", + "url": "https://booking-com.p.rapidapi.com/v1/static/chain-types", + "description": "Returns a list of hotel chains.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "name", + "type": "STRING", + "description": "Hotel chain name", + "default": "" + }, + { + "name": "chain_id", + "type": "STRING", + "description": "Chain ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/chain-types\"\nquerystring = {\"name\": \"\", \"chain_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/chain-types\"\nquerystring = {\"name\": \"\", \"chain_id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "List of Countries", + "url": "https://booking-com.p.rapidapi.com/v1/static/country", + "description": "Returns all the country where booking offers hotels.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "country", + "type": "STRING", + "description": "Country ID", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/country\"\nquerystring = {\"country\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v1/static/country\"\nquerystring = {\"country\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Hotels Details", + "url": "https://booking-com.p.rapidapi.com/v2/hotels/details", + "description": "Hotels Details", + "method": "GET", + "required_parameters": [ + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1676161 + }, + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/details\"\nquerystring = {\"hotel_id\": 1676161, \"currency\": \"AED\", \"locale\": \"en-gb\", \"checkout_date\": \"2023-09-28\", \"checkin_date\": \"2023-09-27\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/details\"\nquerystring = {\"hotel_id\": 1676161, \"currency\": \"AED\", \"locale\": \"en-gb\", \"checkout_date\": \"2023-09-28\", \"checkin_date\": \"2023-09-27\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Hotels Search", + "url": "https://booking-com.p.rapidapi.com/v2/hotels/search", + "description": "Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages!
Comparable to: ![Search locations](https://i.imgur.com/PCuK81r.png)", + "method": "GET", + "required_parameters": [ + { + "name": "order_by", + "type": "STRING", + "description": "", + "default": "popularity" + }, + { + "name": "adults_number", + "type": "NUMBER", + "description": "Number of adults", + "default": "2" + }, + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + }, + { + "name": "filter_by_currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "dest_id", + "type": "NUMBER", + "description": "Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`", + "default": -553173 + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "units", + "type": "STRING", + "description": "", + "default": "metric" + }, + { + "name": "room_number", + "type": "NUMBER", + "description": "Number of rooms", + "default": "1" + }, + { + "name": "dest_type", + "type": "STRING", + "description": "", + "default": "city" + } + ], + "optional_parameters": [ + { + "name": "include_adjacency", + "type": "BOOLEAN", + "description": "Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.", + "default": true + }, + { + "name": "children_number", + "type": "NUMBER", + "description": "Number of children", + "default": "2" + }, + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "children_ages", + "type": "STRING", + "description": "The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year", + "default": "5,0" + }, + { + "name": "categories_filter_ids", + "type": "STRING", + "description": "Search filter IDs. For possible filters use `@Filters for search` ex: `price::USD-140-190`, or `price::USD-150-min` or `price::USD-150-max`", + "default": "class::2,class::4,free_cancellation::1" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/search\"\nquerystring = {\"include_adjacency\": true, \"children_number\": \"2\", \"order_by\": \"popularity\", \"adults_number\": \"2\", \"checkin_date\": \"2023-09-27\", \"filter_by_currency\": \"AED\", \"page_number\": \"0\", \"dest_id\": -553173, \"locale\": \"en-gb\", \"checkout_date\": \"2023-09-28\", \"units\": \"metric\", \"room_number\": \"1\", \"children_ages\": \"5,0\", \"dest_type\": \"city\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/search\"\nquerystring = {\"include_adjacency\": true, \"children_number\": \"2\", \"order_by\": \"popularity\", \"adults_number\": \"2\", \"checkin_date\": \"2023-09-27\", \"filter_by_currency\": \"AED\", \"page_number\": \"0\", \"dest_id\": -553173, \"locale\": \"en-gb\", \"checkout_date\": \"2023-09-28\", \"units\": \"metric\", \"room_number\": \"1\", \"children_ages\": \"5,0\", \"dest_type\": \"city\", \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Meta Properties description", + "url": "https://booking-com.p.rapidapi.com/v2/hotels/meta-properties", + "description": "Get meta properties description", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/meta-properties\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/meta-properties\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Filters for search", + "url": "https://booking-com.p.rapidapi.com/v2/hotels/search-filters", + "description": "Get a list of available filters for hotel search", + "method": "GET", + "required_parameters": [ + { + "name": "checkin_date", + "type": "STRING", + "description": "Checkin date", + "default": "2023-09-27" + }, + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "room_number", + "type": "NUMBER", + "description": "Number of rooms", + "default": "1" + }, + { + "name": "dest_id", + "type": "NUMBER", + "description": "Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`", + "default": -553173 + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Checkout date", + "default": "2023-09-28" + }, + { + "name": "adults_number", + "type": "NUMBER", + "description": "Number of adults", + "default": "2" + }, + { + "name": "filter_by_currency", + "type": "STRING", + "description": "", + "default": "AED" + }, + { + "name": "dest_type", + "type": "STRING", + "description": "", + "default": "city" + }, + { + "name": "order_by", + "type": "STRING", + "description": "", + "default": "popularity" + }, + { + "name": "units", + "type": "STRING", + "description": "", + "default": "metric" + } + ], + "optional_parameters": [ + { + "name": "include_adjacency", + "type": "BOOLEAN", + "description": "Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.", + "default": true + }, + { + "name": "categories_filter_ids", + "type": "STRING", + "description": "Search filter IDs. For possible filters use `@Filters for search` ex: `price::USD-140-190`, or `price::USD-150-min` or `price::USD-150-max`", + "default": "class::2,class::4,free_cancellation::1" + }, + { + "name": "page_number", + "type": "NUMBER", + "description": "Page number", + "default": "0" + }, + { + "name": "children_number", + "type": "NUMBER", + "description": "Number of children", + "default": "2" + }, + { + "name": "children_ages", + "type": "STRING", + "description": "The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year", + "default": "5,0" + } + ], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/search-filters\"\nquerystring = {\"checkin_date\": \"2023-09-27\", \"locale\": \"en-gb\", \"include_adjacency\": true, \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\", \"room_number\": \"1\", \"dest_id\": -553173, \"checkout_date\": \"2023-09-28\", \"page_number\": \"0\", \"adults_number\": \"2\", \"filter_by_currency\": \"AED\", \"dest_type\": \"city\", \"children_number\": \"2\", \"order_by\": \"popularity\", \"children_ages\": \"5,0\", \"units\": \"metric\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/search-filters\"\nquerystring = {\"checkin_date\": \"2023-09-27\", \"locale\": \"en-gb\", \"include_adjacency\": true, \"categories_filter_ids\": \"class::2,class::4,free_cancellation::1\", \"room_number\": \"1\", \"dest_id\": -553173, \"checkout_date\": \"2023-09-28\", \"page_number\": \"0\", \"adults_number\": \"2\", \"filter_by_currency\": \"AED\", \"dest_type\": \"city\", \"children_number\": \"2\", \"order_by\": \"popularity\", \"children_ages\": \"5,0\", \"units\": \"metric\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Description of the hotel", + "url": "https://booking-com.p.rapidapi.com/v2/hotels/description", + "description": "Get description of the hotel by hotel_id", + "method": "GET", + "required_parameters": [ + { + "name": "locale", + "type": "STRING", + "description": "", + "default": "en-gb" + }, + { + "name": "hotel_id", + "type": "NUMBER", + "description": "Hotel id", + "default": 1377073 + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/description\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1377073}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com.p.rapidapi.com/v2/hotels/description\"\nquerystring = {\"locale\": \"en-gb\", \"hotel_id\": 1377073}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "flights/multi-city", + "url": "https://booking-com13.p.rapidapi.com/flights/multi-city", + "description": "Get flights multi-city", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "min_price", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "infant_age", + "type": "STRING", + "description": "The `infant_age `must be a number(0, 1) and separated by commas\nEx: 0,1", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "1" + }, + { + "name": "number_of_stops", + "type": "ENUM", + "description": "Default: `All`", + "default": "" + }, + { + "name": "children_age", + "type": "STRING", + "description": "The `children_age `must be a number and separated by commas\nEx: 9,2,16\n", + "default": "" + }, + { + "name": "country_flag", + "type": "STRING", + "description": "`countryFlag` from `languages` endpoint\n\nDefault: `us`", + "default": "us" + }, + { + "name": "adult_number", + "type": "NUMBER", + "description": "Default: 1", + "default": "" + }, + { + "name": "max_price", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "class", + "type": "ENUM", + "description": "Default: `Economy`", + "default": "" + }, + { + "name": "travel_time", + "type": "STRING", + "description": "Format: `hh:mm`\nEx: 21:30", + "default": "" + }, + { + "name": "airlines", + "type": "STRING", + "description": "airlines comma-separated or empty for all types\nGet from this API\nresultSetMetaData->marketingCarriers[index]->code\nEx: SK,BT", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/flights/multi-city\"\nquerystring = {\"min_price\": \"\", \"infant_age\": \"\", \"page\": \"1\", \"number_of_stops\": \"\", \"children_age\": \"\", \"country_flag\": \"us\", \"adult_number\": \"\", \"max_price\": \"\", \"class\": \"\", \"travel_time\": \"\", \"airlines\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/flights/multi-city\"\nquerystring = {\"min_price\": \"\", \"infant_age\": \"\", \"page\": \"1\", \"number_of_stops\": \"\", \"children_age\": \"\", \"country_flag\": \"us\", \"adult_number\": \"\", \"max_price\": \"\", \"class\": \"\", \"travel_time\": \"\", \"airlines\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "currentPage": { + "type": "integer" + }, + "data": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "availableFilters": { + "type": "array" + }, + "availableSortTypes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + }, + "carrierCodes": { + "type": "array" + }, + "carrierNames": { + "type": "array" + }, + "filteredFlightsCount": { + "type": "integer" + }, + "flights": { + "type": "array", + "items": { + "type": "object" + } + }, + "flightsCount": { + "type": "integer" + }, + "quickSortPrices": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "carrierPromo": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "currency": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + } + } + }, + "value": { + "type": "integer" + } + } + }, + "cheapTrip": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "currency": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + } + } + }, + "value": { + "type": "integer" + } + } + }, + "recommendation": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "currency": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + } + } + }, + "value": { + "type": "integer" + } + } + }, + "shortTrip": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "currency": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + } + } + }, + "value": { + "type": "integer" + } + } + } + } + }, + "resultSetMetaData": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "marketingCarriers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + }, + "priceRange": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "max": { + "type": "integer" + }, + "min": { + "type": "integer" + } + } + }, + "travelTimeRange": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "max": { + "type": "integer" + }, + "min": { + "type": "integer" + } + } + } + } + }, + "routes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "departureAt": { + "type": "string" + }, + "departureDate": { + "type": "string" + }, + "departureTimeOfDay": { + "type": "null" + }, + "destination": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "cityCode": { + "type": "string" + }, + "cityName": { + "type": "string" + }, + "code": { + "type": "string" + }, + "continentCode": { + "type": "string" + }, + "continentName": { + "type": "string" + }, + "countryCode": { + "type": "string" + }, + "countryName": { + "type": "string" + }, + "name": { + "type": "string" + } + } + }, + "origin": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "cityCode": { + "type": "string" + }, + "cityName": { + "type": "string" + }, + "code": { + "type": "string" + }, + "continentCode": { + "type": "string" + }, + "continentName": { + "type": "string" + }, + "countryCode": { + "type": "string" + }, + "countryName": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + }, + "searchPath": { + "type": "string" + }, + "sponsoredTrips": { + "type": "array", + "items": { + "type": "object" + } + }, + "travelers": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "ageType": { + "type": "string" + } + } + } + }, + "tripCampaigns": { + "type": "array" + }, + "type": { + "type": "string" + }, + "validWithVoucher": { + "type": "boolean" + } + } + }, + "message": { + "type": "string" + }, + "resultsPerPage": { + "type": "integer" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + } + ], + "standardized_name": "booking_com" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/booking_com/api.py b/toolbench/toolenv/tools/Travel/booking_com/api.py new file mode 100644 index 0000000000000000000000000000000000000000..108c1a9d4f6467a126f27422b5cce286885f582c --- /dev/null +++ b/toolbench/toolenv/tools/Travel/booking_com/api.py @@ -0,0 +1,1286 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_cars_locations(locale: str, name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search cars locations by name" + name: Name + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/locations" + querystring = {'locale': locale, 'name': name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_car_rental(currency: str, drop_off_latitude: int, sort_by: str, drop_off_datetime: str, from_country: str, pick_up_latitude: int, locale: str, pick_up_datetime: str, drop_off_longitude: int, pick_up_longitude: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search car rental. Browse our inventory of hundreds of cheap car rentals. Get the best rental car deals on your next trip" + drop_off_latitude: Drop off latitude + drop_off_datetime: Drop off datetime + pick_up_latitude: Pick up latitude + pick_up_datetime: Pick up datetime + drop_off_longitude: Drop off longitude + pick_up_longitude: Pick up longitude + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/search" + querystring = {'currency': currency, 'drop_off_latitude': drop_off_latitude, 'sort_by': sort_by, 'drop_off_datetime': drop_off_datetime, 'from_country': from_country, 'pick_up_latitude': pick_up_latitude, 'locale': locale, 'pick_up_datetime': pick_up_datetime, 'drop_off_longitude': drop_off_longitude, 'pick_up_longitude': pick_up_longitude, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def vehicle_supplier_details(from_country: str, locale: str, vehicle_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Vehicle supplier details by vehicle_id" + vehicle_id: Vehicle id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details" + querystring = {'from_country': from_country, 'locale': locale, 'vehicle_id': vehicle_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def important_information(locale: str, pick_up_location_id: int, drop_off_location_id: int, drop_off_datetime: str, from_country: str, pick_up_datetime: str, driver_age: int, vehicle_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Important information of vehicles" + pick_up_location_id: Pick up location id + drop_off_location_id: Drop off location id + drop_off_datetime: Drop off datetime + pick_up_datetime: Pick up datetime + driver_age: Driver age + vehicle_id: Vehicle id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/important-info" + querystring = {'locale': locale, 'pick_up_location_id': pick_up_location_id, 'drop_off_location_id': drop_off_location_id, 'drop_off_datetime': drop_off_datetime, 'from_country': from_country, 'pick_up_datetime': pick_up_datetime, 'driver_age': driver_age, 'vehicle_id': vehicle_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def exchange_rates(currency: str, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get currency exchange rates" + + """ + url = f"https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates" + querystring = {'currency': currency, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def car_rental_details(vehicle_id: int, currency: str, from_country: str, locale: str, search_key: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Car rental details by vehicle_id. First, call `Search car rental`" + vehicle_id: Vehicle id + search_key: Search key + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/detail" + querystring = {'vehicle_id': vehicle_id, 'currency': currency, 'from_country': from_country, 'locale': locale, 'search_key': search_key, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def rental_terms(from_country: str, pick_up_location_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Rental terms and conditions by pick up location_id" + pick_up_location_id: Pick up location id. Use `Vehicle supplier details` + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions" + querystring = {'from_country': from_country, 'pick_up_location_id': pick_up_location_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def rental_extras(pick_up_datetime: str, currency: str, from_country: str, locale: str, price: int, drop_off_datetime: str, driver_age: int, vehicle_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get additional services when renting" + pick_up_datetime: Pick up datetime + price: Price + drop_off_datetime: Drop off datetime + driver_age: Driver age + vehicle_id: Vehicle id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/extras" + querystring = {'pick_up_datetime': pick_up_datetime, 'currency': currency, 'from_country': from_country, 'locale': locale, 'price': price, 'drop_off_datetime': drop_off_datetime, 'driver_age': driver_age, 'vehicle_id': vehicle_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reviews_metadata_of_the_hotel(locale: str, hotel_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get reviews metadata of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata" + querystring = {'locale': locale, 'hotel_id': hotel_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def nearby_cities(latitude: int, longitude: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of nearby cities by coordinates" + latitude: Latitude + longitude: Longitude + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities" + querystring = {'latitude': latitude, 'longitude': longitude, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def questions_about_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get questions and answers of hotel staff by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/questions" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotel_on_the_map(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get nearby landmarks and geo info of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/map-markers" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def room_list_of_the_hotel(hotel_id: int, currency: str, checkout_date: str, locale: str, checkin_date: str, adults_number_by_rooms: str, units: str, children_ages: str='5,0,9', children_number_by_rooms: str='2,1', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get room list of the hotel by hotel_id. Room prices, photos and full room descriptions" + hotel_id: Hotel id + checkout_date: Checkout date + checkin_date: Checkin date + adults_number_by_rooms: The number of adults in each room. Specify the number of adults separated by commas, for example: `3,1` Means that the first room will accommodate three adults, and the second room will accommodate 1 adult. If you are looking for just one room for two adults, please specify `2` + children_ages: The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year + children_number_by_rooms: The number of children in each room. Specify the number of children separated by commas, for example: `3,1` Means that the first room will accommodate three children, and the second room will accommodate 1 children + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/room-list" + querystring = {'hotel_id': hotel_id, 'currency': currency, 'checkout_date': checkout_date, 'locale': locale, 'checkin_date': checkin_date, 'adults_number_by_rooms': adults_number_by_rooms, 'units': units, } + if children_ages: + querystring['children_ages'] = children_ages + if children_number_by_rooms: + querystring['children_number_by_rooms'] = children_number_by_rooms + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reviews_about_the_supplier_of_vehicles(locale: str, location_id: int, from_country: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Reviews about the supplier of vehicles by location_id" + location_id: Location id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews" + querystring = {'locale': locale, 'location_id': location_id, 'from_country': from_country, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def location_highlights_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get location highlights of the hotel by hotel_id. Ex.: metro, rail" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/location-highlights" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def description_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get description of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/description" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def review_scores_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get review scores of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/review-scores" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotel_children_policy(locale: str, hotel_id: int, children_age: int=5, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get hotel children policy by hotel_id" + hotel_id: Hotel id + children_age: Children age + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/children-policies" + querystring = {'locale': locale, 'hotel_id': hotel_id, } + if children_age: + querystring['children_age'] = children_age + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_hotels_by_coordinates(units: str, room_number: int, longitude: int, latitude: int, filter_by_currency: str, order_by: str, locale: str, checkout_date: str, adults_number: int, checkin_date: str, children_ages: str='5,0', include_adjacency: bool=None, children_number: int=2, page_number: int=0, categories_filter_ids: str='class::2,class::4,free_cancellation::1', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get available hotels by coordinates latitude and longitude" + room_number: Number of rooms + longitude: Longitude + latitude: Latitude + checkout_date: Checkout date + adults_number: Number of adults + checkin_date: Checkin date + children_ages: The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year + include_adjacency: Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter. + children_number: Number of children + page_number: Page number + categories_filter_ids: Search filter IDs. For possible filters use `@Filters for search` + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates" + querystring = {'units': units, 'room_number': room_number, 'longitude': longitude, 'latitude': latitude, 'filter_by_currency': filter_by_currency, 'order_by': order_by, 'locale': locale, 'checkout_date': checkout_date, 'adults_number': adults_number, 'checkin_date': checkin_date, } + if children_ages: + querystring['children_ages'] = children_ages + if include_adjacency: + querystring['include_adjacency'] = include_adjacency + if children_number: + querystring['children_number'] = children_number + if page_number: + querystring['page_number'] = page_number + if categories_filter_ids: + querystring['categories_filter_ids'] = categories_filter_ids + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def policies_of_the_hotel(locale: str, hotel_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get policies of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/policies" + querystring = {'locale': locale, 'hotel_id': hotel_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def payment_features_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get payment features of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/payment-features" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def reviews_of_the_hotel(sort_type: str, hotel_id: int, locale: str, page_number: int=0, language_filter: str='en-gb,de,fr', customer_type: str='solo_traveller,review_category_group_of_friends', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get reviews of the hotel by hotel_id" + hotel_id: Hotel id + page_number: Page number + language_filter: Filter reviews by language + customer_type: Customer types + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/reviews" + querystring = {'sort_type': sort_type, 'hotel_id': hotel_id, 'locale': locale, } + if page_number: + querystring['page_number'] = page_number + if language_filter: + querystring['language_filter'] = language_filter + if customer_type: + querystring['customer_type'] = customer_type + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_hotels(checkin_date: str, dest_type: str, units: str, checkout_date: str, adults_number: int, order_by: str, dest_id: int, filter_by_currency: str, locale: str, room_number: int, children_number: int=2, children_ages: str='5,0', categories_filter_ids: str='class::2,class::4,free_cancellation::1', page_number: int=0, include_adjacency: bool=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages!
Comparable to: ![Search locations](https://i.imgur.com/PCuK81r.png)" + checkin_date: Checkin date + checkout_date: Checkout date + adults_number: Number of adults + dest_id: Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type` + room_number: Number of rooms + children_number: Number of children + children_ages: The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year + categories_filter_ids: Search filter IDs. For possible filters use `@Filters for search` + page_number: Page number + include_adjacency: Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter. + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/search" + querystring = {'checkin_date': checkin_date, 'dest_type': dest_type, 'units': units, 'checkout_date': checkout_date, 'adults_number': adults_number, 'order_by': order_by, 'dest_id': dest_id, 'filter_by_currency': filter_by_currency, 'locale': locale, 'room_number': room_number, } + if children_number: + querystring['children_number'] = children_number + if children_ages: + querystring['children_ages'] = children_ages + if categories_filter_ids: + querystring['categories_filter_ids'] = categories_filter_ids + if page_number: + querystring['page_number'] = page_number + if include_adjacency: + querystring['include_adjacency'] = include_adjacency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def tips_of_the_hotel(hotel_id: int, sort_type: str, locale: str, language_filter: str='en-gb,de,fr', page_number: int=0, customer_type: str='solo_traveller,review_category_group_of_friends', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get guest tips of the hotel by hotel_id" + hotel_id: Hotel id + language_filter: Filter reviews by language + page_number: Page number + customer_type: Customer types + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/tips" + querystring = {'hotel_id': hotel_id, 'sort_type': sort_type, 'locale': locale, } + if language_filter: + querystring['language_filter'] = language_filter + if page_number: + querystring['page_number'] = page_number + if customer_type: + querystring['customer_type'] = customer_type + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def facilities_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get facilities of the hotel by hotel_id. Ex.: `Restaurant`, `Room service`, `Breakfast in the room`" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/facilities" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_locations(name: str, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search locations or hotels by name. Comparable to: ![Search locations](https://i.imgur.com/wLgLE5X.png)" + name: Name + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/locations" + querystring = {'name': name, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def nearby_places_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get nearby places of the hotel by hotel_id. Ex.: nearby `Airport`, `Shopping Centre`" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/nearby-places" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def photos_of_the_hotel(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all photos of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/photos" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def filters_for_search(locale: str, dest_id: int, checkin_date: str, filter_by_currency: str, checkout_date: str, dest_type: str, units: str, order_by: str, adults_number: int, room_number: int, page_number: int=0, children_number: int=2, include_adjacency: bool=None, categories_filter_ids: str='class::2,class::4,free_cancellation::1', children_ages: str='5,0', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of available filters for hotel search" + dest_id: Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type` + checkin_date: Checkin date + checkout_date: Checkout date + adults_number: Number of adults + room_number: Number of rooms + page_number: Page number + children_number: Number of children + include_adjacency: Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter. + categories_filter_ids: Search filter IDs. For possible filters use `@Filters for search` + children_ages: The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/search-filters" + querystring = {'locale': locale, 'dest_id': dest_id, 'checkin_date': checkin_date, 'filter_by_currency': filter_by_currency, 'checkout_date': checkout_date, 'dest_type': dest_type, 'units': units, 'order_by': order_by, 'adults_number': adults_number, 'room_number': room_number, } + if page_number: + querystring['page_number'] = page_number + if children_number: + querystring['children_number'] = children_number + if include_adjacency: + querystring['include_adjacency'] = include_adjacency + if categories_filter_ids: + querystring['categories_filter_ids'] = categories_filter_ids + if children_ages: + querystring['children_ages'] = children_ages + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_districts(name: str=None, country: str=None, city_id: str=None, district_id: str=None, page: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all the districts where Booking offers hotels." + name: District name + country: Country ID + city_id: City ID + district_id: District ID + page: Page number + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/districts" + querystring = {} + if name: + querystring['name'] = name + if country: + querystring['country'] = country + if city_id: + querystring['city_id'] = city_id + if district_id: + querystring['district_id'] = district_id + if page: + querystring['page'] = page + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotel_data(hotel_id: int, locale: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get hotel data by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v1/hotels/data" + querystring = {'hotel_id': hotel_id, 'locale': locale, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_payment_types(payment_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of payments. Only payments with {bookable} set to 1, can be used in processBooking. For processBooking, we always support Visa, Mastercard and American Express." + payment_id: Payment ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/payment-types" + querystring = {} + if payment_id: + querystring['payment_id'] = payment_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_cities(page: int=0, city_id: str=None, name: str=None, latitude: str=None, longitude: str=None, country: str='it', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of cities where Booking.com offers hotels. location: Latitude and longitude. timezone: Timezone of the city." + page: Page number + city_id: City ID + name: City name + latitude: Latitude location + longitude: Longitude location + country: Country ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/cities" + querystring = {} + if page: + querystring['page'] = page + if city_id: + querystring['city_id'] = city_id + if name: + querystring['name'] = name + if latitude: + querystring['latitude'] = latitude + if longitude: + querystring['longitude'] = longitude + if country: + querystring['country'] = country + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_hotels(page: int=0, city_id: int=None, slug: str=None, region_id: int=None, country: str=None, exact_class: int=None, hotel_id: int=None, zip_code: str=None, hotel_type_id: int=None, district_id: int=None, name: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This call returns the hotel and room data. List of hotels" + page: Page number + city_id: City ID + slug: Website slug. Ex. `ad/plaza` or `it/castello-delle-serre` + region_id: Region ID + country: Country ID + exact_class: Exact class + hotel_id: Hotel ID + zip_code: ZIP Code + hotel_type_id: Hotel type ID + district_id: District ID + name: Hotel name + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/hotels" + querystring = {} + if page: + querystring['page'] = page + if city_id: + querystring['city_id'] = city_id + if slug: + querystring['slug'] = slug + if region_id: + querystring['region_id'] = region_id + if country: + querystring['country'] = country + if exact_class: + querystring['exact_class'] = exact_class + if hotel_id: + querystring['hotel_id'] = hotel_id + if zip_code: + querystring['zip_code'] = zip_code + if hotel_type_id: + querystring['hotel_type_id'] = hotel_type_id + if district_id: + querystring['district_id'] = district_id + if name: + querystring['name'] = name + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_facility_types(facility_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns facility types names and their translations" + facility_id: Facility ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/facility-types" + querystring = {} + if facility_id: + querystring['facility_id'] = facility_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_regions(region_id: str=None, page: int=0, name: str=None, country: str=None, region_type: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all the regions where Booking offers hotels." + region_id: Region IDs + page: Page number + name: Region name + country: Country ID + region_type: Region types + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/regions" + querystring = {} + if region_id: + querystring['region_id'] = region_id + if page: + querystring['page'] = page + if name: + querystring['name'] = name + if country: + querystring['country'] = country + if region_type: + querystring['region_type'] = region_type + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_hotel_types(hotel_type_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns hotel types names and their translations." + hotel_type_id: Hotel type ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/hotel-types" + querystring = {} + if hotel_type_id: + querystring['hotel_type_id'] = hotel_type_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_room_facility_types(room_facility_type_id: str=None, facility_type_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns room facility types names" + room_facility_type_id: Room facility type ID + facility_type_id: Facility type ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/room-facility-types" + querystring = {} + if room_facility_type_id: + querystring['room_facility_type_id'] = room_facility_type_id + if facility_type_id: + querystring['facility_type_id'] = facility_type_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_hotel_facility_types(hotel_facility_type_id: str=None, facility_type_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns hotel facility types names and their translations" + hotel_facility_type_id: Hotel facility type ID + facility_type_id: Facility type ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types" + querystring = {} + if hotel_facility_type_id: + querystring['hotel_facility_type_id'] = hotel_facility_type_id + if facility_type_id: + querystring['facility_type_id'] = facility_type_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_room_types(room_type_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns room types names" + room_type_id: Room type ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/room-types" + querystring = {} + if room_type_id: + querystring['room_type_id'] = room_type_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_hotel_chains(name: str=None, chain_id: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of hotel chains." + name: Hotel chain name + chain_id: Chain ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/chain-types" + querystring = {} + if name: + querystring['name'] = name + if chain_id: + querystring['chain_id'] = chain_id + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def list_of_countries(country: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all the country where booking offers hotels." + country: Country ID + + """ + url = f"https://booking-com.p.rapidapi.com/v1/static/country" + querystring = {} + if country: + querystring['country'] = country + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotels_details(hotel_id: int, currency: str, locale: str, checkout_date: str, checkin_date: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Hotels Details" + hotel_id: Hotel id + checkout_date: Checkout date + checkin_date: Checkin date + + """ + url = f"https://booking-com.p.rapidapi.com/v2/hotels/details" + querystring = {'hotel_id': hotel_id, 'currency': currency, 'locale': locale, 'checkout_date': checkout_date, 'checkin_date': checkin_date, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def hotels_search(order_by: str, adults_number: int, checkin_date: str, filter_by_currency: str, dest_id: int, locale: str, checkout_date: str, units: str, room_number: int, dest_type: str, include_adjacency: bool=None, children_number: int=2, page_number: int=0, children_ages: str='5,0', categories_filter_ids: str='class::2,class::4,free_cancellation::1', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages!
Comparable to: ![Search locations](https://i.imgur.com/PCuK81r.png)" + adults_number: Number of adults + checkin_date: Checkin date + dest_id: Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type` + checkout_date: Checkout date + room_number: Number of rooms + include_adjacency: Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter. + children_number: Number of children + page_number: Page number + children_ages: The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year + categories_filter_ids: Search filter IDs. For possible filters use `@Filters for search` ex: `price::USD-140-190`, or `price::USD-150-min` or `price::USD-150-max` + + """ + url = f"https://booking-com.p.rapidapi.com/v2/hotels/search" + querystring = {'order_by': order_by, 'adults_number': adults_number, 'checkin_date': checkin_date, 'filter_by_currency': filter_by_currency, 'dest_id': dest_id, 'locale': locale, 'checkout_date': checkout_date, 'units': units, 'room_number': room_number, 'dest_type': dest_type, } + if include_adjacency: + querystring['include_adjacency'] = include_adjacency + if children_number: + querystring['children_number'] = children_number + if page_number: + querystring['page_number'] = page_number + if children_ages: + querystring['children_ages'] = children_ages + if categories_filter_ids: + querystring['categories_filter_ids'] = categories_filter_ids + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def meta_properties_description(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get meta properties description" + + """ + url = f"https://booking-com.p.rapidapi.com/v2/hotels/meta-properties" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def filters_for_search(checkin_date: str, locale: str, room_number: int, dest_id: int, checkout_date: str, adults_number: int, filter_by_currency: str, dest_type: str, order_by: str, units: str, include_adjacency: bool=None, categories_filter_ids: str='class::2,class::4,free_cancellation::1', page_number: int=0, children_number: int=2, children_ages: str='5,0', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of available filters for hotel search" + checkin_date: Checkin date + room_number: Number of rooms + dest_id: Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type` + checkout_date: Checkout date + adults_number: Number of adults + include_adjacency: Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter. + categories_filter_ids: Search filter IDs. For possible filters use `@Filters for search` ex: `price::USD-140-190`, or `price::USD-150-min` or `price::USD-150-max` + page_number: Page number + children_number: Number of children + children_ages: The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year + + """ + url = f"https://booking-com.p.rapidapi.com/v2/hotels/search-filters" + querystring = {'checkin_date': checkin_date, 'locale': locale, 'room_number': room_number, 'dest_id': dest_id, 'checkout_date': checkout_date, 'adults_number': adults_number, 'filter_by_currency': filter_by_currency, 'dest_type': dest_type, 'order_by': order_by, 'units': units, } + if include_adjacency: + querystring['include_adjacency'] = include_adjacency + if categories_filter_ids: + querystring['categories_filter_ids'] = categories_filter_ids + if page_number: + querystring['page_number'] = page_number + if children_number: + querystring['children_number'] = children_number + if children_ages: + querystring['children_ages'] = children_ages + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def description_of_the_hotel(locale: str, hotel_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get description of the hotel by hotel_id" + hotel_id: Hotel id + + """ + url = f"https://booking-com.p.rapidapi.com/v2/hotels/description" + querystring = {'locale': locale, 'hotel_id': hotel_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/booking_com_v2.json b/toolbench/toolenv/tools/Travel/booking_com_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..41f117a3359945c7ddbb566d9ef6694485b44da8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/booking_com_v2.json @@ -0,0 +1,2779 @@ +{ + "product_id": "api_1524ad50-92f6-4951-be37-a4770115028e", + "tool_description": "Real-time data, unofficial API Booking.com\nThis API helps to query rooms, price, facilities, policities.. from many hotels around the world to create a travel", + "home_url": "https://rapidapi.com/ntd119/api/booking-com13/", + "name": "Booking.com_v2", + "title": "Booking.com", + "pricing": "FREEMIUM", + "tool_name": "Booking.com_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 2553, + "avgSuccessRate": 100, + "popularityScore": 6.9, + "__typename": "Score" + }, + "host": "booking-com13.p.rapidapi.com", + "api_list": [ + { + "name": "stays/auto-complete", + "url": "https://booking-com13.p.rapidapi.com/stays/auto-complete", + "description": "Auto complete", + "method": "GET", + "required_parameters": [ + { + "name": "location", + "type": "STRING", + "description": "", + "default": "ch" + } + ], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code `item from `languages ` endpoint\n\nDefault: en-us", + "default": "en-us" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/auto-complete\"\nquerystring = {\"location\": \"ch\", \"language_code\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/auto-complete\"\nquerystring = {\"location\": \"ch\", \"language_code\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "b_max_los_data": { + "type": "object", + "properties": { + "defaultLos": { + "type": "integer" + }, + "experiment": { + "type": "string" + }, + "extendedLos": { + "type": "integer" + }, + "fullOn": { + "type": "boolean" + } + } + }, + "b_show_entire_homes_checkbox": { + "type": "boolean" + }, + "cc1": { + "type": "string" + }, + "cjk": { + "type": "boolean" + }, + "dest_id": { + "type": "string" + }, + "dest_type": { + "type": "string" + }, + "label": { + "type": "string" + }, + "label1": { + "type": "string" + }, + "label2": { + "type": "string" + }, + "labels": { + "type": "array", + "items": { + "type": "object", + "properties": { + "dest_id": { + "type": "string" + }, + "dest_type": { + "type": "string" + }, + "hl": { + "type": "integer" + }, + "precomposed": { + "type": "string" + }, + "text": { + "type": "string" + } + } + } + }, + "latitude": { + "type": "number" + }, + "lc": { + "type": "string" + }, + "longitude": { + "type": "number" + }, + "nr_homes": { + "type": "integer" + }, + "nr_hotels": { + "type": "integer" + }, + "nr_hotels_25": { + "type": "integer" + }, + "photo_uri": { + "type": "string" + }, + "roundtrip": { + "type": "string" + }, + "rtl": { + "type": "boolean" + }, + "value": { + "type": "string" + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "stays/properties/list-by-url", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/list-by-url", + "description": "Search by url", + "method": "GET", + "required_parameters": [ + { + "name": "url", + "type": "STRING", + "description": "", + "default": "https://www.booking.com/searchresults.html?ss=Paris%2C+Ile+de+France%2C+France&ssne=Ch%C3%A2teau+de+Vincennes+Paris&ssne_untouched=Ch%C3%A2teau+de+Vincennes+Paris&label=gen173nr-1BCAEoggI46AdIM1gEaPQBiAEBmAEquAEXyAEM2AEB6AEBiAIBqAIDuALdurGkBsACAdICJGU0ZWEyMDRmLWNlYTktNDdiZi05YWM3LTA0OTBkMjlhYTY1N9gCBeACAQ&aid=304142&lang=en-us&sb=1&src_elem=sb&src=searchresults&dest_id=-1456928&dest_type=city&ac_position=0&ac_click_type=b&ac_langcode=en&ac_suggestion_list_length=5&search_selected=true&search_pageview_id=192b1a93ade90127&ac_meta=GhAxOTJiMWE5M2FkZTkwMTI3IAAoATICZW46A3BhckAASgBQAA%3D%3D&checkin=2023-07-01&checkout=2023-07-31&group_adults=2&no_rooms=1&group_children=0" + } + ], + "optional_parameters": [ + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/list-by-url\"\nquerystring = {\"url\": \"https://www.booking.com/searchresults.html?ss=Paris%2C+Ile+de+France%2C+France&ssne=Ch%C3%A2teau+de+Vincennes+Paris&ssne_untouched=Ch%C3%A2teau+de+Vincennes+Paris&label=gen173nr-1BCAEoggI46AdIM1gEaPQBiAEBmAEquAEXyAEM2AEB6AEBiAIBqAIDuALdurGkBsACAdICJGU0ZWEyMDRmLWNlYTktNDdiZi05YWM3LTA0OTBkMjlhYTY1N9gCBeACAQ&aid=304142&lang=en-us&sb=1&src_elem=sb&src=searchresults&dest_id=-1456928&dest_type=city&ac_position=0&ac_click_type=b&ac_langcode=en&ac_suggestion_list_length=5&search_selected=true&search_pageview_id=192b1a93ade90127&ac_meta=GhAxOTJiMWE5M2FkZTkwMTI3IAAoATICZW46A3BhckAASgBQAA%3D%3D&checkin=2023-07-01&checkout=2023-07-31&group_adults=2&no_rooms=1&group_children=0\", \"page\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/list-by-url\"\nquerystring = {\"url\": \"https://www.booking.com/searchresults.html?ss=Paris%2C+Ile+de+France%2C+France&ssne=Ch%C3%A2teau+de+Vincennes+Paris&ssne_untouched=Ch%C3%A2teau+de+Vincennes+Paris&label=gen173nr-1BCAEoggI46AdIM1gEaPQBiAEBmAEquAEXyAEM2AEB6AEBiAIBqAIDuALdurGkBsACAdICJGU0ZWEyMDRmLWNlYTktNDdiZi05YWM3LTA0OTBkMjlhYTY1N9gCBeACAQ&aid=304142&lang=en-us&sb=1&src_elem=sb&src=searchresults&dest_id=-1456928&dest_type=city&ac_position=0&ac_click_type=b&ac_langcode=en&ac_suggestion_list_length=5&search_selected=true&search_pageview_id=192b1a93ade90127&ac_meta=GhAxOTJiMWE5M2FkZTkwMTI3IAAoATICZW46A3BhckAASgBQAA%3D%3D&checkin=2023-07-01&checkout=2023-07-31&group_adults=2&no_rooms=1&group_children=0\", \"page\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "currentPage": { + "type": "integer" + }, + "data": { + "type": "object", + "properties": { + "filters": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "category": { + "type": "string" + }, + "field": { + "type": "string" + }, + "filterLayout": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "collapsedCount": { + "type": "integer" + }, + "isCollapsable": { + "type": "boolean" + } + } + }, + "filterStyle": { + "type": "string" + }, + "name": { + "type": "string" + }, + "options": { + "type": "array" + }, + "sliderOptions": { + "type": "object" + }, + "stepperOptions": { + "type": "array" + }, + "subtitle": { + "type": "string" + }, + "title": { + "type": "string" + } + } + } + }, + "listings": { + "type": "array", + "items": { + "type": "object" + } + } + } + }, + "message": { + "type": "string" + }, + "resultsPerPage": { + "type": "integer" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + }, + { + "name": "stays/properties/detail/photos", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/detail/photos", + "description": "Get detail photos", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code `item from `languages `endpoint\n\nDefault: en-us", + "default": "en-us" + }, + { + "name": "id_detail", + "type": "STRING", + "description": "`idDetail `from `stays/properties/list `endpoint", + "default": "cr/la-buena-vida-cabinas" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/photos\"\nquerystring = {\"language_code\": \"en-us\", \"id_detail\": \"cr/la-buena-vida-cabinas\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/photos\"\nquerystring = {\"language_code\": \"en-us\", \"id_detail\": \"cr/la-buena-vida-cabinas\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "photos": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "photoUri": { + "type": "string" + }, + "ranking": { + "type": "integer" + }, + "thumbnailUri": { + "type": "string" + } + } + } + }, + "prefix": { + "type": "string" + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "stays/properties/list", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/list", + "description": "Get list", + "method": "GET", + "required_parameters": [ + { + "name": "location", + "type": "STRING", + "description": "", + "default": "Benidorm, Valencia Community, Spain" + } + ], + "optional_parameters": [ + { + "name": "rooms", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "filter_by", + "type": "STRING", + "description": "After calling this api, the response will include item filters. \nGet the urlId from filters[filter index] -> options[option index] -> urlId to set the value for this field.\n\n**If there are multiple filters, they are separated by semicolons (;)**\n\nEx: class=1; distance=3220", + "default": "" + }, + { + "name": "min_bathroom", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "min_bedroom", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "children_age", + "type": "NUMBER", + "description": "children_age must be numbers separated by commas\nEx: 1,2,4", + "default": "" + }, + { + "name": "adults", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "children", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "currency_code", + "type": "STRING", + "description": "`code `item from `currencies `endpoint\n\nDefault: USD", + "default": "USD" + }, + { + "name": "sort_by", + "type": "ENUM", + "description": "", + "default": "" + }, + { + "name": "page", + "type": "NUMBER", + "description": "", + "default": "" + }, + { + "name": "language_code", + "type": "STRING", + "description": "`code `item from `languages `endpoint\n\nDefault: en-us", + "default": "en-us" + }, + { + "name": "checkin_date", + "type": "STRING", + "description": "Format: YYYY-MM-DD\nEx: 2023-07-01", + "default": "" + }, + { + "name": "checkout_date", + "type": "STRING", + "description": "Format: YYYY-MM-DD\nEx: 2023-07-31", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/list\"\nquerystring = {\"rooms\": \"\", \"filter_by\": \"\", \"min_bathroom\": \"\", \"min_bedroom\": \"\", \"children_age\": \"\", \"adults\": \"\", \"children\": \"\", \"currency_code\": \"USD\", \"sort_by\": \"\", \"page\": \"\", \"language_code\": \"en-us\", \"checkin_date\": \"\", \"location\": \"Benidorm, Valencia Community, Spain\", \"checkout_date\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/list\"\nquerystring = {\"rooms\": \"\", \"filter_by\": \"\", \"min_bathroom\": \"\", \"min_bedroom\": \"\", \"children_age\": \"\", \"adults\": \"\", \"children\": \"\", \"currency_code\": \"USD\", \"sort_by\": \"\", \"page\": \"\", \"language_code\": \"en-us\", \"checkin_date\": \"\", \"location\": \"Benidorm, Valencia Community, Spain\", \"checkout_date\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "currentPage": { + "type": "integer" + }, + "data": { + "type": "object", + "properties": { + "filters": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "category": { + "type": "string" + }, + "field": { + "type": "string" + }, + "filterLayout": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "collapsedCount": { + "type": "integer" + }, + "isCollapsable": { + "type": "boolean" + } + } + }, + "filterStyle": { + "type": "string" + }, + "name": { + "type": "string" + }, + "options": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "additionalLabel": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "text": { + "type": "string" + }, + "translationTag": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "translation": { + "type": "null" + } + } + } + } + }, + "count": { + "type": "integer" + }, + "id": { + "type": "integer" + }, + "selected": { + "type": "boolean" + }, + "starRating": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "caption": { + "type": "object" + }, + "showAdditionalInfoIcon": { + "type": "boolean" + }, + "symbol": { + "type": "string" + }, + "value": { + "type": "integer" + } + } + }, + "title": { + "type": "string" + }, + "urlId": { + "type": "string" + } + } + } + }, + "sliderOptions": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "currency": { + "type": "string" + }, + "histogram": { + "type": "array" + }, + "max": { + "type": "string" + }, + "maxSelected": { + "type": "string" + }, + "min": { + "type": "string" + }, + "minPriceStep": { + "type": "string" + }, + "minSelected": { + "type": "string" + }, + "minSelectedFormatted": { + "type": "null" + }, + "selectedRange": { + "type": "null" + } + } + }, + "stepperOptions": { + "type": "array" + }, + "subtitle": { + "type": "string" + }, + "title": { + "type": "string" + } + } + } + }, + "listings": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "acceptsWalletCredit": { + "type": "boolean" + }, + "badges": { + "type": "array" + }, + "basicPropertyData": { + "type": "object" + }, + "blocks": { + "type": "array" + }, + "bookerExperienceContentUIComponentProps": { + "type": "array" + }, + "bundleRatesAvailable": { + "type": "null" + }, + "customBadges": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "showBhTravelCreditBadge": { + "type": "boolean" + }, + "showIsWorkFriendly": { + "type": "boolean" + }, + "showOnlineCheckinBadge": { + "type": "null" + }, + "showParkAndFly": { + "type": "boolean" + }, + "showSkiToDoor": { + "type": "boolean" + } + } + }, + "description": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "text": { + "type": "string" + } + } + }, + "displayName": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "text": { + "type": "string" + }, + "translationTag": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "translation": { + "type": "null" + } + } + } + } + }, + "geniusInfo": { + "type": "null" + }, + "idDetail": { + "type": "string" + }, + "inferredLocationScore": { + "type": "integer" + }, + "isInCompanyBudget": { + "type": "null" + }, + "isNewlyOpened": { + "type": "boolean" + }, + "licenseDetails": { + "type": "null" + }, + "location": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "beachDistance": { + "type": "string" + }, + "beachWalkingTime": { + "type": "null" + }, + "displayLocation": { + "type": "string" + }, + "geoDistanceMeters": { + "type": "null" + }, + "mainDistance": { + "type": "string" + }, + "nearbyBeachNames": { + "type": "array" + }, + "publicTransportDistanceDescription": { + "type": "null" + }, + "skiLiftDistance": { + "type": "null" + } + } + }, + "matchingUnitConfigurations": { + "type": "null" + }, + "mealPlanIncluded": { + "type": "null" + }, + "nbWishlists": { + "type": "integer" + }, + "persuasion": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "autoextended": { + "type": "boolean" + }, + "bookedXTimesMessage": { + "type": "null" + }, + "geniusRateAvailable": { + "type": "boolean" + }, + "highlighted": { + "type": "boolean" + }, + "nativeAdId": { + "type": "null" + }, + "nativeAdsCpc": { + "type": "null" + }, + "nativeAdsTracking": { + "type": "null" + }, + "preferred": { + "type": "boolean" + }, + "preferredPlus": { + "type": "boolean" + }, + "showNativeAdLabel": { + "type": "boolean" + } + } + }, + "policies": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "enableJapaneseUsersSpecialCase": { + "type": "null" + }, + "showFreeCancellation": { + "type": "boolean" + }, + "showNoPrepayment": { + "type": "boolean" + } + } + }, + "priceDisplayInfo": { + "type": "null" + }, + "priceDisplayInfoIrene": { + "type": "null" + }, + "propertySustainability": { + "type": "object" + }, + "recommendedDate": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "checkin": { + "type": "string" + }, + "checkout": { + "type": "string" + }, + "lengthOfStay": { + "type": "integer" + } + } + }, + "recommendedDatesLabel": { + "type": "null" + }, + "relocationMode": { + "type": "null" + }, + "ribbon": { + "type": "null" + }, + "seoThemes": { + "type": "array" + }, + "showAdLabel": { + "type": "boolean" + }, + "showGeniusLoginMessage": { + "type": "boolean" + }, + "showPrivateHostMessage": { + "type": "boolean" + }, + "soldOutInfo": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "alternativeDatesMessages": { + "type": "array" + }, + "isSoldOut": { + "type": "boolean" + }, + "messages": { + "type": "array" + } + } + }, + "visibilityBoosterEnabled": { + "type": "null" + } + } + } + } + } + }, + "message": { + "type": "string" + }, + "resultsPerPage": { + "type": "integer" + }, + "status": { + "type": "boolean" + }, + "totalResultCount": { + "type": "integer" + } + } + } + }, + { + "name": "stays/properties/detail", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/detail", + "description": "Get detail", + "method": "GET", + "required_parameters": [ + { + "name": "id_detail", + "type": "STRING", + "description": "`idDetail ` from `stays/properties/list` endpoint", + "default": "cr/playa-grande-inn" + } + ], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code` item from` languages` endpoint\n\nDefault: en-us", + "default": "en-us" + }, + { + "name": "currency_code", + "type": "STRING", + "description": "`code `item from `currencies `endpoint\n\nDefault: USD", + "default": "USD" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail\"\nquerystring = {\"language_code\": \"en-us\", \"currency_code\": \"USD\", \"id_detail\": \"cr/playa-grande-inn\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail\"\nquerystring = {\"language_code\": \"en-us\", \"currency_code\": \"USD\", \"id_detail\": \"cr/playa-grande-inn\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "Ambiance": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + } + } + } + }, + "BaseFacility": { + "type": "array", + "items": { + "type": "object" + } + }, + "BasicPropertyData": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "accommodationTypeId": { + "type": "integer" + }, + "externalReviews": { + "type": "null" + }, + "id": { + "type": "integer" + }, + "location": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "city": { + "type": "string" + }, + "latitude": { + "type": "number" + }, + "longitude": { + "type": "number" + } + } + }, + "name": { + "type": "string" + }, + "pageName": { + "type": "string" + }, + "reviews": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "showScore": { + "type": "null" + } + } + }, + "ufi": { + "type": "integer" + } + } + } + }, + "BookingHomeFlags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "isBH8": { + "type": "boolean" + }, + "isSUP": { + "type": "boolean" + } + } + } + }, + "ChildAndBedPolicy": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "allowChildren": { + "type": "boolean" + }, + "allowCribs": { + "type": "boolean" + }, + "allowExtraBeds": { + "type": "boolean" + }, + "childPolicyRules": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "isFCR": { + "type": "boolean" + }, + "minChildrenAge": { + "type": "integer" + } + } + } + }, + "ChildPolicyRule": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "ageBandId": { + "type": "integer" + }, + "ageFrom": { + "type": "integer" + }, + "ageTo": { + "type": "integer" + }, + "localizedPrice": { + "type": "string" + }, + "price": { + "type": "string" + }, + "priceMode": { + "type": "string" + }, + "priceType": { + "type": "string" + }, + "ruleId": { + "type": "string" + }, + "ruleType": { + "type": "string" + } + } + } + }, + "Cuisine": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + } + } + } + }, + "FacilityGroup": { + "type": "array", + "items": { + "type": "object" + } + }, + "FeaturedReview": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "averageScore": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "customerType": { + "type": "string" + }, + "guestCountryCode": { + "type": "string" + }, + "guestName": { + "type": "string" + }, + "hasHideCountryFlag": { + "type": "boolean" + }, + "id": { + "type": "integer" + }, + "isAnonymous": { + "type": "boolean" + }, + "isTranslatable": { + "type": "boolean" + }, + "language": { + "type": "string" + }, + "negativeText": { + "type": "string" + }, + "positiveText": { + "type": "string" + }, + "purposeType": { + "type": "string" + }, + "reviewUrl": { + "type": "string" + }, + "title": { + "type": "string" + }, + "userAvatarUrl": { + "type": "string" + }, + "userId": { + "type": "integer" + } + } + } + }, + "FreeWifiFacilityHighlight": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "level": { + "type": "string" + }, + "title": { + "type": "string" + } + } + } + }, + "GenericFacilityHighlight": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "level": { + "type": "string" + }, + "title": { + "type": "string" + } + } + } + }, + "HealthSafety": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "healthAndSafetyCategories": { + "type": "array" + } + } + } + }, + "HotelTranslation": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "description": { + "type": "string" + }, + "finePrint": { + "type": "null" + }, + "name": { + "type": "string" + } + } + } + }, + "MealType": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + } + } + } + }, + "OpenForMeal": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + } + } + } + }, + "Property": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "accommodationHighlights({\"criteria\":[{\"criterion\":\"propertyStrip\",\"criterionParams\":{\"limit\":10,\"onlyCommonAmenities\":false}}]})": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "entities": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + } + }, + "facilities({\"excludeGroups\":[37,38,39,40,41],\"includeCommonAmenities\":true})": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "facilityGroups": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "highlights({\"criteria\":\"popularity\",\"includeClosed\":true,\"limit\":10})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "entities": { + "type": "array", + "items": { + "type": "object" + } + } + } + }, + "id": { + "type": "integer" + }, + "profile": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "spokenLanguages": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "questionsAndAnswers": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "partnerAverageResponseTime": { + "type": "integer" + }, + "partnerOptedOutOfQAndA": { + "type": "boolean" + }, + "propertyQuestionAnswerPairs": { + "type": "array", + "items": { + "type": "object" + } + }, + "userAlreadyAskedQuestion": { + "type": "boolean" + } + } + }, + "reviews": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "questions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "name": { + "type": "string" + }, + "reviewsCount": { + "type": "integer" + }, + "score": { + "type": "number" + } + } + } + }, + "reviewsCount": { + "type": "integer" + } + } + }, + "surroundings": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "isOldTown": { + "type": "boolean" + } + } + } + } + } + }, + "PropertyReview": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "featuredReviews": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "questions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "customerType": { + "type": "string" + }, + "question": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "question": { + "type": "string" + }, + "questionId": { + "type": "integer" + } + } + }, + "scoreSegment": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "reviewsCount": { + "type": "integer" + }, + "score": { + "type": "number" + } + } + } + } + } + }, + "totalScore": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "reviewsCount": { + "type": "integer" + }, + "score": { + "type": "number" + } + } + } + } + } + }, + "PropertySustainability": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "certifications": { + "type": "null" + }, + "chainProgrammes": { + "type": "null" + }, + "facilities": { + "type": "null" + }, + "isSustainable": { + "type": "boolean" + }, + "tier": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + }, + "PropertySustainabilityTier": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "type": { + "type": "string" + } + } + } + }, + "PropertyTripTypeLabelsInfo": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "enabledDestinationLabels": { + "type": "array", + "items": { + "type": "string" + } + }, + "enabledPropertyLabels": { + "type": "array", + "items": { + "type": "string" + } + }, + "isSkiSeason": { + "type": "boolean" + } + } + } + }, + "ROOT_QUERY": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "checkin": { + "type": "string" + }, + "checkout": { + "type": "string" + }, + "hotelPageByPageName({\"input\":{\"pageNameDetails\":{\"countryCode\":\"cr\",\"pagename\":\"playa-grande-inn\"},\"searchConfig\":{\"childrenAges\":[],\"nbAdults\":2,\"nbChildren\":0,\"nbRooms\":1},\"selectedFilters\":\"\"}})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "propertyDetails({\"input\":{\"destination\":{\"destId\":0},\"travelPurpose\":\"TP_LEISURE\"}})": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "propertyFullExtended": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "basicPropertyData": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "bookingHomeFlags": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "childAndBedPolicy": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "healthSafety": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "hostProfile": { + "type": "null" + }, + "inferredLocationScore": { + "type": "null" + }, + "isNewlyOpened": { + "type": "boolean" + }, + "isWorkFriendly": { + "type": "boolean" + }, + "languagesSpoken": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "languageCodes": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "legalInformation": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "isNonTrader": { + "type": "boolean" + } + } + }, + "licenseDetails": { + "type": "null" + }, + "propertyReview": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "requestToBookEligibility": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "isEnabled": { + "type": "boolean" + } + } + }, + "searchBoxPrefillData": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "childrenAges": { + "type": "array" + }, + "dates": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "checkin": { + "type": "null" + }, + "checkout": { + "type": "null" + } + } + }, + "location": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "destId": { + "type": "integer" + }, + "destName": { + "type": "string" + }, + "destType": { + "type": "string" + } + } + }, + "nbAdults": { + "type": "integer" + }, + "nbChildren": { + "type": "integer" + }, + "nbRooms": { + "type": "integer" + } + } + }, + "starRating": { + "type": "null" + }, + "sustainability": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "sustainabilityPractices": { + "type": "array" + }, + "translation": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "travelProud": { + "type": "null" + }, + "tripTypeLabels": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "tripTypesHotelPage": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + } + }, + "merchComponents({\"input\":{\"regionsIds\":[\"hp_global_alerts\"]}})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "regions": { + "type": "array" + } + } + }, + "productShell({\"input\":{\"product\":\"ACCOMMODATIONS\"}})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "affiliateSettings": { + "type": "null" + }, + "currencies": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "all": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "encodedSymbol": { + "type": "string" + }, + "name": { + "type": "string" + }, + "symbol": { + "type": "string" + } + } + } + }, + "top": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "encodedSymbol": { + "type": "string" + }, + "name": { + "type": "string" + }, + "symbol": { + "type": "string" + } + } + } + } + } + }, + "guestAccount": { + "type": "null" + }, + "languages": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "all": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "countryFlag": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + }, + "popular": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "countryFlag": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + }, + "selectedLanguage": { + "type": "string" + } + } + }, + "links": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "products": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + }, + "reviewsFrontend({\"input\":{\"hotelId\":1285705,\"ufi\":900051052}})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "ratingScores": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "name": { + "type": "string" + }, + "reviewSummary": { + "type": "null" + }, + "translation": { + "type": "string" + }, + "ufiScoresAverage": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "ufiScoreHigherBound": { + "type": "number" + }, + "ufiScoreLowerBound": { + "type": "number" + } + } + }, + "value": { + "type": "number" + } + } + } + }, + "topicFilters": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + }, + "reviewsFrontend({\"input\":{\"hotelId\":1285705}})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "ratingScores": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "name": { + "type": "string" + }, + "reviewSummary": { + "type": "null" + }, + "translation": { + "type": "string" + }, + "ufiScoresAverage": { + "type": "null" + }, + "value": { + "type": "number" + } + } + } + }, + "topicFilters": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + }, + "roomTable({\"input\":{\"pagenameDetails\":{\"countryCode\":\"cr\",\"pagename\":\"playa-grande-inn\"},\"searchConfig\":{\"childrenAges\":[],\"nbAdults\":2,\"nbChildren\":0,\"nbRooms\":1}}})": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "searchBox({\"input\":{\"location\":{\"destId\":0,\"destType\":\"NO_DEST_TYPE\",\"pageNameDetails\":null},\"travelPurpose\":2}})": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "maxLengthOfStayInDays": { + "type": "integer" + }, + "options": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "entireHomesSearchEnabled": { + "type": "boolean" + }, + "travellingForWorkSearchEnabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "RTBreakfastScore": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "numReviews": { + "type": "integer" + }, + "score": { + "type": "integer" + }, + "scoreClass": { + "type": "string" + } + } + } + }, + "RTHotelFacilityHighlight": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + } + } + } + }, + "RTRoomCard": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "apartmentRooms": { + "type": "array" + }, + "bathroomCount": { + "type": "integer" + }, + "bedConfigurations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "beds": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "bedTypeId": { + "type": "integer" + }, + "count": { + "type": "integer" + } + } + } + }, + "configurationId": { + "type": "integer" + } + } + } + }, + "categorizedFacilities": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "category": { + "type": "string" + }, + "facilities": { + "type": "array", + "items": { + "type": "integer" + } + } + } + } + }, + "description": { + "type": "string" + }, + "facilities": { + "type": "array", + "items": { + "type": "integer" + } + }, + "hasRoomInventory": { + "type": "boolean" + }, + "hasRoomPage": { + "type": "boolean" + }, + "hasSubUnits": { + "type": "boolean" + }, + "highlights": { + "type": "array", + "items": { + "type": "object" + } + }, + "isSmoking": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "nrStaysWithCheapestPriceForRoomLevelInventory": { + "type": "null" + }, + "occupancy": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "maxChildren": { + "type": "integer" + }, + "maxGuests": { + "type": "integer" + }, + "maxPersons": { + "type": "integer" + } + } + }, + "onlyXLeftMessageDetails": { + "type": "null" + }, + "parkingInfo": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "hasParking": { + "type": "boolean" + } + } + }, + "photos": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "roomAvBlocks": { + "type": "array" + }, + "roomId": { + "type": "integer" + }, + "roomIndex": { + "type": "integer" + }, + "roomSize": { + "type": "integer" + }, + "roomTypeId": { + "type": "integer" + }, + "showIsLargestAvailableRoomBadge": { + "type": "boolean" + } + } + } + }, + "RTRoomFacilityHighlight": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + } + } + } + }, + "RTRoomPhoto": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "photoUri": { + "type": "string" + }, + "ranking": { + "type": "integer" + }, + "thumbnailUri": { + "type": "string" + } + } + } + }, + "ReviewTopicTranslation": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + }, + "RoomTableQueryResult": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "accommodationTypeId": { + "type": "integer" + }, + "areaMeasurementUnit": { + "type": "string" + }, + "bedComfortReviewScore": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "reviewsCount": { + "type": "integer" + }, + "score": { + "type": "number" + } + } + }, + "breakfastScore": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + }, + "breakfastType": { + "type": "integer" + }, + "genius": { + "type": "null" + }, + "hasRoomsWithDifferentPrivacyLevels": { + "type": "boolean" + }, + "hotelId": { + "type": "integer" + }, + "isBookingHome": { + "type": "boolean" + }, + "isSoldOut": { + "type": "boolean" + }, + "mealPlans": { + "type": "array" + }, + "propertyName": { + "type": "string" + }, + "roomCards": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + }, + "stars": { + "type": "integer" + } + } + } + }, + "TopicFilter": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "isSelected": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "translation": { + "type": "object", + "properties": { + "__ref": { + "type": "string" + } + } + } + } + } + }, + "TripTypesHotelPage": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "beaches": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "beachId": { + "type": "integer" + }, + "localizedDistanceFormatted": { + "type": "string" + }, + "name": { + "type": "string" + }, + "photoUrl": { + "type": "null" + }, + "reviewScore": { + "type": "integer" + }, + "reviewScoreFormatted": { + "type": "string" + } + } + } + }, + "closestTopBeach": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "beachId": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "reviewScore": { + "type": "integer" + }, + "reviewScoreFormatted": { + "type": "string" + } + } + }, + "nearbySkiLifts": { + "type": "null" + } + } + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "stays/properties/detail/policies", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/detail/policies", + "description": "Get detail policies", + "method": "GET", + "required_parameters": [ + { + "name": "id_detail", + "type": "STRING", + "description": "`idDetail` from `stays/properties/list` endpoint", + "default": "cr/la-buena-vida-cabinas" + } + ], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code` item from `languages` endpoint\n\nDefault: en-us", + "default": "en-us" + }, + { + "name": "currency_code", + "type": "STRING", + "description": "`code` item from `currencies` endpoint\n\nDefault: USD", + "default": "USD" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/policies\"\nquerystring = {\"language_code\": \"en-us\", \"currency_code\": \"USD\", \"id_detail\": \"cr/la-buena-vida-cabinas\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/policies\"\nquerystring = {\"language_code\": \"en-us\", \"currency_code\": \"USD\", \"id_detail\": \"cr/la-buena-vida-cabinas\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "currencyCode": { + "type": "string" + }, + "languageCode": { + "type": "string" + }, + "policies": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "allowChildren": { + "type": "boolean" + }, + "allowCribs": { + "type": "boolean" + }, + "allowExtraBeds": { + "type": "boolean" + }, + "childPolicyRules": { + "type": "array" + }, + "isFCR": { + "type": "boolean" + }, + "minChildrenAge": { + "type": "integer" + } + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "stays/properties/detail/description", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/detail/description", + "description": "Get detail description", + "method": "GET", + "required_parameters": [ + { + "name": "id_detail", + "type": "STRING", + "description": "`idDetail` from `stays/properties/list` endpoint", + "default": "cr/la-buena-vida-cabinas" + } + ], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code` item from `languages` endpoint\n\nDefault: en-us", + "default": "en-us" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/description\"\nquerystring = {\"language_code\": \"en-us\", \"id_detail\": \"cr/la-buena-vida-cabinas\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/description\"\nquerystring = {\"language_code\": \"en-us\", \"id_detail\": \"cr/la-buena-vida-cabinas\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "description": { + "type": "string" + }, + "languageCode": { + "type": "string" + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "stays/properties/detail/facilities", + "url": "https://booking-com13.p.rapidapi.com/stays/properties/detail/facilities", + "description": "Get detail facilities", + "method": "GET", + "required_parameters": [ + { + "name": "id_detail", + "type": "STRING", + "description": "`idDetail` from `stays/properties/list` endpoint", + "default": "cr/la-buena-vida-cabinas" + } + ], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code` item from `languages` endpoint\n\nDefault: en-us", + "default": "en-us" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/facilities\"\nquerystring = {\"id_detail\": \"cr/la-buena-vida-cabinas\", \"language_code\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/stays/properties/detail/facilities\"\nquerystring = {\"id_detail\": \"cr/la-buena-vida-cabinas\", \"language_code\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "facilities": { + "type": "array", + "items": { + "type": "object" + } + }, + "languageCode": { + "type": "string" + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "currencies", + "url": "https://booking-com13.p.rapidapi.com/currencies", + "description": "Get currencies", + "method": "GET", + "required_parameters": [], + "optional_parameters": [ + { + "name": "language_code", + "type": "STRING", + "description": "`code ` item from `languages `endpoint\nDefault: en-us", + "default": "en-us" + } + ], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/currencies\"\nquerystring = {\"language_code\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/currencies\"\nquerystring = {\"language_code\": \"en-us\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "encodedSymbol": { + "type": "string" + }, + "name": { + "type": "string" + }, + "symbol": { + "type": "string" + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + }, + { + "name": "languages", + "url": "https://booking-com13.p.rapidapi.com/languages", + "description": "Get languages", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://booking-com13.p.rapidapi.com/languages\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"booking-com13.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "__typename": { + "type": "string" + }, + "code": { + "type": "string" + }, + "countryFlag": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + }, + "message": { + "type": "string" + }, + "status": { + "type": "boolean" + } + } + } + } + ], + "standardized_name": "booking_com_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/booking_com_v2/api.py b/toolbench/toolenv/tools/Travel/booking_com_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..6b2e9467e63bd2512aae9e09b5d323956ed7fe28 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/booking_com_v2/api.py @@ -0,0 +1,315 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def stays_auto_complete(location: str, language_code: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Auto complete" + language_code: `code `item from `languages ` endpoint + +Default: en-us + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/auto-complete" + querystring = {'location': location, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_list_by_url(url: str, page: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search by url" + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/list-by-url" + querystring = {'url': url, } + if page: + querystring['page'] = page + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_detail_photos(language_code: str='en-us', id_detail: str='cr/la-buena-vida-cabinas', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detail photos" + language_code: `code `item from `languages `endpoint + +Default: en-us + id_detail: `idDetail `from `stays/properties/list `endpoint + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/detail/photos" + querystring = {} + if language_code: + querystring['language_code'] = language_code + if id_detail: + querystring['id_detail'] = id_detail + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_list(location: str, rooms: int=None, filter_by: str=None, min_bathroom: int=None, min_bedroom: int=None, children_age: int=None, adults: int=None, children: int=None, currency_code: str='USD', sort_by: str=None, page: int=None, language_code: str='en-us', checkin_date: str=None, checkout_date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list" + filter_by: After calling this api, the response will include item filters. +Get the urlId from filters[filter index] -> options[option index] -> urlId to set the value for this field. + +**If there are multiple filters, they are separated by semicolons (;)** + +Ex: class=1; distance=3220 + children_age: children_age must be numbers separated by commas +Ex: 1,2,4 + currency_code: `code `item from `currencies `endpoint + +Default: USD + language_code: `code `item from `languages `endpoint + +Default: en-us + checkin_date: Format: YYYY-MM-DD +Ex: 2023-07-01 + checkout_date: Format: YYYY-MM-DD +Ex: 2023-07-31 + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/list" + querystring = {'location': location, } + if rooms: + querystring['rooms'] = rooms + if filter_by: + querystring['filter_by'] = filter_by + if min_bathroom: + querystring['min_bathroom'] = min_bathroom + if min_bedroom: + querystring['min_bedroom'] = min_bedroom + if children_age: + querystring['children_age'] = children_age + if adults: + querystring['adults'] = adults + if children: + querystring['children'] = children + if currency_code: + querystring['currency_code'] = currency_code + if sort_by: + querystring['sort_by'] = sort_by + if page: + querystring['page'] = page + if language_code: + querystring['language_code'] = language_code + if checkin_date: + querystring['checkin_date'] = checkin_date + if checkout_date: + querystring['checkout_date'] = checkout_date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_detail(id_detail: str, language_code: str='en-us', currency_code: str='USD', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detail" + id_detail: `idDetail ` from `stays/properties/list` endpoint + language_code: `code` item from` languages` endpoint + +Default: en-us + currency_code: `code `item from `currencies `endpoint + +Default: USD + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/detail" + querystring = {'id_detail': id_detail, } + if language_code: + querystring['language_code'] = language_code + if currency_code: + querystring['currency_code'] = currency_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_detail_policies(id_detail: str, language_code: str='en-us', currency_code: str='USD', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detail policies" + id_detail: `idDetail` from `stays/properties/list` endpoint + language_code: `code` item from `languages` endpoint + +Default: en-us + currency_code: `code` item from `currencies` endpoint + +Default: USD + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/detail/policies" + querystring = {'id_detail': id_detail, } + if language_code: + querystring['language_code'] = language_code + if currency_code: + querystring['currency_code'] = currency_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_detail_description(id_detail: str, language_code: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detail description" + id_detail: `idDetail` from `stays/properties/list` endpoint + language_code: `code` item from `languages` endpoint + +Default: en-us + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/detail/description" + querystring = {'id_detail': id_detail, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stays_properties_detail_facilities(id_detail: str, language_code: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get detail facilities" + id_detail: `idDetail` from `stays/properties/list` endpoint + language_code: `code` item from `languages` endpoint + +Default: en-us + + """ + url = f"https://booking-com13.p.rapidapi.com/stays/properties/detail/facilities" + querystring = {'id_detail': id_detail, } + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def currencies(language_code: str='en-us', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get currencies" + language_code: `code ` item from `languages `endpoint +Default: en-us + + """ + url = f"https://booking-com13.p.rapidapi.com/currencies" + querystring = {} + if language_code: + querystring['language_code'] = language_code + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def languages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get languages" + + """ + url = f"https://booking-com13.p.rapidapi.com/languages" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "booking-com13.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/bookretreats_wellness_retreats.json b/toolbench/toolenv/tools/Travel/bookretreats_wellness_retreats.json new file mode 100644 index 0000000000000000000000000000000000000000..5512ff58bae2ee27399f41cfbbd2f58d5e7daba5 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/bookretreats_wellness_retreats.json @@ -0,0 +1,30 @@ +{ + "tool_name":"BookRetreats Wellness Retreats", + "tool_description":"BookRetreats.com helps customers discover and book the best yoga retreats, wellness retreats, and yoga teacher trainings on the planet. We provide a way for people to truly unplug from daily life, de-stress, and recharge their batteries.\r\n\r\nBookRetreats makes it's database of retreats available as XML or JSON. Developers can use our API to display Bookretreats listings on their website as well as in confirmation emails for bookings conducted for other services.\r\n\r\nThe BookRetreats API allows authorised partners direct and easy access to listings from over 500 retreats in over 100 locations worldwide. \r\nWith a rich set of functions and versatile integration capabilities, our API system allows you to link directly between your system and our online booking system. \r\nWith real-time availability and fully automated booking processes, our innovative system is constantly updated and is backed by a technical support team. \r\nOur system adds value for customers by allowing for choice, control and flexibility, an easy exchange of information and fresh, up-to-date content.", + "title":"BookRetreats Wellness Retreats", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":1009, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/BookRetreats/api/bookretreats-wellness-retreats/", + "host":"bookretreats-bookretreats-wellness-retreats-v1.p.rapidapi.com", + "api_list":[ + { + "name":"/bookretreats.com", + "url":"https://bookretreats-bookretreats-wellness-retreats-v1.p.rapidapi.com/bookretreats.com", + "description":"https://bookretreats.com/contact", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://bookretreats-bookretreats-wellness-retreats-v1.p.rapidapi.com/bookretreats.com\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"bookretreats-bookretreats-wellness-retreats-v1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/bookretreats_wellness_retreats/api.py b/toolbench/toolenv/tools/Travel/bookretreats_wellness_retreats/api.py new file mode 100644 index 0000000000000000000000000000000000000000..57fe22f6ceb782df76c47882e9e882314ac655d0 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/bookretreats_wellness_retreats/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def bookretreats_com(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "https://bookretreats.com/contact" + + """ + url = f"https://bookretreats-bookretreats-wellness-retreats-v1.p.rapidapi.com/bookretreats.com" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "bookretreats-bookretreats-wellness-retreats-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/borders.json b/toolbench/toolenv/tools/Travel/borders.json new file mode 100644 index 0000000000000000000000000000000000000000..35432b961d5491b407be99860ef2f9a6f88364e9 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/borders.json @@ -0,0 +1,239 @@ +{ + "tool_name":"borders", + "tool_description":"USA Cross Border Waiting Times is an API service that provides real-time updates on wait times at various border crossings between the United States/Canada and United States/Mexico. ", + "title":"borders", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/rafackyou-_JqDrmAKKW-/api/borders/", + "host":"borders.p.rapidapi.com", + "api_list":[ + { + "name":"USA Borders Waiting Times", + "url":"https://borders.p.rapidapi.com/", + "description":"Returns all usa ports with description and wait times.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"country", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"portName", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://borders.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"borders.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "query":{ + "type":"object", + "properties":{ + "country":{ + "type":"string" + }, + "portName":{ + "type":"string" + } + } + }, + "ports":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "port_number":{ + "type":"string" + }, + "border":{ + "type":"string" + }, + "port_name":{ + "type":"string" + }, + "crossing_name":{ + "type":"string" + }, + "hours":{ + "type":"string" + }, + "date":{ + "type":"string" + }, + "port_status":{ + "type":"string" + }, + "commercial_automation_type":{ + "type":"string" + }, + "passenger_automation_type":{ + "type":"string" + }, + "pedestrain_automation_type":{ + "type":"string" + }, + "commercial_vehicle_lanes":{ + "type":"object", + "properties":{ + "maximum_lanes":{ + "type":"string" + }, + "standard_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + }, + "FAST_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + } + } + }, + "passenger_vehicle_lanes":{ + "type":"object", + "properties":{ + "maximum_lanes":{ + "type":"string" + }, + "standard_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + }, + "NEXUS_SENTRI_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + }, + "ready_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + } + } + }, + "pedestrian_lanes":{ + "type":"object", + "properties":{ + "maximum_lanes":{ + "type":"string" + }, + "standard_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + }, + "ready_lanes":{ + "type":"object", + "properties":{ + "operational_status":{ + "type":"string" + }, + "update_time":{ + "type":"string" + }, + "delay_minutes":{ + "type":"string" + }, + "lanes_open":{ + "type":"string" + } + } + } + } + } + } + } + }, + "total":{ + "type":"integer" + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/borders/api.py b/toolbench/toolenv/tools/Travel/borders/api.py new file mode 100644 index 0000000000000000000000000000000000000000..8a9b5800be1e7936c37c42fa0e8a4d14e0eae394 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/borders/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def usa_borders_waiting_times(country: str=None, portname: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all usa ports with description and wait times." + + """ + url = f"https://borders.p.rapidapi.com/" + querystring = {} + if country: + querystring['country'] = country + if portname: + querystring['portName'] = portname + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "borders.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/british_airways_flight_info.json b/toolbench/toolenv/tools/Travel/british_airways_flight_info.json new file mode 100644 index 0000000000000000000000000000000000000000..77207114e8d92eea44752e08b5ee875f44a21673 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/british_airways_flight_info.json @@ -0,0 +1,236 @@ +{ + "product_id": "53aa610fe4b0b60946a30cd3", + "tool_description": "British Airways is the flag carrier airline of the United Kingdom and its largest airline based on fleet size, international flights and international destinations", + "home_url": "https://rapidapi.com/community/api/british-airways-flight-info/", + "name": "British Airways Flight Info", + "title": "British Airways Flight Info", + "pricing": "FREE", + "tool_name": "British Airways Flight Info", + "score": { + "avgServiceLevel": 100, + "avgLatency": 843, + "avgSuccessRate": 0, + "popularityScore": 0.2, + "__typename": "Score" + }, + "host": "community-british-airways-flight-info.p.rapidapi.com", + "api_list": [ + { + "name": "Search departures by flight", + "url": "https://community-british-airways-flight-info.p.rapidapi.com/flights;flightNumber=011;scheduledDepartureDate=2014-06-01.json", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "flightnumber-scheduleddeparturedate-scheduleddeparturedate", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "flightNumber", + "type": "STRING", + "description": "", + "default": "011" + }, + { + "name": "scheduledDepartureDate", + "type": "STRING", + "description": "", + "default": "2014-06-01" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;flightNumber=011;scheduledDepartureDate=2014-06-01.json\"\nquerystring = {\"flightnumber-scheduleddeparturedate-scheduleddeparturedate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;flightNumber={flightnumber};scheduledDepartureDate={scheduleddeparturedate}.json\"\nquerystring = {\"flightnumber-scheduleddeparturedate-scheduleddeparturedate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Search today's arrivals by time", + "url": "https://community-british-airways-flight-info.p.rapidapi.com/flights;arrivalLocation=LHR;startTime=06:00;endTime=11:00.json", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "arrivallocation-starttime-starttime-endtime-endtime", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "arrivalLocation", + "type": "STRING", + "description": "", + "default": "LHR" + }, + { + "name": "startTime", + "type": "STRING", + "description": "", + "default": "06:00" + }, + { + "name": "endTime", + "type": "STRING", + "description": "", + "default": "11:00" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;arrivalLocation=LHR;startTime=06:00;endTime=11:00.json\"\nquerystring = {\"arrivallocation-starttime-starttime-endtime-endtime\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;arrivalLocation={arrivallocation};startTime={starttime};endTime={endtime}.json\"\nquerystring = {\"arrivallocation-starttime-starttime-endtime-endtime\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Search arrivals by flight", + "url": "https://community-british-airways-flight-info.p.rapidapi.com/flights;flightNumber=011;scheduledArrivalDate=2014-06-01.json", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "flightnumber-scheduledarrivaldate-scheduledarrivaldate", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "flightNumber", + "type": "STRING", + "description": "", + "default": "011" + }, + { + "name": "scheduledArrivalDate", + "type": "STRING", + "description": "", + "default": "2014-06-01" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;flightNumber=011;scheduledArrivalDate=2014-06-01.json\"\nquerystring = {\"flightnumber-scheduledarrivaldate-scheduledarrivaldate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;flightNumber={flightnumber};scheduledArrivalDate={scheduledarrivaldate}.json\"\nquerystring = {\"flightnumber-scheduledarrivaldate-scheduledarrivaldate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Search departures by route", + "url": "https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation=LHR;arrivalLocation=ZRH;scheduledDepartureDate=2014-06-01.json", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "departurelocation-arrivallocation-arrivallocation-scheduleddeparturedate-scheduleddeparturedate", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "departureLocation", + "type": "STRING", + "description": "", + "default": "LHR" + }, + { + "name": "arrivalLocation", + "type": "STRING", + "description": "", + "default": "ZRH" + }, + { + "name": "scheduledDepartureDate", + "type": "STRING", + "description": "", + "default": "2014-06-01" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation=LHR;arrivalLocation=ZRH;scheduledDepartureDate=2014-06-01.json\"\nquerystring = {\"departurelocation-arrivallocation-arrivallocation-scheduleddeparturedate-scheduleddeparturedate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation={departurelocation};arrivalLocation={arrivallocation};scheduledDepartureDate={scheduleddeparturedate}.json\"\nquerystring = {\"departurelocation-arrivallocation-arrivallocation-scheduleddeparturedate-scheduleddeparturedate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Search arrivals by route", + "url": "https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation=LHR;arrivalLocation=ZRH;scheduledArrivalDate=2014-06-01.json", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "departurelocation-arrivallocation-arrivallocation-scheduledarrivaldate-scheduledarrivaldate", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "departureLocation", + "type": "STRING", + "description": "", + "default": "LHR" + }, + { + "name": "arrivalLocation", + "type": "STRING", + "description": "", + "default": "ZRH" + }, + { + "name": "scheduledArrivalDate", + "type": "STRING", + "description": "", + "default": "2014-06-01" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation=LHR;arrivalLocation=ZRH;scheduledArrivalDate=2014-06-01.json\"\nquerystring = {\"departurelocation-arrivallocation-arrivallocation-scheduledarrivaldate-scheduledarrivaldate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation={departurelocation};arrivalLocation={arrivallocation};scheduledArrivalDate={scheduledarrivaldate}.json\"\nquerystring = {\"departurelocation-arrivallocation-arrivallocation-scheduledarrivaldate-scheduledarrivaldate\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Search today's departures by time", + "url": "https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation=LHR;startTime=06:00;endTime=11:00.json", + "description": "", + "method": "GET", + "required_parameters": [ + { + "name": "departurelocation-starttime-starttime-endtime-endtime", + "type": "STRING", + "description": "", + "default": "" + }, + { + "name": "departureLocation", + "type": "STRING", + "description": "", + "default": "LHR" + }, + { + "name": "startTime", + "type": "STRING", + "description": "", + "default": "06:00" + }, + { + "name": "endTime", + "type": "STRING", + "description": "", + "default": "11:00" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation=LHR;startTime=06:00;endTime=11:00.json\"\nquerystring = {\"departurelocation-starttime-starttime-endtime-endtime\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://community-british-airways-flight-info.p.rapidapi.com/flights;departureLocation={departurelocation};startTime={starttime};endTime={endtime}.json\"\nquerystring = {\"departurelocation-starttime-starttime-endtime-endtime\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"community-british-airways-flight-info.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ], + "standardized_name": "british_airways_flight_info" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/british_airways_flight_info/api.py b/toolbench/toolenv/tools/Travel/british_airways_flight_info/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d6816c7d569d1ff7958c40615bd8158061f9ca55 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/british_airways_flight_info/api.py @@ -0,0 +1,134 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_departures_by_flight(flightnumber_scheduleddeparturedate_scheduleddeparturedate: str, flightnumber: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://community-british-airways-flight-info.p.rapidapi.com/flights;flightnumber={flightnumber};scheduleddeparturedate={scheduleddeparturedate}.json" + querystring = {'flightnumber-scheduleddeparturedate-scheduleddeparturedate': flightnumber_scheduleddeparturedate_scheduleddeparturedate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-british-airways-flight-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_today_s_arrivals_by_time(arrivallocation_starttime_starttime_endtime_endtime: str, arrivallocation: str, starttime: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://community-british-airways-flight-info.p.rapidapi.com/flights;arrivallocation={arrivallocation};starttime={starttime};endtime={endtime}.json" + querystring = {'arrivallocation-starttime-starttime-endtime-endtime': arrivallocation_starttime_starttime_endtime_endtime, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-british-airways-flight-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_arrivals_by_flight(flightnumber_scheduledarrivaldate_scheduledarrivaldate: str, flightnumber: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://community-british-airways-flight-info.p.rapidapi.com/flights;flightnumber={flightnumber};scheduledarrivaldate={scheduledarrivaldate}.json" + querystring = {'flightnumber-scheduledarrivaldate-scheduledarrivaldate': flightnumber_scheduledarrivaldate_scheduledarrivaldate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-british-airways-flight-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_departures_by_route(departurelocation_arrivallocation_arrivallocation_scheduleddeparturedate_scheduleddeparturedate: str, departurelocation: str, arrivallocation: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://community-british-airways-flight-info.p.rapidapi.com/flights;departurelocation={departurelocation};arrivallocation={arrivallocation};scheduleddeparturedate={scheduleddeparturedate}.json" + querystring = {'departurelocation-arrivallocation-arrivallocation-scheduleddeparturedate-scheduleddeparturedate': departurelocation_arrivallocation_arrivallocation_scheduleddeparturedate_scheduleddeparturedate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-british-airways-flight-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_arrivals_by_route(departurelocation_arrivallocation_arrivallocation_scheduledarrivaldate_scheduledarrivaldate: str, departurelocation: str, arrivallocation: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://community-british-airways-flight-info.p.rapidapi.com/flights;departurelocation={departurelocation};arrivallocation={arrivallocation};scheduledarrivaldate={scheduledarrivaldate}.json" + querystring = {'departurelocation-arrivallocation-arrivallocation-scheduledarrivaldate-scheduledarrivaldate': departurelocation_arrivallocation_arrivallocation_scheduledarrivaldate_scheduledarrivaldate, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-british-airways-flight-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_today_s_departures_by_time(departurelocation_starttime_starttime_endtime_endtime: str, departurelocation: str, starttime: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "" + + """ + url = f"https://community-british-airways-flight-info.p.rapidapi.com/flights;departurelocation={departurelocation};starttime={starttime};endtime={endtime}.json" + querystring = {'departurelocation-starttime-starttime-endtime-endtime': departurelocation_starttime_starttime_endtime_endtime, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "community-british-airways-flight-info.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/chronovoyages.json b/toolbench/toolenv/tools/Travel/chronovoyages.json new file mode 100644 index 0000000000000000000000000000000000000000..3ca293a523e3e2d95b5e8adc336e55de3a210143 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/chronovoyages.json @@ -0,0 +1,24 @@ +{ + "tool_name":"ChronoVoyages", + "tool_description":"ChronoVoyages", + "title":"ChronoVoyages", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/exedos/api/chronovoyages/", + "host":"chronovoyages.p.rapidapi.com", + "api_list":[ + { + "name":"Chronovoyages", + "url":"https://chronovoyages.p.rapidapi.comhttp://www.exedos.net/chronovoyagescfm/kayak.cfm", + "description":"Chronovoyages", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://chronovoyages.p.rapidapi.comhttp://www.exedos.net/chronovoyagescfm/kayak.cfm\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"chronovoyages.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/chronovoyages/api.py b/toolbench/toolenv/tools/Travel/chronovoyages/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f3a94ffa64ef9eb99fabf915305c83d659d2ae88 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/chronovoyages/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def chronovoyages(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Chronovoyages" + + """ + url = f"https://chronovoyages.p.rapidapi.comhttp://www.exedos.net/chronovoyagescfm/kayak.cfm" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "chronovoyages.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/cities_cost_of_living.json b/toolbench/toolenv/tools/Travel/cities_cost_of_living.json new file mode 100644 index 0000000000000000000000000000000000000000..fdf070b138d594644679b559cd5f89d7ae1f87c8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/cities_cost_of_living.json @@ -0,0 +1,4838 @@ +{ + "tool_name": "Cities Cost of Living", + "tool_description": "Get detailed information about the living expenses of 650+ cities around the world.", + "title": "Cities Cost of Living", + "pricing": "FREEMIUM", + "score": { + "avgServiceLevel": 97, + "avgLatency": 1976, + "avgSuccessRate": 94, + "popularityScore": 9.3, + "__typename": "Score" + }, + "home_url": "https://rapidapi.com/ditno-ditno-default/api/cities-cost-of-living1/", + "host": "cities-cost-of-living1.p.rapidapi.com", + "api_list": [ + { + "name": "Get Cities Details by Name", + "url": "https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_name", + "description": "Get all the details about the cities requested, in the currencies requested.", + "method": "POST", + "required_parameters": [ + { + "name": "currencies", + "type": "OBJECT", + "description": "JSON object in the format:\n```[\"currency1\", \"currencyN\"]```", + "default": "[\"USD\",\"Euro (example of wrong currency code)\",\"CHF\"]" + }, + { + "name": "cities", + "type": "OBJECT", + "description": "JSON object in the format:\n```[{\"name\":\"city1_name\",\"country\":\"country1_name\"}, {\"name\":\"cityN_name\",\"country\":\"countryN_name\"}]```\n", + "default": "[{\"name\":\"Lisbon\",\"country\":\"Portugal\"},{\"name\":\"Paris\",\"country\":\"Spain (example of wrong country)\"},{\"name\":\"Hamilton\",\"country\":\"Bermuda\"},{\"name\":\"Saint Francisc (example of wrong city name)\",\"country\":\"United States\"}]" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_name\"\nquerystring = {\"currencies\": currencies, \"cities\": cities}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "data": [ + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "672.67" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "7.25-14.5", + "Value": "9.97" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "30.21-66.46", + "Value": "42.29" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "7.25-8.46", + "Value": "7.85" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "1.21-4.08", + "Value": "2.42" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "2.42-6.04", + "Value": "3.63" + }, + { + "Item": "Cappuccino (regular)", + "Range": "0.85-3.63", + "Value": "2.01" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "1.21-2.42", + "Value": "1.68" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "1.21-1.81", + "Value": "1.33" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "0.58-1.21", + "Value": "0.81" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "0.79-2.05", + "Value": "1.32" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "0.89-1.81", + "Value": "1.12" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "1.45-3.38", + "Value": "2.32" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "5.55-19.32", + "Value": "8.52" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "3.02-7.25", + "Value": "5.86" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "6.04-18.13", + "Value": "10.71" + }, + { + "Item": "Apples (1kg)", + "Range": "1.09-2.42", + "Value": "1.8" + }, + { + "Item": "Banana (1kg)", + "Range": "1.15-2.42", + "Value": "1.32" + }, + { + "Item": "Oranges (1kg)", + "Range": "0.97-2.42", + "Value": "1.61" + }, + { + "Item": "Tomato (1kg)", + "Range": "1.21-2.42", + "Value": "1.75" + }, + { + "Item": "Potato (1kg)", + "Range": "0.54-1.81", + "Value": "1.09" + }, + { + "Item": "Onion (1kg)", + "Range": "0.95-1.81", + "Value": "1.23" + }, + { + "Item": "Lettuce (1 head)", + "Range": "0.6-1.57", + "Value": "1.16" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.24-1.21", + "Value": "0.65" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "3.63-8.46", + "Value": "4.83" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "0.85-2.2", + "Value": "1.31" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.21-3.63", + "Value": "2.76" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "5.8-6.95", + "Value": "6.16" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "1.81-2.42", + "Value": "2.18" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "36.25-48.34", + "Value": "48.34" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "3.02-4.71", + "Value": "3.93" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "0.57-1.2", + "Value": "0.57" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "17.88-24.17", + "Value": "17.88" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.68-1.98", + "Value": "1.84" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "30089.16-36252.0", + "Value": "31550.12" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "30210.0-36252.0", + "Value": "32579.5" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "96.67-224.1", + "Value": "134.23" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.06-0.36", + "Value": "0.23" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "33.84-60.42", + "Value": "40.05" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "26.58-60.42", + "Value": "39.26" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "9.67-24.17", + "Value": "16.27" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "8.16-9.67", + "Value": "8.46" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "362.52-664.62", + "Value": "503.0" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "6525.36-15709.2", + "Value": "10082.26" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "36.25-145.01", + "Value": "91.94" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "24.16-48.34", + "Value": "33.46" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "54.38-108.76", + "Value": "83.11" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "54.38-145.01", + "Value": "92.97" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "845.88-1450.08", + "Value": "999.35" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "604.2-966.72", + "Value": "771.45" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "1450.08-2416.8", + "Value": "1831.16" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "966.72-1812.6", + "Value": "1242.48" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "483.36-805.6", + "Value": "610.39" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "322.24-604.2", + "Value": "414.15" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "3625.2-7854.6", + "Value": "5263.71" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "1933.44-4833.6", + "Value": "3178.7" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "1249.94" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.45-3.63", + "Value": "2.56" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "602.81" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "6.5-12.99", + "Value": "8.93" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "27.07-59.56", + "Value": "37.9" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "6.5-7.58", + "Value": "7.04" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "1.08-3.66", + "Value": "2.17" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "2.17-5.41", + "Value": "3.25" + }, + { + "Item": "Cappuccino (regular)", + "Range": "0.76-3.25", + "Value": "1.8" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "1.08-2.17", + "Value": "1.51" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "1.08-1.62", + "Value": "1.19" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "0.52-1.08", + "Value": "0.73" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "0.7-1.84", + "Value": "1.18" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "0.8-1.62", + "Value": "1.01" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "1.3-3.03", + "Value": "2.08" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "4.97-17.32", + "Value": "7.63" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "2.71-6.5", + "Value": "5.25" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "5.41-16.24", + "Value": "9.59" + }, + { + "Item": "Apples (1kg)", + "Range": "0.97-2.17", + "Value": "1.61" + }, + { + "Item": "Banana (1kg)", + "Range": "1.03-2.17", + "Value": "1.18" + }, + { + "Item": "Oranges (1kg)", + "Range": "0.87-2.17", + "Value": "1.44" + }, + { + "Item": "Tomato (1kg)", + "Range": "1.08-2.17", + "Value": "1.57" + }, + { + "Item": "Potato (1kg)", + "Range": "0.49-1.62", + "Value": "0.97" + }, + { + "Item": "Onion (1kg)", + "Range": "0.86-1.62", + "Value": "1.1" + }, + { + "Item": "Lettuce (1 head)", + "Range": "0.54-1.41", + "Value": "1.04" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.22-1.08", + "Value": "0.58" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "3.25-7.58", + "Value": "4.33" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "0.76-1.97", + "Value": "1.17" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.08-3.25", + "Value": "2.47" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "5.2-6.23", + "Value": "5.52" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "1.62-2.17", + "Value": "1.95" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "32.49-43.32", + "Value": "43.32" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "2.71-4.22", + "Value": "3.52" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "0.51-1.07", + "Value": "0.51" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "16.03-21.66", + "Value": "16.03" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.51-1.78", + "Value": "1.65" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "26964.21-32487.0", + "Value": "28273.44" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "27072.5-32487.0", + "Value": "29195.92" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "86.63-200.82", + "Value": "120.29" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.05-0.32", + "Value": "0.21" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "30.32-54.14", + "Value": "35.89" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "23.82-54.14", + "Value": "35.18" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "8.66-21.66", + "Value": "14.58" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "7.31-8.66", + "Value": "7.58" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "324.87-595.6", + "Value": "450.76" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "5847.66-14077.7", + "Value": "9035.15" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "32.49-129.95", + "Value": "82.39" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "21.65-43.32", + "Value": "29.99" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "48.73-97.46", + "Value": "74.48" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "48.73-129.95", + "Value": "83.32" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "758.03-1299.48", + "Value": "895.56" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "541.45-866.32", + "Value": "691.33" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "1299.48-2165.8", + "Value": "1640.98" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "866.32-1624.35", + "Value": "1113.44" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "433.16-721.94", + "Value": "546.99" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "288.78-541.45", + "Value": "371.14" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "3248.7-7038.85", + "Value": "4717.04" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "1732.64-4331.6", + "Value": "2848.57" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "1120.13" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.3-3.25", + "Value": "2.3" + } + ] + } + ], + "cost_of_living_index": "54.50", + "cost_of_living_plus_rent_index": "44.01", + "country": "Portugal", + "groceries_index": "41.88", + "last_updated_timestamp": "2021-02-18 21:53:08.542704+00:00", + "local_purchasing_power_index": "46.89", + "name": "Lisbon", + "rent_index": "32.18", + "restaurant_price_index": "47.95", + "us_state": "N/A" + }, + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1780.64" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "20.06-50.16", + "Value": "40.13" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "120.38-200.63", + "Value": "140.44" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "12.04-17.05", + "Value": "15.04" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "7.02-12.04", + "Value": "9.03" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "9.03-14.04", + "Value": "10.03" + }, + { + "Item": "Cappuccino (regular)", + "Range": "3.01-6.02", + "Value": "5.28" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "2.01-3.52", + "Value": "2.83" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.01-4.01", + "Value": "2.42" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "2.86-6.62", + "Value": "4.4" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "5.53-7.75", + "Value": "6.91" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "4.31-10.24", + "Value": "8.42" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "1.96-6.02", + "Value": "5.08" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "8.71-23.07", + "Value": "13.72" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "13.27-20.06", + "Value": "17.4" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "8.02-33.17", + "Value": "19.41" + }, + { + "Item": "Apples (1kg)", + "Range": "6.02-17.69", + "Value": "11.31" + }, + { + "Item": "Banana (1kg)", + "Range": "2.63-10.03", + "Value": "6.53" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.19-15.48", + "Value": "6.53" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.15-12.04", + "Value": "7.2" + }, + { + "Item": "Potato (1kg)", + "Range": "4.01-12.58", + "Value": "7.69" + }, + { + "Item": "Onion (1kg)", + "Range": "2.15-8.85", + "Value": "5.21" + }, + { + "Item": "Lettuce (1 head)", + "Range": "3.61-7.02", + "Value": "5.63" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "2.01-4.01", + "Value": "3.0" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "19.06-25.07", + "Value": "24.07" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "2.86-8.02", + "Value": "5.81" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "3.01-9.03", + "Value": "6.27" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "15.04-20.06", + "Value": "17.3" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.52-5.01", + "Value": "4.52" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "60.19-70.22", + "Value": "69.22" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "4.01-7.93", + "Value": "6.39" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "1.72-4.27", + "Value": "3.01" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "50.16-80.25", + "Value": "65.21" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "2.13-2.21", + "Value": "2.18" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "35110.74-40126.57", + "Value": "35110.74" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "38120.23-40126.57", + "Value": "38120.23" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "140.44-351.11", + "Value": "209.0" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.3-0.69", + "Value": "0.5" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "116.32-180.57", + "Value": "128.4" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "150.47-230.73", + "Value": "162.74" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "12.04-35.12", + "Value": "22.4" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "10.03-16.05", + "Value": "12.04" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "1003.17-1330.19", + "Value": "1157.99" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "20063.28-23072.78", + "Value": "21642.93" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "75.23-100.32", + "Value": "89.36" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "40.13-100.32", + "Value": "66.87" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "80.25-150.47", + "Value": "122.53" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "90.28-175.56", + "Value": "130.41" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "2006.33-3210.13", + "Value": "2696.0" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "1504.75-2206.96", + "Value": "1850.28" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "4514.24-7022.15", + "Value": "5689.38" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "3511.08-5015.83", + "Value": "4090.68" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "1504.75-2340.72", + "Value": "1896.46" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "1170.36-1671.94", + "Value": "1363.56" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "10031.64-10797.97", + "Value": "10414.8" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "5398.99-6018.98", + "Value": "5708.99" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "6921.84" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "6.65-9.06", + "Value": "8.13" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1595.71" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "17.98-44.95", + "Value": "35.96" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "107.88-179.79", + "Value": "125.85" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "10.79-15.28", + "Value": "13.48" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "6.29-10.79", + "Value": "8.09" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "8.09-12.58", + "Value": "8.99" + }, + { + "Item": "Cappuccino (regular)", + "Range": "2.7-5.39", + "Value": "4.73" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "1.8-3.15", + "Value": "2.53" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "1.8-3.6", + "Value": "2.17" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "2.57-5.93", + "Value": "3.94" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "4.96-6.94", + "Value": "6.19" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "3.87-9.17", + "Value": "7.55" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "1.75-5.39", + "Value": "4.55" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "7.81-20.67", + "Value": "12.29" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "11.89-17.98", + "Value": "15.59" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "7.19-29.73", + "Value": "17.39" + }, + { + "Item": "Apples (1kg)", + "Range": "5.39-15.85", + "Value": "10.14" + }, + { + "Item": "Banana (1kg)", + "Range": "2.36-8.99", + "Value": "5.85" + }, + { + "Item": "Oranges (1kg)", + "Range": "1.96-13.87", + "Value": "5.85" + }, + { + "Item": "Tomato (1kg)", + "Range": "1.93-10.79", + "Value": "6.45" + }, + { + "Item": "Potato (1kg)", + "Range": "3.6-11.27", + "Value": "6.89" + }, + { + "Item": "Onion (1kg)", + "Range": "1.93-7.93", + "Value": "4.67" + }, + { + "Item": "Lettuce (1 head)", + "Range": "3.24-6.29", + "Value": "5.05" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "1.8-3.6", + "Value": "2.69" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "17.08-22.47", + "Value": "21.57" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "2.57-7.19", + "Value": "5.21" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "2.7-8.09", + "Value": "5.62" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "13.48-17.98", + "Value": "15.51" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.15-4.49", + "Value": "4.05" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "53.94-62.93", + "Value": "62.03" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "3.6-7.1", + "Value": "5.73" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "1.54-3.82", + "Value": "2.7" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "44.95-71.92", + "Value": "58.43" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.91-1.98", + "Value": "1.95" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "31464.27-35959.17", + "Value": "31464.27" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "34161.21-35959.17", + "Value": "34161.21" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "125.85-314.65", + "Value": "187.3" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.27-0.62", + "Value": "0.44" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "104.24-161.82", + "Value": "115.07" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "134.84-206.77", + "Value": "145.83" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "10.79-31.47", + "Value": "20.08" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "8.99-14.38", + "Value": "10.79" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "898.98-1192.05", + "Value": "1037.72" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "17979.58-20676.52", + "Value": "19395.17" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "67.42-89.9", + "Value": "80.08" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "35.96-89.9", + "Value": "59.93" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "71.92-134.84", + "Value": "109.81" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "80.9-157.32", + "Value": "116.87" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "1797.96-2876.73", + "Value": "2416.0" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "1348.47-1977.75", + "Value": "1658.11" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "4045.41-6292.85", + "Value": "5098.5" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "3146.43-4494.9", + "Value": "3665.83" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "1348.47-2097.62", + "Value": "1699.5" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "1048.81-1498.3", + "Value": "1221.94" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "8989.79-9676.53", + "Value": "9333.16" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "4838.27-5393.87", + "Value": "5116.07" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "6202.96" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "5.96-8.12", + "Value": "7.29" + } + ] + } + ], + "cost_of_living_index": "146.94", + "cost_of_living_plus_rent_index": "122.54", + "country": "Bermuda", + "groceries_index": "144.42", + "last_updated_timestamp": "2021-02-18 21:50:26.676616+00:00", + "local_purchasing_power_index": "93.11", + "name": "Hamilton", + "rent_index": "94.98", + "restaurant_price_index": "158.02", + "us_state": "N/A" + } + ] + }, + "headers": { + "content-type": "application/json", + "date": "Sun, 21 Feb 2021 16:37:44 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 a9eda0e42d94d0bd56a91282e7de5301.cloudfront.net (CloudFront)", + "x-amz-apigw-id": "bGrdxFY_rPEFsrQ=", + "x-amz-cf-id": "Kr1U34EQ9v1G2cFrhOErZ1Cc34OcNrCkYm2Z6UbqWBgRGxjPodPG6w==", + "x-amz-cf-pop": "IAD50-C2", + "x-amzn-remapped-content-length": "20625", + "x-amzn-requestid": "e9161e44-48af-43fc-9eb7-de27f19c2b96", + "x-amzn-trace-id": "Root=1-60328c58-0f0cc6ca22d0f2ba53fa297e;Sampled=0", + "x-cache": "Miss from cloudfront", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.7", + "content-length": "20625", + "connection": "Close" + }, + "schema": { + "properties": { + "data": { + "items": { + "properties": { + "cost_of_living_details": { + "items": { + "properties": { + "currency": { + "type": "string" + }, + "details": { + "items": { + "properties": { + "Item": { + "type": "string" + }, + "Range": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "cost_of_living_index": { + "type": "string" + }, + "cost_of_living_plus_rent_index": { + "type": "string" + }, + "country": { + "type": "string" + }, + "groceries_index": { + "type": "string" + }, + "last_updated_timestamp": { + "type": "string" + }, + "local_purchasing_power_index": { + "type": "string" + }, + "name": { + "type": "string" + }, + "rent_index": { + "type": "string" + }, + "restaurant_price_index": { + "type": "string" + }, + "us_state": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + { + "name": "Get Currencies List", + "url": "https://cities-cost-of-living1.p.rapidapi.com/get_currencies_list", + "description": "Get a list of all the Currencies available", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_currencies_list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "currencies": [ + "EUR", + "USD", + "JPY", + "GBP", + "AUD" + ] + }, + "headers": { + "content-type": "application/json", + "date": "Sat, 13 Feb 2021 16:32:04 GMT", + "server": "RapidAPI-1.2.7", + "via": "1.1 e04ec889239bf67ef206ad086add2d7a.cloudfront.net (CloudFront)", + "x-amz-apigw-id": "asTItFulLPEFl6w=", + "x-amz-cf-id": "-H0k4xTAE3pDUfcz3YvieaNVnI6DQI8p8qW6a0b6VOKu5sWK2UaIeg==", + "x-amz-cf-pop": "IAD66-C2", + "x-amzn-remapped-content-length": "227", + "x-amzn-requestid": "a4c18877-77bd-4b09-bc53-4c90a1247f99", + "x-amzn-trace-id": "Root=1-6027ff04-3939e96e0eb5ac0130d10ceb;Sampled=0", + "x-cache": "Miss from cloudfront", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.7", + "content-length": "227", + "connection": "Close" + }, + "schema": { + "properties": { + "currencies": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + { + "name": "Get Cities Details by Coordinates", + "url": "https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_coordinates", + "description": "Get all the details about the cities that are inside the radius of the coordinates requested, in the currencies requested.", + "method": "POST", + "required_parameters": [ + { + "name": "currencies", + "type": "OBJECT", + "description": "JSON object in the format:\n```[\"currency1\", \"currencyN\"]```", + "default": "[\"USD\",\"Euro (example of wrong currency code)\",\"CHF\"]" + }, + { + "name": "longitude", + "type": "NUMBER", + "description": "", + "default": "8.55" + }, + { + "name": "latitude", + "type": "NUMBER", + "description": "", + "default": "47.36667" + } + ], + "optional_parameters": [ + { + "name": "distance_unit", + "type": "STRING", + "description": "Default value is ```kilometers```\n\nPossible values are ```km | mi | kilometers | miles | m | meters | feet | ft | nautical | nm```", + "default": "kilometers" + }, + { + "name": "radius", + "type": "NUMBER", + "description": "Default value is ```100```", + "default": "100" + } + ], + "code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_coordinates\"\nquerystring = {\"distance_unit\": distance_unit, \"currencies\": currencies, \"longitude\": longitude, \"radius\": radius, \"latitude\": latitude}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "data": [ + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1661.59" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "19.55-48.87", + "Value": "27.15" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "97.73-217.18", + "Value": "130.31" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "14.12-18.46", + "Value": "16.28" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "5.42-9.77", + "Value": "7.6" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "5.42-9.77", + "Value": "7.6" + }, + { + "Item": "Cappuccino (regular)", + "Range": "3.26-7.06", + "Value": "5.4" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "3.26-5.97", + "Value": "4.75" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "3.26-5.97", + "Value": "4.59" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.3-2.17", + "Value": "1.79" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "1.19-4.54", + "Value": "2.84" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "1.63-5.42", + "Value": "2.98" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "3.26-10.86", + "Value": "6.99" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "17.37-65.15", + "Value": "26.87" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "16.28-39.63", + "Value": "30.2" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "32.58-81.45", + "Value": "52.1" + }, + { + "Item": "Apples (1kg)", + "Range": "2.71-6.51", + "Value": "4.19" + }, + { + "Item": "Banana (1kg)", + "Range": "1.63-5.42", + "Value": "3.0" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.17-5.42", + "Value": "3.31" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.71-6.51", + "Value": "4.61" + }, + { + "Item": "Potato (1kg)", + "Range": "1.63-3.8", + "Value": "2.33" + }, + { + "Item": "Onion (1kg)", + "Range": "1.63-4.35", + "Value": "2.35" + }, + { + "Item": "Lettuce (1 head)", + "Range": "1.74-3.26", + "Value": "2.48" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.54-2.17", + "Value": "1.28" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "8.69-21.72", + "Value": "16.28" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.3-3.26", + "Value": "1.99" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.3-3.8", + "Value": "2.35" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "9.12-10.31", + "Value": "9.5" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.26-6.73", + "Value": "4.35" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "86.87-162.88", + "Value": "92.31" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "6.51-10.86", + "Value": "6.51" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "4.13-5.42", + "Value": "4.13" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "65.15-86.87", + "Value": "74.92" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.46-1.9", + "Value": "1.74" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "31192.66" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "27812.78" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "141.17-380.07", + "Value": "231.81" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.16-0.38", + "Value": "0.31" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "41.27-86.87", + "Value": "56.68" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "54.29-162.88", + "Value": "94.99" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "27.15-54.29", + "Value": "36.07" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "19.55-26.06", + "Value": "21.72" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2898.54" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "32197.12" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "76.01-152.02", + "Value": "111.62" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "32.47-86.87", + "Value": "52.94" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "76.01-173.74", + "Value": "124.13" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "130.31-324.69", + "Value": "203.26" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "2130.31" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1556.64" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "4072.15" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "2842.75" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "1085.91-2171.81", + "Value": "1357.38" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "742.04-1266.9", + "Value": "947.59" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "14477.64" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "10036.93" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "7714.27" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.03-1.72", + "Value": "1.36" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1529.32" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "17.99-44.98", + "Value": "24.98" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "89.95-199.9", + "Value": "119.94" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "13.0-16.99", + "Value": "14.99" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "4.99-9.0", + "Value": "6.99" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "4.99-9.0", + "Value": "6.99" + }, + { + "Item": "Cappuccino (regular)", + "Range": "3.0-6.5", + "Value": "4.97" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "3.0-5.5", + "Value": "4.37" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "3.0-5.5", + "Value": "4.22" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.2-2.0", + "Value": "1.64" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "1.1-4.18", + "Value": "2.61" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "1.5-4.99", + "Value": "2.74" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "3.0-10.0", + "Value": "6.44" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "15.99-59.96", + "Value": "24.73" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "14.99-36.48", + "Value": "27.8" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "29.99-74.96", + "Value": "47.96" + }, + { + "Item": "Apples (1kg)", + "Range": "2.5-5.99", + "Value": "3.86" + }, + { + "Item": "Banana (1kg)", + "Range": "1.5-4.99", + "Value": "2.76" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.0-4.99", + "Value": "3.04" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.5-5.99", + "Value": "4.24" + }, + { + "Item": "Potato (1kg)", + "Range": "1.5-3.5", + "Value": "2.15" + }, + { + "Item": "Onion (1kg)", + "Range": "1.5-4.0", + "Value": "2.16" + }, + { + "Item": "Lettuce (1 head)", + "Range": "1.6-3.0", + "Value": "2.29" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.5-2.0", + "Value": "1.18" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "7.99-19.99", + "Value": "14.99" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.2-3.0", + "Value": "1.83" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.2-3.5", + "Value": "2.16" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "8.39-9.49", + "Value": "8.74" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.0-6.19", + "Value": "4.0" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "79.96-149.92", + "Value": "84.96" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "5.99-10.0", + "Value": "5.99" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "3.8-4.99", + "Value": "3.8" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "59.96-79.96", + "Value": "68.96" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.35-1.75", + "Value": "1.6" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "28709.57" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "25598.74" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "129.94-349.81", + "Value": "213.36" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.15-0.35", + "Value": "0.28" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "37.98-79.96", + "Value": "52.17" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "49.97-149.92", + "Value": "87.42" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "24.98-49.97", + "Value": "33.2" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "17.99-23.98", + "Value": "19.99" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2667.8" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "29634.07" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "69.96-139.92", + "Value": "102.74" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "29.88-79.96", + "Value": "48.73" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "69.96-159.91", + "Value": "114.25" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "119.94-298.84", + "Value": "187.08" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "1960.73" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1432.72" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "3747.99" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "2616.45" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "999.47-1998.92", + "Value": "1249.33" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "682.97-1166.05", + "Value": "872.15" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "13325.15" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "9237.94" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "7100.18" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "0.95-1.58", + "Value": "1.25" + } + ] + } + ], + "cost_of_living_index": "127.82", + "cost_of_living_plus_rent_index": "100.34", + "country": "Switzerland", + "groceries_index": "129.21", + "last_updated_timestamp": "2021-11-15 16:28:06.203743+00:00", + "local_purchasing_power_index": "128.14", + "name": "Zurich", + "rent_index": "69.05", + "restaurant_price_index": "132.41", + "us_state": "N/A" + }, + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1614.51" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "21.72-38.01", + "Value": "27.15" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "65.15-217.18", + "Value": "100.44" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "14.12-16.28", + "Value": "16.28" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "4.89-8.15", + "Value": "5.97" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "5.42-7.6", + "Value": "6.51" + }, + { + "Item": "Cappuccino (regular)", + "Range": "4.35-6.51", + "Value": "5.49" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "4.35-5.97", + "Value": "4.81" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.17-4.35", + "Value": "3.52" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.3-1.96", + "Value": "1.58" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "3.26-4.35", + "Value": "3.51" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "1.3-3.8", + "Value": "3.01" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "2.93-7.76", + "Value": "6.26" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "27.15-54.29", + "Value": "32.58" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "13.03-38.01", + "Value": "27.02" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "32.58-65.15", + "Value": "53.12" + }, + { + "Item": "Apples (1kg)", + "Range": "2.17-5.42", + "Value": "4.21" + }, + { + "Item": "Banana (1kg)", + "Range": "2.17-7.6", + "Value": "3.08" + }, + { + "Item": "Oranges (1kg)", + "Range": "3.26-8.69", + "Value": "4.18" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.71-6.51", + "Value": "4.35" + }, + { + "Item": "Potato (1kg)", + "Range": "2.83-4.78", + "Value": "3.91" + }, + { + "Item": "Onion (1kg)", + "Range": "2.12-4.35", + "Value": "2.57" + }, + { + "Item": "Lettuce (1 head)", + "Range": "2.17-5.42", + "Value": "3.78" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.27-2.17", + "Value": "1.04" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "7.6-21.72", + "Value": "12.21" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.74-4.35", + "Value": "2.15" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.63-2.76", + "Value": "2.55" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "9.24-9.67", + "Value": "9.34" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.48-7.6", + "Value": "4.99" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "81.45-203.61", + "Value": "86.33" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "7.6-13.03", + "Value": "7.6" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "4.99-5.42", + "Value": "5.42" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "74.92-78.19", + "Value": "74.92" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.8-1.9", + "Value": "1.85" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "31491.29" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "28233.57" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "108.59-291.48", + "Value": "187.41" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.16-0.27", + "Value": "0.19" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "54.29-79.27", + "Value": "65.56" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "63.34-126.69", + "Value": "102.71" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "38.01-43.44", + "Value": "44.79" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "19.55-20.63", + "Value": "19.55" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2750.97" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "31477.72" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "48.87-152.02", + "Value": "91.22" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "32.58-86.87", + "Value": "53.39" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "76.01-146.6", + "Value": "108.59" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "130.31-217.18", + "Value": "162.88" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "2202.84" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1656.0" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "4112.87" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "2963.17" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "1266.9-1556.46", + "Value": "1370.96" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "785.47-1266.9", + "Value": "987.72" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "16288.6" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "10859.06" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "9123.88" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "0.92-1.6", + "Value": "1.14" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1485.99" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "19.99-34.98", + "Value": "24.98" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "59.96-199.9", + "Value": "92.45" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "13.0-14.99", + "Value": "14.99" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "4.5-7.5", + "Value": "5.5" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "4.99-6.99", + "Value": "5.99" + }, + { + "Item": "Cappuccino (regular)", + "Range": "4.0-5.99", + "Value": "5.06" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "4.0-5.5", + "Value": "4.42" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.0-4.0", + "Value": "3.24" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.2-1.8", + "Value": "1.45" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "3.0-4.0", + "Value": "3.23" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "1.2-3.5", + "Value": "2.77" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "2.7-7.14", + "Value": "5.76" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "24.98-49.97", + "Value": "29.99" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "12.0-34.98", + "Value": "24.87" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "29.99-59.96", + "Value": "48.89" + }, + { + "Item": "Apples (1kg)", + "Range": "2.0-4.99", + "Value": "3.88" + }, + { + "Item": "Banana (1kg)", + "Range": "2.0-6.99", + "Value": "2.83" + }, + { + "Item": "Oranges (1kg)", + "Range": "3.0-7.99", + "Value": "3.84" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.5-5.99", + "Value": "4.0" + }, + { + "Item": "Potato (1kg)", + "Range": "2.6-4.4", + "Value": "3.6" + }, + { + "Item": "Onion (1kg)", + "Range": "1.95-4.0", + "Value": "2.37" + }, + { + "Item": "Lettuce (1 head)", + "Range": "2.0-4.99", + "Value": "3.48" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.25-2.0", + "Value": "0.96" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "6.99-19.99", + "Value": "11.24" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.6-4.0", + "Value": "1.98" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.5-2.54", + "Value": "2.35" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "8.5-8.9", + "Value": "8.59" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.2-6.99", + "Value": "4.59" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "74.96-187.4", + "Value": "79.46" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "6.99-12.0", + "Value": "6.99" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "4.59-4.99", + "Value": "4.99" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "68.96-71.96", + "Value": "68.96" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.65-1.75", + "Value": "1.71" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "28984.43" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "25986.04" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "99.95-268.28", + "Value": "172.49" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.15-0.25", + "Value": "0.18" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "49.97-72.96", + "Value": "60.34" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "58.3-116.6", + "Value": "94.53" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "34.98-39.98", + "Value": "41.23" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "17.99-18.99", + "Value": "17.99" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2531.98" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "28971.93" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "44.98-139.92", + "Value": "83.96" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "29.99-79.96", + "Value": "49.14" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "69.96-134.93", + "Value": "99.95" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "119.94-199.9", + "Value": "149.92" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "2027.49" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1524.18" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "3785.47" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "2727.29" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "1166.05-1432.56", + "Value": "1261.82" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "722.94-1166.05", + "Value": "909.09" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "14991.95" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "9994.63" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "8397.57" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "0.84-1.47", + "Value": "1.05" + } + ] + } + ], + "cost_of_living_index": "126.77", + "cost_of_living_plus_rent_index": "100.80", + "country": "Switzerland", + "groceries_index": "134.08", + "last_updated_timestamp": "2021-11-15 16:28:06.285114+00:00", + "local_purchasing_power_index": "150.87", + "name": "Zug", + "rent_index": "71.22", + "restaurant_price_index": "118.89", + "us_state": "N/A" + }, + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1693.27" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "16.28-43.44", + "Value": "29.96" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "92.31-162.88", + "Value": "116.74" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "15.53-18.46", + "Value": "16.28" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "5.42-9.77", + "Value": "7.6" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "5.42-8.69", + "Value": "6.61" + }, + { + "Item": "Cappuccino (regular)", + "Range": "4.35-7.6", + "Value": "5.73" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "2.17-5.42", + "Value": "4.62" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "4.35-5.42", + "Value": "4.59" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.3-2.06", + "Value": "1.84" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "2.17-5.42", + "Value": "3.12" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "2.17-3.8", + "Value": "2.75" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "2.61-8.69", + "Value": "5.58" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "18.46-86.87", + "Value": "31.75" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "16.28-56.46", + "Value": "29.95" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "35.91-70.59", + "Value": "59.42" + }, + { + "Item": "Apples (1kg)", + "Range": "1.09-5.42", + "Value": "4.3" + }, + { + "Item": "Banana (1kg)", + "Range": "1.96-3.26", + "Value": "2.66" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.17-5.42", + "Value": "4.02" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.17-5.42", + "Value": "4.07" + }, + { + "Item": "Potato (1kg)", + "Range": "1.63-3.8", + "Value": "2.36" + }, + { + "Item": "Onion (1kg)", + "Range": "1.09-3.26", + "Value": "2.57" + }, + { + "Item": "Lettuce (1 head)", + "Range": "1.63-3.26", + "Value": "2.41" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.54-2.17", + "Value": "1.36" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "7.6-19.55", + "Value": "13.03" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.52-2.71", + "Value": "2.28" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "2.06-3.26", + "Value": "2.91" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "7.6-10.86", + "Value": "9.06" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.26-5.21", + "Value": "4.13" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "86.87-130.31", + "Value": "86.87" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "6.51-10.86", + "Value": "7.06" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "3.8-4.13", + "Value": "4.13" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "48.87-97.73", + "Value": "76.23" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.63-2.0", + "Value": "1.82" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "35829.48" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "44485.96" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "152.02-380.07", + "Value": "254.88" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.16-0.32", + "Value": "0.26" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "54.29-86.87", + "Value": "59.65" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "54.29-122.16", + "Value": "87.52" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "27.15-65.15", + "Value": "46.15" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "17.37-23.9", + "Value": "21.72" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2745.79" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "26372.01" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "86.87-146.6", + "Value": "118.9" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "32.58-86.87", + "Value": "55.65" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "81.45-228.04", + "Value": "124.88" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "81.45-162.88", + "Value": "126.69" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "1487.99" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1181.97" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "2669.04" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "2135.61" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "651.54-1085.91", + "Value": "889.68" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "542.95-904.92", + "Value": "711.87" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "11890.67" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "9230.51" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "5969.9" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.14-3.43", + "Value": "2.16" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1558.47" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "14.99-39.98", + "Value": "27.58" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "84.96-149.92", + "Value": "107.45" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "14.29-16.99", + "Value": "14.99" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "4.99-9.0", + "Value": "6.99" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "4.99-7.99", + "Value": "6.09" + }, + { + "Item": "Cappuccino (regular)", + "Range": "4.0-6.99", + "Value": "5.28" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "2.0-4.99", + "Value": "4.26" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "4.0-4.99", + "Value": "4.22" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.2-1.9", + "Value": "1.7" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "2.0-4.99", + "Value": "2.88" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "2.0-3.5", + "Value": "2.53" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "2.4-7.99", + "Value": "5.14" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "16.99-79.96", + "Value": "29.22" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "14.99-51.97", + "Value": "27.56" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "33.05-64.97", + "Value": "54.69" + }, + { + "Item": "Apples (1kg)", + "Range": "1.0-4.99", + "Value": "3.96" + }, + { + "Item": "Banana (1kg)", + "Range": "1.8-3.0", + "Value": "2.44" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.0-4.99", + "Value": "3.7" + }, + { + "Item": "Tomato (1kg)", + "Range": "2.0-4.99", + "Value": "3.75" + }, + { + "Item": "Potato (1kg)", + "Range": "1.5-3.5", + "Value": "2.17" + }, + { + "Item": "Onion (1kg)", + "Range": "1.0-3.0", + "Value": "2.37" + }, + { + "Item": "Lettuce (1 head)", + "Range": "1.5-3.0", + "Value": "2.22" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.5-2.0", + "Value": "1.25" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "6.99-17.99", + "Value": "12.0" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.4-2.5", + "Value": "2.1" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.9-3.0", + "Value": "2.68" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "6.99-10.0", + "Value": "8.34" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "3.0-4.79", + "Value": "3.8" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "79.96-119.94", + "Value": "79.96" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "5.99-10.0", + "Value": "6.5" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "3.5-3.8", + "Value": "3.8" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "44.98-89.95", + "Value": "70.16" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.5-1.84", + "Value": "1.67" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "32977.27" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "40944.66" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "139.92-349.81", + "Value": "234.59" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.15-0.29", + "Value": "0.24" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "49.97-79.96", + "Value": "54.9" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "49.97-112.44", + "Value": "80.56" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "24.98-59.96", + "Value": "42.48" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "15.99-21.99", + "Value": "19.99" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2527.21" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "24272.67" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "79.96-134.93", + "Value": "109.44" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "29.99-79.96", + "Value": "51.22" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "74.96-209.89", + "Value": "114.94" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "74.96-149.92", + "Value": "116.6" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "1369.54" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1087.88" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "2456.57" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "1965.61" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "599.68-999.47", + "Value": "818.86" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "499.73-832.89", + "Value": "655.21" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "10944.11" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "8495.72" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "5494.67" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.05-3.16", + "Value": "1.99" + } + ] + } + ], + "cost_of_living_index": "131.74", + "cost_of_living_plus_rent_index": "92.95", + "country": "Switzerland", + "groceries_index": "136.09", + "last_updated_timestamp": "2021-11-15 16:28:06.303608+00:00", + "local_purchasing_power_index": "107.23", + "name": "Basel", + "rent_index": "48.76", + "restaurant_price_index": "132.27", + "us_state": "N/A" + }, + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1512.87" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "16.28-43.44", + "Value": "27.15" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "86.87-130.31", + "Value": "108.59" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "14.12-21.72", + "Value": "16.28" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "4.89-8.69", + "Value": "6.25" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "3.8-7.06", + "Value": "6.51" + }, + { + "Item": "Cappuccino (regular)", + "Range": "3.26-5.64", + "Value": "4.91" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "3.15-5.42", + "Value": "4.04" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.17-5.42", + "Value": "3.67" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.36-1.74", + "Value": "1.59" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "1.96-3.8", + "Value": "2.69" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "2.17-5.42", + "Value": "3.07" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "2.71-7.82", + "Value": "5.37" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "17.37-48.87", + "Value": "23.62" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "14.12-38.01", + "Value": "24.97" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "27.15-76.01", + "Value": "52.8" + }, + { + "Item": "Apples (1kg)", + "Range": "1.74-4.67", + "Value": "4.23" + }, + { + "Item": "Banana (1kg)", + "Range": "1.96-3.26", + "Value": "3.01" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.44-6.51", + "Value": "3.18" + }, + { + "Item": "Tomato (1kg)", + "Range": "3.26-5.76", + "Value": "4.3" + }, + { + "Item": "Potato (1kg)", + "Range": "0.87-3.26", + "Value": "2.48" + }, + { + "Item": "Onion (1kg)", + "Range": "1.58-3.91", + "Value": "2.46" + }, + { + "Item": "Lettuce (1 head)", + "Range": "1.96-4.13", + "Value": "2.49" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.27-1.96", + "Value": "0.96" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "7.6-19.55", + "Value": "13.03" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.09-3.26", + "Value": "2.01" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.63-2.71", + "Value": "2.36" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "9.24-9.77", + "Value": "9.34" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "2.83-6.08", + "Value": "4.35" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "85.78-97.73", + "Value": "85.78" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "7.28-16.28", + "Value": "7.38" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "4.23-5.42", + "Value": "4.29" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "78.19-85.78", + "Value": "78.19" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.52-1.96", + "Value": "1.67" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "34749.01" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "45418.03" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "92.31-395.58", + "Value": "190.46" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.16-0.32", + "Value": "0.25" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "42.35-86.87", + "Value": "57.06" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "45.16-108.59", + "Value": "82.99" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "27.15-48.87", + "Value": "38.22" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "19.55-21.72", + "Value": "20.08" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2298.5" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "30133.91" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "43.44-162.88", + "Value": "114.5" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "27.15-43.44", + "Value": "38.78" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "54.29-162.88", + "Value": "127.98" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "65.15-271.47", + "Value": "147.96" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "1562.5" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1122.11" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "2687.62" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "1870.17" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "723.94-1085.91", + "Value": "895.87" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "506.75-796.33", + "Value": "623.39" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "8484.26" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "6855.06" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "5452.41" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.26-2.29", + "Value": "1.76" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "1392.44" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "14.99-39.98", + "Value": "24.98" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "79.96-119.94", + "Value": "99.95" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "13.0-19.99", + "Value": "14.99" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "4.5-7.99", + "Value": "5.75" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "3.5-6.5", + "Value": "5.99" + }, + { + "Item": "Cappuccino (regular)", + "Range": "3.0-5.19", + "Value": "4.52" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "2.9-4.99", + "Value": "3.72" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.0-4.99", + "Value": "3.38" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "1.25-1.6", + "Value": "1.46" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "1.8-3.5", + "Value": "2.48" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "2.0-4.99", + "Value": "2.82" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "2.5-7.19", + "Value": "4.94" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "15.99-44.98", + "Value": "21.74" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "13.0-34.98", + "Value": "22.98" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "24.98-69.96", + "Value": "48.6" + }, + { + "Item": "Apples (1kg)", + "Range": "1.6-4.3", + "Value": "3.9" + }, + { + "Item": "Banana (1kg)", + "Range": "1.8-3.0", + "Value": "2.77" + }, + { + "Item": "Oranges (1kg)", + "Range": "2.24-5.99", + "Value": "2.93" + }, + { + "Item": "Tomato (1kg)", + "Range": "3.0-5.3", + "Value": "3.96" + }, + { + "Item": "Potato (1kg)", + "Range": "0.8-3.0", + "Value": "2.29" + }, + { + "Item": "Onion (1kg)", + "Range": "1.45-3.6", + "Value": "2.26" + }, + { + "Item": "Lettuce (1 head)", + "Range": "1.8-3.8", + "Value": "2.3" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.25-1.8", + "Value": "0.88" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "6.99-17.99", + "Value": "12.0" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "1.0-3.0", + "Value": "1.85" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.5-2.5", + "Value": "2.17" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "8.5-9.0", + "Value": "8.59" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "2.6-5.59", + "Value": "4.0" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "78.96-89.95", + "Value": "78.96" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "6.7-14.99", + "Value": "6.79" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "3.9-4.99", + "Value": "3.95" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "71.96-78.96", + "Value": "71.96" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.4-1.8", + "Value": "1.54" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "31982.81" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "41802.53" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "84.96-364.09", + "Value": "175.3" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.15-0.29", + "Value": "0.23" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "38.98-79.96", + "Value": "52.52" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "41.56-99.95", + "Value": "76.39" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "24.98-44.98", + "Value": "35.18" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "17.99-19.99", + "Value": "18.49" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "N/A", + "Value": "2115.53" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "27735.1" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "39.98-149.92", + "Value": "105.38" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "24.98-39.98", + "Value": "35.7" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "49.97-149.92", + "Value": "117.79" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "59.96-249.86", + "Value": "136.18" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "1438.11" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "N/A", + "Value": "1032.78" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "2473.68" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "1721.29" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "666.31-999.47", + "Value": "824.55" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "466.41-732.94", + "Value": "573.76" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "7808.87" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "6309.36" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "5018.37" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.16-2.11", + "Value": "1.62" + } + ] + } + ], + "cost_of_living_index": "119.27", + "cost_of_living_plus_rent_index": "85.57", + "country": "Switzerland", + "groceries_index": "120.69", + "last_updated_timestamp": "2021-11-15 16:28:08.507199+00:00", + "local_purchasing_power_index": "106.21", + "name": "Bern", + "rent_index": "47.17", + "restaurant_price_index": "120.80", + "us_state": "N/A" + }, + { + "cost_of_living_details": [ + { + "currency": "USD", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "869.46" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "9.16-13.73", + "Value": "11.44" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "40.05-91.55", + "Value": "62.94" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "8.01-9.16", + "Value": "9.16" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "3.43-4.92", + "Value": "4.46" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "3.43-4.58", + "Value": "3.43" + }, + { + "Item": "Cappuccino (regular)", + "Range": "2.29-3.43", + "Value": "3.09" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "2.06-3.32", + "Value": "2.63" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.29-3.2", + "Value": "2.44" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "0.8-1.19", + "Value": "1.04" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "0.68-3.43", + "Value": "1.87" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "1.14-2.63", + "Value": "2.17" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "1.59-3.41", + "Value": "2.74" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "6.87-14.88", + "Value": "11.24" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "5.71-13.73", + "Value": "7.86" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "10.07-18.31", + "Value": "10.31" + }, + { + "Item": "Apples (1kg)", + "Range": "1.36-3.43", + "Value": "2.86" + }, + { + "Item": "Banana (1kg)", + "Range": "1.82-2.23", + "Value": "1.9" + }, + { + "Item": "Oranges (1kg)", + "Range": "1.52-4.58", + "Value": "1.98" + }, + { + "Item": "Tomato (1kg)", + "Range": "0.9-3.52", + "Value": "0.97" + }, + { + "Item": "Potato (1kg)", + "Range": "0.57-1.14", + "Value": "1.14" + }, + { + "Item": "Onion (1kg)", + "Range": "1.13-2.29", + "Value": "1.58" + }, + { + "Item": "Lettuce (1 head)", + "Range": "0.56-1.14", + "Value": "0.88" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.22-0.57", + "Value": "0.38" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "5.71-8.01", + "Value": "5.72" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "0.61-0.79", + "Value": "0.63" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "1.05-1.71", + "Value": "1.36" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "7.32-8.01", + "Value": "7.67" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "2.75-2.75", + "Value": "2.75" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "68.66-74.39", + "Value": "72.1" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "4.58-5.72", + "Value": "4.58" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "2.86-3.2", + "Value": "3.2" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "45.78-46.0", + "Value": "46.0" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.37-1.72", + "Value": "1.6" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "20599.2" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "33004.5" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "148.77-350.19", + "Value": "247.55" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.07-0.13", + "Value": "0.1" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "28.61-45.78", + "Value": "37.77" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "28.61-57.22", + "Value": "39.92" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "17.17-20.6", + "Value": "20.89" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "10.87-14.88", + "Value": "13.39" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "268.93-572.2", + "Value": "338.51" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "4920.92" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "45.78-125.88", + "Value": "93.27" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "13.73-57.22", + "Value": "38.34" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "57.22-114.44", + "Value": "92.01" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "101.85-228.88", + "Value": "146.48" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "896.69" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "686.64-915.52", + "Value": "769.41" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "2141.66" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "1541.76" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "534.06-953.66", + "Value": "713.89" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "438.68-762.94", + "Value": "513.92" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "8954.93" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "6294.2" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "2869.17" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.37-2.12", + "Value": "2.01" + } + ] + }, + { + "currency": "CHF", + "details": [ + { + "Item": "Estimated Monthly Costs Without Rent", + "Range": "N/A", + "Value": "800.24" + }, + { + "Item": "Meal, Inexpensive Restaurant", + "Range": "8.43-12.64", + "Value": "10.53" + }, + { + "Item": "Meal for 2 People, Mid-range Restaurant, Three-course", + "Range": "36.87-84.26", + "Value": "57.93" + }, + { + "Item": "McMeal at McDonalds (or Equivalent Combo Meal)", + "Range": "7.37-8.43", + "Value": "8.43" + }, + { + "Item": "Domestic Beer (0.5 liter draught)", + "Range": "3.16-4.53", + "Value": "4.11" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "3.16-4.21", + "Value": "3.16" + }, + { + "Item": "Cappuccino (regular)", + "Range": "2.11-3.16", + "Value": "2.84" + }, + { + "Item": "Coke/Pepsi (0.33 liter bottle)", + "Range": "1.9-3.05", + "Value": "2.42" + }, + { + "Item": "Water (0.33 liter bottle)", + "Range": "2.11-2.95", + "Value": "2.24" + }, + { + "Item": "Milk (regular), (1 liter)", + "Range": "0.74-1.1", + "Value": "0.96" + }, + { + "Item": "Loaf of Fresh White Bread (500g)", + "Range": "0.62-3.16", + "Value": "1.72" + }, + { + "Item": "Rice (white), (1kg)", + "Range": "1.05-2.42", + "Value": "2.0" + }, + { + "Item": "Eggs (regular) (12)", + "Range": "1.46-3.14", + "Value": "2.52" + }, + { + "Item": "Local Cheese (1kg)", + "Range": "6.32-13.69", + "Value": "10.34" + }, + { + "Item": "Chicken Fillets (1kg)", + "Range": "5.26-12.64", + "Value": "7.24" + }, + { + "Item": "Beef Round (1kg) (or Equivalent Back Leg Red Meat)", + "Range": "9.27-16.85", + "Value": "9.49" + }, + { + "Item": "Apples (1kg)", + "Range": "1.25-3.16", + "Value": "2.63" + }, + { + "Item": "Banana (1kg)", + "Range": "1.67-2.05", + "Value": "1.75" + }, + { + "Item": "Oranges (1kg)", + "Range": "1.4-4.21", + "Value": "1.82" + }, + { + "Item": "Tomato (1kg)", + "Range": "0.83-3.24", + "Value": "0.9" + }, + { + "Item": "Potato (1kg)", + "Range": "0.53-1.05", + "Value": "1.05" + }, + { + "Item": "Onion (1kg)", + "Range": "1.04-2.11", + "Value": "1.45" + }, + { + "Item": "Lettuce (1 head)", + "Range": "0.52-1.05", + "Value": "0.81" + }, + { + "Item": "Water (1.5 liter bottle)", + "Range": "0.2-0.53", + "Value": "0.35" + }, + { + "Item": "Bottle of Wine (Mid-Range)", + "Range": "5.26-7.37", + "Value": "5.27" + }, + { + "Item": "Domestic Beer (0.5 liter bottle)", + "Range": "0.56-0.73", + "Value": "0.58" + }, + { + "Item": "Imported Beer (0.33 liter bottle)", + "Range": "0.97-1.57", + "Value": "1.25" + }, + { + "Item": "Cigarettes 20 Pack (Marlboro)", + "Range": "6.74-7.37", + "Value": "7.06" + }, + { + "Item": "One-way Ticket (Local Transport)", + "Range": "2.53-2.53", + "Value": "2.53" + }, + { + "Item": "Monthly Pass (Regular Price)", + "Range": "63.2-68.46", + "Value": "66.36" + }, + { + "Item": "Taxi Start (Normal Tariff)", + "Range": "4.21-5.27", + "Value": "4.21" + }, + { + "Item": "Taxi 1km (Normal Tariff)", + "Range": "2.63-2.95", + "Value": "2.95" + }, + { + "Item": "Taxi 1hour Waiting (Normal Tariff)", + "Range": "42.13-42.34", + "Value": "42.34" + }, + { + "Item": "Gasoline (1 liter)", + "Range": "1.26-1.58", + "Value": "1.47" + }, + { + "Item": "Volkswagen Golf 1.4 90 KW Trendline (Or Equivalent New Car)", + "Range": "N/A", + "Value": "18959.4" + }, + { + "Item": "Toyota Corolla Sedan 1.6l 97kW Comfort (Or Equivalent New Car)", + "Range": "N/A", + "Value": "30377.17" + }, + { + "Item": "Basic (Electricity, Heating, Cooling, Water, Garbage) for 85m2 Apartment", + "Range": "136.93-322.31", + "Value": "227.84" + }, + { + "Item": "1 min. of Prepaid Mobile Tariff Local (No Discounts or Plans)", + "Range": "0.06-0.12", + "Value": "0.09" + }, + { + "Item": "Internet (60 Mbps or More, Unlimited Data, Cable/ADSL)", + "Range": "26.33-42.13", + "Value": "34.76" + }, + { + "Item": "Fitness Club, Monthly Fee for 1 Adult", + "Range": "26.33-52.66", + "Value": "36.74" + }, + { + "Item": "Tennis Court Rent (1 Hour on Weekend)", + "Range": "15.8-18.96", + "Value": "19.22" + }, + { + "Item": "Cinema, International Release, 1 Seat", + "Range": "10.01-13.69", + "Value": "12.32" + }, + { + "Item": "Preschool (or Kindergarten), Full Day, Private, Monthly for 1 Child", + "Range": "247.53-526.65", + "Value": "311.57" + }, + { + "Item": "International Primary School, Yearly for 1 Child", + "Range": "N/A", + "Value": "4529.19" + }, + { + "Item": "1 Pair of Jeans (Levis 501 Or Similar)", + "Range": "42.13-115.86", + "Value": "85.84" + }, + { + "Item": "1 Summer Dress in a Chain Store (Zara, H&M, ...)", + "Range": "12.64-52.66", + "Value": "35.29" + }, + { + "Item": "1 Pair of Nike Running Shoes (Mid-Range)", + "Range": "52.66-105.33", + "Value": "84.69" + }, + { + "Item": "1 Pair of Men Leather Business Shoes", + "Range": "93.74-210.66", + "Value": "134.82" + }, + { + "Item": "Apartment (1 bedroom) in City Centre", + "Range": "N/A", + "Value": "825.31" + }, + { + "Item": "Apartment (1 bedroom) Outside of Centre", + "Range": "631.98-842.64", + "Value": "708.17" + }, + { + "Item": "Apartment (3 bedrooms) in City Centre", + "Range": "N/A", + "Value": "1971.18" + }, + { + "Item": "Apartment (3 bedrooms) Outside of Centre", + "Range": "N/A", + "Value": "1419.03" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) in City Centre", + "Range": "491.54-877.75", + "Value": "657.06" + }, + { + "Item": "Apartment (Shared Room in a 3 Bedrooms Apartment) Outside of Centre", + "Range": "403.76-702.2", + "Value": "473.01" + }, + { + "Item": "Price per Square Meter to Buy Apartment in City Centre", + "Range": "N/A", + "Value": "8242.07" + }, + { + "Item": "Price per Square Meter to Buy Apartment Outside of Centre", + "Range": "N/A", + "Value": "5793.15" + }, + { + "Item": "Average Monthly Net Salary (After Tax)", + "Range": "N/A", + "Value": "2640.77" + }, + { + "Item": "Mortgage Interest Rate in Percentages (%), Yearly, for 20 Years Fixed-Rate", + "Range": "1.26-1.95", + "Value": "1.85" + } + ] + } + ], + "cost_of_living_index": "63.70", + "cost_of_living_plus_rent_index": "50.21", + "country": "Germany", + "groceries_index": "49.01", + "last_updated_timestamp": "2021-11-15 16:30:23.107599+00:00", + "local_purchasing_power_index": "95.27", + "name": "Freiburg im Breisgau", + "rent_index": "34.85", + "restaurant_price_index": "63.35", + "us_state": "N/A" + } + ] + }, + "headers": { + "content-type": "application/json", + "date": "Sun, 21 Feb 2021 16:37:44 GMT", + "server": "RapidAPI-1.2.8", + "via": "1.1 a9eda0e42d94d0bd56a91282e7de5301.cloudfront.net (CloudFront)", + "x-amz-apigw-id": "bGrdxFY_rPEFsrQ=", + "x-amz-cf-id": "Kr1U34EQ9v1G2cFrhOErZ1Cc34OcNrCkYm2Z6UbqWBgRGxjPodPG6w==", + "x-amz-cf-pop": "IAD50-C2", + "x-amzn-remapped-content-length": "20625", + "x-amzn-requestid": "e9161e44-48af-43fc-9eb7-de27f19c2b96", + "x-amzn-trace-id": "Root=1-60328c58-0f0cc6ca22d0f2ba53fa297e;Sampled=0", + "x-cache": "Miss from cloudfront", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.7", + "content-length": "20625", + "connection": "Close" + }, + "schema": { + "properties": { + "data": { + "items": { + "properties": { + "cost_of_living_details": { + "items": { + "properties": { + "currency": { + "type": "string" + }, + "details": { + "items": { + "properties": { + "Item": { + "type": "string" + }, + "Range": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "cost_of_living_index": { + "type": "string" + }, + "cost_of_living_plus_rent_index": { + "type": "string" + }, + "country": { + "type": "string" + }, + "groceries_index": { + "type": "string" + }, + "last_updated_timestamp": { + "type": "string" + }, + "local_purchasing_power_index": { + "type": "string" + }, + "name": { + "type": "string" + }, + "rent_index": { + "type": "string" + }, + "restaurant_price_index": { + "type": "string" + }, + "us_state": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + { + "name": "Get Cities List", + "url": "https://cities-cost-of-living1.p.rapidapi.com/get_cities_list", + "description": "Get a list of all the Cities available", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 200, + "body": { + "cities": [ + { + "country": "Ukraine", + "name": "Mykolaiv" + }, + { + "country": "Canada", + "name": "Kitchener" + }, + { + "country": "Russia", + "name": "Samara" + }, + { + "country": "United States", + "name": "Kansas City" + }, + { + "country": "India", + "name": "Kochi" + }, + { + "country": "Russia", + "name": "Nizhny Novgorod" + }, + { + "country": "Hong Kong", + "name": "Hong Kong" + }, + { + "country": "Kosovo (Disputed Territory)", + "name": "Pristina" + }, + { + "country": "Switzerland", + "name": "Zurich" + } + ] + }, + "headers": { + "content-type": "application/json", + "date": "Sat, 13 Feb 2021 16:34:10 GMT", + "server": "RapidAPI-1.2.7", + "via": "1.1 90ad2a23a8617490c9d13e1f260633f8.cloudfront.net (CloudFront)", + "x-amz-apigw-id": "asTcPHqNLPEFqFA=", + "x-amz-cf-id": "ct8wPlNvyEmJkNbZ6ArfW0U_VN35X5YdJ_Yja1AzhiBYPfmDfZa0mg==", + "x-amz-cf-pop": "IAD50-C2", + "x-amzn-remapped-content-length": "24932", + "x-amzn-requestid": "18fdfc0d-02a3-40f0-898f-06421bc0380e", + "x-amzn-trace-id": "Root=1-6027ff81-74ee4c4a35524ce807ee9355;Sampled=0", + "x-cache": "Miss from cloudfront", + "x-rapidapi-region": "AWS - us-east-1", + "x-rapidapi-version": "1.2.7", + "content-length": "24932", + "connection": "Close" + }, + "schema": { + "properties": { + "cities": { + "items": { + "properties": { + "country": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + { + "name": "Get Cities Details by Name", + "url": "https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_name", + "description": "Get all the details about the cities requested, in the currencies requested.", + "method": "POST", + "required_parameters": [ + { + "name": "currencies", + "type": "OBJECT", + "description": "JSON object in the format:\n```[\"currency1\", \"currencyN\"]```", + "default": "[\"USD\",\"Euro (example of wrong currency code)\",\"CHF\"]" + }, + { + "name": "cities", + "type": "OBJECT", + "description": "JSON object in the format:\n```[{\"name\":\"city1_name\",\"country\":\"country1_name\"}, {\"name\":\"cityN_name\",\"country\":\"countryN_name\"}]```\n", + "default": "[{\"name\":\"Lisbon\",\"country\":\"Portugal\"},{\"name\":\"Paris\",\"country\":\"Spain (example of wrong country)\"},{\"name\":\"Hamilton\",\"country\":\"Bermuda\"},{\"name\":\"Saint Francisc (example of wrong city name)\",\"country\":\"United States\"}]" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_name\"\nquerystring = {\"currencies\": \"[\\\"USD\\\",\\\"Euro (example of wrong currency code)\\\",\\\"CHF\\\"]\", \"cities\": \"[{\\\"name\\\":\\\"Lisbon\\\",\\\"country\\\":\\\"Portugal\\\"},{\\\"name\\\":\\\"Paris\\\",\\\"country\\\":\\\"Spain (example of wrong country)\\\"},{\\\"name\\\":\\\"Hamilton\\\",\\\"country\\\":\\\"Bermuda\\\"},{\\\"name\\\":\\\"Saint Francisc (example of wrong city name)\\\",\\\"country\\\":\\\"United States\\\"}]\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_name\"\nquerystring = {\"currencies\": \"[\\\"USD\\\",\\\"Euro (example of wrong currency code)\\\",\\\"CHF\\\"]\", \"cities\": \"[{\\\"name\\\":\\\"Lisbon\\\",\\\"country\\\":\\\"Portugal\\\"},{\\\"name\\\":\\\"Paris\\\",\\\"country\\\":\\\"Spain (example of wrong country)\\\"},{\\\"name\\\":\\\"Hamilton\\\",\\\"country\\\":\\\"Bermuda\\\"},{\\\"name\\\":\\\"Saint Francisc (example of wrong city name)\\\",\\\"country\\\":\\\"United States\\\"}]\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "properties": { + "data": { + "items": { + "properties": { + "cost_of_living_details": { + "items": { + "properties": { + "currency": { + "type": "string" + }, + "details": { + "items": { + "properties": { + "Item": { + "type": "string" + }, + "Range": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "cost_of_living_index": { + "type": "string" + }, + "cost_of_living_plus_rent_index": { + "type": "string" + }, + "country": { + "type": "string" + }, + "groceries_index": { + "type": "string" + }, + "last_updated_timestamp": { + "type": "string" + }, + "local_purchasing_power_index": { + "type": "string" + }, + "name": { + "type": "string" + }, + "rent_index": { + "type": "string" + }, + "restaurant_price_index": { + "type": "string" + }, + "us_state": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + { + "name": "Get Cities Details by Coordinates", + "url": "https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_coordinates", + "description": "Get all the details about the cities that are inside the radius of the coordinates requested, in the currencies requested.", + "method": "POST", + "required_parameters": [ + { + "name": "currencies", + "type": "OBJECT", + "description": "JSON object in the format:\n```[\"currency1\", \"currencyN\"]```", + "default": "[\"USD\",\"Euro (example of wrong currency code)\",\"CHF\"]" + }, + { + "name": "longitude", + "type": "NUMBER", + "description": "", + "default": "8.55" + }, + { + "name": "latitude", + "type": "NUMBER", + "description": "", + "default": "47.36667" + } + ], + "optional_parameters": [ + { + "name": "distance_unit", + "type": "STRING", + "description": "Default value is ```kilometers```\n\nPossible values are ```km | mi | kilometers | miles | m | meters | feet | ft | nautical | nm```", + "default": "kilometers" + }, + { + "name": "radius", + "type": "NUMBER", + "description": "Default value is ```100```", + "default": "100" + } + ], + "code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_coordinates\"\nquerystring = {\"distance_unit\": \"kilometers\", \"currencies\": \"[\\\"USD\\\",\\\"Euro (example of wrong currency code)\\\",\\\"CHF\\\"]\", \"longitude\": \"8.55\", \"radius\": \"100\", \"latitude\": \"47.36667\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://cities-cost-of-living1.p.rapidapi.com/get_cities_details_by_coordinates\"\nquerystring = {\"distance_unit\": \"kilometers\", \"currencies\": \"[\\\"USD\\\",\\\"Euro (example of wrong currency code)\\\",\\\"CHF\\\"]\", \"longitude\": \"8.55\", \"radius\": \"100\", \"latitude\": \"47.36667\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cities-cost-of-living1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "properties": { + "data": { + "items": { + "properties": { + "cost_of_living_details": { + "items": { + "properties": { + "currency": { + "type": "string" + }, + "details": { + "items": { + "properties": { + "Item": { + "type": "string" + }, + "Range": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "cost_of_living_index": { + "type": "string" + }, + "cost_of_living_plus_rent_index": { + "type": "string" + }, + "country": { + "type": "string" + }, + "groceries_index": { + "type": "string" + }, + "last_updated_timestamp": { + "type": "string" + }, + "local_purchasing_power_index": { + "type": "string" + }, + "name": { + "type": "string" + }, + "rent_index": { + "type": "string" + }, + "restaurant_price_index": { + "type": "string" + }, + "us_state": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/cities_cost_of_living/api.py b/toolbench/toolenv/tools/Travel/cities_cost_of_living/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f3a9d9c3d0e999674cf5265fbb34065c8137d860 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/cities_cost_of_living/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_currencies_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of all the Currencies available" + + """ + url = f"https://cities-cost-of-living1.p.rapidapi.com/get_currencies_list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cities-cost-of-living1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_cities_list(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of all the Cities available" + + """ + url = f"https://cities-cost-of-living1.p.rapidapi.com/get_cities_list" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cities-cost-of-living1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/cost_of_living_and_prices.json b/toolbench/toolenv/tools/Travel/cost_of_living_and_prices.json new file mode 100644 index 0000000000000000000000000000000000000000..ef629eef27d89dec46e8017774305a788de08aa7 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/cost_of_living_and_prices.json @@ -0,0 +1,56 @@ +{ + "tool_name":"Cost of living and prices", + "tool_description":"Prices for more then 60 goods and services for more then 8000+ cities around the world from TravelTables.com", + "title":"Cost of living and prices", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":99, + "avgLatency":1441, + "avgSuccessRate":99, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/traveltables/api/cost-of-living-and-prices/", + "host":"cost-of-living-and-prices.p.rapidapi.com", + "api_list":[ + { + "name":"Cities", + "url":"https://cost-of-living-and-prices.p.rapidapi.com/cities", + "description":"Get list of all the cities in the database with corresponding country name, id, lat and lng", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://cost-of-living-and-prices.p.rapidapi.com/cities\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cost-of-living-and-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Prices", + "url":"https://cost-of-living-and-prices.p.rapidapi.com/prices", + "description":"Prices for goods in services for city. Require to specify city_name and country_name. Tip: See cities endpoint for list of cities and corresponding id, country_name, lat and lng.", + "method":"GET", + "required_parameters":[ + { + "name":"country_name", + "type":"STRING", + "description":"", + "default":"Slovakia" + }, + { + "name":"city_name", + "type":"STRING", + "description":"", + "default":"Bratislava" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://cost-of-living-and-prices.p.rapidapi.com/prices\"\nquerystring = {\"country_name\": country_name, \"city_name\": city_name}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cost-of-living-and-prices.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/cost_of_living_and_prices/api.py b/toolbench/toolenv/tools/Travel/cost_of_living_and_prices/api.py new file mode 100644 index 0000000000000000000000000000000000000000..98ce93d01f87299a605582cc7f0b6d18501709bb --- /dev/null +++ b/toolbench/toolenv/tools/Travel/cost_of_living_and_prices/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def cities(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get list of all the cities in the database with corresponding country name, id, lat and lng" + + """ + url = f"https://cost-of-living-and-prices.p.rapidapi.com/cities" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cost-of-living-and-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def prices(country_name: str, city_name: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Prices for goods in services for city. Require to specify city_name and country_name. Tip: See cities endpoint for list of cities and corresponding id, country_name, lat and lng." + + """ + url = f"https://cost-of-living-and-prices.p.rapidapi.com/prices" + querystring = {'country_name': country_name, 'city_name': city_name, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cost-of-living-and-prices.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/countries_and_territories_list/api.py b/toolbench/toolenv/tools/Travel/countries_and_territories_list/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ab353ccb2fe6256af1814b9b3d95d1524e1e0609 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/countries_and_territories_list/api.py @@ -0,0 +1,52 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_country_by_iso(iso: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch a single country by its two-digit ISO code. + + To see a full list of ISO codes, you can either fetch all countries with the "Get all countries" endpoint to get a response which contains the "iso" value OR you can do a Google search for ISO codes (Alpha-2)." + + """ + url = f"https://countries-and-territories-list.p.rapidapi.com/{iso}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "countries-and-territories-list.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_countries(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch the complete list of all countries and territories" + + """ + url = f"https://countries-and-territories-list.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "countries-and-territories-list.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/cruise.json b/toolbench/toolenv/tools/Travel/cruise.json new file mode 100644 index 0000000000000000000000000000000000000000..68130f2bdb832f2ab2bc162651ef3b6d64e8f525 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/cruise.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Cruise", + "tool_description":"Trawex is a well-known brand to offering best in class cruise API for travel agents by which they can book cruises online in an easy manner. Our API provides an interface that connects cruise suppliers and online travel agencies where online travel agents can view their real-time inventory and availability through cruise booking software. We include cruise providers on a single platform where travel agents can access through cruise API to do easy online booking of cruises.", + "title":"Cruise", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":581, + "avgSuccessRate":100, + "popularityScore":9.1, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/trawex-trawex-default/api/cruise/", + "host":"cruise.p.rapidapi.com", + "api_list":[ + { + "name":"Trawex Cruise API", + "url":"https://cruise.p.rapidapi.com/", + "description":"This web API was created by Trawex. You can find the Trawex portal / hompage [here](https://www.trawex.com/cruise-api.php). If you need Trawex Cruise API support, you can contact support directly at contact@trawex.com, or reach out to their Twitter account at [@trawextech](https://twitter.com/trawextech). For more information, check out their [API Documentation](https://www.trawex.com/api-integration.php). The Trawex Cruise API is **not currently available on the RapidAPI marketplace**. Click \"**Request this API on RapidAPI**\" to let us know if you would like to access to this API. Meanwhile, you can check out the [top APIs that currently available](https://rapidapi.com/hub) for developers.", + "method":"GET", + "required_parameters":[ + { + "name":"Cruise", + "type":"STRING", + "description":"Trawex is a well-known brand to offering best in class cruise API for travel agents by which they can book cruises online in an easy manner. Our API provides an interface that connects cruise suppliers and online travel agencies where online travel agents can view their real-time inventory and availability through cruise booking software. We include cruise providers on a single platform where travel agents can access through cruise API to do easy online booking of cruises.", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://cruise.p.rapidapi.com/\"\nquerystring = {\"Cruise\": cruise}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"cruise.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/cruise/api.py b/toolbench/toolenv/tools/Travel/cruise/api.py new file mode 100644 index 0000000000000000000000000000000000000000..99dd4bbb083dcc78ee775c1af671b1df2475bed2 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/cruise/api.py @@ -0,0 +1,30 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def trawex_cruise_api(cruise: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This web API was created by Trawex. You can find the Trawex portal / hompage [here](https://www.trawex.com/cruise-api.php). If you need Trawex Cruise API support, you can contact support directly at contact@trawex.com, or reach out to their Twitter account at [@trawextech](https://twitter.com/trawextech). For more information, check out their [API Documentation](https://www.trawex.com/api-integration.php). The Trawex Cruise API is **not currently available on the RapidAPI marketplace**. Click "**Request this API on RapidAPI**" to let us know if you would like to access to this API. Meanwhile, you can check out the [top APIs that currently available](https://rapidapi.com/hub) for developers." + cruise: Trawex is a well-known brand to offering best in class cruise API for travel agents by which they can book cruises online in an easy manner. Our API provides an interface that connects cruise suppliers and online travel agencies where online travel agents can view their real-time inventory and availability through cruise booking software. We include cruise providers on a single platform where travel agents can access through cruise API to do easy online booking of cruises. + + """ + url = f"https://cruise.p.rapidapi.com/" + querystring = {'Cruise': cruise, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "cruise.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/demo_project.json b/toolbench/toolenv/tools/Travel/demo_project.json new file mode 100644 index 0000000000000000000000000000000000000000..b209bba2ac059870a2539004fca340a4cc05d1bb --- /dev/null +++ b/toolbench/toolenv/tools/Travel/demo_project.json @@ -0,0 +1,111 @@ +{ + "product_id": "api_05220add-94e3-48be-94a8-c5b7882bbc9e", + "tool_description": "68 Park Hills - C\u00f4ng vi\u00ean th\u01b0\u1ee3ng ngu\u1ed3n L\u1ed9c Ph\u00e1t cung c\u1ea5p d\u1ecbch v\u1ee5 c\u1eafm tr\u1ea1i, BBQ, c\u00f3 su\u1ed1i, h\u1ed3 b\u01a1i,... t\u1ed5 ch\u1ee9c teambuilding,... \nwebsite: https://68parkhills.com/\nPhone: 0903892111\n\u0110\u1ecba ch\u1ec9: C\u1ea7u U2, QL14G, th\u00f4n Ph\u00fa T\u00fac, H\u00f2a Vang, \u0110\u00e0 N\u1eb5ng\nMail: 68parkhills@gmail.com\nCompany: 68 Park Hills - C\u00f4ng vi\u00ean th\u01b0\u1ee3ng ngu\u1ed3n L\u1ed9c Ph\u00e1t\nTag: #68parkhills, #68parkhillsdn, #parkhill68, #parkhills68dn\n", + "home_url": "https://rapidapi.com/68parkhills/api/demo-project52228/", + "name": "\ud83d\udc4b Demo Project", + "title": "\ud83d\udc4b Demo Project", + "pricing": "FREE", + "tool_name": "\ud83d\udc4b Demo Project", + "score": { + "avgServiceLevel": 99, + "avgLatency": 706, + "avgSuccessRate": 49, + "popularityScore": 9.1, + "__typename": "Score" + }, + "host": "demo-project52228.p.rapidapi.com", + "api_list": [ + { + "name": "Place Order", + "url": "https://demo-project52228.p.rapidapi.com/order/{id}/place", + "description": " ", + "method": "POST", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/order/{id}/place\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/order/{id}/place\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Create Order", + "url": "https://demo-project52228.p.rapidapi.com/order/new", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/order/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/order/new\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Add to Order", + "url": "https://demo-project52228.p.rapidapi.com/order/{id}/product", + "description": " ", + "method": "POST", + "required_parameters": [ + { + "name": "id", + "type": "STRING", + "description": "", + "default": "" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/order/{id}/product\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/order/{id}/product\"\nquerystring = {\"id\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Create Product", + "url": "https://demo-project52228.p.rapidapi.com/catalog/product", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/catalog/product\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/catalog/product\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Create User (Sign Up)", + "url": "https://demo-project52228.p.rapidapi.com/auth/user", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/auth/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/auth/user\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Login", + "url": "https://demo-project52228.p.rapidapi.com/auth/login", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/auth/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://demo-project52228.p.rapidapi.com/auth/login\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"demo-project52228.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/demo_project/api.py b/toolbench/toolenv/tools/Travel/demo_project/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7ef1074adb2caa20177ca3eb85e3dfb7ea098bd6 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/demo_project/api.py @@ -0,0 +1,155 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_order(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/order/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def me(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/auth/me" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_user_orders(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/order/my" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_product(is_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/catalog/product/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_categories(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/catalog/categories" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_products(skip: int, limit: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/catalog/products" + querystring = {'skip': skip, 'limit': limit, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_products_in_category(skip: int, category: str, limit: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://demo-project17902.p.rapidapi.com/catalog/category/{category}/products" + querystring = {'skip': skip, 'limit': limit, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "demo-project17902.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/deutsche_bahn.json b/toolbench/toolenv/tools/Travel/deutsche_bahn.json new file mode 100644 index 0000000000000000000000000000000000000000..4d0892a3ec52d58dbe6068d5a15fffc800933a87 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/deutsche_bahn.json @@ -0,0 +1,155 @@ +{ + "tool_name":"Deutsche Bahn", + "tool_description":"Search stations and trips within Deutsche Bahn network. Find a train or public transport stop, search trains, trams, subway, and buses between two stations in the german railway network.. Get journey and fare data, departure and arrival times for any stop in Germany", + "title":"Deutsche Bahn", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1459, + "avgSuccessRate":88, + "popularityScore":9.5, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/3b-data-3b-data-default/api/deutsche-bahn1/", + "host":"deutsche-bahn1.p.rapidapi.com", + "api_list":[ + { + "name":"Search trips", + "url":"https://deutsche-bahn1.p.rapidapi.com/trips", + "description":"Find trips between two stations", + "method":"GET", + "required_parameters":[ + { + "name":"date", + "type":"STRING", + "description":"Travel date in format DD.MM.YYYY", + "default":"16.02.2022" + }, + { + "name":"from_id", + "type":"STRING", + "description":"Departure id", + "default":"008011201" + }, + { + "name":"passenger0_age", + "type":"NUMBER", + "description":"Age of the first passenger", + "default":"45" + }, + { + "name":"time", + "type":"TIME (24-hour HH:MM)", + "description":"Travel time", + "default":"09:00" + }, + { + "name":"to_id", + "type":"STRING", + "description":"Arrival id", + "default":"008011155" + } + ], + "optional_parameters":[ + { + "name":"passenger3_age", + "type":"NUMBER", + "description":"Age of the fourth passenger", + "default":"" + }, + { + "name":"passenger2_discount", + "type":"ENUM", + "description":"Discount of the third passenger", + "default":"" + }, + { + "name":"passenger4_discount", + "type":"ENUM", + "description":"Discount of the fifth passenger", + "default":"" + }, + { + "name":"passenger1_discount", + "type":"ENUM", + "description":"Discount of the second passenger", + "default":"" + }, + { + "name":"passenger3_discount", + "type":"ENUM", + "description":"Discount of the fourth passenger", + "default":"" + }, + { + "name":"passenger2_age", + "type":"NUMBER", + "description":"Age of the third passenger", + "default":"" + }, + { + "name":"passenger0_discount", + "type":"ENUM", + "description":"Discount of the first passenger", + "default":"" + }, + { + "name":"passenger4_age", + "type":"NUMBER", + "description":"Age of the fifth passenger", + "default":"" + }, + { + "name":"passenger1_age", + "type":"NUMBER", + "description":"Age of the second passenger", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://deutsche-bahn1.p.rapidapi.com/trips\"\nquerystring = {\"date\": date, \"from_id\": from_id, \"passenger0_age\": passenger0_age, \"time\": time, \"to_id\": to_id}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deutsche-bahn1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{} + }, + { + "name":"Autocomplete", + "url":"https://deutsche-bahn1.p.rapidapi.com/autocomplete", + "description":"Search for train and public transport stations in Germany and across Europe", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"Query parameter", + "default":"berlin" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://deutsche-bahn1.p.rapidapi.com/autocomplete\"\nquerystring = {\"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"deutsche-bahn1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "key1":"value", + "key2":"value" + }, + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "name":{ + "type":"string" + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/deutsche_bahn/api.py b/toolbench/toolenv/tools/Travel/deutsche_bahn/api.py new file mode 100644 index 0000000000000000000000000000000000000000..43f4a93d8f9f5d7813365c5a4da8dac8d6a6dd74 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/deutsche_bahn/api.py @@ -0,0 +1,83 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_trips(date: str, from_id: str, passenger0_age: int, time: str, to_id: str, passenger3_age: int=None, passenger2_discount: str=None, passenger4_discount: str=None, passenger1_discount: str=None, passenger3_discount: str=None, passenger2_age: int=None, passenger0_discount: str=None, passenger4_age: int=None, passenger1_age: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Find trips between two stations" + date: Travel date in format DD.MM.YYYY + from_id: Departure id + passenger0_age: Age of the first passenger + time: Travel time + to_id: Arrival id + passenger3_age: Age of the fourth passenger + passenger2_discount: Discount of the third passenger + passenger4_discount: Discount of the fifth passenger + passenger1_discount: Discount of the second passenger + passenger3_discount: Discount of the fourth passenger + passenger2_age: Age of the third passenger + passenger0_discount: Discount of the first passenger + passenger4_age: Age of the fifth passenger + passenger1_age: Age of the second passenger + + """ + url = f"https://deutsche-bahn1.p.rapidapi.com/trips" + querystring = {'date': date, 'from_id': from_id, 'passenger0_age': passenger0_age, 'time': time, 'to_id': to_id, } + if passenger3_age: + querystring['passenger3_age'] = passenger3_age + if passenger2_discount: + querystring['passenger2_discount'] = passenger2_discount + if passenger4_discount: + querystring['passenger4_discount'] = passenger4_discount + if passenger1_discount: + querystring['passenger1_discount'] = passenger1_discount + if passenger3_discount: + querystring['passenger3_discount'] = passenger3_discount + if passenger2_age: + querystring['passenger2_age'] = passenger2_age + if passenger0_discount: + querystring['passenger0_discount'] = passenger0_discount + if passenger4_age: + querystring['passenger4_age'] = passenger4_age + if passenger1_age: + querystring['passenger1_age'] = passenger1_age + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "deutsche-bahn1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def autocomplete(query: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for train and public transport stations in Germany and across Europe" + query: Query parameter + + """ + url = f"https://deutsche-bahn1.p.rapidapi.com/autocomplete" + querystring = {'query': query, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "deutsche-bahn1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/distances.json b/toolbench/toolenv/tools/Travel/distances.json new file mode 100644 index 0000000000000000000000000000000000000000..3c20a566dc220489c817266fe296bdb9883cf0f8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/distances.json @@ -0,0 +1,32 @@ +{ + "product_id": "api_39b90789-3998-416c-912c-e0deb70f3a02", + "tool_description": "Calculates distance between two points specified as longitude and latitude coordinates. Returns distances in miles, kilometers, and nautical miles.", + "home_url": "https://rapidapi.com/inutil-inutil-default/api/distances1/", + "name": "Distances", + "title": "Distances", + "pricing": "FREEMIUM", + "tool_name": "Distances", + "score": { + "avgServiceLevel": 100, + "avgLatency": 440, + "avgSuccessRate": 100, + "popularityScore": 9.4, + "__typename": "Score" + }, + "host": "distances1.p.rapidapi.com", + "api_list": [ + { + "name": "calculate distance", + "url": "https://distances1.p.rapidapi.com/distance", + "description": "Enter GPS coordinates of two points, and get the distance between them in Kms, miles, and nautic miles.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://distances1.p.rapidapi.com/distance\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"distances1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://distances1.p.rapidapi.com/distance\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"distances1.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/esim_access_api.json b/toolbench/toolenv/tools/Travel/esim_access_api.json new file mode 100644 index 0000000000000000000000000000000000000000..8f41290f647a529f9702beccf8ffabcb8621c913 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/esim_access_api.json @@ -0,0 +1,199 @@ +{ + "product_id": "api_c033637f-005c-43b1-a64c-c4f049d4e7ed", + "tool_description": "Resell travel eSIMs with our API for eSIM delivery", + "home_url": "https://rapidapi.com/bryan-EgILJOihv/api/esim-access-api/", + "name": "eSIM Access API", + "title": "eSIM Access API", + "pricing": "FREE", + "tool_name": "eSIM Access API", + "score": { + "avgServiceLevel": 100, + "avgLatency": 548, + "avgSuccessRate": 100, + "popularityScore": 8.7, + "__typename": "Score" + }, + "host": "esim-access-api.p.rapidapi.com", + "api_list": [ + { + "name": "orderProfiles", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/esim/order", + "description": "Order profiles individualy or in batch. After successful ordering, the SM-DP+ server will return the `OrderNo` and allocate profiles asynchronously for the order.\n\n##### To make an order\n\n1. Provide a uniqe `transactionId` for each order. Duplicate `transactionId` will be identified as the same request.\n2. Provide the `packageCode` of the data package(s) you will order.\n3. Provide the `price` and `count` each package. Sum these for the total cost to provide the `amount`.\n \n\nA successful order will generate an `orderNo`. Query all the allocated profiles in the endpoint `/api/v1/open/esim/query`\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `transactionId` | String | mandatory | User generated unique transaction ID. Max 50 chars, utf8mb4. If the request is retired, it needs to be contained; otherwise, a new transaction will be created. | `ABC-210-2s7Fr` |\n| `amount` | Long | mandatory | Total order amount | `20000` |\n| `packageInfoList` | List | mandatory | `packageCode` `count` `price` |



|\n\n| Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `packageCode` | String | mandatory | Package ID | `JC016` |\n| `count` | Integer | mandatory | Number of packages to be ordered | `2` |\n| `price` | Integer | mandatory | Package price, value \\* 10,000 (10000 = $1.00) | `10000` |\n\n##### Response Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: success `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed. | `null` |\n| `errorMessage` | String | optional | Error code explanation | `null` |\n| `obj` | Object | optional | Includes: `orderNo` | |\n\n| Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `orderNo` | String | mandatory | Order number | `B22102010075311` |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/order\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/order\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "suspendProfile", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/esim/suspend", + "description": "Request to suspend or pause data service to an esim profile.\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `iccid` | String | required | eSIM ICCID | `89852246280001113119` |\n\n##### Response Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed | `null` |\n| `errorMessage` | String | optional | Explanation of the error code | `null` |\n| `obj` | Object | optional | Includes: `eSimList` | |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/suspend\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/suspend\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "revokeProfile", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/esim/revoke", + "description": "Request to close and remove an active eSIM and data plan.\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `iccid` | String | required | eSIM ICCID | `89852246280001113119` |\n\n##### Response Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed | `null` |\n| `errorMessage` | String | optional | Explanation of the error code | `null` |\n| `obj` | Object | optional | Includes: `eSimList` | |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/revoke\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/revoke\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "getMerchantBalance", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/balance/query", + "description": "Query the `balance` of a merchant account. Balance is used when ordering data profiles.\n\n##### Request Parameters\n\nNone.\n\n##### Reponse Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed. | `null` |\n| `errorMessage` | String | optional | Explanation of the error code | `null` |\n| `obj` | Object | optional | Includes: `balance` | |\n| Domain | Type | MOC | Description | Example |\n| `balance` | Long | mandatory | Merchant balance, expressed \\*10000 (100000 = $10.00) | `100000` |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/balance/query\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/balance/query\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "unsuspendProfile", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/esim/unsuspend", + "description": "Request to unsuspend or reactivate data service to an esim profile.\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `iccid` | String | required | eSIM ICCID | `89852246280001113119` |\n\n##### Response Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed | `null` |\n| `errorMessage` | String | optional | Explanation of the error code | `null` |\n| `obj` | Object | optional | Includes: `eSimList` | |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/unsuspend\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/unsuspend\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "get": { + "type": "string" + }, + "parameters": { + "type": "array" + }, + "errors": { + "type": "array" + }, + "results": { + "type": "integer" + }, + "response": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + { + "name": "getAllDataPackages", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/package/list", + "description": "Request a list of all the available data packages for offered. Filter by country optional.\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `locationCode` | String | optional | Filter by Alpha-2 ISO Country Code | `JP` |\n\n##### Reponse Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed. | `null` |\n| `errorMessage` | String | optional | Error code explanation | `null` |\n| `obj` | Object | optional | `null` : failed. Success includes: `packageList` | |\n\n| Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `packageList` | List | mandatory | Available data packages, including: `packageCode` `name` `price` `currencyCode` `volume` `unusedValidTime` `duration` `durationUnit` `location` `description` `activeType` | |\n| `packageCode` | String | mandatory | Package code | `JC016` |\n| `name` | String | mandatory | Package name | `Asia 11 countries 1GB 30 Days` |\n| `price` | Integer | mandatory | Package price, value \\* 10,000 (10000 = $1.00) | `10000` |\n| `currencyCode` | String | mandatory | Currency code | `USD` |\n| `volume` | Long | mandatory | Data volume (in bytes) of the package | `10485760` |\n| `unusedValidTime` | Integer | mandatory | Time till package invalid | `30` |\n| `duration` | Integer | mandatory | Plan validity peirod | `1` |\n| `durationUnit` | String | mandatory | Time unit, used in `unusedValidTime`/`duration` | `DAY` |\n| `location` | String | mandatory | Alpha-2 ISO Country Code of package use | `CN,HK,ID,JP,MO,MY,PH,SG,KR,TW,TH,IN,VN,SA,KH,PK,LK` |\n| `description` | String | mandatory | Description of the data package | `Asia 11 countries` |\n| `activeType` | Integer | mandatory | `1`. Profile installation activation `2`. First package activation | `1` |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/package/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/package/list\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "queryAllAllocatedProfiles", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/esim/query", + "description": "Query all eSIM profile details allocated to partner and their status.\n\nAvaible to filter by `orderNo` , `iccid` or between `startTime` and `endTime` range with paging options.\n\nUse `orderNo`,to request newly orderd eSIMs. The response will return the eSIM payload after all the allocated profiles are asynchronously allocated by the server. Expect times wait times of up to 30 seconds.\n\nUse `iccid` to request the status of an eSIM including it's current `orderUsage` and `eSIMStatus`.\n\nIf the profiles are not ready for download, the error will be returned (error code will be `200010`, meaning SM-DP+ is still allocating profiles for the order).\n\n##### Understanding eSIM Profile Status\n\nResults of several paramaters can identify the current state of any eSIM profile. For example:\n\n| **eSIM Status** | `smdpStatus` | `esimStatus` | `orderUsage` | `eid` |\n| --- | --- | --- | --- | --- |\n| **Not Installed** | `RELEASED` | `GOT_RESOURCE` | `0` | `\"\"` |\n| **Just Installed** | `ENABLED` | `IN_USE` | `0` | `\"890\u2026222\"` |\n| **In Use** | `ENABLED` | `IN_USE` | `123` | `\"890\u2026222\"` |\n| **Data Consumed** | `ENABLED` | `USED_UP` | `999` | `\"890\u2026222\"` |\n| **Deleted** | `DELETED` | `USED_UP` | `999` | `\"890\u2026222\"` |\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `orderNo` | String | optional | Order number | `B2210206381924` |\n| `iccid` | String | optional | eSIM ICCID | `89852246280001113119` |\n| `startTime` | String | optional | Starting time (ISO UTC time) | `2010-06-30T01:20+00:00` |\n| `endTime` | String | optional | End time (ISO UTC time) | `2010-06-30T02:20+00:00` |\n| `pager` | PageParam | mandatory | Page parameters: `pageSize` `pageNum` | |\n\n| Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `pageSize` | Integer | mandatory | Page size, value range: \\[5, 500\\] | `10` |\n| `pageNum` | Integer | mandatory | Page number, value range: \\[1, 10000\\] | `1` |\n\n##### Response Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed | `null` |\n| `errorMessage` | String | optional | Explanation of the error code | `null` |\n| `obj` | Object | optional | Includes: `eSimList` `pager` | |\n\n| Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `pager` | PageParam | mandatory | Includes: `pageSize` `pageNum` | |\n| `eSimList` | List | mandatory | List of eSIM Profiles, including: `eSimTranNo` `orderNo` `imsi` `iccid` `ac` `qrCodeUrl` `smdpStatus` `eid` `activeType` `expiredTime` `totalVolume` `totalDuration` `durationUnit` `orderUsage` `eSimStatus` `packageList` | |\n\n| PageParam Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `pageSize` | Integer | mandatory | Page size, range: \\[5, 500\\] | `10` |\n| `pageNum` | Integer | mandatory | Page number, value range: \\[1, 10000\\] | `1` |\n| `total` | Long | mandatory | Total number of Profiles | `120` |\n\n| eSIM Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `eSimTranNo` | String | mandatory | eSIM transaction number | `22102706381912` |\n| `orderNo` | String | mandatory | Order number | `B22102706381924` |\n| `imsi` | String | mandatory | IMSI | `454006109846571` |\n| `iccid` | String | mandatory | ICCID | `89852245280000942210` |\n| `ac` | String | mandatory | eSIM Activation Code
LPA:1${SM-DP+_ADDRESS}${MATCHING_ID} | `LPA:1$rsp-eu.redteamobile.com$451F9802E6854E3E85FB985235EDB4E5` |\n| `qrCodeUrl` | String | mandatory | QR Code URL | [`http://static.redtea.io//hedy/qrcodes/image/d6dbada5054a4dfeb941e601327a4b42.png`](http://static.redtea.io//hedy/qrcodes/image/d6dbada5054a4dfeb941e601327a4b42.png) |\n| `smdpStatus` | String | mandatory | SM-DP+ status: `RELEASE`: Profile is ready for download `DOWNLOAD`: Profile has been downloaded `INSTALLATION`: Profile has been installed `ENABLED`: Profile has been enabled `DISABLED`: Profile has been disabled `DELETED`: Profile has been deleted | `RELEASED` |\n| `eid` | String | optional | EID | |\n| `activeType` | String | mandatory | Activation type: `0`: Unactivated `1`: Profile installation `2`: Frist package activation | `1` |\n| `expiredTime` | DateTime | mandatory | Expiration time | `2023-03-03T06:20:00+0000` |\n| `totalVolume` | Long | mandatory | Total data volume (in bytes) in the package | `1073741824` |\n| `totalDuration` | Integer | mandatory | Total valid period of the package | `7` |\n| `durationUnit` | String | mandatory | Time unit | `DAY` |\n| `orderUsage` | Long | mandatory | Volume (in bytes) of used data | `0` |\n| `eSimStatus` | String | mandatory | `CREATE`: an order has been created `PAYING`: the subscriber is making payment for the eSIM `PAID`: the eSIM has been paid `GETTING_RESOURCE`: the eSIM is being allocated for the order `GOT_RESOURCE`: the eSIM has been allocated for the order `IN_USE`: the eSIM data package is in use `USED_UP`: the data in the package is used up `UNUSED_EXPIRED`: The valid period for eSIM download has expired `USED_EXPIRED`: the valid period for the order activation has expired `CANCEL`: the order has been canceled | `UNUSED_EXPIRED` |\n| `packageList` | List | mandatory | Includes: `packageCode` `duration` `volume` `locationCode` | |\n\n| eSIM Domain | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `packageCode` | String | mandatory | Package ID | `CKH179` |\n| `duration` | Integer | mandatory | Valid period of the order | `7` |\n| `volume` | Long | mandatory | Data volume (in bytes) in the order | `1073741824` |\n| `locationCode` | String | mandatory | Country code of plan | `JP` |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/query\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/query\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + }, + { + "name": "cancelProfile", + "url": "https://esim-access-api.p.rapidapi.com/api/v1/open/esim/cancel", + "description": "Cancel an inactive eSIM profile removing all information associated with it.\n\nThis operation is avaialbe when `esimStatus` is `GOT_RESOURCE` and `smdpStatus` is `RELEASED` meaning the eSIM was created, but not installed on a device.\n\nCancel endpoint not possible once user installed the eSIM.\n\n##### Request Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `iccid` | String | required | eSIM ICCID | `89852246280001113119` |\n\n##### Response Parameters\n\n| Name | Type | MOC | Description | Example |\n| --- | --- | --- | --- | --- |\n| `success` | String | mandatory | `true`: succeeded `false`: failed | `true` |\n| `errorCode` | String | optional | `null` or `0` when successful. Error code when failed | `null` |\n| `errorMessage` | String | optional | Explanation of the error code | `null` |\n| `obj` | Object | optional | Includes: `eSimList` | |", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/cancel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://esim-access-api.p.rapidapi.com/api/v1/open/esim/cancel\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"esim-access-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/evercam_public_cameras/api.py b/toolbench/toolenv/tools/Travel/evercam_public_cameras/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5bd09e94b56f394eff61e3cd418f75b09a8f45cd --- /dev/null +++ b/toolbench/toolenv/tools/Travel/evercam_public_cameras/api.py @@ -0,0 +1,119 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def live_base64_jpg_image(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns live, base64 encoded, jpg from the camera." + id: Camera id to get the live image for + + """ + url = f"https://marcoherbst-evercam-public-cameras.p.rapidapi.com/cameras/{is_id}/live.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "marcoherbst-evercam-public-cameras.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def live_jpg_image(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns live jpg from the camera." + id: Camera id to get the live image for + + """ + url = f"https://marcoherbst-evercam-public-cameras.p.rapidapi.com/cameras/{is_id}/snapshot.jpg" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "marcoherbst-evercam-public-cameras.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def camera_information(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns all data for a given camera." + id: Camera id to get data for + + """ + url = f"https://marcoherbst-evercam-public-cameras.p.rapidapi.com/cameras/{is_id}.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "marcoherbst-evercam-public-cameras.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def public_cameras(id_contains: str=None, id_ends_with: str=None, id_starts_with: str=None, is_near_to: str=None, within_distance: int=None, case_sensitive: bool=None, limit: int=100, offset: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Fetch a list of publicly discoverable cameras from within the Evercam system." + id_contains: Search for cameras whose id contain the given value + id_ends_with: Search for cameras whose id ends with the given value + id_starts_with: Search for cameras whose id starts with the given value + is_near_to: Search for cameras within 1000 meters of a given address or longitude latitiude point + within_distance: Search for cameras within a greater range of the specified is_near_to point in meters + case_sensitive: Whether search terms are case sensitive + limit: Maximum number of results. Defaults to 100, can't be more than 1000 + offset: Offset into the search results Defaults to 0 + + """ + url = f"https://marcoherbst-evercam-public-cameras.p.rapidapi.com/public/cameras.json" + querystring = {} + if id_contains: + querystring['id_contains'] = id_contains + if id_ends_with: + querystring['id_ends_with'] = id_ends_with + if id_starts_with: + querystring['id_starts_with'] = id_starts_with + if is_near_to: + querystring['is_near_to'] = is_near_to + if within_distance: + querystring['within_distance'] = within_distance + if case_sensitive: + querystring['case_sensitive'] = case_sensitive + if limit: + querystring['limit'] = limit + if offset: + querystring['offset'] = offset + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "marcoherbst-evercam-public-cameras.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/exampleapi2.json b/toolbench/toolenv/tools/Travel/exampleapi2.json new file mode 100644 index 0000000000000000000000000000000000000000..ccffc6b412747362b7613a6a1bb34c8144afed32 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/exampleapi2.json @@ -0,0 +1,62 @@ +{ + "tool_name": "exampleapi2", + "tool_description": "this is a test api", + "title": "exampleapi2", + "pricing": "FREEMIUM", + "score": null, + "home_url": "https://rapidapi.com/piotrt/api/exampleapi21/", + "host": "exampleapi21.p.rapidapi.com", + "api_list": [ + { + "name": "1", + "url": "https://exampleapi21.p.rapidapi.com/1", + "description": "1", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "sds", + "type": "STRING", + "description": "", + "default": "sds" + } + ], + "code": "import requests\n\nurl = \"https://exampleapi21.p.rapidapi.com/1\"\nquerystring = {\"sds\": sds}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"exampleapi21.p.rapidapi.com\"\n}\n\nresponse = requests.post(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "2", + "url": "https://exampleapi21.p.rapidapi.com/", + "description": "new endpoint to test", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://exampleapi21.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"exampleapi21.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode": 111, + "body": "", + "headers": "", + "schema": "" + }, + { + "name": "1", + "url": "https://exampleapi21.p.rapidapi.com/1", + "description": "1", + "method": "POST", + "required_parameters": [], + "optional_parameters": [ + { + "name": "sds", + "type": "STRING", + "description": "", + "default": "sds" + } + ], + "code": "import requests\n\nurl = \"https://exampleapi21.p.rapidapi.com/1\"\nquerystring = {\"sds\": \"sds\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"exampleapi21.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://exampleapi21.p.rapidapi.com/1\"\nquerystring = {\"sds\": \"sds\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"exampleapi21.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/exampleapi2/api.py b/toolbench/toolenv/tools/Travel/exampleapi2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..e702e57cdada9c40dc8697cc3933187e5d1b4e17 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/exampleapi2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_2(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "new endpoint to test" + + """ + url = f"https://exampleapi21.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "exampleapi21.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight/api.py b/toolbench/toolenv/tools/Travel/flight/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0ce66c59e1b49fe1055b0321fcb49543b3fa8c77 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight/api.py @@ -0,0 +1,35 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flightapi(to: str=None, date: str=None, is_from: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "to provide flight info" + + """ + url = f"https://flight54.p.rapidapi.com/" + querystring = {} + if to: + querystring['To'] = to + if date: + querystring['date'] = date + if is_from: + querystring['from'] = is_from + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight54.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_airline_consolidator_flight_aggregator.json b/toolbench/toolenv/tools/Travel/flight_airline_consolidator_flight_aggregator.json new file mode 100644 index 0000000000000000000000000000000000000000..e0bfa5bf02ceb0ffb15cccd141a623edfd91e627 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_airline_consolidator_flight_aggregator.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Flight , Airline Consolidator, Flight Aggregator", + "tool_description":"FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "title":"Flight , Airline Consolidator, Flight Aggregator", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mohammadjaved/api/flight-airline-consolidator-flight-aggregator/", + "host":"flight-airline-consolidator-flight-aggregator.p.rapidapi.com", + "api_list":[ + { + "name":"Flight aggregator", + "url":"https://flight-airline-consolidator-flight-aggregator.p.rapidapi.comhttps://flightslogic.com", + "description":"FlightsLogic Global Airfare APIs connect you to the finest information in the travel industry. You can now build, innovate and launch your web and Mobile applications with our Flight API. Inspirational search features combine our Global Airfare APIs with your existing travel offering to complement your product range.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-airline-consolidator-flight-aggregator.p.rapidapi.comhttps://flightslogic.com\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-airline-consolidator-flight-aggregator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_airline_consolidator_flight_aggregator/api.py b/toolbench/toolenv/tools/Travel/flight_airline_consolidator_flight_aggregator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a52262e272df82241a366a79b70833cbf152e96a --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_airline_consolidator_flight_aggregator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight_aggregator(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic Global Airfare APIs connect you to the finest information in the travel industry. You can now build, innovate and launch your web and Mobile applications with our Flight API. Inspirational search features combine our Global Airfare APIs with your existing travel offering to complement your product range." + + """ + url = f"https://flight-airline-consolidator-flight-aggregator.p.rapidapi.comhttps://flightslogic.com" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-airline-consolidator-flight-aggregator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_booking_software.json b/toolbench/toolenv/tools/Travel/flight_booking_software.json new file mode 100644 index 0000000000000000000000000000000000000000..f8cf8e42ca65040ffdba527401644e00d5d8d567 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_booking_software.json @@ -0,0 +1,30 @@ +{ + "tool_name":"Flight Booking Software", + "tool_description":"Flightsreservationsystem provides Flight Booking Software, Air Booking Engine, Air Ticket System to the global travel industries. For more details, please visit our website: https://www.flightsreservationsystem.com/flight-booking-software", + "title":"Flight Booking Software", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":945, + "avgSuccessRate":100, + "popularityScore":9.4, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/anna23faris/api/flight-booking-software1/", + "host":"flight-booking-software1.p.rapidapi.com", + "api_list":[ + { + "name":"Flight Booking Software", + "url":"https://flight-booking-software1.p.rapidapi.com/", + "description":"Flightsreservationsystem provides Flight Booking Software, Air Booking Engine, Air Ticket System to the global travel industries. For more details, please visit our website: https://www.flightsreservationsystem.com/flight-booking-software", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-booking-software1.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-booking-software1.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_booking_software/api.py b/toolbench/toolenv/tools/Travel/flight_booking_software/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f921b575e88149da4bedad46f5ad270126050059 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_booking_software/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight_booking_software(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Flightsreservationsystem provides Flight Booking Software, Air Booking Engine, Air Ticket System to the global travel industries. For more details, please visit our website: https://www.flightsreservationsystem.com/flight-booking-software" + + """ + url = f"https://flight-booking-software1.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-booking-software1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_bookings.json b/toolbench/toolenv/tools/Travel/flight_bookings.json new file mode 100644 index 0000000000000000000000000000000000000000..1f51cd61f172dbd5514d0ec336c9449b49b86968 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_bookings.json @@ -0,0 +1,71 @@ +{ + "product_id": "5920bd30e4b022adcbbd7407", + "tool_description": "We're providing developer-friendly API's to major low cost and full service carriers with capabilities to search, price and book flights realtime. We directly dive into the inventory of airlines and GDS partners.", + "home_url": "https://rapidapi.com/airhob/api/flight-bookings/", + "name": "Flight Bookings", + "title": "Flight Bookings", + "pricing": "FREEMIUM", + "tool_name": "Flight Bookings", + "score": { + "avgServiceLevel": 75, + "avgLatency": 33676, + "avgSuccessRate": 0, + "popularityScore": 0.1, + "__typename": "Score" + }, + "host": "airhob-api.p.rapidapi.com", + "api_list": [ + { + "name": "/sandboxapi/flights/v1.1/search", + "url": "https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1.1/search", + "description": "", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1.1/search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1.1/search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Look", + "url": "https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/look", + "description": "", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/look\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/look\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Price", + "url": "https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/price", + "description": "This API is used for locking the flight price and storing the traveler information to create a PNR (Passenger Name Record).", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/price\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/price\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Issue", + "url": "https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/issue", + "description": "This API is used for finally issuing the ticket and creating the ticket number for each traveler.", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/issue\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://airhob-api.p.rapidapi.com/sandboxapi/flights/v1/issue\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"airhob-api.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_data/api.py b/toolbench/toolenv/tools/Travel/flight_data/api.py new file mode 100644 index 0000000000000000000000000000000000000000..222374136c2a8c69ba5f7c63da21712aff4ce7ae --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_data/api.py @@ -0,0 +1,122 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_flights_by_airline(airline: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return list of live flights by the given airline code. + Visit our [demo site](https://core-api.net/flight/map.html)." + airline: International airline code in ICAO format. +e.g SIA for Singapore Airline + + """ + url = f"https://flight-data4.p.rapidapi.com/get_airline_flights" + querystring = {'airline': airline, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-data4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_aircraft_photo(image: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Pass the image name which return by "Get Flight Info" method as parameter to get aircraft photo. + *Image might not be display correctly here due to base64 issue of Test Endpoint, but it work indeed.*" + image: Image name return by "Get Flight Info" method. + + """ + url = f"https://flight-data4.p.rapidapi.com/get_aircraft_photo" + querystring = {'image': image, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-data4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_flights_in_area(longitude: int, latitude: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return all flights that within 500 km in radius by the given coordinates. + Visit our [demo site](https://core-api.net/flight/map.html)." + + """ + url = f"https://flight-data4.p.rapidapi.com/get_area_flights" + querystring = {'longitude': longitude, 'latitude': latitude, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-data4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_flight_info(flight: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return live flight information for given IATA number. + Visit our [demo site](https://core-api.net/flight/map.html)." + flight: Flight number in IATA format. + + """ + url = f"https://flight-data4.p.rapidapi.com/get_flight_info" + querystring = {'flight': flight, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-data4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_flights(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Return all current globally active flights on earth. + Visit our [demo site](https://core-api.net/flight/map.html)." + + """ + url = f"https://flight-data4.p.rapidapi.com/get_all_flights" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-data4.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_data_v2.json b/toolbench/toolenv/tools/Travel/flight_data_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..ecce7c480a2428bbe9a5f543afd33f2e4ea10977 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_data_v2.json @@ -0,0 +1,593 @@ +{ + "product_id": "57f1ff38e4b0036abc9166f2", + "tool_description": "Travelpayouts Data API \u2013 the way to get travel insights for your site or blog. Get flight price trends and find popular destinations for your customers.", + "home_url": "https://rapidapi.com/Travelpayouts/api/flight-data/", + "name": "Flight Data_v2", + "title": "Flight Data", + "pricing": "FREE", + "tool_name": "Flight Data_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 875, + "avgSuccessRate": 81, + "popularityScore": 9.8, + "__typename": "Score" + }, + "host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com", + "api_list": [ + { + "name": "The prices for the alternative directions", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/nearest-places-matrix", + "description": "Brings the prices for the directions between the nearest to the target cities back.", + "method": "GET", + "required_parameters": [ + { + "name": "origin", + "type": "STRING", + "description": "the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols", + "default": "LED" + }, + { + "name": "destination", + "type": "STRING", + "description": "the point of destination. The IATA city code or the country code. The length - from 2 to 3 symbols", + "default": "MOW" + } + ], + "optional_parameters": [ + { + "name": "flexibility", + "type": "STRING", + "description": "expansion of the range of dates upward or downward. The value may vary from 0 to 7, where 0 shall show the variants for the dates specified, 7 \u2013 all the variants found for a week prior to the specified dates and a week after", + "default": "0" + }, + { + "name": "currency", + "type": "STRING", + "description": "the airline tickets currency", + "default": "RUB" + }, + { + "name": "depart_date", + "type": "STRING", + "description": "day or month of departure", + "default": "" + }, + { + "name": "return_date", + "type": "STRING", + "description": "day or month of return", + "default": "" + }, + { + "name": "show_to_affiliates", + "type": "STRING", + "description": "false - all the prices, true - just the prices, found using the partner marker (recommended)", + "default": true + }, + { + "name": "limit", + "type": "STRING", + "description": "the number of variants entered, from 1 to 20. Where 1 \u2013 is just the variant with the specified points of departure and the points of destination", + "default": "10" + }, + { + "name": "distance", + "type": "STRING", + "description": "the number of variants entered, from 1 to 20. Where 1 \u2013 is just the variant with the specified points of departure and the points of destination", + "default": "100" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/nearest-places-matrix\"\nquerystring = {\"flexibility\": \"0\", \"currency\": \"RUB\", \"depart_date\": \"\", \"return_date\": \"\", \"origin\": \"LED\", \"destination\": \"MOW\", \"show_to_affiliates\": true, \"limit\": \"10\", \"distance\": \"100\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/nearest-places-matrix\"\nquerystring = {\"flexibility\": \"0\", \"currency\": \"RUB\", \"depart_date\": \"\", \"return_date\": \"\", \"origin\": \"LED\", \"destination\": \"MOW\", \"show_to_affiliates\": true, \"limit\": \"10\", \"distance\": \"100\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Non-stop tickets", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/direct/", + "description": "Returns the cheapest non-stop tickets for the selected route with departure/return date filters.", + "method": "GET", + "required_parameters": [ + { + "name": "destination", + "type": "STRING", + "description": "IATA code of the destination city (for all routes, enter \u201c-\u201d). The IATA code is shown in uppercase letters, for example", + "default": "LED" + }, + { + "name": "origin", + "type": "STRING", + "description": "IATA code of the departure city. The IATA code is shown in uppercase letters, for example", + "default": "MOW" + } + ], + "optional_parameters": [ + { + "name": "return_date", + "type": "STRING", + "description": "a month of return (yyyy-mm)", + "default": "" + }, + { + "name": "depart_date", + "type": "STRING", + "description": "a month of departure (yyyy-mm)", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/direct/\"\nquerystring = {\"destination\": \"LED\", \"return_date\": \"\", \"origin\": \"MOW\", \"depart_date\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/direct/\"\nquerystring = {\"destination\": \"LED\", \"return_date\": \"\", \"origin\": \"MOW\", \"depart_date\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "The popular directions from a city", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/city-directions", + "description": "Brings the most popular directions from a specified city back.", + "method": "GET", + "required_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "the airline tickets currency", + "default": "RUB" + }, + { + "name": "origin", + "type": "STRING", + "description": "the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols.", + "default": "MOW" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/city-directions\"\nquerystring = {\"currency\": \"RUB\", \"origin\": \"MOW\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/city-directions\"\nquerystring = {\"currency\": \"RUB\", \"origin\": \"MOW\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Airline data in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/airlines.json", + "description": "API returns a file with a list of airlines from the database", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/airlines.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/airlines.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "The calendar of prices for a month", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/month-matrix", + "description": "Brings the prices for each day of a month, grouped together by the number of transfers, back", + "method": "GET", + "required_parameters": [ + { + "name": "destination", + "type": "STRING", + "description": "the point of destination. The IATA city code or the country code. The length - from 2 to 3 symbols. Note! If the point of departure and the point of destination are not specified, then the API shall bring 30 the most cheapest tickets, which have been found during the recent 48 hours, back.", + "default": "MOW" + }, + { + "name": "origin", + "type": "STRING", + "description": "the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols", + "default": "LED" + } + ], + "optional_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "the airline tickets currency", + "default": "" + }, + { + "name": "month", + "type": "STRING", + "description": "the beginning of the month in the YYYY-MM-DD format", + "default": "" + }, + { + "name": "show_to_affiliates", + "type": "STRING", + "description": "false - all the prices, true - just the prices, found using the partner marker (recommended). The default value - true.", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/month-matrix\"\nquerystring = {\"destination\": \"MOW\", \"currency\": \"\", \"origin\": \"LED\", \"month\": \"\", \"show_to_affiliates\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/month-matrix\"\nquerystring = {\"destination\": \"MOW\", \"currency\": \"\", \"origin\": \"LED\", \"month\": \"\", \"show_to_affiliates\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Airplane data in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/planes.json", + "description": "API returns a file with a list of airplanes from the database", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/planes.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/planes.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Popular airline routes", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/airline-directions", + "description": "Returns routes for which an airline operates flights, sorted by popularity.", + "method": "GET", + "required_parameters": [ + { + "name": "airline_code", + "type": "STRING", + "description": "IATA code of airline", + "default": "SU" + } + ], + "optional_parameters": [ + { + "name": "limit", + "type": "NUMBER", + "description": "records limit per page. Default value is 100. Not less than 1000", + "default": "100" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/airline-directions\"\nquerystring = {\"airline_code\": \"SU\", \"limit\": \"100\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/airline-directions\"\nquerystring = {\"airline_code\": \"SU\", \"limit\": \"100\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "City data in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/cities.json", + "description": "API returns a file with a list of cities from the database", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/cities.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/cities.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Tickets for each day of month", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/calendar", + "description": "Returns the cheapest non-stop, one-stop, and two-stop flights for the selected route for each day of the selected month", + "method": "GET", + "required_parameters": [ + { + "name": "calendar_type", + "type": "STRING", + "description": "field used to build the calendar. Equal to either: departure_date or return_date", + "default": "departure_date" + }, + { + "name": "destination", + "type": "STRING", + "description": "IATA code of destination city. IATA code is shown by uppercase letters, for example LED", + "default": "BCN" + }, + { + "name": "origin", + "type": "STRING", + "description": "IATA code of departure city. IATA code is shown by uppercase letters, for example MOW", + "default": "MOW" + }, + { + "name": "depart_date", + "type": "DATE (YYYY-MM-DD)", + "description": "day or month of departure", + "default": "2020-06" + } + ], + "optional_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "currency of prices", + "default": "RUB" + }, + { + "name": "return_date", + "type": "DATE (YYYY-MM-DD)", + "description": "day or month of return. Pay attention! If the return_date is not specified, you will get the \"One way\" flights", + "default": "" + }, + { + "name": "length", + "type": "STRING", + "description": "length of stay in the destination city", + "default": "None" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/calendar\"\nquerystring = {\"calendar_type\": \"departure_date\", \"currency\": \"RUB\", \"return_date\": \"\", \"destination\": \"BCN\", \"origin\": \"MOW\", \"length\": \"None\", \"depart_date\": \"2020-06\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/calendar\"\nquerystring = {\"calendar_type\": \"departure_date\", \"currency\": \"RUB\", \"return_date\": \"\", \"destination\": \"BCN\", \"origin\": \"MOW\", \"length\": \"None\", \"depart_date\": \"2020-06\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Alliance data in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/airlines_alliances.json", + "description": "API returns a file with a list of alliances from the database", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/airlines_alliances.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/airlines_alliances.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Special offers", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/special-offers", + "description": "Brings the recent special offers from the airline companies back in the .XML format.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/special-offers\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/special-offers\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "The prices for the airline tickets", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/latest", + "description": "Brings back to the list of prices, found by our users during the recent 48 hours according to the filters used.", + "method": "GET", + "required_parameters": [ + { + "name": "destination", + "type": "STRING", + "description": "the point of destination. The IATA city code or the country code", + "default": "LED" + }, + { + "name": "origin", + "type": "STRING", + "description": "the point of departure. The IATA city code or the country code", + "default": "MOW" + }, + { + "name": "period_type", + "type": "STRING", + "description": "the period, for which the tickets have been found (the required parameter)", + "default": "year" + } + ], + "optional_parameters": [ + { + "name": "one_way", + "type": "STRING", + "description": "true \u2014 one way, false \u2014 back-to-back.", + "default": " " + }, + { + "name": "show_to_affiliates", + "type": "NUMBER", + "description": "false \u2014 all the prices, true \u2014 just the prices, found using the partner marker (recommended)", + "default": true + }, + { + "name": "trip_duration", + "type": "NUMBER", + "description": "the length of stay in weeks or days (for period_type=day)", + "default": "" + }, + { + "name": "trip_class", + "type": "NUMBER", + "description": "trip_class. 0 \u2014 The economy class (the default value); 1 \u2014 The business class; 2 \u2014 The first class.", + "default": "0" + }, + { + "name": "beginning_of_period", + "type": "STRING", + "description": "the beginning of the period, within which the dates of departure fall (in the YYYY-MM-DD format, for example, 2016-05-01). Must be specified if period_type is equal to month", + "default": "" + }, + { + "name": "currency", + "type": "STRING", + "description": "the airline tickets currency", + "default": "RUB" + }, + { + "name": "page", + "type": "NUMBER", + "description": "a page number", + "default": "1" + }, + { + "name": "sorting", + "type": "STRING", + "description": "the assorting of prices. price \u2014 by the price (the default value). For the directions city \u2014 city assorting by the price is possible only; route \u2014 by the popularity of a route; distance_unit_price \u2014 by the price for 1 km.", + "default": "price" + }, + { + "name": "limit", + "type": "NUMBER", + "description": "the total number of records on a page. The maximum value \u2014 1000", + "default": "30" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/latest\"\nquerystring = {\"one_way\": \" \", \"destination\": \"LED\", \"show_to_affiliates\": true, \"origin\": \"MOW\", \"trip_duration\": \"\", \"trip_class\": \"0\", \"beginning_of_period\": \"\", \"currency\": \"RUB\", \"page\": \"1\", \"period_type\": \"year\", \"sorting\": \"price\", \"limit\": \"30\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/latest\"\nquerystring = {\"one_way\": \" \", \"destination\": \"LED\", \"show_to_affiliates\": true, \"origin\": \"MOW\", \"trip_duration\": \"\", \"trip_class\": \"0\", \"beginning_of_period\": \"\", \"currency\": \"RUB\", \"page\": \"1\", \"period_type\": \"year\", \"sorting\": \"price\", \"limit\": \"30\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Airport data in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/airports.json", + "description": "API returns a file with a list of airports from the database", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/airports.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/airports.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "The calendar of prices for a week", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/week-matrix", + "description": "Brings the prices for the nearest dates to the target ones back", + "method": "GET", + "required_parameters": [ + { + "name": "origin", + "type": "STRING", + "description": "the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols", + "default": "MOW" + }, + { + "name": "destination", + "type": "STRING", + "description": "the point of destination. The IATA city code or the country code. The length - from 2 to 3 symbols", + "default": "LED" + } + ], + "optional_parameters": [ + { + "name": "return_date", + "type": "STRING", + "description": "day or month of return", + "default": "" + }, + { + "name": "depart_date", + "type": "STRING", + "description": "day or month of departure", + "default": "" + }, + { + "name": "show_to_affiliates", + "type": "STRING", + "description": "false - all the prices, true - just the prices, found using the partner marker (recommended).", + "default": "" + }, + { + "name": "currency", + "type": "STRING", + "description": "the airline tickets currency", + "default": "RUB" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/week-matrix\"\nquerystring = {\"return_date\": \"\", \"depart_date\": \"\", \"show_to_affiliates\": \"\", \"currency\": \"RUB\", \"origin\": \"MOW\", \"destination\": \"LED\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/week-matrix\"\nquerystring = {\"return_date\": \"\", \"depart_date\": \"\", \"show_to_affiliates\": \"\", \"currency\": \"RUB\", \"origin\": \"MOW\", \"destination\": \"LED\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Cheapest tickets", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/cheap", + "description": "Returns the cheapest non-stop tickets, as well as tickets with 1 or 2 stops, for the selected route with departure/return date filters. Important: Old dates may be specified in a query. No error will be generated, but no data will be returned.", + "method": "GET", + "required_parameters": [ + { + "name": "origin", + "type": "STRING", + "description": "IATA code of the departure city. IATA code is shown by uppercase letters,", + "default": "HKT" + }, + { + "name": "page", + "type": "STRING", + "description": "Is used to display the found data (by default the page displays 100 found prices. If the destination isn't selected, there can be more data. In this case, use the page, to display the next set of data, for example, page=2).", + "default": "None" + }, + { + "name": "currency", + "type": "STRING", + "description": "Currency of prices", + "default": "RUB" + } + ], + "optional_parameters": [ + { + "name": "depart_date", + "type": "STRING", + "description": "Day or month of departure", + "default": "" + }, + { + "name": "return_date", + "type": "STRING", + "description": "Day or month of return", + "default": "" + }, + { + "name": "destination", + "type": "STRING", + "description": "IATA code of the destination city (for all routes, enter \"-\"). IATA code is shown by uppercase letters", + "default": "-" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/cheap\"\nquerystring = {\"depart_date\": \"\", \"origin\": \"HKT\", \"page\": \"None\", \"currency\": \"RUB\", \"return_date\": \"\", \"destination\": \"-\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/cheap\"\nquerystring = {\"depart_date\": \"\", \"origin\": \"HKT\", \"page\": \"None\", \"currency\": \"RUB\", \"return_date\": \"\", \"destination\": \"-\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "Data of countries in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/countries.json", + "description": "API returns a file with a list of countrys from the database", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/countries.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-GB/countries.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Cheapest tickets grouped by month", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/monthly", + "description": "Returns the cheapest non-stop tickets, as well as tickets with 1 or 2 stops, for the selected route grouped by month.", + "method": "GET", + "required_parameters": [ + { + "name": "origin", + "type": "STRING", + "description": "IATA code of departure city. IATA code is shown by uppercase letters, for example MOW", + "default": "LED" + }, + { + "name": "destination", + "type": "STRING", + "description": "IATA code of destination city. IATA code is shown by uppercase letters, for example LED", + "default": " MOW" + } + ], + "optional_parameters": [ + { + "name": "currency", + "type": "STRING", + "description": "currency of prices", + "default": "RUB" + }, + { + "name": "length", + "type": "STRING", + "description": "length of stay in the destination city", + "default": "3" + }, + { + "name": "depart_date", + "type": "STRING", + "description": "day or month of departure", + "default": "" + }, + { + "name": "return_date", + "type": "STRING", + "description": "day or month of return. Pay attention! If the return_date is not specified, you will get the \"One way\" flights", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/monthly\"\nquerystring = {\"origin\": \"LED\", \"destination\": \" MOW\", \"currency\": \"RUB\", \"length\": \"3\", \"depart_date\": \"\", \"return_date\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/monthly\"\nquerystring = {\"origin\": \"LED\", \"destination\": \" MOW\", \"currency\": \"RUB\", \"length\": \"3\", \"depart_date\": \"\", \"return_date\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "" + }, + { + "name": "Data on the routes in json format", + "url": "https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/routes.json", + "description": "The query returns a file with a list of routes from the database.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/routes.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/routes.json\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "flight_data_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_data_v2/api.py b/toolbench/toolenv/tools/Travel/flight_data_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..62fbd1aaa2a6a84bed84a35d56b5161a285054f9 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_data_v2/api.py @@ -0,0 +1,517 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def the_prices_for_the_alternative_directions(origin: str, destination: str, flexibility: str='0', currency: str='RUB', depart_date: str=None, return_date: str=None, show_to_affiliates: str='True', limit: str='10', distance: str='100', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Brings the prices for the directions between the nearest to the target cities back." + origin: the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols + destination: the point of destination. The IATA city code or the country code. The length - from 2 to 3 symbols + flexibility: expansion of the range of dates upward or downward. The value may vary from 0 to 7, where 0 shall show the variants for the dates specified, 7 – all the variants found for a week prior to the specified dates and a week after + currency: the airline tickets currency + depart_date: day or month of departure + return_date: day or month of return + show_to_affiliates: false - all the prices, true - just the prices, found using the partner marker (recommended) + limit: the number of variants entered, from 1 to 20. Where 1 – is just the variant with the specified points of departure and the points of destination + distance: the number of variants entered, from 1 to 20. Where 1 – is just the variant with the specified points of departure and the points of destination + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/nearest-places-matrix" + querystring = {'origin': origin, 'destination': destination, } + if flexibility: + querystring['flexibility'] = flexibility + if currency: + querystring['currency'] = currency + if depart_date: + querystring['depart_date'] = depart_date + if return_date: + querystring['return_date'] = return_date + if show_to_affiliates: + querystring['show_to_affiliates'] = show_to_affiliates + if limit: + querystring['limit'] = limit + if distance: + querystring['distance'] = distance + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def non_stop_tickets(destination: str, origin: str, return_date: str=None, depart_date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the cheapest non-stop tickets for the selected route with departure/return date filters." + destination: IATA code of the destination city (for all routes, enter “-”). The IATA code is shown in uppercase letters, for example + origin: IATA code of the departure city. The IATA code is shown in uppercase letters, for example + return_date: a month of return (yyyy-mm) + depart_date: a month of departure (yyyy-mm) + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/direct/" + querystring = {'destination': destination, 'origin': origin, } + if return_date: + querystring['return_date'] = return_date + if depart_date: + querystring['depart_date'] = depart_date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def the_popular_directions_from_a_city(currency: str, origin: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Brings the most popular directions from a specified city back." + currency: the airline tickets currency + origin: the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols. + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/city-directions" + querystring = {'currency': currency, 'origin': origin, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airline_data_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API returns a file with a list of airlines from the database" + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-gb/airlines.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def the_calendar_of_prices_for_a_month(destination: str, origin: str, currency: str=None, month: str=None, show_to_affiliates: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Brings the prices for each day of a month, grouped together by the number of transfers, back" + destination: the point of destination. The IATA city code or the country code. The length - from 2 to 3 symbols. Note! If the point of departure and the point of destination are not specified, then the API shall bring 30 the most cheapest tickets, which have been found during the recent 48 hours, back. + origin: the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols + currency: the airline tickets currency + month: the beginning of the month in the YYYY-MM-DD format + show_to_affiliates: false - all the prices, true - just the prices, found using the partner marker (recommended). The default value - true. + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/month-matrix" + querystring = {'destination': destination, 'origin': origin, } + if currency: + querystring['currency'] = currency + if month: + querystring['month'] = month + if show_to_affiliates: + querystring['show_to_affiliates'] = show_to_affiliates + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airplane_data_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API returns a file with a list of airplanes from the database" + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/planes.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def popular_airline_routes(airline_code: str, limit: int=100, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns routes for which an airline operates flights, sorted by popularity." + airline_code: IATA code of airline + limit: records limit per page. Default value is 100. Not less than 1000 + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/airline-directions" + querystring = {'airline_code': airline_code, } + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def city_data_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API returns a file with a list of cities from the database" + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-gb/cities.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def tickets_for_each_day_of_month(calendar_type: str, destination: str, origin: str, depart_date: str, currency: str='RUB', return_date: str=None, length: str='None', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the cheapest non-stop, one-stop, and two-stop flights for the selected route for each day of the selected month" + calendar_type: field used to build the calendar. Equal to either: departure_date or return_date + destination: IATA code of destination city. IATA code is shown by uppercase letters, for example LED + origin: IATA code of departure city. IATA code is shown by uppercase letters, for example MOW + depart_date: day or month of departure + currency: currency of prices + return_date: day or month of return. Pay attention! If the return_date is not specified, you will get the "One way" flights + length: length of stay in the destination city + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/calendar" + querystring = {'calendar_type': calendar_type, 'destination': destination, 'origin': origin, 'depart_date': depart_date, } + if currency: + querystring['currency'] = currency + if return_date: + querystring['return_date'] = return_date + if length: + querystring['length'] = length + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def alliance_data_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API returns a file with a list of alliances from the database" + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/airlines_alliances.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def special_offers(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Brings the recent special offers from the airline companies back in the .XML format." + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/special-offers" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def the_prices_for_the_airline_tickets(destination: str, origin: str, period_type: str, one_way: str=' ', show_to_affiliates: int=True, trip_duration: int=None, trip_class: int=0, beginning_of_period: str=None, currency: str='RUB', page: int=1, sorting: str='price', limit: int=30, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Brings back to the list of prices, found by our users during the recent 48 hours according to the filters used." + destination: the point of destination. The IATA city code or the country code + origin: the point of departure. The IATA city code or the country code + period_type: the period, for which the tickets have been found (the required parameter) + one_way: true — one way, false — back-to-back. + show_to_affiliates: false — all the prices, true — just the prices, found using the partner marker (recommended) + trip_duration: the length of stay in weeks or days (for period_type=day) + trip_class: trip_class. 0 — The economy class (the default value); 1 — The business class; 2 — The first class. + beginning_of_period: the beginning of the period, within which the dates of departure fall (in the YYYY-MM-DD format, for example, 2016-05-01). Must be specified if period_type is equal to month + currency: the airline tickets currency + page: a page number + sorting: the assorting of prices. price — by the price (the default value). For the directions city — city assorting by the price is possible only; route — by the popularity of a route; distance_unit_price — by the price for 1 km. + limit: the total number of records on a page. The maximum value — 1000 + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/latest" + querystring = {'destination': destination, 'origin': origin, 'period_type': period_type, } + if one_way: + querystring['one_way'] = one_way + if show_to_affiliates: + querystring['show_to_affiliates'] = show_to_affiliates + if trip_duration: + querystring['trip_duration'] = trip_duration + if trip_class: + querystring['trip_class'] = trip_class + if beginning_of_period: + querystring['beginning_of_period'] = beginning_of_period + if currency: + querystring['currency'] = currency + if page: + querystring['page'] = page + if sorting: + querystring['sorting'] = sorting + if limit: + querystring['limit'] = limit + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_data_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API returns a file with a list of airports from the database" + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-gb/airports.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def the_calendar_of_prices_for_a_week(origin: str, destination: str, return_date: str=None, depart_date: str=None, show_to_affiliates: str=None, currency: str='RUB', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Brings the prices for the nearest dates to the target ones back" + origin: the point of departure. The IATA city code or the country code. The length - from 2 to 3 symbols + destination: the point of destination. The IATA city code or the country code. The length - from 2 to 3 symbols + return_date: day or month of return + depart_date: day or month of departure + show_to_affiliates: false - all the prices, true - just the prices, found using the partner marker (recommended). + currency: the airline tickets currency + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v2/prices/week-matrix" + querystring = {'origin': origin, 'destination': destination, } + if return_date: + querystring['return_date'] = return_date + if depart_date: + querystring['depart_date'] = depart_date + if show_to_affiliates: + querystring['show_to_affiliates'] = show_to_affiliates + if currency: + querystring['currency'] = currency + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cheapest_tickets(origin: str, page: str, currency: str, depart_date: str=None, return_date: str=None, destination: str='-', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the cheapest non-stop tickets, as well as tickets with 1 or 2 stops, for the selected route with departure/return date filters. Important: Old dates may be specified in a query. No error will be generated, but no data will be returned." + origin: IATA code of the departure city. IATA code is shown by uppercase letters, + page: Is used to display the found data (by default the page displays 100 found prices. If the destination isn't selected, there can be more data. In this case, use the page, to display the next set of data, for example, page=2). + currency: Currency of prices + depart_date: Day or month of departure + return_date: Day or month of return + destination: IATA code of the destination city (for all routes, enter "-"). IATA code is shown by uppercase letters + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/cheap" + querystring = {'origin': origin, 'page': page, 'currency': currency, } + if depart_date: + querystring['depart_date'] = depart_date + if return_date: + querystring['return_date'] = return_date + if destination: + querystring['destination'] = destination + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def data_of_countries_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "API returns a file with a list of countrys from the database" + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/en-gb/countries.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cheapest_tickets_grouped_by_month(origin: str, destination: str, currency: str='RUB', length: str='3', depart_date: str=None, return_date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the cheapest non-stop tickets, as well as tickets with 1 or 2 stops, for the selected route grouped by month." + origin: IATA code of departure city. IATA code is shown by uppercase letters, for example MOW + destination: IATA code of destination city. IATA code is shown by uppercase letters, for example LED + currency: currency of prices + length: length of stay in the destination city + depart_date: day or month of departure + return_date: day or month of return. Pay attention! If the return_date is not specified, you will get the "One way" flights + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/v1/prices/monthly" + querystring = {'origin': origin, 'destination': destination, } + if currency: + querystring['currency'] = currency + if length: + querystring['length'] = length + if depart_date: + querystring['depart_date'] = depart_date + if return_date: + querystring['return_date'] = return_date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def data_on_the_routes_in_json_format(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The query returns a file with a list of routes from the database." + + """ + url = f"https://travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com/data/routes.json" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "travelpayouts-travelpayouts-flight-data-v1.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_fare_search.json b/toolbench/toolenv/tools/Travel/flight_fare_search.json new file mode 100644 index 0000000000000000000000000000000000000000..ef5812cdb3fe9c169bc252a1a21e77e3fadd01c1 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_fare_search.json @@ -0,0 +1,5798 @@ +{ + "tool_name":"Flight Fare Search", + "tool_description":"Elevate your travel game with Flight Fare Search API! Get real-time flight data, fares, and airport info for seamless travel planning. Transform your app into a powerful travel companion with Flight Fare Search.", + "title":"Flight Fare Search", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":73, + "avgLatency":3854, + "avgSuccessRate":70, + "popularityScore":9.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/farish978/api/flight-fare-search/", + "host":"flight-fare-search.p.rapidapi.com", + "api_list":[ + { + "name":"Flight Search V2", + "url":"https://flight-fare-search.p.rapidapi.com/v2/flights/", + "description":"A faster, more agile Endpoint that's used to search flights.", + "method":"GET", + "required_parameters":[ + { + "name":"to", + "type":"STRING", + "description":"", + "default":"DXB" + }, + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + }, + { + "name":"from", + "type":"STRING", + "description":"", + "default":"LHR" + }, + { + "name":"adult", + "type":"NUMBER", + "description":"", + "default":"1" + } + ], + "optional_parameters":[ + { + "name":"currency", + "type":"STRING", + "description":"", + "default":"USD" + }, + { + "name":"type", + "type":"STRING", + "description":"", + "default":"economy" + }, + { + "name":"child", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"infant", + "type":"STRING", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flight-fare-search.p.rapidapi.com/v2/flights/\"\nquerystring = {\"to\": to, \"date\": date, \"from\": is_from, \"adult\": adult, \"currency\": currency, \"type\": type}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-fare-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "status":200, + "searchData":{ + "from":"LHR", + "to":"DXB", + "date":"2022-04-04", + "type":"Economy", + "adult":1, + "child":0, + "infant":0, + "currency":"USD" + }, + "results":[ + { + "id":"5393232e72fffbd679e180aae1cd8c5a097cc95097ba5ceb49d27bde9b4190cf", + "careerCode":"RJ", + "flight_code":"RJ-112", + "flight_name":"Royal Jordanian", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T17:05:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T20:50:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "RJ-112", + "RJ-614" + ], + "duration":{ + "text":"24h 45m", + "value":1485 + }, + "stopSummary":{ + "0":{ + "airport":"AMM", + "stopDuration":995 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":390.32000000000005, + "tax":311.44, + "base":78.88000000000001 + } + }, + { + "id":"c1757cff92afa13aae0c7746ce11b72506d6184382eca8c51483440f4b6b7db4", + "careerCode":"MS", + "flight_code":"MS-778", + "flight_name":"Egyptair", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T15:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T03:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-778", + "MS-910" + ], + "duration":{ + "text":"09h 55m", + "value":595 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":125 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":518.1600000000001, + "tax":325.04, + "base":193.12 + } + }, + { + "id":"784d8adfbe473902114192af1ee898ec075dfa79bfc00c8fb8228d51f4679abf", + "careerCode":"MS", + "flight_code":"MS-780", + "flight_name":"Egyptair", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T15:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-780", + "MS-912" + ], + "duration":{ + "text":"13h 50m", + "value":830 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":350 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":520.88, + "tax":327.76000000000005, + "base":193.12 + } + }, + { + "id":"6ba3e201e4b9eb604bae49b0b5b62463805625150b99a2b15c143d5d206b9954", + "careerCode":"MS", + "flight_code":"MS-780", + "flight_name":"Egyptair", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T18:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-780", + "MS-905" + ], + "duration":{ + "text":"16h 50m", + "value":1010 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":530 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":520.88, + "tax":327.76000000000005, + "base":193.12 + } + }, + { + "id":"957028b9c4363e51a267278e68066dfed54d19e0569d3e79717e95357393d5d6", + "careerCode":"MS", + "flight_code":"MS-778", + "flight_name":"Egyptair", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T15:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T18:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-778", + "MS-905" + ], + "duration":{ + "text":"24h 00m", + "value":1440 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":960 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":520.88, + "tax":327.76000000000005, + "base":193.12 + } + }, + { + "id":"5a7044c8d0b0c4fdde7c70e53679413545f6110ea0f6d1616784ee004f310e81", + "careerCode":"MS", + "flight_code":"MS-780", + "flight_name":"Egyptair", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T03:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-780", + "MS-910" + ], + "duration":{ + "text":"26h 45m", + "value":1605 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":1135 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":520.88, + "tax":327.76000000000005, + "base":193.12 + } + }, + { + "id":"3b276667237a7fa02ace1472870cd77b0ba2cc7d7526c7b4ba0c4e333b2b246c", + "careerCode":"MS", + "flight_code":"MS-778", + "flight_name":"Egyptair", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T15:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T15:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-778", + "MS-912" + ], + "duration":{ + "text":"21h 00m", + "value":1260 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":780 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":523.6, + "tax":330.48, + "base":193.12 + } + }, + { + "id":"a2044b695f5aee01588dbd98268dfe00b0f03161697c46b082a036c9f36fa948", + "careerCode":"KL", + "flight_code":"KL-1010", + "flight_name":"KLM Royal Dutch Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T11:45:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T03:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "KL-1010", + "KL-419" + ], + "duration":{ + "text":"12h 15m", + "value":735 + }, + "stopSummary":{ + "0":{ + "airport":"RUH", + "stopDuration":75 + }, + "1":{ + "airport":"AMS", + "stopDuration":105 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":531.76, + "tax":300.56, + "base":231.20000000000002 + } + }, + { + "id":"e4b99351fbf16c8614087c71b6eb13c6268b3eb196b1807818980cafb8ef12da", + "careerCode":"AF", + "flight_code":"AF-1181", + "flight_name":"Air France", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T19:45:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1181", + "AF-662" + ], + "duration":{ + "text":"23h 50m", + "value":1430 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":945 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":534.48, + "tax":314.16, + "base":220.32000000000002 + } + }, + { + "id":"356e3516518d485ccf4f033b836c8413435543665d190114fb652126bbbfaff3", + "careerCode":"LH", + "flight_code":"LH-2477", + "flight_name":"Lufthansa", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:25:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T06:40:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-2477", + "LH-638" + ], + "duration":{ + "text":"11h 15m", + "value":675 + }, + "stopSummary":{ + "0":{ + "airport":"MUC", + "stopDuration":195 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":537.2, + "tax":303.28000000000003, + "base":233.92000000000002 + } + }, + { + "id":"918b618be3075330bb74dddf628dcdc082491850b4cf3b2a61bb7d7ba43438cd", + "careerCode":"LH", + "flight_code":"LH-2479", + "flight_name":"Lufthansa", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T17:50:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T06:40:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-2479", + "LH-638" + ], + "duration":{ + "text":"09h 50m", + "value":590 + }, + "stopSummary":{ + "0":{ + "airport":"MUC", + "stopDuration":110 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":567.12, + "tax":303.28000000000003, + "base":263.84000000000003 + } + }, + { + "id":"d55cdec094fc0ac7e74ef45d5616b98d40a53c70dbc8aafcceb3a0a6fde2b7fd", + "careerCode":"AF", + "flight_code":"AF-1681", + "flight_name":"Air France", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T09:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1681", + "AF-662" + ], + "duration":{ + "text":"10h 35m", + "value":635 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":140 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":572.5600000000001, + "tax":303.28000000000003, + "base":269.28000000000003 + } + }, + { + "id":"8749e0a5c52e6ef3c07f44cf478e6227386dd04f97beba12015324764be626f8", + "careerCode":"KL", + "flight_code":"KL-1002", + "flight_name":"KLM Royal Dutch Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T08:40:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T23:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "KL-1002", + "KL-427" + ], + "duration":{ + "text":"11h 30m", + "value":690 + }, + "stopSummary":{ + "0":{ + "airport":"AMS", + "stopDuration":210 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":575.2800000000001, + "tax":295.12, + "base":280.16 + } + }, + { + "id":"cc81ac87ad10631960204b44aee60db22d6de4d57aedf1577acaed45b9460dc9", + "careerCode":"TK", + "flight_code":"TK-1984", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T02:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1984", + "TK-758" + ], + "duration":{ + "text":"25h 15m", + "value":1515 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1025 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":591.6, + "tax":308.72, + "base":282.88 + } + }, + { + "id":"d5db693fabf1ad44db84c76230965368faaa50b6947f3fab779c78e6ed14a056", + "careerCode":"TK", + "flight_code":"TK-1972", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T18:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T02:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1972", + "TK-758" + ], + "duration":{ + "text":"29h 05m", + "value":1745 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1255 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":591.6, + "tax":308.72, + "base":282.88 + } + }, + { + "id":"08caea1fe29436a67f0e818a15edbe4f26b208af6419932525dd2157e43c53db", + "careerCode":"TK", + "flight_code":"TK-1986", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T02:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1986", + "TK-758" + ], + "duration":{ + "text":"30h 55m", + "value":1855 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1365 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":591.6, + "tax":308.72, + "base":282.88 + } + }, + { + "id":"786ded49f13bc6ad34541d8d11c87603d5f9ca42c63d5e41cc14ef6542e18100", + "careerCode":"GF", + "flight_code":"GF-06", + "flight_name":"Gulf Air", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:05:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T12:05:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "GF-06", + "GF-504" + ], + "duration":{ + "text":"11h 00m", + "value":660 + }, + "stopSummary":{ + "0":{ + "airport":"BAH", + "stopDuration":200 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":605.2, + "tax":295.12, + "base":310.08000000000004 + } + }, + { + "id":"4dcc4a9cafcc0d3f5f02b6be5345502892277e21fbbe31cbb6de7dd2fa3e8720", + "careerCode":"LH", + "flight_code":"LH-911", + "flight_name":"Lufthansa", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-911", + "LH-630" + ], + "duration":{ + "text":"27h 05m", + "value":1625 + }, + "stopSummary":{ + "0":{ + "airport":"FRA", + "stopDuration":1145 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":616.08, + "tax":322.32000000000005, + "base":293.76000000000005 + } + }, + { + "id":"12d76bb4dce9633bfa4f2ae0b117733c72f12186000a5c01a3b70a2da00bc681", + "careerCode":"GF", + "flight_code":"GF-06", + "flight_name":"Gulf Air", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:05:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T09:30:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "GF-06", + "GF-502" + ], + "duration":{ + "text":"08h 25m", + "value":505 + }, + "stopSummary":{ + "0":{ + "airport":"BAH", + "stopDuration":45 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":629.6800000000001, + "tax":295.12, + "base":334.56 + } + }, + { + "id":"b2324371d795739246a7d9c532fa41bcc1b039e078b63558b8421e6310403a66", + "careerCode":"GF", + "flight_code":"GF-02", + "flight_name":"Gulf Air", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T10:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T04:15:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "GF-02", + "GF-500" + ], + "duration":{ + "text":"15h 15m", + "value":915 + }, + "stopSummary":{ + "0":{ + "airport":"BAH", + "stopDuration":460 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":629.6800000000001, + "tax":295.12, + "base":334.56 + } + }, + { + "id":"cdccae096152b9a79075340ed8bd3291abc6d66f8bf043229e03e3bcb4b6acf9", + "careerCode":"TK", + "flight_code":"TK-1990", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T13:35:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T02:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1990", + "TK-758" + ], + "duration":{ + "text":"09h 50m", + "value":590 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":95 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":629.6800000000001, + "tax":308.72, + "base":320.96000000000004 + } + }, + { + "id":"0f15755e34554f55dd6b5cd1a54ff59fadd88aaa7e8f569d8a9a7f832d6f3944", + "careerCode":"TK", + "flight_code":"TK-1980", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T11:25:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T02:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1980", + "TK-758" + ], + "duration":{ + "text":"12h 00m", + "value":720 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":230 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":629.6800000000001, + "tax":308.72, + "base":320.96000000000004 + } + }, + { + "id":"4a1698110d33fd12b0d1a2eeddf98b545975bb0cb1f8d2cbfc10eb4931402c6d", + "careerCode":"TK", + "flight_code":"TK-1988", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:45:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T02:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1988", + "TK-758" + ], + "duration":{ + "text":"16h 40m", + "value":1000 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":505 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":629.6800000000001, + "tax":308.72, + "base":320.96000000000004 + } + }, + { + "id":"b1ac2e7602df5c3322c18df425dc16b5f2d5df34d878cd5d434f6224f1a428b9", + "careerCode":"LH", + "flight_code":"LH-903", + "flight_name":"Lufthansa", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T10:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-903", + "LH-630" + ], + "duration":{ + "text":"09h 05m", + "value":545 + }, + "stopSummary":{ + "0":{ + "airport":"FRA", + "stopDuration":65 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":651.44, + "tax":308.72, + "base":342.72 + } + }, + { + "id":"a51c25c0327864f94219c9620a31e4ebbb797e9c0b569fb908537d5d069a8f3e", + "careerCode":"AF", + "flight_code":"AF-1381", + "flight_name":"Air France", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T23:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1381", + "AF-8228", + "AF-8423" + ], + "duration":{ + "text":"13h 50m", + "value":830 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":55 + }, + "1":{ + "airport":"AMS", + "stopDuration":215 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":651.44, + "tax":316.88, + "base":334.56 + } + }, + { + "id":"85f8d6a205c31b63a5abfd15ab5e2668577814a30773d60fb8d9c2864cc4c49e", + "careerCode":"LH", + "flight_code":"LH-917", + "flight_name":"Lufthansa", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T18:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-917", + "LH-630" + ], + "duration":{ + "text":"25h 05m", + "value":1505 + }, + "stopSummary":{ + "0":{ + "airport":"FRA", + "stopDuration":1025 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":665.0400000000001, + "tax":322.32000000000005, + "base":342.72 + } + }, + { + "id":"5fd4b66aecfa1f88335e1d812626e381ed0dfa40d486f7756d54684647b59b2f", + "careerCode":"QR", + "flight_code":"QR-02", + "flight_name":"Qatar Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "QR-02", + "QR-1018" + ], + "duration":{ + "text":"20h 50m", + "value":1250 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":780 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":686.8000000000001, + "tax":322.32000000000005, + "base":364.48 + } + }, + { + "id":"d4b7625eac2fbf9e0e2bb7644e047208d33160a26e54651245f8bba39d30f1cf", + "careerCode":"EK", + "flight_code":"EK-06", + "flight_name":"Emirates", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:15:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T08:05:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "EK-06" + ], + "duration":{ + "text":"06h 50m", + "value":410 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":689.5200000000001, + "tax":259.76, + "base":429.76000000000005 + } + }, + { + "id":"f6a23f2d5917b564448b29d4a8085f196e6ec5be3b8ba423d1a7ff061c18bcb9", + "careerCode":"EK", + "flight_code":"EK-32", + "flight_name":"Emirates", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T19:50:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T05:50:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "EK-32" + ], + "duration":{ + "text":"07h 00m", + "value":420 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":689.5200000000001, + "tax":259.76, + "base":429.76000000000005 + } + }, + { + "id":"38c01a8e89f1f913c7c1a846c211e6656ff853830869adb1d00481d0ef3b8e01", + "careerCode":"BA", + "flight_code":"BA-7002", + "flight_name":"British Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-7002", + "QR-1018" + ], + "duration":{ + "text":"20h 50m", + "value":1250 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":780 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":694.96, + "tax":433.84000000000003, + "base":261.12 + } + }, + { + "id":"9a34974ab544153c9a4943f3fb693539db639f2d938ae2f575d6e015577560b5", + "careerCode":"TK", + "flight_code":"TK-1980", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T11:25:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T00:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1980", + "TK-760" + ], + "duration":{ + "text":"10h 00m", + "value":600 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":110 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"e488788ba46fac037c0b752c9851b2e6b308b8b05d84f37220d563bd21ab0383", + "careerCode":"TK", + "flight_code":"TK-1986", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T05:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1986", + "TK-762" + ], + "duration":{ + "text":"10h 25m", + "value":625 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":140 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"c111c8c4917799328f99d8f731eef67a9e3d83d19eb8d2d8e3d0058534527475", + "careerCode":"TK", + "flight_code":"TK-1990", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T13:35:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T05:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1990", + "TK-762" + ], + "duration":{ + "text":"13h 20m", + "value":800 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":310 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"8302e4b0f24eeb934637128ac5096172aaaaa53931fce660df158eecde7c4b45", + "careerCode":"TK", + "flight_code":"TK-1988", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:45:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T00:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1988", + "TK-760" + ], + "duration":{ + "text":"14h 40m", + "value":880 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":385 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"f4c63548820bbb713885844bf8321b43677b6d20e8797c8ffc5454eb30e236dd", + "careerCode":"TK", + "flight_code":"TK-1980", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T11:25:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T05:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1980", + "TK-762" + ], + "duration":{ + "text":"15h 30m", + "value":930 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":445 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"38bbe8c2f0634f2bbc00f689b695d6e06bc1539c237f5847474aa45e9758a9cd", + "careerCode":"TK", + "flight_code":"TK-1988", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:45:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T05:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1988", + "TK-762" + ], + "duration":{ + "text":"20h 10m", + "value":1210 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":720 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"64cd5e737e40a2729ad1440d93b59409ccbbb238426258e0db9c03f1865f01e0", + "careerCode":"TK", + "flight_code":"TK-1984", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T00:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1984", + "TK-760" + ], + "duration":{ + "text":"23h 15m", + "value":1395 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":905 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"a6cd1c3036fe4737054929dcd77defa0afd6dcdebdf961d0eb4114b16640aef4", + "careerCode":"TK", + "flight_code":"TK-1972", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T18:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T00:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1972", + "TK-760" + ], + "duration":{ + "text":"27h 05m", + "value":1625 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1135 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"603bac611ce4bab6059a393b8dab73ed67c5b230b97b2b7231768d598fee6f99", + "careerCode":"TK", + "flight_code":"TK-1984", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T05:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1984", + "TK-762" + ], + "duration":{ + "text":"28h 45m", + "value":1725 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1240 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"267b5a77f72f232660044ca249fcf52b4d0717565eec223cf13af85b28ae6887", + "careerCode":"TK", + "flight_code":"TK-1986", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T00:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1986", + "TK-760" + ], + "duration":{ + "text":"28h 55m", + "value":1735 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1245 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"fa314faec72567ca08d1499d6f00e0f7166861d869efcf95a8774e8b492f6178", + "careerCode":"TK", + "flight_code":"TK-1990", + "flight_name":"Turkish Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T13:35:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T00:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "TK-1990", + "TK-760" + ], + "duration":{ + "text":"31h 50m", + "value":1910 + }, + "stopSummary":{ + "0":{ + "airport":"IST", + "stopDuration":1415 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":308.72, + "base":388.96000000000004 + } + }, + { + "id":"de3098336dd525bcaff1c518ba83191a0a176c53b622fcad7c9814a896874e0c", + "careerCode":"KL", + "flight_code":"KL-1008", + "flight_name":"KLM Royal Dutch Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T09:55:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T23:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "KL-1008", + "KL-427" + ], + "duration":{ + "text":"10h 15m", + "value":615 + }, + "stopSummary":{ + "0":{ + "airport":"AMS", + "stopDuration":135 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":697.6800000000001, + "tax":295.12, + "base":402.56 + } + }, + { + "id":"7b918b5b9232cc5cb78405c1560c09ebafdf5da6ea905b966b6b8912fa4bda9e", + "careerCode":"LX", + "flight_code":"LX-317", + "flight_name":"SWISS International Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T08:40:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T21:30:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LX-317", + "LX-242" + ], + "duration":{ + "text":"09h 50m", + "value":590 + }, + "stopSummary":{ + "0":{ + "airport":"ZRH", + "stopDuration":85 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":703.12, + "tax":300.56, + "base":402.56 + } + }, + { + "id":"c0583945858e86e1430c781b502367ea6410c0ce7b0d63ccc9ecabb5c5064f8e", + "careerCode":"LX", + "flight_code":"LX-327", + "flight_name":"SWISS International Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T18:40:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:30:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LX-327", + "LX-242" + ], + "duration":{ + "text":"23h 50m", + "value":1430 + }, + "stopSummary":{ + "0":{ + "airport":"ZRH", + "stopDuration":940 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":703.12, + "tax":300.56, + "base":402.56 + } + }, + { + "id":"085fac0e1407e296f0db8147f74d0021d6dcf7d17b79d62bf1c05c7774a248cb", + "careerCode":"GF", + "flight_code":"GF-02", + "flight_name":"Gulf Air", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T10:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "GF-02", + "GF-512" + ], + "duration":{ + "text":"09h 35m", + "value":575 + }, + "stopSummary":{ + "0":{ + "airport":"BAH", + "stopDuration":110 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":708.5600000000001, + "tax":295.12, + "base":413.44000000000005 + } + }, + { + "id":"82b5592e07fef033846f7d7c27bbe326488c4404b0cf44ede6688b688a03ef1c", + "careerCode":"AF", + "flight_code":"AF-1381", + "flight_name":"Air France", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T23:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1381", + "AF-8230", + "AF-8423" + ], + "duration":{ + "text":"13h 50m", + "value":830 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":100 + }, + "1":{ + "airport":"AMS", + "stopDuration":175 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":719.44, + "tax":316.88, + "base":402.56 + } + }, + { + "id":"5fdc523db0658828d18a5679fa7ae00283b150c053c83b4c2ac74a18403e3b5e", + "careerCode":"KU", + "flight_code":"KU-102", + "flight_name":"Kuwait Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:45:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T12:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "KU-102", + "KU-671" + ], + "duration":{ + "text":"16h 25m", + "value":985 + }, + "stopSummary":{ + "0":{ + "airport":"KWI", + "stopDuration":515 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":722.1600000000001, + "tax":235.28000000000003, + "base":486.88000000000005 + } + }, + { + "id":"07b6d1a42a5119e436141f465f36f2e2a238185b358bd9e2e13aa3ebdfa79569", + "careerCode":"QR", + "flight_code":"QR-16", + "flight_name":"Qatar Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:55:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "QR-16", + "QR-1018" + ], + "duration":{ + "text":"20h 15m", + "value":1215 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":740 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":749.36, + "tax":322.32000000000005, + "base":427.04 + } + }, + { + "id":"083905948f4eeed479133b089c09cf26645158c8087b027eaf9f05cde7334921", + "careerCode":"BA", + "flight_code":"BA-7014", + "flight_name":"British Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:55:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-7014", + "QR-1018" + ], + "duration":{ + "text":"20h 15m", + "value":1215 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":740 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":760.24, + "tax":433.84000000000003, + "base":326.40000000000003 + } + }, + { + "id":"0d4518b570ae2cca11a15de4e8ffcfabd8009327e6f8a603f25e5ced5c0d9a18", + "careerCode":"LH", + "flight_code":"LH-2483", + "flight_name":"Lufthansa", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:55:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-2483", + "LH-103", + "LH-630" + ], + "duration":{ + "text":"12h 40m", + "value":760 + }, + "stopSummary":{ + "0":{ + "airport":"MUC", + "stopDuration":75 + }, + "1":{ + "airport":"FRA", + "stopDuration":130 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":782, + "tax":379.44000000000005, + "base":402.56 + } + }, + { + "id":"755d5daf292385aa55a66de5209409846b5a2d05cc1d53d5a80c6c340cc114c7", + "careerCode":"LX", + "flight_code":"LX-359", + "flight_name":"SWISS International Airlines", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T07:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T21:30:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LX-359", + "LX-2807", + "LX-242" + ], + "duration":{ + "text":"11h 30m", + "value":690 + }, + "stopSummary":{ + "0":{ + "airport":"GVA", + "stopDuration":40 + }, + "1":{ + "airport":"ZRH", + "stopDuration":110 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":784.72, + "tax":382.16, + "base":402.56 + } + }, + { + "id":"9cbd7de3ebc13a3d2252be8f8b2a5f441644d52f9a6ed660c9ee6a38a2589984", + "careerCode":"LX", + "flight_code":"LX-359", + "flight_name":"SWISS International Airlines", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T07:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T21:30:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LX-359", + "LX-2809", + "LX-242" + ], + "duration":{ + "text":"11h 30m", + "value":690 + }, + "stopSummary":{ + "0":{ + "airport":"GVA", + "stopDuration":85 + }, + "1":{ + "airport":"ZRH", + "stopDuration":65 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":784.72, + "tax":382.16, + "base":402.56 + } + }, + { + "id":"b32ae0ffb89939674d2a2ad421e2d9b4d03aa64bdd1a61e0a7dc11318faa8c1a", + "careerCode":"BA", + "flight_code":"BA-7010", + "flight_name":"British Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T08:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-7010", + "QR-1018" + ], + "duration":{ + "text":"09h 50m", + "value":590 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":115 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":790.1600000000001, + "tax":431.12, + "base":359.04 + } + }, + { + "id":"6b13ebd9effbbd89117c0bd4567a6207ff7d2ed59e27a5ff51aaa5f972c67539", + "careerCode":"EK", + "flight_code":"EK-30", + "flight_name":"Emirates", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T16:50:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T02:45:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "EK-30" + ], + "duration":{ + "text":"06h 55m", + "value":415 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":801.0400000000001, + "tax":259.76, + "base":541.2800000000001 + } + }, + { + "id":"b9b4a1ce4553baf0cf50265e583ffe1cd31075d7eb43ff23bbd7130574c0276d", + "careerCode":"EK", + "flight_code":"LH-905", + "flight_name":"Emirates", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T11:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T23:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-905", + "EK-46" + ], + "duration":{ + "text":"09h 05m", + "value":545 + }, + "stopSummary":{ + "0":{ + "airport":"FRA", + "stopDuration":70 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":814.6400000000001, + "tax":243.44000000000003, + "base":571.2 + } + }, + { + "id":"f766cd67ff290883f47d14c73d3b6849c5df6aaf8c757486cc3748a46783d05f", + "careerCode":"WY", + "flight_code":"WY-102", + "flight_name":"Oman Air", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T20:50:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:25:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "WY-102", + "WY-611" + ], + "duration":{ + "text":"21h 35m", + "value":1295 + }, + "stopSummary":{ + "0":{ + "airport":"MCT", + "stopDuration":775 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":814.6400000000001, + "tax":349.52000000000004, + "base":465.12000000000006 + } + }, + { + "id":"959b061c942854f91c16a530e6894dcfb249d67ab7b97c9538e15477a77c90c7", + "careerCode":"QR", + "flight_code":"QR-04", + "flight_name":"Qatar Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T15:05:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T03:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "QR-04", + "QR-1002" + ], + "duration":{ + "text":"09h 05m", + "value":545 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":70 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":817.36, + "tax":319.6, + "base":497.76000000000005 + } + }, + { + "id":"434c43fbb6c570a622883c9bd185d61714f9f28262da46bb413d2b13c7767c1b", + "careerCode":"LH", + "flight_code":"LH-2485", + "flight_name":"Lufthansa", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T07:25:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-2485", + "LH-103", + "LH-630" + ], + "duration":{ + "text":"12h 10m", + "value":730 + }, + "stopSummary":{ + "0":{ + "airport":"MUC", + "stopDuration":45 + }, + "1":{ + "airport":"FRA", + "stopDuration":130 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":855.44, + "tax":379.44000000000005, + "base":476.00000000000006 + } + }, + { + "id":"429d10d8fce95918b8f61b619f6baa0f81fb18e39ad2e52140bbbd4ad4a5237c", + "careerCode":"LH", + "flight_code":"LH-2485", + "flight_name":"Lufthansa", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T07:25:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "LH-2485", + "LH-105", + "LH-630" + ], + "duration":{ + "text":"12h 10m", + "value":730 + }, + "stopSummary":{ + "0":{ + "airport":"MUC", + "stopDuration":105 + }, + "1":{ + "airport":"FRA", + "stopDuration":70 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":855.44, + "tax":379.44000000000005, + "base":476.00000000000006 + } + }, + { + "id":"e1377baa1856a2b32907bd86a4327af61f0702a987187a5edba4b5e0623aa00e", + "careerCode":"ET", + "flight_code":"ET-701", + "flight_name":"Ethiopian Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T15:45:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "ET-701", + "ET-602" + ], + "duration":{ + "text":"15h 45m", + "value":945 + }, + "stopSummary":{ + "0":{ + "airport":"ADD", + "stopDuration":225 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":863.6, + "tax":363.12, + "base":500.48 + } + }, + { + "id":"4a14616974dfed0aaf1687c8330a6b9fcba810c876f3eaa15b51a66a4fd604ef", + "careerCode":"EK", + "flight_code":"EK-04", + "flight_name":"Emirates", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T20:40:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T06:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "EK-04" + ], + "duration":{ + "text":"06h 55m", + "value":415 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":877.2, + "tax":259.76, + "base":617.44 + } + }, + { + "id":"891399b850ee146ef3723302d38e994fb0760bcc9ecbb2f4cca87bca49201b09", + "careerCode":"KL", + "flight_code":"KL-1000", + "flight_name":"KLM Royal Dutch Airlines", + "stops":"2 Stops", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":null + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T22:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "KL-1000", + "KL-2007", + "KL-2286" + ], + "duration":{ + "text":"13h 05m", + "value":785 + }, + "stopSummary":{ + "0":{ + "airport":"AMS", + "stopDuration":95 + }, + "1":{ + "airport":"CDG", + "stopDuration":110 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":915.2800000000001, + "tax":327.76000000000005, + "base":587.5200000000001 + } + }, + { + "id":"1548c176983acf3458b5e5fcb33543c66090bc523bf40f4507022bb830639db3", + "careerCode":"ET", + "flight_code":"ET-701", + "flight_name":"Ethiopian Airlines", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-06T02:55:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "ET-701", + "ET-600" + ], + "duration":{ + "text":"26h 55m", + "value":1615 + }, + "stopSummary":{ + "0":{ + "airport":"ADD", + "stopDuration":900 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":934.32, + "tax":363.12, + "base":571.2 + } + }, + { + "id":"dcb52677dfe13be5b457552a828522afcececbbff3f835f90b57cbf2ff20bfe8", + "careerCode":"EK", + "flight_code":"EK-02", + "flight_name":"Emirates", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T14:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T00:20:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "EK-02" + ], + "duration":{ + "text":"07h 00m", + "value":420 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":969.6800000000001, + "tax":259.76, + "base":709.9200000000001 + } + }, + { + "id":"ca87df1da5b0c97c0e2300125a36075e58738290b79b9db0d2f30ac7f14d4b3a", + "careerCode":"QR", + "flight_code":"QR-10", + "flight_name":"Qatar Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T08:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "QR-10", + "QR-1018" + ], + "duration":{ + "text":"09h 50m", + "value":590 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":115 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":996.8800000000001, + "tax":319.6, + "base":677.2800000000001 + } + }, + { + "id":"53f80529dd9a957f7f0b57390e3b74c9c03bf6073c56e394212b432b7b93c626", + "careerCode":"QR", + "flight_code":"QR-08", + "flight_name":"Qatar Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T15:55:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T21:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "QR-08", + "QR-1018" + ], + "duration":{ + "text":"26h 15m", + "value":1575 + }, + "stopSummary":{ + "0":{ + "airport":"DOH", + "stopDuration":1100 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":999.6, + "tax":322.32000000000005, + "base":677.2800000000001 + } + }, + { + "id":"b2c3e456c5e60a950f7c0216dab522c384d46c0f277a32e727925b1da1b5158c", + "careerCode":"BA", + "flight_code":"BA-107", + "flight_name":"British Airways", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T12:50:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T23:05:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-107" + ], + "duration":{ + "text":"07h 15m", + "value":435 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1108.4, + "tax":267.92, + "base":840.48 + } + }, + { + "id":"fabb9f3fca8b067a95f4fb238695442b485fb05010ace8cb36919ce506a0e1b9", + "careerCode":"BA", + "flight_code":"BA-109", + "flight_name":"British Airways", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T21:15:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T07:30:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-109" + ], + "duration":{ + "text":"07h 15m", + "value":435 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1108.4, + "tax":267.92, + "base":840.48 + } + }, + { + "id":"a6b058ddfd29f2ee04df5bdcd94c26ce282a82abc214d83f3855cadcb3971b74", + "careerCode":"EK", + "flight_code":"EK-08", + "flight_name":"Emirates", + "stops":"Direct", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":35, + "qty":"W", + "unit":"K", + "text":"35 KG", + "refNumber":5 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T09:05:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T19:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "EK-08" + ], + "duration":{ + "text":"07h 05m", + "value":425 + }, + "stopSummary":{}, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1298.8000000000002, + "tax":259.76, + "base":1039.04 + } + }, + { + "id":"9e8aa1548c0c7e795274f9a124b2acca103ff660166b6fb7b5eef570ff26962f", + "careerCode":"EK", + "flight_code":"AF-1581", + "flight_name":"Emirates", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T11:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T00:20:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1581", + "EK-74" + ], + "duration":{ + "text":"09h 50m", + "value":590 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":105 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1578.96, + "tax":232.56000000000003, + "base":1346.4 + } + }, + { + "id":"00761327d1e3036e4b838aa9f9f1e058a28e18c181b57d80c5d57643de5c0e60", + "careerCode":"EK", + "flight_code":"AF-1281", + "flight_name":"Emirates", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T17:35:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T06:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1281", + "EK-76" + ], + "duration":{ + "text":"10h 00m", + "value":600 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":120 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1578.96, + "tax":232.56000000000003, + "base":1346.4 + } + }, + { + "id":"6c16fc011188f97990e76a7218bfc3a3793d2fc6f4c2c4477cba2de14f2cbbd3", + "careerCode":"EK", + "flight_code":"AF-1381", + "flight_name":"Emirates", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":30, + "qty":"W", + "unit":"K", + "text":"30 KG", + "refNumber":4 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T06:20:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-04T20:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "AF-1381", + "EK-72" + ], + "duration":{ + "text":"10h 40m", + "value":640 + }, + "stopSummary":{ + "0":{ + "airport":"CDG", + "stopDuration":170 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1578.96, + "tax":232.56000000000003, + "base":1346.4 + } + }, + { + "id":"33ca420b5266babc154d32609aa8de9a2427ae466ecc20c0ee80ade198bcc8b4", + "careerCode":"EK", + "flight_code":"MS-778", + "flight_name":"Emirates", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T15:00:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T07:10:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-778", + "EK-926" + ], + "duration":{ + "text":"13h 10m", + "value":790 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":290 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1766.64, + "tax":232.56000000000003, + "base":1534.0800000000002 + } + }, + { + "id":"63c501cc8aa41fd23a6934184eab8d857dcde4444a328592641f972c741c77ab", + "careerCode":"EK", + "flight_code":"MS-780", + "flight_name":"Emirates", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":2, + "qty":"N", + "unit":null, + "text":"2 PIECE", + "refNumber":2 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T22:10:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T17:35:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "MS-780", + "EK-928" + ], + "duration":{ + "text":"16h 25m", + "value":985 + }, + "stopSummary":{ + "0":{ + "airport":"CAI", + "stopDuration":495 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":1769.3600000000001, + "tax":235.28000000000003, + "base":1534.0800000000002 + } + }, + { + "id":"a96bad629d0d37e8f543e0e9bf0081b4feda9a68c6274d14a365d74936c1fe71", + "careerCode":"QF", + "flight_code":"BA-125", + "flight_name":"Qantas", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T12:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T06:00:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-125", + "QF-8836" + ], + "duration":{ + "text":"14h 30m", + "value":870 + }, + "stopSummary":{ + "0":{ + "airport":"BAH", + "stopDuration":385 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":2234.48, + "tax":319.6, + "base":1914.88 + } + }, + { + "id":"e0967b47b8c9d0e97e7154322f25cc1665881ac83a663aa450a608d3f75a5f74", + "careerCode":"BA", + "flight_code":"BA-125", + "flight_name":"British Airways", + "stops":"1 Stop", + "cabinType":"Economy", + "baggage":{ + "cabin":{ + "qty":1, + "unit":"KG", + "text":"7 KG", + "allowance":7 + }, + "checkIn":{ + "allowance":1, + "qty":"N", + "unit":null, + "text":"1 PIECE", + "refNumber":1 + } + }, + "currency":"USD", + "departureAirport":{ + "time":"2022-04-04T12:30:00", + "code":"LHR", + "tz":"Europe/London", + "timeZone":"0.00", + "type":"1", + "label":"London Heathrow Airport", + "country":{ + "label":"United Kingdom", + "code":"GB" + }, + "city":"London" + }, + "arrivalAirport":{ + "time":"2022-04-05T04:15:00", + "code":"DXB", + "tz":"Asia/Dubai", + "timeZone":"4.00", + "type":"1", + "label":"Dubai International Airport", + "country":{ + "label":"United Arab Emirates", + "code":"AE" + }, + "city":"Dubai" + }, + "path":[ + "BA-125", + "GF-500" + ], + "duration":{ + "text":"12h 45m", + "value":765 + }, + "stopSummary":{ + "0":{ + "airport":"BAH", + "stopDuration":285 + } + }, + "totals":{ + "currency":"USD", + "baggage":null, + "penalty":null, + "total":2321.52, + "tax":406.64000000000004, + "base":1914.88 + } + } + ] + }, + "headers":{ + "access-control-allow-credentials":"true", + "access-control-allow-origin":"*", + "connection":"keep-alive", + "content-length":"77189", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 03 Mar 2022 18:18:08 GMT", + "etag":"W/\"12d85-9pYjlEI7hcCrVrP0Th2wSpQITZw\"", + "server":"RapidAPI-1.2.8", + "via":"1.1 vegur", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.2.8" + }, + "schema":{ + "type":"object", + "properties":{ + "status":{ + "type":"integer" + }, + "searchData":{ + "type":"object", + "properties":{ + "from":{ + "type":"string" + }, + "to":{ + "type":"string" + }, + "date":{ + "type":"string" + }, + "type":{ + "type":"string" + }, + "adult":{ + "type":"integer" + }, + "child":{ + "type":"integer" + }, + "infant":{ + "type":"integer" + }, + "currency":{ + "type":"string" + } + } + }, + "results":{ + "type":"array", + "items":{ + "type":"object", + "properties":{ + "id":{ + "type":"string" + }, + "careerCode":{ + "type":"string" + }, + "flight_code":{ + "type":"string" + }, + "flight_name":{ + "type":"string" + }, + "stops":{ + "type":"string" + }, + "cabinType":{ + "type":"string" + }, + "baggage":{ + "type":"object" + }, + "currency":{ + "type":"string" + }, + "departureAirport":{ + "type":"object", + "properties":{ + "time":{ + "type":"string" + }, + "code":{ + "type":"string" + }, + "tz":{ + "type":"string" + }, + "timeZone":{ + "type":"string" + }, + "type":{ + "type":"string" + }, + "label":{ + "type":"string" + }, + "country":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + }, + "code":{ + "type":"string" + } + } + }, + "city":{ + "type":"string" + } + } + }, + "arrivalAirport":{ + "type":"object", + "properties":{ + "time":{ + "type":"string" + }, + "code":{ + "type":"string" + }, + "tz":{ + "type":"string" + }, + "timeZone":{ + "type":"string" + }, + "type":{ + "type":"string" + }, + "label":{ + "type":"string" + }, + "country":{ + "type":"object", + "properties":{ + "label":{ + "type":"string" + }, + "code":{ + "type":"string" + } + } + }, + "city":{ + "type":"string" + } + } + }, + "path":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "duration":{ + "type":"object", + "properties":{ + "text":{ + "type":"string" + }, + "value":{ + "type":"integer" + } + } + }, + "stopSummary":{ + "type":"object" + }, + "totals":{ + "type":"object", + "properties":{ + "currency":{ + "type":"string" + }, + "baggage":{ + "type":"null" + }, + "penalty":{ + "type":"null" + }, + "total":{ + "type":"number" + }, + "tax":{ + "type":"number" + }, + "base":{ + "type":"number" + } + } + } + } + } + } + } + } + }, + { + "name":"Airport Arrivals", + "url":"https://flight-fare-search.p.rapidapi.com/v2/airport/arrivals", + "description":"An Endpoint to fetch Arrivals on a given date", + "method":"GET", + "required_parameters":[ + { + "name":"airportCode", + "type":"STRING", + "description":"", + "default":"LHR" + } + ], + "optional_parameters":[ + { + "name":"carrierCode", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flight-fare-search.p.rapidapi.com/v2/airport/arrivals\"\nquerystring = {\"airportCode\": airportcode}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-fare-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Airport Departues", + "url":"https://flight-fare-search.p.rapidapi.com/v2/airport/departures", + "description":"An endpoint to get Departues in an airport", + "method":"GET", + "required_parameters":[ + { + "name":"airportCode", + "type":"STRING", + "description":"", + "default":"LHR" + } + ], + "optional_parameters":[ + { + "name":"carrierCode", + "type":"STRING", + "description":"", + "default":"" + }, + { + "name":"date", + "type":"DATE (YYYY-MM-DD)", + "description":"", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flight-fare-search.p.rapidapi.com/v2/airport/departures\"\nquerystring = {\"airportCode\": airportcode}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-fare-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Airport Search", + "url":"https://flight-fare-search.p.rapidapi.com/v2/airport/search", + "description":"An endpoint to search airports", + "method":"GET", + "required_parameters":[ + { + "name":"query", + "type":"STRING", + "description":"", + "default":"LHR" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-fare-search.p.rapidapi.com/v2/airport/search\"\nquerystring = {\"query\": query}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-fare-search.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_fare_search/api.py b/toolbench/toolenv/tools/Travel/flight_fare_search/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ff2020b970a761867ee05454a39dbd1b3e8c01c3 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_fare_search/api.py @@ -0,0 +1,108 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight_search_v2(to: str, date: str, is_from: str, adult: int, currency: str='USD', type: str='economy', child: str=None, infant: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "A faster, more agile Endpoint that's used to search flights." + + """ + url = f"https://flight-fare-search.p.rapidapi.com/v2/flights/" + querystring = {'to': to, 'date': date, 'from': is_from, 'adult': adult, } + if currency: + querystring['currency'] = currency + if type: + querystring['type'] = type + if child: + querystring['child'] = child + if infant: + querystring['infant'] = infant + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fare-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_arrivals(airportcode: str, carriercode: str=None, date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "An Endpoint to fetch Arrivals on a given date" + + """ + url = f"https://flight-fare-search.p.rapidapi.com/v2/airport/arrivals" + querystring = {'airportCode': airportcode, } + if carriercode: + querystring['carrierCode'] = carriercode + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fare-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_departues(airportcode: str, carriercode: str=None, date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "An endpoint to get Departues in an airport" + + """ + url = f"https://flight-fare-search.p.rapidapi.com/v2/airport/departures" + querystring = {'airportCode': airportcode, } + if carriercode: + querystring['carrierCode'] = carriercode + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fare-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_search(query: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "An endpoint to search airports" + + """ + url = f"https://flight-fare-search.p.rapidapi.com/v2/airport/search" + querystring = {'query': query, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fare-search.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_fastest_booking.json b/toolbench/toolenv/tools/Travel/flight_fastest_booking.json new file mode 100644 index 0000000000000000000000000000000000000000..619e0d8644ba8d29e10de096e45bb6654690a19b --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_fastest_booking.json @@ -0,0 +1,28 @@ +{ + "product_id": "api_4236d60f-7f33-4369-a0fa-59af920c580a", + "tool_description": "Flight - Fastest Booking", + "home_url": "https://rapidapi.com/fastest-booking-fastest-booking-default/api/flight-fastest-booking/", + "name": "Flight- Fastest Booking", + "title": "Flight- Fastest Booking", + "pricing": "PAID", + "tool_name": "Flight- Fastest Booking", + "score": null, + "host": "flight-fastest-booking.p.rapidapi.com", + "api_list": [ + { + "name": "AppController_flightsPricing", + "url": "https://flight-fastest-booking.p.rapidapi.com/flight-offer-pricing", + "description": " ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flight-fastest-booking.p.rapidapi.com/flight-offer-pricing\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-fastest-booking.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flight-fastest-booking.p.rapidapi.com/flight-offer-pricing\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-fastest-booking.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_fastest_booking/api.py b/toolbench/toolenv/tools/Travel/flight_fastest_booking/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f6c8d552fcef5143bd051f158a59a53449e412e7 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_fastest_booking/api.py @@ -0,0 +1,160 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def healthcontroller_check(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://flight-fastest-booking.p.rapidapi.com/health" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fastest-booking.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def appcontroller_flightoffer(is_id: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://flight-fastest-booking.p.rapidapi.com/search/{is_id}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fastest-booking.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def appcontroller_flightsearch(adults: int, to: str, departuredate: str, is_from: str, includedairlinecodes: str='[]', nonstop: bool=None, infants: int=None, children: int=None, currency: str='NGN', excludedairlinecodes: str='[]', provider: str='AMADEUS', travelclass: str='ECONOMY', limit: int=5, returndate: str='2021-12-15', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://flight-fastest-booking.p.rapidapi.com/search" + querystring = {'adults': adults, 'to': to, 'departureDate': departuredate, 'from': is_from, } + if includedairlinecodes: + querystring['includedAirlineCodes'] = includedairlinecodes + if nonstop: + querystring['nonStop'] = nonstop + if infants: + querystring['infants'] = infants + if children: + querystring['children'] = children + if currency: + querystring['currency'] = currency + if excludedairlinecodes: + querystring['excludedAirlineCodes'] = excludedairlinecodes + if provider: + querystring['provider'] = provider + if travelclass: + querystring['travelClass'] = travelclass + if limit: + querystring['limit'] = limit + if returndate: + querystring['returnDate'] = returndate + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fastest-booking.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def appcontroller_flightinfo(flightnumber: str, departure: str, airline: str, provider: str='AMADEUS', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://flight-fastest-booking.p.rapidapi.com/flight-info" + querystring = {'flightNumber': flightnumber, 'departure': departure, 'airline': airline, } + if provider: + querystring['provider'] = provider + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fastest-booking.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def appcontroller_flightcheckinlinks(airlinecode: str, language: str='en-GB', provider: str='AMADEUS', toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://flight-fastest-booking.p.rapidapi.com/flight-check-in-links" + querystring = {'airlineCode': airlinecode, } + if language: + querystring['language'] = language + if provider: + querystring['provider'] = provider + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fastest-booking.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def appcontroller_flightbooking(gdsorderid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + " " + + """ + url = f"https://flight-fastest-booking.p.rapidapi.com/gds-flight-order/{gdsorderid}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-fastest-booking.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_flight_aggregator.json b/toolbench/toolenv/tools/Travel/flight_flight_aggregator.json new file mode 100644 index 0000000000000000000000000000000000000000..8ea2e6a27ca2b94bc64dcebf1f999846f24bdb33 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_flight_aggregator.json @@ -0,0 +1,24 @@ +{ + "tool_name":"flight | flight aggregator", + "tool_description":"FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "title":"flight | flight aggregator", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mohammadjaved/api/flight-flight-aggregator/", + "host":"flight-flight-aggregator.p.rapidapi.com", + "api_list":[ + { + "name":"flight", + "url":"https://flight-flight-aggregator.p.rapidapi.comhttps://flightslogic.com/", + "description":"FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-flight-aggregator.p.rapidapi.comhttps://flightslogic.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-flight-aggregator.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_flight_aggregator/api.py b/toolbench/toolenv/tools/Travel/flight_flight_aggregator/api.py new file mode 100644 index 0000000000000000000000000000000000000000..5357264fdd7359a1516ec55fae477f356e4b071f --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_flight_aggregator/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide." + + """ + url = f"https://flight-flight-aggregator.p.rapidapi.comhttps://flightslogic.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-flight-aggregator.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_info/api.py b/toolbench/toolenv/tools/Travel/flight_info/api.py new file mode 100644 index 0000000000000000000000000000000000000000..ce78dce4634a08a5e5e980a64842b9f5d99a94b8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_info/api.py @@ -0,0 +1,33 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight_info(dt: str=None, city: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "flight info" + + """ + url = f"https://flight-info2.p.rapidapi.com/{city}/{dt}" + querystring = {} + if dt: + querystring['dt'] = dt + if city: + querystring['city'] = city + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-info2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_info_api.json b/toolbench/toolenv/tools/Travel/flight_info_api.json new file mode 100644 index 0000000000000000000000000000000000000000..1618513e7f626e9da88fdd0534647483edb6ba02 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_info_api.json @@ -0,0 +1,1325 @@ +{ + "tool_name":"Flight Info API", + "tool_description":"Quickly look up flight information and get both future flight schedules and flight status data.", + "title":"Flight Info API", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":504, + "avgSuccessRate":70, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/oag-oag-default/api/flight-info-api/", + "host":"flight-info-api.p.rapidapi.com", + "api_list":[ + { + "name":"status", + "url":"https://flight-info-api.p.rapidapi.com/status", + "description":"Get flight status information by specifying either the Departure Date or Arrival Date parameter value (mandatory), and other parameters such as Flight Number, Carrier Code, Departure, and Arrival Airport (non-mandatory).", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"DepartureAirport", + "type":"STRING", + "description":"A code assigned by the IATA/ICAO/FAA to an airport location representing departure airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values.", + "default":"" + }, + { + "name":"AircraftRegistrationNumber", + "type":"STRING", + "description":"Aircraft registration number (Tail Number).", + "default":"" + }, + { + "name":"FlightType", + "type":"STRING", + "description":"Type of flight: Scheduled, Unscheduled, General Aviation (GA). Accepts comma separated values.", + "default":"" + }, + { + "name":"CarrierCode", + "type":"STRING", + "description":"Carrier (airline) code assigned either by IATA or ICAO.", + "default":"" + }, + { + "name":"CodeType", + "type":"STRING", + "description":"Code type for Carriers and Airports. If not specified, carriers and airports are searched by IATA (default). Code type values are IATA, ICAO - for carriers and airports, FAA - for airports. Accepts comma separated values.", + "default":"" + }, + { + "name":"version", + "type":"STRING", + "description":"Api version.", + "default":"v2" + }, + { + "name":"ArrivalAirport", + "type":"STRING", + "description":"A code assigned by the IATA/ICAO/FAA to an airport location representing arrival airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values.", + "default":"" + }, + { + "name":"DepartureDateTime", + "type":"STRING", + "description":"Departure date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days.", + "default":"" + }, + { + "name":"After", + "type":"STRING", + "description":"A cursor after refers to a random string of characters which marks a specific item in a list of data.", + "default":"" + }, + { + "name":"ArrivalDateTime", + "type":"STRING", + "description":"Arrival date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days.", + "default":"" + }, + { + "name":"ServiceType", + "type":"STRING", + "description":"Type of service: Passenger, Cargo. Only flights for the specified service type are returned if specified. Accepts comma separated values.", + "default":"" + }, + { + "name":"FlightNumber", + "type":"NUMBER", + "description":"A numeric part (up to four digits) of a flight designator.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flight-info-api.p.rapidapi.com/status\"\nquerystring = {\"version\": version}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-info-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "carrier":{ + "iata":"", + "icao":"" + }, + "serviceSuffix":"", + "flightNumber":0, + "sequenceNumber":0, + "departure":{ + "airport":{}, + "terminal":"" + }, + "arrival":{ + "airport":{}, + "terminal":"" + }, + "elapsedTime":0, + "aircraftType":{}, + "serviceType":{ + "iata":"" + }, + "segmentInfo":{ + "numberOfStops":0, + "intermediateAirports":{ + "iata":[] + } + }, + "codeshare":{ + "operatingAirlineDisclosure":{ + "code":"", + "name":"", + "number":"" + }, + "aircraftOwner":{ + "code":"", + "name":"" + }, + "cockpitCrewEmployer":{ + "code":"", + "name":"", + "number":"" + }, + "jointOperationAirlineDesignators":[ + { + "code":"", + "name":"", + "number":"" + } + ], + "marketingFlights":[ + { + "code":"", + "serviceNumber":"", + "suffix":"" + } + ], + "operatingFlight":{ + "code":"", + "serviceNumber":"", + "suffix":"" + } + }, + "scheduleInstanceKey":"", + "statusKey":"", + "statusDetails":[ + { + "state":"", + "updatedAt":"", + "equipment":{ + "aircraftRegistrationNumber":"", + "actualAircraftType":{} + }, + "departure":{ + "estimatedTime":{}, + "actualTime":{}, + "airport":{}, + "actualTerminal":"", + "gate":"", + "checkInCounter":"" + }, + "arrival":{ + "estimatedTime":{}, + "actualTime":{}, + "airport":{}, + "actualTerminal":"", + "gate":"", + "baggage":"" + }, + "diversionAirport":{} + } + ] + } + ], + "paging":{ + "totalCount":0, + "totalPages":0, + "next":"" + } + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "carrier":{ + "type":"object", + "properties":{ + "iata":{ + "type":[ + "string", + "null" + ], + "description":"A two-character code of the carrier assigned by IATA." + }, + "icao":{ + "type":[ + "string", + "null" + ], + "description":"A three-character code of the carrier assigned by ICAO." + } + }, + "additionalProperties":false, + "description":"Contains a carrier designator code." + }, + "serviceSuffix":{ + "type":[ + "string", + "null" + ], + "description":"The operational suffix supplied by the carrier." + }, + "flightNumber":{ + "type":"integer", + "description":"The numeric part (up to 4 digits) of the flight number of the operation." + }, + "sequenceNumber":{ + "type":"integer", + "description":"Sequence of stopping points starting at 0." + }, + "departure":{ + "type":"object", + "properties":{ + "airport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + }, + "terminal":{ + "type":[ + "string", + "null" + ], + "description":"The arrival/departure terminal code." + } + }, + "additionalProperties":false + }, + "arrival":{ + "type":"object", + "properties":{ + "airport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + }, + "terminal":{ + "type":[ + "string", + "null" + ], + "description":"The arrival/departure terminal code." + } + }, + "additionalProperties":false + }, + "elapsedTime":{ + "type":"integer", + "description":"The duration of the flight." + }, + "aircraftType":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the equipment type in use." + }, + "serviceType":{ + "type":"object", + "properties":{ + "iata":{ + "type":[ + "string", + "null" + ], + "description":"The single character service type classification (IATA standard) of the flight." + } + }, + "additionalProperties":false + }, + "segmentInfo":{ + "type":"object", + "properties":{ + "numberOfStops":{ + "type":"integer", + "description":"The number of stops for the operation." + }, + "intermediateAirports":{ + "type":"object", + "properties":{ + "iata":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "sequenceNumber":{ + "description":"**Omitted**" + }, + "station":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"The airports at which any stops occur." + } + } + }, + "additionalProperties":false, + "description":"A list of ports that the operation stops at (if applicable)." + } + }, + "additionalProperties":false + }, + "codeshare":{ + "type":"object", + "properties":{ + "operatingAirlineDisclosure":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "name":{ + "type":[ + "string", + "null" + ] + }, + "number":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"Denotes the operating carrier of a flight where seats/space can be sold by one or more airline under its own Carrier code in a codeshare agreement. If null assume carrier code is the operator" + }, + "aircraftOwner":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier code of the owner of the equipment." + }, + "name":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier name of the owner of the equipment." + } + }, + "additionalProperties":false, + "description":"The Carrier code and/or name of the owner of the equipment." + }, + "cockpitCrewEmployer":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "name":{ + "type":[ + "string", + "null" + ] + }, + "number":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"The Carrier code and/or name responsible for cockpit crew." + }, + "jointOperationAirlineDesignators":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier codes that denote when two or three carriers jointly operate the flight." + }, + "name":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier names that denote when two or three carriers jointly operate the flight." + }, + "number":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"The Carrier codes denotes when two or three carriers jointly operate the flight." + }, + "description":"The Carrier codes denote when two or three carriers jointly operate the flight." + }, + "marketingFlights":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "serviceNumber":{ + "type":[ + "string", + "null" + ] + }, + "suffix":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"Duplicate flight identifier for an Operating Flight where the Marketing Carrier Code and Service number(s) are disclosed." + }, + "description":"Duplicate flight identifier for an Operating Flight where the Marketing Carrier Code and Service number(s) are disclosed." + }, + "operatingFlight":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "serviceNumber":{ + "type":[ + "string", + "null" + ] + }, + "suffix":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"Duplicate flight identifier for an Operating Flight where the Marketing Carrier Code and Service number(s) are disclosed." + } + }, + "additionalProperties":false, + "description":"Denotes the operating carrier of a flight where seats/space can be sold by one or more airline under its own Carrier code in a codeshare agreement. If null assume carrier code is the operator." + }, + "scheduleInstanceKey":{ + "type":[ + "string", + "null" + ], + "description":"Unique identifier of schedule instance." + }, + "statusKey":{ + "type":[ + "string", + "null" + ], + "description":"Unique identifier of flight status." + }, + "statusDetails":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "state":{ + "type":[ + "string", + "null" + ], + "description":"Current state of the flight. A flight can be in the following states: Scheduled, OutGate, InAir, Landed, InGate, Cancelled, Diverted." + }, + "updatedAt":{ + "type":"string", + "format":"date-time" + }, + "equipment":{ + "type":"object", + "properties":{ + "aircraftRegistrationNumber":{ + "type":[ + "string", + "null" + ], + "description":"The aircraft registration/tail number." + }, + "actualAircraftType":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the equipment type in use." + } + }, + "additionalProperties":false, + "description":"Represents aircraft registration number and aircraft type." + }, + "departure":{ + "type":"object", + "properties":{ + "estimatedTime":{ + "type":"object", + "properties":{ + "outGateTimeliness":{ + "description":"**Omitted**" + }, + "outGateVariation":{ + "description":"**Omitted**" + }, + "outGate":{ + "description":"**Omitted**" + }, + "offGround":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Represents estimated/actual departure times." + }, + "actualTime":{ + "type":"object", + "properties":{ + "outGateTimeliness":{ + "description":"**Omitted**" + }, + "outGateVariation":{ + "description":"**Omitted**" + }, + "outGate":{ + "description":"**Omitted**" + }, + "offGround":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Represents estimated/actual departure times." + }, + "airport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + }, + "actualTerminal":{ + "type":[ + "string", + "null" + ], + "description":"The actual airport departure terminal." + }, + "gate":{ + "type":[ + "string", + "null" + ], + "description":"The actual airport departure gate." + }, + "checkInCounter":{ + "type":[ + "string", + "null" + ], + "description":"The departure check-in counter." + } + }, + "additionalProperties":false + }, + "arrival":{ + "type":"object", + "properties":{ + "estimatedTime":{ + "type":"object", + "properties":{ + "inGateTimeliness":{ + "description":"**Omitted**" + }, + "inGateVariation":{ + "description":"**Omitted**" + }, + "onGround":{ + "description":"**Omitted**" + }, + "inGate":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Represents estimated/actual arrival times." + }, + "actualTime":{ + "type":"object", + "properties":{ + "inGateTimeliness":{ + "description":"**Omitted**" + }, + "inGateVariation":{ + "description":"**Omitted**" + }, + "onGround":{ + "description":"**Omitted**" + }, + "inGate":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Represents estimated/actual arrival times." + }, + "airport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + }, + "actualTerminal":{ + "type":[ + "string", + "null" + ], + "description":"The actual airport arrival terminal." + }, + "gate":{ + "type":[ + "string", + "null" + ], + "description":"The actual airport arrival gate." + }, + "baggage":{ + "type":[ + "string", + "null" + ], + "description":"The arrival baggage counter." + } + }, + "additionalProperties":false + }, + "diversionAirport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + } + }, + "additionalProperties":false + } + } + }, + "additionalProperties":false + } + }, + "paging":{ + "type":"object", + "properties":{ + "totalCount":{ + "type":"integer" + }, + "totalPages":{ + "type":"integer" + }, + "next":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false + } + }, + "additionalProperties":false + } + }, + { + "name":"schedules", + "url":"https://flight-info-api.p.rapidapi.com/schedules", + "description":"Get flight schedule information by specifying either the Departure Date or Arrival Date parameter value (mandatory), and other parameters such as Flight Number, Carrier Code, Departure, and Arrival Airport (non-mandatory).", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"After", + "type":"STRING", + "description":"A cursor after refers to a random string of characters which marks a specific item in a list of data.", + "default":"" + }, + { + "name":"CodeType", + "type":"STRING", + "description":"Code type for Carriers and Airports. If not specified, carriers and airports are searched by IATA (default). Code type values are IATA, ICAO - for carriers and airports, FAA - for airports. Accepts comma separated values.", + "default":"" + }, + { + "name":"CarrierCode", + "type":"STRING", + "description":"Carrier (airline) code assigned either by IATA or ICAO.", + "default":"" + }, + { + "name":"ArrivalDateTime", + "type":"STRING", + "description":"Arrival date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days.", + "default":"" + }, + { + "name":"ServiceType", + "type":"STRING", + "description":"Type of service: Passenger, Cargo. Only flights for the specified service type are returned if specified. Accepts comma separated values.", + "default":"" + }, + { + "name":"AircraftRegistrationNumber", + "type":"STRING", + "description":"Aircraft registration number (Tail Number).", + "default":"" + }, + { + "name":"FlightType", + "type":"STRING", + "description":"Type of flight: Scheduled, Unscheduled, General Aviation (GA). Accepts comma separated values.", + "default":"" + }, + { + "name":"ArrivalAirport", + "type":"STRING", + "description":"A code assigned by the IATA/ICAO/FAA to an airport location representing arrival airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values.", + "default":"" + }, + { + "name":"DepartureAirport", + "type":"STRING", + "description":"A code assigned by the IATA/ICAO/FAA to an airport location representing departure airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values.", + "default":"" + }, + { + "name":"FlightNumber", + "type":"NUMBER", + "description":"A numeric part (up to four digits) of a flight designator.", + "default":"" + }, + { + "name":"version", + "type":"STRING", + "description":"Api version.", + "default":"v2" + }, + { + "name":"DepartureDateTime", + "type":"STRING", + "description":"Departure date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flight-info-api.p.rapidapi.com/schedules\"\nquerystring = {\"version\": version}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-info-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "data":[ + { + "carrier":{ + "iata":"", + "icao":"" + }, + "serviceSuffix":"", + "flightNumber":0, + "sequenceNumber":0, + "departure":{ + "airport":{}, + "terminal":"" + }, + "arrival":{ + "airport":{}, + "terminal":"" + }, + "elapsedTime":0, + "aircraftType":{}, + "serviceType":{ + "iata":"" + }, + "segmentInfo":{ + "numberOfStops":0, + "intermediateAirports":{ + "iata":[] + } + }, + "codeshare":{ + "operatingAirlineDisclosure":{ + "code":"", + "name":"", + "number":"" + }, + "aircraftOwner":{ + "code":"", + "name":"" + }, + "cockpitCrewEmployer":{ + "code":"", + "name":"", + "number":"" + }, + "jointOperationAirlineDesignators":[ + { + "code":"", + "name":"", + "number":"" + } + ], + "marketingFlights":[ + { + "code":"", + "serviceNumber":"", + "suffix":"" + } + ], + "operatingFlight":{ + "code":"", + "serviceNumber":"", + "suffix":"" + } + }, + "scheduleInstanceKey":"", + "statusKey":"" + } + ], + "paging":{ + "totalCount":0, + "totalPages":0, + "next":"" + } + }, + "headers":{}, + "schema":{ + "type":"object", + "properties":{ + "data":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "carrier":{ + "type":"object", + "properties":{ + "iata":{ + "type":[ + "string", + "null" + ], + "description":"A two-character code of the carrier assigned by IATA." + }, + "icao":{ + "type":[ + "string", + "null" + ], + "description":"A three-character code of the carrier assigned by ICAO." + } + }, + "additionalProperties":false, + "description":"Contains a carrier designator code." + }, + "serviceSuffix":{ + "type":[ + "string", + "null" + ], + "description":"The operational suffix supplied by the carrier." + }, + "flightNumber":{ + "type":"integer", + "description":"The numeric part (up to 4 digits) of the flight number of the operation." + }, + "sequenceNumber":{ + "type":"integer", + "description":"Sequence of stopping points starting at 0." + }, + "departure":{ + "type":"object", + "properties":{ + "airport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + }, + "terminal":{ + "type":[ + "string", + "null" + ], + "description":"The arrival/departure terminal code." + } + }, + "additionalProperties":false + }, + "arrival":{ + "type":"object", + "properties":{ + "airport":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the departure or arrival airport." + }, + "terminal":{ + "type":[ + "string", + "null" + ], + "description":"The arrival/departure terminal code." + } + }, + "additionalProperties":false + }, + "elapsedTime":{ + "type":"integer", + "description":"The duration of the flight." + }, + "aircraftType":{ + "type":"object", + "properties":{ + "iata":{ + "description":"**Omitted**" + }, + "icao":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"Denotes the equipment type in use." + }, + "serviceType":{ + "type":"object", + "properties":{ + "iata":{ + "type":[ + "string", + "null" + ], + "description":"The single character service type classification (IATA standard) of the flight." + } + }, + "additionalProperties":false + }, + "segmentInfo":{ + "type":"object", + "properties":{ + "numberOfStops":{ + "type":"integer", + "description":"The number of stops for the operation." + }, + "intermediateAirports":{ + "type":"object", + "properties":{ + "iata":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "sequenceNumber":{ + "description":"**Omitted**" + }, + "station":{ + "description":"**Omitted**" + } + }, + "additionalProperties":false, + "description":"The airports at which any stops occur." + } + } + }, + "additionalProperties":false, + "description":"A list of ports that the operation stops at (if applicable)." + } + }, + "additionalProperties":false + }, + "codeshare":{ + "type":"object", + "properties":{ + "operatingAirlineDisclosure":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "name":{ + "type":[ + "string", + "null" + ] + }, + "number":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"Denotes the operating carrier of a flight where seats/space can be sold by one or more airline under its own Carrier code in a codeshare agreement. If null assume carrier code is the operator" + }, + "aircraftOwner":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier code of the owner of the equipment." + }, + "name":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier name of the owner of the equipment." + } + }, + "additionalProperties":false, + "description":"The Carrier code and/or name of the owner of the equipment." + }, + "cockpitCrewEmployer":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "name":{ + "type":[ + "string", + "null" + ] + }, + "number":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"The Carrier code and/or name responsible for cockpit crew." + }, + "jointOperationAirlineDesignators":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier codes that denote when two or three carriers jointly operate the flight." + }, + "name":{ + "type":[ + "string", + "null" + ], + "description":"The Carrier names that denote when two or three carriers jointly operate the flight." + }, + "number":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"The Carrier codes denotes when two or three carriers jointly operate the flight." + }, + "description":"The Carrier codes denote when two or three carriers jointly operate the flight." + }, + "marketingFlights":{ + "type":[ + "array", + "null" + ], + "items":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "serviceNumber":{ + "type":[ + "string", + "null" + ] + }, + "suffix":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"Duplicate flight identifier for an Operating Flight where the Marketing Carrier Code and Service number(s) are disclosed." + }, + "description":"Duplicate flight identifier for an Operating Flight where the Marketing Carrier Code and Service number(s) are disclosed." + }, + "operatingFlight":{ + "type":"object", + "properties":{ + "code":{ + "type":[ + "string", + "null" + ] + }, + "serviceNumber":{ + "type":[ + "string", + "null" + ] + }, + "suffix":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false, + "description":"Duplicate flight identifier for an Operating Flight where the Marketing Carrier Code and Service number(s) are disclosed." + } + }, + "additionalProperties":false, + "description":"Denotes the operating carrier of a flight where seats/space can be sold by one or more airline under its own Carrier code in a codeshare agreement. If null assume carrier code is the operator." + }, + "scheduleInstanceKey":{ + "type":[ + "string", + "null" + ], + "description":"Unique identifier of schedule instance." + }, + "statusKey":{ + "type":[ + "string", + "null" + ], + "description":"Unique identifier of flight status." + } + }, + "additionalProperties":false + } + }, + "paging":{ + "type":"object", + "properties":{ + "totalCount":{ + "type":"integer" + }, + "totalPages":{ + "type":"integer" + }, + "next":{ + "type":[ + "string", + "null" + ] + } + }, + "additionalProperties":false + } + }, + "additionalProperties":false + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_info_api/api.py b/toolbench/toolenv/tools/Travel/flight_info_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..00a6f68b98c98f1d52ec368e396463fa72afaec7 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_info_api/api.py @@ -0,0 +1,122 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def status(departureairport: str=None, aircraftregistrationnumber: str=None, flighttype: str=None, carriercode: str=None, codetype: str=None, version: str='v2', arrivalairport: str=None, departuredatetime: str=None, after: str=None, arrivaldatetime: str=None, servicetype: str=None, flightnumber: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get flight status information by specifying either the Departure Date or Arrival Date parameter value (mandatory), and other parameters such as Flight Number, Carrier Code, Departure, and Arrival Airport (non-mandatory)." + departureairport: A code assigned by the IATA/ICAO/FAA to an airport location representing departure airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values. + aircraftregistrationnumber: Aircraft registration number (Tail Number). + flighttype: Type of flight: Scheduled, Unscheduled, General Aviation (GA). Accepts comma separated values. + carriercode: Carrier (airline) code assigned either by IATA or ICAO. + codetype: Code type for Carriers and Airports. If not specified, carriers and airports are searched by IATA (default). Code type values are IATA, ICAO - for carriers and airports, FAA - for airports. Accepts comma separated values. + version: Api version. + arrivalairport: A code assigned by the IATA/ICAO/FAA to an airport location representing arrival airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values. + departuredatetime: Departure date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days. + after: A cursor after refers to a random string of characters which marks a specific item in a list of data. + arrivaldatetime: Arrival date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days. + servicetype: Type of service: Passenger, Cargo. Only flights for the specified service type are returned if specified. Accepts comma separated values. + flightnumber: A numeric part (up to four digits) of a flight designator. + + """ + url = f"https://flight-info-api.p.rapidapi.com/status" + querystring = {} + if departureairport: + querystring['DepartureAirport'] = departureairport + if aircraftregistrationnumber: + querystring['AircraftRegistrationNumber'] = aircraftregistrationnumber + if flighttype: + querystring['FlightType'] = flighttype + if carriercode: + querystring['CarrierCode'] = carriercode + if codetype: + querystring['CodeType'] = codetype + if version: + querystring['version'] = version + if arrivalairport: + querystring['ArrivalAirport'] = arrivalairport + if departuredatetime: + querystring['DepartureDateTime'] = departuredatetime + if after: + querystring['After'] = after + if arrivaldatetime: + querystring['ArrivalDateTime'] = arrivaldatetime + if servicetype: + querystring['ServiceType'] = servicetype + if flightnumber: + querystring['FlightNumber'] = flightnumber + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-info-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def schedules(after: str=None, codetype: str=None, carriercode: str=None, arrivaldatetime: str=None, servicetype: str=None, aircraftregistrationnumber: str=None, flighttype: str=None, arrivalairport: str=None, departureairport: str=None, flightnumber: int=None, version: str='v2', departuredatetime: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get flight schedule information by specifying either the Departure Date or Arrival Date parameter value (mandatory), and other parameters such as Flight Number, Carrier Code, Departure, and Arrival Airport (non-mandatory)." + after: A cursor after refers to a random string of characters which marks a specific item in a list of data. + codetype: Code type for Carriers and Airports. If not specified, carriers and airports are searched by IATA (default). Code type values are IATA, ICAO - for carriers and airports, FAA - for airports. Accepts comma separated values. + carriercode: Carrier (airline) code assigned either by IATA or ICAO. + arrivaldatetime: Arrival date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days. + servicetype: Type of service: Passenger, Cargo. Only flights for the specified service type are returned if specified. Accepts comma separated values. + aircraftregistrationnumber: Aircraft registration number (Tail Number). + flighttype: Type of flight: Scheduled, Unscheduled, General Aviation (GA). Accepts comma separated values. + arrivalairport: A code assigned by the IATA/ICAO/FAA to an airport location representing arrival airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values. + departureairport: A code assigned by the IATA/ICAO/FAA to an airport location representing departure airport. If CodeType not specified, airports are searched by IATA (default). Accepts comma separated values. + flightnumber: A numeric part (up to four digits) of a flight designator. + version: Api version. + departuredatetime: Departure date and/or time or date and/or time range is local time in ISO 8601 date format (e.g. YYYY-MM-DD[THH:MM] or YYYY-MM-DD[THH:MM]/YYYY-MM-DD[THH:MM]). The maximum date range is 31 days. + + """ + url = f"https://flight-info-api.p.rapidapi.com/schedules" + querystring = {} + if after: + querystring['After'] = after + if codetype: + querystring['CodeType'] = codetype + if carriercode: + querystring['CarrierCode'] = carriercode + if arrivaldatetime: + querystring['ArrivalDateTime'] = arrivaldatetime + if servicetype: + querystring['ServiceType'] = servicetype + if aircraftregistrationnumber: + querystring['AircraftRegistrationNumber'] = aircraftregistrationnumber + if flighttype: + querystring['FlightType'] = flighttype + if arrivalairport: + querystring['ArrivalAirport'] = arrivalairport + if departureairport: + querystring['DepartureAirport'] = departureairport + if flightnumber: + querystring['FlightNumber'] = flightnumber + if version: + querystring['version'] = version + if departuredatetime: + querystring['DepartureDateTime'] = departuredatetime + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-info-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_integration.json b/toolbench/toolenv/tools/Travel/flight_integration.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e48fb4ab97dccb02f8b09f08dc34824a6594b8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_integration.json @@ -0,0 +1,37 @@ +{ + "tool_name":"Flight Integration", + "tool_description":"FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "title":"Flight Integration", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mohammadjaved/api/flight-integration/", + "host":"flight-integration.p.rapidapi.com", + "api_list":[ + { + "name":"Flight Integration", + "url":"https://flight-integration.p.rapidapi.comhttps://flightslogic.com/fareapi.php", + "description":"FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-integration.p.rapidapi.comhttps://flightslogic.com/fareapi.php\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-integration.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Flight", + "url":"https://flight-integration.p.rapidapi.comhttps://flightslogic.com", + "description":"FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flight-integration.p.rapidapi.comhttps://flightslogic.com\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight-integration.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_integration/api.py b/toolbench/toolenv/tools/Travel/flight_integration/api.py new file mode 100644 index 0000000000000000000000000000000000000000..9a7bc3e334d9e50c952b3c7f533a1743819e9a3f --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_integration/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight_integration(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide." + + """ + url = f"https://flight-integration.p.rapidapi.comhttps://flightslogic.com/fareapi.php" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-integration.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flight(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide." + + """ + url = f"https://flight-integration.p.rapidapi.comhttps://flightslogic.com" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight-integration.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flight_v2.json b/toolbench/toolenv/tools/Travel/flight_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..023737d203ad5d8389404172cad4f155454ff9d5 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_v2.json @@ -0,0 +1,25 @@ +{ + "product_id": "api_acd954b2-86d4-47d9-a198-387fe549a87a", + "tool_description": "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", + "home_url": "https://rapidapi.com/mohammadjaved/api/flight10/", + "name": "Flight _v2", + "title": "Flight ", + "pricing": "FREE", + "tool_name": "Flight _v2", + "score": null, + "host": "flight10.p.rapidapi.com", + "api_list": [ + { + "name": "Flight API", + "url": "https://flight10.p.rapidapi.comhttps://flightslogic.com/about.php", + "description": "FlightsLogic Global Airfare APIs connect you to the finest information in the travel industry. You can now build, innovate and launch your web and Mobile applications with our Flight API. Inspirational search features combine our Global Airfare APIs with your existing travel offering to complement your product range.", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flight10.p.rapidapi.comhttps://flightslogic.com/about.php\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight10.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flight10.p.rapidapi.comhttps://flightslogic.com/about.php\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flight10.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "flight_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flight_v2/api.py b/toolbench/toolenv/tools/Travel/flight_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..904d9ce148112fafe1ba987f65df26f16d080cbc --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flight_v2/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flight_api(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic Global Airfare APIs connect you to the finest information in the travel industry. You can now build, innovate and launch your web and Mobile applications with our Flight API. Inspirational search features combine our Global Airfare APIs with your existing travel offering to complement your product range." + + """ + url = f"https://flight10.p.rapidapi.comhttps://flightslogic.com/about.php" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flight10.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flightera_flight_data.json b/toolbench/toolenv/tools/Travel/flightera_flight_data.json new file mode 100644 index 0000000000000000000000000000000000000000..9cc3125af8c6a17fb2ccc5c1319cb7b945b424de --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flightera_flight_data.json @@ -0,0 +1,1982 @@ +{ + "tool_name":"Flightera Flight Data", + "tool_description":"Flight status, on-time performance and statistics by Flightera", + "title":"Flightera Flight Data", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":117, + "avgSuccessRate":61, + "popularityScore":9.9, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/flightera/api/flightera-flight-data/", + "host":"flightera-flight-data.p.rapidapi.com", + "api_list":[ + { + "name":"flightSearch", + "url":"https://flightera-flight-data.p.rapidapi.com/flight/search", + "description":"Returns a list of flights for a given flight number. Minimum and/or maximum date can optionally be specified to limit the search. Results are ordered by departure date ascending. The next departure time is returned for pagination.\nWill return a 400 if the date range requested is outside the subscription level", + "method":"GET", + "required_parameters":[ + { + "name":"flnr", + "type":"STRING", + "description":"The flight number to request", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"dtFrom", + "type":"STRING", + "description":"The minimum date to request", + "default":"" + }, + { + "name":"dtTo", + "type":"STRING", + "description":"The maximum date to request", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/flight/search\"\nquerystring = {\"flnr\": flnr}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "flights":[ + { + "arrival_ident":"", + "date":"", + "departure_ident":"", + "flnr":"", + "status":"" + } + ], + "next_time":"" + }, + "headers":{}, + "schema":{ + "description":"FlightSearchResponses contains flights search responses and the next time, to be used for pagination", + "type":"object", + "properties":{ + "flights":{ + "description":"A list of flights returned by the search", + "type":"array", + "items":{ + "description":"FlightSearchResult contains one flight search response", + "type":"object", + "properties":{ + "arrival_ident":{ + "description":"The Identifier of the arrival airport", + "type":"string", + "x-go-name":"ArrivalIdent" + }, + "date":{ + "description":"The date of the flight in local time of the departure airport", + "type":"string", + "format":"date-time", + "x-go-name":"Date" + }, + "departure_ident":{ + "description":"The Identifier of the departure airport", + "type":"string", + "x-go-name":"DepartureIdent" + }, + "flnr":{ + "description":"The Flight Number in Upper Case", + "type":"string", + "x-go-name":"Flnr" + }, + "status":{ + "description":"Status of the flight, one of: [live,scheduled,cancelled,landed,unknown]", + "type":"string", + "x-go-name":"Status" + } + }, + "x-go-package":"wright/internal/api" + }, + "x-go-name":"Flights" + }, + "next_time":{ + "description":"The next time to be used for pagination", + "type":"string", + "format":"date-time", + "x-go-name":"NextTime" + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"airlineSearch", + "url":"https://flightera-flight-data.p.rapidapi.com/airline/search", + "description":"Returns a list of airlines for a given country, identifiers or name search pattern. Multiple arguments can be specified to limit the search.\nEither one of the arguments must be specified.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"iata", + "type":"STRING", + "description":"The IATA code of the airline", + "default":"" + }, + { + "name":"name", + "type":"STRING", + "description":"The name or part of the name of the airline, case insensitive", + "default":"" + }, + { + "name":"icao", + "type":"STRING", + "description":"The ICAO code of the airline", + "default":"" + }, + { + "name":"country", + "type":"STRING", + "description":"The ISO 3166-1 alpha-2 code country code to request", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airline/search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "country":"", + "iata":"", + "icao":"", + "ident":"", + "name":"" + } + ], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "description":"The AirlineSearchResult contains information about one airline", + "type":"object", + "properties":{ + "country":{ + "description":"The country of the airline as a two letter code, if available", + "type":"string", + "x-go-name":"Country" + }, + "iata":{ + "description":"The IATA code of the airline, if available", + "type":"string", + "x-go-name":"Iata" + }, + "icao":{ + "description":"The ICAO code of the airline, if available", + "type":"string", + "x-go-name":"Icao" + }, + "ident":{ + "description":"The Ident code of the airline", + "type":"string", + "x-go-name":"Ident" + }, + "name":{ + "description":"The name of the airline", + "type":"string", + "x-go-name":"Name" + } + }, + "x-go-package":"wright/internal/api" + } + } + }, + { + "name":"aircraftSearch", + "url":"https://flightera-flight-data.p.rapidapi.com/aircraft/search", + "description":"A list of plane registrations for a given search criteria.\nCan search by airline ident, country, model\nIf multiple arguments are provided, they will be chained as AND\nReturns only currently active aircraft", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"model", + "type":"STRING", + "description":"Model ICAO code", + "default":"" + }, + { + "name":"airline_ident", + "type":"STRING", + "description":"The ident of the airline, as returned by /airline/search", + "default":"" + }, + { + "name":"country", + "type":"STRING", + "description":"Two letter country code", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/aircraft/search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "type":"string" + } + } + }, + { + "name":"airportSearch", + "url":"https://flightera-flight-data.p.rapidapi.com/airport/search", + "description":"Returns a list of airports for a given country, bbox or timezone. Multiple arguments can be specified to limit the search.\nEither one of country, bbox or timezone must be specified.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"timezone", + "type":"STRING", + "description":"The timezone of the airport (e.g. Europe/Berlin)", + "default":"" + }, + { + "name":"country", + "type":"STRING", + "description":"The ISO 3166-1 alpha-2 code country code to request", + "default":"" + }, + { + "name":"bbox", + "type":"STRING", + "description":"A bbox (min Longitude , min Latitude , max Longitude , max Latitude), will restrict results to airports within that box", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airport/search\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "iata":"", + "icao":"", + "ident":"", + "local_id":"" + } + ], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "description":"The AirportSearchResult contains basic information about one airport", + "type":"object", + "properties":{ + "iata":{ + "description":"The IATA code of the airport, optional", + "type":"string", + "x-go-name":"Iata" + }, + "icao":{ + "description":"The ICAO code of the airport, optional", + "type":"string", + "x-go-name":"Icao" + }, + "ident":{ + "description":"The Ident code of the airport", + "type":"string", + "x-go-name":"Ident" + }, + "local_id":{ + "description":"The local id (e.g. FaaID) of the airport, optional", + "type":"string", + "x-go-name":"LocalID" + } + }, + "x-go-package":"wright/internal/api" + } + } + }, + { + "name":"airportInfo", + "url":"https://flightera-flight-data.p.rapidapi.com/airport/info", + "description":"Returns detailed airport information for airports identified by the provided identifiers. In most cases the list should contain only one entry.\nHowever, due to the nature of the data, it is possible that multiple entries are returned.\nIf searched by ident, only one airport is returned.\nOne of ident, iata, icao, localID must be provided.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"icao", + "type":"STRING", + "description":"The ICAO code of the airport, must have a length of 4", + "default":"" + }, + { + "name":"localID", + "type":"STRING", + "description":"Local identifiers of the airport, currently mostly available for the US & CA (FAA-ID). Max length is 6", + "default":"" + }, + { + "name":"iata", + "type":"STRING", + "description":"The IATA code of the airport, must have a length of 3", + "default":"" + }, + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airport, as returned by /airport/search", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airport/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "city":"", + "country":"", + "iata":"", + "icao":"", + "ident":"", + "local_id":"", + "local_time":"", + "name":"", + "operator":"", + "owner":"", + "pos_lat":0, + "pos_lng":0, + "public":true + } + ], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "description":"The AirportInfoResult contains information about one airport", + "type":"object", + "properties":{ + "city":{ + "description":"The city of the airport, optional", + "type":"string", + "x-go-name":"City" + }, + "country":{ + "description":"The country of the airport as a two letter code", + "type":"string", + "x-go-name":"Country" + }, + "iata":{ + "description":"The IATA code of the airport, optional", + "type":"string", + "x-go-name":"Iata" + }, + "icao":{ + "description":"The ICAO code of the airport, optional", + "type":"string", + "x-go-name":"Icao" + }, + "ident":{ + "description":"The Ident code of the airport", + "type":"string", + "x-go-name":"Ident" + }, + "local_id":{ + "description":"The local id (e.g. FaaID) of the airport, optional", + "type":"string", + "x-go-name":"LocalID" + }, + "local_time":{ + "description":"Current time of the airport", + "type":"string", + "format":"date-time", + "x-go-name":"LocalTime" + }, + "name":{ + "description":"The name of the airport", + "type":"string", + "x-go-name":"Name" + }, + "operator":{ + "description":"The operator of the airport, optional", + "type":"string", + "x-go-name":"Operator" + }, + "owner":{ + "description":"The owner of the airport, optional", + "type":"string", + "x-go-name":"Owner" + }, + "pos_lat":{ + "description":"The latitude of the airport, optional", + "type":"number", + "format":"double", + "x-go-name":"PosLat", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "pos_lng":{ + "description":"The longitude of the airport, optional", + "type":"number", + "format":"double", + "x-go-name":"PosLng", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "public":{ + "description":"Indication whether the airport is publicly owned, optional", + "type":"boolean", + "x-go-name":"Public" + } + }, + "x-go-package":"wright/internal/api" + } + } + }, + { + "name":"airlineAircrafts", + "url":"https://flightera-flight-data.p.rapidapi.com/airline/aircrafts", + "description":"A list of plane registrations for a given airline. Can search by ident only.\nOnly returns currently active aircraft", + "method":"GET", + "required_parameters":[ + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airline, as returned by /airline/search", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airline/aircrafts\"\nquerystring = {\"ident\": ident}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "type":"string" + } + } + }, + { + "name":"flightStatistics", + "url":"https://flightera-flight-data.p.rapidapi.com/flight/statistics", + "description":"Returns statistics for a flight number with one entry per route flown. Statistics are updated daily.\nThe query can be filtered by route.\nStatistics are always as of today, please contact us if you require historical statistics.", + "method":"GET", + "required_parameters":[ + { + "name":"flnr", + "type":"STRING", + "description":"The flight number to request", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"aptFrom", + "type":"STRING", + "description":"Departure airport ident", + "default":"" + }, + { + "name":"aptTo", + "type":"STRING", + "description":"Arrival airport ident", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/flight/statistics\"\nquerystring = {\"flnr\": flnr}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "acft_models":[], + "avg_delay":0, + "avg_duration":0, + "callsign":"", + "cancelled_30d":0, + "count_30d":0, + "delay_30d":0, + "distance_km":0, + "distance_mi":0, + "distance_nm":0, + "flnr":"", + "from":"", + "last_flight":"", + "to":"" + } + ], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "description":"FlightStatResult is one element returned by Flight Statistics call", + "type":"object", + "properties":{ + "acft_models":{ + "description":"A list of icao codes for aircrafts flown on this route within the past 30 days", + "type":"array", + "items":{ + "type":"string" + }, + "x-go-name":"AcftModels" + }, + "avg_delay":{ + "description":"Average delay of flights within the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"AvgDelay", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "avg_duration":{ + "description":"Average duration in hours of flights within the past 30 days (excludes cancelled flights)", + "type":"number", + "format":"double", + "x-go-name":"AvgDuration", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "callsign":{ + "description":"Callsign of this flight, if available", + "type":"string", + "x-go-name":"CallSign" + }, + "cancelled_30d":{ + "description":"Percentage of flights cancelled within the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"Cancelled30dPerc", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "count_30d":{ + "description":"Number of flights within the past 30 days", + "type":"integer", + "format":"int64", + "x-go-name":"Count30d", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "delay_30d":{ + "description":"Percentage of flights delayed (15min+ at arrival) within the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"Delay30dPerc", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "distance_km":{ + "description":"Distance in km", + "type":"number", + "format":"double", + "x-go-name":"DistanceKM", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "distance_mi":{ + "description":"Distance in miles", + "type":"number", + "format":"double", + "x-go-name":"DistanceMi", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "distance_nm":{ + "description":"Distance in nm", + "type":"number", + "format":"double", + "x-go-name":"DistanceNM", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "flnr":{ + "description":"The Flight Number in Upper Case", + "type":"string", + "x-go-name":"Flnr" + }, + "from":{ + "description":"Identifier of the departure airport", + "type":"string", + "x-go-name":"From" + }, + "last_flight":{ + "description":"Date of the last flight on our record", + "type":"string", + "format":"date-time", + "x-go-name":"LastFlight" + }, + "to":{ + "description":"Identifier of the arrival airport", + "type":"string", + "x-go-name":"To" + } + }, + "x-go-package":"wright/internal/api" + } + } + }, + { + "name":"airlineStatistics", + "url":"https://flightera-flight-data.p.rapidapi.com/airline/statistics", + "description":"Returns detailed airline statistics for airlines identified by the provided identifiers. In most cases the list should contain only one entry, unless the ident is ambiguous.\nIf searched by ident, only one airline is returned.\nOne of ident, iata, icao must be provided.\nStatistics are calculated overnight and represent the current day's data.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"icao", + "type":"STRING", + "description":"The ICAO code of the airline, must have a length of 4", + "default":"" + }, + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airline, as returned by /airline/search", + "default":"" + }, + { + "name":"iata", + "type":"STRING", + "description":"The IATA code of the airline, must have a length of 3", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airline/statistics\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "average_delay_30_days":0, + "average_plane_age":0, + "cancel_percentage_30_days":0, + "delay_percentage_30_days":0, + "flights_30_days":0, + "flights_7_days":0, + "ident":"", + "newest_plane_age":0, + "oldest_plane_age":0, + "top_airports_30_days":{}, + "top_countries_30_days":{} + }, + "headers":{}, + "schema":{ + "description":"The AirlineStatsResult contains statistics about airlines", + "type":"object", + "properties":{ + "average_delay_30_days":{ + "description":"The average delay of delayed flights over the past 30 days, in minutes", + "type":"integer", + "format":"int64", + "x-go-name":"AverageDelay30Days", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "average_plane_age":{ + "description":"The average age of planes in the fleet in years, rounded down", + "type":"integer", + "format":"int64", + "x-go-name":"AveragePlaneAge", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "cancel_percentage_30_days":{ + "description":"The percentage of flights cancelled over the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"CancelPercentage30Days", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "delay_percentage_30_days":{ + "description":"The percentage of flights delayed over the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"DelayPercentage30Days", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "flights_30_days":{ + "description":"The number of flights of the airline in the past 30 days", + "type":"integer", + "format":"int64", + "x-go-name":"Flights30Days", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "flights_7_days":{ + "description":"The number of flights of the airline in the past 7 days", + "type":"integer", + "format":"int64", + "x-go-name":"Flights7Days", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "ident":{ + "description":"Identifier of the airline", + "type":"string", + "x-go-name":"Ident" + }, + "newest_plane_age":{ + "description":"Age of the newest plane in the fleet in years, rounded down", + "type":"integer", + "format":"int64", + "x-go-name":"NewestPlaneAge", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "oldest_plane_age":{ + "description":"Age of the oldest plane in the fleet in years, rounded down", + "type":"integer", + "format":"int64", + "x-go-name":"OldestPlaneAge", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "top_airports_30_days":{ + "description":"The top airports of the airline in the past 30 days with number of flights over the past 30 days\nNote that this dictionary is not sorted", + "type":"object", + "additionalProperties":{ + "type":"integer", + "format":"int64", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "x-go-name":"TopAirports30Days" + }, + "top_countries_30_days":{ + "description":"The top countries of the airline in the past 30 days with number of flights over the past 30 days\nNote that this dictionary is not sorted", + "type":"object", + "additionalProperties":{ + "type":"integer", + "format":"int64", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "x-go-name":"TopCountries30Days" + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"flightInfo", + "url":"https://flightera-flight-data.p.rapidapi.com/flight/info", + "description":"Returns the info for a flight on a specified date, or the current flight if date is omitted. Will return a 400 if the date requested is outside the subscription level", + "method":"GET", + "required_parameters":[ + { + "name":"flnr", + "type":"STRING", + "description":"The flight number to request", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"date", + "type":"STRING", + "description":"The date, if omitted the current flight will be returned", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/flight/info\"\nquerystring = {\"flnr\": flnr}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "actual_arrival_is_estimated":true, + "actual_arrival_local":"", + "actual_arrival_utc":"", + "actual_departure_is_estimated":true, + "actual_departure_local":"", + "actual_departure_utc":"", + "airline_iata":"", + "airline_icao":"", + "airline_name":"", + "arrival_baggage":"", + "arrival_city":"", + "arrival_gate":"", + "arrival_iata":"", + "arrival_icao":"", + "arrival_name":"", + "arrival_terminal":"", + "date":"", + "departure_checkin":"", + "departure_city":"", + "departure_gate":"", + "departure_iata":"", + "departure_icao":"", + "departure_name":"", + "departure_terminal":"", + "family":"", + "flnr":"", + "model":"", + "reg":"", + "scheduled_arrival_local":"", + "scheduled_arrival_utc":"", + "scheduled_departure_local":"", + "scheduled_departure_utc":"", + "status":"" + } + ], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "description":"The FlightInfoResult contains information about a single flight", + "type":"object", + "properties":{ + "actual_arrival_is_estimated":{ + "description":"True if the actual departure time is estimated", + "type":"boolean", + "x-go-name":"ActualArrIsEstimated" + }, + "actual_arrival_local":{ + "description":"Actual or Estimated departure time in Local Time", + "type":"string", + "format":"date-time", + "x-go-name":"ActualArrLocal" + }, + "actual_arrival_utc":{ + "description":"Actual or Estimated departure time in UTC", + "type":"string", + "format":"date-time", + "x-go-name":"ActualArrUTC" + }, + "actual_departure_is_estimated":{ + "description":"True if the actual departure time is estimated", + "type":"boolean", + "x-go-name":"ActualDepIsEstimated" + }, + "actual_departure_local":{ + "description":"Actual or Estimated departure time in Local Time", + "type":"string", + "format":"date-time", + "x-go-name":"ActualDepLocal" + }, + "actual_departure_utc":{ + "description":"Actual or Estimated departure time in UTC", + "type":"string", + "format":"date-time", + "x-go-name":"ActualDepUTC" + }, + "airline_iata":{ + "description":"AirlineIATA is the IATA code of the airline", + "type":"string", + "x-go-name":"AirlineIATA" + }, + "airline_icao":{ + "description":"AirlineICAO is the ICAO code of the airline", + "type":"string", + "x-go-name":"AirlineICAO" + }, + "airline_name":{ + "description":"AirlineName is the name of the airline", + "type":"string", + "x-go-name":"AirlineName" + }, + "arrival_baggage":{ + "description":"Baggage contains information on baggage for arrival", + "type":"string", + "x-go-name":"ArrBaggage" + }, + "arrival_city":{ + "description":"The city of the arrival airport", + "type":"string", + "x-go-name":"ArrCity" + }, + "arrival_gate":{ + "description":"The gate of the arrival airport", + "type":"string", + "x-go-name":"ArrGate" + }, + "arrival_iata":{ + "description":"The IATA code of the arrival airport", + "type":"string", + "x-go-name":"ArrIata" + }, + "arrival_icao":{ + "description":"The ICAO code of the arrival airport", + "type":"string", + "x-go-name":"ArrIcao" + }, + "arrival_name":{ + "description":"The name of the arrival airport", + "type":"string", + "x-go-name":"ArrName" + }, + "arrival_terminal":{ + "description":"The terminal of the arrival airport", + "type":"string", + "x-go-name":"ArrTerminal" + }, + "date":{ + "description":"The date of the flight in local time of the departure airport", + "type":"string", + "format":"date-time", + "x-go-name":"Date" + }, + "departure_checkin":{ + "description":"The checkin counter of the departure airport", + "type":"string", + "x-go-name":"DepCheckin" + }, + "departure_city":{ + "description":"The city of the departure airport", + "type":"string", + "x-go-name":"DepCity" + }, + "departure_gate":{ + "description":"The gate of the departure airport", + "type":"string", + "x-go-name":"DepGate" + }, + "departure_iata":{ + "description":"The IATA code of the departure airport", + "type":"string", + "x-go-name":"DepIata" + }, + "departure_icao":{ + "description":"The ICAO code of the departure airport", + "type":"string", + "x-go-name":"DepIcao" + }, + "departure_name":{ + "description":"The name of the departure airport", + "type":"string", + "x-go-name":"DepName" + }, + "departure_terminal":{ + "description":"The terminal of the departure airport", + "type":"string", + "x-go-name":"DepTerminal" + }, + "family":{ + "description":"The model family in plain text", + "type":"string", + "x-go-name":"Family" + }, + "flnr":{ + "description":"The Flight Number in Upper Case", + "type":"string", + "x-go-name":"Flnr" + }, + "model":{ + "description":"ICAO Code of the aircraft model", + "type":"string", + "x-go-name":"Model" + }, + "reg":{ + "description":"The ICAO code of the aircraft", + "type":"string", + "x-go-name":"Reg" + }, + "scheduled_arrival_local":{ + "description":"Scheduled departure Time in Local Time", + "type":"string", + "format":"date-time", + "x-go-name":"ScheduledArrLocal" + }, + "scheduled_arrival_utc":{ + "description":"Scheduled departure Time in UTC", + "type":"string", + "format":"date-time", + "x-go-name":"ScheduledArrUTC" + }, + "scheduled_departure_local":{ + "description":"Scheduled departure Time in Local Time", + "type":"string", + "format":"date-time", + "x-go-name":"ScheduledDepLocal" + }, + "scheduled_departure_utc":{ + "description":"Scheduled departure Time in UTC", + "type":"string", + "format":"date-time", + "x-go-name":"ScheduledDepUTC" + }, + "status":{ + "description":"Status of the flight, one of: [live,sched,canc,landed,unknown,diverted]", + "type":"string", + "x-go-name":"Status" + } + }, + "x-go-package":"wright/internal/api" + } + } + }, + { + "name":"airportMetar", + "url":"https://flightera-flight-data.p.rapidapi.com/airport/metar", + "description":"Returns the most recent METAR for an airport specified by the given ident.\nIncludes a parsed version of the METAR.", + "method":"GET", + "required_parameters":[ + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airport (e.g. as returned by /airport/search)", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airport/metar\"\nquerystring = {\"ident\": ident}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "altimeter":0, + "altimeter_measure":"", + "clear_sky":true, + "clouds":[ + { + "altitude":0, + "coverage":"", + "designator":"" + } + ], + "date":"", + "dew_point":0, + "ident":"", + "nosig":true, + "raw":"", + "relative_humidity":0, + "temperature":0, + "visibility":0, + "visibility_measure":"", + "weather_elements":[ + { + "descriptor":"", + "intensity":"", + "plain":"" + } + ], + "wind_calm":true, + "wind_direction":0, + "wind_gusts":0, + "wind_measure":"", + "wind_speed":0, + "wind_variable_from":0, + "wind_variable_to":0 + }, + "headers":{}, + "schema":{ + "description":"The AirportMetar object contains parsed metar for an airport", + "type":"object", + "properties":{ + "altimeter":{ + "description":"Altimeter, if provided", + "type":"integer", + "format":"int64", + "x-go-name":"Altimeter", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "altimeter_measure":{ + "description":"Altimeter measurement unit, if provided", + "type":"string", + "x-go-name":"AltimeterMeasure" + }, + "clear_sky":{ + "description":"Indicates clear sky conditions", + "type":"boolean", + "x-go-name":"ClearSky" + }, + "clouds":{ + "description":"A list of parsed cloud levels", + "type":"array", + "items":{ + "description":"CloudElement contains information about cloud level", + "type":"object", + "properties":{ + "altitude":{ + "description":"Altitude of the cloud layer", + "type":"integer", + "format":"int64", + "x-go-name":"Altitude", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "coverage":{ + "description":"Coverage indicator as provided in the metar", + "type":"string", + "x-go-name":"Coverage" + }, + "designator":{ + "description":"Designator of the cloud layer", + "type":"string", + "x-go-name":"Designator" + } + }, + "x-go-package":"wright/internal/api" + }, + "x-go-name":"Clouds" + }, + "date":{ + "description":"Date and time of the METAR", + "type":"string", + "format":"date-time", + "x-go-name":"Date" + }, + "dew_point":{ + "description":"Dew Point (Celsius)", + "type":"integer", + "format":"int64", + "x-go-name":"DewPoint", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "ident":{ + "description":"The Airport Identifier", + "type":"string", + "x-go-name":"Ident" + }, + "nosig":{ + "description":"Indicates no significant changes expected", + "type":"boolean", + "x-go-name":"Nosig" + }, + "raw":{ + "description":"The raw METAR", + "type":"string", + "x-go-name":"Raw" + }, + "relative_humidity":{ + "description":"Relative humidity in percent", + "type":"number", + "format":"double", + "x-go-name":"RelativeHumidity", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "temperature":{ + "description":"Temperature (Celsius)", + "type":"integer", + "format":"int64", + "x-go-name":"Temperature", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "visibility":{ + "description":"Visibility", + "type":"integer", + "format":"int64", + "x-go-name":"Visibility", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "visibility_measure":{ + "description":"Visibility measurement unit", + "type":"string", + "x-go-name":"VisibilityMeasure" + }, + "weather_elements":{ + "description":"A list of parsed weather elements", + "type":"array", + "items":{ + "description":"WeatherElement describes current weather conditions", + "type":"object", + "properties":{ + "descriptor":{ + "description":"The descriptor as provided in the metar", + "type":"string", + "x-go-name":"Descriptor" + }, + "intensity":{ + "description":"Intensity indicator", + "type":"string", + "x-go-name":"Intensity" + }, + "plain":{ + "description":"The parsed descriptor", + "type":"string", + "x-go-name":"Plain" + } + }, + "x-go-package":"wright/internal/api" + }, + "x-go-name":"WeatherElements" + }, + "wind_calm":{ + "description":"Indicates if wind is calm", + "type":"boolean", + "x-go-name":"WindCalm" + }, + "wind_direction":{ + "description":"Wind direction, if calm==false", + "type":"integer", + "format":"int64", + "x-go-name":"WindDirection", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "wind_gusts":{ + "description":"Wind gusts, if calm==false", + "type":"integer", + "format":"int64", + "x-go-name":"WindGusts", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "wind_measure":{ + "description":"Wind measurement units for wind_speed and wind_gusts", + "type":"string", + "x-go-name":"WindMeasure" + }, + "wind_speed":{ + "description":"Wind speed, if calm==false", + "type":"integer", + "format":"int64", + "x-go-name":"WindSpeed", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "wind_variable_from":{ + "description":"For variable Wind, from value for the wind direction", + "type":"integer", + "format":"int64", + "x-go-name":"WindVariableFrom", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "wind_variable_to":{ + "description":"For variable Wind, to value for the wind direction", + "type":"integer", + "format":"int64", + "x-go-name":"WindVariableTo", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"airportDelayDailyStatistics", + "url":"https://flightera-flight-data.p.rapidapi.com/airport/delays_by_day", + "description":"Returns detailed daily delay statistics for an airport identified by the provided identifiers. If searched by ident, only one airport is returned.\nOne of ident, iata, icao, localID must be provided. Additionally, `dt` and `isDeparture` are required.\nStatistics are calculated overnight and represent the data for the specific date.", + "method":"GET", + "required_parameters":[ + { + "name":"isDeparture", + "type":"BOOLEAN", + "description":"Flag indicating if the desired statistics are for departures (true) or arrivals (false)", + "default":true + }, + { + "name":"dt", + "type":"STRING", + "description":"The date for which delay statistics are desired, formatted as \"YYYY-MM-DD\"", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airport, as returned by /airport/search", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airport/delays_by_day\"\nquerystring = {\"isDeparture\": isdeparture, \"dt\": dt}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "airport_ident":"", + "date":"", + "flightsDelayed15To30":0, + "flightsDelayed30To45":0, + "flightsDelayed45To60":0, + "flightsDelayedOver60":0, + "flightsDelayedUnknown":0, + "flightsOnTime":0, + "isDeparture":true, + "numFlightsCancelled":0, + "numFlightsLanded":0 + }, + "headers":{}, + "schema":{ + "description":"The AirportDelayDaily contains daily delay statistics for an airport", + "type":"object", + "properties":{ + "airport_ident":{ + "description":"Identifier of the airport", + "type":"string", + "x-go-name":"Ident" + }, + "date":{ + "description":"Date for which the delay statistics are provided", + "type":"string", + "format":"date-time", + "x-go-name":"Date" + }, + "flightsDelayed15To30":{ + "description":"The number of flights that were delayed between 15 to 30 minutes on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"FlightsDel15To30", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "flightsDelayed30To45":{ + "description":"The number of flights that were delayed between 30 to 45 minutes on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"FlightsDel30To45", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "flightsDelayed45To60":{ + "description":"The number of flights that were delayed between 45 to 60 minutes on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"FlightsDel45To60", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "flightsDelayedOver60":{ + "description":"The number of flights that were delayed for more than 60 minutes on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"FlightsDel60Plus", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "flightsDelayedUnknown":{ + "description":"The number of flights with unknown delay durations on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"FlightsDelUnknown", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "flightsOnTime":{ + "description":"The number of flights that were on time on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"FlightsOnTime", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "isDeparture":{ + "description":"Flag indicating if the statistics are for departures (true) or arrivals (false)", + "type":"boolean", + "x-go-name":"IsDeparture" + }, + "numFlightsCancelled":{ + "description":"The number of flights that were cancelled at the airport on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"NumFlightsCanc", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "numFlightsLanded":{ + "description":"The number of flights that landed at the airport on the given date", + "type":"integer", + "format":"int64", + "x-go-name":"NumFlightsLanded", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"airportFlights", + "url":"https://flightera-flight-data.p.rapidapi.com/airport/flights", + "description":"Returns a list of flights for an airport, direction and time. The list is sorted ascending by scheduled departure time for direction==\"departure\" and sorted descending by scheduled arrival time for direction==\"arrival\".\nThe next departure/arrival time is returned for pagination.\nThe dates returned for each flight represent the scheduled departure date in local time and can be used to query flight data via /flight/info.", + "method":"GET", + "required_parameters":[ + { + "name":"direction", + "type":"STRING", + "description":"Direction, one of \"arrival\", \"departure\"", + "default":"" + }, + { + "name":"ident", + "type":"STRING", + "description":"Ident of the airport to request. Ident is the unique identifier as returned by /airport/search or /airport/info endpoints.", + "default":"" + }, + { + "name":"time", + "type":"STRING", + "description":"Timestamp in UTC. If direction is \"arrival\", show flights with scheduled arrival time prior to this timestamp. If direction is \"departure\", show flights with scheduled departure time after this timestamp. Expected in any valid format, such as 2022-01-01T12:00:00.000Z. Maximum range of flights returned is 30 days.", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"counterpart_ident", + "type":"STRING", + "description":"Ident of the counterpart airport (destination if direction=arrival, otherwise arrival). Used to query connections on a defined route. Ident is the unique identifier as returned by /airport/search or /airport/info endpoints.", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airport/flights\"\nquerystring = {\"direction\": direction, \"ident\": ident, \"time\": time}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "flights":[ + { + "arrival_ident":"", + "date":"", + "departure_ident":"", + "flnr":"", + "status":"" + } + ], + "next_time":"" + }, + "headers":{}, + "schema":{ + "description":"FlightSearchResponses contains flights search responses and the next time, to be used for pagination", + "type":"object", + "properties":{ + "flights":{ + "description":"A list of flights returned by the search", + "type":"array", + "items":{ + "description":"FlightSearchResult contains one flight search response", + "type":"object", + "properties":{ + "arrival_ident":{ + "description":"The Identifier of the arrival airport", + "type":"string", + "x-go-name":"ArrivalIdent" + }, + "date":{ + "description":"The date of the flight in local time of the departure airport", + "type":"string", + "format":"date-time", + "x-go-name":"Date" + }, + "departure_ident":{ + "description":"The Identifier of the departure airport", + "type":"string", + "x-go-name":"DepartureIdent" + }, + "flnr":{ + "description":"The Flight Number in Upper Case", + "type":"string", + "x-go-name":"Flnr" + }, + "status":{ + "description":"Status of the flight, one of: [live,scheduled,cancelled,landed,unknown]", + "type":"string", + "x-go-name":"Status" + } + }, + "x-go-package":"wright/internal/api" + }, + "x-go-name":"Flights" + }, + "next_time":{ + "description":"The next time to be used for pagination", + "type":"string", + "format":"date-time", + "x-go-name":"NextTime" + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"aircraftInfo", + "url":"https://flightera-flight-data.p.rapidapi.com/aircraft/info", + "description":"Returns detailed aircraft information for an aircraft identified by registration.\nOnly works for currently active aircraft", + "method":"GET", + "required_parameters":[ + { + "name":"reg", + "type":"STRING", + "description":"The registration of the aircraft, as returned by /airline/aircraft or /aircraft/search", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/aircraft/info\"\nquerystring = {\"reg\": reg}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "airline":"", + "engines":"", + "first_flight":"", + "hex":"", + "is_cargo":true, + "last_flight":"", + "last_flight_number":"", + "ln":"", + "manufacturer":"", + "model":"", + "model_family":"", + "model_spec":"", + "msn":"", + "reg":"", + "seat_config":{} + }, + "headers":{}, + "schema":{ + "description":"The AircraftResult contains information about one aircraft", + "type":"object", + "properties":{ + "airline":{ + "description":"Airline identifier", + "type":"string", + "x-go-name":"Airline" + }, + "engines":{ + "description":"Engine configuration, if available", + "type":"string", + "x-go-name":"Engines" + }, + "first_flight":{ + "description":"First flight date of that aircraft, if available", + "type":"string", + "format":"date-time", + "x-go-name":"FirstFlight" + }, + "hex":{ + "description":"The ICAO code of the aircraft, if available", + "type":"string", + "x-go-name":"Hex" + }, + "is_cargo":{ + "description":"Indicates if the aircraft is a cargo plane", + "type":"boolean", + "x-go-name":"IsCargo" + }, + "last_flight":{ + "description":"Last flight date, scheduled departure in UTC", + "type":"string", + "format":"date-time", + "x-go-name":"LastFlight" + }, + "last_flight_number":{ + "description":"Last flight number of the aircraft", + "type":"string", + "x-go-name":"LastFlightNumber" + }, + "ln":{ + "description":"Line number of the aircraft, if available", + "type":"string", + "x-go-name":"LN" + }, + "manufacturer":{ + "description":"Manufacturer of the aircraft", + "type":"string", + "x-go-name":"Mfg" + }, + "model":{ + "description":"Model ICAO code of the aircraft", + "type":"string", + "x-go-name":"Model" + }, + "model_family":{ + "description":"Model Family of the aircraft", + "type":"string", + "x-go-name":"ModelFamily" + }, + "model_spec":{ + "description":"Model Specification for the aircraft", + "type":"string", + "x-go-name":"ModelSpec" + }, + "msn":{ + "description":"Manufacturer's serial number of the aircraft, if available", + "type":"string", + "x-go-name":"MSN" + }, + "reg":{ + "description":"The registration of the aircraft", + "type":"string", + "x-go-name":"Reg" + }, + "seat_config":{ + "description":"Seat configuration of the aircraft. The returned value is a map of seat codes to number of seats.\nThe codes are one of: F (first class), C (business class), Y (economy class), W (economy plus). Empty for cargo planes", + "type":"object", + "additionalProperties":{ + "type":"integer", + "format":"int64", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "x-go-name":"SeatConfig" + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"airlineFlights", + "url":"https://flightera-flight-data.p.rapidapi.com/airline/flights", + "description":"Returns a list of flights for an airline given a start time. The list is sorted ascending by scheduled departure time.\nThe next departure/ time is returned for pagination (use start times to paginate).\nThe dates returned for each flight represent the scheduled departure date in local time and can be used to query flight data via /flight/info.", + "method":"GET", + "required_parameters":[ + { + "name":"time", + "type":"STRING", + "description":"Timestamp in UTC. Shows flights with scheduled departure time after this timestamp. Expected in any valid format, such as 2022-01-01T12:00:00.000Z. Maximum range of flights returned is 30 days.", + "default":"" + }, + { + "name":"ident", + "type":"STRING", + "description":"Ident of the airline to request. Ident is the unique identifier as returned by /airline/search or /airline/info endpoints.", + "default":"" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airline/flights\"\nquerystring = {\"time\": time, \"ident\": ident}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "flights":[ + { + "arrival_ident":"", + "date":"", + "departure_ident":"", + "flnr":"", + "status":"" + } + ], + "next_time":"" + }, + "headers":{}, + "schema":{ + "description":"FlightSearchResponses contains flights search responses and the next time, to be used for pagination", + "type":"object", + "properties":{ + "flights":{ + "description":"A list of flights returned by the search", + "type":"array", + "items":{ + "description":"FlightSearchResult contains one flight search response", + "type":"object", + "properties":{ + "arrival_ident":{ + "description":"The Identifier of the arrival airport", + "type":"string", + "x-go-name":"ArrivalIdent" + }, + "date":{ + "description":"The date of the flight in local time of the departure airport", + "type":"string", + "format":"date-time", + "x-go-name":"Date" + }, + "departure_ident":{ + "description":"The Identifier of the departure airport", + "type":"string", + "x-go-name":"DepartureIdent" + }, + "flnr":{ + "description":"The Flight Number in Upper Case", + "type":"string", + "x-go-name":"Flnr" + }, + "status":{ + "description":"Status of the flight, one of: [live,scheduled,cancelled,landed,unknown]", + "type":"string", + "x-go-name":"Status" + } + }, + "x-go-package":"wright/internal/api" + }, + "x-go-name":"Flights" + }, + "next_time":{ + "description":"The next time to be used for pagination", + "type":"string", + "format":"date-time", + "x-go-name":"NextTime" + } + }, + "x-go-package":"wright/internal/api" + } + }, + { + "name":"airlineInfo", + "url":"https://flightera-flight-data.p.rapidapi.com/airline/info", + "description":"Returns detailed airline information for airlines identified by the provided identifiers. In most cases the list should contain only one entry.\nHowever, due to the nature of the data, it is possible that multiple entries are returned.\nIf searched by ident, only one airline is returned.\nOne of ident, iata, icao, name must be provided.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"icao", + "type":"STRING", + "description":"The ICAO code of the airline, must have a length of 4", + "default":"" + }, + { + "name":"name", + "type":"STRING", + "description":"The name of the airline. Not case sensitive", + "default":"" + }, + { + "name":"iata", + "type":"STRING", + "description":"The IATA code of the airline, must have a length of 3", + "default":"" + }, + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airline, as returned by /airline/search", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airline/info\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":[ + { + "alliance":"", + "callsign":"", + "country":"", + "end_date":"", + "founding_date":"", + "iata":"", + "icao":"", + "ident":"", + "name":"", + "start_date":"", + "website":"" + } + ], + "headers":{}, + "schema":{ + "type":"array", + "items":{ + "description":"The AirlineInfoResult contains information about one airline", + "type":"object", + "properties":{ + "alliance":{ + "description":"Alliance of the airline, if available", + "type":"string", + "x-go-name":"Alliance" + }, + "callsign":{ + "description":"The callsign of the airline, if available", + "type":"string", + "x-go-name":"Callsign" + }, + "country":{ + "description":"The country of the airline as a two letter code, if available", + "type":"string", + "x-go-name":"Country" + }, + "end_date":{ + "description":"The date the airline ceased operation, if available", + "type":"string", + "format":"date-time", + "x-go-name":"CeasedOps" + }, + "founding_date":{ + "description":"The founding date of the airline, if available", + "type":"string", + "format":"date-time", + "x-go-name":"FoundingDate" + }, + "iata":{ + "description":"The IATA code of the airline, if available", + "type":"string", + "x-go-name":"Iata" + }, + "icao":{ + "description":"The ICAO code of the airline, if available", + "type":"string", + "x-go-name":"Icao" + }, + "ident":{ + "description":"The Ident code of the airline", + "type":"string", + "x-go-name":"Ident" + }, + "name":{ + "description":"The name of the airline", + "type":"string", + "x-go-name":"Name" + }, + "start_date":{ + "description":"The date the airline started operation, if available", + "type":"string", + "format":"date-time", + "x-go-name":"StartedOps" + }, + "website":{ + "description":"Website of the airline, if available", + "type":"string", + "x-go-name":"Website" + } + }, + "x-go-package":"wright/internal/api" + } + } + }, + { + "name":"airportStatistics", + "url":"https://flightera-flight-data.p.rapidapi.com/airport/statistics", + "description":"Returns detailed airport statistics for airports identified by the provided identifiers. In most cases the list should contain only one entry, unless the ident is ambiguous.\nIf searched by ident, only one airport is returned.\nOne of ident, iata, icao, localID must be provided.\nStatistics are calculated overnight and represent the current day's data.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[ + { + "name":"ident", + "type":"STRING", + "description":"The ident of the airport, as returned by /airport/search", + "default":"" + }, + { + "name":"localID", + "type":"STRING", + "description":"Local identifiers of the airport, currently mostly available for the US & CA (FAA-ID). Max length is 6", + "default":"" + }, + { + "name":"iata", + "type":"STRING", + "description":"The IATA code of the airport, must have a length of 3", + "default":"" + }, + { + "name":"icao", + "type":"STRING", + "description":"The ICAO code of the airport, must have a length of 4", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://flightera-flight-data.p.rapidapi.com/airport/statistics\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightera-flight-data.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "arrivals":0, + "avg_arrival_distance":0, + "avg_delay_arrivals":0, + "avg_delay_departures":0, + "avg_departure_distance":0, + "cancelled_arrivals":0, + "cancelled_departures":0, + "delayed_arrivals":0, + "delayed_departures":0, + "departures":0, + "ident":"", + "top_airlines":{}, + "top_destinations":{}, + "top_sources":{} + }, + "headers":{}, + "schema":{ + "description":"The AirportStatsResult contains detailed statistics for an airport", + "type":"object", + "properties":{ + "arrivals":{ + "description":"The number of flights that arrived at the airport within the past 30 days", + "type":"integer", + "format":"int64", + "x-go-name":"Arrivals", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "avg_arrival_distance":{ + "description":"Average distance of arriving flights over the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"AvgArrivalDistance", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "avg_delay_arrivals":{ + "description":"Average delay of delayed arriving flights over the past 30 days. Only provided if meaningful.", + "type":"number", + "format":"double", + "x-go-name":"AvgDelayArrivals", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "avg_delay_departures":{ + "description":"Average delay of delayed departing flights over the past 30 days. Only provided if meaningful.", + "type":"number", + "format":"double", + "x-go-name":"AvgDelayDepartures", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "avg_departure_distance":{ + "description":"Average distance of departing flights over the past 30 days", + "type":"number", + "format":"double", + "x-go-name":"AvgDepartureDistance", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "cancelled_arrivals":{ + "description":"Percentage of cancelled arrivals. Only provided if meaningful.", + "type":"number", + "format":"double", + "x-go-name":"CancelledArrivals", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "cancelled_departures":{ + "description":"Percentage of cancelled departures. Only provided if meaningful.", + "type":"number", + "format":"double", + "x-go-name":"CancelledDepartures", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "delayed_arrivals":{ + "description":"Percentage of delayed arrivals (delay > 10 minutes). Only provided if meaningful.", + "type":"number", + "format":"double", + "x-go-name":"DelayedArrivals", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "delayed_departures":{ + "description":"Percentage of delayed departures (delay > 10 minutes). Only provided if meaningful.", + "type":"number", + "format":"double", + "x-go-name":"DelayedDepartures", + "minimum":-1.7976931348623157e+308, + "maximum":1.7976931348623157e+308 + }, + "departures":{ + "description":"The number of flights that departed from the airport within the past 30 days", + "type":"integer", + "format":"int64", + "x-go-name":"Departures", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "ident":{ + "description":"Identifier of the airport", + "type":"string", + "x-go-name":"Ident" + }, + "top_airlines":{ + "description":"Top 5 airlines with number of flights within the past 30 days. Contains a map with airline identifier and number of flights", + "type":"object", + "additionalProperties":{ + "type":"integer", + "format":"int64", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "x-go-name":"TopAirlines" + }, + "top_destinations":{ + "description":"Top 10 destinations for departing flights with number of flights within the past 30 days. Contains a map with airport identifier and number of flights", + "type":"object", + "additionalProperties":{ + "type":"integer", + "format":"int64", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "x-go-name":"TopDestinations" + }, + "top_sources":{ + "description":"Top 10 sources for arriving flights with number of flights within the past 30 days. Contains a map with airport identifier and number of flights", + "type":"object", + "additionalProperties":{ + "type":"integer", + "format":"int64", + "minimum":-9223372036854776000, + "maximum":9223372036854776000 + }, + "x-go-name":"TopSources" + } + }, + "x-go-package":"wright/internal/api" + } + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flightera_flight_data/api.py b/toolbench/toolenv/tools/Travel/flightera_flight_data/api.py new file mode 100644 index 0000000000000000000000000000000000000000..bb79540eed01974f5854dc8714e6ca70600e8626 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flightera_flight_data/api.py @@ -0,0 +1,482 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flightsearch(flnr: str, dtfrom: str=None, dtto: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of flights for a given flight number. Minimum and/or maximum date can optionally be specified to limit the search. Results are ordered by departure date ascending. The next departure time is returned for pagination. + Will return a 400 if the date range requested is outside the subscription level" + flnr: The flight number to request + dtfrom: The minimum date to request + dtto: The maximum date to request + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/flight/search" + querystring = {'flnr': flnr, } + if dtfrom: + querystring['dtFrom'] = dtfrom + if dtto: + querystring['dtTo'] = dtto + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlinesearch(iata: str=None, name: str=None, icao: str=None, country: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of airlines for a given country, identifiers or name search pattern. Multiple arguments can be specified to limit the search. + Either one of the arguments must be specified." + iata: The IATA code of the airline + name: The name or part of the name of the airline, case insensitive + icao: The ICAO code of the airline + country: The ISO 3166-1 alpha-2 code country code to request + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airline/search" + querystring = {} + if iata: + querystring['iata'] = iata + if name: + querystring['name'] = name + if icao: + querystring['icao'] = icao + if country: + querystring['country'] = country + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraftsearch(model: str=None, airline_ident: str=None, country: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "A list of plane registrations for a given search criteria. + Can search by airline ident, country, model + If multiple arguments are provided, they will be chained as AND + Returns only currently active aircraft" + model: Model ICAO code + airline_ident: The ident of the airline, as returned by /airline/search + country: Two letter country code + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/aircraft/search" + querystring = {} + if model: + querystring['model'] = model + if airline_ident: + querystring['airline_ident'] = airline_ident + if country: + querystring['country'] = country + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airportsearch(timezone: str=None, country: str=None, bbox: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of airports for a given country, bbox or timezone. Multiple arguments can be specified to limit the search. + Either one of country, bbox or timezone must be specified." + timezone: The timezone of the airport (e.g. Europe/Berlin) + country: The ISO 3166-1 alpha-2 code country code to request + bbox: A bbox (min Longitude , min Latitude , max Longitude , max Latitude), will restrict results to airports within that box + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airport/search" + querystring = {} + if timezone: + querystring['timezone'] = timezone + if country: + querystring['country'] = country + if bbox: + querystring['bbox'] = bbox + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airportinfo(icao: str=None, localid: str=None, iata: str=None, ident: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns detailed airport information for airports identified by the provided identifiers. In most cases the list should contain only one entry. + However, due to the nature of the data, it is possible that multiple entries are returned. + If searched by ident, only one airport is returned. + One of ident, iata, icao, localID must be provided." + icao: The ICAO code of the airport, must have a length of 4 + localid: Local identifiers of the airport, currently mostly available for the US & CA (FAA-ID). Max length is 6 + iata: The IATA code of the airport, must have a length of 3 + ident: The ident of the airport, as returned by /airport/search + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airport/info" + querystring = {} + if icao: + querystring['icao'] = icao + if localid: + querystring['localID'] = localid + if iata: + querystring['iata'] = iata + if ident: + querystring['ident'] = ident + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlineaircrafts(ident: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "A list of plane registrations for a given airline. Can search by ident only. + Only returns currently active aircraft" + ident: The ident of the airline, as returned by /airline/search + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airline/aircrafts" + querystring = {'ident': ident, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flightstatistics(flnr: str, aptfrom: str=None, aptto: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns statistics for a flight number with one entry per route flown. Statistics are updated daily. + The query can be filtered by route. + Statistics are always as of today, please contact us if you require historical statistics." + flnr: The flight number to request + aptfrom: Departure airport ident + aptto: Arrival airport ident + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/flight/statistics" + querystring = {'flnr': flnr, } + if aptfrom: + querystring['aptFrom'] = aptfrom + if aptto: + querystring['aptTo'] = aptto + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlinestatistics(icao: str=None, ident: str=None, iata: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns detailed airline statistics for airlines identified by the provided identifiers. In most cases the list should contain only one entry, unless the ident is ambiguous. + If searched by ident, only one airline is returned. + One of ident, iata, icao must be provided. + Statistics are calculated overnight and represent the current day's data." + icao: The ICAO code of the airline, must have a length of 4 + ident: The ident of the airline, as returned by /airline/search + iata: The IATA code of the airline, must have a length of 3 + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airline/statistics" + querystring = {} + if icao: + querystring['icao'] = icao + if ident: + querystring['ident'] = ident + if iata: + querystring['iata'] = iata + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def flightinfo(flnr: str, date: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the info for a flight on a specified date, or the current flight if date is omitted. Will return a 400 if the date requested is outside the subscription level" + flnr: The flight number to request + date: The date, if omitted the current flight will be returned + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/flight/info" + querystring = {'flnr': flnr, } + if date: + querystring['date'] = date + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airportmetar(ident: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the most recent METAR for an airport specified by the given ident. + Includes a parsed version of the METAR." + ident: The ident of the airport (e.g. as returned by /airport/search) + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airport/metar" + querystring = {'ident': ident, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airportdelaydailystatistics(isdeparture: bool, dt: str, ident: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns detailed daily delay statistics for an airport identified by the provided identifiers. If searched by ident, only one airport is returned. + One of ident, iata, icao, localID must be provided. Additionally, `dt` and `isDeparture` are required. + Statistics are calculated overnight and represent the data for the specific date." + isdeparture: Flag indicating if the desired statistics are for departures (true) or arrivals (false) + dt: The date for which delay statistics are desired, formatted as "YYYY-MM-DD" + ident: The ident of the airport, as returned by /airport/search + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airport/delays_by_day" + querystring = {'isDeparture': isdeparture, 'dt': dt, } + if ident: + querystring['ident'] = ident + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airportflights(direction: str, ident: str, time: str, counterpart_ident: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of flights for an airport, direction and time. The list is sorted ascending by scheduled departure time for direction=="departure" and sorted descending by scheduled arrival time for direction=="arrival". + The next departure/arrival time is returned for pagination. + The dates returned for each flight represent the scheduled departure date in local time and can be used to query flight data via /flight/info." + direction: Direction, one of "arrival", "departure" + ident: Ident of the airport to request. Ident is the unique identifier as returned by /airport/search or /airport/info endpoints. + time: Timestamp in UTC. If direction is "arrival", show flights with scheduled arrival time prior to this timestamp. If direction is "departure", show flights with scheduled departure time after this timestamp. Expected in any valid format, such as 2022-01-01T12:00:00.000Z. Maximum range of flights returned is 30 days. + counterpart_ident: Ident of the counterpart airport (destination if direction=arrival, otherwise arrival). Used to query connections on a defined route. Ident is the unique identifier as returned by /airport/search or /airport/info endpoints. + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airport/flights" + querystring = {'direction': direction, 'ident': ident, 'time': time, } + if counterpart_ident: + querystring['counterpart_ident'] = counterpart_ident + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def aircraftinfo(reg: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns detailed aircraft information for an aircraft identified by registration. + Only works for currently active aircraft" + reg: The registration of the aircraft, as returned by /airline/aircraft or /aircraft/search + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/aircraft/info" + querystring = {'reg': reg, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlineflights(time: str, ident: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns a list of flights for an airline given a start time. The list is sorted ascending by scheduled departure time. + The next departure/ time is returned for pagination (use start times to paginate). + The dates returned for each flight represent the scheduled departure date in local time and can be used to query flight data via /flight/info." + time: Timestamp in UTC. Shows flights with scheduled departure time after this timestamp. Expected in any valid format, such as 2022-01-01T12:00:00.000Z. Maximum range of flights returned is 30 days. + ident: Ident of the airline to request. Ident is the unique identifier as returned by /airline/search or /airline/info endpoints. + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airline/flights" + querystring = {'time': time, 'ident': ident, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airlineinfo(icao: str=None, name: str=None, iata: str=None, ident: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns detailed airline information for airlines identified by the provided identifiers. In most cases the list should contain only one entry. + However, due to the nature of the data, it is possible that multiple entries are returned. + If searched by ident, only one airline is returned. + One of ident, iata, icao, name must be provided." + icao: The ICAO code of the airline, must have a length of 4 + name: The name of the airline. Not case sensitive + iata: The IATA code of the airline, must have a length of 3 + ident: The ident of the airline, as returned by /airline/search + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airline/info" + querystring = {} + if icao: + querystring['icao'] = icao + if name: + querystring['name'] = name + if iata: + querystring['iata'] = iata + if ident: + querystring['ident'] = ident + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airportstatistics(ident: str=None, localid: str=None, iata: str=None, icao: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns detailed airport statistics for airports identified by the provided identifiers. In most cases the list should contain only one entry, unless the ident is ambiguous. + If searched by ident, only one airport is returned. + One of ident, iata, icao, localID must be provided. + Statistics are calculated overnight and represent the current day's data." + ident: The ident of the airport, as returned by /airport/search + localid: Local identifiers of the airport, currently mostly available for the US & CA (FAA-ID). Max length is 6 + iata: The IATA code of the airport, must have a length of 3 + icao: The ICAO code of the airport, must have a length of 4 + + """ + url = f"https://flightera-flight-data.p.rapidapi.com/airport/statistics" + querystring = {} + if ident: + querystring['ident'] = ident + if localid: + querystring['localID'] = localid + if iata: + querystring['iata'] = iata + if icao: + querystring['icao'] = icao + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightera-flight-data.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flighthive_explore_the_skies.json b/toolbench/toolenv/tools/Travel/flighthive_explore_the_skies.json new file mode 100644 index 0000000000000000000000000000000000000000..3f420657fbc448151432b19fc395207eb1cb6720 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flighthive_explore_the_skies.json @@ -0,0 +1,89 @@ +{ + "tool_name":"FlightHive: Explore the Skies", + "tool_description":"Flightlink embodies the idea of a bustling hub of flight-related information and services, where users can explore the skies and access a wealth of data about cities, flights, countries, airlines, airplanes, aircraft types, and taxes. The name combines the concepts of flight and a vibrant community, creating a memorable and engaging identity for the API.", + "title":"FlightHive: Explore the Skies", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/anthonys1760/api/flighthive-explore-the-skies/", + "host":"flighthive-explore-the-skies.p.rapidapi.com", + "api_list":[ + { + "name":"Get aircraft types", + "url":"https://flighthive-explore-the-skies.p.rapidapi.com/aircraft_types", + "description":"Get data about aircraft types", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flighthive-explore-the-skies.p.rapidapi.com/aircraft_types\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flighthive-explore-the-skies.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all airplanes", + "url":"https://flighthive-explore-the-skies.p.rapidapi.com/airplanes", + "description":"Get data on all airplanes", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flighthive-explore-the-skies.p.rapidapi.com/airplanes\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flighthive-explore-the-skies.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all airlines", + "url":"https://flighthive-explore-the-skies.p.rapidapi.com/airlines", + "description":"Get all airlines", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flighthive-explore-the-skies.p.rapidapi.com/airlines\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flighthive-explore-the-skies.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get all countries", + "url":"https://flighthive-explore-the-skies.p.rapidapi.com/countries", + "description":"Get data about all countries", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flighthive-explore-the-skies.p.rapidapi.com/countries\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flighthive-explore-the-skies.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get the latest flight data", + "url":"https://flighthive-explore-the-skies.p.rapidapi.com/flights", + "description":"Get the latest flight data", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flighthive-explore-the-skies.p.rapidapi.com/flights\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flighthive-explore-the-skies.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get cities", + "url":"https://flighthive-explore-the-skies.p.rapidapi.com/cities", + "description":"Get's all cities", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flighthive-explore-the-skies.p.rapidapi.com/cities\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flighthive-explore-the-skies.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flighthive_explore_the_skies/api.py b/toolbench/toolenv/tools/Travel/flighthive_explore_the_skies/api.py new file mode 100644 index 0000000000000000000000000000000000000000..0e0b181c7e4a8d791392d116ccd71e426a50f13f --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flighthive_explore_the_skies/api.py @@ -0,0 +1,134 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_aircraft_types(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get data about aircraft types" + + """ + url = f"https://flighthive-explore-the-skies.p.rapidapi.com/aircraft_types" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flighthive-explore-the-skies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_airplanes(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get data on all airplanes" + + """ + url = f"https://flighthive-explore-the-skies.p.rapidapi.com/airplanes" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flighthive-explore-the-skies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_airlines(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get all airlines" + + """ + url = f"https://flighthive-explore-the-skies.p.rapidapi.com/airlines" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flighthive-explore-the-skies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_countries(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get data about all countries" + + """ + url = f"https://flighthive-explore-the-skies.p.rapidapi.com/countries" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flighthive-explore-the-skies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_the_latest_flight_data(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get the latest flight data" + + """ + url = f"https://flighthive-explore-the-skies.p.rapidapi.com/flights" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flighthive-explore-the-skies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_cities(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get's all cities" + + """ + url = f"https://flighthive-explore-the-skies.p.rapidapi.com/cities" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flighthive-explore-the-skies.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flightslogic_flight.json b/toolbench/toolenv/tools/Travel/flightslogic_flight.json new file mode 100644 index 0000000000000000000000000000000000000000..66f44f9666d5ddf8decb53b320f05b84992864de --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flightslogic_flight.json @@ -0,0 +1,24 @@ +{ + "tool_name":"FlightsLogic Flight", + "tool_description":" FlightsLogic integrates Flight API, Flight Search API Integration, Flight Ticket Software, Flight XML API Integration for travel companies worldwide.", + "title":"FlightsLogic Flight", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mohammadjaved/api/flightslogic-flight/", + "host":"flightslogic-flight.p.rapidapi.com", + "api_list":[ + { + "name":"FlightsLogic Flight API", + "url":"https://flightslogic-flight.p.rapidapi.comhttps://www.flightslogic.com/flight-api.php", + "description":"FlightsLogic provides Flight API integration within your new or existing online travel website. Flight API integration connects travel agents and customers across the globe, extensively broadening your market reach. We deliver Flight API Integration Solution- one of the most reliable and most trusted Global Distribution Systems (GDS), that helps the travel portals get the best service suppliers by their side to broadcast their effective services at the portal and that successively can bring vast website traffic as well.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flightslogic-flight.p.rapidapi.comhttps://www.flightslogic.com/flight-api.php\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightslogic-flight.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flightslogic_flight/api.py b/toolbench/toolenv/tools/Travel/flightslogic_flight/api.py new file mode 100644 index 0000000000000000000000000000000000000000..eaab23322132b18acc718484e744eb2ea7106da4 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flightslogic_flight/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def flightslogic_flight_api(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic provides Flight API integration within your new or existing online travel website. Flight API integration connects travel agents and customers across the globe, extensively broadening your market reach. We deliver Flight API Integration Solution- one of the most reliable and most trusted Global Distribution Systems (GDS), that helps the travel portals get the best service suppliers by their side to broadcast their effective services at the portal and that successively can bring vast website traffic as well." + + """ + url = f"https://flightslogic-flight.p.rapidapi.comhttps://www.flightslogic.com/flight-api.php" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightslogic-flight.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flightslogic_s_flight_booking_flight_booking_software.json b/toolbench/toolenv/tools/Travel/flightslogic_s_flight_booking_flight_booking_software.json new file mode 100644 index 0000000000000000000000000000000000000000..ec742df1e9649afc5a1ef0519fe4d9f1d6352866 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flightslogic_s_flight_booking_flight_booking_software.json @@ -0,0 +1,24 @@ +{ + "tool_name":"FlightsLogic's Flight Booking | Flight Booking Software", + "tool_description":"FlightsLogic provides Flight Booking Software, Flight Booking API to the travel agents, tour operators and travel companies worldwide.", + "title":"FlightsLogic's Flight Booking | Flight Booking Software", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/mohammadjaved/api/flightslogics-flight-booking-flight-booking-software/", + "host":"flightslogics-flight-booking-flight-booking-software.p.rapidapi.com", + "api_list":[ + { + "name":"https://flightslogic.com/about.php", + "url":"https://flightslogics-flight-booking-flight-booking-software.p.rapidapi.comhttps://flightslogic.com/about.php", + "description":"FlightsLogic provides Flight Booking Software, Flight Booking API to the travel agents, tour operators and travel companies worldwide.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://flightslogics-flight-booking-flight-booking-software.p.rapidapi.comhttps://flightslogic.com/about.php\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flightslogics-flight-booking-flight-booking-software.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flightslogic_s_flight_booking_flight_booking_software/api.py b/toolbench/toolenv/tools/Travel/flightslogic_s_flight_booking_flight_booking_software/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4067c7eb71a04d10752783e99357762459fdbccf --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flightslogic_s_flight_booking_flight_booking_software/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def https_flightslogic_com_about_php(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "FlightsLogic provides Flight Booking Software, Flight Booking API to the travel agents, tour operators and travel companies worldwide." + + """ + url = f"https://flightslogics-flight-booking-flight-booking-software.p.rapidapi.comhttps://flightslogic.com/about.php" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flightslogics-flight-booking-flight-booking-software.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flixbus.json b/toolbench/toolenv/tools/Travel/flixbus.json new file mode 100644 index 0000000000000000000000000000000000000000..061b0dfe25b2323b1834de49d8f802deee46cd9d --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flixbus.json @@ -0,0 +1,151 @@ +{ + "product_id": "api_08abcce0-d108-406b-b438-c3e6abbff24b", + "tool_description": "A service that provides flixbus travel search, available cities, stations, timetables and routes. Site: www.flixbus.com **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters", + "home_url": "https://rapidapi.com/tipsters/api/flixbus/", + "name": "Flixbus", + "title": "Flixbus", + "pricing": "FREEMIUM", + "tool_name": "Flixbus", + "score": { + "avgServiceLevel": 100, + "avgLatency": 522, + "avgSuccessRate": 97, + "popularityScore": 9.6, + "__typename": "Score" + }, + "host": "flixbus.p.rapidapi.com", + "api_list": [ + { + "name": "stations", + "url": "https://flixbus.p.rapidapi.com/v1/stations", + "description": "Get a list of stations", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/stations\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/stations\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": { + "message": "You are not subscribed to this API." + }, + "statuscode": 200, + "schema": {} + }, + { + "name": "search-trips", + "url": "https://flixbus.p.rapidapi.com/v1/search-trips", + "description": "Search trips from-to. Specify for which parameters (from_id, to_id) you are looking for, city or station", + "method": "GET", + "required_parameters": [ + { + "name": "to_id", + "type": "NUMBER", + "description": "To id", + "default": 1374 + }, + { + "name": "from_id", + "type": "NUMBER", + "description": "From id", + "default": 88 + }, + { + "name": "currency", + "type": "STRING", + "description": "", + "default": "EUR" + }, + { + "name": "departure_date", + "type": "STRING", + "description": "Departure date", + "default": "2021-12-26" + }, + { + "name": "number_adult", + "type": "NUMBER", + "description": "Number of adults", + "default": 1 + } + ], + "optional_parameters": [ + { + "name": "number_bike_slot", + "type": "NUMBER", + "description": "Number of bike slot", + "default": 0 + }, + { + "name": "search_by", + "type": "OBJECT", + "description": "Search by", + "default": "cities" + }, + { + "name": "number_children", + "type": "NUMBER", + "description": "Number of children", + "default": 0 + } + ], + "code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/search-trips\"\nquerystring = {\"to_id\": 1374, \"from_id\": 88, \"number_bike_slot\": 0, \"search_by\": \"cities\", \"currency\": \"EUR\", \"departure_date\": \"2021-12-26\", \"number_adult\": 1, \"number_children\": 0}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/search-trips\"\nquerystring = {\"to_id\": 1374, \"from_id\": 88, \"number_bike_slot\": 0, \"search_by\": \"cities\", \"currency\": \"EUR\", \"departure_date\": \"2021-12-26\", \"number_adult\": 1, \"number_children\": 0}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "cities", + "url": "https://flixbus.p.rapidapi.com/v1/cities", + "description": "Get a list of cities", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/cities\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/cities\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "schedule", + "url": "https://flixbus.p.rapidapi.com/v1/schedule", + "description": "Get a list of schedule", + "method": "GET", + "required_parameters": [ + { + "name": "station_id", + "type": "NUMBER", + "description": "Station id", + "default": "66" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/schedule\"\nquerystring = {\"station_id\": \"66\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/schedule\"\nquerystring = {\"station_id\": \"66\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 1, + "schema": "" + }, + { + "name": "trip-details", + "url": "https://flixbus.p.rapidapi.com/v1/trip-details", + "description": "Get a trip details by trip uid", + "method": "GET", + "required_parameters": [ + { + "name": "trip_uid", + "type": "STRING", + "description": "Trip uid", + "default": "direct:110725991:2015:4188" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/trip-details\"\nquerystring = {\"trip_uid\": \"direct:110725991:2015:4188\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus.p.rapidapi.com/v1/trip-details\"\nquerystring = {\"trip_uid\": \"direct:110725991:2015:4188\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + } + ], + "standardized_name": "flixbus" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flixbus/api.py b/toolbench/toolenv/tools/Travel/flixbus/api.py new file mode 100644 index 0000000000000000000000000000000000000000..4b2dc3055da791bf0d20e9ebbcc76c5947bd595e --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flixbus/api.py @@ -0,0 +1,128 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def stations(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of stations" + + """ + url = f"https://flixbus.p.rapidapi.com/v1/stations" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def search_trips(to_id: int, from_id: int, currency: str, departure_date: str, number_adult: int, number_bike_slot: int=0, search_by: str='cities', number_children: int=0, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search trips from-to. Specify for which parameters (from_id, to_id) you are looking for, city or station" + to_id: To id + from_id: From id + departure_date: Departure date + number_adult: Number of adults + number_bike_slot: Number of bike slot + search_by: Search by + number_children: Number of children + + """ + url = f"https://flixbus.p.rapidapi.com/v1/search-trips" + querystring = {'to_id': to_id, 'from_id': from_id, 'currency': currency, 'departure_date': departure_date, 'number_adult': number_adult, } + if number_bike_slot: + querystring['number_bike_slot'] = number_bike_slot + if search_by: + querystring['search_by'] = search_by + if number_children: + querystring['number_children'] = number_children + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def cities(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of cities" + + """ + url = f"https://flixbus.p.rapidapi.com/v1/cities" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def schedule(station_id: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a list of schedule" + station_id: Station id + + """ + url = f"https://flixbus.p.rapidapi.com/v1/schedule" + querystring = {'station_id': station_id, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def trip_details(trip_uid: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a trip details by trip uid" + trip_uid: Trip uid + + """ + url = f"https://flixbus.p.rapidapi.com/v1/trip-details" + querystring = {'trip_uid': trip_uid, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flixbus_v2.json b/toolbench/toolenv/tools/Travel/flixbus_v2.json new file mode 100644 index 0000000000000000000000000000000000000000..54a86f556e387f19f36c0efb2dab7e67c1fbc8c5 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flixbus_v2.json @@ -0,0 +1,294 @@ +{ + "product_id": "api_d59904f6-2420-4eab-bd52-a08e6d3d7359", + "tool_description": "New Flixbus API that provides Flixbus travel search, timetables, stops, cities, routes and autocomplete. ", + "home_url": "https://rapidapi.com/3b-data-3b-data-default/api/flixbus2/", + "name": "Flixbus_v2", + "title": "Flixbus", + "pricing": "FREEMIUM", + "tool_name": "Flixbus_v2", + "score": { + "avgServiceLevel": 100, + "avgLatency": 1395, + "avgSuccessRate": 98, + "popularityScore": 8.4, + "__typename": "Score" + }, + "host": "flixbus2.p.rapidapi.com", + "api_list": [ + { + "name": "Search trips", + "url": "https://flixbus2.p.rapidapi.com/trips", + "description": "Search trips between two cities or stations", + "method": "GET", + "required_parameters": [ + { + "name": "date", + "type": "STRING", + "description": "Travel date in format DD.MM.YYYY", + "default": "16.02.2022" + }, + { + "name": "to_id", + "type": "STRING", + "description": "Flixbus id of the arrival city or station", + "default": "40dea87d-8646-11e6-9066-549f350fcb0c" + }, + { + "name": "adult", + "type": "NUMBER", + "description": "Number of adult travellers (from 15 years)", + "default": "1" + }, + { + "name": "from_id", + "type": "STRING", + "description": "Flixbus id of the departure city or station", + "default": "40de8044-8646-11e6-9066-549f350fcb0c" + } + ], + "optional_parameters": [ + { + "name": "locale", + "type": "ENUM", + "description": "Locale of returned results", + "default": "" + }, + { + "name": "bikes", + "type": "NUMBER", + "description": "If travelling with bikes", + "default": "0" + }, + { + "name": "children", + "type": "NUMBER", + "description": "Children travelling (0-14 years)", + "default": "0" + }, + { + "name": "currency", + "type": "STRING", + "description": "Currency of fares returned", + "default": "EUR" + }, + { + "name": "search_by", + "type": "ENUM", + "description": "Search by city ids or stations ids (default: cities)", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://flixbus2.p.rapidapi.com/trips\"\nquerystring = {\"locale\": \"\", \"bikes\": \"0\", \"date\": \"16.02.2022\", \"to_id\": \"40dea87d-8646-11e6-9066-549f350fcb0c\", \"adult\": \"1\", \"children\": \"0\", \"currency\": \"EUR\", \"from_id\": \"40de8044-8646-11e6-9066-549f350fcb0c\", \"search_by\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus2.p.rapidapi.com/trips\"\nquerystring = {\"locale\": \"\", \"bikes\": \"0\", \"date\": \"16.02.2022\", \"to_id\": \"40dea87d-8646-11e6-9066-549f350fcb0c\", \"adult\": \"1\", \"children\": \"0\", \"currency\": \"EUR\", \"from_id\": \"40de8044-8646-11e6-9066-549f350fcb0c\", \"search_by\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "object", + "properties": { + "headers": { + "type": "object", + "properties": { + "response_time": { + "type": "integer" + }, + "response_timestamp": { + "type": "string" + }, + "response_id": { + "type": "integer" + } + } + }, + "journeys": { + "type": "array", + "items": { + "type": "object", + "properties": { + "dep_offset": { + "type": "string" + }, + "arr_offset": { + "type": "string" + }, + "dep_name": { + "type": "string" + }, + "arr_name": { + "type": "string" + }, + "duration": { + "type": "string" + }, + "changeovers": { + "type": "integer" + }, + "segments": { + "type": "array", + "items": { + "type": "object", + "properties": { + "dep_offset": { + "type": "string" + }, + "dep_name": { + "type": "string" + }, + "arr_offset": { + "type": "string" + }, + "arr_name": { + "type": "string" + }, + "intermediate_stop": { + "type": "array" + }, + "product_type": { + "type": "string" + }, + "product": { + "type": "string" + } + } + } + }, + "deeplink": { + "type": "string" + }, + "fares": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + } + } + } + }, + { + "name": "Get timetable", + "url": "https://flixbus2.p.rapidapi.com/schedule", + "description": "Returns timetable for a given station id and date", + "method": "GET", + "required_parameters": [ + { + "name": "station_id", + "type": "STRING", + "description": "Id of flixbus station", + "default": "dcbd21fc-9603-11e6-9066-549f350fcb0c" + }, + { + "name": "date", + "type": "STRING", + "description": "Date in format DD.MM.YYYY", + "default": "15.05.2022" + } + ], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flixbus2.p.rapidapi.com/schedule\"\nquerystring = {\"station_id\": \"dcbd21fc-9603-11e6-9066-549f350fcb0c\", \"date\": \"15.05.2022\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus2.p.rapidapi.com/schedule\"\nquerystring = {\"station_id\": \"dcbd21fc-9603-11e6-9066-549f350fcb0c\", \"date\": \"15.05.2022\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": {} + }, + { + "name": "Autocomplete", + "url": "https://flixbus2.p.rapidapi.com/autocomplete", + "description": "Search for Flixbus stations", + "method": "GET", + "required_parameters": [ + { + "name": "query", + "type": "STRING", + "description": "query string", + "default": "ljubljana" + } + ], + "optional_parameters": [ + { + "name": "locale", + "type": "ENUM", + "description": "language of query and results", + "default": "" + } + ], + "code": "import requests\n\nurl = \"https://flixbus2.p.rapidapi.com/autocomplete\"\nquerystring = {\"query\": \"ljubljana\", \"locale\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flixbus2.p.rapidapi.com/autocomplete\"\nquerystring = {\"query\": \"ljubljana\", \"locale\": \"\"}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flixbus2.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n", + "test_endpoint": "", + "statuscode": 200, + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "zipcode": { + "type": "string" + }, + "score": { + "type": "number" + }, + "country": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "name": { + "type": "string" + } + } + }, + "address": { + "type": "string" + }, + "city": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "legacy_id": { + "type": "integer" + }, + "id": { + "type": "string" + }, + "slug": { + "type": "string" + } + } + }, + "name": { + "type": "string" + }, + "legacy_id": { + "type": "integer" + }, + "location": { + "type": "object", + "properties": { + "lat": { + "type": "number" + }, + "lon": { + "type": "number" + } + } + }, + "id": { + "type": "string" + }, + "importance_order": { + "type": "integer" + }, + "slug": { + "type": "string" + } + } + } + } + } + ], + "standardized_name": "flixbus_v2" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/flixbus_v2/api.py b/toolbench/toolenv/tools/Travel/flixbus_v2/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1aa25c43fede097ee67f054985e9e16b437ca467 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flixbus_v2/api.py @@ -0,0 +1,96 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def search_trips(date: str, to_id: str, adult: int, from_id: str, locale: str=None, bikes: int=0, children: int=0, currency: str='EUR', search_by: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search trips between two cities or stations" + date: Travel date in format DD.MM.YYYY + to_id: Flixbus id of the arrival city or station + adult: Number of adult travellers (from 15 years) + from_id: Flixbus id of the departure city or station + locale: Locale of returned results + bikes: If travelling with bikes + children: Children travelling (0-14 years) + currency: Currency of fares returned + search_by: Search by city ids or stations ids (default: cities) + + """ + url = f"https://flixbus2.p.rapidapi.com/trips" + querystring = {'date': date, 'to_id': to_id, 'adult': adult, 'from_id': from_id, } + if locale: + querystring['locale'] = locale + if bikes: + querystring['bikes'] = bikes + if children: + querystring['children'] = children + if currency: + querystring['currency'] = currency + if search_by: + querystring['search_by'] = search_by + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_timetable(station_id: str, date: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns timetable for a given station id and date" + station_id: Id of flixbus station + date: Date in format DD.MM.YYYY + + """ + url = f"https://flixbus2.p.rapidapi.com/schedule" + querystring = {'station_id': station_id, 'date': date, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def autocomplete(query: str, locale: str=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Search for Flixbus stations" + query: query string + locale: language of query and results + + """ + url = f"https://flixbus2.p.rapidapi.com/autocomplete" + querystring = {'query': query, } + if locale: + querystring['locale'] = locale + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "flixbus2.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/flysolution.json b/toolbench/toolenv/tools/Travel/flysolution.json new file mode 100644 index 0000000000000000000000000000000000000000..8aa6b1414fbafcaf98637c0563dc673f64db3143 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/flysolution.json @@ -0,0 +1,24 @@ +{ + "product_id": "api_9dbaee22-de9f-42e9-921a-25efb14b1aa7", + "tool_description": "Developer testing ", + "home_url": "https://rapidapi.com/jatinder70/api/flysolution/", + "name": "flysolution", + "title": "flysolution", + "pricing": "FREE", + "tool_name": "flysolution", + "score": null, + "host": "flysolution.p.rapidapi.com", + "api_list": [ + { + "name": "airport-code-api", + "url": "https://flysolution.p.rapidapi.comhttps://www.flysolution.com.bd/api/v5/airports", + "description": "Developer testing ", + "method": "POST", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://flysolution.p.rapidapi.comhttps://www.flysolution.com.bd/api/v5/airports\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flysolution.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://flysolution.p.rapidapi.comhttps://www.flysolution.com.bd/api/v5/airports\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"flysolution.p.rapidapi.com\"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/funtrip.json b/toolbench/toolenv/tools/Travel/funtrip.json new file mode 100644 index 0000000000000000000000000000000000000000..3921a36edd01c8cfb351ee8b0964051f0782174c --- /dev/null +++ b/toolbench/toolenv/tools/Travel/funtrip.json @@ -0,0 +1,30 @@ +{ + "tool_name":"funtrip", + "tool_description":"fundtrip", + "title":"funtrip", + "pricing":"FREE", + "score":{ + "avgServiceLevel":100, + "avgLatency":157, + "avgSuccessRate":100, + "popularityScore":8.6, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/spidycodes/api/funtrip/", + "host":"funtrip.p.rapidapi.com", + "api_list":[ + { + "name":"ttt", + "url":"https://funtrip.p.rapidapi.com/", + "description":"ttt", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://funtrip.p.rapidapi.com/\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"funtrip.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/funtrip/api.py b/toolbench/toolenv/tools/Travel/funtrip/api.py new file mode 100644 index 0000000000000000000000000000000000000000..d232780574f135aef34b74e2588b1944fb8ff143 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/funtrip/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def ttt(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "ttt" + + """ + url = f"https://funtrip.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "funtrip.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/gas_price.json b/toolbench/toolenv/tools/Travel/gas_price.json new file mode 100644 index 0000000000000000000000000000000000000000..143af7afa5fc88e9c902501547049676995515ff --- /dev/null +++ b/toolbench/toolenv/tools/Travel/gas_price.json @@ -0,0 +1,1071 @@ +{ + "tool_name":"Gas Price", + "tool_description":"Reach gasoline and diesel prices in different fuel stations in different cities.", + "title":"Gas Price", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1316, + "avgSuccessRate":100, + "popularityScore":9.7, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/collectapi/api/gas-price/", + "host":"gas-price.p.rapidapi.com", + "api_list":[ + { + "name":"europeanCountries", + "url":"https://gas-price.p.rapidapi.com/europeanCountries", + "description":"Service that brings up the current gasoline prices at european countries.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://gas-price.p.rapidapi.com/europeanCountries\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gas-price.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "results":[ + { + "currency":"euro", + "lpg":"0,396", + "diesel":"1,353", + "gasoline":"1,361", + "country":"Albania" + }, + { + "currency":"euro", + "lpg":"0,065", + "diesel":"0,099", + "gasoline":"0,164", + "country":"Algeria" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,000", + "gasoline":"1,050", + "country":"Andorra" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,885", + "gasoline":"0,940", + "country":"Armenia" + }, + { + "currency":"euro", + "lpg":"0,770", + "diesel":"1,080", + "gasoline":"1,117", + "country":"Austria" + }, + { + "currency":"euro", + "lpg":"0,346", + "diesel":"0,661", + "gasoline":"0,661", + "country":"Belarus" + }, + { + "currency":"euro", + "lpg":"0,387", + "diesel":"1,273", + "gasoline":"1,195", + "country":"Belgium" + }, + { + "currency":"euro", + "lpg":"0,563", + "diesel":"1,095", + "gasoline":"1,100", + "country":"Bosnia and Herzegovina" + }, + { + "currency":"euro", + "lpg":"0,434", + "diesel":"0,971", + "gasoline":"0,940", + "country":"Bulgaria" + }, + { + "currency":"euro", + "lpg":"0,462", + "diesel":"1,089", + "gasoline":"1,053", + "country":"Croatia" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"1,055", + "gasoline":"0,000", + "country":"Cyprus" + }, + { + "currency":"euro", + "lpg":"0,511", + "diesel":"1,033", + "gasoline":"1,114", + "country":"Czech Republic" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"1,271", + "gasoline":"1,352", + "country":"Denmark" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,321", + "gasoline":"0,441", + "country":"Egypt" + }, + { + "currency":"euro", + "lpg":"0,664", + "diesel":"1,258", + "gasoline":"1,293", + "country":"Estonia" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"1,250", + "gasoline":"1,344", + "country":"Finland" + }, + { + "currency":"euro", + "lpg":"0,868", + "diesel":"1,251", + "gasoline":"1,292", + "country":"France" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,562", + "gasoline":"0,577", + "country":"Georgia" + }, + { + "currency":"euro", + "lpg":"0,609", + "diesel":"1,139", + "gasoline":"1,259", + "country":"Germany" + }, + { + "currency":"euro", + "lpg":"0,761", + "diesel":"1,184", + "gasoline":"1,411", + "country":"Greece" + }, + { + "currency":"euro", + "lpg":"0,654", + "diesel":"0,961", + "gasoline":"0,938", + "country":"Hungary" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"1,348", + "gasoline":"1,372", + "country":"Iceland" + }, + { + "currency":"euro", + "lpg":"0,690", + "diesel":"1,169", + "gasoline":"1,265", + "country":"Ireland" + }, + { + "currency":"euro", + "lpg":"0,748", + "diesel":"1,820", + "gasoline":"1,307", + "country":"Israel" + }, + { + "currency":"euro", + "lpg":"0,598", + "diesel":"1,368", + "gasoline":"1,483", + "country":"Italy" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,714", + "gasoline":"1,239", + "country":"Jordan" + }, + { + "currency":"euro", + "lpg":"0,510", + "diesel":"1,000", + "gasoline":"1,050", + "country":"Kosovo" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,325", + "gasoline":"0,192", + "country":"Kuwait" + }, + { + "currency":"euro", + "lpg":"0,490", + "diesel":"0,000", + "gasoline":"0,000", + "country":"Latvia" + }, + { + "currency":"euro", + "lpg":"0,730", + "diesel":"0,718", + "gasoline":"1,430", + "country":"Lebanon" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,097", + "gasoline":"0,129", + "country":"Libya" + }, + { + "currency":"euro", + "lpg":"0,439", + "diesel":"0,000", + "gasoline":"0,000", + "country":"Lithuania" + }, + { + "currency":"euro", + "lpg":"0,368", + "diesel":"0,000", + "gasoline":"0,000", + "country":"Luxembourg" + }, + { + "currency":"euro", + "lpg":"0,447", + "diesel":"0,942", + "gasoline":"1,072", + "country":"Macedonia" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"1,280", + "gasoline":"1,410", + "country":"Malta" + }, + { + "currency":"euro", + "lpg":"0,529", + "diesel":"0,788", + "gasoline":"0,884", + "country":"Moldova" + }, + { + "currency":"euro", + "lpg":"0,580", + "diesel":"1,260", + "gasoline":"1,310", + "country":"Montenegro" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,645", + "gasoline":"0,703", + "country":"Morocco" + }, + { + "currency":"euro", + "lpg":"0,744", + "diesel":"1,339", + "gasoline":"1,582", + "country":"Netherlands" + }, + { + "currency":"euro", + "lpg":"0,755", + "diesel":"1,362", + "gasoline":"1,379", + "country":"Norway" + }, + { + "currency":"euro", + "lpg":"0,364", + "diesel":"0,848", + "gasoline":"0,793", + "country":"Poland" + }, + { + "currency":"euro", + "lpg":"0,718", + "diesel":"1,279", + "gasoline":"1,334", + "country":"Portugal" + }, + { + "currency":"euro", + "lpg":"0,565", + "diesel":"0,989", + "gasoline":"0,968", + "country":"Romania" + }, + { + "currency":"euro", + "lpg":"0,264", + "diesel":"0,578", + "gasoline":"0,572", + "country":"Russia" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,184", + "gasoline":"0,220", + "country":"Saudi Arabia" + }, + { + "currency":"euro", + "lpg":"0,646", + "diesel":"1,373", + "gasoline":"1,262", + "country":"Serbia" + }, + { + "currency":"euro", + "lpg":"0,593", + "diesel":"1,234", + "gasoline":"1,339", + "country":"Slovakia" + }, + { + "currency":"euro", + "lpg":"0,674", + "diesel":"1,193", + "gasoline":"1,255", + "country":"Slovenia" + }, + { + "currency":"euro", + "lpg":"0,677", + "diesel":"1,122", + "gasoline":"1,280", + "country":"Spain" + }, + { + "currency":"euro", + "lpg":"0,822", + "diesel":"1,282", + "gasoline":"1,150", + "country":"Sweden" + }, + { + "currency":"euro", + "lpg":"0,805", + "diesel":"1,269", + "gasoline":"1,212", + "country":"Switzerland" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,370", + "gasoline":"0,497", + "country":"Tunisia" + }, + { + "currency":"euro", + "lpg":"0,219", + "diesel":"0,729", + "gasoline":"0,702", + "country":"Turkey" + }, + { + "currency":"euro", + "lpg":"-", + "diesel":"0,610", + "gasoline":"0,463", + "country":"U.S.A" + }, + { + "currency":"euro", + "lpg":"0,347", + "diesel":"0,801", + "gasoline":"0,829", + "country":"Ukraine" + }, + { + "currency":"euro", + "lpg":"0,717", + "diesel":"1,331", + "gasoline":"1,293", + "country":"United Kingdom" + } + ], + "success":true + }, + "headers":{ + "access-control-allow-origin":"*", + "cf-cache-status":"DYNAMIC", + "cf-ray":"5812dab15f6768b2-CDG", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 09 Apr 2020 08:28:23 GMT", + "etag":"W/\"13aa-BrYP74x3PJDuhV58oWhA613jyQI\"", + "expect-ct":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "server":"RapidAPI-1.1.0", + "set-cookie":[ + "__cfduid=dab721b92372e7061f80f3c0d85c9a3e21586420902; expires=Sat, 09-May-20 08:28:22 GMT; path=/; domain=.collectapi.com; HttpOnly; SameSite=Lax; Secure" + ], + "vary":"Accept-Encoding", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.0", + "transfer-encoding":"chunked", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"allUsaPrice", + "url":"https://gas-price.p.rapidapi.com/allUsaPrice", + "description":"Service that brings the average current gasoline prices of states in America.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://gas-price.p.rapidapi.com/allUsaPrice\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gas-price.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "success":true, + "result":[ + { + "currency":"usd", + "name":"Alaska", + "gasoline":"2.345", + "midGrade":"2.534", + "premium":"2.667", + "diesel":"2.585" + }, + { + "currency":"usd", + "name":"Alabama", + "gasoline":"1.679", + "midGrade":"2.048", + "premium":"2.376", + "diesel":"2.397" + }, + { + "currency":"usd", + "name":"Arkansas", + "gasoline":"1.594", + "midGrade":"1.935", + "premium":"2.222", + "diesel":"2.282" + }, + { + "currency":"usd", + "name":"Arizona", + "gasoline":"2.324", + "midGrade":"2.634", + "premium":"2.850", + "diesel":"2.691" + }, + { + "currency":"usd", + "name":"California", + "gasoline":"2.918", + "midGrade":"3.120", + "premium":"3.231", + "diesel":"3.465" + }, + { + "currency":"usd", + "name":"Colorado", + "gasoline":"1.869", + "midGrade":"2.184", + "premium":"2.457", + "diesel":"2.400" + }, + { + "currency":"usd", + "name":"Connecticut", + "gasoline":"2.050", + "midGrade":"2.483", + "premium":"2.707", + "diesel":"2.842" + }, + { + "currency":"usd", + "name":"District of Columbia", + "gasoline":"2.222", + "midGrade":"2.751", + "premium":"2.776", + "diesel":"2.776" + }, + { + "currency":"usd", + "name":"Delaware", + "gasoline":"1.868", + "midGrade":"2.338", + "premium":"2.575", + "diesel":"2.366" + }, + { + "currency":"usd", + "name":"Florida", + "gasoline":"1.873", + "midGrade":"2.272", + "premium":"2.557", + "diesel":"2.518" + }, + { + "currency":"usd", + "name":"Georgia", + "gasoline":"1.737", + "midGrade":"2.108", + "premium":"2.411", + "diesel":"2.598" + }, + { + "currency":"usd", + "name":"Hawaii", + "gasoline":"3.310", + "midGrade":"3.486", + "premium":"3.675", + "diesel":"4.035" + }, + { + "currency":"usd", + "name":"Iowa", + "gasoline":"1.620", + "midGrade":"1.805", + "premium":"2.204", + "diesel":"2.270" + }, + { + "currency":"usd", + "name":"Idaho", + "gasoline":"2.112", + "midGrade":"2.313", + "premium":"2.486", + "diesel":"2.597" + }, + { + "currency":"usd", + "name":"Illinois", + "gasoline":"1.919", + "midGrade":"2.348", + "premium":"2.741", + "diesel":"2.539" + }, + { + "currency":"usd", + "name":"Indiana", + "gasoline":"1.584", + "midGrade":"1.945", + "premium":"2.260", + "diesel":"2.603" + }, + { + "currency":"usd", + "name":"Kansas", + "gasoline":"1.659", + "midGrade":"1.930", + "premium":"2.183", + "diesel":"2.241" + }, + { + "currency":"usd", + "name":"Kentucky", + "gasoline":"1.556", + "midGrade":"1.935", + "premium":"2.246", + "diesel":"2.414" + }, + { + "currency":"usd", + "name":"Louisiana", + "gasoline":"1.735", + "midGrade":"2.070", + "premium":"2.380", + "diesel":"2.361" + }, + { + "currency":"usd", + "name":"Massachusetts", + "gasoline":"2.028", + "midGrade":"2.415", + "premium":"2.613", + "diesel":"2.700" + }, + { + "currency":"usd", + "name":"Maryland", + "gasoline":"1.972", + "midGrade":"2.468", + "premium":"2.696", + "diesel":"2.468" + }, + { + "currency":"usd", + "name":"Maine", + "gasoline":"1.849", + "midGrade":"2.229", + "premium":"2.493", + "diesel":"2.619" + }, + { + "currency":"usd", + "name":"Michigan", + "gasoline":"1.570", + "midGrade":"1.985", + "premium":"2.327", + "diesel":"2.581" + }, + { + "currency":"usd", + "name":"Minnesota", + "gasoline":"1.716", + "midGrade":"2.058", + "premium":"2.339", + "diesel":"2.494" + }, + { + "currency":"usd", + "name":"Missouri", + "gasoline":"1.624", + "midGrade":"1.933", + "premium":"2.197", + "diesel":"2.256" + }, + { + "currency":"usd", + "name":"Mississippi", + "gasoline":"1.613", + "midGrade":"1.978", + "premium":"2.303", + "diesel":"2.262" + }, + { + "currency":"usd", + "name":"Montana", + "gasoline":"1.929", + "midGrade":"2.144", + "premium":"2.424", + "diesel":"2.314" + }, + { + "currency":"usd", + "name":"North Carolina", + "gasoline":"1.741", + "midGrade":"2.130", + "premium":"2.442", + "diesel":"2.499" + }, + { + "currency":"usd", + "name":"North Dakota", + "gasoline":"1.772", + "midGrade":"2.014", + "premium":"2.251", + "diesel":"2.219" + }, + { + "currency":"usd", + "name":"Nebraska", + "gasoline":"1.795", + "midGrade":"1.940", + "premium":"2.330", + "diesel":"2.291" + }, + { + "currency":"usd", + "name":"New Hampshire", + "gasoline":"1.948", + "midGrade":"2.368", + "premium":"2.627", + "diesel":"2.579" + }, + { + "currency":"usd", + "name":"New Jersey", + "gasoline":"2.116", + "midGrade":"2.537", + "premium":"2.721", + "diesel":"2.642" + }, + { + "currency":"usd", + "name":"New Mexico", + "gasoline":"1.865", + "midGrade":"2.169", + "premium":"2.398", + "diesel":"2.495" + }, + { + "currency":"usd", + "name":"Nevada", + "gasoline":"2.510", + "midGrade":"2.737", + "premium":"2.903", + "diesel":"2.804" + }, + { + "currency":"usd", + "name":"New York", + "gasoline":"2.281", + "midGrade":"2.621", + "premium":"2.847", + "diesel":"2.930" + }, + { + "currency":"usd", + "name":"Ohio", + "gasoline":"1.509", + "midGrade":"1.893", + "premium":"2.232", + "diesel":"2.527" + }, + { + "currency":"usd", + "name":"Oklahoma", + "gasoline":"1.448", + "midGrade":"1.748", + "premium":"1.967", + "diesel":"2.078" + }, + { + "currency":"usd", + "name":"Oregon", + "gasoline":"2.592", + "midGrade":"2.815", + "premium":"2.986", + "diesel":"2.786" + }, + { + "currency":"usd", + "name":"Pennsylvania", + "gasoline":"2.137", + "midGrade":"2.483", + "premium":"2.759", + "diesel":"2.839" + }, + { + "currency":"usd", + "name":"Rhode Island", + "gasoline":"2.023", + "midGrade":"2.435", + "premium":"2.663", + "diesel":"2.763" + }, + { + "currency":"usd", + "name":"South Carolina", + "gasoline":"1.680", + "midGrade":"2.055", + "premium":"2.363", + "diesel":"2.385" + }, + { + "currency":"usd", + "name":"South Dakota", + "gasoline":"1.817", + "midGrade":"2.014", + "premium":"2.361", + "diesel":"2.339" + }, + { + "currency":"usd", + "name":"Tennessee", + "gasoline":"1.662", + "midGrade":"2.053", + "premium":"2.371", + "diesel":"2.440" + }, + { + "currency":"usd", + "name":"Texas", + "gasoline":"1.628", + "midGrade":"1.979", + "premium":"2.262", + "diesel":"2.260" + }, + { + "currency":"usd", + "name":"Utah", + "gasoline":"2.230", + "midGrade":"2.399", + "premium":"2.564", + "diesel":"2.568" + }, + { + "currency":"usd", + "name":"Virginia", + "gasoline":"1.776", + "midGrade":"2.224", + "premium":"2.512", + "diesel":"2.466" + }, + { + "currency":"usd", + "name":"Vermont", + "gasoline":"2.022", + "midGrade":"2.477", + "premium":"2.729", + "diesel":"2.601" + }, + { + "currency":"usd", + "name":"Washington", + "gasoline":"2.643", + "midGrade":"2.905", + "premium":"3.050", + "diesel":"2.865" + }, + { + "currency":"usd", + "name":"Wisconsin", + "gasoline":"1.384", + "midGrade":"1.809", + "premium":"2.154", + "diesel":"2.206" + }, + { + "currency":"usd", + "name":"West Virginia", + "gasoline":"1.866", + "midGrade":"2.150", + "premium":"2.445", + "diesel":"2.458" + }, + { + "currency":"usd", + "name":"Wyoming", + "gasoline":"2.036", + "midGrade":"2.264", + "premium":"2.490", + "diesel":"2.471" + } + ] + }, + "headers":{ + "access-control-allow-origin":"*", + "cf-cache-status":"DYNAMIC", + "cf-ray":"581aa20a2e17cd87-CDG", + "content-type":"application/json; charset=utf-8", + "date":"Fri, 10 Apr 2020 07:07:49 GMT", + "etag":"W/\"1627-z3+0ZiU6478by96CAsJGbexfw4U\"", + "expect-ct":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "server":"RapidAPI-1.1.0", + "set-cookie":[ + "__cfduid=d35796e2048a02aad6dd62bbc427fe12f1586502468; expires=Sun, 10-May-20 07:07:48 GMT; path=/; domain=.collectapi.com; HttpOnly; SameSite=Lax; Secure" + ], + "vary":"Accept-Encoding", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.0", + "transfer-encoding":"chunked", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"canada", + "url":"https://gas-price.p.rapidapi.com/canada", + "description":"The service that brings gas prices in the Canada.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://gas-price.p.rapidapi.com/canada\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gas-price.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":200, + "body":{ + "success":true, + "result":[ + { + "name":"Alberta", + "currency":"usd", + "gasoline":"0.64" + }, + { + "name":"British Columbia", + "currency":"usd", + "gasoline":"0.93" + }, + { + "name":"Manitoba", + "currency":"usd", + "gasoline":"0.68" + }, + { + "name":"New Brunswick", + "currency":"usd", + "gasoline":"0.72" + }, + { + "name":"Newfoundland and Labrador", + "currency":"usd", + "gasoline":"0.81" + }, + { + "name":"Nova Scotia", + "currency":"usd", + "gasoline":"0.68" + }, + { + "name":"Ontario", + "currency":"usd", + "gasoline":"0.76" + }, + { + "name":"Prince Edward Island", + "currency":"usd", + "gasoline":"0.74" + }, + { + "name":"Quebec", + "currency":"usd", + "gasoline":"0.79" + }, + { + "name":"Saskatchewan", + "currency":"usd", + "gasoline":"0.70" + } + ] + }, + "headers":{ + "access-control-allow-origin":"*", + "cf-cache-status":"DYNAMIC", + "cf-ray":"5812e11c6c1dee44-CDG", + "content-type":"application/json; charset=utf-8", + "date":"Thu, 09 Apr 2020 08:32:46 GMT", + "etag":"W/\"26e-7jhLsZijAX43YBng4zoLb0LsCZg\"", + "expect-ct":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", + "server":"RapidAPI-1.1.0", + "set-cookie":[ + "__cfduid=ddc90a5e22a48ffc9df24b095ccfe1f581586421165; expires=Sat, 09-May-20 08:32:45 GMT; path=/; domain=.collectapi.com; HttpOnly; SameSite=Lax; Secure" + ], + "vary":"Accept-Encoding", + "x-powered-by":"Express", + "x-rapidapi-region":"AWS - eu-central-1", + "x-rapidapi-version":"1.1.0", + "content-length":"622", + "connection":"Close" + }, + "schema":{ + "type":"object", + "properties":{ + "get":{ + "type":"string" + }, + "parameters":{ + "type":"array" + }, + "errors":{ + "type":"array" + }, + "results":{ + "type":"integer" + }, + "response":{ + "type":"array", + "items":{ + "type":"object" + } + } + } + } + }, + { + "name":"stateUsaPrice", + "url":"https://gas-price.p.rapidapi.com/stateUsaPrice", + "description":"The service that brings gas prices in the United States by state.", + "method":"GET", + "required_parameters":[ + { + "name":"state", + "type":"STRING", + "description":"", + "default":"WA" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://gas-price.p.rapidapi.com/stateUsaPrice\"\nquerystring = {\"state\": state}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gas-price.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"usaCitiesList", + "url":"https://gas-price.p.rapidapi.com/usaCitiesList", + "description":"The service that get list of cities with price information in the USA.", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://gas-price.p.rapidapi.com/usaCitiesList\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"gas-price.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/gas_price/api.py b/toolbench/toolenv/tools/Travel/gas_price/api.py new file mode 100644 index 0000000000000000000000000000000000000000..af0180ceae311f25613741936a05573983c00014 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/gas_price/api.py @@ -0,0 +1,113 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def europeancountries(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Service that brings up the current gasoline prices at european countries." + + """ + url = f"https://gas-price.p.rapidapi.com/europeancountries" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gas-price.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def allusaprice(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Service that brings the average current gasoline prices of states in America." + + """ + url = f"https://gas-price.p.rapidapi.com/allusaprice" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gas-price.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def canada(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The service that brings gas prices in the Canada." + + """ + url = f"https://gas-price.p.rapidapi.com/canada" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gas-price.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def stateusaprice(state: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The service that brings gas prices in the United States by state." + + """ + url = f"https://gas-price.p.rapidapi.com/stateusaprice" + querystring = {'state': state, } + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gas-price.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def usacitieslist(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "The service that get list of cities with price information in the USA." + + """ + url = f"https://gas-price.p.rapidapi.com/usacitieslist" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "gas-price.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/get_1/api.py b/toolbench/toolenv/tools/Travel/get_1/api.py new file mode 100644 index 0000000000000000000000000000000000000000..1cb683d184f0adf99949a62f4afc94ab018baecb --- /dev/null +++ b/toolbench/toolenv/tools/Travel/get_1/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_1(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "123" + + """ + url = f"https://1507.p.rapidapi.com/" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "1507.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/get_52_in_kicks.json b/toolbench/toolenv/tools/Travel/get_52_in_kicks.json new file mode 100644 index 0000000000000000000000000000000000000000..d4e20b255068170248a1bce653af613d4c6d9ad8 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/get_52_in_kicks.json @@ -0,0 +1,31 @@ +{ + "product_id": "api_f9f82435-b99c-4f12-8199-806d8564b9bc", + "tool_description": "Travel blog for the connected generation", + "home_url": "https://rapidapi.com/voltomedia/api/52-in-kicks/", + "name": "52 In Kicks", + "title": "52 In Kicks", + "pricing": "FREE", + "tool_name": "52 In Kicks", + "score": { + "avgServiceLevel": 100, + "avgLatency": 5520, + "avgSuccessRate": 0, + "popularityScore": 0.2, + "__typename": "Score" + }, + "host": "52-in-kicks.p.rapidapi.com", + "api_list": [ + { + "name": "Test", + "url": "https://52-in-kicks.p.rapidapi.com/test", + "description": "test", + "method": "GET", + "required_parameters": [], + "optional_parameters": [], + "code": "import requests\n\nurl = \"https://52-in-kicks.p.rapidapi.com/test\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"52-in-kicks.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "convert_code": "import requests\n\nurl = \"https://52-in-kicks.p.rapidapi.com/test\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"52-in-kicks.p.rapidapi.com\"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n", + "test_endpoint": "" + } + ], + "standardized_name": "get_52_in_kicks" +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/get_52_in_kicks/api.py b/toolbench/toolenv/tools/Travel/get_52_in_kicks/api.py new file mode 100644 index 0000000000000000000000000000000000000000..3a702306a3473bb6d85af098f427779d55999135 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/get_52_in_kicks/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def test(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "test" + + """ + url = f"https://52-in-kicks.p.rapidapi.com/test" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "52-in-kicks.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/get_ticket_information.json b/toolbench/toolenv/tools/Travel/get_ticket_information.json new file mode 100644 index 0000000000000000000000000000000000000000..8cbdb995e60274cbc7a64574b745983cb6158fc0 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/get_ticket_information.json @@ -0,0 +1,24 @@ +{ + "tool_name":"Get_Ticket_Information", + "tool_description":"Get_Ticket_Information from Fligths", + "title":"Get_Ticket_Information", + "pricing":"FREE", + "score":null, + "home_url":"https://rapidapi.com/gspravin-wxUd0brBDpN/api/get_ticket_information/", + "host":"get_ticket_information.p.rapidapi.com", + "api_list":[ + { + "name":"Manage_Booking", + "url":"https://get_ticket_information.p.rapidapi.com/etihad.com/en-ae/manage", + "description":"Manage_Booking", + "method":"GET", + "required_parameters":[], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://get_ticket_information.p.rapidapi.com/etihad.com/en-ae/manage\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"get_ticket_information.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/get_ticket_information/api.py b/toolbench/toolenv/tools/Travel/get_ticket_information/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a91de8611b1ee507b941a1905a663d673a9be212 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/get_ticket_information/api.py @@ -0,0 +1,29 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def manage_booking(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Manage_Booking" + + """ + url = f"https://get_ticket_information.p.rapidapi.com/etihad.com/en-ae/manage" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "get_ticket_information.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/great_circle_mapper/api.py b/toolbench/toolenv/tools/Travel/great_circle_mapper/api.py new file mode 100644 index 0000000000000000000000000000000000000000..f534002e9aa2bd830f0d33f18a4ba603c30b06f2 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/great_circle_mapper/api.py @@ -0,0 +1,97 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def aircraft_type_read(icao_iata: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "get aircraft type data by IATA or ICAO code" + icao_iata: ICAO 3 letter or IATA 2 letter code + + """ + url = f"https://greatcirclemapper.p.rapidapi.com/aircraft/read/{icao_iata}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "greatcirclemapper.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def air_route_calculation(route: str, speed: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "calculate distance and flight time for any airports and any speed" + route: ICAO airport cides, separated by hyphens + speed: Speed in kts + + """ + url = f"https://greatcirclemapper.p.rapidapi.com/airports/route/{route}/{speed}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "greatcirclemapper.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_search(query: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "get a list of airport records" + query: ICAO code, IATA code, town, airport name + + """ + url = f"https://greatcirclemapper.p.rapidapi.com/airports/search/{query}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "greatcirclemapper.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def airport_read(icao_iata: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "get airport by IATA code or ICAO code" + icao_iata: ICAO code or IATA code + + """ + url = f"https://greatcirclemapper.p.rapidapi.com/airports/read/{icao_iata}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "greatcirclemapper.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/great_circle_math_api.json b/toolbench/toolenv/tools/Travel/great_circle_math_api.json new file mode 100644 index 0000000000000000000000000000000000000000..29f1a7e0953153fcf56557e7d8305a37ad6bfd49 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/great_circle_math_api.json @@ -0,0 +1,193 @@ +{ + "tool_name":"Great Circle Math Api", + "tool_description":"An api to perform mileage calculations by receiving location information.", + "title":"Great Circle Math Api", + "pricing":"FREEMIUM", + "score":{ + "avgServiceLevel":100, + "avgLatency":1213, + "avgSuccessRate":100, + "popularityScore":8.8, + "__typename":"Score" + }, + "home_url":"https://rapidapi.com/dariusholley/api/great-circle-math-api/", + "host":"great-circle-math-api.p.rapidapi.com", + "api_list":[ + { + "name":"Get Distance By City, State, Country In Km", + "url":"https://great-circle-math-api.p.rapidapi.com/byLocation/byCityStateCountryKm/{city1}/{state1}/{country1}/{city2}/{state2}/{country2}", + "description":"Takes city, state, and country of both locations and returns latitude, longitude, and calculated miles in kilometers.", + "method":"GET", + "required_parameters":[ + { + "name":"state2", + "type":"string", + "description":"", + "default":"ca" + }, + { + "name":"country2", + "type":"string", + "description":"", + "default":"us" + }, + { + "name":"country1", + "type":"string", + "description":"", + "default":"us" + }, + { + "name":"state1", + "type":"string", + "description":"", + "default":"al" + }, + { + "name":"city1", + "type":"string", + "description":"", + "default":"birmingham" + }, + { + "name":"city2", + "type":"string", + "description":"", + "default":"sacramento" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://great-circle-math-api.p.rapidapi.com/byLocation/byCityStateCountryKm/{city1}/{state1}/{country1}/{city2}/{state2}/{country2}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"great-circle-math-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Distance By City, State, Country", + "url":"https://great-circle-math-api.p.rapidapi.com/byLocation/byCityStateCountry/{city1}/{state1}/{country1}/{city2}/{state2}/{country2}", + "description":"Takes city, state, and country of both locations and returns latitude, longitude, and calculated miles.", + "method":"GET", + "required_parameters":[ + { + "name":"country1", + "type":"string", + "description":"", + "default":"us" + }, + { + "name":"country2", + "type":"string", + "description":"", + "default":"us" + }, + { + "name":"state2", + "type":"string", + "description":"", + "default":"ca" + }, + { + "name":"city2", + "type":"string", + "description":"", + "default":"sacramento" + }, + { + "name":"city1", + "type":"string", + "description":"", + "default":"birmingham" + }, + { + "name":"state1", + "type":"string", + "description":"", + "default":"al" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://great-circle-math-api.p.rapidapi.com/byLocation/byCityStateCountry/{city1}/{state1}/{country1}/{city2}/{state2}/{country2}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"great-circle-math-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Distance", + "url":"https://great-circle-math-api.p.rapidapi.com/calculate/getDistance/{lata}/{longa}/{latb}/{longb}", + "description":"Returns the circle math distance in miles.", + "method":"GET", + "required_parameters":[ + { + "name":"latB", + "type":"NUMBER", + "description":"", + "default":"34.0522" + }, + { + "name":"longA", + "type":"NUMBER", + "description":"", + "default":"86.8104" + }, + { + "name":"latA", + "type":"NUMBER", + "description":"", + "default":"33.5186" + }, + { + "name":"longB", + "type":"NUMBER", + "description":"", + "default":"118.2437" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://great-circle-math-api.p.rapidapi.com/calculate/getDistance/{lata}/{longa}/{latb}/{longb}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"great-circle-math-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + }, + { + "name":"Get Distance in Km", + "url":"https://great-circle-math-api.p.rapidapi.com/calculate/getDistanceInKm/{lata}/{longa}/{latb}/{longb}", + "description":"Returns circle math distance in kilometers.", + "method":"GET", + "required_parameters":[ + { + "name":"latB", + "type":"NUMBER", + "description":"", + "default":"34.0522" + }, + { + "name":"longB", + "type":"NUMBER", + "description":"", + "default":"118.2437" + }, + { + "name":"longA", + "type":"NUMBER", + "description":"", + "default":"86.8104" + }, + { + "name":"latA", + "type":"NUMBER", + "description":"", + "default":"33.5186" + } + ], + "optional_parameters":[], + "code":"import requests\n\nurl = \"https://great-circle-math-api.p.rapidapi.com/calculate/getDistanceInKm/{lata}/{longa}/{latb}/{longb}\"\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"great-circle-math-api.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/great_circle_math_api/api.py b/toolbench/toolenv/tools/Travel/great_circle_math_api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..c87960cf65bc8ecd26987c7617b17b42f123602a --- /dev/null +++ b/toolbench/toolenv/tools/Travel/great_circle_math_api/api.py @@ -0,0 +1,92 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_distance_by_city_state_country_in_km(state2: str, country2: str, country1: str, state1: str, city1: str, city2: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Takes city, state, and country of both locations and returns latitude, longitude, and calculated miles in kilometers." + + """ + url = f"https://great-circle-math-api.p.rapidapi.com/bylocation/bycitystatecountrykm/{city1}/{state1}/{country1}/{city2}/{state2}/{country2}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "great-circle-math-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_distance_by_city_state_country(country1: str, country2: str, state2: str, city2: str, city1: str, state1: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Takes city, state, and country of both locations and returns latitude, longitude, and calculated miles." + + """ + url = f"https://great-circle-math-api.p.rapidapi.com/bylocation/bycitystatecountry/{city1}/{state1}/{country1}/{city2}/{state2}/{country2}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "great-circle-math-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_distance(latb: int, longa: int, lata: int, longb: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns the circle math distance in miles." + + """ + url = f"https://great-circle-math-api.p.rapidapi.com/calculate/getdistance/{lata}/{longa}/{latb}/{longb}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "great-circle-math-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_distance_in_km(latb: int, longb: int, longa: int, lata: int, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Returns circle math distance in kilometers." + + """ + url = f"https://great-circle-math-api.p.rapidapi.com/calculate/getdistanceinkm/{lata}/{longa}/{latb}/{longb}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "great-circle-math-api.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/holiplus.json b/toolbench/toolenv/tools/Travel/holiplus.json new file mode 100644 index 0000000000000000000000000000000000000000..dc2de28d419baa56687c4e33198f8379ffc2bffa --- /dev/null +++ b/toolbench/toolenv/tools/Travel/holiplus.json @@ -0,0 +1,56 @@ +{ + "tool_name":"Holiplus", + "tool_description":"Hotels, Tours and Car rental in Cuba", + "title":"Holiplus", + "pricing":"FREEMIUM", + "score":null, + "home_url":"https://rapidapi.com/sandy.moreno.baro/api/holiplus/", + "host":"holiplus.p.rapidapi.com", + "api_list":[ + { + "name":"Cars Request", + "url":"https://holiplus.p.rapidapi.com/cars/request.json", + "description":"Get a paginated list of available cars", + "method":"GET", + "required_parameters":[ + { + "name":"destination", + "type":"NUMBER", + "description":"A destination to make an availability request", + "default":"" + }, + { + "name":"dropoff", + "type":"DATE (YYYY-MM-DD)", + "description":"Dropoff date", + "default":"" + }, + { + "name":"pickup", + "type":"DATE (YYYY-MM-DD)", + "description":"Pickup date", + "default":"" + } + ], + "optional_parameters":[ + { + "name":"page", + "type":"NUMBER", + "description":"Page number in a paginated list", + "default":"1" + }, + { + "name":"size", + "type":"NUMBER", + "description":"Page size in a paginated list (Default=10, Max = 20)", + "default":"" + } + ], + "code":"import requests\n\nurl = \"https://holiplus.p.rapidapi.com/cars/request.json\"\nquerystring = {\"destination\": destination, \"dropoff\": dropoff, \"pickup\": pickup, \"page\": page}\n\nheaders = {\n \"X-RapidAPI-Key\": \"SIGN-UP-FOR-KEY\",\n \"X-RapidAPI-Host\": \"holiplus.p.rapidapi.com\"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n", + "statuscode":111, + "body":"", + "headers":"", + "schema":"" + } + ] +} \ No newline at end of file diff --git a/toolbench/toolenv/tools/Travel/holiplus/api.py b/toolbench/toolenv/tools/Travel/holiplus/api.py new file mode 100644 index 0000000000000000000000000000000000000000..539e91efd4aecf02c593eaa286f2d2e6a0519668 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/holiplus/api.py @@ -0,0 +1,38 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def cars_request(destination: int, dropoff: str, pickup: str, page: int=1, size: int=None, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Get a paginated list of available cars" + destination: A destination to make an availability request + dropoff: Dropoff date + pickup: Pickup date + page: Page number in a paginated list + size: Page size in a paginated list (Default=10, Max = 20) + + """ + url = f"https://holiplus.p.rapidapi.com/cars/request.json" + querystring = {'destination': destination, 'dropoff': dropoff, 'pickup': pickup, } + if page: + querystring['page'] = page + if size: + querystring['size'] = size + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "holiplus.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + diff --git a/toolbench/toolenv/tools/Travel/hotel_collection/api.py b/toolbench/toolenv/tools/Travel/hotel_collection/api.py new file mode 100644 index 0000000000000000000000000000000000000000..a3585936a3a64a76db06261e1acfcc56fca65113 --- /dev/null +++ b/toolbench/toolenv/tools/Travel/hotel_collection/api.py @@ -0,0 +1,50 @@ +import requests +import json +from datetime import date, datetime, timedelta +import os + +from typing import Optional, Dict, Union, List + + +def get_specific_hotel_by_slug(slug: str, toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "Use slug to get the specific Hotel" + + """ + url = f"https://hotel-collection.p.rapidapi.com/hotels/{slug}" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "hotel-collection.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation + +def get_all_the_hotels(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'): + """ + "This endpoint return the collection of Hotels available" + + """ + url = f"https://hotel-collection.p.rapidapi.com/hotels" + querystring = {} + + headers = { + "X-RapidAPI-Key": toolbench_rapidapi_key, + "X-RapidAPI-Host": "hotel-collection.p.rapidapi.com" + } + + + response = requests.get(url, headers=headers, params=querystring) + try: + observation = response.json() + except: + observation = response.text + return observation +